From b4b2b3d7d69d3a3ec005b2a167968ce2adee0a45 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 27 Apr 2024 06:33:06 -0500 Subject: [PATCH 01/84] Updating docs for to-be. --- docs/v2/data.md | 9 ++++-- docs/v2/export.md | 5 +-- docs/v2/import.md | 4 +-- docs/v2/models.md | 82 ----------------------------------------------- 4 files changed, 11 insertions(+), 89 deletions(-) diff --git a/docs/v2/data.md b/docs/v2/data.md index 9ea2f97d..ec67bd10 100644 --- a/docs/v2/data.md +++ b/docs/v2/data.md @@ -15,7 +15,10 @@ Description of the document related to the data. The actual data. > /data/v2/{publisher-key}/{document-key}/{model-name}.json. +## Keys +Documents when onboarded are given a short key. To allow for data to be presented in the same views, even with conflicting data names, we by convention choose the keys of an individual data item to be -, which should be unique in all cases. - - - +**Examples:** +> magic-missile-srd - The original Magic Missile, from Wizard's of the Coast's Systems Reference Document (srd) +> +> acolyte-a5e-ag - The Acolyte Background, from Advanced 5e's Adventurer's Guide (a5e-ag). diff --git a/docs/v2/export.md b/docs/v2/export.md index c1b589ab..134219d4 100644 --- a/docs/v2/export.md +++ b/docs/v2/export.md @@ -1,5 +1,6 @@ ## Export -To export data, there's a new django command. For now only models used in the v2 API are supported for export. +To export data, there's a new django command. All models in both v1 and v2 are supported for export, although at this time only v2 models could be edited while the site was live. + ```shell pipenv run python manage.py export --dir data ``` @@ -8,4 +9,4 @@ This is based on logic found [here](../../api_v2/management/commands/export.py), folders in a way that's consistent and flexible. ## Known Issues -- When exporting the data, some `v1` resources are slightly changed. Make sure to roll these changes back before committing. \ No newline at end of file +- When exporting the data, some `v1` resources are slightly changed because of timestamp fields being updated the last time quicksetup was run. Make sure to roll these changes back before committing. \ No newline at end of file diff --git a/docs/v2/import.md b/docs/v2/import.md index 8edd10e4..d33a0440 100644 --- a/docs/v2/import.md +++ b/docs/v2/import.md @@ -1,11 +1,11 @@ ## Import To import data, there's a new django command. ```shell -pipenv run python manage.py import --dir data/v2/ +pipenv run python manage.py import --dir data ``` This is based on logic found [here](../../api_v2/management/commands/import.py), and leverages django's built-in concept of fixtures. -This import command only imports the `v2` data. If you need to import v1 data, use the `quicksetup` +This import command only imports all fixtures in the data directory. It has been added as part of `quicksetup` command (see [README.md](../../README.md)). diff --git a/docs/v2/models.md b/docs/v2/models.md index 19dcd7d5..471744ab 100644 --- a/docs/v2/models.md +++ b/docs/v2/models.md @@ -2,85 +2,3 @@ ## Base Models Our base open5e models are GameContent (an abstract), and Document, which is a description of the source document that the GameContent items come from. These more or less stay the same as they are in API V1. - -Our base GameContent models are Object, which describes all matter, Feature, which describes modifications to the base Object, and Interaction, which is a description of how an object can interact with other objects. - -```mermaid -graph TD; - Object-->Character; - Object-->Item; - Feature; - Interaction; -``` -Here is an example simple feature, in rough JSON representation. - -``` -"name": "Reckless Attack", -"desc_md": "Starting at 2nd level, you can throw aside all concern for defense to attack with fierce desperation. When you make your first attack on your turn, you can decide to attack recklessly. Doing so gives you advantage on melee weapon attack rolls using Strength during this turn, but attack rolls against you have advantage until your next turn." -``` - -**Features** will have name and description. They may have some reference to modify fields of the parent object, for example: -"gain":["name":"armor-proficiency","value":"heavy armor"]. I don't have a great model for this. - -**Objects** will have AC, HP, size, weight, damage immunities, resistances, and vulnerabilities, and maybe a few other fields. - -**Characters** will have stat blocks, saving throws, skills, speed, etc. - -**Items** will have rarity, cost, "requires attunement" and various other fields. - -**Interaction** is a description of the player interacting with the world. "Use" is an interaction. "Melee Weapon Attack with Longsword" is an interaction. - -## Sets -Some of the leaf nodes has a Set model as well. These are implemented as a GameContent item, but it's basically just a list of other objects with a small amount of added metadata. For example, Character Class and Subclass would be implemented as a FeatureSet. Additionally Race, Subrace, and Feats would be implemented as a FeatureSet. - -```mermaid -graph TD; - Character1-->CharacterSet; - Character2-->CharacterSet; - Character3-->CharacterSet; - Item1-->ItemSet; - Item2-->ItemSet; - Item3-->ItemSet; - Feature1-->FeatureSet; - Feature2-->FeatureSet; - Feature3-->FeatureSet; - Interaction1-->InteractionSet; - Interaction2-->InteractionSet; - Interaction3-->InteractionSet; -``` - -Here is an example featureSet, in rough JSON representation. - -``` -"name": "Barbarian", -"desc_md": "", -"featureset_type": "Class", -"features": [ - "rage", - "unarmored-defense", - "reckless-attack" -] -``` - -## Benefits of this approach: -The API V2 could have a /v2/classes/ endpoint that returns featureset with a hard filter of featureset_type=Class. - -The exact same implementation could be used for the Feats endpoint. Very quick, reusable coding, and simple to troubleshoot. The concept of FeatureSet doesn't even need to be exposed to the UI. - -Similarly, CharacterSet could be used for a /NPCs/ endpoint, or a /Monsters/Coastal/ endpoint. - -Additionally, /v2/spells endpoint could return interactionSets that are interactionSet_type=spell - -Things like Poisons, Equipment Packs, and Magic Weapons become queryable quickly as long as they are "tagged" in a properly named ItemSet. - -## Cons of this approach: -Lots more API calls: This will result in a request for EACH feature in a given FeatureSet. I think this works though, modern browsers and caching are fast, and each individual request will be small, and can be done in parallel. - -## Unanswered questions: -Features often modify fields of a related Object. How is this modification of fields specified? - -Features or featuresets often have a pre-requisite. How do we communicate that pre-requisite to the client? - -A spell can be cast at a bunch of different levels. Is each casting option a different interaction? What about cantrips? How can the different damage rolls be represented? - -What does the data importing model look like? It will almost certainly deviate pretty significantly from what we've done already. From 7181b1465d4d402a35467297614244dbfb480fef Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 27 Apr 2024 06:44:31 -0500 Subject: [PATCH 02/84] Updating license pk. --- data/v2/License.json | 4 ++-- data/v2/en-publishing/a5e-ag/Document.json | 4 ++-- data/v2/en-publishing/a5e-ddg/Document.json | 4 ++-- data/v2/en-publishing/a5e-gpg/Document.json | 4 ++-- data/v2/en-publishing/a5esrd/Document.json | 4 ++-- data/v2/green-ronin/taldorei/Document.json | 2 +- data/v2/kobold-press/deep-magic/Document.json | 2 +- data/v2/kobold-press/dmag-e/Document.json | 2 +- data/v2/kobold-press/kp/Document.json | 2 +- data/v2/kobold-press/toh/Document.json | 2 +- data/v2/kobold-press/vault-of-magic/Document.json | 2 +- data/v2/kobold-press/warlock/Document.json | 2 +- data/v2/open5e/o5e/Document.json | 2 +- data/v2/wizards-of-the-coast/srd/Document.json | 4 ++-- scripts/data_manipulation/v2_key_rewrite.py | 13 +++++++++++++ 15 files changed, 33 insertions(+), 20 deletions(-) create mode 100644 scripts/data_manipulation/v2_key_rewrite.py diff --git a/data/v2/License.json b/data/v2/License.json index 3da7eff8..da0df889 100644 --- a/data/v2/License.json +++ b/data/v2/License.json @@ -1,7 +1,7 @@ [ { "model": "api_v2.license", - "pk": "CC-BY-40", + "pk": "cc-by-40", "fields": { "name": "Creative Commons Attribution 4.0", "desc": "By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License (\"Public License\"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.\r\n\r\nSection 1 – Definitions.\r\n\r\n Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.\r\n Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.\r\n Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.\r\n Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.\r\n Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.\r\n Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License.\r\n Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.\r\n Licensor means the individual(s) or entity(ies) granting rights under this Public License.\r\n Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.\r\n Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.\r\n You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning.\r\n\r\nSection 2 – Scope.\r\n\r\n License grant.\r\n Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:\r\n reproduce and Share the Licensed Material, in whole or in part; and\r\n produce, reproduce, and Share Adapted Material.\r\n Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.\r\n Term. The term of this Public License is specified in Section 6(a).\r\n Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.\r\n Downstream recipients.\r\n Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.\r\n No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.\r\n No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).\r\n\r\n Other rights.\r\n Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.\r\n Patent and trademark rights are not licensed under this Public License.\r\n To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties.\r\n\r\nSection 3 – License Conditions.\r\n\r\nYour exercise of the Licensed Rights is expressly made subject to the following conditions.\r\n\r\n Attribution.\r\n\r\n If You Share the Licensed Material (including in modified form), You must:\r\n retain the following if it is supplied by the Licensor with the Licensed Material:\r\n identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);\r\n a copyright notice;\r\n a notice that refers to this Public License;\r\n a notice that refers to the disclaimer of warranties;\r\n a URI or hyperlink to the Licensed Material to the extent reasonably practicable;\r\n indicate if You modified the Licensed Material and retain an indication of any previous modifications; and\r\n indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License.\r\n You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.\r\n If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable.\r\n If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Public License.\r\n\r\nSection 4 – Sui Generis Database Rights.\r\n\r\nWhere the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:\r\n\r\n for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database;\r\n if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and\r\n You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database.\r\n\r\nFor the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.\r\n\r\nSection 5 – Disclaimer of Warranties and Limitation of Liability.\r\n\r\n Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.\r\n To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.\r\n\r\n The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.\r\n\r\nSection 6 – Term and Termination.\r\n\r\n This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.\r\n\r\n Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:\r\n automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or\r\n upon express reinstatement by the Licensor.\r\n For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.\r\n For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.\r\n Sections 1, 5, 6, 7, and 8 survive termination of this Public License.\r\n\r\nSection 7 – Other Terms and Conditions.\r\n\r\n The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.\r\n Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.\r\n\r\nSection 8 – Interpretation.\r\n\r\n For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.\r\n To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.\r\n No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.\r\n Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority." @@ -9,7 +9,7 @@ }, { "model": "api_v2.license", - "pk": "ogl10a", + "pk": "ogl-10a", "fields": { "name": "OPEN GAME LICENSE Version 1.0a", "desc": "The following text is the property of Wizards of the Coast, Inc. and is Copyright 2000 Wizards of the Coast, Inc (\"Wizards\"). All Rights Reserved.\r\n1. Definitions: (a)\"Contributors\" means the copyright and/or trademark owners who have contributed Open Game Content; (b)\"Derivative Material\" means copyrighted material including derivative works and translations (including into other computer languages), potation, modification, correction, addition, extension, upgrade, improvement, compilation, abridgment or other form in which an existing work may be recast, transformed or adapted; (c) \"Distribute\" means to reproduce, license, rent, lease, sell, broadcast, publicly display, transmit or otherwise distribute; (d)\"Open Game Content\" means the game mechanic and includes the methods, procedures, processes and routines to the extent such content does not embody the Product Identity and is an enhancement over the prior art and any additional content clearly identified as Open Game Content by the Contributor, and means any work covered by this License, including translations and derivative works under copyright law, but specifically excludes Product Identity. (e) \"Product Identity\" means product and product line names, logos and identifying marks including trade dress; artifacts; creatures characters; stories, storylines, plots, thematic elements, dialogue, incidents, language, artwork, symbols, designs, depictions, likenesses, formats, poses, concepts, themes and graphic, photographic and other visual or audio representations; names and descriptions of characters, spells, enchantments, personalities, teams, personas, likenesses and special abilities; places, locations, environments, creatures, equipment, magical or supernatural abilities or effects, logos, symbols, or graphic designs; and any other trademark or registered trademark clearly identified as Product identity by the owner of the Product Identity, and which specifically excludes the Open Game Content; (f) \"Trademark\" means the logos, names, mark, sign, motto, designs that are used by a Contributor to identify itself or its products or the associated products contributed to the Open Game License by the Contributor (g) \"Use\", \"Used\" or \"Using\" means to use, Distribute, copy, edit, format, modify, translate and otherwise create Derivative Material of Open Game Content. (h) \"You\" or \"Your\" means the licensee in terms of this agreement.\r\n2. The License: This License applies to any Open Game Content that contains a notice indicating that the Open Game Content may only be Used under and in terms of this License. You must affix such a notice to any Open Game Content that you Use. No terms may be added to or subtracted from this License except as described by the License itself. No other terms or conditions may be applied to any Open Game Content distributed using this License.\r\n3. Offer and Acceptance: By Using the Open Game Content You indicate Your acceptance of the terms of this License.\r\n4. Grant and Consideration: In consideration for agreeing to use this License, the Contributors grant You a perpetual, worldwide, royalty-free, non-exclusive license with the exact terms of this License to Use, the Open Game Content.\r\n5.Representation of Authority to Contribute: If You are contributing original material as Open Game Content, You represent that Your Contributions are Your original creation and/or You have sufficient rights to grant the rights conveyed by this License.\r\n6.Notice of License Copyright: You must update the COPYRIGHT NOTICE portion of this License to include the exact text of the COPYRIGHT NOTICE of any Open Game Content You are copying, modifying or distributing, and You must add the title, the copyright date, and the copyright holder's name to the COPYRIGHT NOTICE of any original Open Game Content you Distribute.\r\n7. Use of Product Identity: You agree not to Use any Product Identity, including as an indication as to compatibility, except as expressly licensed in another, independent Agreement with the owner of each element of that Product Identity. You agree not to indicate compatibility or co-adaptability with any Trademark or Registered Trademark in conjunction with a work containing Open Game Content except as expressly licensed in another, independent Agreement with the owner of such Trademark or Registered Trademark. The use of any Product Identity in Open Game Content does not constitute a challenge to the ownership of that Product Identity. The owner of any Product Identity used in Open Game Content shall retain all rights, title and interest in and to that Product Identity.\r\n8. Identification: If you distribute Open Game Content You must clearly indicate which portions of the work that you are distributing are Open Game Content.\r\n9. Updating the License: Wizards or its designated Agents may publish updated versions of this License. You may use any authorized version of this License to copy, modify and distribute any Open Game Content originally distributed under any version of this License.\r\n10. Copy of this License: You MUST include a copy of this License with every copy of the Open Game Content You Distribute.\r\n11. Use of Contributor Credits: You may not market or advertise the Open Game Content using the name of any Contributor unless You have written permission from the Contributor to do so.\r\n12. Inability to Comply: If it is impossible for You to comply with any of the terms of this License with respect to some or all of the Open Game Content due to statute, judicial order, or governmental regulation then You may not Use any Open Game Material so affected.\r\n13. Termination: This License will terminate automatically if You fail to comply with all terms herein and fail to cure such breach within 30 days of becoming aware of the breach. All sublicenses shall survive the termination of this License.\r\n14. Reformation: If any provision of this License is held to be unenforceable, such provision shall be reformed only to the extent necessary to make it enforceable.\r\n15. COPYRIGHT NOTICE Open Game License v 1.0a Copyright 2000, Wizards of the Coast, Inc.\r\nSystem Reference Document Copyright 2000-2003, Wizards of the Coast, Inc.; Authors Jonathan Tweet, Monte Cook, Skip Williams, Rich Baker, Andy Collins, David Noonan, Rich Redman, Bruce R. Cordell, John D. Rateliff, Thomas Reid, James Wyatt, based on original material by E. Gary Gygax and Dave Arneson.\r\nEND OF LICENSE" diff --git a/data/v2/en-publishing/a5e-ag/Document.json b/data/v2/en-publishing/a5e-ag/Document.json index e3fdefea..46b4af5f 100644 --- a/data/v2/en-publishing/a5e-ag/Document.json +++ b/data/v2/en-publishing/a5e-ag/Document.json @@ -11,8 +11,8 @@ "published_at": "2021-11-01T00:00:00", "permalink": "https://a5esrd.com/a5esrd", "licenses": [ - "CC-BY-40", - "ogl10a" + "cc-by-40", + "ogl-10a" ] } } diff --git a/data/v2/en-publishing/a5e-ddg/Document.json b/data/v2/en-publishing/a5e-ddg/Document.json index 893f37be..56bff5aa 100644 --- a/data/v2/en-publishing/a5e-ddg/Document.json +++ b/data/v2/en-publishing/a5e-ddg/Document.json @@ -11,8 +11,8 @@ "published_at": "2023-10-03T00:00:00", "permalink": "https://a5esrd.com/a5esrd", "licenses": [ - "CC-BY-40", - "ogl10a" + "cc-by-40", + "ogl-10a" ] } } diff --git a/data/v2/en-publishing/a5e-gpg/Document.json b/data/v2/en-publishing/a5e-gpg/Document.json index ca1352a0..616a7a74 100644 --- a/data/v2/en-publishing/a5e-gpg/Document.json +++ b/data/v2/en-publishing/a5e-gpg/Document.json @@ -11,8 +11,8 @@ "published_at": "2022-01-01T00:00:00", "permalink": "https://a5esrd.com/a5esrd", "licenses": [ - "CC-BY-40", - "ogl10a" + "cc-by-40", + "ogl-10a" ] } } diff --git a/data/v2/en-publishing/a5esrd/Document.json b/data/v2/en-publishing/a5esrd/Document.json index b24dca05..bafe91bc 100644 --- a/data/v2/en-publishing/a5esrd/Document.json +++ b/data/v2/en-publishing/a5esrd/Document.json @@ -11,8 +11,8 @@ "published_at": "2023-08-15T02:02:32", "permalink": "https://a5esrd.com/a5esrd", "licenses": [ - "CC-BY-40", - "ogl10a" + "cc-by-40", + "ogl-10a" ] } } diff --git a/data/v2/green-ronin/taldorei/Document.json b/data/v2/green-ronin/taldorei/Document.json index 39417f5b..a9c94bf7 100644 --- a/data/v2/green-ronin/taldorei/Document.json +++ b/data/v2/green-ronin/taldorei/Document.json @@ -11,7 +11,7 @@ "published_at": "2017-08-17T00:00:00", "permalink": "https://en.wikipedia.org/wiki/Critical_Role%3A_Tal'Dorei_Campaign_Setting", "licenses": [ - "ogl10a" + "ogl-10a" ] } } diff --git a/data/v2/kobold-press/deep-magic/Document.json b/data/v2/kobold-press/deep-magic/Document.json index 8368eeee..53e03991 100644 --- a/data/v2/kobold-press/deep-magic/Document.json +++ b/data/v2/kobold-press/deep-magic/Document.json @@ -11,7 +11,7 @@ "published_at": "2020-02-13T00:00:00", "permalink": "https://koboldpress.com/kpstore/product/deep-magic-for-5th-edition-hardcover/", "licenses": [ - "ogl10a" + "ogl-10a" ] } } diff --git a/data/v2/kobold-press/dmag-e/Document.json b/data/v2/kobold-press/dmag-e/Document.json index 2835faee..d42e1c64 100644 --- a/data/v2/kobold-press/dmag-e/Document.json +++ b/data/v2/kobold-press/dmag-e/Document.json @@ -11,7 +11,7 @@ "published_at": "2024-02-14T19:02:02", "permalink": "https://koboldpress.com/deepmagic", "licenses": [ - "ogl10a" + "ogl-10a" ] } } diff --git a/data/v2/kobold-press/kp/Document.json b/data/v2/kobold-press/kp/Document.json index a27cb7a9..e0c6d6b7 100644 --- a/data/v2/kobold-press/kp/Document.json +++ b/data/v2/kobold-press/kp/Document.json @@ -11,7 +11,7 @@ "published_at": "2024-02-14T19:53:41", "permalink": "https://koboldpress.com/", "licenses": [ - "ogl10a" + "ogl-10a" ] } } diff --git a/data/v2/kobold-press/toh/Document.json b/data/v2/kobold-press/toh/Document.json index 2fda2542..33a849d0 100644 --- a/data/v2/kobold-press/toh/Document.json +++ b/data/v2/kobold-press/toh/Document.json @@ -11,7 +11,7 @@ "published_at": "2022-06-01T00:00:00", "permalink": "https://koboldpress.com/kpstore/product/tome-of-heroes-for-5th-edition/", "licenses": [ - "ogl10a" + "ogl-10a" ] } } diff --git a/data/v2/kobold-press/vault-of-magic/Document.json b/data/v2/kobold-press/vault-of-magic/Document.json index 4f52486f..be3ece15 100644 --- a/data/v2/kobold-press/vault-of-magic/Document.json +++ b/data/v2/kobold-press/vault-of-magic/Document.json @@ -11,7 +11,7 @@ "published_at": "2021-11-20T00:00:00", "permalink": "https://koboldpress.com/kpstore/product/vault-of-magic-for-5th-edition/", "licenses": [ - "ogl10a" + "ogl-10a" ] } } diff --git a/data/v2/kobold-press/warlock/Document.json b/data/v2/kobold-press/warlock/Document.json index 50f540b4..a4f4965e 100644 --- a/data/v2/kobold-press/warlock/Document.json +++ b/data/v2/kobold-press/warlock/Document.json @@ -11,7 +11,7 @@ "published_at": "2018-01-01T00:00:00", "permalink": "https://koboldpress.com/kpstore/product-category/all-products/warlock-5th-edition-dnd/", "licenses": [ - "ogl10a" + "ogl-10a" ] } } diff --git a/data/v2/open5e/o5e/Document.json b/data/v2/open5e/o5e/Document.json index 890c7575..c0a39dfd 100644 --- a/data/v2/open5e/o5e/Document.json +++ b/data/v2/open5e/o5e/Document.json @@ -11,7 +11,7 @@ "published_at": "2024-02-15T02:15:19", "permalink": "https://open5e.com/", "licenses": [ - "ogl10a" + "ogl-10a" ] } } diff --git a/data/v2/wizards-of-the-coast/srd/Document.json b/data/v2/wizards-of-the-coast/srd/Document.json index eabfae4e..2a50497d 100644 --- a/data/v2/wizards-of-the-coast/srd/Document.json +++ b/data/v2/wizards-of-the-coast/srd/Document.json @@ -11,8 +11,8 @@ "published_at": "2023-01-23T00:00:00", "permalink": "https://dnd.wizards.com/resources/systems-reference-document", "licenses": [ - "CC-BY-40", - "ogl10a" + "cc-by-40", + "ogl-10a" ] } } diff --git a/scripts/data_manipulation/v2_key_rewrite.py b/scripts/data_manipulation/v2_key_rewrite.py new file mode 100644 index 00000000..38a1ef50 --- /dev/null +++ b/scripts/data_manipulation/v2_key_rewrite.py @@ -0,0 +1,13 @@ +# Step 1: +#Ensure rulesets are perfect. +# Step 2: +#Ensure Licenses are perfect. +#Step 3: +# Ensure documents are perect. +#> This will require remapping if there are renaming + +# Step 4: +#Re-import. + +# Step 5: +Update export to warn on keys no matching convention. \ No newline at end of file From cc38c8a7012932138e45a1aede953d2625e5b48d Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 27 Apr 2024 06:48:31 -0500 Subject: [PATCH 03/84] Changing the ruleset for 5e to o5e (original). --- data/v2/Ruleset.json | 4 ++-- data/v2/green-ronin/taldorei/Document.json | 2 +- data/v2/kobold-press/deep-magic/Document.json | 2 +- data/v2/kobold-press/dmag-e/Document.json | 2 +- data/v2/kobold-press/kp/Document.json | 2 +- data/v2/kobold-press/toh/Document.json | 2 +- data/v2/kobold-press/vault-of-magic/Document.json | 2 +- data/v2/kobold-press/warlock/Document.json | 2 +- data/v2/open5e/o5e/Document.json | 2 +- data/v2/wizards-of-the-coast/srd/Document.json | 2 +- 10 files changed, 11 insertions(+), 11 deletions(-) diff --git a/data/v2/Ruleset.json b/data/v2/Ruleset.json index 11a2ab73..0db0c774 100644 --- a/data/v2/Ruleset.json +++ b/data/v2/Ruleset.json @@ -1,10 +1,10 @@ [ { "model": "api_v2.ruleset", - "pk": "5e", + "pk": "o5e", "fields": { "name": "5th Edition", - "desc": "", + "desc": "Original 5E.", "content_prefix": "" } }, diff --git a/data/v2/green-ronin/taldorei/Document.json b/data/v2/green-ronin/taldorei/Document.json index a9c94bf7..3e93efcd 100644 --- a/data/v2/green-ronin/taldorei/Document.json +++ b/data/v2/green-ronin/taldorei/Document.json @@ -6,7 +6,7 @@ "name": "Tal'dorei Campaign Setting", "desc": "Critical Role: Tal'Dorei Campaign Setting is a sourcebook that details the continent of Tal'Dorei from the Critical Role campaign setting for the 5th edition of the Dungeons & Dragons fantasy role-playing game. It was published by Green Ronin Publishing and released on August 17, 2017.", "publisher": "green-ronin", - "ruleset": "5e", + "ruleset": "o5e", "author": "Matthew Mercer, James Haeck", "published_at": "2017-08-17T00:00:00", "permalink": "https://en.wikipedia.org/wiki/Critical_Role%3A_Tal'Dorei_Campaign_Setting", diff --git a/data/v2/kobold-press/deep-magic/Document.json b/data/v2/kobold-press/deep-magic/Document.json index 53e03991..0feaca07 100644 --- a/data/v2/kobold-press/deep-magic/Document.json +++ b/data/v2/kobold-press/deep-magic/Document.json @@ -6,7 +6,7 @@ "name": "Deep Magic for 5th Edition", "desc": "*Command 700 New Spells for 5th Edition!*\r\n\r\nNo matter how you slice it, magic is at the heart of fantasy—and nothing says magic like a massive tome of spells.\r\n\r\nThis tome collects, updates, tweaks, and expands spells from years of the Deep Magic for Fifth Edition series—more than 700 new and revised spells. And it adds a lot more:\r\n\r\n* 19 divine domains from Beer to Mountain and Speed to Winter;\r\n* 13 new wizard specialties, such as the elementalist and the timekeeper;\r\n* 6 new sorcerous origins, including the Aristocrat and the Farseer;\r\n* 3 otherworldly patrons for warlocks, including the Sibyl;\r\n* expanded treatments of familiars and other wizardly servants;\r\n* and much more!\r\n\r\nThis 356-page tome is not just for wizards, warlocks, and sorcerers. Deep Magic also expands the horizons of what’s possible for bards, clerics, druids, and even rangers and paladins. It offers something new for every spellcasting class!\r\n\r\nWith these new spells and options, your characters (or your villains) can become masters of winter magic, chaos magic, or shadow magic. Seek out hidden colleges and academies of lost lore. Learn new runes, hieroglyphs, and cantrips to break down the walls of reality, or just bend them a bit.\r\n\r\nDeep Magic contains nothing but magic from start to finish!", "publisher": "kobold-press", - "ruleset": "5e", + "ruleset": "o5e", "author": "Dan Dillon, Chris Harris, and Jeff Lee", "published_at": "2020-02-13T00:00:00", "permalink": "https://koboldpress.com/kpstore/product/deep-magic-for-5th-edition-hardcover/", diff --git a/data/v2/kobold-press/dmag-e/Document.json b/data/v2/kobold-press/dmag-e/Document.json index d42e1c64..31cda88d 100644 --- a/data/v2/kobold-press/dmag-e/Document.json +++ b/data/v2/kobold-press/dmag-e/Document.json @@ -6,7 +6,7 @@ "name": "Deep Magic Extended", "desc": "?", "publisher": "kobold-press", - "ruleset": "5e", + "ruleset": "o5e", "author": "Not sure.", "published_at": "2024-02-14T19:02:02", "permalink": "https://koboldpress.com/deepmagic", diff --git a/data/v2/kobold-press/kp/Document.json b/data/v2/kobold-press/kp/Document.json index e0c6d6b7..51c02353 100644 --- a/data/v2/kobold-press/kp/Document.json +++ b/data/v2/kobold-press/kp/Document.json @@ -6,7 +6,7 @@ "name": "Kobold Press Compilation", "desc": "Kobold Press Community Use Policy", "publisher": "kobold-press", - "ruleset": "5e", + "ruleset": "o5e", "author": "Various", "published_at": "2024-02-14T19:53:41", "permalink": "https://koboldpress.com/", diff --git a/data/v2/kobold-press/toh/Document.json b/data/v2/kobold-press/toh/Document.json index 33a849d0..b91d1f03 100644 --- a/data/v2/kobold-press/toh/Document.json +++ b/data/v2/kobold-press/toh/Document.json @@ -6,7 +6,7 @@ "name": "Tome of Heroes", "desc": "Tome of Heroes Open-Gaming License Content by Kobold Press", "publisher": "kobold-press", - "ruleset": "5e", + "ruleset": "o5e", "author": "Kelly Pawlik, Ben Mcfarland, and Briand Suskind", "published_at": "2022-06-01T00:00:00", "permalink": "https://koboldpress.com/kpstore/product/tome-of-heroes-for-5th-edition/", diff --git a/data/v2/kobold-press/vault-of-magic/Document.json b/data/v2/kobold-press/vault-of-magic/Document.json index be3ece15..7c9fc8af 100644 --- a/data/v2/kobold-press/vault-of-magic/Document.json +++ b/data/v2/kobold-press/vault-of-magic/Document.json @@ -6,7 +6,7 @@ "name": "Vault of Magic", "desc": "Inside Vault of Magic, you’ll find a vast treasure trove of enchanted items of every imaginable use—more than 900 in all! There are plenty of armors, weapons, potions, rings, and wands, but that’s just for starters. From mirrors to masks, edibles to earrings, and lanterns to lockets, it’s all here, ready for you to use in your 5th Edition game.\r\n\r\nThis 240-page volume includes:\r\n\r\n More than 30 unique items developed by special guests, including Patrick Rothfuss, Gail Simone, Deborah Ann Woll, and Luke Gygax\r\n Fabled items that grow in power as characters rise in levels\r\n New item themes, such as monster-inspired, clockwork, and apprentice wizards\r\n Hundreds of full-color illustrations\r\n 25 treasure-generation tables sorted by rarity and including magic items from the core rules\r\n\r\nAmaze and delight your players and spice up your 5th Edition campaign with fresh, new enchanted items from Vault of Magic. It’ll turn that next treasure hoard into something . . . wondrous!\r\n\r\nSKU: KOB-9245-DnD-5E", "publisher": "kobold-press", - "ruleset": "5e", + "ruleset": "o5e", "author": "Phillip Larwood, Jeff Lee, and Christopher Lockey", "published_at": "2021-11-20T00:00:00", "permalink": "https://koboldpress.com/kpstore/product/vault-of-magic-for-5th-edition/", diff --git a/data/v2/kobold-press/warlock/Document.json b/data/v2/kobold-press/warlock/Document.json index a4f4965e..7f9d93fb 100644 --- a/data/v2/kobold-press/warlock/Document.json +++ b/data/v2/kobold-press/warlock/Document.json @@ -6,7 +6,7 @@ "name": "Warlock Archives", "desc": "The Warlock booklets.", "publisher": "kobold-press", - "ruleset": "5e", + "ruleset": "o5e", "author": "Woflgang Baur, others.", "published_at": "2018-01-01T00:00:00", "permalink": "https://koboldpress.com/kpstore/product-category/all-products/warlock-5th-edition-dnd/", diff --git a/data/v2/open5e/o5e/Document.json b/data/v2/open5e/o5e/Document.json index c0a39dfd..2405f3ae 100644 --- a/data/v2/open5e/o5e/Document.json +++ b/data/v2/open5e/o5e/Document.json @@ -6,7 +6,7 @@ "name": "Open5e Originals", "desc": "Original items from Open5e", "publisher": "open5e", - "ruleset": "5e", + "ruleset": "o5e", "author": "Ean Moody, Various", "published_at": "2024-02-15T02:15:19", "permalink": "https://open5e.com/", diff --git a/data/v2/wizards-of-the-coast/srd/Document.json b/data/v2/wizards-of-the-coast/srd/Document.json index 2a50497d..816f6a1c 100644 --- a/data/v2/wizards-of-the-coast/srd/Document.json +++ b/data/v2/wizards-of-the-coast/srd/Document.json @@ -6,7 +6,7 @@ "name": "Systems Reference Document", "desc": "The Systems Reference Document (SRD) contains guidelines for publishing content under the Open-Gaming License (OGL) or Creative Commons. The Dungeon Masters Guild also provides self-publishing opportunities for individuals and groups.", "publisher": "wizards-of-the-coast", - "ruleset": "5e", + "ruleset": "o5e", "author": "Mike Mearls, Jeremy Crawford, Chris Perkins, Rodney Thompson, Peter Lee, James Wyatt, Robert J. Schwalb, Bruce R. Cordell, Chris Sims, and Steve Townshend, based on original material by E. Gary Gygax and Dave Arneson.", "published_at": "2023-01-23T00:00:00", "permalink": "https://dnd.wizards.com/resources/systems-reference-document", From 724314fd5d1efa511880d2e5f85979e74977d79b Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 27 Apr 2024 06:52:38 -0500 Subject: [PATCH 04/84] Fixing a presentation bug in docs --- api_v2/models/document.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api_v2/models/document.py b/api_v2/models/document.py index c04dd710..8f3a2639 100644 --- a/api_v2/models/document.py +++ b/api_v2/models/document.py @@ -53,7 +53,8 @@ def stats(self): 'Ruleset', 'License', 'Publisher', - 'Size'] + 'Size', + 'SearchResult'] if model.__name__ in SKIPPED_MODEL_NAMES: continue CHILD_MODEL_NAMES = [ From 7d722581c8c8250d2150e8f2315e51814130b9d2 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 27 Apr 2024 07:07:30 -0500 Subject: [PATCH 05/84] Renamed "warlock" to "wz" --- .../{warlock => wz}/CastingOption.json | 0 .../{warlock => wz}/Document.json | 8 +- .../kobold-press/{warlock => wz}/Spell.json | 86 +++++++++---------- data/v2/open5e/o5e/Document.json | 2 +- data/v2/open5e/o5e/Spell.json | 4 +- scripts/data_manipulation/v2_key_rewrite.py | 5 +- 6 files changed, 51 insertions(+), 54 deletions(-) rename data/v2/kobold-press/{warlock => wz}/CastingOption.json (100%) rename data/v2/kobold-press/{warlock => wz}/Document.json (63%) rename data/v2/kobold-press/{warlock => wz}/Spell.json (98%) diff --git a/data/v2/kobold-press/warlock/CastingOption.json b/data/v2/kobold-press/wz/CastingOption.json similarity index 100% rename from data/v2/kobold-press/warlock/CastingOption.json rename to data/v2/kobold-press/wz/CastingOption.json diff --git a/data/v2/kobold-press/warlock/Document.json b/data/v2/kobold-press/wz/Document.json similarity index 63% rename from data/v2/kobold-press/warlock/Document.json rename to data/v2/kobold-press/wz/Document.json index 7f9d93fb..29e16eb7 100644 --- a/data/v2/kobold-press/warlock/Document.json +++ b/data/v2/kobold-press/wz/Document.json @@ -1,14 +1,14 @@ [ { "model": "api_v2.document", - "pk": "warlock", + "pk": "wz", "fields": { - "name": "Warlock Archives", - "desc": "The Warlock booklets.", + "name": "Warlock Zine", + "desc": "The Warlock zines published and available on KP's Warlock booklets.", "publisher": "kobold-press", "ruleset": "o5e", "author": "Woflgang Baur, others.", - "published_at": "2018-01-01T00:00:00", + "published_at": "2017-08-02T00:00:00", "permalink": "https://koboldpress.com/kpstore/product-category/all-products/warlock-5th-edition-dnd/", "licenses": [ "ogl-10a" diff --git a/data/v2/kobold-press/warlock/Spell.json b/data/v2/kobold-press/wz/Spell.json similarity index 98% rename from data/v2/kobold-press/warlock/Spell.json rename to data/v2/kobold-press/wz/Spell.json index 5080cf80..609d1b98 100644 --- a/data/v2/kobold-press/warlock/Spell.json +++ b/data/v2/kobold-press/wz/Spell.json @@ -5,7 +5,7 @@ "fields": { "name": "Abrupt Hug", "desc": "You or the creature taking the Attack action can immediately make an unarmed strike. In addition to dealing damage with the unarmed strike, the target can grapple the creature it hit with the unarmed strike.", - "document": "warlock", + "document": "wz", "level": 1, "school": "transmutation", "higher_level": "", @@ -36,7 +36,7 @@ "fields": { "name": "Avert Evil Eye", "desc": "The evil eye takes many forms. Any incident of bad luck can be blamed on it, especially if a character recently displayed arrogance or selfishness. When avert evil eye is cast, the recipient has a small degree of protection against the evil eye for up to 1 hour. While the spell lasts, the target of the spell has advantage on saving throws against being blinded, charmed, cursed, and frightened. During the spell's duration, the target can also cancel disadvantage on one d20 roll the target is about to make, but doing so ends the spell's effect.", - "document": "warlock", + "document": "wz", "level": 1, "school": "abjuration", "higher_level": "", @@ -67,7 +67,7 @@ "fields": { "name": "Bardo", "desc": "You capture some of the fading life essence of the triggering creature, drawing on the energy of the tenuous moment between life and death. You can then use this essence to immediately harm or help a different creature you can see within range. If you choose to harm, the target must make a Wisdom saving throw. The target takes psychic damage equal to 6d8 + your spellcasting ability modifier on a failed save, or half as much damage on a successful one. If you choose to help, the target regains hit points equal to 3d8 + your spellcasting ability modifier. This spell can't be triggered by the death of a construct or an undead creature, and it can't restore hit points to constructs or undead.", - "document": "warlock", + "document": "wz", "level": 3, "school": "necromancy", "higher_level": "", @@ -98,7 +98,7 @@ "fields": { "name": "Battle Chant", "desc": "You bless up all allied creatures of your choice within range. Whenever a target lands a successful hit before the spell ends, the target can add 1 to the damage roll. When cast by multiple casters chanting in unison, the same increases to 2 points added to the damage roll.", - "document": "warlock", + "document": "wz", "level": 2, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can extend the range by 10 feet for each slot level above 2nd.", @@ -129,7 +129,7 @@ "fields": { "name": "Bombardment of Stings", "desc": "Each creature in a 30-foot cone must make a Dexterity saving throw. On a failed save, a creature takes 4d6 piercing damage and is poisoned for 1 minute. On a successful save, a creature takes half as much damage and isn't poisoned. At the end of each of its turns, a poisoned target can make a Constitution saving throw. On a success, the condition ends on the target.", - "document": "warlock", + "document": "wz", "level": 2, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", @@ -162,7 +162,7 @@ "fields": { "name": "Charming Aesthetics", "desc": "You affect a group of the same plants or animals within range, giving them a harmless and attractive appearance. If a creature studies one of the enchanted plants or animals, it must make a Wisdom saving throw. If it fails the saving throw, it is charmed by the plant or animal until the spell ends or until another creature other than one of its allies does anything harmful to it. While the creature is charmed and stays within sight of the enchanted plants or animals, it has disadvantage on Wisdom (Perception) checks as well as checks to notice signs of danger. If the charmed creature attempts to move out of sight of the spell's subject, it must make a second Wisdom saving throw. If it fails the saving throw, it refuses to move out of sight of the spell's subject. It can repeat this save once per minute. If it succeeds, it can move away, but it remains charmed.", - "document": "warlock", + "document": "wz", "level": 3, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional group of plants or animals for each slot level above 4th.", @@ -193,7 +193,7 @@ "fields": { "name": "Child of Light and Darkness", "desc": "Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 1-10, you take the form of a humanoid made of pure, searing light. On a roll of 11-20, you take the form of a humanoid made of bone-chilling darkness. In both forms, you have immunity to bludgeoning, piercing, and slashing damage from nonmagical attacks, and a creature that attacks you has disadvantage on the attack roll. You gain additional benefits while in each form: Light Form. You shed bright light in a 60-foot radius and dim light for an additional 60 feet, you are immune to fire damage, and you have resistance to radiant damage. Once per turn, as a bonus action, you can teleport to a space you can see within the light you shed. Darkness Form. You are immune to cold damage, and you have resistance to necrotic damage. Once per turn, as a bonus action, you can target up to three Large or smaller creatures within 30 feet of you. Each target must succeed on a Strength saving throw or be pulled or pushed (your choice) up to 20 feet straight toward or away from you.", - "document": "warlock", + "document": "wz", "level": 8, "school": "transmutation", "higher_level": "", @@ -224,7 +224,7 @@ "fields": { "name": "Commander's Pavilion", "desc": "Creates a command tent 30 feet by 30 feet with a peak height of 20 feet. It is filled with items a military commander might require of a headquarters tent on a campaign, such as maps of the area, a spyglass, a sandglass, materials for correspondence, references for coding and decoding messages, books on history and strategy relevant to the area, banners, spare uniforms, and badges of rank. Such minor mundane items dissipate once the spell's effect ends. Recasting the spell on subsequent days maintains the existing tent for another 24 hours.", - "document": "warlock", + "document": "wz", "level": 3, "school": "conjuration", "higher_level": "", @@ -255,7 +255,7 @@ "fields": { "name": "Devouring Darkness", "desc": "Terrifying and nightmarish monsters exist within the unknown void of the in-between. Choose up to six points you can see within range. Voidlike, magical darkness spreads from each point to fill a 10-footradius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and no light, magical or nonmagical, can illuminate it.\n Each creature inside a sphere when this spell is cast must make a Dexterity saving throw. On a failed save, the creature takes 6d10 piercing damage and 5d6 psychic damage and is restrained until it breaks free as unseen entities bite and tear at it from the Void. Once a successful save, the creature takes half as much damage and isn't restrained. A restrained creature can use its action to make a Strength check against your spell save DC. If it succeeds, it is no longer restrained.\n When a creature enters a sphere for the first time on a turn or starts its turn in a sphere, that creature must make an Intelligence saving throw. The creature takes 5d6 psychic damage on a failed save, or half as much damage on a successful one.\n Once created, the spheres can't be moved. A creature in overlapping spheres doesn't suffer additional effects for being in more than one sphere at a time.", - "document": "warlock", + "document": "wz", "level": 9, "school": "evocation", "higher_level": "", @@ -288,7 +288,7 @@ "fields": { "name": "Door of the Far Traveler", "desc": "You conjure a door to the destination of your choice that lasts for the duration or until dispelled. You sketch the outline of the door with chalk on any hard surface (a wall, a cliffside, the deck of a ship, etc.) and scribe sigils of power around its outline. The doorway must be at least 1 foot wide by 2 feet tall and can be no larger than 5 feet wide by 10 feet tall. Once the door is drawn, place the knob appropriately; it attaches magically to the surface and your drawing becomes a real door to the spell's destination. The doorway remains functional for the spell's duration. During that time, anyone can open or close the door and pass through it in either direction.\n The destination can be on any plane of existence. It must be familiar to you, and your level of familiarity with it determines the accuracy of the spell (determined by the GM). If it's a place you've visited, you can expect 100 percent accuracy. If it's been described to you by someone who was there, you might arrive in the wrong room or even the wrong structure, depending on how detailed their description was. If you've only heard about the destination third-hand, you may end up in a similar structure that's in a very different locale.\n *Door of the far traveler* doesn't create a doorway at the destination. It connects to an existing, working door. It can't, for example, take you to an open field or a forest with no structures (unless someone built a doorframe with a door in that spot for this specific purpose!). While the spell is in effect, the pre-existing doorway connects only to the area you occupied while casting the spell. If you connected to an existing doorway between a home's parlor and library, for example, and your door leads into the library, then people can still walk through that doorway from the parlor into the library normally. Anyone trying to go the other direction, however, arrives wherever you came from instead of in the parlor.\n Before casting the spell, you must spend one hour etching magical symbols onto the doorknob that will serve as the spell's material component to attune it to your desired destination. Once prepared, the knob remains attuned to that destination until it's used or you spend another hour attuning it to a different location.\n *The door of the far traveler* is dispelled if you remove the knob from the door. You can do this as a bonus action from either side of the door, provided it's shut. If the spell's duration expires naturally, the knob falls to the ground on whichever side of the door you're on. Once the spell ends, the knob loses its attunement to any location and another hour must be spent attuning it before it can be used again.", - "document": "warlock", + "document": "wz", "level": 8, "school": "conjuration", "higher_level": "If you cast this spell using a 9thlevel slot, the duration increases to 12 hours.", @@ -319,7 +319,7 @@ "fields": { "name": "Eternal Echo", "desc": "You gain a portentous voice of compelling power, commanding all undead within 60 feet that fail a Wisdom saving throw. This overrides any prior loyalty to spellcasters such as necromancers or evil priests, and it can nullify the effect of a Turn Undead result from a cleric.", - "document": "warlock", + "document": "wz", "level": 3, "school": "necromancy", "higher_level": "", @@ -350,7 +350,7 @@ "fields": { "name": "Ethereal Stairs", "desc": "You create a staircase out of the nothingness of the air. A shimmering staircase 10 feet wide appears and remains for the duration. The staircase ascends at a 45-degree angle to a point as much as 60 feet above the ground. The staircase consists only of steps with no apparent support, unless you choose to have it resemble a stone or wooden structure. Even then, its magical nature is obvious, as it has no color and is translucent, and only the steps have solidity; the rest of it is no more solid than air. The staircase can support up to 10 tons of weight. It can be straight, spiral, or switchback. Its bottom must connect to solid ground, but its top need not connect to anything.", - "document": "warlock", + "document": "wz", "level": 5, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the staircase extends an additional 20 feet for each slot level above 5th.", @@ -381,7 +381,7 @@ "fields": { "name": "Exchanged Knowledge", "desc": "When you cast this spell, you open a conduit to the Castle Library, granting access to difficult-to-obtain information. For the spell's duration, you double your proficiency bonus whenever you make an Intelligence check to recall information about any subject. Additionally, you can gain advantage on an Intelligence check to recall information. To do so, you must either sacrifice another lore-filled book or succeed on a Charisma saving throw. On a failed save, the spell ends, and you have disadvantage on all Intelligence checks to recall information for 1 week. A wish spell ends this effect.", - "document": "warlock", + "document": "wz", "level": 3, "school": "divination", "higher_level": "", @@ -412,7 +412,7 @@ "fields": { "name": "Hedgehog Dozen", "desc": "Eleven illusory duplicates of the touched creature appear in its space. A creature affected by hedgehog dozen seems to have a dozen arms, shields, and weapons-a swarm of partially overlapping, identical creatures. Until the spell ends, these duplicates move with the target and mimic its actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates. While surrounded by duplicates, a creature gains advantage against any opponent because of the bewildering number of weapons and movements. Each time a creature targets you with an attack during the spell's duration, roll a d8 to determine whether the attack instead targets one of your duplicates. On a roll of 1, it strikes you. On any other roll it removes one of your duplicates; when you have only five duplicates remaining, the spell ends. A creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false as with truesight.", - "document": "warlock", + "document": "wz", "level": 3, "school": "illusion", "higher_level": "", @@ -443,7 +443,7 @@ "fields": { "name": "Hypnagogia", "desc": "You alter the mental state of one creature you can see within range. The target must make an Intelligence saving throw. If it fails, choose one of the following effects. At the end of each of its turns, the target can make another Intelligence saving throw. On a success, the spell ends on the target. A creature with an Intelligence score of 4 or less isn't affected by this spell.\n ***Sleep Paralysis.*** Overwhelming heaviness and fatigue overcome the creature, slowing it. The creature's speed is halved, and it has disadvantage on weapon attacks.\n ***Phantasmata.*** The creature imagines vivid and terrifying hallucinations centered on a point of your choice within range. For the duration, the creature is frightened, and it must take the Dash action and move away from the point you chose by the safest available route on each of its turns, unless there is nowhere to move.\n ***False Awakening.*** The creature enters a trancelike state of consciousness in which it's not fully aware of its surroundings. It can't take reactions, and it must roll a d4 at the beginning of its turn to determine its behavior. Each time the target takes damage, it makes a new Intelligence saving throw. On a success, the spell ends on the target.\n\n| d4 | Behavior | \n|-----|-----------| \n| 1 | The creature takes the Dash action and uses all of its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. | \n| 2 | The creature uses its action to pantomime preparing for its day: brushing teeth and hair, bathing, eating, or similar activity. | \n| 3 | The creature moves up to its speed toward a randomly determined creature and uses its action to make one melee attack against that creature. If there is no creature within range, the creature does nothing this turn. | \n| 4 | The creature does nothing this turn. |", - "document": "warlock", + "document": "wz", "level": 4, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", @@ -474,7 +474,7 @@ "fields": { "name": "Hypnic Jerk", "desc": "Strange things happen in the mind and body in that moment between waking and sleeping. One of the most common is being startled awake by a sudden feeling of falling. With a snap of your fingers, you trigger that sensation in a creature you can see within range. The target must succeed on a Wisdom saving throw or take 1d6 force damage. If the target fails the saving throw by 5 or more, it drops one object it is holding. A dropped object lands in the creature's space.", - "document": "warlock", + "document": "wz", "level": 0, "school": "illusion", "higher_level": "The spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", @@ -505,7 +505,7 @@ "fields": { "name": "Inconspicuous Facade", "desc": "By means of this spell, you make a target building seem much less important or ostentatious than it is. You can give the target an unremarkable appearance or one that blends in with nearby buildings. By its nature, this spell does not allow you to specify features that would make the building stand out. You also cannot make a building look more opulent to match surrounding buildings. You can make the building appear smaller or larger that its actual size to better fit into its environs. However, these size changes are noticeable with cursory physical inspection as an object will pass through extra illusory space or bump into a seemingly smaller section of the building. A creature can use its action to inspect the building and make an Intelligence (Investigation) check against your spell save DC. If it succeeds, it becomes aware the building has been disguised. In addition to you dispelling inconspicuous facade, the spell ends if the target building is destroyed.", - "document": "warlock", + "document": "wz", "level": 4, "school": "illusion", "higher_level": "", @@ -536,7 +536,7 @@ "fields": { "name": "March of the Dead", "desc": "This spell animates the recently dead to remove them from a battlefield. Choose one corpse of a Medium or Small humanoid per level of the caster (within range). Your spell imbues the targets with an animating spirit, raising them as construct creatures similar in appearance to flesh golems, though with the strength and abilities of zombies. Dwarves use this to return the bodies of the fallen to clan tombs and to deny the corpses the foul attention of ghouls, necromancers, and similar foes. On each of your turns, you can use a bonus action to mentally command all the creatures you made with this spell if the creatures are within 60 feet of you. You decide what action the creatures will take and where they will move during the next day; you cannot command them to guard. If you issue no commands, the creatures only defend themselves against hostile creatures. Once given an order and direction of march, the creatures continue to follow it until they arrive at the destination you named or until 24 hours have elapsed when the spell ends and the corpses fall lifeless once more. To tell creatures to move for another 24 hours, you must cast this spell on the creatures again before the current 24-hour period ends. This use of the spell reasserts your control over up to 50 creatures you have animated with this spell rather than animating a new one.", - "document": "warlock", + "document": "wz", "level": 3, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional construct creatures for each slot level above 3rd (two creatures/level at 4th, three creatures/level at 5th). Each of the creatures must come from a different corpse.", @@ -567,7 +567,7 @@ "fields": { "name": "Mind Maze", "desc": "Choose a creature you can see within range. It must succeed on an Intelligence saving throw or be mentally trapped in an imagined maze of mirrors for the duration. While trapped in this way, the creature is incapacitated, but it imagines itself alone and wandering through the maze. Externally, it appears dazed as it turns in place and reaches out at nonexistent barriers. Each time the target takes damage, it makes another Intelligence saving throw. On a success, the spell ends.", - "document": "warlock", + "document": "wz", "level": 6, "school": "evocation", "higher_level": "", @@ -598,7 +598,7 @@ "fields": { "name": "Mirror Realm", "desc": "You transform a mirror into a magical doorway to an extradimensional realm. You and any creatures you designate when you cast the spell can move through the doorway into the realm beyond. For the spell's duration, the mirror remains anchored in the plane of origin, where it can't be broken or otherwise damaged by any mundane means. No creatures other than those you designate can pass through the mirror or see into the mirror realm.\n The realm within the mirror is an exact reflection of the location you left. The temperature is comfortable, and any environmental threats (lava, poisonous gas, or similar) are inert, harmless facsimiles of the real thing. Likewise, magic items reflected in the mirror realm have no magical properties, but those carried into it work normally. Food, drink, and other beneficial items within the mirror realm (reflections of originals in the real world) function as normal, real items; food can be eaten, wine can be drunk, and so on. Only items that were reflected in the mirror at the moment the spell was cast exist inside the mirror realm. Items placed in front of the mirror afterward don't appear in the mirror realm, and creatures never do unless they are allowed in by you. Items found in the mirror realm dissolve into nothingness when they leave it, but the effects of food and drink remain.\n Sound passes through the mirror in both directions. Creatures in the mirror realm can see what's happening in the world, but creatures in the world see only what the mirror reflects. Objects can cross the mirror boundary only while worn or carried by a creature, and spells can't cross it at all. You can't stand in the mirror realm and shoot arrows or cast spells at targets in the world or vice versa.\n The boundaries of the mirror realm are the same as the room or location in the plane of origin, but the mirror realm can't exceed 50,000 square feet (for simplicity, imagine 50 cubes, each cube being 10 feet on a side). If the original space is larger than this, such as an open field or a forest, the boundary is demarcated with an impenetrable, gray fog.\n Any creature still inside the mirror realm when the spell ends is expelled through the mirror into the nearest empty space.\n If this spell is cast in the same spot every day for a year, it becomes permanent. Once permanent, the mirror can't be moved or destroyed through mundane means. You can allow new creatures into the mirror realm (and disallow previous creatures) by recasting the spell within range of the permanent mirror. Casting the spell elsewhere doesn't affect the creation or the existence of a permanent mirror realm; a determined spellcaster could have multiple permanent mirror realms to use as storage spaces, hiding spots, and spy vantages.", - "document": "warlock", + "document": "wz", "level": 7, "school": "conjuration", "higher_level": "", @@ -629,7 +629,7 @@ "fields": { "name": "Obfuscate Object", "desc": "While you are in dim light, you cause an object in range to become unobtrusively obscured from the sight of other creatures. For the duration, you have advantage on Dexterity (Sleight of Hand) checks to hide the object. The object can't be larger than a shortsword, and it must be on your person, held in your hand, or otherwise unattended.", - "document": "warlock", + "document": "wz", "level": 0, "school": "illusion", "higher_level": "You can affect two objects when you reach 5th level, three objects at 11th level, and four objects at 17th level.", @@ -660,7 +660,7 @@ "fields": { "name": "Order of Revenge", "desc": "You touch a weapon or a bundle of 30 ammunition, imbuing them with spell energy. Any creature damaged by a touched, affected weapon leaves an invisibly glowing trail of their path until the spell expires. The caster may see this trail by casting revenge's eye or see invisible. Any other caster may see the trail by casting see invisible. Casting dispel magic on an affected creature causes that creature to stop generating a trail, and the trail fades over the next hour.", - "document": "warlock", + "document": "wz", "level": 3, "school": "enchantment", "higher_level": "When you cast the spell using a slot of 4th level or higher, you can target one additional weapon or bundle of ammunition for each slot level above fourth.", @@ -691,7 +691,7 @@ "fields": { "name": "Pierce the Veil", "desc": "By sketching a shimmering, ethereal doorway in the air and knocking three times, you call forth an otherworldly entity to provide insight or advice. The door swings open and the entity, wreathed in shadow or otherwise obscured, appears at the threshold. It answers up to five questions truthfully and to the best of its ability, but its answers aren't necessarily clear or direct. The entity can't pass through the doorway or interact with anything on your side of the doorway other than by speaking its responses.\n Likewise, creatures on your side of the doorway can't pass through it to the other side or interact with the other side in any way other than asking questions. In addition, the spell allows you and the creature to understand each other's words even if you have no language in common, the same as if you were both under the effects of the comprehend languages spell.\n When you cast this spell, you must request a specific, named entity, a specific type of creature, or a creature from a specific plane of existence. The target creature can't be native to the plane you are on when you cast the spell. After making this request, make an ability check using your spellcasting ability. The DC is 12 if you request a creature from a specific plane; 16 if you request a specific type of creature; or 20 if you request a specific entity. (The GM can choose to make this check for you secretly.) If the spellcasting check fails, the creature that responds to your summons is any entity of the GM's choosing, from any plane. No matter what, the creature is always of a type with an Intelligence of at least 8 and the ability to speak and to hear.", - "document": "warlock", + "document": "wz", "level": 5, "school": "divination", "higher_level": "", @@ -722,7 +722,7 @@ "fields": { "name": "Pratfall", "desc": "You cause a small bit of bad luck to befall a creature, making it look humorously foolish. You create one of the following effects within range: A small, oily puddle appears under the feet of your target, causing it to lose balance. The target must succeed on a Dexterity saving throw or be unable use a bonus action on its next turn as it regains its footing. Tiny particles blow in your target's face, causing it to sneeze. The target must succeed on a Constitution saving throw or have disadvantage on its first attack roll on its next turn. Strobing lights flash briefly before your target's eyes, causing difficulties with its vision. The target must succeed on a Constitution saving throw or its passive Perception is halved until the end of its next turn. The target feels the sensation of a quick, mild clap against its ears, briefly disorienting it. The target must succeed on a Constitution saving throw to maintain its concentration. An invisible force sharply tugs on the target's trousers, causing the clothing to slip down. The target must make a Dexterity saving throw. On a failed save, the target has disadvantage on its next attack roll with a two-handed weapon or loses its shield bonus to its Armor Class until the end of its next turn as it uses one hand to gather its slipping clothing. Only one of these effects can be used on a single creature at a time.", - "document": "warlock", + "document": "wz", "level": 1, "school": "conjuration", "higher_level": "", @@ -753,7 +753,7 @@ "fields": { "name": "Putrescent Faerie Circle", "desc": "You create a 20-foot-diameter circle of loosely-packed toadstools that spew sickly white spores and ooze a tarry substance. At the start of each of your turns, each creature within the circle must make a Constitution saving throw. A creature takes 4d8 necrotic damage on a failed save, or half as much damage on a successful one. If a creature attempts to pass through the ring of toadstools, the toadstools release a cloud of spores, and the creature must make a Constitution saving throw. On a failure, the creature takes 8d8 poison damage and is poisoned for 1 minute. On a success, the creature takes half as much damage and isn't poisoned. While a creature is poisoned, it is paralyzed. It can attempt a new Constitution saving throw at the end of each of its turns to remove the paralyzed condition (but not the poisoned condition).", - "document": "warlock", + "document": "wz", "level": 5, "school": "conjuration", "higher_level": "", @@ -786,7 +786,7 @@ "fields": { "name": "Reassemble", "desc": "You touch an undead creature (dust and bones suffice) destroyed not more than 10 hours ago; the creature is surrounded by purple fire for 1 round and is returned to life with full hit points. This spell has no effect on any creatures except undead, and it cannot restore a lich whose phylactery has been destroyed, a vampire destroyed by sunlight, any undead whose remains are destroyed by fire, acid, or holy water, or any remains affected by a gentle repose spell. This spell doesn't remove magical effects. If they aren't removed prior to casting, they return when the undead creature comes back to life. This spell closes all mortal wounds but doesn't restore missing body parts. If the creature doesn't have body parts or organs necessary for survival, the spell fails. Sudden reassembly is an ordeal involving enormous expenditure of necrotic energy; ley line casters within 5 miles are aware that some great shift in life forces has occurred and a sense of its direction. The target takes a -4 penalty to all attacks, saves, and ability checks. Every time it finishes a long rest, the penalty is reduced by 1 until it disappears.", - "document": "warlock", + "document": "wz", "level": 5, "school": "necromancy", "higher_level": "", @@ -817,7 +817,7 @@ "fields": { "name": "Reciprocating Portal", "desc": "With a gesture and a muttered word, you cause an inky black, circular portal to open on the ground beneath one or more creatures. You can create one 15-foot-diameter portal, two 10-foot-diameter portals, or six 5-foot-diameter portals. A creature that's standing where you create a portal must make a Dexterity saving throw. On a failed save, the creature falls through the portal, disappears into a demiplane where it is stunned as it falls endlessly, and the portal closes.\n At the start of your next turn, the creatures that failed their saving throws fall through matching portals directly above their previous locations. A falling creature lands prone in the space it once occupied or the nearest unoccupied space and takes falling damage as if it fell 60 feet, regardless of the distance between the exit portal and the ground. Flying and levitating creatures can't be affected by this spell.", - "document": "warlock", + "document": "wz", "level": 3, "school": "conjuration", "higher_level": "", @@ -848,7 +848,7 @@ "fields": { "name": "Remove Insulation", "desc": "You target a creature within range, and that creature must succeed on a Fortitude saving throw or become less resistant to lightning damage. A creature with immunity to lightning damage has advantage on this saving throw. On a failure, a creature with immunity to lightning damage instead has resistance to lightning damage for the spell's duration, and a creature with resistance to lightning damage loses its resistance for the duration. A creature without resistance to lightning damage that fails its saving throw takes double damage from lightning for the spell's duration. Remove curse or similar magic ends this spell.", - "document": "warlock", + "document": "wz", "level": 4, "school": "necromancy", "higher_level": "If you cast this spell using a spell slot of 6th level or higher, the duration is 24 hours. If you use a spell slot of 8th level or higher, a creature with immunity to lightning damage no longer has advantage on its saving throw. If you use a spell slot of 9th level or higher, the spell lasts until it is dispelled.", @@ -879,7 +879,7 @@ "fields": { "name": "Revenge's Eye", "desc": "You touch a creature's visual organs and grant them the ability to see the trail left by creatures damaged by a weapon you cast invisible creatures; it only reveals trails left by those affected by order of revenge also cast by the spellcaster.", - "document": "warlock", + "document": "wz", "level": 2, "school": "divination", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target +1 creature for each slot level above second.", @@ -910,7 +910,7 @@ "fields": { "name": "Rise of the Green", "desc": "The spell gives life to existing plants in range. If there are no plants in range, the spell creates undergrowth and trees that persist for the duration. One of the trees becomes a treant friendly to you and your companions. Roll initiative for the treant, which has its own turn. It obeys any verbal commands that you issue to it. If you don't issue it any commands, it defends itself from hostile creatures but otherwise takes no actions. The animated undergrowth creates difficult terrain for your enemies. Additionally, at the beginning of each of your turns, all creatures that are on the ground in range must succeed on a Strength saving throw or become restrained until the spell ends. A restrained creature can use an action to make a Strength (Athletics) check against your spell save DC, ending the effect on itself on a success. If a creature is restrained by plants at the beginning of your turn, it takes 1d6 bludgeoning damage. Finally, the trees swing at each enemy in range, requiring each creature to make a Dexterity saving throw. A creature takes 6d6 bludgeoning damage on a failed save or half as much damage on a successful one. You can use a bonus action to recenter the spell on yourself. This does not grow additional trees in areas that previously had none.", - "document": "warlock", + "document": "wz", "level": 8, "school": "evocation", "higher_level": "When you cast this spell using a 9th-level slot, an additional tree becomes a treant, the undergrowth deals an additional 1d6 bludgeoning damage, and the trees inflict an additional 2d6 bludgeoning damage.", @@ -943,7 +943,7 @@ "fields": { "name": "Rive", "desc": "You pull on the filaments of transition and possibility to tear at your enemies. Choose a creature you can see within range and make a ranged spell attack. On a hit, the target takes 5d8 cold damage as strands of icy nothingness whip from your outstretched hand to envelop it. If the target isn't native to the plane you're on, it takes an extra 3d6 psychic damage and must succeed on a Constitution saving throw or be stunned until the end of its next turn.", - "document": "warlock", + "document": "wz", "level": 4, "school": "evocation", "higher_level": "", @@ -976,7 +976,7 @@ "fields": { "name": "Shadow Adaptation", "desc": "Your flesh and clothing pale and become faded as your body takes on a tiny fragment of the Shadow Realm. For the duration of this spell, you are immune to shadow corruption and have resistance to necrotic damage. In addition, you have advantage on saving throws against effects that reduce your Strength score or hit point maximum, such as a shadow's Strength Drain or the harm spell.", - "document": "warlock", + "document": "wz", "level": 2, "school": "transmutation", "higher_level": "", @@ -1007,7 +1007,7 @@ "fields": { "name": "Skull Road", "desc": "You conjure a portal linking an unoccupied space you can see within range to an imprecise location on the plane of Evermaw. The portal is a circular opening, which you can make 5-20 feet in diameter. You can orient the portal in any direction you choose. The portal lasts for the duration. If your casting is at 5th level, this opens a pathway to the River of Tears, to the Vitreous Mire, or to the Plains of Bone-travel to a settlement can take up to 7 days (1d6+1). If cast at 7th level, the skull road spell opens a portal to a small settlement of gnolls, ghouls, or shadows on the plane near the Eternal Palace of Mot or a similar settlement. Undead casters can use this spell in the reverse direction, opening a portal from Evermaw to the mortal world, though with similar restrictions. At 5th level, the portal opens in a dark forest, cavern, or ruins far from habitation. At 7th level, the skull road leads directly to a tomb, cemetery, or mass grave near a humanoid settlement of some kind.", - "document": "warlock", + "document": "wz", "level": 5, "school": "conjuration", "higher_level": "", @@ -1038,7 +1038,7 @@ "fields": { "name": "Storm of Axes", "desc": "Deep Magic: battle You conjure up dozens of axes and direct them in a pattern in chopping, whirling mayhem. The blades fill eight 5-foot squares in a line 40 feet long or in a double-strength line 20 feet long and 10 deep. The axes cause 6d8 slashing damage to creatures in the area at the moment the spell is cast or half damage with a successful Dexterity saving throw. By maintaining concentration, you can move the swarm of axes up to 20 feet per round in any direction you wish. If the storm of axes moves into spaces containing creatures, they immediately must make another Dexterity saving throw or suffer damage again.", - "document": "warlock", + "document": "wz", "level": 4, "school": "conjuration", "higher_level": "", @@ -1069,7 +1069,7 @@ "fields": { "name": "Subliminal Aversion", "desc": "You ward a creature within range against attacks by making the choice to hit them painful. When the warded creature is hit with a melee attack from within 5 feet of it, the attacker takes 1d4 psychic damage.", - "document": "warlock", + "document": "wz", "level": 1, "school": "transmutation", "higher_level": "", @@ -1102,7 +1102,7 @@ "fields": { "name": "Summon Clockwork Beast", "desc": "Deep Magic: clockwork Once per day, you can cast this ritual to summon a Tiny clockwork beast doesn't require air, food, drink, or sleep. When its hit points are reduced to 0, it crumbles into a heap of gears and springs.", - "document": "warlock", + "document": "wz", "level": 5, "school": "conjuration", "higher_level": "", @@ -1133,7 +1133,7 @@ "fields": { "name": "Suppress Regeneration", "desc": "You temporarily remove the ability to regenerate from a creature you can see within range. The target must make a Constitution saving throw. On a failed save, the target can't regain hit points from the Regeneration trait or similar spell or trait for the duration. The target can receive magical healing or regain hit points from other traits, spells, or actions, as normal. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends on the target.", - "document": "warlock", + "document": "wz", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", @@ -1164,7 +1164,7 @@ "fields": { "name": "Threshold Slip", "desc": "The threshold of a doorway, the sill of a window, the junction where the floor meets the wall, the intersection of two walls—these are all points of travel for you. When you cast this spell, you can step into the junction of two surfaces, slip through the boundary of the Material Plane, and reappear in an unoccupied space with another junction you can see within 60 feet.\n You can take one willing creature of your size or smaller that you're touching with you. The target junction must have unoccupied spaces for both of you to enter when you reappear or the spell fails.", - "document": "warlock", + "document": "wz", "level": 2, "school": "conjuration", "higher_level": "", @@ -1195,7 +1195,7 @@ "fields": { "name": "Toxic Pollen", "desc": "Upon casting this spell, one type of plant within range gains the ability to puff a cloud of pollen based on conditions you supply during casting. If the conditions are met, an affected plant sprays a pollen cloud in a 10-foot-radius sphere centered on it. Creatures in the area must succeed on a Constitution saving throw or become poisoned for 1 minute. At the end of a poisoned creature's turn, it can make a Constitution saving throw. On a success, it is no longer poisoned. A plant can only release this pollen once within the duration.", - "document": "warlock", + "document": "wz", "level": 2, "school": "transmutation", "higher_level": "", @@ -1226,7 +1226,7 @@ "fields": { "name": "Vagrant's Nondescript Cloak", "desc": "You touch a creature. The creature is warded against the effects of locate creature, the caster may determine if the affected creature is within 1,000 feet but cannot determine the direction to the target of vagrant's nondescript cloak. If the creature is already affected by one of the warded spells, then both the effect and vagrant's nondescript cloak end immediately.", - "document": "warlock", + "document": "wz", "level": 2, "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of third level or higher, you can target +1 creature for each slot level above second.", @@ -1257,7 +1257,7 @@ "fields": { "name": "Vengeful Panopy of the Ley Line Ignited", "desc": "Deep Magic: ley line While bound to a ley line, you draw directly from its power, becoming cloaked in a magical heliotropic fire that sheds dim light in a 10-foot radius. Additionally, each round, including the round it is cast, you may make a ranged spell attack as an action. On a hit, the target takes 6d6 force damage. Every 3 minutes the effect is active, your bond with the ley line is reduced by one step; a bond to a Titanic ley line becomes effectively a Strong, then a Weak, and after 10 minutes, the bond is broken. The strength of the bond is only restored after a long rest; if the bond was broken, it can only be restored at the next weakest level for a week. A bond broken from a Weak ley line cannot be restored for two weeks. Some believe this spell damages ley lines, and there is some evidence to support this claim. Additionally, whenever a creature within 5 feet hits you with a melee attack, the cloak erupts with a heliotropic flare. The attacker takes 3d6 force damage.", - "document": "warlock", + "document": "wz", "level": 6, "school": "evocation", "higher_level": "When casting this spell using a spell slot of 6th level, the damage from all effects of the spell increase by 1d6 for each slot level above 6th.", @@ -1290,7 +1290,7 @@ "fields": { "name": "Who Goes There?", "desc": "You sift the surrounding air for sound wave remnants of recent conversations to discern passwords or other important information gleaned from a conversation, such as by guards on a picket line. The spell creates a cloud of words in the caster's mind, assigning relevance to them. Selecting the correct word or phrase is not foolproof, but you can make an educated guess. You make a Wisdom (Perception) check against the target person's Wisdom score (DC 10, if not specified) to successfully pick the key word or phrase.", - "document": "warlock", + "document": "wz", "level": 5, "school": "conjuration", "higher_level": "", @@ -1321,7 +1321,7 @@ "fields": { "name": "Zymurgic Aura", "desc": "A wave of putrefaction surges from you, targeting creatures of your choice within a 30-foot radius around you, speeding the rate of decay in those it touches. The target must make a Constitution saving throw. It takes 10d6 necrotic damage on a failed save or half as much on a successful save. Its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature takes a long rest.", - "document": "warlock", + "document": "wz", "level": 7, "school": "necromancy", "higher_level": "", diff --git a/data/v2/open5e/o5e/Document.json b/data/v2/open5e/o5e/Document.json index 2405f3ae..b5cd4684 100644 --- a/data/v2/open5e/o5e/Document.json +++ b/data/v2/open5e/o5e/Document.json @@ -1,7 +1,7 @@ [ { "model": "api_v2.document", - "pk": "o5e", + "pk": "open5e", "fields": { "name": "Open5e Originals", "desc": "Original items from Open5e", diff --git a/data/v2/open5e/o5e/Spell.json b/data/v2/open5e/o5e/Spell.json index c5d66f6c..84874a1b 100644 --- a/data/v2/open5e/o5e/Spell.json +++ b/data/v2/open5e/o5e/Spell.json @@ -5,7 +5,7 @@ "fields": { "name": "Eye bite", "desc": "For the spell's Duration, your eyes turn black and veins of dark energy lace your cheeks. One creature of your choice within 60 feet of you that you can see must succeed on a Wisdom saving throw or be affected by one of the listed Effects of your choice for the Duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of Eyebite.\n\nAsleep: The target is rendered Unconscious. It wakes up if it takes any damage or if another creature uses its action to jostle the sleeper awake.\n\nPanicked: The target is Frightened of you. On each of its turns, the Frightened creature must take the Dash action and move away from you by the safest and shortest possible route, unless there is no place to move. If the target is at least 60 feet away from you and can no longer see you, this effect ends.\n\nSickened: The target has disadvantage on Attack rolls and Ability Checks. At the end of each of its turns, it can make another Wisdom saving throw. If it succeeds, the effect ends.\n\n*(This Open5e spell replaces a like-named non-SRD spell from an official source.*", - "document": "o5e", + "document": "open5e", "level": 6, "school": "necromancy", "higher_level": "", @@ -36,7 +36,7 @@ "fields": { "name": "Ray of Sickness", "desc": "A ray of green light appears at your fingertip, arcing towards a target within range.\n\nMake a ranged spell attack against the target. On a hit, the target takes 2d8 poison damage and must make a Constitution saving throw. On a failed save, it is also poisoned until the end of your next turn.\n\n*(This Open5e spell replaces a like-named non-SRD spell from an official source.*", - "document": "o5e", + "document": "open5e", "level": 1, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", diff --git a/scripts/data_manipulation/v2_key_rewrite.py b/scripts/data_manipulation/v2_key_rewrite.py index 38a1ef50..3e90b681 100644 --- a/scripts/data_manipulation/v2_key_rewrite.py +++ b/scripts/data_manipulation/v2_key_rewrite.py @@ -1,7 +1,4 @@ -# Step 1: -#Ensure rulesets are perfect. -# Step 2: -#Ensure Licenses are perfect. + #Step 3: # Ensure documents are perect. #> This will require remapping if there are renaming From d02fabc4ec48d4ae34944f492c5cad6e0bf30d44 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 27 Apr 2024 07:10:01 -0500 Subject: [PATCH 06/84] Vault of Magic to VOM --- .../kobold-press/vault-of-magic/Document.json | 2 +- data/v2/kobold-press/vault-of-magic/Item.json | 2126 ++++++++--------- 2 files changed, 1064 insertions(+), 1064 deletions(-) diff --git a/data/v2/kobold-press/vault-of-magic/Document.json b/data/v2/kobold-press/vault-of-magic/Document.json index 7c9fc8af..4d9ca85b 100644 --- a/data/v2/kobold-press/vault-of-magic/Document.json +++ b/data/v2/kobold-press/vault-of-magic/Document.json @@ -1,7 +1,7 @@ [ { "model": "api_v2.document", - "pk": "vault-of-magic", + "pk": "vom", "fields": { "name": "Vault of Magic", "desc": "Inside Vault of Magic, you’ll find a vast treasure trove of enchanted items of every imaginable use—more than 900 in all! There are plenty of armors, weapons, potions, rings, and wands, but that’s just for starters. From mirrors to masks, edibles to earrings, and lanterns to lockets, it’s all here, ready for you to use in your 5th Edition game.\r\n\r\nThis 240-page volume includes:\r\n\r\n More than 30 unique items developed by special guests, including Patrick Rothfuss, Gail Simone, Deborah Ann Woll, and Luke Gygax\r\n Fabled items that grow in power as characters rise in levels\r\n New item themes, such as monster-inspired, clockwork, and apprentice wizards\r\n Hundreds of full-color illustrations\r\n 25 treasure-generation tables sorted by rarity and including magic items from the core rules\r\n\r\nAmaze and delight your players and spice up your 5th Edition campaign with fresh, new enchanted items from Vault of Magic. It’ll turn that next treasure hoard into something . . . wondrous!\r\n\r\nSKU: KOB-9245-DnD-5E", diff --git a/data/v2/kobold-press/vault-of-magic/Item.json b/data/v2/kobold-press/vault-of-magic/Item.json index 5558c137..580d32c4 100644 --- a/data/v2/kobold-press/vault-of-magic/Item.json +++ b/data/v2/kobold-press/vault-of-magic/Item.json @@ -5,7 +5,7 @@ "fields": { "name": "Aberrant Agreement", "desc": "This long scroll bears strange runes and seals of eldritch powers. When you use an action to present this scroll to an aberration whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the aberration, negotiating a service from it in exchange for a reward. The aberration is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the aberration, the truce is broken, and the creature can act normally. If the aberration refuses the offer, it is free to take any actions it wishes. Should you and the aberration reach an agreement that is satisfactory to both parties, you must sign the agreement and have the aberration do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the aberration to the agreement until its service is rendered and the reward paid, at which point the scroll blackens and crumbles to dust. An aberration's thinking is alien to most humanoids, and vaguely worded contracts may result in unintended consequences, as the creature may have different thoughts as to how to best meet the goal. If either party breaks the bargain, that creature immediately takes 10d6 psychic damage, and the charter is destroyed, ending the contract.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -24,7 +24,7 @@ "fields": { "name": "Accursed Idol", "desc": "Carved from a curious black stone of unknown origin, this small totem is fashioned in the macabre likeness of a Great Old One. While attuned to the idol and holding it, you gain the following benefits:\n- You can speak, read, and write Deep Speech.\n- You can use an action to speak the idol's command word and send otherworldly spirits to whisper in the minds of up to three creatures you can see within 30 feet of you. Each target must make a DC 13 Charisma saving throw. On a failed save, a creature takes 2d6 psychic damage and is frightened of you for 1 minute. On a successful save, a creature takes half as much damage and isn't frightened. If a target dies from this damage or while frightened, the otherworldly spirits within the idol are temporarily sated, and you don't suffer the effects of the idol's Otherworldly Whispers property at the next dusk. Once used, this property of the idol can't be used again until the next dusk.\n- You can use an action to cast the augury spell from the idol. The idol can't be used this way again until the next dusk.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -43,7 +43,7 @@ "fields": { "name": "Adamantine Spearbiter", "desc": "The front of this shield is fashioned in the shape of a snarling wolf ’s head. Spearbiter (Uncommon). When a creature you can see within 5 feet of you makes a melee weapon attack against you, you can use a reaction to attack the attacker’s weapon, the wolf ’s head animating and snapping its jaws at the weapon. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. If the result is higher than the attacker’s attack roll against you, the attacker’s attack misses you. You can’t use this property of the shield again until the next dawn. Adamantine Spearbiter (Rare). A more powerful version of this shield exists. Its wolf ’s head is fitted with adamantine fangs and appears larger and more menacing. When you use your reaction and animate the wolf ’s head to snap at the attacker’s weapon, you have advantage on the attack roll. In addition, there is no longer a limit to the number of times you can use this property of the shield.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -62,7 +62,7 @@ "fields": { "name": "Agile Breastplate", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -81,7 +81,7 @@ "fields": { "name": "Agile Chain Mail", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -100,7 +100,7 @@ "fields": { "name": "Agile Chain Shirt", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -119,7 +119,7 @@ "fields": { "name": "Agile Half Plate", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -138,7 +138,7 @@ "fields": { "name": "Agile Hide", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -157,7 +157,7 @@ "fields": { "name": "Agile Plate", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -176,7 +176,7 @@ "fields": { "name": "Agile Ring Mail", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -195,7 +195,7 @@ "fields": { "name": "Agile Scale Mail", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -214,7 +214,7 @@ "fields": { "name": "Agile Splint", "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -233,7 +233,7 @@ "fields": { "name": "Air Seed", "desc": "This plum-sized, nearly spherical sandstone is imbued with a touch of air magic. Typically, 1d4 + 4 air seeds are found together. You can use an action to throw the seed up to 60 feet. The seed explodes on impact and is destroyed. When it explodes, the seed releases a burst of fresh, breathable air, and it disperses gas or vapor and extinguishes candles, torches, and similar unprotected flames within a 10-foot radius of where the seed landed. Each suffocating or choking creature within a 10-foot radius of where the seed landed gains a lung full of air, allowing the creature to hold its breath for 5 minutes. If you break the seed while underwater, each creature within a 10-foot radius of where you broke the seed gains a lung full of air, allowing the creature to hold its breath for 5 minutes.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -252,7 +252,7 @@ "fields": { "name": "Akaasit Blade", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. This dagger is crafted from the arm blade of a defeated Akaasit (see Tome of Beasts 2). You can use an action to activate a small measure of prescience within the dagger for 1 minute. If you are attacked by a creature you can see within 5 feet of you while this effect is active, you can use your reaction to make one attack with this dagger against the attacker. If your attack hits, the dagger loses its prescience, and its prescience can't be activated again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -271,7 +271,7 @@ "fields": { "name": "Alabaster Salt Shaker", "desc": "This shaker is carved from purest alabaster in the shape of an owl. It is 7 inches tall and contains enough salt to flavor 25 meals. When the shaker is empty, it can't be refilled, and it becomes nonmagical. When you or another creature eat a meal salted by this shaker, you don't need to eat again for 48 hours, at which point the magic wears off. If you don't eat within 1 hour of the magic wearing off, you gain one level of exhaustion. You continue gaining one level of exhaustion for each additional hour you don't eat.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -290,7 +290,7 @@ "fields": { "name": "Alchemical Lantern", "desc": "This hooded lantern has 3 charges and regains all expended charges daily at dusk. While the lantern is lit, you can use an action to expend 1 charge to cause the lantern to spit gooey alchemical fire at a creature you can see in the lantern's bright light. The lantern makes its attack roll with a +5 bonus. On a hit, the target takes 2d6 fire damage, and it ignites. Until a creature takes an action to douse the fire, the target takes 1d6 fire damage at the start of each of its turns.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -309,7 +309,7 @@ "fields": { "name": "Alembic of Unmaking", "desc": "This large alembic is a glass retort supported by a bronze tripod and connected to a smaller glass container by a bronze spout. The bronze fittings are etched with arcane symbols, and the glass parts of the alembic sometimes emit bright, amethyst sparks. If a magic item is placed inside the alembic and a fire lit beneath it, the magic item dissolves and its magical energy drains into the smaller container. Artifacts, legendary magic items, and any magic item that won't physically fit into the alembic (anything larger than a shortsword or a cloak) can't be dissolved in this way. Full dissolution and distillation of an item's magical energy takes 1 hour, but 10 minutes is enough time to render most items nonmagical. If an item spends a full hour dissolving in the alembic, its magical energy coalesces in the smaller container as a lump of material resembling gray-purple, stiff dough known as arcanoplasm. This material is safe to handle and easy to incorporate into new magic items. Using arcanoplasm while creating a magic item reduces the cost of the new item by 10 percent per degree of rarity of the magic item that was distilled into the arcanoplasm. An alembic of unmaking can distill or disenchant one item per 24 hours.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -328,7 +328,7 @@ "fields": { "name": "Almanac of Common Wisdom", "desc": "The dog-eared pages of this thick, weathered tome contain useful advice, facts, and statistical information on a wide range of topics. The topics change to match information relevant to the area where it is currently located. If you spend a short rest consulting the almanac, you treat your proficiency bonus as 1 higher when making any Intelligence, Wisdom, or Charisma skill checks to discover, recall, or cite information about local events, locations, or creatures for the next 4 hours. For example, this almanac's magic can help you recall and find the location of a city's oldest tavern, but its magic won't help you notice a thug hiding in an alley near the tavern.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -347,7 +347,7 @@ "fields": { "name": "Amulet of Memory", "desc": "Made of gold or silver, this spherical locket is engraved with two cresting waves facing away from each other while bound in a twisted loop. It preserves a memory to be reexperienced later. While wearing this amulet, you can use an action to speak the command word and open the locket. The open locket stores what you see and experience for up to 10 minutes. You can shut the locket at any time (no action required), stopping the memory recording. Opening the locket with the command word again overwrites the contained memory. While a memory is stored, you or another creature can touch the locket to experience the memory from the beginning. Breaking contact ends the memory early. In addition, you have advantage on any skill check related to details or knowledge of the stored memory. If you die while wearing the amulet, it preserves you. Your body is affected by the gentle repose spell until the amulet is removed or until you are restored to life. In addition, at the moment of your death, you can store any memory into the amulet. A creature touching the amulet perceives the memory stored there even after your death. Attuning to an amulet of memory removes any prior memories stored in it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -366,7 +366,7 @@ "fields": { "name": "Amulet of Sustaining Health", "desc": "While wearing this amulet, you need to eat and drink only once every 7 days. In addition, you have advantage on saving throws against effects that would cause you to suffer a level of exhaustion.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -385,7 +385,7 @@ "fields": { "name": "Amulet of the Oracle", "desc": "When you finish a long rest while wearing this amulet, you can choose one cantrip from the cleric spell list. You can cast that cantrip from the amulet at will, using Wisdom as your spellcasting ability for it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -404,7 +404,7 @@ "fields": { "name": "Amulet of Whirlwinds", "desc": "This amulet is strung on a brass necklace and holds a piece of djinn magic. The amulet has 9 charges. You can use an action to expend 1 of its charges to create a whirlwind on a point you can see within 60 feet of you. The whirlwind is a 5-foot-radius, 30-foot-tall cylinder of swirling air that lasts as long as you maintain concentration (as if concentrating on a spell). Any creature other than you that enters the whirlwind must succeed on a DC 15 Strength saving throw or be restrained by it. You can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if you lose sight of it. A creature within 5 feet of the whirlwind can pull a creature out of it by taking an action to make a DC 15 Strength check and succeeding. A restrained creature can try to escape by taking an action to make a DC 15 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the whirlwind. When all of the amulet's charges are expended, the amulet becomes a nonmagical piece of jewelry worth 50 gp.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -423,7 +423,7 @@ "fields": { "name": "Anchor of Striking", "desc": "This small rusty iron anchor feels sturdy in spite of its appearance. You gain a +1 bonus to attack and damage rolls made with this magic war pick. When you roll a 20 on an attack roll made with this weapon, the target is wrapped in ethereal golden chains that extend from the bottom of the anchor. As an action, the chained target can make a DC 15 Strength or Dexterity check, freeing itself from the chains on a success. Alternatively, you can use a bonus action to command the chains to disappear, freeing the target. The chains are constructed of magical force and can't be damaged, though they can be destroyed with a disintegrate spell. While the target is wrapped in these chains, you and the target can't move further than 50 feet from each other.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -442,7 +442,7 @@ "fields": { "name": "Angelic Earrings", "desc": "These earrings feature platinum loops from which hang bronzed claws from a Chamrosh (see Tome of Beasts 2), freely given by the angelic hound. While wearing these earrings, you have advantage on Wisdom (Insight) checks to determine if a creature is lying or if it has an evil alignment. If you cast detect evil and good while wearing these earrings, the range increases to 60 feet, and the spell lasts 10 minutes without requiring concentration.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -461,7 +461,7 @@ "fields": { "name": "Angry Hornet", "desc": "This black ammunition has yellow fletching or yellow paint. When you fire this magic ammunition, it makes an angry buzzing sound, and it multiplies in flight. As it flies, 2d4 identical pieces of ammunition magically appear around it, all speeding toward your target. Roll separate attack rolls for each additional arrow or bullet. Duplicate ammunition disappears after missing or after dealing its damage. If the angry hornet and all its duplicates miss, the angry hornet remains magical and can be fired again, otherwise it is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -480,7 +480,7 @@ "fields": { "name": "Animated Abacus", "desc": "If you speak a mathematical equation within 5 feet of this abacus, it calculates the equation and displays the solution. If you are touching the abacus, it calculates only the equations you speak, ignoring all other spoken equations.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -499,7 +499,7 @@ "fields": { "name": "Animated Chain Mail", "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can use an action to cause parts of the armor to unravel into long, animated chains. While the chains are active, you have a climbing speed equal to your walking speed, and your AC is reduced by 2. You can use a bonus action to deactivate the chains, returning the armor to normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -518,7 +518,7 @@ "fields": { "name": "Ankh of Aten", "desc": "This golden ankh is about 12 inches long and has 5 charges. While holding the ankh by the loop, you can expend 1 charge as an action to fire a beam of brilliant sunlight in a 5-foot-wide, 60-foot-line from the end. Each creature caught in the line must make a DC 15 Constitution saving throw. On a failed save, a creature takes a5d8 radiant damage and is blinded until the end of your next turn. On a successful save, it takes half damage and isn't blinded. Undead have disadvantage on this saving throw. The ankh regains 1d4 + 1 expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -537,7 +537,7 @@ "fields": { "name": "Anointing Mace", "desc": "Also called an anointing gada, you gain a +1 bonus to attack and damage rolls made with this magic weapon. In addition, the ornately decorated head of the mace holds a reservoir perforated with small holes. As an action, you can fill the reservoir with a single potion or vial of liquid, such as holy water or alchemist's fire. You can press a button on the haft of the weapon as a bonus action, which opens the holes. If you hit a target with the weapon while the holes are open, the weapon deals damage as normal and the target suffers the effects of the liquid. For example,\nan anointing mace filled with holy water deals an extra 2d6 radiant damage if it hits a fiend or undead. After you press the button and make an attack roll, the liquid is expended, regardless if your attack hits.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -556,7 +556,7 @@ "fields": { "name": "Apron of the Eager Artisan", "desc": "Created by dwarven artisans, this leather apron has narrow pockets, which hold one type of artisan's tools. If you are wearing the apron and you spend 10 minutes contemplating your next crafting project, the tools in the apron magically change to match those best suited to the task. Once you have changed the tools available, you can't change them again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -575,7 +575,7 @@ "fields": { "name": "Arcanaphage Stone", "desc": "Similar to the rocks found in a bird's gizzard, this smooth stone helps an Arcanaphage (see Creature Codex) digest magic. While you hold or wear the stone, you have advantage on saving throws against spells.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -594,7 +594,7 @@ "fields": { "name": "Armor of Cushioning", "desc": "While wearing this armor, you have resistance to bludgeoning damage. In addition, you can use a reaction when you fall to reduce any falling damage you take by an amount equal to twice your level.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -613,7 +613,7 @@ "fields": { "name": "Armor of the Ngobou", "desc": "This thick and rough armor is made from the hide of a Ngobou (see Tome of Beasts), an aggressive, ox-sized dinosaur known to threaten elephants of the plains. The horns and tusks of the dinosaur are worked into the armor as spiked shoulder pads. While wearing this armor, you gain a +1 bonus to AC, and you have a magical sense for elephants. You automatically detect if an elephant has passed within 90 feet of your location within the last 24 hours, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) checks you make to find elephants.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -632,7 +632,7 @@ "fields": { "name": "Arrow of Grabbing", "desc": "This arrow has a barbed head and is wound with a fine but strong thread that unravels as the arrow soars. If a creature takes damage from the arrow, the creature must succeed on a DC 17 Constitution saving throw or take 4d6 damage and have the arrowhead lodged in its flesh. A creature grabbed by this arrow can't move farther away from you. At the end of its turn, the creature can attempt a DC 17 Constitution saving throw, taking 4d6 piercing damage and dislodging the arrow on a success. As an action, you can attempt to pull the grabbed creature up to 10 feet in a straight line toward you, forcing the creature to repeat the saving throw. If the creature fails, it moves up to 10 feet closer to you. If it succeeds, it takes 4d6 piercing damage and the arrow is dislodged.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -651,7 +651,7 @@ "fields": { "name": "Arrow of Unpleasant Herbs", "desc": "This arrow's tip is filled with magically preserved, poisonous herbs. When a creature takes damage from the arrow, the arrowhead breaks, releasing the herbs. The creature must succeed on a DC 15 Constitution saving throw or be incapacitated until the end of its next turn as it retches and reels from the poison.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -670,7 +670,7 @@ "fields": { "name": "Ash of the Ebon Birch", "desc": "This salve is created by burning bark from a rare ebon birch tree then mixing that ash with oil and animal blood to create a cerise pigment used to paint yourself or another creature with profane protections. Painting the pigment on a creature takes 1 minute, and you can choose to paint a specific sigil or smear the pigment on a specific part of the creature's body.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -689,7 +689,7 @@ "fields": { "name": "Ashes of the Fallen", "desc": "Found in a small packet, this coarse, foul-smelling black dust is made from the powdered remains of a celestial. Each packet of the substance contains enough ashes for one use. You can use an action to throw the dust in a 15-foot cone. Each spellcaster in the cone must succeed on a DC 15 Wisdom saving throw or become cursed for 1 hour or until the curse is ended with a remove curse spell or similar magic. Creatures that don't cast spells are unaffected. A cursed spellcaster must make a DC 15 Wisdom saving throw each time it casts a spell. On a success, the spell is cast normally. On a failure, the spellcaster casts a different, randomly chosen spell of the same level or lower from among the spellcaster's prepared or known spells. If the spellcaster has no suitable spells available, no spell is cast.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -708,7 +708,7 @@ "fields": { "name": "Ashwood Wand", "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains all expended charges daily at dawn. When you cast a spell that deals fire damage while using this wand as your spellcasting focus, the spell deals 1 extra fire damage. If you expend 1 of the wand's charges during the casting, the spell deals 1d4 + 1 extra fire damage instead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -727,7 +727,7 @@ "fields": { "name": "Asp's Kiss", "desc": "This haladie features two short, slightly curved blades attached to a single hilt with a short, blue-sheened spike on the hand guard. You gain a +2 bonus to attack and damage rolls made with this magic weapon. While attuned to this sword, you have immunity to poison damage, and, when you take the Dash action, the extra movement you gain is double your speed instead of equal to your speed. When you use the Attack action with this sword, you can make one attack with its hand guard spike (treat as a dagger) as a bonus action. You can use an action to cause indigo poison to coat the blades of this sword. The poison remains for 1 minute or until two attacks using the blade of this weapon hit one or more creatures. The target must succeed on a DC 17 Constitution saving throw or take 2d10 poison damage and its hit point maximum is reduced by an amount equal to the poison damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. The sword can't be used this way again until the next dawn. When you kill a creature with this weapon, it sheds a single, blue tear as it takes its last breath.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -746,7 +746,7 @@ "fields": { "name": "Aurochs Bracers", "desc": "These bracers have the graven image of a bull's head on them. Your Strength score is 19 while you wear these bracers. It has no effect on you if your Strength is already 19 or higher. In addition, when you use the Attack action to shove a creature, you have advantage on the Strength (Athletics) check.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -765,7 +765,7 @@ "fields": { "name": "Baba Yaga's Cinderskull", "desc": "Warm to the touch, this white, dry skull radiates dim, orange light from its eye sockets in a 30-foot radius. While attuned to the skull, you only require half of the daily food and water a creature of your size and type normally requires. In addition, you can withstand extreme temperatures indefinitely, and you automatically succeed on saving throws against extreme temperatures.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -784,7 +784,7 @@ "fields": { "name": "Badger Hide", "desc": "While wearing this hairy, black and white armor, you have a burrowing speed of 20 feet, and you have advantage on Wisdom (Perception) checks that rely on smell.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -803,7 +803,7 @@ "fields": { "name": "Bag of Bramble Beasts", "desc": "This ordinary bag, made from green cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, spiky object. The bag weighs 1/2 pound. You can use an action to pull the spiky object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a 1d8 and consulting the below table. The creature is a bramble version (see sidebar) of the beast listed in the table. The creature vanishes at the next dawn or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature. Once three spiky objects have been pulled from the bag, the bag can't be used again until the next dawn. Alternatively, one willing animal companion or familiar can be placed in the bag for 1 week. A non-beast animal companion or familiar that is placed in the bag is treated as if it had been placed into a bag of holding and can be removed from the bag at any time. A beast animal companion or familiar disappears once placed in the bag, and the bag's magic is dormant until the week is up. At the end of the week, the animal companion or familiar exits the bag as a bramble creature (see the template in the sidebar) and can be returned to its original form only with a wish. The creature retains its status as an animal companion or familiar after its transformation and can choose to activate or deactivate its Thorn Body trait as a bonus action. A transformed familiar can be re-summoned with the find familiar spell. Once the bag has been used to change an animal companion or familiar into a bramble creature, it becomes an ordinary, nonmagical bag. | 1d8 | Creature |\n| --- | ------------ |\n| 1 | Weasel |\n| 2 | Giant rat |\n| 3 | Badger |\n| 4 | Boar |\n| 5 | Panther |\n| 6 | Giant badger | Only a beast can become a bramble creature. It retains all its statistics except as noted below.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -822,7 +822,7 @@ "fields": { "name": "Bag of Traps", "desc": "Anyone reaching into this apparently empty bag feels a small coin, which resembles no known currency. Removing the coin and placing or tossing it up to 20 feet creates a random mechanical trap that remains for 10 minutes or until discharged or disarmed, whereupon it disappears. The coin returns to the bag only after the trap disappears. You may draw up to 10 traps from the bag each week. The GM has the statistics for mechanical traps.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -841,7 +841,7 @@ "fields": { "name": "Bagpipes of Battle", "desc": "Inspire friends and strike fear in the hearts of your enemies with the drone of valor and the shrill call of martial might! You must be proficient with wind instruments to use these bagpipes. You can use an action to play them and create a fearsome and inspiring tune. Each ally within 60 feet of you that can hear the tune gains a d12 Bardic Inspiration die for 10 minutes. Each creature within 60 feet of you that can hear the tune and that is hostile to you must succeed on a DC 15 Wisdom saving throw or be frightened of you for 1 minute. A hostile creature has disadvantage on this saving throw if it is within 5 feet of you or your ally. A frightened creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once used, the bagpipes can't be used in this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -860,7 +860,7 @@ "fields": { "name": "Baleful Wardrums", "desc": "You must be proficient with percussion instruments to use these drums. The drums have 3 charges. You can use an action to play them and expend 1 charge to create a baleful rumble. Each creature of your choice within 60 feet of you that hears you play must succeed on a DC 13 Wisdom saving throw or have disadvantage on its next weapon or spell attack roll. A creature that succeeds on its saving throw is immune to the effect of these drums for 24 hours. The drum regains 1d3 expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -879,7 +879,7 @@ "fields": { "name": "Band of Iron Thorns", "desc": "This black iron armband bristles with long, needle-sharp iron thorns. When you attune to the armband, the thorns bite into your flesh. The armband doesn't function unless the thorns pierce your skin and are able to reach your blood. While wearing the band, after you roll a saving throw but before the GM reveals if the roll is a success or failure, you can use your reaction to expend one Hit Die. Roll the die, and add the number rolled to your saving throw.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -898,7 +898,7 @@ "fields": { "name": "Band of Restraint", "desc": "These simple leather straps are nearly unbreakable when used as restraints. If you spend 1 minute tying a Small or Medium creature's limbs with these straps, the creature is restrained (escape DC 17) until it escapes or until you speak a command word to release the straps. While restrained by these straps, the target has disadvantage on Strength checks.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -917,7 +917,7 @@ "fields": { "name": "Bandana of Brachiation", "desc": "While wearing this bright yellow bandana, you have a climbing speed of 30 feet, and you gain a +5 bonus to Strength (Athletics) and Dexterity (Acrobatics) checks to jump over obstacles, to land on your feet, and to land safely on a breakable or unstable surface, such as a tree branch or rotting wooden rafters.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -936,7 +936,7 @@ "fields": { "name": "Bandana of Bravado", "desc": "While wearing this bright red bandana, you have advantage on Charisma (Intimidation) checks and on saving throws against being frightened.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -955,7 +955,7 @@ "fields": { "name": "Banner of the Fortunate", "desc": "While holding this banner aloft with one hand, you can use an action to inspire creatures nearby. Each creature of your choice within 60 feet of you that can see the banner has advantage on its next attack roll. The banner can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -974,7 +974,7 @@ "fields": { "name": "Battle Standard of Passage", "desc": "This battle standard hangs from a 4-foot-long pole and bears the colors and heraldry of a long-forgotten nation. You can use an action to plant the pole in the ground, causing the standard to whip and wave as if in a breeze. Choose up to six creatures within 30 feet of the standard, which can include yourself. Nonmagical difficult terrain costs the creatures you chose no extra movement. In addition, each creature you chose can pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. The standard stops waving and the effect ends after 10 minutes, or when a creature uses an action to pull the pole from the ground. The standard can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -993,7 +993,7 @@ "fields": { "name": "Bead of Exsanguination", "desc": "This small, black bead measures 3/4 of an inch in diameter and weights an ounce. Typically, 1d4 + 1 beads of exsanguination are found together. When thrown, the bead absorbs hit points from creatures near its impact site, damaging them. A bead can store up to 50 hit points at a time. When found, a bead contains 2d10 stored hit points. You can use an action to throw the bead up to 60 feet. Each creature within a 20-foot radius of where the bead landed must make a DC 15 Constitution saving throw, taking 3d6 necrotic damage on a failed save, or half as much damage on a successful one. The bead stores hit points equal to the necrotic damage dealt. The bead turns from black to crimson the more hit points are stored in it. If the bead absorbs 50 hit points or more, it explodes and is destroyed. Each creature within a 20-foot radius of the bead when it explodes must make a DC 15 Dexterity saving throw, taking 6d6 necrotic damage on a failed save, or half as much damage on a successful one. If you are holding the bead, you can use a bonus action to determine if the bead is below or above half its maximum stored hit points. If you hold and study the bead over the course of 1 hour, which can be done during a short rest, you know exactly how many hit points are stored in the bead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1012,7 +1012,7 @@ "fields": { "name": "Bear Paws", "desc": "These hand wraps are made of flexible beeswax that ooze sticky honey. While wearing these gloves, you have advantage on grapple checks. In addition, creatures grappled by you have disadvantage on any checks made to escape your grapple.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1031,7 +1031,7 @@ "fields": { "name": "Bed of Spikes", "desc": "This wide, wooden plank holds hundreds of two-inch long needle-like spikes. When you finish a long rest on the bed, you have resistance to piercing damage and advantage on Constitution saving throws to maintain your concentration on spells you cast for 8 hours or until you finish a short or long rest. Once used, the bed can't be used again until the next dusk.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1050,7 +1050,7 @@ "fields": { "name": "Belt of the Wilds", "desc": "This thin cord is made from animal sinew. While wearing the cord, you have advantage on Wisdom (Survival) checks to follow tracks left by beasts, giants, and humanoids. While wearing the belt, you can use a bonus action to speak the belt's command word. If you do, you leave tracks of the animal of your choice instead of your regular tracks. These tracks can be those of a Large or smaller beast with a CR of 1 or lower, such as a pony, rabbit, or lion. If you repeat the command word, you end the effect.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1069,7 +1069,7 @@ "fields": { "name": "Berserker's Kilt (Bear)", "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1088,7 +1088,7 @@ "fields": { "name": "Berserker's Kilt (Elk)", "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1107,7 +1107,7 @@ "fields": { "name": "Berserker's Kilt (Wolf)", "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1126,7 +1126,7 @@ "fields": { "name": "Big Dipper", "desc": "This wooden rod is topped with a ridged ball. The rod has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the rod's last charge, roll a d20. On a 1, the rod melts into a pool of nonmagical honey and is destroyed. Anytime you expend 1 or more charges for this rod's properties, the ridged ball flows with delicious, nonmagical honey for 1 minute.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1145,7 +1145,7 @@ "fields": { "name": "Binding Oath", "desc": "This lengthy scroll is the testimony of a pious individual's adherence to their faith. The author has emphatically rewritten these claims many times, and its two slim, metal rollers are wrapped in yards of parchment. When you attune to the item, you rewrite certain passages to align with your own religious views. You can use an action to throw the scroll at a Huge or smaller creature you can see within 30 feet of you. Make a ranged attack roll. On a hit, the scroll unfurls and wraps around the creature. The target is restrained until you take a bonus action to command the scroll to release the creature. If you command it to release the creature or if you miss with the attack, the scroll curls back into a rolled-up scroll. If the restrained target's alignment is the opposite of yours along the law/chaos or good/evil axis, you can use a bonus action to cause the writing to blaze with light, dealing 2d6 radiant damage to the target. A creature, including the restrained target, can use an action to make a DC 17 Strength check to tear apart the scroll. On a success, the scroll is destroyed. Such an attempt causes the writing to blaze with light, dealing 2d6 radiant damage to both the creature making the attempt and the restrained target, whether or not the attempt is successful. Alternatively, the restrained creature can use an action to make a DC 17 Dexterity check to slip free of the scroll. This action also triggers the damage effect, but it doesn't destroy the scroll. Once used, the scroll can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1164,7 +1164,7 @@ "fields": { "name": "Bituminous Orb", "desc": "A tarlike substance leaks continually from this orb, which radiates a cloying darkness and emanates an unnatural chill. While attuned to the orb, you have darkvision out to a range of 60 feet. In addition, you have immunity to necrotic damage, and you have advantage on saving throws against spells and effects that deal radiant damage. This orb has 6 charges and regains 1d6 daily at dawn. You can expend 1 charge as an action to lob some of the orb's viscous darkness at a creature you can see within 60 feet of you. The target must succeed on a DC 15 Dexterity saving throw or be grappled (escape DC 15). Until this grapple ends, the creature is blinded and takes 2d8 necrotic damage at the start of each of its turns, and you can use a bonus action to move the grappled creature up to 20 feet in any direction. You can't move the creature more than 60 feet away from the orb. Alternatively, you can use an action to expend 2 charges and crush the grappled creature. The creature must make a DC 15 Constitution saving throw, taking 6d8 bludgeoning damage on a failed save, or half as much damage on a successful one. You can end the grapple at any time (no action required). The orb's power can grapple only one creature at a time.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1183,7 +1183,7 @@ "fields": { "name": "Black and White Daggers", "desc": "These matched daggers are identical except for the stones set in their pommels. One pommel is chalcedony (opaque white), the other is obsidian (opaque black). You gain a +1 bonus to attack and damage rolls with both magic weapons. The bonus increases to +3 when you use the white dagger to attack a monstrosity, and it increases to +3 when you use the black dagger to attack an undead. When you hit a monstrosity or undead with both daggers in the same turn, that creature takes an extra 1d6 piercing damage from the second attack.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1202,7 +1202,7 @@ "fields": { "name": "Black Dragon Oil", "desc": "The viscous green-black oil within this magical ceramic pot bubbles slightly. The pot's stone stopper is sealed with greasy, dark wax. The pot contains 5 ounces of pure black dragon essence, obtained by slowly boiling the dragon in its own acidic secretions. You can use an action to apply 1 ounce of the oil to a weapon or single piece of ammunition. The next attack made with that weapon or ammunition deals an extra 2d8 acid damage to the target. A creature that takes the acid damage must succeed on a DC 15 Constitution saving throw at the start of its next turn or be burned for an extra 2d8 acid damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1221,7 +1221,7 @@ "fields": { "name": "Black Honey Buckle", "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1240,7 +1240,7 @@ "fields": { "name": "Black Phial", "desc": "This black stone phial has a tightly fitting stopper and 3 charges. As an action, you can fill the phial with blood taken from a living, or recently deceased (dead no longer than 1 minute), humanoid and expend 1 charge. When you do so, the black phial transforms the blood into a potion of greater healing. A creature who drinks this potion must succeed on a DC 12 Constitution saving throw or be poisoned for 1 hour. The phial regains 1d3 expended charges daily at midnight. If you expend the phial's last charge, roll a d20: 1d20. On a 1, the phial crumbles into dust and is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1259,7 +1259,7 @@ "fields": { "name": "Blackguard's Dagger", "desc": "You have advantage on attack rolls made with this weapon against a target if another enemy of the target is within 5 feet of it, and it has no allies within 5 feet of it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1278,7 +1278,7 @@ "fields": { "name": "Blackguard's Handaxe", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you draw this weapon, you can use a bonus action to cast the thaumaturgy spell from it. You can have only one of the spell's effects active at a time when you cast it in this way.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1297,7 +1297,7 @@ "fields": { "name": "Blackguard's Shortsword", "desc": "You have advantage on attack rolls made with this weapon against a target if another enemy of the target is within 5 feet of it, and it has no allies within 5 feet of it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1316,7 +1316,7 @@ "fields": { "name": "Blacktooth", "desc": "This black ivory, rune-carved wand has 7 charges. It regains 1d6 + 1 expended charges daily at dawn. While holding it, you can use an action to expend 1 or more of its charges to cast the guiding bolt spell from it, using an attack bonus of +7. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1335,7 +1335,7 @@ "fields": { "name": "Blade of Petals", "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. This brightly-colored shortsword is kept in a wooden scabbard with eternally blooming flowers. The blade is made of dull green steel, and its pommel is fashioned from hard rosewood. As a bonus action, you can conjure a flowery mist which fills a 20-foot area around you with pleasant-smelling perfume. The scent dissipates after 1 minute. A creature damaged by the blade must succeed on a DC 15 Charisma saving throw or be charmed by you until the end of its next turn. A creature can't be charmed this way more than once every 24 hours.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1354,7 +1354,7 @@ "fields": { "name": "Blade of the Dervish", "desc": "This magic scimitar is empowered by your movements. For every 10 feet you move before making an attack, you gain a +1 bonus to the attack and damage rolls of that attack, and the scimitar deals an extra 1d6 slashing damage if the attack hits (maximum of +3 and 3d6). In addition, if you use the Dash action and move within 5 feet of a creature, you can attack that creature as a bonus action. On a hit, the target takes an extra 2d6 slashing damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1373,7 +1373,7 @@ "fields": { "name": "Blade of the Temple Guardian", "desc": "This simple but elegant shortsword is a magic weapon. When you are wielding it and use the Flurry of Blows class feature, you can make your bonus attacks with the sword rather than unarmed strikes. If you deal damage to a creature with this weapon and reduce it to 0 hit points, you absorb some of its energy, regaining 1 expended ki point.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1392,7 +1392,7 @@ "fields": { "name": "Blasphemous Writ", "desc": "The Infernal runes inscribed upon this vellum scroll radiate a faint, crimson glow. When you use this spell scroll of command, the save DC is 15 instead of 13, and you can also affect targets that are undead or that don't understand your language.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1411,7 +1411,7 @@ "fields": { "name": "Blessed Pauper's Purse", "desc": "This worn cloth purse appears empty, even when opened, yet seems to always have enough copper pieces in it to make any purchase of urgent necessity when you dig inside. The purse produces enough copper pieces to provide for a poor lifestyle. In addition, if anyone asks you for charity, you can always open the purse to find 1 or 2 cp available to give away. These coins appear only if you truly intend to gift them to one who asks.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1430,7 +1430,7 @@ "fields": { "name": "Blinding Lantern", "desc": "This ornate brass lantern comes fitted with heavily inscribed plates shielding the cut crystal lens. With a flick of a lever, as an action, the plates rise and unleash a dazzling array of lights at a single target within 30 feet. You must use two hands to direct the lights precisely into the eyes of a foe. The target must succeed on a DC 11 Wisdom saving throw or be blinded until the end of its next turn. A creature blinded by the lantern is immune to its effects for 1 minute afterward. This property can't be used in a brightly lit area. By opening the shutter on the opposite side, the device functions as a normal bullseye lantern, yet illuminates magically, requiring no fuel and giving off no heat.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1449,7 +1449,7 @@ "fields": { "name": "Blood Mark", "desc": "Used as a form of currency between undead lords and the humanoids of their lands, this coin resembles a gold ring with a single hole in the center. It holds 1 charge, visible as a red glow in the center of the coin. While holding the coin, you can use an action to expend 1 charge and regain 1d3 hit points. At the same time, the humanoid who pledged their blood to the coin takes necrotic damage and reduces their hit point maximum by an equal amount. This reduction lasts until the creature finishes a long rest. It dies if this reduces its hit point maximum to 0. You can expend the charges in up to 5 blood marks as part of the same action. To replenish an expended charge in a blood mark, a humanoid must pledge a pint of their blood in a 10-minute ritual that involves letting a drop of their blood fall through the center of the coin. The drop disappears in the process and the center fills with a red glow. There is no limit to how much blood a humanoid may pledge, but each coin can hold only 1 charge. To pledge more, the humanoid must perform the ritual on another blood mark. Any person foolish enough to pledge more than a single blood coin might find the coins all redeemed at once, since such redemptions often happen at great blood feasts held by vampires and other undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1468,7 +1468,7 @@ "fields": { "name": "Blood Pearl", "desc": "This crimson pearl feels slick to the touch and contains a mote of blood imbued with malign purpose. As an action, you can break the pearl, destroying it, and conjure a Blood Elemental (see Creature Codex) for 1 hour. The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1487,7 +1487,7 @@ "fields": { "name": "Blood-Soaked Hide", "desc": "A creature that starts its turn in your space must succeed on a DC 15 Constitution saving throw or lose 3d6 hit points due to blood loss, and you regain a number of hit points equal to half the number of hit points the creature lost. Constructs and undead who aren't vampires are immune to this effect. Once used, you can't use this property of the armor again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1506,7 +1506,7 @@ "fields": { "name": "Bloodbow", "desc": "This longbow is carved of a light, sturdy wood such as hickory or yew, and it is almost always stained a deep maroon hue, lacquered and aged under layers of sundried blood. The bow is sometimes decorated with reptilian teeth, centaur tails, or other battle trophies. The bow is designed to harm the particular type of creature whose blood most recently soaked the weapon. When you make a ranged attack roll with this magic weapon against a creature of that type, you have a +1 bonus to the attack and damage rolls. If the attack hits, the target must succeed on a DC 15 Wisdom saving throw or become enraged until the end of your next turn. While enraged, the target suffers a random short-term madness.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1525,7 +1525,7 @@ "fields": { "name": "Blooddrinker Spear", "desc": "Prized by gnolls, the upper haft of this spear is decorated with tiny animal skulls, feathers, and other adornments. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit a creature with this spear, you mark that creature for 1 hour. Until the mark ends, you deal an extra 1d6 damage to the target whenever you hit it with the spear, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find the target. If the target drops to 0 hit points, the mark ends. This property can't be used on a different creature until you spend a short rest cleaning the previous target's blood from the spear.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1544,7 +1544,7 @@ "fields": { "name": "Bloodfuel Battleaxe", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1563,7 +1563,7 @@ "fields": { "name": "Bloodfuel Blowgun", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1582,7 +1582,7 @@ "fields": { "name": "Bloodfuel Crossbow Hand", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1601,7 +1601,7 @@ "fields": { "name": "Bloodfuel Crossbow Heavy", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1620,7 +1620,7 @@ "fields": { "name": "Bloodfuel Crossbow Light", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1639,7 +1639,7 @@ "fields": { "name": "Bloodfuel Dagger", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1658,7 +1658,7 @@ "fields": { "name": "Bloodfuel Dart", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1677,7 +1677,7 @@ "fields": { "name": "Bloodfuel Glaive", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1696,7 +1696,7 @@ "fields": { "name": "Bloodfuel Greataxe", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1715,7 +1715,7 @@ "fields": { "name": "Bloodfuel Greatsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1734,7 +1734,7 @@ "fields": { "name": "Bloodfuel Halberd", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1753,7 +1753,7 @@ "fields": { "name": "Bloodfuel Handaxe", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1772,7 +1772,7 @@ "fields": { "name": "Bloodfuel Javelin", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1791,7 +1791,7 @@ "fields": { "name": "Bloodfuel Lance", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1810,7 +1810,7 @@ "fields": { "name": "Bloodfuel Longbow", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1829,7 +1829,7 @@ "fields": { "name": "Bloodfuel Longsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1848,7 +1848,7 @@ "fields": { "name": "Bloodfuel Morningstar", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1867,7 +1867,7 @@ "fields": { "name": "Bloodfuel Pike", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1886,7 +1886,7 @@ "fields": { "name": "Bloodfuel Rapier", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1905,7 +1905,7 @@ "fields": { "name": "Bloodfuel Scimitar", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1924,7 +1924,7 @@ "fields": { "name": "Bloodfuel Shortbow", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1943,7 +1943,7 @@ "fields": { "name": "Bloodfuel Shortsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1962,7 +1962,7 @@ "fields": { "name": "Bloodfuel Sickle", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -1981,7 +1981,7 @@ "fields": { "name": "Bloodfuel Spear", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2000,7 +2000,7 @@ "fields": { "name": "Bloodfuel Trident", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2019,7 +2019,7 @@ "fields": { "name": "Bloodfuel Warpick", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2038,7 +2038,7 @@ "fields": { "name": "Bloodfuel Whip", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2057,7 +2057,7 @@ "fields": { "name": "Bloodlink Potion", "desc": "When you and another willing creature each drink at least half this potion, your life energies are linked for 1 hour. When you or the creature who drank the potion with you take damage while your life energies are linked, the total damage is divided equally between you. If the damage is an odd number, roll randomly to assign the extra point of damage. The effect is halted while you and the other creature are separated by more than 60 feet. The effect ends if either of you drop to 0 hit points. This potion's red liquid is viscous and has a metallic taste.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2076,7 +2076,7 @@ "fields": { "name": "Bloodpearl Bracelet (Gold)", "desc": "This silver or gold bracelet features three red pearls. You can use an action to remove a pearl and throw it up to 20 feet. When the pearl lands, it transforms into an ooze you determine by rolling a d6 and consulting the table that corresponds to the bracelet's color. The ooze vanishes at the next dawn or when it is reduced to 0 hit points. When you throw a pearl, your hit point maximum is reduced by the amount listed in the Blood Price column. This reduction can't be removed with the greater restoration spell or similar magic and lasts until the ooze vanishes or is reduced to 0 hit points. The ooze is friendly to you and your companions and acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the ooze acts in a fashion appropriate to its nature. Once all three pearls have been used, the bracelet can't be used again until the next dawn when the pearls regrow. | d6 | Ooze | CR | Blood Price |\n| --- | --------------------------- | --- | ---------------- |\n| 1 | Dipsa | 1/4 | 5 HP |\n| 2 | Treacle | 1/4 | 5 HP |\n| 3 | Gray Ooze | 1/2 | 5 HP |\n| 4 | Alchemy Apprentice Ooze | 1 | 7 ( 2d6) |\n| 5 | Suppurating Ooze | 1 | 7 ( 2d6) |\n| 6 | Gelatinous Cube | 2 | 10 ( 3d6) | | d6 | Ooze | CR | Blood Price |\n| --- | ----------------------- | --- | ---------------- |\n| 1 | Philosopher's Ghost | 4 | 17 ( 5d6) |\n| 2 | Ink Guardian Ooze | 4 | 17 ( 5d6) |\n| 3 | Black Pudding | 4 | 17 ( 5d6) |\n| 4 | Corrupting Ooze | 5 | 21 ( 6d6) |\n| 5 | Blood Ooze | 6 | 24 ( 7d6) |\n| 6 | Ruby ooze | 6 | 24 ( 7d6) |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2095,7 +2095,7 @@ "fields": { "name": "Bloodpearl Bracelet (Silver)", "desc": "This silver or gold bracelet features three red pearls. You can use an action to remove a pearl and throw it up to 20 feet. When the pearl lands, it transforms into an ooze you determine by rolling a d6 and consulting the table that corresponds to the bracelet's color. The ooze vanishes at the next dawn or when it is reduced to 0 hit points. When you throw a pearl, your hit point maximum is reduced by the amount listed in the Blood Price column. This reduction can't be removed with the greater restoration spell or similar magic and lasts until the ooze vanishes or is reduced to 0 hit points. The ooze is friendly to you and your companions and acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the ooze acts in a fashion appropriate to its nature. Once all three pearls have been used, the bracelet can't be used again until the next dawn when the pearls regrow. | d6 | Ooze | CR | Blood Price |\n| --- | --------------------------- | --- | ---------------- |\n| 1 | Dipsa | 1/4 | 5 HP |\n| 2 | Treacle | 1/4 | 5 HP |\n| 3 | Gray Ooze | 1/2 | 5 HP |\n| 4 | Alchemy Apprentice Ooze | 1 | 7 ( 2d6) |\n| 5 | Suppurating Ooze | 1 | 7 ( 2d6) |\n| 6 | Gelatinous Cube | 2 | 10 ( 3d6) | | d6 | Ooze | CR | Blood Price |\n| --- | ----------------------- | --- | ---------------- |\n| 1 | Philosopher's Ghost | 4 | 17 ( 5d6) |\n| 2 | Ink Guardian Ooze | 4 | 17 ( 5d6) |\n| 3 | Black Pudding | 4 | 17 ( 5d6) |\n| 4 | Corrupting Ooze | 5 | 21 ( 6d6) |\n| 5 | Blood Ooze | 6 | 24 ( 7d6) |\n| 6 | Ruby ooze | 6 | 24 ( 7d6) |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2114,7 +2114,7 @@ "fields": { "name": "Bloodprice Breastplate", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2133,7 +2133,7 @@ "fields": { "name": "Bloodprice Chain-Mail", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2152,7 +2152,7 @@ "fields": { "name": "Bloodprice Chain-Shirt", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2171,7 +2171,7 @@ "fields": { "name": "Bloodprice Half-Plate", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2190,7 +2190,7 @@ "fields": { "name": "Bloodprice Hide", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2209,7 +2209,7 @@ "fields": { "name": "Bloodprice Leather", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2228,7 +2228,7 @@ "fields": { "name": "Bloodprice Padded", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2247,7 +2247,7 @@ "fields": { "name": "Bloodprice Plate", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2266,7 +2266,7 @@ "fields": { "name": "Bloodprice Ring-Mail", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2285,7 +2285,7 @@ "fields": { "name": "Bloodprice Scale-Mail", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2304,7 +2304,7 @@ "fields": { "name": "Bloodprice Splint", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2323,7 +2323,7 @@ "fields": { "name": "Bloodprice Studded-Leather", "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2342,7 +2342,7 @@ "fields": { "name": "Bloodthirsty Battleaxe", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2361,7 +2361,7 @@ "fields": { "name": "Bloodthirsty Blowgun", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2380,7 +2380,7 @@ "fields": { "name": "Bloodthirsty Crossbow Hand", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2399,7 +2399,7 @@ "fields": { "name": "Bloodthirsty Crossbow Heavy", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2418,7 +2418,7 @@ "fields": { "name": "Bloodthirsty Crossbow Light", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2437,7 +2437,7 @@ "fields": { "name": "Bloodthirsty Dagger", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2456,7 +2456,7 @@ "fields": { "name": "Bloodthirsty Dart", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2475,7 +2475,7 @@ "fields": { "name": "Bloodthirsty Glaive", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2494,7 +2494,7 @@ "fields": { "name": "Bloodthirsty Greataxe", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2513,7 +2513,7 @@ "fields": { "name": "Bloodthirsty Greatsword", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2532,7 +2532,7 @@ "fields": { "name": "Bloodthirsty Halberd", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2551,7 +2551,7 @@ "fields": { "name": "Bloodthirsty Handaxe", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2570,7 +2570,7 @@ "fields": { "name": "Bloodthirsty Javelin", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2589,7 +2589,7 @@ "fields": { "name": "Bloodthirsty Lance", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2608,7 +2608,7 @@ "fields": { "name": "Bloodthirsty Longbow", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2627,7 +2627,7 @@ "fields": { "name": "Bloodthirsty Longsword", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2646,7 +2646,7 @@ "fields": { "name": "Bloodthirsty Morningstar", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2665,7 +2665,7 @@ "fields": { "name": "Bloodthirsty Pike", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2684,7 +2684,7 @@ "fields": { "name": "Bloodthirsty Rapier", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2703,7 +2703,7 @@ "fields": { "name": "Bloodthirsty Scimitar", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2722,7 +2722,7 @@ "fields": { "name": "Bloodthirsty Shortbow", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2741,7 +2741,7 @@ "fields": { "name": "Bloodthirsty Shortsword", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2760,7 +2760,7 @@ "fields": { "name": "Bloodthirsty Sickle", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2779,7 +2779,7 @@ "fields": { "name": "Bloodthirsty Spear", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2798,7 +2798,7 @@ "fields": { "name": "Bloodthirsty Trident", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2817,7 +2817,7 @@ "fields": { "name": "Bloodthirsty Warpick", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2836,7 +2836,7 @@ "fields": { "name": "Bloodthirsty Whip", "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2855,7 +2855,7 @@ "fields": { "name": "Bloodwhisper Cauldron", "desc": "This ancient, oxidized cauldron sits on three stubby legs and has images of sacrifice and ritual cast into its iron sides. When filled with concoctions that contain blood, the bubbling cauldron seems to whisper secrets of ancient power to those bold enough to listen. While filled with blood, the cauldron has the following properties. Once filled, the cauldron can't be refilled again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2874,7 +2874,7 @@ "fields": { "name": "Bludgeon of Nightmares", "desc": "You gain a +2 bonus to attack and damage rolls made with this weapon. The weapon appears to be a mace of disruption, and an identify spell reveals it to be such. The first time you use this weapon to kill a creature that has an Intelligence score of 5 or higher, you begin having nightmares and disturbing visions that disrupt your rest. Each time you complete a long rest, you must make a Wisdom saving throw. The DC equals 10 + the total number of creatures with Intelligence 5 or higher that you've reduced to 0 hit points with this weapon. On a failure, you gain no benefits from that long rest, and you gain one level of exhaustion.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2893,7 +2893,7 @@ "fields": { "name": "Blue Rose", "desc": "The petals of this cerulean flower can be prepared into a compote and consumed. A single flower can make 3 doses. When you consume a dose, your Intelligence, Wisdom, and Charisma scores are reduced by 1 each. This reduction lasts until you finish a long rest. You can consume up to three doses as part of casting a spell, and you can choose to affect your spell with one of the following options for each dose you consumed: - If the spell is of the abjuration school, increase the save DC by 2.\n- If the spell has more powerful effects when cast at a higher level, treat the spell's effects as if you had cast the spell at one slot level higher than the spell slot you used.\n- The spell is affected by one of the following metamagic options, even if you aren't a sorcerer: heightened, quickened, or subtle. A spell can't be affected by the same option more than once, though you can affect one spell with up to three different options. If you consume one or more doses without casting a spell, you can choose to instead affect a spell you cast before you finish a long rest. In addition, consuming blue rose gives you some protection against spells. When a spellcaster you can see casts a spell, you can use your reaction to cause one of the following:\n- You have advantage on the saving throw against the spell if it is a spell of the abjuration school.\n- If the spell is counterspell or dispel magic, the DC increases by 2 to interrupt your spellcasting or to end a magic effect on you. You can use this reaction a number of times equal to the number of doses you consumed. At the end of each long rest, you must make a DC 13 Constitution saving throw. On a failed save, your Hit Dice maximum is reduced by 25 percent. This reduction affects only the number of Hit Dice you can use to regain hit points during a short rest; it doesn't reduce your hit point maximum. This reduction lasts until you recover from the addiction. If you have no remaining Hit Dice to lose, you suffer one level of exhaustion, and your Hit Dice are returned to 75 percent of your maximum Hit Dice. The process then repeats until you die from exhaustion or you recover from the addiction. On a successful save, your exhaustion level decreases by one level. If a successful saving throw reduces your level of exhaustion below 1, you recover from the addiction. A greater restoration spell or similar magic ends the addiction and its effects. Consuming at least one dose of blue rose again halts the effects of the addiction for 2 days, at which point you can consume another dose of blue rose to halt it again or the effects of the addiction continue as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2912,7 +2912,7 @@ "fields": { "name": "Blue Willow Cloak", "desc": "This light cloak of fey silk is waterproof. While wearing this cloak in the rain, you can use your action to pull up the hood and become invisible for up to 1 hour. The effect ends early if you attack or cast a spell, if you use an action to pull down the hood, or if the rain stops. The cloak can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2931,7 +2931,7 @@ "fields": { "name": "Bone Skeleton Key", "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2950,7 +2950,7 @@ "fields": { "name": "Bone Whip", "desc": "This whip is constructed of humanoid vertebrae with their edges magically sharpened and pointed. The bones are joined together into a coiled line by strands of steel wire. The handle is half a femur wrapped in soft leather of tanned humanoid skin. You gain a +1 bonus to attack and damage rolls with this weapon. You can use an action to cause fiendish energy to coat the whip. For 1 minute, you gain 5 temporary hit points the first time you hit a creature on each turn. In addition, when you deal damage to a creature with this weapon, the creature must succeed on a DC 17 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage dealt. This reduction lasts until the creature finishes a long rest. Once used, this property of the whip can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2969,7 +2969,7 @@ "fields": { "name": "Bonebreaker Mace", "desc": "You gain a +1 bonus on attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use it to attack an undead creature. Often given to the grim enforcers of great necropolises, these weapons can reduce the walking dead to splinters with a single strike. When you hit an undead creature with this magic weapon, treat that creature as if it is vulnerable to bludgeoning damage. If it is already vulnerable to bludgeoning damage, your attack deals an additional 1d6 radiant damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -2988,7 +2988,7 @@ "fields": { "name": "Book of Ebon Tides", "desc": "This strange, twilight-hued tome was written on pages of pure shadow weave, bound in traditional birch board covers wrapped with shadow goblin hide, and imbued with the memories of forests on the Plane of Shadow. Its covers often reflect light as if it were resting in a forest grove, and some owners swear that a goblin face appears on them now and again. The sturdy lock on one side opens only for wizards, elves, and Shadow Fey (see Tome of Beasts). The book has 15 charges, and it regains 2d6 + 3 expended charges daily in the twilight before dawn. If you expend the last charge, roll a 1d20. On a 1, the book retains its Ebon Tides and Shadow Lore properties but loses its Spells property. When the magic ritual completes, make an Intelligence (Arcana) check and consult the Terrain Changes table for the appropriate DCs. You can change the terrain in any one way listed at your result or lower. For example, if your result was 17, you could turn a small forest up to 30 feet across into a grassland, create a grove of trees up to 240 feet across, create a 6-foot-wide flowing stream, overgrow 1,500 feet of an existing road, or other similar option. Only natural terrain you can see can be affected; built structures, such as homes or castles, remain untouched, though roads and trails can be overgrown or hidden. On a failure, the terrain is unchanged. On a 1, an Overshadow (see Tome of Beasts 2) also appears and attacks you. On a 20, you can choose two options. Deities, Fey Lords and Ladies (see Tome of Beasts), archdevils, demon lords, and other powerful rulers in the Plane of Shadow can prevent these terrain modifications from happening in their presence or anywhere within their respective domains. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness, illusion, or shadows, such as invisibility or major image. | DC | Effect |\n| --- | --------------------------------------------------------------------------------------------------- |\n| 8 | Obscuring a path and removing all signs of passage (30 feet per point over 7) |\n| 10 | Creating a grove of trees (30 feet across per point over 9) |\n| 11 | Creating or drying up a lake or pond (up to 10 feet across per point over 10) |\n| 12 | Creating a flowing stream (1 foot wide per point over 11) |\n| 13 | Overgrowing an existing road with brush or trees (300 feet per point over 12) |\n| 14 | Shifting a river to a new course (300 feet per point over 13) |\n| 15 | Moving a forest (300 feet per point over 14) |\n| 16 | Creating a small hill, riverbank, or cliff (10 feet tall per point over 15) |\n| 17 | Turning a small forest into grassland or clearing, or vice versa (30 feet across per point over 16) |\n| 18 | Creating a new river (10 feet wide per point over 17) |\n| 19 | Turning a large forest into grassland, or vice versa (300 feet across per point over 19) |\n| 20 | Creating a new mountain (1,000 feet high per point over 19) |\n| 21 | Drying up an existing river (reducing width by 10 feet per point over 20) |\n| 22 | Shrinking an existing hill or mountain (reducing 1,000 feet per point over 21) | Written by an elvish princess at the Court of Silver Words, this volume encodes her understanding and mastery of shadow. Whimsical illusions suffuse every page, animating its illuminated capital letters and ornamental figures. The book is a famous work among the sable elves of that plane, and it opens to the touch of any elfmarked or sable elf character.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3007,7 +3007,7 @@ "fields": { "name": "Book of Eibon", "desc": "This fragmentary black book is reputed to descend from the realms of Hyperborea. It contains puzzling guidelines for frightful necromantic rituals and maddening interdimensional travel. The book holds the following spells: semblance of dread*, ectoplasm*, animate dead, speak with dead, emanation of Yoth*, green decay*, yellow sign*, eldritch communion*, create undead, gate, harm, astral projection, and Void rift*. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, the book can contain other spells similarly related to necromancy, madness, or interdimensional travel. If you are attuned to this book, you can use it as a spellbook and as an arcane focus. In addition, while holding the book, you can use a bonus action to cast a necromancy spell that is written in this tome without expending a spell slot or using any verbal or somatic components. Once used, this property of the book can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3026,7 +3026,7 @@ "fields": { "name": "Book Shroud", "desc": "When not bound to a book, this red leather book cover is embossed with images of eyes on every inch of its surface. When you wrap this cover around a tome, it shifts the book's appearance to a plain red cover with a title of your choosing and blank pages on which you can write. When viewing the wrapped book, other creatures see the plain red version with any contents you've written. A creature succeeding on a DC 15 Wisdom (Perception) check sees the real book and can remove the shroud.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3045,7 +3045,7 @@ "fields": { "name": "Bookkeeper Inkpot", "desc": "This glass vessel looks like an ordinary inkpot. A quill fashioned from an ostrich feather accompanies the inkpot. You can use an action to speak the inkpot's command word, targeting a Bookkeeper (see Creature Codex) that you can see within 10 feet of you. An unwilling bookkeeper must succeed on a DC 13 Charisma saving throw or be transferred to the inkpot, making you the bookkeeper's new “creator.” While the bookkeeper is contained within the inkpot, it suffers no harm due to being away from its bound book, but it can't use any of its actions or traits that apply to it being in a bound book. Dipping the quill in the inkpot and writing in a book binds the bookkeeper to the new book. If the inkpot is found as treasure, there is a 50 percent chance it contains a bookkeeper. An identify spell reveals if a bookkeeper is inside the inkpot before using the inkpot's ink.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3064,7 +3064,7 @@ "fields": { "name": "Bookmark of Eldritch Insight", "desc": "This cloth bookmark is inscribed with blurred runes that are hard to decipher. If you use this bookmark while researching ancient evils (such as arch-devils or demon lords) or otherworldly mysteries (such as the Void or the Great Old Ones) during a long rest, the bookmark crumbles to dust and grants you its knowledge. You double your proficiency bonus on Arcana, History, and Religion checks to recall lore about the subject of your research for the next 24 hours. If you don't have proficiency in these skills, you instead gain proficiency in them for the next 24 hours, but you are proficient only when recalling information about the subject of your research.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3083,7 +3083,7 @@ "fields": { "name": "Boots of Pouncing", "desc": "These soft leather boots have a collar made of Albino Death Weasel fur (see Creature Codex). While you wear these boots, your walking speed becomes 40 feet, unless your walking speed is higher. Your speed is still reduced if you are encumbered or wearing heavy armor. If you move at least 20 feet straight toward a creature and hit it with a melee weapon attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone. If the target is prone, you can make one melee weapon attack against it as a bonus action.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3102,7 +3102,7 @@ "fields": { "name": "Boots of Quaking", "desc": "While wearing these steel-toed boots, the earth itself shakes when you walk, causing harmless, but unsettling, tremors. If you move at least 15 feet in a single turn, all creatures within 10 feet of you at any point during your movement must make a DC 16 Strength saving throw or take 1d6 force damage and fall prone. In addition, while wearing these boots, you can cast earthquake, requiring no concentration, by speaking a command word and jumping on a point on the ground. The spell is centered on that point. Once you cast earthquake in this way, you can't do so again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3121,7 +3121,7 @@ "fields": { "name": "Boots of Solid Footing", "desc": "A thick, rubbery sole covers the bottoms and sides of these stout leather boots. They are useful for maneuvering in cluttered alleyways, slick sewers, and the occasional patch of ice or gravel. While you wear these boots, you can use a bonus action to speak the command word. If you do, nonmagical difficult terrain doesn't cost you extra movement when you walk across it wearing these boots. If you speak the command word again as a bonus action, you end the effect. When the boots' property has been used for a total of 1 minute, the magic ceases to function until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3140,7 +3140,7 @@ "fields": { "name": "Boots of the Grandmother", "desc": "While wearing these boots, you have proficiency in the Stealth skill if you don't already have it, and you double your proficiency bonus on Dexterity (Stealth) checks. As an action, you can drip three drops of fresh blood onto the boots to ease your passage through the world. For 1d6 hours, you and your allies within 30 feet of you ignore difficult terrain. Once used, this property can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3159,7 +3159,7 @@ "fields": { "name": "Boots of the Swift Striker", "desc": "While you wear these boots, your walking speed increases by 10 feet. In addition, when you take the Dash action while wearing these boots, you can make a single weapon attack at the end of your movement. You can't continue moving after making this attack.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3178,7 +3178,7 @@ "fields": { "name": "Bottled Boat", "desc": "This clear glass bottle contains a tiny replica of a wooden rowboat down to the smallest detail, including two stout oars, a miniature coil of hemp rope, a fishing net, and a small cask. You can use an action to break the bottle, destroying the bottle and releasing its contents. The rowboat and all of the items emerge as full-sized, normal, and permanent items of their type, which includes 50 feet of hempen rope, a cask containing 20 gallons of fresh water, two oars, and a 12-foot-long rowboat.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3197,7 +3197,7 @@ "fields": { "name": "Bountiful Cauldron", "desc": "If this small, copper cauldron is filled with water and a half pound of meat, vegetables, or other foodstuffs then placed over a fire, it produces a simple, but hearty stew that provides one creature with enough nourishment to sustain it for one day. As long as the food is kept within the cauldron with the lid on, the food remains fresh and edible for up to 24 hours, though it grows cold unless reheated.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3216,7 +3216,7 @@ "fields": { "name": "Box of Secrets", "desc": "This well-made, cubical box appears to be a normal container that can hold as much as a normal chest. However, each side of the chest is a lid that can be opened on cunningly concealed hinges. A successful DC 15 Wisdom (Perception) check notices that the sides can be opened. When you use an action to turn the box so a new side is facing up, and speak the command word before opening the lid, the current contents of the chest slip into an interdimensional space, leaving it empty once more. You can use an action to fill the box again, then turn it over to a new side and open it, again sending the contents to the interdimensional space. This can be done up to six times, once for each side of the box. To gain access to a particular batch of contents, the correct side must be facing up, and you must use an action to speak the command word as you open the lid on that side. A box of secrets is often crafted with specific means of telling the sides apart, such as unique carvings on each side, or having each side painted a different color. If any side of the box is destroyed completely, the contents that were stored through that side are lost. Likewise, if the entire box is destroyed, the contents are lost forever.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3235,7 +3235,7 @@ "fields": { "name": "Bracelet of the Fire Tender", "desc": "This bracelet is made of thirteen small, roasted pinecones lashed together with lengths of dried sinew. It smells of pine and woodsmoke. It is uncomfortable to wear over bare skin. While wearing this bracelet, you don't have disadvantage on Wisdom (Perception) checks that rely on sight when looking in areas lightly obscured by nonmagical smoke or fog.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3254,7 +3254,7 @@ "fields": { "name": "Braid Whip Clasp", "desc": "This intricately carved ivory clasp can be wrapped around or woven into braided hair 3 feet or longer. While the clasp is attached to your braided hair, you can speak its command word as a bonus action and transform your braid into a dangerous whip. If you speak the command word again, you end the effect. You gain a +1 bonus to attack and damage rolls made with this magic whip. When the clasp's property has been used for a total of 10 minutes, you can't use it to transform your braid into a whip again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3273,7 +3273,7 @@ "fields": { "name": "Brain Juice", "desc": "This foul-smelling, murky, purple-gray liquid is created from the liquefied brains of spellcasting creatures, such as aboleths. Anyone consuming this repulsive mixture must make a DC 15 Intelligence saving throw. On a successful save, the drinker is infused with magical power and regains 1d6 + 4 expended spell slots. On a failed save, the drinker is afflicted with short-term madness for 1 day. If a creature consumes multiple doses of brain juice and fails three consecutive Intelligence saving throws, it is afflicted with long-term madness permanently and automatically fails all further saving throws brought about by drinking brain juice.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3292,7 +3292,7 @@ "fields": { "name": "Brass Clockwork Staff", "desc": "This curved staff is made of coiled brass and glass wire. You can use an action to speak one of three command words and throw the staff on the ground within 10 feet of you. The staff transforms into one of three wireframe creatures, depending on the command word: a unicorn, a hound, or a swarm of tiny beetles. The wireframe creature or swarm is under your control and acts on its own initiative count. On your turn, you can mentally command the wireframe creature or swarm if it is within 60 feet of you and you aren't incapacitated. You decide what action the creature takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location. The wireframe unicorn lasts for up to 1 hour, uses the statistics of a warhorse, and can be used as a mount. The wireframe hound lasts for up to 5 minutes, uses the statistics of a dire wolf, and has advantage to track any creature you damaged within the past hour. The wireframe beetle swarm lasts for up to 1 minute, uses the statistics of a swarm of beetles, and can destroy nonmagical objects that aren't being worn or carried and that aren't made of stone or metal (destruction happens at a rate of 1 pound of material per round, up to a maximum of 10 pounds). At the end of the duration, the wireframe creature or swarm reverts to its staff form. It reverts to its staff form early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. If it reverts to its staff form early by being reduced to 0 hit points, the staff becomes inert and unusable until the third dawn after the creature was killed. Otherwise, the wireframe creature or swarm has all of its hit points when you transform the staff into the creature again. When a wireframe creature or swarm becomes the staff again, this property of the staff can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3311,7 +3311,7 @@ "fields": { "name": "Brass Snake Ball", "desc": "Most commonly used by assassins to strangle sleeping victims, this heavy, brass ball is 6 inches across and weighs approximately 15 pounds. It has the image of a coiled snake embossed around it. You can use an action to command the orb to uncoil into a brass snake approximately 6 feet long and 3 inches thick. You can direct it by telepathic command to attack any creature within your line of sight. Use the statistics for the constrictor snake, but use Armor Class 14 and increase the challenge rating to 1/2 (100 XP). The snake can stay animate for up to 5 minutes or until reduced to 0 hit points. Being reduced to 0 hit points causes the snake to revert to orb form and become inert for 1 week. If damaged but not reduced to 0 hit points, the snake has full hit points when summoned again. Once you have used the orb to become a snake, it can't be used again until the next sunset.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3330,7 +3330,7 @@ "fields": { "name": "Brawler's Leather", "desc": "These rawhide straps have lines of crimson runes running along their length. They require 10 minutes of bathing them in salt water before carefully wrapping them around your forearms. Once fitted, you gain a +1 bonus to attack and damage rolls made with unarmed strikes. The straps become brittle with use. After you have dealt damage with unarmed strike attacks 10 times, the straps crumble away.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3349,7 +3349,7 @@ "fields": { "name": "Brawn Armor", "desc": "This armor was crafted from the hide of an ancient grizzly bear. While wearing it, you gain a +1 bonus to AC, and you have advantage on grapple checks. The armor has 3 charges. You can use a bonus action to expend 1 charge to deal your unarmed strike damage to a creature you are grappling. The armor regains all expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3368,7 +3368,7 @@ "fields": { "name": "Brazen Band", "desc": "Made by kobold clockwork mages, this brass clockwork ring is formed to look like a coiled dragon. When you speak or whisper the Draconic command word etched on the inside of the ring, the brass dragon uncoils and attempts to pick any lock within 10 feet of you. The dragon picks the lock using your proficiency bonus but with advantage. It is treated as having thieves' tools when attempting to pick locks. It uses your Dexterity (Stealth) bonus for purposes of not being spotted but with advantage due to its extremely small size. Whether successful or not, once you have used the ring to attempt to pick a lock, it can't be used again until the next sunset.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3387,7 +3387,7 @@ "fields": { "name": "Brazen Bulwark", "desc": "This rectangular shield is plated with polished brass and resembles a crenelated tower. While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3406,7 +3406,7 @@ "fields": { "name": "Breaker Lance", "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. When you attack an object or structure with this magic lance and hit, maximize your weapon damage dice against the target. The lance has 3 charges. As part of an attack action with the lance, you can expend a charge while striking a barrier created by a spell, such as a wall of fire or wall of force, or an entryway protected by the arcane lock spell. You must make a Strength check against a DC equal to 10 + the spell's level. On a successful check, the spell ends. The lance regains 1d3 expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3425,7 +3425,7 @@ "fields": { "name": "Breastplate of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3444,7 +3444,7 @@ "fields": { "name": "Breastplate of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3463,7 +3463,7 @@ "fields": { "name": "Breastplate of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3482,7 +3482,7 @@ "fields": { "name": "Breathing Reed", "desc": "This tiny river reed segment is cool to the touch. If you chew the reed while underwater, it provides you with enough air to breathe for up to 10 minutes. At the end of the duration, the reed loses its magic and can be harmlessly swallowed or spit out.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3501,7 +3501,7 @@ "fields": { "name": "Briarthorn Bracers", "desc": "These leather bracers are inscribed with Elvish runes. While wearing these bracers, you gain a +1 bonus to AC if you are using no shield. In addition, while in a forest, nonmagical difficult terrain costs you no extra movement.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3520,7 +3520,7 @@ "fields": { "name": "Broken Fang Talisman", "desc": "This talisman is a piece of burnished copper, shaped into a curved fang with a large crack through the middle. While wearing the talisman, you can use an action to cast the encrypt / decrypt (see Deep Magic for 5th Edition) spell. The talisman can't be used this way again until 1 hour has passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3539,7 +3539,7 @@ "fields": { "name": "Broom of Sweeping", "desc": "You can use an action to speak the broom's command word and give it short instructions consisting of a few words, such as “sweep the floor” or “dust the cabinets.” The broom can clean up to 5 cubic feet each minute and continues cleaning until you use another action to deactivate it. The broom can't climb barriers higher than 5 feet and can't open doors.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3558,7 +3558,7 @@ "fields": { "name": "Brotherhood of Fezzes", "desc": "This trio of fezzes works only if all three hats are worn within 60 feet of each other by creatures of the same size. If one of the hats is removed or moves further than 60 feet from the others or if creatures of different sizes are wearing the hats, the hats' magic temporarily ceases. While three creatures of the same size wear these fezzes within 60 feet of each other, each creature can use its action to cast the alter self spell from it at will. However, all three wearers of the fezzes are affected as if the same spell was simultaneously cast on each of them, making each wearer appear identical to the other. For example, if one Medium wearer uses an action to change its appearance to that of a specific elf, each other wearer's appearance changes to look like the exact same elf.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3577,7 +3577,7 @@ "fields": { "name": "Brown Honey Buckle", "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3596,7 +3596,7 @@ "fields": { "name": "Bubbling Retort", "desc": "This long, thin retort is fashioned from smoky yellow glass and is topped with an intricately carved brass stopper. You can unstopper the retort and fill it with liquid as an action. Once you do so, it spews out multicolored bubbles in a 20-foot radius. The bubbles last for 1d4 + 1 rounds. While they last, creatures within the radius are blinded and the area is heavily obscured to all creatures except those with tremorsense. The liquid in the retort is destroyed in the process with no harmful effect on its surroundings. If any bubbles are popped, they burst with a wet smacking sound but no other effect.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3615,7 +3615,7 @@ "fields": { "name": "Buckle of Blasting", "desc": "This soot-colored steel buckle has an exploding flame etched into its surface. It can be affixed to any common belt. While wearing this buckle, you have resistance to force damage. In addition, the buckle has 5 charges, and it regains 1d4 + 1 charges daily at dawn. It has the following properties.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3634,7 +3634,7 @@ "fields": { "name": "Bullseye Arrow", "desc": "This arrow has bright red fletching and a blunt, red tip. You gain a +1 bonus to attack rolls made with this magic arrow. On a hit, the arrow deals no damage, but it paints a magical red dot on the target for 1 minute. While the dot lasts, the target takes an extra 1d4 damage of the weapon's type from any ranged attack that hits it. In addition, ranged weapon attacks against the target score a critical hit on a roll of 19 or 20. When this arrow hits a target, the arrow vanishes in a flash of red light and is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3653,7 +3653,7 @@ "fields": { "name": "Burglar's Lock and Key", "desc": "This heavy iron lock bears a stout, pitted key permanently fixed in the keyhole. As an action, you can twist the key counterclockwise to instantly open one door, chest, bag, bottle, or container of your choice within 30 feet. Any container or portal weighing more than 30 pounds or restrained in any way (latched, bolted, tied, or the like) automatically resists this effect.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3672,7 +3672,7 @@ "fields": { "name": "Burning Skull", "desc": "This appallingly misshapen skull—though alien and monstrous in aspect—is undeniably human, and it is large and hollow enough to be worn as a helm by any Medium humanoid. The skull helm radiates an unholy spectral aura, which sheds dim light in a 10-foot radius. According to legends, gazing upon a burning skull freezes the blood and withers the brain of one who understands not its mystery.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3691,7 +3691,7 @@ "fields": { "name": "Butter of Disbelief", "desc": "This stick of magical butter is carved with arcane runes and never melts or spoils. It has 3 charges. While holding this butter, you can use an action to slice off a piece and expend 1 charge to cast the grease spell (save DC 13) from it. The grease that covers the ground looks like melted butter. The butter regains all expended charges daily at dawn. If you expend the last charge, the butter disappears.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3710,7 +3710,7 @@ "fields": { "name": "Buzzing Battleaxe", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3729,7 +3729,7 @@ "fields": { "name": "Buzzing Greataxe", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3748,7 +3748,7 @@ "fields": { "name": "Buzzing Greatsword", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3767,7 +3767,7 @@ "fields": { "name": "Buzzing Handaxe", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3786,7 +3786,7 @@ "fields": { "name": "Buzzing Longsword", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3805,7 +3805,7 @@ "fields": { "name": "Buzzing Rapier", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3824,7 +3824,7 @@ "fields": { "name": "Buzzing Scimitar", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3843,7 +3843,7 @@ "fields": { "name": "Buzzing Shortsword", "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3862,7 +3862,7 @@ "fields": { "name": "Candied Axe", "desc": "This battleaxe bears a golden head spun from crystalized honey. Its wooden handle is carved with reliefs of bees. You gain a +2 bonus to attack and damage rolls made with this magic weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3881,7 +3881,7 @@ "fields": { "name": "Candle of Communion", "desc": "This black candle burns with an eerie, violet flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on necromancy spells. After burning for 1 hour, or if the candle's flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the speak with dead spell with it. Doing so destroys the candle.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3900,7 +3900,7 @@ "fields": { "name": "Candle of Summoning", "desc": "This black candle burns with an eerie, green flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on conjuration spells. After burning for 1 hour, or if the flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the spirit guardians spell (save DC 15) with it. Doing so destroys the candle.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3919,7 +3919,7 @@ "fields": { "name": "Candle of Visions", "desc": "This black candle burns with an eerie, blue flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on divination spells. After burning for 1 hour, or if the flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the augury spell with it, which reveals its otherworldly omen in the candle's smoke. Doing so destroys the candle.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3938,7 +3938,7 @@ "fields": { "name": "Cap of Thorns", "desc": "Donning this thorny wooden circlet causes it to meld with your scalp. It can be removed only upon your death or by a remove curse spell. The cap ingests some of your blood, dealing 2d4 piercing damage. After this first feeding, the thorns feed once per day for 1d4 piercing damage. Once per day, you can sacrifice 1 hit point per level you possess to cast a special entangle spell made of thorny vines. Charisma is your spellcasting ability for this effect. Restrained creatures must make a successful Charisma saving throw or be affected by a charm person spell as thorns pierce their body. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target fails three consecutive saves, the thorns become deeply rooted and the charmed effect is permanent until remove curse or similar magic is cast on the target.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3957,7 +3957,7 @@ "fields": { "name": "Cape of Targeting", "desc": "You gain a +1 bonus to AC while wearing this long, flowing cloak. Whenever you are within 10 feet of more than two creatures, it subtly and slowly shifts its color to whatever the creatures nearest you find the most irritating. While within 5 feet of a hostile creature, you can use a bonus action to speak the cloak's command word to activate it, allowing your allies' ranged attacks to pass right through you. For 1 minute, each friendly creature that makes a ranged attack against a hostile creature within 5 feet of you has advantage on the attack roll. Each round the cloak is active, it enthusiastically and telepathically says “shoot me!” in different tones and cadences into the minds of each friendly creature that can see you and the cloak. The cloak can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3976,7 +3976,7 @@ "fields": { "name": "Captain's Flag", "desc": "This red and white flag adorned with a white anchor is made of velvet that never seems to fray in strong wings. When mounted and flown on a ship, the flag changes to the colors and symbol of the ship's captain and crew. While this flag is mounted on a ship, the captain and its allies have advantage on saving throws against being charmed or frightened. In addition, when the captain is reduced to 0 hit points while on the ship where this flag flies, each ally of the captain has advantage on its attack rolls until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -3995,7 +3995,7 @@ "fields": { "name": "Captain's Goggles", "desc": "These copper and glass goggles are prized by air and sea captains across the world. The goggles are designed to repel water and never fog. After attuning to the goggles, your name (or preferred moniker) appears on the side of the goggles. While wearing the goggles, you can't suffer from exhaustion.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4014,7 +4014,7 @@ "fields": { "name": "Case of Preservation", "desc": "This item appears to be a standard map or scroll case fashioned of well-oiled leather. You can store up to ten rolled-up sheets of paper or five rolled-up sheets of parchment in this container. While ensconced in the case, the contents are protected from damage caused by fire, exposure to water, age, or vermin.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4033,7 +4033,7 @@ "fields": { "name": "Cataloguing Book", "desc": "This nondescript book contains statistics and details on various objects. Libraries often use these tomes to assist visitors in finding the knowledge contained within their stacks. You can use an action to touch the book to an object you wish to catalogue. The book inscribes the object's name, provided by you, on one of its pages and sketches a rough illustration to accompany the object's name. If the object is a magic item or otherwise magic-imbued, the book also inscribes the object's properties. The book becomes magically connected to the object, and its pages denote the object's current location, provided the object is not protected by nondetection or other magic that thwarts divination magic. When you attune to this book, its previously catalogued contents disappear.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4052,7 +4052,7 @@ "fields": { "name": "Catalyst Oil", "desc": "This special elemental compound draws on nearby energy sources. Catalyst oils are tailored to one specific damage type (not including bludgeoning, piercing, or slashing damage) and have one dose. Whenever a spell or effect of this type goes off within 60 feet of a dose of catalyst oil, the oil catalyzes and becomes the spell's new point of origin. If the spell affects a single target, its original point of origin becomes the new target. If the spell's area is directional (such as a cone or a cube) you determine the spell's new direction. This redirected spell is easier to evade. Targets have advantage on saving throws against the spell, and the caster has disadvantage on the spell attack roll.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4071,7 +4071,7 @@ "fields": { "name": "Celestial Charter", "desc": "Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the celestial, negotiating a service from it in exchange for a reward. The celestial is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the celestial, the truce is broken, and the creature can act normally. If the celestial refuses the offer, it is free to take any actions it wishes. Should you and the celestial reach an agreement that is satisfactory to both parties, you must sign the charter and have the celestial do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the celestial to the agreement until its service is rendered and the reward paid, at which point the scroll vanishes in a bright flash of light. A celestial typically attempts to fulfill its end of the bargain as best it can, and it is angry if you exploit any loopholes or literal interpretations to your advantage. If either party breaks the bargain, that creature immediately takes 10d6 radiant damage, and the charter is destroyed, ending the contract.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4090,7 +4090,7 @@ "fields": { "name": "Celestial Sextant", "desc": "The ancient elves constructed these sextants to use as navigational aids on all their seagoing vessels. The knowledge of their manufacture has been lost, and few of them remain. While attuned to the sextant, you can spend 1 minute using the sextant to determine your latitude and longitude, provided you can see the sun or stars. You can use an action steer up to four vessels that are within 1 mile of the sextant, provided their crews are willing. To do so, you must have spent at least 1 hour aboard each of the controlled vessels, performing basic sailing tasks and familiarizing yourself with the vessel.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4109,7 +4109,7 @@ "fields": { "name": "Censer of Dark Shadows", "desc": "This enchanted censer paints the air with magical, smoky shadow. While holding the censer, you can use an action to speak its command word, causing the censer to emit shadow in a 30-foot radius for 1 hour. Bright light and sunlight within this area is reduced to dim light, and dim light within this area is reduced to magical darkness. The shadow spreads around corners, and nonmagical light can't illuminate this shadow. The shadow emanates from the censer and moves with it. Completely enveloping the censer within another sealed object, such as a lidded pot or a leather bag, blocks the shadow. If any of this effect's area overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled. Once the censer is used to emit shadow, it can't do so again until the next dusk.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4128,7 +4128,7 @@ "fields": { "name": "Centaur Wrist-Wraps", "desc": "These leather and fur wraps are imbued with centaur shamanic magic. The wraps are stained a deep amber color, and intricate motifs painted in blue seem to float above the surface of the leather. While wearing these wraps, you can call on their magic to reroll an attack made with a shortbow or longbow. You must use the new roll. Once used, the wraps must be held in wood smoke for 15 minutes before they can be used in this way again.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4147,7 +4147,7 @@ "fields": { "name": "Cephalopod Breastplate", "desc": "This bronze breastplate depicts two krakens fighting. While wearing this armor, you gain a +1 bonus to AC. You can use an action to speak the armor's command word to release a cloud of black mist (if above water) or black ink (if underwater). It billows out from you in a 20-foot-radius cloud of mist or ink. The area is heavily obscured for 1 minute, although a wind of moderate or greater speed (at least 10 miles per hour) or a significant current disperses it. The armor can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4166,7 +4166,7 @@ "fields": { "name": "Ceremonial Sacrificial Knife", "desc": "Runes dance along the blade of this keen knife. Sacrificial Knife (Common). While attuned to it, you can use this magic, rune-inscribed dagger as a spellcasting focus. Ceremonial Sacrificial Knife (Uncommon). More powerful versions of this blade also exist. While holding the greater version of this dagger, you can use it to perform a sacrificial ritual during a short rest. If you sacrifice a Tiny or Small creature, you regain one expended 1st-level spell slot. If you sacrifice a Medium or larger creature, you regain one expended 2nd-level spell slot.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4185,7 +4185,7 @@ "fields": { "name": "Chain Mail of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4204,7 +4204,7 @@ "fields": { "name": "Chain Mail of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4223,7 +4223,7 @@ "fields": { "name": "Chain Mail of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4242,7 +4242,7 @@ "fields": { "name": "Chain Shirt of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4261,7 +4261,7 @@ "fields": { "name": "Chain Shirt of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4280,7 +4280,7 @@ "fields": { "name": "Chain Shirt of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4299,7 +4299,7 @@ "fields": { "name": "Chainbreaker Greatsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4318,7 +4318,7 @@ "fields": { "name": "Chainbreaker Longsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4337,7 +4337,7 @@ "fields": { "name": "Chainbreaker Rapier", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4356,7 +4356,7 @@ "fields": { "name": "Chainbreaker Scimitar", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4375,7 +4375,7 @@ "fields": { "name": "Chainbreaker Shortsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4394,7 +4394,7 @@ "fields": { "name": "Chalice of Forbidden Ecstasies", "desc": "The cup of this garnet chalice is carved in the likeness of a human skull. When the chalice is filled with blood, the dark red gemstone pulses with a scintillating crimson light that sheds dim light in a 5-foot radius. Each creature that drinks blood from this chalice has disadvantage on enchantment spells you cast for the next 24 hours. In addition, you can use an action to cast the suggestion spell, using your spell save DC, on a creature that has drunk blood from the chalice within the past 24 hours. You need to concentrate on this suggestion to maintain it during its duration. Once used, the suggestion power of the chalice can't be used again until the next dusk.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4413,7 +4413,7 @@ "fields": { "name": "Chalk of Exodus", "desc": "This piece of chalk glitters in the light, as if infused with particles of mica or gypsum. The chalk has 10 charges. You can use an action and expend 1 charge to draw a door on any solid surface upon which the chalk can leave a mark. You can then push open the door while picturing a real door within 10 miles of your current location. The door you picture must be one that you have passed through, in the normal fashion, once before. The chalk opens a magical portal to that other door, and you can step through the portal to appear at that other location as if you had stepped through that other door. At the destination, the target door opens, revealing a glowing portal from which you emerge. Once through, you can shut the door, dispelling the portal, or you can leave it open for up to 1 minute. While the door is open, any creature that can fit through the chalk door can traverse the portal in either direction. Each time you use the chalk, roll a 1d20. On a roll of 1, the magic malfunctions and connects you to a random door similar to the one you pictured within the same range, though it might be a door you have never seen before. The chalk becomes nonmagical when you use the last charge.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4432,7 +4432,7 @@ "fields": { "name": "Chamrosh Salve", "desc": "This 3-inch-diameter ceramic jar contains 1d4 + 1 doses of a syrupy mixture that smells faintly of freshly washed dog fur. The jar is a glorious gold-white, resembling the shimmering fur of a Chamrosh (see Tome of Beasts 2), the holy hound from which this salve gets its name. As an action, one dose of the ointment can be applied to the skin. The creature that receives it regains 2d8 + 1 hit points and is cured of the charmed, frightened, and poisoned conditions.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4451,7 +4451,7 @@ "fields": { "name": "Charlatan's Veneer", "desc": "This silken scarf is a more powerful version of the Commoner's Veneer (see page 128). When in an area containing 12 or more humanoids, Wisdom (Perception) checks to spot you have disadvantage. You can use a bonus action to call on the power in the scarf to invoke a sense of trust in those to whom you speak. If you do so, you have advantage on the next Charisma (Persuasion) check you make against a humanoid while you are in an area containing 12 or more humanoids. In addition, while wearing the scarf, you can use modify memory on a humanoid you have successfully persuaded in the last 24 hours. The scarf can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4470,7 +4470,7 @@ "fields": { "name": "Charm of Restoration", "desc": "This fist-sized ball of tightly-wound green fronds contains the bark of a magical plant with curative properties. A natural loop is formed from one of the fronds, allowing the charm to be hung from a pack, belt, or weapon pommel. As long as you carry this charm, whenever you are targeted by a spell or magical effect that restores your hit points, you regain an extra 1 hit point.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4489,7 +4489,7 @@ "fields": { "name": "Chieftain's Axe", "desc": "Furs conceal the worn runes lining the haft of this oversized, silver-headed battleaxe. You gain a +2 bonus to attack and damage rolls made with this silvered, magic weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4508,7 +4508,7 @@ "fields": { "name": "Chillblain Breastplate", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4527,7 +4527,7 @@ "fields": { "name": "Chillblain Chain Mail", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4546,7 +4546,7 @@ "fields": { "name": "Chillblain Chain Shirt", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4565,7 +4565,7 @@ "fields": { "name": "Chillblain Half Plate", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4584,7 +4584,7 @@ "fields": { "name": "Chillblain Plate", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4603,7 +4603,7 @@ "fields": { "name": "Chillblain Ring Mail", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4622,7 +4622,7 @@ "fields": { "name": "Chillblain Scale Mail", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4641,7 +4641,7 @@ "fields": { "name": "Chillblain Splint", "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4660,7 +4660,7 @@ "fields": { "name": "Chronomancer's Pocket Clock", "desc": "This golden pocketwatch has 3 charges and regains 1d3 expended charges daily at midnight. While holding it, you can use an action to wind it and expend 1 charge to cast the haste spell from it. If the pendant is destroyed (AC 14, 15 hit points) while it has 3 charges, the creature that broke it gains the effects of the time stop spell.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4679,7 +4679,7 @@ "fields": { "name": "Cinch of the Wolfmother", "desc": "This belt is made of the treated and tanned intestines of a dire wolf, enchanted to imbue those who wear it with the ferocity and determination of the wolf. While wearing this belt, you can use an action to cast the druidcraft or speak with animals spell from it at will. In addition, you have advantage on Wisdom (Perception) checks that rely on hearing or smell. If you are reduced to 0 hit points while attuned to the belt and fail two death saving throws, you die immediately as your body violently erupts in a shower of blood, and a dire wolf emerges from your entrails. You assume control of the dire wolf, and it gains additional hit points equal to half of your maximum hit points prior to death. The belt then crumbles and is destroyed. If the wolf is targeted by a remove curse spell, then you are reborn when the wolf dies, just as the wolf was born when you died. However, if the curse remains after the wolf dies, you remain dead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4698,7 +4698,7 @@ "fields": { "name": "Circlet of Holly", "desc": "While wearing this circlet, you gain the following benefits: - **Language of the Fey**. You can speak and understand Sylvan. - **Friend of the Fey.** You have advantage on ability checks to interact socially with fey creatures.\n- **Poison Sense.** You know if any food or drink you are holding contains poison.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4717,7 +4717,7 @@ "fields": { "name": "Circlet of Persuasion", "desc": "While wearing this circlet, you have advantage on Charisma (Persuasion) checks.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4736,7 +4736,7 @@ "fields": { "name": "Clacking Teeth", "desc": "Taken from a Fleshspurned (see Tome of Beasts 2), a toothy ghost, this bony jaw holds oversized teeth that sweat ectoplasm. The jaw has 3 charges and regains 1d3 expended charges daily at dusk. While holding the jaw, you can use an action to expend 1 of its charges and choose a target within 30 feet of you. The jaw's teeth clatter together, and the target must succeed on a DC 15 Wisdom saving throw or be confused for 1 minute. While confused, the target acts as if under the effects of the confusion spell. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4755,7 +4755,7 @@ "fields": { "name": "Clamor Bell", "desc": "You can affix this small, brass bell to an object with the leather cords tied to its top. If anyone other than you picks up, interacts with, or uses the object without first speaking the bell's command word, it rings for 5 minutes or until you touch it and speak the command word again. The ringing is audible 100 feet away. If a creature takes an action to cut the bindings holding the bell onto the object, the bell ceases ringing 1 round after being released from the object.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4774,7 +4774,7 @@ "fields": { "name": "Clarifying Goggles", "desc": "These goggles contain a lens of slightly rippled blue glass that turns clear underwater. While wearing these goggles underwater, you don't have disadvantage on Wisdom (Perception) checks that rely on sight when peering through silt, murk, or other natural underwater phenomena that would ordinarily lightly obscure your vision. While wearing these goggles above water, your vision is lightly obscured.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4793,7 +4793,7 @@ "fields": { "name": "Cleaning Concoction", "desc": "This fresh-smelling, clear green liquid can cover a Medium or smaller creature or object (or matched set of objects, such as a suit of clothes or pair of boots). Applying the liquid takes 1 minute. It removes soiling, stains, and residue, and it neutralizes and removes odors, unless those odors are particularly pungent, such as in skunks or creatures with the Stench trait. Once the potion has cleaned the target, it evaporates, leaving the creature or object both clean and dry.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4812,7 +4812,7 @@ "fields": { "name": "Cloak of Coagulation", "desc": "While wearing this rust red cloak, your blood quickly clots. When you are subjected to an effect that causes additional damage on subsequent rounds due to bleeding, blood loss, or continual necrotic damage, such as a horned devil's tail attack or a sword of wounding, the effect ceases after a single round of damage. For example, if a stirge hits you with its proboscis, you take the initial damage, plus the damage from blood loss on the following round, after which the wound clots, the stirge detaches, and you take no further damage. The cloak doesn't prevent a creature from using such an attack or effect again; a horned devil or a stirge can attack you again, though the cloak will continue to stop any recurring effects after a single round.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4831,7 +4831,7 @@ "fields": { "name": "Cloak of Petals", "desc": "This delicate cloak is covered in an array of pink, purple, and yellow flowers. While wearing this cloak, you have advantage on Dexterity (Stealth) checks made to hide in areas containing flowering plants. The cloak has 3 charges. When a creature you can see targets you with an attack, you can use your reaction to expend 1 of its charges to release a shower of petals from the cloak. If you do so, the attacker has disadvantage on the attack roll. The cloak regains 1d3 expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4850,7 +4850,7 @@ "fields": { "name": "Cloak of Sails", "desc": "The interior of this simple, black cloak looks like white sailcloth. While wearing this cloak, you gain a +1 bonus to AC and saving throws. You lose this bonus while using the cloak's Sailcloth property.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4869,7 +4869,7 @@ "fields": { "name": "Cloak of Squirrels", "desc": "This wool brocade cloak features a repeating pattern of squirrel heads and tree branches. It has 3 charges and regains all expended charges daily at dawn. While wearing this cloak, you can use an action to expend 1 charge to cast the legion of rabid squirrels spell (see Deep Magic for 5th Edition) from it. You don't need to be in a forest to cast the spell from this cloak, as the squirrels come from within the cloak. When the spell ends, the swarm vanishes back inside the cloak.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4888,7 +4888,7 @@ "fields": { "name": "Cloak of the Bearfolk", "desc": "While wearing this cloak, your Constitution score is 15, and you have proficiency in the Athletics skill. The cloak has no effect if you already have proficiency in this skill or if your Constitution score is already 15 or higher.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4907,7 +4907,7 @@ "fields": { "name": "Cloak of the Eel", "desc": "While wearing this rough, blue-gray leather cloak, you have a swimming speed of 40 feet. When you are hit with a melee weapon attack while wearing this cloak, you can use your reaction to generate a powerful electric charge. The attacker must succeed on a DC 13 Dexterity saving throw or take 2d6 lightning damage. The attacker has disadvantage on the saving throw if it hits you with a metal weapon. The cloak can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4926,7 +4926,7 @@ "fields": { "name": "Cloak of the Empire", "desc": "This voluminous grey cloak has bright red trim and the sigil from an unknown empire on its back. The cloak is stiff and doesn't fold as easily as normal cloth. Whenever you are struck by a ranged weapon attack, you can use a reaction to reduce the damage from that attack by your Charisma modifier (minimum of 1).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4945,7 +4945,7 @@ "fields": { "name": "Cloak of the Inconspicuous Rake", "desc": "This cloak is spun from simple gray wool and closed with a plain, triangular copper clasp. While wearing this cloak, you can use a bonus action to make yourself forgettable for 5 minutes. A creature that sees you must make a DC 15 Intelligence saving throw as soon as you leave its sight. On a failure, the witness remembers seeing a person doing whatever you did, but it doesn't remember details about your appearance or mannerisms and can't accurately describe you to another. Creatures with truesight aren't affected by this cloak. The cloak can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4964,7 +4964,7 @@ "fields": { "name": "Cloak of the Ram", "desc": "While wearing this cloak, you can use an action to transform into a mountain ram (use the statistics of a giant goat). This effect works like the polymorph spell, except you retain your Intelligence, Wisdom, and Charisma scores. You can use an action to transform back into your original form. Each time you transform into a ram in a single day, you retain the hit points you had the last time you transformed. If you were reduced to 0 hit points the last time you were a ram, you can't become a ram again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -4983,7 +4983,7 @@ "fields": { "name": "Cloak of the Rat", "desc": "While wearing this gray garment, you have a +5 bonus to your passive Wisdom (Perception) score.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5002,7 +5002,7 @@ "fields": { "name": "Cloak of Wicked Wings", "desc": "From a distance, this long, black cloak appears to be in tatters, but a closer inspection reveals that it is sewn from numerous scraps of cloth and shaped like bat wings. While wearing this cloak, you can use your action to cast polymorph on yourself, transforming into a swarm of bats. While in the form of a swarm of bats, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. If you are a druid with the Wild Shape feature, this transformation instead lasts as long as your Wild Shape lasts. The cloak can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5021,7 +5021,7 @@ "fields": { "name": "Clockwork Gauntlet", "desc": "This metal gauntlet has a steam-powered ram built into the greaves. It has 3 charges and regains 1d3 expended charges daily at dawn. While wearing the gauntlet, you can expend 1 charge as a bonus action to force the ram in the gauntlets to slam a creature within 5 feet of you. The ram thrusts out from the gauntlet and makes its attack with a +5 bonus. On a hit, the target takes 2d8 bludgeoning damage, and it must succeed on a DC 13 Constitution saving throw or be stunned until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5040,7 +5040,7 @@ "fields": { "name": "Clockwork Hand", "desc": "A beautiful work of articulate brass, this prosthetic clockwork hand (or hands) can't be worn if you have both of your hands. While wearing this hand, you gain a +2 bonus to damage with melee weapon attacks made with this hand or weapons wielded in this hand.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5059,7 +5059,7 @@ "fields": { "name": "Clockwork Hare", "desc": "Gifted by a deity of time and clockwork, these simple-seeming trinkets portend some momentous event. The figurine resembles a hare with a clock in its belly. You can use an action to press the ears down and activate the clock, which spins chaotically. The hare emits a field of magic in a 30- foot radius from it for 1 hour. The field moves with the hare, remaining centered on it. While within the field, you and up to 5 willing creatures of your choice exist outside the normal flow of time, and all other creatures and objects are frozen in time. If an affected creature moves outside the field, the creature immediately becomes frozen in time until it is in the field again. The field ends early if an affected creature attacks, touches, alters, or has any other physical or magical impact on a creature, or an object being worn or carried by a creature, that is frozen in time. When the field ends, the figurine turns into a nonmagical, living white hare that goes bounding off into the distance, never to be seen again.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5078,7 +5078,7 @@ "fields": { "name": "Clockwork Mace of Divinity", "desc": "This clockwork mace is composed of several different metals. While attuned to this magic weapon, you have proficiency with it. As a bonus action, you can command the mace to transform into a trident. When you hit with an attack using this weapon's trident form, the target takes an extra 1d6 radiant damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5097,7 +5097,7 @@ "fields": { "name": "Clockwork Mynah Bird", "desc": "This mechanical brass bird is nine inches long from the tip of its beak to the end of its tail, and it can become active for up to 12 hours. Once it has been used, it can't be used again until 2 days have passed. If you use your action to speak the first command word (“listen” in Ignan), it cocks its head and listens intently to all nearby sounds with a passive Wisdom (Perception) of 17 for up to 10 minutes. When you give the second command word (“speak”), it repeats back what it heard in a metallic-sounding—though reasonably accurate—portrayal of the sounds. You can use the clockwork mynah bird to relay sounds and conversations it has heard to others. As an action, you can command the mynah to fly to a location it has previously visited within 1 mile. It waits at the location for up to 1 hour for someone to command it to speak. At the end of the hour or after it speaks its recording, it returns to you. The clockwork mynah bird has an Armor Class of 14, 5 hit points, and a flying speed of 50 feet.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5116,7 +5116,7 @@ "fields": { "name": "Clockwork Pendant", "desc": "This pendant resembles an ornate, miniature clock and has 3 charges. While holding this pendant, you can expend 1 charge as an action to cast the blur, haste, or slow spell (save DC 15) from it. The spell's duration changes to 3 rounds, and it doesn't require concentration. You can have only one spell active at a time. If you cast another, the previous spell effect ends. It regains 1d3 expended charges daily at dawn. If the pendant is destroyed (AC 14, 15 hit points) while it has 3 charges, it creates a temporal distortion for 1d4 rounds. For the duration, each creature and object that enters or starts its turn within 10 feet of the pendant has immunity to all damage, all spells, and all other physical or magical effects but is otherwise able to move and act normally. If a creature moves further than 10 feet from the pendant, these effects end for it. At the end of the duration, the pendant crumbles to dust.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5135,7 +5135,7 @@ "fields": { "name": "Clockwork Rogue Ring", "desc": "Made by kobold clockwork mages, this brass clockwork ring is formed to look like a coiled dragon. When you speak or whisper the Draconic command word etched on the inside of the ring, the brass dragon uncoils and attempts to pick any lock within 10 feet of you. The dragon picks the lock using your proficiency bonus but with advantage. It is treated as having thieves' tools when attempting to pick locks. It uses your Dexterity (Stealth) bonus for purposes of not being spotted but with advantage due to its extremely small size. Whether successful or not, once you have used the ring to attempt to pick a lock, it can't be used again until the next sunset.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5154,7 +5154,7 @@ "fields": { "name": "Clockwork Spider Cloak", "desc": "This hooded cloak is made from black spider silk and has thin brass ribbing stitched on the inside. It has 3 charges. While wearing the cloak, you gain a +2 bonus on Dexterity (Stealth) checks. As an action, you can expend 1 charge to animate the brass ribs into articulated spider legs 1 inch thick and 6 feet long for 1 minute. You can use the charges in succession. The spider legs allow you to climb at your normal walking speed, and you double your proficiency bonus and gain advantage on any Strength (Athletics) checks made for slippery or difficult surfaces. The cloak regains 1d3 charges each day at sunset.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5173,7 +5173,7 @@ "fields": { "name": "Coffer of Memory", "desc": "This small golden box resembles a jewelry box and is easily mistaken for a common trinket. When attuned to the box, its owner can fill the box with mental images of important events lasting no more than 1 minute each. Any number of memories can be stored this way. These images are similar to a slide show from the bearer's point of view. On a command from its owner, the box projects a mental image of a requested memory so that whoever is holding the box at that moment can see it. If a coffer of memory is found with memories already stored inside it, a newly-attuned owner can view a randomly-selected stored memory with a successful DC 15 Charisma check.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5192,7 +5192,7 @@ "fields": { "name": "Collar of Beast Armor", "desc": "This worked leather collar has stitching in the shapes of various animals. While a beast wears this collar, its base AC becomes 13 + its Dexterity modifier. It has no effect if the beast's base AC is already 13 or higher. This collar affects only beasts, which can include a creature affected by the polymorph spell or a druid assuming a beast form using Wild Shape.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5211,7 +5211,7 @@ "fields": { "name": "Comfy Slippers", "desc": "While wearing the slippers, your feet feel warm and comfortable, no matter what the ambient temperature.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5230,7 +5230,7 @@ "fields": { "name": "Commander's Helm", "desc": "This helmet sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The type of light given off by the helm depends on the aesthetic desired by its creator. Some are surrounded in a wreath of hellish (though illusory) flames, while others give off a soft, warm halo of white or golden light. You can use an action to start or stop the light. While wearing the helm, you can use an action to make your voice loud enough to be heard clearly by anyone within 300 feet of you until the end of your next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5249,7 +5249,7 @@ "fields": { "name": "Commander's Plate", "desc": "This armor is typically emblazoned or decorated with imagery of lions, bears, griffons, eagles, or other symbols of bravery and courage. While wearing this armor, your voice can be clearly heard by all friendly creatures within 300 feet of you if you so choose. Your voice doesn't carry in areas where sound is prevented, such as in the area of the silence spell. Each friendly creature that can see or hear you has advantage on saving throws against being frightened. You can use a bonus action to rally a friendly creature that can see or hear you. The target gains a +1 bonus to attack or damage rolls on its next turn. Once you have rallied a creature, you can't rally that creature again until it finishes a long rest.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5268,7 +5268,7 @@ "fields": { "name": "Commander's Visage", "desc": "This golden mask resembles a stern face, glowering at the world. While wearing this mask, you have advantage on saving throws against being frightened. The mask has 7 charges for the following properties, and it regains 1d6 + 1 expended charges daily at midnight.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5287,7 +5287,7 @@ "fields": { "name": "Commoner's Veneer", "desc": "When you wear this simple, homespun scarf around your neck or head, it casts a minor glamer over you that makes you blend in with the people around you, avoiding notice. When in an area containing 25 or more humanoids, such as a city street, market place, or other public locale, Wisdom (Perception) checks to spot you amid the crowd have disadvantage. This item's power only works for creatures of the humanoid type or those using magic to take on a humanoid form.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5306,7 +5306,7 @@ "fields": { "name": "Communal Flute", "desc": "This flute is carved with skulls and can be used as a spellcasting focus. If you spend 10 minutes playing the flute over a dead creature, you can cast the speak with dead spell from the flute. The flute can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5325,7 +5325,7 @@ "fields": { "name": "Companion's Broth", "desc": "Developed by wizards with an interest in the culinary arts, this simple broth mends the wounds of companion animals and familiars. When a beast or familiar consumes this broth, it regains 2d4 + 2 hit points. Alternatively, you can mix a flower petal into the broth, and the beast or familiar gains 2d4 temporary hit points for 8 hours instead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5344,7 +5344,7 @@ "fields": { "name": "Constant Dagger", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon, the target loses its resistance to bludgeoning, piercing, and slashing damage until the start of your next turn. If it has immunity to bludgeoning, piercing, and slashing damage, its immunity instead becomes resistance to such damage until the start of your next turn. If the creature doesn't have resistance or immunity to such damage, you roll your damage dice three times, instead of twice.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5363,7 +5363,7 @@ "fields": { "name": "Consuming Rod", "desc": "This bone mace is crafted from a humanoid femur. One end is carved to resemble a ghoulish face, its mouth open wide and full of sharp fangs. The mace has 8 charges, and it recovers 1d6 + 2 charges daily at dawn. You gain a +1 bonus to attack and damage rolls made with this magic mace. When it hits a creature, the mace's mouth stretches gruesomely wide and bites the target, adding 3 (1d6) piercing damage to the attack. As a reaction, you can expend 1 charge to regain hit points equal to the piercing damage dealt. Alternatively, you can use your reaction to expend 5 charges when you hit a Medium or smaller creature and force the mace to swallow the target. The target must succeed on a DC 15 Dexterity saving throw or be swallowed into an extra-dimensional space within the mace. While swallowed, the target is blinded and restrained, and it has total cover against attacks and other effects outside the mace. The target can still breathe. As an action, you can force the mace to regurgitate the creature, which falls prone in a space within 5 feet of the mace. The mace automatically regurgitates a trapped creature at dawn when it regains charges.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5382,7 +5382,7 @@ "fields": { "name": "Copper Skeleton Key", "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5401,7 +5401,7 @@ "fields": { "name": "Coral of Enchanted Colors", "desc": "This piece of dead, white brain coral glistens with a myriad of colors when placed underwater. While holding this coral underwater, you can use an action to cause a beam of colored light to streak from the coral toward a creature you can see within 60 feet of you. The target must make a DC 17 Constitution saving throw. The beam's color determines its effects, as described below. Each color can be used only once. The coral regains the use of all of its colors at the next dawn if it is immersed in water for at least 1 hour.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5420,7 +5420,7 @@ "fields": { "name": "Cordial of Understanding", "desc": "When you drink this tangy, violet liquid, your mind opens to new forms of communication. For 1 hour, if you spend 1 minute listening to creatures speaking a particular language, you gain the ability to communicate in that language for the duration. This potion's magic can also apply to non-verbal languages, such as a hand signal-based or dance-based language, so long as you spend 1 minute watching it being used and have the appropriate anatomy and limbs to communicate in the language.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5439,7 +5439,7 @@ "fields": { "name": "Corpsehunter's Medallion", "desc": "This amulet is made from the skulls of grave rats or from scrimshawed bones of the ignoble dead. While wearing it, you have resistance to necrotic damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5458,7 +5458,7 @@ "fields": { "name": "Countermelody Crystals", "desc": "This golden bracelet is set with ten glistening crystal bangles that tinkle when they strike one another. When you must make a saving throw against being charmed or frightened, the crystals vibrate, creating an eerie melody, and you have advantage on the saving throw. If you fail the saving throw, you can choose to succeed instead by forcing one of the crystals to shatter. Once all ten crystals have shattered, the bracelet loses its magic and crumbles to powder.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5477,7 +5477,7 @@ "fields": { "name": "Courtesan's Allure", "desc": "This perfume has a sweet, floral scent and captivates those with high social standing. The perfume can cover one Medium or smaller creature, and applying it takes 1 minute. For 1 hour, the affected creature gains a +5 bonus to Charisma checks made to socially interact with or influence nobles, politicians, or other individuals with high social standing.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5496,7 +5496,7 @@ "fields": { "name": "Crab Gloves", "desc": "These gloves are shaped like crab claws but fit easily over your hands. While wearing these gloves, you can take the Attack action to make two melee weapon attacks with the claws. You are proficient with the claws. Each claw has a reach of 5 feet and deals bludgeoning damage equal to 1d6 + your Strength modifier on a hit. If you hit a creature of your size or smaller using a claw, you automatically grapple the creature with the claw. You can have no more than two creatures grappled in this way at a time. While grappling a target with a claw, you can't attack other creatures with that claw. While wearing the gloves, you have disadvantage on Charisma and Dexterity checks, but you have advantage on checks while operating an apparatus of the crab and on attack rolls with the apparatus' claws. In addition, you can't wield weapons or a shield, and you can't cast a spell that has a somatic component. A creature with an Intelligence of 8 or higher that has two claws can wear these gloves. If it does so, it has two appropriately sized humanoid hands instead of claws. The creature can wield weapons with the hands and has advantage on Dexterity checks that require fine manipulation. Pulling the gloves on or off requires an action.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5515,7 +5515,7 @@ "fields": { "name": "Crafter Shabti", "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5534,7 +5534,7 @@ "fields": { "name": "Craven's Heart", "desc": "This leathery mass of dried meat was once a humanoid heart, taken from an individual that died while experiencing great terror. You can use an action to whisper a command word and hurl the heart to the ground, where it revitalizes and begins to beat rapidly and loudly for 1 minute. Each creature withing 30 feet of the heart has disadvantage on saving throws against being frightened. At the end of the duration, the heart bursts from the strain and is destroyed. The heart can be attacked and destroyed (AC 11; hp 3; resistance to bludgeoning damage). If the heart is destroyed before the end if its duration, each creature within 30 feet of the heart must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. This bugbear necromancer was once the henchman of an accomplished practitioner of the dark arts named Varrus. She started as a bodyguard and tough, but her keen intellect caught her master's attention. He eventually took her on as an apprentice. Moxug is fascinated with fear, and some say she doesn't eat but instead sustains herself on the terror of her victims. She eventually betrayed Varrus, sabotaging his attempt to become a lich, and luxuriated in his fear as he realized he would die rather than achieve immortality. According to rumor, the first craven's heart she crafted came from the body of her former master.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5553,7 +5553,7 @@ "fields": { "name": "Crawling Cloak", "desc": "This unusual cloak is made of many overlapping, broad strips of thick cloth.\nCrawling Cloak (Common). When you are prone, you can animate the cloak and have it pull you along the ground, allowing you to ignore the extra movement cost for crawling. You can still only move up to your normal movement rate and can’t stand up from prone unless you still have at least half your movement remaining after moving.\n\nSturdy Crawling Cloak (Uncommon). This more powerful version of the crawling cloak also allows you to use the prehensile strips of the cloak to climb, giving you a climbing speed of 20 feet. If you already have a climbing speed, the cloak increases that speed by 10 feet. When using the cloak, you can keep your hands free while climbing.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5572,7 +5572,7 @@ "fields": { "name": "Crimson Carpet", "desc": "This rolled bundle of red felt is 3-feet long and 1-foot wide, and it weighs 10 pounds. You can use an action to speak the carpet's command word to cause it to unroll, creating a horizontal walking surface or bridge up to 10 feet wide, up to 60 feet long, and 1/4 inch thick. The carpet doesn't need to be anchored and can hover. The carpet has immunity to all damage and isn't affected by the dispel magic spell. The disintegrate spell destroys the carpet. The carpet remains unrolled until you use an action to repeat the command word, causing it to roll up again. When you do so, the carpet can't be unrolled again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5591,7 +5591,7 @@ "fields": { "name": "Crimson Starfall Arrow", "desc": "This arrow is a magic weapon powered by the sacrifice of your own life energy and explodes upon impact. If you hit a creature with this arrow, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and each creature within 10 feet of the target, including the target, must make a DC 15 Dexterity saving throw, taking necrotic damage equal to the hit points you lost on a failed save, or half as much damage on a successful one. You can't use this feature of the arrow if you don't have blood. Hit Dice spent on this arrow's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5610,7 +5610,7 @@ "fields": { "name": "Crocodile Hide Armor", "desc": "While wearing this armor fashioned from crocodile skin, you gain a +1 bonus to AC. In addition, you can hold your breath for 15 minutes, and you have a swimming speed equal to your walking speed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5629,7 +5629,7 @@ "fields": { "name": "Crocodile Leather Armor", "desc": "While wearing this armor fashioned from crocodile skin, you gain a +1 bonus to AC. In addition, you can hold your breath for 15 minutes, and you have a swimming speed equal to your walking speed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5648,7 +5648,7 @@ "fields": { "name": "Crook of the Flock", "desc": "This plain crook is made of smooth, worn lotus wood and is warm to the touch.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5667,7 +5667,7 @@ "fields": { "name": "Crown of the Pharaoh", "desc": "The swirling gold bands of this crown recall the shape of desert dunes, and dozens of tiny emeralds, rubies, and sapphires nest among the skillfully forged curlicues. While wearing the crown, you gain the following benefits: Your Intelligence score is 25. This crown has no effect on you if your Intelligence is already 25 or higher. You have a flying speed equal to your walking speed. While you are wearing no armor and not wielding a shield, your Armor Class equals 16 + your Dexterity modifier.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5686,7 +5686,7 @@ "fields": { "name": "Crusader's Shield", "desc": "A bronze boss is set in the center of this round shield. When you attune to the shield, the boss changes shape, becoming a symbol of your divine connection: a holy symbol for a cleric or paladin or an engraving of mistletoe or other sacred plant for a druid. You can use the shield as a spellcasting focus for your spells.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5705,7 +5705,7 @@ "fields": { "name": "Crystal Skeleton Key", "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5724,7 +5724,7 @@ "fields": { "name": "Crystal Staff", "desc": "Carved from a single piece of solid crystal, this staff has numerous reflective facets that produce a strangely hypnotic effect. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: color spray (1 charge), confound senses* (3 charges), confusion (4 charges), hypnotic pattern (3 charges), jeweled fissure* (3 charges), prismatic ray* (5 charges), or prismatic spray (7 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to light or confusion. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the crystal shatters, destroying the staff and dealing 2d6 piercing damage to each creature within 10 feet of it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5743,7 +5743,7 @@ "fields": { "name": "Dagger of the Barbed Devil", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. You can use an action to cause sharp, pointed barbs to sprout from this blade. The barbs remain for 1 minute. When you hit a creature while the barbs are active, the creature must succeed on a DC 15 Dexterity saving throw or a barb breaks off into its flesh and the dagger loses its barbs. At the start of each of its turns, a creature with a barb in its flesh must make a DC 15 Constitution saving throw. On a failure, it has disadvantage on attack rolls and ability checks until the start of its next turn as it is wracked with pain. The barb remains until a creature uses its action to remove the barb, dealing 1d4 piercing damage to the barbed creature. Once you cause barbs to sprout from the dagger, you can't do so again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5762,7 +5762,7 @@ "fields": { "name": "Dancing Caltrops", "desc": "After you pour these magic caltrops out of the bag into an area, you can use a bonus action to animate them and command them to move up to 10 feet to occupy a different square area that is 5 feet on a side.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5781,7 +5781,7 @@ "fields": { "name": "Dancing Floret", "desc": "This 2-inch-long plant has a humanoid shape, and a large purple flower sits at the top of the plant on a short, neck-like stalk. Small, serrated thorns on its arms and legs allow it to cling to your clothing, and it most often dances along your arm or across your shoulders. While attuned to the floret, you have proficiency in the Performance skill, and you double your proficiency bonus on Charisma (Performance) checks made while dancing. The floret has 3 charges for the following other properties. The floret regains 1d3 expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5800,7 +5800,7 @@ "fields": { "name": "Dancing Ink", "desc": "This ink is favored by merchants for eye-catching banners and by toy makers for scrolls and books for children. Typically found in 1d4 pots, this ink allows you to draw an illustration that moves about the page where it was drawn, whether that is an illustration of waves crashing against a shore along the bottom of the page or a rabbit leaping over the page's text. The ink wears away over time due to the movement and fades from the page after 2d4 weeks. The ink moves only when exposed to light, and some long-forgotten tomes have been opened to reveal small, moving illustrations drawn by ancient scholars. One pot can be used to fill 25 pages of a book or a similar total area for larger banners.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5819,7 +5819,7 @@ "fields": { "name": "Dastardly Quill and Parchment", "desc": "Favored by spies, this quill and parchment are magically linked as long as both remain on the same plane of existence. When a creature writes or draws on any surface with the quill, that writing or drawing appears on its linked parchment, exactly as it would appear if the writer was writing or drawing on the parchment with black ink. This effect doesn't prevent the quill from being used as a standard quill on a nonmagical piece of parchment, but this written communication is one-way, from quill to parchment. The quill's linked parchment is immune to all nonmagical inks and stains, and any magical messages written on the parchment disappear after 1 minute and aren't conveyed to the creature holding the quill. The parchment is approximately 9 inches wide by 13 inches long. If the quill's writing exceeds the area of the parchment, the older writing fades from the top of the sheet, replaced by the newer writing. Otherwise, the quill's writing remains on the parchment for 24 hours, after which time all writing fades from it. If either item is destroyed, the other item becomes nonmagical.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5838,7 +5838,7 @@ "fields": { "name": "Dawn Shard Dagger", "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5857,7 +5857,7 @@ "fields": { "name": "Dawn Shard Greatsword", "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5876,7 +5876,7 @@ "fields": { "name": "Dawn Shard Longsword", "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5895,7 +5895,7 @@ "fields": { "name": "Dawn Shard Rapier", "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5914,7 +5914,7 @@ "fields": { "name": "Dawn Shard Scimitar", "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5933,7 +5933,7 @@ "fields": { "name": "Dawn Shard Shortsword", "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5952,7 +5952,7 @@ "fields": { "name": "Deadfall Arrow", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic arrow. On a hit, the arrow transforms into a 10-foot-long wooden log centered on the target, destroying the arrow. The target and each creature in the log's area must make a DC 15 Dexterity saving throw. On a failure, a creature takes 3d6 bludgeoning damage and is knocked prone and restrained under the log. On a success, a creature takes half the damage and isn't knocked prone or restrained. A restrained creature can take its action to free itself by succeeding on a DC 15 Strength check. The log lasts for 1 minute then crumbles to dust, freeing those restrained by it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5971,7 +5971,7 @@ "fields": { "name": "Death's Mirror", "desc": "Made from woven lead and silver, this ring fits only on the hand's smallest finger. As the moon is a dull reflection of the sun's glory, so too is the power within this ring merely an imitation of the healing energies that can bestow true life. The ring has 3 charges and regains all expended charges daily at dawn. While wearing the ring, you can expend 1 charge as a bonus action to gain 5 temporary hit points for 1 hour.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -5990,7 +5990,7 @@ "fields": { "name": "Decoy Card", "desc": "This small, thick, parchment card displays an accurate portrait of the person carrying it. You can use an action to toss the card on the ground at a point within 10 feet of you. An illusion of you forms over the card and remains until dispelled. The illusion appears real, but it can do no harm. While you are within 120 feet of the illusion and can see it, you can use an action to make it move and behave as you wish, as long as it moves no further than 10 feet from the card. Any physical interaction with your illusory double reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect your illusory double identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The illusion lasts until the card is moved or the illusion is dispelled. When the illusion ends, the card's face becomes blank, and the card becomes nonmagical.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6009,7 +6009,7 @@ "fields": { "name": "Deepchill Orb", "desc": "This fist-sized sphere of blue quartz emits cold. If placed in a container with a capacity of up to 5 cubic feet, it keeps the internal temperature of the container at a consistent 40 degrees Fahrenheit. This can keep liquids chilled, preserve cooked foods for up to 1 week, raw meats for up to 3 days, and fruits and vegetables for weeks. If you hold the orb without gloves or other insulating method, you take 1 cold damage each minute you hold it. At the GM's discretion, the orb's cold can be applied to other uses, such as keeping it in contact with a hot item to cool down the item enough to be handled, wrapping it and using it as a cooling pad to bring down fever or swelling, or similar.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6028,7 +6028,7 @@ "fields": { "name": "Defender Shabti", "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6047,7 +6047,7 @@ "fields": { "name": "Deserter's Boots", "desc": "While you wear these boots, your walking speed increases by 10 feet, and you gain a +1 bonus to Dexterity saving throws.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6066,7 +6066,7 @@ "fields": { "name": "Devil Shark Mask", "desc": "When you wear this burgundy face covering, it transforms your face into a shark-like visage, and the mask sprouts wicked horns. While wearing this mask, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d8 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. You gain a +1 bonus to attack and damage rolls with this magic bite. In addition, you have advantage on Charisma (Intimidation) checks while wearing this mask.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6085,7 +6085,7 @@ "fields": { "name": "Devilish Doubloon", "desc": "This gold coin bears the face of a leering devil on the obverse. If it is placed among other coins, it changes its appearance to mimic its neighbors, doing so over the course of 1 hour. This is a purely cosmetic change, and it returns to its original appearance when grasped by a creature with an Intelligence of 5 or higher. You can use a bonus action to toss the coin up to 20 feet. When the coin lands, it transforms into a barbed devil. The devil vanishes after 1 hour or when it is reduced to 0 hit points. When the devil vanishes, the coin reappears in a collection of at least 20 gold coins elsewhere on the same plane where it vanished. The devil is friendly to you and your companions. Roll initiative for the devil, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the devil, it defends itself from hostile creatures but otherwise takes no actions. If you are reduced to 0 hit points and the devil is still alive, it moves to your body and uses its action to grab your soul. You must succeed on a DC 15 Charisma saving throw or the devil steals your soul and you die. If the devil fails to grab your soul, it vanishes as if slain. If the devil grabs your soul, it uses its next action to transport itself back to the Hells, disappearing in a flash of brimstone. If the devil returns to the Hells with your soul, its coin doesn't reappear, and you can be restored to life only by means of a true resurrection or wish spell.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6104,7 +6104,7 @@ "fields": { "name": "Devil's Barb", "desc": "This thin wand is fashioned from the fiendish quill of a barbed devil. While attuned to it, you have resistance to cold damage. The wand has 6 charges for the following properties. It regains 1d6 expended charges daily at dusk. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into cinders and is destroyed. Hurl Flame. While holding the wand, you can expend 2 charges as an action to hurl a ball of devilish flame at a target you can see within 150 feet of you. The target must succeed on a DC 15 Dexterity check or take 3d6 fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire. Devil's Sight. While holding the wand, you can expend 1 charge as an action to cast the darkvision spell on yourself. Magical darkness doesn't impede this darkvision.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6123,7 +6123,7 @@ "fields": { "name": "Digger Shabti", "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6142,7 +6142,7 @@ "fields": { "name": "Dimensional Net", "desc": "Woven from the hair of celestials and fiends, this shimmering iridescent net can subdue and capture otherworldly creatures. You have a +1 bonus to attack rolls with this magic weapon. In addition to the normal effects of a net, this net prevents any Large or smaller aberration, celestial, or fiend hit by it from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. When such a creature is bound in this way, a creature must succeed on a DC 30 Strength (Athletics) check to free the bound creature. The net has immunity to damage dealt by the bound creature, but another creature can deal 20 slashing damage to the net and free the bound creature, ending the effect. The net has AC 15 and 30 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the net drops to 0 hit points, it is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6161,7 +6161,7 @@ "fields": { "name": "Dirgeblade", "desc": "This weapon is an exquisitely crafted rapier set in a silver and leather scabbard. The blade glows a faint stormy blue and is encircled by swirling wisps of clouds. You gain a +3 bonus to attack and damage rolls made with this magic weapon. This weapon, when unsheathed, sheds dim blue light in a 20-foot radius. When you hit a creature with it, you can expend 1 Bardic Inspiration to impart a sense of overwhelming grief in the target. A creature affected by this grief must succeed on a DC 15 Wisdom saving throw or fall prone and become incapacitated by sadness until the end of its next turn. Once a month under an open sky, you can use a bonus action to speak this magic sword's command word and cause the sword to sing a sad dirge. This dirge conjures heavy rain (or snow in freezing temperatures) in the region for 2d6 hours. The precipitation falls in an X-mile radius around you, where X is equal to your level.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6180,7 +6180,7 @@ "fields": { "name": "Dirk of Daring", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While holding the dagger, you have advantage on saving throws against being frightened.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6199,7 +6199,7 @@ "fields": { "name": "Distracting Doubloon", "desc": "This gold coin is plain and matches the dominant coin of the region. Typically, 2d6 distracting doubloons are found together. You can use an action to toss the coin up to 20 feet. The coin bursts into a flash of golden light on impact. Each creature within a 15-foot radius of where the coin landed must succeed on a DC 11 Wisdom saving throw or have disadvantage on Wisdom (Perception) checks made to perceive any creature or object other than the coin for 1 minute. If an affected creature takes damage, it can repeat the saving throw, ending the effect on itself on a success. At the end of the duration, the coin crumbles to dust and is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6218,7 +6218,7 @@ "fields": { "name": "Djinn Vessel", "desc": "A rough predecessor to the ring of djinni summoning and the ring elemental command, this clay vessel is approximately a foot long and half as wide. An iron stopper engraved with a rune of binding seals its entrance. If the vessel is empty, you can use an action to remove the stopper and cast the banishment spell (save DC 15) on a celestial, elemental, or fiend within 60 feet of you. At the end of the spell's duration, if the target is an elemental, it is trapped in this vessel. While trapped, the elemental can take no actions, but it is aware of occurrences outside of the vessel and of other djinn vessels. You can use an action to remove the vessel's stopper and release the elemental the vessel contains. Once released, the elemental acts in accordance with its normal disposition and alignment.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6237,7 +6237,7 @@ "fields": { "name": "Doppelganger Ointment", "desc": "This ceramic jar contains 1d4 + 1 doses of a thick, creamy substance that smells faintly of pork fat. The jar and its contents weigh 1/2 a pound. Applying a single dose to your body takes 1 minute. For 24 hours or until it is washed off with an alcohol solution, you can change your appearance, as per the Change Appearance option of the alter self spell. For the duration, you can use a bonus action to return to your normal form, and you can use an action to return to the form of the mimicked creature. If you add a piece of a specific creature (such as a single hair, nail paring, or drop of blood), the ointment becomes more powerful allowing you to flawlessly imitate that creature, as long as its body shape is humanoid and within one size category of your own. While imitating that creature, you have advantage on Charisma checks made to convince others you are that specific creature, provided they didn't see you change form.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6256,7 +6256,7 @@ "fields": { "name": "Dragonstooth Blade", "desc": "This razor-sharp blade, little more than leather straps around the base of a large tooth, still carries the power of a dragon. This weapon's properties are determined by the type of dragon that once owned this tooth. The GM chooses the dragon type or determines it randomly from the options below. When you hit with an attack using this magic sword, the target takes an extra 1d6 damage of a type determined by the kind of dragon that once owned the tooth. In addition, you have resistance to the type of damage associated with that dragon. | d6 | Damage Type | Dragon Type |\n| --- | ----------- | ------------------- |\n| 1 | Acid | Black or Copper |\n| 2 | Fire | Brass, Gold, or Red |\n| 3 | Poison | Green |\n| 4 | Lightning | Blue or Bronze |\n| 5 | Cold | Silver or White |\n| 6 | Necrotic | Undead |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6275,7 +6275,7 @@ "fields": { "name": "Draught of Ambrosia", "desc": "The liquid in this tiny vial is golden and has a heady, floral scent. When you drink the draught, it fortifies your body and mind, removing any infirmity caused by old age. You stop aging and are immune to any magical and nonmagical aging effects. The magic of the ambrosia lasts ten years, after which time its power fades, and you are once again subject to the ravages of time and continue aging.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6294,7 +6294,7 @@ "fields": { "name": "Draught of the Black Owl", "desc": "When you drink this potion, you transform into a black-feathered owl for 1 hour. This effect works like the polymorph spell, except you can take only the form of an owl. While you are in the form of an owl, you retain your Intelligence, Wisdom, and Charisma scores. If you are a druid with the Wild Shape feature, you can transform into a giant owl instead. Drinking this potion doesn't expend a use of Wild Shape.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6313,7 +6313,7 @@ "fields": { "name": "Dread Scarab", "desc": "The abdomen of this beetleshaped brooch is decorated with the grim semblance of a human skull. If you hold it in your hand for 1 round, an Abyssal inscription appears on its surface, revealing its magical nature. While wearing this brooch, you gain the following benefits:\n- You have advantage on saving throws against spells.\n- The scarab has 9 charges. If you fail a saving throw against a conjuration spell or a harmful effect originating from a celestial creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into dust and is destroyed when its last charge is expended.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6332,7 +6332,7 @@ "fields": { "name": "Dust of Desiccation", "desc": "This small packet contains soot-like dust. There is enough of it for one use. When you use an action to blow the choking dust from your palm, each creature in a 30-foot cone must make a DC 15 Dexterity saving throw, taking 3d10 necrotic damage on a failed save, or half as much damage on a successful one. A creature that fails this saving throw can't speak until the end of its next turn as it chokes on the dust. Alternatively, you can use an action to throw the dust into the air, affecting yourself and each creature within 30 feet of you with the dust.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6351,7 +6351,7 @@ "fields": { "name": "Dust of Muffling", "desc": "You can scatter this fine, silvery-gray dust on the ground as an action, covering a 10-foot-square area. There is enough dust in one container for up to 5 uses. When a creature moves over an area covered in the dust, it has advantage on Dexterity (Stealth) checks to remain unheard. The effect remains until the dust is swept up, blown away, or tracked away by the traffic of eight or more creatures passing through the area.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6370,7 +6370,7 @@ "fields": { "name": "Dust of the Dead", "desc": "This stoppered vial is filled with dust and ash. There is enough of it for one use. When you use an action to sprinkle the dust on a willing humanoid, the target falls into a death-like slumber for 8 hours. While asleep, the target appears dead to all mundane and magical means, but spells that target the dead, such as the speak with dead spell, fail when used on the target. The cause of death is not evident, though any wounds the target has taken remain visible. If the target takes damage while asleep, it has resistance to the damage. If the target is reduced to below half its hit points while asleep, it must succeed on a DC 15 Constitution saving throw to wake up. If the target is reduced to 5 hit points or fewer while asleep, it wakes up. If the target is unwilling, it must succeed on a DC 11 Constitution saving throw to avoid the effect of the dust. A sleeping creature is considered an unwilling target.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6389,7 +6389,7 @@ "fields": { "name": "Eagle Cape", "desc": "The exterior of this silk cape is lined with giant eagle feathers. When you fall while wearing this cape, you descend 60 feet per round, take no damage from falling, and always land on your feet. In addition, you can use an action to speak the cloak's command word. This turns the cape into a pair of eagle wings which give you a flying speed of 60 feet for 1 hour or until you repeat the command word as an action. When the wings revert back to a cape, you can't use the cape in this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6408,7 +6408,7 @@ "fields": { "name": "Earrings of the Agent", "desc": "Aside from a minor difference in size, these simple golden hoops are identical to one another. Each hoop has 1 charge and provides a different magical effect. Each hoop regains its expended charge daily at dawn. You must be wearing both hoops to use the magic of either hoop.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6427,7 +6427,7 @@ "fields": { "name": "Earrings of the Eclipse", "desc": "These two cubes of smoked quartz are mounted on simple, silver posts. While you are wearing these earrings, you can take the Hide action while you are motionless in an area of dim light or darkness even when a creature can see you or when you have nothing to obscure you from the sight of a creature that can see you. If you are in darkness when you use the Hide action, you have advantage on the Dexterity (Stealth) check. If you move, attack, cast a spell, or do anything other than remain motionless, you are no longer hidden and can be detected normally.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6446,7 +6446,7 @@ "fields": { "name": "Earrings of the Storm Oyster", "desc": "The deep blue pearls forming the core of these earrings come from oysters that survive being struck by lightning. While wearing these earrings, you gain the following benefits:\n- You have resistance to lightning and thunder damage.\n- You can understand Primordial. When it is spoken, the pearls echo the words in a language you can understand, at a whisper only you can hear.\n- You can't be deafened.\n- You can breathe air and water. - As an action, you can cast the sleet storm spell (save DC 15) from the earrings. The earrings can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6465,7 +6465,7 @@ "fields": { "name": "Ebon Shards", "desc": "These obsidian shards are engraved with words in Deep Speech, and their presence disquiets non-evil, intelligent creatures. The writing on the shards is obscure, esoteric, and possibly incomplete. The shards have 10 charges and give you access to a powerful array of Void magic spells. While holding the shards, you use an action to expend 1 or more of its charges to cast one of the following spells from them, using your spell save DC and spellcasting ability: living shadows* (5 charges), maddening whispers* (2 charges), or void strike* (3 charges). You can also use an action to cast the crushing curse* spell from the shards without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness or madness. The shards regain 1d6 + 4 expended charges daily at dusk. Each time you use the ebon shards to cast a spell, you must succeed on a DC 12 Charisma saving throw or take 2d6 psychic damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6484,7 +6484,7 @@ "fields": { "name": "Efficacious Eyewash", "desc": "This clear liquid glitters with miniscule particles of light. A bottle of this potion contains 6 doses, and its lid comes with a built-in dropper. You can use an action to apply 1 dose to the eyes of a blinded creature. The blinded condition is suppressed for 2d4 rounds. If the blinded condition has a duration, subtract those rounds from the total duration; if doing so reduces the overall duration to 0 rounds or less, then the condition is removed rather than suppressed. This eyewash doesn't work on creatures that are naturally blind, such as grimlocks, or creatures blinded by severe damage or removal of their eyes.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6503,7 +6503,7 @@ "fields": { "name": "Eldritch Rod", "desc": "This bone rod is carved into the shape of twisting tendrils or tentacles. You can use this rod as an arcane focus. The rod has 3 charges and regains all expended charges daily at dawn. When you cast a spell that requires an attack roll and that deals damage while holding this rod, you can expend 1 of its charges as part of the casting to enhance that spell. If the attack hits, the spell also releases tendrils that bind the target, grappling it for 1 minute. At the start of each of your turns, the grappled target takes 1d6 damage of the same type dealt by the spell. At the end of each of its turns, the grappled target can make a Dexterity saving throw against your spell save DC, freeing itself from the tendrils on a success. The rod's magic can grapple only one target at a time. If you use the rod to grapple another target, the effect on the previous target ends.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6522,7 +6522,7 @@ "fields": { "name": "Elemental Wraps", "desc": "These cloth arm wraps are decorated with elemental symbols depicting flames, lightning bolts, snowflakes, and similar. You have resistance to acid, cold, fire, lightning, or thunder damage while you wear these arm wraps. You choose the type of damage when you first attune to the wraps, and you can choose a different type of damage at the end of a short or long rest. The wraps have 10 charges. When you hit with an unarmed strike while wearing these wraps, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 damage of the type to which you have resistance. The wraps regain 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the wraps unravel and fall to the ground, becoming nonmagical.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6541,7 +6541,7 @@ "fields": { "name": "Elixir of Corruption", "desc": "This elixir looks, smells, and tastes like a potion of heroism; however, it is actually a poisonous elixir masked by illusion magic. An identify spell reveals its true nature. If you drink it, you must succeed on a DC 15 Constitution saving throw or be corrupted by the diabolical power within the elixir for 1 week. While corrupted, you lose immunity to diseases, poison damage, and the poisoned condition. If you aren't normally immune to poison damage, you instead have vulnerability to poison damage while corrupted. The corruption can be removed with greater restoration or similar magic.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6560,7 +6560,7 @@ "fields": { "name": "Elixir of Deep Slumber", "desc": "The milky-white liquid in this vial smells of jasmine and sandalwood. When you drink this potion, you fall into a deep sleep, from which you can't be physically awakened, for 1 hour. A successful dispel magic (DC 13) cast on you awakens you but cancels any beneficial effects of the elixir. When you awaken at the end of the hour, you benefit from the sleep as if you had finished a long rest.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6579,7 +6579,7 @@ "fields": { "name": "Elixir of Focus", "desc": "This deep amber concoction seems to glow with an inner light. When you drink this potion, you have advantage on the next ability check you make within 10 minutes, then the elixir's effect ends.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6598,7 +6598,7 @@ "fields": { "name": "Elixir of Mimicry", "desc": "When you drink this sweet, oily, black liquid, you can imitate the voice of a single creature that you have heard speak within the past 24 hours. The effects last for 3 minutes.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6617,7 +6617,7 @@ "fields": { "name": "Elixir of Oracular Delirium", "desc": "This pearlescent fluid perpetually swirls inside its container with a slow kaleidoscopic churn. When you drink this potion, you can cast the guidance spell for 1 hour at will. You can end this effect early as an action and gain the effects of the augury spell. If you do, you are afflicted with short-term madness after learning the spell's results.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6636,7 +6636,7 @@ "fields": { "name": "Elixir of Spike Skin", "desc": "Slivers of bone float in the viscous, gray liquid inside this vial. When you drink this potion, bone-like spikes protrude from your skin for 1 hour. Each time a creature hits you with a melee weapon attack while within 5 feet of you, it must succeed on a DC 15 Dexterity saving throw or take 1d4 piercing damage from the spikes. In addition, while you are grappling a creature or while a creature is grappling you, it takes 1d4 piercing damage at the start of your turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6655,7 +6655,7 @@ "fields": { "name": "Elixir of the Clear Mind", "desc": "This cerulean blue liquid sits calmly in its flask even when jostled or shaken. When you drink this potion, you have advantage on Wisdom checks and saving throws for 1 hour. For the duration, if you fail a saving throw against an enchantment or illusion spell or similar magic effect, you can choose to succeed instead. If you do, you draw upon all the potion's remaining power, and its effects end immediately thereafter.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6674,7 +6674,7 @@ "fields": { "name": "Elixir of the Deep", "desc": "This thick, green, swirling liquid tastes like salted mead. For 1 hour after drinking this elixir, you can breathe underwater, and you can see clearly underwater out to a range of 60 feet. The elixir doesn't allow you to see through magical darkness, but you can see through nonmagical clouds of silt and other sedimentary particles as if they didn't exist. For the duration, you also have advantage on saving throws against the spells and other magical effects of fey creatures native to water environments, such as a Lorelei (see Tome of Beasts) or Water Horse (see Creature Codex).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6693,7 +6693,7 @@ "fields": { "name": "Elixir of Wakefulness", "desc": "This effervescent, crimson liquid is commonly held in a thin, glass vial capped in green wax. When you drink this elixir, its effects last for 8 hours. While the elixir is in effect, you can't fall asleep by normal means. You have advantage on saving throws against effects that would put you to sleep. If you are affected by the sleep spell, your current hit points are considered 10 higher when determining the effects of the spell.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6712,7 +6712,7 @@ "fields": { "name": "Elk Horn Rod", "desc": "This rod is fashioned from elk or reindeer horn. As an action, you can grant a +1 bonus on saving throws against spells and magical effects to a target touched by the wand, including yourself. The bonus lasts 1 round. If you are holding the rod while performing the somatic component of a dispel magic spell or comparable magic, you have a +1 bonus on your spellcasting ability check.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6731,7 +6731,7 @@ "fields": { "name": "Encouraging Breastplate", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6750,7 +6750,7 @@ "fields": { "name": "Encouraging Chain Mail", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6769,7 +6769,7 @@ "fields": { "name": "Encouraging Chain Shirt", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6788,7 +6788,7 @@ "fields": { "name": "Encouraging Half Plate", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6807,7 +6807,7 @@ "fields": { "name": "Encouraging Hide Armor", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6826,7 +6826,7 @@ "fields": { "name": "Encouraging Leather Armor", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6845,7 +6845,7 @@ "fields": { "name": "Encouraging Padded Armor", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6864,7 +6864,7 @@ "fields": { "name": "Encouraging Plate", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6883,7 +6883,7 @@ "fields": { "name": "Encouraging Ring Mail", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6902,7 +6902,7 @@ "fields": { "name": "Encouraging Scale Mail", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6921,7 +6921,7 @@ "fields": { "name": "Encouraging Splint", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6940,7 +6940,7 @@ "fields": { "name": "Encouraging Studded Leather", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6959,7 +6959,7 @@ "fields": { "name": "Enraging Ammunition", "desc": "When you hit a creature with a ranged attack using this magical ammunition, the target must succeed on a DC 13 Wisdom saving throw or become enraged for 1 minute. On its turn, an enraged creature moves toward you by the most direct route, trying to get within 5 feet of you. It doesn't avoid opportunity attacks, but it moves around or avoids damaging terrain, such as lava or a pit. If the enraged creature is within 5 feet of you, it attacks you. An enraged creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6978,7 +6978,7 @@ "fields": { "name": "Ensnaring Ammunition", "desc": "When you hit a creature with a ranged attack using this magical ammunition, the target takes only half the damage from the attack, and the target is restrained as the ammunition bursts into entangling strands that wrap around it. As an action, the restrained target can make a DC 13 Strength check, bursting the bonds on a success. The strands can also be attacked and destroyed (AC 10; hp 5; immunity to bludgeoning, poison, and psychic damage).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -6997,7 +6997,7 @@ "fields": { "name": "Entrenching Mattock", "desc": "You gain a +1 to attack and damage rolls with this magic weapon. This bonus increases to +3 when you use the pick to attack a creature made of earth or stone, such as an earth elemental or stone golem. As a bonus action, you can slam the head of the pick into earth, sand, mud, or rock within 5 feet of you to create a wall of that material up to 30 feet long, 3 feet high, and 1 foot thick along that surface. The wall provides half cover to creatures behind it. The pick can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7016,7 +7016,7 @@ "fields": { "name": "Everflowing Bowl", "desc": "This smooth, stone bowl feels especially cool to the touch. It holds up to 1 pint of water. When placed on the ground, the bowl magically draws water from the nearby earth and air, filling itself after 1 hour. In arid or desert environments, the bowl fills itself after 8 hours. The bowl never overflows itself.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7035,7 +7035,7 @@ "fields": { "name": "Explosive Orb of Obfuscation", "desc": "Originally fashioned in the laboratory of the archmage Lugax for his good natured but often roguish friend, Kennich, these spherical ceramic containers are the size of a large human fist. Arcane sigils decorate each orb, detailing its properties to those capable of reading the sigils. The magic-infused chemicals in each orb must be briefly exposed to air before being thrown to activate them. A metal rod sits in the cork of each orb, allowing you to quickly twist open the container before throwing it. Typically, 1d4 + 1 orbs of obfuscation are found together. You can use an action to activate and throw the orb up to 60 feet. The orb explodes on impact and is destroyed. The orb's effects are determined by its type. Orb of Obfuscation (Uncommon). This orb is a dark olive color with a stripe of bright blue paint encircling it. When activated, the orb releases an opaque grey gas and creates a 30-foot-radius sphere of this gas centered on the point where the orb landed. The sphere spreads around corners, and its area is heavily obscured. The magical gas also dampens sound. Each creature in the gas can hear only sounds originating within 5 feet of it, and creatures outside of the gas can’t hear sounds originating inside the gas. The gas lasts for 5 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. Explosive Orb of Obfuscation (Rare). This oblong orb has a putty grey color with a stripe of yellow paint encircling it. When activated, this orb releases the same opaque grey gas as the orb of obfuscation. In addition to the effects of that gas, this orb also releases a burst of caustic chemicals on impact. Each creature within a 15-foot radius of where the orb landed must make a DC 15 Dexterity saving throw, taking 4d4 acid damage on a failed save, or half as much damage on a successful one. If a creature fails this saving throw, the chemicals cling to it for 1 minute. At the end of each of its turns, the creature must succeed on a DC 15 Constitution saving throw or take 2d4 acid damage from the clinging chemicals. Any creature can take an action to remove the clinging chemicals with a successful DC 15 Wisdom (Medicine) check.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7054,7 +7054,7 @@ "fields": { "name": "Exsanguinating Blade", "desc": "This double-bladed dagger has an ivory hilt, and its gold pommel is shaped into a woman's head with ruby eyes and a fanged mouth opened in a scream. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon against a creature that has blood, the dagger gains 1 charge. The dagger can hold 1 charge at a time. You can use a bonus action to expend 1 charge from the dagger to cause one of the following effects: - You or a creature you touch with the blade regains 2d8 hit points. - The next time you hit a creature that has blood with this weapon, it deals an extra 2d8 necrotic damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7073,7 +7073,7 @@ "fields": { "name": "Extract of Dual-Mindedness", "desc": "This potion can be distilled only from a hormone found in the hypothalamus of a two-headed giant of genius intellect. For 1 minute after drinking this potion, you can concentrate on two spells at the same time, and you have advantage on Constitution saving throws made to maintain your concentration on a spell when you take damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7092,7 +7092,7 @@ "fields": { "name": "Eye of Horus", "desc": "This gold and lapis lazuli amulet helps you determine reality from phantasms and trickery. While wearing it, you have advantage on saving throws against illusion spells and against being frightened.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7111,7 +7111,7 @@ "fields": { "name": "Eye of the Golden God", "desc": "A shining multifaceted violet gem sits at the center of this fist-sized amulet. A beautifully forged band of platinum encircles the gem and affixes it to a well-made series of interlocking platinum chain links. The violet gem is warm to the touch. While wearing this amulet, you can't be frightened and you don't suffer from exhaustion. In addition, you always know which item within 20 feet of you is the most valuable, though you don't know its actual value or if it is magical. Each time you finish a long rest while attuned to this amulet, roll a 1d10. On a 1-3, you awaken from your rest with that many valuable objects in your hand. The objects are minor, such as copper coins, at first and progressively get more valuable, such as gold coins, ivory statuettes, or gemstones, each time they appear. Each object is always small enough to fit in a single hand and is never worth more than 1,000 gp. The GM determines the type and value of each object. Once the left eye of an ornate and magical statue of a pit fiend revered by a small cult of Mammon, this exquisite purple gem was pried from the idol by an adventurer named Slick Finnigan. Slick and his companions had taken it upon themselves to eradicate the cult, eager for the accolades they would receive for defeating an evil in the community. The loot they stood to gain didn't hurt either. After the assault, while his companions were busy chasing the fleeing members of the cult, Slick pocketed the gem, disfiguring the statue and weakening its power in the process. He was then attacked by a cultist who had managed to evade notice by the adventurers. Slick escaped with his life, and the gem, but was unable to acquire the second eye. Within days, the thief was finding himself assaulted by devils and cultists. He quickly offloaded his loot with a collection of merchants in town, including a jeweler who was looking for an exquisite stone to use in a piece commissioned by a local noble. Slick then set off with his pockets full of coin, happily leaving the devilish drama behind. This magical amulet attracts the attention of worshippers of Mammon, who can almost sense its presence and are eager to claim its power for themselves, though a few extremely devout members of the weakened cult wish to return the gem to its original place in the idol. Due to this, and a bit of bad luck, this amulet has changed hands many times over the decades.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7130,7 +7130,7 @@ "fields": { "name": "Eyes of the Outer Dark", "desc": "These lenses are crafted of polished, opaque black stone. When placed over the eyes, however, they allow the wearer not only improved vision but glimpses into the vast emptiness between the stars. While wearing these lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, its range is extended by 60 feet. As an action, you can use the lenses to pierce the veils of time and space and see into the outer darkness. You gain the benefits of the foresight and true seeing spells for 10 minutes. If you activate this property and you aren't suffering from a madness, you take 3d8 psychic damage. Once used, this property of the lenses can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7149,7 +7149,7 @@ "fields": { "name": "Eyes of the Portal Masters", "desc": "While you wear these crystal lenses over your eyes, you can sense the presence of any dimensional portal within 60 feet of you and whether the portal is one-way or two-way. Once you have worn the eyes for 10 minutes, their magic ceases to function until the next dawn. Putting the lenses on or off requires an action.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7168,7 +7168,7 @@ "fields": { "name": "Fanged Mask", "desc": "This tribal mask is made of wood and adorned with animal fangs. Once donned, it melds to your face and causes fangs to sprout from your mouth. While wearing this mask, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. If you already have a bite attack when you don and attune to this mask, your bite attack's damage dice double (for example, 1d4 becomes 2d4).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7187,7 +7187,7 @@ "fields": { "name": "Farhealing Bandages", "desc": "This linen bandage is yellowed and worn with age. You can use an action wrap it around the appendage of a willing creature and activate its magic for 1 hour. While the target is within 60 feet of you and the bandage's magic is active, you can use an action to trigger the bandage, and the target regains 2d4 hit points. The bandage becomes inactive after it has restored 15 hit points to a creature or when 1 hour has passed. Once the bandage becomes inactive, it can't be used again until the next dawn. You can be attuned to only one farhealing bandage at a time.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7206,7 +7206,7 @@ "fields": { "name": "Farmer Shabti", "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7225,7 +7225,7 @@ "fields": { "name": "Fear-Eater's Mask", "desc": "This painted, wooden mask bears the visage of a snarling, fiendish face. While wearing the mask, you can use a bonus action to feed on the fear of a frightened creature within 30 feet of you. The target must succeed on a DC 13 Wisdom saving throw or take 2d6 psychic damage. You regain hit points equal to the damage dealt. If you are not injured, you gain temporary hit points equal to the damage dealt instead. Once a creature has failed this saving throw, it is immune to the effects of this mask for 24 hours.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7244,7 +7244,7 @@ "fields": { "name": "Fellforged Armor", "desc": "While wearing this steam-powered magic armor, you gain a +1 bonus to AC, your Strength score increases by 2, and you gain the ability to cast speak with dead as an action. As long as you remain cursed, you exude an unnatural aura, causing beasts with Intelligence 3 or less within 30 feet of you to be frightened. Once you have used the armor to cast speak with dead, you can't cast it again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7263,7 +7263,7 @@ "fields": { "name": "Ferryman's Coins", "desc": "It is customary in many faiths to weight a corpse's eyes with pennies so they have a fee to pay the ferryman when he comes to row them across death's river to the afterlife. Ferryman's coins, though, ensure the body stays in the ground regardless of the spirit's destination. These coins, which feature a death's head on one side and a lock and chain on the other, prevent a corpse from being raised as any kind of undead. When you place two coins on a corpse's closed lids and activate them with a simple prayer, they can't be removed unless the person is resurrected (in which case they simply fall away), or someone makes a DC 15 Strength check to remove them. Yanking the coins away does no damage to the corpse.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7282,7 +7282,7 @@ "fields": { "name": "Feysworn Contract", "desc": "This long scroll is written in flowing Elvish, the words flickering with a pale witchlight, and marked with the seal of a powerful fey or a fey lord or lady. When you use an action to present this scroll to a fey whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the fey, negotiating a service from it in exchange for a reward. The fey is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the fey, the truce is broken, and the creature can act normally. If the fey refuses the offer, it is free to take any actions it wishes. Should you and the fey reach an agreement that is satisfactory to both parties, you must sign the agreement and have the fey do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the fey to the agreement until its service is rendered and the reward paid, at which point the scroll fades into nothingness. Fey are notoriously clever folk, and while they must adhere to the letter of any bargains they make, they always look for any advantage in their favor. If either party breaks the bargain, that creature immediately takes 10d6 poison damage, and the charter is destroyed, ending the contract.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7301,7 +7301,7 @@ "fields": { "name": "Fiendish Charter", "desc": "This long scroll bears the mark of a powerful creature of the Lower Planes, whether an archduke of Hell, a demon lord of the Abyss, or some other powerful fiend or evil deity. When you use an action to present this scroll to a fiend whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the fiend, negotiating a service from it in exchange for a reward. The fiend is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the fiend, the truce is broken, and the creature can act normally. If the fiend refuses the offer, it is free to take any actions it wishes. Should you and the fiend reach an agreement that is satisfactory to both parties, you must sign the charter in blood and have the fiend do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the fiend to the agreement until its service is rendered and the reward paid, at which point the scroll ignites and burns into ash. The contract's wording should be carefully considered, as fiends are notorious for finding loopholes or adhering to the letter of the agreement to their advantage. If either party breaks the bargain, that creature immediately takes 10d6 necrotic damage, and the charter is destroyed, ending the contract.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7320,7 +7320,7 @@ "fields": { "name": "Figurehead of Prowess", "desc": "A figurehead of prowess must be mounted on the bow of a ship for its magic to take effect. While mounted on a ship, the figurehead’s magic affects the ship and every creature on the ship. A figurehead can be mounted on any ship larger than a rowboat, regardless if that ship sails the sea, the sky, rivers and lakes, or the sands of the desert. A ship can have only one figurehead mounted on it at a time. Most figureheads are always active, but some have properties that must be activated. To activate a figurehead’s special property, a creature must be at the helm of the ship, referred to below as the “pilot,” and must use an action to speak the figurehead’s command word. \nAlbatross (Uncommon). While this figurehead is mounted on a ship, the ship’s pilot can double its proficiency bonus with navigator’s tools when navigating the ship. In addition, the ship’s pilot doesn’t have disadvantage on Wisdom (Perception) checks that rely on sight when peering through fog, rain, dust storms, or other natural phenomena that would ordinarily lightly obscure the pilot’s vision. \nBasilisk (Uncommon). While this figurehead is mounted on a ship, the ship’s AC increases by 2. \nDragon Turtle (Very Rare). While this figurehead is mounted on a ship, each creature on the ship has resistance to fire damage, and the ship’s damage threshold increases by 5. If the ship doesn’t normally have a damage threshold, it gains a damage threshold of 5. \nKraken (Rare). While this figurehead is mounted on a ship, the pilot can animate all of the ship’s ropes. If a creature on the ship uses an animated rope while taking the grapple action, the creature has advantage on the check. Alternatively, the pilot can command the ropes to move as if being moved by a crew, allowing a ship to dock or a sailing ship to sail without a crew. The pilot can end this effect as a bonus action. When the ship’s ropes have been animated for a total of 10 minutes, the figurehead’s magic ceases to function until the next dawn. \nManta Ray (Rare). While this figurehead is mounted on a ship, the ship’s speed increases by half. For example, a ship with a speed of 4 miles per hour would have a speed of 6 miles per hour while this figurehead was mounted on it. \nNarwhal (Very Rare). While this figurehead is mounted on a ship, each creature on the ship has resistance to cold damage, and the ship can break through ice sheets without taking damage or needing to make a check. \nOctopus (Rare). This figurehead can be mounted only on ships designed for water travel. While this figurehead is mounted on a ship, the pilot can force the ship to dive beneath the water. The ship moves at its normal speed while underwater, regardless of its normal method of locomotion. Each creature on the ship remains on the ship and can breathe normally as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to resurface at a rate of 60 feet per round. When the ship has spent a total of 1 hour underwater, the figurehead’s magic ceases to function until the next dawn. \nSphinx (Legendary). This figurehead can be mounted only on a ship that isn’t designed for air travel. While this figurehead is mounted on a ship, the pilot can command the ship to rise into the air. The ship moves at its normal speed while in the air, regardless of its normal method of locomotion. Each creature on the ship remains on the ship as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to descend at a rate of 60 feet per round until it reaches land or water. When the ship has spent a total of 8 hours in the sky, the figurehead’s magic ceases to function until the next dawn. \nXorn (Very Rare). This figurehead can be mounted only on a ship designed for land travel. While this figurehead is mounted on a ship, the pilot can force the ship to burrow into the earth. The ship moves at its normal speed while burrowing, regardless of its normal method of locomotion. The ship can burrow through nonmagical, unworked sand, mud, earth, and stone, and it doesn’t disturb the material it moves through. Each creature on the ship remains on the ship and can breathe normally as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to resurface at a rate of 60 feet per round. When the ship has spent a total of 1 hour burrowing, the figurehead’s magic ceases to function until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7339,7 +7339,7 @@ "fields": { "name": "Figurine of Wondrous Power (Amber Bee)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7358,7 +7358,7 @@ "fields": { "name": "Figurine of Wondrous Power (Basalt Cockatrice)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7377,7 +7377,7 @@ "fields": { "name": "Figurine of Wondrous Power (Coral Shark)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7396,7 +7396,7 @@ "fields": { "name": "Figurine of Wondrous Power (Hematite Aurochs)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7415,7 +7415,7 @@ "fields": { "name": "Figurine of Wondrous Power (Lapis Camel)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7434,7 +7434,7 @@ "fields": { "name": "Figurine of Wondrous Power (Marble Mistwolf)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7453,7 +7453,7 @@ "fields": { "name": "Figurine of Wondrous Power (Tin Dog)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7472,7 +7472,7 @@ "fields": { "name": "Figurine of Wondrous Power (Violet Octopoid)", "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7491,7 +7491,7 @@ "fields": { "name": "Firebird Feather", "desc": "This feather sheds bright light in a 20-foot radius and dim light for an additional 20 feet, but it creates no heat and doesn't use oxygen. While holding the feather, you can tolerate temperatures as low as –50 degrees Fahrenheit. Druids and clerics and paladins who worship nature deities can use the feather as a spellcasting focus. If you use the feather in place of a holy symbol when using your Turn Undead feature, undead in the area have a –1 penalty on the saving throw.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7510,7 +7510,7 @@ "fields": { "name": "Flag of the Cursed Fleet", "desc": "This dreaded item is a black flag painted with an unsettlingly realistic skull. A spell or other effect that can sense the presence of magic, such as detect magic, reveals an aura of necromancy around the flag. Beasts with an Intelligence of 3 or lower don’t willingly board a vessel where this flag flies. A successful DC 17 Wisdom (Animal Handling) check convinces an unwilling beast to board the vessel, though it remains uneasy and skittish while aboard. \nCursed Crew. When this baleful flag flies atop the mast of a waterborne vehicle, it curses the vessel and all those that board it. When a creature that isn’t a humanoid dies aboard the vessel, it rises 1 minute later as a zombie under the ship captain’s control. When a humanoid dies aboard the vessel, it rises 1 minute later as a ghoul under the ship captain’s control. A ghoul retains any knowledge of sailing or maintaining a waterborne vehicle that it had in life. \nCursed Captain. If the ship flying this flag doesn’t have a captain, the undead crew seeks out a powerful humanoid or intelligent undead to bring aboard and coerce into becoming the captain. When an undead with an Intelligence of 10 or higher boards the captainless vehicle, it must succeed on a DC 17 Wisdom saving throw or become magically bound to the ship and the flag. If the creature exits the vessel and boards it again, the creature must repeat the saving throw. The flag fills the captain with the desire to attack other vessels to grow its crew and commandeer larger vessels when possible, bringing the flag with it. If the flag is destroyed or removed from a waterborne vehicle for at least 7 days, the zombie and ghoul crew crumbles to dust, and the captain is freed of the flag’s magic, if the captain was bound to it. \nUnholy Vessel. While aboard a vessel flying this flag, an undead creature has advantage on saving throws against effects that turn undead, and if it fails the saving throw, it isn’t destroyed, no matter its CR. In addition, the captain and crew can’t be frightened while aboard a vessel flying this flag. \nWhen a creature that isn’t a construct or undead and isn’t part of the crew boards the vessel, it must succeed on a DC 17 Constitution saving throw or be poisoned while it remains on board. If the creature exits the vessel and boards it again, the creature must repeat the saving throw.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7529,7 +7529,7 @@ "fields": { "name": "Flash Bullet", "desc": "When you hit a creature with a ranged attack using this shiny, polished stone, it releases a sudden flash of bright light. The target takes damage as normal and must succeed on a DC 11 Constitution saving throw or be blinded until the end of its next turn. Creatures with the Sunlight Sensitivity trait have disadvantage on this saving throw.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7548,7 +7548,7 @@ "fields": { "name": "Flask of Epiphanies", "desc": "This flask is made of silver and cherry wood, and it holds finely cut garnets on its faces. This ornate flask contains 5 ounces of powerful alcoholic spirits. As an action, you can drink up to 5 ounces of the flask's contents. You can drink 1 ounce without risk of intoxication. When you drink more than 1 ounce of the spirits as part of the same action, you must make a DC 12 Constitution saving throw (this DC increases by 1 for each ounce you imbibe after the second, to a maximum of DC 15). On a failed save, you are incapacitated for 1d4 hours and gain no benefits from consuming the alcohol. On a success, your Intelligence or Wisdom (your choice) increases by 1 for each ounce you consumed. Whether you fail or succeed, your Dexterity is reduced by 1 for each ounce you consumed. The effect lasts for 1 hour. During this time, you have advantage on all Intelligence (Arcana) and Inteligence (Religion) checks. The flask replenishes 1d3 ounces of spirits daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7567,7 +7567,7 @@ "fields": { "name": "Fleshspurned Mask", "desc": "This mask features inhumanly sized teeth similar in appearance to the toothy ghost known as a Fleshspurned (see Tome of Beasts 2). It has a strap fashioned from entwined strands of sinew, and it fits easily over your face with no need to manually adjust the strap. While wearing this mask, you can use its teeth to make unarmed strikes. When you hit with it, the teeth deal necrotic damage equal to 1d6 + your Strength modifier, instead of bludgeoning damage normal for an unarmed strike. In addition, if the target has the Incorporeal Movement trait, you deal necrotic damage equal to 2d6 + your Strength modifier instead. Such targets don't have resistance or immunity to the necrotic damage you deal with this attack. If you kill a creature with your teeth, you gain temporary hit points equal to double the creature's challenge rating (minimum of 1).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7586,7 +7586,7 @@ "fields": { "name": "Flood Charm", "desc": "This smooth, blue-gray stone is carved with stylized waves or rows of wavy lines. When you are in water too deep to stand, the charm activates. You automatically become buoyant enough to float to the surface unless you are grappled or restrained. If you are unable to surface—such as if you are grappled or restrained, or if the water completely fills the area—the charm surrounds you with a bubble of breathable air that lasts for 5 minutes. At the end of the air bubble's duration, or when you leave the water, the charm's effects end and it becomes a nonmagical stone.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7605,7 +7605,7 @@ "fields": { "name": "Flute of Saurian Summoning", "desc": "This scaly, clawed flute has a musky smell, and it releases a predatory, screeching roar with reptilian overtones when blown. You must be proficient with wind instruments to use this flute. You can use an action to play the flute and conjure dinosaurs. This works like the conjure animals spell, except the animals you conjure must be dinosaurs or Medium or larger lizards. The dinosaurs remain for 1 hour, until they die, or until you dismiss them as a bonus action. The flute can't be used to conjure dinosaurs again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7624,7 +7624,7 @@ "fields": { "name": "Fly Whisk of Authority", "desc": "If you use an action to flick this fly whisk, you have advantage on Charisma (Intimidation) and Charisma (Persuasion) checks for 10 minutes. You can't use the fly whisk this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7643,7 +7643,7 @@ "fields": { "name": "Fog Stone", "desc": "This sling stone is carved to look like a fluffy cloud. Typically, 1d4 + 1 fog stones are found together. When you fire the stone from a sling, it transforms into a miniature cloud as it flies through the air, and it creates a 20-foot-radius sphere of fog centered on the target or point of impact. The sphere spreads around corners, and its area is heavily obscured. It lasts for 10 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7662,7 +7662,7 @@ "fields": { "name": "Forgefire Maul", "desc": "The head of this weapon is shaped like an anvil, and engravings of fire and arcane runes decorate it. You can use a bonus action to speak this magic weapon's command word, causing its head to glow red-hot. While red-hot, the weapon deals an extra 1d6 fire damage to any target it hits. The weapon's anvil-like head remains red-hot until you use a bonus action to speak the command word again or until you drop or sheathe the weapon. When you roll a 20 on an attack roll made with this weapon against a target holding or wearing a metal object, such as a metal weapon or metal armor, the target takes an extra 1d4 fire damage and the metal object becomes red-hot for 1 minute. While the object is red-hot and the creature still wears or carries it, the creature takes 1d4 fire damage at the start of each of its turns.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7681,7 +7681,7 @@ "fields": { "name": "Forgefire Warhammer", "desc": "The head of this weapon is shaped like an anvil, and engravings of fire and arcane runes decorate it. You can use a bonus action to speak this magic weapon's command word, causing its head to glow red-hot. While red-hot, the weapon deals an extra 1d6 fire damage to any target it hits. The weapon's anvil-like head remains red-hot until you use a bonus action to speak the command word again or until you drop or sheathe the weapon. When you roll a 20 on an attack roll made with this weapon against a target holding or wearing a metal object, such as a metal weapon or metal armor, the target takes an extra 1d4 fire damage and the metal object becomes red-hot for 1 minute. While the object is red-hot and the creature still wears or carries it, the creature takes 1d4 fire damage at the start of each of its turns.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7700,7 +7700,7 @@ "fields": { "name": "Fountmail", "desc": "This armor is a dazzling white suit of chain mail with an alabaster-colored steel collar that covers part of the face. You gain a +3 bonus to AC while you wear this armor. In addition, you gain the following benefits: - You add your Strength and Wisdom modifiers in addition to your Constitution modifier on all rolls when spending Hit Die to recover hit points. - You can't be frightened. - You have resistance to necrotic damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7719,7 +7719,7 @@ "fields": { "name": "Freerunner Rod", "desc": "Tightly intertwined lengths of grass, bound by additional stiff, knotted blades of grass, form this rod, which is favored by plains-dwelling druids and rangers. While holding it and in grasslands, you leave behind no tracks or other traces of your passing, and you can pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. In addition, beasts with an Intelligence of 3 or lower that are native to grasslands must succeed on a DC 15 Charisma saving throw to attack you. The rod has 10 charges, and it regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rod collapses into a pile of grass seeds and is destroyed. Among the grass seeds are 1d10 berries, consumable as if created by the goodberry spell.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7738,7 +7738,7 @@ "fields": { "name": "Frost Pellet", "desc": "Fashioned from the stomach lining of a Devil Shark (see Creature Codex), this rubbery pellet is cold to the touch. When you consume the pellet, you feel bloated, and you are immune to cold damage for 1 hour. Once before the duration ends, you can expel a 30-foot cone of cold water. Each creature in the cone must make a DC 15 Constitution saving throw. On a failure, the creature takes 6d8 cold damage and is pushed 10 feet away from you. On a success, the creature takes half the damage and isn't pushed away.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7757,7 +7757,7 @@ "fields": { "name": "Frostfire Lantern", "desc": "While lit, the flame in this ornate mithril lantern turns blue and sheds a cold, blue dim light in a 30-foot radius. After the lantern's flame has burned for 1 hour, it can't be lit again until the next dawn. You can extinguish the lantern's flame early for use at a later time. Deduct the time it burned in increments of 1 minute from the lantern's total burn time. When a creature enters the lantern's light for the first time on a turn or starts its turn there, the creature must succeed on a DC 17 Constitution saving throw or be vulnerable to cold damage until the start of its next turn. When you light the lantern, choose up to four creatures you can see within 30 feet of you, which can include yourself. The chosen creatures are immune to this effect of the lantern's light.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7776,7 +7776,7 @@ "fields": { "name": "Frungilator", "desc": "This strangely-shaped item resembles a melted wand or a strange growth chipped from the arcane trees of elder planes. The wand has 5 charges and regains 1d4 + 1 charges daily at dusk. While holding it, you can use an action to expend 1 of its charges and point it at a target within 60 feet of you. The target must be a creature. When activated, the wand frunges creatures into a chaos matrix, which does…something. Roll a d10 and consult the following table to determine these unpredictable effects (none of them especially good). Most effects can be removed by dispel magic, greater restoration, or more powerful magic. | d10 | Frungilator Effect |\n| --- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| 1 | Glittering sparkles fly all around. You are surrounded in sparkling light until the end of your next turn as if you were targeted by the faerie fire spell. |\n| 2 | The target is encased in void crystal and immediately begins suffocating. A creature, including the target, can take its action to shatter the void crystal by succeeding on a DC 10 Strength check. Alternatively, the void crystal can be attacked and destroyed (AC 12; hp 4; immunity to poison and psychic damage). |\n| 3 | Crimson void fire engulfs the target. It must make a DC 13 Constitution saving throw, taking 4d6 fire damage on a failed save, or half as much damage on a successful one. |\n| 4 | The target's blood turns to ice. It must make a DC 13 Constitution saving throw, taking 6d6 cold damage on a failed save, or half as much damage on a successful one. |\n| 5 | The target rises vertically to a height of your choice, up to a maximum height of 60 feet. The target remains suspended there until the start of its next turn. When this effect ends, the target floats gently to the ground. |\n| 6 | The target begins speaking in backwards fey speech for 10 minutes. While speaking this way, the target can't verbally communicate with creatures that aren't fey, and the target can't cast spells with verbal components. |\n| 7 | Golden flowers bloom across the target's body. It is blinded until the end of its next turn. |\n| 8 | The target must succeed on a DC 13 Constitution saving throw or it and all its equipment assumes a gaseous form until the end of its next turn. This effect otherwise works like the gaseous form spell. |\n| 9 | The target must succeed on a DC 15 Wisdom saving throw or become enthralled with its own feet or limbs until the end of its next turn. While enthralled, the target is incapacitated. |\n| 10 | A giant ray of force springs out of the frungilator and toward the target. Each creature in a line that is 5 feet wide between you and the target must make a DC 16 Dexterity saving throw, taking 4d12 force damage on a failed save, or half as much damage on a successful one. |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7795,7 +7795,7 @@ "fields": { "name": "Fulminar Bracers", "desc": "Stylized etchings of cat-like lightning elementals known as Fulminars (see Creature Codex) cover the outer surfaces of these solid silver bracers. While wearing these bracers, lightning crackles harmless down your hands, and you have resistance to lightning damage and thunder damage. The bracers have 3 charges. You can use an action to expend 1 charge to create lightning shackles that bind up to two creatures you can see within 60 feet of you. Each target must make a DC 15 Dexterity saving throw. On a failure, a target takes 4d6 lightning damage and is restrained for 1 minute. On a success, the target takes half the damage and isn't restrained. A restrained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The bracers regain all expended charges daily at dawn. The bracers also regain 1 charge each time you take 10 lightning damage while wearing them.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7814,7 +7814,7 @@ "fields": { "name": "Gale Javelin", "desc": "The metallic head of this javelin is embellished with three small wings. When you speak a command word while making a ranged weapon attack with this magic weapon, a swirling vortex of wind follows its path through the air. Draw a line between you and the target of your attack; each creature within 10 feet of this line must make a DC 13 Strength saving throw. On a failed save, the creature is pushed backward 10 feet and falls prone. In addition, if this ranged weapon attack hits, the target must make a DC 13 Strength saving throw. On a failed save, the target is pushed backward 15 feet and falls prone. The javelin's property can't be used again until the next dawn. In the meantime, it can still be used as a magic weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7833,7 +7833,7 @@ "fields": { "name": "Garments of Winter's Knight", "desc": "This white-and-blue outfit is designed in the style of fey nobility and maximized for both movement and protection. The multiple layers and snow-themed details of this garb leave no doubt that whoever wears these clothes is associated with the winter queen of faerie. You gain the following benefits while wearing the outfit: - If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\n- Whenever a creature within 5 feet of you hits you with a melee attack, the cloth steals heat from the surrounding air, and the attacker takes 2d8 cold damage.\n- You can't be charmed, and you are immune to cold damage.\n- You can use a bonus action to extend your senses outward to detect the presence of fey. Until the start of your next turn, you know the location of any fey within 60 feet of you.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7852,7 +7852,7 @@ "fields": { "name": "Gauntlet of the Iron Sphere", "desc": "This heavy gauntlet is adorned with an onyx. While wearing this gauntlet, your unarmed strikes deal 1d8 bludgeoning damage, instead of the damage normal for an unarmed strike, and you gain a +1 bonus to attack and damage rolls with unarmed strikes. In addition, your unarmed strikes deal double damage to objects and structures. If you hold a pound of raw iron ore in your hand while wearing the gauntlet, you can use an action to speak the gauntlet's command word and conjure an Iron Sphere (see Creature Codex). The iron sphere remains for 1 hour or until it dies. It is friendly to you and your companions. Roll initiative for the iron sphere, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the iron sphere, it defends itself from hostile creatures but otherwise takes no actions. The gauntlet can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7871,7 +7871,7 @@ "fields": { "name": "Gazebo of Shade and Shelter", "desc": "You can use an action to place this 3-inch sandstone gazebo statuette on the ground and speak its command word. Over the next 5 minutes, the sandstone gazebo grows into a full-sized gazebo that remains for 8 hours or until you speak the command word that returns it to a sandstone statuette. The gazebo's posts are made of palm tree trunks, and its roof is made of palm tree fronds. The floor is level, clean, dry and made of palm fronds. The atmosphere inside the gazebo is comfortable and dry, regardless of the weather outside. You can command the interior to become dimly lit or dark. The gazebo's walls are opaque from the outside, appearing wooden, but they are transparent from the inside, appearing much like sheer fabric. When activated, the gazebo has an opening on the side facing you. The opening is 5 feet wide and 10 feet tall and opens and closes at your command, which you can speak as a bonus action while within 10 feet of the opening. Once closed, the opening is immune to the knock spell and similar magic, such as that of a chime of opening. The gazebo is 20 feet in diameter and is 10 feet tall. It is made of sandstone, despite its wooden appearance, and its magic prevents it from being tipped over. It has 100 hit points, immunity to nonmagical attacks excluding siege weapons, and resistance to all other damage. The gazebo contains crude furnishings: eight simple bunks and a long, low table surrounded by eight mats. Three of the wall posts bear fruit: one coconut, one date, and one fig. A small pool of clean, cool water rests at the base of a fourth wall post. The trees and the pool of water provide enough food and water for up to 10 people. Furnishings and other objects within the gazebo dissipate into smoke if removed from the gazebo. When the gazebo returns to its statuette form, any creatures inside it are expelled into unoccupied spaces nearest to the gazebo's entrance. Once used, the gazebo can't be used again until the next dusk. If reduced to 0 hit points, the gazebo can't be used again until 7 days have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7890,7 +7890,7 @@ "fields": { "name": "Ghost Barding Breastplate", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7909,7 +7909,7 @@ "fields": { "name": "Ghost Barding Chain Mail", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7928,7 +7928,7 @@ "fields": { "name": "Ghost Barding Chain Shirt", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7947,7 +7947,7 @@ "fields": { "name": "Ghost Barding Half Plate", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7966,7 +7966,7 @@ "fields": { "name": "Ghost Barding Hide", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -7985,7 +7985,7 @@ "fields": { "name": "Ghost Barding Leather", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8004,7 +8004,7 @@ "fields": { "name": "Ghost Barding Padded", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8023,7 +8023,7 @@ "fields": { "name": "Ghost Barding Plate", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8042,7 +8042,7 @@ "fields": { "name": "Ghost Barding Ring Mail", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8061,7 +8061,7 @@ "fields": { "name": "Ghost Barding Scale Mail", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8080,7 +8080,7 @@ "fields": { "name": "Ghost Barding Splint", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8099,7 +8099,7 @@ "fields": { "name": "Ghost Barding Studded Leather", "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8118,7 +8118,7 @@ "fields": { "name": "Ghost Dragon Horn", "desc": "Scales from dead dragons cover this wooden, curved horn. You can use an action to speak the horn's command word and then blow the horn, which emits a blast in a 30-foot cone, containing shrieking spectral dragon heads. Each creature in the cone must make a DC 17 Wisdom saving throw. On a failure, a creature tales 5d10 psychic damage and is frightened of you for 1 minute. On a success, a creature takes half the damage and isn't frightened. Dragons have disadvantage on the saving throw and take 10d10 psychic damage instead of 5d10. A frightened target can repeat the Wisdom saving throw at the end of each of its turns, ending the effect on itself on a success. If a dragon takes damage from the horn's shriek, the horn has a 20 percent chance of exploding. The explosion deals 10d10 psychic damage to the blower and destroys the horn. Once you use the horn, it can't be used again until the next dawn. If you kill a dragon while holding or carrying the horn, you regain use of the horn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8137,7 +8137,7 @@ "fields": { "name": "Ghost Thread", "desc": "Most of this miles-long strand of enchanted silk, created by phase spiders, resides on the Ethereal Plane. Only a few inches at either end exist permanently on the Material Plane, and those may be used as any normal string would be. Creatures using it to navigate can follow one end to the other by running their hand along the thread, which phases into the Material Plane beneath their grasp. If dropped or severed (AC 8, 1 hit point), the thread disappears back into the Ethereal Plane in 2d6 rounds.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8156,7 +8156,7 @@ "fields": { "name": "Ghoul Light", "desc": "This bullseye lantern sheds light as normal when a lit candle is placed inside of it. If the light shines on meat, no matter how toxic or rotten, for at least 10 minutes, the meat is rendered safe to eat. The lantern's magic doesn't improve the meat's flavor, but the light does restore the meat's nutritional value and purify it, rendering it free of poison and disease. In addition, when an undead creature ends its turn in the light, it takes 1 radiant damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8175,7 +8175,7 @@ "fields": { "name": "Ghoulbane Oil", "desc": "This rusty-red gelatinous liquid glistens with tiny sparkling crystal flecks. The oil can coat one weapon or 5 pieces of ammunition. Applying the oil takes 1 minute. For 1 hour, if a ghoul, ghast, or Darakhul (see Tome of Beasts) takes damage from the coated item, it takes an extra 2d6 damage of the weapon's type.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8194,7 +8194,7 @@ "fields": { "name": "Ghoulbane Rod", "desc": "Arcane glyphs decorate the spherical head of this tarnished rod, while engravings of cracked and broken skulls and bones circle its haft. When an undead creature is within 120 feet of the rod, the rod's arcane glyphs emit a soft glow. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's glyphs flare to life and the rod's magic activates. When an undead creature enters or starts its turn within 30 feet of the planted rod, it must succeed on a DC 15 Wisdom saving throw or have disadvantage on attack rolls against creatures that aren't undead until the start of its next turn. If a ghoul fails this saving throw, it also takes a –2 penalty to AC and Dexterity saving throws, its speed is halved, and it can't use reactions. The rod's magic remains active while planted in the ground, and after it has been active for a total of 10 minutes, its magic ceases to function until the next dawn. A creature can use an action to pull the rod from the ground, ending the effect early for use at a later time. Deduct the time it was active in increments of 1 minute from the rod's total active time.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8213,7 +8213,7 @@ "fields": { "name": "Giggling Orb", "desc": "This glass sphere measures 3 inches in diameter and contains a swirling, yellow mist. You can use an action to throw the orb up to 60 feet. The orb shatters on impact and is destroyed. Each creature within a 20-foot-radius of where the orb landed must succeed on a DC 15 Wisdom saving throw or fall prone in fits of laughter, becoming incapacitated and unable to stand for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8232,7 +8232,7 @@ "fields": { "name": "Girdle of Traveling Alchemy", "desc": "This wide leather girdle has many sewn-in pouches and holsters that hold an assortment of empty beakers and vials. Once you have attuned to the girdle, these containers magically fill with the following liquids:\n- 2 flasks of alchemist's fire\n- 2 flasks of alchemist's ice*\n- 2 vials of acid - 2 jars of swarm repellent* - 1 vial of assassin's blood poison - 1 potion of climbing - 1 potion of healing Each container magically replenishes each day at dawn, if you are wearing the girdle. All the potions and alchemical substances produced by the girdle lose their properties if they're transferred to another container before being used.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8251,7 +8251,7 @@ "fields": { "name": "Glamour Rings", "desc": "These rings are made from twisted loops of gold and onyx and are always found in pairs. The rings' magic works only while you and another humanoid of the same size each wear one ring and are on the same plane of existence. While wearing a ring, you or the other humanoid can use an action to swap your appearances, if both of you are willing. This effect works like the Change Appearance effect of the alter self spell, except you can change your appearance to only look identical to each other. Your clothing and equipment don't change, and the effect lasts until one of you uses this property again or until one of you removes the ring.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8270,7 +8270,7 @@ "fields": { "name": "Glass Wand of Leng", "desc": "The tip of this twisted clear glass wand is razorsharp. It can be wielded as a magic dagger that grants a +1 bonus to attack and damage rolls made with it. The wand weighs 4 pounds and is roughly 18 inches long. When you tap the wand, it emits a single, loud note which can be heard up to 20 feet away and does not stop sounding until you choose to silence it. This wand has 5 charges and regains 1d4 + 1 charges daily at dawn. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 17): arcane lock (2 charges), disguise self (1 charge), or tongues (3 charges).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8289,7 +8289,7 @@ "fields": { "name": "Glazed Battleaxe", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8308,7 +8308,7 @@ "fields": { "name": "Glazed Greataxe", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8327,7 +8327,7 @@ "fields": { "name": "Glazed Greatsword", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8346,7 +8346,7 @@ "fields": { "name": "Glazed Handaxe", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8365,7 +8365,7 @@ "fields": { "name": "Glazed Longsword", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8384,7 +8384,7 @@ "fields": { "name": "Glazed Rapier", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8403,7 +8403,7 @@ "fields": { "name": "Glazed Scimitar", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8422,7 +8422,7 @@ "fields": { "name": "Glazed Shortsword", "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8441,7 +8441,7 @@ "fields": { "name": "Gliding Cloak", "desc": "By grasping the ends of the cloak while falling, you can glide up to 5 feet horizontally in any direction for every 1 foot you fall. You descend 60 feet per round but take no damage from falling while gliding in this way. A tailwind allows you to glide 10 feet per 1 foot descended, but a headwind forces you to only glide 5 feet per 2 feet descended.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8460,7 +8460,7 @@ "fields": { "name": "Gloomflower Corsage", "desc": "This black, six-petaled flower fits neatly on a garment's lapel or peeking out of a pocket. While wearing it, you have advantage on saving throws against being blinded, deafened, or frightened. While wearing the flower, you can use an action to speak one of three command words to invoke the corsage's power and cause one of the following effects: - When you speak the first command word, you gain blindsight out to a range of 120 feet for 1 hour.\n- When you speak the second command word, choose a target within 120 feet of you and make a ranged attack with a +7 bonus. On a hit, the target takes 3d6 psychic damage.\n- When you speak the third command word, your form shifts and shimmers. For 1 minute, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight. Each time you use the flower, one of its petals curls in on itself. You can't use the flower if all of its petals are curled. The flower uncurls 1d6 petals daily at dusk.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8479,7 +8479,7 @@ "fields": { "name": "Gloves of the Magister", "desc": "The backs of each of these black leather gloves are set with gold fittings as if to hold a jewel. While you wear the gloves, you can cast mage hand at will. You can affix an ioun stone into the fitting on a glove. While the stone is affixed, you gain the benefits of the stone as if you had it in orbit around your head. If you take an action to touch a creature, you can transfer the benefits of the ioun stone to that creature for 1 hour. While the creature is gifted the benefits, the stone turns gray and provides you with no benefits for the duration. You can use an action to end this effect and return power to the stone. The stone's benefits can also be dispelled from a creature as if they were a 7th-level spell. When the effect ends, the stone regains its color and provides you with its benefits once more.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8498,7 +8498,7 @@ "fields": { "name": "Gloves of the Walking Shade", "desc": "Each glove is actually comprised of three, black ivory rings (typically fitting the thumb, middle finger, and pinkie) which are connected to each other. The rings are then connected to an intricately-engraved onyx wrist cuff by a web of fine platinum chains and tiny diamonds. While wearing these gloves, you gain the following benefits: - You have resistance to necrotic damage.\n- You can spend one Hit Die during a short rest to remove one level of exhaustion instead of regaining hit points.\n- You can use an action to become a living shadow for 1 minute. For the duration, you can move through a space as narrow as 1 inch wide without squeezing, and you can take the Hide action as a bonus action while you are in dim light or darkness. Once used, this property of the gloves can't be used again until the next nightfall.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8517,7 +8517,7 @@ "fields": { "name": "Gnawing Spear", "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. When you roll a 20 on an attack roll made with this spear, its head animates, grows serrated teeth, and lodges itself in the target. While the spear is lodged in the target and you are wielding the spear, the target is grappled by you. At the start of each of your turns, the spear twists and grinds, dealing 2d6 piercing damage to the grappled target. If you release the spear, it remains lodged in the target, dealing damage each round as normal, but the target is no longer grappled by you. While the spear is lodged in a target, you can't make attacks with it. A creature, including the restrained target, can take its action to remove the spear by succeeding on a DC 15 Strength check. The target takes 1d6 piercing damage when the spear is removed. You can use an action to speak the spear's command word, causing it to dislodge itself and fall into an unoccupied space within 5 feet of the target.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8536,7 +8536,7 @@ "fields": { "name": "Goblin Shield", "desc": "This shield resembles a snarling goblin's head. It has 3 charges and regains 1d3 expended charges daily at dawn. While wielding this shield, you can use a bonus action to expend 1 charge and command the goblin's head to bite a creature within 5 feet of you. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. On a hit, the target takes 2d4 piercing damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8555,7 +8555,7 @@ "fields": { "name": "Goggles of Firesight", "desc": "The lenses of these combination fleshy and plantlike goggles extend a few inches away from the goggles on a pair of tentacles. While wearing these lenses, you can see through lightly obscured and heavily obscured areas without your vision being obscured, if those areas are obscured by fire, smoke, or fog. Other effects that would obscure your vision, such as rain or darkness, affect you normally. When you fail a saving throw against being blinded, you can use a reaction to call on the power within the goggles. If you do so, you succeed on the saving throw instead. The goggles can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8574,7 +8574,7 @@ "fields": { "name": "Goggles of Shade", "desc": "While wearing these dark lenses, you have advantage on Charisma (Deception) checks. If you have the Sunlight Sensitivity trait and wear these goggles, you no longer suffer the penalties of Sunlight Sensitivity while in sunlight.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8593,7 +8593,7 @@ "fields": { "name": "Golden Bolt", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. This crossbow doesn't have the loading property, and it doesn't require ammunition. Immediately after firing a bolt from this weapon, another golden bolt forms to take its place.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8612,7 +8612,7 @@ "fields": { "name": "Gorgon Scale", "desc": "The iron scales of this armor have a green-tinged iridescence. While wearing this armor, you gain a +1 bonus to AC, and you have immunity to the petrified condition. If you move at least 20 feet straight toward a creature and then hit it with a melee weapon attack on the same turn, you can use a bonus action to imbue the hit with some of the armor's petrifying magic. The target must make a DC 15 Constitution saving throw. On a failed save, the target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic. The armor can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8631,7 +8631,7 @@ "fields": { "name": "Granny Wax", "desc": "Normally found in a small glass jar containing 1d3 doses, this foul-smelling, greasy yellow substance is made by hags in accordance with an age-old secret recipe. You can use an action to rub one dose of the wax onto an ordinary broom or wooden stick and transform it into a broom of flying for 1 hour.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8650,7 +8650,7 @@ "fields": { "name": "Grasping Cap", "desc": "This cap is a simple, blue silk hat with a goose feather trim. While wearing this cap, you have advantage on Strength (Athletics) checks made to climb, and the cap deflects the first ranged attack made against you each round. In addition, when a creature attacks you while within 30 feet of you, it is illuminated and sheds red-hued dim light in a 50-foot radius until the end of its next turn. Any attack roll against an illuminated creature has advantage if the attacker can see it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8669,7 +8669,7 @@ "fields": { "name": "Grasping Cloak", "desc": "Made of strips of black leather, this cloak always shines as if freshly oiled. The strips writhe and grasp at nearby creatures. While wearing this cloak, you can use a bonus action to command the strips to grapple a creature no more than one size larger than you within 5 feet of you. The strips make the grapple attack roll with a +7 bonus. On a hit, the target is grappled by the cloak, leaving your hands free to perform other tasks or actions that require both hands. However, you are still considered to be grappling a creature, limiting your movement as normal. The cloak can grapple only one creature at a time. Alternatively, you can use a bonus action to command the strips to aid you in grappling. If you do so, you have advantage on your next attack roll made to grapple a creature. While grappling a creature in this way, you have advantage on the contested check if a creature attempts to escape your grapple.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8688,7 +8688,7 @@ "fields": { "name": "Grasping Shield", "desc": "The boss at the center of this shield is a hand fashioned of metal. While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8707,7 +8707,7 @@ "fields": { "name": "Grave Reagent", "desc": "This luminous green concoction creates an undead servant. If you spend 1 minute anointing the corpse of a Small or Medium humanoid, this arcane solution imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a zombie under your control (the GM has the zombie's statistics). On each of your turns, you can use a bonus action to verbally command the zombie if it is within 60 feet of you. You decide what action the zombie will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the zombie only defends itself against hostile creatures. Once given an order, the zombie continues to follow it until its task is complete. The zombie is under your control for 24 hours, after which it stops obeying any command you've given it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8726,7 +8726,7 @@ "fields": { "name": "Grave Ward Breastplate", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8745,7 +8745,7 @@ "fields": { "name": "Grave Ward Chain Mail", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8764,7 +8764,7 @@ "fields": { "name": "Grave Ward Chain Shirt", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8783,7 +8783,7 @@ "fields": { "name": "Grave Ward Half Plate", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8802,7 +8802,7 @@ "fields": { "name": "Grave Ward Hide", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8821,7 +8821,7 @@ "fields": { "name": "Grave Ward Leather", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8840,7 +8840,7 @@ "fields": { "name": "Grave Ward Padded", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8859,7 +8859,7 @@ "fields": { "name": "Grave Ward Plate", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8878,7 +8878,7 @@ "fields": { "name": "Grave Ward Ring Mail", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8897,7 +8897,7 @@ "fields": { "name": "Grave Ward Scale Mail", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8916,7 +8916,7 @@ "fields": { "name": "Grave Ward Splint", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8935,7 +8935,7 @@ "fields": { "name": "Grave Ward Studded Leather", "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8954,7 +8954,7 @@ "fields": { "name": "Greater Potion of Troll Blood", "desc": "When drink this potion, you regain 3 hit points at the start of each of your turns. After it has restored 30 hit points, the potion's effects end.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8973,7 +8973,7 @@ "fields": { "name": "Greater Scroll of Conjuring", "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -8992,7 +8992,7 @@ "fields": { "name": "Greatsword of Fallen Saints", "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9011,7 +9011,7 @@ "fields": { "name": "Greatsword of Volsung", "desc": "Legends tell of a dragon whose hide was impenetrable and so robust that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon’s name was lost, but its legacy remains. This sword is one of two items that were crafted to hold its heart. The black blade is adorned with glittering silver runes, and its guard has a shallow opening at the center with grooves connecting it to the first rune. The sword’s pommel is a large, clear crystal held fast by silver scales. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit a dragon with an attack using this sword, that creature takes an extra 1d6 slashing damage. Runes of Courage. You can’t be frightened while holding or carrying this sword. Fragment of Gram Awakened. You can use a bonus action to awaken a fragment of the spirit of the great wyrm that inhabits this blade. For 24 hours, you gain a +3 bonus to attack and damage rolls with this magic sword, and when you hit a dragon with an attack using this sword, that creature takes an extra 3d6 slashing damage. Once used, this property can’t be used again until 3 days have passed. If you have performed the Dragon Heart Ritual, you can use a bonus action to expend 2 of the sword’s charges to activate this property, and you can use this property as often as you want, as long as you have the charges to do so. Dragon Heart Ritual. If you are also attuned to the locket of dragon vitality (see page 152), you can drain 3 charges from the locket into the sword, turning the crystal pommel a deep red and rendering the locket broken and irreparable. Doing this requires a long rest where you also re-attune with the newly charged sword of volsung. Upon completing the Dragon Heart Ritual, the sword contains all remaining charges from the locket, and you gain the locket’s effects while holding or carrying the sword. When you are reduced to 0 hit points and trigger the locket’s temporary hit points, the sword isn’t destroyed, but you can’t trigger that effect again until 24 hours have passed. The sword regains all expended charges after you slay any dragon. For the purpose of this sword, “dragon” refers to any creature with the dragon type, including drakes and wyverns.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9030,7 +9030,7 @@ "fields": { "name": "Green Mantle", "desc": "This garment is made of living plants—mosses, vines, and grasses—interwoven into a light, comfortable piece of clothing. When you attune to this mantle, it forms a symbiotic relationship with you, sinking roots beneath your skin. While wearing the mantle, your hit point maximum is reduced by 5, and you gain the following benefits: - If you aren't wearing armor, your base Armor Class is 13 + your Dexterity modifier.\n- You have resistance to radiant damage.\n- You have immunity to the poisoned condition and poison damage that originates from a plant, moss, fungus, or plant creature.\n- As an action, you cause the mantle to produce 6 berries. It can have no more than 12 berries on it at one time. The berries have the same effect as berries produced by the goodberry spell. Unlike the goodberry spell, the berries retain their potency as long as they are not picked from the mantle. Once used, this property can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9049,7 +9049,7 @@ "fields": { "name": "Gremlin's Paw", "desc": "This wand is fashioned from the fossilized forearm and claw of a gremlin. The wand has 5 charges. While holding the wand, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 15): bane (1 charge), bestow curse (3 charges), or hideous laughter (1 charge). The wand regains 1d4 + 1 expended charges daily at dusk. If you expend the wand's last charge, roll a d20. On a 20, you must succeed on a DC 15 Wisdom saving throw or become afflicted with short-term madness. On a 1, the rod crumbles into ashes and is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9068,7 +9068,7 @@ "fields": { "name": "Grifter's Deck", "desc": "When you deal a card from this slightly greasy, well-used deck, you can choose any specific card to be on top of the deck, assuming it hasn't already been dealt. Alternatively, you can choose a general card of a specific value or suit that hasn't already been dealt.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9087,7 +9087,7 @@ "fields": { "name": "Grim Escutcheon", "desc": "This blackened iron shield is adorned with the menacing relief of a monstrously gaunt skull. You gain a +1 bonus to AC while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. While holding this shield, you can use a bonus action to speak its command word to cast the fear spell (save DC 13). The shield can't be used this way again until the next dusk.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9106,7 +9106,7 @@ "fields": { "name": "Gritless Grease", "desc": "This small, metal jar, 3 inches in diameter, holds 1d4 + 1 doses of a pungent waxy oil. As an action, one dose can be applied to or swallowed by a clockwork creature or device. The clockwork creature or device ignores difficult terrain, and magical effects can't reduce its speed for 8 hours. As an action, the clockwork creature, or a creature holding a clockwork device, can gain the effect of the haste spell until the end of its next turn (no concentration required). The effects of the haste spell melt the grease, ending all its effects at the end of the spell's duration.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9125,7 +9125,7 @@ "fields": { "name": "Hair Pick of Protection", "desc": "This hair pick has glittering teeth that slide easily into your hair, making your hair look perfectly coiffed and battle-ready. Though typically worn in hair, you can also wear the pick as a brooch or cloak clasp. While wearing this pick, you gain a +2 bonus to AC, and you have advantage on saving throws against spells. In addition, the pick magically boosts your self-esteem and your confidence in your ability to overcome any challenge, making you immune to the frightened condition.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9144,7 +9144,7 @@ "fields": { "name": "Half Plate of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9163,7 +9163,7 @@ "fields": { "name": "Half Plate of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9182,7 +9182,7 @@ "fields": { "name": "Half Plate of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9201,7 +9201,7 @@ "fields": { "name": "Hallowed Effigy", "desc": "This foot-long totem, crafted from the bones and skull of a Tiny woodland beast bound in thin leather strips, serves as a boon for you and your allies and as a stinging trap to those who threaten you. The totem has 10 charges, and it regains 1d6 + 4 expended charges daily at dawn. If the last charge is expended, it can't regain charges again until a druid performs a 24-hour ritual, which involves the sacrifice of a Tiny woodland beast. You can use an action to secure the effigy on any natural organic substrate (such as dirt, mud, grass, and so on). While secured in this way, it pulses with primal energy on initiative count 20 each round, expending 1 charge. When it pulses, you and each creature friendly to you within 15 feet of the totem regains 1d6 hit points, and each creature hostile to you within 15 feet of the totem must make a DC 15 Constitution saving throw, taking 1d6 necrotic damage on a failed save, or half as much damage on a successful one. It continues to pulse each round until you pick it up, it runs out of charges, or it is destroyed. The totem has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If it drops to 0 hit points, it is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9220,7 +9220,7 @@ "fields": { "name": "Hallucinatory Dust", "desc": "This small packet contains black pollen from a Gloomflower (see Creature Codex). Hazy images swirl around the pollen when observed outside the packet. There is enough of it for one use. When you use an action to blow the dust from your palm, each creature in a 30-foot cone must make a DC 15 Wisdom saving throw. On a failure, a creature sees terrible visions, manifesting its fears and anxieties for 1 minute. While affected, it takes 2d6 psychic damage at the start of each of its turns and must spend its action to make one melee attack against a creature within 5 feet of it, other than you or itself. If the creature can't make a melee attack, it takes the Dodge action. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. On a success, a creature becomes incapacitated until the end of its next turn as the visions fill its mind then quickly fade. A creature reduced to 0 hit points by the dust's psychic damage falls unconscious and is stable. When the creature regains consciousness, it is permanently plagued by hallucinations and has disadvantage on ability checks until cured by a remove curse spell or similar magic.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9239,7 +9239,7 @@ "fields": { "name": "Hammer of Decrees", "desc": "This adamantine hammer was part of a set of smith's tools used to create weapons of law for an ancient dwarven civilization. It is pitted and appears damaged, and its oak handle is split and bound with cracking hide. While attuned to this hammer, you have advantage on ability checks using smith's tools, and the time it takes you to craft an item with your smith's tools is halved.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9258,7 +9258,7 @@ "fields": { "name": "Hammer of Throwing", "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. In addition, when you throw the hammer, it returns to your hand at the end of your turn. If you have no hand free, it falls to the ground at your feet.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9277,7 +9277,7 @@ "fields": { "name": "Handy Scroll Quiver", "desc": "This belt quiver is wide enough to pass a rolled scroll through the opening. Containing an extra dimensional space, the quiver can hold up to 25 scrolls and weighs 1 pound, regardless of its contents. Placing a scroll in the quiver follows the normal rules for interacting with objects. Retrieving a scroll from the quiver requires you to use an action. When you reach into the quiver for a specific scroll, that scroll is always magically on top. The quiver has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the quiver ruptures and is destroyed. If the quiver is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If a breathing creature is placed within the quiver, the creature can survive for up to 5 minutes, after which time it begins to suffocate. Placing the quiver inside an extradimensional space created by a bag of holding, handy haversack, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9296,7 +9296,7 @@ "fields": { "name": "Hangman's Noose", "desc": "Certain hemp ropes used in the execution of final justice can affect those beyond the reach of normal magics. This noose has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the hold monster spell from it. Unlike the standard version of this spell, though, the magic of the hangman's noose affects only undead. It regains 1d3 charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9315,7 +9315,7 @@ "fields": { "name": "Hardening Polish", "desc": "This gray polish is viscous and difficult to spread. The polish can coat one metal weapon or up to 10 pieces of ammunition. Applying the polish takes 1 minute. For 1 hour, the coated item hardens and becomes stronger, and it counts as an adamantine weapon for the purpose of overcoming resistance and immunity to attacks and damage not made with adamantine weapons.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9334,7 +9334,7 @@ "fields": { "name": "Harmonizing Instrument", "desc": "Any stringed instrument can be a harmonizing instrument, and you must be proficient with stringed instruments to use a harmonizing instrument. This instrument has 3 charges for the following properties. The instrument regains 1d3 expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9353,7 +9353,7 @@ "fields": { "name": "Hat of Mental Acuity", "desc": "This well-crafted cap appears to be standard wear for academics. Embroidered on the edge of the inside lining in green thread are sigils. If you cast comprehend languages on them, they read, “They that are guided go not astray.” While wearing the hat, you have advantage on all Intelligence and Wisdom checks. If you are proficient in an Intelligence or Wisdom-based skill, you double your proficiency bonus for the skill.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9372,7 +9372,7 @@ "fields": { "name": "Hazelwood Wand", "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains all expended charges daily at dawn. When you cast the goodberry spell while using this wand as your spellcasting focus, you can expend 1 of the wand's charges to transform the berries into hazelnuts, which restore 2 hit points instead of 1. The spell is otherwise unchanged. In addition, when you cast a spell that deals lightning damage while using this wand as your spellcasting focus, the spell deals 1 extra lightning damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9391,7 +9391,7 @@ "fields": { "name": "Headdress of Majesty", "desc": "This elaborate headpiece is adorned with small gemstones and thin strips of gold that frame your head like a radiant halo. While you wear this headdress, you have advantage on Charisma (Intimidation) and Charisma (Persuasion) checks. The headdress has 5 charges for the following properties. It regains all expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the headdress becomes a nonmagical, tawdry ornament of cheap metals and paste gems.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9410,7 +9410,7 @@ "fields": { "name": "Headrest of the Cattle Queens", "desc": "This polished and curved wooden headrest is designed to keep the user's head comfortably elevated while sleeping. If you sleep at least 6 hours as part of a long rest while using the headrest, you regain 1 additional spent Hit Die, and your exhaustion level is reduced by 2 (rather than 1) when you finish the long rest.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9429,7 +9429,7 @@ "fields": { "name": "Headscarf of the Oasis", "desc": "This dun-colored, well-worn silk wrap is long enough to cover the face and head of a Medium or smaller humanoid, barely revealing the eyes. While wearing this headscarf over your mouth and nose, you have advantage on ability checks and saving throws against being blinded and against extended exposure to hot weather and hot environments. Pulling the headscarf on or off your mouth and nose requires an action.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9448,7 +9448,7 @@ "fields": { "name": "Healer Shabti", "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9467,7 +9467,7 @@ "fields": { "name": "Healthful Honeypot", "desc": "This clay honeypot weighs 10 pounds. A sweet aroma wafts constantly from it, and it produces enough honey to feed up to 12 humanoids. Eating the honey restores 1d8 hit points, and the honey provides enough nourishment to sustain a humanoid for one day. Once 12 doses of the honey have been consumed, the honeypot can't produce more honey until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9486,7 +9486,7 @@ "fields": { "name": "Heat Stone", "desc": "Prized by reptilian humanoids, this magic stone is warm to the touch. While carrying this stone, you are comfortable in and can tolerate temperatures as low as –20 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as –50 degrees Fahrenheit.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9505,7 +9505,7 @@ "fields": { "name": "Heliotrope Heart", "desc": "This polished orb of dark-green stone is latticed with pulsing crimson inclusions that resemble slowly dilating spatters of blood. While attuned to this orb, your hit point maximum can't be reduced by the bite of a vampire, vampire spawn, or other vampiric creature. In addition, while holding this orb, you can use an action to speak its command word and cast the 2nd-level version of the false life spell. Once used, this property can't be used again until the next dusk.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9524,7 +9524,7 @@ "fields": { "name": "Helm of the Slashing Fin", "desc": "While wearing this helm, you can use an action to speak its command word to gain the ability to breathe underwater, but you lose the ability to breathe air. You can speak its command word again or remove the helm as an action to end this effect.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9543,7 +9543,7 @@ "fields": { "name": "Hewer's Draught", "desc": "When you drink this potion, you have advantage on attack rolls made with weapons that deal piercing or slashing damage for 1 minute. This potion's translucent amber liquid glimmers when agitated.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9562,7 +9562,7 @@ "fields": { "name": "Hexen Blade", "desc": "The colorful surface of this sleek adamantine shortsword exhibits a perpetually shifting, iridescent sheen. You gain a +1 bonus to attack and damage rolls made with this magic weapon. The sword has 5 charges and regains 1d4 + 1 charges daily at dawn. While holding it, you can use an action and expend 1 or more of its charges to cast one of the following spells from it, using spell save DC 15: disguise self (1 charge), hypnotic pattern (3 charges), or mirror image (2 charges).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9581,7 +9581,7 @@ "fields": { "name": "Hidden Armament", "desc": "While holding this magic weapon, you can use an action to transform it into a tattoo on the palm of your hand. You can use a bonus action to transform the tattoo back into a weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9600,7 +9600,7 @@ "fields": { "name": "Hide Armor of the Leaf", "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9619,7 +9619,7 @@ "fields": { "name": "Hide Armor of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9638,7 +9638,7 @@ "fields": { "name": "Hide Armor of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9657,7 +9657,7 @@ "fields": { "name": "Hide Armor of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9676,7 +9676,7 @@ "fields": { "name": "Holy Verdant Bat Droppings", "desc": "This ceramic jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture with a pungent, muddy reek. The jar and its contents weigh 1/2 pound. Derro matriarchs and children gather a particular green bat guano to cure various afflictions, and the resulting glowing green paste can be spread on the skin to heal various conditions. As an action, one dose of the droppings can be swallowed or applied to the skin. The creature that receives it gains one of the following benefits: - Cured of paralysis or petrification\n- Reduces exhaustion level by one\n- Regains 50 hit points", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9695,7 +9695,7 @@ "fields": { "name": "Honey Lamp", "desc": "Honey lamps, made from glowing honey encased in beeswax, shed light as a lamp. Though the lamps are often found in the shape of a globe, the honey can also be sealed inside stone or wood recesses. If the wax that shields the honey is broken or smashed, the honey crystallizes in 7 days and ceases to glow. Eating the honey while it is still glowing grants darkvision out to a range of 30 feet for 1 week and 1 day.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9714,7 +9714,7 @@ "fields": { "name": "Honey of the Warped Wildflowers", "desc": "This spirit honey is made from wildflowers growing in an area warped by magic, such as the flowers growing at the base of a wizard's tower or growing in a magical wasteland. When you consume this honey, you have resistance to psychic damage, and you have advantage on Intelligence saving throws. In addition, you can use an action to warp reality around one creature you can see within 60 feet of you. The target must succeed on a DC 15 Intelligence saving throw or be bewildered for 1 minute. At the start of a bewildered creature's turn, it must roll a die. On an even result, the creature can act normally. On an odd result, the creature is incapacitated until the start of its next turn as it becomes disoriented by its surroundings and unable to fully determine what is real and what isn't. You can't warp the reality around another creature in this way again until you finish a long rest.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9733,7 +9733,7 @@ "fields": { "name": "Honey Trap", "desc": "This jar is made of beaten metal and engraved with honeybees. It has 7 charges, and it regains 1d6 + 1 expended charges daily at dawn. If you expend the jar's last charge, roll a d20. On a 1, the jar shatters and loses all its magical properties. While holding the jar, you can use an action to expend 1 charge to hurl a glob of honey at a target within 30 feet of you. Make a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the glob expands, and the creature is restrained. A creature restrained by the honey can use an action to make a DC 15 Strength (Athletics) or Dexterity (Acrobatics) check (target's choice). On a success, the creature is no longer restrained by the honey.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9752,7 +9752,7 @@ "fields": { "name": "Honeypot of Awakening", "desc": "If you place 1 pound of honey inside this pot, the honey transforms into an ochre jelly after 24 hours. The jelly remains in a dormant state within the pot until you dump it out. You can use an action to dump the jelly from the pot in an unoccupied space within 5 feet of you. Once dumped, the ochre jelly is hostile to all creatures, including you. Only one ochre jelly can occupy the pot at a time.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9771,7 +9771,7 @@ "fields": { "name": "Howling Rod", "desc": "This sturdy, iron rod is topped with the head of a howling wolf with red carnelians for eyes. The rod has 5 charges for the following properties, and it regains 1d4 + 1 expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9790,7 +9790,7 @@ "fields": { "name": "Humble Cudgel of Temperance", "desc": "This simple, polished club has a studded iron band around one end. When you attack a poisoned creature with this magic weapon, you have advantage on the attack roll. When you roll a 20 on an attack roll made with this weapon, the target becomes poisoned for 1 minute. If the target was already poisoned, it becomes incapacitated instead. The target can make a DC 13 Constitution saving throw at the end of each of its turns, ending the poisoned or incapacitated condition on itself on a success. Formerly a moneylender with a heart of stone and a small army of brutal thugs, Faustin the Drunkard awoke one day with a punishing hangover that seemed never-ending. He took this as a sign of punishment from the gods, not for his violence and thievery, but for his taste for the grape, in abundance. He decided all problems stemmed from the “demon” alcohol, and he became a cleric. No less brutal than before, he and his thugs targeted public houses, ale makers, and more. In his quest to rid the world of alcohol, he had the humble cudgel of temperance made and blessed with terrifying power. Now long since deceased, his simple, humble-appearing club continues to wreck havoc wherever it turns up.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9809,7 +9809,7 @@ "fields": { "name": "Hunter's Charm (+1)", "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9828,7 +9828,7 @@ "fields": { "name": "Hunter's Charm (+2)", "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9847,7 +9847,7 @@ "fields": { "name": "Hunter's Charm (+3)", "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9866,7 +9866,7 @@ "fields": { "name": "Iceblink Greatsword", "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9885,7 +9885,7 @@ "fields": { "name": "Iceblink Longsword", "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9904,7 +9904,7 @@ "fields": { "name": "Iceblink Rapier", "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9923,7 +9923,7 @@ "fields": { "name": "Iceblink Scimitar", "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9942,7 +9942,7 @@ "fields": { "name": "Iceblink Shortsword", "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9961,7 +9961,7 @@ "fields": { "name": "Impact Club", "desc": "This magic weapon has 3 charges and regains 1d3 expended charges daily at dawn. When you hit a target on your turn, you can take a bonus action to spend 1 charge and attempt to shove the target. The club grants you a +1 bonus on your Strength (Athletics) check to shove the target. If you roll a 20 on your attack roll with the club, you have advantage on your Strength (Athletics) check to shove the target, and you can push the target up to 10 feet away.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9980,7 +9980,7 @@ "fields": { "name": "Impaling Lance", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -9999,7 +9999,7 @@ "fields": { "name": "Impaling Morningstar", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10018,7 +10018,7 @@ "fields": { "name": "Impaling Pike", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10037,7 +10037,7 @@ "fields": { "name": "Impaling Rapier", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10056,7 +10056,7 @@ "fields": { "name": "Impaling Warpick", "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10075,7 +10075,7 @@ "fields": { "name": "Incense of Recovery", "desc": "This block of perfumed incense appears to be normal, nonmagical incense until lit. The incense burns for 1 hour and gives off a lavender scent, accompanied by pale mauve smoke that lightly obscures the area within 30 feet of it. Each spellcaster that takes a short rest in the smoke regains one expended spell slot at the end of the short rest.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10094,7 +10094,7 @@ "fields": { "name": "Interplanar Paint", "desc": "This black, tarry substance can be used to paint a single black doorway on a flat surface. A pot contains enough paint to create one doorway. While painting, you must concentrate on a plane of existence other than the one you currently occupy. If you are not interrupted, the doorway can be painted in 5 minutes. Once completed, the painting opens a two-way portal to the plane you imagined. The doorway is mirrored on the other plane, often appearing on a rocky face or the wall of a building. The doorway lasts for 1 week or until 5 gallons of water with flecks of silver worth at least 2,000 gp is applied to one side of the door.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10113,7 +10113,7 @@ "fields": { "name": "Ironskin Oil", "desc": "This grayish fluid is cool to the touch and slightly gritty. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature has resistance to piercing and slashing damage for 1 hour.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10132,7 +10132,7 @@ "fields": { "name": "Ivy Crown of Prophecy", "desc": "While wearing this ivy, filigreed crown, you can use an action to cast the divination spell from it. The crown can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10151,7 +10151,7 @@ "fields": { "name": "Jeweler's Anvil", "desc": "This small, foot-long anvil is engraved with images of jewelry in various stages of the crafting process. It weighs 10 pounds and can be mounted on a table or desk. You can use a bonus action to speak its command word and activate it, causing it to warm any nonferrous metals (including their alloys, such as brass or bronze). While you remain within 5 feet of the anvil, you can verbally command it to increase or decrease the temperature, allowing you to soften or melt any kind of nonferrous metal. While activated, the anvil remains warm to the touch, but its heat affects only nonferrous metal. You can use a bonus action to repeat the command word to deactivate the anvil. If you use the anvil while making any check with jeweler's tools or tinker's tools, you can double your proficiency bonus. If your proficiency bonus is already doubled, you have advantage on the check instead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10170,7 +10170,7 @@ "fields": { "name": "Jungle Mess Kit", "desc": "This crucial piece of survival gear guarantees safe use of the most basic of consumables. The hinged metal container acts as a cook pot and opens to reveal a cup, plate, and eating utensils. This kit renders any spoiled, rotten, or even naturally poisonous food or drink safe to consume. It can purify only mundane, natural effects. It has no effect on food that is magically spoiled, rotted, or poisoned, and it can't neutralize brewed poisons, venoms, or similarly manufactured toxins. Once it has purified 3 cubic feet of food and drink, it can't be used to do so again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10189,7 +10189,7 @@ "fields": { "name": "Justicar's Mask", "desc": "This stern-faced mask is crafted of silver. While wearing the mask, your gaze can root enemies to the spot. When a creature that can see the mask starts its turn within 30 feet of you, you can use a reaction to force it to make a DC 15 Wisdom saving throw, if you can see the creature and aren't incapacitated. On a failure, the creature is restrained. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Otherwise, the condition lasts until removed with the dispel magic spell or until you end it (no action required). Justicars are arbiters of law and order, operating independently of any official city guard or watch divisions. They are recognizable by their black, hooded robes, silver masks, and the rods they carry as weapons. These stern sentinels are overseen by The Magister, a powerful wizard of whom little is known other than their title. The Magister has made it their duty to oversee order in the city and executes their plans through the Justicars, giving them the Magister's mark, a signet ring, as a symbol of their authority. While some officers and members of the watch may be resentful of the Justicars' presence, many are grateful for their aid, especially in situations that could require magic. Justicar's are a small, elite group, typically acting as solo agents, though extremely dangerous situations bring them together in pairs or larger groups as needed. The Justicars are outfitted with three symbols of authority that are also imbued with power: their masks, rods, and rings. Each by itself is a useful item, but they are made stronger when worn together. The combined powers of this trinity of items make a Justicar a formidable force in the pursuit of law and order.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10208,7 +10208,7 @@ "fields": { "name": "Keffiyeh of Serendipitous Escape", "desc": "This checkered cotton headdress is indistinguishable from the mundane scarves worn by the desert nomads. As an action, you can remove the headdress, spread it open on the ground, and speak the command word. The keffiyeh transforms into a 3-foot by 5-foot carpet of flying which moves according to your spoken directions provided that you are within 30 feet of it. Speaking the command word a second time transforms the carpet back into a headdress again.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10227,7 +10227,7 @@ "fields": { "name": "Knockabout Billet", "desc": "This stout, oaken cudgel helps you knock your opponents to the ground or away from you. When you hit a creature with this magic weapon, you can shove the target as part of the same attack, using your attack roll in place of a Strength (Athletics) check. The weapon deals damage as normal, regardless of the result of the shove. This property of the club can be used no more than once per hour.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10246,7 +10246,7 @@ "fields": { "name": "Kobold Firework", "desc": "These small pouches and cylinders are filled with magical powders and reagents, and they each have a small fuse protruding from their closures. You can use an action to light a firework then throw it up to 30 feet. The firework activates immediately or on initiative count 20 of the following round, as detailed below. Once a firework’s effects end, it is destroyed. A firework can’t be lit underwater, and submersion in water destroys a firework. A lit firework can be destroyed early by dousing it with at least 1 gallon of water.\n Blinding Goblin-Cracker (Uncommon). This bright yellow firework releases a blinding flash of light on impact. Each creature within 15 feet of where the firework landed and that can see it must succeed on a DC 13 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n Deafening Kobold-Barker (Uncommon). This firework consists of several tiny green cylinders strung together and bursts with a loud sound on impact. Each creature within 15 feet of where the firework landed and that can hear it must succeed on a DC 13 Constitution saving throw or be deafened for 1 minute. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n Enchanting Elf-Fountain (Uncommon). This purple pyramidal firework produces a fascinating and colorful shower of sparks for 1 minute. The shower of sparks starts on the round after you throw it. While the firework showers sparks, each creature that enters or starts its turn within 30 feet of the firework must make a DC 13 Wisdom saving throw. On a failed save, the creature has disadvantage on Wisdom (Perception) checks made to perceive any creature or object other than the firework until the start of its next turn.\n Fairy Sparkler (Common). This narrow firework is decorated with stars and emits a bright, sparkling light for 1 minute. It starts emitting light on the round after you throw it. The firework sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the firework’s bright light.\n Priest Light (Rare). This silver cylinder firework produces a tall, argent flame and numerous golden sparks for 10 minutes. The flame appears on the round after you throw it. The firework sheds bright light in a 30-foot radius and dim light for an additional 30 feet. An undead creature can’t willingly enter the firework’s bright light by nonmagical means. If the undead creature tries to use teleportation or similar interplanar travel to do so, it must first succeed on a DC 15 Charisma saving throw. If an undead creature is in the bright light when it appears, the creature must succeed on a DC 15 Wisdom saving throw or be compelled to leave the bright light. It won’t move into any obviously deadly hazard, such as a fire or pit, but it will provoke opportunity attacks to move out of the bright light. In addition, each non-undead creature in the bright light can’t be charmed, frightened, or possessed by an undead creature.\n Red Dragon’s Breath (Very Rare). This firework is wrapped in gold leaf and inscribed with scarlet runes, and it erupts into a vertical column of fire on impact. Each creature in a 10-foot-radius, 60-foot-high cylinder centered on the point of impact must make a DC 17 Dexterity saving throw, taking 10d6 fire damage on a failed save, or half as much damage on a successful one.\n Snake Fountain (Rare). This short, wide cylinder is red, yellow, and black with a scale motif, and it produces snakes made of ash for 1 minute. It starts producing snakes on the round after you throw it. The firework creates 1 poisonous snake each round. The snakes are friendly to you and your companions. Roll initiative for the snakes as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don’t issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The snakes remain for 10 minutes, until you dismiss them as a bonus action, or until they are doused with at least 1 gallon of water.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10265,7 +10265,7 @@ "fields": { "name": "Kraken Clutch Ring", "desc": "This green copper ring is etched with the image of a kraken with splayed tentacles. The ring has 5 charges, and it regains 1d4 + 1 expended charges daily at dawn, as long as it was immersed in water for at least 1 hour since the previous dawn. If the ring has at least 1 charge, you have advantage on grapple checks. While wearing this ring, you can expend 1 or more of its charges to cast one of the following spells from it, using spell save DC 15: black tentacles (2 charges), call lightning (1 charge), or control weather (4 charges).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10284,7 +10284,7 @@ "fields": { "name": "Kyshaarth's Fang", "desc": "This dagger's blade is composed of black, bone-like material. Tales suggest the weapon is fashioned from a Voidling's (see Tome of Beasts) tendril barb. When you hit with an attack using this magic weapon, the target takes an extra 2d6 necrotic damage. If you are in dim light or darkness, you regain a number of hit points equal to half the necrotic damage dealt.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10303,7 +10303,7 @@ "fields": { "name": "Labrys of the Raging Bull (Battleaxe)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you wield the axe, you have advantage on Strength (Athletics) checks to shove a creature, and you can shove a creature up to two sizes larger than you.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10322,7 +10322,7 @@ "fields": { "name": "Labrys of the Raging Bull (Greataxe)", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you wield the axe, you have advantage on Strength (Athletics) checks to shove a creature, and you can shove a creature up to two sizes larger than you.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10341,7 +10341,7 @@ "fields": { "name": "Language Pyramid", "desc": "Script from dozens of languages flows across this sandstone pyramid's surface. While holding or carrying the pyramid, you understand the literal meaning of any spoken language that you hear. In addition, you understand any written language that you see, but you must be touching the surface on which the words are written. It takes 1 minute to read one page of text. The pyramid has 3 charges, and it regains 1d3 expended charges daily at dawn. You can use an action to expend 1 of its charges to imbue yourself with magical speech for 1 hour. For the duration, any creature that knows at least one language and that can hear you understands any words you speak. In addition, you can use an action to expend 1 of the pyramid's charges to imbue up to six creatures within 30 feet of you with magical understanding for 1 hour. For the duration, each target can understand any spoken language that it hears.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10360,7 +10360,7 @@ "fields": { "name": "Lantern of Auspex", "desc": "This elaborate lantern is covered in simple glyphs, and its glass panels are intricately etched. Two of the panels depict a robed woman holding out a single hand, while the other two panels depict the same woman with her face partially obscured by a hand of cards. The lantern's magic is activated when it is lit, which requires an action. Once lit, the lantern sheds bright light in a 30-foot radius and dim light for an additional 30 feet for 1 hour. You can use an action to open or close one of the glass panels on the lantern. If you open a panel, a vision of a random event that happened or that might happen plays out in the light's area. Closing a panel stops the vision. The visions are shown as nondescript smoky apparitions that play out silently in the lantern's light. At the GM's discretion, the vision might change to a different event each 1 minute that the panel remains open and the lantern lit. Once used, the lantern can't be used in this way again until 7 days have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10379,7 +10379,7 @@ "fields": { "name": "Lantern of Judgment", "desc": "This mithral and gold lantern is emblazoned with a sunburst symbol. While holding the lantern, you have advantage on Wisdom (Insight) and Intelligence (Investigation) checks. As a bonus action, you can speak a command word to cause one of the following effects: - The lantern casts bright light in a 60-foot cone and dim light for an additional 60 feet. - The lantern casts bright light in a 30-foot radius and dim light for an additional 30 feet. - The lantern sheds dim light in a 5-foot radius.\n- Douse the lantern's light. When you cause the lantern to shed bright light, you can speak an additional command word to cause the light to become sunlight. The sunlight lasts for 1 minute after which the lantern goes dark and can't be used again until the next dawn. During this time, the lantern can function as a standard hooded lantern if provided with oil.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10398,7 +10398,7 @@ "fields": { "name": "Lantern of Selective Illumination", "desc": "This brass lantern is fitted with round panels of crown glass and burns for 6 hours on one 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. During a short rest, you can choose up to three creatures to be magically linked by the lantern. When the lantern is lit, its light can be perceived only by you and those linked creatures. To anyone else, the lantern appears dark and provides no illumination.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10417,7 +10417,7 @@ "fields": { "name": "Larkmail", "desc": "While wearing this armor, you gain a +1 bonus to AC. The links of this mail have been stained to create the optical illusion that you are wearing a brown-and-russet feathered tunic. While you wear this armor, you have advantage on Charisma (Performance) checks made with an instrument. In addition, while playing an instrument, you can use a bonus action and choose any number of creatures within 30 feet of you that can hear your song. Each target must succeed on a DC 15 Charisma saving throw or be charmed by you for 1 minute. Once used, this property can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10436,7 +10436,7 @@ "fields": { "name": "Last Chance Quiver", "desc": "This quiver holds 20 arrows. However, when you draw and fire the last arrow from the quiver, it magically produces a 21st arrow. Once this arrow has been drawn and fired, the quiver doesn't produce another arrow until the quiver has been refilled and another 20 arrows have been drawn and fired.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10455,7 +10455,7 @@ "fields": { "name": "Leaf-Bladed Greatsword", "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10474,7 +10474,7 @@ "fields": { "name": "Leaf-Bladed Longsword", "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10493,7 +10493,7 @@ "fields": { "name": "Leaf-Bladed Rapier", "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10512,7 +10512,7 @@ "fields": { "name": "Leaf-Bladed Scimitar", "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10531,7 +10531,7 @@ "fields": { "name": "Leaf-Bladed Shortsword", "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10550,7 +10550,7 @@ "fields": { "name": "Least Scroll of Conjuring", "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10569,7 +10569,7 @@ "fields": { "name": "Leather Armor of the Leaf", "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10588,7 +10588,7 @@ "fields": { "name": "Leather Armor of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10607,7 +10607,7 @@ "fields": { "name": "Leather Armor of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10626,7 +10626,7 @@ "fields": { "name": "Leather Armor of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10645,7 +10645,7 @@ "fields": { "name": "Leonino Wings", "desc": "This cloak is decorated with the spotted white and brown pattern of a barn owl's wing feathers. While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of a Leoninos (see Creature Codex) owl-like feathered wings until you repeat the command word as an action. The wings give you a flying speed equal to your walking speed, and you have advantage on Dexterity (Stealth) checks made while flying in forests and urban settings. In addition, when you fly out of an enemy's reach, you don't provoke opportunity attacks. You can use the cloak to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land. The cloak regains 2 hours of flying capability for every 12 hours it isn't in use.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10664,7 +10664,7 @@ "fields": { "name": "Lesser Scroll of Conjuring", "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10683,7 +10683,7 @@ "fields": { "name": "Lifeblood Gear", "desc": "As an action, you can attach this tiny bronze gear to a pile of junk or other small collection of mundane objects and create a Tiny or Small mechanical servant. This servant uses the statistics of a beast with a challenge rating of 1/4 or lower, except it has immunity to poison damage and the poisoned condition, and it can't be charmed or become exhausted. If it participates in combat, the servant lasts for up to 5 rounds or until destroyed. If commanded to perform mundane tasks, such as fetching items, cleaning, or other similar task, it lasts for up to 5 hours or until destroyed. Once affixed to the servant, the gear pulsates like a beating heart. If the gear is removed, you lose control of the servant, which then attacks indiscriminately for up to 5 rounds or until destroyed. Once the duration expires or the servant is destroyed, the gear becomes a nonmagical gear.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10702,7 +10702,7 @@ "fields": { "name": "Lightning Rod", "desc": "This rod is made from the blackened wood of a lightning-struck tree and topped with a spike of twisted iron. It functions as a magic javelin that grants a +1 bonus to attack and damage rolls made with it. While holding it, you are immune to lightning damage, and each creature within 5 feet of you has resistance to lightning damage. The rod can hold up to 6 charges, but it has 0 charges when you first attune to it. Whenever you are subjected to lightning damage, the rod gains 1 charge. While the rod has 6 charges, you have resistance to lightning damage instead of immunity. The rod loses 1d6 charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10721,7 +10721,7 @@ "fields": { "name": "Linguist's Cap", "desc": "While wearing this simple hat, you have the ability to speak and read a single language. Each cap has a specific language associated with it, and the caps often come in styles or boast features unique to the cultures where their associated languages are most prominent. The GM chooses the language or determines it randomly from the lists of standard and exotic languages.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10740,7 +10740,7 @@ "fields": { "name": "Liquid Courage", "desc": "This magical cordial is deep red and smells strongly of fennel. You have advantage on the next saving throw against being frightened. The effect ends after you make such a saving throw or when 1 hour has passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10759,7 +10759,7 @@ "fields": { "name": "Liquid Shadow", "desc": "The contents of this bottle are inky black and seem to absorb the light. The dark liquid can cover a single Small or Medium creature. Applying the liquid takes 1 minute. For 1 hour, the coated creature has advantage on Dexterity (Stealth) checks. Alternately, you can use an action to hurl the bottle up to 20 feet, shattering it on impact. Magical darkness spreads from the point of impact to fill a 15-foot-radius sphere for 1 minute. This darkness works like the darkness spell.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10778,7 +10778,7 @@ "fields": { "name": "Living Juggernaut", "desc": "This broad, bulky suit of plate is adorned with large, blunt spikes and has curving bull horns affixed to its helm. While wearing this armor, you gain a +1 bonus to AC, and difficult terrain doesn't cost you extra movement.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10797,7 +10797,7 @@ "fields": { "name": "Living Stake", "desc": "Fashioned from mandrake root, this stake longs to taste the heart's blood of vampires. Make a melee attack against a vampire in range, treating the stake as an improvised weapon. On a hit, the stake attaches to a vampire's chest. At the end of the vampire's next turn, roots force their way into the vampire's heart, negating fast healing and preventing gaseous form. If the vampire is reduced to 0 hit points while the stake is attached to it, it is immobilized as if it had been staked. A creature can take its action to remove the stake by succeeding on a DC 17 Strength (Athletics) check. If it is removed from the vampire's chest, the stake is destroyed. The stake has no effect on targets other than vampires.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10816,7 +10816,7 @@ "fields": { "name": "Lockbreaker", "desc": "You can use this stiletto-bladed dagger to open locks by using an action and making a Strength check. The DC is 5 less than the DC to pick the lock (minimum DC 10). On a success, the lock is broken.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10835,7 +10835,7 @@ "fields": { "name": "Locket of Dragon Vitality", "desc": "Legends tell of a dragon whose hide was impenetrable and so tenacious that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon's name was lost, but its legacy remains. This magic amulet is one of two items that were crafted to hold its heart. An intricate engraving of a warrior's sword piercing a dragon's chest is detailed along the front of this untarnished silver locket. Within the locket is a clear crystal vial with a pulsing piece of a dragon's heart. The pulses become more frequent when you are close to death. Attuning to the locket requires you to mix your blood with the blood within the vial. The vial holds 3 charges of dragon blood that are automatically expended when you reach certain health thresholds. The locket regains 1 expended charge for each vial of dragon blood you place in the vial inside the locket up to a maximum of 3 charges. For the purpose of this locket, “dragon” refers to any creature with the dragon type, including drakes and wyverns. While wearing or carrying the locket, you gain the following effects: - When you reach 0 hit points, but do not die outright, the vial breaks and the dragon heart stops pulsing, rendering the item broken and irreparable. You immediately gain temporary hit points equal to your level + your Constitution modifier. If the locket has at least 1 charge of dragon blood, it does not break, but this effect can't be activated again until 3 days have passed. - When you are reduced to half of your maximum hit points, the locket expends 1 charge of dragon blood, and you become immune to any type of blood loss effect, such as the blood loss from a stirge's Blood Drain, for 1d4 + 1 hours. Any existing blood loss effects end immediately when this activates.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10854,7 +10854,7 @@ "fields": { "name": "Locket of Remembrance", "desc": "You can place a small keepsake of a creature, such as a miniature portrait, a lock of hair, or similar item, within the locket. The keepsake must be willingly given to you or must be from a creature personally connected to you, such as a relative or lover.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10873,7 +10873,7 @@ "fields": { "name": "Locksmith's Oil", "desc": "This shimmering oil can be applied to a lock. Applying the oil takes 1 minute. For 1 hour, any creature that makes a Dexterity check to pick the lock using thieves' tools rolls a d4 ( 1d4) and adds the number rolled to the check.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10892,7 +10892,7 @@ "fields": { "name": "Lodestone Caltrops", "desc": "This small gray pouch appears empty, though it weighs 3 pounds. Reaching inside the bag reveals dozens of small, metal balls. As an action, you can upend the bag and spread the metal balls to cover a square area that is 5 feet on a side. Any creature that enters the area while wearing metal armor or carrying at least one metal item must succeed on a DC 13 Strength saving throw or stop moving this turn. A creature that starts its turn in the area must succeed on a DC 13 Strength saving throw to leave the area. Alternatively, a creature in the area can drop or remove whatever metal items are on it and leave the area without needing to make a saving throw. The metal balls remain for 1 minute. Once the bag's contents have been emptied three times, the bag can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10911,7 +10911,7 @@ "fields": { "name": "Longbow of Accuracy", "desc": "The normal range of this bow is doubled, but its long range remains the same.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10930,7 +10930,7 @@ "fields": { "name": "Longsword of Fallen Saints", "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10949,7 +10949,7 @@ "fields": { "name": "Longsword of Volsung", "desc": "Legends tell of a dragon whose hide was impenetrable and so robust that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon’s name was lost, but its legacy remains. This sword is one of two items that were crafted to hold its heart. The black blade is adorned with glittering silver runes, and its guard has a shallow opening at the center with grooves connecting it to the first rune. The sword’s pommel is a large, clear crystal held fast by silver scales. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit a dragon with an attack using this sword, that creature takes an extra 1d6 slashing damage. Runes of Courage. You can’t be frightened while holding or carrying this sword. Fragment of Gram Awakened. You can use a bonus action to awaken a fragment of the spirit of the great wyrm that inhabits this blade. For 24 hours, you gain a +3 bonus to attack and damage rolls with this magic sword, and when you hit a dragon with an attack using this sword, that creature takes an extra 3d6 slashing damage. Once used, this property can’t be used again until 3 days have passed. If you have performed the Dragon Heart Ritual, you can use a bonus action to expend 2 of the sword’s charges to activate this property, and you can use this property as often as you want, as long as you have the charges to do so. Dragon Heart Ritual. If you are also attuned to the locket of dragon vitality (see page 152), you can drain 3 charges from the locket into the sword, turning the crystal pommel a deep red and rendering the locket broken and irreparable. Doing this requires a long rest where you also re-attune with the newly charged sword of volsung. Upon completing the Dragon Heart Ritual, the sword contains all remaining charges from the locket, and you gain the locket’s effects while holding or carrying the sword. When you are reduced to 0 hit points and trigger the locket’s temporary hit points, the sword isn’t destroyed, but you can’t trigger that effect again until 24 hours have passed. The sword regains all expended charges after you slay any dragon. For the purpose of this sword, “dragon” refers to any creature with the dragon type, including drakes and wyverns.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10968,7 +10968,7 @@ "fields": { "name": "Loom of Fate", "desc": "If you spend 1 hour weaving on this portable loom, roll a 1d20 and record the number rolled. You can replace any attack roll, saving throw, or ability check made by you or a creature that you can see with this roll. You must choose to do so before the roll. The loom can't be used this way again until the next dawn. Once you have used the loom 3 times, the fabric is complete, and the loom is no longer magical. The fabric becomes a shifting tapestry that represents the events where you used the loom's power to alter fate.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -10987,7 +10987,7 @@ "fields": { "name": "Lucky Charm of the Monkey King", "desc": "This tiny stone statue of a grinning monkey holds a leather loop in its paws, allowing the charm to hang from a belt or pouch. While attuned to this charm, you can use a bonus action to gain a +1 bonus on your next ability check, attack roll, or saving throw. Once used, the charm can't be used again until the next dawn. You can be attuned to only one lucky charm at a time.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11006,7 +11006,7 @@ "fields": { "name": "Lucky Coin", "desc": "This worn, clipped copper piece has 6 charges. You can use a reaction to expend 1 charge and gain a +1 bonus on your next ability check. The coin regains 1d6 charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the coin runs out of luck and becomes nonmagical.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11025,7 +11025,7 @@ "fields": { "name": "Lucky Eyepatch", "desc": "You gain a +1 bonus to saving throws while you wear this simple, black eyepatch. In addition, if you are missing the eye that the eyepatch covers and you roll a 1 on the d20 for a saving throw, you can reroll the die and must use the new roll. The eyepatch can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11044,7 +11044,7 @@ "fields": { "name": "Lupine Crown", "desc": "This grisly helm is made from the leather-reinforced skull and antlers of a deer with a fox skull and hide stretched over it. It is secured by a strap made from a magically preserved length of deer entrails. While wearing this helm, you gain a +1 bonus to AC, and you have advantage on Dexterity (Stealth) and Wisdom (Survival) checks.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11063,7 +11063,7 @@ "fields": { "name": "Luring Perfume", "desc": "This pungent perfume has a woodsy and slightly musky scent. As an action, you can splash or spray the contents of this vial on yourself or another creature within 5 feet of you. For 1 minute, the perfumed creature attracts nearby humanoids and beasts. Each humanoid and beast within 60 feet of the perfumed creature and that can smell the perfume must succeed on a DC 15 Wisdom saving throw or be charmed by the perfumed creature until the perfume fades or is washed off with at least 1 gallon of water. While charmed, a creature is incapacitated, and, if the creature is more than 5 feet away from the perfumed creature, it must move on its turn toward the perfumed creature by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11082,7 +11082,7 @@ "fields": { "name": "Magma Mantle", "desc": "This cracked black leather cloak is warm to the touch and faint ruddy light glows through the cracks. While wearing this cloak, you have resistance to cold damage. As an action, you can touch the brass clasp and speak the command word, which transforms the cloak into a flowing mantle of lava for 1 minute. During this time, you are unharmed by the intense heat, but any hostile creature within 5 feet of you that touches you or hits you with a melee attack takes 3d6 fire damage. In addition, for the duration, you suffer no damage from contact with lava, and you can burrow through lava at half your walking speed. The cloak can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11101,7 +11101,7 @@ "fields": { "name": "Maiden's Tears", "desc": "This fruity mead is the color of liquid gold and is rumored to be brewed with a tear from the goddess of bearfolk herself. When you drink this mead, you regenerate lost hit points for 1 minute. At the start of your turn, you regain 10 hit points if you have at least 1 hit point.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11120,7 +11120,7 @@ "fields": { "name": "Mail of the Sword Master", "desc": "While wearing this armor, the maximum Dexterity modifier you can add to determine your Armor Class is 4, instead of 2. While wearing this armor, if you are wielding a sword and no other weapons, you gain a +2 bonus to damage rolls with that sword.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11139,7 +11139,7 @@ "fields": { "name": "Manticore's Tail", "desc": "Ten spikes stick out of the head of this magic weapon. While holding the morningstar, you can fire one of the spikes as a ranged attack, using your Strength modifier for the attack and damage rolls. This attack has a normal range of 100 feet and a long range of 200 feet. On a hit, the spike deals 1d8 piercing damage. Once all of the weapon's spikes have been fired, the morningstar deals bludgeoning damage instead of the piercing damage normal for a morningstar until the next dawn, at which time the spikes regrow.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11158,7 +11158,7 @@ "fields": { "name": "Mantle of Blood Vengeance", "desc": "This red silk cloak has 3 charges and regains 1d3 expended charges daily at dawn. While wearing it, you can visit retribution on any creature that dares spill your blood. When you take piercing, slashing, or necrotic damage from a creature, you can use a reaction to expend 1 charge to turn your blood into a punishing spray. The creature that damaged you must make a DC 13 Dexterity saving throw, taking 2d10 acid damage on a failed save, or half as much damage on a successful one.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11177,7 +11177,7 @@ "fields": { "name": "Mantle of the Forest Lord", "desc": "Created by village elders for druidic scouts to better traverse and survey the perimeters of their lands, this cloak resembles thick oak bark but bends and flows like silk. While wearing this cloak, you can use an action to cast the tree stride spell on yourself at will, except trees need not be living in order to pass through them.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11196,7 +11196,7 @@ "fields": { "name": "Mantle of the Lion", "desc": "This splendid lion pelt is designed to be worn across the shoulders with the paws clasped at the base of the neck. While wearing this mantle, your speed increases by 10 feet, and the mantle's lion jaws are a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, the mantle's bite deals piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. In addition, if you move at least 20 feet straight toward a creature and then hit it with a melee attack on the same turn, that creature must succeed on a DC 15 Strength saving throw or be knocked prone. If a creature is knocked prone in this way, you can make an attack with the mantle's bite against the prone creature as a bonus action.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11215,7 +11215,7 @@ "fields": { "name": "Mantle of the Void", "desc": "While wearing this midnight-blue mantle covered in writhing runes, you gain a +1 bonus to saving throws, and if you succeed on a saving throw against a spell that allows you to make a saving throw to take only half the damage or suffer partial effects, you instead take no damage and suffer none of the spell's effects.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11234,7 +11234,7 @@ "fields": { "name": "Manual of Exercise", "desc": "This book contains exercises and techniques to better perform a specific physical task, and its words are charged with magic. If you spend 24 hours over a period of 3 days or fewer studying the tome and practicing its instructions, you gain proficiency in the Strength or Dexterity-based skill (such as Athletics or Stealth) associated with the book. The manual then loses its magic, but regains it in ten years.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11253,7 +11253,7 @@ "fields": { "name": "Manual of the Lesser Golem", "desc": "A manual of the lesser golem can be found in a book, on a scroll, etched into a piece of stone or metal, or scribed on any other medium that holds words, runes, and arcane inscriptions. Each manual of the lesser golem describes the materials needed and the process to be followed to create one type of lesser golem. The GM chooses the type of lesser golem detailed in the manual or determines the golem type randomly. To decipher and use the manual, you must be a spellcaster with at least one 2nd-level spell slot. You must also succeed on a DC 10 Intelligence (Arcana) check at the start of the first day of golem creation. If you fail the check, you must wait at least 24 hours to restart the creation process, and you take 3d6 psychic damage that can be regained only after a long rest. A lesser golem created via a manual of the lesser golem is not immortal. The magic that keeps the lesser golem intact gradually weakens until the golem finally falls apart. A lesser golem lasts exactly twice the number of days it takes to create it (see below) before losing its power. Once the golem is created, the manual is expended, the writing worthless and incapable of creating another. The statistics for each lesser golem can be found in the Creature Codex. | dice: 1d20 | Golem | Time | Cost |\n| ---------- | ---------------------- | ------- | --------- |\n| 1-7 | Lesser Hair Golem | 2 days | 100 gp |\n| 8-13 | Lesser Mud Golem | 5 days | 500 gp |\n| 14-17 | Lesser Glass Golem | 10 days | 2,000 gp |\n| 18-20 | Lesser Wood Golem | 15 days | 20,000 gp |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11272,7 +11272,7 @@ "fields": { "name": "Manual of Vine Golem", "desc": "This tome contains information and incantations necessary to make a Vine Golem (see Tome of Beasts 2). To decipher and use the manual, you must be a druid with at least two 3rd-level spell slots. A creature that can't use a manual of vine golems and attempts to read it takes 4d6 psychic damage. To create a vine golem, you must spend 20 days working without interruption with the manual at hand and resting no more than 8 hours per day. You must also use powders made from rare plants and crushed gems worth 30,000 gp to create the vine golem, all of which are consumed in the process. Once you finish creating the vine golem, the book decays into ash. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11291,7 +11291,7 @@ "fields": { "name": "Mapping Ink", "desc": "This viscous ink is typically found in 1d4 pots, and each pot contains 3 doses. You can use an action to pour one dose of the ink onto parchment, vellum, or cloth then fold the material. As long as the ink-stained material is folded and on your person, the ink captures your footsteps and surroundings on the material, mapping out your travels with great precision. You can unfold the material to pause the mapping and refold it to begin mapping again. Deduct the time the ink maps your travels in increments of 1 hour from the total mapping time. Each dose of ink can map your travels for 8 hours.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11310,7 +11310,7 @@ "fields": { "name": "Marvelous Clockwork Mallard", "desc": "This intricate clockwork recreation of a Tiny duck is fashioned of brass and tin. Its head is painted with green lacquer, the bill is plated in gold, and its eyes are small chips of black onyx. You can use an action to wind the mallard's key, and it springs to life, ready to follow your commands. While active, it has AC 13, 18 hit points, speed 25 ft., fly 40 ft., and swim 30 ft. If reduced to 0 hit points, it becomes nonfunctional and can't be activated again until 24 hours have passed, during which time it magically repairs itself. If damaged but not disabled, it regains any lost hit points at the next dawn. It has the following additional properties, and you choose which property to activate when you wind the mallard's key.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11329,7 +11329,7 @@ "fields": { "name": "Masher Basher", "desc": "A favored weapon of hill giants, this greatclub appears to be little more than a thick tree branch. When you hit a giant with this magic weapon, the giant takes an extra 1d8 bludgeoning damage. When you roll a 20 on an attack roll made with this weapon, the target is stunned until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11348,7 +11348,7 @@ "fields": { "name": "Mask of the Leaping Gazelle", "desc": "This painted wooden animal mask is adorned with a pair of gazelle horns. While wearing this mask, your walking speed increases by 10 feet, and your long jump is up to 25 feet with a 10-foot running start.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11367,7 +11367,7 @@ "fields": { "name": "Mask of the War Chief", "desc": "These fierce yet regal war masks are made by shamans in the cold northern mountains for their chieftains. Carved from the wood of alpine trees, each mask bears the image of a different creature native to those regions. Cave Bear (Uncommon). This mask is carved in the likeness of a roaring cave bear. While wearing it, you have advantage on Charisma (Intimidation) checks. In addition, you can use an action to summon a cave bear (use the statistics of a brown bear) to serve you in battle. The bear is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as attack your enemies. In the absence of such orders, the bear acts in a fashion appropriate to its nature. It vanishes at the next dawn or when it is reduced to 0 hit points. The mask can’t be used this way again until the next dawn. Behir (Very Rare). Carvings of stylized lightning decorate the closed, pointed snout of this blue, crocodilian mask. While wearing it, you have resistance to lightning damage. In addition, you can use an action to exhale lightning in a 30-foot line that is 5 feet wide Each creature in the line must make a DC 17 Dexterity saving throw, taking 3d10 lightning damage on a failed save, or half as much damage on a successful one. This mask can’t be used this way again until the next dawn. Mammoth (Uncommon). This mask is carved in the likeness of a mammoth’s head with a short trunk curling up between the eyes. While wearing it, you count as one size larger when determining your carrying capacity and the weight you can lift, drag, or push. In addition, you can use an action to trumpet like a mammoth. Choose up to six creatures within 30 feet of you and that can hear the trumpet. For 1 minute, each target is under the effect of the bane (if a hostile creature; save DC 13) or bless (if a friendly creature) spell (no concentration required). This mask can’t be used this way again until the next dawn. Winter Wolf (Rare). Carved in the likeness of a winter wolf, this white mask is cool to the touch. While wearing it, you have resistance to cold damage. In addition, you can use an action to exhale freezing air in a 15-foot cone. Each creature in the area must make a DC 15 Dexterity saving throw, taking 3d8 cold damage on a failed save, or half as much damage on a successful one. This mask can’t be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11386,7 +11386,7 @@ "fields": { "name": "Master Angler's Tackle", "desc": "This is a set of well-worn but finely crafted fishing gear. You have advantage on any Wisdom (Survival) checks made to catch fish or other seafood when using it. If you ever roll a 1 on your check while using the tackle, roll again. If the second roll is a 20, you still fail to catch anything edible, but you pull up something interesting or valuable—a bottle with a note in it, a fragment of an ancient tablet carved in ancient script, a mermaid in need of help, or similar. The GM decides what you pull up and its value, if it has one.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11405,7 +11405,7 @@ "fields": { "name": "Matryoshka Dolls", "desc": "This antique set of four nesting dolls is colorfully painted though a bit worn from the years. When attuning to this item, you must give each doll a name, which acts as a command word to activate its properties. You must be within 30 feet of a doll to activate it. The dolls have a combined total of 5 charges, and the dolls regain all expended charges daily at dawn. The largest doll is lined with a thin sheet of lead. A spell or other effect that can sense the presence of magic, such as detect magic, reveals only the transmutation magic of the largest doll, and not any of the dolls or other small items that may be contained within it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11424,7 +11424,7 @@ "fields": { "name": "Mayhem Mask", "desc": "This goat mask with long, curving horns is carved from dark wood and framed in goat's hair. While wearing this mask, you can use its horns to make unarmed strikes. When you hit with it, your horns deal piercing damage equal to 1d6 + your Strength modifier, instead of bludgeoning damage normal for an unarmed strike. If you moved at least 15 feet straight toward the target before you attacked with the horns, the attack deals piercing damage equal to 2d6 + your Strength modifier instead. In addition, you can gaze through the eyes of the mask at one target you can see within 30 feet of you. The target must succeed on a DC 17 Wisdom saving throw or be affected as though it failed a saving throw against the confusion spell. The confusion effect lasts for 1 minute. Once used, this property of the mask can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11443,7 +11443,7 @@ "fields": { "name": "Medal of Valor", "desc": "You are immune to the frightened condition while you wear this medal. If you are already frightened, the effect ends immediately when you put on the medal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11462,7 +11462,7 @@ "fields": { "name": "Memory Philter", "desc": "This swirling liquid is the collected memory of a mortal who willingly traded that memory away to the fey. When you touch the philter, you feel a flash of the emotion contained within. You can unstopper and pour out the philter as an action, unless otherwise specified. The philter's effects take place immediately, either on you or on a creature you can see within 30 feet (your choice). If the target is unwilling, it can make a DC 15 Wisdom saving throw to resist the effect of the philter. A creature affected by a philter experiences the memory contained in the vial. A memory philter can be used only once, but the vial can be reused to store a new memory. Storing a new memory requires a few herbs, a 10-minute ritual, and the sacrifice of a memory. The required sacrifice is detailed in each entry below.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11481,7 +11481,7 @@ "fields": { "name": "Mender's Mark", "desc": "This slender brooch is fashioned of silver and shaped in the image of an angel. You can use an action to attach this brooch to a creature, pinning it to clothing or otherwise affixing it to their person. When you cast a spell that restores hit points on the creature wearing the brooch, the spell has a range of 30 feet if its range is normally touch. Only you can transfer the brooch from one creature to another. The creature wearing the brooch can't pass it to another creature, but it can remove the brooch as an action.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11500,7 +11500,7 @@ "fields": { "name": "Meteoric Plate", "desc": "This plate armor was magically crafted from plates of interlocking stone. Tiny rubies inlaid in the chest create a glittering mosaic of flames. When you fall while wearing this armor, you can tuck your knees against your chest and curl into a ball. While falling in this way, flames form around your body. You take half the usual falling damage when you hit the ground, and fire explodes from your form in a 20-foot-radius sphere. Each creature in this area must make a DC 15 Dexterity saving throw. On a failed save, a target takes fire damage equal to the falling damage you took, or half as much on a successful saving throw. The fire spreads around corners and ignites flammable objects in the area that aren't being worn or carried.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11519,7 +11519,7 @@ "fields": { "name": "Mindshatter Bombard", "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11538,7 +11538,7 @@ "fields": { "name": "Minor Minstrel", "desc": "This four-inch high, painted, ceramic figurine animates and sings one song, typically about 3 minutes in length, when you set it down and speak the command word. The song is chosen by the figurine's original creator, and the figurine's form is typically reflective of the song's style. A red-nosed dwarf holding a mug sings a drinking song; a human figure in mourner's garb sings a dirge; a well-dressed elf with a harp sings an elven love song; or similar, though some creators find it amusing to create a figurine with a song counter to its form. If you pick up the figurine before the song finishes, it falls silent.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11557,7 +11557,7 @@ "fields": { "name": "Mirror of Eavesdropping", "desc": "This 8-inch diameter mirror is set in a delicate, silver frame. While holding this mirror within 30 feet of another mirror, you can spend 10 minutes magically connecting the mirror of eavesdropping to that other mirror. The mirror of eavesdropping can be connected to only one mirror at a time. While holding the mirror of eavesdropping within 1 mile of its connected mirror, you can use an action to speak its command word and activate it. While active, the mirror of eavesdropping displays visual information from the connected mirror, which has normal vision and darkvision out to 30 feet. The connected mirror's view is limited to the direction the mirror is facing, and it can be blocked by a solid barrier, such as furniture, a heavy cloth, or similar. You can use a bonus action to deactivate the mirror early. When the mirror has been active for a total of 10 minutes, you can't activate it again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11576,7 +11576,7 @@ "fields": { "name": "Mirrored Breastplate", "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11595,7 +11595,7 @@ "fields": { "name": "Mirrored Half Plate", "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11614,7 +11614,7 @@ "fields": { "name": "Mirrored Plate", "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11633,7 +11633,7 @@ "fields": { "name": "Mnemonic Fob", "desc": "This small bauble consists of a flat crescent, which binds a small disc that freely spins in its housing. Each side of the disc is intricately etched with an incomplete pillar and pyre. \nPillar of Fire. While holding this bauble, you can use an action to remove the disc, place it on the ground, and speak its command word to transform it into a 5-foot-tall flaming pillar of intricately carved stone. The pillar sheds bright light in a 20-foot radius and dim light for an additional 20 feet. It is warm to the touch, but it doesn’t burn. A second command word returns the pillar to its disc form. When the pillar has shed light for a total of 10 minutes, it returns to its disc form and can’t be transformed into a pillar again until the next dawn. \nRecall Magic. While holding this bauble, you can use an action to spin the disc and regain one expended 1st-level spell slot. Once used, this property can’t be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11652,7 +11652,7 @@ "fields": { "name": "Mock Box", "desc": "While you hold this small, square contraption, you can use an action to target a creature within 60 feet of you that can hear you. The target must succeed on a DC 13 Charisma saving throw or attack rolls against it have advantage until the start of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11671,7 +11671,7 @@ "fields": { "name": "Molten Hellfire Breastplate", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11690,7 +11690,7 @@ "fields": { "name": "Molten Hellfire Chain Mail", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11709,7 +11709,7 @@ "fields": { "name": "Molten Hellfire Chain Shirt", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11728,7 +11728,7 @@ "fields": { "name": "Molten Hellfire Half Plate", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11747,7 +11747,7 @@ "fields": { "name": "Molten Hellfire Plate", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11766,7 +11766,7 @@ "fields": { "name": "Molten Hellfire Ring Mail", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11785,7 +11785,7 @@ "fields": { "name": "Molten Hellfire Scale Mail", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11804,7 +11804,7 @@ "fields": { "name": "Molten Hellfire Splint", "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11823,7 +11823,7 @@ "fields": { "name": "Mongrelmaker's Handbook", "desc": "This thin volume holds a scant few dozen vellum pages between its mottled, scaled cover. The pages are scrawled with tight, efficient text which is broken up by outlandish pencil drawings of animals and birds combined together. With the rituals contained in this book, you can combine two or more animals into an adult hybrid of all creatures used. Each ritual requires the indicated amount of time, the indicated cost in mystic reagents, a live specimen of each type of creature to be combined, and enough floor space to draw a combining rune which encircles the component creatures. Once combined, the hybrid creature is a typical example of its new kind, though some aesthetic differences may be detectable. You can't control the creatures you create with this handbook, though the magic of the combining ritual prevents your creations from attacking you for the first 24 hours of their new lives. | Creature | Time | Cost | Component Creatures |\n| ---------------- | -------- | -------- | -------------------------------------------------------- |\n| Flying Snake | 10 mins | 10 gp | A poisonous snake and a Small or smaller bird of prey |\n| Leonino | 10 mins | 15 gp | A cat and a Small or smaller bird of prey |\n| Wolpertinger | 10 mins | 20 gp | A rabbit, a Small or smaller bird of prey, and a deer |\n| Carbuncle | 1 hour | 500 gp | A cat and a bird of paradise |\n| Cockatrice | 1 hour | 150 gp | A lizard and a domestic bird such as a chicken or turkey |\n| Death Dog | 1 hour | 100 gp | A dog and a rooster |\n| Dogmole | 1 hour | 175 gp | A dog and a mole |\n| Hippogriff | 1 hour | 200 gp | A horse and a giant eagle |\n| Bearmit crab | 6 hours | 600 gp | A brown bear and a giant crab |\n| Griffon | 6 hours | 600 gp | A lion and a giant eagle |\n| Pegasus | 6 hours | 1,000 gp | A white horse and a giant owl |\n| Manticore | 24 hours | 2,000 gp | A lion, a porcupine, and a giant bat |\n| Owlbear | 24 hours | 2,000 gp | A brown bear and a giant eagle |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11842,7 +11842,7 @@ "fields": { "name": "Monkey's Paw of Fortune", "desc": "This preserved monkey's paw hangs on a simple leather thong. This paw helps you alter your fate. If you are wearing this paw when you fail an attack roll, ability check, or saving throw, you can use your reaction to reroll the roll with a +10 bonus. You must take the second roll. When you use this property of the paw, one of its fingers curls tight to the palm. When all five fingers are curled tightly into a fist, the monkey's paw loses its magic.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11861,7 +11861,7 @@ "fields": { "name": "Moon Through the Trees", "desc": "This charm is comprised of six polished river stones bound into the shape of a star with glue made from the connective tissues of animals. The reflective surfaces of the stones shimmer with a magical iridescence. While you are within 20 feet of a living tree, you can use a bonus action to become invisible for 1 minute. While invisible, you can use a bonus action to become visible. If you do, each creature of your choice within 30 feet of you must succeed on a DC 15 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat this saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to this charm's blinding feature for the next 24 hours.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11880,7 +11880,7 @@ "fields": { "name": "Moonfield Lens", "desc": "This lens is rainbow-hued and protected by a sturdy leather case. It has 4 charges, and it regains 1d3 + 1 expended charges daily at dawn. As an action, you can hold the lens to your eye, speak its command word, and expend 2 charges to cause one of the following effects: - *** Find Loved One.** You know the precise location of one creature you love (platonic, familial, or romantic). This knowledge extends into other planes. - *** True Path.** For 1 hour, you automatically succeed on all Wisdom (Survival) checks to navigate in the wild. If you are underground, you automatically know the most direct route to reach the surface.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11899,7 +11899,7 @@ "fields": { "name": "Moonsteel Dagger", "desc": "The blade of this magic weapon seems to shine from within with a pale, white light. The weapon deals an extra 1d6 radiant damage to any creature it hits. If the creature is a shapechanger or any other creature not in its true form, it becomes frightened until the start of your next turn. At the start of its turn, a creature frightened in this way must succeed on a DC 13 Charisma saving throw or immediately return to its true form. For the purpose of this weapon, “shapechanger” refers to any creature with the Shapechanger trait.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11918,7 +11918,7 @@ "fields": { "name": "Moonsteel Rapier", "desc": "The blade of this magic weapon seems to shine from within with a pale, white light. The weapon deals an extra 1d6 radiant damage to any creature it hits. If the creature is a shapechanger or any other creature not in its true form, it becomes frightened until the start of your next turn. At the start of its turn, a creature frightened in this way must succeed on a DC 13 Charisma saving throw or immediately return to its true form. For the purpose of this weapon, “shapechanger” refers to any creature with the Shapechanger trait.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11937,7 +11937,7 @@ "fields": { "name": "Mordant Battleaxe", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11956,7 +11956,7 @@ "fields": { "name": "Mordant Glaive", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11975,7 +11975,7 @@ "fields": { "name": "Mordant Greataxe", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -11994,7 +11994,7 @@ "fields": { "name": "Mordant Greatsword", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12013,7 +12013,7 @@ "fields": { "name": "Mordant Halberd", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12032,7 +12032,7 @@ "fields": { "name": "Mordant Longsword", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12051,7 +12051,7 @@ "fields": { "name": "Mordant Scimitar", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12070,7 +12070,7 @@ "fields": { "name": "Mordant Shortsword", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12089,7 +12089,7 @@ "fields": { "name": "Mordant Sickle", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12108,7 +12108,7 @@ "fields": { "name": "Mordant Whip", "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12127,7 +12127,7 @@ "fields": { "name": "Mountain Hewer", "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. The massive head of this axe is made from chiseled stone lashed to its haft by thick rope and leather strands. Small chips of stone fall from its edge intermittently, though it shows no sign of damage or wear. You can use your action to speak the command word to cause small stones to float and swirl around the axe, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. The light remains until you use a bonus action to speak the command word again or until you drop or sheathe the axe. As a bonus action, choose a creature you can see. For 1 minute, that creature must succeed on a DC 15 Wisdom saving throw each time it is damaged by the axe or become frightened until the end of your next turn. Creatures of Large size or greater have disadvantage on this save. Once used, this property of the axe can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12146,7 +12146,7 @@ "fields": { "name": "Mountaineer's Hand Crossbow", "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12165,7 +12165,7 @@ "fields": { "name": "Mountaineer's Heavy Crossbow", "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12184,7 +12184,7 @@ "fields": { "name": "Mountaineer's Light Crossbow ", "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12203,7 +12203,7 @@ "fields": { "name": "Muffled Chain Mail", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12222,7 +12222,7 @@ "fields": { "name": "Muffled Half Plate", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12241,7 +12241,7 @@ "fields": { "name": "Muffled Padded", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12260,7 +12260,7 @@ "fields": { "name": "Muffled Plate", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12279,7 +12279,7 @@ "fields": { "name": "Muffled Ring Mail", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12298,7 +12298,7 @@ "fields": { "name": "Muffled Scale Mail", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12317,7 +12317,7 @@ "fields": { "name": "Muffled Splint", "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12336,7 +12336,7 @@ "fields": { "name": "Mug of Merry Drinking", "desc": "While you hold this broad, tall mug, any liquid placed inside it warms or cools to exactly the temperature you want it, though the mug can't freeze or boil the liquid. If you drop the mug or it is knocked from your hand, it always lands upright without spilling its contents.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12355,7 +12355,7 @@ "fields": { "name": "Murderous Bombard", "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12374,7 +12374,7 @@ "fields": { "name": "Mutineer's Blade", "desc": "This finely balanced scimitar has an elaborate brass hilt. You gain a +2 bonus on attack and damage rolls made with this magic weapon. You can use a bonus action to speak the scimitar's command word, causing the blade to shed bright green light in a 10-foot radius and dim light for an additional 10 feet. The light lasts until you use a bonus action to speak the command word again or until you drop or sheathe the scimitar. When you roll a 20 on an attack roll made with this weapon, the target is overcome with the desire for mutiny. On the target's next turn, it must make one attack against its nearest ally, then the effect ends, whether or not the attack was successful.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12393,7 +12393,7 @@ "fields": { "name": "Nameless Cults", "desc": "This dubious old book, bound in heavy leather with iron hasps, details the forbidden secrets and monstrous blasphemy of a multitude of nightmare cults that worship nameless and ghastly entities. It reads like the monologue of a maniac, illustrated with unsettling glyphs and filled with fluctuating moments of vagueness and clarity. The tome is a spellbook that contains the following spells, all of which can be found in the Mythos Magic Chapter of Deep Magic for 5th Edition: black goat's blessing, curse of Yig, ectoplasm, eldritch communion, emanation of Yoth, green decay, hunger of Leng, mind exchange, seed of destruction, semblance of dread, sign of Koth, sleep of the deep, summon eldritch servitor, summon avatar, unseen strangler, voorish sign, warp mind and matter, and yellow sign. At the GM's discretion, the tome can contain other spells similarly related to the Great Old Ones. While attuned to the book, you can reference it whenever you make an Intelligence check to recall information about any aspect of evil or the occult, such as lore about Great Old Ones, mythos creatures, or the cults that worship them. When doing so, your proficiency bonus for that check is doubled.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12412,7 +12412,7 @@ "fields": { "name": "Necromantic Ink", "desc": "The scent of death and decay hangs around this grey ink. It is typically found in 1d4 pots, and each pot contains 2 doses. If you spend 1 minute using one dose of the ink to draw symbols of death on a dead creature that has been dead no longer than 10 days, you can imbue the creature with the ink's magic. The creature rises 24 hours later as a skeleton or zombie (your choice), unless the creature is restored to life or its body is destroyed. You have no control over the undead creature.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12431,7 +12431,7 @@ "fields": { "name": "Neutralizing Bead", "desc": "This hard, gritty, flavorless bead can be dissolved in liquid or powdered between your fingers and sprinkled over food. Doing so neutralizes any poisons that may be present. If the food or liquid is poisoned, it takes on a brief reddish hue where it makes contact with the bead as the bead dissolves. Alternatively, you can chew and swallow the bead and gain the effects of an antitoxin.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12450,7 +12450,7 @@ "fields": { "name": "Nithing Pole", "desc": "This pole is crafted to exact retribution for an act of cowardice or dishonor. It's a sturdy wooden stave, 6 to 10 feet long, carved with runes that name the dishonored target of the pole's curse. The carved shaft is draped in horsehide, topped with a horse's skull, and placed where its target is expected to pass by. Typically, the pole is driven into the ground or wedged into a rocky cleft in a remote spot where the intended victim won't see it until it's too late. The pole is created to punish a specific person for a specific crime. The exact target must be named on the pole; a generic identity such as “the person who blinded Lars Gustafson” isn't precise enough. The moment the named target approaches within 333 feet, the pole casts bestow curse (with a range of 333 feet instead of touch) on the target. The DC for the target's Wisdom saving throw is 15. If the saving throw is successful, the pole recasts the spell at the end of each round until the saving throw fails, the target retreats out of range, or the pole is destroyed. Anyone other than the pole's creator who tries to destroy or knock down the pole is also targeted by a bestow curse spell, but only once. The effect of the curse is set when the pole is created, and the curse lasts 8 hours without requiring concentration. The pole becomes nonmagical once it has laid its curse on its intended target. An untriggered and forgotten nithing pole remains dangerous for centuries.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12469,7 +12469,7 @@ "fields": { "name": "Nullifier's Lexicon", "desc": "This book has a black leather cover with silver bindings and a silver front plate. Void Speech glyphs adorn the front plate, which is pitted and tarnished. The pages are thin sheets of corrupted brass and are inscribed with more blasphemous glyphs. While you are attuned to the lexicon, you can speak, read, and write Void Speech, and you know the crushing curse* cantrip. At the GM's discretion, you know the chill touch cantrip instead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12488,7 +12488,7 @@ "fields": { "name": "Oakwood Wand", "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains 1d3 expended charges daily at dawn. While holding it, you can expend 1 charge as an action to cast the detect poison and disease spell from it. When you cast a spell that deals cold damage while using this wand as your spellcasting focus, the spell deals 1 extra cold damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12507,7 +12507,7 @@ "fields": { "name": "Octopus Bracers", "desc": "These bronze bracers are etched with depictions of frolicking octopuses. While wearing these bracers, you can use an action to speak their command word and transform your arms into tentacles. You can use a bonus action to repeat the command word and return your arms to normal. The tentacles are natural melee weapons, which you can use to make unarmed strikes. Your reach extends by 5 feet while your arms are tentacles. When you hit with a tentacle, it deals bludgeoning damage equal to 1d8 + your Strength or Dexterity modifier (your choice). If you hit a creature of your size or smaller than you, it is grappled. Each tentacle can grapple only one target. While grappling a target with a tentacle, you can't attack other creatures with that tentacle. While your arms are tentacles, you can't wield weapons that require two hands, and you can't wield shields. In addition, you can't cast a spell that has a somatic component. When the bracers' property has been used for a total of 10 minutes, the magic ceases to function until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12526,7 +12526,7 @@ "fields": { "name": "Oculi of the Ancestor", "desc": "An intricately depicted replica of an eyeball, right down to the blood vessels and other fine details, this item is carved from sacred hardwoods by soothsayers using a specialized ceremonial blade handcrafted specifically for this purpose. When you use an action to place the orb within the eye socket of a skull, it telepathically shows you the last thing that was experienced by the creature before it died. This lasts for up to 1 minute and is limited to only what the creature saw or heard in the final moments of its life. The orb can't show you what the creature might have detected using another sense, such as tremorsense.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12545,7 +12545,7 @@ "fields": { "name": "Odd Bodkin", "desc": "This dagger has a twisted, jagged blade. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature other than a construct or an undead with this weapon, it loses 1d4 hit points at the start of each of its turns from a jagged wound. Each time you successfully hit the wounded target with this dagger, the damage dealt by the wound increases by 1d4. Any creature can take an action to stanch the wound with a successful DC 11 Wisdom (Medicine) check. The wound also closes if the wounded creature receives magical healing.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12564,7 +12564,7 @@ "fields": { "name": "Odorless Oil", "desc": "This odorless, colorless oil can cover a Medium or smaller object or creature, along with the equipment the creature is wearing or carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. For 1 hour, the affected target gives off no scent, can't be tracked by scent, and can't be detected with Wisdom (Perception) checks that rely on smell.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12583,7 +12583,7 @@ "fields": { "name": "Ogre's Pot", "desc": "This cauldron boils anything placed inside it, whether venison or timber, to a vaguely edible paste. A spoonful of the paste provides enough nourishment to sustain a creature for one day. As a bonus action, you can speak the pot's command word and force it to roll directly to you at a speed of 40 feet per round as long as you and the pot are on the same plane of existence. It follows the shortest possible path, stopping when it moves to within 5 feet of you, and it bowls over or knocks down any objects or creatures in its path. A creature in its path must succeed on a DC 13 Dexterity saving throw or take 2d6 bludgeoning damage and be knocked prone. When this magic pot comes into contact with an object or structure, it deals 4d6 bludgeoning damage. If the damage doesn't destroy or create a path through the object or structure, the pot continues to deal damage at the end of each round, carving a path through the obstacle.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12602,7 +12602,7 @@ "fields": { "name": "Oil of Concussion", "desc": "You can apply this thick, gray oil to one bludgeoning weapon or up to 5 pieces of bludgeoning ammunition. Applying the oil takes 1 minute. For 1 hour, any attack with the coated item scores a critical hit on a roll of 19 or 20.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12621,7 +12621,7 @@ "fields": { "name": "Oil of Defoliation", "desc": "Sometimes known as weedkiller oil, this greasy amber fluid contains the crushed husks of dozens of locusts. One vial of the oily substance can coat one weapon or up to 5 pieces of ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item deals an extra 1d6 necrotic damage to plants or plant creatures on a successful hit. The oil can also be applied directly to a willing, restrained, or immobile plant or plant creature. In this case, the substance deals 4d6 necrotic damage, which is enough to kill most ordinary plant life smaller than a large tree.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12640,7 +12640,7 @@ "fields": { "name": "Oil of Extreme Bludgeoning", "desc": "This viscous indigo-hued oil smells of iron. The oil can coat one bludgeoning weapon or up to 5 pieces of bludgeoning ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical, has a +1 bonus to attack and damage rolls, and deals an extra 1d4 force damage on a hit.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12659,7 +12659,7 @@ "fields": { "name": "Oil of Numbing", "desc": "This astringent-smelling oil stings slightly when applied to flesh, but the feeling quickly fades. The oil can cover a Medium or smaller creature (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. For 1 hour, the affected creature has advantage on Constitution saving throws to maintain its concentration on a spell when it takes damage, and it has advantage on ability checks and saving throws made to endure pain. However, the affected creature's flesh is slightly numbed and senseless, and it has disadvantage on ability checks that require fine motor skills or a sense of touch.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12678,7 +12678,7 @@ "fields": { "name": "Oil of Sharpening", "desc": "You can apply this fine, silvery oil to one piercing or slashing weapon or up to 5 pieces of piercing or slashing ammunition. Applying the oil takes 1 minute. For 1 hour, any attack with the coated item scores a critical hit on a roll of 19 or 20.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12697,7 +12697,7 @@ "fields": { "name": "Oni Mask", "desc": "This horned mask is fashioned into the fearsome likeness of a pale oni. The mask has 6 charges for the following properties. The mask regains 1d6 expended charges daily at dawn. Spells. While wearing the mask, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 15): charm person (1 charge), invisibility (2 charges), or sleep (1 charge). Change Shape. You can expend 3 charges as an action to magically polymorph into a Small or Medium humanoid, into a Large giant, or back into your true form. Other than your size, your statistics are the same in each form. The only equipment that is transformed is your weapon, which enlarges or shrinks so that it can be wielded in any form. If you die, you revert to your true form, and your weapon reverts to its normal size.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12716,7 +12716,7 @@ "fields": { "name": "Oracle Charm", "desc": "This small charm resembles a human finger bone engraved with runes and complicated knotwork patterns. As you contemplate a specific course of action that you plan to take within the next 30 minutes, you can use an action to snap the charm in half to gain the benefit of an augury spell. Once used, the charm is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12735,7 +12735,7 @@ "fields": { "name": "Orb of Enthralling Patterns", "desc": "This plain, glass orb shimmers with iridescence. While holding this orb, you can use an action to speak its command word, which causes it to levitate and emit multicolored light. Each creature other than you within 10 feet of the orb must succeed on a DC 13 Wisdom saving throw or look at only the orb for 1 minute. For the duration, a creature looking at the orb has disadvantage on Wisdom (Perception) checks to perceive anything that is not the orb. Creatures that failed the saving throw have no memory of what happened while they were looking at the orb. Once used, the orb can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12754,7 +12754,7 @@ "fields": { "name": "Orb of Obfuscation", "desc": "Originally fashioned in the laboratory of the archmage Lugax for his good natured but often roguish friend, Kennich, these spherical ceramic containers are the size of a large human fist. Arcane sigils decorate each orb, detailing its properties to those capable of reading the sigils. The magic-infused chemicals in each orb must be briefly exposed to air before being thrown to activate them. A metal rod sits in the cork of each orb, allowing you to quickly twist open the container before throwing it. Typically, 1d4 + 1 orbs of obfuscation are found together. You can use an action to activate and throw the orb up to 60 feet. The orb explodes on impact and is destroyed. The orb's effects are determined by its type. Orb of Obfuscation (Uncommon). This orb is a dark olive color with a stripe of bright blue paint encircling it. When activated, the orb releases an opaque grey gas and creates a 30-foot-radius sphere of this gas centered on the point where the orb landed. The sphere spreads around corners, and its area is heavily obscured. The magical gas also dampens sound. Each creature in the gas can hear only sounds originating within 5 feet of it, and creatures outside of the gas can’t hear sounds originating inside the gas. The gas lasts for 5 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. Explosive Orb of Obfuscation (Rare). This oblong orb has a putty grey color with a stripe of yellow paint encircling it. When activated, this orb releases the same opaque grey gas as the orb of obfuscation. In addition to the effects of that gas, this orb also releases a burst of caustic chemicals on impact. Each creature within a 15-foot radius of where the orb landed must make a DC 15 Dexterity saving throw, taking 4d4 acid damage on a failed save, or half as much damage on a successful one. If a creature fails this saving throw, the chemicals cling to it for 1 minute. At the end of each of its turns, the creature must succeed on a DC 15 Constitution saving throw or take 2d4 acid damage from the clinging chemicals. Any creature can take an action to remove the clinging chemicals with a successful DC 15 Wisdom (Medicine) check.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12773,7 +12773,7 @@ "fields": { "name": "Ouroboros Amulet", "desc": "Carved in the likeness of a serpent swallowing its own tail, this circular jade amulet is frequently worn by serpentfolk mystics and the worshippers of dark and forgotten gods. While wearing this amulet, you have advantage on saving throws against being charmed. In addition, you can use an action to cast the suggestion spell (save DC 13). The amulet can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12792,7 +12792,7 @@ "fields": { "name": "Pact Paper", "desc": "This smooth paper is like vellum but is prepared from dozens of scales cast off by a Pact Drake (see Creature Codex). A contract can be inked on this paper, and the paper limns all falsehoods on it with a fiery glow. A command word clears the paper, allowing for several drafts. Another command word locks the contract in place and leaves space for signatures. Creatures signing the contract are afterward bound by the contract with all other signatories alerted when one of the signatories breaks the contract. The creature breaking the contract must succeed on a DC 15 Charisma saving throw or become blinded, deafened, and stunned for 1d6 minutes. A creature can repeat the saving throw at the end of each of minute, ending the conditions on itself on a success. After the conditions end, the creature has disadvantage on saving throws until it finishes a long rest. Once a contract has been locked in place and signed, the paper can't be cleared. If the contract has a duration or stipulation for its end, the pact paper is destroyed when the contract ends, releasing all signatories from any further obligations and immediately ending any effects on them.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12811,7 +12811,7 @@ "fields": { "name": "Padded Armor of the Leaf", "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12830,7 +12830,7 @@ "fields": { "name": "Padded Armor of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12849,7 +12849,7 @@ "fields": { "name": "Padded Armor of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12868,7 +12868,7 @@ "fields": { "name": "Padded Armor of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12887,7 +12887,7 @@ "fields": { "name": "Parasol of Temperate Weather", "desc": "This fine, cloth-wrapped 2-foot-long pole unfolds into a parasol with a diameter of 3 feet, which is large enough to cover one Medium or smaller creature. While traveling under the parasol, you ignore the drawbacks of traveling in hot weather or a hot environment. Though it protects you from the sun's heat in the desert or geothermal heat in deep caverns, the parasol doesn't protect you from damage caused by super-heated environments or creatures, such as lava or an azer's Heated Body trait, or magic that deals fire damage, such as the fire bolt spell.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12906,7 +12906,7 @@ "fields": { "name": "Pavilion of Dreams", "desc": "This foot-long box is 6 inches wide and 6 inches deep. With 1 minute of work, the box's poles and multicolored silks can be unfolded into a pavilion expansive enough to sleep eight Medium or smaller creatures comfortably. The pavilion can stand in winds of up to 60 miles per hour without suffering damage or collapsing, and its interior remains comfortable and dry no matter the weather conditions or temperature outside. Creatures who sleep within the pavilion are immune to spells and other magical effects that would disrupt their sleep or negatively affect their dreams, such as the monstrous messenger version of the dream spell or a night hag's Nightmare Haunting. Creatures who take a long rest in the pavilion, and who sleep for at least half that time, have shared dreams of future events. Though unclear upon waking, these premonitions sit in the backs of the creatures' minds for the next 24 hours. Before the duration ends, a creature can call on the premonitions, expending them and immediately gaining one of the following benefits.\n- If you are surprised during combat, you can choose instead to not be surprised.\n- If you are not surprised at the beginning of combat, you have advantage on the initiative roll.\n- You have advantage on a single attack roll, ability check, or saving throw.\n- If you are adjacent to a creature that is attacked, you can use a reaction to interpose yourself between the creature and the attack. You become the new target of the attack.\n- When in combat, you can use a reaction to distract an enemy within 30 feet of you that attacks an ally you can see. If you do so, the enemy has disadvantage on the attack roll.\n- When an enemy uses the Disengage action, you can use a reaction to move up to your speed toward that enemy. Once used, the pavilion can't be used again until the next dusk.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12925,7 +12925,7 @@ "fields": { "name": "Pearl of Diving", "desc": "This white pearl shines iridescently in almost any light. While underwater and grasping the pearl, you have resistance to cold damage and to bludgeoning damage from nonmagical attacks.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12944,7 +12944,7 @@ "fields": { "name": "Periapt of Eldritch Knowledge", "desc": "This pendant consists of a hollow metal cylinder on a fine, silver chain and is capable of holding one scroll. When you put a spell scroll in the pendant, it is added to your list of known or prepared spells, but you must still expend a spell slot to cast it. If the spell has more powerful effects when cast at a higher level, you can expend a spell slot of a higher level to cast it. If you have metamagic options, you can apply any metamagic option you know to the spell, expending sorcery points as normal. When you cast the spell, the spell scroll isn't consumed. If the spell on the spell scroll isn't on your class's spell list, you can't cast it unless it is half the level of the highest spell level you can cast (minimum level 1). The pendant can hold only one scroll at a time, and you can remove or replace the spell scroll in the pendant as an action. When you remove or replace the spell scroll, you don't immediately regain spell slots expended on the scroll's spell. You regain expended spell slots as normal for your class.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12963,7 +12963,7 @@ "fields": { "name": "Periapt of Proof Against Lies", "desc": "A pendant fashioned from the claw or horn of a Pact Drake (see Creature Codex) is affixed to a thin gold chain. While you wear it, you know if you hear a lie, but this doesn't apply to evasive statements that remain within the boundaries of the truth. If you lie while wearing this pendant, you become poisoned for 10 minutes.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -12982,7 +12982,7 @@ "fields": { "name": "Pestilent Spear", "desc": "The head of this spear is deadly sharp, despite the rust and slimy residue on it that always accumulate no matter how well it is cleaned. When you hit a creature with this magic weapon, it must succeed on a DC 13 Constitution saving throw or contract the sewer plague disease.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13001,7 +13001,7 @@ "fields": { "name": "Phase Mirror", "desc": "Unlike other magic items, multiple creatures can attune to the phase mirror by touching it as part of the same short rest. A creature remains attuned to the mirror as long as it is on the same plane of existence as the mirror or until it chooses to end its attunement to the mirror during a short rest. Phase mirrors look almost identical to standard mirrors, but their surfaces are slightly clouded. These mirrors are found in a variety of sizes, from handheld to massive disks. The larger the mirror, the more power it can take in, and consequently, the more creatures it can affect. When it is created, a mirror is connected to a specific plane. The mirror draws in starlight and uses that energy to move between its current plane and its connected plane. While holding or touching a fully charged mirror, an attuned creature can use an action to speak the command word and activate the mirror. When activated, the mirror transports all creatures attuned to it to the mirror's connected plane or back to the Material Plane at a destination of the activating creature's choice. This effect works like the plane shift spell, except it transports only attuned creatures, regardless of their distance from each other, and the destination must be on the Material Plane or the mirror's connected plane. If the mirror is broken, its magic ends, and each attuned creature is trapped in whatever plane it occupies when the mirror breaks. Once activated, the mirror stays active for 24 hours and any attuned creature can use an action to transport all attuned creatures back and forth between the two planes. After these 24 hours have passed, the power drains from the mirror, and it can't be activated again until it is recharged. Each phase mirror has a different recharge time and limit to the number of creatures that can be attuned to it, depending on the mirror's size.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13020,7 +13020,7 @@ "fields": { "name": "Phidjetz Spinner", "desc": "This dart was crafted by the monk Phidjetz, a martial recluse obsessed with dragons. The spinner consists of a golden central disk with four metal dragon heads protruding symmetrically from its center point: one red, one white, one blue and one black. As an action, you can spin the disk using the pinch grip in its center. You choose a single target within 30 feet and make a ranged attack roll. The spinner then flies at the chosen target. Once airborne, each dragon head emits a blast of elemental energy appropriate to its type. When you hit a creature, determine which dragon head affects it by rolling a d4 on the following chart. | d4 | Effect |\n| --- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 1 | Red. The target takes 1d6 fire damage and combustible materials on the target ignite, doing 1d4 fire damage each turn until it is put out. |\n| 2 | White. The target takes 1d6 cold damage and is restrained until the start of your next turn. |\n| 3 | Blue. The target takes 1d6 lightning damage and is paralyzed until the start of your next turn. |\n| 4 | Black. The target takes 1d6 acid damage and is poisoned until the start of your next turn. | After the attack, the spinner flies up to 60 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13039,7 +13039,7 @@ "fields": { "name": "Philter of Luck", "desc": "When you drink this vibrant green, effervescent potion, you gain a finite amount of good fortune. Roll a d3 to determine where your fortune falls: ability checks (1), saving throws (2), or attack rolls (3). When you make a roll associated with your fortune, you can choose to tap into your good fortune and reroll the d20. This effect ends after you tap into your good fortune or when 1 hour has passed. | d3 | Use fortune for |\n| --- | --------------- |\n| 1 | ability checks |\n| 2 | saving throws |\n| 3 | attack rolls |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13058,7 +13058,7 @@ "fields": { "name": "Phoenix Ember", "desc": "This egg-shaped red and black stone is hot to the touch. An ancient, fossilized phoenix egg, the stone holds the burning essence of life and rebirth. While you are carrying the stone, you have resistance to fire damage. Fiery Rebirth. If you drop to 0 hit points while carrying the stone, you can drop to 1 hit point instead. If you do, a wave of flame bursts out from you, filling the area within 20 feet of you. Each of your enemies in the area must make a DC 17 Dexterity saving throw, taking 8d6 fire damage on a failed save, or half as much damage on a successful one. Once used, this property can’t be used again until the next dawn, and a small, burning crack appears in the egg’s surface. Spells. The stone has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: revivify (1 charge), raise dead (2 charges), or resurrection (3 charges, the spell functions as long as some bit of the target’s body remains, even just ashes or dust). If you expend the last charge, roll a d20. On a 1, the stone shatters into searing fragments, and a firebird (see Tome of Beasts) arises from the ashes. On any other roll, the stone regains 1d3 charges.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13077,7 +13077,7 @@ "fields": { "name": "Pick of Ice Breaking", "desc": "The metal head of this war pick is covered in tiny arcane runes. You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the war pick to attack a construct, elemental, fey, or other creature made almost entirely of ice or snow. When you roll a 20 on an attack roll made with this weapon against such a creature, the target takes an extra 2d8 piercing damage. When you hit an object made of ice or snow with this weapon, the object doesn't have a damage threshold when determining the damage you deal to it with this weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13096,7 +13096,7 @@ "fields": { "name": "Pipes of Madness", "desc": "You must be proficient with wind instruments to use these strange, pale ivory pipes. They have 5 charges. You can use an action to play them and expend 1 charge to emit a weird strain of alien music that is audible up to 600 feet away. Choose up to three creatures within 60 feet of you that can hear you play. Each target must succeed on a DC 15 Wisdom saving throw or be affected as if you had cast the confusion spell on it. The pipes regain 1d4 + 1 expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13115,7 +13115,7 @@ "fields": { "name": "Pistol of the Umbral Court", "desc": "This hand crossbow is made from coal-colored wood. Its limb is made from cold steel and boasts engravings of sharp teeth. The barrel is magically oiled and smells faintly of ash. The grip is made from rough leather. You gain a +2 bonus on attack and damage rolls made with this magic weapon. When you hit with an attack with this weapon, you can force the target of your attack to succeed on a DC 15 Strength saving throw or be pushed 5 feet away from you. The target takes damage, as normal, whether it was pushed away or not. As a bonus action, you can increase the distance creatures are pushed to 20 feet for 1 minute. If the creature strikes a solid object before the movement is complete, it takes 1d6 bludgeoning damage for every 10 feet traveled. Once used, this property of the crossbow can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13134,7 +13134,7 @@ "fields": { "name": "Plate of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13153,7 +13153,7 @@ "fields": { "name": "Plate of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13172,7 +13172,7 @@ "fields": { "name": "Plate of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13191,7 +13191,7 @@ "fields": { "name": "Plumb of the Elements", "desc": "This four-faceted lead weight is hung on a long leather strip, which can be wound around the haft or handle of any melee weapon. You can remove the plumb and transfer it to another weapon whenever you wish. Weapons with the plumb attached to it deal additional force damage equal to your proficiency bonus (up to a maximum of 3). As an action, you can activate the plumb to change this additional damage type to fire, cold, lightning, or back to force.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13210,7 +13210,7 @@ "fields": { "name": "Plunderer's Sea Chest", "desc": "This oak chest, measuring 3 feet by 5 feet by 3 feet, is secured with iron bands, which depict naval combat and scenes of piracy. The chest opens into an extradimensional space that can hold up to 3,500 cubic feet or 15,000 pounds of material. The chest always weighs 200 pounds, regardless of its contents. Placing an item in the sea chest follows the normal rules for interacting with objects. Retrieving an item from the chest requires you to use an action. When you open the chest to access a specific item, that item is always magically on top. If the chest is destroyed, its contents are lost forever, though an artifact that was inside always turns up again, somewhere. If a bag of holding, portable hole, or similar object is placed within the chest, that item and the contents of the chest are immediately destroyed, and the magic of the chest is disrupted for one day, after which the chest resumes functioning as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13229,7 +13229,7 @@ "fields": { "name": "Pocket Oasis", "desc": "When you unfold and throw this 5-foot by 5-foot square of black cloth into the air as an action, it creates a portal to an oasis hidden within an extra-dimensional space. A pool of shallow, fresh water fills the center of the oasis, and bountiful fruit and nut trees grow around the pool. The fruits and nuts from the trees provide enough nourishment for up to 10 Medium creatures. The air in the oasis is pure, cool, and even a little crisp, and the environment is free from harmful effects. When creatures enter the extra-dimensional space, they are protected from effects and creatures outside the oasis as if they were in the space created by a rope trick spell, and a vine dangles from the opening in place of a rope, allowing access to the oasis. The effect lasts for 24 hours or until all the creatures leave the extra-dimensional oasis, whichever occurs first. Any creatures still inside the oasis at the end of 24 hours are harmlessly ejected. Once used, the pocket oasis can't be used again for 24 hours.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13248,7 +13248,7 @@ "fields": { "name": "Pocket Spark", "desc": "What looks like a simple snuff box contains a magical, glowing ember. Though warm to the touch, the ember can be handled without damage. It can be used to ignite flammable materials quickly. Using it to light a torch, lantern, or anything else with abundant, exposed fuel takes a bonus action. Lighting any other fire takes an action. The ember is consumed when used. If the ember is consumed, the box creates a new ember at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13267,7 +13267,7 @@ "fields": { "name": "Poison Strand", "desc": "When you hit with an attack using this magic whip, the target takes an extra 2d4 poison damage. If you hold one end of the whip and use an action to speak its command word, the other end magically extends and darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 17 Dexterity saving throw or become restrained. While restrained, the target takes 2d4 poison damage at the start of each of its turns, and you can use an action to pull the target up to 20 feet toward you. If you would move the target into damaging terrain, such as lava or a pit, it can make a DC 17 Strength saving throw. On a success, the target isn't pulled toward you. You can't use the whip to make attacks while it is restraining a target, and if you release your end of the whip, the target is no longer restrained. The restrained target can use an action to make a DC 17 Strength (Athletics) or Dexterity (Acrobatics) check (target's choice). On a success, the target is no longer restrained by the whip. When the whip has restrained creatures for a total of 1 minute, you can't restrain a creature with the whip again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13286,7 +13286,7 @@ "fields": { "name": "Potent Cure-All", "desc": "The milky liquid in this bottle shimmers when agitated, as small, glittering particles swirl within it. When you drink this potion, it reduces your exhaustion level by one, removes any reduction to one of your ability scores, removes the blinded, deafened, paralyzed, and poisoned conditions, and cures you of any diseases currently afflicting you.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13305,7 +13305,7 @@ "fields": { "name": "Potion of Air Breathing", "desc": "This potion's pale blue fluid smells like salty air, and a seagull's feather floats in it. You can breathe air for 1 hour after drinking this potion. If you could already breathe air, this potion has no effect.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13324,7 +13324,7 @@ "fields": { "name": "Potion of Bad Taste", "desc": "This brown, sludgy potion tastes extremely foul. When you drink this potion, the taste of your flesh is altered to be unpalatable for 1 hour. During this time, if a creature hits you with a bite attack, it must succeed on a DC 10 Constitution saving throw or spend its next action gagging and retching. A creature with an Intelligence of 4 or lower avoids biting you again unless compelled or commanded by an outside force or if you attack it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13343,7 +13343,7 @@ "fields": { "name": "Potion of Bouncing", "desc": "A small, red sphere bobs up and down in the clear, effervescent liquid inside this bottle but disappears when the bottle is opened. When you drink this potion, your body becomes rubbery, and you are immune to falling damage for 1 hour. If you fall at least 10 feet, your body bounces back the same distance. As a reaction while falling, you can angle your fall and position your legs to redirect this distance. For example, if you fall 60 feet, you can redirect your bounce to propel you 30 feet up and 30 feet forward from the position where you landed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13362,7 +13362,7 @@ "fields": { "name": "Potion of Buoyancy", "desc": "When you drink this clear, effervescent liquid, your body becomes unnaturally buoyant for 1 hour. When you are immersed in water or other liquids, you rise to the surface (at a rate of up to 30 feet per round) to float and bob there. You have advantage on Strength (Athletics) checks made to swim or stay afloat in rough water, and you automatically succeed on such checks in calm waters.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13381,7 +13381,7 @@ "fields": { "name": "Potion of Dire Cleansing", "desc": "For 1 hour after drinking this potion, you have resistance to poison damage, and you have advantage on saving throws against being blinded, deafened, paralyzed, and poisoned. In addition, if you are poisoned, this potion neutralizes the poison. Known for its powerful, somewhat burning smell, this potion is difficult to drink, requiring a successful DC 13 Constitution saving throw to drink it. On a failure, you are poisoned for 10 minutes and don't gain the benefits of the potion.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13400,7 +13400,7 @@ "fields": { "name": "Potion of Ebbing Strength", "desc": "When you drink this potion, your Strength score changes to 25 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score. The recipe for this potion is flawed and infused with dangerous Void energies. When you drink this potion, you are also poisoned. While poisoned, you take 2d4 poison damage at the end of each minute. If you are reduced to 0 hit points while poisoned, you have disadvantage on death saving throws. This bubbling, pale blue potion is commonly used by the derro and is almost always paired with a Potion of Dire Cleansing or Holy Verdant Bat Droppings (see page 147). Warriors who use this potion without a method of removing the poison don't intend to return home from battle.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13419,7 +13419,7 @@ "fields": { "name": "Potion of Effulgence", "desc": "When you drink this potion, your skin glows with radiance, and you are filled with joy and bliss for 1 minute. You shed bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight. While glowing, you are blinded and have disadvantage on Dexterity (Stealth) checks to hide. If a creature with the Sunlight Sensitivity trait starts its turn in the bright light you shed, it takes 2d4 radiant damage. This potion's golden liquid sparkles with motes of sunlight.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13438,7 +13438,7 @@ "fields": { "name": "Potion of Empowering Truth", "desc": "A withered snake's tongue floats in the shimmering gold liquid within this crystalline vial. When you drink this potion, you regain one expended spell slot or one expended use of a class feature, such as Divine Sense, Rage, Wild Shape, or other feature with limited uses. Until you finish a long rest, you can't speak a deliberate lie. You are aware of this effect after drinking the potion. Your words can be evasive, as long as they remain within the boundaries of the truth.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13457,7 +13457,7 @@ "fields": { "name": "Potion of Freezing Fog", "desc": "After drinking this potion, you can use an action to exhale a cloud of icy fog in a 20-foot cube originating from you. The cloud spreads around corners, and its area is heavily obscured. It lasts for 1 minute or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. When a creature enters the cloud for the first time on a turn or starts its turn there, that creature must succeed on a DC 13 Constitution saving throw or take 2d4 cold damage. The effects of this potion end after you have exhaled one fog cloud or 1 hour has passed. This potion has a gray, cloudy appearance and swirls vigorously when shaken.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13476,7 +13476,7 @@ "fields": { "name": "Potion of Malleability", "desc": "The glass bottle holding this thick, red liquid is strangely pliable, and compresses in your hand under the slightest pressure while it still holds the magical liquid. When you drink this potion, your body becomes extremely flexible and adaptable to pressure. For 1 hour, you have resistance to bludgeoning damage, can squeeze through a space large enough for a creature two sizes smaller than you, and have advantage on Dexterity (Acrobatics) checks made to escape a grapple.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13495,7 +13495,7 @@ "fields": { "name": "Potion of Sand Form", "desc": "This potion's container holds a gritty liquid that moves and pours like water filled with fine particles of sand. When you drink this potion, you gain the effect of the gaseous form spell for 1 hour (no concentration required) or until you end the effect as a bonus action. While in this gaseous form, your appearance is that of a vortex of spiraling sand instead of a misty cloud. In addition, you have advantage on Dexterity (Stealth) checks while in a sandy environment, and, while motionless in a sandy environment, you are indistinguishable from an ordinary swirl of sand.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13514,7 +13514,7 @@ "fields": { "name": "Potion of Skating", "desc": "For 1 hour after you drink this potion, you can move across icy surfaces without needing to make an ability check, and difficult terrain composed of ice or snow doesn't cost you extra movement. This sparkling blue liquid contains tiny snowflakes that disappear when shaken.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13533,7 +13533,7 @@ "fields": { "name": "Potion of Transparency", "desc": "The liquid in this vial is clear like water, and it gives off a slight iridescent sheen when shaken or swirled. When you drink this potion, you and everything you are wearing and carrying turn transparent, but not completely invisible, for 10 minutes. During this time, you have advantage on Dexterity (Stealth) checks, and ranged attacks against you have disadvantage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13552,7 +13552,7 @@ "fields": { "name": "Potion of Worg Form", "desc": "Small flecks of brown hair are suspended in this clear, syrupy liquid. When you drink this potion, you transform into a worg for 1 hour. This works like the polymorph spell, but you retain your Intelligence, Wisdom, and Charisma scores. While in worg form, you can speak normally, and you can cast spells that have only verbal components. This transformation doesn't give you knowledge of the Goblin or Worg languages, and you are able to speak and understand those languages only if you knew them before the transformation.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13571,7 +13571,7 @@ "fields": { "name": "Prayer Mat", "desc": "This small rug is woven with intricate patterns that depict religious iconography. When you attune to it, the iconography and the mat's colors change to the iconography and colors most appropriate for your deity. If you spend 10 minutes praying to your deity while kneeling on this mat, you regain one expended use of Channel Divinity. The mat can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13590,7 +13590,7 @@ "fields": { "name": "Primal Doom of Anguish", "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13609,7 +13609,7 @@ "fields": { "name": "Primal Doom of Pain", "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13628,7 +13628,7 @@ "fields": { "name": "Primal Doom of Rage", "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13647,7 +13647,7 @@ "fields": { "name": "Primordial Scale", "desc": "This armor is fashioned from the scales of a great, subterranean beast shunned by the gods. While wearing it, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the armor increases its range by 60 feet, but you have disadvantage on attack rolls and Wisdom (Perception) checks that rely on sight when you are in sunlight. In addition, while wearing this armor, you have advantage on saving throws against spells cast by agents of the gods, such as celestials, fiends, clerics, and cultists.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13666,7 +13666,7 @@ "fields": { "name": "Prospecting Compass", "desc": "This battered, old compass has engravings of lumps of ore and natural crystalline minerals. While holding this compass, you can use an action to name a type of metal or stone. The compass points to the nearest naturally occurring source of that metal or stone for 1 hour or until you name a different type of metal or stone. The compass can point to cut gemstones, but it can't point to processed metals, such as iron swords or gold coins. The compass can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13685,7 +13685,7 @@ "fields": { "name": "Quick-Change Mirror", "desc": "This utilitarian, rectangular standing mirror measures 4 feet tall and 2 feet wide. Despite its plain appearance, the mirror allows creatures to quickly change outfits. While in front of the mirror, you can use an action to speak the mirror's command word to be clothed in an outfit stored in the mirror. The outfit you are currently wearing is stored in the mirror or falls to the floor at your feet (your choice). The mirror can hold up to 12 outfits. An outfit must be a set of clothing or armor. An outfit can include other wearable items, such as a belt with pouches, a backpack, headwear, or footwear, but it can't include weapons or other carried items unless the weapon or carried item is sheathed, stored in a backpack, pocket, or pouch, or similarly attached to the outfit. The extent of how many attachments an outfit can have before it is considered more than one outfit or it is no longer considered an outfit is at the GM's discretion. To store an outfit you are wearing in the mirror, you must spend at least 1 minute rotating slowly in front of the mirror and speak the mirror's second command word. You can use a bonus action to speak a third command word to cause the mirror to display the outfits it contains. When found, the mirror contains 1d10 + 2 outfits. If the mirror is destroyed, all outfits it contains fall in a heap at its base.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13704,7 +13704,7 @@ "fields": { "name": "Quill of Scribing", "desc": "This quill is fashioned from the feather of some exotic beast, often a giant eagle, griffon, or hippogriff. When you take an action to speak the command word, the quill animates, transcribing each word spoken by you, and up to three other creatures you designate, onto whatever material is placed before it until the command word is spoken again, or it has scribed 250 words. Once used, the quill can't be used again for 8 hours.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13723,7 +13723,7 @@ "fields": { "name": "Quilted Bridge", "desc": "A practiced hand sewed together a collection of cloth remnants from magical garb to make this colorful and warm blanket. You can use an action to unfold it and pour out three drops of wine in tribute to its maker. If you do so, the blanket becomes a 5-foot wide, 10-foot-long bridge as sturdy as steel. You can fold the bridge back up as an action.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13742,7 +13742,7 @@ "fields": { "name": "Radiance Bomb", "desc": "This small apple-sized globule is made from a highly reflective silver material and has a single, golden rune etched on it. Typically, 1d4 + 4 radiance bombs are found together. You can use an action to throw the globule up to 60 feet. The globule explodes on impact and is destroyed. Each creature within a 10-foot radius of where the globule landed must make a DC 13 Dexterity saving throw. On a failure, a creature takes 3d6 radiant damage and is blinded for 1 minute. On a success, a creature takes half the damage and isn't blinded. A blinded creature can make a DC 13 Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13761,7 +13761,7 @@ "fields": { "name": "Radiant Bracers", "desc": "These bronze bracers are engraved with the image of an ankh with outstretched wings. While wearing these bracers, you have resistance to necrotic damage, and you can use an action to speak the command word while crossing the bracers over your chest. If you do so, each undead that can see you within 30 feet of you must make a Wisdom saving throw. The DC is equal to 8 + your proficiency bonus + your Wisdom modifier. On a failure, an undead creature is turned for 1 minute or until it takes any damage. This feature works like the cleric's Turn Undead class feature, except it can't be used to destroy undead. The bracers can't be used to turn undead again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13780,7 +13780,7 @@ "fields": { "name": "Radiant Libram", "desc": "The gilded pages of this holy tome are bound between thin plates of moonstone crystal that emit a gentle incandescence. Aureate celestial runes adorn nearly every inch of its blessed surface. In addition, while you are attuned to the book, the spells written in it count as prepared spells and don't count against the number of spells you can prepare each day. You don't gain additional spell slots from this feature. The following spells are written in the book: beacon of hope, bless, calm emotions, commune, cure wounds, daylight, detect evil and good, divine favor, flame strike, gentle repose, guidance, guiding bolt, heroism, lesser restoration, light, produce flame, protection from evil and good, sacred flame, sanctuary, and spare the dying. A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action. Once used, this property of the book can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13799,7 +13799,7 @@ "fields": { "name": "Rain of Chaos", "desc": "This magic weapon imbues arrows fired from it with random energies. When you hit with an attack using this magic bow, the target takes an extra 1d6 damage. Roll a 1d8. The number rolled determines the damage type of the extra damage. | d8 | Damage Type |\n| --- | ----------- |\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Lightning |\n| 5 | Necrotic |\n| 6 | Poison |\n| 7 | Radiant |\n| 8 | Thunder |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13818,7 +13818,7 @@ "fields": { "name": "Rainbow Extract", "desc": "This thin, oily liquid shimmers with the colors of the spectrum. For 1 hour after drinking this potion, you can use an action to change the color of your hair, skin, eyes, or all three to any color or mixture of colors in any hue, pattern, or saturation you choose. You can change the colors as often as you want for the duration, but the color changes disappear at the end of the duration.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13837,7 +13837,7 @@ "fields": { "name": "Rapier of Fallen Saints", "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13856,7 +13856,7 @@ "fields": { "name": "Ravager's Axe", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. Any attack with this axe that hits a structure or an object that isn't being worn or carried is a critical hit. When you roll a 20 on an attack roll made with this axe, the target takes an extra 1d10 cold damage and 1d10 necrotic damage as the axe briefly becomes a rift to the Void.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13875,7 +13875,7 @@ "fields": { "name": "Recondite Shield", "desc": "While wearing this ring, you can use a bonus action to create a weightless, magic shield that shimmers with arcane energy. You must be proficient with shields to wield this semitranslucent shield, and you wield it in the same hand that wears the ring. The shield lasts for 1 hour or until you dismiss it (no action required). Once used, you can't use the ring in this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13894,7 +13894,7 @@ "fields": { "name": "Recording Book", "desc": "This book, which hosts a dormant Bookkeeper (see Creature Codex), appears to be a journal filled with empty pages. You can use an action to place the open book on a surface and speak its command word to activate it. It remains active until you use an action to speak the command word again. The book records all things said within 60 feet of it. It can distinguish voices and notes those as it records. The book can hold up to 12 hours' worth of conversation. You can use an action to speak a second command word to remove up to 1 hour of recordings in the book, while a third command word removes all the book's recordings. Any creature, other than you or targets you designate, that peruses the book finds the pages blank.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13913,7 +13913,7 @@ "fields": { "name": "Reef Splitter", "desc": "The head of this warhammer is constructed of undersea volcanic rock and etched with images of roaring flames and boiling water. You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon, the hammer erupts with magma, and the target takes an extra 4d6 fire damage. In addition, if the target is underwater, the water around it begins to boil with the heat of your blow, and each creature other than you within 5 feet of the target takes 2d6 fire damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13932,7 +13932,7 @@ "fields": { "name": "Relocation Cable", "desc": "This 60-foot length of fine wire cable weighs 2 pounds. If you hold one end of the cable and use an action to speak its command word, the other end plunges into the ground, burrowing through dirt, sand, snow, mud, ice, and similar material to emerge from the ground at a destination you can see up to its maximum length away. The cable can't burrow through solid rock. On the turn it is activated, you can use a bonus action to magically travel from one end of the cable to the other, appearing in an unoccupied space within 5 feet of the other end. On subsequent turns, any creature in contact with one end of the cable can use an action to appear in an unoccupied space within 5 feet of the other end of it. A creature magically traveling from one end of the cable to the other doesn't provoke opportunity attacks. You can retract the cable by using a bonus action to speak the command word a second time.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13951,7 +13951,7 @@ "fields": { "name": "Resolute Bracer", "desc": "This ornamental bracer features a reservoir sewn into its lining. As an action, you can fill the reservoir with a single potion or vial of liquid, such as a potion of healing or antitoxin. While attuned to this bracer, you can use a bonus action to speak the command word and absorb the liquid as if you had consumed it. Liquid stored in the bracer for longer than 8 hours evaporates.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13970,7 +13970,7 @@ "fields": { "name": "Retribution Armor", "desc": "Etchings of flames adorn this breastplate, which is wrapped in chains of red gold, silver, and black iron. While wearing this armor, you gain a +1 bonus to AC. In addition, if a creature scores a critical hit against you, you have advantage on any attacks against that creature until the end of your next turn or until you score a critical hit against that creature. - You have resistance to necrotic damage, and you are immune to poison damage. - You can't be charmed or poisoned, and you don't suffer from exhaustion.\n- You have darkvision out to a range of 60 feet.\n- You have advantage on saving throws against effects that turn undead.\n- You can use an action to sense the direction of your killer. This works like the locate creature spell, except you can sense only the creature that killed you. You rise as an undead only if your death was caused with intent; accidental deaths or deaths from unintended consequences (such as dying from a disease unintentionally passed to you) don't activate this property of the armor. You exist in this deathly state for up to 1 week per Hit Die or until you exact revenge on your killer, at which time your body crumbles to ash and you finally die. You can be restored to life only by means of a true resurrection or wish spell.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -13989,7 +13989,7 @@ "fields": { "name": "Revenant's Shawl", "desc": "This shawl is made of old raven feathers woven together with elk sinew and small bones. When you are reduced to 0 hit points while wearing the shawl, it explodes in a burst of freezing wind. Each creature within 10 feet of you must make a DC 13 Dexterity saving throw, taking 4d6 cold damage on a failed save, or half as much damage on a successful one. You then regain 4d6 hit points, and the shawl disintegrates into fine black powder.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14008,7 +14008,7 @@ "fields": { "name": "Rift Orb", "desc": "This orb is a sphere of obsidian 3 inches in diameter. When you speak the command word in Void Speech, you can throw the sphere as an action to a point within 60 feet. When the sphere reaches the point you choose or if it strikes a solid object on the way, it immediately stops and generates a tiny rift into the Void. The area within 20 feet of the rift orb becomes difficult terrain, and gravity begins drawing everything in the affected area toward the rift. Each creature in the area at the start of its turn, or when it enters the area for the first time on a turn, must succeed on a DC 15 Strength saving throw or be pulled 10 feet toward the rift. A creature that touches the rift takes 4d10 necrotic damage. Unattended objects in the area are pulled 10 feet toward the rift at the start of your turn. Nonmagical objects pulled into the rift are destroyed. The rift orb functions for 1 minute, after which time it becomes inert. It can't be used again until the following midnight.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14027,7 +14027,7 @@ "fields": { "name": "Ring Mail of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14046,7 +14046,7 @@ "fields": { "name": "Ring Mail of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14065,7 +14065,7 @@ "fields": { "name": "Ring Mail of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14084,7 +14084,7 @@ "fields": { "name": "Ring of Arcane Adjustment", "desc": "This stylized silver ring is favored by spellcasters accustomed to fighting creatures capable of shrugging off most spells. The ring has 3 charges and regains 1d3 expended charges daily at dawn. When you cast a spell of 5th level or lower that has only one target and the target succeeds on the saving throw, you can use a reaction and expend 1 charge from the ring to change the spell's target to a new target within the spell's range. The new target is then affected by the spell, but the new target has advantage on the saving throw. You can't move the spell more than once this way, even if the new target succeeds on the saving throw. You can't move a spell that affects an area, that has multiple targets, that requires an attack roll, or that allows the target to make a saving throw to reduce, but not prevent, the effects of the spell, such as blight or feeblemind.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14103,7 +14103,7 @@ "fields": { "name": "Ring of Bravado", "desc": "This polished brass ring has 3 charges. While wearing the ring, you are inspired to daring acts that risk life and limb, especially if such acts would impress or intimidate others who witness them. When you choose a course of action that could result in serious harm or possible death (your GM has final say in if an action qualifies), you can expend 1 of the ring's charges to roll a d10 and add the number rolled to any d20 roll you make to achieve success or avoid damage, such as a Strength (Athletics) check to scale a sheer cliff and avoid falling or a Dexterity saving throw made to run through a hallway filled with swinging blades. The ring regains all expended charges daily at dawn. In addition, if you fail on a roll boosted by the ring, and you failed the roll by only 1, the ring regains 1 expended charge, as its magic recognizes a valiant effort.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14122,7 +14122,7 @@ "fields": { "name": "Ring of Deceiver's Warning", "desc": "This copper ring is set with a round stone of blue quartz. While you wear the ring, the stone's color changes to red if a shapechanger comes within 30 feet of you. For the purpose of this ring, “shapechanger” refers to any creature with the Shapechanger trait.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14141,7 +14141,7 @@ "fields": { "name": "Ring of Dragon's Discernment", "desc": "A large, orange cat's eye gem is held in the fittings of this ornate silver ring, looking as if it is grasped by scaled talons. While wearing this ring, your senses are sharpened. You have advantage on Intelligence (Investigation) and Wisdom (Perception) checks, and you can take the Search action as a bonus action. In addition, you are able to discern the value of any object made of precious metals or minerals or rare materials by handling it for 1 round.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14160,7 +14160,7 @@ "fields": { "name": "Ring of Featherweight Weapons", "desc": "If you normally have disadvantage on attack rolls made with weapons with the Heavy property due to your size, you don't have disadvantage on those attack rolls while you wear this ring. This ring has no effect on you if you are Medium or larger or if you don't normally have disadvantage on attack rolls with heavy weapons.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14179,7 +14179,7 @@ "fields": { "name": "Ring of Giant Mingling", "desc": "While wearing this ring, your size changes to match the size of those around you. If you are a Large creature and start your turn within 100 feet of four or more Medium creatures, this ring makes you Medium. Similarly, if you are a Medium creature and start your turn within 100 feet of four or more Large creatures, this ring makes you Large. These effects work like the effects of the enlarge/reduce spell, except they persist as long as you wear the ring and satisfy the conditions.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14198,7 +14198,7 @@ "fields": { "name": "Ring of Hoarded Life", "desc": "This ring stores hit points sacrificed to it, holding them until the attuned wearer uses them. The ring can store up to 30 hit points at a time. When found, it contains 2d10 stored hit points. While wearing this ring, you can use an action to spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. Your hit point maximum is reduced by the total, and the ring stores the total, up to 30 hit points. This hit point maximum reduction can't be removed with the greater restoration spell or similar magic and lasts as long as hit points remain stored in the ring. You can't store hit points in the ring if you don't have blood. When hit points are stored in the ring, you can cause one of the following effects: - You can use a bonus action to remove stored hit points from the ring and regain that number of hit points.\n- You can use an action to remove stored hit points from the ring while touching the ring to a creature. If you do so, the creature regains hit points equal to the amount of hit points you removed from the ring.\n- When you are reduced to 0 hit points and are not killed outright, you can use a reaction to empty the ring of stored hit points and regain hit points equal to that amount. Hit Dice spent on this ring's features can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14217,7 +14217,7 @@ "fields": { "name": "Ring of Imperious Command", "desc": "Embossed in gold on this heavy iron ring is the image of a crown. The ring has 3 charges and regains 1d3 expended charges daily at dawn. While wearing this ring, you have advantage on Charisma (Intimidation) checks, and you can project your voice up to 300 feet with perfect clarity. In addition, you can use an action and expend 1 of the ring's charges to command a creature you can see within 30 feet of you to kneel before you. The target must make a DC 15 Charisma saving throw. On a failure, the target spends its next turn moving toward you by the shortest and most direct route then falls prone and ends its turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14236,7 +14236,7 @@ "fields": { "name": "Ring of Light's Comfort", "desc": "A disc of white chalcedony sits within an encompassing band of black onyx, set into fittings on this pewter ring. While wearing this ring in dim light or darkness, you can use a bonus action to speak the ring's command word, causing it to shed bright light in a 30-foot radius and dim light for an additional 30 feet. The ring automatically sheds this light if you start your turn within 60 feet of an undead or lycanthrope. The light lasts until you use a bonus action to repeat the command word. In addition, you can't be charmed, frightened, or possessed by undead or lycanthropes.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14255,7 +14255,7 @@ "fields": { "name": "Ring of Night's Solace", "desc": "A disc of black onyx sits within an encompassing band of white chalcedony, set into fittings on this pewter ring. While wearing this ring in bright light, you are draped in a comforting cloak of shadow, protecting you from the harshest glare. If you have the Sunlight Sensitivity trait or a similar trait that causes you to have disadvantage on attack rolls or Wisdom (Perception) checks while in bright light or sunlight, you don't suffer those effects while wearing this ring. In addition, you have advantage on saving throws against being blinded.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14274,7 +14274,7 @@ "fields": { "name": "Ring of Powerful Summons", "desc": "When you summon a creature with a conjuration spell while wearing this ring, the creature gains a +1 bonus to attack and damage rolls and 1d4 + 4 temporary hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14293,7 +14293,7 @@ "fields": { "name": "Ring of Remembrance", "desc": "This ring is a sturdy piece of string, tied at the ends to form a circle. While wearing it, you can use an action to invoke its power by twisting it on your finger. If you do so, you have advantage on the next Intelligence check you make to recall information. The ring can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14312,7 +14312,7 @@ "fields": { "name": "Ring of Sealing", "desc": "This ring appears to be made of golden chain links. It has 3 charges and regains 1d3 expended charges daily at dawn. When you hit a creature with a melee attack while wearing this ring, you can use a bonus action and expend 1 of the ring's charges to cause mystical golden chains to spring from the ground and wrap around the creature. The target must make a DC 17 Wisdom saving throw. On a failure, the magical chains hold the target firmly in place, and it is restrained. The target can't move or be moved by any means. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. However, if the target fails three consecutive saving throws, the chains bind the target permanently. A successful dispel magic (DC 17) cast on the chains destroys them.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14331,7 +14331,7 @@ "fields": { "name": "Ring of Shadows", "desc": "While wearing this ebony ring in dim light or darkness, you have advantage on Dexterity (Stealth) checks. When you roll a 20 on a Dexterity (Stealth) check, the ring's magic ceases to function until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14350,7 +14350,7 @@ "fields": { "name": "Ring of Small Mercies", "desc": "While wearing this plain, beaten pewter ring, you can use an action to cast the spare the dying spell from it at will.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14369,7 +14369,7 @@ "fields": { "name": "Ring of Stored Vitality", "desc": "While you are attuned to and wearing this ring of polished, white chalcedony, you can feed some of your vitality into the ring to charge it. You can use an action to suffer 1 level of exhaustion. For each level of exhaustion you suffer, the ring regains 1 charge. The ring can store up to 3 charges. As the ring increases in charges, its color reddens, becoming a deep red when it has 3 charges. Your level of exhaustion can be reduced by normal means. If you already suffer from 3 or more levels of exhaustion, you can't suffer another level of exhaustion to restore a charge to the ring. While wearing the ring and suffering exhaustion, you can use an action to expend 1 or more charges from the ring to reduce your exhaustion level. Your exhaustion level is reduced by 1 for each charge you expend.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14388,7 +14388,7 @@ "fields": { "name": "Ring of the Dolphin", "desc": "This gold ring bears a jade carving in the shape of a leaping dolphin. While wearing this ring, you have a swimming speed of 40 feet. In addition, you can hold your breath for twice as long while underwater.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14407,7 +14407,7 @@ "fields": { "name": "Ring of the Frog", "desc": "A pale chrysoprase cut into the shape of a frog is the centerpiece of this tarnished copper ring. While wearing this ring, you have a swimming speed of 20 feet, and you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14426,7 +14426,7 @@ "fields": { "name": "Ring of the Frost Knight", "desc": "This white gold ring is covered in a thin sheet of ice and always feels cold to the touch. The ring has 3 charges and regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 charge to surround yourself in a suit of enchanted ice that resembles plate armor. For 1 hour, your AC can't be less than 16, regardless of what kind of armor you are wearing, and you have resistance to cold damage. The icy armor melts, ending the effect early, if you take 20 fire damage or more.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14445,7 +14445,7 @@ "fields": { "name": "Ring of the Grove's Guardian", "desc": "This pale gold ring looks as though made of delicately braided vines wrapped around a small, rough obsidian stone. While wearing this ring, you have advantage on Wisdom (Perception) checks. You can use an action to speak the ring's command word to activate it and draw upon the vitality of the grove to which the ring is bound. You regain 2d10 hit points. Once used, this property can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14464,7 +14464,7 @@ "fields": { "name": "Ring of the Jarl", "desc": "This thick band of hammered yellow gold is warm to the touch even in the coldest of climes. While you wear it, you have resistance to cold damage. If you are also wearing boots of the winterlands, you are immune to cold damage instead. Bolstering Shout. When you roll for initiative while wearing this ring, you can use a reaction to shout a war cry, bolstering your allies. Each friendly creature within 30 feet of you and that can hear you gains a +2 bonus on its initiative roll, and it has advantage on attack rolls for a number of rounds equal to your Charisma modifier (minimum of 1 round). Once used, this property of the ring can’t be used again until the next dawn. Wergild. While wearing this ring, you can use an action to create a nonmagical duplicate of the ring that is worth 100 gp. You can bestow this ring upon another as a gift. The ring can’t be used for common barter or trade, but it can be used for debts and payment of a warlike nature. You can give this ring to a subordinate warrior in your service or to someone to whom you owe a blood-debt, as a weregild in lieu of further fighting. You can create up to 3 of these rings each week. Rings that are not gifted within 24 hours of their creation vanish again.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14483,7 +14483,7 @@ "fields": { "name": "Ring of the Water Dancer", "desc": "This thin braided purple ring is fashioned from a single piece of coral. While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground. In addition, while walking atop any liquid, your movement speed increases by 10 feet and you gain a +1 bonus to your AC.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14502,7 +14502,7 @@ "fields": { "name": "Ring of Ursa", "desc": "This wooden ring is set with a strip of fossilized honey. While wearing this ring, you gain the following benefits: - Your Strength score increases by 2, to a maximum of 20.\n- You have advantage on Charisma (Persuasion) checks made to interact with bearfolk. In addition, while attuned to the ring, your hair grows thick and abundant. Your facial features grow more snout-like, and your teeth elongate. If you aren't a bearfolk, you gain the following benefits while wearing the ring:\n- You can now make a bite attack as an unarmed strike. When you hit with it, your bite deals piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. - You gain a powerful build and count as one size larger when determining your carrying capacity and the weight you can push, drag, or lift.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14521,7 +14521,7 @@ "fields": { "name": "River Token", "desc": "This small pebble measures 3/4 of an inch in diameter and weighs an ounce. The pebbles are often shaped like salmon, river clams, or iridescent river rocks. Typically, 1d4 + 4 river tokens are found together. The token gives off a distinct shine in sunlight and radiates a scent of fresh, roiling water. It is sturdy but crumbles easily if crushed. As an action, you can destroy the token by crushing it and sprinkling the remains into a river, calming the waters to a gentle current and soothing nearby water-dwelling creatures for 1 hour. Water-dwelling beasts in the river with an Intelligence of 3 or lower are soothed and indifferent toward passing humanoids for the duration. The token's magic soothes but doesn't fully suppress the hostilities of all other water-dwelling creatures. For the duration, each other water-dwelling creature must succeed on a DC 15 Wisdom saving throw to attack or take hostile actions toward passing humanoids. The token's soothing magic ends on a creature if that creature is attacked.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14540,7 +14540,7 @@ "fields": { "name": "Riverine Blade", "desc": "The crossguard of this distinctive sword depicts a stylized Garroter Crab (see Tome of Beasts) with claws extended, and the pommel is set with a smooth, spherical, blue-black river rock. You gain a +2 bonus to attack and damage rolls made with this magic weapon. While on a boat or while standing in any depth of water, you have advantage on Dexterity checks and saving throws.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14559,7 +14559,7 @@ "fields": { "name": "Rod of Blade Bending", "desc": "This simple iron rod functions as a magic mace that grants a +1 bonus to attack and damage rolls made with it. Blade Bend. While holding the rod, you can use an action to activate it, creating a magical field around you for 10 minutes. When a creature attacks you with a melee weapon that deals piercing or slashing damage while the field is active, it must make a DC 15 Wisdom saving throw. On a failure, the creature’s attack misses. On a success, the creature’s attack hits you, but you have resistance to any piercing or slashing damage dealt by the attack as the weapon bends partially away from your body. Once used, this property can’t be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14578,7 +14578,7 @@ "fields": { "name": "Rod of Bubbles", "desc": "This rod appears to be made of foamy bubbles, but it is completely solid to the touch. This rod has 3 charges. While holding it, you can use an action to expend 1 of its charges to conjure a bubble around a creature or object within 30 feet. If the target is a creature, it must make a DC 15 Strength saving throw. On a failed save, the target becomes trapped in a 10-foot sphere of water. A Huge or larger creature automatically succeeds on this saving throw. A creature trapped within the bubble is restrained unless it has a swimming speed and can't breathe unless it can breathe water. If the target is an object, it becomes soaked in water, any fire effects are extinguished, and any acid effects are negated. The bubble floats in the exact spot where it was conjured for up to 1 minute, unless blown by a strong wind or moved by water. The bubble has 50 hit points, AC 8, immunity to acid damage and vulnerability to piercing damage. The inside of the bubble also has resistance to all damage except piercing damage. The bubble disappears after 1 minute or when it is reduced to 0 hit points. When not in use, this rod can be commanded to take liquid form and be stored in a small vial. The rod regains 1d3 expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14597,7 +14597,7 @@ "fields": { "name": "Rod of Conveyance", "desc": "The top of this rod is capped with a bronze horse head, and its foot is decorated with a horsehair plume. By placing the rod between your legs, you can use an action to temporarily transform the rod into a horse-like construct. This works like the phantom steed spell, except you can use a bonus action to end the effect early to use the rod again at a later time. Deduct the time the horse was active in increments of 1 minute from the spell's 1-hour duration. When the rod has been a horse for a total of 1 hour, the magic ceases to function until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14616,7 +14616,7 @@ "fields": { "name": "Rod of Deflection", "desc": "This thin, flexible rod is made of braided silver and brass wire and topped with a spoon-like cup. While holding the rod, you can use a reaction to deflect a ranged weapon attack against you. You can simply cause the attack to miss, or you can attempt to redirect the attack against another target, even your attacker. The attack must have enough remaining range to reach the new target. If the additional distance between yourself and the new target is within the attack's long range, it is made at disadvantage as normal, using the original attack roll as the first roll. The rod has 3 charges. You can expend a charge as a reaction to redirect a ranged spell attack as if it were a ranged weapon attack, up to the spell's maximum range. The rod regains 1d3 expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14635,7 +14635,7 @@ "fields": { "name": "Rod of Ghastly Might", "desc": "The knobbed head of this tarnished silver rod resembles the top half of a jawless, syphilitic skull, and it functions as a magic mace that grants a +2 bonus to attack and damage rolls made with it. The rod has properties associated with five different buttons that are set erratically along the haft. It has three other properties as well, detailed below. If you press **button 1**, the rod's head erupts in a fiery nimbus of abyssal energy that sheds dim light in a 5-foot radius. While the rod is ablaze, it deals an extra 1d6 fire damage and 1d6 necrotic damage to any target it hits. If you press **button 2**, the rod's head becomes enveloped in a black aura of enervating energy. When you hit a target with the rod while it is enveloped in this energy, the target must succeed on a DC 17 Constitution saving throw or deal only half damage with weapon attacks that use Strength until the end of its next turn. If you press **button 3**, a 2-foot blade springs from the tip of the rod's handle as the handle lengthens into a 5-foot haft, transforming the rod into a magic glaive that grants a +2 bonus to attack and damage rolls made with it. If you press **button 4**, a 3-pronged, bladed grappling hook affixed to a long chain springs from the tip of the rod's handle. The bladed grappling hook counts as a magic sickle with reach that grants a +2 bonus to attack and damage rolls made with it. When you hit a target with the bladed grappling hook, the target must succeed on an opposed Strength check or fall prone. If you press **button 5**, the rod assumes or remains in its normal form and you can extinguish all nonmagical flames within 30 feet of you. Turning Defiance. While holding the rod, you and any undead allies within 30 feet of you have advantage on saving throws against effects that turn undead. Contagion. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target is afflicted with a disease. This works like the contagion spell. Once used, this property can’t be used again until the next dusk. Create Specter. As an action, you can target a humanoid within 10 feet of you that was killed by the rod or one of its effects and has been dead for no longer than 1 minute. The target’s spirit rises as a specter under your control in the space of its corpse or in the nearest unoccupied space. You can have no more than one specter under your control at one time. Once used, this property can’t be used again until the next dusk.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14654,7 +14654,7 @@ "fields": { "name": "Rod of Hellish Grounding", "desc": "This curious jade rod is tipped with a knob of crimson crystal that glows and shimmers with eldritch phosphorescence. While holding or carrying the rod, you have darkvision out to a range of 30 feet, and you have advantage on Dexterity (Acrobatics) checks. Hellish Desiccation. While holding this rod, you can use an action to fire a crimson ray at an object or creature made of metal that you can see within 60 feet of you. The ray forms a 5-foot wide line between you and the target. Each creature in that line that isn’t a construct or an undead must make a DC 15 Dexterity saving throw, taking 8d6 force damage on a failed save, or half as much damage on a successful one. Creatures and objects made of metal are unaffected. If this damage reduces a creature to 0 hit points, it is desiccated. A desiccated creature is reduced to a withered corpse, but everything it is wearing and carrying is unaffected. The creature can be restored to life only by means of a true resurrection or a wish spell. Once used, this property can’t be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14673,7 +14673,7 @@ "fields": { "name": "Rod of Icicles", "desc": "This white crystalline rod is shaped like an icicle. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges to attack one creature you can see within 60 feet of you. The rod launches an icicle at the target and makes its attack roll with a +7 bonus. On a hit, the target takes 2d6 piercing damage and 2d6 cold damage. On a critical hit, the target is also paralyzed until the end of its next turn as it momentarily freezes. If you take fire damage while holding this rod, you become immune to fire damage for 1 minute, and the rod loses 2 charges. If the rod has only 1 charge remaining when you take fire damage, you become immune to fire damage, as normal, but the rod melts into a puddle of water and is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14692,7 +14692,7 @@ "fields": { "name": "Rod of Reformation", "desc": "This rod of polished white oak is wrapped in a knotted cord with three iron rings binding each end. If you are holding the rod and fail a saving throw against a transmutation spell or other effect that would change your body or remove or alter parts of you, you can choose to succeed instead. The rod can’t be used this way again until the next dawn. The rod has 5 charges for the following properties. It regains 1d4 + 1 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rings fall off, the cord unknots, and the entire rod slowly falls to pieces and is destroyed. Cure Transformation. While holding the rod, you can use an action to expend 1 charge while touching a creature that has been affected by a transmutation spell or other effect that changed its physical form, such as the polymorph spell or a medusa's Petrifying Gaze. The rod restores the creature to its original form. If the creature is willingly transformed, such as a druid using Wild Shape, you must make a melee weapon attack roll, using the rod. You are proficient with the rod if you are proficient with clubs. On a hit, you can expend 1 of the rod’s charges to force the target to make a DC 15 Constitution saving throw. On a failure, the target reverts to its original form. Mend Form. While holding the rod, you can use an action to expend 2 charges to reattach a creature's severed limb or body part. The limb must be held in place while you use the rod, and the process takes 1 minute to complete. You can’t reattach limbs or other body parts to dead creatures. If the limb is lost, you can spend 4 charges instead to regenerate the missing piece, which takes 2 minutes to complete. Reconstruct Form. While holding the rod, you can use an action to expend 5 charges to reconstruct the form of a creature or object that has been disintegrated, burned to ash, or similarly destroyed. An item is completely restored to its original state. A creature’s body is fully restored to the state it was in before it was destroyed. The creature isn’t restored to life, but this reconstruction of its form allows the creature to be restored to life by spells that require the body to be present, such as raise dead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14711,7 +14711,7 @@ "fields": { "name": "Rod of Repossession", "desc": "This short, metal rod is engraved with arcane runes and images of open hands. The rod has 3 charges and regains all expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges and target an object within 30 feet of you that isn't being worn or carried. If the object weighs no more than 25 pounds, it floats to your open hand. If you have no hands free, the object sticks to the tip of the rod until the end of your next turn or until you remove it as a bonus action.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14730,7 +14730,7 @@ "fields": { "name": "Rod of Sacrificial Blessing", "desc": "This silvery rod is set with rubies on each end. One end holds rubies shaped to resemble an open, fanged maw, and the other end's rubies are shaped to resemble a heart. While holding this rod, you can use an action to spend one or more Hit Dice, up to half your maximum Hit Dice, while pointing the heart-shaped ruby end of the rod at a target within 60 feet of you. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target regains hit points equal to the total hit points you lost. You can't use this feature if you don't have blood. Hit Dice spent on this feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14749,7 +14749,7 @@ "fields": { "name": "Rod of Sanguine Mastery", "desc": "This rod is topped with a red ram's skull with two backswept horns. As an action, you can spend one or more Hit Dice, up to half of your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and a target within 60 feet of you must make a DC 17 Dexterity saving throw, taking necrotic damage equal to the total on a failed save, or half as much damage on a successful one. You can't use this feature if you don't have blood. Hit Dice spent on this feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14768,7 +14768,7 @@ "fields": { "name": "Rod of Swarming Skulls", "desc": "An open-mouthed skull caps this thick, onyx rod. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dusk. While holding the rod, you can use an action and expend 1 of the rod's charges to unleash a swarm of miniature spectral blue skulls at a target within 30 feet. The target must make a DC 15 Wisdom saving throw. On a failure, it takes 3d6 psychic damage and becomes paralyzed with fear until the end of its next turn. On a success, it takes half the damage and isn't paralyzed. Creatures that can't be frightened are immune to this effect.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14787,7 +14787,7 @@ "fields": { "name": "Rod of the Disciplinarian", "desc": "This black lacquered wooden rod is banded in steel, has a flanged head, and functions as a magic mace. As a bonus action, you can brandish the rod at a creature and demand it refrain from a particular activity— attacking, casting, moving, or similar. The activity can be as specific (don't attack the person next to you) or as open (don't cast a spell) as you want, but the activity must be a conscious act on the creature's part, must be something you can determine is upheld or broken, and can't immediately jeopardize the creature's life. For example, you can forbid a creature from lying only if you are capable of determining if the creature is lying, and you can't forbid a creature that needs to breathe from breathing. The creature can act normally, but if it performs the activity you forbid, you can use a reaction to make a melee attack against it with the rod. You can forbid only one creature at a time. If you forbid another creature from performing an activity, the previous creature is no longer forbidden from performing activities. Justicars are arbiters of law and order, operating independently of any official city guard or watch divisions. They are recognizable by their black, hooded robes, silver masks, and the rods they carry as weapons. These stern sentinels are overseen by The Magister, a powerful wizard of whom little is known other than their title. The Magister has made it their duty to oversee order in the city and executes their plans through the Justicars, giving them the Magister's mark, a signet ring, as a symbol of their authority. While some officers and members of the watch may be resentful of the Justicars' presence, many are grateful for their aid, especially in situations that could require magic. Justicar's are a small, elite group, typically acting as solo agents, though extremely dangerous situations bring them together in pairs or larger groups as needed. The Justicars are outfitted with three symbols of authority that are also imbued with power: their masks, rods, and rings. Each by itself is a useful item, but they are made stronger when worn together. The combined powers of this trinity of items make a Justicar a formidable force in the pursuit of law and order.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14806,7 +14806,7 @@ "fields": { "name": "Rod of the Infernal Realms", "desc": "The withered, clawed hand of a demon or devil tops this iron rod. While holding this rod, you gain a +2 bonus to spell attack rolls, and the save DC for your spells increases by 2. Frightful Eyes. While holding this rod, you can use a bonus action to cause your eyes to glow with infernal fire for 1 minute. While your eyes are glowing, a creature that starts its turn or enters a space within 10 feet of you must succeed on a Wisdom saving throw against your spell save DC or become frightened of you until your eyes stop glowing. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once used, you can’t use this property again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14825,7 +14825,7 @@ "fields": { "name": "Rod of the Jester", "desc": "This wooden rod is decorated with colorful scarves and topped with a carving of a madly grinning head. Caper. While holding the rod, you can dance and perform general antics that attract attention. Make a DC 10 Charisma (Performance) check. On a success, one creature that can see and hear you must succeed on a DC 15 Wisdom saving throw or have disadvantage on Wisdom (Perception) checks made to perceive any creature other than you for 1 minute. The effect ends if the target can no longer see or hear you or if you are incapacitated. You can affect one additional creature for each 5 points by which you beat the DC (two creatures with a result of 15, three creatures with a result of 20, and so on). Once used, this property can’t be used again until the next dawn. Hideous Laughter. While holding the rod, you can use an action to cast the hideous laughter spell (save DC 15) from it. Once used, this property can’t be used again until the next dawn. Slapstick. You can use an action to swing the rod in the direction of a creature within 5 feet of you. The target must succeed on a DC 15 Dexterity saving throw or be pushed up to 5 feet away from you and knocked prone. If the target fails the saving throw by 5 or more, it is also stunned until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14844,7 +14844,7 @@ "fields": { "name": "Rod of the Mariner", "desc": "This thin bone rod is topped with the carved figurine of an albatross in flight. The rod has 5 charges. You can use an action to expend 1 or more of its charges and point the rod at one or more creatures you can see within 30 feet of you, expending 1 charge for each creature. Each target must succeed on a DC 15 Wisdom saving throw or be cursed for 1 minute. A cursed creature has disadvantage on attack rolls and saving throws while within 100 feet of a body of water that is at least 20 feet deep. The rod regains 1d4 + 1 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rod crumbles to dust and is destroyed, and you must succeed on a DC 15 Wisdom saving throw or be cursed for 1 minute as if you had been the target of the rod's power.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14863,7 +14863,7 @@ "fields": { "name": "Rod of the Wastes", "desc": "Created by a holy order of knights to protect their most important members on missions into badlands and magical wastelands, these red gold rods are invaluable tools against the forces of evil. This rod has a rounded head, and it functions as a magic mace that grants a +2 bonus to attack and damage rolls made with it. While holding or carrying the rod, you have advantage on Wisdom (Perception) and Wisdom (Survival) checks made in badlands and wasteland terrain, and you have advantage on saving throws against being charmed or otherwise compelled by aberrations and fiends. If you are charmed or magically compelled by an aberration or fiend, the rod flashes with crimson light, alerting others to your predicament. Aberrant Smite. If you use Divine Smite when you hit an aberration or fiend with this rod, you use the highest number possible for each die of radiant damage rather than rolling one or more dice for the extra radiant damage. You must still roll damage dice for the rod’s damage, as normal. Once used, this property can’t be used again until the next dawn. Spells. You can use an action to cast one of the following spells from the rod: daylight, lesser restoration, or shield of faith. Once you cast a spell with this rod, you can’t cast that spell again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14882,7 +14882,7 @@ "fields": { "name": "Rod of Thorns", "desc": "Several long sharp thorns sprout along the edge of this stout wooden rod, and it functions as a magic mace that grants a +1 bonus to attack and damage rolls made with it. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges to cast the spike growth spell (save DC 15) from it. Embed Thorn. When you hit a creature with this rod, you can expend 1 of its charges to embed a thorn in the creature. At the start of each of the creature’s turns, it must succeed on a DC 15 Constitution saving throw or take 2d6 piercing damage from the embedded thorn. If the creature succeeds on two saving throws, the thorn falls out and crumbles to dust. The successes don’t need to be consecutive. If the creature dies while the thorn is embedded, its body transforms into a patch of nonmagical brambles, which fill its space with difficult terrain.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14901,7 +14901,7 @@ "fields": { "name": "Rod of Underworld Navigation", "desc": "This finely carved rod is decorated with gold and small dragon scales. While underground and holding this rod, you know how deep below the surface you are. You also know the direction to the nearest exit leading upward. As an action while underground and holding this rod, you can use the find the path spell to find the shortest, most direct physical route to a location you are familiar with on the surface. Once used, the find the path property can't be used again until 3 days have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14920,7 +14920,7 @@ "fields": { "name": "Rod of Vapor", "desc": "This wooden rod is topped with a dragon's head, carved with its mouth yawning wide. While holding the rod, you can use an action to cause a thick mist to issue from the dragon's mouth, filling your space. As long as you maintain concentration, you leave a trail of mist behind you when you move. The mist forms a line that is 5 feet wide and as long as the distance you travel. This mist you leave behind you lasts for 2 rounds; its area is heavily obscured on the first round and lightly obscured on the second, then it dissipates. When the rod has produced enough mist to fill ten 5-foot-square areas, its magic ceases to function until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14939,7 +14939,7 @@ "fields": { "name": "Rod of Verbatim", "desc": "Tiny runic script covers much of this thin brass rod. While holding the rod, you can use a bonus action to activate it. For 10 minutes, it translates any language spoken within 30 feet of it into Common. The translation can be auditory, or it can appear as glowing, golden script, a choice you make when you activate it. If the translation appears on a surface, the surface must be within 30 feet of the rod and each word remains for 1 round after it was spoken. The rod's translation is literal, and it doesn't replicate or translate emotion or other nuances in speech, body language, or culture. Once used, the rod can't be used again until 1 hour has passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14958,7 +14958,7 @@ "fields": { "name": "Rod of Warning", "desc": "This plain, wooden rod is topped with an orb of clear, polished crystal. You can use an action activate it with a command word while designating a particular kind of creature (orcs, wolves, etc.). When such a creature comes within 120 feet of the rod, the crystal glows, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. You can use an action to deactivate the rod's light or change the kind of creature it detects. The rod doesn't need to be in your possession to function, but you must have it in hand to activate it, deactivate it, or change the kind of creature it detects.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14977,7 +14977,7 @@ "fields": { "name": "Rogue's Aces", "desc": "These four, colorful parchment cards have long bailed the daring out of hazardous situations. You can use an action to flip a card face-up, activating it. A card is destroyed after it activates. Ace of Pentacles. The pentacles suit represents wealth and treasure. When you activate this card, you cast the knock spell from it on an object you can see within 60 feet of you. In addition, you have advantage on Dexterity checks to pick locks using thieves’ tools for the next 24 hours. Ace of Cups. The cups suit represents water and its calming, soothing, and cleansing properties. When you activate this card, you cast the calm emotions spell (save DC 15) from it. In addition, you have advantage on Charisma (Deception) checks for the next 24 hours.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -14996,7 +14996,7 @@ "fields": { "name": "Root of the World Tree", "desc": "Crafted from the root burl of a sacred tree, this rod is 2 feet long with a spiked, knobby end. Runes inlaid with gold decorate the full length of the rod. This rod functions as a magic mace. Blood Anointment. You can perform a 1-minute ritual to anoint the rod in your blood. If you do, your hit point maximum is reduced by 2d4 until you finish a long rest. While your hit point maximum is reduced in this way, you gain a +1 bonus to attack and damage rolls made with this magic weapon, and, when you hit a fey or giant with this weapon, that creature takes an extra 2d6 necrotic damage. Holy Anointment. If you spend 1 minute anointing the rod with a flask of holy water, you can cast the augury spell from it. The runes carved into the rod glow and move, forming an answer to your query.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15015,7 +15015,7 @@ "fields": { "name": "Rope Seed", "desc": "If you soak this 5-foot piece of twine in at least one pint of water, it grows into a 50-foot length of hemp rope after 1 minute.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15034,7 +15034,7 @@ "fields": { "name": "Rowan Staff", "desc": "Favored by those with ties to nature and death, this staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. While holding it, you have an advantage on saving throws against spells. The staff has 10 charges for the following properties. It regains 1d4 + 1 expended charges daily at midnight, though it regains all its charges if it is bathed in moonlight at midnight. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff. Spell. While holding this staff, you can use an action to expend 1 or more of its charges to cast animate dead, using your spell save DC and spellcasting ability. The target bones or corpse can be a Medium or smaller humanoid or beast. Each charge animates a separate target. These undead creatures are under your control for 24 hours. You can use an action to expend 1 charge each day to reassert your control of up to four undead creatures created by this staff for another 24 hours. Deanimate. You can use an action to strike an undead creature with the staff in combat. If the attack hits, the target must succeed on a DC 17 Constitution saving throw or revert to an inanimate pile of bones or corpse in its space. If the undead has the Incorporeal Movement trait, it is destroyed instead. Deanimating an undead creature expends a number of charges equal to twice the challenge rating of the creature (minimum of 1). If the staff doesn’t have enough charges to deanimate the target, the staff doesn’t deanimate the target.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15053,7 +15053,7 @@ "fields": { "name": "Rowdy's Club", "desc": "This knobbed stick is marked with nicks, scratches, and notches. You gain a +1 bonus to attack and damage rolls made with this magic weapon. While wielding the club, you can use an action to tap it against your open palm, the side of your leg, a surface within reach, or similar. If you do, you have advantage on your next Charisma (Intimidation) check. If you are also wearing a rowdy's ring (see page 87), you can use an action to frighten a creature you can see within 30 feet of you instead. The target must succeed on a DC 13 Wisdom saving throw or be frightened of you until the end of its next turn. Once this special action has been used three times, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15072,7 +15072,7 @@ "fields": { "name": "Rowdy's Ring", "desc": "The face of this massive ring is a thick slab of gold-plated lead, which is attached to twin rings that are worn over the middle and ring fingers. The slab covers your fingers from the first and second knuckles, and it often has a threatening word or image engraved on it. While wearing the ring, your unarmed strike uses a d4 for damage and attacks made with the ring hand count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15091,7 +15091,7 @@ "fields": { "name": "Royal Jelly", "desc": "This oil is distilled from the pheromones of queen bees and smells faintly of bananas. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying. For larger creatures, one additional vial is required for each size category above Medium. Applying the oil takes 10 minutes. The affected creature then has advantage on Charisma (Persuasion) checks for 1 hour.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15110,7 +15110,7 @@ "fields": { "name": "Ruby Crusher", "desc": "This greatclub is made entirely of fused rubies with a grip wrapped in manticore hide A roaring fire burns behind its smooth facets. You gain a +3 bonus to attack and damage rolls made with this magic weapon. You can use a bonus action to speak this magic weapon's command word, causing it to be engulfed in flame. These flames shed bright light in a 30-foot radius and dim light for an additional 30 feet. While the greatclub is aflame, it deals fire damage instead of bludgeoning damage. The flames last until you use a bonus action to speak the command word again or until you drop the weapon. When you hit a Large or larger creature with this greatclub, the creature must succeed on a DC 17 Constitution saving throw or be pushed up to 30 feet away from you. If the creature strikes a solid object, such as a door or wall, during this movement, it and the object take 1d6 bludgeoning damage for each 10 feet the creature traveled before hitting the object.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15129,7 +15129,7 @@ "fields": { "name": "Rug of Safe Haven", "desc": "This small, 3-foot-by-5-foot rug is woven with a tree motif and a tasseled fringe. While the rug is laid out on the ground, you can speak its command word as an action to create an extradimensional space beneath the rug for 1 hour. The extradimensional space can be reached by lifting a corner of the rug and stepping down as if through a trap door in a floor. The space can hold as many as eight Medium or smaller creatures. The entrance can be hidden by pulling the rug flat. Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window in the shape and style of the rug. Anything inside the extradimensional space is gently pushed out to the nearest unoccupied space when the duration ends. The rug can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15148,7 +15148,7 @@ "fields": { "name": "Rust Monster Shell", "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, you can use an action to magically coat the armor in rusty flakes for 1 minute. While the armor is coated in rusty flakes, any nonmagical weapon made of metal that hits you corrodes. After dealing damage, the weapon takes a permanent and cumulative –1 penalty to damage rolls. If its penalty drops to –5, the weapon is destroyed. Nonmagical ammunition made of metal that hits you is destroyed after dealing damage. The armor can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15167,7 +15167,7 @@ "fields": { "name": "Sacrificial Knife", "desc": "Runes dance along the blade of this keen knife. Sacrificial Knife (Common). While attuned to it, you can use this magic, rune-inscribed dagger as a spellcasting focus. Ceremonial Sacrificial Knife (Uncommon). More powerful versions of this blade also exist. While holding the greater version of this dagger, you can use it to perform a sacrificial ritual during a short rest. If you sacrifice a Tiny or Small creature, you regain one expended 1st-level spell slot. If you sacrifice a Medium or larger creature, you regain one expended 2nd-level spell slot.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15186,7 +15186,7 @@ "fields": { "name": "Saddle of the Cavalry Casters", "desc": "This magic saddle adjusts its size and shape to fit the animal to which it is strapped. While a mount wears this saddle, creatures have disadvantage on opportunity attacks against the mount or its rider. While you sit astride this saddle, you have advantage on any checks to remain mounted and on Constitution saving throws to maintain concentration on a spell when you take damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15205,7 +15205,7 @@ "fields": { "name": "Sanctuary Shell", "desc": "This seashell is intricately carved with protective runes. If you are carrying the shell and are reduced to 0 hit points or incapacitated, the shell activates, creating a bubble of force that expands to surround you and forces any other creatures out of your space. This sphere works like the wall of force spell, except that any creature intent on aiding you can pass through it. The protective sphere lasts for 10 minutes, or until you regain at least 1 hit point or are no longer incapacitated. When the protective sphere ends, the shell crumbles to dust.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15224,7 +15224,7 @@ "fields": { "name": "Sand Arrow", "desc": "The shaft of this arrow is made of tightly packed white sand that discorporates into a blast of grit when it strikes a target. On a hit, the sand catches in the fittings and joints of metal armor, and the target's speed is reduced by 10 feet until it cleans or removes the armor. In addition, the target must succeed on a DC 11 Constitution saving throw or be blinded until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15243,7 +15243,7 @@ "fields": { "name": "Sand Suit", "desc": "Created from the treated body of a destroyed Apaxrusl (see Tome of Beasts 2), this leather armor constantly sheds fine sand. The faint echoes of damned souls also emanate from the armor. While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, you can move through nonmagical, unworked earth and stone at your speed. While doing so, you don't disturb the material you move through. Because the souls that once infused the apaxrusl remain within the armor, you are susceptible to effects that sense, target, or harm fiends, such as a paladin's Divine Smite or a ranger's Primeval Awareness. This armor has 3 charges, and it regains 1d3 expended charges daily at dawn. As a reaction, when you are hit by an attack, you can expend 1 charge and make the armor flow like sand. Roll a 1d12 and reduce the damage you take by the number rolled.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15262,7 +15262,7 @@ "fields": { "name": "Sandals of Sand Skating", "desc": "These leather sandals repel sand, leaving your feet free of particles and grit. While you wear these sandals in a desert, on a beach, or in an otherwise sandy environment, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced while in nonmagical difficult terrain made of sand. In addition, when you take the Dash action across sand, the extra movement you gain is double your speed instead of equal to your speed. With a speed of 30 feet, for example, you can move up to 90 feet on your turn if you dash across sand.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15281,7 +15281,7 @@ "fields": { "name": "Sandals of the Desert Wanderer", "desc": "While you wear these soft leather sandals, you have resistance to fire damage. In addition, you ignore difficult terrain created by loose or deep sand, and you can tolerate temperatures of up to 150 degrees Fahrenheit.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15300,7 +15300,7 @@ "fields": { "name": "Sanguine Lance", "desc": "This fiendish lance runs red with blood. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature that has blood with this lance, the target takes an extra 1d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15319,7 +15319,7 @@ "fields": { "name": "Satchel of Seawalking", "desc": "This eel-hide leather pouch is always filled with an unspeakably foul-tasting, coarse salt. You can use an action to toss a handful of the salt onto the surface of an unoccupied space of water. The water in a 5-foot cube becomes solid for 1 minute, resembling greenish-blue glass. This cube is buoyant and can support up to 750 pounds. When the duration expires, the hardened water cracks ominously and returns to a liquid state. If you toss the salt into an occupied space, the water congeals briefly then disperses harmlessly. If the satchel is opened underwater, the pouch is destroyed as its contents permanently harden. Once five handfuls of the salt have been pulled from the satchel, the satchel can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15338,7 +15338,7 @@ "fields": { "name": "Scale Mail of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15357,7 +15357,7 @@ "fields": { "name": "Scale Mail of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15376,7 +15376,7 @@ "fields": { "name": "Scale Mail of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15395,7 +15395,7 @@ "fields": { "name": "Scalehide Cream", "desc": "As an action, you can rub this dull green cream over your skin. When you do, you sprout thick, olive-green scales like those of a giant lizard or green dragon that last for 1 hour. These scales give you a natural AC of 15 + your Constitution modifier. This natural AC doesn't combine with any worn armor or with a Dexterity bonus to AC. A jar of scalehide cream contains 1d6 + 1 doses.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15414,7 +15414,7 @@ "fields": { "name": "Scarab of Rebirth", "desc": "This coin-sized figurine of a scarab is crafted from an unidentifiable blue-gray metal, but it appears mundane in all other respects. When you speak its command word, it whirs to life and burrows into your flesh. You can speak the command word again to remove the scarab. While the scarab is embedded in your flesh, you gain the following:\n- You no longer need to eat or drink.\n- You can magically sense the presence of undead and pinpoint the location of any undead within 30 feet of you.\n- Your hit point maximum is reduced by 10.\n- If you die, you return to life with half your maximum hit points at the start of your next turn. The scarab can't return you to life if you were beheaded, disintegrated, crushed, or similar full-body destruction. Afterwards, the scarab exits your body and goes dormant. It can't be used again until 14 days have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15433,7 +15433,7 @@ "fields": { "name": "Scarf of Deception", "desc": "While wearing this scarf, you appear different to everyone who looks upon you for less than 1 minute. In addition, you smell, sound, feel, and taste different to every creature that perceives you. Creatures with truesight or blindsight can see your true form, but their other senses are still confounded. If a creature studies you for 1 minute, it can make a DC 15 Wisdom (Perception) check. On a success, it perceives your real form.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15452,7 +15452,7 @@ "fields": { "name": "Scent Sponge", "desc": "This sea sponge collects the scents of creatures and objects. You can use an action to touch the sponge to a creature or object, and the scent of the target is absorbed into the sponge. An unwilling target can make a DC 13 Dexterity saving throw, and if it succeeds, it is unaffected by the sponge. For 1 hour after its scent has been absorbed, the target gives off no smell and can't be detected or tracked by creatures, spells, or other effects that rely on smell to detect or track the target. You can use an action to wipe the sponge on a creature or object, masking its natural scent with the scent stored in the sponge. An unwilling target can make a DC 13 Dexterity saving throw, and if it succeeds, it is unaffected by the sponge. For 1 hour after its scent has been masked, the target gives off the smell of the creature or object that was stored in the sponge. The effect ends early if the target's scent is replaced by another scent from the sponge or if the scent is cleaned away, which requires vigorous washing for 10 minutes with soap and water or similar materials. The sponge can hold a scent indefinitely, but it can hold only one scent at a time.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15471,7 +15471,7 @@ "fields": { "name": "Scepter of Majesty", "desc": "While holding this bejeweled, golden rod, you can use an action to cast the enthrall spell (save DC 15) from it, exhorting those in range to follow you and obey your commands. When you finish speaking, 1d6 creatures that failed their saving throw are affected as if by the dominate person spell. Each such creature treats you as its ruler, obeying your commands and automatically fighting in your defense should anyone attempt to harm you. If you are also attuned to and wearing a Headdress of Majesty (see page 146), your charmed subjects have advantage on attack rolls against any creature that attacked you or that cast an obvious spell on you within the last round. The scepter can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15490,7 +15490,7 @@ "fields": { "name": "Scimitar of Fallen Saints", "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15509,7 +15509,7 @@ "fields": { "name": "Scimitar of the Desert Winds", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While holding or carrying this scimitar, you can tolerate temperatures as low as –50 degrees Fahrenheit or as high as 150 degrees Fahrenheit without any additional protection.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15528,7 +15528,7 @@ "fields": { "name": "Scorn Pouch", "desc": "The heart of a lover scorned turns black and potent. Similarly, this small leather pouch darkens from brown to black when a creature hostile to you moves within 10 feet of you.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15547,7 +15547,7 @@ "fields": { "name": "Scorpion Feet", "desc": "These thick-soled leather sandals offer comfortable and safe passage across shifting sands. While you wear them, you gain the following benefits:\n- Your speed isn't reduced while in magical or nonmagical difficult terrain made of sand.\n- You have advantage on all ability checks and saving throws against natural hazards where sand is a threatening element.\n- You have immunity to poison damage and advantage on saving throws against being poisoned.\n- You leave no tracks or other traces of your passage through sandy terrain.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15566,7 +15566,7 @@ "fields": { "name": "Scoundrel's Gambit", "desc": "This fluted silver tube, barely two inches long, bears tiny runes etched between the grooves. While holding this tube, you can use an action to cast the magic missile spell from it. Once used, the tube can't be used to cast magic missile again until 12 hours have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15585,7 +15585,7 @@ "fields": { "name": "Scourge of Devotion", "desc": "This cat o' nine tails is used primarily for self-flagellation, and its tails have barbs of silver woven into them. You gain a +1 bonus to attack and damage rolls made with this magic weapon, and the weapon deals slashing damage instead of bludgeoning damage. You can spend 10 minutes using the scourge in a self-flagellating ritual, which can be done during a short rest. If you do so, your hit point maximum is reduced by 2d8. In addition, you have advantage on Constitution saving throws that you make to maintain your concentration on a spell when you take damage while your hit point maximum is reduced. This hit point maximum reduction can't be removed with the greater restoration spell or similar magic and lasts until you finish a long rest.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15604,7 +15604,7 @@ "fields": { "name": "Scout's Coat", "desc": "This lightweight, woolen coat is typically left naturally colored or dyed in earth tones or darker shades of green. While wearing the coat, you can tolerate temperatures as low as –100 degrees Fahrenheit.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15623,7 +15623,7 @@ "fields": { "name": "Screaming Skull", "desc": "This skull looks like a normal animal or humanoid skull. You can use an action to place the skull on the ground, a table, or other surface and activate it with a command word. The skull's magic triggers when a creature comes within 5 feet of it without speaking that command word. The skull emits a green glow from its eye sockets, shedding dim light in a 15-foot radius, levitates up to 3 feet in the air, and emits a piercing scream for 1 minute that is audible up to 600 feet away. The skull can't be used this way again until the next dawn. The skull has AC 13 and 5 hit points. If destroyed while active, it releases a burst of necromantic energy. Each creature within 5 feet of the skull must succeed on a DC 11 Wisdom saving throw or be frightened until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15642,7 +15642,7 @@ "fields": { "name": "Scrimshaw Comb", "desc": "Aside from being carved from bone, this comb is a beautiful example of functional art. It has 3 charges. As an action, you can expend a charge to cast invisibility. Unlike the standard version of this spell, you are invisible only to undead creatures. However, you can attack creatures who are not undead (and thus unaffected by the spell) without ending the effect. Casting a spell breaks the effect as normal. The comb regains 1d3 expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15661,7 +15661,7 @@ "fields": { "name": "Scrimshaw Parrot", "desc": "This parrot is carved from bits of whalebone and decorated with bright feathers and tiny jewels. You can use an action to affix the parrot to your shoulder or arm. While the parrot is affixed, you gain the following benefits: - You have advantage on Wisdom (Perception) checks that rely on sight.\n- You can use an action to cast the comprehend languages spell from it at will.\n- You can use an action to speak the command word and activate the parrot. It records up to 2 minutes of sounds within 30 feet of it. You can touch the parrot at any time (no action required), stopping the recording. Commanding the parrot to record new sounds overwrites the previous recording. You can use a bonus action to speak a different command word, and the parrot repeats the sounds it heard. Effects that limit or block sound, such as a closed door or the silence spell, similarly limit or block the sounds the parrot records.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15680,7 +15680,7 @@ "fields": { "name": "Scroll of Fabrication", "desc": "You can draw a picture of any object that is Large or smaller on the face of this blank scroll. When the drawing is complete, it becomes a real, nonmagical, three-dimensional object. Thus, a drawing of a backpack becomes an actual backpack you can use to store and carry items. Any object created by the scroll can be destroyed by the dispel magic spell, by taking it into the area of an antimagic field, or by similar circumstances. Nothing created by the scroll can have a value greater than 25 gp. If you draw an object of greater value, such as a diamond, the object appears authentic, but close inspection reveals it to be made from glass, paste, bone or some other common or worthless material. The object remains for 24 hours or until you dismiss it as a bonus action. The scroll can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15699,7 +15699,7 @@ "fields": { "name": "Scroll of Treasure Finding", "desc": "Each scroll of treasure finding works for a specific type of treasure. You can use an action to read the scroll and sense whether that type of treasure is present within 1 mile of you for 1 hour. This scroll reveals the treasure's general direction, but not its specific location or amount. The GM chooses the type of treasure or determines it by rolling a d100 and consulting the following table. | dice: 1d% | Treasure Type |\n| ----------- | ------------- |\n| 01-10 | Copper |\n| 11-20 | Silver |\n| 21-30 | Electrum |\n| 31-40 | Gold |\n| 41-50 | Platinum |\n| 51-75 | Gemstone |\n| 76-80 | Art objects |\n| 81-00 | Magic items |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15718,7 +15718,7 @@ "fields": { "name": "Scrolls of Correspondence", "desc": "These vellum scrolls always come in pairs. Anything written on one scroll also appears on the matching scroll, as long as they are both on the same plane of existence. Each scroll can hold up to 75 words at a time. While writing on one scroll, you are aware that the words are appearing on a paired scroll, and you know if no creature bears the paired scroll. The scrolls don't translate words written on them, and the reader and writer must be able to read and write the same language to understanding the writing on the scrolls. While holding one of the scrolls, you can use an action to tap it three times with a quill and speak a command word, causing both scrolls to go blank. If one of the scrolls in the pair is destroyed, the other scroll becomes nonmagical.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15737,7 +15737,7 @@ "fields": { "name": "Sea Witch's Blade", "desc": "This slim, slightly curved blade has a ghostly sheen and a wickedly sharp edge. You can use a bonus action to speak this magic sword's command word (“memory”) and cause the air around the blade to shimmer with a pale, violet glow. This glow sheds bright light in a 20-foot radius and dim light for an additional 20 feet. While the sword is glowing, it deals an extra 2d6 psychic damage to any target it hits. The glow lasts until you use a bonus action to speak the command word again or until you drop or sheathe the sword. When a creature takes psychic damage from the sword, you can choose to have the creature make a DC 15 Wisdom saving throw. On a failure, you take 2d6 psychic damage, and the creature is stunned until the end of its next turn. Once used, this feature of the sword shouldn't be used again until the next dawn. Each time it is used before then, the psychic damage you take increases by 2d6.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15756,7 +15756,7 @@ "fields": { "name": "Searing Whip", "desc": "Inspired by the searing breath weapon of a light drake (see Tome of Beasts 2), this whip seems to have filaments of light interwoven within its strands. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with this weapon, the creature takes an extra 1d4 radiant damage. When you roll a 20 on an attack roll made with this weapon, the target is blinded until the end of its next turn. The whip has 3 charges, and it regains 1d3 expended charges daily at dawn or when exposed to a daylight spell for 1 minute. While wielding the whip, you can use an action to expend 1 of its charges to transform the whip into a searing beam of light. Choose one creature you can see within 30 feet of you and make one attack roll with this whip against that creature. If the attack hits, that creature and each creature in a line that is 5 feet wide between you and the target takes damage as if hit by this whip. All of this damage is radiant. If the target is undead, you have advantage on the attack roll.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15775,7 +15775,7 @@ "fields": { "name": "Second Wind", "desc": "This plain, copper band holds a clear, spherical crystal. When you run out of breath or are choking, you can use a reaction to activate the ring. The crystal shatters and air fills your lungs, allowing you to continue to hold your breath for a number of minutes equal to 1 + your Constitution modifier (minimum 30 seconds). A shattered crystal magically reforms at the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15794,7 +15794,7 @@ "fields": { "name": "Seelie Staff", "desc": "This white ash staff is decorated with gold and tipped with an uncut crystal of blue quartz. This staff can be wielded as a magic quarterstaff. While holding the staff, you have advantage on Charisma checks made to influence or interact socially with fey creatures. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a shower of fragrant flower petals, which blow away in a sudden wind. Rebuke Fey. When you hit a fey creature with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 radiant damage to the target. If the fey has an evil alignment, the extra damage increases to 4d6, and the target must succeed on a DC 15 Wisdom saving throw or be frightened of you until the start of your next turn. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), conjure woodland beings (4 charges), disguise self (1 charge), pass without trace (2 charges), or tree stride (5 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15813,7 +15813,7 @@ "fields": { "name": "Selket's Bracer", "desc": "This bronze bracer is crafted in the shape of a scorpion, its legs curled around your wrist, tail raised and ready to strike. While wearing this bracer, you are immune to the poisoned condition. The bracer has 4 charges and regains 1d4 charges daily at dawn. You can expend 1 charge as a bonus action to gain tremorsense out to a range of 30 feet for 1 minute. In addition, you can expend 2 charges as a bonus action to coat a weapon you touch with venom. The poison remains for 1 minute or until an attack using the weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or be poisoned until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15832,7 +15832,7 @@ "fields": { "name": "Seneschal's Gloves", "desc": "These white gloves have elegant tailoring and size themselves perfectly to fit your hands. The gloves must be attuned to a specific, habitable place with walls, a roof, and doors before you can attune to them. To attune the gloves to a location, you must leave the gloves in the location for 24 hours. Once the gloves are attuned to a location, you can attune to them. While you wear the gloves, you can unlock any nonmagical lock within the attuned location by touching the lock, and any mundane portal you open in the location while wearing these gloves opens silently. As an action, you can snap your fingers and every nonmagical portal within 30 feet of you immediately closes and locks (if possible) as long as it is unobstructed. (Obstructed portals remain open.) Once used, this property of the gloves can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15851,7 +15851,7 @@ "fields": { "name": "Sentinel Portrait", "desc": "This painting appears to be a well-rendered piece of scenery, devoid of subjects. You can spend 5 feet of movement to step into the painting. The painting then appears to be a portrait of you, against whatever background was already present. While in the painting, you are immobile unless you use a bonus action to exit the painting. Your senses still function, and you can use them as if you were in the portrait's space. You remain unharmed if the painting is damaged, but if it is destroyed, you are immediately shunted into the nearest unoccupied space.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15870,7 +15870,7 @@ "fields": { "name": "Serpent Staff", "desc": "Fashioned from twisted ash wood, this staff 's head is carved in the likeness of a serpent preparing to strike. You have resistance to poison damage while you hold this staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the carved snake head twists and magically consumes the rest of the staff, destroying it. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: cloudkill (5 charges), detect poison and disease (1 charge), poisoned volley* (2 charges), or protection from poison (2 charges). You can also use an action to cast the poison spray spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Serpent Form. While holding the staff, you can use an action cast polymorph on yourself, transforming into a serpent or snake that has a challenge rating of 2 or lower. While you are in the form of a serpent, you retain your Intelligence, Wisdom, and Charisma scores. You can remain in serpent form for up to 1 minute, and you can revert to your normal form as an action. Once used, this property can’t be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15889,7 +15889,7 @@ "fields": { "name": "Serpentine Bracers", "desc": "These bracers are a pair of golden snakes with ruby eyes, which coil around your wrist and forearm. While wearing both bracers, you gain a +1 bonus to AC if you are wearing no armor and using no shield. You can use an action to speak the bracers' command word and drop them on the ground in two unoccupied spaces within 10 feet of you. The bracers become two constrictor snakes under your control and act on their own initiative counts. By using a bonus action to speak the command word again, you return a bracer to its normal form in a space formerly occupied by the snake. On your turn, you can mentally command each snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snakes take and where they move during their next turns, or you can issue them a general command, such as attack your enemies or guard a location. If a snake is reduced to 0 hit points, it dies, reverts to its bracer form, and can't be commanded to become a snake again until 2 days have passed. If a snake reverts to bracer form before losing all its hit points, it regains all of them and can't be commanded to become a snake again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15908,7 +15908,7 @@ "fields": { "name": "Serpent's Scales", "desc": "While wearing this armor made from the skin of a giant snake, you gain a +1 bonus to AC, and you have resistance to poison damage. While wearing the armor, you can use an action to cast polymorph on yourself, transforming into a giant poisonous snake. While you are in the form of a snake, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The armor can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15927,7 +15927,7 @@ "fields": { "name": "Serpent's Tooth", "desc": "When you hit with an attack using this magic spear, the target takes an extra 1d6 poison damage. In addition, while you hold the spear, you have advantage on Dexterity (Acrobatics) checks.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15946,7 +15946,7 @@ "fields": { "name": "Shadow Tome", "desc": "This unassuming book possesses powerful illusory magics. When you write on its pages while attuned to it, you can choose for the contents to appear to be something else entirely. A shadow tome used as a spellbook could be made to look like a cookbook, for example. To read the true text, you must speak a command word. A second speaking of the word hides the true text once more. A true seeing spell can see past the shadow tome’s magic and reveals the true text to the reader. Most shadow tomes already contain text, and it is rare to find one filled with blank pages. When you first attune to the book, you can choose to keep or remove the book’s previous contents.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15965,7 +15965,7 @@ "fields": { "name": "Shadowhound's Muzzle", "desc": "This black leather muzzle seems to absorb light. As an action, you can place this muzzle around the snout of a grappled, unconscious, or willing canine with an Intelligence of 3 or lower, such as a mastiff or wolf. The canine transforms into a shadowy version of itself for 1 hour. It uses the statistics of a shadow, except it retains its size. It has its own turns and acts on its own initiative. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to it, it defends itself from hostile creatures, but otherwise takes no actions. If the shadow canine is reduced to 0 hit points, the canine reverts to its original form, and the muzzle is destroyed. At the end of the duration or if you remove the muzzle (by stroking the canine's snout), the canine reverts to its original form, and the muzzle remains intact. If you become unattuned to this item while the muzzle is on a canine, its transformation becomes permanent, and the creature becomes independent with a will of its own. Once used, the muzzle can't be used to transform a canine again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -15984,7 +15984,7 @@ "fields": { "name": "Shark Tooth Crown", "desc": "Shark's teeth of varying sizes adorn this simple leather headband. The teeth pile one atop the other in a jumble of sharp points and flat sides. Three particularly large teeth are stained with crimson dye. The teeth move slightly of their own accord when you are within 1 mile of a large body of saltwater. The effect is one of snapping and clacking, producing a sound not unlike a crab's claw. While wearing this headband, you have advantage on Wisdom (Survival) checks to find your way when in a large body of saltwater or pilot a vessel on a large body of saltwater. In addition, you can use a bonus action to cast the command spell (save DC 15) from the crown. If the target is a beast with an Intelligence of 3 or lower that can breathe water, it automatically fails the saving throw. The headband can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16003,7 +16003,7 @@ "fields": { "name": "Sharkskin Vest", "desc": "While wearing this armor, you gain a +1 bonus to AC, and you have advantage on Strength (Athletics) checks made to swim. While wearing this armor underwater, you can use an action to cast polymorph on yourself, transforming into a reef shark. While you are in the form of the reef shark, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The armor can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16022,7 +16022,7 @@ "fields": { "name": "Sheeshah of Revelations", "desc": "This finely crafted water pipe is made from silver and glass. Its vase is etched with arcane symbols. When you spend 1 minute using the sheeshah to smoke normal or flavored tobacco, you enter a dreamlike state and are granted a cryptic or surreal vision giving you insight into your current quest or a significant event in your near future. This effect works like the divination spell. Once used, you can't use the sheeshah in this way again until 7 days have passed or until the events hinted at in your vision have come to pass, whichever happens first.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16041,7 +16041,7 @@ "fields": { "name": "Shepherd's Flail", "desc": "The handle of this simple flail is made of smooth lotus wood. The three threshers are made of carved and painted wooden beads. You gain a + 1 bonus to attack and damage rolls made with this magic weapon. True Authority (Requires Attunement). You must be attuned to a crook of the flock (see page 72) to attune to this weapon. The attunement ends if you are no longer attuned to the crook. While you are attuned to this weapon and holding it, your Charisma score increases by 4 and can exceed 20, but not 30. When you hit a beast with this weapon, the beast takes an extra 3d6 bludgeoning damage. For the purpose of this weapon, “beast” refers to any creature with the beast type. The flail also has 5 charges. When you reduce a humanoid to 0 hit points with an attack from this weapon, you can expend 1 charge. If you do so, the humanoid stabilizes, regains 1 hit point, and is charmed by you for 24 hours. While charmed in this way, the humanoid regards you as its trusted leader, but it otherwise retains its statistics and regains hit points as normal. If harmed by you or your companions, or commanded to do something contrary to its nature, the target ceases to be charmed in this way. The flail regains 1d4 + 1 expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16060,7 +16060,7 @@ "fields": { "name": "Shield of Gnawing", "desc": "The wooden rim of this battered oak shield is covered in bite marks. While holding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. In addition, you can use the Shove action as a bonus action while raging.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16079,7 +16079,7 @@ "fields": { "name": "Shield of Missile Reversal", "desc": "While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. When you would be struck by a ranged attack, you can use a reaction to cause the outer surface of the shield to emit a flash of magical energy, sending the missile hurtling back at your attacker. Make a ranged weapon attack roll against your attacker using the attacker's bonuses on the roll. If the attack hits, roll damage as normal, using the attacker's bonuses.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16098,7 +16098,7 @@ "fields": { "name": "Shield of the Fallen", "desc": "Your allies can use this shield to move you when you aren't capable of moving. If you are paralyzed, petrified, or unconscious, and a creature lays you on this shield, the shield rises up under you, bearing you and anything you currently wear or carry. The shield then follows the creature that laid you on the shield for up to 1 hour before gently lowering to the ground. This property otherwise works like the floating disk spell. Once used, the shield can't be used this way again for 1d12 hours.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16117,7 +16117,7 @@ "fields": { "name": "Shifting Shirt", "desc": "This nondescript, smock-like garment changes its appearance on command. While wearing this shirt, you can use a bonus action to speak the shirt's command word and cause it to assume the appearance of a different set of clothing. You decide what it looks like, including color, style, and accessories—from filthy beggar's clothes to glittering court attire. The illusory appearance lasts until you use this property again or remove the shirt.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16136,7 +16136,7 @@ "fields": { "name": "Shimmer Ring", "desc": "This ring is crafted of silver with an inlay of mother-of-pearl. While wearing the ring, you can use an action to speak a command word and cause the ring to shed white and sparkling bright light in a 20-foot radius and dim light for an additional 20 feet. The light lasts until you use a bonus action to repeat the command word. The ring has 6 charges for the following properties. It regains 1d6 charges daily at dawn. Bestow Shimmer. While wearing the ring, you can use a bonus action to expend 1 of its charges to charge a weapon you wield with silvery energy until the start of your next turn. When you hit with an attack using the charged weapon, the target takes an extra 1d6 radiant damage. Shimmering Aura. While wearing the ring, you can use an action to expend 1 of its charges to surround yourself with a silvery, shimmering aura of light for 1 minute. This bright light extends from you in a 5-foot radius and is sunlight. While you are surrounded in this light, you have resistance to radiant damage. Shimmering Bolt. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a bolt of silvery light and makes its attack roll with a +7 bonus. On a hit, the target takes 2d6 radiant damage for each charge you expend.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16155,7 +16155,7 @@ "fields": { "name": "Shoes of the Shingled Canopy", "desc": "These well-made, black leather shoes have brass buckles shaped like chimneys. While wearing the shoes, you have proficiency in the Acrobatics skill. In addition, while falling, you can use a reaction to cast the feather fall spell by holding your nose. The shoes can't be used this way again until the next dusk.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16174,7 +16174,7 @@ "fields": { "name": "Shortbow of Accuracy", "desc": "The normal range of this bow is doubled, but its long range remains the same.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16193,7 +16193,7 @@ "fields": { "name": "Shortsword of Fallen Saints", "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16212,7 +16212,7 @@ "fields": { "name": "Shrutinandan Sitar", "desc": "An exquisite masterpiece of craftsmanship, this instrument is named for a prestigious musical academy. You must be proficient with stringed instruments to use this instrument. A creature that plays the instrument without being proficient with stringed instruments must succeed on a DC 17 Wisdom saving throw or take 2d6 psychic damage. The exquisite sounds of this sitar are known to weaken the power of demons. Each creature that can hear you playing this sitar has advantage on saving throws against the spells and special abilities of demons. Spells. You can use an action to play the sitar and cast one of the following spells from it, using your spell save DC and spellcasting ability: create food and water, fly, insect plague, invisibility, levitate, protection from evil and good, or reincarnate. Once the sitar has been used to cast a spell, you can’t use it to cast that spell again until the next dawn. Summon. If you spend 1 minute playing the sitar, you can summon animals to fight by your side. This works like the conjure animals spell, except you can summon only 1 elephant, 1d2 tigers, or 2d4 wolves.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16231,7 +16231,7 @@ "fields": { "name": "Sickle of Thorns", "desc": "You gain a +1 bonus to attack and damage rolls made with this weapon. As an action, you can swing the sickle to cut nonmagical vegetation up to 60 feet away from you. Each cut is a separate action with one action equaling one swing of your arm. Thus, you can lead a party through a jungle or briar thicket at a normal pace, simply swinging the sickle back and forth ahead of you to clear the path. It can't be used to cut trunks of saplings larger than 1 inch in diameter. It also can't cut through unliving wood (such as a door or wall). When you hit a plant creature with a melee attack with this weapon, that target takes an extra 1d6 slashing damage. This weapon can make very precise cuts, such as to cut fruit or flowers high up in a tree without damaging the tree.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16250,7 +16250,7 @@ "fields": { "name": "Siege Arrow", "desc": "This magic arrow's tip is enchanted to soften stone and warp wood. When this arrow hits an object or structure, it deals double damage then becomes a nonmagical arrow.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16269,7 +16269,7 @@ "fields": { "name": "Signaling Ammunition", "desc": "This magic ammunition creates a trail of light behind it as it flies through the air. If the ammunition flies through the air and doesn't hit a creature, it releases a burst of light that can be seen for up to 1 mile. If the ammunition hits a creature, the creature must succeed on a DC 13 Dexterity saving throw or be outlined in golden light until the end of its next turn. While the creature is outlined in light, it can't benefit from being invisible and any attack against it has advantage if the attacker can see the outlined creature.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16288,7 +16288,7 @@ "fields": { "name": "Signaling Compass", "desc": "The exterior of this clamshell metal case features a polished, mirror-like surface on one side and an ornate filigree on the other. Inside is a magnetic compass. While the case is closed, you can use an action to speak the command word and project a harmless beam of light up to 1 mile. As an action while holding the compass, you can flash a concentrated beam of light at a creature you can see within 60 feet of you. The target must succeed on a DC 13 Constitution saving throw or be blinded for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The compass can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16307,7 +16307,7 @@ "fields": { "name": "Signet of the Magister", "desc": "This heavy, gold ring is set with a round piece of carnelian, which is engraved with the symbol of an eagle perched upon a crown. While wearing the ring, you have advantage on saving throws against enchantment spells and effects. You can use an action to touch the ring to a creature—requiring a melee attack roll unless the creature is willing or incapacitated—and magically brand it with the ring’s crest. When a branded creature harms you, it takes 2d6 psychic damage and must succeed on a DC 15 Wisdom saving throw or be stunned until the end of its next turn. On a success, a creature is immune to this property of the ring for the next 24 hours, but the brand remains until removed. You can remove the brand as an action. The remove curse spell also removes the brand. Once you brand a creature, you can’t brand another creature until the next dawn. Instruments of Law. If you are also attuned to and wearing a Justicar’s mask (see page 149), you can cast the locate creature to detect a branded creature at will from the ring. If you are also attuned to and carrying a rod of the disciplinarian (see page 83), the psychic damage from the brand increases to 3d6 and the save DC increases to 16.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16326,7 +16326,7 @@ "fields": { "name": "Silver Skeleton Key", "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16345,7 +16345,7 @@ "fields": { "name": "Silver String", "desc": "These silver wires magically adjust to fit any stringed instrument, making its sound richer and more melodious. You have advantage on Charisma (Performance) checks made when playing the instrument.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16364,7 +16364,7 @@ "fields": { "name": "Silvered Oar", "desc": "This is a 6-foot-long birch wood oar with leaves and branches carved into its length. The grooves of the carvings are filled with silver, which glows softly when it is outdoors at night. You can activate the oar as an action to have it row a boat unassisted, obeying your mental commands. You can instruct it to row to a destination familiar to you, allowing you to rest while it performs its task. While rowing, it avoids contact with objects on the boat, but it can be grabbed and stopped by anyone at any time. The oar can move a total weight of 2,000 pounds at a speed of 3 miles per hour. It floats back to your hand if the weight of the craft, crew, and carried goods exceeds that weight.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16383,7 +16383,7 @@ "fields": { "name": "Skald's Harp", "desc": "This ornate harp is fashioned from maple and engraved with heroic scenes of warriors battling trolls and dragons inlaid in bone. The harp is strung with fine silver wire and produces a sharp yet sweet sound. You must be proficient with stringed instruments to use this harp. When you play the harp, its music enhances some of your bard class features. Song of Rest. When you play this harp as part of your Song of Rest performance, each creature that spends one or more Hit Dice during the short rest gains 10 temporary hit points at the end of the short rest. The temporary hit points last for 1 hour. Countercharm. When you play this harp as part of your Countercharm performance, you and any friendly creatures within 30 feet of you also have resistance to thunder damage and have advantage on saving throws against being paralyzed. When this property has been used for a total of 10 minutes, this property can’t be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16402,7 +16402,7 @@ "fields": { "name": "Skipstone", "desc": "This small bark-colored stone measures 3/4 of an inch in diameter and weighs 1 ounce. Typically, 1d4 + 1 skipstones are found together. You can use an action to throw the stone up to 60 feet. The stone crumbles to dust on impact and is destroyed. Each creature within a 5-foot radius of where the stone landed must succeed on a DC 15 Constitution saving throw or be thrown forward in time until the start of your next turn. Each creature disappears, during which time it can't act and is protected from all effects. At the start of your next turn, each creature reappears in the space it previously occupied or the nearest unoccupied space, and it is unaware that any time has passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16421,7 +16421,7 @@ "fields": { "name": "Skullcap of Deep Wisdom", "desc": "TThis scholar’s cap is covered in bright stitched runes, and the interior is rough, like bark or sharkskin. This cap has 9 charges. It regains 1d8 + 1 expended charges daily at midnight. While wearing it, you can use an action and expend 1 or more of its charges to cast one of the following spells, using your spell save DC or save DC 15, whichever is higher: destructive resonance (2 charges), nether weapon (4 charges), protection from the void (1 charge), or void strike (3 charges). These spells are Void magic spells, which can be found in Deep Magic for 5th Edition. At the GM’s discretion, these spells can be replaced with other spells of similar levels and similarly related to darkness, destruction, or the Void. Dangers of the Void. The first time you cast a spell from the cap each day, your eyes shine with a sickly green light until you finish a long rest. If you spend at least 3 charges from the cap, a trickle of blood also seeps from beneath the cap until you finish a long rest. In addition, each time you cast a spell from the cap, you must succeed on a DC 12 Intelligence saving throw or your Intelligence is reduced by 2 until you finish a long rest. This DC increases by 1 for each charge you spent to cast the spell. Void Calls to Void. When you cast a spell from the cap while within 1 mile of a creature that understands Void Speech, the creature immediately knows your name, location, and general appearance.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16440,7 +16440,7 @@ "fields": { "name": "Slatelight Ring", "desc": "This decorated thick gold band is adorned with a single polished piece of slate. While wearing this ring, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing this ring increases its range by 60 feet. In addition, you can use an action to cast the faerie fire spell (DC 15) from it. The ring can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16459,7 +16459,7 @@ "fields": { "name": "Sleep Pellet", "desc": "This small brass pellet measures 1/2 of an inch in diameter. Typically, 1d6 + 4 sleep pellets are found together. You can use the pellet as a sling bullet and shoot it at a creature using a sling. On a hit, the pellet is destroyed, and the target must succeed on a DC 13 Constitution saving throw or fall unconscious for 1 minute. Alternatively, you can use an action to swallow the pellet harmlessly. Once before 1 minute has passed, you can use an action to exhale a cloud of sleeping gas in a 15-foot cone. Each creature in the area must succeed on a DC 13 Constitution saving throw or fall unconscious for 1 minute. An unconscious creature awakens if it takes damage or if another creature uses an action to wake it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16478,7 +16478,7 @@ "fields": { "name": "Slick Cuirass", "desc": "This suit of leather armor has a shiny, greasy look to it. While wearing the armor, you have advantage on ability checks and saving throws made to escape a grapple. In addition, while squeezing through a smaller space, you don't have disadvantage on attack rolls and Dexterity saving throws.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16497,7 +16497,7 @@ "fields": { "name": "Slimeblade Greatsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16516,7 +16516,7 @@ "fields": { "name": "Slimeblade Longsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16535,7 +16535,7 @@ "fields": { "name": "Slimeblade Rapier", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16554,7 +16554,7 @@ "fields": { "name": "Slimeblade Scimitar", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16573,7 +16573,7 @@ "fields": { "name": "Slimeblade Shortsword", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16592,7 +16592,7 @@ "fields": { "name": "Sling Stone of Screeching", "desc": "This sling stone is carved with an open mouth that screams in hellish torment when hurled with a sling. Typically, 1d4 + 1 sling stones of screeching are found together. When you fire the stone from a sling, it changes into a screaming bolt, forming a line 5 feet wide that extends out from you to a target within 30 feet. Each creature in the line excluding you and the target must make a DC 13 Constitution saving throw. On a failure, a creature takes 2d8 thunder damage and is knocked prone. On a success, a creature takes half the damage and isn't knocked prone. Make a ranged weapon attack against the target. On a hit, the target takes damage from the sling stone plus 3d8 thunder damage and is knocked prone. Once a sling stone of screeching has dealt its damage to a creature, it becomes a nonmagical sling stone.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16611,7 +16611,7 @@ "fields": { "name": "Slippers of the Cat", "desc": "While you wear these fine, black cloth slippers, you have advantage on Dexterity (Acrobatics) checks to keep your balance. When you fall while wearing these slippers, you land on your feet, and if you succeed on a DC 13 Dexterity saving throw, you take only half the falling damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16630,7 +16630,7 @@ "fields": { "name": "Slipshod Hammer", "desc": "This large smith's hammer appears well-used and rough in make and maintenance. If you use this hammer as part of a set of smith's tools, you can repair metal items in half the time, but the appearance of the item is always sloppy and haphazard. When you roll a 20 on an attack roll made with this magic weapon against a target wearing metal armor, the target's armor is partly damaged and takes a permanent and cumulative –2 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16649,7 +16649,7 @@ "fields": { "name": "Sloughide Bombard", "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16668,7 +16668,7 @@ "fields": { "name": "Smoking Plate of Heithmir", "desc": "This armor is soot-colored plate with grim dwarf visages on the pauldrons. The pauldrons emit curling smoke and are warm to the touch. You gain a +3 bonus to AC and are resistant to cold damage while wearing this armor. In addition, when you are struck by an attack while wearing this armor, you can use a reaction to fill a 30-foot cone in front of you with dense smoke. The smoke spreads around corners, and its area is heavily obscured. Each creature in the smoke when it appears and each creature that ends its turn in the smoke must succeed on a DC 17 Constitution saving throw or be poisoned for 1 minute. A wind of at least 20 miles per hour disperses the smoke. Otherwise, the smoke lasts for 5 minutes. Once used, this property of the armor can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16687,7 +16687,7 @@ "fields": { "name": "Smuggler's Bag", "desc": "This leather-bottomed, draw-string canvas bag appears to be a sturdy version of a common sack. If you use an action to speak the command word while holding the bag, all the contents within shift into an extradimensional space, leaving the bag empty. The bag can then be filled with other items. If you speak the command word again, the bag's current contents transfer into the extradimensional space, and the items in the extradimensional space transfer to the bag. The extradimensional space and the bag itself can each hold up to 1 cubic foot of items or 30 pounds of gear.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16706,7 +16706,7 @@ "fields": { "name": "Smuggler's Coat", "desc": "When you attune yourself to this coat, it conforms to you in a color and style of your choice. It has no visible pockets, but they appear if you place your hands against the side of the coat and expect pockets. Once your hand is withdrawn, the pockets vanish and take anything placed in them to an extradimensional space. The coat can hold up to 40 pounds of material in up to 10 different extradimensional pockets. Nothing can be placed inside the coat that won't fit in a pocket. Retrieving an item from a pocket requires you to use an action. When you reach into the coat for a specific item, the correct pocket always appears with the desired item magically on top. As a bonus action, you can force the pockets to become visible on the coat. While you maintain concentration, the coat displays its four outer pockets, two on each side, four inner pockets, and two pockets on each sleeve. While the pockets are visible, any creature you allow can store or retrieve an item as an action. If the coat is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. Placing the coat inside an extradimensional space, such as a bag of holding, instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16725,7 +16725,7 @@ "fields": { "name": "Snake Basket", "desc": "The bowl of this simple, woven basket has hig-sloped sides, making it almost spherical. A matching woven lid sits on top of it, and leather straps secure the lid through loops on the base. The basket can hold up to 10 pounds. As an action, you can speak the command word and remove the lid to summon a swarm of poisonous snakes. You can't summon the snakes if items are in the basket. The snakes return to the basket, vanishing, after 1 minute or when the swarm is reduced to 0 hit points. If the basket is unavailable or otherwise destroyed, the snakes instead dissipate into a fine sand. The swarm is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the swarm moves and what action it takes on its next turn, or give it general orders, such as to attack your enemies. In the absence of such orders, the swarm acts in a fashion appropriate to its nature. Once the basket has been used to summon a swarm of poisonous snakes, it can't be used in this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16744,7 +16744,7 @@ "fields": { "name": "Soldra's Staff", "desc": "Crafted by a skilled wizard and meant to be a spellcaster's last defense, this staff is 5 feet long, made of yew wood that curves at its top, is iron shod at its mid-section, and capped with a silver dragon's claw that holds a lustrous, though rough and uneven, black pearl. When you make an attack with this staff, it howls and whistles hauntingly like the wind. When you cast a spell from this staff, it chirps like insects on a hot summer night. This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. It has 3 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: faerie fire (1 charge) or gust of wind (2 charges). The staff regains 1d3 expended charges daily at dawn. Once daily, it can regain 1 expended charge by exposing the staff 's pearl to moonlight for 1 minute.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16763,7 +16763,7 @@ "fields": { "name": "Song-Saddle of the Khan", "desc": "Made from enchanted leather and decorated with songs lyrics written in calligraphy, this well-crafted saddle is enchanted with the impossible speed of a great horseman. While this saddle is attached to a horse, that horse's speed is increased by 10 feet. In addition, the horse can Disengage as a bonus action.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16782,7 +16782,7 @@ "fields": { "name": "Soul Bond Chalice", "desc": "The broad, shallow bowl of this silver chalice rests in the outstretched wings of the raven figure that serves as the chalice's stem. The raven's talons, perched on a branch, serve as the chalice's base. A pair of interlocking gold rings adorn the sides of the bowl. As a 1-minute ritual, you and another creature that isn't a construct or undead and that has an Intelligence of 6 or higher can fill the chalice with wine and mix in three drops of blood from each of you. You and the other participant can then drink from the chalice, mingling your spirits and creating a magical connection between you. This connection is unaffected by distance, though it ceases to function if you aren't on the same plane of existence. The bond lasts until one or both of you end it of your own free will (no action required), one or both of you use the chalice to bond with another creature, or one of you dies. You and your bonded partner each gain the following benefits: - You are proficient in each saving throw that your bonded partner is proficient in.\n- If you are within 5 feet of your bonded partner and you fail a saving throw, your bonded partner can make the saving throw as well. If your bonded partner succeeds, you can choose to succeed on the saving throw that you failed.\n- You can use a bonus action to concentrate on the magical bond between you to determine your bonded partner's status. You become aware of the direction and distance to your bonded partner, whether they are unharmed or wounded, any conditions that may be currently affecting them, and whether or not they are afflicted with an addiction, curse, or disease. If you can see your bonded partner, you automatically know this information just by looking at them.\n- If your bonded partner is wounded, you can use a bonus action to take 4d8 slashing damage, healing your bonded partner for the same amount. If your bonded partner is reduced to 0 hit points, you can do this as a reaction.\n- If you are under the effects of a spell that has a duration but doesn't require concentration, you can use an action to touch your bonded partner to share the effects of the spell with them, splitting the remaining duration (rounded down) between you. For example, if you are affected by the mage armor spell and it has 4 hours remaining, you can use an action to touch your bonded partner to give them the benefits of the mage armor spell, reducing the duration to 2 hours on each of you.\n- If your bonded partner dies, you must make a DC 15 Constitution saving throw. On a failure, you drop to 0 hit points. On a success, you are stunned until the end of your next turn by the shock of the bond suddenly being broken. Once the chalice has been used to bond two creatures, it can't be used again until 7 days have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16801,7 +16801,7 @@ "fields": { "name": "Soul Jug", "desc": "If you unstopper the jug, your soul enters it. This works like the magic jar spell, except it has a duration of 9 hours and the jug acts as the gem. The jug must remain unstoppered for you to move your soul to a nearby body, back to the jug, or back to your own body. Possessing a target is an action, and your target can foil the attempt by succeeding on a DC 17 Charisma saving throw. Only one soul can be in the jug at a time. If a soul is in the jug when the duration ends, the jug shatters.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16820,7 +16820,7 @@ "fields": { "name": "Spear of the North", "desc": "This spear has an ivory haft, and tiny snowflakes occasionally fall from its tip. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit with an attack using this magic spear, the target takes an extra 1d6 cold damage. You can use an action to transform the spear into a pair of snow skis. While wearing the snow skis, you have a walking speed of 40 feet when you walk across snow or ice, and you can walk across icy surfaces without needing to make an ability check. You can use a bonus action to transform the skis back into the spear. While the spear is transformed into a pair of skis, you can't make attacks with it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16839,7 +16839,7 @@ "fields": { "name": "Spear of the Stilled Heart", "desc": "This rowan wood spear has a thick knot in the center of the haft that uncannily resembles a petrified human heart. When you hit with an attack using this magic spear, the target takes an extra 1d6 necrotic damage. The spear has 3 charges, and it regains all expended charges daily at dusk. When you hit a creature with an attack using it, you can expend 1 charge to deal an extra 3d6 necrotic damage to the target. You regain hit points equal to the necrotic damage dealt.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16858,7 +16858,7 @@ "fields": { "name": "Spear of the Western Whale", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. Fashioned in the style of a whaling spear, this long, barbed weapon is made from bone and heavy, yet pliant, ash wood. Its point is lined with decorative engravings of fish, clam shells, and waves. While you carry this spear, you have advantage on any Wisdom (Survival) checks to acquire food via fishing, and you have advantage on all Strength (Athletics) checks to swim. When set on the ground, the spear always spins to point west. When thrown in a westerly direction, the spear deals an extra 2d6 cold damage to the target.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16877,7 +16877,7 @@ "fields": { "name": "Spearbiter", "desc": "The front of this shield is fashioned in the shape of a snarling wolf ’s head. Spearbiter (Uncommon). When a creature you can see within 5 feet of you makes a melee weapon attack against you, you can use a reaction to attack the attacker’s weapon, the wolf ’s head animating and snapping its jaws at the weapon. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. If the result is higher than the attacker’s attack roll against you, the attacker’s attack misses you. You can’t use this property of the shield again until the next dawn. Adamantine Spearbiter (Rare). A more powerful version of this shield exists. Its wolf ’s head is fitted with adamantine fangs and appears larger and more menacing. When you use your reaction and animate the wolf ’s head to snap at the attacker’s weapon, you have advantage on the attack roll. In addition, there is no longer a limit to the number of times you can use this property of the shield.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16896,7 +16896,7 @@ "fields": { "name": "Spectral Blade", "desc": "This blade seems to flicker in and out of existence but always strikes true. You gain a +1 bonus to attack and damage rolls made with this magic weapon, and you can choose for its attacks to deal force damage instead of piercing damage. As an action while holding this sword or as a reaction when you deal damage to a creature with it, you can turn incorporeal until the start of your next turn. While incorporeal, you can move through other creatures and objects as if they were difficult terrain. You take 1d10 force damage if you end your turn inside an object.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16915,7 +16915,7 @@ "fields": { "name": "Spell Disruptor Horn", "desc": "This horn is carved with images of a Spellhound (see Tome of Beasts 2) and invokes the antimagic properties of the hound's howl. You use an action to blow this horn, which emits a high-pitched, multiphonic sound that disrupts all magical effects within 30 feet of you. Any spell of 3rd level or lower in the area ends. For each spell of 4th-level or higher in the area, the horn makes a check with a +3 bonus. The DC equals 10 + the spell's level. On a success, the spell ends. In addition, each spellcaster within 30 feet of you and that can hear the horn must succeed on a DC 15 Constitution saving throw or be stunned until the end of its next turn. Once used, the horn can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16934,7 +16934,7 @@ "fields": { "name": "Spice Box of Zest", "desc": "This small, square wooden box is carved with scenes of life in a busy city. Inside, the box is divided into six compartments, each holding a different magical spice. A small wooden spoon is also stored inside the box for measuring. A spice box of zest contains six spoonfuls of each spice when full. You can add one spoonful of a single spice per person to a meal that you or someone else is cooking. The magic of the spices is nullified if you add two or more spices together. If a creature consumes a meal cooked with a spice, it gains a benefit based on the spice used in the meal. The effects last for 1 hour unless otherwise noted.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16953,7 +16953,7 @@ "fields": { "name": "Spice Box Spoon", "desc": "This lacquered wooden spoon carries an entire cupboard within its smooth contours. When you swirl this spoon in any edible mixture, such as a drink, stew, porridge, or other dish, it exudes a flavorful aroma and infuses the mixture. This culinary wonder mimics any imagined variation of simple seasonings, from salt and pepper to aromatic herbs and spice blends. These flavors persist for 1 hour.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16972,7 +16972,7 @@ "fields": { "name": "Spider Grenade", "desc": "Silver runes decorate the hairy legs and plump abdomen of this fist-sized preserved spider. You can use an action to throw the spider up to 30 feet. It explodes on impact and is destroyed. Each creature within a 20-foot radius of where the spider landed must succeed on a DC 13 Dexterity saving throw or be restrained by sticky webbing. A creature restrained by the webs can use its action to make a DC 13 Strength check. If it succeeds, it is no longer restrained. In addition, the webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire. The webs also naturally unravel after 1 hour.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -16991,7 +16991,7 @@ "fields": { "name": "Spider Staff", "desc": "Delicate web-like designs are carved into the wood of this twisted staff, which is often topped with the carved likeness of a spider. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of spiders appears and consumes the staff then vanishes. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: giant insect (4 charges), spider climb (2 charges), or web (2 charges). Spider Swarm. While holding the staff, you can use an action and expend 1 charge to cause a swarm of spiders to appear in a space that you can see within 60 feet of you. The swarm is friendly to you and your companions but otherwise acts on its own. The swarm of spiders remains for 1 minute, until you dismiss it as an action, or until you move more than 100 feet away from it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17010,7 +17010,7 @@ "fields": { "name": "Splint of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17029,7 +17029,7 @@ "fields": { "name": "Splint of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17048,7 +17048,7 @@ "fields": { "name": "Splint of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17067,7 +17067,7 @@ "fields": { "name": "Splinter Staff", "desc": "This roughly made staff has cracked and splintered ends and can be wielded as a magic quarterstaff. When you roll a 20 on an attack roll made with this weapon, you embed a splinter in the target's body, and the pain and discomfort of the splinter is distracting. While the splinter remains embedded, the target has disadvantage on Dexterity, Intelligence, and Wisdom checks, and, if it is concentrating on a spell, it must succeed on a DC 10 Constitution saving throw at the start of each of its turns to maintain concentration on the spell. A creature, including the target, can take its action to remove the splinter by succeeding on a DC 13 Wisdom (Medicine) check.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17086,7 +17086,7 @@ "fields": { "name": "Spyglass of Summoning", "desc": "Arcane runes encircle this polished brass spyglass. You can view creatures and objects as far as 600 feet away through the spyglass, and they are magnified to twice their size. You can magnify your view of a creature or object to up to four times its size by twisting the end of the spyglass.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17105,7 +17105,7 @@ "fields": { "name": "Staff of Binding", "desc": "Made from stout oak with steel bands and bits of chain running its entire length, the staff feels oddly heavy. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff constricts in upon itself and is destroyed. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: arcane lock (2 charges), hold monster (5 charges), hold person (2 charges), lock armor* (2 charges), or planar binding (5 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Unbound. While holding the staff, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17124,7 +17124,7 @@ "fields": { "name": "Staff of Camazotz", "desc": "This staff of petrified wood is topped with a stylized carving of a bat with spread wings, a mouth baring great fangs, and a pair of ruby eyes. It has 10 charges and regains 1d6 + 4 charges daily at dawn. As long as the staff holds at least 1 charge, you can communicate with bats as if you shared a language. Bat and bat-like beasts and monstrosities never attack you unless magically forced to do so or unless you attack them first. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: darkness (2 charges), dominate monster (8 charges), or flame strike (5 charges).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17143,7 +17143,7 @@ "fields": { "name": "Staff of Channeling", "desc": "This plain, wooden staff has 5 charges and regains 1d4 + 1 expended charges daily at dawn. When you cast a spell while holding this staff, you can expend 1 or more of its charges as part of the casting to increase the level of the spell. Expending 1 charge increases the spell's level by 1, expending 3 charges increases the spell's level by 2, and expending 5 charges increases the spell's level by 3. When you increase a spell's level using the staff, the spell casts as if you used a spell slot of a higher level, but you don't expend that higher-level spell slot. You can't use the magic of this staff to increase a spell to a slot level higher than the highest spell level you can cast. For example, if you are a 7th-level wizard, and you cast magic missile, expending a 2nd-level spell slot, you can expend 3 of the staff 's charges to cast the spell as a 4th-level spell, but you can't expend 5 of the staff 's charges to cast the spell as a 5th-level spell since you can't cast 5th-level spells.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17162,7 +17162,7 @@ "fields": { "name": "Staff of Desolation", "desc": "This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. When you hit an object or structure with a melee attack using the staff, you deal double damage (triple damage on a critical hit). The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: thunderwave (1 charge), shatter (2 charges), circle of death (6 charges), disintegrate (6 charges), or earthquake (8 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17181,7 +17181,7 @@ "fields": { "name": "Staff of Dissolution", "desc": "A gray crystal floats in the crook of this twisted staff. The crystal breaks into fragments as it slowly revolves, and those fragments break into smaller pieces then into clouds of dust. In spite of this, the crystal never seems to reduce in size. You have resistance to necrotic damage while you hold this staff. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: blight (4 charges), disintegrate (6 charges), or shatter (2 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17200,7 +17200,7 @@ "fields": { "name": "Staff of Fate", "desc": "One half of this staff is crafted of white ash and capped in gold, while the other is ebony and capped in silver. The staff has 10 charges for the following properties. It regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff splits into two halves with a resounding crack and becomes nonmagical. Fortune. While holding the staff, you can use an action to expend 1 of its charges and touch a creature with the gold end of the staff, giving it good fortune. The target can choose to use its good fortune and have advantage on one ability check, attack roll, or saving throw. This effect ends after the target has used the good fortune three times or when 24 hours have passed. Misfortune. While holding the staff, you can use an action to touch a creature with the silver end of the staff. The target must succeed on a DC 15 Wisdom saving throw or have disadvantage on one of the following (your choice): ability checks, attack rolls, or saving throws. If the target fails the saving throw, the staff regains 1 expended charge. This effect lasts until removed by the remove curse spell or until you use an action to expend 1 of its charges and touch the creature with the gold end of the staff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: augury (2 charges), bane (1 charge), bless (1 charge), remove curse (3 charges), or divination (4 charges). You can also use an action to cast the guidance spell from the staff without using any charges.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17219,7 +17219,7 @@ "fields": { "name": "Staff of Feathers", "desc": "Several eagle feathers line the top of this long, thin staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff explodes into a mass of eagle feathers and is destroyed. Feather Travel. When you are targeted by a ranged attack while holding the staff, you can use a reaction to teleport up to 10 feet to an unoccupied space that you can see. When you do, you briefly transform into a mass of feathers, and the attack misses. Once used, this property can’t be used again until the next dawn. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: conjure animals (2 giant eagles only, 3 charges), fly (3 charges), or gust of wind (2 charges).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17238,7 +17238,7 @@ "fields": { "name": "Staff of Giantkin", "desc": "This stout, oaken staff is 7 feet long, bound in iron, and topped with a carving of a broad, thick-fingered hand. While holding this magic quarterstaff, your Strength score is 20. This has no effect on you if your Strength is already 20 or higher. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the hand slowly clenches into a fist, and the staff becomes a nonmagical quarterstaff.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17257,7 +17257,7 @@ "fields": { "name": "Staff of Ice and Fire", "desc": "Made from the branch of a white ash tree, this staff holds a sapphire at one end and a ruby at the other. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: flaming sphere (2 charges), freezing sphere (6 charges), sleet storm (3 charges), or wall of fire (4 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff and its gems crumble into ash and snow and are destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17276,7 +17276,7 @@ "fields": { "name": "Staff of Master Lu Po", "desc": "This plain-looking, wooden staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 12 charges and regains 1d6 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +1 bonus to attack and damage rolls, loses all other properties, and the next time you roll a 20 on an attack roll using the staff, it explodes, dealing an extra 6d6 force damage to the target then is destroyed. On a 20, the staff regains 1d10 + 2 charges. Some of the staff ’s properties require the target to make a saving throw to resist or lessen the property’s effects. The saving throw DC is equal to 8 + your proficiency bonus + your Wisdom modifier. Bamboo in the Rainy Season. While holding the staff, you can use a bonus action to expend 1 charge to grant the staff the reach property until the start of your next turn. Gate to the Hell of Being Roasted Alive. While holding the staff, you can use an action to expend 1 charge to cast the scorching ray spell from it. When you make the spell’s attacks, you use your Wisdom modifier as your spellcasting ability. Iron Whirlwind. While holding the staff, you use an action to expend 2 charges, causing weighted chains to extend from the end of the staff and reducing your speed to 0 until the end of your next turn. As part of the same action, you can make one attack with the staff against each creature within your reach. If you roll a 1 on any attack, you must immediately make an attack roll against yourself as well before resolving any other attacks against opponents. Monkey Steals the Peach. While holding the staff, you can use a bonus action to expend 1 charge to extend sharp, grabbing prongs from the end of the staff. Until the start of your next turn, each time you hit a creature with the staff, the target takes piercing damage instead of the bludgeoning damage normal for the staff, and the target must make a DC 15 Constitution saving throw. On a failure, the target is incapacitated until the end of its next turn as it suffers crippling pain. On a success, the target has disadvantage on its next attack roll. Rebuke the Disobedient Child. When you are hit by a creature you can see within your reach while holding this staff, you can use a reaction to expend 1 charge to make an attack with the staff against the attacker. Seven Vengeful Demons Death Strike. While holding the staff, you can use an action to expend 7 charges and make one attack against a target within 5 feet of you with the staff. If the attack hits, the target takes bludgeoning damage as normal, and it must make a Constitution saving throw, taking 7d8 necrotic damage on a failed save, or half as much damage on a successful one. If the target dies from this damage, the staff ceases to function as anything other than a magic quarterstaff until the next dawn, but it regains all expended charges when its powers return. A humanoid killed by this damage rises at the start of your next turn as a zombie that is permanently under your command, following your verbal orders to the best of its ability. Swamp Hag's Deadly Breath. While holding the staff, you can use an action to expend 2 charges to expel a 15-foot cone of poisonous gas out of the end of the staff. Each creature in the area must make a Constitution saving throw. On a failure, a creature takes 4d6 poison damage and is poisoned for 1 hour. On a success, a creature takes half the damage and isn’t poisoned. Vaulting Leap of the Clouds. If you are holding the staff and it has at least 1 charge, you can cast the jump spell from it as a bonus action at will without using any charges, but you can target only yourself when you do so.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17295,7 +17295,7 @@ "fields": { "name": "Staff of Midnight", "desc": "Fashioned from a single branch of polished ebony, this sturdy staff is topped by a lustrous jet. While holding it and in dim light or darkness, you gain a +1 bonus to AC and saving throws. This staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: circle of death (6 charges), darkness (2 charges), or vampiric touch (3 charges). You can also use an action to cast the chill touch cantrip from the staff without using any charges. The staff regains 1d6 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dark powder and is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17314,7 +17314,7 @@ "fields": { "name": "Staff of Minor Curses", "desc": "This twisted, wooden staff has 10 charges. While holding it, you can use an action to inflict a minor curse on a creature you can see within 30 feet of you. The target must succeed on a DC 10 Constitution saving throw or be affected by the chosen curse. A minor curse causes a non-debilitating effect or change in the creature, such as an outbreak of boils on one section of the target's skin, intermittent hiccupping, transforming the target's ears into small, donkey-like ears, or similar effects. The curse never interrupts spellcasting and never causes disadvantage on ability checks, attack rolls, or saving throws. The curse lasts for 24 hours or until removed by the remove curse spell or similar magic. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a cloud of noxious gas, and you are targeted with a minor curse of the GM's choice.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17333,7 +17333,7 @@ "fields": { "name": "Staff of Parzelon", "desc": "This tarnished silver staff is tipped with the unholy visage of a fiendish lion skull carved from labradorite—a likeness of the Arch-Devil Parzelon (see Creature Codex). The staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), dominate person (5 charges), lightning bolt (3 charges), locate creature (4 charges), locate object (2 charges), magic missile (1 charge), scrying (5 charges), or suggestion (2 charges). You can also use an action to cast one of the following spells from the staff without using any charges: comprehend languages, detect evil and good, detect magic, identify, or message. Extract Ageless Knowledge. As an action, you can touch the head of the staff to a corpse. You must form a question in your mind as part of this action. If the corpse has an answer to your question, it reveals the information to you. The answer is always brief—no more than one sentence—and very specific to the framed question. The corpse doesn’t need a mouth to answer; you receive the information telepathically. The corpse knows only what it knew in life, and it is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This property doesn’t return the creature’s soul to its body, only its animating spirit. Thus, the corpse can’t learn new information, doesn’t comprehend anything that has happened since it died, and can’t speculate about future events. Once the staff has been used to ask a corpse 5 questions, it can’t be used to extract knowledge from that same corpse again until 3 days have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17352,7 +17352,7 @@ "fields": { "name": "Staff of Portals", "desc": "This iron-shod wooden staff is heavily worn, and it can be wielded as a quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses all of its magic and becomes a nonmagical quarterstaff. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: arcane lock (2 charges), dimension door (4 charges), knock (2 charges), or passwall (5 charges).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17371,7 +17371,7 @@ "fields": { "name": "Staff of Scrying", "desc": "This is a graceful, highly polished wooden staff crafted from willow. A crystal ball tops the staff, and smooth gold bands twist around its shaft. This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: detect thoughts (2 charges), locate creature (4 charges), locate object (2 charges), scrying (5 charges), or true seeing (6 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a bright flash of light erupts from the crystal ball, and the staff vanishes.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17390,7 +17390,7 @@ "fields": { "name": "Staff of Spores", "desc": "Mold and mushrooms coat this gnarled wooden staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff rots into tiny clumps of slimy, organic matter and is destroyed. Mushroom Disguise. While holding the staff, you can use an action to expend 2 charges to cover yourself and anything you are wearing or carrying with a magical illusion that makes you look like a mushroom for up to 1 hour. You can appear to be a mushroom of any color or shape as long as it is no more than one size larger or smaller than you. This illusion ends early if you move or speak. The changes wrought by this effect fail to hold up to physical inspection. For example, if you appear to have a spongy cap in place of your head, someone touching the cap would feel your face or hair instead. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that you are disguised. Speak with Plants. While holding the staff, you can use an action to expend 1 of its charges to cast the speak with plants spell from it. Spore Cloud. While holding the staff, you can use an action to expend 3 charges to release a cloud of spores in a 20-foot radius from you. The spores remain for 1 minute, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. When a creature, other than you, enters the cloud of spores for the first time on a turn or starts its turn there, that creature must succeed on a DC 15 Constitution saving throw or take 1d6 poison damage and become poisoned until the start of its next turn. A wind of at least 10 miles per hour disperses the spores and ends the effect.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17409,7 +17409,7 @@ "fields": { "name": "Staff of the Armada", "desc": "This gold-shod staff is constructed out of a piece of masting from a galleon. The staff can be wielded as a magic quarterstaff that grants you a +1 bonus to attack and damage rolls made with it. While you are on board a ship, this bonus increases to +2. The staff has 10 charges and regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses all of its magic and becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: control water (4 charges), fog cloud (1 charge), gust of wind (2 charges), or water walk (3 charges). You can also use an action to cast the ray of frost cantrip from the staff without using any charges.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17428,7 +17428,7 @@ "fields": { "name": "Staff of the Artisan", "desc": "This simple, wooden staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever. Create Object. You can use an action to expend 2 charges to conjure an inanimate object in your hand or on the ground in an unoccupied space you can see within 10 feet of you. The object can be no larger than 3 feet on a side and weigh no more than 10 pounds, and its form must be that of a nonmagical object you have seen. You can’t create items that ordinarily require a high degree of craftsmanship, such as jewelry, weapons, glass, or armor, unless you have proficiency with the type of artisan’s tools used to craft such objects. The object sheds dim light in a 5-foot radius. The object disappears after 1 hour, when you use this property again, or if the object takes or deals any damage. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: animate objects (5 charges), fabricate (4 charges) or floating disk (1 charge). You can also use an action to cast the mending spell from the staff without using any charges.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17447,7 +17447,7 @@ "fields": { "name": "Staff of the Cephalopod", "desc": "This ugly staff is fashioned from a piece of gnarled driftwood and is crowned with an octopus carved from brecciated jasper. Its gray and red stone tentacles wrap around the top half of the staff. While holding this staff, you have a swimming speed of 30 feet. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the jasper octopus crumbles to dust, and the staff becomes a nonmagical piece of driftwood. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: black tentacles (4 charges), conjure animals (only beasts that can breathe water, 3 charges), darkness (2 charges), or water breathing (3 charges). Ink Cloud. While holding this staff, you can use an action and expend 1 charge to cause an inky, black cloud to spread out in a 30-foot radius from you. The cloud can form in or out of water. The cloud remains for 10 minutes, making the area heavily obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour or a steady current (if underwater) disperses the cloud and ends the effect.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17466,7 +17466,7 @@ "fields": { "name": "Staff of the Four Winds", "desc": "Made of gently twisting ash and engraved with spiraling runes, the staff feels strangely lighter than its size would otherwise suggest. This staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: circle of wind* (1 charge), feather fall (1 charge), gust of wind (2 charges), storm god's doom* (3 charges), wind tunnel* (1 charge), wind walk (6 charges), wind wall (3 charges), or wresting wind* (2 charges). You can also use an action to cast the wind lash* spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to breezes, wind, or movement. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles into ashes and is taken away with the breeze.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17485,7 +17485,7 @@ "fields": { "name": "Staff of the Lantern Bearer", "desc": "An iron hook is affixed to the top of this plain, wooden staff. While holding this staff, you can use an action to cast the light spell from it at will, but the light can emanate only from the staff 's hook. If a lantern hangs from the staff 's hook, you gain the following benefits while holding the staff: - You can control the light of the lantern, lighting or extinguishing it as a bonus action. The lantern must still have oil, if it requires oil to produce a flame.\n- The lantern's flame can't be extinguished by wind or water.\n- If you are a spellcaster, you can use the staff as a spellcasting focus. When you cast a spell that deals fire or radiant damage while using this staff as your spellcasting focus, you gain a +1 bonus to the spell's attack roll, or the spell's save DC increases by 1 (your choice).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17504,7 +17504,7 @@ "fields": { "name": "Staff of the Peaks", "desc": "This staff is made of rock crystal yet weighs the same as a wooden staff. The staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to spell attack rolls. In addition, you are immune to the effects of high altitude and severe cold weather, such as hypothermia and frostbite. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff shatters into fine stone fragments and is destroyed. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: control weather (8 charges), fault line* (6 charges), gust of wind (2 charges), ice storm (4 charges), jump (1 charge), snow boulder* (4 charges), or wall of stone (5 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Stone Strike. When you hit a creature or object made of stone or earth with this staff, you can expend 5 of its charges to shatter the target. The target must make a DC 17 Constitution saving throw, taking an extra 10d6 force damage on a failed save, or half as much damage on a successful one. If the target is an object that is being worn or carried, the creature wearing or carrying it must make the saving throw, but only the object takes the damage. If this damage reduces the target to 0 hit points, it shatters and is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17523,7 +17523,7 @@ "fields": { "name": "Staff of the Scion", "desc": "This unwholesome staff is crafted of a material that appears to be somewhere between weathered wood and dried meat. It weeps beads of red liquid that are thick and sticky like tree sap but smell of blood. A crystalized yellow eye with a rectangular pupil, like the eye of a goat, sits at its top. You can wield the staff as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the eye liquifies as the staff shrivels and twists into a blackened, smoking ruin and is destroyed. Ember Cloud. While holding the staff, you can use an action and expend 2 charges to release a cloud of burning embers from the staff. Each creature within 10 feet of you must make a DC 15 Constitution saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one. The ember cloud remains until the start of your next turn, making the area lightly obscured for creatures other than you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. Fiery Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 fire damage to the target. If you take fire damage while wielding the staff, you have advantage on attack rolls with it until the end of your next turn. While holding the staff, you have resistance to fire damage. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: augury (2 charges), barkskin (2 charges), confusion (4 charges), entangle (1 charge), or wall of fire (4 charges).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17542,7 +17542,7 @@ "fields": { "name": "Staff of the Treant", "desc": "This unassuming staff appears to be little more than the branch of a tree. While holding this staff, your skin becomes bark-like, and the hair on your head transforms into a chaplet of green leaves. This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. Nature’s Guardian. While holding this staff, you have resistance to cold and necrotic damage, but you have vulnerability to fire and radiant damage. In addition, you have advantage on attack rolls against aberrations and undead, but you have disadvantage on saving throws against spells and other magical effects from fey and plant creatures. One with the Woods. While holding this staff, your AC can’t be less than 16, regardless of what kind of armor you are wearing, and you can’t be tracked when you travel through terrain with excessive vegetation, such as a forest or grassland. Tree Friend. While holding this staff, you can use an action to animate a tree you can see within 60 feet of you. The tree uses the statistics of an animated tree and is friendly to you and your companions. Roll initiative for the tree, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don’t directly harm other trees or the natural world. If you don’t issue any commands to the three, it defends itself from hostile creatures but otherwise takes no actions. Once used, this property can’t be used again until the next dawn. Venerated Tree. If you spend 1 hour in silent reverence at the base of a Huge or larger tree, you can use an action to plant this staff in the soil above the tree’s roots and awaken the tree as a treant. The treant isn’t under your control, but it regards you as a friend as long as you don’t harm it or the natural world around it. Roll a d20. On a 1, the staff roots into the ground, growing into a sapling, and losing its magic. Otherwise, after you awaken a treant with this staff, you can’t do so again until 30 days have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17561,7 +17561,7 @@ "fields": { "name": "Staff of the Unhatched", "desc": "This staff carved from a burnt ash tree is topped with an unhatched dragon’s (see Creature Codex) skull. This staff can be wielded as a magic quarterstaff. The staff has 5 charges for the following properties. It regains 1d4 + 1 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed. Necrotic Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d8 necrotic damage to the target. Spells. While holding the staff, you can use an action to expend 1 charge to cast bane or protection from evil and good from it using your spell save DC. You can also use an action to cast one of the following spells from the staff without using any charges, using your spell save DC and spellcasting ability: chill touch or minor illusion.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17580,7 +17580,7 @@ "fields": { "name": "Staff of the White Necromancer", "desc": "Crafted from polished bone, this strange staff is carved with numerous arcane symbols and mystical runes. The staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: false life (1 charge), gentle repose (2 charges), heartstop* (2 charges), death ward (4 charges), raise dead (5 charges), revivify (3 charges), shared sacrifice* (2 charges), or speak with dead (3 charges). You can also use an action to cast the bless the dead* or spare the dying spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the bone staff crumbles to dust.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17599,7 +17599,7 @@ "fields": { "name": "Staff of Thorns", "desc": "This gnarled and twisted oak staff has numerous thorns growing from its surface. Green vines tightly wind their way up along the shaft. The staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the thorns immediately fall from the staff and it becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: barkskin (2 charges), entangle (1 charge), speak with plants (3 charges), spike growth (2 charges), or wall of thorns (6 charges). Thorned Strike. When you hit with a melee attack using the staff, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 piercing damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17618,7 +17618,7 @@ "fields": { "name": "Staff of Voices", "desc": "The length of this wooden staff is carved with images of mouths whispering, speaking, and screaming. This staff can be wielded as a magic quarterstaff. While holding this staff, you can't be deafened, and you can act normally in areas where sound is prevented, such as in the area of a silence spell. Any creature that is not deafened can hear your voice clearly from up to 1,000 feet away if you wish them to hear it. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the mouths carved into the staff give a collective sigh and close, and the staff becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: divine word (7 charges), magic mouth (2 charges), speak with animals (1 charge), speak with dead (3 charges), speak with plants (3 charges), or word of recall (6 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges. Thunderous Shout. While holding the staff, you can use an action to expend 1 charge and release a chorus of mighty shouts in a 15-foot cone from it. Each creature in the area must make a Constitution saving throw. On a failure, a creature takes 2d8 thunder damage and is deafened for 1 minute. On a success, a creature takes half the damage and is deafened until the end of its next turn. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17637,7 +17637,7 @@ "fields": { "name": "Staff of Winter and Ice", "desc": "This pure white, pine staff is topped with an ornately faceted shard of ice. The entire staff is cold to the touch. You have resistance to cold damage while you hold this staff. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its resistance to cold damage but loses all other properties. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: Boreas’s breath* (2 charges), cone of cold (5 charges), curse of Boreas* (6 charges), ice storm (4 charges), flurry* (1 charge), freezing fog* (3 charges), freezing sphere (6 charges), frostbite* (5 charges), frozen razors* (3 charges), gliding step* (1 charge), sleet storm (3 charges), snow boulder* (4 charges), triumph of ice* (7 charges), or wall of ice (6 charges). You can also use an action to cast the chill touch or ray of frost spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM’s discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to ice, snow, or wintry weather. Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it. You have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take cold damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of cold damage based on how far away it is from the point of origin as shown in the following table. On a successful save, a creature takes half as much damage. | Distance from Origin | Damage |\n| --------------------- | -------------------------------------- |\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17656,7 +17656,7 @@ "fields": { "name": "Standard of Divinity (Glaive)", "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17675,7 +17675,7 @@ "fields": { "name": "Standard of Divinity (Halberd)", "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17694,7 +17694,7 @@ "fields": { "name": "Standard of Divinity (Lance)", "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17713,7 +17713,7 @@ "fields": { "name": "Standard of Divinity (Pike)", "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17732,7 +17732,7 @@ "fields": { "name": "Steadfast Splint", "desc": "This armor makes you difficult to manipulate both mentally and physically. While wearing this armor, you have advantage on saving throws against being charmed or frightened, and you have advantage on ability checks and saving throws against spells and effects that would move you against your will.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17751,7 +17751,7 @@ "fields": { "name": "Stinger", "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with an attack using this weapon, you can use a bonus action to inject paralyzing venom in the target. The target must succeed on a DC 15 Constitution saving throw or become paralyzed for 1 minute. It can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Creatures immune to poison are also immune to this dagger's paralyzing venom. The dagger can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17770,7 +17770,7 @@ "fields": { "name": "Stolen Thunder", "desc": "This bodhrán drum is crafted of wood from an ash tree struck by lightning, and its head is made from stretched mammoth skin, painted with a stylized thunderhead. While attuned to this drum, you can use it as an arcane focus. While holding the drum, you are immune to thunder damage. While this drum is on your person but not held, you have resistance to thunder damage. The drum has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. In addition, the drum regains 1 expended charge for every 10 thunder damage you ignore due to the resistance or immunity the drum gives you. If you expend the drum's last charge, roll a 1d20. On a 1, it becomes a nonmagical drum. However, if you make a Charisma (Performance) check while playing the nonmagical drum, and you roll a 20, the passion of your performance rekindles the item's power, restoring its properties and giving it 1 charge. If you are hit by a melee attack while using the drum as a shield, you can use a reaction to expend 1 charge to cause a thunderous rebuke. The attacker must make a DC 17 Constitution saving throw. On a failure, the attacker takes 2d8 thunder damage and is pushed up to 10 feet away from you. On a success, the attacker takes half the damage and isn't pushed. The drum emits a thunderous boom audible out to 300 feet.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17789,7 +17789,7 @@ "fields": { "name": "Stone Staff", "desc": "Sturdy and smooth, this impressive staff is crafted from solid stone. Most stone staves are crafted by dwarf mages and few ever find their way into non-dwarven hands. The staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: earthskimmer* (4 charges), entomb* (6 charges), flesh to stone (6 charges), meld into stone (3 charges), stone shape (4 charges), stoneskin (4 charges), or wall of stone (5 charges). You can also use an action to cast the pummelstone* or true strike spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, hundreds of cracks appear across the staff 's surface and it crumbles into tiny bits of stone.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17808,7 +17808,7 @@ "fields": { "name": "Stonechewer Gauntlets", "desc": "These impractically spiked gauntlets are made from adamantine, are charged with raw elemental earth magic, and limit the range of motion in your fingers. While wearing these gauntlets, you can't carry a weapon or object, and you can't climb or otherwise perform precise actions requiring the use of your hands. When you hit a creature with an unarmed strike while wearing these gauntlets, the unarmed strike deals an extra 1d4 piercing damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17827,7 +17827,7 @@ "fields": { "name": "Stonedrift Staff", "desc": "This staff is fashioned from petrified wood and crowned with a raw chunk of lapis lazuli veined with gold. The staff can be wielded as a magic quarterstaff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed. Spells. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: animate objects (only stone objects, 5 charges), earthquake (8 charges), passwall (only stone surfaces, 5 charges), or stone shape (4 charges). Elemental Speech. You can speak and understand Primordial while holding this staff. Favor of the Earthborn. While holding the staff, you have advantage on Charisma checks made to influence earth elementals or other denizens of the Plane of Earth. Stone Glide. If the staff has at least 1 charge, you have a burrowing speed equal to your walking speed, and you can burrow through earth and stone while holding this staff. While doing so, you don’t disturb the material you move through.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17846,7 +17846,7 @@ "fields": { "name": "Storyteller's Pipe", "desc": "This long-shanked wooden smoking pipe is etched with leaves along the bowl. Although it is serviceable as a typical pipe, you can use an action to blow out smoke and shape the smoke into wispy images for 10 minutes. This effect works like the silent image spell, except its range is limited to a 10-foot cone in front of you, and the images can be no larger than a 5-foot cube. The smoky images last for 3 rounds before fading, but you can continue blowing smoke to create more images for the duration or until the pipe burns through the smoking material in it, whichever happens first.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17865,7 +17865,7 @@ "fields": { "name": "Studded Leather Armor of the Leaf", "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17884,7 +17884,7 @@ "fields": { "name": "Studded-Leather of Warding (+1)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17903,7 +17903,7 @@ "fields": { "name": "Studded-Leather of Warding (+2)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17922,7 +17922,7 @@ "fields": { "name": "Studded-Leather of Warding (+3)", "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17941,7 +17941,7 @@ "fields": { "name": "Sturdy Crawling Cloak", "desc": "This unusual cloak is made of many overlapping, broad strips of thick cloth.\nCrawling Cloak (Common). When you are prone, you can animate the cloak and have it pull you along the ground, allowing you to ignore the extra movement cost for crawling. You can still only move up to your normal movement rate and can’t stand up from prone unless you still have at least half your movement remaining after moving.\n\nSturdy Crawling Cloak (Uncommon). This more powerful version of the crawling cloak also allows you to use the prehensile strips of the cloak to climb, giving you a climbing speed of 20 feet. If you already have a climbing speed, the cloak increases that speed by 10 feet. When using the cloak, you can keep your hands free while climbing.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17960,7 +17960,7 @@ "fields": { "name": "Sturdy Scroll Tube", "desc": "This ornate scroll case is etched with arcane symbology. Scrolls inside this case are immune to damage and are protected from the elements, as long as the scroll case remains closed and intact. The scroll case itself has immunity to all forms of damage, except force damage and thunder damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17979,7 +17979,7 @@ "fields": { "name": "Stygian Crook", "desc": "This staff of gnarled, rotted wood ends in a hooked curvature like a twisted shepherd's crook. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: bestow curse (3 charges), blight (4 charges), contagion (5 charges), false life (1 charge), or hallow (5 charges). The staff regains 1d6 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff turns to live maggots and is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -17998,7 +17998,7 @@ "fields": { "name": "Superior Potion of Troll Blood", "desc": "When you drink this potion, you regain 5 hit points at the start of each of your turns. After it has restored 50 hit points, the potion's effects end.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18017,7 +18017,7 @@ "fields": { "name": "Supreme Potion of Troll Blood", "desc": "When you drink this potion, you regain 8 hit points at the start of each of your turns. After it has restored 80 hit points, the potion's effects end.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18036,7 +18036,7 @@ "fields": { "name": "Survival Knife", "desc": "When holding this sturdy knife, you can use an action to transform it into a crowbar, a fishing rod, a hunting trap, or a hatchet (mainly a chopping tool; if wielded as a weapon, it uses the same statistics as this dagger, except it deals slashing damage). While holding or touching the transformed knife, you can use an action to transform it into another form or back into its original shape.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18055,7 +18055,7 @@ "fields": { "name": "Swarmfoe Hide", "desc": "While wearing this armor festooned with thin draconic scales, you gain a +1 bonus to AC. You can use the scales as a melee weapon while wearing the armor. You have proficiency with the scales and deal 1d4 slashing damage on a hit (your Strength modifier applies to the attack and damage rolls as normal). Swarms don't have resistance to the damage dealt by the scales. In addition, if a swarm occupies your space, you can attack with the scales as a bonus action.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18074,7 +18074,7 @@ "fields": { "name": "Swarmfoe Leather", "desc": "While wearing this armor festooned with thin draconic scales, you gain a +1 bonus to AC. You can use the scales as a melee weapon while wearing the armor. You have proficiency with the scales and deal 1d4 slashing damage on a hit (your Strength modifier applies to the attack and damage rolls as normal). Swarms don't have resistance to the damage dealt by the scales. In addition, if a swarm occupies your space, you can attack with the scales as a bonus action.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18093,7 +18093,7 @@ "fields": { "name": "Swashing Plumage", "desc": "This plumage, a colorful bouquet of tropical hat feathers, has a small pin at its base and can be affixed to any hat or headband. Due to its distracting, ostentatious appearance, creatures hostile to you have disadvantage on opportunity attacks against you.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18112,7 +18112,7 @@ "fields": { "name": "Sweet Nature", "desc": "You have a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a humanoid with this weapon, the humanoid takes an extra 1d6 slashing damage. If you use the axe to damage a plant creature or an object made of wood, the axe's blade liquifies into harmless honey, and it can't be used again until 24 hours have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18131,7 +18131,7 @@ "fields": { "name": "Swolbold Wraps", "desc": "When wearing these cloth wraps, your forearms and hands swell to half again their normal size without negatively impacting your fine motor skills. You gain a +1 bonus to attack and damage rolls made with unarmed strikes while wearing these wraps. In addition, your unarmed strike uses a d4 for damage and counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage. When you hit a target with an unarmed strike and the target is no more than one size larger than you, you can use a bonus action to automatically grapple the target. Once this special bonus action has been used three times, it can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18150,7 +18150,7 @@ "fields": { "name": "Tactile Unguent", "desc": "Cat burglars, gearworkers, locksmiths, and even street performers use this gooey substance to increase the sensitivity of their hands. When found, a container contains 1d4 + 1 doses. As an action, one dose can be applied to a creature's hands. For 1 hour, that creature has advantage on Dexterity (Sleight of Hand) checks and on tactile Wisdom (Perception) checks.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18169,7 +18169,7 @@ "fields": { "name": "Tailor's Clasp", "desc": "This ornate brooch is shaped like a jeweled weaving spider or scarab beetle. While it is attached to a piece of fabric, it can be activated as an action. When activated, it skitters across the fabric, mending any tears, adjusting frayed hems, and reinforcing seams. This item works only on nonmagical objects made out of fibrous material, such as clothing, rope, and rugs. It continues repairing the fabric for up to 10 minutes or until the repairs are complete. Once used, it can't be used again until 1 hour has passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18188,7 +18188,7 @@ "fields": { "name": "Talisman of the Snow Queen", "desc": "The coldly beautiful and deadly Snow Queen (see Tome of Beasts) grants these delicate-looking snowflake-shaped mithril talismans to her most trusted spies and servants. Each talisman is imbued with a measure of her power and is magically tied to the queen. It can be affixed to any piece of clothing or worn as an amulet. While wearing the talisman, you gain the following benefits: • You have resistance to cold damage. • You have advantage on Charisma checks when interacting socially with creatures that live in cold environments, such as frost giants, winter wolves, and fraughashar (see Tome of Beasts). • You can use an action to cast the ray of frost cantrip from it at will, using your level and using Intelligence as your spellcasting ability. Blinding Snow. While wearing the talisman, you can use an action to create a swirl of snow that spreads out from you and into the eyes of nearby creatures. Each creature within 15 feet of you must succeed on a DC 17 Constitution saving throw or be blinded until the end of its next turn. Once used, this property can’t be used again until the next dawn. Eyes of the Queen. While you are wearing the talisman, the Snow Queen can use a bonus action to see through your eyes if both of you are on the same plane of existence. This effect lasts until she ends it as a bonus action or until you die. You can’t make a saving throw to prevent the Snow Queen from seeing through your eyes. However, being more than 5 feet away from the talisman ends the effect, and becoming blinded prevents her from seeing anything further than 10 feet away from you. When the Snow Queen is looking through your eyes, the talisman sheds an almost imperceptible pale blue glow, which you or any creature within 10 feet of you notice with a successful DC 20 Wisdom (Perception) check. An identify spell fails to reveal this property of the talisman, and this property can’t be removed from the talisman except by the Snow Queen herself.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18207,7 +18207,7 @@ "fields": { "name": "Talking Tablets", "desc": "These two enchanted brass tablets each have gold styli chained to them by small, silver chains. As long as both tablets are on the same plane of existence, any message written on one tablet with its gold stylus appears on the other tablet. If the writer writes words in a language the reader doesn't understand, the tablets translate the words into a language the reader can read. While holding a tablet, you know if no creature bears the paired tablet. When the tablets have transferred a total of 150 words between them, their magic ceases to function until the next dawn. If one of the tablets is destroyed, the other one becomes a nonmagical block of brass worth 25 gp.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18226,7 +18226,7 @@ "fields": { "name": "Talking Torches", "desc": "These heavy iron and wood torches are typically found in pairs or sets of four. While holding this torch, you can use an action to speak a command word and cause it to produce a magical, heatless flame that sheds bright light in a 20-foot radius and dim light for an additional 20 feet. You can use a bonus action to repeat the command word to extinguish the light. If more than one talking torch remain lit and touching for 1 minute, they become magically bound to each other. A torch remains bound until the torch is destroyed or until it is bound to another talking torch or set of talking torches. While holding or carrying the torch, you can communicate telepathically with any creature holding or carrying one of the torches bound to your torch, as long as both torches are lit and within 5 miles of each other.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18245,7 +18245,7 @@ "fields": { "name": "Tamer's Whip", "desc": "This whip is braided from leather tanned from the hides of a dozen different, dangerous beasts. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you attack a beast using this weapon, you have advantage on the attack roll.\nWhen you roll a 20 on the attack roll made with this weapon and the target is a beast, the beast must succeed on a DC 15 Wisdom saving throw or become charmed or frightened (your choice) for 1 minute.\nIf the creature is charmed, it understands and obeys one-word commands, such as “attack,” “approach,” “stay,” or similar. If it is charmed and understands a language, it obeys any command you give it in that language. The charmed or frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18264,7 +18264,7 @@ "fields": { "name": "Tarian Graddfeydd Ddraig", "desc": "This metal shield has an outer coating consisting of hardened resinous insectoid secretions embedded with flakes from ground dragon scales collected from various dragon wyrmlings and one dragon that was killed by shadow magic. While holding this shield, you gain a +2 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. In addition, you have resistance to acid, cold, fire, lightning, necrotic, and poison damage dealt by the breath weapons of dragons. While wielding the shield in an area of dim or bright light, you can use an action to reflect the light off the shield's dragon scale flakes to cause a cone of multicolored light to flash from it (15-foot cone if in dim light; 30-foot cone if in bright light). Each creature in the area must make a DC 17 Dexterity saving throw. For each target, roll a d6 and consult the following table to determine which color is reflected at it. The shield can't be used this way again until the next dawn. | d6 | Effect |\n| --- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 1 | **Red**. The target takes 6d6 fire damage on a failed save, or half as much damage on a successful one. |\n| 2 | **White**. The target takes 4d6 cold damage and is restrained until the start of your next turn on a failed save, or half as much damage and is not restrained on a successful one. |\n| 3 | **Blue**. The target takes 4d6 lightning damage and is paralyzed until the start of your next turn on a failed save, or half as much damage and is not paralyzed on a successful one. |\n| 4 | **Black**. The target takes 4d6 acid damage on a failed save, or half as much damage on a successful one. If the target failed the save, it also takes an extra 2d6 acid damage on the start of your next turn. |\n| 5 | **Green**. The target takes 4d6 poison damage and is poisoned until the start of your next turn on a failed save, or half as much damage and is not poisoned on a successful one. |\n| 6 | **Shadow**. The target takes 4d6 necrotic damage and its Strength score is reduced by 1d4 on a failed save, or half as much damage and does not reduce its Strength score on a successful one. The target dies if this Strength reduction reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest. |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18283,7 +18283,7 @@ "fields": { "name": "Teapot of Soothing", "desc": "This cast iron teapot is adorned with the simple image of fluffy clouds that seem to slowly shift and move across the pot as if on a gentle breeze. Any water placed inside the teapot immediately becomes hot tea at the perfect temperature, and when poured, it becomes the exact flavor the person pouring it prefers. The teapot can serve up to 6 creatures, and any creature that spends 10 minutes drinking a cup of the tea gains 2d6 temporary hit points for 24 hours. The creature pouring the tea has advantage on Charisma (Persuasion) checks for 10 minutes after pouring the first cup. Once used, the teapot can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18302,7 +18302,7 @@ "fields": { "name": "Tenebrous Flail of Screams", "desc": "The handle of this flail is made of mammoth bone wrapped in black leather made from bat wings. Its pommel is adorned with raven's claws, and the head of the flail dangles from a flexible, preserved braid of entrails. The head is made of petrified wood inlaid with owlbear and raven beaks. When swung, the flail lets out an otherworldly screech. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with this flail, the target takes an extra 1d6 psychic damage. When you roll a 20 on an attack roll made with this weapon, the target must succeed on a DC 15 Wisdom saving throw or be incapacitated until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18321,7 +18321,7 @@ "fields": { "name": "Tenebrous Mantle", "desc": "This black cloak appears to be made of pure shadow and shrouds you in darkness. While wearing it, you gain the following benefits: - You have advantage on Dexterity (Stealth) checks.\n- You have resistance to necrotic damage.\n- You can cast the darkness and misty step spells from it at will. Casting either spell from the cloak requires an action. Instead of a silvery mist when you cast misty step, you are engulfed in the darkness of the cloak and emerge from the cloak's darkness at your destination.\n- You can use an action to cast the black tentacles or living shadows (see Deep Magic for 5th Edition) spell from it. The cloak can't be used this way again until the following dusk.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18340,7 +18340,7 @@ "fields": { "name": "Thirsting Scalpel", "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon, which deals slashing damage instead of piercing damage. When you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 2d6 slashing damage. If the target is a creature other than an undead or construct, it must succeed on a DC 13 Constitution saving throw or lose 2d6 hit points at the start of each of its turns from a bleeding wound. Any creature can take an action to stanch the wound with a successful DC 11 Wisdom (Medicine) check. The wound also closes if the target receives magical healing. In addition, once every 7 days while the scalpel is on your person, you must succeed on a DC 15 Charisma saving throw or become driven to feed blood to the scalpel. You have advantage on attack rolls with the scalpel until it is sated. The dagger is sated when you roll a 20 on an attack roll with it, after you deal 14 slashing damage with it, or after 1 hour elapses. If the hour elapses and you haven't sated its thirst for blood, the dagger deals 14 slashing damage to you. If the dagger deals damage to you as a result of the curse, you can't heal the damage for 24 hours. The remove curse spell removes your attunement to the item and frees you from the curse. Alternatively, casting the banishment spell on the dagger forces the bearded devil's essence to leave it. The scalpel then becomes a +1 dagger with no other properties.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18359,7 +18359,7 @@ "fields": { "name": "Thirsting Thorn", "desc": "You gain a +1 bonus to attack and damage rolls made with this weapon. In addition, while carrying the sword, you have resistance to necrotic damage. Each time you reduce a creature to 0 hit points with this weapon, you can regain 2d8+2 hit points. Each time you regain hit points this way, you must succeed a DC 12 Wisdom saving throw or be incapacitated by terrible visions until the end of your next turn. If you reach your maximum hit points using this effect, you automatically fail the saving throw. As long as you remain cursed, you are unwilling to part with the sword, keeping it within reach at all times. If you have not damaged a creature with this sword within the past 24 hours, you have disadvantage on attack rolls with weapons other than this one as its hunger for blood drives you to slake its thirst.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18378,7 +18378,7 @@ "fields": { "name": "Thornish Nocturnal", "desc": "The ancient elves constructed these nautical instruments to use as navigational aids on all their seagoing vessels. The knowledge of their manufacture has been lost, and few of them remain. While attuned to the nocturnal, you can spend 1 minute using the nocturnal to determine the precise local time, provided you can see the sun or stars. You can use an action to protect up to four vessels that are within 1 mile of the nocturnal from unwanted effects of the local weather for 1 hour. For example, vessels protected by the nocturnal can't be damaged by storms or blown onto jagged rocks by adverse wind. To do so, you must have spent at least 1 hour aboard each of the controlled vessels, performing basic sailing tasks and familiarizing yourself with the vessel.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18397,7 +18397,7 @@ "fields": { "name": "Three-Section Boots", "desc": "These boots are often decorated with eyes, flames, or other bold patterns such as lightning bolts or wheels. When you step onto water, air, or stone, you can use a reaction to speak the boots' command word. For 1 hour, you gain the effects of the meld into stone, water walk, or wind walk spell, depending on the type of surface where you stepped. The boots can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18416,7 +18416,7 @@ "fields": { "name": "Throttler's Gauntlets", "desc": "These durable leather gloves allow you to choke a creature you are grappling, preventing them from speaking. While you are grappling a creature, you can use a bonus action to throttle it. The creature takes damage equal to your proficiency bonus and can't speak coherently or cast spells with verbal components until the end of its next turn. You can choose to not damage the creature when you throttle it. A creature can still breathe, albeit uncomfortably, while throttled.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18435,7 +18435,7 @@ "fields": { "name": "Thunderous Kazoo", "desc": "You can use an action to speak the kazoo's command word and then hum into it, which emits a thunderous blast, audible out to 1 mile, at one Large or smaller creature you can see within 30 feet of you. The target must make a DC 13 Constitution saving throw. On a failure, a creature is pushed away from you and is deafened and frightened of you until the start of your next turn. A Small creature is pushed up to 30 feet, a Medium creature is pushed up to 20 feet, and a Large creature is pushed up to 10 feet. On a success, a creature is pushed half the distance and isn't deafened or frightened. The kazoo can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18454,7 +18454,7 @@ "fields": { "name": "Tick Stop Watch", "desc": "While holding this silver pocketwatch, you can use an action to magically stop a single clockwork device or construct within 10 feet of you. If the target is an object, it freezes in place, even mid-air, for up to 1 minute or until moved. If the target is a construct, it must succeed on a DC 15 Wisdom saving throw or be paralyzed until the end of its next turn. The pocketwatch can't be used this way again until the next dawn. The pocketwatch must be wound at least once every 24 hours, just like a normal pocketwatch, or its magic ceases to function. If left unwound for 24 hours, the watch loses its magic, but the power returns 24 hours after the next time it is wound.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18473,7 +18473,7 @@ "fields": { "name": "Timeworn Timepiece", "desc": "This tarnished silver pocket watch seems to be temporally displaced and allows for limited manipulation of time. The timepiece has 3 charges, and it regains 1d3 expended charges daily at midnight. While holding the timepiece, you can use your reaction to expend 1 charge after you or a creature you can see within 30 feet of you makes an attack roll, an ability check, or a saving throw to force the creature to reroll. You make this decision after you see whether the roll succeeds or fails. The target must use the result of the second roll. Alternatively, you can expend 2 charges as a reaction at the start of another creature's turn to swap places in the Initiative order with that creature. An unwilling creature that succeeds on a DC 15 Charisma saving throw is unaffected.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18492,7 +18492,7 @@ "fields": { "name": "Tincture of Moonlit Blossom", "desc": "This potion is steeped using a blossom that grows only in the moonlight. When you drink this potion, your shadow corruption (see Midgard Worldbook) is reduced by three levels. If you aren't using the Midgard setting, you gain the effect of the greater restoration spell instead.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18511,7 +18511,7 @@ "fields": { "name": "Tipstaff", "desc": "To the uninitiated, this short ebony baton resembles a heavy-duty truncheon with a cord-wrapped handle and silver-capped tip. The weapon has 5 charges, and it regains 1d4 + 1 expended charges daily at dawn. When you hit a creature with a melee attack with this magic weapon, you can expend 1 charge to force the target to make a DC 15 Constitution saving throw. If the creature took 20 damage or more from this attack, it has disadvantage on the saving throw. On a failure, the target is paralyzed for 1 minute. It can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18530,7 +18530,7 @@ "fields": { "name": "Tome of Knowledge", "desc": "This book contains mnemonics and other tips to better perform a specific mental task, and its words are charged with magic. If you spend 24 hours over a period of 3 days or fewer studying the tome and practicing its instructions, you gain proficiency in the Intelligence, Wisdom, or Charisma-based skill (such as History, Insight, or Intimidation) associated with the book. The tome then loses its magic, but regains it in ten years.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18549,7 +18549,7 @@ "fields": { "name": "Tonic for the Troubled Mind", "desc": "This potion smells and tastes of lavender and chamomile. When you drink it, it removes any short-term madness afflicting you, and it suppresses any long-term madness afflicting you for 8 hours.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18568,7 +18568,7 @@ "fields": { "name": "Tonic of Blandness", "desc": "This deeply bitter, black, oily liquid deadens your sense of taste. When you drink this tonic, you can eat all manner of food without reaction, even if the food isn't to your liking, for 1 hour. During this time, you automatically fail Wisdom (Perception) checks that rely on taste. This tonic doesn't protect you from the effects of consuming poisoned or spoiled food, but it can prevent you from detecting such impurities when you taste the food.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18587,7 +18587,7 @@ "fields": { "name": "Toothsome Purse", "desc": "This common-looking leather pouch holds a nasty surprise for pickpockets. If a creature other than you reaches into the purse, small, sharp teeth emerge from the mouth of the bag. The bag makes a melee attack roll against that creature with a +3 bonus ( 1d20+3). On a hit, the target takes 2d4 piercing damage. If the bag rolls a 20 on the attack roll, the would-be pickpocket has disadvantage on any Dexterity checks made with that hand until the damage is healed. If the purse is lifted entirely from you, the purse continues to bite at the thief each round until it is dropped or until it is placed where it can't reach its target. It bites at any creature, other than you, who attempts to pick it up, unless that creature genuinely desires to return the purse and its contents to you. The purse attacks only if it is attuned to a creature. A purse that isn't attuned to a creature lies dormant and doesn't attack.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18606,7 +18606,7 @@ "fields": { "name": "Torc of the Comet", "desc": "This silver torc is set with a large opal on one end, and it thins to a point on the other. While wearing the torc, you have resistance to cold damage, and you can use an action to speak the command word, causing the torc to shed bluish-white bright light in a 20-foot radius and dim light for an additional 20 feet. The light lasts until you use a bonus action to speak the command word again. The torc has 4 charges. You can use an action to expend 1 charge and fire a tiny comet from the torc at a target you can see within 120 feet of you. The torc makes a ranged attack roll with a +7 bonus ( 1d20+7). On a hit, the target takes 2d6 bludgeoning damage and 2d6 cold damage. At night, the cold damage dealt by the comets increases to 6d6. The torc regain 1d4 expended charges daily at dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18625,7 +18625,7 @@ "fields": { "name": "Tracking Dart", "desc": "When you hit a Large or smaller creature with an attack using this colorful magic dart, the target is splattered with magical paint, which outlines the target in a dim glow (your choice of color) for 1 minute. Any attack roll against a creature outlined in the glow has advantage if the attacker can see the creature, and the creature can't benefit from being invisible. The creature outlined in the glow can end the effect early by using an action to wipe off the splatter of paint.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18644,7 +18644,7 @@ "fields": { "name": "Treebleed Bucket", "desc": "This combination sap bucket and tap is used to extract sap from certain trees. After 1 hour, the bucketful of sap magically changes into a potion. The potion remains viable for 24 hours, and its type depends on the tree as follows: oak (potion of resistance), rowan (potion of healing), willow (potion of animal friendship), and holly (potion of climbing). The treebleed bucket can magically change sap 20 times, then the bucket and tap become nonmagical.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18663,7 +18663,7 @@ "fields": { "name": "Trident of the Vortex", "desc": "This bronze trident has a shaft of inlaid blue pearl. You gain a +2 bonus to attack and damage rolls with this magic weapon. Whirlpool. While wielding the trident underwater, you can use an action to speak its command word and cause the water around you to whip into a whirlpool for 1 minute. For the duration, each creature that enters or starts its turn in a space within 10 feet of you must succeed on a DC 15 Strength saving throw or be restrained by the whirlpool. The whirlpool moves with you, and creatures restrained by it move with it. A creature within 5 feet of the whirlpool can pull a creature out of it by taking an action to make a DC 15 Strength check and succeeding. A restrained creature can try to escape by taking an action to make a DC 15 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the whirlpool. Once used, this property can’t be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18682,7 +18682,7 @@ "fields": { "name": "Trident of the Yearning Tide", "desc": "The barbs of this trident are forged from mother-of-pearl and its shaft is fashioned from driftwood. You gain a +2 bonus on attack and damage rolls made with this magic weapon. While holding the trident, you can breathe underwater. The trident has 3 charges for the following other properties. It regains 1d3 expended charges daily at dawn. Call Sealife. While holding the trident, you can use an action to expend 3 of its charges to cast the conjure animals spell from it. The creatures you summon must be beasts that can breathe water. Yearn for the Tide. When you hit a creature with a melee attack using the trident, you can use a bonus action to expend 1 charge to force the target to make a DC 17 Wisdom saving throw. On a failure, the target must spend its next turn leaping into the nearest body of water and swimming toward the bottom. A creature that can breathe underwater automatically succeeds on the saving throw. If no water is in the target’s line of sight, the target automatically succeeds on the saving throw.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18701,7 +18701,7 @@ "fields": { "name": "Troll Skin Hide", "desc": "While wearing troll skin armor, you gain a +1 bonus to AC, and you stabilize whenever you are dying at the start of your turn. In addition, you can use an action to regenerate for 1 minute. While regenerating, you regain 2 hit points at the start of each of your turns. The armor can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18720,7 +18720,7 @@ "fields": { "name": "Troll Skin Leather", "desc": "While wearing troll skin armor, you gain a +1 bonus to AC, and you stabilize whenever you are dying at the start of your turn. In addition, you can use an action to regenerate for 1 minute. While regenerating, you regain 2 hit points at the start of each of your turns. The armor can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18739,7 +18739,7 @@ "fields": { "name": "Trollsblood Elixir", "desc": "This thick, pink liquid sloshes and moves even when the bottle is still. When you drink this potion, you regenerate lost hit points for 1 hour. At the start of your turn, you regain 5 hit points. If you take acid or fire damage, the potion doesn't function at the start of your next turn. If you lose a limb, you can reattach it by holding it in place for 1 minute. For the duration, you can die from damage only by being reduced to 0 hit points and not regenerating on your turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18758,7 +18758,7 @@ "fields": { "name": "Tyrant's Whip", "desc": "This wicked whip has 3 charges and regains all expended charges daily at dawn. When you hit with an attack using this magic whip, you can use a bonus action to expend 1 of its charges to cast the command spell (save DC 13) from it on the creature you hit. If the attack is a critical hit, the target has disadvantage on the saving throw.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18777,7 +18777,7 @@ "fields": { "name": "Umber Beans", "desc": "These magical beans have a modest ochre or umber hue, and they are about the size and weight of walnuts. Typically, 1d4 + 4 umber beans are found together. You can use an action to throw one or more beans up to 10 feet. When the bean lands, it grows into a creature you determine by rolling a d10 and consulting the following table. ( Umber Beans#^creature) The creature vanishes at the next dawn or when it takes bludgeoning, piercing, or slashing damage. The bean is destroyed when the creature vanishes. The creature is illusory, and you are aware of this. You can use a bonus action to command how the illusory creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature. The creature's attacks deal psychic damage, though the target perceives the damage as the type appropriate to the illusion, such as slashing for a vrock's talons. A creature with truesight or that uses its action to examine the illusion can determine that it is an illusion with a successful DC 13 Intelligence (Investigation) check. If a creature discerns the illusion for what it is, the creature sees the illusion as faint and the illusion can't attack that creature. | dice: 1d10 | Creature |\n| ---------- | ---------------------------- |\n| 1 | Dretch |\n| 2-3 | 2 Shadows |\n| 4-6 | Chuul |\n| 7-8 | Vrock |\n| 9 | Hezrou or Psoglav |\n| 10 | Remorhaz or Voidling |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18796,7 +18796,7 @@ "fields": { "name": "Umbral Band", "desc": "This blackened steel ring is cold to the touch. While wearing this ring, you have darkvision out to a range of 30 feet, and you have advantage on Dexterity (Stealth) checks while in an area of dim light or darkness.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18815,7 +18815,7 @@ "fields": { "name": "Umbral Chopper", "desc": "This simple axe looks no different from a standard forester's tool. A single-edged head is set into a slot in the haft and bound with strong cord. The axe was found by a timber-hauling crew who disappeared into the shadows of a cave deep in an old forest. Retrieved in the dark of the cave, the axe was found to possess disturbing magical properties. You gain a +1 bonus to attack and damage rolls made with this weapon, which deals necrotic damage instead of slashing damage. When you hit a plant creature with an attack using this weapon, the target must make a DC 15 Constitution saving throw. On a failure, the creature takes 4d6 necrotic damage and its speed is halved until the end of its next turn. On a success, the creature takes half the damage and its speed isn't reduced.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18834,7 +18834,7 @@ "fields": { "name": "Umbral Lantern", "desc": "This item looks like a typical hooded brass lantern, but shadowy forms crawl across its surface and it radiates darkness instead of light. The lantern can burn for up to 3 hours each day. While the lantern burns, it emits darkness as if the darkness spell were cast on it but with a 30-foot radius.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18853,7 +18853,7 @@ "fields": { "name": "Umbral Staff", "desc": "Made of twisted darkwood and covered in complex runes and sigils, this powerful staff seems to emanate darkness. You have resistance to radiant damage while you hold this staff. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at midnight. If you expend the last charge, roll a d20. On a 1, the staff retains its ability to cast the claws of darkness*, douse light*, and shadow blindness* spells but loses all other properties. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: become nightwing* (6 charges), black hand* (4 charges), black ribbons* (1 charge), black well* (6 charges), cloak of shadow* (1 charge), darkvision (2 charges), darkness (2 charges), dark dementing* (5 charges), dark path* (2 charges), darkbolt* (2 charges), encroaching shadows* (6 charges), night terrors* (4 charges), shadow armor* (1 charge), shadow hands* (1 charge), shadow puppets* (2 charges), or slither* (2 charges). You can also use an action to cast the claws of darkness*, douse light*, or shadow blindness* spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM’s discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness, shadows, or terror. Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion of darkness (as the darkness spell) that expands to fill a 30-foot-radius sphere centered on it. You have a 50 percent chance to instantly travel to the Plane of Shadow, avoiding the explosion. If you fail to avoid the effect, you take necrotic damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin as shown in the following table. On a successful save, a creature takes half as much damage. | Distance from Origin | Damage |\n| --------------------- | -------------------------------------- |\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18872,7 +18872,7 @@ "fields": { "name": "Undine Plate", "desc": "This bright green plate armor is embossed with images of various marine creatures, such as octopuses and rays. While wearing this armor, you have a swimming speed of 40 feet, and you don't have disadvantage on Dexterity (Stealth) checks while underwater.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18891,7 +18891,7 @@ "fields": { "name": "Unerring Dowsing Rod", "desc": "This dark, gnarled willow root is worn and smooth. When you hold this rod in both hands by its short, forked branches, you feel it gently tugging you toward the closest source of fresh water. If the closest source of fresh water is located underground, the dowsing rod directs you to a spot above the source then dips its tip down toward the ground. When you use this dowsing rod on the Material Plane, it directs you to bodies of water, such as creeks and ponds. When you use it in areas where fresh water is much more difficult to find, such as a desert or the Plane of Fire, it directs you to bodies of water, but it might also direct you toward homes with fresh water barrels or to creatures with containers of fresh water on them.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18910,7 +18910,7 @@ "fields": { "name": "Unquiet Dagger", "desc": "Forged by creatures with firsthand knowledge of what lies between the stars, this dark gray blade sometimes appears to twitch or ripple like water when not directly observed. You gain a +1 bonus to attack and damage rolls with this magic weapon. In addition, when you hit with an attack using this dagger, the target takes an extra 2d6 psychic damage. You can use an action to cause the blade to ripple for 1 minute. While the blade is rippling, each creature that takes psychic damage from the dagger must succeed on a DC 15 Charisma saving throw or become frightened of you for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The dagger can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18929,7 +18929,7 @@ "fields": { "name": "Unseelie Staff", "desc": "This ebony staff is decorated in silver and topped with a jagged piece of obsidian. This staff can be wielded as a magic quarterstaff. While holding the staff, you have advantage on Charisma checks made to influence or interact socially with fey creatures. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a shower of powdery snow, which blows away in a sudden, chill wind. Rebuke Fey. When you hit a fey creature with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 necrotic damage to the target. If the fey has a good alignment, the extra damage increases to 4d6, and the target must succeed on a DC 15 Wisdom saving throw or be frightened of you until the start of your next turn. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), conjure woodland beings (4 charges), confusion (4 charges), invisibility (2 charges), or teleport (7 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18948,7 +18948,7 @@ "fields": { "name": "Valkyrie's Bite", "desc": "This black-bladed scimitar has a guard that resembles outstretched raven wings, and a polished amethyst sits in its pommel. You have a +2 bonus to attack and damage rolls made with this magic weapon. While attuned to the scimitar, you have advantage on initiative rolls. While you hold the scimitar, it sheds dim purple light in a 10-foot radius.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18967,7 +18967,7 @@ "fields": { "name": "Vengeful Coat", "desc": "This stiff, vaguely uncomfortable coat covers your torso. It smells like ash and oozes a sap-like substance. While wearing this coat, you have resistance to slashing damage from nonmagical attacks. At the end of each long rest, choose one of the following damage types: acid, cold, fire, lightning, or thunder. When you take damage of that type, you have advantage on attack rolls until the end of your next turn. When you take more than 10 damage of that type, you have advantage on your attack rolls for 2 rounds. When you are targeted by an effect that deals damage of the type you chose, you can use your reaction to gain resistance to that damage until the start of your next turn. You have advantage on your attack rolls, as detailed above, then the coat's magic ceases to function until you finish a long rest.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -18986,7 +18986,7 @@ "fields": { "name": "Venomous Fangs", "desc": "These prosthetic fangs can be positioned over your existing teeth or in place of missing teeth. While wearing these fangs, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. You gain a +1 bonus to attack and damage rolls made with this magic bite. While you wear the fangs, a successful DC 9 Dexterity (Sleight of Hand) checks conceals them from view. At the GM's discretion, you have disadvantage on Charisma (Deception) or Charisma (Persuasion) checks against creatures that notice the fangs.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19005,7 +19005,7 @@ "fields": { "name": "Verdant Elixir", "desc": "Multi-colored streaks of light occasionally flash through the clear liquid in this container, like bottled lightning. As an action, you can pour the contents of the vial onto the ground. All normal plants in a 100-foot radius centered on the point where you poured the vial become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves. Alternatively, you can apply the contents of the vial to a plant creature within 5 feet of you. For 1 hour, the target gains 2d10 temporary hit points, and it gains the “enlarge” effect of the enlarge/reduce spell (no concentration required).", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19024,7 +19024,7 @@ "fields": { "name": "Verminous Snipsnaps", "desc": "This stoppered jar holds small animated knives and scissors. The jar weighs 1 pound, and its command word is often written on the jar's label. You can use an action to remove the stopper, which releases the spinning blades into a space you can see within 30 feet of you. The knives and scissors fill a cube 10 feet on each side and whirl in place, flaying creatures and objects that enter the cube. When a creature enters the cube for the first time on a turn or starts its turn there, it takes 2d12 piercing damage. You can use a bonus action to speak the command word, returning the blades to the jar. Otherwise, the knives and scissors remain in that space indefinitely.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19043,7 +19043,7 @@ "fields": { "name": "Verses of Vengeance", "desc": "This massive, holy tome is bound in brass with a handle on the back cover. A steel chain dangles from the sturdy metal cover, allowing you to hang the tome from your belt or hook it to your armor. A locked clasp holds the tome closed, securing its contents. You gain a +1 bonus to AC while you wield this tome as a shield. This bonus is in addition to the shield's normal bonus to AC. Alternatively, you can make melee weapon attacks with the tome as if it was a club. If you make an attack using use the tome as a weapon, you lose the shield's bonus to your AC until the start of your next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19062,7 +19062,7 @@ "fields": { "name": "Vessel of Deadly Venoms", "desc": "This small jug weighs 5 pounds and has a ceramic snake coiled around it. You can use an action to speak a command word to cause the vessel to produce poison, which pours from the snake's mouth. A poison created by the vessel must be used within 1 hour or it becomes inert. The word “blade” causes the snake to produce 1 dose of serpent venom, enough to coat a single weapon. The word “consume” causes the snake to produce 1 dose of assassin's blood, an ingested poison. The word “spit” causes the snake to spray a stream of poison at a creature you can see within 30 feet. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d8 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. Once used, the vessel can't be used to create poison again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19081,7 +19081,7 @@ "fields": { "name": "Vestments of the Bleak Shinobi", "desc": "This padded black armor is fashioned in the furtive style of shinobi shōzoku garb. You have advantage on Dexterity (Stealth) checks while you wear this armor. Darkness. While wearing this armor, you can use an action to cast the darkness spell from it with a range of 30 feet. Once used, this property can’t be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19100,7 +19100,7 @@ "fields": { "name": "Vial of Sunlight", "desc": "This crystal vial is filled with water from a spring high in the mountains and has been blessed by priests of a deity of healing and light. You can use an action to cause the vial to emit bright light in a 30-foot radius and dim light for an additional 30 feet for 1 minute. This light is pure sunlight, causing harm or discomfort to vampires and other undead creatures that are sensitive to it. The vial can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19119,7 +19119,7 @@ "fields": { "name": "Vielle of Weirding and Warding", "desc": "The strings of this bowed instrument never break. You must be proficient in stringed instruments to use this vielle. A creature that attempts to play the instrument without being attuned to it must succeed on a DC 15 Wisdom saving throw or take 2d8 psychic damage. If you play the vielle as the somatic component for a spell that causes a target to become charmed on a failed saving throw, the target has disadvantage on the saving throw.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19138,7 +19138,7 @@ "fields": { "name": "Vigilant Mug", "desc": "An impish face sits carved into the side of this bronze mug, its eyes a pair of clear, blue crystals. The imp's eyes turn red when poison or poisonous material is placed or poured inside the mug.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19157,7 +19157,7 @@ "fields": { "name": "Vile Razor", "desc": "This perpetually blood-stained straight razor deals slashing damage instead of piercing damage. You gain a +1 bonus to attack and damage rolls made with this magic weapon. Inhuman Alacrity. While holding the dagger, you can take two bonus actions on your turn, instead of one. Each bonus action must be different; you can’t use the same bonus action twice in a single turn. Once used, this property can’t be used again until the next dusk. Unclean Cut. When you hit a creature with a melee attack using the dagger, you can use a bonus action to deal an extra 2d4 necrotic damage. If you do so, the target and each of its allies that can see this attack must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. Once used, this property can’t be used again until the next dusk. ", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19176,7 +19176,7 @@ "fields": { "name": "Void-Touched Buckler", "desc": "This simple wood and metal buckler belonged to an adventurer slain by a void dragon wyrmling (see Tome of Beasts). It sat for decades next to a small tear in the fabric of reality, which led to the outer planes. It has since become tainted by the Void. While wielding this shield, you have a +1 bonus to AC. This bonus is in addition to the shield’s normal bonus to AC. Invoke the Void. While wielding this shield, you can use an action to invoke the shield’s latent Void energy for 1 minute, causing a dark, swirling aura to envelop the shield. For the duration, when a creature misses you with a weapon attack, it must succeed on a DC 17 Wisdom saving throw or be frightened of you until the end of its next turn. In addition, when a creature hits you with a weapon attack, it has advantage on weapon attack rolls against you until the end of its next turn. You can’t use this property of the shield again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19195,7 +19195,7 @@ "fields": { "name": "Voidskin Cloak", "desc": "This pitch-black cloak absorbs light and whispers as it moves. It feels like thin leather with a knobby, scaly texture, though none of that detail is visible to the eye. While you wear this cloak, you have resistance to necrotic damage. While the hood is up, your face is pooled in shadow, and you can use a bonus action to fix your dark gaze upon a creature you can see within 60 feet. If the creature can see you, it must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once a creature succeeds on its saving throw, it can't be affected by the cloak again for 24 hours. Pulling the hood up or down requires an action.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19214,7 +19214,7 @@ "fields": { "name": "Voidwalker", "desc": "This band of tarnished silver bears no ornament or inscription, but it is icy cold to the touch. The patches of dark corrosion on the ring constantly, but subtly, move and change; though, this never occurs while anyone observes the ring. While wearing Voidwalker, you gain the benefits of a ring of free action and a ring of resistance (cold). It has the following additional properties. The ring is clever and knows that most mortals want nothing to do with the Void directly. It also knows that most of the creatures with strength enough to claim it will end up in dire straits sooner or later. It doesn't overplay its hand trying to push a master to take a plunge into the depths of the Void, but instead makes itself as indispensable as possible. It provides counsel and protection, all the while subtly pushing its master to take greater and greater risks. Once it's maneuvered its wearer into a position of desperation, generally on the brink of death, Voidwalker offers a way out. If the master accepts, it opens a gate into the Void, most likely sealing the creature's doom.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19233,7 +19233,7 @@ "fields": { "name": "Feather Token", "desc": "The following are additional feather token options. Cloud (Uncommon). This white feather is shaped like a cloud. You can use an action to step on the token, which expands into a 10-foot-diameter cloud that immediately begins to rise slowly to a height of up to 20 feet. Any creatures standing on the cloud rise with it. The cloud disappears after 10 minutes, and anything that was on the cloud falls slowly to the ground. \nDark of the Moon (Rare). This black feather is shaped like a crescent moon. As an action, you can brush the feather over a willing creature’s eyes to grant it the ability to see in the dark. For 1 hour, that creature has darkvision out to a range of 60 feet, including in magical darkness. Afterwards, the feather disappears. \n Held Heart (Very Rare). This red feather is shaped like a heart. While carrying this token, you have advantage on initiative rolls. As an action, you can press the feather against a willing, injured creature. The target regains all its missing hit points and the feather disappears. \nJackdaw’s Dart (Common). This black feather is shaped like a dart. While holding it, you can use an action to throw it at a creature you can see within 30 feet of you. As it flies, the feather transforms into a blot of black ink. The target must succeed on a DC 11 Dexterity saving throw or the feather leaves a black mark of misfortune on it. The target has disadvantage on its next ability check, attack roll, or saving throw then the mark disappears. A remove curse spell ends the mark early.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19252,7 +19252,7 @@ "fields": { "name": "Wand of Accompaniment", "desc": "Tiny musical notes have been etched into the sides of this otherwise plain, wooden wand. It has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand disintegrates with a small bang. Dance. While holding the wand, you can use an action to expend 3 charges to cast the irresistible dance spell (save DC 17) from it. If the target is in the area of the Song property of this wand, it has disadvantage on the saving throw. Song. While holding the wand, you can use an action to expend 1 charge to cause the area within a 30-foot radius of you to fill with music for 1 minute. The type of music played is up to you, but it is performed flawlessly. Each creature in the area that can hear the music has advantage on saving throws against being deafened and against spells and effects that deal thunder damage.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19271,7 +19271,7 @@ "fields": { "name": "Wand of Air Glyphs", "desc": "While holding this thin, metal wand, you can use action to cause the tip to glow. When you wave the glowing wand in the air, it leaves a trail of light behind it, allowing you to write or draw on the air. Whatever letters or images you make hang in the air for 1 minute before fading away.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19290,7 +19290,7 @@ "fields": { "name": "Wand of Bristles", "desc": "This wand is made from the bristles of a giant boar bound together with magical, silver thread. It weighs 1 pound and is 8 inches long. The wand has a strong boar musk scent to it, which is difficult to mask and is noticed by any creature within 10 feet of you that possesses the Keen Smell trait. The wand is comprised of 10 individual bristles, and as long as the wand has 1 bristle, it regrows 2 bristles daily at dawn. While holding the wand, you can use your action to remove bristles to cause one of the following effects. Ghostly Charge (3 bristles). You toss the bristles toward one creature you can see. A phantom giant boar charges 30 feet toward the creature. If the phantom’s path connects with the creature, the target must succeed on a DC 15 Dexterity saving throw or take 2d8 force damage and be knocked prone. Truffle (2 bristles). You plant the bristles in the ground to conjure up a magical truffle. Consuming the mushroom restores 2d8 hit points.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19309,7 +19309,7 @@ "fields": { "name": "Wand of Depth Detection", "desc": "This simple wooden wand has 7 charges and regains 1d6 + 1 expended charges daily at dawn. While holding it, you can use an action to expend 1 charge and point it at a body of water or other liquid. You learn the liquid's deepest point or its average depth (your choice). In addition, you can use an action to expend 1 charge while you are submerged in a liquid to determine how far you are beneath the liquid's surface.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19328,7 +19328,7 @@ "fields": { "name": "Wand of Direction", "desc": "This crooked, twisting wand is crafted of polished ebony with a small, silver arrow affixed to its tip. The wand has 3 charges. While holding it, you can expend 1 charge as an action to make the wand remember your path for up to 1,760 feet of movement. You can increase the length of the path the wand remembers by 1,760 feet for each additional charge you expend. When you expend a charge to make the wand remember your current path, the wand forgets the oldest path of up to 1,760 feet that it remembers. If you wish to retrace your steps, you can use a bonus action to activate the wand’s arrow. The arrow guides you, pointing and mentally tugging you in the direction you should go. The wand’s magic allows you to backtrack with complete accuracy despite being lost, unable to see, or similar hindrances against finding your way. The wand can’t counter or dispel magic effects that cause you to become lost or misguided, but it can guide you back in spite of some magic hindrances, such as guiding you through the area of a darkness spell or guiding you if you had activated the wand then forgotten the way due to the effects of the modify memory spell on you. The wand regains all expended charges daily at dawn. If you expend the wand’s last charge, roll a d20. On a roll of 1, the wand straightens and the arrow falls off, rendering it nonmagical.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19347,7 +19347,7 @@ "fields": { "name": "Wand of Drowning", "desc": "This wand appears to be carved from the bones of a large fish, which have been cemented together. The wand has 3 charges and regains 1d3 expended charges daily at dawn. While holding this wand, you can use an action to expend 1 charge to cause a thin stream of seawater to spray toward a creature you can see within 60 feet of you. If the target can breathe only air, it must succeed on a DC 15 Constitution saving throw or its lungs fill with rancid seawater and it begins drowning. A drowning creature chokes for a number of rounds equal to its Constitution modifier (minimum of 1 round). At the start of its turn after its choking ends, the creature drops to 0 hit points and is dying, and it can't regain hit points or be stabilized until it can breathe again. A successful DC 15 Wisdom (Medicine) check removes the seawater from the drowning creature's lungs, ending the effect.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19366,7 +19366,7 @@ "fields": { "name": "Wand of Extinguishing", "desc": "This charred and blackened wooden wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to extinguish a nonmagical flame within 10 feet of you that is no larger than a small campfire. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand transforms into a wand of ignition.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19385,7 +19385,7 @@ "fields": { "name": "Wand of Fermentation", "desc": "Fashioned out of oak, this wand appears heavily stained by an unknown liquid. The wand has 7 charges and regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand explodes in a puff of black smoke and is destroyed. While holding the wand, you can use an action and expend 1 or more of its charges to transform nonmagical liquid, such as blood, apple juice, or water, into an alcoholic beverage. For each charge you expend, you transform up to 1 gallon of nonmagical liquid into an equal amount of beer, wine, or other spirit. The alcohol transforms back into its original form if it hasn't been consumed within 24 hours of being transformed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19404,7 +19404,7 @@ "fields": { "name": "Wand of Flame Control", "desc": "This wand is fashioned from a branch of pine, stripped of bark and beaded with hardened resin. The wand has 3 charges. If you use the wand as an arcane focus while casting a spell that deals fire damage, you can expend 1 charge as part of casting the spell to increase the spell's damage by 1d4. In addition, while holding the wand, you can use an action to expend 1 of its charges to cause one of the following effects: - Change the color of any flames within 30 feet.\n- Cause a single flame to burn lower, halving the range of light it sheds but burning twice as long.\n- Cause a single flame to burn brighter, doubling the range of the light it sheds but halving its duration. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand bursts into flames and burns to ash in seconds.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19423,7 +19423,7 @@ "fields": { "name": "Wand of Giggles", "desc": "This wand is tipped with a feather. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges and point the wand at a humanoid you can see within 30 feet of you. The target must succeed on a DC 10 Charisma saving throw or be forced to giggle for 1 minute. Giggling doesn't prevent a target from taking actions or moving. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Tears.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19442,7 +19442,7 @@ "fields": { "name": "Wand of Guidance", "desc": "This slim, metal wand is topped with a cage shaped like a three-sided pyramid. An eye of glass sits within the pyramid. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the guidance spell from it. The wand regains all expended charges at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Resistance.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19461,7 +19461,7 @@ "fields": { "name": "Wand of Harrowing", "desc": "The tips of this twisted wooden wand are exceptionally withered. The wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand disintegrates into useless white powder. Affliction. While holding the wand, you can use an action to expend 1 charge to cause a creature you can see within 60 feet of you to become afflicted with unsightly, weeping sores. The target must succeed on a DC 15 Constitution saving throw or have disadvantage on all Dexterity and Charisma checks for 1 minute. An afflicted creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Pain. While holding the wand, you can use an action to expend 3 charges to cause a creature you can see within 60 feet of you to become wracked with terrible pain. The target must succeed on a DC 15 Constitution saving throw or take 4d6 necrotic damage, and its movement speed is halved for 1 minute. A pained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself a success. If the target is also suffering from the Affliction property of this wand, it has disadvantage on the saving throw.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19480,7 +19480,7 @@ "fields": { "name": "Wand of Ignition", "desc": "The cracks in this charred and blackened wooden wand glow like live coals, but the wand is merely warm to the touch. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to set fire to one flammable object or collection of material (a stack of paper, a pile of kindling, or similar) within 10 feet of you that is Small or smaller. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Extinguishing.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19499,7 +19499,7 @@ "fields": { "name": "Wand of Plant Destruction", "desc": "This wand of petrified wood has 7 charges. While holding it, you can use an action to expend up to 3 of its charges to harm a plant or plant creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw, taking 2d8 necrotic damage for each charge you expended on a failed save, or half as much damage on a successful one. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand shatters and is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19518,7 +19518,7 @@ "fields": { "name": "Wand of Relieved Burdens", "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and touch a creature with the wand. If the creature is blinded, charmed, deafened, frightened, paralyzed, poisoned, or stunned, the condition is removed from the creature and transferred to you. You suffer the condition for the remainder of its duration or until it is removed. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand crumbles to dust and is destroyed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19537,7 +19537,7 @@ "fields": { "name": "Wand of Resistance", "desc": "This slim, wooden wand is topped with a small, spherical cage, which holds a pyramid-shaped piece of hematite. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the resistance spell. The wand regains all expended charges at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Guidance .", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19556,7 +19556,7 @@ "fields": { "name": "Wand of Revealing", "desc": "Crystal beads decorate this wand, and a silver hand, index finger extended, caps it. The wand has 3 charges and regains all expended charges daily at dawn. While holding it, you can use an action to expend 1 of the wand's charges to reveal one creature or object within 120 feet of you that is either invisible or ethereal. This works like the see invisibility spell, except it allows you to see only that one creature or object. That creature or object remains visible as long as it remains within 120 feet of you. If more than one invisible or ethereal creature or object is in range when you use the wand, it reveals the nearest creature or object, revealing invisible creatures or objects before ethereal ones.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19575,7 +19575,7 @@ "fields": { "name": "Wand of Tears", "desc": "The top half of this wooden wand is covered in thorns. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges and point the wand at a humanoid you can see within 30 feet of you. The target must succeed on a DC 10 Charisma saving throw or be forced to cry for 1 minute. Crying doesn't prevent a target from taking actions or moving. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Giggles .", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19594,7 +19594,7 @@ "fields": { "name": "Wand of the Timekeeper", "desc": "This smoothly polished wooden wand is perfectly balanced in the hand. Its grip is wrapped with supple leather strips, and its length is decorated with intricate arcane symbols. When you use it while playing a drum, you have advantage on Charisma (Performance) checks. The wand has 5 charges for the following properties. It regains 1d4 + 1 charges daily at dawn. Erratic. While holding the wand, you can use an action to expend 2 charges to force one creature you can see to re-roll its initiative at the end of each of its turns for 1 minute. An unwilling creature that succeeds on a DC 15 Wisdom saving throw is unaffected. Synchronize. While holding the wand, you can use an action to expend 1 charge to choose one creature you can see who has not taken its turn this round. That creature takes its next turn immediately after yours regardless of its turn in the Initiative order. An unwilling creature that succeeds on a DC 15 Wisdom saving throw is unaffected.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19613,7 +19613,7 @@ "fields": { "name": "Wand of Treasure Finding", "desc": "This wand is adorned with gold and silver inlay and topped with a faceted crystal. The wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For 1 minute, you know the direction and approximate distance of the nearest mass or collection of precious metals or minerals within 60 feet. You can concentrate on a specific metal or mineral, such as silver, gold, or diamonds. If the specific metal or mineral is within 60 feet, you are able to discern all locations in which it is found and the approximate amount in each location. The wand's magic can penetrate most barriers, but it is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead. The effect ends if you stop holding the wand. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand turns to lead and becomes nonmagical.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19632,7 +19632,7 @@ "fields": { "name": "Wand of Vapors", "desc": "Green gas swirls inside this slender, glass wand. The wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand shatters into hundreds of crystalline fragments, and the gas within it dissipates. Fog Cloud. While holding the wand, you can use an action to expend 1 or more of its charges to cast the fog cloud spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend. Gaseous Escape. When you are attacked while holding this wand, you can use your reaction to expend 3 of its charges to transform yourself and everything you are wearing and carrying into a cloud of green mist until the start of your next turn. While you are a cloud of green mist, you have resistance to nonmagical damage, and you can’t be grappled or restrained. While in this form, you also can’t talk or manipulate objects, any objects you were wearing or holding can’t be dropped, used, or otherwise interacted with, and you can’t attack or cast spells.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19651,7 +19651,7 @@ "fields": { "name": "Wand of Windows", "desc": "This clear, crystal wand has 3 charges. You can use an action to expend 1 charge and touch the wand to any nonmagical object. The wand causes a portion of the object, up to 1-foot square and 6 inches deep, to become transparent for 1 minute. The effect ends if you stop holding the wand. The wand regains 1d3 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand slowly becomes cloudy until it is completely opaque and becomes nonmagical.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19670,7 +19670,7 @@ "fields": { "name": "Ward Against Wild Appetites", "desc": "Seventeen animal teeth of various sizes hang together on a simple leather thong, and each tooth is dyed a different color using pigments from plants native to old-growth forests. When a beast or monstrosity with an Intelligence of 4 or lower targets you with an attack, it has disadvantage on the attack roll if the attack is a bite. You must be wearing the necklace to gain this benefit.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19689,7 +19689,7 @@ "fields": { "name": "Warding Icon", "desc": "This carved piece of semiprecious stone typically takes the form of an angelic figure or a shield carved with a protective rune, and it is commonly worn attached to clothing or around the neck on a chain or cord. While wearing the stone, you have brief premonitions of danger and gain a +2 bonus to initiative if you aren't incapacitated.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19708,7 +19708,7 @@ "fields": { "name": "Warlock's Aegis", "desc": "When you attune to this mundane-looking suit of leather armor, symbols related to your patron burn themselves into the leather, and the armor's colors change to those most closely associated with your patron. While wearing this armor, you can use an action and expend a spell slot to increase your AC by an amount equal to your Charisma modifier for the next 8 hours. The armor can't be used this way again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19727,7 +19727,7 @@ "fields": { "name": "Warrior Shabti", "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19746,7 +19746,7 @@ "fields": { "name": "Wave Chain Mail", "desc": "The rows of chain links of this armor seem to ebb and flow like waves while worn. Attacks against you have disadvantage while at least half of your body is submerged in water. In addition, when you are attacked, you can turn all or part of your body into water as a reaction, gaining immunity to bludgeoning, piercing, and slashing damage from nonmagical weapons, until the end of the attacker's turn. Once used, this property of the armor can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19765,7 +19765,7 @@ "fields": { "name": "Wayfarer's Candle", "desc": "This beeswax candle is stamped with a holy symbol, typically one of a deity associated with light or protection. When lit, it sheds light and heat as a normal candle for up to 1 hour, but it can't be extinguished by wind of any force. It can be blown out or extinguished only by the creature holding it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19784,7 +19784,7 @@ "fields": { "name": "Web Arrows", "desc": "Carvings of spiderwebs decorate the arrowhead and shaft of these arrows, which always come in pairs. When you fire the arrows from a bow, they become the two anchor points for a 20-foot cube of thick, sticky webbing. Once you fire the first arrow, you must fire the second arrow within 1 minute. The arrows must land within 20 feet of each other, or the magic fails. The webs created by the arrows are difficult terrain and lightly obscure the area. Each creature that starts its turn in the webs or enters them during its turn must make a DC 13 Dexterity saving throw. On a failed save, the creature is restrained as long as it remains in the webs or until it breaks free. A creature, including the restrained creature, can take its action to break the creature free from the webbing by succeeding on a DC 13 Strength check. The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19803,7 +19803,7 @@ "fields": { "name": "Webbed Staff", "desc": "This staff is carved of ebony and wrapped in a net of silver wire. While holding it, you can't be caught in webs of any sort and can move through webs as if they were difficult terrain. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, spidersilk surrounds the staff in a cocoon then quickly unravels itself and the staff, destroying the staff.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19822,7 +19822,7 @@ "fields": { "name": "Whip of Fangs", "desc": "The skin of a large asp is woven into the leather of this whip. The asp's head sits nestled among the leather tassels at its tip. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit with an attack using this magic weapon, the target takes an extra 1d4 poison damage and must succeed on a DC 13 Constitution saving throw or be poisoned until the end of its next turn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19841,7 +19841,7 @@ "fields": { "name": "Whispering Cloak", "desc": "This cloak is made of black, brown, and white bat pelts sewn together. While wearing it, you have blindsight out to a range of 60 feet. While wearing this cloak with its hood up, you transform into a creature of pure shadow. While in shadow form, your Armor Class increases by 2, you have advantage on Dexterity (Stealth) checks, and you can move through a space as narrow as 1 inch wide without squeezing. You can cast spells normally while in shadow form, but you can't make ranged or melee attacks with nonmagical weapons. In addition, you can't pick up objects, and you can't give objects you are wearing or carrying to others. This effect lasts up to 1 hour. Deduct time spent in shadow form in increments of 1 minute from the total time. After it has been used for 1 hour, the cloak can't be used in this way again until the next dusk, when its time limit resets. Pulling the hood up or down requires an action.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19860,7 +19860,7 @@ "fields": { "name": "Whispering Powder", "desc": "A paper envelope contains enough of this fine dust for one use. You can use an action to sprinkle the dust on the ground in up to four contiguous spaces. When a Small or larger creature steps into one of these spaces, it must make a DC 13 Dexterity saving throw. On a failure, loud squeals, squeaks, and pops erupt with each footfall, audible out to 150 feet. The powder's creator dictates the manner of sounds produced. The first creature to enter the affected spaces sets off the alarm, consuming the powder's magic. Otherwise, the effect lasts as long as the powder coats the area.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19879,7 +19879,7 @@ "fields": { "name": "White Ape Hide", "desc": "This armor was made from the remains of a White Ape (see Tome of Beasts) that fell in battle. While wearing this armor, you gain a +2 bonus to AC. In addition, the armor has the following properties while you wear it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19898,7 +19898,7 @@ "fields": { "name": "White Ape Leather", "desc": "This armor was made from the remains of a White Ape (see Tome of Beasts) that fell in battle. While wearing this armor, you gain a +2 bonus to AC. In addition, the armor has the following properties while you wear it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19917,7 +19917,7 @@ "fields": { "name": "White Dandelion", "desc": "When you are attacked or are the target of a spell while holding this magically enhanced flower, you can use a reaction to blow on the flower. It explodes in a flurry of seeds that distracts your attacker, and you add 1 to your AC against the attack or to your saving throw against the spell. Afterwards, the flower wilts and becomes nonmagical.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19936,7 +19936,7 @@ "fields": { "name": "White Honey Buckle", "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19955,7 +19955,7 @@ "fields": { "name": "Windwalker Boots", "desc": "These lightweight boots are made of soft leather. While you wear these boots, you can walk on air as if it were solid ground. Your speed is halved when ascending or descending on the air. Otherwise, you can walk on air at your walking speed. You can use the Dash action as normal to increase your movement during your turn. If you don't end your movement on solid ground, you fall at the end of your turn unless otherwise supported, such as by gripping a ledge or hanging from a rope.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19974,7 +19974,7 @@ "fields": { "name": "Wisp of the Void", "desc": "The interior of this bottle is pitch black, and it feels empty. When opened, it releases a black vapor. When you inhale this vapor, your eyes go completely black. For 1 minute, you have darkvision out to a range of 60 feet, and you have resistance to necrotic damage. In addition, you gain a +1 bonus to damage rolls made with a weapon.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -19993,7 +19993,7 @@ "fields": { "name": "Witch Ward Bottle", "desc": "This small pottery jug contains an odd assortment of pins, needles, and rosemary, all sitting in a small amount of wine. A bloody fingerprint marks the top of the cork that seals the jug. When placed within a building (as small as a shack or as large as a castle) or buried in the earth on a section of land occupied by humanoids (as small as a campsite or as large as an estate), the bottle's magic protects those within the building or on the land against the magic of fey and fiends. The humanoid that owns the building or land and any ally or invited guests within the building or on the land has advantage on saving throws against the spells and special abilities of fey and fiends. If a protected creature fails its saving throw against a spell with a duration other than instantaneous, that creature can choose to succeed instead. Doing so immediately drains the jug's magic, and it shatters.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -20012,7 +20012,7 @@ "fields": { "name": "Witch's Brew", "desc": "For 1 minute after drinking this potion, your spell attacks deal an extra 1d4 necrotic damage on a hit. This revolting green potion's opaque liquid bubbles and steams as if boiling.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -20031,7 +20031,7 @@ "fields": { "name": "Wolf Brush", "desc": "From a distance, this weapon bears a passing resemblance to a fallen tree branch. This unique polearm was first crafted by a famed martial educator and military general from the collected weapons of his fallen compatriots. Each point on this branching spear has a history of its own and is infused with the pain of loss and the glory of military service. When wielded in battle, each of the small, branching spear points attached to the polearm's shaft pulses with a warm glow and burns with the desire to protect the righteous. When not using it, you can fold the branches inward and sheathe the polearm in a leather wrap. You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you hold this weapon, it sheds dim light in a 5-foot radius. You can fold and wrap the weapon as an action, extinguishing the light. While holding or carrying the weapon, you have resistance to piercing damage. The weapon has 10 charges for the following other properties. The weapon regains 1d8 + 2 charges daily at dawn. In addition, it regains 1 charge when exposed to powerful magical sunlight, such as the light created by the sunbeam and sunburst spells, and it regains 1 charge each round it remains exposed to such sunlight. Spike Barrage. While wielding this weapon, you can use an action to expend 1 or more of its charges and sweep the weapon in a small arc to release a barrage of spikes in a 15-foot cone. Each creature in the area must make a DC 17 Dexterity saving throw, taking 1d10 piercing damage for each charge you expend on a failed save, or half as much damage on a successful one. Spiked Wall. While wielding this weapon, you can use an action to expend 6 charges to cast the wall of thorns spell (save DC 17) from it.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -20050,7 +20050,7 @@ "fields": { "name": "Wolfbite Ring", "desc": "This heavy iron ring is adorned with the stylized head of a snarling wolf. The ring has 3 charges and regains 1d3 expended charges daily at dawn. When you make a melee weapon attack while wearing this ring, you can use a bonus action to expend 1 of the ring's charges to deal an extra 2d6 piercing damage to the target. Then, the target must succeed on a DC 15 Strength saving throw or be knocked prone.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -20069,7 +20069,7 @@ "fields": { "name": "Worg Salve", "desc": "Brewed by hags and lycanthropes, this oil grants you lupine features. Each pot contains enough for three applications. One application grants one of the following benefits (your choice): darkvision out to a range of 60 feet, advantage on Wisdom (Perception) checks that rely on smell, a walking speed of 50 feet, or a new attack option (use the statistics of a wolf 's bite attack) for 5 minutes. If you use all three applications at one time, you can cast polymorph on yourself, transforming into a wolf. While you are in the form of a wolf, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -20088,7 +20088,7 @@ "fields": { "name": "Worry Stone", "desc": "This smooth, rounded piece of semiprecious crystal has a thumb-sized groove worn into one side. Physical contact with the stone helps clear the mind and calm the nerves, promoting success. If you spend 1 minute rubbing the stone, you have advantage on the next ability check you make within 1 hour of rubbing the stone. Once used, the stone can't be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -20107,7 +20107,7 @@ "fields": { "name": "Wraithstone", "desc": "This stone is carved from petrified roots to reflect the shape and visage of a beast. The stone holds the spirit of a sacrificed beast of the type the stone depicts. A wraithstone is often created to grant immortal life to a beloved animal companion or to banish a troublesome predator. The creature's essence stays within until the stone is broken, upon which point the soul is released and the creature can't be resurrected or reincarnated by any means short of a wish spell. While attuned to and carrying this item, a spectral representation of the beast walks beside you, resembling the sacrificed creature's likeness in its prime. The specter follows you at all times and can be seen by all. You can use a bonus action to dismiss or summon the specter. So long as you carry this stone, you can interact with the creature as if it were still alive, even speaking to it if it is able to speak, though it can't physically interact with the material world. It can gesture to indicate directions and communicate very basic single-word ideas to you telepathically. The stone has a number of charges, depending on the size of the creature stored within it. The stone has 6 charges if the creature is Large or smaller, 10 charges if the creature is Huge, and 12 charges if the creature is Gargantuan. After all of the stone's charges have been used, the beast's spirit is completely drained, and the stone becomes a nonmagical bauble. As a bonus action, you can expend 1 charge to cause one of the following effects:", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -20126,7 +20126,7 @@ "fields": { "name": "Wrathful Vapors", "desc": "Roiling vapors of red, orange, and black swirl in a frenzy of color inside a sealed glass bottle. As an action, you can open the bottle and empty its contents within 5 feet of you or throw the bottle up to 20 feet, shattering it on impact. If you throw it, make a ranged attack against a creature or object, treating the bottle as an improvised weapon. When you open or break the bottle, the smoke releases in a 20-foot-radius sphere that dissipates at the end of your next turn. A creature that isn't an undead or a construct that enters or starts its turn in the area must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. On its turn, a creature overcome with rage must attack the creature nearest to it with whatever melee weapon it has on hand, moving up to its speed toward the target, if necessary. The raging creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -20145,7 +20145,7 @@ "fields": { "name": "Zephyr Shield", "desc": "This round metal shield is painted bright blue with swirling white lines across it. You gain a +2 bonus to AC while you wield this shield. This is an addition to the shield's normal AC bonus. Air Bubble. Whenever you are immersed in a body of water while holding this shield, you can use a reaction to envelop yourself in a 10-foot radius bubble of fresh air. This bubble floats in place, but you can move it up to 30 feet during your turn. You are moved with the bubble when it moves. The air within the bubble magically replenishes itself every round and prevents foreign particles, such as poison gases and water-borne parasites, from entering the area. Other creatures can leave or enter the bubble freely, but it collapses as soon as you exit it. The exterior of the bubble is immune to damage and creatures making ranged attacks against anyone inside the bubble have disadvantage on their attack rolls. The bubble lasts for 1 minute or until you exit it. Once used, this property can’t be used again until the next dawn. Sanctuary. You can use a bonus action to cast the sanctuary spell (save DC 13) from the shield. This spell protects you from only water elementals and other creatures composed of water. Once used, this property can’t be used again until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -20164,7 +20164,7 @@ "fields": { "name": "Ziphian Eye Amulet", "desc": "This gold amulet holds a preserved eye from a Ziphius (see Creature Codex). It has 3 charges, and it regains all expended charges daily at dawn. While wearing this amulet, you can use a bonus action to speak its command word and expend 1 of its charges to create a brief magical bond with a creature you can see within 60 feet of you. The target must succeed on a DC 15 Wisdom saving throw or be magically bonded with you until the end of your next turn. While bonded in this way, you can choose to have advantage on attack rolls against the target or cause the target to have disadvantage on attack rolls against you.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, @@ -20183,7 +20183,7 @@ "fields": { "name": "Zipline Ring", "desc": "This plain gold ring features a magnificent ruby. While wearing the ring, you can use an action to cause a crimson zipline of magical force to extend from the gem in the ring and attach to up to two solid surfaces you can see. Each surface must be within 150 feet of you. Once the zipline is connected, you can use a bonus action to magically travel up to 50 feet along the line between the two surfaces. You can bring along objects as long as their weight doesn't exceed what you can carry. While the zipline is active, you remain suspended within 5 feet of the line, floating off the ground at least 3 inches, and you can't move more than 5 feet away from the zipline. When you magically travel along the line, you don't provoke opportunity attacks. The hand wearing the ring must be pointed at the line when you magically travel along it, but you otherwise can act normally while the zipline is active. You can use a bonus action to end the zipline. When the zipline has been active for a total of 1 minute, the ring's magic ceases to function until the next dawn.", - "document": "vault-of-magic", + "document": "vom", "size": "tiny", "weight": "0.000", "armor_class": 0, From 1554cb6c63a2bbe65f55f9ec75037230dcc71862 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 27 Apr 2024 07:15:27 -0500 Subject: [PATCH 07/84] Deep magic and VOM. --- data/v2/kobold-press/deep-magic/Document.json | 2 +- data/v2/kobold-press/deep-magic/Spell.json | 1028 ++++++++--------- .../{vault-of-magic => vom}/Document.json | 0 .../{vault-of-magic => vom}/Item.json | 0 .../{vault-of-magic => vom}/magicitems.json_ | 0 5 files changed, 515 insertions(+), 515 deletions(-) rename data/v2/kobold-press/{vault-of-magic => vom}/Document.json (100%) rename data/v2/kobold-press/{vault-of-magic => vom}/Item.json (100%) rename data/v2/kobold-press/{vault-of-magic => vom}/magicitems.json_ (100%) diff --git a/data/v2/kobold-press/deep-magic/Document.json b/data/v2/kobold-press/deep-magic/Document.json index 0feaca07..956fd061 100644 --- a/data/v2/kobold-press/deep-magic/Document.json +++ b/data/v2/kobold-press/deep-magic/Document.json @@ -1,7 +1,7 @@ [ { "model": "api_v2.document", - "pk": "deep-magic", + "pk": "deepm", "fields": { "name": "Deep Magic for 5th Edition", "desc": "*Command 700 New Spells for 5th Edition!*\r\n\r\nNo matter how you slice it, magic is at the heart of fantasy—and nothing says magic like a massive tome of spells.\r\n\r\nThis tome collects, updates, tweaks, and expands spells from years of the Deep Magic for Fifth Edition series—more than 700 new and revised spells. And it adds a lot more:\r\n\r\n* 19 divine domains from Beer to Mountain and Speed to Winter;\r\n* 13 new wizard specialties, such as the elementalist and the timekeeper;\r\n* 6 new sorcerous origins, including the Aristocrat and the Farseer;\r\n* 3 otherworldly patrons for warlocks, including the Sibyl;\r\n* expanded treatments of familiars and other wizardly servants;\r\n* and much more!\r\n\r\nThis 356-page tome is not just for wizards, warlocks, and sorcerers. Deep Magic also expands the horizons of what’s possible for bards, clerics, druids, and even rangers and paladins. It offers something new for every spellcasting class!\r\n\r\nWith these new spells and options, your characters (or your villains) can become masters of winter magic, chaos magic, or shadow magic. Seek out hidden colleges and academies of lost lore. Learn new runes, hieroglyphs, and cantrips to break down the walls of reality, or just bend them a bit.\r\n\r\nDeep Magic contains nothing but magic from start to finish!", diff --git a/data/v2/kobold-press/deep-magic/Spell.json b/data/v2/kobold-press/deep-magic/Spell.json index 7a527009..5205b00b 100644 --- a/data/v2/kobold-press/deep-magic/Spell.json +++ b/data/v2/kobold-press/deep-magic/Spell.json @@ -5,7 +5,7 @@ "fields": { "name": "Abhorrent Apparition", "desc": "You imbue a terrifying visage onto a gourd and toss it ahead of you to a spot of your choosing within range. Each creature within 15 feet of that spot takes 6d8 psychic damage and becomes frightened of you for 1 minute; a successful Wisdom saving throw halves the damage and negates the fright. A creature frightened in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "illusion", "higher_level": "If you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", @@ -38,7 +38,7 @@ "fields": { "name": "Accelerate", "desc": "Choose up to three willing creatures within range, which can include you. For the duration of the spell, each target’s walking speed is doubled. Each target can also use a bonus action on each of its turns to take the Dash action, and it has advantage on Dexterity saving throws.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional creature for each slot level above 3rd.", @@ -69,7 +69,7 @@ "fields": { "name": "Acid Gate", "desc": "You create a portal of swirling, acidic green vapor in an unoccupied space you can see. This portal connects with a target destination within 100 miles that you are personally familiar with and have seen with your own eyes, such as your wizard’s tower or an inn you have stayed at. You and up to three creatures of your choice can enter the portal and pass through it, arriving at the target destination (or within 10 feet of it, if it is currently occupied). If the target destination doesn’t exist or is inaccessible, the spell automatically fails and the gate doesn’t form.\n\nAny creature that tries to move through the gate, other than those selected by you when the spell was cast, takes 10d6 acid damage and is teleported 1d100 × 10 feet in a random, horizontal direction. If the creature makes a successful Intelligence saving throw, it can’t be teleported by this portal, but it still takes acid damage when it enters the acid-filled portal and every time it ends its turn in contact with it.\n", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you can allow one additional creature to use the gate for each slot level above 7th.", @@ -102,7 +102,7 @@ "fields": { "name": "Acid Rain", "desc": "You unleash a storm of swirling acid in a cylinder 20 feet wide and 30 feet high, centered on a point you can see. The area is heavily obscured by the driving acidfall. A creature that starts its turn in the area or that enters the area for the first time on its turn takes 6d6 acid damage, or half as much damage if it makes a successful Dexterity saving throw. A creature takes half as much damage from the acid (as if it had made a successful saving throw) at the start of its first turn after leaving the affected area.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d6 for each slot level above 5th.", @@ -135,7 +135,7 @@ "fields": { "name": "Adjust Position", "desc": "You adjust the location of an ally to a better tactical position. You move one willing creature within range 5 feet. This movement does not provoke opportunity attacks. The creature moves bodily through the intervening space (as opposed to teleporting), so there can be no physical obstacle (such as a wall or a door) in the path.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target an additional willing creature for each slot level above 1st.", @@ -166,7 +166,7 @@ "fields": { "name": "Afflict Line", "desc": "You invoke the darkest curses upon your victim and his or her descendants. This spell does not require that you have a clear path to your target, only that your target is within range. The target must make a successful Wisdom saving throw or be cursed until the magic is dispelled. While cursed, the victim has disadvantage on ability checks and saving throws made with the ability score that you used when you cast the spell. In addition, the target’s firstborn offspring is also targeted by the curse. That individual is allowed a saving throw of its own if it is currently alive, or it makes one upon its birth if it is not yet born when the spell is cast. If the target’s firstborn has already died, the curse passes to the target’s next oldest offspring.\n\n**Ritual Focus.** If you expend your ritual focus, the curse becomes hereditary, passing from firstborn to firstborn for the entire length of the family’s lineage until one of them successfully saves against the curse and throws off your dark magic.", - "document": "deep-magic", + "document": "deepm", "level": 9, "school": "necromancy", "higher_level": "", @@ -197,7 +197,7 @@ "fields": { "name": "Agonizing Mark", "desc": "You choose a creature you can see within range to mark as your prey, and a ray of black energy issues forth from you. Until the spell ends, each time you deal damage to the target it must make a Charisma saving throw. On a failed save, it falls prone as its body is filled with torturous agony.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "evocation", "higher_level": "", @@ -228,7 +228,7 @@ "fields": { "name": "Alchemical Form", "desc": "You transform into an amoebic form composed of highly acidic and poisonous alchemical jelly. While in this form:\n* you are immune to acid and poison damage and to the poisoned and stunned conditions;\n* you have resistance to nonmagical fire, piercing, and slashing damage;\n* you can’t speak, cast spells, use items or weapons, or manipulate objects;\n* your gear melds into your body and reappears when the spell ends;\n* you don't need to breathe;\n* your speed is 20 feet;\n* your size doesn’t change, but you can move through and between obstructions as if you were two size categories smaller; and\n* you gain the following action: **Melee Weapon Attack:** spellcasting ability modifier + proficiency bonus to hit, range 5 ft., one target; **Hit:** 4d6 acid or poison damage (your choice), and the target must make a successful Constitution saving throw or be poisoned until the start of your next turn.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "transmutation", "higher_level": "", @@ -259,7 +259,7 @@ "fields": { "name": "Ale-dritch Blast", "desc": "A stream of ice-cold ale blasts from your outstretched hands toward a creature or object within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage and it must make a successful Constitution saving throw or be poisoned until the end of its next turn. A targeted creature has disadvantage on the saving throw if it has drunk any alcohol within the last hour.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "conjuration", "higher_level": "The damage increases when you reach higher levels: 2d8 at 5th level, 3d8 at 11th level, and 4d8 at 17th level.", @@ -292,7 +292,7 @@ "fields": { "name": "Ally Aegis", "desc": "When you see an ally within range in imminent danger, you can use your reaction to protect that creature with a shield of magical force. Until the start of your next turn, your ally has a +5 bonus to AC and is immune to force damage. In addition, if your ally must make a saving throw against an enemy’s spell that deals damage, the ally takes half as much damage on a failed saving throw and no damage on a successful save. Ally aegis offers no protection, however, against psychic damage from any source.\n", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can target one additional ally for each slot level above 6th.", @@ -323,7 +323,7 @@ "fields": { "name": "Alone", "desc": "You cause a creature within range to believe its allies have been banished to a different realm. The target must succeed on a Wisdom saving throw, or it treats its allies as if they were invisible and silenced. The affected creature cannot target, perceive, or otherwise interact with its allies for the duration of the spell. If one of its allies hits it with a melee attack, the affected creature can make another Wisdom saving throw. On a successful save, the spell ends.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "enchantment", "higher_level": "", @@ -354,7 +354,7 @@ "fields": { "name": "Alter Arrow’s Fortune", "desc": "You clap your hands, setting off a chain of tiny events that culminate in throwing off an enemy’s aim. When an enemy makes a ranged attack with a weapon or a spell that hits one of your allies, this spell causes the enemy to reroll the attack roll unless the enemy makes a successful Charisma saving throw. The attack is resolved using the lower of the two rolls (effectively giving the enemy disadvantage on the attack).", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -385,7 +385,7 @@ "fields": { "name": "Althea’s Travel Tent", "desc": "You touch an ordinary, properly pitched canvas tent to create a space where you and a companion can sleep in comfort. From the outside, the tent appears normal, but inside it has a small foyer and a larger bedchamber. The foyer contains a writing desk with a chair; the bedchamber holds a soft bed large enough to sleep two, a small nightstand with a candle, and a small clothes rack. The floor of both rooms is a clean, dry, hard-packed version of the local ground. When the spell ends, the tent and the ground return to normal, and any creatures inside the tent are expelled to the nearest unoccupied spaces.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When the spell is cast using a 3rd-level slot, the foyer becomes a dining area with seats for six and enough floor space for six people to sleep, if they bring their own bedding. The sleeping room is unchanged. With a 4th-level slot, the temperature inside the tent is comfortable regardless of the outside temperature, and the dining area includes a small kitchen. With a 5th-level slot, an unseen servant is conjured to prepare and serve food (from your supplies). With a 6th-level slot, a third room is added that has three two-person beds. With a slot of 7th level or higher, the dining area and second sleeping area can each accommodate eight persons.", @@ -416,7 +416,7 @@ "fields": { "name": "Amplify Gravity", "desc": "This spell intensifies gravity in a 50-foot-radius area within range. Inside the area, damage from falling is quadrupled (2d6 per 5 feet fallen) and maximum damage from falling is 40d6. Any creature on the ground in the area when the spell is cast must make a successful Strength saving throw or be knocked prone; the same applies to a creature that enters the area or ends its turn in the area. A prone creature in the area must make a successful Strength saving throw to stand up. A creature on the ground in the area moves at half speed and has disadvantage on Dexterity checks and ranged attack rolls.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "transmutation", "higher_level": "", @@ -447,7 +447,7 @@ "fields": { "name": "Analyze Device", "desc": "You discover all mechanical properties, mechanisms, and functions of a single construct or clockwork device, including how to activate or deactivate those functions, if appropriate.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -478,7 +478,7 @@ "fields": { "name": "Ancestor’s Strength", "desc": "Choose a willing creature you can see and touch. Its muscles bulge and become invigorated. For the duration, the target is considered one size category larger for determining its carrying capacity, the maximum weight it can lift, push, or pull, and its ability to break objects. It also has advantage on Strength checks.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -509,7 +509,7 @@ "fields": { "name": "Anchoring Rope", "desc": "You create a spectral lanyard. One end is tied around your waist, and the other end is magically anchored in the air at a point you select within range. You can choose to make the rope from 5 to 30 feet long, and it can support up to 800 pounds. The point where the end of the rope is anchored in midair can’t be moved after the spell is cast. If this spell is cast as a reaction while you are falling, you stop at a point of your choosing in midair and take no falling damage. You can dismiss the rope as a bonus action.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional rope for every two slot levels above 1st. Each rope must be attached to a different creature.", @@ -540,7 +540,7 @@ "fields": { "name": "Ancient Shade", "desc": "You grant the semblance of life and intelligence to a pile of bones (or even bone dust) of your choice within range, allowing the ancient spirit to answer the questions you pose. These remains can be the remnants of undead, including animated but unintelligent undead, such as skeletons and zombies. (Intelligent undead are not affected.) Though it can have died centuries ago, the older the spirit called, the less it remembers of its mortal life.\n\nUntil the spell ends, you can ask the ancient spirit up to five questions if it died within the past year, four questions if it died within ten years, three within one hundred years, two within one thousand years, and but a single question for spirits more than one thousand years dead. The ancient shade knows only what it knew in life, including languages. Answers are usually brief, cryptic, or repetitive, and the corpse is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This spell doesn’t return the creature’s soul to its body, only its animating spirit. Thus, the corpse can’t learn new information, doesn’t comprehend anything that has happened since it died, and can’t speculate about future events.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "necromancy", "higher_level": "", @@ -571,7 +571,7 @@ "fields": { "name": "Angelic Guardian", "desc": "You conjure a minor celestial manifestation to protect a creature you can see within range. A faintly glowing image resembling a human head and shoulders hovers within 5 feet of the target for the duration. The manifestation moves to interpose itself between the target and any incoming attacks, granting the target a +2 bonus to AC.\n\nAlso, the first time the target gets a failure on a Dexterity saving throw while the spell is active, it can use its reaction to reroll the save. The spell then ends.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "conjuration", "higher_level": "", @@ -602,7 +602,7 @@ "fields": { "name": "Animate Ghoul", "desc": "You raise one Medium or Small humanoid corpse as a ghoul under your control. Any class levels or abilities the creature had in life are gone, replaced by the standard ghoul stat block.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "necromancy", "higher_level": "When you cast this spell using a 3rd-level spell slot, it can be used on the corpse of a Large humanoid to create a Large ghoul. When you cast this spell using a spell slot of 4th level or higher, this spell creates a ghast, but the material component changes to an onyx gemstone worth at least 200 gp.", @@ -633,7 +633,7 @@ "fields": { "name": "Animate Greater Undead", "desc": "**Animate greater undead** creates an undead servant from a pile of bones or from the corpse of a Large or Huge humanoid within range. The spell imbues the target with a foul mimicry of life, raising it as an undead skeleton or zombie. A skeleton uses the stat block of a minotaur skeleton, or a zombie uses the stat block of an ogre zombie, unless a more appropriate stat block is available.\n\nThe creature is under your control for 24 hours, after which it stops obeying your commands. To maintain control of the creature for another 24 hours, you must cast this spell on it again while you have it controlled. Casting the spell for this purpose reasserts your control over up to four creatures you have previously animated rather than animating a new one.\n", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can reanimate one additional creature for each slot level above 6th.", @@ -664,7 +664,7 @@ "fields": { "name": "Animated Scroll", "desc": "The paper or parchment must be folded into the shape of an animal before casting the spell. It then becomes an animated paper animal of the kind the folded paper most closely resembles. The creature uses the stat block of any beast that has a challenge rating of 0. It is made of paper, not flesh and bone, but it can do anything the real creature can do: a paper owl can fly and attack with its talons, a paper frog can swim without disintegrating in water, and so forth. It follows your commands to the best of its ability, including carrying messages to a recipient whose location you know.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "transmutation", "higher_level": "The duration increases by 24 hours at 5th level (48 hours), 11th level (72 hours), and 17th level (96 hours).", @@ -695,7 +695,7 @@ "fields": { "name": "Anticipate Arcana", "desc": "Your foresight gives you an instant to ready your defenses against a magical attack. When you cast **anticipate arcana**, you have advantage on saving throws against spells and other magical effects until the start of your next turn.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "divination", "higher_level": "", @@ -726,7 +726,7 @@ "fields": { "name": "Anticipate Attack", "desc": "In a flash of foreknowledge, you spot an oncoming attack with enough time to avoid it. Upon casting this spell, you can move up to half your speed without provoking opportunity attacks. The oncoming attack still occurs but misses automatically if you are no longer within the attack’s range, are in a space that's impossible for the attack to hit, or can’t be targeted by that attack in your new position. If none of those circumstances apply but the situation has changed—you have moved into a position where you have cover, for example—then the attack is made after taking the new situation into account.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "", @@ -757,7 +757,7 @@ "fields": { "name": "Anticipate Weakness", "desc": "With a quick glance into the future, you pinpoint where a gap is about to open in your foe’s defense, and then you strike. After casting **anticipate weakness**, you have advantage on attack rolls until the end of your turn.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -788,7 +788,7 @@ "fields": { "name": "Arcane Sight", "desc": "The recipient of this spell gains the benefits of both [true seeing](https://api.open5e.com/spells/true-seeing) and [detect magic](https://api.open5e.com/spells/detect-magic) until the spell ends, and also knows the name and effect of every spell he or she witnesses during the spell’s duration.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "divination", "higher_level": "", @@ -819,7 +819,7 @@ "fields": { "name": "As You Were", "desc": "When cast on a dead or undead body, **as you were** returns that creature to the appearance it had in life while it was healthy and uninjured. The target must have a physical body; the spell fails if the target is normally noncorporeal.\n\nIf as you were is cast on a corpse, its effect is identical to that of [gentle repose](https://api.open5e.com/spells/gentle-repose), except that the corpse’s appearance is restored to that of a healthy, uninjured (albeit dead) person.\n\nIf the target is an undead creature, it also is restored to the appearance it had in life, even if it died from disease or from severe wounds, or centuries ago. The target looks, smells, and sounds (if it can speak) as it did in life. Friends and family can tell something is wrong only with a successful Wisdom (Insight) check against your spell save DC, and only if they have reason to be suspicious. (Knowing that the person should be dead is sufficient reason.) Spells and abilities that detect undead are also fooled, but the creature remains susceptible to Turn Undead as normal.\n\nThis spell doesn’t confer the ability to speak on undead that normally can’t speak. The creature eats, drinks, and breathes as a living creature does; it can mimic sleep, but it has no more need for it than it had before.\n\nThe effect lasts for a number of hours equal to your caster level. You can use an action to end the spell early. Any amount of radiant or necrotic damage dealt to the creature, or any effect that reduces its Constitution, also ends the spell.\n\nIf this spell is cast on an undead creature that isn’t your ally or under your control, it makes a Charisma saving throw to resist the effect.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "necromancy", "higher_level": "", @@ -850,7 +850,7 @@ "fields": { "name": "Ashen Memories", "desc": "You touch the ashes, embers, or soot left behind by a fire and receive a vision of one significant event that occurred in the area while the fire was burning. For example, if you were to touch the cold embers of a campfire, you might witness a snippet of a conversation that occurred around the fire. Similarly, touching the ashes of a burned letter might grant you a vision of the person who destroyed the letter or the contents of the letter. You have no control over what information the spell reveals, but your vision usually is tied to the most meaningful event related to the fire. The GM determines the details of what is revealed.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "", @@ -881,7 +881,7 @@ "fields": { "name": "Aspect of the Dragon", "desc": "This spell draws out the ancient nature within your blood, allowing you to assume the form of any dragon-type creature of challenge 10 or less.\n\nYou assume the hit points and Hit Dice of the new form. When you revert to your normal form, you return to the number of hit points you had before you transformed. If you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. As long as the excess damage doesn’t reduce your normal form to 0 hit points, you aren’t knocked unconscious.\n\nYou retain the benefits of any features from your class, race, or other source and can use them, provided that your new form is physically capable of doing so. You can speak only if the dragon can normally speak.\n\nWhen you transform, you choose whether your equipment falls to the ground, merges into the new form, or is worn by it. Worn equipment functions normally, but equipment doesn’t change shape or size to match the new form. Any equipment that the new form can’t wear must either fall to the ground or merge into the new form. The GM has final say on whether the new form can wear or use a particular piece of equipment. Equipment that merges has no effect in that state.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "transmutation", "higher_level": "", @@ -912,7 +912,7 @@ "fields": { "name": "Aspect of the Serpent", "desc": "A creature you touch takes on snakelike aspects for the duration of the spell. Its tongue becomes long and forked, its canine teeth become fangs with venom sacs, and its pupils become sharply vertical. The target gains darkvision with a range of 60 feet and blindsight with a range of 30 feet. As a bonus action when you cast the spell, the target can make a ranged weapon attack with a normal range of 60 feet that deals 2d6 poison damage on a hit.\n\nAs an action, the target can make a bite attack using either Strength or Dexterity (Melee Weapon Attack: range 5 ft., one creature; Hit: 2d6 piercing damage), and the creature must make a successful DC 14 Constitution saving throw or be paralyzed for 1 minute. A creature paralyzed in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success).\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, both the ranged attack and bite attack damage increase by 1d6 for each slot level above 3rd.", @@ -943,7 +943,7 @@ "fields": { "name": "Aura of Protection or Destruction", "desc": "When you cast this spell, you radiate an otherworldly energy that warps the fate of all creatures within 30 feet of you. Decide whether to call upon either a celestial or a fiend for aid. Choosing a celestial charges a 30-foot-radius around you with an aura of nonviolence; until the start of your next turn, every attack roll made by or against a creature inside the aura is treated as a natural 1. Choosing a fiend charges the area with an aura of violence; until the start of your next turn, every attack roll made by or against a creature inside the aura, including you, is treated as a natural 20.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can extend the duration by 1 round for each slot level above 3rd.", @@ -974,7 +974,7 @@ "fields": { "name": "Auspicious Warning", "desc": "Just in time, you call out a fortunate warning to a creature within range. The target rolls a d4 and adds the number rolled to an attack roll, ability check, or saving throw that it has just made and uses the new result for determining success or failure.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "enchantment", "higher_level": "", @@ -1005,7 +1005,7 @@ "fields": { "name": "Avoid Grievous Injury", "desc": "You cast this spell when a foe strikes you with a critical hit but before damage dice are rolled. The critical hit against you becomes a normal hit.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -1036,7 +1036,7 @@ "fields": { "name": "Avronin’s Astral Assembly", "desc": "You alert a number of creatures that you are familiar with, up to your spellcasting ability modifier (minimum of 1), of your intent to communicate with them through spiritual projection. The invitation can extend any distance and even cross to other planes of existence. Once notified, the creatures can choose to accept this communication at any time during the duration of the spell.\n\nWhen a creature accepts, its spirit is projected into one of the gems used in casting the spell. The material body it leaves behind falls unconscious and doesn't need food or air. The creature's consciousness is present in the room with you, and its normal form appears as an astral projection within 5 feet of the gem its spirit occupies. You can see and hear all the creatures who have joined in the assembly, and they can see and hear you and each other as if they were present (which they are, astrally). They can't interact with anything physically.\n\nA creature can end the spell's effect on itself voluntarily at any time, as can you. When the effect ends or the duration expires, a creature's spirit returns to its body and it regains consciousness. A creature that withdraws voluntarily from the assembly can't rejoin it even if the spell is still active. If a gem is broken while occupied by a creature's astral self, the spirit in the gem returns to its body and the creature suffers two levels of exhaustion.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "necromancy", "higher_level": "", @@ -1067,7 +1067,7 @@ "fields": { "name": "Awaken Object", "desc": "After spending the casting time enchanting a ruby along with a Large or smaller nonmagical object in humanoid form, you touch the ruby to the object. The ruby dissolves into the object, which becomes a living construct imbued with sentience. If the object has no face, a humanoid face appears on it in an appropriate location. The awakened object's statistics are determined by its size, as shown on the table below. An awakened object can use an action to make a melee weapon attack against a target within 5 feet of it. It has free will, acts independently, and speaks one language you know. It is initially friendly to anyone who assisted in its creation.\n\nAn awakened object's speed is 30 feet. If it has no apparent legs or other means of moving, it gains a flying speed of 30 feet and it can hover. Its sight and hearing are equivalent to a typical human's senses. Intelligence, Wisdom, and Charisma can be adjusted up or down by the GM to fit unusual circumstances. A beautiful statue might awaken with increased Charisma, for example, or the bust of a great philosopher could have surprisingly high Wisdom.\n\nAn awakened object needs no air, food, water, or sleep. Damage to an awakened object can be healed or mechanically repaired.\n\n| Size | HP | AC | Attack | Str | Dex | Con | Int | Wis | Cha |\n|-|-|-|-|-|-|-|-|-|-|\n| T | 20 | 18 | +8 to hit, 1d4 + 4 damage | 4 | 18 | 10 | 2d6 | 2d6 | 2d6 |\n| S | 25 | 16 | +6 to hit, 1d8 + 2 damage | 6 | 14 | 10 | 3d6 | 2d6 | 2d6 |\n| M | 40 | 13 | +5 to hit, 2d6 + 1 damage | 10 | 12 | 10 | 3d6 | 3d6 | 2d6 |\n| L | 50 | 10 | +6 to hit, 2d10 + 2 damage | 14 | 10 | 10 | 3d6 | 3d6 | 2d6 + 2 |\n\n", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "transmutation", "higher_level": "", @@ -1098,7 +1098,7 @@ "fields": { "name": "Bad Timing", "desc": "You point toward a creature that you can see and twist strands of chaotic energy around its fate. If the target gets a failure on a Charisma saving throw, the next attack roll or ability check the creature attempts within 10 minutes is made with disadvantage.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "", @@ -1129,7 +1129,7 @@ "fields": { "name": "Batsense", "desc": "For the duration of the spell, a creature you touch can produce and interpret squeaking sounds used for echolocation, giving it blindsight out to a range of 60 feet. The target cannot use its blindsight while deafened, and its blindsight doesn't penetrate areas of magical silence. While using blindsight, the target has disadvantage on Dexterity (Stealth) checks that rely on being silent. Additionally, the target has advantage on Wisdom (Perception) checks that rely on hearing.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "", @@ -1160,7 +1160,7 @@ "fields": { "name": "Become Nightwing", "desc": "This spell imbues you with wings of shadow. For the duration of the spell, you gain a flying speed of 60 feet and a new attack action: Nightwing Breath.\n\n***Nightwing Breath (Recharge 4–6).*** You exhale shadow‐substance in a 30-foot cone. Each creature in the area takes 5d6 necrotic damage, or half the damage with a successful Dexterity saving throw.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "enchantment", "higher_level": "", @@ -1193,7 +1193,7 @@ "fields": { "name": "Beguiling Bet", "desc": "You issue a challenge against one creature you can see within range, which must make a successful Wisdom saving throw or become charmed. On a failed save, you can make an ability check as a bonus action. For example, you could make a Strength (Athletics) check to climb a difficult surface or to jump as high as possible; you could make a Dexterity (Acrobatics) check to perform a backflip; or you could make a Charisma (Performance) check to sing a high note or to extemporize a clever rhyme. You can choose to use your spellcasting ability modifier in place of the usual ability modifier for this check, and you add your proficiency bonus if you're proficient in the skill being used.\n\nThe charmed creature must use its next action (which can be a legendary action) to make the same ability check in a contest against your check. Even if the creature can't perform the action—it may not be close enough to a wall to climb it, or it might not have appendages suitable for strumming a lute—it must still attempt the action to the best of its capability. If you win the contest, the spell (and the contest) continues, with you making a new ability check as a bonus action on your turn. The spell ends when it expires or when the creature wins the contest. ", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for every two slot levels above 2nd. Each creature must be within 30 feet of another creature when you cast the spell.", @@ -1224,7 +1224,7 @@ "fields": { "name": "Benediction", "desc": "You call down a blessing in the name of an angel of protection. A creature you can see within range shimmers with a faint white light. The next time the creature takes damage, it rolls a d4 and reduces the damage by the result. The spell then ends.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "abjuration", "higher_level": "", @@ -1255,7 +1255,7 @@ "fields": { "name": "Bestial Fury", "desc": "You instill primal fury into a creature you can see within range. The target must make a Charisma saving throw; a creature can choose to fail this saving throw. On a failure, the target must use its action to attack its nearest enemy it can see with unarmed strikes or natural weapons. For the duration, the target’s attacks deal an extra 1d6 damage of the same type dealt by its weapon, and the target can’t be charmed or frightened. If there are no enemies within reach, the target can use its action to repeat the saving throw, ending the effect on a success.\n\nThis spell has no effect on undead or constructs.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", @@ -1286,7 +1286,7 @@ "fields": { "name": "Binding Oath", "desc": "You seal an agreement between two or more willing creatures with an oath in the name of the god of justice, using ceremonial blessings during which both the oath and the consequences of breaking it are set: if any of the sworn break this vow, they are struck by a curse. For each individual that does so, you choose one of the options given in the [bestow curse](https://api.open5e.com/spells/bestow-curse) spell. When the oath is broken, all participants are immediately aware that this has occurred, but they know no other details.\n\nThe curse effect of binding oath can’t be dismissed by [dispel magic](https://api.open5e.com/spells/dispel-magic), but it can be removed with [dispel evil and good](https://api.open5e.com/spells/dispel-evil-and-good)[remove curse](https://api.open5e.com/remove-curse), or [wish](https://api.open5e.com/spells/wish). Remove curse functions only if the spell slot used to cast it is equal to or higher than the spell slot used to cast **binding oath**. Depending on the nature of the oath, one creature’s breaking it may or may not invalidate the oath for the other targets. If the oath is completely broken, the spell ends for every affected creature, but curse effects already bestowed remain until dispelled.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "necromancy", "higher_level": "", @@ -1317,7 +1317,7 @@ "fields": { "name": "Biting Arrow", "desc": "As part of the action used to cast this spell, you make a ranged weapon attack with a bow, a crossbow, or a thrown weapon. The effect is limited to a range of 120 feet despite the weapon’s range, and the attack is made with disadvantage if the target is in the weapon’s long range.\n\nIf the weapon attack hits, it deals damage as usual. In addition, the target becomes coated in thin frost until the start of your next turn. If the target uses its reaction before the start of your next turn, it immediately takes 1d6 cold damage and the spell ends.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "The spell’s damage, for both the ranged attack and the cold damage, increases by 1d6 when you reach 5th level (+1d6 and 2d6), 11th level (+2d6 and 3d6), and 17th level (+3d6 and 4d6).", @@ -1350,7 +1350,7 @@ "fields": { "name": "Bitter Chains", "desc": "The spiked ring in your hand expands into a long, barbed chain to ensnare a creature you touch. Make a melee spell attack against the target. On a hit, the target is bound in metal chains for the duration. While bound, the target can move only at half speed and has disadvantage on attack rolls, saving throws, and Dexterity checks. If it moves more than 5 feet during a turn, it takes 3d6 piercing damage from the barbs.\n\nThe creature can escape from the chains by using an action and making a successful Strength or Dexterity check against your spell save DC, or if the chains are destroyed. The chains have AC 18 and 20 hit points.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "", @@ -1383,7 +1383,7 @@ "fields": { "name": "Black Goat’s Blessing", "desc": "You raise your hand with fingers splayed and utter an incantation of the Black Goat with a Thousand Young. Your magic is blessed with the eldritch virility of the All‑Mother. The target has disadvantage on saving throws against spells you cast until the end of your next turn.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "enchantment", "higher_level": "", @@ -1414,7 +1414,7 @@ "fields": { "name": "Black Hand", "desc": "You gather the powers of darkness into your fist and fling dark, paralyzing flame at a target within 30 feet. If you make a successful ranged spell attack, this spell siphons vitality from the target into you. For the duration, the target has disadvantage (and you have advantage) on attack rolls, ability checks, and saving throws made with Strength, Dexterity, or Constitution. An affected target makes a Constitution saving throw (with disadvantage) at the end of its turn, ending the effect on a success.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "necromancy", "higher_level": "", @@ -1445,7 +1445,7 @@ "fields": { "name": "Black Ribbons", "desc": "You pull pieces of the plane of shadow into your own reality, causing a 20-foot cube to fill with inky ribbons that turn the area into difficult terrain and wrap around nearby creatures. Any creature that ends its turn in the area becomes restrained by the ribbons until the end of its next turn, unless it makes a successful Dexterity saving throw. Once a creature succeeds on this saving throw, it can’t be restrained again by the ribbons, but it’s still affected by the difficult terrain.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "conjuration", "higher_level": "", @@ -1476,7 +1476,7 @@ "fields": { "name": "Black Sunshine", "desc": "You hold up a flawed pearl and it disappears, leaving behind a magic orb in your hand that pulses with dim purple light. Allies that you designate become invisible if they're within 60 feet of you and if light from the orb can reach the space they occupy. An invisible creature still casts a faint, purple shadow.\n\nThe orb can be used as a thrown weapon to attack an enemy. On a hit, the orb explodes in a flash of light and the spell ends. The targeted enemy and each creature within 10 feet of it must make a successful Dexterity saving throw or be blinded for 1 minute. A creature blinded in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "illusion", "higher_level": "", @@ -1507,7 +1507,7 @@ "fields": { "name": "Black Swan Storm", "desc": "You call forth a whirlwind of black feathers that fills a 5-foot cube within range. The feathers deal 2d8 force damage to creatures in the cube’s area and radiate darkness, causing the illumination level within 20 feet of the cube to drop by one step (from bright light to dim light, and from dim light to darkness). Creatures that make a successful Dexterity saving throw take half the damage and are still affected by the change in light.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the feathers deal an extra 1d8 force damage for each slot level above 2nd.", @@ -1538,7 +1538,7 @@ "fields": { "name": "Black Well", "desc": "You summon a seething sphere of dark energy 5 feet in diameter at a point within range. The sphere pulls creatures toward it and devours the life force of those it envelops. Every creature other than you that starts its turn within 90 feet of the black well must make a successful Strength saving throw or be pulled 50 feet toward the well. A creature pulled into the well takes 6d8 necrotic damage and is stunned; a successful Constitution saving throw halves the damage and causes the creature to become incapacitated. A creature that starts its turn inside the well also makes a Constitution saving throw; the creature is stunned on a failed save or incapacitated on a success. An incapacitated creature that leaves the well recovers immediately and can take actions and reactions on that turn. A creature takes damage only upon entering the well—it takes no additional damage for remaining there—but if it leaves the well and is pulled back in again, it takes damage again. A total of nine Medium creatures, three Large creatures, or one Huge creature can be inside the well’s otherdimensional space at one time. When the spell’s duration ends, all creatures inside it tumble out in a heap, landing prone.\n", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage dealt by the well increases by 1d8—and the well pulls creatures an additional 5 feet—for each slot level above 6th.", @@ -1571,7 +1571,7 @@ "fields": { "name": "Blade of my Brother", "desc": "You touch a melee weapon that was used by an ally who is now dead, and it leaps into the air and flies to another ally (chosen by you) within 15 feet of you. The weapon enters that ally’s space and moves when the ally moves. If the weapon or the ally is forced to move more than 5 feet from the other, the spell ends.\n\nThe weapon acts on your turn by making an attack if a target presents itself. Its attack modifier equals your spellcasting level + the weapon’s inherent magical bonus, if any; it receives only its own inherent magical bonus to damage. The weapon fights for up to 4 rounds or until your concentration is broken, after which the spell ends and it falls to the ground.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "", @@ -1602,7 +1602,7 @@ "fields": { "name": "Blade of Wrath", "desc": "You create a sword of pure white fire in your free hand. The blade is similar in size and shape to a longsword, and it lasts for the duration. The blade disappears if you let go of it, but you can call it forth again as a bonus action.\n\nYou can use your action to make a melee spell attack with the blade. On a hit, the target takes 2d8 fire damage and 2d8 radiant damage. An aberration, fey, fiend, or undead creature damaged by the blade must succeed on a Wisdom saving throw or be frightened until the start of your next turn.\n\nThe blade sheds bright light in a 20-foot radius and dim light for an additional 20 feet.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, either the fire damage or the radiant damage (your choice) increases by 1d8 for each slot level above 3rd.", @@ -1635,7 +1635,7 @@ "fields": { "name": "Blazing Chariot", "desc": "Calling upon the might of the angels, you conjure a flaming chariot made of gold and mithral in an unoccupied 10-foot‐square space you can see within range. Two horses made of fire and light pull the chariot. You and up to three other Medium or smaller creatures you designate can board the chariot (at the cost of 5 feet of movement) and are unharmed by the flames. Any other creature that touches the chariot or hits it (or a creature riding in it) with a melee attack while within 5 feet of the chariot takes 3d6 fire damage and 3d6 radiant damage. The chariot has AC 18 and 50 hit points, is immune to fire, poison, psychic, and radiant damage, and has resistance to all other nonmagical damage. The horses are not separate creatures but are part of the chariot. The chariot vanishes if it is reduced to 0 hit points, and any creature riding it falls out. The chariot has a speed of 50 feet and a flying speed of 40 feet.\n\nOn your turn, you can guide the chariot in place of your own movement. You can use a bonus action to direct it to take the Dash, Disengage, or Dodge action. As an action, you can use the chariot to overrun creatures in its path. On this turn, the chariot can enter a hostile creature’s space. The creature takes damage as if it had touched the chariot, is shunted to the nearest unoccupied space that it can occupy, and must make a successful Strength saving throw or fall prone in that space.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "conjuration", "higher_level": "", @@ -1668,7 +1668,7 @@ "fields": { "name": "Bleating Call", "desc": "You create a sound on a point within range. The sound’s volume can range from a whisper to a scream, and it can be any sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.\n\nEach creature that starts its turn within 30 feet of the sound and can hear it must make a Wisdom saving throw. On a failed save, the target must take the Dash or Disengage action and move toward the sound by the safest available route on each of its turns. When it arrives to the source of the sound, the target must use its action to examine the sound. Once it has examined the sound, the target determines the sound is illusory and can no longer hear it, ending the spell’s effects on that target and preventing the target from being affected by the sound again for the duration of the spell. If a target takes damage from you or a creature friendly to you, it is no longer under the effects of this spell.\n\nCreatures that can’t be charmed are immune to this spell.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "enchantment", "higher_level": "", @@ -1699,7 +1699,7 @@ "fields": { "name": "Bleed", "desc": "Crackling energy coats the blade of one weapon you are carrying that deals slashing damage. Until the spell ends, when you hit a creature with the weapon, the weapon deals an extra 1d4 necrotic damage and the creature must make a Constitution saving throw. On a failed save, the creature suffers a bleeding wound. Each time you hit a creature with this weapon while it suffers from a bleeding wound, your weapon deals an extra 1 necrotic damage for each time you have previously hit the creature with this weapon (to a maximum of 10 necrotic damage).\n\nAny creature can take an action to stanch the bleeding wound by succeeding on a Wisdom (Medicine) check against your spell save DC. The wound also closes if the target receives magical healing. This spell has no effect on undead or constructs.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "necromancy", "higher_level": "", @@ -1730,7 +1730,7 @@ "fields": { "name": "Bless the Dead", "desc": "You grant a blessing to one deceased creature, enabling it to cross over to the realm of the dead in peace. A creature that benefits from **bless the dead** can’t become undead. The spell has no effect on living creatures or the undead.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "abjuration", "higher_level": "", @@ -1761,7 +1761,7 @@ "fields": { "name": "Blessed Halo", "desc": "A nimbus of golden light surrounds your head for the duration. The halo sheds bright light in a 20-foot radius and dim light for an additional 20 feet.\n\nThis spell grants you a pool of 10 points of healing. When you cast the spell and as an action on subsequent turns during the spell’s duration, you can expend points from this pool to restore an equal number of hit points to one creature within 20 feet that you can see.\n\nAdditionally, you have advantage on Charisma checks made against good creatures within 20 feet.\n\nIf any of the light created by this spell overlaps an area of magical darkness created by a spell of 2nd level or lower, the spell that created the darkness is dispelled.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the spell’s pool of healing points increases by 5 for each spell slot above 2nd, and the spell dispels magical darkness created by a spell of a level equal to the slot used to cast this spell.", @@ -1792,7 +1792,7 @@ "fields": { "name": "Blizzard", "desc": "A howling storm of thick snow and ice crystals appears in a cylinder 40 feet high and 40 feet in diameter within range. The area is heavily obscured by the swirling snow. When the storm appears, each creature in the area takes 8d8 cold damage, or half as much damage with a successful Constitution saving throw. A creature also makes this saving throw and takes damage when it enters the area for the first time on a turn or ends its turn there. In addition, a creature that takes cold damage from this spell has disadvantage on Constitution saving throws to maintain concentration until the start of its next turn.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "conjuration", "higher_level": "", @@ -1825,7 +1825,7 @@ "fields": { "name": "Blood and Steel", "desc": "When you cast this spell, you cut your hand and take 1d4 slashing damage that can’t be healed until you take a long rest. You then touch a construct; it must make a successful Constitution saving throw or be charmed by you for the duration. If you or your allies are fighting the construct, it has advantage on the saving throw. Even constructs that are immune to charm effects can be affected by this spell.\n\nWhile the construct is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as, “Attack the ghouls,” “Block the bridge,” or, “Fetch that bucket.” If the construct completes the order and doesn’t receive further direction from you, it defends itself.\n\nYou can use your action to take total and precise control of the target. Until the end of your next turn, the construct takes only the actions you specify and does nothing you haven’t ordered it to do. During this time, you can also cause the construct to use a reaction, but doing this requires you to use your own reaction as well.\n\nEach time the construct takes damage, it makes a new Constitution saving throw against the spell. If the saving throw succeeds, the spell ends.\n\nIf the construct is already under your control when the spell is cast, it gains an Intelligence of 10 (unless its own Intelligence is higher, in which case it retains the higher score) for 4 hours. The construct is capable of acting independently, though it remains loyal to you for the spell’s duration. You can also grant the target a bonus equal to your Intelligence modifier on one skill in which you have proficiency.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "When you cast this spell using a 5th‑level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.", @@ -1856,7 +1856,7 @@ "fields": { "name": "Blood Armor", "desc": "When you strike a foe with a melee weapon attack, you can immediately cast **blood armor** as a bonus action. The foe you struck must contain blood; if the target doesn’t bleed, the spell ends without effect. The blood flowing from your foe magically increases in volume and forms a suit of armor around you, granting you an Armor Class of 18 + your Dexterity modifier for the spell’s duration. This armor has no Strength requirement, doesn’t hinder spellcasting, and doesn’t incur disadvantage on Dexterity (Stealth) checks.\n\nIf the creature you struck was a celestial, **blood armor** also grants you advantage on Charisma saving throws for the duration of the spell.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "necromancy", "higher_level": "", @@ -1887,7 +1887,7 @@ "fields": { "name": "Blood Lure", "desc": "You point at any location (a jar, a bowl, even a puddle) within range that contains at least a pint of blood. Each creature that feeds on blood and is within 60 feet of that location must make a Charisma saving throw. (This includes undead, such as vampires.) A creature that has Keen Smell or any similar scent-boosting ability has disadvantage on the saving throw, while undead have advantage on the saving throw. On a failed save, the creature is attracted to the blood and must move toward it unless impeded.\n\nOnce an affected creature reaches the blood, it tries to consume it, foregoing all other actions while the blood is present. A successful attack against an affected creature ends the effect, as does the consumption of the blood, which requires an action by an affected creature.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "enchantment", "higher_level": "", @@ -1918,7 +1918,7 @@ "fields": { "name": "Blood Offering", "desc": "You touch the corpse of a creature that isn’t undead or a construct and consume its life force. You must have dealt damage to the creature before it died, and it must have been dead for no more than 1 hour. You regain a number of hit points equal to 1d4 × the creature's challenge rating (minimum of 1d4). The creature can be restored to life only by means of a [true resurrection](https://api.open5e.com/spells/true-resurrection) or a [wish](https://api.open5e.com/spells/wish) spell.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "necromancy", "higher_level": "", @@ -1949,7 +1949,7 @@ "fields": { "name": "Blood Puppet", "desc": "With a sample of its blood, you are able to magically control a creature’s actions, like a marionette on magical strings. Choose a creature you can see within range whose blood you hold. The target must succeed on a Constitution saving throw, or you gain control over its physical activity (as long as you interact with the blood material component each round). As a bonus action on your turn, you can direct the creature to perform various activities. You can specify a simple and general course of action, such as, “Attack that creature,” “Run over there,” or, “Fetch that object.” If the creature completes the order and doesn’t receive further direction from you, it defends and preserves itself to the best of its ability. The target is aware of being controlled. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "", @@ -1980,7 +1980,7 @@ "fields": { "name": "Blood Scarab", "desc": "Your blood is absorbed into the beetle’s exoskeleton to form a beautiful, rubylike scarab that flies toward a creature of your choice within range. The target must make a successful Constitution saving throw or take 1d6 necrotic damage. You gain temporary hit points equal to the necrotic damage dealt.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the number of scarabs increases by one for each slot level above 1st. You can direct the scarabs at the same target or at different targets. Each target makes a single saving throw, regardless of the number of scarabs targeting it.", @@ -2011,7 +2011,7 @@ "fields": { "name": "Blood Spoor", "desc": "By touching a drop of your quarry’s blood (spilled or drawn within the past hour), you can follow the creature’s trail unerringly across any surface or under water, no matter how fast you are moving. If your quarry takes flight, you can follow its trail along the ground—or through the air, if you have the means to fly.\n\nIf your quarry moves magically (such as by way of a [dimension door](https://api.open5e.com/spells/dimension-door) or a [teleport](https://api.open5e.com/spells/teleport) spell), you sense its trail as a straight path leading from where the magical movement started to where it ended. Such a route might lead through lethal or impassable barriers. This spell even reveals the route of a creature using [pass without trace](https://api.open5e.com/spells/pass-without-trace), but it fails to locate a creature protected by [nondetection](https://api.open5e.com/spells/nondetection) or by other effects that prevent [scrying](https://api.open5e.com/spells/scrying) spells or cause [divination](https://api.open5e.com/spells/divination) spells to fail. If your quarry moves to another plane, its trail ends without trace, but **blood spoor** picks up the trail again if the caster moves to the same plane as the quarry before the spell’s duration expires.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "divination", "higher_level": "", @@ -2042,7 +2042,7 @@ "fields": { "name": "Blood Tide", "desc": "When you cast this spell, a creature you designate within range must succeed on a Constitution saving throw or bleed from its nose, eyes, ears, and mouth. This bleeding deals no damage but imposes a –2 penalty on the creature’s Intelligence, Charisma, and Wisdom checks. **Blood tide** has no effect on undead or constructs.\n\nA bleeding creature might attract the attention of creatures such as stirges, sharks, or giant mosquitoes, depending on the circumstances.\n\nA [cure wounds](https://api.open5e.com/spells/cure-wounds) spell stops the bleeding before the duration of blood tide expires, as does a successful DC 10 Wisdom (Medicine) check.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "necromancy", "higher_level": "The spell’s duration increases to 2 minutes when you reach 5th level, to 10 minutes when you reach 11th level, and to 1 hour when you reach 17th level.", @@ -2073,7 +2073,7 @@ "fields": { "name": "Blood to Acid", "desc": "When you cast this spell, you designate a creature within range and convert its blood into virulent acid. The target must make a Constitution saving throw. On a failed save, it takes 10d12 acid damage and is stunned by the pain for 1d4 rounds. On a successful save, it takes half the damage and isn’t stunned.\n\nCreatures without blood, such as constructs and plants, are not affected by this spell. If **blood to acid** is cast on a creature composed mainly of blood, such as a [blood elemental](https://api.open5e.com/monsters/blood-elemental) or a [blood zombie](https://api.open5e.com/monsters/blood-zombie), the creature is slain by the spell if its saving throw fails.", - "document": "deep-magic", + "document": "deepm", "level": 9, "school": "transmutation", "higher_level": "", @@ -2106,7 +2106,7 @@ "fields": { "name": "Bloodhound", "desc": "You touch a willing creature to grant it an enhanced sense of smell. For the duration, that creature has advantage on Wisdom (Perception) checks that rely on smell and Wisdom (Survival) checks to follow tracks.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a 3rd-level spell slot, you also grant the target blindsight out to a range of 30 feet for the duration.", @@ -2137,7 +2137,7 @@ "fields": { "name": "Bloodshot", "desc": "You launch a jet of boiling blood from your eyes at a creature within range. You take 1d6 necrotic damage and make a ranged spell attack against the target. If the attack hits, the target takes 2d10 fire damage plus 2d8 psychic damage.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the fire damage increases by 1d10 for each slot level above 2nd.", @@ -2170,7 +2170,7 @@ "fields": { "name": "Bloody Hands", "desc": "You cause the hands (or other appropriate body parts, such as claws or tentacles) of a creature within range to bleed profusely. The target must succeed on a Constitution saving throw or take 1 necrotic damage each round and suffer disadvantage on all melee and ranged attack rolls that require the use of its hands for the spell’s duration.\n\nCasting any spell that has somatic or material components while under the influence of this spell requires a DC 10 Constitution saving throw. On a failed save, the spell is not cast but it is not lost; the casting can be attempted again in the next round.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "necromancy", "higher_level": "", @@ -2201,7 +2201,7 @@ "fields": { "name": "Bloody Smite", "desc": "The next time during the spell’s duration that you hit a creature with a melee weapon attack, your weapon pulses with a dull red light, and the attack deals an extra 1d6 necrotic damage to the target. Until the spell ends, the target must make a Constitution saving throw at the start of each of its turns. On a failed save, it takes 1d6 necrotic damage, it bleeds profusely from the mouth, and it can’t speak intelligibly or cast spells that have a verbal component. On a successful save, the spell ends. If the target or an ally within 5 feet of it uses an action to tend the wound and makes a successful Wisdom (Medicine) check against your spell save DC, or if the target receives magical healing, the spell ends.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "necromancy", "higher_level": "", @@ -2234,7 +2234,7 @@ "fields": { "name": "Bloom", "desc": "You plant a silver acorn in solid ground and spend an hour chanting a litany of praises to the natural world, after which the land within 1 mile of the acorn becomes extremely fertile, regardless of its previous state. Any seeds planted in the area grow at twice the natural rate. Food harvested regrows within a week. After one year, the land slowly reverts to its normal fertility, unable to stave off the march of nature.\n\nChoose one of the following effects, which appears and grows immediately:\n* A field planted with vegetables of your choice, ready for harvest.\n* A thick forest of stout trees and ample undergrowth.\n* A grassland with wildflowers and fodder for grazing.\n* An orchard of fruit trees of your choice, growing in orderly rows and ready for harvest.\nLiving creatures that take a short rest within the area of a bloom spell receive the maximum hit points for Hit Dice expended. **Bloom** counters the effects of a [desolation](https://api.open5e.com/spells/desolation) spell.\n\n***Ritual Focus.*** If you expend your ritual focus, the duration becomes permanent.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "conjuration", "higher_level": "", @@ -2265,7 +2265,7 @@ "fields": { "name": "Boiling Blood", "desc": "You cause the blood within a creature’s body to boil with supernatural heat. Choose one creature that you can see within range that isn’t a construct or an undead. The target must make a Constitution saving throw. On a successful save, it takes 2d6 fire damage and the spell ends. On a failed save, the creature takes 4d6 fire damage and is blinded. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends. On a failure, the creature takes an additional 2d6 fire damage and remains blinded.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", @@ -2298,7 +2298,7 @@ "fields": { "name": "Boiling Oil", "desc": "You conjure a shallow, 15-foot-radius pool of boiling oil centered on a point within range. The pool is difficult terrain, and any creature that enters the pool or starts its turn there must make a Dexterity saving throw. On a failed save, the creature takes 3d8 fire damage and falls prone. On a successful save, a creature takes half as much damage and doesn’t fall prone.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", @@ -2331,7 +2331,7 @@ "fields": { "name": "Bolster Undead", "desc": "You suffuse an area with negative energy to increase the difficulty of harming or affecting undead creatures.\n\nChoose up to three undead creatures within range. When a targeted creature makes a saving throw against being turned or against spells or effects that deal radiant damage, the target has advantage on the saving throw.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional undead creature for each slot level above 1st.", @@ -2362,7 +2362,7 @@ "fields": { "name": "Booster Shot", "desc": "You imbue a two-handed ranged weapon (typically a shortbow, longbow, light crossbow, or heavy crossbow) that you touch with a random magical benefit. While the spell lasts, a projectile fired from the weapon has an effect that occurs on a hit in addition to its normal damage. Roll a d6 to determine the additional effect for each casting of this spell.\n\n| D6 | EFFECT |\n|-|-|\n| 1 | 2d10 acid damage to all creatures within 10 feet of the target |\n| 2 | 2d10 lightning damage to the target and 1d10 lightning damage to all creatures in a 5-foot-wide line between the weapon and the target |\n| 3 | 2d10 necrotic damage to the target, and the target has disadvantage on its first attack roll before the start of the weapon user’s next turn |\n| 4 | 2d10 cold damage to the target and 1d10 cold damage to all other creatures in a 60-foot cone in front of the weapon |\n| 5 | 2d10 force damage to the target, and the target is pushed 20 feet |\n| 6 | 2d10 psychic damage to the target, and the target is stunned until the start of the weapon user’s next turn |\n\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, all damage increases by 1d10 for each slot level above 3rd.", @@ -2393,7 +2393,7 @@ "fields": { "name": "Boreas’s Breath", "desc": "You freeze standing water in a 20-foot cube or running water in a 10-foot cube centered on you. The water turns to solid ice. The surface becomes difficult terrain, and any creature that ends its turn on the ice must make a successful DC 10 Dexterity saving throw or fall prone.\n\nCreatures that are partially submerged in the water when it freezes become restrained. While restrained in this way, a creature takes 1d6 cold damage at the end of its turn. It can break free by using an action to make a successful Strength check against your spell save DC.\n\nCreatures that are fully submerged in the water when it freezes become incapacitated and cannot breathe. While incapacitated in this way, a creature takes 2d6 cold damage at the end of its turn. A trapped creature makes a DC 20 Strength saving throw after taking this damage at the end of its turn, breaking free from the ice on a success.\n\nThe ice has AC 10 and 15 hit points. It is vulnerable to fire damage, has resistance to nonmagical slashing and piercing damage, and is immune to cold, necrotic, poison, psychic, and thunder damage.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the size of the cube increases by 10 feet for each slot level above 2nd.", @@ -2426,7 +2426,7 @@ "fields": { "name": "Bottled Arcana", "desc": "By touching an empty, stoppered glass container such as a vial or flask, you magically enable it to hold a single spell. To be captured, the spell must be cast within 1 round of casting **bottled arcana** and it must be intentionally cast into the container. The container can hold one spell of 3rd level or lower. The spell can be held in the container for as much as 24 hours, after which the container reverts to a mundane vessel and any magic inside it dissipates harmlessly.\n\nAs an action, any creature can unstop the container, thereby releasing the spell. If the spell has a range of self, the creature opening the container is affected; otherwise, the creature opening the container designates the target according to the captured spell’s description. If a creature opens the container unwittingly (not knowing that the container holds a spell), the spell targets the creature opening the container or is centered on its space instead (whichever is more appropriate). [Dispel magic](https://api.open5e.com/spells/dispel-magic) cast on the container targets **bottled arcana**, not the spell inside. If **bottled arcana** is dispelled, the container becomes mundane and the spell inside dissipates harmlessly.\n\nUntil the spell in the container is released, its caster can’t regain the spell slot used to cast that spell. Once the spell is released, its caster regains the use of that slot normally.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the level of the spell the container can hold increases by one for every slot level above 5th.", @@ -2457,7 +2457,7 @@ "fields": { "name": "Bottomless Stomach", "desc": "When you cast this spell, you gain the ability to consume dangerous substances and contain them in an extradimensional reservoir in your stomach. The spell allows you to swallow most liquids, such as acids, alcohol, poison, and even quicksilver, and hold them safely in your stomach. You are unaffected by swallowing the substance, but the spell doesn’t give you resistance or immunity to the substance in general; for example, you could safely drink a bucket of a black dragon’s acidic spittle, but you’d still be burned if you were caught in the dragon’s breath attack or if that bucket of acid were dumped over your head.\n\nThe spell allows you to store up to 10 gallons of liquid at one time. The liquid doesn’t need to all be of the same type, and different types don’t mix while in your stomach. Any liquid in excess of 10 gallons has its normal effect when you try to swallow it.\n\nAt any time before you stop concentrating on the spell, you can regurgitate up to 1 gallon of liquid stored in your stomach as a bonus action. The liquid is vomited into an adjacent 5-foot square. A target in that square must succeed on a DC 15 Dexterity saving throw or be affected by the liquid. The GM determines the exact effect based on the type of liquid regurgitated, using 1d6 damage of the appropriate type as the baseline.\n\nWhen you stop concentrating on the spell, its duration expires, or it’s dispelled, the extradimensional reservoir and the liquid it contains cease to exist.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -2488,7 +2488,7 @@ "fields": { "name": "Breathtaking Wind", "desc": "You target a creature with a blast of wintry air. That creature must make a successful Constitution saving throw or become unable to speak or cast spells with a vocal component for the duration of the spell.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "evocation", "higher_level": "", @@ -2519,7 +2519,7 @@ "fields": { "name": "Breeze Compass", "desc": "When you cast **breeze compass**, you must clearly imagine or mentally describe a location. It doesn’t need to be a location you’ve been to as long as you know it exists on the Material Plane. Within moments, a gentle breeze arises and blows along the most efficient path toward that destination. Only you can sense this breeze, and whenever it brings you to a decision point (a fork in a passageway, for example), you must make a successful DC 8 Intelligence (Arcana) check to deduce which way the breeze indicates you should go. On a failed check, the spell ends. The breeze guides you around cliffs, lava pools, and other natural obstacles, but it doesn’t avoid enemies or hostile creatures.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "divination", "higher_level": "", @@ -2550,7 +2550,7 @@ "fields": { "name": "Brimstone Infusion", "desc": "You infuse an ordinary flask of alchemist's fire with magical brimstone. While so enchanted, the alchemist's fire can be thrown 40 feet instead of 20, and it does 2d6 fire damage instead of 1d4. The Dexterity saving throw to extinguish the flames uses your spell save DC instead of DC 10. Infused alchemist's fire returns to its normal properties after 24 hours.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "transmutation", "higher_level": "", @@ -2581,7 +2581,7 @@ "fields": { "name": "Brittling", "desc": "This spell uses biting cold to make a metal or stone object you touch become brittle and more easily shattered. The object’s hit points are reduced by a number equal to your level as a spellcaster, and Strength checks to shatter or break the object are made with advantage if they occur within 1 minute of the spell’s casting. If the object isn’t shattered during this time, it reverts to the state it was in before the spell was cast.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "", @@ -2612,7 +2612,7 @@ "fields": { "name": "Broken Charge", "desc": "When an enemy that you can see moves to within 5 feet of you, you utter a perplexing word that alters the foe’s course. The enemy must make a successful Wisdom saving throw or take 2d4 psychic damage and use the remainder of its speed to move in a direction of your choosing.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the target takes an additional 2d4 psychic damage for each slot level above 1st.", @@ -2643,7 +2643,7 @@ "fields": { "name": "By the Light of the Moon", "desc": "The area within 30 feet of you becomes bathed in magical moonlight. In addition to providing dim light, it highlights objects and locations that are hidden or that hold a useful clue. Until the spell ends, all Wisdom (Perception) and Intelligence (Investigation) checks made in the area are made with advantage.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "", @@ -2674,7 +2674,7 @@ "fields": { "name": "By the Light of the Watchful Moon", "desc": "Regardless of the time of day or your location, you command the watchful gaze of the moon to illuminate threats to you and your allies. Shafts of bright moonlight, each 5 feet wide, shine down from the sky (or from the ceiling if you are indoors), illuminating all spaces within range that contain threats, whether they are enemies, traps, or hidden hazards. An enemy creature that makes a successful Charisma saving throw resists the effect and is not picked out by the moon’s glow.\n\nThe glow does not make invisible creatures visible, but it does indicate an invisible creature’s general location (somewhere within the 5-foot beam). The light continues to illuminate any target that moves, but a target that moves out of the spell’s area is no longer illuminated. A threat that enters the area after the spell is cast is not subject to the spell’s effect.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "divination", "higher_level": "", @@ -2705,7 +2705,7 @@ "fields": { "name": "Call Shadow Mastiff", "desc": "You conjure a [shadow mastiff](https://api.open5e.com/monsters/shadow-mastiff) from the plane of shadow. This creature obeys your verbal commands to aid you in battle or to seek out a specific creature. It has the body of a large dog with a smooth black coat, 2 feet high at the shoulder and weighing 200 pounds.\n\nThe mastiff is friendly to you and your companions. Roll initiative for the mastiff; it acts on its own turn. It obeys simple, verbal commands from you, within its ability to act. Giving a command takes no action on your part.\n\nThe mastiff disappears when it drops to 0 hit points or when the spell ends.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "", @@ -2736,7 +2736,7 @@ "fields": { "name": "Calm of the Storm", "desc": "While visualizing the world as you wish it was, you lay your hands upon a creature other than yourself and undo the effect of a chaos magic surge that affected the creature within the last minute. Reality reshapes itself as if the surge never happened, but only for that creature.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the time since the chaos magic surge can be 1 minute longer for each slot level above 3rd.", @@ -2767,7 +2767,7 @@ "fields": { "name": "Candle’s Insight", "desc": "**Candle’s insight** is cast on its target as the component candle is lit. The candle burns for up to 10 minutes unless it’s extinguished normally or by the spell’s effect. While the candle burns, the caster can question the spell’s target, and the candle reveals whether the target speaks truthfully. An intentionally misleading or partial answer causes the flame to flicker and dim. An outright lie causes the flame to flare and then go out, ending the spell. The candle judges honesty, not absolute truth; the flame burns steadily through even an outrageously false statement, as long as the target believes it’s true.\n\n**Candle’s insight** is used across society: by merchants while negotiating deals, by inquisitors investigating heresy, and by monarchs as they interview foreign diplomats. In some societies, casting candle’s insight without the consent of the spell’s target is considered a serious breach of hospitality.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -2798,7 +2798,7 @@ "fields": { "name": "Carmello-Volta’s Irksome Preserves", "desc": "At your command, delicious fruit jam oozes from a small mechanical device (such as a crossbow trigger, a lock, or a clockwork toy), rendering the device inoperable until the spell ends and the device is cleaned with a damp cloth. Cleaning away the jam takes an action, but doing so has no effect until the spell ends. One serving of the jam can be collected in a suitable container. If it's eaten (as a bonus action) within 24 hours, the jam restores 1d4 hit points. The jam's flavor is determined by the material component.\n\nThe spell can affect constructs, with two limitations. First, the target creature negates the effect with a successful Dexterity saving throw. Second, unless the construct is Tiny, only one component (an eye, a knee, an elbow, and so forth) can be disabled. The affected construct has disadvantage on attack rolls and ability checks that depend on the disabled component until the spell ends and the jam is removed.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "", @@ -2829,7 +2829,7 @@ "fields": { "name": "Catapult", "desc": "You magically hurl an object or creature weighing 500 pounds or less 40 feet through the air in a direction of your choosing (including straight up). Objects hurled at specific targets require a spell attack roll to hit. A thrown creature takes 6d10 bludgeoning damage from the force of the throw, plus any appropriate falling damage, and lands prone. If the target of the spell is thrown against another creature, the total damage is divided evenly between them and both creatures are knocked prone.\n", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d10, the distance thrown increases by 10 feet, and the weight thrown increases by 100 pounds for each slot level above 6th.", @@ -2862,7 +2862,7 @@ "fields": { "name": "Catch the Breath", "desc": "You can cast this spell as a reaction when you’re targeted by a breath weapon. Doing so gives you advantage on your saving throw against the breath weapon. If your saving throw succeeds, you take no damage from the attack even if a successful save normally only halves the damage.\n\nWhether your saving throw succeeded or failed, you absorb and store energy from the attack. On your next turn, you can make a ranged spell attack against a target within 60 feet. On a hit, the target takes 3d10 force damage. If you opt not to make this attack, the stored energy dissipates harmlessly.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage done by your attack increases by 1d10 for each slot level above 3rd.", @@ -2895,7 +2895,7 @@ "fields": { "name": "Caustic Blood", "desc": "Your blood becomes caustic when exposed to the air. When you take piercing or slashing damage, you can use your reaction to select up to three creatures within 30 feet of you. Each target takes 1d10 acid damage unless it makes a successful Dexterity saving throw.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the number of targets increases by one for each slot level above 2nd, to a maximum of six targets.", @@ -2928,7 +2928,7 @@ "fields": { "name": "Caustic Torrent", "desc": "A swirling jet of acid sprays from you in a direction you choose. The acid fills a line 60 feet long and 5 feet wide. Each creature in the line takes 14d6 acid damage, or half as much damage if it makes a successful Dexterity saving throw. A creature reduced to 0 hit points by this spell is killed, and its body is liquefied. In addition, each creature other than you that’s in the line or within 5 feet of it is poisoned for 1 minute by toxic fumes. Creatures that don’t breathe or that are immune to acid damage aren’t poisoned. A poisoned creature can repeat the Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "conjuration", "higher_level": "", @@ -2961,7 +2961,7 @@ "fields": { "name": "Caustic Touch", "desc": "Your hand sweats profusely and becomes coated in a film of caustic slime. Make a melee spell attack against a creature you touch. On a hit, the target takes 1d8 acid damage. If the target was concentrating on a spell, it has disadvantage on its Constitution saving throw to maintain concentration.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "This spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", @@ -2994,7 +2994,7 @@ "fields": { "name": "Celebration", "desc": "You create a 30-foot-radius area around a point that you choose within range. An intelligent creature that enters the area or starts its turn there must make a Wisdom saving throw. On a failed save, the creature starts to engage in celebratory revelry: drinking, singing, laughing, and dancing. Affected creatures are reluctant to leave the area until the spell ends, preferring to continue the festivities. They forsake appointments, cease caring about their woes, and generally behave in a cordial (if not hedonistic) manner. This preoccupation with merrymaking occurs regardless of an affected creature’s agenda or alignment. Assassins procrastinate, servants join in the celebration rather than working, and guards abandon their posts.\n\nThe effect ends on a creature when it is attacked, takes damage, or is forced to leave the area. A creature that makes a successful saving throw can enter or leave the area without danger of being enchanted. A creature that fails the saving throw and is forcibly removed from the area must repeat the saving throw if it returns to the area.\n", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the spell lasts for an additional hour for each slot level above 7th.\n\n***Ritual Focus.*** If you expend your ritual focus, an unaffected intelligent creature must make a new saving throw every time it starts its turn in the area, even if it has previously succeeded on a save against the spell.", @@ -3025,7 +3025,7 @@ "fields": { "name": "Chains of the Goddess", "desc": "Choose a creature you can see within 90 feet. The target must make a successful Wisdom saving throw or be restrained by chains of psychic force and take 6d8 bludgeoning damage. A restrained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a successful save. While restrained in this way, the creature also takes 6d8 bludgeoning damage at the start of each of your turns.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "enchantment", "higher_level": "", @@ -3058,7 +3058,7 @@ "fields": { "name": "Chains of Torment", "desc": "You are surrounded by an aura of dim light in a 10-foot radius as you conjure an iron chain that extends out to a creature you can see within 30 feet. The creature must make a successful Dexterity saving throw or be grappled (escape DC equal to your spell save DC). While grappled in this way, the creature is also restrained. A creature that’s restrained at the start of its turn takes 4d6 psychic damage. You can have only one creature restrained in this way at a time.\n\nAs an action, you can scan the mind of the creature that’s restrained by your chain. If the creature gets a failure on a Wisdom saving throw, you learn one discrete piece of information of your choosing known by the creature (such as a name, a password, or an important number). The effect is otherwise harmless.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the psychic damage increases by 1d6 for each slot level above 4th.", @@ -3091,7 +3091,7 @@ "fields": { "name": "Champion’s Weapon", "desc": "A spectral version of a melee weapon of your choice materializes in your hand. It has standard statistics for a weapon of its kind, but it deals force damage instead of its normal damage type and it sheds dim light in a 10-foot radius. You have proficiency with this weapon for the spell’s duration. The weapon can be wielded only by the caster; the spell ends if the weapon is held by a creature other than you or if you start your turn more than 10 feet from the weapon.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the weapon deals an extra 1d8 force damage for each slot level above 2nd.", @@ -3122,7 +3122,7 @@ "fields": { "name": "Chaotic Form", "desc": "You cause the form of a willing creature to become malleable, dripping and flowing according to the target’s will as if the creature were a vaguely humanoid-shaped ooze. The creature is not affected by difficult terrain, it has advantage on Dexterity (Acrobatics) checks made to escape a grapple, and it suffers no penalties when squeezing through spaces one size smaller than itself. The target’s movement is halved while it is affected by **chaotic form**.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration increases by 10 minutes for each slot level above 4th.", @@ -3153,7 +3153,7 @@ "fields": { "name": "Chaotic Vitality", "desc": "Make a melee spell attack against a creature that has a number of Hit Dice no greater than your level and has at least 1 hit point. On a hit, you conjure pulsating waves of chaotic energy within the creature and yourself. After a brief moment that seems to last forever, your hit point total changes, as does the creature’s. Roll a d100 and increase or decrease the number rolled by any number up to your spellcasting level, then find the result on the Hit Point Flux table. Apply that result both to yourself and the target creature. Any hit points gained beyond a creature’s normal maximum are temporary hit points that last for 1 round per caster level.\n\nFor example, a 3rd-level spellcaster who currently has 17 of her maximum 30 hit points casts **chaotic vitality** on a creature with 54 hit points and rolls a 75 on the Hit Point Flux table. The two creatures have a combined total of 71 hit points. A result of 75 indicates that both creatures get 50 percent of the total, so the spellcaster and the target end up with 35 hit points each. In the spellcaster’s case, 5 of those hit points are temporary and will last for 3 rounds.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the maximum Hit Dice of the affected creature increases by 2 for each slot level above 2nd.\n ## Hit Point Flux \n| SIZE | HP |\n|-|-|\n| 01–09 | 0 |\n| 10–39 | 1 |\n| 40–69 | 25 percent of total |\n| 70–84 | 50 percent of total |\n| 85–94 | 75 percent of total |\n| 95–99 | 100 percent of total |\n| 100 | 200 percent of total, and both creatures gain the effect of a haste spell that lasts for 1 round per caster level |\n\n", @@ -3184,7 +3184,7 @@ "fields": { "name": "Chaotic World", "desc": "You throw a handful of colored cloth into the air while screaming a litany of disjointed phrases. A moment later, a 30-foot cube centered on a point within range fills with multicolored light, cacophonous sound, overpowering scents, and other confusing sensory information. The effect is dizzying and overwhelming. Each enemy within the cube must make a successful Intelligence saving throw or become blinded and deafened, and fall prone. An affected enemy cannot stand up or recover from the blindness or deafness while within the area, but all three conditions end immediately for a creature that leaves the spell’s area.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "illusion", "higher_level": "", @@ -3215,7 +3215,7 @@ "fields": { "name": "Chilling Words", "desc": "You utter a short phrase and designate a creature within range to be affected by it. The target must make a Wisdom saving throw to avoid the spell. On a failed save, the target is susceptible to the phrase for the duration of the spell. At any later time while the spell is in effect, you and any of your allies within range when you cast the spell can use an action to utter the phrase, which causes the target to freeze in fear. Each of you can use the phrase against the target once only, and the target must be within 30 feet of the speaker for the phrase to be effective.\n\nWhen the target hears the phrase, it must make a successful Constitution saving throw or take 1d6 psychic damage and become restrained for 1 round. Whether this saving throw succeeds or fails, the target can’t be affected by the phrase for 1 minute afterward.\n\nYou can end the spell early by making a final utterance of the phrase (even if you’ve used the phrase on this target previously). On hearing this final utterance, the target takes 4d6 psychic damage and is restrained for 1 minute or, with a successful Constitution saving throw, it takes half the damage and is restrained for 1 round.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "enchantment", "higher_level": "", @@ -3248,7 +3248,7 @@ "fields": { "name": "Chronal Lance", "desc": "You inflict the ravages of aging on up to three creatures within range, temporarily discomfiting them and making them appear elderly for a time. Each target must make a successful Wisdom saving throw, or its walking speed is halved (round up to the nearest 5-foot increment) and it has disadvantage on Dexterity checks (but not saving throws). An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", @@ -3279,7 +3279,7 @@ "fields": { "name": "Circle of Wind", "desc": "Light wind encircles you, leaving you in the center of a mild vortex. For the duration, you gain a +2 bonus to your AC against ranged attacks. You also have advantage on saving throws against extreme environmental heat and against harmful gases, vapors, and inhaled poisons.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "abjuration", "higher_level": "", @@ -3310,7 +3310,7 @@ "fields": { "name": "Clash of Glaciers", "desc": "You conjure up icy boulders that crush creatures in a line 100 feet long. Each creature in the area takes 5d6 bludgeoning damage plus 5d6 cold damage, or half the damage with a successful Dexterity saving throw.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d6 for each slot level above 5th. You decide whether each extra die deals bludgeoning or cold damage.", @@ -3343,7 +3343,7 @@ "fields": { "name": "Claws of Darkness", "desc": "You shape shadows into claws that grow from your fingers and drip inky blackness. The claws have a reach of 10 feet. While the spell lasts, you can make a melee spell attack with them that deals 1d10 cold damage.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "", @@ -3374,7 +3374,7 @@ "fields": { "name": "Claws of the Earth Dragon", "desc": "You summon the power of the earth dragon and shoot a ray at one target within 60 feet. The target falls prone and takes 6d8 bludgeoning damage from being slammed to the ground. If the target was flying or levitating, it takes an additional 1d6 bludgeoning damage per 10 feet it falls. If the target makes a successful Strength saving throw, damage is halved, it doesn’t fall, and it isn’t knocked prone.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage done by the attack increases by 1d8 and the range increases by 10 feet for each slot level above 5th.", @@ -3407,7 +3407,7 @@ "fields": { "name": "Clearing the Field", "desc": "With a harsh word and a vicious chopping motion, you cause every tree, shrub, and stump within 40 feet of you to sink into the ground, leaving the vacated area clear of plant life that might otherwise hamper movement or obscure sight. Overgrown areas that counted as difficult terrain become clear ground and no longer hamper movement. The original plant life instantly rises from the ground again when the spell ends or is dispelled. Plant creatures are not affected by **clearing the field**.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the spell lasts for an additional hour for each slot level above 2nd.\n\n***Ritual Focus.*** If you expend your ritual focus, plant creatures in the area must make a successful Constitution saving throw or be affected as though by a [enlarge/reduce](https://api.open5e.com/spells/enlargereduce) spell.", @@ -3438,7 +3438,7 @@ "fields": { "name": "Cloak of Shadow", "desc": "You cloak yourself in shadow, giving you advantage on Dexterity (Stealth) checks against creatures that rely on sight.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "illusion", "higher_level": "", @@ -3469,7 +3469,7 @@ "fields": { "name": "Clockwork Bolt", "desc": "You imbue an arrow or crossbow bolt with clockwork magic just as you fire it at your target; spinning blades materialize on the missile after it strikes to further mutilate your enemy.\n\nAs part of the action used to cast this spell, you make a ranged weapon attack with a bow or a crossbow against one creature within range. If the attack hits, the missile embeds in the target. Unless the target (or an ally of it within 5 feet) uses an action to remove the projectile (which deals no additional damage), the target takes an additional 1d8 slashing damage at the end of its next turn from spinning blades that briefly sprout from the missile’s shaft. Afterward, the projectile reverts to normal.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "This spell deals more damage when you reach higher levels. At 5th level, the ranged attack deals an extra 1d8 slashing damage to the target, and the target takes an additional 1d8 slashing damage (2d8 total) if the embedded ammunition isn’t removed. Both damage amounts increase by 1d8 again at 11th level and at 17th level.", @@ -3502,7 +3502,7 @@ "fields": { "name": "Closing In", "desc": "Choose a creature you can see within range. The target must succeed on a Wisdom saving throw, which it makes with disadvantage if it’s in an enclosed space. On a failed save, the creature believes the world around it is closing in and threatening to crush it. Even in open or clear terrain, the creature feels as though it is sinking into a pit, or that the land is rising around it. The creature has disadvantage on ability checks and attack rolls for the duration, and it takes 2d6 psychic damage at the end of each of its turns. An affected creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", @@ -3535,7 +3535,7 @@ "fields": { "name": "Cobra Fangs", "desc": "The spell causes the target to grow great, snake-like fangs. An unwilling creature must make a Wisdom saving throw to avoid the effect. The spell fails if the target already has a bite attack that deals poison damage.\n\nIf the target doesn’t have a bite attack, it gains one. The target is proficient with the bite, and it adds its Strength modifier to the attack and damage rolls. The damage is piercing and the damage die is a d4.\n\nWhen the target hits a creature with its bite attack, the creature must make a Constitution saving throw, taking 3d6 poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the target’s bite counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", @@ -3566,7 +3566,7 @@ "fields": { "name": "Compelled Movement", "desc": "Choose two living creatures (not constructs or undead) you can see within range. Each must make a Charisma saving throw. On a failed save, a creature is compelled to use its movement to move toward the other creature. Its route must be as direct as possible, but it avoids dangerous terrain and enemies. If the creatures are within 5 feet of each other at the end of either one’s turn, their bodies fuse together. Fused creatures still take their own turns, but they can’t move, can’t use reactions, and have disadvantage on attack rolls, Dexterity saving throws, and Constitution checks to maintain concentration.\n\nA fused creature can use its action to make a Charisma saving throw. On a success, the creature breaks free and can move as it wants. It can become fused again, however, if it’s within 5 feet of a creature that’s still under the spell’s effect at the end of either creature’s turn.\n\n**Compelled movement** doesn’t affect a creature that can’t be charmed or that is incorporeal.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the number of creatures you can affect increases by one for every two slot levels above 3rd.", @@ -3597,7 +3597,7 @@ "fields": { "name": "Compelling Fate", "desc": "You view the actions of a single creature you can see through the influence of the stars, and you read what is written there. If the target fails a Charisma saving throw, you can predict that creature’s actions. This has the following effects:\n* You have advantage on attack rolls against the target.\n* For every 5 feet the target moves, you can move 5 feet (up to your normal movement) on the target’s turn when it has completed its movement. This is deducted from your next turn’s movement.\n* As a reaction at the start of the target’s turn, you can warn yourself and allies that can hear you of the target’s offensive intentions; any creature targeted by the target’s next attack gains a +2 bonus to AC or to its saving throw against that attack.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "divination", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration is extended by 1 round for each slot level above 3rd.", @@ -3628,7 +3628,7 @@ "fields": { "name": "Comprehend Wild Shape", "desc": "Give one of the carved totems to an ally while keeping the other yourself. For the duration of the spell, you and whoever holds the other totem can communicate while either of you is in a beast shape. This isn’t a telepathic link; you simply understand each other’s verbal communication, similar to the effect of a speak with animals spell. This effect doesn’t allow a druid in beast shape to cast spells.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can increase the number of target creatures by two for each slot level above 2nd. Each creature must receive a matching carved totem.", @@ -3659,7 +3659,7 @@ "fields": { "name": "Confound Senses", "desc": "This spell befuddles the minds of up to six creatures that you can see within range, causing the creatures to see images of shifting terrain. Each target that fails an Intelligence saving throw is reduced to half speed until the spell ends because of confusion over its surroundings, and it makes ranged attack rolls with disadvantage.\n\nAffected creatures also find it impossible to keep track of their location. They automatically fail Wisdom (Survival) checks to avoid getting lost. Whenever an affected creature must choose between one or more paths, it chooses at random and immediately forgets which direction it came from.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "enchantment", "higher_level": "", @@ -3690,7 +3690,7 @@ "fields": { "name": "Conjure Fey Hound", "desc": "You summon a fey hound to fight by your side. A [hound of the night](https://api.open5e.com/monsters/hound-of-the-night) appears in an unoccupied space that you can see within range. The hound disappears when it drops to 0 hit points or when the spell ends.\n\nThe summoned hound is friendly to you and your companions. Roll initiative for the summoned hound, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the hound, it stands by your side and attacks nearby creatures that are hostile to you but otherwise takes no actions.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you summon two hounds. When you cast this spell using a 9th-level spell slot, you summon three hounds.", @@ -3721,7 +3721,7 @@ "fields": { "name": "Conjure Forest Defender", "desc": "When you cast this spell in a forest, you fasten sticks and twigs around a body. The body comes to life as a [forest defender](https://api.open5e.com/monsters/forest-defender). The forest defender is friendly to you and your companions. Roll initiative for the forest defender, which has its own turns. It obeys any verbal or mental commands that you issue to it (no action required by you), as long as you remain within its line of sight. If you don’t issue any commands to the forest defender, if you are out of its line of sight, or if you are unconscious, it defends itself from hostile creatures but otherwise takes no actions. A body sacrificed to form the forest defender is permanently destroyed and can be restored to life only by means of a [true resurrection](https://api.open5e.com/spells/true-resurrection) or a [wish](https://api.open5e.com/spells/wish) spell. You can have only one forest defender under your control at a time. If you cast this spell again, the previous forest defender crumbles to dust.\n", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "conjuration", "higher_level": "When you cast this spell using a 9th‐level spell slot, you summon two forest defenders instead of one, and you can control up to two forest defenders at a time.", @@ -3752,7 +3752,7 @@ "fields": { "name": "Conjure Greater Spectral Dead", "desc": "You summon an incorporeal undead creature that appears in an unoccupied space you can see within range. You choose one of the following options for what appears:\n* One [wraith](https://api.open5e.com/monsters/wraith)\n* One [spectral guardian](https://api.open5e.com/monsters/spectral-guardian)\n* One [wolf spirit swarm](https://api.open5e.com/monsters/wolf-spirit-swarm)\nSummoned creatures disappear when they drop to 0 hit points or when the spell ends.\n\nThe summoned creature doesn’t attack you or your companions for the duration. Roll initiative for the summoned creature, which has its own turns. The creature attacks your enemies and tries to stay within 60 feet of you, but it otherwise controls its own actions. The summoned creature despises being bound and might harm or impede you and your companions by any means at its disposal other than direct attacks if the opportunity arises. At the beginning of the creature’s turn, you can use your reaction to verbally command it. The creature obeys your commands for that turn, and you take 1d6 psychic damage at the end of the turn. If your concentration is broken, the creature doesn’t disappear. Instead, you can no longer command it, it becomes hostile to you and your companions, and it attacks you and your allies if it believes it has a chance to win the fight or to inflict meaningful harm; otherwise it flees. You can’t dismiss the uncontrolled creature, but it disappears 1 hour after you summoned it.\n", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "conjuration", "higher_level": "When you cast this spell using a 9th‐level spell slot, you summon a [deathwisp](https://api.open5e.com/monsters/deathwisp) or two [ghosts](https://api.open5e.com/monsters/ghost) instead.", @@ -3783,7 +3783,7 @@ "fields": { "name": "Conjure Minor Voidborn", "desc": "You summon fiends or aberrations that appear in unoccupied spaces you can see within range. You choose one of the following options:\n* One creature of challenge rating 2 or lower\n* Two creatures of challenge rating 1 or lower\n* Four creatures of challenge rating 1/2 or lower\n* Eight creatures of challenge rating 1/4 or lower\nSummoned creatures disappear when they drop to 0 hit points or when the spell ends.\n\nThe summoned creatures do not directly attack you or your companions. Roll initiative for the summoned creatures as a group; they take their own turns on their initiative result. They attack your enemies and try to stay within 90 feet of you, but they control their own actions. The summoned creatures despise being bound, so they might harm or impede you and your companions with secondary effects (but not direct attacks) if the opportunity arises. At the beginning of the creatures’ turn, you can use your reaction to verbally command them. They obey your commands on that turn, and you take 1d6 psychic damage at the end of the turn.\n\nIf your concentration is broken, the spell ends but the creatures don’t disappear. Instead, you can no longer command them, and they become hostile to you and your companions. They will attack you and your allies if they believe they have a chance to win the fight or to inflict meaningful harm, but they won’t fight if they fear it would mean their own death. You can’t dismiss the creatures, but they disappear 1 hour after being summoned.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "conjuration", "higher_level": "When you cast this spell using a 7th‑or 9th-level spell slot, you choose one of the summoning options above, and more creatures appear­—twice as many with a 7th-level spell slot and three times as many with a 9th-level spell slot.", @@ -3814,7 +3814,7 @@ "fields": { "name": "Conjure Scarab Swarm", "desc": "You summon swarms of scarab beetles to attack your foes. Two swarms of insects (beetles) appear in unoccupied spaces that you can see within range.\n\nEach swarm disappears when it drops to 0 hit points or when the spell ends. The swarms are friendly to you and your allies. Make one initiative roll for both swarms, which have their own turns. They obey verbal commands that you issue to them (no action required by you). If you don’t issue any commands to them, they defend themselves from hostile creatures but otherwise take no actions.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "", @@ -3845,7 +3845,7 @@ "fields": { "name": "Conjure Shadow Titan", "desc": "You summon a shadow titan, which appears in an unoccupied space that you can see within range. The shadow titan’s statistics are identical to a [stone giant’s](https://api.open5e.com/monsters/stone-giant), with two differences: its camouflage ability works in dim light instead of rocky terrain, and the “rocks” it hurls are composed of shadow-stuff and cause cold damage.\n\nThe shadow titan is friendly to you and your companions. Roll initiative for the shadow titan; it acts on its own turn. It obeys verbal or telepathic commands that you issue to it (giving a command takes no action on your part). If you don’t issue any commands to the shadow titan, it defends itself from hostile creatures but otherwise takes no actions.\n\nThe shadow titan disappears when it drops to 0 hit points or when the spell ends.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "conjuration", "higher_level": "", @@ -3876,7 +3876,7 @@ "fields": { "name": "Conjure Spectral Dead", "desc": "You summon a [shroud](https://api.open5e.com/monsters/shroud) to do your bidding. The creature appears in an unoccupied space that you can see within range. The creature is friendly to you and your allies for the duration. Roll initiative for the creature, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the creature, it defends itself from hostile creatures but otherwise takes no actions. The creature disappears when it drops to 0 hit points or when the spell ends.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When you cast this spell using a 3rd-level spell slot, you can choose to summon two [shrouds](https://api.open5e.com/monsters/shroud) or one [specter](https://api.open5e.com/monsters/specter). When you cast this spell with a spell slot of 4th level or higher, you can choose to summon four [shrouds](https://api.open5e.com/monsters/shroud) or one [will-o’-wisp](https://api.open5e.com/monsters/will-o-wisp).", @@ -3907,7 +3907,7 @@ "fields": { "name": "Conjure Undead", "desc": "You summon a [shadow](https://api.open5e.com/monsters/shadow) to do your bidding. The creature appears in an unoccupied space that you can see within range. The creature is friendly to you and your allies for the duration. Roll initiative for the shadow, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the creature, it defends itself from hostile creatures but otherwise takes no actions. The shadow disappears when the spell ends.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "When you cast this spell using a 4th-level spell slot, you can choose to summon a [wight](https://api.open5e.com/monsters/wight) or a [shadow](https://api.open5e.com/monsters/shadow). When you cast this spell with a spell slot of 5th level or higher, you can choose to summon a [ghost](https://api.open5e.com/monsters/ghost), a [shadow](https://api.open5e.com/monsters/shadow), or a [wight](https://api.open5e.com/monsters/wight).", @@ -3938,7 +3938,7 @@ "fields": { "name": "Conjure Voidborn", "desc": "You summon a fiend or aberration of challenge rating 6 or lower, which appears in an unoccupied space that you can see within range. The creature disappears when it drops to 0 hit points or when the spell ends.\n\nRoll initiative for the creature, which takes its own turns. It attacks the nearest creature on its turn. At the start of the fiend’s turn, you can use your reaction to command the creature by speaking in Void Speech. It obeys your verbal command, and you take 2d6 psychic damage at the end of the creature’s turn.\n\nIf your concentration is broken, the spell ends but the creature doesn’t disappear. Instead, you can no longer issue commands to the fiend, and it becomes hostile to you and your companions. It will attack you and your allies if it believes it has a chance to win the fight or to inflict meaningful harm, but it won’t fight if it fears doing so would mean its own death. You can’t dismiss the creature, but it disappears 1 hour after you summoned it.\n", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the challenge rating increases by 1 for each slot level above 7th.", @@ -3969,7 +3969,7 @@ "fields": { "name": "Consult the Storm", "desc": "You ask a question of an entity connected to storms, such as an elemental, a deity, or a primal spirit, and the entity replies with destructive fury.\n\nAs part of the casting of the spell, you must speak a question consisting of fifteen words or fewer. Choose a point within range. A short, truthful answer to your question booms from that point. It can be heard clearly by any creature within 600 feet. Each creature within 15 feet of the point takes 7d6 thunder damage, or half as much damage with a successful Constitution saving throw.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "divination", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", @@ -4002,7 +4002,7 @@ "fields": { "name": "Converse With Dragon", "desc": "You gain limited telepathy, allowing you to communicate with any creature within 120 feet of you that has the dragon type, regardless of the creature’s languages. A dragon can choose to make a Charisma saving throw to prevent telepathic contact with itself.\n\nThis spell doesn’t change a dragon’s disposition toward you or your allies, it only opens a channel of communication. In some cases, unwanted telepathic contact can worsen the dragon’s attitude toward you.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -4033,7 +4033,7 @@ "fields": { "name": "Costly Victory", "desc": "You select up to ten enemies you can see that are within range. Each target must make a Wisdom saving throw. On a failed save, that creature is cursed to burst into flame if it reduces one of your allies to 0 hit points before this spell’s duration expires. The affected creature takes 6d8 fire damage and 6d8 radiant damage when it bursts into flame.\n\nIf the affected creature is wearing flammable material (or is made of flammable material, such as a plant creature), it catches on fire and continues burning; the creature takes fire damage equal to your spellcasting ability modifier at the end of each of its turns until the creature or one of its allies within 5 feet of it uses an action to extinguish the fire.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "evocation", "higher_level": "", @@ -4066,7 +4066,7 @@ "fields": { "name": "Create Ring Servant", "desc": "You touch two metal rings and infuse them with life, creating a short-lived but sentient construct known as a [ring servant](https://api.open5e.com/monsters/ring-servant). The ring servant appears adjacent to you. It reverts form, changing back into the rings used to cast the spell, when it drops to 0 hit points or when the spell ends.\n\nThe ring servant is friendly to you and your companions for the duration. Roll initiative for the ring servant, which acts on its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the ring servant, it defends itself and you from hostile creatures but otherwise takes no actions.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "transmutation", "higher_level": "", @@ -4097,7 +4097,7 @@ "fields": { "name": "Create Thunderstaff", "desc": "After you cast **create thunderstaff** on a normal quarterstaff, the staff must then be mounted in a noisy location, such as a busy marketplace, and left there for 60 days. During that time, the staff gradually absorbs ambient sound.\n\nAfter 60 days, the staff is fully charged and can’t absorb any more sound. At that point, it becomes a **thunderstaff**, a +1 quarterstaff that has 10 charges. When you hit on a melee attack with the staff and expend 1 charge, the target takes an extra 1d8 thunder damage. You can cast a [thunderwave](https://api.open5e.com/spells/thunderwave) spell from the staff as a bonus action by expending 2 charges. The staff cannot be recharged.\n\nIf the final charge is not expended within 60 days, the staff becomes nonmagical again.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "transmutation", "higher_level": "", @@ -4130,7 +4130,7 @@ "fields": { "name": "Creeping Ice", "desc": "You create a sheet of ice that covers a 5-foot square within range and lasts for the spell’s duration. The iced area is difficult terrain.\n\nA creature in the area where you cast the spell must make a successful Strength saving throw or be restrained by ice that rapidly encases it. A creature restrained by the ice takes 2d6 cold damage at the start of its turn. A restrained creature can use an action to make a Strength check against your spell save DC, freeing itself on a success, but it has disadvantage on this check. The creature can also be freed (and the spell ended) by dealing at least 20 damage to the ice. The restrained creature takes half the damage from any attacks against the ice.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th to 6th level, the area increases to a 10-foot square, the ice deals 4d6 cold damage, and 40 damage is needed to melt each 5-foot square. When you cast this spell using a spell slot of 7th level or higher, the area increases to a 20-foot square, the ice deals 6d6 cold damage, and 60 damage is needed to melt each 5-foot square.", @@ -4163,7 +4163,7 @@ "fields": { "name": "Crushing Curse", "desc": "You speak a word of Void Speech. Choose a creature you can see within range. If the target can hear you, it must succeed on a Wisdom saving throw or take 1d6 psychic damage and be deafened for 1 minute, except that it can still hear Void Speech. A creature deafened in this way can repeat the saving throw at the end of each of its turns, ending the effect on a success.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "enchantment", "higher_level": "This spell’s damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", @@ -4194,7 +4194,7 @@ "fields": { "name": "Crushing Trample", "desc": "Upon casting this spell, you are filled with a desire to overrun your foes. You immediately move up to twice your speed in a straight line, trampling every foe in your path that is of your size category or smaller. If you try to move through the space of an enemy whose size is larger than yours, your movement (and the spell) ends. Each enemy whose space you move through must make a successful Strength saving throw or be knocked prone and take 4d6 bludgeoning damage. If you have hooves, add your Strength modifier (minimum of +1) to the damage.\n\nYou move through the spaces of foes whether or not they succeed on their Strength saving throws. You do not provoke opportunity attacks while moving under the effect of **crushing trample**.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "", @@ -4225,7 +4225,7 @@ "fields": { "name": "Cure Beast", "desc": "A beast of your choice that you can see within range regains a number of hit points equal to 1d6 + your spellcasting modifier.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d6 for each slot level above 1st.", @@ -4256,7 +4256,7 @@ "fields": { "name": "Curse of Boreas", "desc": "You designate a creature within range that you can see. If the target fails a Charisma saving throw, it and its equipment are frozen solid, becoming an inert statue of ice. The creature is effectively paralyzed, but mental activity does not cease, and signs of life are detectable; the creature still breathes and its heart continues to beat, though both acts are almost imperceptible. If the ice statue is broken or damaged while frozen, the creature will have matching damage or injury when returned to its original state. [Dispel magic](https://api.open5e.com/spells/dispel-magic) can’t end this spell, but it can allow the target to speak (but not move or cast spells) for a number of rounds equal to the spell slot used. [Greater restoration](https://api.open5e.com/spells/greater-restoration) or more potent magic is needed to free a creature from the ice.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "transmutation", "higher_level": "", @@ -4287,7 +4287,7 @@ "fields": { "name": "Curse of Dust", "desc": "You cast a curse on a creature within range that you’re familiar with, causing it to be unsatiated by food no matter how much it eats. This effect isn’t merely an issue of perception; the target physically can’t draw sustenance from food. Within minutes after the spell is cast, the target feels constant hunger no matter how much food it consumes. The target must make a Constitution saving throw 24 hours after the spell is cast and every 24 hours thereafter. On a failed save, the target gains one level of exhaustion. The effect ends when the duration expires or when the target makes two consecutive successful saves.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "necromancy", "higher_level": "", @@ -4318,7 +4318,7 @@ "fields": { "name": "Curse of Incompetence", "desc": "By making mocking gestures toward one creature within\nrange that can see you, you leave the creature incapable of\nperforming at its best. If the target fails on an Intelligence\nsaving throw, roll a d4 and refer to the following table to\ndetermine what the target does on its turn. An affected\ntarget repeats the saving throw at the end of each of its\nturns, ending the effect on itself on a success or applying\nthe result of another roll on the table on a failure.\n\n| D4 | RESULT |\n|-|-|\n| 1 | Target spends its turn shouting mocking words at caster and takes a -5 penalty to its initiative roll. |\n| 2 | Target stands transfixed and blinking, takes no action. |\n| 3 | Target flees or fights (50 percent chance of each). |\n| 4 | Target charges directly at caster, enraged. |\n\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "necromancy", "higher_level": "", @@ -4349,7 +4349,7 @@ "fields": { "name": "Curse of the Grave", "desc": "You tap your connection to death to curse a humanoid, making the grim pull of the grave stronger on that creature’s soul.\n\nChoose one humanoid you can see within range. The target must succeed on a Constitution saving throw or become cursed. A [remove curse](https://api.open5e.com/spells/remove-curse) spell or similar magic ends this curse. While cursed in this way, the target suffers the following effects:\n\n* The target fails death saving throws on any roll but a 20.\n* If the target dies while cursed, it rises 1 round later as a vampire spawn under your control and is no longer cursed.\n* The target, as a vampire spawn, seeks you out in an attempt to serve its new master. You can have only one vampire spawn under your control at a time through this spell. If you create another, the existing one turns to dust. If you or your companions do anything harmful to the target, it can make a Wisdom saving throw. On a success, it is no longer under your control.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "necromancy", "higher_level": "", @@ -4380,7 +4380,7 @@ "fields": { "name": "Curse of Yig", "desc": "This spell transforms a Small, Medium, or Large creature that you can see within range into a [servant of Yig](https://api.open5e.com/monsters/servant-of-yig). An unwilling creature can attempt a Wisdom saving throw, negating the effect with a success. A willing creature is automatically affected and remains so for as long as you maintain concentration on the spell.\n\nThe transformation lasts for the duration or until the target drops to 0 hit points or dies. The target’s statistics, including mental ability scores, are replaced by the statistics of a servant of Yig. The transformed creature’s alignment becomes neutral evil, and it is both friendly to you and reverent toward the Father of Serpents. Its equipment is unchanged. If the transformed creature was unwilling, it makes a Wisdom saving throw at the end of each of its turns. On a successful save, the spell ends, the creature’s alignment and personality return to normal, and it regains its former attitude toward you and toward Yig.\n\nWhen it reverts to its normal form, the creature has the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "transmutation", "higher_level": "", @@ -4411,7 +4411,7 @@ "fields": { "name": "Curse Ring", "desc": "You lay a curse upon a ring you touch that isn’t being worn or carried. When you cast this spell, select one of the possible effects of [bestow curse](https://api.open5e.com/spells/bestow-curse). The next creature that willingly wears the ring suffers the chosen effect with no saving throw. The curse transfers from the ring to the wearer once the ring is put on; the ring becomes a mundane ring that can be taken off, but the curse remains on the creature that wore the ring until the curse is removed or dispelled. An [identify](https://api.open5e.com/spells/identify) spell cast on the cursed ring reveals the fact that it is cursed.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "necromancy", "higher_level": "", @@ -4442,7 +4442,7 @@ "fields": { "name": "Cursed Gift", "desc": "**Cursed gift** imbues an object with a harmful magical effect that you or another creature in physical contact with you is currently suffering from. If you give this object to a creature that freely accepts it during the duration of the spell, the recipient must make a Charisma saving throw. On a failed save, the harmful effect is transferred to the recipient for the duration of the spell (or until the effect ends). Returning the object to you, destroying it, or giving it to someone else has no effect. Remove curse and comparable magic can relieve the individual who received the item, but the harmful effect still returns to the previous victim when this spell ends if the effect’s duration has not expired.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration increases by 24 hours for each slot level above 4th.", @@ -4473,7 +4473,7 @@ "fields": { "name": "Cynophobia", "desc": "Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or develop an overriding fear of canids, such as dogs, wolves, foxes, and worgs. For the duration, the first time the target sees a canid, the target must succeed on a Wisdom saving throw or become frightened of that canid until the end of its next turn. Each time the target sees a different canid, it must make the saving throw. In addition, the target has disadvantage on ability checks and attack rolls while a canid is within 10 feet of it.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "enchantment", "higher_level": "When you cast this spell using a 5th-level spell slot, the duration is 24 hours. When you use a 7th-level spell slot, the duration is 1 month. When you use a spell slot of 8th or 9th level, the spell lasts until it is dispelled.", @@ -4504,7 +4504,7 @@ "fields": { "name": "Daggerhawk", "desc": "When **daggerhawk** is cast on a nonmagical dagger, a ghostly hawk appears around the weapon. The hawk and dagger fly into the air and make a melee attack against one creature you select within 60 feet, using your spell attack modifier and dealing piercing damage equal to 1d4 + your Intelligence modifier on a hit. On your subsequent turns, you can use an action to cause the daggerhawk to attack the same target. The daggerhawk has AC 14 and, although it’s invulnerable to all damage, a successful attack against it that deals bludgeoning, force, or slashing damage sends the daggerhawk tumbling, so it can’t attack again until after your next turn.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "", @@ -4535,7 +4535,7 @@ "fields": { "name": "Dark Dementing", "desc": "A dark shadow creeps across the target’s mind and leaves a small bit of shadow essence behind, triggering a profound fear of the dark. A creature you designate within range must make a Charisma saving throw. If it fails, the target becomes frightened of you for the duration. A frightened creature can repeat the saving throw each time it takes damage, ending the effect on a success. While frightened in this way, the creature will not willingly enter or attack into a space that isn’t brightly lit. If it’s in dim light or darkness, the creature must either move toward bright light or create its own (by lighting a lantern, casting a [light](https://api.open5e.com/spells/light) spell, or the like).", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "illusion", "higher_level": "", @@ -4566,7 +4566,7 @@ "fields": { "name": "Dark Heraldry", "desc": "Dark entities herald your entry into combat, instilling an existential dread in your enemies. Designate a number of creatures up to your spellcasting ability modifier (minimum of one) that you can see within range and that have an alignment different from yours. Each of those creatures takes 5d8 psychic damage and becomes frightened of you; a creature that makes a successful Wisdom saving throw takes half as much damage and is not frightened.\n\nA creature frightened in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success. The creature makes this saving throw with disadvantage if you can see it.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", @@ -4599,7 +4599,7 @@ "fields": { "name": "Dark Maw", "desc": "Thick, penumbral ichor drips from your shadow-stained mouth, filling your mouth with giant shadow fangs. Make a melee spell attack against the target. On a hit, the target takes 1d8 necrotic damage as your shadowy fangs sink into it. If you have a bite attack (such as from a racial trait or a spell like [alter self](https://api.open5e.com/spells/after-self)), you can add your spellcasting ability modifier to the damage roll but not to your temporary hit points.\n\nIf you hit a humanoid target, you gain 1d4 temporary hit points until the start of your next turn.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "necromancy", "higher_level": "This spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", @@ -4632,7 +4632,7 @@ "fields": { "name": "Dark Path", "desc": "You conjure a shadowy road between two points within range to create a bridge or path. This effect can bridge a chasm or create a smooth path through difficult terrain. The dark path is 10 feet wide and up to 50 feet long. It can support up to 500 pounds of weight at one time. A creature that adds more weight than the path can support sinks through the path as if it didn’t exist.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "", @@ -4663,7 +4663,7 @@ "fields": { "name": "Darkbolt", "desc": "You utter a quick invocation to create a black nimbus around your hand, then hurl three rays of darkness at one or more targets in range. The rays can be divided between targets however you like. Make a ranged spell attack for each target (not each ray); each ray that hits deals 1d10 cold damage. A target that was hit by one or more rays must make a successful Constitution saving throw or be unable to use reactions until the start of its next turn.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.", @@ -4694,7 +4694,7 @@ "fields": { "name": "Dead Walking", "desc": "As part of the casting of this spell, you place a copper piece under your tongue. This spell makes up to six willing creatures you can see within range invisible to undead for the duration. Anything a target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for all targets if one target attacks or casts a spell.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "illusion", "higher_level": "When you cast this spell using a 3rd-level spell slot, it lasts for 1 hour without requiring your concentration. When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 hour for each slot level above 3rd.", @@ -4725,7 +4725,7 @@ "fields": { "name": "Deadly Sting", "desc": "You grow a 10-foot-long tail as supple as a whip, tipped with a horrible stinger. During the spell’s duration, you can use the stinger to make a melee spell attack with a reach of 10 feet. On a hit, the target takes 1d4 piercing damage plus 4d10 poison damage, and a creature must make a successful Constitution saving throw or become vulnerable to poison damage for the duration of the spell.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "transmutation", "higher_level": "", @@ -4758,7 +4758,7 @@ "fields": { "name": "Death God’s Touch", "desc": "This spell allows you to shred the life force of a creature you touch. You become invisible and make a melee spell attack against the target. On a hit, the target takes 10d10 necrotic damage. If this damage reduces the target to 0 hit points, the target dies. Whether the attack hits or misses, you remain invisible until the start of your next turn.\n", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 2d10 for each slot level above 7th.", @@ -4791,7 +4791,7 @@ "fields": { "name": "Decay", "desc": "Make a melee spell attack against a creature you touch. On a hit, the target takes 1d10 necrotic damage. If the target is a Tiny or Small nonmagical object that isn’t being worn or carried by a creature, it automatically takes maximum damage from the spell.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "necromancy", "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", @@ -4824,7 +4824,7 @@ "fields": { "name": "Decelerate", "desc": "You slow the flow of time around a creature within range that you can see. The creature must make a successful Wisdom saving throw, or its walking speed is halved (round up to the nearest 5-foot increment). The creature can repeat the saving throw at the end of each of its turns, ending the effect on a success. Until the spell ends, on a failed save the target’s speed is halved again at the start of each of your turns. For example, if a creature with a speed of 30 feet fails its initial saving throw, its speed drops to 15 feet. At the start of your next turn, the creature’s speed drops to 10 feet on a failed save, then to 5 feet on the following round on another failed save. **Decelerate** can’t reduce a creature’s speed to less than 5 feet.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can affect an additional creature for each slot level above 2nd.", @@ -4855,7 +4855,7 @@ "fields": { "name": "Deep Breath", "desc": "The recipient of this spell can breathe and function normally in thin atmosphere, suffering no ill effect at altitudes of up to 20,000 feet. If more than one creature is touched during the casting, the duration is divided evenly among all creatures touched.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 2 hours for each slot level above 1st.", @@ -4886,7 +4886,7 @@ "fields": { "name": "Defile Healing", "desc": "You attempt to reverse the energy of a healing spell so that it deals damage instead of healing. If the healing spell is being cast with a spell slot of 5th level or lower, the slot is expended but the spell restores no hit points. In addition, each creature that was targeted by the healing spell takes necrotic damage equal to the healing it would have received, or half as much damage with a successful Constitution saving throw.\n", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 8th level, it can reverse a healing spell being cast using a spell slot of 6th level or lower. If you use a 9th-level spell slot, it can reverse a healing spell being cast using a spell slot of 7th level or lower.", @@ -4917,7 +4917,7 @@ "fields": { "name": "Delay Potion", "desc": "Upon casting this spell, you delay the next potion you consume from taking effect for up to 1 hour. You must consume the potion within 1 round of casting **delay potion**; otherwise the spell has no effect. At any point during **delay potion’s** duration, you can use a bonus action to cause the potion to go into effect. When the potion is activated, it works as if you had just drunk it. While the potion is delayed, it has no effect at all and you can consume and benefit from other potions normally.\n\nYou can delay only one potion at a time. If you try to delay the effect of a second potion, the spell fails, the first potion has no effect, and the second potion has its normal effect when you drink it.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "", @@ -4948,7 +4948,7 @@ "fields": { "name": "Delayed Healing", "desc": "Touch a living creature (not a construct or undead) as you cast the spell. The next time that creature takes damage, it immediately regains hit points equal to 1d4 + your spellcasting ability modifier (minimum of 1).\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.", @@ -4979,7 +4979,7 @@ "fields": { "name": "Demon Within", "desc": "One humanoid of your choice within range becomes a gateway for a demon to enter the plane of existence you are on. You choose the demon’s type from among those of challenge rating of 4 or lower. The target must make a Wisdom saving throw. On a success, the gateway fails to open, and the spell has no effect. On a failed save, the target takes 4d6 force damage from the demon’s attempt to claw its way through the gate. For the spell’s duration, you can use a bonus action to further agitate the demon, dealing an additional 2d6 force damage to the target each time.\n\nIf the target drops to 0 hit points while affected by this spell, the demon tears through the body and appears in the same space as its now incapacitated or dead victim. You do not control this demon; it is free to either attack or leave the area as it chooses. The demon disappears after 24 hours or when it drops to 0 hit points.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "", @@ -5012,7 +5012,7 @@ "fields": { "name": "Desiccating Breath", "desc": "You spew forth a cloud of black dust that draws all moisture from a 30-foot cone. Each animal in the cone takes 4d10 necrotic damage, or half as much damage if it makes a successful Constitution saving throw. The damage is 6d10 for plants and plant creatures, also halved on a successful Constitution saving throw.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "evocation", "higher_level": "", @@ -5045,7 +5045,7 @@ "fields": { "name": "Desolation", "desc": "You plant an obsidian acorn in solid ground and spend an hour chanting a litany of curses to the natural world, after which the land within 1 mile of the acorn becomes infertile, regardless of its previous state. Nothing will grow there, and all plant life in the area dies over the course of a day. Plant creatures are not affected. Spells that summon plants, such as [entangle](https://api.open5e.com/spells/entangle), require an ability check using the caster’s spellcasting ability against your spell save DC. On a successful check, the spell functions normally; if the check fails, the spell is countered by **desolation**.\n\nAfter one year, the land slowly reverts to its normal fertility, unable to stave off the march of nature.\n\nA living creature that finishes a short rest within the area of a **desolation** spell halves the result of any Hit Dice it expends. Desolation counters the effects of a [bloom](https://api.open5e.com/spells/bloom) spell.\n\n***Ritual Focus.*** If you expend your ritual focus, the duration becomes permanent.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "necromancy", "higher_level": "", @@ -5076,7 +5076,7 @@ "fields": { "name": "Destructive Resonance", "desc": "You shout a scathing string of Void Speech that assaults the minds of those before you. Each creature in a 15-foot cone that can hear you takes 4d6 psychic damage, or half that damage with a successful Wisdom saving throw. A creature damaged by this spell can’t take reactions until the start of its next turn.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", @@ -5109,7 +5109,7 @@ "fields": { "name": "Detect Dragons", "desc": "You can detect the presence of dragons and other draconic creatures within your line of sight and 120 feet, regardless of disguises, illusions, and alteration magic such as polymorph. The information you uncover depends on the number of consecutive rounds you spend an action studying a subject or area. On the first round of examination, you detect whether any draconic creatures are present, but not their number, location, identity, or type. On the second round, you learn the number of such creatures as well as the general condition of the most powerful one. On the third and subsequent rounds, you make a DC 15 Intelligence (Arcana) check; if it succeeds, you learn the age, type, and location of one draconic creature. Note that the spell provides no information on the turn in which it is cast, unless you have the means to take a second action that turn.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "", @@ -5140,7 +5140,7 @@ "fields": { "name": "Deva’s Wings", "desc": "You touch a willing creature. The target grows feathery wings of pure white that grant it a flying speed of 60 feet and the ability to hover. When the target takes the Attack action, it can use a bonus action to make a melee weapon attack with the wings, with a reach of 10 feet. If the wing attack hits, the target takes bludgeoning damage equal to 1d6 + your spellcasting ability modifier and must make a successful Strength saving throw or fall prone. When the spell ends, the wings disappear, and the target falls if it was aloft.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional target for each slot level above 4th.", @@ -5171,7 +5171,7 @@ "fields": { "name": "Dimensional Shove", "desc": "This spell pushes a creature you touch through a dimensional portal, causing it to disappear and then reappear a short distance away. If the target fails a Wisdom saving throw, it disappears from its current location and reappears 30 feet away from you in a direction of your choice. This travel can take it through walls, creatures, or other solid surfaces, but the target can't reappear inside a solid object or not on solid ground; instead, it reappears in the nearest safe, unoccupied space along the path of travel.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the target is shoved an additional 30 feet for each slot level above 3rd.", @@ -5202,7 +5202,7 @@ "fields": { "name": "Disquieting Gaze", "desc": "Your eyes burn with scintillating motes of unholy crimson light. Until the spell ends, you have advantage on Charisma (Intimidation) checks made against creatures that can see you, and you have advantage on spell attack rolls that deal necrotic damage to creatures that can see your eyes.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "necromancy", "higher_level": "", @@ -5233,7 +5233,7 @@ "fields": { "name": "Disruptive Aura", "desc": "A warping, prismatic aura surrounds and outlines each creature inside a 10-foot cube within range. The aura sheds dim light out to 10 feet, and the the locations of hidden or invisible creatures are outlined. If a creature in the area tries to cast a spell or use a magic item, it must make a Wisdom saving throw. On a successful save, the spell or item functions normally. On a failed save, the effect of the spell or the item is suppressed for the duration of the aura. Time spent suppressed counts against the duration of the spell’s or item’s effect.\n", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "evocation", "higher_level": "When you cast this spell using a 9th‐level spell slot, the cube is 20 feet on a side.", @@ -5264,7 +5264,7 @@ "fields": { "name": "Distracting Divination", "desc": "Foresight tells you when and how to be just distracting enough to foil an enemy spellcaster. When an adjacent enemy tries to cast a spell, make a melee spell attack against that enemy. On a hit, the enemy’s spell fails and has no effect; the enemy’s action is used up but the spell slot isn’t expended.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "", @@ -5295,7 +5295,7 @@ "fields": { "name": "Distraction Cascade", "desc": "With a flash of foresight, you throw a foe off balance. Choose one creature you can see that your ally has just declared as the target of an attack. Unless that creature makes a successful Charisma saving throw, attacks against it are made with advantage until the end of this turn.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "", @@ -5326,7 +5326,7 @@ "fields": { "name": "Doom of Blue Crystal", "desc": "You are surrounded by a field of glowing, blue energy lasting 3 rounds. Creatures within 5 feet of you, including yourself, must make a Constitution saving throw when the spell is cast and again at the start of each of your turns while the spell is in effect. A creature whose saving throw fails is restrained; a restrained creature whose saving throw fails is paralyzed; and a paralyzed creature whose saving throw fails is petrified and transforms into a statue of blue crystal. As with all concentration spells, you can end the field at any time (no action required). If you are turned to crystal, the spell ends after all affected creatures make their saving throws. Restrained and paralyzed creatures recover immediately when the spell ends, but petrification is permanent.\n\nCreatures turned to crystal can see, hear, and smell normally, but they don’t need to eat or breathe. If shatter is cast on a crystal creature, it must succeed on a Constitution saving throw against the caster’s spell save DC or be killed.\n\nCreatures transformed into blue crystal can be restored with dispel magic, greater restoration, or comparable magic.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "", @@ -5357,7 +5357,7 @@ "fields": { "name": "Doom of Consuming Fire", "desc": "You are wreathed in cold, purple fire that damages creatures near you. You take 1d6 cold damage each round for the duration of the spell. Creatures within 5 feet of you when you cast the spell and at the start of each of your turns while the spell is in effect take 1d8 cold damage.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "When you cast this spell using a 3rd-level spell slot, the purple fire extends 10 feet from you, you take 1d8 cold damage, and other creatures take 1d10 cold damage. When you cast this spell using a 4th‐level slot, the fire extends 15 feet from you, you take1d10 cold damage, and other creatures take 1d12 cold damage. When you cast this spell using a slot of 5th level or higher, the fire extends to 20 feet, you take 1d12 cold damage, and other creatures take 1d20 cold damage.", @@ -5388,7 +5388,7 @@ "fields": { "name": "Doom of Dancing Blades", "desc": "When you cast **doom of dancing blades**, you create 1d4 illusory copies of your weapon that float in the air 5 feet from you. These images move with you, spinning, shifting, and mimicking your attacks. When you are hit by a melee attack but the attack roll exceeded your Armor Class by 3 or less, one illusory weapon parries the attack; you take no damage and the illusory weapon is destroyed. When you are hit by a melee attack that an illusory weapon can’t parry (the attack roll exceeds your AC by 4 or more), you take only half as much damage from the attack, and an illusory weapon is destroyed. Spells and effects that affect an area or don’t require an attack roll affect you normally and don’t destroy any illusory weapons.\n\nIf you make a melee attack that scores a critical hit while **doom of dancing blades** is in effect on you, all your illusory weapons also strike the target and deal 1d8 bludgeoning, piercing, or slashing damage (your choice) each.\n\nThe spell ends when its duration expires or when all your illusory weapons are destroyed or expended.\n\nAn attacker must be able to see the illusory weapons to be affected. The spell has no effect if you are invisible or in total darkness or if the attacker is blinded.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "illusion", "higher_level": "", @@ -5419,7 +5419,7 @@ "fields": { "name": "Doom of Disenchantment", "desc": "When you cast **doom of disenchantment**, your armor and shield glow with light. When a creature hits you with an attack, the spell counters any magic that provides the attack with a bonus to hit or to damage. For example, a +1 weapon would still be considered magical, but it gets neither +1 to hit nor +1 to damage on any attack against you.\n\nThe spell also suppresses other magical properties of the attack. A [sword of wounding](https://api.open5e.com/magicitems/sword-of-wounding), for example, can’t cause ongoing wounds on you, and you recover hit points lost to the weapon's damage normally. If the attack was a spell, it’s affected as if you had cast [counterspell](https://api.open5e.com/spells/counterspell), using Charisma as your spellcasting ability. Spells with a duration of instantaneous, however, are unaffected.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "abjuration", "higher_level": "", @@ -5450,7 +5450,7 @@ "fields": { "name": "Doom of Serpent Coils", "desc": "You drink a dose of venom or other poison and spread the effect to other living things around you. If the poison normally allows a saving throw, your save automatically fails. You suffer the effect of the poison normally before spreading the poison to all other living creatures within 10 feet of you. Instead of making the usual saving throw against the poison, each creature around you makes a Constitution saving throw against the spell. On a successful save, a target suffers no damage or other effect from the poison and is immune to further castings of **doom of serpent coils** for 24 hours. On a failed save, a target doesn't suffer the poison’s usual effect; instead, it takes 4d6 poison damage and is poisoned. While poisoned in this way, a creature repeats the saving throw at the end of each of its turns. On a subsequent failed save, it takes 4d6 poison damage and is still poisoned. On a subsequent successful save, it is no longer poisoned and is immune to further castings of **doom of serpent coils** for 24 hours.\n\nMultiple castings of this spell have no additional effect on creatures that are already poisoned by it. The effect can be ended by [protection from poison](https://api.open5e.com/spells/protection-from-poison) or comparable magic.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "necromancy", "higher_level": "", @@ -5483,7 +5483,7 @@ "fields": { "name": "Doom of the Cracked Shield", "desc": "Doom of the cracked shield is cast on a melee weapon. The next time that weapon is used, it destroys the target’s nonmagical shield or damages nonmagical armor, in addition to the normal effect of the attack. If the foe is using a nonmagical shield, it breaks into pieces. If the foe doesn’t use a shield, its nonmagical armor takes a -2 penalty to AC. If the target doesn’t use armor or a shield, the spell is expended with no effect.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -5514,7 +5514,7 @@ "fields": { "name": "Doom of the Earthen Maw", "desc": "The ground within 30 feet of a point you designate turns into filthy and slippery muck. This spell affects sand, earth, mud, and ice, but not stone, wood, or other material. For the duration, the ground in the affected area is difficult terrain. A creature in the area when you cast the spell must succeed on a Strength saving throw or be restrained by the mud until the spell ends. A restrained creature can free itself by using an action to make a successful Strength saving throw. A creature that frees itself or that enters the area after the spell was cast is affected by the difficult terrain but doesn’t become restrained.\n\nEach round, a restrained creature sinks deeper into the muck. A Medium or smaller creature that is restrained for 3 rounds becomes submerged at the end of its third turn. A Large creature becomes submerged after 4 rounds. Submerged creatures begin suffocating if they aren’t holding their breath. A creature that is still submerged when the spell ends is sealed beneath the newly solidified ground. The creature can escape only if someone else digs it out or it has a burrowing speed.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "evocation", "higher_level": "", @@ -5545,7 +5545,7 @@ "fields": { "name": "Doom of the Slippery Rogue", "desc": "A **doom of the slippery rogue** spell covers a 20-foot-by-20-foot section of wall or floor within range with a thin coating of grease. If a vertical surface is affected, each climber on that surface must make a successful DC 20 Strength (Athletics) check or immediately fall from the surface unless it is held in place by ropes or other climbing gear. A creature standing on an affected floor falls prone unless it makes a successful Dexterity saving throw. Creatures that try to climb or move through the affected area can move no faster than half speed (this is cumulative with the usual reduction for climbing), and any movement must be followed by a Strength saving throw (for climbing) or a Dexterity saving throw (for walking). On a failed save, the moving creature falls or falls prone.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "", @@ -5576,7 +5576,7 @@ "fields": { "name": "Douse Light", "desc": "With a simple gesture, you can put out a single small source of light within range. This spell extinguishes a torch, a candle, a lantern, or a [light](https://api.open5e.com/spells/light) or [dancing lights](https://api.open5e.com/spells/dancing-lights) cantrip.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "transmutation", "higher_level": "", @@ -5607,7 +5607,7 @@ "fields": { "name": "Draconic Smite", "desc": "The next time you hit a creature with a melee weapon attack during the spell’s duration, your weapon takes on the form of a silver dragon’s head. Your attack deals an extra 1d6 cold damage, and up to four other creatures of your choosing within 30 feet of the attack’s target must each make a successful Constitution saving throw or take 1d6 cold damage.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the extra cold damage and the cold damage dealt to the secondary creatures increases by 1d6 for each slot level above 1st.", @@ -5638,7 +5638,7 @@ "fields": { "name": "Dragon Breath", "desc": "You summon draconic power to gain a breath weapon. When you cast dragon breath, you can immediately exhale a cone or line of elemental energy, depending on the type of dragon you select. While the spell remains active, roll a d6 at the start of your turn. On a roll of 5 or 6, you can take a bonus action that turn to use the breath weapon again.\n\nWhen you cast the spell, choose one of the dragon types listed below. Your choice determines the affected area and the damage of the breath attack for the spell’s duration.\n\n| Dragon Type | Area | Damage |\n|-|-|-|\n| Black | 30-foot line, 5 feet wide | 6d6 acid damage |\n| Blue | 30-foot line, 5 feet wide | 6d6 lightning damage |\n| Green | 15-foot cone | 6d6 poison damage |\n| Red | 15-foot cone | 6d6 fire damage |\n| White | 15-foot cone | 6d6 cold damage |\n\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 2d6 for each slot level above 5th.", @@ -5669,7 +5669,7 @@ "fields": { "name": "Dragon Roar", "desc": "Your voice is amplified to assault the mind of one creature. The target must make a Charisma saving throw. If it fails, the target takes 1d4 psychic damage and is frightened until the start of your next turn. A target can be affected by your dragon roar only once per 24 hours.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "This spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", @@ -5702,7 +5702,7 @@ "fields": { "name": "Drown", "desc": "You cause a creature's lungs to fill with seawater. Unless the target makes a successful Constitution saving throw, it immediately begins suffocating. A suffocating creature can’t speak or perform verbal spell components. It can hold its breath, and thereafter can survive for a number of rounds equal to its Constitution modifier (minimum of 1 round), after which it drops to 0 hit points and is dying. Huge or larger creatures are unaffected, as are creatures that can breathe water or that don’t require air.\n\nA suffocating (not dying) creature can repeat the saving throw at the end of each of its turns, ending the effect on a success.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.\n\nNOTE: Midgard Heroes Handbook has a very different [drown-heroes-handbook/drown](https://api.open5e.com/spells/drown) spell.", @@ -5733,7 +5733,7 @@ "fields": { "name": "Dryad’s Kiss", "desc": "You perform an ancient incantation that summons flora from the fey realm. A creature you can see within range is covered with small, purple buds and takes 3d8 necrotic damage; a successful Wisdom saving throw negates the damage but doesn’t prevent the plant growth. The buds can be removed by the target or an ally of the target within 5 feet who uses an action to make a successful Intelligence (Nature) or Wisdom (Medicine) check against your spell save DC, or by a [greater restoration](https://api.open5e.com/spells/greater-restoration) or [blight](https://api.open5e.com/spells/blight) spell. While the buds remain, whenever the target takes damage from a source other than this spell, one bud blossoms into a purple and yellow flower that deals an extra 1d8 necrotic damage to the target. Once four blossoms have formed in this way, the buds can no longer be removed by nonmagical means. The buds and blossoms wilt and fall away when the spell ends, provided the creature is still alive.\n\nIf a creature affected by this spell dies, sweet-smelling blossoms quickly cover its body. The flowers wilt and die after one month.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "If this spell is cast using a spell slot of 5th level or higher, the number of targets increases by one for every two slot levels above 3rd.", @@ -5766,7 +5766,7 @@ "fields": { "name": "Earthskimmer", "desc": "You cause earth and stone to rise up beneath your feet, lifting you up to 5 feet. For the duration, you can use your movement to cause the slab to skim along the ground or other solid, horizontal surface at a speed of 60 feet. This movement ignores difficult terrain. If you are pushed or moved against your will by any means other than teleporting, the slab moves with you.\n\nUntil the end of your turn, you can enter the space of a creature up to one size larger than yourself when you take the Dash action. The creature must make a Strength saving throw. It takes 4d6 bludgeoning damage and is knocked prone on a failed save, or takes half as much damage and isn’t knocked prone on a succesful one.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "", @@ -5799,7 +5799,7 @@ "fields": { "name": "Earworm Melody", "desc": "You sing or play a catchy tune that only one creature of your choice within range can hear. Unless the creature makes a successful Wisdom saving throw, the verse becomes ingrained in its head. If the target is concentrating on a spell, it must make a Constitution check with disadvantage against your spell save DC in order to maintain concentration.\n\nFor the spell’s duration, the target takes 2d4 psychic damage at the start of each of its turns as the melody plays over and over in its mind. The target repeats the saving throw at the end of each of its turns, ending the effect on a success. On a failed save, the target must also repeat the Constitution check with disadvantage if it is concentrating on a spell.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "enchantment", "higher_level": "If you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d4 for each slot level above 1st.", @@ -5832,7 +5832,7 @@ "fields": { "name": "Echoes of Steel", "desc": "When you hit a creature with a melee weapon attack, you can use a bonus action to cast echoes of steel. All creatures you designate within 30 feet of you take thunder damage equal to the damage from the melee attack, or half as much damage with a successful Constitution saving throw.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "evocation", "higher_level": "", @@ -5863,7 +5863,7 @@ "fields": { "name": "Ectoplasm", "desc": "You call forth an ectoplasmic manifestation of Medium size that appears in an unoccupied space of your choice within range that you can see. The manifestation lasts for the spell’s duration. Any creature that ends its turn within 5 feet of the manifestation takes 2d6 psychic damage, or half the damage with a successful Wisdom saving throw.\n\nAs a bonus action, you can move the manifestation up to 30 feet. It can move through a creature’s space but can’t remain in the same space as that creature. If it enters a creature’s space, that creature takes 2d6 psychic damage, or half the damage with a successful Wisdom saving throw. On a failed save, the creature also has disadvantage on Dexterity checks until the end of its next turn.\n\nWhen you move the manifestation, it can flow through a gap as small as 1 square inch, over barriers up to 5 feet tall, and across pits up to 10 feet wide. The manifestation sheds dim light in a 10-foot radius. It also leaves a thin film of ectoplasmic residue on everything it touches or moves through. This residue doesn’t illuminate the surroundings but does glow dimly enough to show the manifestation’s path. The residue dissipates 1 round after it is deposited.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", @@ -5896,7 +5896,7 @@ "fields": { "name": "Eidetic Memory", "desc": "When you cast this spell, you can recall any piece of information you’ve ever read or heard in the past. This ability translates into a +10 bonus on Intelligence checks for the duration of the spell.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "transmutation", "higher_level": "", @@ -5927,7 +5927,7 @@ "fields": { "name": "Eldritch Communion", "desc": "You contact a Great Old One and ask one question that can be answered with a one-sentence reply no more than twenty words long. You must ask your question before the spell ends. There is a 25 percent chance that the answer contains a falsehood or is misleading in some way. (The GM determines this secretly.)\n\nGreat Old Ones have vast knowledge, but they aren’t omniscient, so if your question pertains to information beyond the Old One’s knowledge, the answer might be vacuous, gibberish, or an angry, “I don’t know.”\n\nThis also reveals the presence of all aberrations within 300 feet of you. There is a 1-in-6 chance that each aberration you become aware of also becomes aware of you.\n\nIf you cast **eldritch communion** two or more times before taking a long rest, there is a cumulative 25 percent chance for each casting after the first that you receive no answer and become afflicted with short-term madness.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "divination", "higher_level": "", @@ -5958,7 +5958,7 @@ "fields": { "name": "Elemental Horns", "desc": "The target of this spell must be a creature that has horns, or the spell fails. **Elemental horns** causes the touched creature’s horns to crackle with elemental energy. Select one of the following energy types when casting this spell: acid, cold, fire, lightning, or radiant. The creature’s gore attack deals 3d6 damage of the chosen type in addition to any other damage the attack normally deals.\n\nAlthough commonly seen among tieflings and minotaurs, this spell is rarely employed by other races.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 2d6 for each slot level above 2nd.", @@ -5989,7 +5989,7 @@ "fields": { "name": "Elemental Twist", "desc": "During this spell’s duration, reality shifts around you whenever you cast a spell that deals acid, cold, fire, lightning, poison, or thunder damage. Assign each damage type a number and roll a d6 to determine the type of damage this casting of the spell deals. In addition, the spell’s damage increases by 1d6. All other properties or effects of the spell are unchanged.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "", @@ -6020,7 +6020,7 @@ "fields": { "name": "Emanation of Yoth", "desc": "You call forth a [ghost](https://api.open5e.com/monsters/ghost)// that takes the form of a spectral, serpentlike assassin. It appears in an unoccupied space that you can see within range. The ghost disappears when it’s reduced to 0 hit points or when the spell ends.\n\nThe ghost is friendly to you and your companions for the duration of the spell. Roll initiative for the ghost, which takes its own turns. It obeys verbal commands that you issue to it (no action required by you). If you don’t issue a command to it, the ghost defends itself from hostile creatures but doesn’t move or take other actions.\n\nYou are immune to the ghost’s Horrifying Visage action but can willingly become the target of the ghost’s Possession ability. You can end this effect on yourself as a bonus action.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 6th or 7th level, you call forth two ghosts. If you cast it using a spell slot of 8th or 9th level, you call forth three ghosts.", @@ -6051,7 +6051,7 @@ "fields": { "name": "Enchant Ring", "desc": "You enchant a ring you touch that isn’t being worn or carried. The next creature that willingly wears the ring becomes charmed by you for 1 week or until it is harmed by you or one of your allies. If the creature dons the ring while directly threatened by you or one of your allies, the spell fails.\n\nThe charmed creature regards you as a friend. When the spell ends, it doesn’t know it was charmed by you, but it does realize that its attitude toward you has changed (possibly greatly) in a short time. How the creature reacts to you and regards you in the future is up to the GM.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "enchantment", "higher_level": "", @@ -6082,7 +6082,7 @@ "fields": { "name": "Encroaching Shadows", "desc": "You cause menacing shadows to invade an area 200 feet on a side and 50 feet high, centered on a point within range. Illumination in the area drops one step (from bright light to dim, or from dim light to darkness). Any spell that creates light in the area that is cast using a lower-level spell slot than was used to cast encroaching shadows is dispelled, and a spell that creates light doesn’t function in the area if that spell is cast using a spell slot of 5th level or lower. Nonmagical effects can’t increase the level of illumination in the affected area.\n\nA spell that creates darkness or shadow takes effect in the area as if the spell slot expended was one level higher than the spell slot actually used.\n", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the effect lasts for an additional 12 hours for each slot level above 6th.\n\n***Ritual Focus.*** If you expend your ritual focus, the spell’s duration increases by 12 hours, and it cannot be dispelled by a spell that creates light, even if that spell is cast using a higher-level spell slot.", @@ -6113,7 +6113,7 @@ "fields": { "name": "Encrypt / Decrypt", "desc": "By touching a page of written information, you can encode its contents. All creatures that try to read the information when its contents are encoded see the markings on the page as nothing but gibberish. The effect ends when either **encrypt / decrypt** or [dispel magic](https://api.open5e.com/spells/dispel-magic) is cast on the encoded writing, which turns it back into its normal state.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "transmutation", "higher_level": "", @@ -6144,7 +6144,7 @@ "fields": { "name": "Endow Attribute", "desc": "You touch a creature with a ring that has been etched with symbols representing a particular ability (Strength, Dexterity, and so forth). The creature must make a successful Constitution saving throw or lose one-fifth (rounded down) of its points from that ability score. Those points are absorbed into the ring and stored there for the spell’s duration. If you then use an action to touch the ring to another creature on a later turn, the absorbed ability score points transfer to that creature. Once the points are transferred to another creature, you don’t need to maintain concentration on the spell; the recipient creature retains the transferred ability score points for the remainder of the hour.\n\nThe spell ends if you lose concentration before the transfer takes place, if either the target or the recipient dies, or if either the target or the recipient is affected by a successful [dispel magic](https://api.open5e.com/spells/dispel-magic) spell. When the spell ends, the ability score points return to the original owner. Before then, that creature can’t regain the stolen attribute points, even with greater restoration or comparable magic.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "If you cast this spell using a spell slot of 7th or 8th level, the duration is 8 hours. If you use a 9th‐level spell slot, the duration is 24 hours.", @@ -6175,7 +6175,7 @@ "fields": { "name": "Energy Absorption", "desc": "A creature you touch has resistance to acid, cold, fire, force, lightning, and thunder damage until the spell ends.\n\nIf the spell is used against an unwilling creature, you must make a melee spell attack with a reach of 5 feet. If the attack hits, for the duration of the spell the affected creature must make a saving throw using its spellcasting ability whenever it casts a spell that deals one of the given damage types. On a failed save, the spell is not cast but its slot is expended; on a successful save, the spell is cast but its damage is halved before applying the effects of saving throws, resistance, and other factors.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "abjuration", "higher_level": "", @@ -6206,7 +6206,7 @@ "fields": { "name": "Energy Foreknowledge", "desc": "When you cast this spell, you gain resistance to every type of energy listed above that is dealt by the spell hitting you. This resistance lasts until the end of your next turn.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "divination", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can include one additional ally in its effect for each slot level above 4th. Affected allies must be within 15 feet of you.", @@ -6237,7 +6237,7 @@ "fields": { "name": "Enhance Greed", "desc": "You detect precious metals, gems, and jewelry within 60 feet. You do not discern their exact location, only their presence and direction. Their exact location is revealed if you are within 10 feet of the spot.\n\n**Enhance greed** penetrates barriers but is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of dirt or wood.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 1 minute, and another 10 feet can be added to its range, for each slot level above 2nd.", @@ -6268,7 +6268,7 @@ "fields": { "name": "Entomb", "desc": "You cause slabs of rock to burst out of the ground or other stone surface to form a hollow, 10-foot cube within range. A creature inside the cube when it forms must make a successful Dexterity saving throw or be trapped inside the stone tomb. The tomb is airtight, with enough air for a single Medium or Small creature to breathe for 8 hours. If more than one creature is trapped inside, divide the time evenly between all the occupants. A Large creature counts as four Medium creatures. If the creature is still trapped inside when the air runs out, it begins to suffocate.\n\nThe tomb has AC 18 and 50 hit points. It is resistant to fire, cold, lightning, bludgeoning, and slashing damage, is immune to poison and psychic damage, and is vulnerable to thunder damage. When reduced to 0 hit points, the tomb crumbles into harmless powder.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "transmutation", "higher_level": "", @@ -6299,7 +6299,7 @@ "fields": { "name": "Entropic Damage Field", "desc": "By twisting a length of silver wire around your finger, you tie your fate to those around you. When you take damage, that damage is divided equally between you and all creatures in range who get a failure on a Charisma saving throw. Any leftover damage that can’t be divided equally is taken by you. Creatures that approach to within 60 feet of you after the spell was cast are also affected. A creature is allowed a new saving throw against this spell each time you take damage, and a successful save ends the spell’s effect on that creature.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "", @@ -6330,7 +6330,7 @@ "fields": { "name": "Essence Instability", "desc": "You cause the target to radiate a harmful aura. Both the target and every creature beginning or ending its turn within 20 feet of the target suffer 2d6 poison damage per round. The target can make a Constitution saving throw each round to negate the damage and end the affliction. Success means the target no longer takes damage from the aura, but the aura still persists around the target for the full duration.\n\nCreatures affected by the aura must make a successful Constitution saving throw each round to negate the damage. The aura moves with the original target and is unaffected by [gust of wind](https://api.open5e.com/spells/gust-of-wind) and similar spells.\n\nThe aura does not detect as magical or poison, and is invisible, odorless, and intangible (though the spell’s presence can be detected on the original target). [Protection from poison](https://api.open5e.com/spells/protection-from-poison) negates the spell’s effects on targets but will not dispel the aura. A foot of metal or stone, two inches of lead, or a force effect such as [mage armor](https://api.open5e.com/spells/mage-armor) or [wall of force](https://api.open5e.com/spells/wall-of-force) will block it.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the aura lasts 1 minute longer and the poison damage increases by 1d6 for each slot level above 5th.", @@ -6361,7 +6361,7 @@ "fields": { "name": "Evercold", "desc": "You target a creature within the spell’s range, and that creature must make a successful Wisdom saving throw or take 1d6 cold damage. In addition, the target is cursed to feel as if it’s exposed to extreme cold. For the duration of **evercold**, the target must make a successful DC 10 Constitution saving throw at the end of each hour or gain one level of exhaustion. The target has advantage on the hourly saving throws if wearing suitable cold-weather clothing, but it has disadvantage on saving throws against other spells and magic that deal cold damage (regardless of its clothing) for the spell’s duration.\n\nThe spell can be ended by its caster or by [dispel magic](https://api.open5e.com/spells/dispel-magic) or [remove curse](https://api.open5e.com/spells/remove-curse).", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "necromancy", "higher_level": "", @@ -6392,7 +6392,7 @@ "fields": { "name": "Exsanguinate", "desc": "You cause the body of a creature within range to become engorged with blood or ichor. The target must make a Constitution saving throw. On a successful save, it takes 2d6 bludgeoning damage. On a failed save, it takes 4d6 bludgeoning damage each round, it is incapacitated, and it cannot speak, as it vomits up torrents of blood or ichor. In addition, its hit point maximum is reduced by an amount equal to the damage taken. The target dies if this effect reduces its hit point maximum to 0.\n\nAt the end of each of its turns, a creature can make a Constitution saving throw, ending the effect on a success—except for the reduction of its hit point maximum, which lasts until the creature finishes a long rest.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can target one additional creature for each slot level above 5th.", @@ -6425,7 +6425,7 @@ "fields": { "name": "Exsanguinating Cloud", "desc": "When you cast this spell, a rose-colored mist billows up in a 20-foot radius, centered on a point you indicate within range, making the area heavily obscured and draining blood from living creatures in the cloud. The cloud spreads around corners. It lasts for the duration or until strong wind disperses it, ending the spell.\n\nThis cloud leaches the blood or similar fluid from creatures in the area. It doesn’t affect undead or constructs. Any creature in the cloud when it’s created or at the start of your turn takes 6d6 necrotic damage and gains one level of exhaustion; a successful Constitution saving throw halves the damage and prevents the exhaustion.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "necromancy", "higher_level": "", @@ -6458,7 +6458,7 @@ "fields": { "name": "Extract Knowledge", "desc": "By touching a recently deceased corpse, you gain one specific bit of knowledge from it that was known to the creature in life. You must form a question in your mind as part of casting the spell; if the corpse has an answer to your question, it reveals the information to you telepathically. The answer is always brief—no more than a sentence—and very specific to the framed question. It doesn’t matter whether the creature was your friend or enemy; the spell compels it to answer in any case.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "necromancy", "higher_level": "", @@ -6489,7 +6489,7 @@ "fields": { "name": "Fault Line", "desc": "The ground thrusts sharply upward along a 5-foot-wide, 60‐foot-long line that you designate. All spaces affected by the spell become difficult terrain. In addition, all creatures in the affected area are knocked prone and take 8d6 bludgeoning damage. Creatures that make a successful Dexterity saving throw take half as much damage and are not knocked prone. This spell doesn’t damage permanent structures.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "evocation", "higher_level": "", @@ -6520,7 +6520,7 @@ "fields": { "name": "Feather Field", "desc": "A magical barrier of chaff in the form of feathers appears and protects you. Until the start of your next turn, you have a +5 bonus to AC against ranged attacks by magic weapons.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "abjuration", "higher_level": "When you cast **feather field** using a spell slot of 2nd level or higher, the duration is increased by 1 round for each slot level above 1st.", @@ -6551,7 +6551,7 @@ "fields": { "name": "Feather Travel", "desc": "The target of **feather travel** (along with its clothing and other gear) transforms into a feather and drifts on the wind. The drifting creature has a limited ability to control its travel. It can move only in the direction the wind is blowing and at the speed of the wind. It can, however, shift up, down, or sideways 5 feet per round as if caught by a gust, allowing the creature to aim for an open window or doorway, to avoid a flame, or to steer around an animal or another creature. When the spell ends, the feather settles gently to the ground and transforms back into the original creature.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, two additional creatures can be transformed per slot level above 2nd.", @@ -6582,7 +6582,7 @@ "fields": { "name": "Fey Crown", "desc": "By channeling the ancient wards of the Seelie Court, you create a crown of five flowers on your head. While wearing this crown, you have advantage on saving throws against spells and other magical effects and are immune to being charmed. As a bonus action, you can choose a creature within 30 feet of you (including yourself). Until the end of its next turn, the chosen creature is invisible and has advantage on saving throws against spells and other magical effects. Each time a chosen creature becomes invisible, one of the blossoms in the crown closes. After the last of the blossoms closes, the spell ends at the start of your next turn and the crown disappears.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the crown can have one additional flower for each slot level above 5th. One additional flower is required as a material component for each additional flower in the crown.", @@ -6613,7 +6613,7 @@ "fields": { "name": "Find Kin", "desc": "You touch one willing creature or make a melee spell attack against an unwilling creature, which is entitled to a Wisdom saving throw. On a failed save, or automatically if the target is willing, you learn the identity, appearance, and location of one randomly selected living relative of the target.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -6644,7 +6644,7 @@ "fields": { "name": "Fire Darts", "desc": "When this spell is cast on any fire that’s at least as large as a small campfire or cooking fire, three darts of flame shoot out from the fire toward creatures within 30 feet of the fire. Darts can be directed against the same or separate targets as the caster chooses. Each dart deals 4d6 fire damage, or half as much damage if its target makes a successful Dexterity saving throw.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", @@ -6675,7 +6675,7 @@ "fields": { "name": "Fire Under the Tongue", "desc": "You can ingest a nonmagical fire up to the size of a normal campfire that is within range. The fire is stored harmlessly in your mouth and dissipates without effect if it is not used before the spell ends. You can spit out the stored fire as an action. If you try to hit a particular target, then treat this as a ranged attack with a range of 5 feet. Campfire-sized flames deal 2d6 fire damage, while torch-sized flames deal 1d6 fire damage. Once you have spit it out, the fire goes out immediately unless it hits flammable material that can keep it fed.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -6706,7 +6706,7 @@ "fields": { "name": "Firewalk", "desc": "The creature you cast **firewalk** on becomes immune to fire damage. In addition, that creature can walk along any burning surface, such as a burning wall or burning oil spread on water, as if it were solid and horizontal. Even if there is no other surface to walk on, the creature can walk along the tops of the flames.\n", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, two additional creatures can be affected for each slot level above 6th.", @@ -6737,7 +6737,7 @@ "fields": { "name": "Fist of Iron", "desc": "You transform your naked hand into iron. Your unarmed attacks deal 1d6 bludgeoning damage and are considered magical.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "transmutation", "higher_level": "", @@ -6768,7 +6768,7 @@ "fields": { "name": "Flame Wave", "desc": "A rushing burst of fire rips out from you in a rolling wave, filling a 40-foot cone. Each creature in the area must make a Dexterity saving throw. A creature takes 6d8 fire damage and is pushed 20 feet away from you on a failed save; on a successful save, the creature takes half as much damage and isn’t pushed.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 3rd.", @@ -6801,7 +6801,7 @@ "fields": { "name": "Flesh to Paper", "desc": "A willing creature you touch becomes as thin as a sheet of paper until the spell ends. Anything the target is wearing or carrying is also flattened. The target can’t cast spells or attack, and attack rolls against it are made with disadvantage. It has advantage on Dexterity (Stealth) checks while next to a wall or similar flat surface. The target can move through a space as narrow as 1 inch without squeezing. If it occupies the same space as an object or a creature when the spell ends, the creature is shunted to the nearest unoccupied space and takes force damage equal to twice the number of feet it was moved.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", @@ -6832,7 +6832,7 @@ "fields": { "name": "Flickering Fate", "desc": "You or a creature that you touch can see a few seconds into the future. When the spell is cast, each other creature within 30 feet of the target must make a Wisdom saving throw. Those that fail must declare, in initiative order, what their next action will be. The target of the spell declares his or her action last, after hearing what all other creatures will do. Each creature that declared an action must follow its declaration as closely as possible when its turn comes. For the duration of the spell, the target has advantage on attack rolls, ability checks, and saving throws, and creatures that declared their actions have disadvantage on attack rolls against the target.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "divination", "higher_level": "", @@ -6863,7 +6863,7 @@ "fields": { "name": "Fluctuating Alignment", "desc": "You channel the force of chaos to taint your target’s mind. A target that gets a failure on a Wisdom saving throw must roll 1d20 and consult the Alignment Fluctuation table to find its new alignment, and it must roll again after every minute of the spell’s duration. The target’s alignment stops fluctuating and returns to normal when the spell ends. These changes do not make the affected creature friendly or hostile toward the caster, but they can cause creatures to behave in unpredictable ways.\n ## Alignment Fluctuation \n| D20 | Alignment |\n|-|-|\n| 1-2 | Chaotic good |\n| 3-4 | Chaotic neutral |\n| 5-7 | Chaotic evil |\n| 8-9 | Neutral evil |\n| 10-11 | Lawful evil |\n| 12-14 | Lawful good |\n| 15-16 | Lawful neutral |\n| 17-18 | Neutral good |\n| 19-20 | Neutral |\n\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "enchantment", "higher_level": "", @@ -6894,7 +6894,7 @@ "fields": { "name": "Flurry", "desc": "A flurry of snow surrounds you and extends to a 5-foot radius around you. While it lasts, anyone trying to see into, out of, or through the affected area (including you) has disadvantage on Wisdom (Perception) checks and attack rolls.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -6925,7 +6925,7 @@ "fields": { "name": "Forest Native", "desc": "While in a forest, you touch a willing creature and infuse it with the forest’s energy, creating a bond between the creature and the environment. For the duration of the spell, as long as the creature remains within the forest, its movement is not hindered by difficult terrain composed of natural vegetation. In addition, the creature has advantage on saving throws against environmental effects such as excessive heat or cold or high altitude.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -6956,7 +6956,7 @@ "fields": { "name": "Forest Sanctuary", "desc": "While in a forest, you create a protective, 200-foot cube centered on a point you can see within range. The atmosphere inside the cube has the lighting, temperature, and moisture that is most ideal for the forest, regardless of the lighting or weather outside the area. The cube is transparent, and creatures and objects can move freely through it. The cube protects the area inside it from storms, strong winds, and floods, including those created by magic such as [control weather](https://api.open5e.com/spells/control-weather)[control water](https://api.open5e.com/spells/control-water), or [meteor swarm](https://api.open5e.com/spells/meteor-swarm). Such spells can’t be cast while the spellcaster is in the cube.\n\nYou can create a permanently protected area by casting this spell at the same location every day for one year.", - "document": "deep-magic", + "document": "deepm", "level": 9, "school": "abjuration", "higher_level": "", @@ -6987,7 +6987,7 @@ "fields": { "name": "Foretell Distraction", "desc": "Thanks to your foreknowledge, you know exactly when your foe will take his or her eyes off you. Casting this spell has the same effect as making a successful Dexterity (Stealth) check, provided cover or concealment is available within 10 feet of you. It doesn’t matter whether enemies can see you when you cast the spell; they glance away at just the right moment. You can move up to 10 feet as part of casting the spell, provided you’re able to move (not restrained or grappled or reduced to a speed of less than 10 feet for any other reason). This move doesn’t count as part of your normal movement. After the spell is cast, you must be in a position where you can remain hidden: a lightly obscured space, for example, or a space where you have total cover. Otherwise, enemies see you again immediately and you’re not hidden.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -7018,7 +7018,7 @@ "fields": { "name": "Form of the Gods", "desc": "By drawing on the energy of the gods, you can temporarily assume the form of your patron’s avatar. Form of the gods transforms you into an entirely new shape and brings about the following changes (summarized below and in the [avatar form](https://api.open5e.com/monsters/avatar-form) stat block).\n* Your size becomes Large, unless you were already at least that big.\n* You gain resistance to nonmagical bludgeoning, piercing, and slashing damage and to one other damage type of your choice.\n* You gain a Multiattack action option, allowing you to make two slam attacks and a bite.\n* Your ability scores change to reflect your new form, as shown in the stat block.\n\nYou remain in this form until you stop concentrating on the spell or until you drop to 0 hit points, at which time you revert to your natural form.", - "document": "deep-magic", + "document": "deepm", "level": 9, "school": "transmutation", "higher_level": "", @@ -7049,7 +7049,7 @@ "fields": { "name": "Freeze Blood", "desc": "When you cast **freeze blood** as a successful melee spell attack against a living creature with a circulatory system, the creature’s blood freezes. For the spell’s duration, the affected creature’s speed is halved and it takes 2d6 cold damage at the start of each of its turns. If the creature takes bludgeoning damage from a critical hit, the attack’s damage dice are rolled three times instead of twice. At the end of each of its turns, the creature can make a Constitution saving throw, ending the effect on a success.\n\nNOTE: This was previously a 5th-level spell that did 4d10 cold damage.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "", @@ -7082,7 +7082,7 @@ "fields": { "name": "Freeze Potion", "desc": "A blue spark flies from your hand and strikes a potion vial, drinking horn, waterskin, or similar container, instantly freezing the contents. The substance melts normally thereafter and is not otherwise harmed, but it can’t be consumed while it’s frozen.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the range increases by 5 feet for each slot level above 1st.", @@ -7113,7 +7113,7 @@ "fields": { "name": "Freezing Fog", "desc": "The spell creates a 20-foot-radius sphere of mist similar to a [fog cloud](https://api.open5e.com/spells/fog-cloud) spell centered on a point you can see within range. The cloud spreads around corners, and the area it occupies is heavily obscured. A wind of moderate or greater velocity (at least 10 miles per hour) disperses it in 1 round. The fog is freezing cold; any creature that ends its turn in the area must make a Constitution saving throw. It takes 2d6 cold damage and gains one level of exhaustion on a failed save, or takes half as much damage and no exhaustion on a successful one.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", @@ -7146,7 +7146,7 @@ "fields": { "name": "Frenzied Bolt", "desc": "You direct a bolt of rainbow colors toward a creature of your choice within range. If the bolt hits, the target takes 3d8 damage, of a type determined by rolling on the Random Damage Type table. If your attack roll (not the adjusted result) was odd, the bolt leaps to a new target of your choice within range that has not already been targeted by frenzied bolt, requiring a new spell attack roll to hit. The bolt continues leaping to new targets until you roll an even number on your spell attack roll, miss a target, or run out of potential targets. You and your allies are legal targets for this spell if you are particularly lucky—or unlucky.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create an additional bolt for each slot level above 2nd. Each potential target can be hit only once by each casting of the spell, not once per bolt.\n \n **Random Damage Type** \n \n| d10 | Damage Type | \n|--------------|---------| \n| 1 | Acid | \n| 2 | Cold | \n| 3 | Fire | \n| 4 | Force | \n| 5 | Lightning | \n| 6 | Necrotic | \n| 7 | Poision | \n| 8 | Psychic | \n| 9 | Radiant | \n| 10 | Thunder | \n \n", @@ -7177,7 +7177,7 @@ "fields": { "name": "Frostbite", "desc": "Biting cold settles onto a creature you can see. The creature must make a Constitution saving throw. On a failed save, the creature takes 4d8 cold damage. In addition, for the duration of the spell, the creature’s speed is halved, it has disadvantage on attack rolls and ability checks, and it takes another 4d8 cold damage at the start of each of its turns.\n\nAn affected creature can repeat the saving throw at the start of each of its turns. The effect ends when the creature makes its third successful save.\n\nCreatures that are immune to cold damage are unaffected by **frostbite**.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can target two additional creatures for each slot level above 5th.", @@ -7210,7 +7210,7 @@ "fields": { "name": "Frostbitten Fingers", "desc": "You fire a ray of intense cold that instantly induces frostbite. With a successful ranged spell attack, this spell causes one of the target’s hands to lose sensation. When the spell is cast, the target must make a successful Dexterity saving throw to maintain its grip on any object with the affected hand. The saving throw must be repeated every time the target tries to manipulate, wield, or pick up an item with the affected hand. Additionally, the target has disadvantage on Dexterity checks or Strength checks that require the use of both hands.\n\nAfter every 10 minutes of being affected by frostbitten fingers, the target must make a successful Constitution saving throw, or take 1d6 cold damage and lose one of the fingers on the affected hand, beginning with the pinkie.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "evocation", "higher_level": "", @@ -7241,7 +7241,7 @@ "fields": { "name": "Frozen Razors", "desc": "Razor-sharp blades of ice erupt from the ground or other surface, filling a 20-foot cube centered on a point you can see within range. For the duration, the area is lightly obscured and is difficult terrain. A creature that moves more than 5 feet into or inside the area on a turn takes 2d6 slashing damage and 3d6 cold damage, or half as much damage if it makes a successful Dexterity saving throw. A creature that takes cold damage from frozen razors is reduced to half speed until the start of its next turn.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", @@ -7274,7 +7274,7 @@ "fields": { "name": "Furious Hooves", "desc": "You enhance the feet or hooves of a creature you touch, imbuing it with power and swiftness. The target doubles its walking speed or increases it by 30 feet, whichever addition is smaller. In addition to any attacks the creature can normally make, this spell grants two hoof attacks, each of which deals bludgeoning damage equal to 1d6 + plus the target’s Strength modifier (or 1d8 if the target of the spell is Large). For the duration of the spell, the affected creature automatically deals this bludgeoning damage to the target of its successful shove attack.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "", @@ -7305,7 +7305,7 @@ "fields": { "name": "Fusillade of Ice", "desc": "You unleash a spray of razor-sharp ice shards. Each creature in the 30-foot cone takes 4d6 cold damage and 3d6 piercing damage, or half as much damage with a successful Dexterity saving throw.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by your choice of 1d6 cold damage or 1d6 piercing damage for each slot level above 4th. You can make a different choice (cold damage or piercing damage) for each slot level above 4th. Casting this spell with a spell slot of 6th level or higher increases the range to a 60-foot cone.", @@ -7339,7 +7339,7 @@ "fields": { "name": "Gear Barrage", "desc": "You create a burst of magically propelled gears. Each creature within a 60-foot cone takes 3d8 slashing damage, or half as much damage with a successful Dexterity saving throw. Constructs have disadvantage on the saving throw.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "", @@ -7372,7 +7372,7 @@ "fields": { "name": "Ghoul King’s Cloak", "desc": "You touch a creature, giving it some of the power of a ghoul king. The target gains the following benefits for the duration:\n* Its Armor Class increases by 2, to a maximum of 20.\n* When it uses the Attack action to make a melee weapon attack or a ranged weapon attack, it can make one additional attack of the same kind.\n* It is immune to necrotic damage and radiant damage.\n* It can’t be reduced to less than 1 hit point.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "transmutation", "higher_level": "When you cast this spell using a 9th-level spell slot, the spell lasts for 10 minutes and doesn’t require concentration.", @@ -7403,7 +7403,7 @@ "fields": { "name": "Gird the Spirit", "desc": "Your magic protects the target creature from the lifesapping energies of the undead. For the duration, the target has immunity to effects from undead creatures that reduce its ability scores, such as a shadow's Strength Drain, or its hit point maximum, such as a specter's Life Drain. This spell doesn't prevent damage from those attacks; it prevents only the reduction in ability score or hit point maximum.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "abjuration", "higher_level": "", @@ -7434,7 +7434,7 @@ "fields": { "name": "Glacial Cascade", "desc": "By harnessing the power of ice and frost, you emanate pure cold, filling a 30-foot-radius sphere. Creatures other than you in the sphere take 10d8 cold damage, or half as much damage with a successful Constitution saving throw. A creature killed by this spell is transformed into ice, leaving behind no trace of its original body.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "evocation", "higher_level": "", @@ -7465,7 +7465,7 @@ "fields": { "name": "Glacial Fog", "desc": "As you cast this spell, a 30-foot-radius sphere centered on a point within range becomes covered in a frigid fog. Each creature that is in the area at the start of its turn while the spell remains in effect must make a Constitution saving throw. On a failed save, a creature takes 12d6 cold damage and gains one level of exhaustion, and it has disadvantage on Perception checks until the start of its next turn. On a successful save, the creature takes half the damage and ignores the other effects.\n\nStored devices and tools are all frozen by the fog: crossbow mechanisms become sluggish, weapons are stuck in scabbards, potions turn to ice, bag cords freeze together, and so forth. Such items require the application of heat for 1 round or longer in order to become useful again.\n", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 1d6 for each slot level above 7th.", @@ -7498,7 +7498,7 @@ "fields": { "name": "Gliding Step", "desc": "Provided you’re not carrying more of a load than your carrying capacity permits, you can walk on the surface of snow rather than wading through it, and you ignore its effect on movement. Ice supports your weight no matter how thin it is, and you can travel on ice as if you were wearing ice skates. You still leave tracks normally while under these effects.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 10 minutes for each slot level above 1st.", @@ -7529,7 +7529,7 @@ "fields": { "name": "Glimpse of the Void", "desc": "Muttering Void Speech, you force images of terror and nonexistence upon your foes. Each creature in a 30-foot cube centered on a point within range must make an Intelligence saving throw. On a failed save, the creature goes insane for the duration. While insane, a creature takes no actions other than to shriek, wail, gibber, and babble unintelligibly. The GM controls the creature’s movement, which is erratic.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "enchantment", "higher_level": "", @@ -7560,7 +7560,7 @@ "fields": { "name": "Gloomwrought Barrier", "desc": "When you cast this spell, you erect a barrier of energy drawn from the realm of death and shadow. This barrier is a wall 20 feet high and 60 feet long, or a ring 20 feet high and 20 feet in diameter. The wall is transparent when viewed from one side of your choice and translucent—lightly obscuring the area beyond it—from the other. A creature that tries to move through the wall must make a successful Wisdom saving throw or stop in front of the wall and become frightened until the start of the creature’s next turn, when it can try again to move through. Once a creature makes a successful saving throw against the wall, it is immune to the effect of this barrier.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "", @@ -7591,7 +7591,7 @@ "fields": { "name": "Gluey Globule", "desc": "You make a ranged spell attack to hurl a large globule of sticky, magical glue at a creature within 120 feet. If the attack hits, the target creature is restrained. A restrained creature can break free by using an action to make a successful Strength saving throw. When the creature breaks free, it takes 2d6 slashing damage from the glue tearing its skin. If your ranged spell attack roll was a critical hit or exceeded the target’s AC by 5 or more, the Strength saving throw is made with disadvantage. The target can also be freed by an application of universal solvent or by taking 20 acid damage. The glue dissolves when the creature breaks free or at the end of 1 minute.\n\nAlternatively, **gluey globule** can also be used to glue an object to a solid surface or to another object. In this case, the spell works like a single application of [sovereign glue](https://api.open5e.com/spells/sovereign-glue) and lasts for 1 hour.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "", @@ -7624,7 +7624,7 @@ "fields": { "name": "Glyph of Shifting", "desc": "You create a hidden glyph by tracing it on a surface or object that you touch. When you cast the spell, you can also choose a location that's known to you, within 5 miles, and on the same plane of existence, to serve as the destination for the glyph's shifting effect.\n The glyph is triggered when it's touched by a creature that's not aware of its presence. The triggering creature must make a successful Wisdom saving throw or be teleported to the glyph's destination. If no destination was set, the creature takes 4d4 force damage and is knocked prone.\n The glyph disappears after being triggered or when the spell's duration expires.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, its duration increases by 24 hours and the maximum distance to the destination increases by 5 miles for each slot level above 2nd.", @@ -7657,7 +7657,7 @@ "fields": { "name": "Goat's Hoof Charm", "desc": "A creature you touch traverses craggy slopes with the surefootedness of a mountain goat. When ascending a slope that would normally be difficult terrain for it, the target can move at its full speed instead. The target also gains a +2 bonus on Dexterity checks and saving throws to prevent falling, to catch a ledge or otherwise stop a fall, or to move along a narrow ledge.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can increase the duration by 1 minute, or you can affect one additional creature, for each slot level above 1st.", @@ -7688,7 +7688,7 @@ "fields": { "name": "Going in Circles", "desc": "You make natural terrain in a 1-mile cube difficult to traverse. A creature in the affected area has disadvantage on Wisdom (Survival) checks to follow tracks or travel safely through the area as paths through the terrain seem to twist and turn nonsensically. The terrain itself isn't changed, only the perception of those inside it. A creature who succeeds on two Wisdom (Survival) checks while within the terrain discerns the illusion for what it is and sees the illusory twists and turns superimposed on the terrain. A creature that reenters the area after exiting it before the spell ends is affected by the spell even if it previously succeeded in traversing the terrain. A creature with truesight can see through the illusion and is unaffected by the spell. A creature that casts find the path automatically succeeds in discovering a way out of the terrain.\n When you cast this spell, you can designate a password. A creature that speaks the password as it enters the area automatically sees the illusion and is unaffected by the spell.\n If you cast this spell on the same spot every day for one year, the illusion lasts until it is dispelled.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "illusion", "higher_level": "", @@ -7719,7 +7719,7 @@ "fields": { "name": "Gordolay’s Pleasant Aroma", "desc": "You create an intoxicating aroma that fills the area within 30 feet of a point you can see within range. Creatures in this area smell something they find so pleasing that it’s distracting. Each creature in the area that makes an attack roll must first make a Wisdom saving throw; on a failed save, the attack is made with disadvantage. Only a creature’s first attack in a round is affected this way; subsequent attacks are resolved normally. On a successful save, a creature becomes immune to the effect of this particular scent, but they can be affected again by a new casting of the spell.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -7750,7 +7750,7 @@ "fields": { "name": "Grasp of the Tupilak", "desc": "This spell functions only against an arcane or divine spellcaster that prepares spells in advance and that has at least one unexpended spell slot of 6th level or lower. If you make a successful melee attack against such a creature before the spell ends, in addition to the usual effect of that attack, the target takes 2d4 necrotic damage and one or more of the victim’s available spell slots are transferred to you, to be used as your own. Roll a d6; the result equals the total levels of the slots transferred. Spell slots of the highest possible level are transferred before lower-level slots.\n\nFor example, if you roll a 5 and the target has at least one 5th-level spell slot available, that slot transfers to you. If the target’s highest available spell slot is 3rd level, then you might receive a 3rd-level slot and a 2nd-level slot, or a 3rd-level slot and two 1st-level slots if no 2nd-level slot is available.\n\nIf the target has no available spell slots of an appropriate level—for example, if you roll a 2 and the target has expended all of its 1st- and 2nd-level spell slots—then **grasp of the tupilak** has no effect, including causing no necrotic damage. If a stolen spell slot is of a higher level than you’re able to use, treat it as of the highest level you can use.\n\nUnused stolen spell slots disappear, returning whence they came, when you take a long rest or when the creature you stole them from receives the benefit of [remove curse](https://api.open5e.com/spells/remove-curse)[greater restoration](https://api.open5e.com/greater-restoration), or comparable magic.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "necromancy", "higher_level": "", @@ -7783,7 +7783,7 @@ "fields": { "name": "Greater Maze", "desc": "This spell functions as [maze](https://api.open5e.com/spells/maze), but the target must make a Dexterity saving throw each time it starts its turn in the maze. The target takes 4d6 psychic damage on a failed save, or half as much damage on a success.\n\nEscaping this maze is especially difficult. To do so, the target must use an action to make a DC 20 Intelligence check. It escapes when it makes its second successful check.", - "document": "deep-magic", + "document": "deepm", "level": 9, "school": "conjuration", "higher_level": "", @@ -7816,7 +7816,7 @@ "fields": { "name": "Greater Seal of Sanctuary", "desc": "You inscribe an angelic seal on the ground, the floor, or other solid surface of a structure. The seal creates a spherical sanctuary with a radius of 100 feet, centered on the seal. For the duration, aberrations, elementals, fey, fiends, and undead that approach to within 5 feet of the boundary know they are about to come into contact with a deadly barrier. If such a creature moves so as to touch the boundary, or tries to cross the boundary by any means, including teleportation and extradimensional travel, it must make a Charisma saving throw. On a failed save, it takes 15d8 radiant damage, is repelled to 5 feet outside the boundary, and can’t target anything inside the boundary with attacks, spells, or abilities until the spell ends. On a successful save, the creature takes half as much radiant damage and can cross the boundary. If the creature is a fiend that isn’t on its home plane, it is immediately destroyed (no saving throw) instead of taking damage.\n\nAberrations, elementals, fey, and undead that are within 100 feet of the seal (inside the boundary) have disadvantage on ability checks, attack rolls, and saving throws, and each such creature takes 4d8 radiant damage at the start of its turn.\n\nCreatures other than aberrations, elementals, fey, fiends, and undead can’t be charmed or frightened while within 100 feet of the seal.\n\nThe seal has AC 18, 75 hit points, resistance to bludgeoning, piercing, and slashing damage, and immunity to psychic and poison damage. Ranged attacks against the seal are made with disadvantage. If it is scribed on the surface of an object that is later destroyed (such as a wooden door), the seal is not damaged and remains in place, perhaps suspended in midair. The spell ends only if the seal itself is reduced to 0 hit points.", - "document": "deep-magic", + "document": "deepm", "level": 9, "school": "abjuration", "higher_level": "", @@ -7849,7 +7849,7 @@ "fields": { "name": "Green Decay", "desc": "Your touch inflicts a nauseating, alien rot. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with the supernatural disease green decay (see below), and creatures within 15 feet of the target who can see it must make a successful Constitution saving throw or become poisoned until the end of their next turn.\n\nYou lose concentration on this spell if you can’t see the target at the end of your turn.\n\n***Green Decay.*** The flesh of a creature that has this disease is slowly consumed by a virulent extraterrestrial fungus. While the disease persists, the creature has disadvantage on Charisma and Wisdom checks and on Wisdom saving throws, and it has vulnerability to acid, fire, and necrotic damage. An affected creature must make a Constitution saving throw at the end of each of its turns. On a failed save, the creature takes 1d6 necrotic damage, and its hit point maximum is reduced by an amount equal to the necrotic damage taken. If the creature gets three successes on these saving throws before it gets three failures, the disease ends immediately (but the damage and the hit point maximum reduction remain in effect). If the creature gets three failures on these saving throws before it gets three successes, the disease lasts for the duration of the spell, and no further saving throws are allowed.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "necromancy", "higher_level": "", @@ -7882,7 +7882,7 @@ "fields": { "name": "Grudge Match", "desc": "This spell affects any creatures you designate within range, as long as the group contains an equal number of allies and enemies. If the number of allies and enemies targeted isn’t the same, the spell fails. For the duration of the spell, each target gains a +2 bonus on saving throws, attack rolls, ability checks, skill checks, and weapon damage rolls made involving other targets of the spell. All affected creatures can identify fellow targets of the spell by sight. If an affected creature makes any of the above rolls against a non-target, it takes a -2 penalty on that roll.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration increases by 1 round for each slot level above 2nd.", @@ -7913,7 +7913,7 @@ "fields": { "name": "Guest of Honor", "desc": "You whisper words of encouragement, and a creature that you touch gains confidence along with approval from strangers. For the spell’s duration, the target puts its best foot forward and strangers associate the creature with positive feelings. The target adds 1d4 to all Charisma (Persuasion) checks made to influence the attitudes of others.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the effect lasts for an additional 10 minutes for each slot level above 1st.\n\n***Ritual Focus.*** If you expend your ritual focus, the effect lasts for 24 hours.", @@ -7944,7 +7944,7 @@ "fields": { "name": "Guiding Star", "desc": "By observing the stars or the position of the sun, you are able to determine the cardinal directions, as well as the direction and distance to a stated destination. You can’t become directionally disoriented or lose track of the destination. The spell doesn’t, however, reveal the best route to your destination or warn you about deep gorges, flooded rivers, or other impassable or treacherous terrain.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -7975,7 +7975,7 @@ "fields": { "name": "Hamstring", "desc": "You create an arrow of eldritch energy and send it at a target you can see within range. Make a ranged spell attack against the target. On a hit, the target takes 1d4 force damage, and it can’t take reactions until the end of its next turn.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "The spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", @@ -8008,7 +8008,7 @@ "fields": { "name": "Hard Heart", "desc": "You imbue your touch with the power to make a creature aloof, hardhearted, and unfeeling. The creature you touch as part of casting this spell must make a Wisdom saving throw; a creature can choose to fail this saving throw unless it’s currently charmed. On a successful save, this spell fails. On a failed save, the target becomes immune to being charmed for the duration; if it’s currently charmed, that effect ends. In addition, Charisma checks against the target are made with disadvantage for the spell’s duration.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 3rd or 4th level, the duration increases to 1 hour. If you use a spell slot of 5th level or higher, the duration is 8 hours.", @@ -8039,7 +8039,7 @@ "fields": { "name": "Harry", "desc": "You instill an irresistible sense of insecurity and terror in the target. The target must make a Wisdom saving throw. On a failed save, the target has disadvantage on Dexterity (Stealth) checks to avoid your notice and is frightened of you while you are within its line of sight. While you are within 1 mile of the target, you have advantage on Wisdom (Survival) checks to track the target, and the target can't take a long rest, terrified you are just around the corner. The target can repeat the saving throw once every 10 minutes, ending the spell on a success.\n On a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "enchantment", "higher_level": "When you cast this spell with a 6th-level spell slot, the duration is concentration, up to 8 hours and the target can repeat the saving throw once each hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 24 hours, and the target can repeat the saving throw every 8 hours.", @@ -8070,7 +8070,7 @@ "fields": { "name": "Harrying Hounds", "desc": "When you cast this spell, choose a direction (north, south, northeast, or the like). Each creature in a 20-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it. When an affected creature travels, it travels at a fast pace in the opposite direction of the direction you chose as it believes a pack of dogs or wolves follows it from the chosen direction.\n When an affected creature isn't traveling, it is frightened of your chosen direction. The affected creature occasionally hears howls or sees glowing eyes in the darkness at the edge of its vision in that direction. An affected creature will not stop at a destination, instead pacing half-circles around the destination until the effect ends, terrified the pack will overcome it if it stops moving.\n An affected creature can make a Wisdom saving throw at the end of each 4-hour period, ending the effect on itself on a success. An affected creature moves along the safest available route unless it has nowhere to move, such as if it arrives at the edge of a cliff. When an affected creature can't safely move in the opposite direction of your chosen direction, it cowers in place, defending itself from hostile creatures but otherwise taking no actions. In such circumstances, the affected creature can repeat the saving throw every minute, ending the effect on itself on a success. The spell's effect is suspended when an affected creature is engaged in combat, allowing it to move as necessary to face hostile creatures.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the duration increases by 4 hours for each slot level above 5th. If an affected creature travels for more than 8 hours, it risks exhaustion as if on a forced march.", @@ -8101,7 +8101,7 @@ "fields": { "name": "Harsh Light of Summer’s Glare", "desc": "You emit a burst of brilliant light, which bears down oppressively upon all creatures within range that can see you. Creatures with darkvision that fail a Constitution saving throw are blinded and stunned. Creatures without darkvision that fail a Constitution saving throw are blinded. This is not a gaze attack, and it cannot be avoided by averting one’s eyes or wearing a blindfold.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "enchantment", "higher_level": "", @@ -8132,7 +8132,7 @@ "fields": { "name": "Heart-Seeking Arrow", "desc": "The next time you make a ranged weapon attack during the spell's duration, the weapon's ammunition—or the weapon itself if it's a thrown weapon—seeks its target's vital organs. Make the attack roll as normal. On a hit, the weapon deals an extra 6d6 damage of the same type dealt by the weapon, or half as much damage on a miss as it streaks unerringly toward its target. If this attack reduces the target to 0 hit points, the target has disadvantage on its next death saving throw, and, if it dies, it can be restored to life only by means of a true resurrection or a wish spell. This spell has no effect on undead or constructs.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the extra damage on a hit increases by 1d6 for each slot level above 4th.", @@ -8163,7 +8163,7 @@ "fields": { "name": "Heart to Heart", "desc": "For the duration, you and the creature you touch remain stable and unconscious if reduced to 0 hit points while the other has 1 or more hit points. If you touch a dying creature, it becomes stable but remains unconscious while it has 0 hit points. If both of you are reduced to 0 hit points, you must both make death saving throws, as normal. If you or the target regain hit points, either of you can choose to split those hit points between the two of you if both of you are within 60 feet of each other.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "necromancy", "higher_level": "", @@ -8194,7 +8194,7 @@ "fields": { "name": "Heartache", "desc": "You force an enemy to experience pangs of unrequited love and emotional distress. These feelings manifest with such intensity that the creature takes 5d6 psychic damage on a failed Charisma saving throw, or half the damage on a successful save.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target an additional enemy for each slot level above 2nd.", @@ -8227,7 +8227,7 @@ "fields": { "name": "Heartstop", "desc": "You slow the beating of a willing target’s heart to the rate of one beat per minute. The creature’s breathing almost stops. To a casual or brief observer, the subject appears dead. At the end of the spell, the creature returns to normal with no ill effects.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "necromancy", "higher_level": "", @@ -8258,7 +8258,7 @@ "fields": { "name": "Heartstrike", "desc": "The spirits of ancient archers carry your missiles straight to their targets. You have advantage on ranged weapon attacks until the start of your next turn, and you can ignore penalties for your enemies having half cover or three-quarters cover, and for an area being lightly obscured, when making those attacks.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "", @@ -8289,7 +8289,7 @@ "fields": { "name": "Heavenly Crown", "desc": "A glowing, golden crown appears on your head and sheds dim light in a 30-foot radius. When you cast the spell (and as a bonus action on subsequent turns, until the spell ends), you can target one willing creature within 30 feet of you that you can see. If the target can hear you, it can use its reaction to make one melee weapon attack and then move up to half its speed, or vice versa.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "enchantment", "higher_level": "", @@ -8320,7 +8320,7 @@ "fields": { "name": "Hedren’s Birds of Clay", "desc": "You create a number of clay pigeons equal to 1d4 + your spellcasting modifier (minimum of one) that swirl around you. When you are the target of a ranged weapon attack or a ranged spell attack and before the attack roll is made, you can use your reaction to shout “Pull!” When you do, one clay pigeon maneuvers to block the incoming attack. If the attack roll is less than 10 + your proficiency bonus, the attack misses. Otherwise, make a check with your spellcasting ability modifier and compare it to the attack roll. If your roll is higher, the attack is intercepted and has no effect. Regardless of whether the attack is intercepted, one clay pigeon is expended. The spell ends when the last clay pigeon is used.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, add 1 to your to your roll for each slot level above 3rd when determining if an attack misses or when making a check to intercept the attack.", @@ -8351,7 +8351,7 @@ "fields": { "name": "Hematomancy", "desc": "You can learn information about a creature whose blood you possess. The target must make a Wisdom saving throw. If the target knows you’re casting the spell, it can fail the saving throw voluntarily if it wants you to learn the information. On a successful save, the target isn’t affected, and you can’t use this spell against it again for 24 hours. On a failed save, or if the blood belongs to a dead creature, you learn the following information:\n* The target’s most common name (if any).\n* The target’s creature type (and subtype, if any), gender, and which of its ability scores is highest (though not the exact numerical score).\n* The target’s current status (alive, dead, sick, wounded, healthy, etc.).\n* The circumstances of the target shedding the blood you’re holding (bleeding wound, splatter from an attack, how long ago it was shed, etc.).\nAlternatively, you can forgo all of the above information and instead use the blood as a beacon to track the target. For 1 hour, as long as you are on the same plane of existence as the creature, you know the direction and distance to the target’s location at the time you cast this spell. While moving toward the location, if you are presented with a choice of paths, the spell automatically indicates which path provides the shortest and most direct route to the location.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "divination", "higher_level": "", @@ -8382,7 +8382,7 @@ "fields": { "name": "Hero's Steel", "desc": "You infuse the metal of a melee weapon you touch with the fearsome aura of a mighty hero. The weapon’s wielder has advantage on Charisma (Intimidation) checks made while aggressively brandishing the weapon. In addition, an opponent that currently has 30 or fewer hit points and is struck by the weapon must make a successful Charisma saving throw or be stunned for 1 round. If the creature has more than 30 hit points but fewer than the weapon’s wielder currently has, it becomes frightened instead; a frightened creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a successful save. A creature that succeeds on the saving throw is immune to castings of this spell on the same weapon for 24 hours.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "", @@ -8413,7 +8413,7 @@ "fields": { "name": "Hide in One’s Shadow", "desc": "When you touch a willing creature with a piece of charcoal while casting this spell, the target and everything it carries blends into and becomes part of the target’s shadow, which remains discernible, although its body seems to disappear. The shadow is incorporeal, has no weight, and is immune to all but psychic and radiant damage. The target remains aware of its surroundings and can move, but only as a shadow could move—flowing along surfaces as if the creature were moving normally. The creature can step out of the shadow at will, resuming its physical shape in the shadow’s space and ending the spell.\n\nThis spell cannot be cast in an area devoid of light, where a shadow would not normally appear. Even a faint light source, such as moonlight or starlight, is sufficient. If that light source is removed, or if the shadow is flooded with light in such a way that the physical creature wouldn’t cast a shadow, the spell ends and the creature reappears in the shadow’s space.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "", @@ -8444,7 +8444,7 @@ "fields": { "name": "Hoarfrost", "desc": "A melee weapon you are holding is imbued with cold. For the duration, a rime of frost covers the weapon and light vapor rises from it if the temperature is above freezing. The weapon becomes magical and deals an extra 1d4 cold damage on a successful hit. The spell ends after 1 minute, or earlier if you make a successful attack with the weapon or let go of it.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "The spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", @@ -8475,7 +8475,7 @@ "fields": { "name": "Hobble", "desc": "You create an ethereal trap in the space of a creature you can see within range. The target must succeed on a Dexterity saving throw or its speed is halved until the end of its next turn.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "", @@ -8506,7 +8506,7 @@ "fields": { "name": "Hobble Mount", "desc": "When you cast **hobble mount** as a successful melee spell attack against a horse, wolf, or other four-legged or two-legged beast being ridden as a mount, that beast is disabled so that it can’t move at its normal speed without incurring injury. An affected creature that moves more than half its base speed in a turn takes 2d6 bludgeoning damage.\n\nThis spell has no effect on a creature that your GM deems to not be a mount.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 2d6 for each slot level above 1st.", @@ -8539,7 +8539,7 @@ "fields": { "name": "Holy Ground", "desc": "You invoke divine powers to bless the ground within 60 feet of you. Creatures slain in the affected area cannot be raised as undead by magic or by the abilities of monsters, even if the corpse is later removed from the area. Any spell of 4th level or lower that would summon or animate undead within the area fails automatically. Such spells cast with spell slots of 5th level or higher function normally.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the level of spells that are prevented from functioning increases by 1 for each slot level above 5th.", @@ -8570,7 +8570,7 @@ "fields": { "name": "Hone Blade", "desc": "You magically sharpen the edge of any bladed weapon or object you are touching. The target weapon gets a +1 bonus to damage on its next successful hit.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -8601,7 +8601,7 @@ "fields": { "name": "Hunger of Leng", "desc": "You curse a creature that you can see in range with an insatiable, ghoulish appetite. If it has a digestive system, the creature must make a successful Wisdom saving throw or be compelled to consume the flesh of living creatures for the duration.\n\nThe target gains a bite attack and moves to and attacks the closest creature that isn’t an undead or a construct. The target is proficient with the bite, and it adds its Strength modifier to the attack and damage rolls. The damage is piercing and the damage die is a d4. If the target is larger than Medium, its damage die increases by 1d4 for each size category it is above Medium. In addition, the target has advantage on melee attack rolls against any creature that doesn’t have all of its hit points.\n\nIf there isn’t a viable creature within range for the target to attack, it deals piercing damage to itself equal to 2d4 + its Strength modifier. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. If the target has two consecutive failures, **hunger of Leng** lasts its full duration with no further saving throws allowed.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "enchantment", "higher_level": "", @@ -8632,7 +8632,7 @@ "fields": { "name": "Hunter's Endurance", "desc": "You call on the land to sustain you as you hunt your quarry. Describe or name a creature that is familiar to you. If you aren't familiar with the target creature, you must use a fingernail, lock of hair, bit of fur, or drop of blood from it as a material component to target that creature with this spell. Until the spell ends, you have advantage on all Wisdom (Perception) and Wisdom (Survival) checks to find and track the target, and you must actively pursue the target as if under a geas. In addition, you don't suffer from exhaustion levels you gain from pursuing your quarry, such as from lack of rest or environmental hazards between you and the target, while the spell is active. When the spell ends, you suffer from all levels of exhaustion that were suspended by the spell. The spell ends only after 24 hours, when the target is dead, when the target is on a different plane, or when the target is restrained in your line of sight.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "enchantment", "higher_level": "", @@ -8663,7 +8663,7 @@ "fields": { "name": "Hunting Stand", "desc": "You make a camouflaged shelter nestled in the branches of a tree or among a collection of stones. The shelter is a 10-foot cube centered on a point within range. It can hold as many as nine Medium or smaller creatures. The atmosphere inside the shelter is comfortable and dry, regardless of the weather outside. The shelter's camouflage provides a modicum of concealment to its inhabitants; a creature outside the shelter has disadvantage on Wisdom (Perception) and Intelligence (Investigation) checks to detect or locate a creature within the shelter.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "conjuration", "higher_level": "", @@ -8694,7 +8694,7 @@ "fields": { "name": "Ice Fortress", "desc": "A gleaming fortress of ice springs from a square area of ground that you can see within range. It is a 10-foot cube (including floor and roof). The fortress can’t overlap any other structures, but any creatures in its space are harmlessly lifted up as the ice rises into position. The walls are made of ice (AC 13), have 120 hit points each, and are immune to cold, necrotic, poison, and psychic damage. Reducing a wall to 0 hit points destroys it and has a 50 percent chance to cause the roof to collapse. A damaged wall can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis.\n\nEach wall has two arrow slits. One wall also includes an ice door with an [arcane lock](https://api.open5e.com/spells/arcane-lock). You designate at the time of the fort’s creation which creatures can enter the fortification. The door has AC 18 and 60 hit points, or it can be broken open with a successful DC 25 Strength (Athletics) check (DC 15 if the [arcane lock](https://api.open5e.com/spells/arcane-lock) is dispelled).\n\nThe fortress catches and reflects light, so that creatures outside the fortress who rely on sight have disadvantage on Perception checks and attack rolls made against those within the fortress if it’s in an area of bright sunlight.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can increase the length or width of the fortification by 5 feet for every slot level above 5th. You can make a different choice (width or length) for each slot level above 5th.", @@ -8725,7 +8725,7 @@ "fields": { "name": "Ice Hammer", "desc": "When you cast **ice hammer**, a warhammer fashioned from ice appears in your hands. This weapon functions as a standard warhammer in all ways, and it deals an extra 1d10 cold damage on a hit. You can drop the warhammer or give it to another creature.\n\nThe warhammer melts and is destroyed when it or its user accumulates 20 or more fire damage, or when the spell ends.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional hammer for each slot level above 2nd. Alternatively, you can create half as many hammers (round down), but each is oversized (1d10 bludgeoning damage, or 1d12 if wielded with two hands, plus 2d8 cold damage). Medium or smaller creatures have disadvantage when using oversized weapons, even if they are proficient with them.", @@ -8756,7 +8756,7 @@ "fields": { "name": "Ice Soldiers", "desc": "You pour water from the vial and cause two [ice soldiers](https://api.open5e.com/monsters/ice-soldier) to appear within range. The ice soldiers cannot form if there is no space available for them. The ice soldiers act immediately on your turn. You can mentally command them (no action required by you) to move and act where and how you desire. If you command an ice soldier to attack, it attacks that creature exclusively until the target is dead, at which time the soldier melts into a puddle of water. If an ice soldier moves farther than 30 feet from you, it immediately melts.\n", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you create one additional ice soldier.", @@ -8787,7 +8787,7 @@ "fields": { "name": "Icicle Daggers", "desc": "When you cast this spell, three icicles appear in your hand. Each icicle has the same properties as a dagger but deals an extra 1d4 cold damage on a hit.\n\nThe icicle daggers melt a few seconds after leaving your hand, making it impossible for other creatures to wield them. If the surrounding temperature is at or below freezing, the daggers last for 1 hour. They melt instantly if you take 10 or more fire damage.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "conjuration", "higher_level": "If you cast this spell using a spell slot of 2nd level or higher, you can create two additional daggers for each slot level above 1st. If you cast this spell using a spell slot of 4th level or higher, daggers that leave your hand don’t melt until the start of your next turn.", @@ -8818,7 +8818,7 @@ "fields": { "name": "Icy Grasp of the Void", "desc": "You summon the cold, inky darkness of the Void into being around a creature that you can see. The target takes 10d10 cold damage and is restrained for the duration; a successful Constitution saving throw halves the damage and negates the restrained condition. A restrained creature gains one level of exhaustion at the start of each of its turns. Creatures immune to cold and that do not breathe do not gain exhaustion. A creature restrained in this way can repeat the saving throw at the end of each of its turns, ending the spell on a success.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "evocation", "higher_level": "", @@ -8851,7 +8851,7 @@ "fields": { "name": "Icy Manipulation", "desc": "One creature you can see within range must make a Constitution saving throw. On a failed save, the creature is petrified (frozen solid). A petrified creature can repeat the saving throw at the end of each of its turns, ending the effect on itself if it makes two successful saves. If a petrified creature gets two failures on the saving throw (not counting the original failure that caused the petrification), the petrification becomes permenant.\n\nThe petrification also becomes permanent if you maintain concentration on this spell for a full minute. A permanently petrified/frozen creature can be restored to normal with [greater restoration](https://api.open5e.com/spells/greater-restoration) or comparable magic, or by casting this spell on the creature again and maintaining concentration for a full minute.\n\nIf the frozen creature is damaged or broken before it recovers from being petrified, the injury carries over to its normal state.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "transmutation", "higher_level": "", @@ -8882,7 +8882,7 @@ "fields": { "name": "Ill-Fated Word", "desc": "You call out a distracting epithet to a creature, worsening its chance to succeed at whatever it's doing. Roll a d4 and subtract the number rolled from an attack roll, ability check, or saving throw that the target has just made; the target uses the lowered result to determine the outcome of its roll.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -8913,7 +8913,7 @@ "fields": { "name": "Illuminate Spoor", "desc": "You touch a set of tracks created by a single creature. That set of tracks and all other tracks made by the same creature give off a faint glow. You and up to three creatures you designate when you cast this spell can see the glow. A creature that can see the glow automatically succeeds on Wisdom (Survival) checks to track that creature. If the tracks are covered by obscuring objects such as leaves or mud, you and the creatures you designate have advantage on Wisdom (Survival) checks to follow the tracks.\n If the creature leaving the tracks changes its tracks, such as by adding or removing footwear, the glow stops where the tracks change. Until the spell ends, you can use an action to touch and illuminate a new set of tracks.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 8 hours. When you use a spell slot of 5th level or higher, the duration is concentration, up to 24 hours.", @@ -8944,7 +8944,7 @@ "fields": { "name": "Impending Ally", "desc": "You summon a duplicate of yourself as an ally who appears in an unoccupied space you can see within range. You control this ally, whose turn comes immediately after yours. When you or the ally uses a class feature, spell slot, or other expendable resource, it’s considered expended for both of you. When the spell ends, or if you are killed, the ally disappears immediately.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration is extended by 1 round for every two slot levels above 3rd.", @@ -8975,7 +8975,7 @@ "fields": { "name": "Innocuous Aspect", "desc": "An area of false vision encompasses all creatures within 20 feet of you. You and each creature in the area that you choose to affect take on the appearance of a harmless creature or object, chosen by you. Each image is identical, and only appearance is affected. Sound, movement, or physical inspection can reveal the ruse.\n\nA creature that uses its action to study the image visually can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, that creature sees through the image.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "illusion", "higher_level": "", @@ -9006,7 +9006,7 @@ "fields": { "name": "Insightful Maneuver", "desc": "With a flash of insight, you know how to take advantage of your foe’s vulnerabilities. Until the end of your turn, the target has vulnerability to one type of damage (your choice). Additionally, if the target has any other vulnerabilities, you learn them.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -9037,7 +9037,7 @@ "fields": { "name": "Inspiring Speech", "desc": "The verbal component of this spell is a 10-minute-long, rousing speech. At the end of the speech, all your allies within the affected area who heard the speech gain a +1 bonus on attack rolls and advantage on saving throws for 1 hour against effects that cause the charmed or frightened condition. Additionally, each recipient gains temporary hit points equal to your spellcasting ability modifier. If you move farther than 1 mile from your allies or you die, this spell ends. A character can be affected by only one casting of this spell at a time; subsequent, overlapping castings have no additional effect and don't extend the spell's duration.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "enchantment", "higher_level": "", @@ -9068,7 +9068,7 @@ "fields": { "name": "Instant Fortification", "desc": "Through this spell, you transform a miniature statuette of a keep into an actual fort. The fortification springs from the ground in an unoccupied space within range. It is a 10- foot cube (including floor and roof).\n\nEach wall has two arrow slits. One wall also includes a metal door with an [arcane lock](https://api.open5e.com/spells/arcane-lock) effect on it. You designate at the time of the fort’s creation which creatures can ignore the lock and enter the fortification. The door has AC 20 and 60 hit points, and it can be broken open with a successful DC 25 Strength (Athletics) check. The walls are made of stone (AC 15) and are immune to necrotic, poison, and psychic damage. Each 5-foot-square section of wall has 90 hit points. Reducing a section of wall to 0 hit points destroys it, allowing access to the inside of the fortification.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can increase the length or width of the fortification by 5 feet for each slot level above 5th. You can make a different choice (width or length) for each slot level above 5th.", @@ -9099,7 +9099,7 @@ "fields": { "name": "Instant Siege Weapon", "desc": "With this spell, you instantly transform raw materials into a siege engine of Large size or smaller (the GM has information on this topic). The raw materials for the spell don’t need to be the actual components a siege weapon is normally built from; they just need to be manufactured goods made of the appropriate substances (typically including some form of finished wood and a few bits of worked metal) and have a gold piece value of no less than the weapon’s hit points.\n\nFor example, a mangonel has 100 hit points. **Instant siege weapon** will fashion any collection of raw materials worth at least 100 gp into a mangonel. Those materials might be lumber and fittings salvaged from a small house, or 100 gp worth of finished goods such as three wagons or two heavy crossbows. The spell also creates enough ammunition for ten shots, if the siege engine uses ammunition.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 6th level, a Huge siege engine can be made; at 8th level, a Gargantuan siege engine can be made. In addition, for each slot level above 4th, the spell creates another ten shots’ worth of ammunition.", @@ -9130,7 +9130,7 @@ "fields": { "name": "Instant Snare", "desc": "You create a snare on a point you can see within range. You can leave the snare as a magical trap, or you can use your reaction to trigger the trap when a Large or smaller creature you can see moves within 10 feet of the snare. If you leave the snare as a trap, a creature must succeed on an Intelligence (Investigation) or Wisdom (Perception) check against your spell save DC to find the trap.\n When a Large or smaller creature moves within 5 feet of the snare, the trap triggers. The creature must succeed on a Dexterity saving throw or be magically pulled into the air. The creature is restrained and hangs upside down 5 feet above the snare's location for 1 minute. A restrained creature can repeat the saving throw at the end of each of its turns, escaping the snare on a success. Alternatively, a creature, including the restrained target, can use its action to make an Intelligence (Arcana) check against your spell save DC. On a success, the restrained creature is freed, and the snare resets itself 1 minute later. If the creature succeeds on the check by 5 or more, the snare is destroyed instead.\n This spell alerts you with a ping in your mind when the trap is triggered if you are within 1 mile of the snare. This ping awakens you if you are sleeping.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional snare for each slot level above 3rd. When you receive the mental ping that a trap was triggered, you know which snare was triggered if you have more than one.", @@ -9161,7 +9161,7 @@ "fields": { "name": "Ire of the Mountain", "desc": "An **ire of the mountain** spell melts nonmagical objects that are made primarily of metal. Choose one metal object weighing 10 pounds or less that you can see within range. Tendrils of blistering air writhe toward the target. A creature holding or wearing the item must make a Dexterity saving throw. On a successful save, the creature takes 1d8 fire damage and the spell has no further effect. On a failed save, the targeted object melts and is destroyed, and the creature takes 4d8 fire damage if it is wearing the object, or 2d8 fire damage if it is holding the object. If the object is not being held or worn by a creature, it is automatically melted and rendered useless. This spell cannot affect magic items.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional object for each slot level above 3rd.", @@ -9194,7 +9194,7 @@ "fields": { "name": "Iron Hand", "desc": "**Iron hand** is a common spell among metalsmiths and other crafters who work with heat. When you use this spell, one of your arms becomes immune to fire damage, allowing you to grasp red-hot metal, scoop up molten glass with your fingers, or reach deep into a roaring fire to pick up an object. In addition, if you take the Dodge action while you’re protected by **iron hand**, you have resistance to fire damage until the start of your next turn.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "abjuration", "higher_level": "", @@ -9225,7 +9225,7 @@ "fields": { "name": "Kareef’s Entreaty", "desc": "Your kind words offer hope and support to a fallen comrade. Choose a willing creature you can see within range that is about to make a death saving throw. The creature gains advantage on the saving throw, and if the result of the saving throw is 18 or higher, the creature regains 3d4 hit points immediately.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the creature adds 1 to its death saving throw for every two slot levels above 1st and regains an additional 1d4 hit points for each slot level above 1st if its saving throw result is 18 or higher.", @@ -9256,7 +9256,7 @@ "fields": { "name": "Keening Wail", "desc": "You emit an unholy shriek from beyond the grave. Each creature in a 15-foot cone must make a Constitution saving throw. A creature takes 6d6 necrotic damage on a failed save, or half as much damage on a successful one. If a creature with 50 hit points or fewer fails the saving throw by 5 or more, it is instead reduced to 0 hit points. This wail has no effect on constructs and undead.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", @@ -9289,7 +9289,7 @@ "fields": { "name": "Killing Fields", "desc": "You invoke primal spirits of nature to transform natural terrain in a 100-foot cube in range into a private hunting preserve. The area can't include manufactured structures and if such a structure exists in the area, the spell ends.\n While you are conscious and within the area, you are aware of the presence and direction, though not exact location, of each beast and monstrosity with an Intelligence of 3 or lower in the area. When a beast or monstrosity with an Intelligence of 3 or lower tries to leave the area, it must make a Wisdom saving throw. On a failure, it is disoriented, uncertain of its surroundings or direction, and remains within the area for 1 hour. On a success, it leaves the area.\n When you cast this spell, you can specify individuals that are helped by the area's effects. All other creatures in the area are hindered by the area's effects. You can also specify a password that, when spoken aloud, gives the speaker the benefits of being helped by the area's effects.\n *Killing fields* creates the following effects within the area.\n ***Pack Hunters.*** A helped creature has advantage on attack rolls against a hindered creature if at least one helped ally is within 5 feet of the hindered creature and the helped ally isn't incapacitated. Slaying. Once per turn, when a helped creature hits with any weapon, the weapon deals an extra 1d6 damage of its type to a hindered creature. Tracking. A helped creature has advantage on Wisdom (Survival) and Dexterity (Stealth) checks against a hindered creature.\n You can create a permanent killing field by casting this spell in the same location every day for one year. Structures built in the area after the killing field is permanent don't end the spell.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "transmutation", "higher_level": "", @@ -9320,7 +9320,7 @@ "fields": { "name": "Kiss of the Succubus", "desc": "You kiss a willing creature or one you have charmed or held spellbound through spells or abilities such as [dominate person](https://api.open5e.com/spells/dominate-person). The target must make a Constitution saving throw. A creature takes 5d10 psychic damage on a failed save, or half as much damage on a successful one. The target’s hit point maximum is reduced by an amount equal to the damage taken; this reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.", @@ -9353,7 +9353,7 @@ "fields": { "name": "Kobold’s Fury", "desc": "Your touch infuses the rage of a threatened kobold into the target. The target has advantage on melee weapon attacks until the end of its next turn. In addition, its next successful melee weapon attack against a creature larger than itself does an additional 2d8 damage.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -9384,7 +9384,7 @@ "fields": { "name": "Labyrinth Mastery", "desc": "Upon casting this spell, you immediately gain a sense of your surroundings. If you are in a physical maze or any similar structure with multiple paths and dead ends, this spell guides you to the nearest exit, although not necessarily along the fastest or shortest route.\n\nIn addition, while the spell is guiding you out of such a structure, you have advantage on ability checks to avoid being surprised and on initiative rolls.\n\nYou gain a perfect memory of all portions of the structure you move through during the spell’s duration. If you revisit such a portion, you recognize that you’ve been there before and automatically notice any changes to the environment.\n\nAlso, while under the effect of this spell, you can exit any [maze](https://api.open5e.com/spells/maze) spell (and its lesser and greater varieties) as an action without needing to make an Intelligence check.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "divination", "higher_level": "", @@ -9415,7 +9415,7 @@ "fields": { "name": "Labyrinthine Howl", "desc": "You let loose the howl of a ravenous beast, causing each enemy within range that can hear you to make a Wisdom saving throw. On a failed save, a creature believes it has been transported into a labyrinth and is under attack by savage beasts. An affected creature must choose either to face the beasts or to curl into a ball for protection. A creature that faces the beasts takes 7d8 psychic damage, and then the spell ends on it. A creature that curls into a ball falls prone and is stunned until the end of your next turn.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 2d8 for each slot level above 5th.", @@ -9448,7 +9448,7 @@ "fields": { "name": "Lacerate", "desc": "You make a swift cutting motion through the air to lacerate a creature you can see within range. The target must make a Constitution saving throw. It takes 4d8 slashing damage on a failed save, or half as much damage on a successful one. If the saving throw fails by 5 or more, the wound erupts with a violent spray of blood, and the target gains one level of exhaustion.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", @@ -9481,7 +9481,7 @@ "fields": { "name": "Lair Sense", "desc": "You set up a magical boundary around your lair. The boundary can’t exceed the dimensions of a 100-foot cube, but within that maximum, you can shape it as you like—to follow the walls of a building or cave, for example. While the spell lasts, you instantly become aware of any Tiny or larger creature that enters the enclosed area. You know the creature’s type but nothing else about it. You are also aware when creatures leave the area.\n\nThis awareness is enough to wake you from sleep, and you receive the knowledge as long as you’re on the same plane of existence as your lair.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, add 50 feet to the maximum dimensions of the cube and add 12 hours to the spell’s duration for each slot level above 2nd.", @@ -9512,7 +9512,7 @@ "fields": { "name": "Last Rays of the Dying Sun", "desc": "A burst of searing heat explodes from you, dealing 6d6 fire damage to all enemies within range. Immediately afterward, a wave of frigid cold rolls across the same area, dealing 6d6 cold damage to enemies. A creature that makes a successful Dexterity saving throw takes half the damage.\n", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 8th or 9th level, the damage from both waves increases by 1d6 for each slot level above 7th.", @@ -9543,7 +9543,7 @@ "fields": { "name": "Lava Stone", "desc": "When you cast **lava stone** on a piece of sling ammo, the stone or bullet becomes intensely hot. As a bonus action, you can launch the heated stone with a sling: the stone increases in size and melts into a glob of lava while in flight. Make a ranged spell attack against the target. If it hits, the target takes 1d8 bludgeoning damage plus 6d6 fire damage. The target takes additional fire damage at the start of each of your next three turns, starting with 4d6, then 2d6, and then 1d6. The additional damage can be avoided if the target or an ally within 5 feet of the target scrapes off the lava. This is done by using an action to make a successful Wisdom (Medicine) check against your spellcasting save DC. The spell ends if the heated sling stone isn’t used immediately.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "", @@ -9576,7 +9576,7 @@ "fields": { "name": "Lay to Rest", "desc": "A pulse of searing light rushes out from you. Each undead creature within 15 feet of you must make a Constitution saving throw. A target takes 8d6 radiant damage on a failed save, or half as much damage on a successful one.\n An undead creature reduced to 0 hit points by this spell disintegrates in a burst of radiant motes, leaving anything it was wearing or carrying in a space it formerly occupied.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "evocation", "higher_level": "", @@ -9609,7 +9609,7 @@ "fields": { "name": "Legend Killer", "desc": "You tap into the life force of a creature that is capable of performing legendary actions. When you cast the spell, the target must make a successful Constitution saving throw or lose the ability to take legendary actions for the spell’s duration. A creature can’t use legendary resistance to automatically succeed on the saving throw against this spell. An affected creature can repeat the saving throw at the end of each of its turns, regaining 1 legendary action on a successful save. The target continues repeating the saving throw until the spell ends or it regains all its legendary actions.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "divination", "higher_level": "", @@ -9640,7 +9640,7 @@ "fields": { "name": "Legion", "desc": "You call down a legion of shadowy soldiers in a 10-foot cube. Their features resemble a mockery of once-living creatures. Whenever a creature starts its turn inside the cube or within 5 feet of it, or enters the cube for the first time on its turn, the conjured shades make an attack using your melee spell attack modifier; on a hit, the target takes 3d8 necrotic damage. The space inside the cube is difficult terrain.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "", @@ -9673,7 +9673,7 @@ "fields": { "name": "Legion of Rabid Squirrels", "desc": "While in a forest, you call a legion of rabid squirrels to descend from the nearby trees at a point you can see within range. The squirrels form into a swarm that uses the statistics of a [swarm of poisonous snakes](https://api.open5e.com/monsters/swarm-of-poisonous-snakes), except it has a climbing speed of 30 feet rather than a swimming speed. The legion of squirrels is friendly to you and your companions. Roll initiative for the legion, which has its own turns. The legion of squirrels obeys your verbal commands (no action required by you). If you don’t issue any commands to the legion, it defends itself from hostile creatures but otherwise takes no actions. If you command it to move farther than 60 feet from you, the spell ends and the legion disperses back into the forest. A canid, such as a dog, wolf, fox, or worg, has disadvantage on attack rolls against targets other than the legion of rabid squirrels while the swarm is within 60 feet of the creature. When the spell ends, the squirrels disperse back into the forest.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the legion’s poison damage increases by 1d6 for each slot level above 3rd.", @@ -9704,7 +9704,7 @@ "fields": { "name": "Lesser Maze", "desc": "This spell functions as [maze](https://api.open5e.com/spells/maze), but the target can resist being sent to the extradimensional prison with a successful Intelligence saving throw. In addition, the maze is easier to navigate, requiring only a DC 12 Intelligence check to escape.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "", @@ -9735,7 +9735,7 @@ "fields": { "name": "Life Drain", "desc": "With a snarled word of Void Speech, you create a swirling vortex of purple energy. Choose a point you can see within range. Creatures within 15 feet of the point take 10d6 necrotic damage, or half that damage with a successful Constitution saving throw. For each creature damaged by the spell, you can choose one other creature within range, including yourself, that is not a construct or undead. The secondary targets regain hit points equal to half the necrotic damage you dealt.\n", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the vortex’s damage increases by 1d6 for each slot level above 6th.", @@ -9766,7 +9766,7 @@ "fields": { "name": "Life from Death", "desc": "Your touch can siphon energy from undead to heal your wounds. Make a melee spell attack against an undead creature within your reach. On a hit, the target takes 2d6 radiant damage, and you or an ally within 30 feet of you regains hit points equal to half the amount of radiant damage dealt. If used on an ally, this effect can restore the ally to no more than half of the ally's hit point maximum. This effect can't heal an undead or a construct. Until the spell ends, you can make the attack again on each of your turns as an action.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", @@ -9799,7 +9799,7 @@ "fields": { "name": "Life Hack", "desc": "Choose up to five creatures that you can see within range. Each of the creatures gains access to a pool of temporary hit points that it can draw upon over the spell’s duration or until the pool is used up. The pool contains 120 temporary hit points. The number of temporary hit points each individual creature can draw is determined by dividing 120 by the number of creatures with access to the pool. Hit points are drawn as a bonus action by the creature gaining the temporary hit points. Any number can be drawn at once, up to the maximum allowed.\n\nA creature can’t draw temporary hit points from the pool while it has temporary hit points from any source, including a previous casting of this spell.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "necromancy", "higher_level": "", @@ -9830,7 +9830,7 @@ "fields": { "name": "Life Sense", "desc": "For the duration, you can sense the location of any creature that isn’t a construct or an undead within 30 feet of you, regardless of impediments to your other senses. This spell doesn’t sense creatures that are dead. A creature trying to hide its life force from you can make a Charisma saving throw. On a success, you can’t sense the creature with this casting of the spell. If you cast the spell again, the creature must make the saving throw again to remain hidden from your senses.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "divination", "higher_level": "", @@ -9861,7 +9861,7 @@ "fields": { "name": "Life Transference Arrow", "desc": "You create a glowing arrow of necrotic magic and command it to strike a creature you can see within range. The arrow can have one of two effects; you choose which at the moment of casting. If you make a successful ranged spell attack, you and the target experience the desired effect. If the attack misses, the spell fails.\n* The arrow deals 2d6 necrotic damage to the target, and you heal the same amount of hit points.\n* You take 2d6 necrotic damage, and the target heals the same amount of hit points.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the spell’s damage and hit points healed increase by 1d6 for each slot level above 1st.", @@ -9892,7 +9892,7 @@ "fields": { "name": "Litany of Sure Hands", "desc": "This spell allows a creature within range to quickly perform a simple task (other than attacking or casting a spell) as a bonus action on its turn. Examples include finding an item in a backpack, drinking a potion, and pulling a rope. Other actions may also fall into this category, depending on the GM's ruling. The target also ignores the loading property of weapons.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -9923,7 +9923,7 @@ "fields": { "name": "Living Shadows", "desc": "You whisper sibilant words of void speech that cause shadows to writhe with unholy life. Choose a point you can see within range. Writhing shadows spread out in a 15-foot-radius sphere centered on that point, grasping at creatures in the area. A creature that starts its turn in the area or that enters the area for the first time on its turn must make a successful Strength saving throw or be restrained by the shadows. A creature that starts its turn restrained by the shadows must make a successful Constitution saving throw or gain one level of exhaustion.\n\nA restrained creature can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "enchantment", "higher_level": "", @@ -9954,7 +9954,7 @@ "fields": { "name": "Lock Armor", "desc": "You target a piece of metal equipment or a metal construct. If the target is a creature wearing metal armor or is a construct, it makes a Wisdom saving throw to negate the effect. On a failed save, the spell causes metal to cling to metal, making it impossible to move pieces against each other. This effectively paralyzes a creature that is made of metal or that is wearing metal armor with moving pieces; for example, scale mail would lock up because the scales must slide across each other, but a breastplate would be unaffected. Limited movement might still be possible, depending on how extensive the armor is, and speech is usually not affected. Metal constructs are paralyzed. An affected creature or construct can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A grease spell dispels lock armor on everything in its area.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", @@ -9985,7 +9985,7 @@ "fields": { "name": "Looping Trail", "desc": "You touch a trail no more than 1 mile in length, reconfiguring it to give it switchbacks and curves that make the trail loop back on itself. For the duration, the trail makes subtle changes in its configuration and in the surrounding environment to give the impression of forward progression along a continuous path. A creature on the trail must succeed on a Wisdom (Survival) check to notice that the trail is leading it in a closed loop.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "", @@ -10016,7 +10016,7 @@ "fields": { "name": "Lovesick", "desc": "This spell causes creatures to behave unpredictably, as they randomly experience the full gamut of emotions of someone who has fallen head over heels in love. Each creature in a 10-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\n\nAn affected target can’t take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|-|-|\n| 1-3 | The creature spends its turn moping like a lovelorn teenager; it doesn’t move or take actions. |\n| 4–5 | The creature bursts into tears, takes the Dash action, and uses all its movement to run off in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. |\n| 6 | The creature uses its action to remove one item of clothing or piece of armor. Each round spent removing pieces of armor reduces its AC by 1. |\n| 7–8 | The creature drops anything it is holding in its hands and passionately embraces a randomly determined creature. Treat this as a grapple attempt which uses the Attack action. |\n| 9 | The creature flies into a jealous rage and uses its action to make a melee attack against a randomly determined creature. |\n| 10 | The creature can act and move normally. |\n\nAt the end of each of its turns, an affected target can make a Wisdom saving throw, ending the effect on itself on a successful save.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", @@ -10047,7 +10047,7 @@ "fields": { "name": "Maddening Whispers", "desc": "You whisper a string of Void Speech toward a target within range that can hear you. The target must succeed on a Charisma saving throw or be incapacitated. While incapacitated by this spell, the target’s speed is 0, and it can’t benefit from increases to its speed. To maintain the effect for the duration, you must use your action on subsequent turns to continue whispering; otherwise, the spell ends. The spell also ends if the target takes damage.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "enchantment", "higher_level": "", @@ -10078,7 +10078,7 @@ "fields": { "name": "Maim", "desc": "Your hands become claws bathed in necrotic energy. Make a melee spell attack against a creature you can reach. On a hit, the target takes 4d6 necrotic damage and a section of its body of your choosing withers:\n ***Upper Limb.*** The target has disadvantage on Strength checks, and, if it has the Multiattack action, it has disadvantage on its first attack roll each round.\n ***Lower Limb.*** The target's speed is reduced by 10 feet, and it has disadvantage on Dexterity checks.\n ***Body.*** Choose one damage type: bludgeoning, piercing, or slashing. The target loses its resistance to that damage type. If the target doesn't have resistance to the chosen damage type, it is vulnerable to that damage type instead.\n The effect is permanent until removed by *remove curse*, *greater restoration*, or similar magic.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "necromancy", "higher_level": "", @@ -10111,7 +10111,7 @@ "fields": { "name": "Malevolent Waves", "desc": "You create an invisible miasma that fills the area within 30 feet of you. All your allies have advantage on Dexterity (Stealth) checks they make within 30 feet of you, and all your enemies are poisoned while within that radius.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "abjuration", "higher_level": "", @@ -10142,7 +10142,7 @@ "fields": { "name": "Mammon’s Due", "desc": "You summon a cylindrical sinkhole filled with burning ash and grasping arms made of molten metal at a point on the ground you can see within range. The sinkhole is 20 feet deep and 50 feet in diameter, and is difficult terrain. A creature that’s in the area when the spell is cast, or that begins its turn in the area or enters it during its turn, takes 10d6 fire damage and must make a Strength or Dexterity (creature’s choice) saving throw. On a failed save, the creature is restrained by the molten arms, which try to drag it below the surface of the ash.\n\nA creature that’s restrained by the arms at the start of your turn must make a successful Strength saving throw or be pulled 5 feet farther down into the ash. A creature pulled below the surface is blinded, deafened, and can’t breathe. To escape, a creature must use an action to make a successful Strength or Dexterity check against your spell save DC. On a successful check, the creature is no longer restrained and can move through the difficult terrain of the ash pit. It doesn’t need to make a Strength or Dexterity saving throw this turn to not be grabbed by the arms again, but it must make the saving throw as normal if it’s still in the ash pit at the start of its next turn.\n\nThe diameter of the ash pit increases by 10 feet at the start of each of your turns for the duration of the spell. The ash pit remains after the spell ends, but the grasping arms disappear and restrained creatures are freed automatically. As the ash slowly cools, it deals 1d6 less fire damage for each hour that passes after the spell ends.", - "document": "deep-magic", + "document": "deepm", "level": 9, "school": "conjuration", "higher_level": "", @@ -10175,7 +10175,7 @@ "fields": { "name": "Mark Prey", "desc": "You choose a creature you can see within range as your prey. Until the spell ends, you have advantage on Wisdom (Perception) and Wisdom (Survival) checks to find or track your prey. In addition, the target is outlined in light that only you can see. Any attack roll you make against your prey has advantage if you can see it, and your prey can't benefit from being invisible against you. If the target drops to 0 hit points before this spell ends, you can use a bonus action on a subsequent turn to mark a new target as your prey.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "When you cast this spell using a spell slot of 4th level, you can maintain your concentration on the spell for up to 8 hours. When you use a spell slot of 5th level or higher, you can maintain your concentration on the spell for up to 24 hours.", @@ -10206,7 +10206,7 @@ "fields": { "name": "Mass Hobble Mount", "desc": "When you cast **mass hobble mount**, you make separate ranged spell attacks against up to six horses, wolves, or other four-legged or two-legged beasts being ridden as mounts within 60 feet of you. The targets can be different types of beasts and can have different numbers of legs. Each beast hit by your spell is disabled so that it can’t move at its normal speed without incurring injury. An affected creature that moves more than half its base speed in a turn takes 4d6 bludgeoning damage.\n\nThis spell has no effect on a creature that your GM deems to not be a mount.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", @@ -10239,7 +10239,7 @@ "fields": { "name": "Mass Surge Dampener", "desc": "Using your strength of will, you protect up to three creatures other than yourself from the effect of a chaos magic surge. A protected creature can make a DC 13 Charisma saving throw to negate the effect of a chaos magic surge that does not normally allow a saving throw, or it gains advantage on a saving throw that is normally allowed. Once a protected creature makes a successful saving throw allowed by **mass surge dampener**, the spell’s effect ends for that creature.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "abjuration", "higher_level": "", @@ -10270,7 +10270,7 @@ "fields": { "name": "Maw of Needles", "desc": "A spiny array of needle-like fangs protrudes from your gums, giving you a spiny bite. For the duration, you can use your action to make a melee spell attack with the bite. On a hit, the target takes 2d6 piercing damage and must succeed on a Dexterity saving throw or some of the spines in your mouth break off, sticking in the target. Until this spell ends, the target must succeed on a Constitution saving throw at the start of each of its turns or take 1d6 piercing damage from the spines. If you hit a target that has your spines stuck in it, your attack deals extra damage equal to your spellcasting ability modifier, and more spines don’t break off in the target. Your spines can stick in only one target at a time. If your spines stick into another target, the spines on the previous target crumble to dust, ending the effect on that target.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage of the spiny bite and the spines increases by 1d6 for every two slot levels above 1st.", @@ -10303,7 +10303,7 @@ "fields": { "name": "Memento Mori", "desc": "You transform yourself into a horrifying vision of death, rotted and crawling with maggots, exuding the stench of the grave. Each creature that can see you must succeed on a Charisma saving throw or be stunned until the end of your next turn.\n\nA creature that succeeds on the saving throw is immune to further castings of this spell for 24 hours.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "necromancy", "higher_level": "", @@ -10334,7 +10334,7 @@ "fields": { "name": "Mephitic Croak", "desc": "You release an intensely loud burp of acidic gas in a 15-foot cone. Creatures in the area take 2d6 acid damage plus 2d6 thunder damage, or half as much damage with a successful Dexterity saving throw. A creature whose Dexterity saving throw fails must also make a successful Constitution saving throw or be stunned and poisoned until the start of your next turn.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, both acid and thunder damage increase by 1d6 for each slot level above 2nd.", @@ -10365,7 +10365,7 @@ "fields": { "name": "Mind Exchange", "desc": "One humanoid of your choice that you can see within range must make a Charisma saving throw. On a failed save, you project your mind into the body of the target. You use the target’s statistics but don’t gain access to its knowledge, class features, or proficiencies, retaining your own instead. Meanwhile, the target’s mind is shunted into your body, where it uses your statistics but likewise retains its own knowledge, class features, and proficiencies.\n\nThe exchange lasts until either of the the two bodies drops to 0 hit points, until you end it as a bonus action, or until you are forced out of the target body by an effect such as a [dispel magic](https://api.open5e.com/spells/dispel-magic) or [dispel evil and good](https://api.open5e.com/spells/dispel-evil-and-good) spell (the latter spell defeats **mind exchange** even though possession by a humanoid isn’t usually affected by that spell). When the effect of this spell ends, both switched minds return to their original bodies. The target of the spell is immune to mind exchange for 24 hours after succeeding on the saving throw or after the exchange ends.\n\nThe effects of the exchange can be made permanent with a [wish](https://api.open5e.com/spells/wish) spell or comparable magic.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "", @@ -10396,7 +10396,7 @@ "fields": { "name": "Mire", "desc": "When you cast mire, you create a 10-foot-diameter pit of quicksand, sticky mud, or a similar dangerous natural hazard suited to the region. A creature that’s in the area when the spell is cast or that enters the affected area must make a successful Strength saving throw or sink up to its waist and be restrained by the mire. From that point on, the mire acts as quicksand, but the DC for Strength checks to escape from the quicksand is equal to your spell save DC. A creature outside the mire trying to pull another creature free receives a +5 bonus on its Strength check.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "", @@ -10427,7 +10427,7 @@ "fields": { "name": "Misstep", "desc": "You gesture to a creature within range that you can see. If the target fails a Wisdom saving throw, it uses its reaction to move 5 feet in a direction you dictate. This movement does not provoke opportunity attacks. The spell automatically fails if you direct the target into a dangerous area such as a pit trap, a bonfire, or off the edge of a cliff, or if the target has already used its reaction.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "enchantment", "higher_level": "", @@ -10458,7 +10458,7 @@ "fields": { "name": "Mist of Wonders", "desc": "A colorful mist surrounds you out to a radius of 30 feet. Creatures inside the mist see odd shapes in it and hear random sounds that don’t make sense. The very concepts of order and logic don’t seem to exist inside the mist.\n\nAny 1st-level spell that’s cast in the mist by another caster or that travels through the mist is affected by its strange nature. The caster must make a Constitution saving throw when casting the spell. On a failed save, the spell transforms into another 1st-level spell the caster knows (chosen by the GM from those available), even if that spell is not currently prepared. The altered spell’s slot level or its original target or targeted area can’t be changed. Cantrips are unaffected. If (in the GM’s judgment) none of the caster’s spells known of that level can be transformed, the spell being cast simply fails.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, it affects any spell cast using a spell slot of any lower level. For instance, using a 6th-level slot enables you to transform a spell of 5th level or lower into another spell of the same level.", @@ -10489,7 +10489,7 @@ "fields": { "name": "Monstrous Empathy", "desc": "This spell lets you forge a connection with a monstrosity. Choose a monstrosity that you can see within range. It must see and hear you. If the monstrosity’s Intelligence is 4 or higher, the spell fails. Otherwise, the monstrosity must succeed on a Wisdom saving throw or be charmed by you for the spell’s duration. If you or one of your companions harms the target, the spell ends.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional monstrosity for each slot level above 3rd.", @@ -10520,7 +10520,7 @@ "fields": { "name": "Moon Trap", "desc": "While casting this spell under the light of the moon, you inscribe a glyph that covers a 10-foot-square area on a flat, stationary surface such as a floor or a wall. Once the spell is complete, the glyph is invisible in moonlight but glows with a faint white light in darkness.\n\nAny creature that touches the glyph, except those you designate during the casting of the spell, must make a successful Wisdom saving throw or be drawn into an inescapable maze until the sun rises.\n\nThe glyph lasts until the next sunrise, at which time it flares with bright light, and any creature trapped inside returns to the space it last occupied, unharmed. If that space has become occupied or dangerous, the creature appears in the nearest safe unoccupied space.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "abjuration", "higher_level": "", @@ -10551,7 +10551,7 @@ "fields": { "name": "Mosquito Bane", "desc": "This spell kills any insects or swarms of insects within range that have a total of 25 hit points or fewer.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the number of hit points affected increases by 15 for each slot level above 1st. Thus, a 2nd-level spell kills insects or swarms that have up to 40 hit points, a 3rd-level spell kills those with 55 hit points or fewer, and so forth, up to a maximum of 85 hit points for a slot of 6th level or higher.", @@ -10582,7 +10582,7 @@ "fields": { "name": "Mud Pack", "desc": "This spell covers you or a willing creature you touch in mud consistent with the surrounding terrain. For the duration, the spell protects the target from extreme cold and heat, allowing the target to automatically succeed on Constitution saving throws against environmental hazards related to temperature. In addition, the target has advantage on Dexterity (Stealth) checks while traveling at a slow pace in the terrain related to the component for this spell.\n\nIf the target is subject to heavy precipitation for 1 minute, the precipitation removes the mud, ending the spell.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is 8 hours and you can target up to ten willing creatures within 30 feet of you.", @@ -10613,7 +10613,7 @@ "fields": { "name": "Negative Image", "desc": "You create a shadow-tunnel between your location and one other creature you can see within range. You and that creature instantly swap positions. If the target creature is unwilling to exchange places with you, it can resist the effect by making a Charisma saving throw. On a successful save, the spell has no effect.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "", @@ -10644,7 +10644,7 @@ "fields": { "name": "Nether Weapon", "desc": "You whisper in Void Speech and touch a weapon. Until the spell ends, the weapon turns black, becomes magical if it wasn’t before, and deals 2d6 necrotic damage (in addition to its normal damage) on a successful hit. A creature that takes necrotic damage from the enchanted weapon can’t regain hit points until the start of your next turn.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", @@ -10675,7 +10675,7 @@ "fields": { "name": "Night Terrors", "desc": "You amplify the fear that lurks in the heart of all creatures. Select a target point you can see within the spell’s range. Every creature within 20 feet of that point becomes frightened until the start of your next turn and must make a successful Wisdom saving throw or become paralyzed. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Creatures immune to being frightened are not affected by **night terrors**.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "illusion", "higher_level": "", @@ -10706,7 +10706,7 @@ "fields": { "name": "Nightfall", "desc": "You call upon night to arrive ahead of schedule. With a sharp word, you create a 30-foot-radius cylinder of night centered on a point on the ground within range. The cylinder extends vertically for 100 feet or until it reaches an obstruction, such as a ceiling. The area inside the cylinder is normal darkness, and thus heavily obscured. Creatures inside the darkened cylinder can see illuminated areas outside the cylinder normally.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "evocation", "higher_level": "", @@ -10737,7 +10737,7 @@ "fields": { "name": "Nip at the Heels", "desc": "You create an illusory pack of wild dogs that bark and nip at one creature you can see within range, which must make a Wisdom saving throw. On a failed save, the target has disadvantage on ability checks and attack rolls for the duration as it is distracted by the dogs. At the end of each of its turns, the target can make a Wisdom saving throw, ending the effect on itself on a successful save. A target that is at least 10 feet off the ground (in a tree, flying, and so forth) has advantage on the saving throw, staying just out of reach of the jumping and barking dogs.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", @@ -10768,7 +10768,7 @@ "fields": { "name": "Not Dead Yet", "desc": "You cast this spell while touching the cloth doll against the intact corpse of a Medium or smaller humanoid that died within the last hour. At the end of the casting, the body reanimates as an undead creature under your control. While the spell lasts, your consciousness resides in the animated body. You can use an action to manipulate the body’s limbs in order to make it move, and you can see and hear through the body’s eyes and ears, but your own body becomes unconscious. The animated body can neither attack nor defend itself. This spell doesn’t change the appearance of the corpse, so further measures might be needed if the body is to be used in a way that involves fooling observers into believing it’s still alive. The spell ends instantly, and your consciousness returns to your body, if either your real body or the animated body takes any damage.\n\nYou can’t use any of the target’s abilities except for nonmagical movement and darkvision. You don’t have access to its knowledge, proficiencies, or anything else that was held in its now dead mind, and you can’t make it speak.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "necromancy", "higher_level": "", @@ -10799,7 +10799,7 @@ "fields": { "name": "Not This Day!", "desc": "The creature you touch gains protection against either a specific damage type (slashing, poison, fire, radiant, and the like) or a category of creature (giant, beast, elemental, monstrosity, and so forth) that you name when the spell is cast. For the next 24 hours, the target has advantage on saving throws involving that type of damage or kind of creature, including death saving throws if the attack that dropped the target to 0 hit points is affected by this spell. A character can be under the effect of only a single **not this day!** spell at one time; a second casting on the same target cancels the preexisting protection.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "abjuration", "higher_level": "", @@ -10830,7 +10830,7 @@ "fields": { "name": "Orb of Light", "desc": "An orb of light the size of your hand shoots from your fingertips toward a creature within range, which takes 3d8 radiant damage and is blinded for 1 round. A target that makes a successful Dexterity saving throw takes half the damage and is not blinded.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", @@ -10863,7 +10863,7 @@ "fields": { "name": "Outflanking Boon", "desc": "This spell targets one enemy, which must make a Wisdom saving throw. On a failed save, an illusory ally of yours appears in a space from which it threatens to make a melee attack against the target. Your allies gain advantage on melee attacks against the target for the duration because of the distracting effect of the illusion. An affected target repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the spell targets one additional enemy for each slot level above 3rd.", @@ -10894,7 +10894,7 @@ "fields": { "name": "Paragon of Chaos", "desc": "You become a humanoid-shaped swirling mass of color and sound. You gain resistance to bludgeoning, piercing, and slashing damage, and immunity to poison and psychic damage. You are also immune to the following conditions: exhaustion, paralyzed, petrified, poisoned, and unconscious. Finally, you gain truesight to 30 feet and can teleport 30 feet as a move.\n\nEach round, as a bonus action, you can cause an automatic chaos magic surge, choosing either yourself or another creature you can see within 60 feet as the caster for the purpose of resolving the effect. You must choose the target before rolling percentile dice to determine the nature of the surge. The DC of any required saving throw is calculated as if you were the caster.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "transmutation", "higher_level": "", @@ -10925,7 +10925,7 @@ "fields": { "name": "Pendulum", "desc": "You give the touched creature an aspect of regularity in its motions and fortunes. If the target gets a failure on a Wisdom saving throw, then for the duration of the spell it doesn’t make d20 rolls—to determine the results of attack rolls, ability checks, and saving throws it instead follows the sequence 20, 1, 19, 2, 18, 3, 17, 4, and so on.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "enchantment", "higher_level": "", @@ -10956,7 +10956,7 @@ "fields": { "name": "Phantom Dragon", "desc": "You tap your dragon magic to make an ally appear as a draconic beast. The target of the spell appears to be a dragon of size Large or smaller. When seeing this illusion, observers make a Wisdom saving throw to see through it.\n\nYou can use an action to make the illusory dragon seem ferocious. Choose one creature within 30 feet of the illusory dragon to make a Wisdom saving throw. If it fails, the creature is frightened. The creature remains frightened until it uses an action to make a successful Wisdom saving throw or the spell’s duration expires.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, increase the number of targets the illusion can affect by one for each slot level above 3rd.", @@ -10987,7 +10987,7 @@ "fields": { "name": "Pitfall", "desc": "A pit opens under a Huge or smaller creature you can see within range that does not have a flying speed. This pit isn’t a simple hole in the floor or ground, but a passage to an extradimensional space. The target must succeed on a Dexterity saving throw or fall into the pit, which closes over it. At the end of your next turn, a new portal opens 20 feet above where the pit was located, and the creature falls out. It lands prone and takes 6d6 bludgeoning damage.\n\nIf the original target makes a successful saving throw, you can use a bonus action on your turn to reopen the pit in any location within range that you can see. The spell ends when a creature has fallen through the pit and taken damage, or when the duration expires.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "", @@ -11020,7 +11020,7 @@ "fields": { "name": "Poisoned Volley", "desc": "By drawing back and releasing an imaginary bowstring, you summon forth dozens of glowing green arrows. The arrows dissipate when they hit, but all creatures in a 20-foot square within range take 3d8 poison damage and become poisoned. A creature that makes a successful Constitution saving throw takes half as much damage and is not poisoned.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", @@ -11051,7 +11051,7 @@ "fields": { "name": "Potency of the Pack", "desc": "You bestow lupine traits on a group of living creatures that you designate within range. Choose one of the following benefits to be gained by all targets for the duration:\n\n* ***Thick Fur.*** Each target sprouts fur over its entire body, giving it a +2 bonus to Armor Class.\n* ***Keen Hearing and Smell.*** Each target has advantage on Wisdom (Perception) checks that rely on hearing or smell.\n* ***Pack Tactics.*** Each affected creature has advantage on an attack roll against a target if at least one of the attacker’s allies (also under the effect of this spell) is within 5 feet of the target of the attack and the ally isn’t incapacitated.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 minute for each slot level above 3rd.", @@ -11082,7 +11082,7 @@ "fields": { "name": "Power Word Kneel", "desc": "When you shout this word of power, creatures within 20 feet of a point you specify are compelled to kneel down facing you. A kneeling creature is treated as prone. Up to 55 hit points of creatures are affected, beginning with those that have the fewest hit points. A kneeling creature makes a Wisdom saving throw at the end of its turn, ending the effect on itself on a successful save. The effect ends immediately on any creature that takes damage while kneeling.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "enchantment", "higher_level": "", @@ -11113,7 +11113,7 @@ "fields": { "name": "Power Word Pain", "desc": "When you utter this word of power, one creature within 60 feet of you takes 4d10 force damage. At the start of each of its turns, the creature must make a successful Constitution saving throw or take an extra 4d10 force damage. The effect ends on a successful save.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "enchantment", "higher_level": "", @@ -11146,7 +11146,7 @@ "fields": { "name": "Primal Infusion", "desc": "You channel the fury of nature, drawing on its power. Until the spell ends, you gain the following benefits:\n* You gain 30 temporary hit points. If any of these remain when the spell ends, they are lost.\n* You have advantage on attack rolls when one of your allies is within 5 feet of the target and the ally isn’t incapacitated.\n* Your weapon attacks deal an extra 1d10 damage of the same type dealt by the weapon on a hit.\n* You gain a +2 bonus to AC.\n* You have proficiency on Constitution saving throws.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "transmutation", "higher_level": "", @@ -11177,7 +11177,7 @@ "fields": { "name": "Prismatic Ray", "desc": "A ray of shifting color springs from your hand. Make a ranged spell attack against a single creature you can see within range. The ray’s effect and the saving throw that applies to it depend on which color is dominant when the beam strikes its target, determined by rolling a d8.\n\n| d8 | Color | Effect | Saving Throw |\n|-|-|-|-|\n| 1 | Red | 8d10 fire damage | Dexterity |\n| 2 | Orange | 8d10 acid damage | Dexterity |\n| 3 | Yellow | 8d10 lightning damage | Dexterity |\n| 4 | Green | Target Poisoned | Constitution |\n| 5 | Blue | Target Deafened | Constitution |\n| 6 | Indigo | Target Frightened | Wisdom |\n| 7 | Violet | Target Stunned | Constitution |\n| 8 | Shifting Ray | Target Blinded | Constitution |\n\nA target takes half as much damage on a successful Dexterity saving throw. A successful Constitution or Wisdom saving throw negates the effect of a ray that inflicts a condition on the target; on a failed save, the target is affected for 5 rounds or until the effect is negated. If the result of your attack roll is a critical hit, you can choose the color of the beam that hits the target, but the attack does not deal additional damage.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "evocation", "higher_level": "", @@ -11208,7 +11208,7 @@ "fields": { "name": "Protection from the Void", "desc": "Until the spell ends, one willing creature you touch has resistance to necrotic and psychic damage and has advantage on saving throws against Void spells.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "abjuration", "higher_level": "", @@ -11239,7 +11239,7 @@ "fields": { "name": "Protective Ice", "desc": "When you cast **protective ice**, you encase a willing target in icy, medium armor equivalent to a breastplate (AC 14). A creature without the appropriate armor proficiency has the usual penalties. If the target is already wearing armor, it only uses the better of the two armor classes.\n\nA creature striking a target encased in **protective ice** with a melee attack while within 5 feet of it takes 1d6 cold damage.\n\nIf the armor’s wearer takes fire damage, an equal amount of damage is done to the armor, which has 30 hit points and is damaged only when its wearer takes fire damage. Damaged ice can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis, but the armor can’t have more than 30 points repaired.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "abjuration", "higher_level": "When you cast this spell using a 4th-level spell slot, it creates splint armor (AC 17, 40 hit points). If you cast this spell using a 5th-level spell slot, it creates plate armor (AC 18, 50 hit points). The armor’s hit points increase by 10 for each spell slot above 5th, but the AC remains 18. Additionally, if you cast this spell using a spell slot of 4th level or higher, the armor deals an extra +2 cold damage for each spell slot above 3rd.", @@ -11272,7 +11272,7 @@ "fields": { "name": "Puff of Smoke", "desc": "By harnessing the elemental power of fire, you warp nearby air into obscuring smoke. One creature you can see within range must make a Dexterity saving throw. If it fails, the creature is blinded until the start of your next turn. **Puff of smoke** has no effect on creatures that have tremorsense or blindsight.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "", @@ -11303,7 +11303,7 @@ "fields": { "name": "Pummelstone", "desc": "You cause a fist-sized chunk of stone to appear and hurl itself against the spell’s target. Make a ranged spell attack. On a hit, the target takes 1d6 bludgeoning damage and must roll a d4 when it makes an attack roll or ability check during its next turn, subtracting the result of the d4 from the attack or check roll.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "conjuration", "higher_level": "The spell’s damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", @@ -11336,7 +11336,7 @@ "fields": { "name": "Pyroclasm", "desc": "You point toward an area of ground or a similar surface within range. A geyser of lava erupts from the chosen spot. The geyser is 5 feet in diameter and 40 feet high. Each creature in the cylinder when it erupts or at the start of your turn takes 10d8 fire damage, or half as much damage if it makes a successful Dexterity saving throw.\n\nThe geyser also forms a pool of lava at its base. Initially, the pool is the same size as the geyser, but at the start of each of your turns for the duration, the pool’s radius increases by 5 feet. A creature in the pool of lava (but not in the geyser) at the start of your turn takes 5d8 fire damage.\n\nWhen a creature leaves the pool of lava, its speed is reduced by half and it has disadvantage on Dexterity saving throws, caused by a hardening layer of lava. These penalties last until the creature uses an action to break the hardened stone away from itself.\n\nIf you maintain concentration on **pyroclasm** for a full minute, the lava geyser and pool harden into permanent, nonmagical stone. A creature in either area when the stone hardens is restrained until the stone is broken away.", - "document": "deep-magic", + "document": "deepm", "level": 9, "school": "evocation", "higher_level": "", @@ -11369,7 +11369,7 @@ "fields": { "name": "Quick Time", "desc": "You make one living creature or plant within range move rapidly in time compared to you. The target becomes one year older. For example, you could cast this spell on a seedling, which causes the plant to sprout from the soil, or you could cast this spell on a newly hatched duckling, causing it to become a full-grown duck. If the target is a creature with an Intelligence of 3 or higher, it must succeed on a Constitution saving throw to resist the aging. It can choose to fail the saving throw.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you increase the target’s age by one additional year for each slot level above 4th.", @@ -11400,7 +11400,7 @@ "fields": { "name": "Quicken", "desc": "You touch one willing creature. Once before the duration of the spell expires, the target can roll a d4 and add the number rolled to an initiative roll or Dexterity saving throw it has just made. The spell then ends.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "transmutation", "higher_level": "", @@ -11431,7 +11431,7 @@ "fields": { "name": "Quicksilver Mantle", "desc": "You transform an ordinary cloak into a highly reflective, silvery garment. This mantle increases your AC by 2 and grants advantage on saving throws against gaze attacks. In addition, whenever you are struck by a ray such as a [ray of enfeeblement](https://api.open5e.com/spells/ray-of-enfeeblement), [scorching ray](https://api.open5e.com/spells/scorching-ray), or even [disintegrate](https://api.open5e.com/spells/disintegrate), roll 1d4. On a result of 4, the cloak deflects the ray, which instead strikes a randomly selected target within 10 feet of you. The cloak deflects only the first ray that strikes it each round; rays after the first affect you as normal.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "", @@ -11462,7 +11462,7 @@ "fields": { "name": "Quintessence", "desc": "By calling upon an archangel, you become infused with celestial essence and take on angelic features such as golden skin, glowing eyes, and ethereal wings. For the duration of the spell, your Armor Class can’t be lower than 20, you can’t be frightened, and you are immune to necrotic damage.\n\nIn addition, each hostile creature that starts its turn within 120 feet of you or enters that area for the first time on a turn must succeed on a Wisdom saving throw or be frightened for 1 minute. A creature frightened in this way is restrained. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature’s saving throw is successful or if the effect ends for it, the creature is immune to the frightening effect of the spell until you cast **quintessence** again.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "transmutation", "higher_level": "", @@ -11493,7 +11493,7 @@ "fields": { "name": "Raid the Lair", "desc": "You create an invisible circle of protective energy centered on yourself with a radius of 10 feet. This field moves with you. The caster and all allies within the energy field are protected against dragons’ lair actions.\n* Attack rolls resulting directly from lair actions are made with disadvantage.\n* Saving throws resulting directly from lair actions are made with advantage, and damage done by these lair actions is halved.\n* Lair actions occur on an initiative count 10 lower than normal.\n\nThe caster has advantage on Constitution saving throws to maintain concentration on this spell.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "abjuration", "higher_level": "", @@ -11524,7 +11524,7 @@ "fields": { "name": "Rain of Blades", "desc": "You call down a rain of swords, spears, and axes. The blades fill 150 square feet (six 5-foot squares, a circle 15 feet in diameter, or any other pattern you want as long as it forms one contiguous space at least 5 feet wide in all places. The blades deal 6d6 slashing damage to each creature in the area at the moment the spell is cast, or half as much damage on a successful Dexterity saving throw. An intelligent undead injured by the blades is frightened for 1d4 rounds if it fails a Charisma saving throw. Most of the blades break or are driven into the ground on impact, but enough survive intact that any single piercing or slashing melee weapon can be salvaged from the affected area and used normally if it is claimed before the spell ends. When the duration expires, all the blades (including the one that was salvaged) disappear.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, an unbroken blade can be picked up and used as a magical +1 weapon until it disappears.", @@ -11555,7 +11555,7 @@ "fields": { "name": "Ray of Alchemical Negation", "desc": "You launch a ray of blazing, polychromatic energy from your fingertips. Make a ranged spell attack against an alchemical item or a trap that uses alchemy to achieve its ends, such as a trap that sprays acid, releases poisonous gas, or triggers an explosion of alchemist’s fire. A hit destroys the alchemical reagents, rendering them harmless. The attack is made against the most suitable object Armor Class.\n\nThis spell can also be used against a creature within range that is wholly or partially composed of acidic, poisonous, or alchemical components, such as an alchemical golem or an ochre jelly. In that case, a hit deals 6d6 force damage, and the target must make a successful Constitution saving throw or it deals only half as much damage with its acidic, poisonous, or alchemical attacks for 1 minute. A creature whose damage is halved can repeat the saving throw at the end of each of its turns, ending the effect on a success.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "", @@ -11586,7 +11586,7 @@ "fields": { "name": "Ray of Life Suppression", "desc": "You launch a swirling ray of disruptive energy at a creature within range. Make a ranged spell attack. On a hit, the creature takes 6d8 necrotic damage and its maximum hit points are reduced by an equal amount. This reduction lasts until the creature finishes a short or long rest, or until it receives the benefit of a [greater restoration](https://api.open5e.com/spells/greater-restoration) spell or comparable magic.\n\nThis spell has no effect on constructs or undead.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "necromancy", "higher_level": "", @@ -11619,7 +11619,7 @@ "fields": { "name": "Reaver Spirit", "desc": "You inspire allies to fight with the savagery of berserkers. You and any allies you can see within range have advantage on Strength checks and Strength saving throws; resistance to bludgeoning, piercing, and slashing damage from nonmagical attacks; and a +2 bonus to damage with melee weapons.\n\nWhen the spell ends, each affected creature must succeed on a Constitution saving throw or gain 1d4 levels of exhaustion.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bonus to damage increases by 1 for each slot level above 2nd.", @@ -11650,7 +11650,7 @@ "fields": { "name": "Reposition", "desc": "You designate up to three friendly creatures (one of which can be yourself) within range. Each target teleports to an unoccupied space of its choosing that it can see within 30 feet of itself.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the spell targets one additional friendly creature for each slot level above 4th.", @@ -11681,7 +11681,7 @@ "fields": { "name": "Reset", "desc": "Choose up to four creatures within range. If a target is your ally, it can reroll initiative, keeping whichever of the two results it prefers. If a target is your enemy, it must make a successful Wisdom saving throw or reroll initiative, keeping whichever of the two results you prefer. Changes to the initiative order go into effect at the start of the next round.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can affect one additional creature for each slot level above 4th.", @@ -11712,7 +11712,7 @@ "fields": { "name": "Reverberate", "desc": "You touch the ground at your feet with the metal ring, creating an impact that shakes the earth ahead of you. Creatures and unattended objects touching the ground in a 15-foot cone emanating from you take 4d6 thunder damage, and creatures fall prone; a creature that makes a successful Dexterity saving throw takes half the damage and does not fall prone.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", @@ -11743,7 +11743,7 @@ "fields": { "name": "Revive Beast", "desc": "You touch a beast that has died within the last minute. That beast returns to life with 1 hit point. This spell can’t return to life a beast that has died of old age, nor can it restore any missing body parts.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "necromancy", "higher_level": "", @@ -11774,7 +11774,7 @@ "fields": { "name": "Right the Stars", "desc": "You subtly warp the flow of space and time to enhance your conjurations with cosmic potency. Until the spell ends, the maximum duration of any conjuration spell you cast that requires concentration is doubled, any creature that you summon or create with a conjuration spell has 30 temporary hit points, and you have advantage on Charisma checks and Charisma saving throws.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "divination", "higher_level": "", @@ -11805,7 +11805,7 @@ "fields": { "name": "Ring Strike", "desc": "You infuse two metal rings with magic, causing them to revolve in a slow orbit around your head or hand. For the duration, when you hit a target within 60 feet of you with an attack, you can launch one of the rings to strike the target as well. The target takes 1d10 bludgeoning damage and must succeed on a Strength saving throw or be pushed 5 feet directly away from you. The ring is destroyed when it strikes.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect up to two additional rings for each spell slot level above 1st.", @@ -11838,7 +11838,7 @@ "fields": { "name": "Ring Ward", "desc": "The iron ring you use to cast the spell becomes a faintly shimmering circlet of energy that spins slowly around you at a radius of 15 feet. For the duration, you and your allies inside the protected area have advantage on saving throws against spells, and all affected creatures gain resistance to one type of damage of your choice.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "abjuration", "higher_level": "", @@ -11869,7 +11869,7 @@ "fields": { "name": "Riptide", "desc": "With a sweeping gesture, you cause water to swell up into a 20-foot tall, 20-foot radius cylinder centered on a point on the ground that you can see. Each creature in the cylinder must make a Strength saving throw. On a failed save, the creature is restrained and suspended in the cylinder; on a successful save, the creature moves to just outside the nearest edge of the cylinder.\n\nAt the start of your next turn, you can direct the current of the swell as it dissipates. Choose one of the following options.\n\n* ***Riptide.*** The water in the cylinder flows in a direction you choose, sweeping along each creature in the cylinder. An affected creature takes 3d8 bludgeoning damage and is pushed 40 feet in the chosen direction, landing prone.\n* ***Undertow.*** The water rushes downward, pulling each creature in the cylinder into an unoccupied space at the center. Each creature is knocked prone and must make a successful Constitution saving throw or be stunned until the start of your next turn.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "", @@ -11902,7 +11902,7 @@ "fields": { "name": "Rolling Thunder", "desc": "A tremendous bell note explodes from your outstretched hand and rolls forward in a line 30 feet long and 5 feet wide. Each creature in the line must make a successful Constitution saving throw or be deafened for 1 minute. A creature made of material such as stone, crystal, or metal has disadvantage on its saving throw against this spell.\n\nWhile a creature is deafened in this way, it is wreathed in thundering energy; it takes 2d8 thunder damage at the start of its turn, and its speed is halved. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", @@ -11935,7 +11935,7 @@ "fields": { "name": "Rotting Corpse", "desc": "Your familiarity with the foul effects of death allows you to prevent a dead body from being returned to life using anything but the most powerful forms of magic.\n\nYou cast this spell by touching a creature that died within the last 24 hours. The body immediately decomposes to a state that prevents the body from being returned to life by the [raise dead](https://api.open5e.com/spells/raise-dead) spell (though a [resurrection](https://api.open5e.com/spells/resurrection) spell still works). At the end of this spell’s duration, the body decomposes to a rancid slime, and it can’t be returned to life except through a [true resurrection](https://api.open5e.com/spells/true-resurrection) spell.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can affect one additional corpse for each slot level above 2nd.", @@ -11966,7 +11966,7 @@ "fields": { "name": "Rune of Imprisonment", "desc": "You trace a glowing black rune in the air which streaks toward and envelops its target. Make a ranged spell attack against the target. On a successful hit, the rune absorbs the target creature, leaving only the glowing rune hanging in the space the target occupied. The subject can take no actions while imprisoned, nor can the subject be targeted or affected by any means. Any spell durations or conditions affecting the creature are postponed until the creature is freed. A dying creature does not lose hit points or stabilize until freed.\n\nA creature adjacent to the rune can use a move action to attempt to disrupt its energies; doing so allows the imprisoned creature to make a Wisdom saving throw. On a success, this disruption negates the imprisonment and ends the effect. Disruption can be attempted only once per round.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "abjuration", "higher_level": "", @@ -11997,7 +11997,7 @@ "fields": { "name": "Salt Lash", "desc": "You create a long, thin blade of razor-sharp salt crystals. You can wield it as a longsword, using your spellcasting ability to modify your weapon attack rolls. The sword deals 2d8 slashing damage on a hit, and any creature struck by the blade must make a successful Constitution saving throw or be stunned by searing pain until the start of your next turn. Constructs and undead are immune to the blade’s secondary (stun) effect; plants and creatures composed mostly of water, such as water elementals, also take an additional 2d8 necrotic damage if they fail the saving throw.\n\nThe spell lasts until you stop concentrating on it, the duration expires, or you let go of the blade for any reason.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "", @@ -12028,7 +12028,7 @@ "fields": { "name": "Sand Ship", "desc": "Casting **sand ship** on a water vessel up to the size of a small sailing ship transforms it into a vessel capable of sailing on sand as easily as water. The vessel still needs a trained crew and relies on wind or oars for propulsion, but it moves at its normal speed across sand instead of water for the duration of the spell. It can sail only over sand, not soil or solid rock. For the duration of the spell, the vessel doesn’t float; it must be beached or resting on the bottom of a body of water (partially drawn up onto a beach, for example) when the spell is cast, or it sinks into the water.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "", @@ -12059,7 +12059,7 @@ "fields": { "name": "Sanguine Horror", "desc": "When you cast this spell, you prick yourself with the material component, taking 1 piercing damage. The spell fails if this damage is prevented or negated in any way. From the drop of blood, you conjure a [blood elemental](https://api.open5e.com/monsters/blood-elemental). The blood elemental is friendly to you and your companions for the duration. It disappears when it’s reduced to 0 hit points or when the spell ends.\n\nRoll initiative for the elemental, which has its own turns. It obeys verbal commands from you (no action required by you). If you don’t issue any commands to the blood elemental, it defends itself but otherwise takes no actions. If your concentration is broken, the blood elemental doesn’t disappear, but you lose control of it and it becomes hostile to you and your companions. An uncontrolled blood elemental cannot be dismissed by you, and it disappears 1 hour after you summoned it.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "conjuration", "higher_level": "", @@ -12090,7 +12090,7 @@ "fields": { "name": "Scale Rot", "desc": "You summon death and decay to plague your enemies. For dragons, this act often takes the form of attacking a foe’s armor and scales, as a way of weakening an enemy dragon and leaving it plagued by self-doubt and fear. (This enchantment is useful against any armored creature, not just dragons.)\n\nOne creature of your choice within range that has natural armor must make a Constitution saving throw. If it fails, attacks against that creature’s Armor Class are made with advantage, and the creature can’t regain hit points through any means while the spell remains in effect. An affected creature can end the spell by making a successful Constitution saving throw, which also makes the creature immune to further castings of **scale rot** for 24 hours.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the number of affected targets increases by one for each slot level above 4th.", @@ -12121,7 +12121,7 @@ "fields": { "name": "Scentless", "desc": "You touch a willing creature or object that is not being worn or carried. For the duration, the target gives off no odor. A creature that relies on smell has disadvantage on Wisdom (Perception) checks to detect the target and Wisdom (Survival) checks to track the target. The target is invisible to a creature that relies solely on smell to sense its surroundings. This spell has no effect on targets with unusually strong scents, such as ghasts.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -12152,7 +12152,7 @@ "fields": { "name": "Screaming Ray", "desc": "You create a ray of psychic energy to attack your enemies. Make a ranged spell attack against a creature. On a hit, the target takes 1d4 psychic damage and is deafened until the end of your next turn. If the target succeeds on a Constitution saving throw, it is not deafened.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you create one additional ray for each slot level above 1st. You can direct the rays at one target or several.", @@ -12185,7 +12185,7 @@ "fields": { "name": "Scribe", "desc": "This spell enables you to create a copy of a one-page written work by placing a blank piece of paper or parchment near the work that you are copying. All the writing, illustrations, and other elements in the original are reproduced in the new document, in your handwriting or drawing style. The new medium must be large enough to accommodate the original source. Any magical properties of the original aren’t reproduced, so you can’t use scribe to make copies of spell scrolls or magic books.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "transmutation", "higher_level": "", @@ -12216,7 +12216,7 @@ "fields": { "name": "Scry Ambush", "desc": "You foresee your foe’s strike a split second before it occurs. When you cast this spell successfully, you also designate a number of your allies that can see or hear you equal to your spellcasting ability modifier + your proficiency bonus. Those allies are also not surprised by the attack and can act normally in the first round of combat.\n\nIf you would be surprised, you must make a check using your spellcasting ability at the moment your reaction would be triggered. The check DC is equal to the current initiative count. On a failed check, you are surprised and can’t use your reaction to cast this spell until after your next turn. On a successful check, you can use your reaction to cast this spell immediately.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "divination", "higher_level": "", @@ -12247,7 +12247,7 @@ "fields": { "name": "Sculpt Snow", "desc": "When you **cast sculpt** snow in an area filled with snow, you can create one Large object, two Medium objects, or four smaller objects from snow. With a casting time of 1 action, your sculptings bear only a crude resemblance to generic creatures or objects. If you increase the casting time to 1 minute, your creations take on a more realistic appearance and can even vaguely resemble specific creatures; the resemblance isn’t strong enough to fool anyone, but the creature can be recognized. The sculptures are as durable as a typical snowman.\n\nSculptures created by this spell can be animated with [animate objects](https://api.open5e.com/spells/animate-objects) or comparable magic. Animated sculptures gain the AC, hit points, and other attributes provided by that spell. When they attack, they deal normal damage plus a similar amount of cold damage; an animated Medium sculpture, for example, deals 2d6 + 1 bludgeoning damage plus 2d6 + 1 cold damage.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can sculpt one additional Large object for each slot level above 2nd. Two Large objects can be replaced with one Huge object.", @@ -12278,7 +12278,7 @@ "fields": { "name": "Seal of Sanctuary", "desc": "You inscribe an angelic seal on the ground, the floor, or other solid surface of a structure. The seal creates a spherical sanctuary with a radius of 50 feet, centered on the seal. For the duration, aberrations, elementals, fey, fiends, and undead that approach to within 5 feet of the boundary know they are about to come into contact with a deadly barrier. If such a creature moves so as to touch the boundary, or tries to cross the boundary by any means, including teleportation and extradimensional travel, it must make a Charisma saving throw. On a failed save, it takes 10d8 radiant damage, is repelled to 5 feet outside the boundary, and can’t target anything inside the boundary with attacks, spells, or abilities until the spell ends. On a successful save, the creature takes half as much radiant damage and can cross the boundary. If the creature is a fiend that isn’t on its home plane, it is immediately destroyed (no saving throw) instead of taking damage.\n\nAberrations, elementals, fey, and undead that are within 50 feet of the seal (inside the boundary) have disadvantage on ability checks, attack rolls, and saving throws, and each such creature takes 2d8 radiant damage at the start of its turn.\n\nCreatures other than aberrations, elementals, fey, fiends, and undead can’t be charmed or frightened while within 50 feet of the seal.\n\nThe seal has AC 18, 50 hit points, resistance to bludgeoning, piercing, and slashing damage, and immunity to psychic and poison damage. Ranged attacks against the seal are made with disadvantage. If it is scribed on the surface of an object that is later destroyed (such as a wooden door), the seal is not damaged and remains in place, perhaps suspended in midair. The spell ends only if the seal is reduced to 0 hit points.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "abjuration", "higher_level": "", @@ -12311,7 +12311,7 @@ "fields": { "name": "Searing Sun", "desc": "This spell intensifies the light and heat of the sun, so that it burns exposed flesh. You must be able to see the sun when you cast the spell. The searing sunlight affects a cylindrical area 50 feet in radius and 200 feet high, centered on the a point within range. Each creature that starts its turn in that area takes 5d8 fire damage, or half the damage with a successful Constitution saving throw. A creature that’s shaded by a solid object —such as an awning, a building, or an overhanging boulder— has advantage on the saving throw. On your turn, you can use an action to move the center of the cylinder up to 20 feet along the ground in any direction.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "", @@ -12344,7 +12344,7 @@ "fields": { "name": "See Beyond", "desc": "This spell enables a willing creature you touch to see through any obstructions as if they were transparent. For the duration, the target can see into and through opaque objects, creatures, spells, and effects that obstruct line of sight to a range of 30 feet. Inside that distance, the creature can choose what it perceives as opaque and what it perceives as transparent as freely and as naturally as it can shift its focus from nearby to distant objects.\n\nAlthough the creature can see any target within 30 feet of itself, all other requirements must still be satisfied before casting a spell or making an attack against that target. For example, the creature can see an enemy that has total cover but can’t shoot that enemy with an arrow because the cover physically prevents it. That enemy could be targeted by a [geas](https://api.open5e.com/spells/geas) spell, however, because [geas](https://api.open5e.com/spells/geas) needs only a visible target.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "divination", "higher_level": "", @@ -12375,7 +12375,7 @@ "fields": { "name": "Seed of Destruction", "desc": "This spell impregnates a living creature with a rapidly gestating [hydra](https://api.open5e.com/spells/hydra) that consumes the target from within before emerging to wreak havoc on the world. Make a ranged spell attack against a living creature within range that you can see. On a hit, you implant a five‑headed embryonic growth into the creature. Roll 1d3 + 1 to determine how many rounds it takes the embryo to mature.\n\nDuring the rounds when the embryo is gestating, the affected creature takes 5d4 slashing damage at the start of its turn, or half the damage with a successful Constitution saving throw.\n\nWhen the gestation period has elapsed, a tiny hydra erupts from the target’s abdomen at the start of your turn. The hydra appears in an unoccupied space adjacent to the target and immediately grows into a full-size Huge aberration. Nearby creatures are pushed away to clear a sufficient space as the hydra grows. This creature is a standard hydra, but with the ability to cast [bane](https://api.open5e.com/spells/bane) as an action (spell save DC 11) requiring no spell components. Roll initiative for the hydra, which takes its own turns. It obeys verbal commands that you issue to it (no action required by you). If you don’t give it a command or it can’t follow your command, the hydra attacks the nearest living creature.\n\nAt the end of each of the hydra’s turns, you must make a DC 15 Charisma saving throw. On a successful save, the hydra remains under your control and friendly to you and your companions. On a failed save, your control ends, the hydra becomes hostile to all creatures, and it attacks the nearest creature to the best of its ability.\n\nThe hydra disappears at the end of the spell’s duration, or its existence can be cut short with a [wish](https://api.open5e.com/spells/wish) spell or comparable magic, but nothing less. The embryo can be destroyed before it reaches maturity by using a [dispel magic](https://api.open5e.com/spells/dispel-magic) spell under the normal rules for dispelling high-level magic.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "enchantment", "higher_level": "", @@ -12408,7 +12408,7 @@ "fields": { "name": "Seeping Death", "desc": "Your touch inflicts a virulent, flesh-eating disease. Make a melee spell attack against a creature within your reach. On a hit, the creature’s Dexterity score is reduced by 1d4, and it is afflicted with the seeping death disease for the duration.\n\nSince this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease’s effects apply to it and can end the spell early.\n\n***Seeping Death.*** The creature’s flesh is slowly liquefied by a lingering necrotic pestilence. At the end of each long rest, the diseased creature must succeed on a Constitution saving throw or its Dexterity score is reduced by 1d4. The reduction lasts until the target finishes a long rest after the disease is cured. If the disease reduces the creature’s Dexterity to 0, the creature dies.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "necromancy", "higher_level": "", @@ -12439,7 +12439,7 @@ "fields": { "name": "Seer’s Reaction", "desc": "Your foreknowledge allows you to act before others, because you knew what was going to happen. When you cast this spell, make a new initiative roll with a +5 bonus. If the result is higher than your current initiative, your place in the initiative order changes accordingly. If the result is also higher than the current place in the initiative order, you take your next turn immediately and then use the higher number starting in the next round.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -12470,7 +12470,7 @@ "fields": { "name": "Semblance of Dread", "desc": "You adopt the visage of the faceless god Nyarlathotep. For the duration, any creature within 10 feet of you and able to see you can’t willingly move closer to you unless it makes a successful Wisdom saving throw at the start of its turn. Constructs and undead are immune to this effect.\n\nFor the duration of the spell, you also gain vulnerability to radiant damage and have advantage on saving throws against effects that cause the frightened condition.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "illusion", "higher_level": "", @@ -12501,7 +12501,7 @@ "fields": { "name": "Shade", "desc": "You create a magical screen across your eyes. While the screen remains, you are immune to blindness caused by visible effects, such as [color spray](https://api.open5e.com/spells/color-spray). The spell doesn’t alleviate blindness that’s already been inflicted on you. If you normally suffer penalties on attacks or ability checks while in sunlight, those penalties don’t apply while you’re under the effect of this spell.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 10 minutes for each slot level above 2nd.", @@ -12532,7 +12532,7 @@ "fields": { "name": "Shadow Armor", "desc": "You can siphon energy from the plane of shadow to protect yourself from an immediate threat. As a reaction, you pull shadows around yourself to distort reality. The attack against you is made with disadvantage, and you have resistance to radiant damage until the start of your next turn.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "abjuration", "higher_level": "", @@ -12563,7 +12563,7 @@ "fields": { "name": "Shadow Bite", "desc": "You create a momentary needle of cold, sharp pain in a creature within range. The target must make a successful Constitution saving throw or take 1d6 necrotic damage immediately and have its speed halved until the start of your next turn.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "illusion", "higher_level": "This spell’s damage increases to 2d6 when you reach 5th level, 3d6 when you reach 11th level, and 4d6 when you reach 17th level.", @@ -12594,7 +12594,7 @@ "fields": { "name": "Shadow Blindness", "desc": "You make a melee spell attack against a creature you touch that has darkvision as an innate ability; on a hit, the target’s darkvision is negated until the spell ends. This spell has no effect against darkvision that derives from a spell or a magic item. The target retains all of its other senses.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "illusion", "higher_level": "", @@ -12625,7 +12625,7 @@ "fields": { "name": "Shadow Hands", "desc": "A freezing blast of shadow explodes out from you in a 10-foot cone. Any creature caught in the shadow takes 2d4 necrotic damage and is frightened; a successful Wisdom saving throw halves the damage and negates the frightened condition.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage dealt by the attack increases by 2d4 for each slot level above 1st.", @@ -12658,7 +12658,7 @@ "fields": { "name": "Shadow Monsters", "desc": "You choose up to two creatures within range. Each creature must make a Wisdom saving throw. On a failed save, the creature perceives its allies as hostile, shadowy monsters, and it must attack its nearest ally. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.", @@ -12689,7 +12689,7 @@ "fields": { "name": "Shadow Puppets", "desc": "You animate the shadow of a creature within range, causing it to attack that creature. As a bonus action when you cast the spell, or as an action on subsequent rounds while you maintain concentration, make a melee spell attack against the creature. If it hits, the target takes 2d8 psychic damage and must make a successful Intelligence saving throw or be incapacitated until the start of your next turn.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", @@ -12722,7 +12722,7 @@ "fields": { "name": "Shadow Trove", "desc": "You paint a small door approximately 2 feet square on a hard surface to create a portal into the void of space. The portal “peels off” the surface you painted it on and follows you when you move, always floating in the air within 5 feet of you. An icy chill flows out from the portal. You can place up to 750 pounds of nonliving matter in the portal, where it stays suspended in the frigid void until you withdraw it. Items that are still inside the shadow trove when the duration ends spill out onto the ground. You can designate a number of creatures up to your Intelligence modifier who have access to the shadow trove; only you and those creatures can move objects into the portal.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 2 hours for each slot level above 3rd.", @@ -12753,7 +12753,7 @@ "fields": { "name": "Shadows Brought to Light", "desc": "If a creature you designate within range fails a Charisma saving throw, you cause the target’s shadow to come to life and reveal one of the creature’s most scandalous secrets: some fact that the target would not want widely known (GM’s choice). When casting the spell, you choose whether everyone present will hear the secret, in which case the shadow speaks loudly in a twisted version of the target’s voice, or if the secret is whispered only to you. The shadow speaks in the target’s native language.\n\nIf the target does not have a scandalous secret or does not have a spoken language, the spell fails as if the creature’s saving throw had succeeded.\n\nIf the secret was spoken aloud, the target takes a −2 penalty to Charisma checks involving anyone who was present when it was revealed. This penalty lasts until you finish a long rest.\n\n***Ritual Focus.*** If you expend your ritual focus, the target has disadvantage on Charisma checks instead of taking the −2 penalty.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "", @@ -12784,7 +12784,7 @@ "fields": { "name": "Shadowy Retribution", "desc": "You fill a small silver cup with your own blood (taking 1d4 piercing damage) while chanting vile curses in the dark. Once the chant is completed, you consume the blood and swear an oath of vengeance against any who harm you.\n\nIf you are reduced to 0 hit points, your oath is invoked; a shadow materializes within 5 feet of you. The shadow attacks the creature that reduced you to 0 hit points, ignoring all other targets, until it or the target is slain, at which point the shadow dissipates into nothing.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, an additional shadow is conjured for each slot level above 4th.\n\n***Ritual Focus.*** If you expend your ritual focus, the spell summons a banshee instead of a shadow. If you also use a higher-level spell slot, additional undead are still shadows.", @@ -12815,7 +12815,7 @@ "fields": { "name": "Shared Sacrifice", "desc": "You and up to five of your allies within range contribute part of your life force to create a pool that can be used for healing. Each target takes 5 necrotic damage (which can’t be reduced but can be healed normally), and those donated hit points are channeled into a reservoir of life essence. As an action, any creature who contributed to the pool of hit points can heal another creature by touching it and drawing hit points from the pool into the injured creature. The injured creature heals a number of hit points equal to your spellcasting ability modifier, and the hit points in the pool decrease by the same amount. This process can be repeated until the pool is exhausted or the spell’s duration expires.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "", @@ -12848,7 +12848,7 @@ "fields": { "name": "Sheen of Ice", "desc": "A small icy globe shoots from your finger to a point within range and then explodes in a spray of ice. Each creature within 20 feet of that point must make a successful Dexterity saving throw or become coated in ice for 1 minute. Ice-coated creatures move at half speed. An invisible creature becomes outlined by the ice so that it loses the benefits of invisibility while the ice remains. The spell ends for a specific creature if that creature takes 5 or more fire damage.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "", @@ -12881,7 +12881,7 @@ "fields": { "name": "Shifting the Odds", "desc": "By wrapping yourself in strands of chaotic energy, you gain advantage on the next attack roll or ability check that you make. Fate is a cruel mistress, however, and her scales must always be balanced. The second attack roll or ability check (whichever occurs first) that you make after casting **shifting the odds** is made with disadvantage.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "", @@ -12912,7 +12912,7 @@ "fields": { "name": "Shiver", "desc": "You fill a humanoid creature with such cold that its teeth begin to chatter and its body shakes uncontrollably. Roll 5d8; the total is the maximum hit points of a creature this spell can affect. The affected creature must succeed on a Constitution saving throw, or it cannot cast a spell or load a missile weapon until the end of your next turn. Once a creature has been affected by this spell, it is immune to further castings of this spell for 24 hours.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "The maximum hit points you can affect increases by 4d8 when you reach 5th level (9d8), 11th level (13d8), and 17th level (17d8).", @@ -12943,7 +12943,7 @@ "fields": { "name": "Shroud of Death", "desc": "You call up a black veil of necrotic energy that devours the living. You draw on the life energy of all living creatures within 30 feet of you that you can see. When you cast the spell, every living creature within 30 feet of you that you can see takes 1 necrotic damage, and all those hit points transfer to you as temporary hit points. The damage and the temporary hit points increase to 2 per creature at the start of your second turn concentrating on the spell, 3 per creature at the start of your third turn, and so on. All living creatures you can see within 30 feet of you at the start of each of your turns are affected. A creature can avoid the effect by moving more than 30 feet away from you or by getting out of your line of sight, but it becomes susceptible again if the necessary conditions are met. The temporary hit points last until the spell ends.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "necromancy", "higher_level": "", @@ -12976,7 +12976,7 @@ "fields": { "name": "Sidestep Arrow", "desc": "With a few perfectly timed steps, you interpose a foe between you and danger. You cast this spell when an enemy makes a ranged attack or a ranged spell attack against you but before the attack is resolved. At least one other foe must be within 10 feet of you when you cast **sidestep arrow**. As part of casting the spell, you can move up to 15 feet to a place where an enemy lies between you and the attacker. If no such location is available, the spell has no effect. You must be able to move (not restrained or grappled or prevented from moving for any other reason), and this move does not provoke opportunity attacks. After you move, the ranged attack is resolved with the intervening foe as the target instead of you.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "divination", "higher_level": "", @@ -13007,7 +13007,7 @@ "fields": { "name": "Sign of Koth", "desc": "You invoke the twilight citadels of Koth to create a field of magical energy in the shape of a 60-foot-radius, 60-foot‑tall cylinder centered on you. The only visible evidence of this field is a black rune that appears on every doorway, window, or other portal inside the area.\n\nChoose one of the following creature types: aberration, beast, celestial, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead. The sign affects creatures of the chosen type (including you, if applicable) in the following ways:\n* The creatures can’t willingly enter the cylinder’s area by nonmagical means; the cylinder acts as an invisible, impenetrable wall of force. If an affected creature tries to enter the cylinder’s area by using teleportation, a dimensional shortcut, or other magical means, it must make a successful Charisma saving throw or the attempt fails.\n* They cannot hear any sounds that originate inside the cylinder.\n* They have disadvantage on attack rolls against targets inside the cylinder.\n* They can’t charm, frighten, or possess creatures inside the cylinder.\nCreatures that aren’t affected by the field and that take a short rest inside it regain twice the usual number of hit points for each Hit Die spent at the end of the rest.\n\nWhen you cast this spell, you can choose to reverse its magic; doing this will prevent affected creatures from leaving the area instead of from entering it, make them unable to hear sounds that originate outside the cylinder, and so forth. In this case, the field provides no benefit for taking a short rest.\n", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the radius increases by 30 feet for each slot level above 7th.", @@ -13038,7 +13038,7 @@ "fields": { "name": "Silhouette", "desc": "You create a shadow play against a screen or wall. The surface can encompass up to 100 square feet. The number of creatures that can see the shadow play equals your Intelligence score. The shadowy figures make no sound but they can dance, run, move, kiss, fight, and so forth. Most of the figures are generic types—a rabbit, a dwarf—but a number of them equal to your Intelligence modifier can be recognizable as specific individuals.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "illusion", "higher_level": "", @@ -13069,7 +13069,7 @@ "fields": { "name": "Sir Mittinz’s Move Curse", "desc": "When you are within range of a cursed creature or object, you can transfer the curse to a different creature or object that’s also within range. The curse must be transferred from object to object or from creature to creature.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "", @@ -13100,7 +13100,7 @@ "fields": { "name": "Sleep of the Deep", "desc": "Your magic haunts the dreams of others. Choose a sleeping creature that you are aware of within range. Creatures that don’t sleep, such as elves, can’t be targeted. The creature must succeed on a Wisdom saving throw or it garners no benefit from the rest, and when it awakens, it gains one level of exhaustion and is afflicted with short‑term madness.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "illusion", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional creature for each slot level above 3rd.", @@ -13131,7 +13131,7 @@ "fields": { "name": "Slippery Fingers", "desc": "You set a series of small events in motion that cause the targeted creature to drop one nonmagical item of your choice that it’s currently holding, unless it makes a successful Charisma saving throw.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "enchantment", "higher_level": "", @@ -13162,7 +13162,7 @@ "fields": { "name": "Slither", "desc": "You momentarily become a shadow (a humanoid-shaped absence of light, not the undead creature of that name). You can slide under a door, through a keyhole, or through any other tiny opening. All of your equipment is transformed with you, and you can move up to your full speed during the spell’s duration. While in this form, you have advantage on Dexterity (Stealth) checks made in darkness or dim light and you are immune to nonmagical bludgeoning, piercing, and slashing damage. You can dismiss this spell by using an action to do so.\n\nIf you return to your normal form while in a space too small for you (such as a mouse hole, sewer pipe, or the like), you take 4d6 force damage and are pushed to the nearest space within 50 feet big enough to hold you. If the distance is greater than 50 feet, you take an extra 1d6 force damage for every additional 10 feet traveled.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target an additional willing creature that you touch for each slot level above 2nd.", @@ -13193,7 +13193,7 @@ "fields": { "name": "Snow Boulder", "desc": "A ball of snow forms 5 feet away from you and rolls in the direction you point at a speed of 30 feet, growing larger as it moves. To roll the boulder into a creature, you must make a successful ranged spell attack. If the boulder hits, the creature must make a successful Dexterity saving throw or be knocked prone and take the damage indicated below. Hitting a creature doesn’t stop the snow boulder’s movement or impede its growth, as long as you continue to maintain concentration on the effect. When the spell ends, the boulder stops moving.\n\n| Round | Size | Damage |\n|-|-|-|\n| 1 | Small | 1d6 bludgeoning |\n| 2 | Medium | 2d6 bludgeoning |\n| 3 | Large | 4d6 bludgeoning |\n| 4 | Huge | 6d6 bludgeoning |\n\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "transmutation", "higher_level": "", @@ -13224,7 +13224,7 @@ "fields": { "name": "Snow Fort", "desc": "This spell creates a simple “fort” from packed snow. The snow fort springs from the ground in an unoccupied space within range. It encircles a 10-foot area with sloping walls 4 feet high. The fort provides half cover (+2 AC) against ranged and melee attacks coming from outside the fort. The walls have AC 12, 30 hit points per side, are immune to cold, necrotic, poison, and psychic damage, and are vulnerable to fire damage. A damaged wall can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis, up to a maximum of 30 points.\n\nThe spell also creates a dozen snowballs that can be thrown (range 20/60) and that deal 1d4 bludgeoning damage plus 1d4 cold damage on a hit.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "", @@ -13255,7 +13255,7 @@ "fields": { "name": "Snowy Coat", "desc": "This spell makes a slight alteration to a target creature’s appearance that gives it advantage on Dexterity (Stealth) checks to hide in snowy terrain. In addition, the target can use a bonus action to make itself invisible in snowy terrain for 1 minute. The spell ends at the end of the minute or when the creature attacks or casts a spell.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", @@ -13286,7 +13286,7 @@ "fields": { "name": "Song of the Forest", "desc": "You attune your senses to the natural world, so that you detect every sound that occurs within 60 feet: wind blowing through branches, falling leaves, grazing deer, trickling streams, and more. You can clearly picture the source of each sound in your mind. The spell gives you tremorsense out to a range of 10 feet. In addition, you have advantage on Wisdom (Perception) checks that rely on hearing. Creatures that make no noise or that are magically silent cannot be detected by this spell’s effect.\n\n**Song of the forest** functions only in natural environments; it fails if cast underground, in a city, or in a building that isolates the caster from nature (GM’s discretion).\n\n***Ritual Focus.*** If you expend your ritual focus, the spell also gives you blindsight out to a range of 30 feet.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "", @@ -13317,7 +13317,7 @@ "fields": { "name": "Speak with Inanimate Object", "desc": "You awaken a spirit that resides inside an inanimate object such as a rock, a sign, or a table, and can ask it up to three yes-or-no questions. The spirit is indifferent toward you unless you have done something to harm or help it. The spirit can give you information about its environment and about things it has observed (with its limited senses), and it can act as a spy for you in certain situations. The spell ends when its duration expires or after you have received answers to three questions.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -13348,7 +13348,7 @@ "fields": { "name": "Spin", "desc": "You designate a creature you can see within range and tell it to spin. The creature can resist this command with a successful Wisdom saving throw. On a failed save, the creature spins in place for the duration of the spell. A spinning creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A creature that has spun for 1 round or longer becomes dizzy and has disadvantage on attack rolls and ability checks until 1 round after it stops spinning.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "enchantment", "higher_level": "", @@ -13379,7 +13379,7 @@ "fields": { "name": "Spinning Axes", "desc": "Spinning axes made of luminous force burst out from you to strike all creatures within 10 feet of you. Each of those creatures takes 5d8 force damage, or half the damage with a successful Dexterity saving throw. Creatures damaged by this spell that aren’t undead or constructs begin bleeding. A bleeding creature takes 2d6 necrotic damage at the end of each of its turns for 1 minute. A creature can stop the bleeding for itself or another creature by using an action to make a successful Wisdom (Medicine) check against your spell save DC or by applying any amount of magical healing.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", @@ -13412,7 +13412,7 @@ "fields": { "name": "Spiteful Weapon", "desc": "You create a connection between the target of the spell, an attacker that injured the target during the last 24 hours, and the melee weapon that caused the injury, all of which must be within range when the spell is cast.\n\nFor the duration of the spell, whenever the attacker takes damage while holding the weapon, the target must make a Charisma saving throw. On a failed save, the target takes the same amount and type of damage, or half as much damage on a successful one. The attacker can use the weapon on itself and thus cause the target to take identical damage. A self-inflicted wound hits automatically, but damage is still rolled randomly.\n\nOnce the connection is established, it lasts for the duration of the spell regardless of range, so long as all three elements remain on the same plane. The spell ends immediately if the attacker receives any healing.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "necromancy", "higher_level": "The target has disadvantage on its Charisma saving throws if **spiteful weapon** is cast using a spell slot of 5th level or higher.", @@ -13443,7 +13443,7 @@ "fields": { "name": "Spur Mount", "desc": "You urge your mount to a sudden burst of speed. Until the end of your next turn, you can direct your mount to use the Dash or Disengage action as a bonus action. This spell has no effect on a creature that you are not riding.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -13474,7 +13474,7 @@ "fields": { "name": "Staff of Violet Fire", "desc": "You create a quarterstaff of pure necrotic energy that blazes with intense purple light; it appears in your chosen hand. If you let it go, it disappears, though you can evoke it again as a bonus action if you have maintained concentration on the spell.\n\nThis staff is an extremely unstable and impermanent magic item; it has 10 charges and does not require attunement. The wielder can use one of three effects:\n\n* By using your action to make a melee attack and expending 1 charge, you can attack with it. On a hit, the target takes 5d10 necrotic damage.\n* By expending 2 charges, you can release bolts of necrotic fire against up to 3 targets as ranged attacks for 1d8+4 necrotic damage each.\n\nThe staff disappears and the spell ends when all the staff's charges have been expended or if you stop concentrating on the spell.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the melee damage increases by 1d10 for every two slot levels above 4th, or you add one additional ranged bolt for every two slot levels above 4th.", @@ -13507,7 +13507,7 @@ "fields": { "name": "Stanch", "desc": "The target’s blood coagulates rapidly, so that a dying target stabilizes and any ongoing bleeding or wounding effect on the target ends. The target can't be the source of blood for any spell or effect that requires even a drop of blood.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -13538,7 +13538,7 @@ "fields": { "name": "Starburst", "desc": "You cause a mote of starlight to appear and explode in a 5-foot cube you can see within range. If a creature is in the cube, it must succeed on a Charisma saving throw or take 1d8 radiant damage.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "This spell’s damage increases to 2d8 when you reach 5th level, 3d8 when you reach 11th level, and 4d8 when you reach 17th level.", @@ -13569,7 +13569,7 @@ "fields": { "name": "Starfall", "desc": "You cause bolts of shimmering starlight to fall from the heavens, striking up to five creatures that you can see within range. Each bolt strikes one target, dealing 6d6 radiant damage, knocking the target prone, and blinding it until the start of your next turn. A creature that makes a successful Dexterity saving throw takes half the damage, is not knocked prone, and is not blinded. If you name fewer than five targets, excess bolts strike the ground harmlessly.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can create one additional bolt for each slot level above 5th.", @@ -13600,7 +13600,7 @@ "fields": { "name": "Starry Vision", "desc": "This spell acts as [compelling fate](https://api.open5e.com/spells/compelling-fate), except as noted above (**starry** vision can be cast as a reaction, has twice the range of [compelling fate](https://api.open5e.com/spells/compelling-fate), and lasts up to 1 minute). At the end of each of its turns, the target repeats the Charisma saving throw, ending the effect on a success.\n", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "divination", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the bonus to AC increases by 1 for each slot level above 7th.", @@ -13631,7 +13631,7 @@ "fields": { "name": "Star's Heart", "desc": "This spell increases gravity tenfold in a 50-foot radius centered on you. Each creature in the area other than you drops whatever it’s holding, falls prone, becomes incapacitated, and can’t move. If a solid object (such as the ground) is encountered when a flying or levitating creature falls, the creature takes three times the normal falling damage. Any creature except you that enters the area or starts its turn there must make a successful Strength saving throw or fall prone and become incapacitated and unable to move. A creature that starts its turn prone and incapacitated makes a Strength saving throw. On a failed save, the creature takes 8d6 bludgeoning damage; on a successful save, it takes 4d6 bludgeoning damage, it’s no longer incapacitated, and it can move at half speed.\n\nAll ranged weapon attacks inside the area have a normal range of 5 feet and a maximum range of 10 feet. The same applies to spells that create missiles that have mass, such as [flaming sphere](https://api.open5e.com/spells/flaming-sphere). A creature under the influence of a [freedom of movement](https://api.open5e.com/spells/freedom-of-movement) spell or comparable magic has advantage on the Strength saving throws required by this spell, and its speed isn’t reduced once it recovers from being incapacitated.", - "document": "deep-magic", + "document": "deepm", "level": 9, "school": "transmutation", "higher_level": "", @@ -13664,7 +13664,7 @@ "fields": { "name": "Steal Warmth", "desc": "When you cast **steal warmth** after taking cold damage, you select a living creature within 5 feet of you. That creature takes the cold damage instead, or half the damage with a successful Constitution saving throw. You regain hit points equal to the amount of cold damage taken by the target.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the distance to the target you can affect with this spell increases by 5 feet for each slot level above 3rd.", @@ -13695,7 +13695,7 @@ "fields": { "name": "Steam Blast", "desc": "You unleash a burst of superheated steam in a 15-foot radius around you. All other creatures in the area take 5d8 fire damage, or half as much damage on a successful Dexterity saving throw. Nonmagical fires smaller than a bonfire are extinguished, and everything becomes wet.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", @@ -13726,7 +13726,7 @@ "fields": { "name": "Steam Whistle", "desc": "You open your mouth and unleash a shattering scream. All other creatures in a 30-foot radius around you take 10d10 thunder damage and are deafened for 1d8 hours. A successful Constitution saving throw halves the damage and reduces the deafness to 1 round.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "evocation", "higher_level": "", @@ -13757,7 +13757,7 @@ "fields": { "name": "Stench of Rot", "desc": "Choose one creature you can see within range that isn’t a construct or an undead. The target must succeed on a Charisma saving throw or become cursed for the duration of the spell. While cursed, the target reeks of death and rot, and nothing short of magic can mask or remove the smell. The target has disadvantage on all Charisma checks and on Constitution saving throws to maintain concentration on spells. A creature with the Keen Smell trait, or a similar trait indicating the creature has a strong sense of smell, can add your spellcasting ability modifier to its Wisdom (Perception) or Wisdom (Survival) checks to find the target. A [remove curse](https://api.open5e.com/spells/remove-curse) spell or similar magic ends the spell early.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration increases by 1 hour for each slot level above 2nd.", @@ -13788,7 +13788,7 @@ "fields": { "name": "Storm of Wings", "desc": "You create a storm of spectral birds, bats, or flying insects in a 15-foot-radius sphere on a point you can see within range. The storm spreads around corners, and its area is lightly obscured. Each creature in the storm when it appears and each a creature that starts its turn in the storm is affected by the storm.\n As a bonus action on your turn, you can move the storm up to 30 feet. As an action on your turn, you can change the storm from one type to another, such as from a storm of bats to a storm of insects.\n ***Bats.*** The creature takes 4d6 necrotic damage, and its speed is halved while within the storm as the bats cling to it and drain its blood.\n ***Birds.*** The creature takes 4d6 slashing damage, and has disadvantage on attack rolls while within the storm as the birds fly in the way of the creature's attacks.\n ***Insects.*** The creature takes 4d6 poison damage, and it must make a Constitution saving throw each time it casts a spell while within the storm. On a failed save, the creature fails to cast the spell, losing the action but not the spell slot.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "conjuration", "higher_level": "", @@ -13821,7 +13821,7 @@ "fields": { "name": "Sudden Dawn", "desc": "You call upon morning to arrive ahead of schedule. With a sharp word, you create a 30-foot-radius cylinder of light centered on a point on the ground within range. The cylinder extends vertically for 100 feet or until it reaches an obstruction, such as a ceiling. The area inside the cylinder is brightly lit.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "evocation", "higher_level": "", @@ -13852,7 +13852,7 @@ "fields": { "name": "Summon Eldritch Servitor", "desc": "You summon eldritch aberrations that appear in unoccupied spaces you can see within range. Choose one of the following options for what appears:\n* Two [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng)\n* One [shantak](https://api.open5e.com/monsters/shantak)\n\nWhen the summoned creatures appear, you must make a Charisma saving throw. On a success, the creatures are friendly to you and your allies. On a failure, the creatures are friendly to no one and attack the nearest creatures, pursuing and fighting for as long as possible.\n\nRoll initiative for the summoned creatures, which take their own turns as a group. If friendly to you, they obey your verbal commands (no action required by you to issue a command), or they attack the nearest living creature if they are not commanded otherwise.\n\nEach round when you maintain concentration on the spell, you must make a successful DC 15 Wisdom saving throw at the end of your turn or take 1d4 psychic damage. If the total of this damage exceeds your Wisdom score, you gain 1 point of Void taint and you are afflicted with a form of short-term madness. The same penalty applies when the damage exceeds twice your Wisdom score, three times your Wisdom score, and so forth, if you maintain concentration for that long.\n\nA summoned creature disappears when it drops to 0 hit points or when the spell ends. If you stop concentrating on the spell before 1 hour has elapsed, the creatures become uncontrolled and hostile until they disappear 1d6 rounds later or until they are killed.\n", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "conjuration", "higher_level": "When you cast this spell using a 7th- or 8th-level spell slot, you can summon four [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng) or a [hound of Tindalos](https://api.open5e.com/monsters/hound-of-tindalos). When you cast it with a 9th-level spell slot, you can summon five [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng) or a [nightgaunt](https://api.open5e.com/monsters/nightgaunt).", @@ -13883,7 +13883,7 @@ "fields": { "name": "Summon Star", "desc": "You summon a friendly star from the heavens to do your bidding. It appears in an unoccupied space you can see within range and takes the form of a glowing humanoid with long white hair. All creatures other than you who view the star must make a successful Wisdom saving throw or be charmed for the duration of the spell. A creature charmed in this way can repeat the Wisdom saving throw at the end of each of its turns. On a success, the creature is no longer charmed and is immune to the effect of this casting of the spell. In all other ways, the star is equivalent to a [deva](https://api.open5e.com/monsters/deva). It understands and obeys verbal commands you give it. If you do not give the star a command, it defends itself and attacks the last creature that attacked it. The star disappears when it drops to 0 hit points or when the spell ends.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "conjuration", "higher_level": "", @@ -13914,7 +13914,7 @@ "fields": { "name": "Surge Dampener", "desc": "Using your strength of will, you cause one creature other than yourself that you touch to become so firmly entrenched within reality that it is protected from the effects of a chaos magic surge. The protected creature can make a DC 13 Charisma saving throw to negate the effect of a chaos magic surge that does not normally allow a saving throw, or it gains advantage on a saving throw that is normally allowed. Once the protected creature makes a successful saving throw allowed by **surge dampener**, the spell ends.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "abjuration", "higher_level": "", @@ -13945,7 +13945,7 @@ "fields": { "name": "Surprise Blessing", "desc": "You touch a willing creature and choose one of the conditions listed below that the creature is currently subjected to. The condition’s normal effect on the target is suspended, and the indicated effect applies instead. This spell’s effect on the target lasts for the duration of the original condition or until the spell ends. If this spell ends before the original condition’s duration expires, you become affected by the condition for as long as it lasts, even if you were not the original recipient of the condition.\n\n***Blinded:*** The target gains truesight out to a range of 10 feet and can see 10 feet into the Ethereal Plane.\n\n***Charmed:*** The target’s Charisma score becomes 19, unless it is already higher than 19, and it gains immunity to charm effects.\n\n***Frightened:*** The target emits a 10-foot-radius aura of dread. Each creature the target designates that starts its turn in the aura must make a successful Wisdom saving throw or be frightened of the target. A creature frightened in this way that starts its turn outside the aura repeats the saving throw, ending the condition on itself on a success.\n\n***Paralyzed:*** The target can use one extra bonus action or reaction per round.\n\n***Petrified:*** The target gains a +2 bonus to AC.\n\n***Poisoned:*** The target heals 2d6 hit points at the start of its next turn, and it gains immunity to poison damage and the poisoned condition.\n\n***Stunned:*** The target has advantage on Intelligence, Wisdom, and Charisma saving throws.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "abjuration", "higher_level": "", @@ -13976,7 +13976,7 @@ "fields": { "name": "Symbol of Sorcery", "desc": "You draw an arcane symbol on an object, wall, or other surface at least 5 feet wide. When a creature other than you approaches within 5 feet of the symbol, that act triggers an arcane explosion. Each creature in a 60-foot cone must make a successful Wisdom saving throw or be stunned. A stunned creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a successful save. After this symbol explodes or when the duration expires, its power is spent and the spell ends.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "evocation", "higher_level": "", @@ -14007,7 +14007,7 @@ "fields": { "name": "Talons of a Hungry Land", "desc": "You cause three parallel lines of thick, flared obsidian spikes to erupt from the ground. They appear within range on a solid surface, last for the duration, and provide three‐quarters cover to creatures behind them. You can make lines (up to 60 feet long, 10 feet high, and 5 feet thick) or form a circle (20 feet in diameter, up to 15 feet high and 5 feet thick).\n\nWhen the lines appear, each creature in their area must make a Dexterity saving throw. Creatures takes 8d8 slashing damage, or half as much damage on a successful save.\n\nA creature can move through the lines at the risk of cutting itself on the exposed edges. For every 1 foot a creature moves through the lines, it must spend 4 feet of movement. Furthermore, the first time a creature enters the lines on a turn or ends its turn there, the creature must make a Dexterity saving throw. It takes 8d8 slashing damage on a failure, or half as much damage on a success.\n\nWhen you stop concentrating on the spell, you can cause the obsidian spikes to explode, dealing 5d8 slashing damage to any creature within 15 feet, or half as much damage on a successful Dexterity save.\n", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage from all effects of the lines increases by 1d8 for each slot level above 7th.", @@ -14040,7 +14040,7 @@ "fields": { "name": "Targeting Foreknowledge", "desc": "Twisting the knife, slapping with the butt of the spear, slashing out again as you recover from a lunge, and countless other double-strike maneuvers are skillful ways to get more from your weapon. By casting this spell as a bonus action after making a successful melee weapon attack, you deal an extra 2d6 damage of the weapon’s type to the target. In addition, if your weapon attack roll was a 19 or higher, it is a critical hit and increases the weapon’s damage dice as normal. The extra damage from this spell is not increased on a critical hit.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "divination", "higher_level": "", @@ -14071,7 +14071,7 @@ "fields": { "name": "Thin the Ice", "desc": "You target a point within range. That point becomes the top center of a cylinder 10 feet in radius and 40 feet deep. All ice inside that area melts immediately. The uppermost layer of ice seems to remain intact and sturdy, but it covers a 40-foot-deep pit filled with ice water. A successful Wisdom (Survival) check or passive Perception check against your spell save DC notices the thin ice. If a creature weighing more than 20 pounds (or a greater weight specified by you when casting the spell) treads over the cylinder or is already standing on it, the ice gives way. Unless the creature makes a successful Dexterity saving throw, it falls into the icy water, taking 2d6 cold damage plus whatever other problems are caused by water, by armor, or by being drenched in a freezing environment. The water gradually refreezes normally.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -14102,7 +14102,7 @@ "fields": { "name": "Thousand Darts", "desc": "You launch thousands of needlelike darts in a 5-foot‐wide line that is 120 feet long. Each creature in the line takes 6d6 piercing damage, or half as much damage if it makes a successful Dexterity saving throw. The first creature struck by the darts makes the saving throw with disadvantage.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", @@ -14135,7 +14135,7 @@ "fields": { "name": "Throes of Ecstasy", "desc": "Choose a humanoid that you can see within range. The target must succeed on a Constitution saving throw or become overcome with euphoria, rendering it incapacitated for the duration. The target automatically fails Wisdom saving throws, and attack rolls against the target have advantage. At the end of each of its turns, the target can make another Constitution saving throw. On a successful save, the spell ends on the target and it gains one level of exhaustion. If the spell continues for its maximum duration, the target gains three levels of exhaustion when the spell ends.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional humanoid for each slot level above 3rd. The humanoids must be within 30 feet of each other when you target them.", @@ -14166,7 +14166,7 @@ "fields": { "name": "Thunder Bolt", "desc": "You cast a knot of thunder at one enemy. Make a ranged spell attack against the target. If it hits, the target takes 1d8 thunder damage and can’t use reactions until the start of your next turn.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "", @@ -14199,7 +14199,7 @@ "fields": { "name": "Thunderclap", "desc": "You clap your hands, emitting a peal of thunder. Each creature within 20 feet of you takes 8d4 thunder damage and is deafened for 1d8 rounds, or it takes half as much damage and isn’t deafened if it makes a successful Constitution saving throw. On a saving throw that fails by 5 or more, the creature is also stunned for 1 round.\n\nThis spell doesn’t function in an area affected by a [silence](https://api.open5e.com/spells/silence) spell. Very brittle material such as crystal might be shattered if it’s within range, at the GM’s discretion; a character holding such an object can protect it from harm by making a successful Dexterity saving throw.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "evocation", "higher_level": "", @@ -14232,7 +14232,7 @@ "fields": { "name": "Thunderous Charge", "desc": "With a thunderous battle cry, you move up to 10 feet in a straight line and make a melee weapon attack. If it hits, you can choose to either gain a +5 bonus on the attack’s damage or shove the target 10 feet.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the distance you can move increases by 10 feet, and the attack deals an additional 1d6 thunder damage, for each slot level above 1st.", @@ -14263,7 +14263,7 @@ "fields": { "name": "Thunderous Stampede", "desc": "This spell acts as [thunderous charge](https://api.open5e.com/spells/thunderous-charge), but affecting up to three targets within range, including yourself. A target other than you must use its reaction to move and attack under the effect of thunderous stampede.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the distance your targets can move increases by 10 feet, and the attack deals an additional 1d6 thunder damage, for each slot level above 2nd.", @@ -14294,7 +14294,7 @@ "fields": { "name": "Thunderous Wave", "desc": "You initiate a shock wave centered at a point you designate within range. The wave explodes outward into a 30-foot-radius sphere. This force deals no damage directly, but every creature the wave passes through must make a Strength saving throw. On a failed save, a creature is pushed 30 feet and knocked prone; if it strikes a solid obstruction, it also takes 5d6 bludgeoning damage. On a successful save, a creature is pushed 15 feet and not knocked prone, and it takes 2d6 bludgeoning damage if it strikes an obstruction. The spell also emits a thunderous boom that can be heard within 400 feet.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "evocation", "higher_level": "", @@ -14327,7 +14327,7 @@ "fields": { "name": "Thunderstorm", "desc": "You touch a willing creature, and it becomes surrounded by a roiling storm cloud 30 feet in diameter, erupting with (harmless) thunder and lightning. The creature gains a flying speed of 60 feet. The cloud heavily obscures the creature inside it from view, though it is transparent to the creature itself.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "transmutation", "higher_level": "", @@ -14358,7 +14358,7 @@ "fields": { "name": "Tidal Barrier", "desc": "A swirling wave of seawater surrounds you, crashing and rolling in a 10-foot radius around your space. The area is difficult terrain, and a creature that starts its turn there or that enters it for the first time on a turn must make a Strength saving throw. On a failed save, the creature is pushed 10 feet away from you and its speed is reduced to 0 until the start of its next turn.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "abjuration", "higher_level": "", @@ -14389,7 +14389,7 @@ "fields": { "name": "Time in a Bottle", "desc": "You designate a spot within your sight. Time comes under your control in a 20-foot radius centered on that spot. You can freeze it, reverse it, or move it forward by as much as 1 minute as long as you maintain concentration. Nothing and no one, yourself included, can enter the field or affect what happens inside it. You can choose to end the effect at any moment as an action on your turn.", - "document": "deep-magic", + "document": "deepm", "level": 9, "school": "transmutation", "higher_level": "", @@ -14420,7 +14420,7 @@ "fields": { "name": "Time Jump", "desc": "You touch a construct and throw it forward in time if it fails a Constitution saving throw. The construct disappears for 1d4 + 1 rounds, during which time it cannot act or be acted upon in any way. When the construct returns, it is unaware that any time has passed.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "transmutation", "higher_level": "", @@ -14451,7 +14451,7 @@ "fields": { "name": "Time Loop", "desc": "You capture a creature within range in a loop of time. The target is teleported to the space where it began its most recent turn. The target then makes a Wisdom saving throw. On a successful save, the spell ends. On a failed save, the creature must repeat the activities it undertook on its previous turn, following the sequence of moves and actions to the best of its ability. It doesn’t need to move along the same path or attack the same target, but if it moved and then attacked on its previous turn, its only option is to move and then attack on this turn. If the space where the target began its previous turn is occupied or if it’s impossible for the target to take the same action (if it cast a spell but is now unable to do so, for example), the target becomes incapacitated.\n\nAn affected target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. For as long as the spell lasts, the target teleports back to its starting point at the start of each of its turns, and it must repeat the same sequence of moves and actions.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "transmutation", "higher_level": "", @@ -14482,7 +14482,7 @@ "fields": { "name": "Time Slippage", "desc": "You ensnare a creature within range in an insidious trap, causing different parts of its body to function at different speeds. The creature must make an Intelligence saving throw. On a failed save, it is stunned until the end of its next turn. On a success, the creature’s speed is halved and it has disadvantage on attack rolls and saving throws until the end of its next turn. The creature repeats the saving throw at the end of each of its turns, with the same effects for success and failure. In addition, the creature has disadvantage on Strength or Dexterity saving throws but advantage on Constitution or Charisma saving throws for the spell’s duration (a side effect of the chronal anomaly suffusing its body). The spell ends if the creature makes three successful saves in a row.", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "enchantment", "higher_level": "", @@ -14513,7 +14513,7 @@ "fields": { "name": "Time Step", "desc": "You briefly step forward in time. You disappear from your location and reappear at the start of your next turn in a location of your choice that you can see within 30 feet of the space you disappeared from. You can’t be affected by anything that happens during the time you’re missing, and you aren’t aware of anything that happens during that time.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "", @@ -14544,7 +14544,7 @@ "fields": { "name": "Time Vortex", "desc": "This spell destabilizes the flow of time, enabling you to create a vortex of temporal fluctuations that are visible as a spherical distortion with a 10-foot radius, centered on a point within range. Each creature in the area when you cast the spell must succeed on a Wisdom saving throw or be affected by the time vortex. While the spell lasts, a creature that enters the sphere or starts its turn inside the sphere must also succeed on a Wisdom saving throw or be affected. On a successful save, it becomes immune to this casting of the spell.\n\nAn affected creature can’t take reactions and rolls a d10 at the start of its turn to determine its behavior for that turn.\n\n| D10 | EFFECT |\n|-|-|\n| 1–2 | The creature is affected as if by a slow spell until the start of its next turn. |\n| 3–5 | The creature is stunned until the start of its next turn. |\n| 6–8 | The creature’s current initiative result is reduced by 5. The creature begins using this new initiative result in the next round. Multiple occurrences of this effect for the same creature are cumulative. |\n| 9–10 | The creature’s speed is halved (round up to the nearest 5-foot increment) until the start of its next turn. |\n\nYou can move the temporal vortex 10 feet each round as a bonus action. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", @@ -14575,7 +14575,7 @@ "fields": { "name": "Timely Distraction", "desc": "You call forth a swirling, crackling wave of constantly shifting pops, flashes, and swept-up debris. This chaos can confound one creature. If the target gets a failure on a Wisdom saving throw, roll a d4 and consult the following table to determine the result. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Otherwise, the spell ends when its duration expires.\n\n| D4 | Effect |\n|-|-|\n| 1 | Blinded |\n| 2 | Stunned |\n| 3 | Deafened |\n| 4 | Prone |\n\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "", @@ -14606,7 +14606,7 @@ "fields": { "name": "Tireless", "desc": "You grant machinelike stamina to a creature you touch for the duration of the spell. The target requires no food or drink or rest. It can move at three times its normal speed overland and perform three times the usual amount of labor. The target is not protected from fatigue or exhaustion caused by a magical effect.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -14637,7 +14637,7 @@ "fields": { "name": "Tongue of Sand", "desc": "**Tongue of sand** is similar in many ways to [magic mouth](https://api.open5e.com/spells/magic-mouth). When you cast it, you implant a message in a quantity of sand. The sand must fill a space no smaller than 4 square feet and at least 2 inches deep. The message can be up to 25 words. You also decide the conditions that trigger the speaking of the message. When the message is triggered, a mouth forms in the sand and delivers the message in a raspy, whispered voice that can be heard by creatures within 10 feet of the sand.\n\nAdditionally, **tongue of sand** has the ability to interact in a simple, brief manner with creatures who hear its message. For up to 10 minutes after the message is triggered, questions addressed to the sand will be answered as you would answer them. Each answer can be no more than ten words long, and the spell ends after a second question is answered.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "illusion", "higher_level": "", @@ -14668,7 +14668,7 @@ "fields": { "name": "Tongue Tied", "desc": "You make a choking motion while pointing at a target, which must make a successful Wisdom saving throw or become unable to communicate verbally. The target’s speech becomes garbled, and it has disadvantage on Charisma checks that require speech. The creature can cast a spell that has a verbal component only by making a successful Constitution check against your spell save DC. On a failed check, the creature’s action is used but the spell slot isn’t expended.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "enchantment", "higher_level": "", @@ -14699,7 +14699,7 @@ "fields": { "name": "Torrent of Fire", "desc": "You harness the power of fire contained in ley lines with this spell. You create a 60-foot cone of flame. Creatures in the cone take 6d6 fire damage, or half as much damage with a successful Dexterity saving throw. You can then flow along the flames, reappearing anywhere inside the cone’s area. This repositioning doesn’t count as movement and doesn’t trigger opportunity attacks.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "conjuration", "higher_level": "", @@ -14730,7 +14730,7 @@ "fields": { "name": "Touch of the Unliving", "desc": "Make a melee spell attack against a creature you can reach. On a hit, the target takes 2d6 necrotic damage and, if it is not an undead creature, it is paralyzed until the end of its next turn. Until the spell ends, you can make the attack again on each of your turns as an action.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", @@ -14763,7 +14763,7 @@ "fields": { "name": "Tracer", "desc": "When you cast this spell and as a bonus action on each of your turns until the spell ends, you can imbue a piece of ammunition you fire from a ranged weapon with a tiny, invisible beacon. If a ranged attack roll with an imbued piece of ammunition hits a target, the beacon is transferred to the target. The weapon that fired the ammunition is attuned to the beacon and becomes warm to the touch when it points in the direction of the target as long as the target is on the same plane of existence as you. You can have only one *tracer* target at a time. If you put a *tracer* on a different target, the effect on the previous target ends.\n A creature must succeed on an Intelligence (Arcana) check against your spell save DC to notice the magical beacon.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "divination", "higher_level": "", @@ -14794,7 +14794,7 @@ "fields": { "name": "Treasure Chasm", "desc": "You cause the glint of a golden coin to haze over the vision of one creature in range. The target creature must make a Wisdom saving throw. If it fails, it sees a gorge, trench, or other hole in the ground, at a spot within range chosen by you, which is filled with gold and treasure. On its next turn, the creature must move toward that spot. When it reaches the spot, it becomes incapacitated, as it devotes all its attention to scooping imaginary treasure into its pockets or a pouch.\n\nAn affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The effect also ends if the creature takes damage from you or one of your allies.\n\nCreatures with the dragon type have disadvantage on the initial saving throw but have advantage on saving throws against this spell made after reaching the designated spot.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "enchantment", "higher_level": "", @@ -14825,7 +14825,7 @@ "fields": { "name": "Tree Heal", "desc": "You touch a plant and it regains 1d4 hit points. Alternatively, you can cure it of one disease or remove pests from it. Once you cast this spell on a plant or plant creature, you can't cast it on that target again for 24 hours. This spell can be used only on plants and plant creatures.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "", @@ -14856,7 +14856,7 @@ "fields": { "name": "Tree Running", "desc": "One willing creature you touch gains a climbing speed equal to its walking speed. This climbing speed functions only while the creature is in contact with a living plant or fungus that’s growing from the ground. The creature can cling to an appropriate surface with just one hand or with just its feet, leaving its hands free to wield weapons or cast spells. The plant doesn’t give under the creature’s weight, so the creature can walk on the tiniest of tree branches, stand on a leaf, or run across the waving top of a field of wheat without bending a stalk or touching the ground.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "", @@ -14887,7 +14887,7 @@ "fields": { "name": "Tree Speak", "desc": "You touch a tree and ask one question about anything that might have happened in its immediate vicinity (such as “Who passed by here?”). You get a mental sensation of the response, which lasts for the duration of the spell. Trees do not have a humanoid’s sense of time, so the tree might speak about something that happened last night or a hundred years ago. The sensation you receive might include sight, hearing, vibration, or smell, all from the tree’s perspective. Trees are particularly attentive to anything that might harm the forest and always report such activities when questioned.\n\nIf you cast this spell on a tree that contains a creature that can merge with trees, such as a dryad, you can freely communicate with the merged creature for the duration of the spell.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "", @@ -14918,7 +14918,7 @@ "fields": { "name": "Trench", "desc": "By making a scooping gesture, you cause the ground to slowly sink in an area 5 feet wide and 60 feet long, originating from a point within range. When the casting is finished, a 5-foot-deep trench is the result.\n\nThe spell works only on flat, open ground (not on stone or paved surfaces) that is not occupied by creatures or objects.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can increase the width of the trench by 5 feet or the length by 30 feet for each slot level above 2nd. You can make a different choice (width or length) for each slot level above 2nd.", @@ -14949,7 +14949,7 @@ "fields": { "name": "Trick Question", "desc": "You pose a question that can be answered by one word, directed at a creature that can hear you. The target must make a successful Wisdom saving throw or be compelled to answer your question truthfully. When the answer is given, the target knows that you used magic to compel it.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "enchantment", "higher_level": "", @@ -14980,7 +14980,7 @@ "fields": { "name": "Triumph of Ice", "desc": "You transform one of the four elements—air, earth, fire, or water—into ice or snow. The affected area is a sphere with a radius of 100 feet, centered on you. The specific effect depends on the element you choose.\n* ***Air.*** Vapor condenses into snowfall. If the effect of a [fog cloud](https://api.open5e.com/spells/fog-cloud) spell, a [stinking cloud](https://api.open5e.com/spells/stinking-cloud), or similar magic is in the area, this spell negates it. A creature of elemental air within range takes 8d6 cold damage—and, if airborne, it must make a successful Constitution saving throw at the start of its turn to avoid being knocked prone (no falling damage).\n* ***Earth.*** Soil freezes into permafrost to a depth of 10 feet. A creature burrowing through the area has its speed halved until the area thaws, unless it can burrow through solid rock. A creature of elemental earth within range must make a successful Constitution saving throw or take 8d6 cold damage.\n* ***Fire.*** Flames or other sources of extreme heat (such as molten lava) on the ground within range transform into shards of ice, and the area they occupy becomes difficult terrain. Each creature in the previously burning area takes 2d6 slashing damage when the spell is cast and 1d6 slashing damage for every 5 feet it moves in the area (unless it is not hindered by icy terrain) until the spell ends; a successful Dexterity saving throw reduces the slashing damage by half. A creature of elemental fire within range must make a successful Constitution saving throw or take 8d6 cold damage and be stunned for 1d6 rounds.\n* ***Water.*** Open water (a pond, lake, or river) freezes to a depth of 4 feet. A creature on the surface of the water when it freezes must make a successful Dexterity saving throw to avoid being trapped in the ice. A trapped creature can free itself by using an action to make a successful Strength (Athletics) check. A creature of elemental water within range takes no damage from the spell but is paralyzed for 1d6 rounds unless it makes a successful Constitution saving throw, and it treats the affected area as difficult terrain.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "transmutation", "higher_level": "", @@ -15013,7 +15013,7 @@ "fields": { "name": "Twist the Skein", "desc": "You tweak a strand of a creature’s fate as it attempts an attack roll, saving throw, or skill check. Roll a d20 and subtract 10 to produce a number from 10 to –9. Add that number to the creature’s roll. This adjustment can turn a failure into a success or vice versa, or it might not change the outcome at all.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "enchantment", "higher_level": "", @@ -15044,7 +15044,7 @@ "fields": { "name": "Umbral Storm", "desc": "You create a channel to a region of the Plane of Shadow that is inimical to life and order. A storm of dark, raging entropy fills a 20-foot-radius sphere centered on a point you can see within range. Any creature that starts its turn in the storm or enters it for the first time on its turn takes 6d8 necrotic damage and gains one level of exhaustion; a successful Constitution saving throw halves the damage and prevents the exhaustion.\n\nYou can use a bonus action on your turn to move the area of the storm 30 feet in any direction.", - "document": "deep-magic", + "document": "deepm", "level": 9, "school": "necromancy", "higher_level": "", @@ -15077,7 +15077,7 @@ "fields": { "name": "Uncontrollable Transformation", "desc": "You infuse your body with raw chaos and will it to adopt a helpful mutation. Roll a d10 and consult the Uncontrollable Transformation table below to determine what mutation occurs. You can try to control the shifting of your body to gain a mutation you prefer, but doing so is taxing; you can roll a d10 twice and choose the result you prefer, but you gain one level of exhaustion. At the end of the spell, your body returns to its normal form.\n", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you gain an additional mutation for each slot level above 7th. You gain one level of exhaustion for each mutation you try to control.\n ## Uncontrollable Transformation \n| D10 | Mutation |\n|-|-|\n| 1 | A spindly third arm sprouts from your shoulder. As a bonus action, you can use it to attack with a light weapon. You have advantage on Dexterity (Sleight of Hand) checks and any checks that require the manipulation of tools. |\n| 2 | Your skin is covered by rough scales that increase your AC by 1 and give you resistance to a random damage type (roll on the Damage Type table). |\n| 3 | A puckered orifice grows on your back. You can forcefully expel air from it, granting you a flying speed of 30 feet. You must land at the end of your turn. In addition, as a bonus action, you can try to push a creature away with a blast of air. The target is pushed 5 feet away from you if it fails a Strength saving throw with a DC equal to 10 + your Constitution modifier. |\n| 4 | A second face appears on the back of your head. You gain darkvision out to a range of 120 feet and advantage on sight‐based and scent-based Wisdom (Perception) checks. You become adept at carrying on conversations with yourself. |\n| 5 | You grow gills that not only allow you to breathe underwater but also filter poison out of the air. You gain immunity to inhaled poisons. |\n| 6 | Your hindquarters elongate, and you grow a second set of legs. Your base walking speed increases by 10 feet, and your carrying capacity becomes your Strength score multiplied by 20. |\n| 7 | You become incorporeal and can move through other creatures and objects as if they were difficult terrain. You take 1d10 force damage if you end your turn inside an object. You can’t pick up or interact with physical objects that you weren’t carrying when you became incorporeal. |\n| 8 | Your limbs elongate and flatten into prehensile paddles. You gain a swimming speed equal to your base walking speed and have advantage on Strength (Athletics) checks made to climb or swim. In addition, your unarmed strikes deal 1d6 bludgeoning damage. |\n| 9 | Your head fills with a light gas and swells to four times its normal size, causing your hair to fall out. You have advantage on Intelligence and Wisdom ability checks and can levitate up to 5 feet above the ground. |\n| 10 | You grow three sets of feathered wings that give you a flying speed equal to your walking speed and the ability to hover. |\n\n ## Damage Type \n\n| d10 | Damage Type |\n|-|-|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |\n\n", @@ -15108,7 +15108,7 @@ "fields": { "name": "Undermine Armor", "desc": "You unravel the bonds of reality that hold a suit of armor together. A target wearing armor must succeed on a Constitution saving throw or its armor softens to the consistency of candle wax, decreasing the target’s AC by 2.\n\n**Undermine armor** has no effect on creatures that aren’t wearing armor.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -15139,7 +15139,7 @@ "fields": { "name": "Unholy Defiance", "desc": "Until the spell ends, undead creatures within range have advantage on saving throws against effects that turn undead. If an undead creature within this area has the Turning Defiance trait, that creature can roll a d4 when it makes a saving throw against an effect that turns undead and add the number rolled to the saving throw.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "necromancy", "higher_level": "", @@ -15170,7 +15170,7 @@ "fields": { "name": "Unleash Effigy", "desc": "You cause a stone statue that you can see within 60 feet of you to animate as your ally. The statue has the statistics of a [stone golem](https://api.open5e.com/monsters/stone-golem). It takes a turn immediately after your turn. As a bonus action on your turn, you can order the golem to move and attack, provided you’re within 60 feet of it. Without orders from you, the statue does nothing.\n\nWhenever the statue has 75 hit points or fewer at the start of your turn or it is more than 60 feet from you at the start of your turn, you must make a successful DC 16 spellcasting check or the statue goes berserk. On each of its turns, the berserk statue attacks you or one of your allies. If no creature is near enough to be attacked, the statue dashes toward the nearest one instead. Once the statue goes berserk, it remains berserk until it’s destroyed.\n\nWhen the spell ends, the animated statue reverts to a normal, mundane statue.", - "document": "deep-magic", + "document": "deepm", "level": 9, "school": "transmutation", "higher_level": "", @@ -15201,7 +15201,7 @@ "fields": { "name": "Unluck On That", "desc": "By uttering a swift curse (“Unluck on that!”), you bring misfortune to the target’s attempt; the affected creature has disadvantage on the roll.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the range of the spell increases by 5 feet for each slot level above 1st.", @@ -15232,7 +15232,7 @@ "fields": { "name": "Unseen Strangler", "desc": "You conjure an immaterial, tentacled aberration in an unoccupied space you can see within range, and you specify a password that the phantom recognizes. The entity remains where you conjured it until the spell ends, until you dismiss it as an action, or until you move more than 80 feet from it.\n\nThe strangler is invisible to all creatures except you, and it can’t be harmed. When a Small or larger creature approaches within 30 feet of it without speaking the password that you specified, the strangler starts whispering your name. This whispering is always audible to you, regardless of other sounds in the area, as long as you’re conscious. The strangler sees invisible creatures and can see into the Ethereal Plane. It ignores illusions.\n\nIf any creatures hostile to you are within 5 feet of the strangler at the start of your turn, the strangler attacks one of them with a tentacle. It makes a melee weapon attack with a bonus equal to your spellcasting ability modifier + your proficiency bonus. On a hit, it deals 3d6 bludgeoning damage, and a Large or smaller creature is grappled (escape DC = your spellcasting ability modifier + your proficiency bonus). Until this grapple ends, the target is restrained, and the strangler can’t attack another target. If the strangler scores a critical hit, the target begins to suffocate and can’t speak until the grapple ends.", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "conjuration", "higher_level": "", @@ -15263,7 +15263,7 @@ "fields": { "name": "Vine Trestle", "desc": "You cause a vine to sprout from the ground and crawl across a surface or rise into the air in a direction chosen by you. The vine must sprout from a solid surface (such as the ground or a wall), and it is strong enough to support 600 pounds of weight along its entire length. The vine collapses immediately if that 600-pound limit is exceeded. A vine that collapses from weight or damage instantly disintegrates.\n\nThe vine has many small shoots, so it can be climbed with a successful DC 5 Strength (Athletics) check. It has AC 8, hit points equal to 5 × your spellcasting level, and a damage threshold of 5.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the vine can support an additional 30 pounds, and its damage threshold increases by 1 for each slot level above 2nd.\n\n***Ritual Focus.*** If you expend your ritual focus, the vine is permanent until destroyed or dispelled.", @@ -15294,7 +15294,7 @@ "fields": { "name": "Visage of Madness", "desc": "When you cast this spell, your face momentarily becomes that of a demon lord, frightful enough to drive enemies mad. Every foe that’s within 30 feet of you and that can see you must make a Wisdom saving throw. On a failed save, a creature claws savagely at its eyes, dealing piercing damage to itself equal to 1d6 + the creature’s Strength modifier. The creature is also stunned until the end of its next turn and blinded for 1d4 rounds. A creature that rolls maximum damage against itself (a 6 on the d6) is blinded permanently.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "enchantment", "higher_level": "", @@ -15325,7 +15325,7 @@ "fields": { "name": "Vital Mark", "desc": "You mark an unattended magic item (including weapons and armor) with a clearly visible stain of your blood. The exact appearance of the bloodstain is up to you. The item’s magical abilities don’t function for anyone else as long as the bloodstain remains on it. For example, a **+1 flaming longsword** with a vital mark functions as a nonmagical longsword in the hands of anyone but the caster, but it still functions as a **+1 flaming longsword** for the caster who placed the bloodstain on it. A [wand of magic missiles](https://api.open5e.com/spells/wand-of-magic-missiles) would be no more than a stick in the hands of anyone but the caster.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher on the same item for 28 consecutive days, the effect becomes permanent until dispelled.", @@ -15356,7 +15356,7 @@ "fields": { "name": "Void Rift", "desc": "You speak a hideous string of Void Speech that leaves your mouth bloodied, causing a rift into nothingness to tear open. The rift takes the form of a 10-foot-radius sphere, and it forms around a point you can see within range. The area within 40 feet of the sphere’s outer edge becomes difficult terrain as the Void tries to draw everything into itself. A creature that starts its turn within 40 feet of the sphere or that enters that area for the first time on its turn must succeed on a Strength saving throw or be pulled 15 feet toward the rift. A creature that starts its turn in the rift or that comes into contact with it for the first time on its turn takes 8d10 necrotic damage. Creatures inside the rift are blinded and deafened. Unattended objects within 40 feet of the rift are drawn 15 feet toward it at the start of your turn, and they take damage as creatures if they come into contact with it.\n\nWhile concentrating on the spell, you take 2d6 necrotic damage at the end of each of your turns.", - "document": "deep-magic", + "document": "deepm", "level": 9, "school": "evocation", "higher_level": "", @@ -15389,7 +15389,7 @@ "fields": { "name": "Void Strike", "desc": "With a short phrase of Void Speech, you gather writhing darkness around your hand. When you cast the spell, and as an action on subsequent turns while you maintain concentration, you can unleash a bolt of darkness at a creature within range. Make a ranged spell attack. If the target is in dim light or darkness, you have advantage on the roll. On a hit, the target takes 5d8 necrotic damage and is frightened of you until the start of your next turn.\n", - "document": "deep-magic", + "document": "deepm", "level": 3, "school": "evocation", "higher_level": "When you cast the spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", @@ -15422,7 +15422,7 @@ "fields": { "name": "Volley Shield", "desc": "You touch a willing creature and create a shimmering shield of energy to protect it. The shield grants the target a +5 bonus to AC and gives it resistance against nonmagical bludgeoning, piercing, and slashing damage for the duration of the spell.\n\nIn addition, the shield can reflect hostile spells back at their casters. When the target makes a successful saving throw against a hostile spell, the caster of the spell immediately becomes the spell’s new target. The caster is entitled to the appropriate saving throw against the returned spell, if any, and is affected by the spell as if it came from a spellcaster of the caster’s level.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "abjuration", "higher_level": "", @@ -15453,7 +15453,7 @@ "fields": { "name": "Vomit Tentacles", "desc": "Your jaws distend and dozens of thin, slimy tentacles emerge from your mouth to grasp and bind your opponents. Make a melee spell attack against a foe within 15 feet of you. On a hit, the target takes bludgeoning damage equal to 2d6 + your Strength modifier and is grappled (escape DC equal to your spell save DC). Until this grapple ends, the target is restrained and it takes the same damage at the start of each of your turns. You can grapple only one creature at a time.\n\nThe Armor Class of the tentacles is equal to yours. If they take slashing damage equal to 5 + your Constitution modifier from a single attack, enough tentacles are severed to enable a grappled creature to escape. Severed tentacles are replaced by new ones at the start of your turn. Damage dealt to the tentacles doesn’t affect your hit points.\n\nWhile the spell is in effect, you are incapable of speech and can’t cast spells that have verbal components.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "transmutation", "higher_level": "", @@ -15484,7 +15484,7 @@ "fields": { "name": "Voorish Sign", "desc": "For the duration, invisible creatures and objects within 20 feet of you become visible to you, and you have advantage on saving throws against effects that cause the frightened condition. The effect moves with you, remaining centered on you until the duration expires.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "divination", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the radius increases by 5 feet for every two slot levels above 1st.", @@ -15515,7 +15515,7 @@ "fields": { "name": "Waft", "desc": "This spell was first invented by dragon parents to assist their offspring when learning to fly. You gain a flying speed of 60 feet for 1 round. At the start of your next turn, you float rapidly down and land gently on a solid surface beneath you.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "", @@ -15546,7 +15546,7 @@ "fields": { "name": "Walk the Twisted Path", "desc": "When you cast this spell, you and up to five creatures you can see within 20 feet of you enter a shifting landscape of endless walls and corridors that connect to many places throughout the world.\n\nYou can find your way to a destination within 100 miles, as long as you know for certain that your destination exists (though you don’t need to have seen or visited it before), and you must make a successful DC 20 Intelligence check. If you have the ability to retrace a path you have previously taken without making a check (as a minotaur or a goristro can), this check automatically succeeds. On a failed check, you don't find your path this round, and you and your companions each take 4d6 psychic damage as the madness of the shifting maze exacts its toll. You must repeat the check at the start of each of your turns until you find your way to your destination or until you die. In either event, the spell ends.\n\nWhen the spell ends, you and those traveling with you appear in a safe location at your destination.\n", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can bring along two additional creatures or travel an additional 100 miles for each slot level above 6th.", @@ -15577,7 +15577,7 @@ "fields": { "name": "Walking Wall", "desc": "This spell creates a wall of swinging axes from the pile of miniature axes you provide when casting the spell. The wall fills a rectangle 10 feet wide, 10 feet high, and 20 feet long. The wall has a base speed of 50 feet, but it can’t take the Dash action. It can make up to four attacks per round on your turn, using your spell attack modifier to hit and with a reach of 10 feet. You direct the wall’s movement and attacks as a bonus action. If you choose not to direct it, the wall continues trying to execute the last command you gave it. The wall can’t use reactions. Each successful attack deals 4d6 slashing damage, and the damage is considered magical.\n\nThe wall has AC 12 and 200 hit points, and is immune to necrotic, poison, psychic, and piercing damage. If it is reduced to 0 hit points or when the spell’s duration ends, the wall disappears and the miniature axes fall to the ground in a tidy heap.", - "document": "deep-magic", + "document": "deepm", "level": 7, "school": "transmutation", "higher_level": "", @@ -15608,7 +15608,7 @@ "fields": { "name": "Wall of Time", "desc": "You create a wall of shimmering, transparent blocks on a solid surface within range. You can make a straight wall up to 60 feet long, 20 feet high, and 1 foot thick, or a cylindrical wall up to 20 feet high, 1 foot thick, and 20 feet in diameter. Nonmagical ranged attacks that cross the wall vanish into the time stream with no other effect. Ranged spell attacks and ranged weapon attacks made with magic weapons that pass through the wall are made with disadvantage. A creature that intentionally enters or passes through the wall is affected as if it had just failed its initial saving throw against a [slow](https://api.open5e.com/spells/slow) spell.", - "document": "deep-magic", + "document": "deepm", "level": 5, "school": "abjuration", "higher_level": "", @@ -15639,7 +15639,7 @@ "fields": { "name": "Warning Shout", "desc": "You sense danger before it happens and call out a warning to an ally. One creature you can see and that can hear you gains advantage on its initiative roll.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "divination", "higher_level": "", @@ -15670,7 +15670,7 @@ "fields": { "name": "Warp Mind and Matter", "desc": "A creature you can see within range undergoes a baleful transmogrification. The target must make a successful Wisdom saving throw or suffer a flesh warp and be afflicted with a form of indefinite madness.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "transmutation", "higher_level": "", @@ -15701,7 +15701,7 @@ "fields": { "name": "Weapon of Blood", "desc": "When you cast this spell, you inflict 1d4 slashing damage on yourself that can’t be healed until after the blade created by this spell is destroyed or the spell ends. The trickling blood transforms into a dagger of red metal that functions as a **+1 dagger**.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 3rd to 5th level, the self-inflicted wound deals 3d4 slashing damage and the spell produces a **+2 dagger**. When you cast this spell using a spell slot of 6th to 8th level, the self-inflicted wound deals 6d4 slashing damage and the spell produces a **+2 dagger of wounding**. When you cast this spell using a 9th-level spell slot, the self-inflicted wound deals 9d4 slashing damage and the spell produces a **+3 dagger of wounding**.", @@ -15732,7 +15732,7 @@ "fields": { "name": "Weiler’s Ward", "desc": "You create four small orbs of faerie magic that float around your head and give off dim light out to a radius of 15 feet. Whenever a Large or smaller enemy enters that area of dim light, or starts its turn in the area, you can use your reaction to attack it with one or more of the orbs. The enemy creature makes a Charisma saving throw. On a failed save, the creature is pushed 20 feet directly away from you, and each orb you used in the attack explodes violently, dealing 1d6 force damage to the creature.\n", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the number of orbs increases by one for each slot level above 2nd.", @@ -15763,7 +15763,7 @@ "fields": { "name": "Wild Shield", "desc": "You surround yourself with the forces of chaos. Wild lights and strange sounds engulf you, making stealth impossible. While **wild shield** is active, you can use a reaction to repel a spell of 4th level or lower that targets you or whose area you are within. A repelled spell has no effect on you, but doing this causes the chance of a chaos magic surge as if you had cast a spell, with you considered the caster for any effect of the surge.\n\n**Wild shield** ends when the duration expires or when it absorbs 4 levels of spells. If you try to repel a spell whose level exceeds the number of levels remaining, make an ability check using your spellcasting ability. The DC equals 10 + the spell’s level – the number of levels **wild shield** can still repel. If the check succeeds, the spell is repelled; if the check fails, the spell has its full effect. The chance of a chaos magic surge exists regardless of whether the spell is repelled.\n", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "abjuration", "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can repel one additional spell level for each slot level above 4th.", @@ -15794,7 +15794,7 @@ "fields": { "name": "Wind Lash", "desc": "Your swift gesture creates a solid lash of howling wind. Make a melee spell attack against the target. On a hit, the target takes 1d8 slashing damage from the shearing wind and is pushed 5 feet away from you.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "evocation", "higher_level": "The spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", @@ -15827,7 +15827,7 @@ "fields": { "name": "Wind of the Hereafter", "desc": "You create a 30-foot-radius sphere of roiling wind that carries the choking stench of death. The sphere is centered on a point you choose within range. The wind blows around corners. When a creature starts its turn in the sphere, it takes 8d8 necrotic damage, or half as much damage if it makes a successful Constitution saving throw. Creatures are affected even if they hold their breath or don’t need to breathe.\n\nThe sphere moves 10 feet away from you at the start of each of your turns, drifting along the surface of the ground. It is not heavier than air but drifts in a straight line for the duration of the spell, even if that carries it over a cliff or gully. If the sphere meets a wall or other impassable obstacle, it turns to the left or right (select randomly).", - "document": "deep-magic", + "document": "deepm", "level": 8, "school": "conjuration", "higher_level": "", @@ -15860,7 +15860,7 @@ "fields": { "name": "Wind Tunnel", "desc": "You create a swirling tunnel of strong wind extending from yourself in a direction you choose. The tunnel is a line 60 feet long and 10 feet wide. The wind blows from you toward the end of the line, which is stationary once created. A creature in the line moving with the wind (away from you) adds 10 feet to its speed, and ranged weapon attacks launched with the wind don’t have disadvantage because of long range. Creatures in the line moving against the wind (toward you) spend 2 feet of movement for every 1 foot they move, and ranged weapon attacks launched along the line against the wind are made with disadvantage.\n\nThe wind tunnel immediately disperses gas or vapor, and it extinguishes candles, torches, and similar unprotected flames in the line. It causes protected flames, such as those of lanterns, to dance wildly and has a 50 percent chance of extinguishing them.", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "evocation", "higher_level": "", @@ -15891,7 +15891,7 @@ "fields": { "name": "Winterdark", "desc": "This spell invokes the deepest part of night on the winter solstice. You target a 40-foot-radius, 60-foot-high cylinder centered on a point within range, which is plunged into darkness and unbearable cold. Each creature in the area when you cast the spell and at the start of its turn must make a successful Constitution saving throw or take 1d6 cold damage and gain one level of exhaustion. Creatures immune to cold damage are also immune to the exhaustion effect, as are creatures wearing cold weather gear or otherwise adapted for a cold environment.\n\nAs a bonus action, you can move the center of the effect 20 feet.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "transmutation", "higher_level": "", @@ -15922,7 +15922,7 @@ "fields": { "name": "Winter's Radiance", "desc": "When you cast this spell, the piercing rays of a day’s worth of sunlight reflecting off fresh snow blankets the area. A creature caught in the spell’s area must succeed on a Constitution saving throw or have disadvantage on ranged attacks and Wisdom (Perception) checks for the duration of the spell. In addition, an affected creature’s vision is hampered such that foes it targets are treated as having three-quarters cover.", - "document": "deep-magic", + "document": "deepm", "level": 6, "school": "evocation", "higher_level": "", @@ -15953,7 +15953,7 @@ "fields": { "name": "Wintry Glide", "desc": "Upon casting wintry glide, you can travel via ice or snow without crossing the intervening space. If you are adjacent to a mass of ice or snow, you can enter it by expending 5 feet of movement. By expending another 5 feet of movement, you can immediately exit from that mass at any point—within 500 feet—that’s part of the contiguous mass of ice or snow. When you enter the ice or snow, you instantly know the extent of the material within 500 feet. You must have at least 10 feet of movement available when you cast the spell, or it fails.\n\nIf the mass of ice or snow is destroyed while you are transiting it, you must make a successful Constitution saving throw against your spell save DC to avoid taking 4d6 bludgeoning damage and falling prone at the midpoint of a line between your entrance point and your intended exit point.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "conjuration", "higher_level": "", @@ -15984,7 +15984,7 @@ "fields": { "name": "Withered Sight", "desc": "You cause the eyes of a creature you can see within range to lose acuity. The target must make a Constitution saving throw. On a failed save, the creature has disadvantage on Wisdom (Perception) checks and all attack rolls for the duration of the spell. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This spell has no effect on a creature that is blind or that doesn’t use its eyes to see.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", @@ -16015,7 +16015,7 @@ "fields": { "name": "Wolfsong", "desc": "You emit a howl that can be heard clearly from 300 feet away outdoors. The howl can convey a message of up to nine words, which can be understood by all dogs and wolves in that area, as well as (if you choose) one specific creature of any kind that you name when casting the spell.\n\nIf you cast the spell indoors and aboveground, the howl can be heard out to 200 feet from you. If you cast the spell underground, the howl can be heard from 100 feet away. A creature that understands the message is not compelled to act in a particular way, though the nature of the message might suggest or even dictate a course of action.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can name another specific recipient for each slot level above 2nd.", @@ -16046,7 +16046,7 @@ "fields": { "name": "Word of Misfortune", "desc": "You hiss a word of Void Speech. Choose one creature you can see within range. The next time the target makes a saving throw during the spell’s duration, it must roll a d4 and subtract the result from the total of the saving throw. The spell then ends.", - "document": "deep-magic", + "document": "deepm", "level": 0, "school": "enchantment", "higher_level": "", @@ -16077,7 +16077,7 @@ "fields": { "name": "Wresting Wind", "desc": "By blowing a pinch of confetti from your cupped hand, you create a burst of air that can rip weapons and other items out of the hands of your enemies. Each enemy in a 20-foot radius centered on a point you target within range must make a successful Strength saving throw or drop anything held in its hands. The objects land 10 feet away from the creatures that dropped them, in random directions.", - "document": "deep-magic", + "document": "deepm", "level": 2, "school": "evocation", "higher_level": "", @@ -16108,7 +16108,7 @@ "fields": { "name": "Writhing Arms", "desc": "Your arms become constantly writhing tentacles. You can use your action to make a melee spell attack against any target within range. The target takes 1d10 necrotic damage and is grappled (escape DC is your spell save DC). If the target does not escape your grapple, you can use your action on each subsequent turn to deal 1d10 necrotic damage to the target automatically.\n\nAlthough you control the tentacles, they make it difficult to manipulate items. You cannot wield weapons or hold objects, including material components, while under the effects of this spell.\n", - "document": "deep-magic", + "document": "deepm", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage you deal with your tentacle attack increases by 1d10 for each slot level above 1st.", @@ -16141,7 +16141,7 @@ "fields": { "name": "Yellow Sign", "desc": "You attempt to afflict a humanoid you can see within range with memories of distant, alien realms and their peculiar inhabitants. The target must make a successful Wisdom saving throw or be afflicted with a form of long-term madness and be charmed by you for the duration of the spell or until you or one of your allies harms it in any way. While charmed in this way, the creature regards you as a sacred monarch. If you or an ally of yours is fighting the creature, it has advantage on its saving throw.\n\nA successful [remove curse](https://api.open5e.com/spells/remove-curse) spell ends both effects.", - "document": "deep-magic", + "document": "deepm", "level": 4, "school": "enchantment", "higher_level": "", diff --git a/data/v2/kobold-press/vault-of-magic/Document.json b/data/v2/kobold-press/vom/Document.json similarity index 100% rename from data/v2/kobold-press/vault-of-magic/Document.json rename to data/v2/kobold-press/vom/Document.json diff --git a/data/v2/kobold-press/vault-of-magic/Item.json b/data/v2/kobold-press/vom/Item.json similarity index 100% rename from data/v2/kobold-press/vault-of-magic/Item.json rename to data/v2/kobold-press/vom/Item.json diff --git a/data/v2/kobold-press/vault-of-magic/magicitems.json_ b/data/v2/kobold-press/vom/magicitems.json_ similarity index 100% rename from data/v2/kobold-press/vault-of-magic/magicitems.json_ rename to data/v2/kobold-press/vom/magicitems.json_ From 6c53594343b82a169e2333d94e0e95b5e2cf6e90 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 27 Apr 2024 07:17:39 -0500 Subject: [PATCH 08/84] Rekeying deep magic extended. --- .../{deep-magic => deepm}/CastingOption.json | 0 .../{deep-magic => deepm}/Document.json | 0 .../{deep-magic => deepm}/Spell.json | 0 .../{dmag-e => deepmx}/CastingOption.json | 0 .../{dmag-e => deepmx}/Document.json | 2 +- .../{dmag-e => deepmx}/Spell.json | 128 +++++++++--------- 6 files changed, 65 insertions(+), 65 deletions(-) rename data/v2/kobold-press/{deep-magic => deepm}/CastingOption.json (100%) rename data/v2/kobold-press/{deep-magic => deepm}/Document.json (100%) rename data/v2/kobold-press/{deep-magic => deepm}/Spell.json (100%) rename data/v2/kobold-press/{dmag-e => deepmx}/CastingOption.json (100%) rename data/v2/kobold-press/{dmag-e => deepmx}/Document.json (94%) rename data/v2/kobold-press/{dmag-e => deepmx}/Spell.json (97%) diff --git a/data/v2/kobold-press/deep-magic/CastingOption.json b/data/v2/kobold-press/deepm/CastingOption.json similarity index 100% rename from data/v2/kobold-press/deep-magic/CastingOption.json rename to data/v2/kobold-press/deepm/CastingOption.json diff --git a/data/v2/kobold-press/deep-magic/Document.json b/data/v2/kobold-press/deepm/Document.json similarity index 100% rename from data/v2/kobold-press/deep-magic/Document.json rename to data/v2/kobold-press/deepm/Document.json diff --git a/data/v2/kobold-press/deep-magic/Spell.json b/data/v2/kobold-press/deepm/Spell.json similarity index 100% rename from data/v2/kobold-press/deep-magic/Spell.json rename to data/v2/kobold-press/deepm/Spell.json diff --git a/data/v2/kobold-press/dmag-e/CastingOption.json b/data/v2/kobold-press/deepmx/CastingOption.json similarity index 100% rename from data/v2/kobold-press/dmag-e/CastingOption.json rename to data/v2/kobold-press/deepmx/CastingOption.json diff --git a/data/v2/kobold-press/dmag-e/Document.json b/data/v2/kobold-press/deepmx/Document.json similarity index 94% rename from data/v2/kobold-press/dmag-e/Document.json rename to data/v2/kobold-press/deepmx/Document.json index 31cda88d..93c80f5b 100644 --- a/data/v2/kobold-press/dmag-e/Document.json +++ b/data/v2/kobold-press/deepmx/Document.json @@ -1,7 +1,7 @@ [ { "model": "api_v2.document", - "pk": "dmag-e", + "pk": "deepmx", "fields": { "name": "Deep Magic Extended", "desc": "?", diff --git a/data/v2/kobold-press/dmag-e/Spell.json b/data/v2/kobold-press/deepmx/Spell.json similarity index 97% rename from data/v2/kobold-press/dmag-e/Spell.json rename to data/v2/kobold-press/deepmx/Spell.json index 61607226..7c7f8543 100644 --- a/data/v2/kobold-press/dmag-e/Spell.json +++ b/data/v2/kobold-press/deepmx/Spell.json @@ -5,7 +5,7 @@ "fields": { "name": "Absolute Command", "desc": "Deep Magic: clockwork You can control a construct you have built with a challenge rating of 6 or less. You can manipulate objects with your construct as precisely as its construction allows, and you perceive its surroundings through its sensory inputs as if you inhabited its body. The construct uses the caster's Proficiency bonus (modified by the construct's Strength and Dexterity scores). You can use the manipulators of the construct to perform any number of skill-based tasks, using the construct's Strength and Dexterity modifiers when using skills based on those particular abilities. Your body remains immobile, as if paralyzed, for the duration of the spell. The construct must remain within 100 feet of you. If it moves beyond this distance, the spell immediately ends and the caster's mind returns to his or her body.", - "document": "dmag-e", + "document": "deepmx", "level": 4, "school": "transmutation", "higher_level": "When you cast this spell using higher-level spell slots, you may control a construct with a challenge rating 2 higher for each slot level you use above 4th. The construct's range also increases by 10 feet for each slot level.", @@ -36,7 +36,7 @@ "fields": { "name": "Amplify Ley Field", "desc": "You create a faintly shimmering field of charged energy around yourself. Within that area, the intensity of ley lines you're able to draw on increases from weak to strong, or from strong to titanic. If no ley lines are near enough for you to draw on, you can treat the area of the spell itself as an unlocked, weak ley line.", - "document": "dmag-e", + "document": "deepmx", "level": 5, "school": "evocation", "higher_level": "", @@ -67,7 +67,7 @@ "fields": { "name": "Animate Construct", "desc": "Deep Magic: clockwork This spell animates a carefully prepared construct of Tiny size. The object acts immediately, on your turn, and can attack your opponents to the best of its ability. You can direct it not to attack, to attack particular enemies, or to perform other actions. You choose the object to animate, and you can change that choice each time you cast the spell. The cost of the body to be animated is 10 gp x its hit points. The body can be reused any number of times, provided it isn't severely damaged or destroyed. If no prepared construct body is available, you can animate a mass of loose metal or stone instead. Before casting, the loose objects must be arranged in a suitable shape (taking up to a minute), and the construct's hit points are halved. An animated construct has a Constitution of 10, Intelligence and Wisdom 3, and Charisma 1. Other characteristics are determined by the construct's size as follows. Size HP AC Attack STR DEX Spell Slot Tiny 15 12 +3, 1d4+4 4 16 1st Small 25 13 +4, 1d8+2 6 14 2nd Medium 40 14 +5, 2d6+1 10 12 3rd Large 50 15 +6, 2d10+2 14 10 4th Huge 80 16 +8, 2d12+4 18 8 5th Gargantuan 100 17 +10, 4d8+6 20 6 6th", - "document": "dmag-e", + "document": "deepmx", "level": 1, "school": "transmutation", "higher_level": "Casting this spell using higher level spell slots allows you to increase the size of the construct animated, as shown on the table.", @@ -98,7 +98,7 @@ "fields": { "name": "Anomalous Object", "desc": "Deep Magic: temporal By touching an object, you retrieve another version of the object from elsewhere in time. If the object is attended, you must succeed on a melee spell attack roll against the creature holding or controlling the object. Any effect that affects the original object also affects the duplicate (charges spent, damage taken, etc.) and any effect that affects the duplicate also affects the original object. If either object is destroyed, both are destroyed. This spell does not affect sentient items or unique artifacts.", - "document": "dmag-e", + "document": "deepmx", "level": 7, "school": "conjuration", "higher_level": "", @@ -129,7 +129,7 @@ "fields": { "name": "Armored Heart", "desc": "Deep Magic: clockwork The targeted creature gains resistance to bludgeoning, slashing, and piercing damage. This resistance can be overcome with adamantine or magical weapons.", - "document": "dmag-e", + "document": "deepmx", "level": 1, "school": "conjuration", "higher_level": "", @@ -160,7 +160,7 @@ "fields": { "name": "Armored Shell", "desc": "Deep Magic: clockwork This spell creates a suit of magical studded leather armor (AC 12). It does not grant you proficiency in its use. Casters without the appropriate armor proficiency suffer disadvantage on any ability check, saving throw, or attack roll that involves Strength or Dexterity and cannot cast spells.", - "document": "dmag-e", + "document": "deepmx", "level": 1, "school": "conjuration", "higher_level": "Casting armored shell using a higher-level spell slot creates stronger armor: a chain shirt (AC 13) at level 2, scale mail (AC 14) at level 3, chain mail (AC 16) at level 4, and plate armor (AC 18) at level 5.", @@ -191,7 +191,7 @@ "fields": { "name": "Banshee Wail", "desc": "You emit a soul-shattering wail. Every creature within a 30-foot cone who hears the wail must make a Wisdom saving throw. Those that fail take 6d10 psychic damage and become frightened of you; a frightened creature repeats the saving throw at the end of its turn, ending the effect on itself on a success. Those that succeed take 3d10 psychic damage and aren't frightened. This spell has no effect on constructs and undead.", - "document": "dmag-e", + "document": "deepmx", "level": 6, "school": "necromancy", "higher_level": "", @@ -222,7 +222,7 @@ "fields": { "name": "Beguiling Gift", "desc": "Deep Magic: hieroglyph You implant a powerful suggestion into an item as you hand it to someone. If the person you hand it to accepts it willingly, they must make a successful Wisdom saving throw or use the object as it's meant to be used at their first opportunity: writing with a pen, consuming food or drink, wearing clothing, drawing a weapon, etc. After the first use, they're under no compulsion to continue using the object or even to keep it.", - "document": "dmag-e", + "document": "deepmx", "level": 1, "school": "enchantment", "higher_level": "", @@ -253,7 +253,7 @@ "fields": { "name": "Borrowing", "desc": "By touching a target, you gain one sense, movement type and speed, feat, language, immunity, or extraordinary ability of the target for the duration of the spell. The target also retains the use of the borrowed ability. An unwilling target prevents the effect with a successful Constitution saving throw. The target can be a living creature or one that's been dead no longer than 1 minute; a corpse makes no saving throw. You can possess only one borrowed power at a time.", - "document": "dmag-e", + "document": "deepmx", "level": 3, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 5th level, its duration increases to 1 hour. Additionally, the target loses the stolen power for the duration of the spell.", @@ -284,7 +284,7 @@ "fields": { "name": "Call the Hunter", "desc": "Deep Magic: clockwork You detach a portion of your soul to become the embodiment of justice in the form of a clockwork outsider known as a Zelekhut who will serve at your commands for the duration, so long as those commands are consistent with its desire to punish wrongdoers. You may give the creature commands as a bonus action; it acts either immediately before or after you.", - "document": "dmag-e", + "document": "deepmx", "level": 8, "school": "conjuration", "higher_level": "", @@ -315,7 +315,7 @@ "fields": { "name": "Circle of Devestation", "desc": "You create a 10-foot tall, 20-foot radius ring of destructive energy around a point you can see within range. The area inside the ring is difficult terrain. When you cast the spell and as a bonus action on each of your turns, you can choose one of the following damage types: cold, fire, lightning, necrotic, or radiant. Creatures and objects that touch the ring, that are inside it when it's created, or that end their turn inside the ring take 6d6 damage of the chosen type, or half damage with a successful Constitution saving throw. A creature or object reduced to 0 hit points by the spell is reduced to fine ash. At the start of each of your subsequent turns, the ring's radius expands by 20 feet. Any creatures or objects touched by the expanding ring are subject to its effects immediately.", - "document": "dmag-e", + "document": "deepmx", "level": 9, "school": "evocation", "higher_level": "", @@ -346,7 +346,7 @@ "fields": { "name": "Cloying Darkness", "desc": "You reach out with a hand of decaying shadows. Make a ranged spell attack. If it hits, the target takes 2d8 necrotic damage and must make a Constitution saving throw. If it fails, its visual organs are enveloped in shadow until the start of your next turn, causing it to treat all lighting as if it's one step lower in intensity (it treats bright light as dim, dim light as darkness, and darkness as magical darkness).", - "document": "dmag-e", + "document": "deepmx", "level": 1, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", @@ -379,7 +379,7 @@ "fields": { "name": "Cosmic Alignment", "desc": "Deep Magic: illumination You arrange the forces of the cosmos to your benefit. Choose a cosmic event from the Comprehension of the Starry Sky ability that affects spellcasting (conjunction, eclipse, or nova; listed after the spell). You cast spells as if under the effect of the cosmic event until the next sunrise or 24 hours have passed. When the ability requires you to expend your insight, you expend your ritual focus instead. This spell must be cast outdoors, and the casting of this spell is obvious to everyone within 100 miles of its casting when an appropriate symbol, such as a flaming comet, appears in the sky above your location while you are casting the spell. Conjunction: Planetary conjunctions destabilize minds and emotions. You can give one creature you can see disadvantage on a saving throw against one enchantment or illusion spell cast by you. Eclipse: Eclipses plunge the world into darkness and strengthen connections to the shadow plane. When you cast a spell of 5th level or lower that causes necrotic damage, you can reroll a number of damage dice up to your Intelligence modifier (minimum of one). You must use the new rolls. Nova: The nova is a powerful aid to divination spells. You can treat one divination spell you cast as though you had used a spell slot one level higher than the slot actually used.", - "document": "dmag-e", + "document": "deepmx", "level": 9, "school": "conjuration", "higher_level": "", @@ -410,7 +410,7 @@ "fields": { "name": "Cruor of Visions", "desc": "You prick your finger with a bone needle as you cast this spell, taking 1 necrotic damage. This drop of blood must be caught in a container such as a platter or a bowl, where it grows into a pool 1 foot in diameter. This pool acts as a crystal ball for the purpose of scrying. If you place a drop (or dried flakes) of another creature's blood in the cruor of visions, the creature has disadvantage on any Wisdom saving throw to resist scrying. Additionally, you can treat the pool of blood as a crystal ball of telepathy (see the crystal ball description in the Fifth Edition rules). I When you cast this spell using a spell slot of 7th level or higher, the pool of blood acts as either a crystal ball of mind reading or a crystal ball of true seeing (your choice when the spell is cast).", - "document": "dmag-e", + "document": "deepmx", "level": 5, "school": "divination", "higher_level": "", @@ -441,7 +441,7 @@ "fields": { "name": "Extract Foyson", "desc": "You extract the goodness in food, pulling all the nutrition out of three days' worth of meals and concentrating it into about a tablespoon of bland, flourlike powder. The flour can be mixed with liquid and drunk or baked into elven bread. Foyson used in this way still imparts all the nutritional value of the original food, for the amount consumed. The original food appears unchanged and though it's still filling, it has no nutritional value. Someone eating nothing but foyson-free food will eventually starve.", - "document": "dmag-e", + "document": "deepmx", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, an additional three meals' worth of food can be extracted for each slot level above 1st. Ritual Focus. If you expend your ritual focus, you can choose to have each day's worth of foyson take the form of a slice of delicious elven bread.", @@ -472,7 +472,7 @@ "fields": { "name": "Find the Flaw", "desc": "Deep Magic: clockwork You touch one creature. The next attack roll that creature makes against a clockwork or metal construct, or any machine, is a critical hit.", - "document": "dmag-e", + "document": "deepmx", "level": 1, "school": "divination", "higher_level": "", @@ -503,7 +503,7 @@ "fields": { "name": "Gear Shield", "desc": "Deep Magic: clockwork You cause a handful of gears to orbit the target's body. These shield the spell's target from incoming attacks, granting a +2 bonus to AC and to Dexterity and Constitution saving throws for the duration, without hindering the subject's movement, vision, or outgoing attacks.", - "document": "dmag-e", + "document": "deepmx", "level": 1, "school": "abjuration", "higher_level": "", @@ -534,7 +534,7 @@ "fields": { "name": "Gift of Azathoth", "desc": "Deep Magic: void magic A willing creature you touch is imbued with the persistence of ultimate Chaos. Until the spell ends, the target has advantage on the first three death saving throws it attempts.", - "document": "dmag-e", + "document": "deepmx", "level": 2, "school": "enchantment", "higher_level": "When you cast this spell using a spell slot of 5th, 6th, or 7th level, the duration increases to 48 hours. When you cast this spell using a spell slot of 8th or 9th level, the duration increases to 72 hours.", @@ -565,7 +565,7 @@ "fields": { "name": "Greater Ley Pulse", "desc": "You set up ley energy vibrations in a 20-foot cube within range, and name one type of damage. Each creature in the area must succeed on a Wisdom saving throw or lose immunity to the chosen damage type for the duration.", - "document": "dmag-e", + "document": "deepmx", "level": 7, "school": "transmutation", "higher_level": "When you cast this spell using a 9th-level spell slot, choose two damage types instead of one.", @@ -596,7 +596,7 @@ "fields": { "name": "Gremlins", "desc": "Deep Magic: clockwork You target a construct and summon a plague of invisible spirits to harass it. The target resists the spell and negates its effect with a successful Wisdom saving throw. While the spell remains in effect, the construct has disadvantage on attack rolls, ability checks, and saving throws, and it takes 3d8 force damage at the start of each of its turns as it is magically disassembled by the spirits.", - "document": "dmag-e", + "document": "deepmx", "level": 4, "school": "conjuration", "higher_level": "When you cast this spell using a spell slot of 5th or higher, the damage increases by 1d8 for each slot above 4th.", @@ -629,7 +629,7 @@ "fields": { "name": "Grinding Gears", "desc": "Deep Magic: clockwork You designate a spot within range, and massive gears emerge from the ground at that spot, creating difficult terrain in a 20-foot radius. Creatures that move in the area must make successful Dexterity saving throws after every 10 feet of movement or when they stand up. Failure indicates that the creature falls prone and takes 1d8 points of bludgeoning damage.", - "document": "dmag-e", + "document": "deepmx", "level": 4, "school": "evocation", "higher_level": "", @@ -662,7 +662,7 @@ "fields": { "name": "Hearth Charm", "desc": "This spell makes flammable material burn twice as long as normal.", - "document": "dmag-e", + "document": "deepmx", "level": 1, "school": "transmutation", "higher_level": "", @@ -693,7 +693,7 @@ "fields": { "name": "Hellforging", "desc": "Deep Magic: clockwork You spend an hour calling forth a disembodied evil spirit. At the end of that time, the summoned spirit must make a Charisma saving throw. If the saving throw succeeds, you take 2d10 psychic damage plus 2d10 necrotic damage from waves of uncontrolled energy rippling out from the disembodied spirit. You can maintain the spell, forcing the subject to repeat the saving throw at the end of each of your turns, with the same consequence to you for each failure. If you choose not to maintain the spell or are unable to do so, the evil spirit returns to its place of torment and cannot be recalled. If the saving throw fails, the summoned spirit is transferred into the waiting soul gem and immediately animates the constructed body. The subject is now a hellforged; it loses all of its previous racial traits and gains gearforged traits except as follows: Vulnerability: Hellforged are vulnerable to radiant damage. Evil Mind: Hellforged have disadvantage on saving throws against spells and abilities of evil fiends or aberrations that effect the mind or behavior. Past Life: The hellforged retains only a vague sense of who it was in its former existence, but these memories are enough for it to gain proficiency in one skill. Languages: Hellforged speak Common, Machine Speech, and Infernal or Abyssal Up to four other spellcasters of at least 5th level can assist you in the ritual. Each assistant increases the DC of the Charisma saving throw by 1. In the event of a failed saving throw, the spellcaster and each assistant take damage. An assistant who drops out of the casting can't rejoin.", - "document": "dmag-e", + "document": "deepmx", "level": 7, "school": "necromancy", "higher_level": "", @@ -724,7 +724,7 @@ "fields": { "name": "Hod's Gift", "desc": "The target gains blindsight to a range of 60 feet.", - "document": "dmag-e", + "document": "deepmx", "level": 5, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the duration is increased by 1 hour for every slot above 5th level.", @@ -755,7 +755,7 @@ "fields": { "name": "Imbue Spell", "desc": "Deep Magic: clockwork You imbue a spell of 1st thru 3rd level that has a casting time of instantaneous onto a gear worth 100 gp per level of spell you are imbuing. At the end of the ritual, the gear is placed into a piece of clockwork that includes a timer or trigger mechanism. When the timer or trigger goes off, the spell is cast. If the range of the spell was Touch, it effects only a target touching the device. If the spell had a range in feet, the spell is cast on the closest viable target within range, based on the nature of the spell. Spells with a range of Self or Sight can't be imbued. If the gear is placed with a timer, it activates when the time elapses regardless of whether a legitimate target is available.", - "document": "dmag-e", + "document": "deepmx", "level": 5, "school": "transmutation", "higher_level": "You can perform this ritual as a 7th-level spell to imbue a spell of 4th or 5th level.", @@ -786,7 +786,7 @@ "fields": { "name": "Jotun's Jest", "desc": "Giants never tire of having fun with this spell. It causes a weapon or other item to vastly increase in size, temporarily becoming sized for a Gargantuan creature. The item weighs 12 times its original weight and in most circumstances cannot be used effectively by creatures smaller than Gargantuan size. The item retains its usual qualities (including magical powers and effects) and returns to normal size when the spell ends.", - "document": "dmag-e", + "document": "deepmx", "level": 4, "school": "transmutation", "higher_level": "", @@ -817,7 +817,7 @@ "fields": { "name": "Land Bond", "desc": "You touch a willing creature and infuse it with ley energy, creating a bond between the creature and the land. For the duration of the spell, if the target is in contact with the ground, the target has advantage on saving throws and ability checks made to avoid being moved or knocked prone against its will. Additionally, the creature ignores nonmagical difficult terrain and is immune to effects from extreme environments such as heat, cold (but not cold or fire damage), and altitude.", - "document": "dmag-e", + "document": "deepmx", "level": 1, "school": "transmutation", "higher_level": "", @@ -848,7 +848,7 @@ "fields": { "name": "Lesser Ley Pulse", "desc": "You set up ley energy vibrations in a 10-foot cube within range, and name one type of damage. Each creature in the area must make a successful Wisdom saving throw or lose resistance to the chosen damage type for the duration of the spell.", - "document": "dmag-e", + "document": "deepmx", "level": 5, "school": "transmutation", "higher_level": "When you cast this spell using a 7th-level spell slot, choose two damage types instead of one.", @@ -879,7 +879,7 @@ "fields": { "name": "Ley Disruption", "desc": "You create a 15-foot-radius sphere filled with disruptive ley energy. The sphere is centered around a point you can see within range. Surfaces inside the sphere shift erratically, becoming difficult terrain for the duration. Any creature in the area when it appears, that starts its turn in the area, or that enters the area for the first time on a turn must succeed on a Dexterity saving throw or fall prone. If you cast this spell in an area within the influence of a ley line, creatures have disadvantage on their saving throws against its effect. Special. A geomancer with a bound ley line is “within the influence of a ley line” for purposes of ley disruption as long as he or she is on the same plane as the bound line.", - "document": "dmag-e", + "document": "deepmx", "level": 2, "school": "evocation", "higher_level": "", @@ -910,7 +910,7 @@ "fields": { "name": "Ley Energy Bolt", "desc": "You transform ambient ley power into a crackling bolt of energy 100 feet long and 5 feet wide. Each creature in the line takes 5d8 force damage, or half damage with a successful Dexterity saving throw. The bolt passes through the first inanimate object in its path, and creatures on the other side of the obstacle receive no bonus to their saving throw from cover. The bolt stops if it strikes a second object.", - "document": "dmag-e", + "document": "deepmx", "level": 3, "school": "evocation", "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bolt's damage increases by 1d8 for each slot level above 3rd.", @@ -943,7 +943,7 @@ "fields": { "name": "Ley Leech", "desc": "You channel destructive ley energy through your touch. Make a melee spell attack against a creature within your reach. The target takes 8d10 necrotic damage and must succeed on a Constitution saving throw or have disadvantage on attack rolls, saving throws, and ability checks. An affected creature repeats the saving throw at the end of its turn, ending the effect on itself with a success. This spell has no effect against constructs or undead.", - "document": "dmag-e", + "document": "deepmx", "level": 5, "school": "necromancy", "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the spell's damage increases by 1d10 for each slot level above 5th.", @@ -976,7 +976,7 @@ "fields": { "name": "Ley Sense", "desc": "You tune your senses to the pulse of ambient ley energy flowing through the world. For the duration, you gain tremorsense with a range of 20 feet and you are instantly aware of the presence of any ley line within 5 miles. You know the distance and direction to every ley line within that range.", - "document": "dmag-e", + "document": "deepmx", "level": 3, "school": "divination", "higher_level": "", @@ -1007,7 +1007,7 @@ "fields": { "name": "Ley Storm", "desc": "A roiling stormcloud of ley energy forms, centered around a point you can see and extending horizontally to a radius of 360 feet, with a thickness of 30 feet. Shifting color shoots through the writhing cloud, and thunder roars out of it. Each creature under the cloud at the moment when it's created (no more than 5,000 feet beneath it) takes 2d6 thunder damage and is disruptive aura spell. Rounds 5-10. Flashes of multicolored light burst through and out of the cloud, causing creatures to have disadvantage on Wisdom (Perception) checks that rely on sight while they are beneath the cloud. In addition, each round, you trigger a burst of energy that fills a 20-foot sphere centered on a point you can see beneath the cloud. Each creature in the sphere takes 4d8 force damage (no saving throw). Special. A geomancer who casts this spell regains 4d10 hit points.", - "document": "dmag-e", + "document": "deepmx", "level": 9, "school": "conjuration", "higher_level": "", @@ -1040,7 +1040,7 @@ "fields": { "name": "Ley Surge", "desc": "You unleash the power of a ley line within 5 miles, releasing a spark that flares into a 30-foot sphere centered around a point within 150 feet of you. Each creature in the sphere takes 14d6 force damage and is stunned for 1 minute; a successful Constitution saving throw halves the damage and negates the stun. A stunned creature repeats the saving throw at the end of its turn, ending the effect on itself on a success. Special. A geomancer with a bound ley line can cast this spell as long as he or she is on the same plane as the bound line.", - "document": "dmag-e", + "document": "deepmx", "level": 9, "school": "evocation", "higher_level": "", @@ -1073,7 +1073,7 @@ "fields": { "name": "Ley Whip", "desc": "You channel the power of a ley line within 1 mile into a crackling tendril of multicolored ley energy. The tendril extends from your hand but doesn't interfere with your ability to hold or manipulate objects. When you cast the spell and as a bonus action on subsequent turns, you can direct the tendril to strike a target within 50 feet of you. Make a melee spell attack; on a hit, the tendril does 3d8 force damage and the target must make a Strength saving throw. If the saving throw fails, you can push the target away or pull it closer, up to 10 feet in either direction. Special. A geomancer with a bound ley line can cast this spell as long as he or she is on the same plane as the bound line.", - "document": "dmag-e", + "document": "deepmx", "level": 6, "school": "evocation", "higher_level": "", @@ -1104,7 +1104,7 @@ "fields": { "name": "Loki's Gift", "desc": "Loki's gift makes even the most barefaced lie seem strangely plausible: you gain advantage to Charisma (Deception) checks for whatever you're currently saying. If your Deception check fails, the creature knows that you tried to manipulate it with magic. If you lie to a creature that has a friendly attitude toward you and it fails a Charisma saving throw, you can also coax him or her to reveal a potentially embarrassing secret. The secret can involve wrongdoing (adultery, cheating at tafl, a secret fear, etc.) but not something life-threatening or dishonorable enough to earn the subject repute as a nithling. The verbal component of this spell is the lie you are telling.", - "document": "dmag-e", + "document": "deepmx", "level": 1, "school": "enchantment", "higher_level": "", @@ -1135,7 +1135,7 @@ "fields": { "name": "Machine Sacrifice", "desc": "Deep Magic: clockwork You sacrifice a willing construct you can see to imbue a willing target with construct traits. The target gains resistance to all nonmagical damage and gains immunity to the blinded, charmed, deafened, frightened, petrified, and poisoned conditions.", - "document": "dmag-e", + "document": "deepmx", "level": 8, "school": "necromancy", "higher_level": "", @@ -1166,7 +1166,7 @@ "fields": { "name": "Machine Speech", "desc": "Deep Magic: clockwork Your voice, and to a lesser extent your mind, changes to communicate only in the whirring clicks of machine speech. Until the end of your next turn, all clockwork spells you cast have advantage on their attack rolls or the targets have disadvantage on their saving throws.", - "document": "dmag-e", + "document": "deepmx", "level": 1, "school": "transmutation", "higher_level": "", @@ -1197,7 +1197,7 @@ "fields": { "name": "Machine's Load", "desc": "Deep Magic: clockwork You touch a creature and give it the capacity to carry, lift, push, or drag weight as if it were one size category larger. If you're using the encumbrance rules, the target is not subject to penalties for weight. Furthermore, the subject can carry loads that would normally be unwieldy.", - "document": "dmag-e", + "document": "deepmx", "level": 1, "school": "transmutation", "higher_level": "When you cast this spell using a spell slot higher than 1st, you can touch one additional creature for each spell level.", @@ -1228,7 +1228,7 @@ "fields": { "name": "Mass Blade Ward", "desc": "You make a protective gesture toward your allies. Choose three creatures that you can see within range. Until the end of your next turn, the targets have resistance against bludgeoning, piercing, and slashing damage from weapon attacks. If a target moves farther than 30 feet from you, the effect ends for that creature.", - "document": "dmag-e", + "document": "deepmx", "level": 2, "school": "abjuration", "higher_level": "", @@ -1259,7 +1259,7 @@ "fields": { "name": "Mass Repair Metal", "desc": "Deep Magic: clockwork As repair metal, but you can affect all metal within range. You repair 1d8 + 5 damage to a metal object or construct by sealing up rents and bending metal back into place.", - "document": "dmag-e", + "document": "deepmx", "level": 5, "school": "transmutation", "higher_level": "Casting mass repair metal as a 6th-level spell repairs 2d8 + 10 damage.", @@ -1290,7 +1290,7 @@ "fields": { "name": "Mechanical Union", "desc": "Deep Magic: clockwork You can take control of a construct by voice or mental commands. The construct makes a Wisdom saving throw to resist the spell, and it gets advantage on the saving throw if its CR equals or exceeds your level in the class used to cast this spell. Once a command is given, the construct does everything it can to complete the command. Giving a new command takes an action. Constructs will risk harm, even go into combat, on your orders but will not self-destruct; giving such an order ends the spell.", - "document": "dmag-e", + "document": "deepmx", "level": 5, "school": "transmutation", "higher_level": "", @@ -1321,7 +1321,7 @@ "fields": { "name": "Molech's Blessing", "desc": "Deep Magic: clockwork ritual You call upon the dark blessings of the furnace god Molech. In an hour-long ritual begun at midnight, you dedicate a living being to Molech by branding the deity's symbol onto the victim's forehead. If the ritual is completed and the victim fails to make a successful Wisdom saving throw (or the victim chooses not to make one), the being is transformed into an avatar of Molech under your control. The avatar is 8 feet tall and appears to be made of black iron wreathed in flames. Its eyes, mouth, and a portion of its torso are cut away to show the churning fire inside that crackles with wailing voices. The avatar has all the statistics and abilities of an earth elemental, with the following differences: Alignment is Neutral Evil; Speed is 50 feet and it cannot burrow or use earth glide; it gains the fire form ability of a fire elemental, but it cannot squeeze through small spaces; its Slam does an additional 1d10 fire damage. This transformation lasts for 24 hours. At the end of that time, the subject returns to its normal state and takes 77 (14d10) fire damage, or half damage with a successful DC 15 Constitution saving throw.", - "document": "dmag-e", + "document": "deepmx", "level": 7, "school": "transmutation", "higher_level": "", @@ -1354,7 +1354,7 @@ "fields": { "name": "Move the Cosmic Wheel", "desc": "Deep Magic: clockwork You wind your music box and call forth a piece of another plane of existence with which you are familiar, either through personal experience or intense study. The magic creates a bubble of space with a 30-foot radius within range of you and at a spot you designate. The portion of your plane that's inside the bubble swaps places with a corresponding portion of the plane your music box is attuned with. There is a 10% chance that the portion of the plane you summon arrives with native creatures on it. Inanimate objects and non-ambulatory life (like trees) are cut off at the edge of the bubble, while living creatures that don't fit inside the bubble are shunted outside of it before the swap occurs. Otherwise, creatures from both planes that are caught inside the bubble are sent along with their chunk of reality to the other plane for the duration of the spell unless they make a successful Charisma saving throw when the spell is cast; with a successful save, a creature can choose whether to shift planes with the bubble or leap outside of it a moment before the shift occurs. Any natural reaction between the two planes occurs normally (fire spreads, water flows, etc.) while energy (such as necrotic energy) leaks slowly across the edge of the sphere (no more than a foot or two per hour). Otherwise, creatures and effects can move freely across the boundary of the sphere; for the duration of the spell, it becomes a part of its new location to the fullest extent possible, given the natures of the two planes. The two displaced bubbles shift back to their original places automatically after 24 hours. Note that the amount of preparation involved (acquiring and attuning the music box) precludes this spell from being cast on the spur of the moment. Because of its unpredictable and potentially wide-ranging effect, it's also advisable to discuss your interest in this spell with your GM before adding it to your character's repertoire.", - "document": "dmag-e", + "document": "deepmx", "level": 8, "school": "conjuration", "higher_level": "", @@ -1385,7 +1385,7 @@ "fields": { "name": "Overclock", "desc": "Deep Magic: clockwork You cause a targeted piece of clockwork to speed up past the point of control for the duration of the spell. The targeted clockwork can't cast spells with verbal components or even communicate effectively (all its utterances sound like grinding gears). At the start of each of its turns, the target must make a Wisdom saving throw. If the saving throw fails, the clockwork moves at three times its normal speed in a random direction and its turn ends; it can't perform any other actions. If the saving throw succeeds, then until the end of its turn, the clockwork's speed is doubled and it gains an additional action, which must be Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object. When the spell ends, the clockwork takes 2d8 force damage. It also must be rewound or refueled and it needs to have its daily maintenance performed immediately, if it relies on any of those things.", - "document": "dmag-e", + "document": "deepmx", "level": 3, "school": "transmutation", "higher_level": "", @@ -1418,7 +1418,7 @@ "fields": { "name": "Power Word Restore", "desc": "Deep Magic: clockwork You speak a word of power, and energy washes over a single construct you touch. The construct regains all of its lost hit points, all negative conditions on the construct end, and it can use a reaction to stand up, if it was prone.", - "document": "dmag-e", + "document": "deepmx", "level": 8, "school": "evocation", "higher_level": "", @@ -1449,7 +1449,7 @@ "fields": { "name": "Read Memory", "desc": "Deep Magic: clockwork You copy the memories of one memory gear into your own mind. You recall these memories as if you had experienced them but without any emotional attachment or context.", - "document": "dmag-e", + "document": "deepmx", "level": 4, "school": "divination", "higher_level": "", @@ -1480,7 +1480,7 @@ "fields": { "name": "Repair Metal", "desc": "Deep Magic: clockwork A damaged construct or metal object regains 1d8 + 5 hit points when this spell is cast on it.", - "document": "dmag-e", + "document": "deepmx", "level": 2, "school": "transmutation", "higher_level": "The spell restores 2d8 + 10 hit points at 4th level, 3d8 + 15 at 6th level, and 4d8 + 20 at 8th level.", @@ -1511,7 +1511,7 @@ "fields": { "name": "Risen Road", "desc": "When you cast this spell, you open a glowing portal into the plane of shadow. The portal remains open for 1 minute, until 10 creatures step through it, or until you collapse it (no action required). Stepping through the portal places you on a shadow road leading to a destination within 50 miles, or in a direction specified by you. The road is in ideal condition. You and your companions can travel it safely at a normal pace, but you can't rest on the road; if you stop for more than 10 minutes, the spell expires and dumps you back into the real world at a random spot within 10 miles of your starting point. The spell expires 2d6 hours after being cast. When that happens, travelers on the road are safely deposited near their specified destination or 50 miles from their starting point in the direction that was specified when the spell was cast. Travelers never incur exhaustion no matter how many hours they spent walking or riding on the shadow road. The temporary shadow road ceases to exist; anything left behind is lost in the shadow realm. Each casting of risen road creates a new shadow road. A small chance exists that a temporary shadow road might intersect with an existing shadow road, opening the possibility for meeting other travelers or monsters, or for choosing a different destination mid-journey. The likelihood is entirely up to the GM.", - "document": "dmag-e", + "document": "deepmx", "level": 4, "school": "transmutation", "higher_level": "", @@ -1542,7 +1542,7 @@ "fields": { "name": "Robe of Shards", "desc": "Deep Magic: clockwork You create a robe of metal shards, gears, and cogs that provides a base AC of 14 + your Dexterity modifier. As a bonus action while protected by a robe of shards, you can command bits of metal from a fallen foe to be absorbed by your robe; each infusion of metal increases your AC by 1, to a maximum of 18 + Dexterity modifier. You can also use a bonus action to dispel the robe, causing it to explode into a shower of flying metal that does 8d6 slashing damage, +1d6 per point of basic (non-Dexterity) AC above 14, to all creatures within 30 feet of you.", - "document": "dmag-e", + "document": "deepmx", "level": 6, "school": "abjuration", "higher_level": "", @@ -1573,7 +1573,7 @@ "fields": { "name": "Shadow Realm Gateway", "desc": "By drawing a circle of black chalk up to 15 feet in diameter and chanting for one minute, you open a portal directly into the Shadow Realm. The portal fills the chalk circle and appears as a vortex of inky blackness; nothing can be seen through it. Any object or creature that passes through the portal instantly arrives safely in the Shadow Realm. The portal remains open for one minute or until you lose concentration on it, and it can be used to travel between the Shadow Realm and the chalk circle, in both directions, as many times as desired during the spell's duration. This spell can only be cast as a ritual.", - "document": "dmag-e", + "document": "deepmx", "level": 5, "school": "conjuration", "higher_level": "", @@ -1604,7 +1604,7 @@ "fields": { "name": "Shield of Star and Shadow", "desc": "You wrap yourself in a protective shroud of the night sky made from swirling shadows punctuated with twinkling motes of light. The shroud grants you resistance against either radiant or necrotic damage (choose when the spell is cast). You also shed dim light in a 10-foot radius. You can end the spell early by using an action to dismiss it.", - "document": "dmag-e", + "document": "deepmx", "level": 3, "school": "abjuration", "higher_level": "", @@ -1635,7 +1635,7 @@ "fields": { "name": "Snowblind Stare", "desc": "Your eyes burn with a bright, cold light that inflicts snow blindness on a creature you target within 30 feet of you. If the target fails a Constitution saving throw, it suffers the first stage of snow blindness (see [Conditions](https://api.open5e.com/sections/conditions)), or the second stage of snow blindness if it already has the first stage. The target recovers as described in [Conditions](https://api.open5e.com/sections/conditions).", - "document": "dmag-e", + "document": "deepmx", "level": 2, "school": "necromancy", "higher_level": "", @@ -1666,7 +1666,7 @@ "fields": { "name": "Soothsayer's Shield", "desc": "This spell can be cast when you are hit by an enemy's attack. Until the start of your next turn, you have a +4 bonus to AC, including against the triggering attack.", - "document": "dmag-e", + "document": "deepmx", "level": 2, "school": "divination", "higher_level": "", @@ -1697,7 +1697,7 @@ "fields": { "name": "Soul of the Machine", "desc": "Deep Magic: clockwork One willing creature you touch becomes immune to mind-altering effects and psychic damage for the spell's duration.", - "document": "dmag-e", + "document": "deepmx", "level": 3, "school": "abjuration", "higher_level": "", @@ -1728,7 +1728,7 @@ "fields": { "name": "Sphere of Order", "desc": "Deep Magic: clockwork You surround yourself with the perfect order of clockwork. Chaotic creatures that start their turn in the area or enter it on their turn take 5d8 psychic damage. The damage is 8d8 for Chaotic aberrations, celestials, elementals, and fiends. A successful Wisdom saving throw halves the damage, but Chaotic creatures (the only ones affected by the spell) make the saving throw with disadvantage.", - "document": "dmag-e", + "document": "deepmx", "level": 6, "school": "evocation", "higher_level": "", @@ -1759,7 +1759,7 @@ "fields": { "name": "Spire of Stone", "desc": "You cause a spire of rock to burst out of the ground, floor, or another surface beneath your feet. The spire is as wide as your space, and lifting you, it can rise up to 20 feet in height. When the spire appears, a creature within 5 feet of you must succeed on a Dexterity saving throw or fall prone. As a bonus action on your turn, you can cause the spire to rise or descend up to 20 feet to a maximum height of 40 feet. If you move off of the spire, it immediately collapses back into the ground. When the spire disappears, it leaves the surface from which it sprang unharmed. You can create a new spire as a bonus action for the duration of the spell.", - "document": "dmag-e", + "document": "deepmx", "level": 2, "school": "conjuration", "higher_level": "", @@ -1790,7 +1790,7 @@ "fields": { "name": "Strength of the Underworld", "desc": "You call on the power of the dark gods of the afterlife to strengthen the target's undead energy. The spell's target has advantage on saving throws against Turn Undead while the spell lasts. If this spell is cast on a corpse that died from darakhul fever, the corpse gains a +5 bonus on its roll to determine whether it rises as a darakhul.", - "document": "dmag-e", + "document": "deepmx", "level": 3, "school": "necromancy", "higher_level": "", @@ -1821,7 +1821,7 @@ "fields": { "name": "Summon Old One's Avatar", "desc": "Deep Magic: void magic You summon a worldly incarnation of a Great Old One, which appears in an unoccupied space you can see within range. This avatar manifests as a Void speaker (Creature Codex NPC) augmented by boons from the Void. Choose one of the following options for the type of avatar that appears (other options might be available if the GM allows): Avatar of Cthulhu. The Void speaker is a goat-man with the ability to cast black goat's blessing and unseen strangler at will. Avatar of Yog-Sothoth. The Void speaker is a human with 1d4 + 1 flesh warps and the ability to cast gift of Azathoth and thunderwave at will. When the avatar appears, you must make a Charisma saving throw. If it succeeds, the avatar is friendly to you and your allies. If it fails, the avatar is friendly to no one and attacks the nearest creature to it, pursuing and fighting for as long as possible. Roll initiative for the avatar, which takes its own turn. If friendly to you, it obeys verbal commands you issue to it (no action required by you). If the avatar has no command, it attacks the nearest creature. Each round you maintain concentration on the spell, you must make a successful DC 15 Wisdom saving throw or take 1d6 psychic damage. If the cumulative total of this damage exceeds your Wisdom score, you gain one point of Void taint and you are afflicted with a short-term madness. The same penalty recurs when the damage exceeds twice your Wisdom, three times your Wisdom, etc. The avatar disappears when it drops to 0 hit points or when the spell ends. If you stop concentrating on the spell before an hour has elapsed, the avatar becomes uncontrolled and hostile and doesn't disappear until 1d6 rounds later or it's killed.", - "document": "dmag-e", + "document": "deepmx", "level": 9, "school": "conjuration", "higher_level": "", @@ -1852,7 +1852,7 @@ "fields": { "name": "Tick Stop", "desc": "Deep Magic: clockwork You speak a word and the target construct can take one action or bonus action on its next turn, but not both. The construct is immune to further tick stops from the same caster for 24 hours.", - "document": "dmag-e", + "document": "deepmx", "level": 0, "school": "transmutation", "higher_level": "", @@ -1883,7 +1883,7 @@ "fields": { "name": "Timeless Engine", "desc": "Deep Magic: clockwork You halt the normal processes of degradation and wear in a nonmagical clockwork device, making normal maintenance unnecessary and slowing fuel consumption to 1/10th of normal. For magical devices and constructs, the spell greatly reduces wear. A magical clockwork device, machine, or creature that normally needs daily maintenance only needs care once a year; if it previously needed monthly maintenance, it now requires attention only once a decade.", - "document": "dmag-e", + "document": "deepmx", "level": 7, "school": "transmutation", "higher_level": "", @@ -1914,7 +1914,7 @@ "fields": { "name": "Winding Key", "desc": "Deep Magic: clockwork You target a construct, giving it an extra action or move on each of its turns.", - "document": "dmag-e", + "document": "deepmx", "level": 2, "school": "transmutation", "higher_level": "", @@ -1945,7 +1945,7 @@ "fields": { "name": "Wotan's Rede", "desc": "You recite a poem in the Northern tongue, sent to your lips by Wotan himself, to gain supernatural insight or advice. Your next Intelligence or Charisma check within 1 minute is made with advantage, and you can include twice your proficiency bonus. At the GM's discretion, this spell can instead provide a piece of general advice equivalent to an contact other plane.", - "document": "dmag-e", + "document": "deepmx", "level": 2, "school": "divination", "higher_level": "", @@ -1976,7 +1976,7 @@ "fields": { "name": "Write Memory", "desc": "Deep Magic: clockwork You copy your memories, or those learned from the spell read memory, onto an empty memory gear.", - "document": "dmag-e", + "document": "deepmx", "level": 4, "school": "transmutation", "higher_level": "", From 6be3686dd355a440e87bdebc782ebebe70eb9212 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 27 Apr 2024 07:21:20 -0500 Subject: [PATCH 09/84] Fixing a bad folder. --- data/v2/open5e/{o5e => open5e}/CastingOption.json | 0 data/v2/open5e/{o5e => open5e}/Document.json | 0 data/v2/open5e/{o5e => open5e}/Spell.json | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename data/v2/open5e/{o5e => open5e}/CastingOption.json (100%) rename data/v2/open5e/{o5e => open5e}/Document.json (100%) rename data/v2/open5e/{o5e => open5e}/Spell.json (100%) diff --git a/data/v2/open5e/o5e/CastingOption.json b/data/v2/open5e/open5e/CastingOption.json similarity index 100% rename from data/v2/open5e/o5e/CastingOption.json rename to data/v2/open5e/open5e/CastingOption.json diff --git a/data/v2/open5e/o5e/Document.json b/data/v2/open5e/open5e/Document.json similarity index 100% rename from data/v2/open5e/o5e/Document.json rename to data/v2/open5e/open5e/Document.json diff --git a/data/v2/open5e/o5e/Spell.json b/data/v2/open5e/open5e/Spell.json similarity index 100% rename from data/v2/open5e/o5e/Spell.json rename to data/v2/open5e/open5e/Spell.json From a032fc8b6e58901dc06242385017cf8456a6894f Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 27 Apr 2024 07:48:09 -0500 Subject: [PATCH 10/84] Duplicates. --- data/v2/en-publishing/a5esrd/Document.json | 19 - data/v2/en-publishing/a5esrd/Feat.json | 882 --------------------- 2 files changed, 901 deletions(-) delete mode 100644 data/v2/en-publishing/a5esrd/Document.json delete mode 100644 data/v2/en-publishing/a5esrd/Feat.json diff --git a/data/v2/en-publishing/a5esrd/Document.json b/data/v2/en-publishing/a5esrd/Document.json deleted file mode 100644 index bafe91bc..00000000 --- a/data/v2/en-publishing/a5esrd/Document.json +++ /dev/null @@ -1,19 +0,0 @@ -[ -{ - "model": "api_v2.document", - "pk": "a5esrd", - "fields": { - "name": "A5E System Reference Document", - "desc": "Advanced 5th Edition System Reference Document by EN Publishing", - "publisher": "en-publishing", - "ruleset": "a5e", - "author": "EN Publishing", - "published_at": "2023-08-15T02:02:32", - "permalink": "https://a5esrd.com/a5esrd", - "licenses": [ - "cc-by-40", - "ogl-10a" - ] - } -} -] diff --git a/data/v2/en-publishing/a5esrd/Feat.json b/data/v2/en-publishing/a5esrd/Feat.json deleted file mode 100644 index 8b8f79f6..00000000 --- a/data/v2/en-publishing/a5esrd/Feat.json +++ /dev/null @@ -1,882 +0,0 @@ -[ -{ - "model": "api_v2.feat", - "pk": "a-symbol-that-strikes-fear", - "fields": { - "name": "A Symbol That Strikes Fear", - "desc": "Creatures with a CR lower than your alter ego’s Prestige rating are frightened of you while you are in your alter ego. In addition, you become particularly adept at subduing your enemies rather than outright killing them. Whenever you begin a turn grappling a creature, you can attempt to non-lethally subdue it. The grappled creature makes a Constitution saving throw against your maneuver DC. On a failed saving throw, a creature is knocked unconscious for the next hour. A creature with more than 25% of its maximum hit points automatically succeeds on this saving throw.", - "prerequisite": "Equipped for Justice feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "a5e-grappler", - "fields": { - "name": "Grappler", - "desc": "* You gain advantage on attack rolls against a creature you are grappling.\r\n* You can use your action to try to pin a creature you are grappling. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", - "prerequisite": "Strength 13 or higher", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "ace-driver", - "fields": { - "name": "Ace Driver", - "desc": "You are a virtuoso of driving and piloting vehicles, able to push them beyond their normal limits and maneuver them with fluid grace through hazardous situations. You gain the following benefits:\r\n* You gain an expertise die on ability checks made to drive or pilot a vehicle.\r\n* While piloting a vehicle, you can use your reaction to take the Brake or Maneuver vehicle actions.\r\n* A vehicle you load can carry 25% more cargo than normal.\r\n* Vehicles you are piloting only suffer a malfunction when reduced to 25% of their hit points, not 50%. In addition, when the vehicle does suffer a malfunction, you roll twice on the maneuver table and choose which die to use for the result.\r\n* Vehicles you are piloting gain a bonus to their Armor Class equal to half your proficiency bonus.\r\n* When you Brake, you can choose to immediately stop the vehicle without traveling half of its movement speed directly forward.", - "prerequisite": "Proficiency with a type of vehicle", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "arcanum-master", - "fields": { - "name": "Arcanum Master", - "desc": "Whenever you cast a spell that deals damage, you may choose the type of damage that spell deals and the appearance of the spell’s effects.", - "prerequisite": "Pure Arcanist feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "arrow-enchanter", - "fields": { - "name": "Arrow Enchanter", - "desc": "Whenever you make a ranged weapon attack, you can choose to expend a 1st-level or higher spell slot to enhance the attack to be empowered or unerring. You cannot enhance more than one attack in a\r\nturn in this way. \r\n**Empowered.** The shot deals an additional 2d6 force damage, and an additional 1d6 force damage for each spell slot level above 1st. \r\n**Unerring.** The shot gains a +2 bonus to the attack roll, and an additional +2 bonus for each spell slot level above 1st.", - "prerequisite": "Eldritch Archer feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "athletic", - "fields": { - "name": "Athletic", - "desc": "Your enhanced physical training grants you the following benefits:\r\n\r\n* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* When you are prone, standing up uses only 5 feet of your movement (instead of half).\r\n* Your speed is not halved from climbing.\r\n* You can make a running long jump or a running high jump after moving 5 feet on foot (instead of 10 feet).", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "attentive", - "fields": { - "name": "Attentive", - "desc": "Always aware of your surroundings, you gain the following benefits:\r\n\r\n* When rolling initiative you gain a +5 bonus.\r\n* You can only be surprised if you are unconscious. A creature attacking you does not gain advantage from being hidden from you or unseen by you.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "battle-caster", - "fields": { - "name": "Battle Caster", - "desc": "You're comfortable casting, even in the chaos of battle.\r\n\r\n* You gain a 1d6 expertise die on concentration checks to maintain spells you have cast.\r\n* While wielding weapons and shields, you may cast spells with a seen component.\r\n* Instead of making an opportunity attack with a weapon, you may use your reaction to cast a spell with a casting time of 1 action. The spell must be one that only targets that creature.", - "prerequisite": "Requires the ability to cast at least one spell of 1st-level or higher", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "brutal-attack", - "fields": { - "name": "Brutal Attack", - "desc": "After making a melee attack, you may reroll any weapon damage and choose the better result. This feat can be used no more than once per turn.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "bull-rush", - "fields": { - "name": "Bull Rush", - "desc": "Your headlong rush devastates your foes. After dashing (with the Dash Action) at least ten feet towards a foe, you may perform a bonus action to select one of the following options.\r\n**Attack.** Make one melee weapon attack, dealing an extra 5 damage on a hit. \r\n**Shove.** Use the Shove maneuver, pushing the target 10 feet directly away on a success.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "combat-thievery", - "fields": { - "name": "Combat Thievery", - "desc": "You know how to trade blows for more than inflicting harm.\r\n\r\n* You gain proficiency with the Deceptive Stance and Painful Pickpocket maneuvers, and do not have to spend exertion to activate them.\r\n* You gain an expertise die on Sleight of Hand checks.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "covert-training", - "fields": { - "name": "Covert Training", - "desc": "You have absorbed some of the lessons of the world of spies, criminals, and others who operate in the shadows. You gain the following benefits:\r\n\r\n* You gain proficiency with thieves' tools, the poisoner's kit, or a rare weapon with the stealthy property.\r\n* You gain two skill tricks of your choice from the rogue class.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "crafting-expert", - "fields": { - "name": "Crafting Expert", - "desc": "You have devoted time to studying and practicing the art of crafting, gaining the following benefits: This feat can be selected multiple times, choosing a different type of crafted item each time.\r\n\r\n* Choose one of the following types of crafted item: armor, engineered items, potions, rings and rods, staves and wands, weapons, wondrous items. You gain advantage on checks made to craft, maintain, and repair that type of item.\r\n* You gain an expertise die on checks made to craft, maintain, and repair items.\r\n* You gain proficiency with two tools of your choice.\r\n\r\nThis feat can be selected multiple times, choosing a different type of crafted item each time.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "crossbow-expertise", - "fields": { - "name": "Crossbow Expertise", - "desc": "* If proficient with a crossbow, you ignore its loading property.\r\n* You do not have disadvantage on ranged attack rolls from being within 5 feet of a hostile creature.\r\n* When you attack with a one-handed weapon using the Attack action, you can use a bonus action to \r\nattack with a hand crossbow wielded in your off-hand.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "deadeye", - "fields": { - "name": "Deadeye", - "desc": "Your natural talent or skill makes you lethal with a ranged weapon.\r\n\r\n* You gain proficiency with the Farshot Stance and Ricochet maneuvers, and do not have to spend exertion to activate them. \r\n* Before you make an attack with a ranged weapon you are proficient with, you can choose to take a penalty on the attack roll equal to your proficiency bonus. If the attack hits, you deal extra damage equal to double your proficiency bonus. This extra damage does not double on a critical hit.\r\n* You ignore half cover and three-quarters cover when making a ranged weapon attack.", - "prerequisite": "8th level or higher", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "deflector", - "fields": { - "name": "Deflector", - "desc": "When you are wielding a finesse weapon with which you are proficient and would be hit by a melee attack, you can use your reaction to add your proficiency bonus to your Armor Class against that attack.", - "prerequisite": "Dexterity 13 or higher", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "destinys-call", - "fields": { - "name": "Destiny’s Call", - "desc": "* An ability score of your choice increases by 1.\r\n* When you gain inspiration through your destiny’s source of inspiration, you can choose one party member within 30 feet of you. That party member gains inspiration if they don’t have it already. Once you inspire a party member in this way, you can’t use this feature again on that party member until you finish a long rest.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "divine-orator", - "fields": { - "name": "Divine Orator", - "desc": "You learn the Divine Inspiration and Persuasive Speech battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Divine Inspiration.** When an ally within 15 feet hits a creature with a melee weapon attack, your ally can deliver a Divine Smite just as if you had delivered it yourself using your Divine Smite feature expending one of your uses). If you are able to empower your smites, you may choose to empower it as normal.\r\n**Persuasive Speech.** Hostile creatures within 60 feet take a –1d4 penalty on attack rolls. You can sustain this battle hymn for up to 3 rounds without expending additional uses of Bardic Inspiration. When a hostile creature begins its third consecutive turn within range of this battle hymn it becomes charmed by you and will not attack you or your allies. If this causes combat to end early, the creatures remain charmed\r\nby you for up to 1 minute afterward or until one of them is damaged by you or an ally. For the next 24 hours after the battle hymn ends, you gain an expertise die on Charisma checks made against creatures that were charmed in this way. A creature that either shares your alignment or worships a deity that has\r\nyour alignment becomes charmed on its second consecutive turn instead. Creatures that have an opposite alignment or worship a greater entity that has an opposite alignment cannot be charmed in this way.", - "prerequisite": "Proclaimer feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "dual-wielding-expert", - "fields": { - "name": "Dual-Wielding Expert", - "desc": "* While wielding a separate melee weapon in each hand, you gain a +1 bonus to Armor Class.\r\n* You can use two-weapon fighting with any two one-handed melee weapons so long as neither has the heavy property.\r\n* When you would normally draw or sheathe a one-handed weapon, you can instead draw or sheathe two one-handed weapons.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "dungeoneer", - "fields": { - "name": "Dungeoneer", - "desc": "* You have advantage on Investigation and Perception checks made to detect secret doors.\r\n* You have advantage on saving throws made against traps.\r\n* You have resistance to damage dealt by traps.\r\n* You don’t take a −5 penalty on your passive Perception score from traveling at a fast pace.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "eldritch-archer", - "fields": { - "name": "Eldritch Archer", - "desc": "* Whenever you make a ranged weapon attack you can choose to conjure magical ammunition and select one of the following damage types: acid, cold, fire, or lightning. Your ranged weapon attacks using this conjured ammunition deal the chosen damage type instead of whatever damage type they would normally deal, and are considered magical for the purpose of overcoming resistance and immunity. Ammunition conjured in this way disappears at the end of the turn it was fired.\r\n* When you hit a target with a ranged weapon attack, you can use your reaction and choose a spell of 1st-level or higher, casting it through your ammunition. The spell must have a casting time of 1 action, and target a single creature or have a range of Touch. If a spell cast in this way requires an attack roll and targets the same target as the triggering ranged weapon attack, it also hits as part of that attack. You may\r\nchoose not to deal damage with a ranged weapon attack used to cast a spell.", - "prerequisite": "3 levels in fighter, 3 levels in wizard, Fighting Style (Archery)", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "eldritch-volley-master", - "fields": { - "name": "Eldritch Volley Master", - "desc": "Whenever you cast a spell with a Cone area, you may additionally make ranged weapon attacks with a ranged weapon you are wielding against targets within that conical area. You may make up to a number of attacks equal to the level of the spell cast, each against a different target. Ranged attacks made in this way ignore the loading quality of weapons and use your conjured magical ammunition.", - "prerequisite": "Arrow Enchanter feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "empathic", - "fields": { - "name": "Empathic", - "desc": "* Your Wisdom or Charisma score increases by 1.\r\n* You gain an expertise die on Insight checks made against other creatures.\r\n* When using a social skill and making a Charisma check another creature, you score a critical success on a roll of 19–20.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "equipped-for-justice", - "fields": { - "name": "Equipped for Justice", - "desc": "* You gain proficiency with all types of artisan’s tools and miscellaneous tools. If you already have proficiency with any of these tools, you instead gain an expertise die with those tools.\r\n* You gain proficiency with Engineering and a 1d8 expertise die on Engineering checks. In addition, you build a nonmagical grappling gun that only functions in your hands. Replacing your grappling gun requires 3 days of crafting and 500 gp.\r\n* You may add your Wisdom modifier to the DC of any saving throws used for miscellaneous adventuring gear items and to attack rolls made using miscellaneous adventuring gear items.", - "prerequisite": "Vigilante feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "fear-breaker", - "fields": { - "name": "Fear Breaker", - "desc": "* You gain proficiency with the Victory Pose maneuver and do not have to spend exertion to activate it. In addition, you may use this maneuver with up to three different weapons you select instead of just one, and\r\naffect allies within 60 feet. \r\n* An ally affected by your Victory Pose gains an expertise die on their next saving throw against fear, and if they are rattled the condition ends for them.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "fortunate", - "fields": { - "name": "Fortunate", - "desc": "You gain 3 fate points. Whenever you make an attack roll, ability check, or saving throw and do not have disadvantage, you can spend a fate point to roll an additional d20 and choose whichever result you wish. \r\nYou may do this after the initial roll has occurred, but before the outcome is known. If you have disadvantage, you may instead spend a fate point to choose one of the d20 rolls and reroll it.\r\nAlternatively, when you are attacked, you can choose to spend a fate point to force the attacking creature to reroll the attack. The creature resolves the attack with the result you choose. You regain all expended fate points when you finish a long rest.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "guarded-warrior", - "fields": { - "name": "Guarded Warrior", - "desc": "* A creature that takes the Disengage action still provokes opportunity attacks from you. \r\n* You gain proficiency with the Warning Strike maneuver and do not have to spend exertion to activate it.\r\n* You can use your reaction to make a melee weapon attack against a creature within 5 feet that makes an attack against a target other than you if the target does not also have this feat.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "harbinger-of-things-to-come", - "fields": { - "name": "Harbinger of Things to Come", - "desc": "You learn the Preach Despair and Preach Hope battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Preach Despair.** A hostile creature within 60 feet of you suffers a level of strife. Creatures with an opposite alignment from yours or that worship a greater entity that has an opposite alignment suffer two levels of strife instead. A creature cannot suffer more than two levels of strife from Preach Despair in the same 24 hours.\r\n**Preach Hope.** Creatures of your choice within 60 feet of you gain advantage on saving throws. When the battle hymn ends, allies within 30 feet of you remove one level of strife. An ally that shares your alignment or worships a greater entity removes two levels of strife instead.", - "prerequisite": "Divine Orator feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "hardy-adventurer", - "fields": { - "name": "Hardy Adventurer", - "desc": "* When you take this feat, you gain a number of hit points equal to twice your level. \r\n* Whenever you gain a new level, you gain an additional 2 hit points to your hit point maximum.\r\n* During a short rest, you regain 1 additional hit point per hit die spent to heal.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "heavily-outfitted", - "fields": { - "name": "Heavily Outfitted", - "desc": "* Your Strength score increases by 1, to a maximum of 20.\r\n* You gain proficiency with heavy armor.", - "prerequisite": "Proficiency with medium armor", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "heavy-armor-expertise", - "fields": { - "name": "Heavy Armor Expertise", - "desc": "* Your Strength score increases by 1, to a maximum of 20.\r\n* While wearing heavy armor, you reduce all bludgeoning, piercing, and slashing damage from nonmagical weapons by 3.", - "prerequisite": "Proficiency with heavy armor", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "heraldic-training", - "fields": { - "name": "Heraldic Training", - "desc": "* You gain proficiency in your choice of one martial weapon, one rare weapon, or shields.\r\n* You gain two divine lessons of your choice from the herald class.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "idealistic-leader", - "fields": { - "name": "Idealistic Leader", - "desc": "* Any stronghold you have or buy that is of frugal quality is automatically upgraded to average quality at no additional cost.\r\n* You gain a new follower for every 50 staff you have in your stronghold, rather than every 100 staff.\r\n* When you fulfill your destiny, choose a number of followers equal to your proficiency bonus. Each is upgraded to their most expensive version.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "intuitive", - "fields": { - "name": "Intuitive", - "desc": "* Your Intelligence or Wisdom score increases by 1, to a maximum of 20. \r\n* Your passive Perception and passive Investigation scores increase by 5.\r\n* If you can see a creature’s mouth while it is speaking a language you know, you can read its lips.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "keen-intellect", - "fields": { - "name": "Keen Intellect", - "desc": "* Your Intelligence score increases by 1, to a maximum of 20.\r\n* You can recall anything you’ve seen or heard within a number of weeks equal to your Intelligence modifier.\r\n* You know how long it will be before the next sunset or sunrise.\r\n* You know which way is north.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "lightly-outfitted", - "fields": { - "name": "Lightly Outfitted", - "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with light armor.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "linguistics-expert", - "fields": { - "name": "Linguistics Expert", - "desc": "* Your Intelligence score increases by 1, to a maximum of 20.\r\n* You learn three languages of your choice.\r\n* You can invent ciphers and are able to teach a cipher you create to others. Anyone who knows the cipher can encode and read hidden messages made with it; the apparent text must be at least four times longer than the hidden message. A creature can detect the cipher’s presence if it spends a minute examining it and succeeds on an Investigation check against a DC of 8+ your proficiency bonus + your Intelligence modifier. If the check succeeds by 5 or more, they can read the hidden message.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "living-stampede", - "fields": { - "name": "Living Stampede", - "desc": "Whenever you enter a rage you may choose up to a number of creatures equal to your Wisdom modifier within 60 feet that are beasts, fey, or plants. These chosen creatures gain the following benefits for as long as you rage, but are unable to take the Fall Back reaction:\r\n* Advantage on Strength checks and Strength saving throws.\r\n* Resistance to bludgeoning, piercing, and slashing damage.\r\n* Temporary hit points equal to your level.\r\n* A bonus to damage rolls equal to your proficiency bonus.", - "prerequisite": "Untamed feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "martial-scholar", - "fields": { - "name": "Martial Scholar", - "desc": "* You gain proficiency in a combat tradition of your choice. \r\n* You learn two combat maneuvers from a combat tradition you know. If you don’t already know any combat maneuvers, both must be 1st degree. Combat maneuvers gained from this feat do not count toward the maximum number of combat maneuvers you know.\r\n* Your exertion pool increases by 3. If you do not have an exertion pool, you gain an exertion pool with 3 exertion, regaining your exertion whenever you finish a rest.", - "prerequisite": "Proficiency with at least one martial weapon", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "medium-armor-expert", - "fields": { - "name": "Medium Armor Expert", - "desc": "* Medium armor doesn’t impose disadvantage on your Dexterity (Stealth) checks.\r\n* When you are wearing medium armor, the maximum Dexterity modifier you can add to your Armor Class increases to 3.", - "prerequisite": "Proficiency with medium armor", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "moderately-outfitted", - "fields": { - "name": "Moderately Outfitted", - "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with medium armor and shields.", - "prerequisite": "Proficiency with light armor", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "monster-hunter", - "fields": { - "name": "Monster Hunter", - "desc": "* You gain an expertise die on checks made to learn legends and lore about a creature you can see.\r\n* You learn the altered strike cantrip.\r\n* You gain proficiency with the Douse maneuver and do not have to spend exertion to activate it.\r\n* You gain the tracking skill specialty in Survival.", - "prerequisite": "Proficiency with Survival, 8th level or higher", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "mounted-warrior", - "fields": { - "name": "Mounted Warrior", - "desc": "* You gain proficiency with the Lancer Strike maneuver and do not have to spend exertion to activate it.\r\n* When your mount is targeted by an attack, you can instead make yourself the attack’s target.\r\n* When your mount makes a Dexterity saving throw against an effect that deals half damage on a success, it takes no damage on a success and half damage on a failure.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "mystic-arcanist", - "fields": { - "name": "Mystic Arcanist", - "desc": "* Your Wisdom or Charisma score increases by 1, to a maximum of 20. \r\n* When you cast a spell that restores hit points, you restore an additional number of hit points equal to your Charisma modifier.\r\n* You can spend sorcery points to temporarily gain a spell from the cleric or sorcerer spell lists. Gaining a spell in this way costs a number of sorcery points equal to the spell’s level. You cannot gain a spell that has a level higher than your highest level spell slot. When you gain a cleric spell in this way, it is considered prepared for the day. When you gain a sorcerer spell in this way, it is considered a spell you know for the day. You lose all spells gained in this way whenever you finish a long rest.", - "prerequisite": "3 levels in cleric, 3 levels in sorcerer", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "mystical-talent", - "fields": { - "name": "Mystical Talent", - "desc": "Choose a class: bard, cleric, druid, herald, sorcerer, warlock, or wizard.\r\n\r\n* You learn two cantrips of your choice from the class’s spell list. \r\n* Choose a 1st-level spell to learn from that spell list. Once between long rests, you can cast this spell without expending a spell slot. You can also cast this spell using a spell slot of the appropriate level (or the appropriate number of spell points if you have warlock levels).\r\n\r\nYour spellcasting ability for these spells is Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "natural-warrior", - "fields": { - "name": "Natural Warrior", - "desc": "* Your Speed increases by 5 feet.\r\n* When making an Acrobatics or Athletics check during combat, you can choose to use your Strength or Dexterity modifier for either skill.\r\n* You gain proficiency with the Bounding Strike maneuver and do not have to spend exertion to activate it.\r\n* You can roll 1d4 in place of your normal damage for unarmed strikes. When rolling damage for your unarmed strikes, you can choose to deal bludgeoning, piercing, or slashing damage.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "newblood", - "fields": { - "name": "Newblood", - "desc": "You gain resistance to necrotic damage (or if you already have it, immunity to necrotic damage) and darkvision to a range of 30 feet (or if you already have it, the range of your darkvision increases by 30 feet). You also gain a bite natural weapon and the Charming Gaze feature.\r\n\r\n**Bite.** You gain a bite natural weapon you are proficient with. You are only able to bite grappled, incapacitated, restrained, or willing creatures. You can use Dexterity instead of Strength for the attack rolls of your bite. On a hit your bite deals piercing damage equal to 1d6 plus your Strength modifier or Dexterity modifier (whichever is highest). In addition, once per turn you can choose for your bite to also deal 1d6\r\nnecrotic damage × your proficiency bonus. You regain hit points equal to the amount of necrotic damage dealt to your target. This necrotic damage can only be increased by a critical hit.\r\n**Charming Gaze.** Once between long rests, you magically target a creature within 30 feet, forcing it to make a Wisdom saving throw (DC 8 + your proficiency bonus + your Charisma modifier). On a failure, the target is charmed by you for a number of hours equal to your proficiency bonus. While charmed it regards you as a trusted friend and is a willing target for your bite. The target repeats the saving throw each time it takes damage, ending the effect on itself on a success. If the target’s saving throw is successful or the effect ends for it, it is immune to your charm for 24 hours.\r\n\r\nAdditionally, you have disadvantage on attack rolls and on Perception checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight. In addition, you cannot use your Charming Gaze while you are in direct sunlight.", - "prerequisite": "Must have been bitten by a vampire or taken necrotic damage equal to quadruple your level from a single attack or spell", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "night-master", - "fields": { - "name": "Night Master", - "desc": "You can spend exertion to cast any spells from the air, earth, fear, fire, movement, obscurement, plants, poison, senses, shadow, transformation, unarmed, or water schools at the cost of 2 exertion per spell level. You use your focus save DC for spells cast this way, and your spell attack modifier is equal to your proficiency bonus + your Wisdom modifier.", - "prerequisite": "Subtly Skilled feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "nightstalker", - "fields": { - "name": "Nightstalker", - "desc": "* Your Dexterity or Wisdom score increases by 1, to a maximum of 20.\r\n* You can deal Sneak Attack damage when making attacks using unarmed strikes or adept weapons.\r\n* You gain a bonus equal to your Wisdom modifier on Acrobatics, Deception, and Stealth checks.\r\n\r\nIn addition, you gain the following special focus feature:\r\n**Twilight Vanish.** On your turn you can use a reaction and spend 2 exertion to move up to 30 feet with such incredible speed that you seem to disappear: after moving this way you may immediately take the Hide action.", - "prerequisite": "3 levels in adept, 3 levels in rogue", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "physician", - "fields": { - "name": "Physician", - "desc": "* When you use a healer’s satchel to stabilize a dying creature, it regains a number of\r\nhit points equal to your Wisdom modifier.\r\n* You can spend an action and one use of a healer’s satchel to tend to a creature. The creature regains 1d6 + 4 hit points, plus one hit point for each of its hit dice. The creature can’t regain hit points from this feat again until it finishes a rest.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "polearm-savant", - "fields": { - "name": "Polearm Savant", - "desc": "* When you attack with a glaive, halberd, quarterstaff, or spear and no other weapon using the Attack action, as a bonus action you can make a melee attack with the weapon’s opposite end. This attack uses the same ability modifier as the primary attack, dealing 1d4 bludgeoning damage on a hit.\r\n* While you are wielding a glaive, halberd, pike, quarterstaff, or spear, a creature that enters your reach provokes an opportunity attack from you. A creature can use its reaction to avoid provoking an opportunity attack from you in this way.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "power-caster", - "fields": { - "name": "Power Caster", - "desc": "* The range is doubled for any spell you cast that requires a spell attack roll.\r\n* You ignore half cover and three-quarters cover when making a ranged spell attack.\r\n* Choose one cantrip that requires an attack roll. The cantrip must be from the bard, cleric, druid, herald, sorcerer, warlock, or wizard spell list. You learn this cantrip and your spellcasting ability for it depends\r\non the spell list you chose from: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", - "prerequisite": "The ability to cast at least one spell", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "powerful-attacker", - "fields": { - "name": "Powerful Attacker", - "desc": "* You gain proficiency with the Cleaving Swing maneuver and do not have to spend exertion to activate it. In addition, you can use Cleaving Swing with a versatile weapon wielded with two hands.\r\n* Before you make a melee attack with a two-handed weapon or versatile weapon wielded with two hands, if you are proficient with the weapon and do not have disadvantage you can declare a powerful attack. A\r\npowerful attack has disadvantage, but on a hit deals 10 extra damage.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "primordial-caster", - "fields": { - "name": "Primordial Caster", - "desc": "Upon gaining this feat, choose one of the following damage types: acid, cold, fire, lightning, or thunder.\r\n* When you cast a spell that deals damage, your spell’s damage ignores damage resistance to the chosen type.\r\n* When you cast a spell that deals damage of the chosen type, you deal 1 additional damage for every damage die with a result of 1.\r\nThis feat can be selected multiple times, choosing a different damage type each time.", - "prerequisite": "The ability to cast at least one spell", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "proclaimer", - "fields": { - "name": "Proclaimer", - "desc": "* Whenever the Narrator calls for you to roll for initiative, you may activate a use of your Divine Sense feature to warn yourself and up to a number of creatures equal to your Charisma modifier within 30 feet, granting advantage on the initiative check.\r\n* You can use your voice Art Specialty to cast herald spells.\r\n* You can spend exertion to cast spells from the divination school that you know at a cost of 1 exertion per spell level.\r\n* When you gain this feat, you gain one of the following alignment traits: Chaotic, Evil, Good, or Lawful. Once chosen your alignment trait cannot be changed, but you can gain a second alignment trait that is not opposed.", - "prerequisite": "3 levels in bard, 3 levels in herald", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "pure-arcanist", - "fields": { - "name": "Pure Arcanist", - "desc": "You gain the following manifestations:\r\n**Divine (Radiant).** When you cast a spell that deals radiant damage, you can spend 1 sorcery point and choose one creature you can see within 60 feet. That creature regains a number of hit points equal to 1d8 × the spell’s level. \r\n**Pure Arcanum (Force).** When you cast a spell that deals force damage, you can spend 2 sorcery points and choose one creature you can see. After the spell’s damage is resolved, if the creature was damaged by the spell it makes an Intelligence saving throw or becomes stunned until the end of its next turn.", - "prerequisite": "Mystic Arcanist feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "rallying-speaker", - "fields": { - "name": "Rallying Speaker", - "desc": "When you spend 10 minutes speaking inspirationally, you can choose up to 6 friendly creatures (including yourself) within 30 feet that can hear and understand you. Each creature gains temporary hit points equal to your level + your Charisma modifier. A creature can’t gain temporary hit points from this feat again until it has finished a rest.", - "prerequisite": "Charisma 13 or higher", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "resonant-bond", - "fields": { - "name": "Resonant Bond", - "desc": "You’re able to form a greater bond with magic items. During a short rest, you can focus on a non-consumable magic item and create a unique bond with it called resonance. You can have resonance with\r\nonly one item at a time. Attempting to resonate with another item fails until you end the resonance with your current item. When you resonate with an item, you gain the following benefits.\r\n\r\n* If the resonant item requires attunement and you meet the prerequisites to do so, you become attuned to the item. If you don’t meet the prerequisites, both the attunement and resonance with the item fails. This attunement doesn’t count toward the maximum number of items you can be attuned to. Unlike other\r\nattuned items, your attunement to this item doesn’t end from being more than 100 feet away from it for 24 hours.\r\n* Once per rest, as a bonus action, you can summon a resonant item, which appears instantly in your hand so long as it is located on the same plane of existence. You must have a free hand to use this feature and be able to hold the item. \r\n* If the resonant item is sentient, you have advantage on Charisma checks and saving throws made when resolving a conflict with the item.\r\n* If the resonant item is an artifact, you can ignore the effects of one minor detrimental property.\r\n\r\nYou lose resonance with an item if another creature attunes to it or gains resonance with it. You can also voluntarily end the resonance by focusing on the item during a short rest, or during a long rest if the item is not in your possession.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "revenant", - "fields": { - "name": "Revenant", - "desc": "You may choose to select this feat when you die, replacing your most recently chosen feat other than Vendetta or reducing your ability scores to reverse your last Ability Score Improvement. The next midnight your corpse rises and your soul returns to it. You gain the undead type in addition to being a humanoid, as well as the following benefits:\r\n* Your destiny changes to Revenge.\r\n* You gain resistance to necrotic and psychic damage.\r\n* You gain darkvision to a range of 60 feet (or if you already have it, its range increases by 30 feet).\r\n* You become immune to poison damage and the poisoned condition.\r\n* If your vendetta has not ended, you regain all of your hit points when you finish a short rest or 1 hour after you are reduced to 0 hit points.\r\n* You gain an expertise die on saving throws made against spells and other magical effects, and on saving throws made to resist being charmed, fatigued, frightened, paralyzed, or stunned.\r\n* You gain an expertise die on ability checks made to find or track a creature that is part of your vendetta.", - "prerequisite": "Vendetta, one other feat or previous Ability Score Improvement, dead", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "rite-master", - "fields": { - "name": "Rite Master", - "desc": "You gain a ritual book containing spells that you can cast as rituals while holding it.\r\nChoose one of the following classes: bard, cleric, druid, herald, sorcerer, warlock, or wizard. When you acquire this feat, you create a ritual book holding two 1st-level spells of your choice from that class’ spell\r\nlist. These spells must have the ritual tag. The class you choose determines your spellcasting ability for these spells: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or\r\nsorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.\r\nIf you come across a written spell with the ritual tag (like on a spell scroll or in a wizard’s spellbook), you can add it to your ritual book if the spell is on the spell list for the class you chose and its level is no higher than half your level (rounded up). Copying the spell into your ritual book costs 50 gold and 2 hours per level of the spell.", - "prerequisite": "Intelligence or Wisdom 13 or higher", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "shadow-assassin", - "fields": { - "name": "Shadow Assassin", - "desc": "While you are hidden from a target and are in an area of darkness or dim light, you can apply your Sneak Attack damage to an eldritch blast.", - "prerequisite": "Shadowmancer feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "shadowdancer", - "fields": { - "name": "Shadowdancer", - "desc": "* You gain darkvision to a range of 60 feet. Unlike other forms of darkvision you can see color in this way as if you were seeing normally. If you already had darkvision or would gain it later from another feature, its range increases by 30 feet. \r\n* You can use a bonus action and spend 1 spell point to teleport up to 30 feet to an unoccupied area of darkness or dim light you can see. You must currently be in an area of darkness or dim light to teleport in this way. You can bring along objects if their weight doesn’t exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn’t carrying gear beyond its carrying capacity and is within 5 feet. You can increase the range of this teleport by 30 additional feet per each additional spell point you spend.", - "prerequisite": "3 levels in rogue, 3 levels in warlock", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "shadowmancer", - "fields": { - "name": "Shadowmancer", - "desc": "You gain the following benefits.\r\n* You regain 1 spell point whenever you cast a spell from the shadow school.\r\n* You gain a Stealth skill specialty for hiding while in areas of darkness or dim light, and you have advantage on Dexterity (Stealth) checks made to hide while in areas of darkness or dim light.\r\n* Whenever you use your Shadowdancer ability to teleport, after teleporting you can use your reaction to take the Dodge action.", - "prerequisite": "Shadowdancer feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "shield-focus", - "fields": { - "name": "Shield Focus", - "desc": "You gain the following benefits while wielding a shield:\r\n* When you take the Attack action on your turn, as a bonus action you can make a Shove maneuver against a creature within 5 feet of you.\r\n* When you make a Dexterity saving throw against a spell or harmful effect that only targets you, if you aren’t incapacitated you gain a bonus equal to your shield’s Armor Class bonus.\r\n* When you succeed on a Dexterity saving throw against an effect that deals half damage on a success, you can use your reaction to take no damage by protecting yourself with your shield.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "skillful", - "fields": { - "name": "Skillful", - "desc": "Choose three skills, tools, languages, or any combination of these. You gain proficiency with each of your three choices. If you already have proficiency in a chosen skill, you instead gain a skill specialty with that skill.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "skirmisher", - "fields": { - "name": "Skirmisher", - "desc": "* Your Speed increases by 10 feet.\r\n* You can Dash through difficult terrain without requiring additional movement.\r\n* Whenever you attack a creature, for the rest of your turn you don’t provoke opportunity attacks from that creature.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "spellbreaker", - "fields": { - "name": "Spellbreaker", - "desc": "*You gain proficiency with the Purge Magic maneuver and do not have to spend exertion to activate it.\r\n* When a creature concentrating on a spell is damaged by you, it has disadvantage on its concentration check to maintain the spell it is concentrating on.\r\n* You have advantage on saving throws made against spells cast within 30 feet of you.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "stalwart", - "fields": { - "name": "Stalwart", - "desc": "* Your Constitution score increases by 1, to a maximum of 20.\r\n* You regain an additional number of hit points equal to double your Constitution modifier (minimum 2) whenever you roll a hit die to regain hit points.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "stealth-expert", - "fields": { - "name": "Stealth Expert", - "desc": "* You can try to hide from a creature even while you are only lightly obscured from that creature.\r\n* Your position isn’t revealed when you miss with a ranged weapon attack against a creature you are hidden from.\r\n* Dim light does not impose disadvantage when you make Perception checks.", - "prerequisite": "Dexterity 13 or higher", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "street-fighter", - "fields": { - "name": "Street Fighter", - "desc": "* Your Strength or Constitution score increases by 1, to a maximum of 20.\r\n* You can roll 1d4 in place of your normal damage for unarmed strikes.\r\n* You are proficient with improvised weapons.\r\n* You can use a bonus action to make a Grapple maneuver against a target you hit with an unarmed strike or improvised weapon on your turn.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "subtly-skilled", - "fields": { - "name": "Subtly Skilled", - "desc": "You can add your martial arts die as a bonus to Acrobatics, Culture, Deception, Engineering, Intimidation, Investigation, Sleight of Hand, Stealth, Perception, Performance, and Persuasion checks.", - "prerequisite": "Nightstalker feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "surgical-combatant", - "fields": { - "name": "Surgical Combatant", - "desc": "* You gain proficiency with the Dangerous Strikes maneuver and do not have to spend exertion to activate it.\r\n* You gain proficiency in Medicine. If you are already proficient, you instead gain an expertise die.\r\n* You gain an expertise die on Medicine checks made to diagnose the cause of or treat wounds.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "survivor", - "fields": { - "name": "Survivor", - "desc": "* When you are reduced to 0 or fewer hit points, you can use your reaction to move up to your Speed before falling unconscious. Moving in this way doesn’t provoke opportunity attacks.\r\n* On the first turn that you start with 0 hit points and must make a death saving throw, you make that saving throw with advantage.\r\n* When you take massive damage that would kill you instantly, you can use your reaction to make a death saving throw. If the saving throw succeeds, you instead fall unconscious and are dying. \r\n* Medicine checks made to stabilize you have advantage. \r\n* Once between long rests, when a creature successfully stabilizes you, at the start of your next turn you regain 1 hit point.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "swift-combatant", - "fields": { - "name": "Swift Combatant", - "desc": "* Your Speed increases by 5 feet. \r\n* You gain proficiency with the Charge, Rapid Drink, and Swift Stance maneuvers, and do not have to spend exertion to activate them.", - "prerequisite": "8th level or higher", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "tactical-support", - "fields": { - "name": "Tactical Support", - "desc": "* When using the Help action to aid an ally in attacking a creature, the targeted creature can be up to 30 feet away instead of 5 feet.\r\n* If an ally benefiting from your Help action scores a critical hit on the targeted creature, you can use your reaction to make a single weapon attack against that creature. Your attack scores a critical hit on a roll of 19–20. If you already have a feature that increases the range of your critical hits, your critical hit range\r\nfor that attack is increased by 1 (maximum 17–20). \r\n* When a creature is damaged by an attack that was aided by the use of your Help action, you don’t provoke opportunity attacks from that creature until the end of your next turn.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "tenacious", - "fields": { - "name": "Tenacious", - "desc": "Choose one ability score. The chosen ability score increases by 1, to a maximum of 20, and you gain proficiency in saving throws using it.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "thespian", - "fields": { - "name": "Thespian", - "desc": "* Your Charisma score increases by 1, to a maximum of 20. \r\n* You have advantage on Deception and Performance checks made when attempting to mimic another creature’s looks, mannerisms, or speech.\r\n* You have a natural talent for perfectly mimicking the sounds of other creatures you’ve heard make sound for at least 1 minute. A suspicious listener can see through your perfect mimicry by succeeding on a Wisdom (Insight) check opposed by your Charisma (Deception) check.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "true-revenant", - "fields": { - "name": "True Revenant", - "desc": "One year and one day after you select this feat or when your vendetta has ended, you are doomed. Until then, you gain the following benefits.\r\n* You cannot be charmed, fatigued, frightened, paralyzed, or stunned.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* You regain all of your hit points after you do not take any damage for 1 minute.\r\nIn addition, you also gain the Fearsome Pursuit and Burning Hatred features. \r\n**Fearsome Pursuit.** You can spend 1 minute focusing on a creature that is part of your vendetta. If the creature is dead or on another plane of existence, you learn that. Otherwise, after focusing, you know the distance and direction to that creature, and so long as you’re moving in pursuit of that creature, you and anyone traveling with you ignore difficult terrain. This effect ends if you take damage or end your turn without moving for any reason.\r\n**Burning Hatred.** You can use an action to target the focus of your Fearsome Pursuit if it is within 30 feet. The creature makes a Wisdom saving throw (DC 8 + your proficiency bonus + your highest mental ability score modifier). On a failure, it takes psychic damage equal to 1d6 × your proficiency bonus and is stunned until the end of its next turn. On a success, it takes half damage and is rattled until the end of its\r\nnext turn. Once you have used this feature a number of times equal to your proficiency bonus, you can’t use it again until you finish a long rest.", - "prerequisite": "Revenant feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "untamed", - "fields": { - "name": "Untamed", - "desc": "* Your Strength or Wisdom score increases by 1, to a maximum of 20.\r\n* You may enter a rage and assume a wild shape using the same bonus action.\r\n* While using a wild shape, you can use Furious Critical with attacks made using natural weapons.\r\n* Any temporary hit points you gain from assuming a wild shape while raging become rage hit points instead.\r\n* You may cast and concentrate on druid spells with a range of Self or Touch while raging.", - "prerequisite": "Prerequisites: 3 levels in berserker, 3 levels in druid (Skinchanger archetype)", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "vampire-lord", - "fields": { - "name": "Vampire Lord", - "desc": "You gain the following benefits.\r\n* Your Speed increases by 10 feet.\r\n* You gain an expertise die on Stealth checks.\r\n* The range of your darkvision increases to 120 feet.\r\n* Your bite damage increases to 1d10.\r\n* You can use Charming Gaze twice between rests.\r\n* When using Charming Gaze, a target with at least one level of strife makes its saving throw with disadvantage.\r\n\r\nYou also gain the Vampiric Shapechange feature.\r\n\r\n**Vampiric Shapechange.** You can use an action to transform into the shape of a Medium or smaller beast of CR 3 or less, a mist, or back into your true form. While transformed into a beast, you have the beast’s size and movement modes. You can’t use reactions or speak. Otherwise, you use your statistics. Any items you are carrying transform with you. While transformed into a mist, you have a flying speed of 30 feet, can’t speak, can’t take actions or manipulate objects, are immune to nonmagical damage from weapons, and have advantage on saving throws and Stealth checks. You can pass through a space as narrow as 1 inch without squeezing but can’t pass through water. Any items you are carrying transform with you.\r\n\r\nAdditionally, you gain the undead type in addition to being a humanoid, and you take 20 radiant damage when you end your turn in contact with sunlight.", - "prerequisite": "Vampire Spawn", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "vampire-spawn", - "fields": { - "name": "Vampire Spawn", - "desc": "Your bite damage increases to 1d8, a creature affected by your Charming Gaze remains charmed for a number of hours equal to your level, and you regain the use of Charming Gaze when you finish any\r\nrest. You also gain the Spider Climb and Vampiric Regeneration features.\r\n\r\n**Spider Climb.** You gain a climb speed equal to your Speed, and you can climb even on difficult surfaces and upside down on ceilings.\r\n**Vampiric Regeneration.** Whenever you start your turn with at least 1 hit point and you haven’t taken radiant damage or entered direct sunlight since the end of your last turn, you gain a number of temporary hit points equal to twice your proficiency bonus. When you end your turn in contact with running water, you take 20 radiant damage.", - "prerequisite": "Newblood", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "vendetta", - "fields": { - "name": "Vendetta", - "desc": "Something or someone has had a profound impact on your life—and earned your unending rancor. You gain an expertise die on attack rolls and initiative checks made against creatures that are part of your\r\nvendetta, and when making a saving throw to resist an attack, feature, maneuver, spell, or trait from a creature that is part of your vendetta. Whether or not a creature is part of your vendetta is at the Narrator’s discretion.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "vengeful-protector", - "fields": { - "name": "Vengeful Protector", - "desc": "* You gain proficiency with shields as weapons.\r\n* You gain proficiency with the Double Team maneuver and do not have to spend exertion to activate it.\r\n* When a creature reduces a party member (not including animal companions, familiars, or followers) to 0 hit points, you gain an expertise die on attacks made against it until the end of combat.", - "prerequisite": "Proficiency with shields", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "vigilante", - "fields": { - "name": "Vigilante", - "desc": "* Your Wisdom or Dexterity score increases by 1, to a maximum of 20.\r\n* You have an alter ego, an identity associated with a costume or disguise. This alter ego can be as complicated as a full outfit with a history or legends surrounding it or a simple mask or cowl. You can assume or remove this alter ego as an action and it can be worn with all types of armor. \r\n* You gain a 1d8 expertise die and advantage on Deception checks made regarding your alter ego, Persuasion checks made to dissuade others from connecting you to your alter ego, and on disguise kit checks.\r\n* Your alter ego has its own Prestige rating that may increase or decrease as you perform deeds while in your alter ego. In addition, while in your alter ego you gain a 1d8 expertise die on Prestige checks.\r\n* While in your alter ego, you may make a Prestige check and use that result in place of any Intimidation or Persuasion check you would otherwise make.", - "prerequisite": "3 levels in adept, 3 levels in ranger", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "weapons-specialist", - "fields": { - "name": "Weapons Specialist", - "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with four weapons of your choice. Three of these must be a simple or a martial weapon. The fourth choice can be a simple, martial, or rare weapon.", - "prerequisite": "", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "well-heeled", - "fields": { - "name": "Well-Heeled", - "desc": "* You are treated as royalty (or as closely as possible) by most commoners and traders, and as an equal when meeting other authority figures (who make time in their schedule to see you when requested to do so).\r\n* You have passive investments and income that allow you to maintain a high quality of living. You have a rich lifestyle and do not need to pay for it.\r\n* You gain a second Prestige Center. This must be an area where you have spent at least a week of time.", - "prerequisite": "Prestige rating of 2 or higher", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "wild-rioter", - "fields": { - "name": "Wild Rioter", - "desc": "While raging, you and any creatures benefiting from your Living Stampede emit 5-foot auras of fury. When a creature other than you or your allies enters a fury aura or starts its turn there it makes a Wisdom saving throw against your druid spell save DC. On a failed save, a creature becomes confused, except instead of rolling to determine their actions as normal for the confused condition, they are always considered to have rolled the 7 or 8 result. At the end of each of a confused creature’s turns it repeats the saving throw, ending the effect on itself on a success. Once a creature successfully saves against this effect, it is immune to it for the remainder of your rage.", - "prerequisite": "Living Stampede feat", - "document": "a5esrd" - } -}, -{ - "model": "api_v2.feat", - "pk": "woodcraft-training", - "fields": { - "name": "Woodcraft Training", - "desc": "* You gain proficiency with the herbalism kit, navigator’s kit, a simple ranged weapon, or a martial ranged weapon.\r\n* You gain two exploration knacks of your choice from the ranger class.", - "prerequisite": "", - "document": "a5esrd" - } -} -] From 257626c139548fd13802242f7d05bb489cdba1af Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 27 Apr 2024 07:50:49 -0500 Subject: [PATCH 11/84] Renames. --- data/v2/green-ronin/{taldorei => tdcs}/Background.json | 10 +++++----- data/v2/green-ronin/{taldorei => tdcs}/Benefit.json | 0 data/v2/green-ronin/{taldorei => tdcs}/Document.json | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) rename data/v2/green-ronin/{taldorei => tdcs}/Background.json (98%) rename data/v2/green-ronin/{taldorei => tdcs}/Benefit.json (100%) rename data/v2/green-ronin/{taldorei => tdcs}/Document.json (97%) diff --git a/data/v2/green-ronin/taldorei/Background.json b/data/v2/green-ronin/tdcs/Background.json similarity index 98% rename from data/v2/green-ronin/taldorei/Background.json rename to data/v2/green-ronin/tdcs/Background.json index a7158c4b..f518422e 100644 --- a/data/v2/green-ronin/taldorei/Background.json +++ b/data/v2/green-ronin/tdcs/Background.json @@ -5,7 +5,7 @@ "fields": { "name": "Crime Syndicate Member", "desc": "Whether you grew up in slum-run streets bamboozling foolish gamblers out of their fortune, or spent your youth pilfering loose coin from the pockets of less-attentive travelers, your lifestyle of deceiving-to-survive eventually drew the attention of an organized and dangerous crime syndicate. Offering protection, a modicum of kinship, and a number of useful resources to further develop your craft as a criminal, you agree to receive the syndicate’s brand and join their ranks.\r\nYou might have been working the syndicate’s lower ranks, wandering the alleys as a simple cutpurse to fill the meager coffers with wayward gold until the opportunity arose to climb the professional ladder. Or you may have become a clever actor and liar whose skill in blending in with all facets of society has made you an indispensable agent of information gathering. Perhaps your technique with a blade and swiftness of action led you to become a feared hitman for a syndicate boss, sending you on the occasional contract to snuff the life of some unfortunate soul who crossed them. Regardless, while the threat of the law is ever looming, the advantages to having a foot in such a powerful cartel can greatly outweigh the paranoia.", - "document": "taldorei" + "document": "tdcs" } }, { @@ -14,7 +14,7 @@ "fields": { "name": "Elemental Warden", "desc": "Away from the complex political struggles of the massive cities, you’ve instead been raised to revere and uphold the protection of the natural world, while policing, bending, and guiding the elemental powers that either foster life or destroy it. Living among smaller bands of tribal societies means you have stronger ties to your neighbors than most, and the protection of this way of life is of cardinal importance. Each elemental warden is tethered to one of the four elemental tribes and their villages. You must select one: Fire, Water, Earth, or Wind.\r\nYour upbringing may have prepared you to be a fierce warrior, trained in combat to defend your culture and charge as protectors of the rifts. It’s possible your meditation on the balance of the elements has brought you peace of mind with strength of body as a monk. Perhaps you found strength in bending the elements yourself, joining the ranks of the powerful elemental druids. Regardless, your loyalties ultimately lie with the continued safety of your tribe, and you’ve set out to gather allies to your cause and learn more about the world around you.", - "document": "taldorei" + "document": "tdcs" } }, { @@ -23,7 +23,7 @@ "fields": { "name": "Fate-Touched", "desc": "Many lives and many souls find their ways through the patterns of fate and destiny, their threads following the path meant for them, oblivious and eager to be a part of the woven essence of history meant for them. Some souls, however, glide forth with mysterious influence, their threads bending the weave around them, toward them, unknowingly guiding history itself wherever they walk. Events both magnificent and catastrophic tend to follow such individuals. These souls often become great rulers and terrible tyrants, powerful mages, religious leaders, and legendary heroes of lore. These are the fate-touched.\nFew fate-touched ever become aware of their prominent nature. Outside of powerful divination magics, it’s extremely difficult to confirm one as fate-touched. There are many communities that regard the status as a terrible omen, treating a confirmed fate-touched with mistrust and fear. Others seek them as a blessing, rallying around them for guidance. Some of renown and power grow jealous, wishing to bend a fate-touched beneath their will, and some stories speak of mages of old attempting to extract or transfer the essence itself.\nPlayers are not intended to select this background, but this is instead provided for the dungeon master to consider for one or more of their players, or perhaps a prominent NPC, as their campaign unfolds. It provides very minor mechanical benefit, but instead adds an element of lore, importance, and fate-bearing responsibility to a character within your story. Being fate-touched overlaps and co-exists with the character’s current background, only adding to their mystique. Consider it for a player character who would benefit from being put more central to the coming conflicts of your adventure, or for an NPC who may require protection as they come into their destiny. Perhaps consider a powerful villain discovering their fate-twisting nature and using it to wreak havoc. All of these possibilities and more can be explored should you choose to include a fate-touched within your campaign.", - "document": "taldorei" + "document": "tdcs" } }, { @@ -32,7 +32,7 @@ "fields": { "name": "Lyceum Student", "desc": "You most likely came up through money or a family of social prestige somewhere in the world, as tuition at a lyceum is not inexpensive. Your interests and pursuits have brought you to the glittering halls of a place of learning, soaking in all and every lesson you can to better make your mark on the world (or at least you should be, but every class has its slackers). However, the call to adventure threatens to pull you from your studies, and now the challenge of balancing your education with the tide of destiny sweeping you away is looming.\r\nYou may have come to better research and understand the history and lore of the lands you now call home, perhaps seeking a future here at your lyceum as a professor. You could also have been drawn by the promise of prosperity in politics, learning the inner workings of government and alliances to better position yourself as a future writer of history. Perhaps you’ve discovered a knack for the arcane, coming here to focus on refining your spellcraft in the footsteps of some of the finest wizards and sorcerers in days of yore.", - "document": "taldorei" + "document": "tdcs" } }, { @@ -41,7 +41,7 @@ "fields": { "name": "Recovered Cultist", "desc": "Dark deities whisper and promise great power to those who listen. Their cults are scattered and separated, with little to no unity between the greater evils. Hidden hierarchies of power-hungry mortals corrupt and seduce, promising a sliver of the same power they had been promised when the time comes to reap their harvest.\r\nYou once belonged to such a cult. Perhaps it was brief, embracing the rebellious spirit of youth and curious where this path may take you. You also may have felt alone and lost, this community offering a welcome you had been subconsciously seeking. It’s possible you were raised from the beginning to pray to the gods of shadow and death. Then one day the veil was lifted and the cruel truth shook your faith, sending you running from the false promises and seeking redemption.\r\nYou have been freed from the bindings of these dangerous philosophies, but few secret societies find comfort until those who abandon their way are rotting beneath the soil.", - "document": "taldorei" + "document": "tdcs" } } ] diff --git a/data/v2/green-ronin/taldorei/Benefit.json b/data/v2/green-ronin/tdcs/Benefit.json similarity index 100% rename from data/v2/green-ronin/taldorei/Benefit.json rename to data/v2/green-ronin/tdcs/Benefit.json diff --git a/data/v2/green-ronin/taldorei/Document.json b/data/v2/green-ronin/tdcs/Document.json similarity index 97% rename from data/v2/green-ronin/taldorei/Document.json rename to data/v2/green-ronin/tdcs/Document.json index 3e93efcd..45259c31 100644 --- a/data/v2/green-ronin/taldorei/Document.json +++ b/data/v2/green-ronin/tdcs/Document.json @@ -1,7 +1,7 @@ [ { "model": "api_v2.document", - "pk": "taldorei", + "pk": "tdcs", "fields": { "name": "Tal'dorei Campaign Setting", "desc": "Critical Role: Tal'Dorei Campaign Setting is a sourcebook that details the continent of Tal'Dorei from the Critical Role campaign setting for the 5th edition of the Dungeons & Dragons fantasy role-playing game. It was published by Green Ronin Publishing and released on August 17, 2017.", From 42f1b40ee15744c3b6a7f324d37cdee437c30389 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Thu, 16 May 2024 14:22:37 -0500 Subject: [PATCH 12/84] Keys are likely no longer conflicting. --- scripts/data_manipulation/v2_key_rewrite.py | 51 ++++++++++++++++++--- 1 file changed, 44 insertions(+), 7 deletions(-) diff --git a/scripts/data_manipulation/v2_key_rewrite.py b/scripts/data_manipulation/v2_key_rewrite.py index 3e90b681..6f506e80 100644 --- a/scripts/data_manipulation/v2_key_rewrite.py +++ b/scripts/data_manipulation/v2_key_rewrite.py @@ -1,10 +1,47 @@ +from django.apps import apps +from django.template.defaultfilters import slugify -#Step 3: -# Ensure documents are perect. -#> This will require remapping if there are renaming +from api_v2 import models as v2 -# Step 4: -#Re-import. +def key_rewrite(): + for pub in v2.Publisher.objects.order_by('key'): + pubq = v2.Publisher.objects.filter(key=pub.key).order_by('pk') -# Step 5: -Update export to warn on keys no matching convention. \ No newline at end of file + # Create a Document fixture for each document. + for doc in v2.Document.objects.filter(publisher=pub): + docq = v2.Document.objects.filter(key=doc.key).order_by('pk') + + for model in apps.get_models(): + SKIPPED_MODEL_NAMES = ['Document', 'Ruleset', 'License', 'Publisher','SearchResult'] + CHILD_MODEL_NAMES = ['Trait', 'Capability', 'Benefit', 'FeatureItem', 'CastingOption'] + + if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES: + if model.__name__ in CHILD_MODEL_NAMES: + if model.__name__ == 'Trait': + modelq = model.objects.filter(race__document=doc).order_by('pk') + if model.__name__ == 'Capability': + modelq = model.objects.filter(feat__document=doc).order_by('pk') + if model.__name__ == 'Benefit': + modelq = model.objects.filter(background__document=doc).order_by('pk') + if model.__name__ == 'CastingOption': + modelq = model.objects.filter(spell__document=doc).order_by('pk') + if model.__name__ == 'FeatureItem': + modelq = model.objects.filter(feature__document=doc).order_by('pk') + else: + modelq = model.objects.filter(document=doc).order_by('pk') + + + for mo in modelq.all(): + newpk = slugify(mo.name + "-" + doc.key) + + if model.__name__ == "CreatureAttack": + newpk = slugify(mo.creature_action.creature.name + "-" + doc.key +"-"+ mo.name) + + if model.__name__ == "CreatureAction": + newpk = slugify(mo.creature.name + "-" + doc.key +"-"+ mo.name) + + if model.__name__ == "DamageType": + newpk = slugify(mo.name) + + if newpk != mo.key: + print("MODEL:{} PK:{} NEWPK: {}".format(model.__name__,mo.key,newpk)) From 626e2364bffe303be68de33735cb40615af6f8f5 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 24 May 2024 08:58:24 -0500 Subject: [PATCH 13/84] Adding in check script for keys. --- .../data_manipulation/data_v2_format_check.py | 108 ++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 scripts/data_manipulation/data_v2_format_check.py diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py new file mode 100644 index 00000000..1bb016b5 --- /dev/null +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -0,0 +1,108 @@ +import argparse +import json +import numbers +import glob + +import logging +logger = logging.getLogger(__name__) + +from django.template.defaultfilters import slugify + + +def main(): + + parser = argparse.ArgumentParser() + parser.add_argument('-d', '--directory', default='./data/v2', + help='Input data directory containing fixtures for v2 models.') + parser.add_argument('-l','--loglevel', default='INFO', + help='Log level.') + args = parser.parse_args() + + if args.loglevel == 'INFO': + ll=logging.INFO + if args.loglevel == 'DEBUG': + ll=logging.DEBUG + if args.loglevel == 'WARN': + ll=logging.WARN + logging.basicConfig(level=ll) + + # Get a list of files + files = glob.glob(args.directory + '/**/*.json', recursive=True) + excluded_files = ['Publisher.json','Document.json','Ruleset.json','License.json'] + file_list = [] + + for file in files: + if file.split("/")[-1] not in excluded_files: + f = dict() + f['path'] = file + f['root'] = file.split("/")[0] + f['dir'] = file.split("/")[1] + f['schema'] = file.split("/")[2] + try: + f['publisher'] = file.split("/")[3] + except IndexError: + f['publisher'] = None + + try: + f['doc'] = file.split("/")[4] + except IndexError: + f['doc'] = None + + f['filename'] = file.split("/")[-1] + file_list.append(f) + else: + logger.debug("Excluding {} from file list".format(file)) + + # LOOPING THROUGH ALL IN-SCOPE FILES + for f_obj in file_list: + with open(f_obj['path'],'r',encoding='utf-8') as f_in: + objs = json.load(f_in) + + # CHECK FOR KEYS THAT ARE NUMBERS, WARN IF EXISTS + known_keys_non_numeric_exceptions = ['CastingOption.json','Capability.json','Benefit.json','Trait.json','FeatureItem.json'] + if f_obj['filename'] in known_keys_non_numeric_exceptions: + logger.debug("Skipping {}: file is known to have numeric keys.".format(f_obj['filename'])) + else: + + check_keys_non_numeric(objs, f_obj) + + # CHECK FOR KEYS THAT ARE NOT PROPERLY SLUGIFIED + known_keys_are_slugified_exceptions = ['CastingOption.json','Capability.json','Benefit.json','Trait.json','FeatureItem.json'] + if f_obj['filename'] in known_keys_are_slugified_exceptions: + logger.debug("Skipping {}: file is known to have non-slugified keys.".format(f_obj['filename'])) + else: + check_keys_are_slugified(objs, f_obj) + + # CHECK THAT KEYS MATCH THE FORMAT DOC_NAME, SLUGIFIED_NAME + known_keys_doc_name_exceptions = ['CastingOption.json','Capability.json','Benefit.json','Trait.json','FeatureItem.json', 'Size.json'] + if f_obj['filename'] in known_keys_doc_name_exceptions: + logger.debug("Skipping {}: file is known to have non-slugified keys.".format(f_obj['filename'])) + else: + check_keys_doc_name(objs, f_obj) + +def check_keys_non_numeric(objs,f): + for obj in objs: + if isinstance(obj['pk'], numbers.Real): + logger.warning("{} uses numeric pk".format(f['path'])) + +def check_keys_are_slugified(objs,f): + for obj in objs: + if obj['pk'] != slugify(obj['pk']): + logger.warning("{}:{} does not have a slugifed pk".format(f['path'],obj['pk'])) + + +def check_keys_doc_name(objs,f): + for obj in objs: + if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): + logger.warning("{}:{} does not follow the doc-key_slugified-name format.".format(f['path'],obj['pk'])) + break + +def check_keys_doc_parent_name(objs,f): + for obj in objs: + if obj['pk'] != "{}_{}_{}".format(slugify(f['doc']),slugify(obj['parent']),slugify(obj['fields']['name'])): + logger.warning("{}:{} does not follow the doc-key_slugified-parent_slugified-name format.".format(f['path'],obj['pk'])) + break + + +if __name__ == "__main__": + main() \ No newline at end of file From 08cbf72f925562ed5356342566c0234e94d6202a Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 24 May 2024 09:28:53 -0500 Subject: [PATCH 14/84] Refactor benefit to be backgroundbenefit. --- api_v2/admin.py | 6 +- .../0074_rename_background_benefit_parent.py | 18 + .../0075_rename_benefit_backgroundbenefit.py | 17 + api_v2/models/__init__.py | 2 +- api_v2/models/background.py | 4 +- api_v2/serializers/__init__.py | 2 +- api_v2/serializers/background.py | 6 +- data/v2/en-publishing/a5e-ag/Benefit.json | 572 +++++++++--------- .../{Benefit.json => BackgroundBenefit.json} | 116 ++-- .../{Benefit.json => BackgroundBenefit.json} | 56 +- .../{Benefit.json => BackgroundBenefit.json} | 92 +-- .../{Benefit.json => BackgroundBenefit.json} | 456 +++++++------- .../{Benefit.json => BackgroundBenefit.json} | 20 +- 13 files changed, 701 insertions(+), 666 deletions(-) create mode 100644 api_v2/migrations/0074_rename_background_benefit_parent.py create mode 100644 api_v2/migrations/0075_rename_benefit_backgroundbenefit.py rename data/v2/en-publishing/a5e-ddg/{Benefit.json => BackgroundBenefit.json} (86%) rename data/v2/en-publishing/a5e-gpg/{Benefit.json => BackgroundBenefit.json} (89%) rename data/v2/green-ronin/tdcs/{Benefit.json => BackgroundBenefit.json} (84%) rename data/v2/kobold-press/toh/{Benefit.json => BackgroundBenefit.json} (91%) rename data/v2/wizards-of-the-coast/srd/{Benefit.json => BackgroundBenefit.json} (93%) diff --git a/api_v2/admin.py b/api_v2/admin.py index f07b0868..ce409500 100644 --- a/api_v2/admin.py +++ b/api_v2/admin.py @@ -45,14 +45,14 @@ class RaceAdmin(admin.ModelAdmin): ] -class BenefitInline(admin.TabularInline): - model = Benefit +class BackgroundBenefitInline(admin.TabularInline): + model = BackgroundBenefit class BackgroundAdmin(admin.ModelAdmin): model = Background inlines = [ - BenefitInline + BackgroundBenefitInline ] class DamageTypeAdmin(admin.ModelAdmin): diff --git a/api_v2/migrations/0074_rename_background_benefit_parent.py b/api_v2/migrations/0074_rename_background_benefit_parent.py new file mode 100644 index 00000000..f6c1c06f --- /dev/null +++ b/api_v2/migrations/0074_rename_background_benefit_parent.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-05-24 14:21 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0073_auto_20240403_0010'), + ] + + operations = [ + migrations.RenameField( + model_name='benefit', + old_name='background', + new_name='parent', + ), + ] diff --git a/api_v2/migrations/0075_rename_benefit_backgroundbenefit.py b/api_v2/migrations/0075_rename_benefit_backgroundbenefit.py new file mode 100644 index 00000000..088cae06 --- /dev/null +++ b/api_v2/migrations/0075_rename_benefit_backgroundbenefit.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2024-05-24 14:22 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0074_rename_background_benefit_parent'), + ] + + operations = [ + migrations.RenameModel( + old_name='Benefit', + new_name='BackgroundBenefit', + ), + ] diff --git a/api_v2/models/__init__.py b/api_v2/models/__init__.py index c37ba656..6fef41d0 100644 --- a/api_v2/models/__init__.py +++ b/api_v2/models/__init__.py @@ -17,7 +17,7 @@ from .feat import Capability from .feat import Feat -from .background import Benefit +from .background import BackgroundBenefit from .background import Background from .creature import Creature diff --git a/api_v2/models/background.py b/api_v2/models/background.py index f263cc42..41364d6e 100644 --- a/api_v2/models/background.py +++ b/api_v2/models/background.py @@ -4,10 +4,10 @@ from .document import FromDocument -class Benefit(Modification): +class BackgroundBenefit(Modification): """This is the model for an individual benefit of a background.""" - background = models.ForeignKey('Background', on_delete=models.CASCADE) + parent = models.ForeignKey('Background', on_delete=models.CASCADE) class Background(HasName, HasDescription, FromDocument): diff --git a/api_v2/serializers/__init__.py b/api_v2/serializers/__init__.py index 288645cf..ba58a58d 100644 --- a/api_v2/serializers/__init__.py +++ b/api_v2/serializers/__init__.py @@ -7,7 +7,7 @@ from .item import ItemSetSerializer from .item import ItemCategorySerializer -from .background import BenefitSerializer +from .background import BackgroundBenefitSerializer from .background import BackgroundSerializer from .document import RulesetSerializer diff --git a/api_v2/serializers/background.py b/api_v2/serializers/background.py index 137fe7c8..0eeeb692 100644 --- a/api_v2/serializers/background.py +++ b/api_v2/serializers/background.py @@ -6,15 +6,15 @@ from .abstracts import GameContentSerializer -class BenefitSerializer(serializers.ModelSerializer): +class BackgroundBenefitSerializer(serializers.ModelSerializer): class Meta: - model = models.Benefit + model = models.BackgroundBenefit fields = ['name','desc','type'] class BackgroundSerializer(GameContentSerializer): key = serializers.ReadOnlyField() - benefits = BenefitSerializer( + benefits = BackgroundBenefitSerializer( many=True ) diff --git a/data/v2/en-publishing/a5e-ag/Benefit.json b/data/v2/en-publishing/a5e-ag/Benefit.json index 08a3257e..196078d3 100644 --- a/data/v2/en-publishing/a5e-ag/Benefit.json +++ b/data/v2/en-publishing/a5e-ag/Benefit.json @@ -1,1432 +1,1432 @@ [ { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 24, "fields": { "name": "Skill Proficiencies", "desc": "Religion, and either Insight or Persuasion.", "type": "skill_proficiency", - "background": "a5e-acolyte" + "parent": "a5e-acolyte" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 25, "fields": { "name": "Languages", "desc": "One of your choice.", "type": "language", - "background": "a5e-acolyte" + "parent": "a5e-acolyte" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 26, "fields": { "name": "Equipment", "desc": "Holy symbol (amulet or reliquary), common clothes, robe, and a prayer book, prayer wheel, or prayer beads.", "type": "equipment", - "background": "a5e-acolyte" + "parent": "a5e-acolyte" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 27, "fields": { "name": "Ability Score Increases", "desc": "+1 to Wisdom and one other ability score.", "type": "ability_score", - "background": "a5e-acolyte" + "parent": "a5e-acolyte" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 28, "fields": { "name": "Adventures and Advancement", "desc": "In small settlements without other resources, your authority may extend to such matters as settling disputes and punishing criminals. You might also be expected to deal with local outbreaks of supernatural dangers such as fiendish possessions, cults, and the unquiet dead. \r\nIf you solve several problems brought to you by members of your faith, you may be promoted (or reinstated) within the hierarchy of your order. You gain the free service of up to 4 acolytes, and direct access to your order’s leaders.", "type": "adventures_and_advancement", - "background": "a5e-acolyte" + "parent": "a5e-acolyte" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 29, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Acolyte Connections\r\n\r\n1. A beloved high priest or priestess awaiting your return to the temple once you resolve your crisis of faith.\r\n2. A former priest—exposed by you as a heretic—who swore revenge before fleeing.\r\n3. The wandering herald who rescued you as an orphan and sponsored your entry into your temple.\r\n4. The inquisitor who rooted out your heresy (or framed you) and had you banished from your temple.\r\n5. The fugitive charlatan or cult leader whom you once revered as a holy person.\r\n6. Your scandalous friend, a fellow acolyte who fled the temple in search of worldly pleasures.\r\n7. The high priest who discredited your temple and punished the others of your order.\r\n8. The wandering adventurer whose tales of glory enticed you from your temple.\r\n9. The leader of your order, a former adventurer who sends you on quests to battle your god’s enemies.\r\n10. The former leader of your order who inexplicably retired to a life of isolation and penance.\r\n\r\n### Acolyte Memento\r\n\r\n1. The timeworn holy symbol bequeathed to you by your beloved mentor on their deathbed.\r\n2. A precious holy relic secretly passed on to you in a moment of great danger.\r\n3. A prayer book which contains strange and sinister deviations from the accepted liturgy.\r\n4. A half-complete book of prophecies which seems to hint at danger for your faith—if only the other half could be found!\r\n5. A gift from a mentor: a book of complex theology which you don’t yet understand.\r\n6. Your only possession when you entered the temple as a child: a signet ring bearing a coat of arms.\r\n7. A strange candle which never burns down.\r\n8. The true name of a devil that you glimpsed while tidying up papers for a sinister visitor.\r\n9. A weapon (which seems to exhibit no magical properties) given to you with great solemnity by your mentor.\r\n10. A much-thumbed and heavily underlined prayer book given to you by the fellow acolyte you admire most.", "type": "connection_and_memento", - "background": "a5e-acolyte" + "parent": "a5e-acolyte" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 43, "fields": { "name": "Tool Proficiencies", "desc": "One type of artisan’s tools or smith’s tools.", "type": "tool_proficiency", - "background": "artisan" + "parent": "artisan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 47, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### **Artisan Connections**\r\n\r\n1. The cruel master who worked you nearly to death and now does the same to other apprentices.\r\n2. The kind master who taught you the trade.\r\n3. The powerful figure who refused to pay for your finest work.\r\n4. The jealous rival who made a fortune after stealing your secret technique.\r\n5. The corrupt rival who framed and imprisoned your mentor.\r\n6. The bandit leader who destroyed your mentor’s shop and livelihood.\r\n7. The crime boss who bankrupted your mentor.\r\n8. The shady alchemist who always needs dangerous ingredients to advance the state of your art.\r\n9. Your apprentice who went missing.\r\n10. The patron who supports your work.\r\n\r\n### **Artisan Mementos**\r\n\r\n1. *Jeweler:* A 10,000 gold commission for a ruby ring (now all you need is a ruby worth 5,000 gold).\r\n2. *Smith:* Your blacksmith's hammer (treat as a light hammer).\r\n3. *Cook:* A well-seasoned skillet (treat as a mace).\r\n4. *Alchemist:* A formula with exotic ingredients that will produce...something.\r\n5. *Leatherworker:* An exotic monster hide which could be turned into striking-looking leather armor.\r\n6. *Mason:* Your trusty sledgehammer (treat as a warhammer).\r\n7. *Potter:* Your secret technique for vivid colors which is sure to disrupt Big Pottery.\r\n8. *Weaver:* A set of fine clothes (your own work).\r\n9. *Woodcarver:* A longbow, shortbow, or crossbow (your own work).\r\n10. *Calligrapher:* Strange notes you copied from a rambling manifesto. Do they mean something?", "type": "connection_and_memento", - "background": "artisan" + "parent": "artisan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 48, "fields": { "name": "Ability Score Increases", "desc": "+1 to Charisma and one other ability score.", "type": "ability_score", - "background": "charlatan" + "parent": "charlatan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 49, "fields": { "name": "Skill Proficiencies", "desc": "Deception, and either Culture, Insight, or Sleight of Hand.", "type": "skill_proficiency", - "background": "charlatan" + "parent": "charlatan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 50, "fields": { "name": "Tool Proficiencies", "desc": "Disguise kit, forgery kit.", "type": "tool_proficiency", - "background": "charlatan" + "parent": "charlatan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 51, "fields": { "name": "Suggested Equipment", "desc": "Common clothes, disguise kit, forgery kit.", "type": "equipment", - "background": "charlatan" + "parent": "charlatan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 52, "fields": { "name": "Many Identities", "desc": "You have a bundle of forged papers of all kinds—property deeds, identification papers, love letters, arrest warrants, and letters of recommendation—all requiring only a few signatures and flourishes to meet the current need. When you encounter a new document or letter, you can add a forged and modified copy to your bundle. If your bundle is lost, you can recreate it with a forgery kit and a day’s work.", "type": "feature", - "background": "charlatan" + "parent": "charlatan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 53, "fields": { "name": "Adventures and Advancement", "desc": "If you pull off a long-standing impersonation or false identity with exceptional success, you may eventually legally become that person. If you’re impersonating a real person, they might be considered the impostor. You gain any property and servants associated with your identity.", "type": "adventures_and_advancement", - "background": "charlatan" + "parent": "charlatan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 54, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Charlatan Connections\r\n\r\n1. A relentless pursuer: an inspector who you once made a fool of.\r\n2. A relentless pursuer: a mark you once cheated.\r\n3. A relentless pursuer: a former partner just out of jail who blames you for everything.\r\n4. A former partner now gone straight who couldn’t possibly be coaxed out of retirement.\r\n5. A respected priest or tavernkeeper who tips you off about rich potential marks.\r\n6. The elusive former partner who ratted you out and sent you to jail.\r\n7. A famous noble or politician who through sheer luck happens to bear a striking resemblance to you.\r\n8. The crook who taught you everything and just can’t stay out of trouble.\r\n9. A gullible noble who knows you by one of your former aliases, and who always seems to pop up at inconvenient times.\r\n10. A prominent noble who knows you only under your assumed name and who trusts you as their spiritual advisor, tutor, long-lost relative, or the like.\r\n\r\n### Charlatan Mementos\r\n\r\n1. A die that always comes up 6.\r\n2. A dozen brightly-colored “potions”.\r\n3. A magical staff that emits a harmless shower of sparks when vigorously thumped.\r\n4. A set of fine clothes suitable for nobility.\r\n5. A genuine document allowing its holder one free release from prison for a non-capital crime.\r\n6. A genuine deed to a valuable property that is, unfortunately, quite haunted.\r\n7. An ornate harlequin mask.\r\n8. Counterfeit gold coins or costume jewelry apparently worth 100 gold (DC 15 Investigation check to notice they’re fake).\r\n9. A sword that appears more magical than it really is (its blade is enchanted with continual flame and it is a mundane weapon).\r\n10. A nonmagical crystal ball.", "type": "connection_and_memento", - "background": "charlatan" + "parent": "charlatan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 187, "fields": { "name": "Ability Score Increases", "desc": "+1 to Charisma and one other ability score.", "type": "ability_score", - "background": "trader" + "parent": "trader" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 188, "fields": { "name": "Skill Proficiencies", "desc": "Persuasion, and either Culture, Deception, or Insight.", "type": "skill_proficiency", - "background": "trader" + "parent": "trader" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 189, "fields": { "name": "Equipment", "desc": "Traveler's clothes, abacus, merchant's scale.", "type": "equipment", - "background": "trader" + "parent": "trader" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 191, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Trader Connections\r\n1. The parent or relative who wants you to carry on the family business.\r\n2. The sibling who inherited the other half of the family business.\r\n3. The trading company to which you are indentured until you pay off a debt.\r\n4. The powerful merchant who will never forgive the business coup you pulled off.\r\n5. The noble whose horse trampled your poor family’s vegetable stall, injuring or killing a relative you\r\ndearly loved.\r\n6. The parent or elder sibling who squandered your family fortune.\r\n7. The business partner who cheated you.\r\n8. The customs agent who has sworn to catch you red-handed with illicit goods.\r\n9. The crime boss to whom you wouldn’t pay protection money.\r\n10. The smuggler who will pay well for certain commodities.\r\n\r\n### Trader Mementos\r\n1. The first gold piece you earned.\r\n2. Thousands of shares in a failed venture.\r\n3. A letter of introduction to a rich merchant in a distant city.\r\n4. A sample of an improved version of a common tool.\r\n5. Scars from a wound sustained when you tried to collect a debt from a vicious noble.\r\n6. A love letter from the heir of a rival trading family.\r\n7. A signet ring bearing your family crest, which is famous in the mercantile world.\r\n8. A contract binding you to a particular trading company for the next few years.\r\n9. A letter from a friend imploring you to invest in an opportunity that can't miss.\r\n10. A trusted family member's travel journals that mix useful geographical knowledge with tall tales.", "type": "connection_and_memento", - "background": "trader" + "parent": "trader" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 192, "fields": { "name": "Adventures And Advancement", "desc": "Because of your commercial contacts you may be offered money to lead or escort trade caravans. You'll receive a fee from each trader that reaches their destination safely.", "type": "adventures_and_advancement", - "background": "trader" + "parent": "trader" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 245, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Hermit Connections\r\n1. The high priest who banished you to the wilderness until you repent your heresy.\r\n2. The inquisitor who hunts you even through the most solitary wildlands.\r\n3. The supernatural patron whose temptations and gifts you seek to reject.\r\n4. The inner voice you only hear in solitude.\r\n5. The mentor who trained you in silent contemplation—until they mysteriously turned their back on their own teachings.\r\n6. The villain who destroyed the shreds of your original, worldly life. \r\n7. The noble relatives who seek to return you to the life you rejected.\r\n8. The religious superior whose blasphemies scandalized you into fleeing your religious order.\r\n9. The angel who delivered you a prophecy.\r\n10. The mysterious person you glimpsed several times from a distance—unless it was a hallucination.\r\n\r\n### Hermit Mementos\r\n1. The (possibly unhinged) manifesto, encyclopedia, or theoretical work that you spent so much time on.\r\n2. The faded set of fine clothes you preserved for so many years.\r\n3. The signet ring bearing the family crest that you were ashamed of for so long.\r\n4. The book of forbidden secrets that led you to your isolated refuge.\r\n5. The beetle, mouse, or other small creature which was your only companion for so long.\r\n6. The seemingly nonmagical item that your inner voice says is important.\r\n7. The magic-defying clay tablets you spent years translating.\r\n8. The holy relic you were duty bound to protect.\r\n9. The meteor metal you found in a crater the day you first heard your inner voice.\r\n10. Your ridiculous-looking sun hat.", "type": "connection_and_memento", - "background": "hermit" + "parent": "hermit" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 259, "fields": { "name": "Ability Score Increases", "desc": "+1 to Dexterity and one other ability score.", "type": "ability_score", - "background": "urchin" + "parent": "urchin" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 260, "fields": { "name": "Skill Proficiencies", "desc": "Sleight of Hand, and either Deception or Stealth.", "type": "skill_proficiency", - "background": "urchin" + "parent": "urchin" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 261, "fields": { "name": "Equipment", "desc": "Common clothes, disguise kit.", "type": "equipment", - "background": "urchin" + "parent": "urchin" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 264, "fields": { "name": "Adventures And Advancement", "desc": "Street kids are among a settlement's most vulnerable people, especially in cities with lycanthropes, vampires, and other supernatural threats. After you help out a few urchins in trouble, word gets out and you'll be able to consult the street network to gather information. If you roll lower than a 15 on an Investigation check to gather information in a city or town, your roll is treated as a 15.", "type": "adventures_and_advancement", - "background": "urchin" + "parent": "urchin" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 265, "fields": { "name": "Ability Score Increases", "desc": "+1 to Dexterity and one other ability score.", "type": "ability_score", - "background": "criminal" + "parent": "criminal" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 266, "fields": { "name": "Skill Proficiencies", "desc": "Stealth, and either Deception or Intimidation.", "type": "skill_proficiency", - "background": "criminal" + "parent": "criminal" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 267, "fields": { "name": "Equipment", "desc": "Common clothes, dark cloak, thieves' tools.", "type": "equipment", - "background": "criminal" + "parent": "criminal" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 268, "fields": { "name": "Thieves' Cant", "desc": "You know thieves' cant: a set of slang, hand signals, and code terms used by professional criminals. A creature that knows thieves' cant can hide a short message within a seemingly innocent statement. A listener who knows thieves' cant understands the message.", "type": "feature", - "background": "criminal" + "parent": "criminal" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 269, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Criminal Connections\r\n\r\n1. The master criminal who inducted you into your first gang.\r\n2. The cleric or herald who convinced you to use your skills for good (and who may be legally responsible for your continued good behavior).\r\n3. Your sibling or other relative—who also happens to be a representative of the law.\r\n4. The gang of rascals and pickpockets who once called you their leader.\r\n5. The bounty hunter who has sworn to bring you to justice.\r\n6. Your former partner who made off with all the loot after a big score.\r\n7. The masked courier who occasionally gives you jobs.\r\n8. The crime boss to whom you have sworn loyalty (or to whom you owe an enormous debt).\r\n9. The master thief who once stole something precious from you. \r\n10. The corrupt noble who ruined your once-wealthy family.\r\n\r\n### Criminal Mementos\r\n\r\n1. A golden key to which you haven't discovered the lock.\r\n2. A brand that was burned into your shoulder as punishment for a crime.\r\n3. A scar for which you have sworn revenge.\r\n4. The distinctive mask that gives you your nickname (for instance, the Black Mask or the Red Fox).\r\n5. A gold coin which reappears in your possession a week after you've gotten rid of it.\r\n6. The stolen symbol of a sinister organization; not even your fence will take it off your hands.\r\n7. Documents that incriminate a dangerous noble or politician.\r\n8. The floor plan of a palace.\r\n9. The calling cards you leave after (or before) you strike.\r\n10. A manuscript written by your mentor: *Secret Exits of the World's Most Secure Prisons*.", "type": "connection_and_memento", - "background": "criminal" + "parent": "criminal" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 270, "fields": { "name": "Adventures And Advancement", "desc": "If you pull off several successful jobs or heists, you may be promoted (or reinstated) as a leader in your gang. You may gain the free service of up to 8 **bandits** at any time.", "type": "adventures_and_advancement", - "background": "criminal" + "parent": "criminal" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 271, "fields": { "name": "Ability Score Increases", "desc": "+1 to Wisdom and one other ability score.", "type": "ability_score", - "background": "farmer" + "parent": "farmer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 272, "fields": { "name": "Skill Proficiencies", "desc": "Nature, and either Animal Handling or Survival.", "type": "skill_proficiency", - "background": "farmer" + "parent": "farmer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 273, "fields": { "name": "Equipment", "desc": "Common clothes, shovel, mule with saddlebags, 5 Supply (rations).", "type": "equipment", - "background": "farmer" + "parent": "farmer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 274, "fields": { "name": "Bit and Bridle", "desc": "You know how to stow and transport food. You and one animal under your care can each carry additional Supply equal to your proficiency bonus.", "type": "feature", - "background": "farmer" + "parent": "farmer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 275, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Farmer Connections\r\n\r\n1. The landowner who foreclosed on your family land.\r\n2. The thugs who burned your village.\r\n3. The parents who wait for your return.\r\n4. The strange witch to whom your family owes a debt.\r\n5. The retired adventurer who trained you.\r\n6. The druid who—according to the villagers—laid a drought curse on your land.\r\n7. The village bully who threatened to kill you if you ever returned.\r\n8. The evil wizard who will stop at nothing to take your family heirloom.\r\n9. Your elder sibling who left searching for adventure before you did.\r\n10. The dragon whose foul reek has spoiled your countryside.\r\n\r\n### Farmer Mementos\r\n\r\n1. A strange item you dug up in a field: a key, a lump of unmeltable metal, a glass dagger.\r\n2. The bag of beans your mother warned you not to plant.\r\n3. The shovel, pickaxe, pitchfork, or other tool you used for labor. For you it's a one-handed simple melee weapon that deals 1d6 piercing, slashing, or bludgeoning damage.\r\n4. A debt you must pay.\r\n5. A **mastiff**.\r\n6. Your trusty fishing pole.\r\n7. A corncob pipe.\r\n8. A dried flower from your family garden.\r\n9. Half of a locket given to you by a missing sweetheart.\r\n10. A family weapon said to have magic powers, though it exhibits none at the moment.", "type": "connection_and_memento", - "background": "farmer" + "parent": "farmer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 276, "fields": { "name": "Adventures And Advancement", "desc": "You left the farm for a reason but you still have an eye for land. If you acquire farming property, estates, or domains, you can earn twice as much as you otherwise would from their harvests, or be supported by your lands at a lifestyle one level higher than you otherwise would be.", "type": "adventures_and_advancement", - "background": "farmer" + "parent": "farmer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 277, "fields": { "name": "Ability Score Increases", "desc": "+1 to Constitution and one other ability score.", "type": "ability_score", - "background": "outlander" + "parent": "outlander" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 278, "fields": { "name": "Skill Proficiencies", "desc": "Survival, and either Athletics or Intimidation.", "type": "skill_proficiency", - "background": "outlander" + "parent": "outlander" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 279, "fields": { "name": "Equipment", "desc": "Traveler's clothes, waterskin, healer's kit, 7 days rations.", "type": "equipment", - "background": "outlander" + "parent": "outlander" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 280, "fields": { "name": "Trader", "desc": "If you're in or near the wilderness and have a trading relationship with a tribe, settlement, or other nearby group, you can maintain a moderate lifestyle for yourself and your companions by trading the products of your hunting and gathering.", "type": "feature", - "background": "outlander" + "parent": "outlander" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 281, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Outlander Connections\r\n1. A tribal chief who owes a favor.\r\n2. The chief of a band of marauders who has a grudge against you.\r\n3. A hag to whom you owe a favor.\r\n4. An alchemist or wizard who frequently gives you requests for rare herbs or trophies.\r\n5. A unicorn you’ve glimpsed but never been able to approach.\r\n6. Another outlander: your former best friend who is now a bitter rival.\r\n7. A wise oracle who knows most of what happens in the wilderness and will reveal it for a price.\r\n8. A zany prospector who knows the wild lands almost as well as you.\r\n9. A circus or arena owner who will pay for live animals not yet in their menagerie.\r\n10. A highly civilized poet or painter who has paid you to guide them to wild and inspiring locales.\r\n\r\n### Outlander Mementos\r\n1. A trophy from the hunt of a mighty beast, such as an phase monster-horn helmet.\r\n2. A trophy from a battle against a fierce monster, such as a still-wriggling troll finger.\r\n3. A stone from a holy druidic shrine.\r\n4. Tools appropriate to your home terrain, such as pitons or snowshoes.\r\n5. Hand-crafted leather armor, hide armor, or clothing.\r\n6. The handaxe you made yourself.\r\n7. A gift from a dryad or faun.\r\n8. Trading goods worth 30 gold, such as furs or rare herbs.\r\n9. A tiny whistle given to you by a sprite.\r\n10. An incomplete map.", "type": "connection_and_memento", - "background": "outlander" + "parent": "outlander" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 282, "fields": { "name": "Adventures And Advancement", "desc": "During your travels, wilderness dwellers may come to you for help battling monsters and other dangers. If you succeed in several such adventures, you may earn the freely given aid of up to 8 **warriors**.", "type": "adventures_and_advancement", - "background": "outlander" + "parent": "outlander" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 286, "fields": { "name": "Supply and Demand", "desc": "When you buy a trade good and sell it elsewhere to a community in need of that good, you gain a 10% bonus to its sale price for every 100 miles between the buy and sell location (maximum of 50%).", "type": "feature", - "background": "trader" + "parent": "trader" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 289, "fields": { "name": "Ability Score Increases", "desc": "+1 to Intelligence and one other ability score.", "type": "ability_score", - "background": "artisan" + "parent": "artisan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 290, "fields": { "name": "Skill Proficiencies", "desc": "Persuasion, and either Insight or History.", "type": "skill_proficiency", - "background": "artisan" + "parent": "artisan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 291, "fields": { "name": "Equipment", "desc": "One set of artisan's tools, traveler's clothes.", "type": "equipment", - "background": "artisan" + "parent": "artisan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 292, "fields": { "name": "Trade Mark", "desc": "When in a city or town, you have access to a fully-stocked workshop with everything you need to ply your trade. Furthermore, you can expect to earn full price when you sell items you have crafted (though there is no guarantee of a buyer).", "type": "feature", - "background": "artisan" + "parent": "artisan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 294, "fields": { "name": "Adventures And Advancement", "desc": "If you participate in the creation of a magic item (a “master work”), you will gain the services of up to 8 commoner apprentices with the appropriate tool proficiency.", "type": "adventures_and_advancement", - "background": "artisan" + "parent": "artisan" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 295, "fields": { "name": "Ability Score Increases", "desc": "+1 to Charisma and one other ability score.", "type": "ability_score", - "background": "entertainer" + "parent": "entertainer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 296, "fields": { "name": "Skill Proficiencies", "desc": "Performance, and either Acrobatics, Culture, or Persuasion.", "type": "skill_proficiency", - "background": "entertainer" + "parent": "entertainer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 297, "fields": { "name": "Equipment", "desc": "Lute or other musical instrument, costume.", "type": "equipment", - "background": "entertainer" + "parent": "entertainer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 298, "fields": { "name": "Pay the Piper", "desc": "In any settlement in which you haven't made yourself unpopular, your performances can earn enough money to support yourself and your companions: the bigger the settlement, the higher your standard of living, up to a moderate lifestyle in a city.", "type": "feature", - "background": "entertainer" + "parent": "entertainer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 299, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Entertainer Connections\r\n1. Your rival, an equally talented performer.\r\n2. The cruel ringleader of the sinister circus where you learned your trade.\r\n3. A noble who wants vengeance for the song you wrote about him.\r\n4. The actor who says that there’s always room in their troupe for you and your companions.\r\n5. The noble who owes you a favor for penning the love poems that won their spouse.\r\n6. Your former partner, a slumming noble with a good ear and bad judgment.\r\n7. The rival who became successful and famous by taking credit for your best work.\r\n8. The highly-placed courtier who is always trying to further your career.\r\n9. A jilted lover who wants revenge. \r\n10. The many tavernkeepers and tailors to whom you owe surprisingly large sums.\r\n\r\n### Entertainer Mementos\r\n\r\n1. Your unfinished masterpiece—if you can find inspiration to overcome your writer's block.\r\n2. Fine clothing suitable for a noble and some reasonably convincing costume jewelry.\r\n3. A love letter from a rich admirer.\r\n4. A broken instrument of masterwork quality—if repaired, what music you could make on it!\r\n5. A stack of slim poetry volumes you just can't sell.\r\n6. Jingling jester's motley.\r\n7. A disguise kit.\r\n8. Water-squirting wands, knotted scarves, trick handcuffs, and other tools of a bizarre new entertainment trend: a nonmagical magic show.\r\n9. A stage dagger.\r\n10. A letter of recommendation from your mentor to a noble or royal court.", "type": "connection_and_memento", - "background": "entertainer" + "parent": "entertainer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 300, "fields": { "name": "Adventures And Advancement", "desc": "Some of your admirers will pay you to plead a cause or smear an enemy. If you succeed at several such quests, your fame will grow. You will be welcome at royal courts, which will support you at a rich lifestyle.", "type": "adventures_and_advancement", - "background": "entertainer" + "parent": "entertainer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 301, "fields": { "name": "Ability Score Increases", "desc": "+1 to Constitution and one other ability score.", "type": "ability_score", - "background": "guildmember" + "parent": "guildmember" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 302, "fields": { "name": "Skill Proficiencies", "desc": "Two of your choice.", "type": "skill_proficiency", - "background": "guildmember" + "parent": "guildmember" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 303, "fields": { "name": "Equipment", "desc": "One set of artisan's tools or one instrument, traveler's clothes, guild badge.", "type": "equipment", - "background": "guildmember" + "parent": "guildmember" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 304, "fields": { "name": "Guild Business", "desc": "While in a city or town, you can maintain a moderate lifestyle by plying your trade. Furthermore, the guild occasionally informs you of jobs that need doing. Completing such a job might require performing a downtime activity, or it might require a full adventure. The guild provides a modest reward if you're successful.", "type": "feature", - "background": "guildmember" + "parent": "guildmember" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 305, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guildmember Connections\r\n\r\n1. Your guild master who occasionally has secret missions for groups which can keep their mouths shut.\r\n2. Members of a rival guild who might or might not stoop to violence.\r\n3. The master who, recognizing your talent, risked all to teach you dangerous guild secrets.\r\n4. The agent of a rival guild who is trying to steal secrets.\r\n5. The jealous teacher who took credit for your work and got you expelled from the guild.\r\n6. The guild quartermaster who stocks goods of dubious legality.\r\n7. The friendly guild officer who always saves you the most interesting assignments.\r\n8. The rivals who always compete for the same guild jobs.\r\n9. The noble who owes you big.\r\n10. Your guild master’s ambitious second-in-command who is recruiting allies for a coup.\r\n\r\n### Guildmember Mementos\r\n\r\n1. *Artisans Guild:* An incomplete masterpiece which your mentor never finished.\r\n2. *Entertainers Guild:* An incomplete masterpiece which your mentor never finished.\r\n3. *Explorers Guild:* A roll of incomplete maps each with a reward for completion.\r\n4. *Laborers Guild:* A badge entitling you to a free round of drinks at most inns and taverns.\r\n5. *Adventurers Guild:* A request from a circus to obtain live exotic animals.\r\n6. *Bounty Hunters Guild:* A set of manacles and a bounty on a fugitive who has already eluded you once.\r\n7. *Mages Guild:* The name of a wizard who has created a rare version of a spell that the guild covets.\r\n8. *Monster Hunters Guild:* A bounty, with no time limit, on a monster far beyond your capability.\r\n9. *Archaeologists Guild:* A map marking the entrance of a distant dungeon.\r\n10. *Thieves Guild:* Blueprints of a bank, casino, mint, or other rich locale.", "type": "connection_and_memento", - "background": "guildmember" + "parent": "guildmember" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 306, "fields": { "name": "Adventures And Advancement", "desc": "Once you have completed several quests or endeavors advancing guild business, you may be promoted to guild officer. You gain access to more lucrative contracts. In addition, the guild supports you at a moderate lifestyle without you having to work.", "type": "adventures_and_advancement", - "background": "guildmember" + "parent": "guildmember" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 307, "fields": { "name": "Ability Score Increases", "desc": "+1 to Intelligence and one other ability score.", "type": "ability_score", - "background": "sage" + "parent": "sage" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 308, "fields": { "name": "Skill Proficiencies", "desc": "History, and either Arcana, Culture, Engineering, or Religion.", "type": "skill_proficiency", - "background": "sage" + "parent": "sage" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 309, "fields": { "name": "Equipment", "desc": "Bottle of ink, pen, 50 sheets of parchment, common clothes.", "type": "equipment", - "background": "sage" + "parent": "sage" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 310, "fields": { "name": "Library Privileges", "desc": "As a fellow or friend of several universities you have visiting access to the great libraries, most of which are off-limits to the general public. With enough time spent in a library, you can uncover most of the answers you seek (any question answerable with a DC 20 Arcana, Culture, Engineering, History, Nature, or Religion check).", "type": "feature", - "background": "sage" + "parent": "sage" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 311, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sage Connections\r\n\r\n1. Your rival who always seems to be one step ahead of you in the research race.\r\n2. The college dean who banished you for conduct unbefitting a research fellow.\r\n3. A former student of yours who has become a dangerous wizard.\r\n4. The professor who took credit for your research.\r\n5. The rival sage whose cruel nickname for you has made you a laughingstock.\r\n6. The alchemist who will pay for bizarre monster trophies and other ingredients—no questions asked.\r\n7. The peer with a competing cosmological theory that causes endless friendly bickering.\r\n8. The noble who recognized your intelligence at a young age and sponsored your entrance into academia.\r\n9. A talented apprentice who ran away after mastering magical power but not the theoretical foundation to control it.\r\n10. The invading general who burned the library that was once your home.\r\n\r\n### Sage Mementos\r\n\r\n1. A letter from a colleague asking for research help.\r\n2. Your incomplete manuscript.\r\n3. An ancient scroll in a language that no magic can decipher.\r\n4. A copy of your highly unorthodox theoretical work that got you in so much trouble.\r\n5. A list of the forbidden books that may answer your equally forbidden question.\r\n6. A formula for a legendary magic item for which you have no ingredients.\r\n7. An ancient manuscript of a famous literary work believed to have been lost; only you believe that it is genuine.\r\n8. Your mentor's incomplete bestiary, encyclopedia, or other work that you vowed to complete.\r\n9. Your prize possession: a magic quill pen that takes dictation.\r\n10. The name of a book you need for your research that seems to be missing from every library you've visited.", "type": "connection_and_memento", - "background": "sage" + "parent": "sage" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 312, "fields": { "name": "Adventures And Advancement", "desc": "When you visit libraries and universities you tend to be asked for help in your role as a comparatively rough-and-tumble adventurer. After fetching a few bits of esoteric knowledge and settling a few academic disputes, you may be granted access to the restricted areas of the library (which contain darker secrets and deeper mysteries, such as those answerable with a DC 25 Arcana, Culture, Engineering, History, Nature, or Religion check).", "type": "adventures_and_advancement", - "background": "sage" + "parent": "sage" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 313, "fields": { "name": "Ability Score Increases", "desc": "+1 to Constitution and one other ability score.", "type": "ability_score", - "background": "folk-hero" + "parent": "folk-hero" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 314, "fields": { "name": "Skill Proficiencies", "desc": "Survival, and either Animal Handling or Nature.", "type": "skill_proficiency", - "background": "folk-hero" + "parent": "folk-hero" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 315, "fields": { "name": "Equipment", "desc": "Any artisan's tools except alchemist's supplies, common clothes.", "type": "equipment", - "background": "folk-hero" + "parent": "folk-hero" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 316, "fields": { "name": "Local Fame", "desc": "Unless you conceal your identity, you're universally recognized and admired near the site of your exploits. You and your companions are treated to a moderate lifestyle in any settlement within 100 miles of your Prestige Center.", "type": "feature", - "background": "folk-hero" + "parent": "folk-hero" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 317, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Folk Hero Connections\r\n\r\n1. The bard whose song made you legendary and who wants a sequel.\r\n2. Your friend, a traveling merchant whose caravan spreads your fame.\r\n3. A deadly enemy: the heir of the oppressive noble you killed.\r\n4. A deadly enemy: the mother of the monster you killed.\r\n5. A deadly enemy: the leader of the bandits you defeated.\r\n6. A deadly enemy: the tyrant you robbed.\r\n7. A kid who wants to follow your footsteps into danger.\r\n8. The jealous rival who wants to best your monster-slaying prowess, daring deeds, prize pie recipe, or whatever else made your famous.\r\n9. A secret admirer: the heir or heiress of the oppressive noble you defeated.\r\n10. The retired adventurer who trained you and is now in a bit of trouble.\r\n\r\n### Folk Hero Mementos\r\n\r\n1. The mask you used to conceal your identity while fighting oppression (you are only recognized as a folk hero while wearing the mask).\r\n2. A necklace bearing a horn, tooth, or claw from the monster you defeated.\r\n3. A ring given to you by the dead relative whose death you avenged.\r\n4. The weapon you wrestled from the leader of the raid on your village.\r\n5. The trophy, wrestling belt, silver pie plate, or other prize marking you as the county champion.\r\n6. The famous scar you earned in your struggle against your foe.\r\n7. The signature weapon which provides you with your nickname.\r\n8. The injury or physical difference by which your admirers and foes recognize you.\r\n9. The signal whistle or instrument which you used to summon allies and spook enemies.\r\n10. Copies of the ballads and poems written in your honor.", "type": "connection_and_memento", - "background": "folk-hero" + "parent": "folk-hero" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 318, "fields": { "name": "Adventures And Advancement", "desc": "Common folk come to you with all sorts of problems. If you fought an oppressive regime, they bring you tales of injustice. If you fought a monster, they seek you out with monster problems. If you solve many such predicaments, you become universally famous, gaining the benefits of your Local Fame feature in every settled land.", "type": "adventures_and_advancement", - "background": "folk-hero" + "parent": "folk-hero" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 325, "fields": { "name": "Ability Score Increases", "desc": "+1 to Charisma and one other ability score.", "type": "ability_score", - "background": "gambler" + "parent": "gambler" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 326, "fields": { "name": "Skill Proficiencies", "desc": "Deception, and either Insight or Sleight of Hand.", "type": "skill_proficiency", - "background": "gambler" + "parent": "gambler" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 327, "fields": { "name": "Equipment", "desc": "Fine clothes, dice set, playing card set.", "type": "equipment", - "background": "gambler" + "parent": "gambler" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 328, "fields": { "name": "Lady Luck", "desc": "Each week you may attempt a “lucky throw” to support yourself by gambling. Roll a d6 to determine the lifestyle you can afford with your week's winnings (1–2: poor, 3–5: moderate, 6: rich).", "type": "feature", - "background": "gambler" + "parent": "gambler" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 329, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Gambler Connections\r\n1. The mentor you have now surpassed.\r\n2. The duelist who will never forgive you for fleecing them.\r\n3. The legendary gambler you aspire to beat.\r\n4. The friendly rival who always keeps you on your toes.\r\n5. The noble who publicly accused you of cheating.\r\n6. An ink-stained academic who wants you to test a risky theory about how to beat the house.\r\n7. The gang leader who would rather kill you than pay up.\r\n8. The kid who strives to emulate you. \r\n9. The cardsharp rival who cheats to win.\r\n10. The rival who won something from you that you want back.\r\n\r\n### Gambler Mementos\r\n\r\n1. Gambling debts owed you by someone who's gone missing.\r\n2. Your lucky coin that you've always won back after gambling it away.\r\n3. The deeds to a monster-infested copper mine, a castle on another plane of existence, and several other valueless properties.\r\n4. A pawn shop ticket for a valuable item—if you can gather enough money to redeem it.\r\n5. The hard-to-sell heirloom that someone really wants back.\r\n6. Loaded dice or marked cards. They grant advantage on gambling checks when used, but can be discovered when carefully examined by someone with the appropriate tool proficiency (dice or cards).\r\n7. An invitation to an annual high-stakes game to which you can't even afford the ante.\r\n8. A two-faced coin.\r\n9. A torn half of a card—a long-lost relative is said to hold the other half.\r\n10. An ugly trinket that its former owner claimed had hidden magical powers.", "type": "connection_and_memento", - "background": "gambler" + "parent": "gambler" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 330, "fields": { "name": "Adventures And Advancement", "desc": "Once you've had more than your fair share of lucky throws, you attract the attention of richer opponents. You add +1 to all your lucky throws. Additionally, you and your friends may be invited to exclusive games with more at stake than money.", "type": "adventures_and_advancement", - "background": "gambler" + "parent": "gambler" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 331, "fields": { "name": "Ability Score Increases", "desc": "+1 to Dexterity and one other ability score.", "type": "ability_score", - "background": "marauder" + "parent": "marauder" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 332, "fields": { "name": "Skill Proficiencies", "desc": "Survival, and either Intimidation or Stealth.", "type": "skill_proficiency", - "background": "marauder" + "parent": "marauder" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 333, "fields": { "name": "Equipment", "desc": "Traveler's clothes, signal whistle, tent (one person).", "type": "equipment", - "background": "marauder" + "parent": "marauder" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 334, "fields": { "name": "Secret Ways", "desc": "When you navigate while traveling, pursuers have disadvantage on checks made to track your group. Additionally, you can travel stealthily at a normal pace.", "type": "feature", - "background": "marauder" + "parent": "marauder" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 335, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Marauder Connections\r\n1. Your nemesis: a naval captain or captain of the guard who thwarted you on several occasions.\r\n2. Your mentor: a charismatic pirate captain.\r\n3. The stylish highway robber who taught you the trade.\r\n4. The local noble who pursues you obsessively.\r\n5. The three outlaws who hold the other three pieces of your treasure map.\r\n6. The marauder chief who betrayed you and the rest of the gang in exchange for freedom.\r\n7. The child you became an outlaw to protect.\r\n8. The cleric who converted you to a life of law and faith.\r\n9. The scholarly old bandit whose inventions gave you an edge against the pursuing authorities.\r\n10. Your best friend—who is serving a life sentence for your shared crime.\r\n\r\n### Marauder Mementos\r\n1. The eerie mask by which your victims know you.\r\n2. The one item that you wish you hadn't stolen.\r\n3. A signet ring marking you as heir to a seized estate.\r\n4. A locket containing a picture of the one who betrayed you.\r\n5. A broken compass.\r\n6. A love token from the young heir to a fortune.\r\n7. Half of a torn officer's insignia.\r\n8. The hunter's horn which members of your band use to call allies.\r\n9. A wanted poster bearing your face.\r\n10. Your unfinished thesis from your previous life as an honest scholar.", "type": "connection_and_memento", - "background": "marauder" + "parent": "marauder" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 336, "fields": { "name": "Adventures And Advancement", "desc": "Allies and informants occasionally give you tips about the whereabouts of poorly-guarded loot. After a few such scores, you may gain the free service of up to 8", "type": "adventures_and_advancement", - "background": "marauder" + "parent": "marauder" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 337, "fields": { "name": "Ability Score Increases", "desc": "+1 to Wisdom and one other ability score.", "type": "ability_score", - "background": "hermit" + "parent": "hermit" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 338, "fields": { "name": "Skill Proficiencies", "desc": "Religion, and either Medicine or Survival.", "type": "skill_proficiency", - "background": "hermit" + "parent": "hermit" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 339, "fields": { "name": "Equipment", "desc": "Healer's satchel, herbalism kit, common clothes, 7 days rations, and a prayer book, prayer wheel, or prayer beads.", "type": "equipment", - "background": "hermit" + "parent": "hermit" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 340, "fields": { "name": "Inner Voice", "desc": "You occasionally hear a voice—perhaps your conscience, perhaps a higher power—which you have come to trust. It told you to go into seclusion, and then it advised you when to rejoin the world. You think it is leading you to your destiny (consult with your Narrator about this feature.)", "type": "feature", - "background": "hermit" + "parent": "hermit" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 342, "fields": { "name": "Adventures And Advancement", "desc": "Your inner voice may occasionally prompt you to accept certain adventure opportunities or to avoid certain actions. You are free to obey or disobey this voice. Eventually however it may lead you to a special revelation, adventure, or treasure.", "type": "adventures_and_advancement", - "background": "hermit" + "parent": "hermit" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 343, "fields": { "name": "Ability Score Increases", "desc": "+1 to Constitution and one other ability score.", "type": "ability_score", - "background": "sailor" + "parent": "sailor" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 344, "fields": { "name": "Skill Proficiencies", "desc": "Athletics, and either Acrobatics or Perception.", "type": "skill_proficiency", - "background": "sailor" + "parent": "sailor" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 345, "fields": { "name": "Equipment", "desc": "Common clothes, navigator's tools, 50 feet of rope.", "type": "equipment", - "background": "sailor" + "parent": "sailor" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 346, "fields": { "name": "Sea Salt", "desc": "Your nautical jargon and rolling gait mark you unmistakably as a mariner. You can easily enter into shop talk with any sailors that are not hostile to you, learning nautical gossip and ships' comings and goings. You also recognize most large ships by sight and by name, and can make a History orCulturecheck to recall their most recent captain and allegiance.", "type": "feature", - "background": "sailor" + "parent": "sailor" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 347, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle's tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it.\r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction's signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol.\r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle’s tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it. \r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction’s signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol. \r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.", "type": "connection_and_memento", - "background": "sailor" + "parent": "sailor" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 348, "fields": { "name": "Adventures And Advancement", "desc": "You and your companions will be able to take passage for free on nearly any commercial ship in exchange for occasional ship duties when all hands are called. In addition, after you have a few naval exploits under your belt your fame makes sailors eager to sail under you. You can hire a ship's crew at half the usual price.", "type": "adventures_and_advancement", - "background": "sailor" + "parent": "sailor" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 349, "fields": { "name": "Ability Score Increases", "desc": "+1 to Wisdom and one other ability score.", "type": "ability_score", - "background": "exile" + "parent": "exile" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 350, "fields": { "name": "Skill Proficiencies", "desc": "Survival, and either History or Performance.", "type": "skill_proficiency", - "background": "exile" + "parent": "exile" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 351, "fields": { "name": "Equipment", "desc": "Traveler's clothes, 10 days rations.", "type": "equipment", - "background": "exile" + "parent": "exile" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 352, "fields": { "name": "Fellow Traveler", "desc": "You gain an expertise die on Persuasion checks against others who are away from their land of birth.", "type": "feature", - "background": "exile" + "parent": "exile" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 353, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Exile Connections\r\n1. The companions who shared your exile.\r\n2. The kindly local who taught you Common.\r\n3. The shopkeeper or innkeeper who took you in and gave you work.\r\n4. The hunters from your native land who pursue you.\r\n5. The distant ruler who banished you until you redeem yourself.\r\n6. The community of fellow exiles who have banded together in a city neighborhood.\r\n7. The acting or carnival troupe which took you in.\r\n8. The suspicious authorities who were convinced you were a spy.\r\n9. Your first friend after your exile: a grizzled adventurer who traveled with you.\r\n10. A well-connected and unscrupulous celebrity who hails from your homeland.\r\n\r\n### Exile Mementos\r\n\r\n1. A musical instrument which was common in your homeland.\r\n2. A memorized collection of poems or sagas.\r\n3. A locket containing a picture of your betrothed from whom you are separated.\r\n4. Trade, state, or culinary secrets from your native land.\r\n5. A piece of jewelry given to you by someone you will never see again.\r\n6. An inaccurate, ancient map of the land you now live in.\r\n7. Your incomplete travel journals.\r\n8. A letter from a relative directing you to someone who might be able to help you.\r\n9. A precious cultural artifact you must protect.\r\n10. An arrow meant for the heart of your betrayer.", "type": "connection_and_memento", - "background": "exile" + "parent": "exile" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 354, "fields": { "name": "Adventures And Advancement", "desc": "You may occasionally meet others from your native land. Some may be friends, and some dire enemies; few will be indifferent to you. After a few such encounters, you may become the leader of a faction of exiles. Your followers include up to three NPCs of Challenge Rating ½ or less, such as scouts.", "type": "adventures_and_advancement", - "background": "exile" + "parent": "exile" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 358, "fields": { "name": "Guttersnipe", "desc": "When you're in a town or city, you can provide a poor lifestyle for yourself and your companions. Also, you know how to get anywhere in town without being spotted by gangs, gossips, or guard patrols.", "type": "feature", - "background": "urchin" + "parent": "urchin" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 361, "fields": { "name": "Connection and Memento", "desc": "### Urchin Connections\r\n\r\n1. The disreputable thief who taught you thieving skills.\r\n2. The saintly orphanage matron who’s so proud of how you’ve grown.\r\n3. The miserly and cruel orphanage administrator who rounds up urchins and runaways.\r\n4. The drunken thief who shared with you what little they could steal. \r\n5. The fellow urchin who has some power to make “bad stuff” happen to their enemies.\r\n6. The thieves’ guild contact who will pay well for small folk to wriggle through a window or chimney to unlock a front door.\r\n7. The philanthropist (or charlatan?) who took you in, dressed you properly, and tried to teach you upper-class manners.\r\n8. The spymaster or detective who sent you on investigation missions.\r\n9. The noble whose horse trampled you or a friend.\r\n10. The rich family you ran away from.\r\n\r\n### Urchin Mementos\r\n\r\n1. A locket containing pictures of your parents.\r\n2. A set of (stolen?) fine clothes.\r\n3. A small trained animal, such as a mouse, parrot, or monkey.\r\n4. A map of the sewers.\r\n5. The key or signet ring that was around your neck when you were discovered as a foundling.\r\n6. A battered one-eyed doll.\r\n7. A portfolio of papers given to you by a fleeing, wounded courier.\r\n8. A gold tooth (not yours, and not in your mouth).\r\n9. The flowers or trinkets that you sell.\r\n10. A dangerous secret overheard while at play.", "type": "connection_and_memento", - "background": "urchin" + "parent": "urchin" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 362, "fields": { "name": "Tool Proficiencies", "desc": "One vehicle.", "type": "tool_proficiency", - "background": "trader" + "parent": "trader" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 363, "fields": { "name": "Tool Proficiencies", "desc": "Disguise kit, thieves’ tools.", "type": "tool_proficiency", - "background": "urchin" + "parent": "urchin" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 364, "fields": { "name": "Ability Score Increases", "desc": "+1 to Strength and one other ability score.", "type": "ability_score", - "background": "soldier" + "parent": "soldier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 365, "fields": { "name": "Skill Proficiencies", "desc": "Athletics, and either Animal Handling or Intimidation.", "type": "skill_proficiency", - "background": "soldier" + "parent": "soldier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 366, "fields": { "name": "Tool Proficiencies", "desc": "One type of gaming set.", "type": "tool_proficiency", - "background": "soldier" + "parent": "soldier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 367, "fields": { "name": "Languages", "desc": "One of your choice.", "type": "language", - "background": "soldier" + "parent": "soldier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 368, "fields": { "name": "Suggested Equipment", "desc": "Uniform, common clothes, 7 days rations.", "type": "equipment", - "background": "soldier" + "parent": "soldier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 369, "fields": { "name": "Military Bearing", "desc": "Soldiers recognize their own. Off duty soldiers are usually willing to trade tales and gossip with you. On duty soldiers, while not obeying your orders, are likely to answer your questions and treat you respectfully on the off chance that you’re an unfamiliar officer who can get them in trouble.", "type": "feature", - "background": "soldier" + "parent": "soldier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 370, "fields": { "name": "Adventures and Advancement", "desc": "You will occasionally run into old comrades, some of whom may need favors. If you perform a few celebrated martial deeds your old military outfit (or a new one) is likely to offer you an officer’s rank. You gain the free service of up to 8 guards. Your new commanders will occasionally give you objectives: you will be expected to act independently in order to achieve these objectives.", "type": "adventures_and_advancement", - "background": "soldier" + "parent": "soldier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 371, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Soldier Connections\r\n1. Your old commanding officer who still wants you to rejoin.\r\n2. The commander who callously sent your unit into a slaughter.\r\n3. Your shady war buddy who can get their hands on anything with no questions asked.\r\n4. Your best friend who went missing on the battlefield. \r\n5. The comrade who saved your life at the risk of their own.\r\n6. The ghost who haunts you. \r\n7. The superior officer you punched (for abusing civilians? For insulting your honor? For preventing you from looting?)\r\n8. The scary experimental war construct you accompanied on a dangerous mission.\r\n9. The golden-armored knight with ridiculously good teeth who was always giving inspiring speeches.\r\n10. The enemy officer who captured you.\r\n\r\n### Soldier Mementos\r\n1. A broken horn, tooth, or other trophy salvaged from a monster’s corpse.\r\n2. A trophy won in a battle (a tattered banner, a ceremonial sword, or similar).\r\n3. A gaming set.\r\n4. A letter from your sweetheart.\r\n5. An old wound that twinges in bad weather.\r\n6. A letter you’re supposed to deliver to a dead comrade’s family.\r\n7. A horrifying memory you can’t escape.\r\n8. A horned or plumed helmet.\r\n9. The sword you broke over your knee rather than fight for those bastards another day.\r\n10. A medal for valor.", "type": "connection_and_memento", - "background": "soldier" + "parent": "soldier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 372, "fields": { "name": "Tool Proficiencies", "desc": "Navigator’s tools, water vehicles.", "type": "tool_proficiency", - "background": "sailor" + "parent": "sailor" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 373, "fields": { "name": "Ability Score Increases", "desc": "+1 to Strength and one other ability score.", "type": "ability_score", - "background": "noble" + "parent": "noble" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 374, "fields": { "name": "Skill Proficiencies", "desc": "Culture, History, and either Animal Handling or Persuasion.", "type": "skill_proficiency", - "background": "noble" + "parent": "noble" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 375, "fields": { "name": "Tool Proficiencies", "desc": "One gaming set.", "type": "tool_proficiency", - "background": "noble" + "parent": "noble" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 376, "fields": { "name": "Languages", "desc": "One of your choice.", "type": "language", - "background": "noble" + "parent": "noble" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 377, "fields": { "name": "Equipment", "desc": "Fine clothes, signet ring, writ detailing your family tree.", "type": "equipment", - "background": "noble" + "parent": "noble" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 378, "fields": { "name": "High Society", "desc": "You know of—or personally know—most of the noble families for hundreds of miles. In most settled areas you (and possibly your companions, if well-behaved) can find a noble host who will feed you, shelter you, and offer you a rich lifestyle.", "type": "feature", - "background": "noble" + "parent": "noble" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 379, "fields": { "name": "Adventures and Advancement", "desc": "Your family may ask you for one or two little favors: convince this relative to marry a family-approved spouse, slay that family foe in a duel, serve under a liege lord in a battle. If you advance your family’s fortunes, you may earn a knighthood along with the free service of a retinue of servants and up to 8 **guards**.", "type": "adventures_and_advancement", - "background": "noble" + "parent": "noble" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 380, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Noble Connections\r\n1. Your perfect elder sibling to whom you never seem to measure up.\r\n2. The treacherous noble who slaughtered or scattered your family and is now living in your ancestral home.\r\n3. Your family servant, a retired adventurer who taught you more about battle than any fancy dueling master.\r\n4. The foppish friend you carouse with.\r\n5. The common-born sweetheart that your family forbid you from seeing again.\r\n6. The fugitive head of your family whose rebellion caused your family’s lands to be seized and titles to be redistributed.\r\n7. Your foe, the heir of a rival house, with whom you have dueled twice.\r\n8. The crime boss to whom your family is in massive debt.\r\n9. The scion of an allied family to whom you were betrothed from birth.\r\n10. The eccentric knight for whom you trained as a squire or page.\r\n\r\n### Noble Mementos\r\n1. A shield or tabard bearing your coat of arms.\r\n2. A keepsake or love letter from a high-born sweetheart.\r\n3. An heirloom weapon—though it’s not magical, it has a name and was used for mighty deeds.\r\n4. A letter of recommendation to a royal court.\r\n5. Perfumed handkerchiefs suitable for blocking the smell of commoners.\r\n6. An extremely fashionable and excessively large hat.\r\n7. A visible scar earned in battle or in a duel.\r\n8. A set of common clothes and a secret commoner identity.\r\n9. IOUs of dubious value that were earned in games of chance against other nobles.\r\n10. A letter from a friend begging for help.", "type": "connection_and_memento", - "background": "noble" + "parent": "noble" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 381, "fields": { "name": "Tool Proficiencies", "desc": "One type of artisan’s tools or vehicle.", "type": "tool_proficiency", - "background": "marauder" + "parent": "marauder" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 382, "fields": { "name": "Tool Proficiencies", "desc": "Herbalism kit.", "type": "tool_proficiency", - "background": "hermit" + "parent": "hermit" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 383, "fields": { "name": "Tool Proficiencies", "desc": "Either one type of artisan’s tools, musical instrument, or vehicle.", "type": "tool_proficiency", - "background": "guildmember" + "parent": "guildmember" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 384, "fields": { "name": "Ability Score Increases", "desc": "+1 to Strength and one other ability score.", "type": "ability_score", - "background": "guard" + "parent": "guard" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 385, "fields": { "name": "Skill Proficiencies", "desc": "Intimidation, and either Athletics or Investigation.", "type": "skill_proficiency", - "background": "guard" + "parent": "guard" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 386, "fields": { "name": "Languages", "desc": "One of your choice.", "type": "language", - "background": "guard" + "parent": "guard" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 387, "fields": { "name": "Equipment", "desc": "Common clothes, halberd, uniform.", "type": "equipment", - "background": "guard" + "parent": "guard" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 388, "fields": { "name": "Natural Authority", "desc": "Commoners and civilians sometimes assume you are part of a local constabulary force and defer to you.", "type": "feature", - "background": "guard" + "parent": "guard" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 389, "fields": { "name": "Adventures and Advancement", "desc": "When you visit the city or countryside you once patrolled you’re sure to get embroiled in the same politics that drove you out. Should you stick around righting wrongs, you might accidentally find yourself in a position of responsibility.", "type": "adventures_and_advancement", - "background": "guard" + "parent": "guard" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 390, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guard Connections\r\n1. The corrupt guard captain who framed you.\r\n2. The by-the-book guard captain who found you in violation of a regulation.\r\n3. The mighty guard captain who taught you all you know. \r\n4. The informant who tipped you off about criminal activity.\r\n5. The noble or merchant you protected.\r\n6. The comrade or superior officer you admired.\r\n7. The villain who kidnapped the person you were charged to protect.\r\n8. Your betrayer, the one person you didn’t think to mistrust.\r\n9. The noble or merchant who had everyone in their pocket.\r\n10. The diviner wizard who could usually provide you with the missing piece of a puzzle.\r\n\r\n### Guard Mementos\r\n1. Your badge of office, a symbol of an ideal few could live up to.\r\n2. Your badge of office, a symbol of a corrupt system you could no longer stomach.\r\n3. The arrow-damaged prayer book or playing card deck that saved your life.\r\n4. The whiskey flask that stood you in good stead on many cold patrols. \r\n5. Notes about a series of disappearances you would have liked to put a stop to. \r\n6. A broken sword, torn insignia, or other symbol of your disgrace and banishment.\r\n7. A tattoo or insignia marking you as part of an organization of which you are the last member.\r\n8. The fellow guard’s last words which you will never forget. \r\n9. A letter you were asked to deliver. \r\n10. A bloodstained duty roster.", "type": "connection_and_memento", - "background": "guard" + "parent": "guard" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 391, "fields": { "name": "Tool Proficiencies", "desc": "One type of artisan’s tools, one vehicle.", "type": "tool_proficiency", - "background": "folk-hero" + "parent": "folk-hero" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 392, "fields": { "name": "Tool Proficiencies", "desc": "Land vehicles.", "type": "tool_proficiency", - "background": "farmer" + "parent": "farmer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 393, "fields": { "name": "Ability Score Increases", "desc": "+1 to Intelligence and one other ability score.", "type": "ability_score", - "background": "cultist" + "parent": "cultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 394, "fields": { "name": "Skill Proficiencies", "desc": "Religion, and either Arcana or Deception.", "type": "skill_proficiency", - "background": "cultist" + "parent": "cultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 395, "fields": { "name": "Languages", "desc": "One of your choice.", "type": "language", - "background": "cultist" + "parent": "cultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 396, "fields": { "name": "Equipment", "desc": "Holy symbol (amulet or reliquary), common clothes, robes, 5 torches.", "type": "equipment", - "background": "cultist" + "parent": "cultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 397, "fields": { "name": "Forbidden Lore", "desc": "When you fail an Arcana or Religion check, you know what being or book holds the knowledge you seek finding the book or paying the being’s price is another matter.", "type": "feature", - "background": "cultist" + "parent": "cultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 398, "fields": { "name": "Adventures and Advancement", "desc": "Members of your former order may be hunting you for reenlistment, punishment, or both.\r\nAdditionally, your cult still seeks to open a portal, effect an apotheosis, or otherwise cause catastrophe. Eventually you may have to face the leader of your cult and perhaps even the being you once worshiped.", "type": "adventures_and_advancement", - "background": "cultist" + "parent": "cultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 399, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cultist Connections\r\n1. The cult leader whom you left for dead.\r\n2. The cleric or herald who showed you the error of your ways.\r\n3. The voice which still speaks to you in dreams.\r\n4. The charismatic cultist whose honeyed words and promises first tempted you.\r\n5. The friend or loved one still in the cult.\r\n6. Your former best friend who now hunts you for your desertion of the cult.\r\n7. The relentless inquisitor who hunts you for your past heresy.\r\n8. The demon which you and your compatriots accidentally unleashed.\r\n9. The self-proclaimed deity who barely escaped from their angry disciples after their magic tricks and fakeries were revealed.\r\n10. The masked cult leader whose identity you never learned, but whose cruel voice you would recognize anywhere.\r\n\r\n### Cultist Mementos\r\n1. The sinister tattoo which occasionally speaks to you.\r\n2. The cursed holy symbol which appears in your possession each morning no matter how you try to rid yourself of it.\r\n3. The scar on your palm which aches with pain when you disobey the will of your former master.\r\n4. The curved dagger that carries a secret enchantment able only to destroy the being you once worshiped.\r\n5. The amulet which is said to grant command of a powerful construct. \r\n6. A forbidden tome which your cult would kill to retrieve. \r\n7. An incriminating letter to your cult leader from their master (a noted noble or politician).\r\n8. A compass which points to some distant location or object.\r\n9. A talisman which is said to open a gateway to the realm of a forgotten god.\r\n10. The birthmark which distinguishes you as the chosen vessel of a reborn god.", "type": "connection_and_memento", - "background": "cultist" + "parent": "cultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 400, "fields": { "name": "Tool Proficiencies", "desc": "Gaming set, thieves' tools.", "type": "tool_proficiency", - "background": "criminal" + "parent": "criminal" } } ] diff --git a/data/v2/en-publishing/a5e-ddg/Benefit.json b/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json similarity index 86% rename from data/v2/en-publishing/a5e-ddg/Benefit.json rename to data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json index 30e700f4..c70b16bc 100644 --- a/data/v2/en-publishing/a5e-ddg/Benefit.json +++ b/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json @@ -1,292 +1,292 @@ [ { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 534, "fields": { "name": "Ability Score Increase", "desc": "+1 to Wisdom and one other ability score.", "type": "ability_score", - "background": "deep-hunter" + "parent": "deep-hunter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 535, "fields": { "name": "Skill Proficiencies", "desc": "Survival, and either Nature or Stealth.", "type": "skill_proficiency", - "background": "deep-hunter" + "parent": "deep-hunter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 536, "fields": { "name": "Tool Proficiencies", "desc": "Leatherworker’s tools.", "type": "tool_proficiency", - "background": "deep-hunter" + "parent": "deep-hunter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 537, "fields": { "name": "Suggested Equipment", "desc": "chalk, traveler’s clothes, 2 hunting traps", "type": "equipment", - "background": "deep-hunter" + "parent": "deep-hunter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 538, "fields": { "name": "Deep Lore", "desc": "You always have a sense of how deep you are and which direction is north, provided that you’ve traveled in these regions before. You are also generally aware of the physical and political geography of the region (e.g., “the old dwarf colony is this way and those tunnels are part of the wererat pack’s hunting grounds”). You know where relatively safe places to camp are located and you can usually find fresh sources of water.", "type": "feature", - "background": "deep-hunter" + "parent": "deep-hunter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 539, "fields": { "name": "Adventures and Advancement", "desc": "Once you’ve collected a few trophies from your hunts, people start offering you money in exchange for help against the subterranean monsters plaguing their communities. After a few such bounties, you gain the free service of up to 4 scouts (or scout variants). You can ask them to adventure with you or dispatch them to gather information on distant areas.", "type": "adventures_and_advancement", - "background": "deep-hunter" + "parent": "deep-hunter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 540, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Deep Hunter Connections\r\n1. The hunter that saved your life.\r\n2. The rival hunter that pursues the same beast.\r\n3. The rival hunter that took credit for your kill and branded you a liar.\r\n4. The intelligent monster that mocks you every time it escapes your grasp.\r\n5. The community or family that depends on you.\r\n6. The city alchemist that pays well for your trophies.\r\n7. A community of fey, deep gnome, or shadow elves that owe you their lives.\r\n8. A monster you have befriended and sworn to protect.\r\n9. The surface world ruler from whom you’re hiding.\r\n10. The monster that hunts you.\r\n\r\n### Deep Hunter Mementos\r\n1. A prized bow string, arrow, whetstone, or other piece of equipment that has never let you down.\r\n2. A locket containing the picture of a subterranean monster’s victim.\r\n3. An astonishing assortment of unusual jerkies.\r\n4. A scar from the monster that got away.\r\n5. Clothing bedecked with a dozen grisly trophies.\r\n6. A lucky coin you flip when you’re not sure of the way forward.\r\n7. The broken horn or tooth that nearly killed you.\r\n8. A talking monster skull (you hear it talking, anyway).\r\n9. A copper coin taken from a cavern filled with riches; you stumbled across the cavern while lost and have never found your way back.\r\n10. A journal detailing your attempts to find a navigable passage to the Midnight Sea.", "type": "connection_and_memento", - "background": "deep-hunter" + "parent": "deep-hunter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 541, "fields": { "name": "Ability Score Increase", "desc": "+1 to Intelligence and one other ability score.", "type": "ability_score", - "background": "dungeon-robber" + "parent": "dungeon-robber" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 542, "fields": { "name": "Skill Proficiencies", "desc": "History, and either Investigation or Religion.", "type": "skill_proficiency", - "background": "dungeon-robber" + "parent": "dungeon-robber" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 543, "fields": { "name": "Tool Proficiencies", "desc": "Cartographers’ tools.", "type": "tool_proficiency", - "background": "dungeon-robber" + "parent": "dungeon-robber" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 544, "fields": { "name": "Languages", "desc": "Any six (three of them no longer spoken).", "type": "language", - "background": "dungeon-robber" + "parent": "dungeon-robber" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 545, "fields": { "name": "Suggested Equipment", "desc": "Cartographers’ tools, miner’s pick, traveler’s clothes, shovel.", "type": "equipment", - "background": "dungeon-robber" + "parent": "dungeon-robber" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 546, "fields": { "name": "Unreliable Intelligence", "desc": "You know conspiracy theorists, armchair historians, disgraced academics, and other people with useful, if unreliable, knowledge. While in a city, once per day you can find an NPC who can make an Intelligence check with a +10 bonus to recall a fact. When you do so, the Narrator secretly rolls a d6. On a 1, your contact’s information is dangerously inaccurate.", "type": "feature", - "background": "dungeon-robber" + "parent": "dungeon-robber" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 547, "fields": { "name": "Adventures and Advancement", "desc": "As you build your reputation, shady people approach you with requests to “discover” items of uncertain ownership. After enough successes, a legitimate organization, such as a wizard’s college or esteemed museum, takes an interest in you. They offer you a position, which comes with funding granting a Wealthy lifestyle, access to free spellcasting services, and legal representation when you inevitably run afoul of the law.", "type": "adventures_and_advancement", - "background": "dungeon-robber" + "parent": "dungeon-robber" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 548, "fields": { "name": "Connection and Memento", "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Dungeon Robber Connections\r\n1. A rival who always tries to steal what you rightfully find.\r\n2. A rival who seeks powerful artifacts for evil ends.\r\n3. A fence who can find a buyer for anything.\r\n4. An underworld figure to whom you owe a staggering debt.\r\n5. A master forger who can replicate plausible records of ownership, permissions to restricted areas, and so on.\r\n6. An artist who can make perfect copies of artwork and paintings.\r\n7. A collector who sends you after valuable curios.\r\n8. Authorities who would like to question you about a relic’s mysterious disappearance.\r\n9. An admiring urchin who can get you anywhere in their city.\r\n10. A rambling sage whose bizarre, shocking theories you half believe.\r\n\r\n### Dungeon Robber Mementos\r\n1. A mysterious idol whose origin you seek.\r\n2. A cultural item from equipment.\r\n3. A treasure map with no obvious connection to any known land mass.\r\n4. An ancient piece of machinery that is undoubtedly very powerful, although all it currently does is light up.\r\n5. A rare book that grants an expertise die on checks related to a specific civilization.\r\n6. A gold coin bearing the face of a king who never existed.\r\n7. Identification papers from the institution that has kicked you out.\r\n8. A tablet carved with indecipherable glyphs.\r\n9. A giant-sized key to an unknown door.\r\n10. One piece of a seven-part artifact.", "type": "connection_and_memento", - "background": "dungeon-robber" + "parent": "dungeon-robber" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 549, "fields": { "name": "Ability Score Increase", "desc": "+1 to Constitution and one other ability score.", "type": "ability_score", - "background": "escapee-from-below" + "parent": "escapee-from-below" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 550, "fields": { "name": "Skill Proficiencies", "desc": "Stealth, and either Perception or Survival.", "type": "skill_proficiency", - "background": "escapee-from-below" + "parent": "escapee-from-below" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 551, "fields": { "name": "Tool Proficiencies", "desc": "Thieves’ tools.", "type": "tool_proficiency", - "background": "escapee-from-below" + "parent": "escapee-from-below" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 552, "fields": { "name": "Suggested Equipment", "desc": "Common clothes, thieves’ tools.", "type": "equipment", - "background": "escapee-from-below" + "parent": "escapee-from-below" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 553, "fields": { "name": "Alien Culture", "desc": "Your prolonged captivity has granted you insight into the culture that kept you. You understand their customs, traditions, religion, political ties, and to some extent how they think. You are regarded as an expert in this culture and can usually recall some useful detail when you and your companions face a challenge involving this culture.", "type": "feature", - "background": "escapee-from-below" + "parent": "escapee-from-below" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 554, "fields": { "name": "Adventures and Advancement", "desc": "You find yourself drawn to the lands you once escaped. When you return there, you may have an opportunity to right wrongs or take revenge for past injuries. When you do, other escapees may look to you for leadership.", "type": "adventures_and_advancement", - "background": "escapee-from-below" + "parent": "escapee-from-below" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 555, "fields": { "name": "Connection and Memento", "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Escapee from Below Connections\r\n1. The friend and fellow escapee from whom you were separated.\r\n2. The family members who remain in captivity.\r\n3. The cruel overseer who tortured you.\r\n4. Members of an Underland resistance movement.\r\n5. An evil commando squad that hunts escapees.\r\n6. The kindly merchant who took you in when you first reached the surface.\r\n7. A fellow prisoner, still in captivity, who claimed to be an heir to royalty.\r\n8. The prominent merchant or politician you saw making deals with evil creatures in the Underland.\r\n9. A mighty Underland creature with ambitions to conquer the surface world.\r\n10. A ship captain who sails the Midnight Sea.\r\n\r\n### Escapee from Below Mementos\r\n1. A partial map of your escape route.\r\n2. Broken shackles or chains.\r\n3. A precious heirloom, still hidden somewhere in Underland.\r\n4. A delicious recipe (which no one would eat if they knew the ingredients).\r\n5. A compass that points back where you came.\r\n6. Twelve days worth of rations (dried mushrooms).\r\n7. A tattoo that conceals the hidden routes and passwords you used to gain your freedom.\r\n8. A trophy taken from the guard you overcame.\r\n9. A strange board game or toy designed for hands with too many fingers.\r\n10. A telepathic rat or other unusual pet.", "type": "connection_and_memento", - "background": "escapee-from-below" + "parent": "escapee-from-below" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 556, "fields": { "name": "Ability Score Increase", "desc": "+1 to Charisma and one other ability score.", "type": "ability_score", - "background": "imposter" + "parent": "imposter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 557, "fields": { "name": "Skill Proficiencies", "desc": "Deception, and either Perception or Survival.", "type": "skill_proficiency", - "background": "imposter" + "parent": "imposter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 558, "fields": { "name": "Tool Proficiencies", "desc": "Disguise kit.", "type": "tool_proficiency", - "background": "imposter" + "parent": "imposter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 559, "fields": { "name": "Suggested Equipment", "desc": "Common clothes, disguise kit.", "type": "equipment", - "background": "imposter" + "parent": "imposter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 560, "fields": { "name": "Cover Story", "desc": "Whenever you struggle to maintain the masquerade that you are who you say, a surprising number of people are willing to help you through your “lapses of memory.” They might be deluding themselves, or perhaps they know your secret but provide you cover for reasons of their own. So long as you don’t act completely out of character or get caught in an outrageous lie, you can usually find someone willing to cover for you. This cover most commonly takes he form of excuses for your strange behavior.", "type": "feature", - "background": "imposter" + "parent": "imposter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 561, "fields": { "name": "Adventures and Advancement", "desc": "Each of your double’s former acquaintances must be won over, until they like you more than they did your original. Even once that’s accomplished, you won’t truly be free of your past until you have reckoned with it. When evidence of your true nature surfaces—or when the person you are impersonating reappears—you must triumph in the court of public opinion. Once you have done so, you will have permanent, legal access to your former self’s belongings, inheritance rights, and so on.", "type": "adventures_and_advancement", - "background": "imposter" + "parent": "imposter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 562, "fields": { "name": "Connection and Memento", "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Imposter Connections\r\n1. The accomplice who knows your secret and helps you for their own reasons.\r\n2. The spouse or lover of your other self, whom you must win over.\r\n3. The enemy of your other self, whose hatred you inherit.\r\n4. Your other self’s rich or noble relative, from whom you may inherit a fortune.\r\n5. Your crooked former partner, who still searches for you, unaware of your new identity.\r\n6. The Underland compatriot who knew both you and the person whose identity you stole.\r\n7. The suspicious priest who noticed a change in your personality.\r\n8. An acquaintance whose “inside joke” you pretend to understand.\r\n9. The family pet that doesn’t recognize you.\r\n10. The person you left behind when you abandoned your old life.\r\n\r\n### Imposter Mementos\r\n1. The precious diary containing your original self’s secrets.\r\n2. The locket or signet ring that proves your identity.\r\n3. The scar that matches the one your original self had.\r\n4. An anonymous blackmail letter.\r\n5. An item that proves your real identity, which you keep hidden.\r\n6. The fingerbone that whispers hints to you at opportune times.\r\n7. The heirloom weapon you fraudulently wield.\r\n8. Your trusty hat of disguise.\r\n9. Your trusty ring of mind shielding.\r\n10. The implements (useless to you) of your original self’s magical training.", "type": "connection_and_memento", - "background": "imposter" + "parent": "imposter" } } ] diff --git a/data/v2/en-publishing/a5e-gpg/Benefit.json b/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json similarity index 89% rename from data/v2/en-publishing/a5e-gpg/Benefit.json rename to data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json index d875fcd2..7e5c09e1 100644 --- a/data/v2/en-publishing/a5e-gpg/Benefit.json +++ b/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json @@ -1,142 +1,142 @@ [ { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 520, "fields": { "name": "Ability Score Increase", "desc": "+1 Charisma and one other ability score.", "type": "ability_score", - "background": "cursed" + "parent": "cursed" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 521, "fields": { "name": "Skill Proficiencies", "desc": "Perception, and either Arcana, Nature, or Religion based on the source of your curse.", "type": "skill_proficiency", - "background": "cursed" + "parent": "cursed" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 522, "fields": { "name": "Languages", "desc": "Two of your choice.", "type": "language", - "background": "cursed" + "parent": "cursed" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 523, "fields": { "name": "Suggested Equipment", "desc": "4 days of rations, one person tent, traveler’s clothes", "type": "equipment", - "background": "cursed" + "parent": "cursed" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 524, "fields": { "name": "Accursed", "desc": "Whenever you fail at a Deception or Persuasion check, your curse manifests in a manner that you work out with your Narrator ahead of time. The failed check is ignored, and you immediately roll an Intimidation check with which you have expertise, taking the new roll. However, even a successful Intimidation check does not necessarily produce the result you originally intended, as the creatures around you may recoil in fear and distrust. At the Narrator’s discretion, you may keep the expertise die to Intimidation until the end of the scene.", "type": "feature", - "background": "cursed" + "parent": "cursed" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 525, "fields": { "name": "Adventures and Advancement", "desc": "The entity responsible for your curse may press you to complete specific tasks, such as transporting a mysterious item, defeating a hated enemy, or stealing important documents. Work with your Narrator to determine how your curse is leveraged in these situations. After you complete several such tasks, your infamy grows. You are known by all people within 100 miles of your Prestige Center, many of whom hold you in fearful respect. You and your companions are given a moderate lifestyle in settlements within this area by those who dare not risk your curse.", "type": "adventures_and_advancement", - "background": "cursed" + "parent": "cursed" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 526, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cursed Connections\r\n1. Your parent who made the deal and left you cursed for their own ends.\r\n2. A cultist devoted to the entity that cursed you and who reveres you as well.\r\n3. Your childhood romantic interest, ultimately marked in some way by your curse.\r\n4. A childhood friend who pulled away from you when they realized you were cursed.\r\n5. The entity that cursed you.\r\n6. A priest or sage who tried—and failed—to break your curse years ago.\r\n7. The kindly family that took you in out of pity.\r\n8. The law enforcers who see you as a dangerous troublemaker.\r\n9. Another accursed individual with whom you sometimes commiserate.\r\n10. A scholar or researcher obsessed with the entity that cursed you.\r\n\r\n### Cursed Memento\r\n1. A locket or ring once owned by someone who was killed when your curse first manifested.\r\n2. A childhood toy, well worn, which has always been soothing.\r\n3. A torn piece of parchment which may lead you to the person who can break your curse.\r\n4. A weapon or piece of ammunition set aside for the entity that cursed you.\r\n5. A unique scar, discoloration, or other mark on your body which shows your curse.\r\n6. Nightmares brought on by the curse which often wake you, screaming.\r\n7. A charm meant to keep your curse contained. You haven’t noticed an effect.\r\n8. An artistic rendering of the entity that cursed you\r\n9. A flask once given to you as well-meaning consolation.\r\n10. A small knife you used as a child to protect yourself, because no one else would.", "type": "connection_and_memento", - "background": "cursed" + "parent": "cursed" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 527, "fields": { "name": "Ability Score Increase", "desc": "+1 Wisdom and one other ability score of your choice.", "type": "ability_score", - "background": "haunted" + "parent": "haunted" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 528, "fields": { "name": "Skill Proficiencies", "desc": "Religion, and any one skill of your choice that the spirit has imparted to you.", "type": "skill_proficiency", - "background": "haunted" + "parent": "haunted" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 529, "fields": { "name": "Languages", "desc": "Two of your choice, one of which is the spirit’s native language.", "type": "language", - "background": "haunted" + "parent": "haunted" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 530, "fields": { "name": "Suggested Equipment", "desc": "2 days worth of rations, bell, 5 candles, ink, ink pen, 10 sheets of paper, 5 pieces of chalk, traveler’s clothes", "type": "equipment", - "background": "haunted" + "parent": "haunted" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 531, "fields": { "name": "Silent Aid", "desc": "Being in tune with your spirit allows them to point out something you might have missed, if only for their own purposes. You gain a +2 to your choice of your passive Perception, Investigation, or Insight score, depending on your spirit’s skills.\r\nIf you banish, free, or otherwise lose your spirit, consult with the Narrator to choose an appropriate feature from another background. Alternatively, the Narrator may rule that you’ve become a beacon for the supernatural and another spirit has taken up haunting you.", "type": "feature", - "background": "haunted" + "parent": "haunted" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 532, "fields": { "name": "Adventures and Advancement", "desc": "Whether you seek to violently banish the restless dead or help them to peacefully pass on, you will gain a reputation as a spirit-speaker. Common folk and nobility alike are likely to approach you for advice and aid with everything from hereditary curses to irritable poltergeists to speaking with a dead relative about a lost treasure.\r\nAfter you have solved several such problems, you’ve become known to those who deal in certain kinds of esoteric knowledge and gain access to their private libraries. These vast personal collections contain esoteric mysteries, such as those answerable with a DC 25 Arcana, History, or Religion check. While using such a library your host will provide you and your companions a moderate or rich lifestyle, depending on their means and how impressed they are by your exploits.", "type": "adventures_and_advancement", - "background": "haunted" + "parent": "haunted" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 533, "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Haunted Connections\r\n1. A descendant of your spirit who blames them for current misfortunes.\r\n2. Another haunted individual who came to you seeking help with their spirit in a time of crisis.\r\n3. The murderer who killed your spirit.\r\n4. A ghost who has consulted your spirit during a time of need.\r\n5. The bereaved spouse your spirit left behind who will do nearly anything to speak with their lost love.\r\n6. Your spirit, a childhood friend or a romantic partner before tragedy struck.\r\n7. Your spirits, a gaggle of bickering ancestors trying to use you to right a terrible wrong.\r\n8. A relative of your spirit who killed them in order to inherit a fortune.\r\n9. Your spirit, a hateful enemy of your family who is bound to you through a quirk of misfortune.\r\n10. Your spirit, who haunts their own body after you stole it and took up residence.\r\n\r\n### Haunted Memento\r\n1. A personal item (jewelry, tools, weapon, ect) once owned by your spirit. You can’t seem to get rid of it.\r\n2. A locket containing the image of the one who haunts you.\r\n3. The scent of your spirit’s favored cologne or perfume that clings to you.\r\n4. A small pouch of soil taken from your spirit’s grave.\r\n5. A letter of introduction penned by your spirit, giving you their blessing.\r\n6. Journals of your spirit’s life.\r\n7. An innocuous nonmagical item that your spirit tells you is of dire importance.\r\n8. The manacles that shackled your spirit before their death.\r\n9. A cryptic note written by your spirit who has no memory of its existence.\r\n10. The signet ring of your spirit, who you claim as your parent or ancestor.", "type": "connection_and_memento", - "background": "haunted" + "parent": "haunted" } } ] diff --git a/data/v2/green-ronin/tdcs/Benefit.json b/data/v2/green-ronin/tdcs/BackgroundBenefit.json similarity index 84% rename from data/v2/green-ronin/tdcs/Benefit.json rename to data/v2/green-ronin/tdcs/BackgroundBenefit.json index e0643eac..958db6ab 100644 --- a/data/v2/green-ronin/tdcs/Benefit.json +++ b/data/v2/green-ronin/tdcs/BackgroundBenefit.json @@ -1,232 +1,232 @@ [ { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 497, "fields": { "name": "Skill Proficiencies", "desc": "Deception, plus your choice of one between Sleight of Hand or Stealth.", "type": "skill_proficiency", - "background": "crime-syndicate-member" + "parent": "crime-syndicate-member" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 498, "fields": { "name": "Languages", "desc": "Thieves’ Cant", "type": "language", - "background": "crime-syndicate-member" + "parent": "crime-syndicate-member" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 499, "fields": { "name": "Tool Proficiencies", "desc": "Your choice of one from Thieves’ Tools, Forgery Kit, or Disguise Kit.", "type": "tool_proficiency", - "background": "crime-syndicate-member" + "parent": "crime-syndicate-member" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 500, "fields": { "name": "Equipment", "desc": "A set of dark common clothes including a hood, a set of tools to match your choice of tool proficiency, and a belt pouch containing 10g.", "type": "equipment", - "background": "crime-syndicate-member" + "parent": "crime-syndicate-member" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 501, "fields": { "name": "A Favor In Turn", "desc": "You have gained enough clout within the syndicate that you can call in a favor from your contacts, should you be close enough to a center of syndicate activity. A request for a favor can be no longer than 20 words, and is passed up the chain to an undisclosed syndicate boss for approval. This favor can take a shape up to the DM’s discretion depending on the request, with varying speeds of fulfillment: If muscle is requested, an NPC syndicate minion can temporarily aid the party. If money is needed, a small loan can be provided. If you’ve been imprisoned, they can look into breaking you free, or paying off the jailer.\r\nThe turn comes when a favor is asked to be repaid. The favor debt can be called in without warning, and many times with intended immediacy. Perhaps the player is called to commit a specific burglary without the option to decline. Maybe they must press a dignitary for a specific secret at an upcoming ball. The syndicate could even request a hit on an NPC, no questions asked or answered. The DM is to provide a debt call proportionate to the favor fulfilled. If a favor is not repaid within a reasonable period of time, membership to the crime syndicate can be revoked, and if the debt is large enough, the player may become the next hit contract to make the rounds.", "type": "feature", - "background": "crime-syndicate-member" + "parent": "crime-syndicate-member" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 502, "fields": { "name": "Suggested Characteristics", "desc": "Use the tables for the Criminal background in the PHB as the basis for your traits and motivations, modifying the entries when appropriate to suit your identity as a member of a crime syndicate. Your bond is likely associated with your fellow syndicate members or the individual who introduced you to the organization. Your ideal probably involves establishing your importance and indispensability within the syndicate. You joined to improve your livelihood and sense of purpose.", "type": "suggested_characteristics", - "background": "crime-syndicate-member" + "parent": "crime-syndicate-member" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 503, "fields": { "name": "Skill Proficiencies", "desc": "Your choice of two from among Arcana, History, and Persuasion.", "type": "skill_proficiency", - "background": "lyceum-student" + "parent": "lyceum-student" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 504, "fields": { "name": "Languages", "desc": "Two of your choice", "type": "language", - "background": "lyceum-student" + "parent": "lyceum-student" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 505, "fields": { "name": "Equipment", "desc": "A set of fine clothes, a lyceum student uniform, a writing kit (small pouch with a quill, ink, folded parchment, and a small penknife), and a belt pouch containing 10g.", "type": "equipment", - "background": "lyceum-student" + "parent": "lyceum-student" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 506, "fields": { "name": "Student Privilege", "desc": "You’ve cleared enough lessons, and gained an ally or two on staff, to have access to certain chambers within the lyceum (and some other allied universities) that outsiders would not. This allows use of any Tool Kit, so long as the Tool Kit is used on the grounds of the lyceum and is not removed from its respective chamber (each tool kit is magically marked and will sound an alarm if removed). More dangerous kits and advanced crafts (such as use of a Poisoner’s Kit, or the enchanting of a magical item) might require staff supervision. You may also have access to free crafting materials and enchanting tables, so long as they are relatively inexpensive, or your argument for them is convincing (up to the staff’s approval and DM’s discretion).", "type": "feature", - "background": "lyceum-student" + "parent": "lyceum-student" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 507, "fields": { "name": "Suggested Characteristics", "desc": "Use the tables for the Sage background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your pursuits at the lyceum. Your bond is likely associated with your goals as a student, and eventually a graduate. Your ideal probably involves your hopes in using the knowledge you gain at the lyceum, and your travels as an adventurer, to tailor the world to your liking.", "type": "suggested_characteristics", - "background": "lyceum-student" + "parent": "lyceum-student" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 508, "fields": { "name": "Skill Proficiencies", "desc": "Nature, plus your choice of one between Arcana or Survival.", "type": "skill_proficiency", - "background": "elemental-warden" + "parent": "elemental-warden" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 509, "fields": { "name": "Languages", "desc": "One of your choice.", "type": "language", - "background": "elemental-warden" + "parent": "elemental-warden" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 510, "fields": { "name": "Tool Proficiencies", "desc": "Herbalism Kit", "type": "tool_proficiency", - "background": "elemental-warden" + "parent": "elemental-warden" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 511, "fields": { "name": "Equipment", "desc": "A staff, hunting gear (a shortbow with 20 arrows, or a hunting trap), a set of traveler’s clothes, a belt pouch containing 10 gp.", "type": "equipment", - "background": "elemental-warden" + "parent": "elemental-warden" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 512, "fields": { "name": "Elemental Harmony", "desc": "Your upbringing surrounded by such strong, wild elemental magics has attuned your senses to the very nature of their chaotic forces, enabling you to subtly bend them to your will in small amounts. You learn the _Prestidigitation_ Cantrip, but can only produce the extremely minor effects below that involve the element of your chosen elemental tribe: \r\n* You create an instantaneous puff of wind strong enough to blow papers off a desk, or mess up someone’s hair (Wind). \r\n* You instantaneously create and control a burst of flame small enough to light or snuff out a candle, a torch, or a small campfire. (Fire). \r\n* You instantaneously create a small rock within your hand, no larger than a gold coin, that turns to dust after a minute (Earth). \r\n* You instantaneously create enough hot or cold water to fill a small glass (Water).", "type": "feature", - "background": "elemental-warden" + "parent": "elemental-warden" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 513, "fields": { "name": "Suggested Characteristics", "desc": "Use the tables for the Outlander background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your ties to your upbringing. Your bond is likely associated with those you respect whom you grew up around. Your ideal probably involves your wanting to understand your place in the world, not just the tribe, and whether you feel your destiny reaches beyond just watching the rift.", "type": "suggested_characteristics", - "background": "elemental-warden" + "parent": "elemental-warden" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 514, "fields": { "name": "Skill Proficiencies", "desc": "Religion and Deception.", "type": "skill_proficiency", - "background": "recovered-cultist" + "parent": "recovered-cultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 515, "fields": { "name": "Languages", "desc": "One of your choice.", "type": "language", - "background": "recovered-cultist" + "parent": "recovered-cultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 516, "fields": { "name": "Equipment", "desc": "Vestments and a holy symbol of your previous cult, a set of common clothes, a belt pouch containing 15 gp.", "type": "equipment", - "background": "recovered-cultist" + "parent": "recovered-cultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 517, "fields": { "name": "Wicked Awareness", "desc": "Your time worshipping in secrecy and shadow at the altar of malevolent forces has left you with insight and keen awareness to those who still operate in such ways. You can often spot hidden signs, messages, and signals left in populated places. If actively seeking signs of a cult or dark following, you have an easier time locating and decoding the signs or social interactions that signify cult activity, gaining advantage on any ability checks to discover such details.", "type": "feature", - "background": "recovered-cultist" + "parent": "recovered-cultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 518, "fields": { "name": "Suggested Characteristics", "desc": "Use the tables for the Acolyte background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your ties to your intent on fleeing your past and rectifying your future. Your bond is likely associated with those who gave you the insight and strength to flee your old ways. Your ideal probably involves your wishing to take down and destroy those who promote the dark ways you escaped, and perhaps finding new faith in a forgiving god.", "type": "suggested_characteristics", - "background": "recovered-cultist" + "parent": "recovered-cultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 519, "fields": { "name": "Fortune’s Grace", "desc": "Your fate-touched essence occasionally leads surrounding events to shift in your favor. You gain 1 Luck point, as per the Lucky feat outlined within the Player’s Handbook pg 167. This luck point is used in the same fashion as the feat, and you regain this expended luck point when you finish a long rest. If you already have the Lucky feat, you add this luck point to your total for the feat.", "type": "feature", - "background": "fate-touched" + "parent": "fate-touched" } } ] diff --git a/data/v2/kobold-press/toh/Benefit.json b/data/v2/kobold-press/toh/BackgroundBenefit.json similarity index 91% rename from data/v2/kobold-press/toh/Benefit.json rename to data/v2/kobold-press/toh/BackgroundBenefit.json index 11f618b6..ac092b5c 100644 --- a/data/v2/kobold-press/toh/Benefit.json +++ b/data/v2/kobold-press/toh/BackgroundBenefit.json @@ -1,1142 +1,1142 @@ [ { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 18, "fields": { "name": "Skill Proficiencies", "desc": "Perception, Survival", "type": "skill_proficiency", - "background": "desert-runner" + "parent": "desert-runner" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 19, "fields": { "name": "Tool Proficiencies", "desc": "Herbalist kit", "type": "tool_proficiency", - "background": "desert-runner" + "parent": "desert-runner" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 20, "fields": { "name": "Languages", "desc": "One of your choice", "type": "language", - "background": "desert-runner" + "parent": "desert-runner" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 21, "fields": { "name": "Equipment", "desc": "Traveler's clothes, herbalist kit, waterskin, pouch with 10 gp", "type": "equipment", - "background": "desert-runner" + "parent": "desert-runner" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 22, "fields": { "name": "Nomad", "desc": "Living in the open desert has allowed your body to adapt to a range of environmental conditions. You can survive on 1 gallon of water in hot conditions (or 1/2 gallon in normal conditions) without being forced to make Constitution saving throws, and you are considered naturally adapted to hot climates. While in a desert, you can read the environment to predict natural weather patterns and temperatures for the next 24 hours, allowing you to cross dangerous terrain at the best times. The accuracy of your predictions is up to the GM, but they should be reliable unless affected by magic or unforeseeable events, such as distant earthquakes or volcanic eruptions.", "type": "feature", - "background": "desert-runner" + "parent": "desert-runner" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 23, "fields": { "name": "Suggested Characteristics", "desc": "Those raised in the desert can be the friendliest of humanoids—knowing allies are better than enemies in that harsh environment—or territorial and warlike, believing that protecting food and water sources by force is the only way to survive.\r\n\r\n| d8 | Personality Trait |\r\n| --- | --- |\r\n| 1 | I'm much happier sleeping under the stars than in a bed in a stuffy caravanserai. |\r\n| 2 | It's always best to help a traveler in need; one day it might be you. | \r\n| 3 | I am slow to trust strangers, but I'm extremely loyal to my friends. | \r\n| 4 | If there's a camel race, I'm the first to saddle up! | \r\n| 5 | I always have a tale or poem to share at the campfire. | \r\n| 6 | I don't like sleeping in the same place more than two nights in a row. | \r\n| 7 | I've been troubled by dreams for the last month. I am determined to uncover their meaning. | \r\n| 8 | I feel lonelier in a crowded city than I do out on the empty desert sands. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greater Good.** The needs of the whole tribe outweigh those of the individuals who are part of it. (Good) |\r\n| 2 | **Nature.** I must do what I can to protect the beautiful wilderness from those who would do it harm. (Neutral) |\r\n| 3 | **Tradition.** I am duty-bound to follow my tribe's age-old route through the desert. (Lawful) |\r\n 4 | **Change.** Things seldom stay the same and we must always be prepared to go with the flow. (Chaotic) |\r\n| 5 | **Honor.** If I behave dishonorably, my actions will bring shame upon the entire tribe. (Lawful) |\r\n| 6 | **Greed.** Seize what you want if no one gives it to you freely. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I am the last living member of my tribe, and I cannot let their deaths go unavenged. |\r\n| 2 | I follow the spiritual path of my tribe; it will bring me to the best afterlife when the time comes. |\r\n| 3 | My best friend has been sold into slavery to devils, and I need to rescue them before it is too late. |\r\n| 4 | A nature spirit saved my life when I was dying of thirst in the desert. |\r\n| 5 | My takoba sword is my most prized possession; for over two centuries, it's been handed down from generation to generation. |\r\n| 6 | I have sworn revenge on the sheikh who unjustly banished me from the tribe. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I enjoy the company of camels more than people. |\r\n| 2 | I can be loud and boorish after a few wineskins. |\r\n| 3 | If I feel insulted, I'll refuse to speak to anyone for several hours. |\r\n| 4 | I enjoy violence and mayhem a bit too much. |\r\n| 5 | You can't rely on me in a crisis. |\r\n| 6 | I betrayed my brother to cultists to save my own skin. |", "type": "suggested_characteristics", - "background": "desert-runner" + "parent": "desert-runner" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 35, "fields": { "name": "Skill Proficiencies", "desc": "History, Insight", "type": "skill_proficiency", - "background": "court-servant" + "parent": "court-servant" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 36, "fields": { "name": "Tool Proficiencies", "desc": "One artisan's tools set of your choice", "type": "tool_proficiency", - "background": "court-servant" + "parent": "court-servant" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 37, "fields": { "name": "Languages", "desc": "One of your choice", "type": "language", - "background": "court-servant" + "parent": "court-servant" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 38, "fields": { "name": "Equipment", "desc": "A set of artisan's tools of your choice, a unique piece of jewelry, a set of fine clothes, a handcrafted pipe, and a belt pouch containing 20 gp", "type": "equipment", - "background": "court-servant" + "parent": "court-servant" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 39, "fields": { "name": "Servant's Invisibility", "desc": "The art of excellent service requires a balance struck between being always available and yet unobtrusive, and you've mastered it. If you don't perform a visible action, speak or be spoken to, or otherwise have attention drawn to you for at least 1 minute, creatures nearby have trouble remembering you are even in the room. Until you speak, perform a visible action, or have someone draw attention to you, creatures must succeed on a Wisdom (Perception) check (DC equal to 8 + your Charisma modifier + your proficiency bonus) to notice you. Otherwise, they conduct themselves as though you aren't present until either attention is drawn to you or one of their actions would take them into or within 5 feet of the space you occupy.", "type": "feature", - "background": "court-servant" + "parent": "court-servant" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 40, "fields": { "name": "Suggested Characteristics", "desc": "Court servants tend to be outwardly quiet and soft-spoken, but their insight into the nuances of conversation and societal happenings is unparalleled. When in crowds or around strangers, most court servants keep to themselves, quietly observing their surroundings and later sharing such observations with those they trust.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Unless I must speak, I hold my breath while serving others. |\r\n| 2 | It takes all my effort not to show the effusive emotions I feel when I help others. Best to quietly serve. |\r\n| 3 | It's getting harder to tolerate the prejudices of those I serve daily. |\r\n| 4 | Though the old ways are hard to give up, I want to be my own boss. I'll decide my path. |\r\n| 5 | Serving my family and friends is the only thing I truly care about. |\r\n| 6 | City life is killing my soul. I long for the old courtly ways. |\r\n| 7 | It's time for my fellows to wake up and be taken advantage of no longer. |\r\n| 8 | It's the small things that make it all worthwhile. I try to be present in every moment. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Family. My family, whether the one I come from or the one I make, is the thing in this world most worth protecting. (Any) |\r\n| 2 | Service. I am most rewarded when I know I have performed a valuable service for another. (Good) |\r\n| 3 | Sloth. What's the point of helping anyone now that I've been discarded? (Chaotic) |\r\n| 4 | Compassion. I can't resist helping anyone in need. (Good) |\r\n| 5 | Tradition. Life under my master's rule was best, and things should be kept as close to their ideals as possible. (Lawful) |\r\n| 6 | Joy. The pursuit of happiness is the only thing worth serving anymore. (Neutral) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My family needs me to provide for them. They mean everything to me, which means I'll do whatever it takes. |\r\n| 2 | My kin have served this holding and its lords and ladies for generations. I serve them faithfully to make my lineage proud. |\r\n| 3 | I can't read the inscriptions on this odd ring, but it's all I have left of my family and our history of loyal service. |\r\n| 4 | I'm with the best friends a person can ask for, so why do I feel so lonesome and homesick? |\r\n| 5 | I've found a profession where my skills are put to good use, and I won't let anyone bring me down. |\r\n| 6 | I found peace in a special garden filled with beautiful life, but I only have this flower to remind me. Someday I'll remember where to find that garden. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 |\r\n| 2 | I'm afraid of taking risks that might be good for me. |\r\n| 3 | I believe my master's people are superior to all others, and I'm not afraid to share that truth. |\r\n| 4 | I always do as I'm told, even though sometimes I don't think I should. |\r\n| 5 | I know what's best for everyone, and they'd all be better off if they'd follow my advice. |\r\n| 6 | I can't stand seeing ugly or depressing things. I'd much rather think happy thoughts. |", "type": "suggested_characteristics", - "background": "court-servant" + "parent": "court-servant" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 67, "fields": { "name": "Skill Proficiencies", "desc": "History, Insight", "type": "skill_proficiency", - "background": "destined" + "parent": "destined" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 68, "fields": { "name": "Languages", "desc": "One of your choice", "type": "language", - "background": "destined" + "parent": "destined" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 69, "fields": { "name": "Tool Proficiencies", "desc": "No additional tool proficiencies", "type": "tool_proficiency", - "background": "destined" + "parent": "destined" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 70, "fields": { "name": "Equipment", "desc": "A dagger, quarterstaff, or spear, a set of traveler's clothes, a memento of your destiny (a keepsake from your betrothed, the seal of your destined office, your family signet ring, or similar), a belt pouch containing 15 gp", "type": "equipment", - "background": "destined" + "parent": "destined" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 71, "fields": { "name": "Reputation of Opportunity", "desc": "Your story precedes you, as does your quest to claim—or run away from—your destiny. Those in positions of power, such as nobles, bureaucrats, rich merchants, and even mercenaries and brigands, all look to either help or hinder you, based on what they think they may get out of it. They're always willing to meet with you briefly to see just how worthwhile such aid or interference might be. This might mean a traveler pays for your passage on a ferry, a generous benefactor covers your group's meals at a tavern, or a local governor invites your adventuring entourage to enjoy a night's stay in their guest quarters. However, the aid often includes an implied threat or request. Some might consider delaying you as long as politely possible, some might consider taking you prisoner for ransom or to do “what's best” for you, and others might decide to help you on your quest in exchange for some future assistance. You're never exactly sure of the associated “cost” of the person's aid until the moment arrives. In the meantime, the open road awaits.", "type": "feature", - "background": "destined" + "parent": "destined" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 72, "fields": { "name": "Suggested Characteristics", "desc": "Destined characters might be running toward or away from destiny, but whatever the case, their destiny has shaped them. Think about the impact of your destiny on you and the kind of relationship you have with your destiny. Do you embrace it? Accept it as inevitable? Or do you fight it every step of the way?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm eager to find this destiny and move on with the next stage in my life. |\r\n| 2 | I keep the fire of my hope burning bright. I'm sure this will work out for the best. |\r\n| 3 | Fate has a way of finding you no matter what you do. I'm resigned to whatever they have planned for me, but I'll enjoy my time on the way. |\r\n| 4 | I owe it to myself or to those who helped establish this destiny. I'm determined to follow this through to the end. |\r\n| 5 | I don't know what this path means for me or my future. I'm more afraid of going back to that destiny than of seeing what's out in the world. |\r\n| 6 | I didn't ask for this, and I don't want it. I'm bitter that I must change my life for it. |\r\n| 7 | Few have been chosen to complete this lifepath, and I'm proud to be one of them. |\r\n| 8 | Who can say how this will work out? The world is an uncertain place, and I'll find my destiny when it finds me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Inevitability.** What's coming can't be stopped, and I'm dedicated to making it happen. (Evil) |\r\n| 2 | **Tradition.** I'm part of a cycle that has repeated for generations. I can't deny that. (Any) |\r\n| 3 | **Defiance.** No one can make me be something I don't want to be. (Any) |\r\n| 4 | **Greater Good.** Completing my duty ensures the betterment of my family, community, or region. (Good) |\r\n| 5 | **Power.** If I can take this role and be successful, I'll have opportunities to do whatever I want. (Chaotic) |\r\n| 6 | **Responsibility.** It doesn't matter if I want it or not; it's what I'm supposed to do. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | The true gift of my destiny is the friendships I make along the way to it. |\r\n| 2 | The benefits of completing this destiny will strengthen my family for years to come. |\r\n| 3 | Trying to alter my decision regarding my destiny is an unthinkable affront to me. |\r\n| 4 | How I reach my destiny is just as important as how I accomplish my destiny. |\r\n| 5 | People expect me to complete this task. I don't know how I feel about succeeding or failing, but I'm committed to it. |\r\n| 6 | Without this role fulfilled, the people of my home region will suffer, and that's not acceptable. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If you don't have a destiny, are you really special? |\r\n| 2 | But I am the “Chosen One.” |\r\n| 3 | I fear commitment; that's what this boils down to in the end. |\r\n| 4 | What if I follow through with this and I fail? |\r\n| 5 | It doesn't matter what someone else sacrificed for this. I only care about my feelings. |\r\n| 6 | Occasionally—ok, maybe “often”—I make poor decisions in life, like running from this destiny. |", "type": "suggested_characteristics", - "background": "destined" + "parent": "destined" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 73, "fields": { "name": "Skill Proficiencies", "desc": "Insight, Persuasion", "type": "skill_proficiency", - "background": "diplomat" + "parent": "diplomat" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 74, "fields": { "name": "Languages", "desc": "Two of your choice", "type": "language", - "background": "diplomat" + "parent": "diplomat" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 75, "fields": { "name": "Tool Proficiencies", "desc": "No additional tool proficiencies", "type": "tool_proficiency", - "background": "diplomat" + "parent": "diplomat" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 76, "fields": { "name": "Equipment", "desc": "A set of fine clothes, a letter of passage from a local minor authority or traveling papers that signify you as a traveling diplomat, and a belt pouch containing 20 gp", "type": "equipment", - "background": "diplomat" + "parent": "diplomat" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 77, "fields": { "name": "A Friend in Every Port", "desc": "Your reputation as a peacemaker precedes you, or people recognize your easy demeanor, typically allowing you to attain food and lodging at a discount. In addition, people are predisposed to warn you about dangers in a location, alert you when a threat approaches you, or seek out your help for resolving conflicts between locals.", "type": "feature", - "background": "diplomat" + "parent": "diplomat" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 78, "fields": { "name": "Suggested Characteristics", "desc": "Diplomats always have kind words and encourage their companions to think positively when encountering upsetting situations or people. Diplomats have their limits, however, and are quick to discover when someone is negotiating in bad faith.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I like to travel, meet new people, and learn about different customs. |\r\n| 2 | I intercede in minor squabbles to find common ground on all sides.|\r\n| 3 | I never disparage others, even when they might deserve such treatment.|\r\n| 4 | I always try to make a new friend wherever I travel, and when I return to those areas, I seek out my friends. |\r\n| 5 | I have learned how to damn with faint praise, but I only use it when someone has irked me. |\r\n| 6 | I am not opposed to throwing a bit of coin around to ensure a good first impression. |\r\n| 7 | Even when words fail at the outset, I still try to calm tempers. |\r\n| 8 | I treat everyone as an equal, and I encourage others to do likewise. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Harmony.** I want everyone to get along. (Good) |\r\n| 2 | **Contractual.** When I resolve a conflict, I ensure all parties formally acknowledge the resolution. (Lawful) |\r\n| 3 | **Selfishness.** I use my way with words to benefit myself the most. (Evil) 4 Freedom. Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 4 | **Freedom.** Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 5 | **Avoidance.** A kind word is preferable to the drawing of a sword. (Any) |\r\n| 6 | **Unity.** It is possible to achieve a world without borders and without conflict. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|------|\r\n| 1 | I want to engineer a treaty with far-reaching effects in the world. |\r\n| 2 | I am carrying out someone else's agenda and making favorable arrangements for my benefactor. |\r\n| 3 | A deal I brokered went sour, and I am trying to make amends for my mistake. |\r\n| 4 | My nation treats everyone equitably, and I'd like to bring that enlightenment to other nations. |\r\n| 5 | A traveling orator taught me the power of words, and I want to emulate that person. |\r\n| 6 | I fear a worldwide conflict is imminent, and I want to do all I can to stop it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I always start by appealing to a better nature from those I face, regardless of their apparent hostility. |\r\n| 2 | I assume the best in everyone, even if I have been betrayed by that trust in the past. |\r\n| 3 | I will stand in the way of an ally to ensure conflicts don't start. |\r\n| 4 | I believe I can always talk my way out of a problem. |\r\n| 5 | I chastise those who are rude or use vulgar language. |\r\n| 6 | When I feel I am on the verge of a successful negotiation, I often push my luck to obtain further concessions. |", "type": "suggested_characteristics", - "background": "diplomat" + "parent": "diplomat" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 79, "fields": { "name": "Skill Proficiencies", "desc": "Nature, Survival", "type": "skill_proficiency", - "background": "forest-dweller" + "parent": "forest-dweller" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 80, "fields": { "name": "Languages", "desc": "Sylvan", "type": "language", - "background": "forest-dweller" + "parent": "forest-dweller" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 81, "fields": { "name": "Tool Proficiencies", "desc": "Woodcarver's tools, Herbalism kit", "type": "tool_proficiency", - "background": "forest-dweller" + "parent": "forest-dweller" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 82, "fields": { "name": "Equipment", "desc": "A set of common clothes, a hunting trap, a wood staff, a whetstone, an explorer's pack, and a pouch containing 5 gp", "type": "equipment", - "background": "forest-dweller" + "parent": "forest-dweller" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 83, "fields": { "name": "Forester", "desc": "Your experience living, hunting, and foraging in the woods gives you a wealth of experience to draw upon when you are traveling within a forest. If you spend 1 hour observing, examining, and exploring your surroundings while in a forest, you are able to identify a safe location to rest. The area is protected from all but the most extreme elements and from the nonmagical native beasts of the forest. In addition, you are able to find sufficient kindling for a small fire throughout the night.\r\n\r\n### Life-Changing Event\r\nYou have lived a simple life deep in the sheltering boughs of the forest, be it as a trapper, farmer, or villager eking out a simple existence in the forest. But something happened that set you on a different path and marked you for greater things. Choose or randomly determine a defining event that caused you to leave your home for the wider world. \r\n\r\n| d8 | Event |\r\n|---|---|\r\n| 1 | You were living within the forest when cesspools of magical refuse from a nearby city expanded and drove away the game that sustained you. You had to move to avoid the prospect of a long, slow demise via starvation. |\r\n| 2 | Your village was razed by a contingent of undead. For reasons of its own, the forest and its denizens protected and hid you from their raid. |\r\n| 3 | A roving band of skeletons and zombies attacked your family while you were hunting. |\r\n| 4 | You are an ardent believer in the preservation of the forest and the natural world. When the people of your village abandoned those beliefs, you were cast out and expelled into the forest. |\r\n| 5 | You wandered into the forest as a child and became lost. For inexplicable reasons, the forest took an interest in you. You have faint memories of a village and have had no contact with civilization in many years. |\r\n| 6 | You were your village's premier hunter. They relied on you for game and without your contributions their survival in the winter was questionable. Upon returning from your last hunt, you found your village in ruins, as if decades had passed overnight. |\r\n| 7 | Your quiet, peaceful, and solitary existence has been interrupted with dreams of the forest's destruction, and the urge to leave your home compels you to seek answers. |\r\n| 8 | Once in a hidden glen, you danced with golden fey and forgotten gods. Nothing in your life since approaches that transcendent moment, cursing you with a wanderlust to seek something that could. |", "type": "feature", - "background": "forest-dweller" + "parent": "forest-dweller" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 84, "fields": { "name": "Suggested Characteristics", "desc": "Forest dwellers tend toward solitude, introspection, and self-sufficiency. You keep your own council, and you are more likely to watch from a distance than get involved in the affairs of others. You are wary, slow to trust, and cautious of depending on outsiders.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will never forget being hungry in the winter. I field dress beasts that fall to blade or arrow so that I am never hungry again. |\r\n| 2 | I may be alone in the forest, but I am only ever lonely in cities. |\r\n| 3 | Walking barefoot allows me to interact more intuitively with the natural world. |\r\n| 4 | The road is just another kind of wall. I make my own paths and go where I will. |\r\n| 5 | Others seek the gods in temples and shrines, but I know their will is only revealed in the natural world, not an edifice constructed by socalled worshippers. I pray in the woods, never indoors. |\r\n| 6 | What you call personal hygiene, I call an artificially imposed distraction from natural living. |\r\n| 7 | No forged weapon can replace the sheer joy of a kill accomplished only with hands and teeth. |\r\n| 8 | Time lived alone has made me accustomed to talking loudly to myself, something I still do even when others are present. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Change. As the seasons shift, so too does the world around us. To resist is futile and anathema to the natural order. (Chaotic) |\r\n| 2 | Conservation. All life should be preserved and, if needed, protected. (Good) |\r\n| 3 | Acceptance. I am a part of my forest, no different from any other flora and fauna. To think otherwise is arrogance and folly. When I die, it will be as a leaf falling in the woods. (Neutral) |\r\n| 4 | Cull. The weak must be removed for the strong to thrive. (Evil) |\r\n| 5 | Candor. I am open, plain, and simple in life, word, and actions. (Any) |\r\n| 6 | Balance. The forest does not lie. The beasts do not create war. Equity in all things is the way of nature. (Neutral) |\r\n\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | When I lose a trusted friend or companion, I plant a tree upon their grave. |\r\n| 2 | The voice of the forest guides me, comforts me, and protects me. |\r\n| 3 | The hermit who raised me and taught me the ways of the forest is the most important person in my life. |\r\n| 4 | I have a wooden doll, a tiny wickerman, that I made as a child and carry with me at all times. |\r\n| 5 | I know the ways of civilizations rise and fall. The forest and the Old Ways are eternal. |\r\n| 6 | I am driven to protect the natural order from those that would disrupt it. |\r\n\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am accustomed to doing what I like when I like. I'm bad at compromising, and I must exert real effort to make even basic conversation with other people. |\r\n| 2 | I won't harm a beast without just cause or provocation. |\r\n| 3 | Years of isolated living has left me blind to the nuances of social interaction. It is a struggle not to view every new encounter through the lens of fight or flight. |\r\n| 4 | The decay after death is merely the loam from which new growth springs—and I enjoy nurturing new growth. |\r\n| 5 | An accident that I caused incurred great damage upon my forest, and, as penance, I have placed myself in self-imposed exile. |\r\n| 6 | I distrust the undead and the unliving, and I refuse to work with them. |", "type": "suggested_characteristics", - "background": "forest-dweller" + "parent": "forest-dweller" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 85, "fields": { "name": "Skill Proficiencies", "desc": "Perception, Survival", "type": "skill_proficiency", - "background": "former-adventurer" + "parent": "former-adventurer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 86, "fields": { "name": "Languages", "desc": "One of your choice", "type": "language", - "background": "former-adventurer" + "parent": "former-adventurer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 87, "fields": { "name": "Tool Proficiencies", "desc": "No additional tool proficiencies", "type": "tool_proficiency", - "background": "former-adventurer" + "parent": "former-adventurer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 88, "fields": { "name": "Equipment", "desc": "A dagger, quarterstaff, or shortsword (if proficient), an old souvenir from your previous adventuring days, a set of traveler's clothes, 50 feet of hempen rope, and a belt pouch containing 15 gp", "type": "equipment", - "background": "former-adventurer" + "parent": "former-adventurer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 89, "fields": { "name": "Old Friends and Enemies", "desc": "Your previous career as an adventurer might have been brief or long. Either way, you certainly journeyed far and met people along the way. Some of these acquaintances might remember you fondly for aiding them in their time of need. On the other hand, others may be suspicious, or even hostile, because of your past actions. When you least expect it, or maybe just when you need it, you might encounter someone who knows you from your previous adventuring career. These people work in places high and low, their fortunes varying widely. The individual responds appropriately based on your mutual history, helping or hindering you at the GM's discretion.", "type": "feature", - "background": "former-adventurer" + "parent": "former-adventurer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 90, "fields": { "name": "Suggested Characteristics", "desc": "Former adventurers bring a level of practical experience that fledgling heroes can't match. However, the decisions, outcomes, successes, and failures of your previous career often weigh heavily on your mind. The past seldom remains in the past. How you rise to these new (or old) challenges determines the outcome of your new career.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I have a thousand stories about every aspect of the adventuring life. |\r\n| 2 | My past is my own, and to the pit with anyone who pushes me about it. |\r\n| 3 | I can endure any hardship without complaint. |\r\n| 4 | I have a list of rules for surviving adventures, and I refer to them often. |\r\n| 5 | It's a dangerous job, and I take my pleasures when I can. |\r\n| 6 | I can't help mentioning all the famous friends I've met before. |\r\n| 7 | Anyone who doesn't recognize me is clearly not someone worth knowing. |\r\n| 8 | I've seen it all. If you don't listen to me, you're going to get us all killed. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Strength.** Experience tells me there are no rules to war. Only victory matters. (Evil) |\r\n| 2 | **Growth.** I strive to improve myself and prove my worth to my companions—and to myself. (Any) |\r\n| 3 | **Thrill.** I am only happy when I am facing danger with my life on the line. (Any) |\r\n| 4 | **Generous.** If I can help someone in danger, I will. (Good) |\r\n| 5 | **Ambition.** I may have lost my renown, but nothing will stop me from reclaiming it. (Chaotic) |\r\n| 6 | **Responsibility.** Any cost to myself is far less than the price of doing nothing. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will end the monsters who killed my family and pulled me back into the adventuring life. |\r\n| 2 | A disaster made me retire once. Now I will stop it from happening to anyone else. |\r\n| 3 | My old weapon has been my trusted companion for years. It's my lucky charm. |\r\n| 4 | My family doesn't understand why I became an adventurer again, which is why I send them souvenirs, letters, or sketches of exciting encounters in my travels. |\r\n| 5 | I was a famous adventurer once. This time, I will be even more famous, or die trying. |\r\n| 6 | Someone is impersonating me. I will hunt them down and restore my reputation. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | It's all about me! Haven't you learned that by now? |\r\n| 2 | I can identify every weapon and item with a look. |\r\n| 3 | You think this is bad? Let me tell you about something really frightening. |\r\n| 4 | Sure, I have old foes around every corner, but who doesn't? |\r\n| 5 | I'm getting too old for this. |\r\n| 6 | Seeing the bad side in everything just protects you from inevitable disappointment. |", "type": "suggested_characteristics", - "background": "former-adventurer" + "parent": "former-adventurer" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 91, "fields": { "name": "Skill Proficiencies", "desc": "Athletics, Survival", "type": "skill_proficiency", - "background": "freebooter" + "parent": "freebooter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 92, "fields": { "name": "Languages", "desc": "No additional languages", "type": "language", - "background": "freebooter" + "parent": "freebooter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 93, "fields": { "name": "Tool Proficiencies", "desc": "Navigator's tools, vehicles (water)", "type": "tool_proficiency", - "background": "freebooter" + "parent": "freebooter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 94, "fields": { "name": "Equipment", "desc": "A pirate flag from your ship, several tattoos, 50 feet of rope, a set of traveler's clothes, and a belt pouch containing 10 gp", "type": "equipment", - "background": "freebooter" + "parent": "freebooter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 95, "fields": { "name": "A Friendly Face in Every Port", "desc": "Your reputation precedes you. Whenever you visit a port city, you can always find someone who knows of (or has sailed on) your former ship and is familiar with its captain and crew. They are willing to provide you and your traveling companions with a roof over your head, a bed for the night, and a decent meal. If you have a reputation for cruelty and savagery, your host is probably afraid of you and will be keen for you to leave as soon as possible. Otherwise, you receive a warm welcome, and your host keeps your presence a secret, if needed. They may also provide you with useful information about recent goings-on in the city, including which ships have been in and out of port.", "type": "feature", - "background": "freebooter" + "parent": "freebooter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 96, "fields": { "name": "Suggested Characteristics", "desc": "Freebooters are a boisterous lot, but their personalities include freedom-loving mavericks and mindless thugs. Nonetheless, sailing a ship requires discipline, and freebooters tend to be reliable and aware of their role on board, even if they do their own thing once fighting breaks out. Most still yearn for the sea, and some feel shame or regret for past deeds.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm happiest when I'm on a gently rocking vessel, staring at the distant horizon. |\r\n| 2 | Every time we hoisted the mainsail and raised the pirate flag, I felt butterflies in my stomach. |\r\n| 3 | I have lovers in a dozen different ports. Most of them don't know about the others. |\r\n| 4 | Being a pirate has taught me more swear words and bawdy jokes than I ever knew existed. I like to try them out when I meet new people. |\r\n| 5 | One day I hope to have enough gold to fill a tub so I can bathe in it. |\r\n| 6 | There's nothing I enjoy more than a good scrap—the bloodier, the better. |\r\n| 7 | When a storm is blowing and the rain is lashing the deck, I'll be out there getting drenched. It makes me feel so alive! |\r\n| 8 | Nothing makes me more annoyed than a badly tied knot. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** No one tells me what to do or where to go. Apart from the captain. (Chaotic) |\r\n| 2 | **Greed.** I'm only in it for the booty. I'll gladly stab anyone stupid enough to stand in my way. (Evil) |\r\n| 3 | **Comradery.** My former shipmates are my family. I'll do anything for them. (Neutral) |\r\n| 4 | **Greater Good.** No man has the right to enslave another, or to profit from slavery. (Good) |\r\n| 5 | **Code.** I may be on dry land now, but I still stick to the Freebooter's Code. (Lawful) |\r\n| 6 | **Aspiration.** One day I'll return to the sea as the captain of my own ship. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | Anti-slavery pirates rescued me from a slave ship. I owe them my life. |\r\n| 2 | I still feel a deep attachment to my ship. Some nights I dream her figurehead is talking to me. |\r\n| 3 | I was the ship's captain until the crew mutinied and threw me overboard to feed the sharks. I swam to a small island and survived. Vengeance will be mine! |\r\n| 4 | Years ago, when my city was attacked, I fled the city on a small fleet bound for a neighboring city. I arrived back in the ruined city a few weeks ago on the same ship and can remember nothing of the voyage. |\r\n| 5 | I fell asleep when I was supposed to be on watch, allowing our ship to be taken by surprise. I still have nightmares about my shipmates who died in the fighting. |\r\n| 6 | One of my shipmates was captured and sold into slavery. I need to rescue them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm terrified by the desert. Not enough water, far too much sand. |\r\n| 2 | I drink too much and end up starting barroom brawls. |\r\n| 3 | I killed one of my shipmates and took his share of the loot. |\r\n| 4 | I take unnecessary risks and often put my friends in danger. |\r\n| 5 | I sold captives taken at sea to traders. |\r\n| 6 | Most of the time, I find it impossible to tell the truth. |", "type": "suggested_characteristics", - "background": "freebooter" + "parent": "freebooter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 97, "fields": { "name": "Skill Proficiencies", "desc": "Animal Handling, Persuasion", "type": "skill_proficiency", - "background": "gamekeeper" + "parent": "gamekeeper" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 98, "fields": { "name": "Languages", "desc": "One of your choice", "type": "language", - "background": "gamekeeper" + "parent": "gamekeeper" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 99, "fields": { "name": "Tool Proficiencies", "desc": "Leatherworker's tools", "type": "tool_proficiency", - "background": "gamekeeper" + "parent": "gamekeeper" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 100, "fields": { "name": "Equipment", "desc": "A set of leatherworker's tools, a hunting trap, fishing tackle, a set of traveler's clothes, and a belt pouch containing 10 gp", "type": "equipment", - "background": "gamekeeper" + "parent": "gamekeeper" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 101, "fields": { "name": "Confirmed Guildmember", "desc": "As a recognized member of the Gamekeepers' Guild, you are knowledgeable in the care, training, and habits of animals used for hunting. With 30 days' of work and at least 2 gp for each day, you can train a raptor, such as a hawk, falcon, or owl, or a hunting dog, such as a hound, terrier, or cur, to become a hunting companion. Use the statistics of an owl for the raptor and the statistics of a jackal for the hunting dog. A hunting companion is trained to obey and respond to a series of one-word commands or signals, communicating basic concepts such as *attack*, *protect*, *retrieve*, *find*, *hide*, or similar. The companion can know up to six such commands and can be trained to obey a number of creatures, other than you, equal to your proficiency bonus. A hunting companion travels with you wherever you go, unless you enter a particularly dangerous environment (such as a poisonous swamp), or you command the companion to stay elsewhere. A hunting companion doesn't join you in combat and stays on the edge of any conflict until it is safe to return to your side. When traveling overland with a hunting companion, you can use the companion to find sufficient food to sustain yourself and up to five other people each day. You can have only one hunting companion at a time.", "type": "feature", - "background": "gamekeeper" + "parent": "gamekeeper" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 102, "fields": { "name": "Suggested Characteristics", "desc": "You are one of the capable people who maintains hunting preserves, trains coursing hounds and circling raptors, and plans the safe outings that allow fair nobles, rich merchants, visiting dignitaries, and their entourages to venture into preserves and forests to seek their quarry. You are as comfortable hunting quarry in the forest as you are conversing with members of the elite who have an interest in hunting.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nature has lessons to teach us all, and I'm always happy to share them. |\r\n| 2 | Once while out on a hunt, something happened which was very relatable to our current situation. Let me tell you about it. |\r\n| 3 | My friends are my new charges, and I'll make sure they thrive. |\r\n| 4 | Preparation and knowledge are the key to any success. |\r\n| 5 | I've dealt with all sorts of wealthy and noble folk, and I've seen just how spoiled they can be. |\r\n| 6 | I feel like my animals are the only ones who really understand me. |\r\n| 7 | You can train yourself to accomplish anything you put your mind to accomplishing. |\r\n| 8 | The world shows you everything you need to know to understand a situation. You just have to be paying attention to the details. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Dedication. Your willingness to get the job done, no matter what the cost, is what is most important. (Evil) |\r\n| 2 | Training. You sink to the level of your training more often than you rise to the occasion. (Any) |\r\n| 3 | Prestige. Pride in your training, your work, and your results is what is best in life. (Any) |\r\n| 4 | Diligent. Hard work and attention to detail bring success more often than failure. (Good) |\r\n| 5 | Nature. The glory and majesty of the wild world outshine anything mortals create. (Chaotic) |\r\n| 6 | Responsibility. When you take an oath to protect and shepherd something, that oath is for life. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I understand animals better than people, and the way of the hunter just makes sense. |\r\n| 2 | I take great pride in providing my services to the wealthy and influential. |\r\n| 3 | Natural spaces need to be tended and preserved, and I take joy in doing it when I can. |\r\n| 4 | I need to ensure people know how to manage nature rather than live in ignorance. |\r\n| 5 | Laws are important to prevent nature's overexploitation. |\r\n| 6 | I can be alone in the wilderness and not feel lonely. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Individuals can be all right, but civilization is the worst. |\r\n| 2 | The wealthy and nobility are a rot in society. |\r\n| 3 | Things die, either by predators or nature; get used to it. |\r\n| 4 | Everything can be managed if you want it badly enough. |\r\n| 5 | When you make exceptions, you allow unworthy or wasteful things to survive. |\r\n| 6 | If you don't work hard for something, is it worth anything? |", "type": "suggested_characteristics", - "background": "gamekeeper" + "parent": "gamekeeper" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 103, "fields": { "name": "Skill Proficiencies", "desc": "Insight plus one of your choice from among Intimidation or Persuasion", "type": "skill_proficiency", - "background": "innkeeper" + "parent": "innkeeper" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 104, "fields": { "name": "Languages", "desc": "Two of your choice", "type": "language", - "background": "innkeeper" + "parent": "innkeeper" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 105, "fields": { "name": "Tool Proficiencies", "desc": "No additional tool proficiencies", "type": "tool_proficiency", - "background": "innkeeper" + "parent": "innkeeper" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 106, "fields": { "name": "Equipment", "desc": "A set of either brewer's supplies or cook's utensils, a dagger or light hammer, traveler's clothes, and a pouch containing 20 gp", "type": "equipment", - "background": "innkeeper" + "parent": "innkeeper" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 107, "fields": { "name": "I Know Someone", "desc": "In interacting with the wide variety of people who graced the tables and bars of your previous life, you gained an excellent knowledge of who might be able to perform a particular task, provide the right service, sell the perfect item, or be able to connect you with someone who can. You can spend a couple of hours in a town or city and identify a person or place of business capable of selling the product or service you seek, provided the product is nonmagical and isn't worth more than 250 gp. At the GM's discretion, these restrictions can be lifted in certain locations. The price might not always be what you hoped, the quality might not necessarily be the best, or the person's demeanor may be grating, but you can find the product or service. In addition, you know within the first hour if the product or service you desire doesn't exist in the community, such as a coldweather outfit in a tropical fishing village.", "type": "feature", - "background": "innkeeper" + "parent": "innkeeper" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 108, "fields": { "name": "Suggested Characteristics", "desc": "The day-to-day operation of a tavern or inn teaches many lessons about people and how they interact.\r\n\r\nThe nose for trouble, the keen eye on the kegs, and the ready hand on a truncheon translates well to the life of an adventurer.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I insist on doing all the cooking, and I plan strategies like I cook—with proper measurements and all the right ingredients. |\r\n| 2 | Lending a sympathetic ear or a shoulder to cry on often yields unexpected benefits. |\r\n| 3 | I always have a story or tale to relate to any situation. |\r\n| 4 | There is a world of tastes and flavors to explore. |\r\n| 5 | Few problems can't be solved with judicious application of a stout cudgel. |\r\n| 6 | I never pass up the chance to bargain. Never. |\r\n| 7 | I demand the finest accommodations; I know what they're worth. |\r\n| 8 | I can defuse a situation with a joke, cutting remark, or arched eyebrow. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Service.** If we serve others, they will serve us in turn. (Lawful) |\r\n| 2 | **Perspective.** People will tell you a great deal about themselves, their situations, and their desires, if you listen. (Any) |\r\n| 3 | **Determination.** Giving up is not in my nature. (Any) |\r\n| 4 | **Charity.** I try to have extra coins to buy a meal for someone in need. (Good) |\r\n| 5 | **Curiosity.** Staying safe never allows you to see the wonders of the world. (Chaotic) |\r\n| 6 | **Selfish.** We must make sure we bargain for what our skills are worth; people don't value what you give away for free. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I started my career in a tavern, and I'll end it running one of my very own. |\r\n| 2 | I try to ensure stories of my companions will live on forever. |\r\n| 3 | You want to take the measure of a person? Have a meal or drink with them. |\r\n| 4 | I've seen the dregs of life pass through my door, and I will never end up like them. |\r\n| 5 | A mysterious foe burned down my inn, and I will have my revenge. |\r\n| 6 | One day, I want my story to be sung in all the taverns of my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I can't help teasing or criticizing those less intelligent than I. |\r\n| 2 | I love rich food and drink, and I never miss a chance at a good meal. |\r\n| 3 | I never trust anyone who won't drink with me. |\r\n| 4 | I hate it when people start fights in bars; they never consider the consequences. |\r\n| 5 | I can't stand to see someone go hungry or sleep in the cold if I can help it. |\r\n| 6 | I am quick to anger if anyone doesn't like my meals or brews. If you don't like it, do it yourself. |", "type": "suggested_characteristics", - "background": "innkeeper" + "parent": "innkeeper" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 109, "fields": { "name": "Skill Proficiencies", "desc": "Athletics, History", "type": "skill_proficiency", - "background": "mercenary-company-scion" + "parent": "mercenary-company-scion" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 110, "fields": { "name": "Languages", "desc": "One of your choice", "type": "language", - "background": "mercenary-company-scion" + "parent": "mercenary-company-scion" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 111, "fields": { "name": "Tool Proficiencies", "desc": "One type of gaming set, one musical instrument", "type": "tool_proficiency", - "background": "mercenary-company-scion" + "parent": "mercenary-company-scion" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 112, "fields": { "name": "Equipment", "desc": "A backpack, a signet ring emblazoned with the symbol of your family's free company, a musical instrument of your choice, a mess kit, a set of traveler's clothes, and a belt pouch containing 20 gp", "type": "equipment", - "background": "mercenary-company-scion" + "parent": "mercenary-company-scion" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 113, "fields": { "name": "The Family Name", "desc": "Your family name is well known in the closeknit world of mercenary companies. Members of mercenary companies readily recognize your name and will provide food, drink, and shelter with pleasure or out of fear, depending upon your family's reputation. You can also gain access to friendly military encampments, fortresses, or powerful political figures through your contacts among the mercenaries. Utilizing such connections might require the donation of money, magic items, or a great deal of drink.", "type": "feature", - "background": "mercenary-company-scion" + "parent": "mercenary-company-scion" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 114, "fields": { "name": "Suggested Characteristics", "desc": "The turmoil of war, the drudgery of the camp, long days on the road, and the thrill of battle shape a Mercenary Company Scion to create strong bonds of loyalty, military discipline, and a practical mind. Yet this history can scar as well, leaving the scion open to guilt, pride, resentment, and hatred.\r\n\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am ashamed of my family's reputation and seek to distance myself from their deeds. |\r\n| 2 | I have seen the world and know people everywhere. |\r\n| 3 | I expect the best life has to offer and won't settle for less. |\r\n| 4 | I know stories from a thousand campaigns and can apply them to any situation. |\r\n| 5 | After too many betrayals, I don't trust anyone. |\r\n| 6 | My parents were heroes, and I try to live up to their example. |\r\n| 7 | I have seen the horrors of war; nothing dis'turbs me anymore. |\r\n| 8 | I truly believe I have a destiny of glory and fame awaiting me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Glory.** Only by fighting for the right causes can I achieve true fame and honor. (Good) |\r\n| 2 | **Dependable.** Once my oath is given, it cannot be broken. (Lawful) |\r\n| 3 | **Seeker.** Life can be short, so I will live it to the fullest before I die. (Chaotic) |\r\n| 4 | **Ruthless.** Only the strong survive. (Evil) |\r\n| 5 | **Mercenary.** If you have gold, I'm your blade. (Neutral) |\r\n| 6 | **Challenge.** Life is a test, and only by meeting life head on can I prove I am worthy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My parent's legacy is a tissue of lies. I will never stop until I uncover the truth. |\r\n| 2 | I am the only one who can uphold the family name. |\r\n| 3 | My companions are my life, and I would do anything to protect them. |\r\n| 4 | I will never forget the betrayal leading to my parent's murder, but I will avenge them. |\r\n| 5 | My honor and reputation are all that matter in life. |\r\n| 6 | I betrayed my family to protect my friend who was a soldier in another free company. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I have no respect for those who never signed on to a mercenary company or walked the battlefield. |\r\n| 2 | I cannot bear losing anyone close to me, so I keep everyone at a distance. |\r\n| 3 | Bloody violence is the only way to solve problems. |\r\n| 4 | I caused the downfall of my family's mercenary company. |\r\n| 5 | I am hiding a horrible secret about one of my family's patrons. |\r\n| 6 | I see insults to my honor or reputation in every whisper, veiled glance, and knowing look. |", "type": "suggested_characteristics", - "background": "mercenary-company-scion" + "parent": "mercenary-company-scion" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 115, "fields": { "name": "Skill Proficiencies", "desc": "Athletics, Persuasion", "type": "skill_proficiency", - "background": "mercenary-recruit" + "parent": "mercenary-recruit" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 116, "fields": { "name": "Languages", "desc": "No additional languages", "type": "language", - "background": "mercenary-recruit" + "parent": "mercenary-recruit" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 117, "fields": { "name": "Tool Proficiencies", "desc": "One type of gaming set", "type": "tool_proficiency", - "background": "mercenary-recruit" + "parent": "mercenary-recruit" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 118, "fields": { "name": "Equipment", "desc": "A letter of introduction from an old teacher, a gaming set of your choice, traveling clothes, and a pouch containing 10 gp", "type": "equipment", - "background": "mercenary-recruit" + "parent": "mercenary-recruit" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 119, "fields": { "name": "Theoretical Experience", "desc": "You have an encyclopedic knowledge of stories, myths, and legends of famous soldiers, mercenaries, and generals. Telling these stories can earn you a bed and food for the evening in taverns, inns, and alehouses. Your age or inexperience is endearing, making commoners more comfortable with sharing local rumors, news, and information with you.", "type": "feature", - "background": "mercenary-recruit" + "parent": "mercenary-recruit" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 120, "fields": { "name": "Suggested Characteristics", "desc": "Recruits are eager to earn their place in the world of mercenaries. Sometimes humble, other times filled with false bravado, they are still untested by the joys and horrors awaiting them. Meaning well and driven to learn, recruits are generally plagued by their own fears, ignorance, and inexperience.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am thrilled by the thought of an upcoming fight. |\r\n| 2 | Why wait until I'm famous to have songs written about me? I can write my own right now! |\r\n| 3 | I know many stories and legends of famous adventurers and compare everything to these tales. |\r\n| 4 | Humor is how I deal with fear. |\r\n| 5 | I always seek to learn new ways to use my weapons and love sharing my knowledge. |\r\n| 6 | The only way I can prove myself is to work hard and take risks. |\r\n| 7 | When you stop training, you sign your own death notice |\r\n| 8 | I try to act braver than I actually am. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Respect.** To be treated with honor and trust, I must honor and trust people first. (Good) |\r\n| 2 | **Discipline.** A good soldier obeys orders. (Lawful) |\r\n| 3 | **Courage.** Sometimes doing the right thing means breaking the law. (Chaotic) |\r\n| 4 | **Excitement.** I live for the thrill of battle, the rush of the duel, and the glory of victory. (Neutral) |\r\n| 5 | **Power.** When I achieve fame and power, no one will give me orders anymore! (Evil) |\r\n| 6 | **Ambition.** I will make something of myself no matter what. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My first mentor was murdered, and I seek the skills to avenge that crime. |\r\n| 2 | I will become the greatest mercenary warrior ever. |\r\n| 3 | I value the lessons from my teachers and trust them implicitly. |\r\n| 4 | My family has sacrificed much to get me this far. I must repay their faith in me. |\r\n| 5 | I will face any danger to win the respect of my companions. |\r\n| 6 | I have hidden a map to an amazing and powerful magical treasure until I grow strong enough to follow it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I do not trust easily and question anyone who attempts to give me orders. |\r\n| 2 | I ridicule others to hide my insecurities. |\r\n| 3 | To seem brave and competent, I refuse to allow anyone to doubt my courage. |\r\n| 4 | I survived an attack by a monster as a child, and I have feared that creature ever since. |\r\n| 5 | I have a hard time thinking before I act. |\r\n| 6 | I hide my laziness by tricking others into doing my work for me. |", "type": "suggested_characteristics", - "background": "mercenary-recruit" + "parent": "mercenary-recruit" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 121, "fields": { "name": "Skill Proficiencies", "desc": "Intimidation, Survival", "type": "skill_proficiency", - "background": "monstrous-adoptee" + "parent": "monstrous-adoptee" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 122, "fields": { "name": "Languages", "desc": "One language of your choice, typically your adopted parents' language (if any)", "type": "language", - "background": "monstrous-adoptee" + "parent": "monstrous-adoptee" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 123, "fields": { "name": "Tool Proficiencies", "desc": "No additional tool proficiencies", "type": "tool_proficiency", - "background": "monstrous-adoptee" + "parent": "monstrous-adoptee" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 124, "fields": { "name": "Equipment", "desc": "A club, handaxe, or spear, a trinket from your life before you were adopted, a set of traveler's clothes, a collection of bones, shells, or other natural objects, and a belt pouch containing 5 gp", "type": "equipment", - "background": "monstrous-adoptee" + "parent": "monstrous-adoptee" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 125, "fields": { "name": "Abnormal Demeanor", "desc": "Your time with your adopted parents taught you an entire lexicon of habits, behaviors, and intuitions suited to life in the wild among creatures of your parents' type. When you are in the same type of terrain your adopted parent inhabits, you can find food and fresh water for yourself and up to five other people each day. In addition, when you encounter a creature like your adopted parent or parents, the creature is disposed to hear your words instead of leaping directly into battle. Mindless or simple creatures might not respond to your overtures, but more intelligent creatures may be willing to treat instead of fight, if you approach them in an appropriate manner. For example, if your adopted parent was a cloaker, when you encounter a cloaker years later, you understand the appropriate words, body language, and motions for approaching the cloaker respectfully and peacefully.", "type": "feature", - "background": "monstrous-adoptee" + "parent": "monstrous-adoptee" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 126, "fields": { "name": "Suggested Characteristics", "desc": "When monstrous adoptees leave their adopted parents for the wider world, they often have a hard time adapting. What is common or usual for many humanoids strikes them as surprising, frightening, or infuriating, depending on the individual. Most make an effort to adjust their habits and imitate those around them, but not all. Some lean into their differences, reveling in shocking those around them. When you choose a creature to be your character's adopted parent, think about how that might affect your character. Was your character treated kindly? Was your character traded by their birth parents to their adopted parents as part of some mysterious bargain? Did your character seek constant escape or do they miss their adopted parents?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I don't eat my friends (at least not while they are alive). My foes, on the other hand . . . |\r\n| 2 | Meeting another's gaze is a challenge for dominance that I never fail to answer. |\r\n| 3 | Monsters I understand; people are confusing. |\r\n| 4 | There are two types of creatures in life: prey or not-prey. |\r\n| 5 | I often use the growls, sounds, or calls of my adopted parents instead of words. |\r\n| 6 | Inconsequential items fascinate me. |\r\n| 7 | It's not my fault, I was raised by [insert parent's type here]. |\r\n| 8 | I may look fine, but I behave like a monster. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Wild.** After seeing the wider world, I want to be the monster that strikes fear in the hearts of people. (Evil) |\r\n| 2 | **Insight.** I want to understand the world of my adopted parents. (Neutral) |\r\n| 3 | **Revenge.** I want revenge for my lost childhood. Monsters must die! (Any) |\r\n| 4 | **Harmony.** With my unique perspective and upbringing, I hope to bring understanding between the different creatures of the world. (Good) |\r\n| 5 | **Freedom.** My past away from law-abiding society has shown me the ridiculousness of those laws. (Chaotic) |\r\n| 6 | **Redemption.** I will rise above the cruelty of my adopted parent and embrace the wider world. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I want to experience every single aspect of the world. |\r\n| 2 | I rely on my companions to teach me how to behave appropriately in their society. |\r\n| 3 | I have a *sibling*, a child of my adopted parent that was raised alongside me, and now that sibling has been kidnapped! |\r\n| 4 | My monstrous family deserves a place in this world, too. |\r\n| 5 | I'm hiding from my monstrous family. They want me back! |\r\n| 6 | An old enemy of my adopted parents is on my trail. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | What? I like my meat raw. Is that so strange? |\r\n| 2 | I like to collect trophies from my defeated foes (ears, teeth, bones, or similar). It's how I keep score. |\r\n| 3 | I usually forget about pesky social conventions like *personal property* or *laws*. |\r\n| 4 | I am easily startled by loud noises or bright lights. |\r\n| 5 | I have trouble respecting anyone who can't best me in a fight. |\r\n| 6 | Kindness is for the weak. |", "type": "suggested_characteristics", - "background": "monstrous-adoptee" + "parent": "monstrous-adoptee" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 127, "fields": { "name": "Skill Proficiencies", "desc": "Deception, Survival", "type": "skill_proficiency", - "background": "mysterious-origins" + "parent": "mysterious-origins" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 128, "fields": { "name": "Languages", "desc": "One of your choice", "type": "language", - "background": "mysterious-origins" + "parent": "mysterious-origins" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 129, "fields": { "name": "Tool Proficiencies", "desc": "One type of artisan's tools or one type of musical instrument", "type": "tool_proficiency", - "background": "mysterious-origins" + "parent": "mysterious-origins" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 130, "fields": { "name": "Equipment", "desc": "A mysterious trinket from your past life, a set of artisan's tools or a musical instrument (one of your choice), a set of common clothes, and a belt pouch containing 5 gp", "type": "equipment", - "background": "mysterious-origins" + "parent": "mysterious-origins" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 131, "fields": { "name": "Unexpected Acquaintance", "desc": "Even though you can't recall them, someone from your past will recognize you and offer to aid you—or to impede you. The person and their relationship to you depend on the truth of your backstory. They might be a childhood friend, a former rival, or even your child who's grown up with dreams of finding their missing parent. They may want you to return to your former life even if it means abandoning your current goals and companions. Work with your GM to determine the details of this character and your history with them.", "type": "feature", - "background": "mysterious-origins" + "parent": "mysterious-origins" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 132, "fields": { "name": "Suggested Characteristics", "desc": "You may be bothered by your lack of memories and driven to recover them or reclaim the secrets of your past, or you can use your anonymity to your advantage.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm always humming a song, but I can't remember the words. |\r\n| 2 | I love learning new things and meeting new people. |\r\n| 3 | I want to prove my worth and have people know my name. |\r\n| 4 | I don't like places that are crowded or noisy. |\r\n| 5 | I'm mistrustful of mages and magic in general. |\r\n| 6 | I like to keep everything tidy and organized so that I can find things easily. |\r\n| 7 | Every night I record my day in a detailed journal. |\r\n| 8 | I live in the present. The future will come as it may. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Redemption.** Whatever I did in the past, I'm determined to make the world a better place. (Good) |\r\n| 2 | **Independence.** I'm beholden to no one, so I can do whatever I want. (Chaotic) |\r\n| 3 | **Cunning.** Since I have no past, no one can use it to thwart my rise to power. (Evil) |\r\n| 4 | **Community.** I believe in a just society that takes care of people in need. (Lawful) |\r\n| 5 | **Fairness.** I judge others by who they are now, not by what they've done in the past. (Neutral) |\r\n| 6 | **Friendship.** The people in my life now are more important than any ideal. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have dreams where I see a loved one's face, but I can't remember their name or who they are. |\r\n| 2 | I wear a wedding ring, so I must have been married before I lost my memories. |\r\n| 3 | My mentor raised me; they told me that I lost my memories in a terrible accident that killed my family. |\r\n| 4 | I have an enemy who wants to kill me, but I don't know what I did to earn their hatred. |\r\n| 5 | I know there's an important memory attached to the scar I bear on my body. |\r\n| 6 | I can never repay the debt I owe to the person who cared for me after I lost my memories. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am jealous of those who have memories of a happy childhood. |\r\n| 2 | I'm desperate for knowledge about my past, and I'll do anything to obtain that information. |\r\n| 3 | I'm terrified of meeting someone from my past, so I avoid strangers as much as possible. |\r\n| 4 | Only the present matters. I can't bring myself to care about the future. |\r\n| 5 | I'm convinced that I was powerful and rich before I lost my memories—and I expect everyone to treat me accordingly. |\r\n| 6 | Anyone who shows me pity is subjected to my biting scorn. |", "type": "suggested_characteristics", - "background": "mysterious-origins" + "parent": "mysterious-origins" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 133, "fields": { "name": "Skill Proficiencies", "desc": "Perception plus one of your choice from among History or Performance", "type": "skill_proficiency", - "background": "northern-minstrel" + "parent": "northern-minstrel" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 134, "fields": { "name": "Languages", "desc": "One of your choice", "type": "language", - "background": "northern-minstrel" + "parent": "northern-minstrel" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 135, "fields": { "name": "Tool Proficiencies", "desc": "One type of musical instrument", "type": "tool_proficiency", - "background": "northern-minstrel" + "parent": "northern-minstrel" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 136, "fields": { "name": "Equipment", "desc": "A book collecting all the songs, poems, or stories you know, a pair of snowshoes, one musical instrument of your choice, a heavy fur-lined cloak, and a belt pouch containing 10 gp", "type": "equipment", - "background": "northern-minstrel" + "parent": "northern-minstrel" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 137, "fields": { "name": "Northern Historian", "desc": "Your education and experience have taught you how to determine the provenance of ruins, monuments, and other structures within the north. When you spend at least 1 hour examining a structure or non-natural feature of the terrain, you can determine if it was built by humans, dwarves, elves, goblins, giants, trolls, or fey. You can also determine the approximate age (within 500 years) of the construction based on its features and embellishments.", "type": "feature", - "background": "northern-minstrel" + "parent": "northern-minstrel" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 138, "fields": { "name": "Suggested Characteristics", "desc": "Northern minstrels tend to either be boisterous and loud or pensive and watchful with few falling between these extremes. Many exude both qualities at different times, and they have learned how and when to turn their skald persona on and off. Like other northerners, they place a lot of stock in appearing brave and tough, which can lead them unwittingly into conflict.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will accept any dare and expect accolades when I complete it. |\r\n| 2 | Revelry and boisterousness are for foolish children. I prefer to quietly wait and watch. |\r\n| 3 | I am more than a match for any northern reaver. If they believe that is not so, let them show me what stuff they are made of. |\r\n| 4 | I yearn for the raiding season and the tales of blood and butchery I can use to draw the crowds. |\r\n| 5 | Ragnarok is nigh. I will bear witness to the end of all things and leave a record should there be any who survive it. |\r\n| 6 | There is nothing better than mutton, honeyed mead, and a crowd in thrall to my words. |\r\n| 7 | The gods weave our fates. There is nothing to do but accept this and live as we will. |\r\n| 8 | All life is artifice. I lie better than most and I am not ashamed to reap the rewards. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Valor.** Stories and songs should inspire others—and me—to perform great deeds that benefit us all. (Good) |\r\n| 2 | **Greed.** There is little point in taking action if it leads to living in squalor. I will take what I want and dare any who disagree to oppose me. (Evil) |\r\n| 3 | **Perfection.** I will not let the threat of failure deter me. Every deed I attempt, even those I do not succeed at, serve to improve me and prepare me for future endeavors. (Lawful) |\r\n| 4 | **Anarchy.** If Ragnarok is coming to end all that is, I must do what I want and damn the consequences. (Chaotic) |\r\n| 5 | **Knowledge.** The north is full of ancient ruins and monuments. If I can glean their meaning, I may understand fate as well as the gods. (Any) |\r\n| 6 | **Pleasure.** I will eat the richest food, sleep in the softest bed, enjoy the finest company, and allow no one to stand in the way of my delight and contentment. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have the support of my peers from the skaldic school I attended, and they have mine. |\r\n| 2 | I will find and answer the Unanswerable Riddle and gain infamy. |\r\n| 3 | I will craft an epic of such renown it will be recited the world over. |\r\n| 4 | All my companions were slain in an ambush laid by cowardly trolls. At least I snatched up my tagelharpa before I escaped the carnage. |\r\n| 5 | The cold waves call to me even across great distances. I must never stray too far from the ocean's embrace. |\r\n| 6 | It is inevitable that people fail me. Mead, on the other hand, never fails to slake my thirst. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Only a coward retreats. The valiant press forward to victory or death. |\r\n| 2 | All the tales I tell of my experiences are lies. |\r\n| 3 | Critics and hecklers will suffer my wrath once the performance is over. |\r\n| 4 | Companions and friends cease to be valuable if their accomplishments outshine my own. |\r\n| 5 | I once burned down a tavern where I was poorly received. I would do it again. |\r\n| 6 | I cannot bear to be gainsaid and fall into a bitter melancholy when I am. |", "type": "suggested_characteristics", - "background": "northern-minstrel" + "parent": "northern-minstrel" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 139, "fields": { "name": "Skill Proficiencies", "desc": "Arcana, Religion", "type": "skill_proficiency", - "background": "occultist" + "parent": "occultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 140, "fields": { "name": "Languages", "desc": "Two of your choice", "type": "language", - "background": "occultist" + "parent": "occultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 141, "fields": { "name": "Tool Proficiencies", "desc": "Thieves' tools", "type": "tool_proficiency", - "background": "occultist" + "parent": "occultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 142, "fields": { "name": "Equipment", "desc": "A book of obscure lore holding clues to an occult location, a bottle of black ink, a quill, a leather-bound journal in which you record your secrets, a bullseye lantern, a set of common clothes, and a belt pouch containing 5 gp", "type": "equipment", - "background": "occultist" + "parent": "occultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 143, "fields": { "name": "Strange Lore", "desc": "Your passions for forbidden knowledge, esoteric religions, secretive cults, and terrible histories brought you into contact with a wide variety of interesting and unique individuals operating on the fringes of polite society. When you're trying to find something that pertains to eldritch secrets or dark knowledge, you have a good idea of where to start looking. Usually, this information comes from information brokers, disgraced scholars, chaotic mages, dangerous cults, or insane priests. Your GM might rule that the knowledge you seek isn't found with just one contact, but this feature provides a starting point.", "type": "feature", - "background": "occultist" + "parent": "occultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 144, "fields": { "name": "Suggested Characteristics", "desc": "Occultists can't resist the lure of an ancient ruin, forgotten dungeon, or the lair of some mysterious cult. They eagerly follow odd rumors, folktales, and obscure clues found in dusty tomes. Some adventure with the hope of turning their discoveries into fame and fortune, while others consider the answers they uncover to be the true reward. Whatever their motivations, occultists combine elements of archaeologist, scholar, and fanatic.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I always ask questions, especially if I think I can learn something new. |\r\n| 2 | I believe every superstition I hear and follow their rules fanatically. |\r\n| 3 | The things I know give me nightmares, and not only when I sleep. |\r\n| 4 | Nothing makes me happier than explaining some obscure lore to my friends. |\r\n| 5 | I startle easily. |\r\n| 6 | I perform a host of rituals throughout the day that I believe protect me from occult threats. |\r\n| 7 | I never know when to give up. |\r\n| 8 | The more someone refuses to believe me, the more I am determined to convince them. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Domination.** With the power I will unearth, I will take my revenge on those who wronged me. (Evil) |\r\n| 2 | **Mettle.** Each nugget of hidden knowledge I uncover proves my worth. (Any) |\r\n| 3 | **Lore.** Knowledge is never good or evil; it is simply knowledge. (Neutral) |\r\n| 4 | **Redemption.** This dark knowledge can be made good if it is used properly. (Good) |\r\n| 5 | **Truth.** Nothing should be hidden. Truth is all that matters, no matter who it hurts. (Chaotic) |\r\n| 6 | **Responsibility.** Only by bringing dark lore into the light can we eliminate its threat. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | One or more secret organizations are trying to stop me, which means I must be close to the truth. |\r\n| 2 | My studies come before anything else. |\r\n| 3 | No theory, however unbelievable, is worth abandoning without investigation. |\r\n| 4 | I must uncover the truth behind a particular mystery, one my father died to protect. |\r\n| 5 | I travel with my companions because I have reason to believe they are crucial to the future. |\r\n| 6 | I once had a partner in my occult searches who vanished. I am determined to find them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | When stressed, I mutter theories to myself, sometimes connecting seemingly unconnected or random events, to explain my current predicament. |\r\n| 2 | It's not paranoia if they really are out to get me. |\r\n| 3 | I have a habit of lying to hide my theories and discoveries. |\r\n| 4 | I see secrets and mysteries in everything and everyone. |\r\n| 5 | The world is full of dark secrets, and I'm the only one who can safely unearth them. |\r\n| 6 | There is no law or social convention I won't break to further my goals. |", "type": "suggested_characteristics", - "background": "occultist" + "parent": "occultist" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 145, "fields": { "name": "Skill Proficiencies", "desc": "Nature, Investigation", "type": "skill_proficiency", - "background": "parfumier" + "parent": "parfumier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 146, "fields": { "name": "Languages", "desc": "No additional languages", "type": "language", - "background": "parfumier" + "parent": "parfumier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 147, "fields": { "name": "Tool Proficiencies", "desc": "Alchemist's supplies, herbalism kit", "type": "tool_proficiency", - "background": "parfumier" + "parent": "parfumier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 148, "fields": { "name": "Equipment", "desc": "Herbalism kit, a leather satchel containing perfume recipes, research notes, and chemical and botanical samples; 1d4 metal or crystal (shatter-proof) perfume bottles, a set of fine clothes, and a silk purse containing 10 gp", "type": "equipment", - "background": "parfumier" + "parent": "parfumier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 149, "fields": { "name": "Aromas and Odors and Airs, Oh My", "desc": "Before you became an adventurer, you crafted perfumes for customers in your home town or city. When not out adventuring, you can fall back on that trade to make a living. For each week you spend practicing your profession, you can craft one of the following at half the normal cost in time and resources: 5 samples of fine perfume worth 10 gp each, 2 vials of acid, or 1 vial of parfum toxique worth 50 gp. As an action, you can throw a vial of parfum toxique up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the parfum as an improvised weapon. On a hit, the target takes 1d6 poison damage and is poisoned until the end of its next turn.", "type": "feature", - "background": "parfumier" + "parent": "parfumier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 150, "fields": { "name": "Suggested Characteristics", "desc": "As with many parfumiers with the extensive training you received, you are well spoken, stately of bearing, and possessed of a self-assuredness that sometimes is found imposing. You are not easily impressed and rarely subscribe to notions like *insurmountable* or *unavoidable*. Every problem has a solution.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I do not deal in absolutes. There is a solution to every problem, an answer for every riddle. |\r\n| 2 | I am used to associating with educated and “elevated” society. I find rough living and rough manners unpalatable. |\r\n| 3 | Years spent witnessing the dealings, intrigues, and industrial espionage of the Bouquet Districts' mercantile-elite have left me secretive and guarded. |\r\n| 4 | I have a strong interest and sense for fashion and current trends. |\r\n| 5 | I eagerly discuss the minutiae, subtleties, and nuances of my profession to any who will listen. |\r\n| 6 | I am easily distracted by unusual or exceptional botanical specimens. |\r\n| 7 | I can seem distant and introverted. I listen more than I speak. |\r\n| 8 | I always strive to make allies, not enemies. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Responsibility.** It is my duty to share my exceptional gifts and knowledge for the betterment of all. (Good) |\r\n| 2 | **Pragmatism.** I never let passion, preference, or emotion influence my decision-making or clear headedness. (Lawful) |\r\n| 3 | **Freedom.** Rules, particularly those imposed by others, were meant to be broken. (Chaotic) |\r\n| 4 | **Deep Science.** I live a life based on facts, logic, probability, and common sense. (Lawful) |\r\n| 5 | **Notoriety.** I will do whatever it takes to become the elite that I was witness to during my time among the boutiques, salons, and workshops of the noble's district. (Any) |\r\n| 6 | **Profit.** I will utilize my talents to harvest, synthesize, concoct, and brew almost anything for almost anyone. As long as the profit margin is right. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will return to my home city someday and have revenge upon the elitist perfume consortium and corrupt shipping magnates who drove my dreams to ruin. |\r\n| 2 | I have been experimenting and searching my whole career for the ultimate aromatic aphrodisiac. The “alchemists' stone” of perfumery. |\r\n| 3 | My home is safely far behind me now. With it go the unfounded accusations, spiteful rumors, and perhaps some potential links to a string of corporate assassinations. |\r\n| 4 | I am cataloging an encyclopedia of flora and their various chemical, magical, and alchemical properties and applications. It is my life's work. |\r\n| 5 | I am dedicated to my craft, always seeking to expand my knowledge and hone my skills in the science and business of aromatics. |\r\n| 6 | I have a loved one who is threatened (held hostage?) by an organized gang of vicious halfling thugs who control many of the “rackets” in the perfumeries in my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am driven to reclaim the status and respect of the socially and scientifically elite and will sacrifice much to gain it. |\r\n| 2 | I am highly competitive and not above plagiarizing or stealing the occasional recipe, idea, formula, or sample. |\r\n| 3 | I am hard-pressed to treat anyone who is not (by my standards) “well schooled” or “well heeled” as little more than lab assistants and house servants. |\r\n| 4 | A pretty face is always able to lead me astray. |\r\n| 5 | I am secretly addicted to a special perfume that only I can reproduce. |\r\n| 6 | *On a stormy night, I heard a voice in the wind, which led me to a mysterious plant. Its scent was intoxicating, and I consumed it. Now, that voice occasionally whispers in my dreams, urging me to some unknown destiny.* |", "type": "suggested_characteristics", - "background": "parfumier" + "parent": "parfumier" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 151, "fields": { "name": "Skill Proficiencies", "desc": "Athletics, Sleight of Hand", "type": "skill_proficiency", - "background": "scoundrel" + "parent": "scoundrel" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 152, "fields": { "name": "Languages", "desc": "No additional languages", "type": "language", - "background": "scoundrel" + "parent": "scoundrel" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 153, "fields": { "name": "Tool Proficiencies", "desc": "One type of gaming set, thieves' tools", "type": "tool_proficiency", - "background": "scoundrel" + "parent": "scoundrel" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 154, "fields": { "name": "Equipment", "desc": "A bag of 1,000 ball bearings, a pet monkey wearing a tiny fez, a set of common clothes, and a pouch containing 10 gp", "type": "equipment", - "background": "scoundrel" + "parent": "scoundrel" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 155, "fields": { "name": "Urban Explorer", "desc": "You are familiar with the layout and rhythms of towns and cities. When you arrive in a new city, you can quickly locate places to stay, where to buy good quality gear, and other facilities. You can shake off pursuers when you are being chased through the streets or across the rooftops. You have a knack for leading pursuers into a crowded market filled with stalls piled high with breakable merchandise, or down a narrow alley just as a dung cart is coming in the other direction.", "type": "feature", - "background": "scoundrel" + "parent": "scoundrel" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 156, "fields": { "name": "Suggested Characteristics", "desc": "Despite their poor upbringing, scoundrels tend to live a charmed life—never far from trouble, but usually coming out on top. Many are thrill-seekers who delight in taunting their opponents before making a flashy and daring escape. Most are generally good-hearted, but some are self-centered to the point of arrogance. Quieter, introverted types and the lawfully-inclined can find them very annoying.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Flashing a big smile often gets me out of trouble. |\r\n| 2 | If I can just keep them talking, it will give me time to escape. |\r\n| 3 | I get fidgety if I have to sit still for more than ten minutes or so. |\r\n| 4 | Whatever I do, I try to do it with style and panache. |\r\n| 5 | I don't hold back when there's free food and drink on offer. |\r\n| 6 | Nothing gets me more annoyed than being ignored. |\r\n| 7 | I always sit with my back to the wall and my eyes on the exits. |\r\n| 8 | Why walk down the street when you can run across the rooftops? |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** Ropes and chains are made to be broken. Locks are made to be picked. Doors are meant to be opened. (Chaotic) |\r\n| 2 | **Community.** We need to look out for one another and keep everyone safe. (Lawful) |\r\n| 3 | **Charity.** I share my wealth with those who need it the most. (Good) |\r\n| 4 | **Friendship.** My friends matter more to me than lofty ideals. (Neutral) |\r\n| 5 | **Aspiration.** One day my wondrous deeds will be known across the world. (Any) |\r\n| 6 | **Greed.** I'll stop at nothing to get what I want. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My elder sibling taught me how to find a safe hiding place in the city. This saved my life at least once. |\r\n| 2 | I stole money from someone who couldn't afford to lose it and now they're destitute. One day I'll make it up to them. |\r\n| 3 | The street kids in my town are my true family. |\r\n| 4 | My mother gave me an old brass lamp. I polish it every night before going to sleep. |\r\n| 5 | When I was young, I was too scared to leap from the tallest tower in my hometown onto the hay cart beneath. I'll try again someday. |\r\n| 6 | A city guardsman let me go when they should have arrested me for stealing. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If there's a lever to pull, I'll pull it. |\r\n| 2 | It's not stealing if nobody realizes it's gone. |\r\n| 3 | If I don't like the odds, I'm out of there. |\r\n| 4 | I often don't know when to shut up. |\r\n| 5 | I once filched a pipe from a priest. Now I think the god has cursed me. |\r\n| 6 | I grow angry when someone else steals the limelight. |", "type": "suggested_characteristics", - "background": "scoundrel" + "parent": "scoundrel" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 157, "fields": { "name": "Skill Proficiencies", "desc": "Insight, Perception", "type": "skill_proficiency", - "background": "sentry" + "parent": "sentry" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 158, "fields": { "name": "Languages", "desc": "One language of your choice", "type": "language", - "background": "sentry" + "parent": "sentry" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 159, "fields": { "name": "Tool Proficiencies", "desc": "One type of gaming set", "type": "tool_proficiency", - "background": "sentry" + "parent": "sentry" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 160, "fields": { "name": "Equipment", "desc": "A set of dice or deck of cards, a shield bearing your previous employer's symbol, a set of common clothes, a hooded lantern, a signal whistle, and a belt pouch containing 10 gp", "type": "equipment", - "background": "sentry" + "parent": "sentry" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 161, "fields": { "name": "Comrades in Arms", "desc": "The knowing look from the caravan guard to the city gatekeeper or the nod of recognition between the noble's bodyguard and the district watchman—no matter the community, city, or town, the guards share a commonality of purpose. When you arrive in a new location, you can speak briefly with the gate guards, local watch, or other community guardians to gain local knowledge. This knowledge could be information, such as the most efficient routes through the city, primary vendors for a variety of luxury goods, the best (or worst) inns and taverns, the primary criminal elements in town, or the current conflicts in the community.", "type": "feature", - "background": "sentry" + "parent": "sentry" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 162, "fields": { "name": "Suggested Characteristics", "desc": "You're a person who understands both patience and boredom, as a guard is always waiting for something to happen. More often than not, sentries hope nothing happens because something happening usually means something has gone wrong. A life spent watching and protecting, acting in critical moments, and learning the details of places and behaviors; all of these help shape the personality of the former sentry. Some claim you never stop being a guard, you just change what you protect.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I've seen the dregs of society and nothing surprises me anymore. |\r\n| 2 | I know where to look to spot threats lurking around a corner, in a glance, and even in a bite of food or cup of drink. |\r\n| 3 | I hate standing still and always keep moving. |\r\n| 4 | My friends know they can rely on me to stand and protect them. |\r\n| 5 | I resent the rich and powerful; they think they can get away with anything. |\r\n| 6 | A deception of any sort marks you as untrustworthy in my mind. |\r\n| 7 | Stopping lawbreakers taught me the best ways to skirt the law. |\r\n| 8 | I never take anything at face-value. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greed.** Threats to my companions only increase my glory when I protect them from it. (Evil) |\r\n| 2 | **Perception.** I watch everyone, for threats come from every rank or station. (Neutral) |\r\n| 3 | **Duty.** The laws of the community must be followed to keep everyone safe. (Lawful) |\r\n| 4 | **Community.** I am all that stands between my companions and certain doom. (Good) |\r\n| 5 | **Determination.** To truly protect others, you must sometimes break the law. (Chaotic) |\r\n| 6 | **Practicality.** I require payment for the protection or service I provide. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My charge is paramount; if you can't protect your charge, you've failed. |\r\n| 2 | I was once saved by one of my fellow guards. Now I always come to my companions' aid, no matter what the threat. |\r\n| 3 | My oath is unbreakable; I'd rather die first. |\r\n| 4 | There is no pride equal to the accomplishment of a successful mission. |\r\n| 5 | I stand as a bulwark against those who would damage or destroy society, and society is worth protecting. |\r\n| 6 | I know that as long as I stand with my companions, things can be made right. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Sometimes I may overindulge in a guilty pleasure, but you need something to pass time. |\r\n| 2 | I can't just sit quietly next to someone. I've got to fill the silence with conversation to make good company. |\r\n| 3 | I'm not very capable in social situations. I'd rather sit on the sidelines and observe. People make me nervous. |\r\n| 4 | I have a tough time trusting strangers and new people. You don't know their habits and behaviors; therefore, you don't know their risk. |\r\n| 5 | There is danger all around us, and only the foolish let their guard down. I am no fool, and I will spot the danger. |\r\n| 6 | I believe there's a firm separation between task and personal time. I don't do other people's work when I'm on my own time. If you want me, hire me. |", "type": "suggested_characteristics", - "background": "sentry" + "parent": "sentry" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 163, "fields": { "name": "Skill Proficiencies", "desc": "Nature, Survival", "type": "skill_proficiency", - "background": "trophy-hunter" + "parent": "trophy-hunter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 164, "fields": { "name": "Languages", "desc": "No additional languages", "type": "language", - "background": "trophy-hunter" + "parent": "trophy-hunter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 165, "fields": { "name": "Tool Proficiencies", "desc": "Leatherworker's tools, vehicles (land)", "type": "tool_proficiency", - "background": "trophy-hunter" + "parent": "trophy-hunter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 166, "fields": { "name": "Equipment", "desc": "A donkey or mule with bit and bridle, a set of cold-weather or warm-weather clothes, and a belt pouch containing 5 gp", "type": "equipment", - "background": "trophy-hunter" + "parent": "trophy-hunter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 167, "fields": { "name": "Shelter from the Storm", "desc": "You have spent years hunting in the harshest environments of the world and have seen tents blown away by gales, food stolen by hungry bears, and equipment destroyed by the elements. While traveling in the wilderness, you can find a natural location suitable to make camp by spending 1 hour searching. This location provides cover from the elements and is in some way naturally defensible, at the GM's discretion.", "type": "feature", - "background": "trophy-hunter" + "parent": "trophy-hunter" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 168, "fields": { "name": "Suggested Characteristics", "desc": "Most trophy hunters are skilled hobbyists and find strange relaxation in the tension of the hunt and revel in the glory of a kill. You may find great personal joy in hunting, in the adoration of peers, or simply in earning gold by selling pelts, scales, and horns.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nothing gets my blood pumping like stalking a wild animal. |\r\n| 2 | I like things big! Trophies, big! Food, big! Money, houses, weapons, possessions, I want ‘em big, big, BIG! |\r\n| 3 | When hunting, it's almost as if I become a different person. Focused. Confident. Ruthless. |\r\n| 4 | The only way to kill a beast is to be patient and find the perfect moment to strike. The same is true for all the important things in life. |\r\n| 5 | Bathing is for novices. I know that to catch my smelly, filthy prey, I must smell like them to throw off their scent. |\r\n| 6 | I eat only raw meat. It gets me more in tune with my prey. |\r\n| 7 | I'm a connoisseur of killing implements; I only use the best, because I am the best. |\r\n| 8 | I thank the natural world for its bounty after every kill. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Ambition.** It is my divine calling to become better than my rivals by any means necessary. (Chaotic) |\r\n| 2 | **Altruism.** I hunt only to protect those who cannot protect themselves. (Good) |\r\n| 3 | **Determination.** No matter what the laws say, I will kill that beast! (Chaotic) |\r\n| 4 | **Cruelty.** My prey lives only for my pleasure. It will die exactly as quickly or as slowly as I desire. (Evil) |\r\n| 5 | **Sport.** We're just here to have fun. (Neutral) |\r\n| 6 | **Family.** I follow in my family's footsteps. I will not tarnish their legacy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I like hunting because I like feeling big and powerful. |\r\n| 2 | I hunt because my parents think I'm a worthless runt. I need to make them proud. |\r\n| 3 | I was mauled by a beast on my first hunting trip. I've spent my life searching for that monster. |\r\n| 4 | The first time I drew blood, something awoke within me. Every hunt is a search for the original ecstasy of blood. |\r\n| 5 | My hunting companions used to laugh at me behind my back. They aren't laughing anymore. |\r\n| 6 | A close friend funded my first hunting expedition. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm actually a sham. All of my trophies were bagged by someone else. I just followed along and watched. |\r\n| 2 | I'm terrified of anything larger than myself. |\r\n| 3 | I can't express anger without lashing out at something. |\r\n| 4 | I need money. I don't care how much or how little I have; I need more. And I would do anything to get it. |\r\n| 5 | I am obsessed with beauty in animals, art, and people. |\r\n| 6 | I don't trust my hunting partners, whom I know are here to steal my glory! |", "type": "suggested_characteristics", - "background": "trophy-hunter" + "parent": "trophy-hunter" } } ] diff --git a/data/v2/wizards-of-the-coast/srd/Benefit.json b/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json similarity index 93% rename from data/v2/wizards-of-the-coast/srd/Benefit.json rename to data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json index 5e659563..f7f22ae0 100644 --- a/data/v2/wizards-of-the-coast/srd/Benefit.json +++ b/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json @@ -1,52 +1,52 @@ [ { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 30, "fields": { "name": "Skill Proficiencies", "desc": "Insight, Religion", "type": "skill_proficiency", - "background": "acolyte" + "parent": "acolyte" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 31, "fields": { "name": "Languages", "desc": "Two of your choice", "type": "language", - "background": "acolyte" + "parent": "acolyte" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 32, "fields": { "name": "Equipment", "desc": "A holy symbol (a gift to you when you entered the priesthood), a prayer book or prayer wheel, 5 sticks of incense, vestments, a set of common clothes, and a pouch containing 15 gp", "type": "equipment", - "background": "acolyte" + "parent": "acolyte" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 33, "fields": { "name": "Shelter of the Faithful", "desc": "As an acolyte, you command the respect of those who share your faith, and you can perform the religious ceremonies of your deity. You and your adventuring companions can expect to receive free healing and care at a temple, shrine, or other established presence of your faith, though you must provide any material components needed for spells. Those who share your religion will support you (but only you) at a modest lifestyle.\r\n\r\nYou might also have ties to a specific temple dedicated to your chosen deity or pantheon, and you have a residence there. This could be the temple where you used to serve, if you remain on good terms with it, or a temple where you have found a new home. While near your temple, you can call upon the priests for assistance, provided the assistance you ask for is not hazardous and you remain in good standing with your temple.", "type": "feature", - "background": "acolyte" + "parent": "acolyte" } }, { - "model": "api_v2.benefit", + "model": "api_v2.backgroundbenefit", "pk": 34, "fields": { "name": "Suggested Characteristics", "desc": "Acolytes are shaped by their experience in temples or other religious communities. Their study of the history and tenets of their faith and their relationships to temples, shrines, or hierarchies affect their mannerisms and ideals. Their flaws might be some hidden hypocrisy or heretical idea, or an ideal or bond taken to an extreme.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I idolize a particular hero of my faith, and constantly refer to that person's deeds and example. |\r\n| 2 | I can find common ground between the fiercest enemies, empathizing with them and always working toward peace. |\r\n| 3 | I see omens in every event and action. The gods try to speak to us, we just need to listen |\r\n| 4 | Nothing can shake my optimistic attitude. |\r\n| 5 | I quote (or misquote) sacred texts and proverbs in almost every situation. |\r\n| 6 | I am tolerant (or intolerant) of other faiths and respect (or condemn) the worship of other gods. |\r\n| 7 | I've enjoyed fine food, drink, and high society among my temple's elite. Rough living grates on me. |\r\n| 8 | I've spent so long in the temple that I have little practical experience dealing with people in the outside world. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Tradition. The ancient traditions of worship and sacrifice must be preserved and upheld. (Lawful) |\r\n| 2 | Charity. I always try to help those in need, no matter what the personal cost. (Good) |\r\n| 3 | Change. We must help bring about the changes the gods are constantly working in the world. (Chaotic) |\r\n| 4 | Power. I hope to one day rise to the top of my faith's religious hierarchy. (Lawful) |\r\n| 5 | Faith. I trust that my deity will guide my actions. I have faith that if I work hard, things will go well. (Lawful) |\r\n| 6 | Aspiration. I seek to prove myself worthy of my god's favor by matching my actions against his or her teachings. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I would die to recover an ancient relic of my faith that was lost long ago. |\r\n| 2 | I will someday get revenge on the corrupt temple hierarchy who branded me a heretic. |\r\n| 3 | I owe my life to the priest who took me in when my parents died. |\r\n| 4 | Everything I do is for the common people. |\r\n| 5 | I will do anything to protect the temple where I served. |\r\n| 6 | I seek to preserve a sacred text that my enemies consider heretical and seek to destroy. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I judge others harshly, and myself even more severely. |\r\n| 2 | I put too much trust in those who wield power within my temple's hierarchy. |\r\n| 3 | My piety sometimes leads me to blindly trust those that profess faith in my god. |\r\n| 4 | I am inflexible in my thinking. |\r\n| 5 | I am suspicious of strangers and expect the worst of them. |\r\n| 6 | Once I pick a goal, I become obsessed with it to the detriment of everything else in my life. |", "type": "suggested_characteristics", - "background": "acolyte" + "parent": "acolyte" } } ] From 8a78458d0073ed67d6b426e243ffac26befc7947 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 24 May 2024 09:31:12 -0500 Subject: [PATCH 15/84] need to adjust the benefits. --- api_v2/models/background.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api_v2/models/background.py b/api_v2/models/background.py index 41364d6e..9370797d 100644 --- a/api_v2/models/background.py +++ b/api_v2/models/background.py @@ -21,7 +21,7 @@ class Background(HasName, HasDescription, FromDocument): @property def benefits(self): """Returns the set of benefits that are related to this feat.""" - return self.benefit_set + return self.backgroundbenefit_set class Meta: """To assist with the UI layer.""" From a1eb5640a9803a287030f60361e2646aa0d6cf09 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 24 May 2024 10:25:40 -0500 Subject: [PATCH 16/84] Adding in todos for this whole thing. --- api_v2/models/characterclass.py | 9 ++++++++- api_v2/models/creature.py | 7 +++++-- api_v2/models/feat.py | 3 ++- api_v2/models/race.py | 3 ++- api_v2/models/spell.py | 3 ++- api_v2/models/weapon.py | 2 +- 6 files changed, 20 insertions(+), 7 deletions(-) diff --git a/api_v2/models/characterclass.py b/api_v2/models/characterclass.py index 9766c003..c01d8790 100644 --- a/api_v2/models/characterclass.py +++ b/api_v2/models/characterclass.py @@ -9,9 +9,13 @@ class FeatureItem(models.Model): """This is the class for an individual class feature item, a subset of a class feature. The name field is unused.""" + + #TODO add a primary key. + # Somewhere in here is where you'd define a field that would eventually display as "Rage Damage +2" # Also spell slots...? + #TODO refactor to parent feature = models.ForeignKey('Feature', on_delete=models.CASCADE) level = models.IntegerField(validators=[MinValueValidator(0),MaxValueValidator(20)]) @@ -26,6 +30,7 @@ class Feature(HasName, HasDescription, FromDocument): """This class represents an individual class feature, such as Rage, or Extra Attack.""" + #TODO refactor to parent characterclass = models.ForeignKey('CharacterClass', on_delete=models.CASCADE) @@ -105,4 +110,6 @@ def as_text(self): for feature in self.feature_set.all(): text+='\n' + feature.as_text() - return text \ No newline at end of file + return text + + #TODO add verbose name plural \ No newline at end of file diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index 92e72fbb..e5f59729 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -77,9 +77,10 @@ def search_result_extra_fields(self): def creatureset(self): return self.creaturesets.all() - +#TODO remove FromDocument class CreatureAction(HasName, HasDescription, FromDocument): + #TODO refactor to parent creature = models.ForeignKey( Creature, on_delete=models.CASCADE, @@ -98,9 +99,11 @@ class CreatureAction(HasName, HasDescription, FromDocument): help_text='The parameter X for if the action is limited.' ) - +#TODO rename to CreatureActionAttack +#TODO remove FromDocument class CreatureAttack(HasName, FromDocument): + #TODO refactor to parent creature_action = models.ForeignKey( CreatureAction, on_delete=models.CASCADE, diff --git a/api_v2/models/feat.py b/api_v2/models/feat.py index b6123bf4..11039fe1 100644 --- a/api_v2/models/feat.py +++ b/api_v2/models/feat.py @@ -3,10 +3,11 @@ from .abstracts import HasName, HasDescription, HasPrerequisite, Modification from .document import FromDocument - +#TODO rename to FeatCapability class Capability(Modification): """This is the model for an individual benefit of a feat.""" + #TODO refactor to parent feat = models.ForeignKey('Feat', on_delete=models.CASCADE) diff --git a/api_v2/models/race.py b/api_v2/models/race.py index 08f22584..1a6a313a 100644 --- a/api_v2/models/race.py +++ b/api_v2/models/race.py @@ -5,13 +5,14 @@ from .abstracts import Modification from .document import FromDocument - +#TODO rename to RaceTrait class Trait(Modification): """This is the model for a race or subrace trait. It inherits from modification, which is an abstract concept. """ + #TODO refactor to parent race = models.ForeignKey('Race', on_delete=models.CASCADE) diff --git a/api_v2/models/spell.py b/api_v2/models/spell.py index 297685c1..c1a5b7e7 100644 --- a/api_v2/models/spell.py +++ b/api_v2/models/spell.py @@ -124,10 +124,11 @@ def casting_options(self): """Options for casting the spell.""" return self.castingoption_set - +# TODO rename to SpellCastingOption class CastingOption(models.Model): """An object representing an alternative way to cast a spell.""" + # TODO rename to parent spell = models.ForeignKey("Spell",on_delete=models.CASCADE) type = models.TextField( diff --git a/api_v2/models/weapon.py b/api_v2/models/weapon.py index 49a7fd4d..3c2fbaaf 100644 --- a/api_v2/models/weapon.py +++ b/api_v2/models/weapon.py @@ -126,7 +126,7 @@ def is_melee(self): @property def ranged_attack_possible(self): # Only ammunition or throw weapons can make ranged attacks. - return self.ammunition or self.thrown + return self.ammunition or self.thrown @property def range_melee(self): From 66f4838b754731968a9a17a1a8378af063b28876 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 24 May 2024 10:36:32 -0500 Subject: [PATCH 17/84] Data fix --- .../en-publishing/a5e-ag/{Benefit.json => BackgroundBenefit.json} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename data/v2/en-publishing/a5e-ag/{Benefit.json => BackgroundBenefit.json} (100%) diff --git a/data/v2/en-publishing/a5e-ag/Benefit.json b/data/v2/en-publishing/a5e-ag/BackgroundBenefit.json similarity index 100% rename from data/v2/en-publishing/a5e-ag/Benefit.json rename to data/v2/en-publishing/a5e-ag/BackgroundBenefit.json From df0bc35b7be023d67bac93185a4339f59cba2a2d Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 24 May 2024 10:54:53 -0500 Subject: [PATCH 18/84] Adding some changing helper files. --- .../data_manipulation/data_v2_format_check.py | 32 +++++++++++++++---- 1 file changed, 26 insertions(+), 6 deletions(-) diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index 1bb016b5..dae1210b 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -59,32 +59,42 @@ def main(): objs = json.load(f_in) # CHECK FOR KEYS THAT ARE NUMBERS, WARN IF EXISTS - known_keys_non_numeric_exceptions = ['CastingOption.json','Capability.json','Benefit.json','Trait.json','FeatureItem.json'] + known_keys_non_numeric_exceptions = ['CastingOption.json','Capability.json','Trait.json','FeatureItem.json'] if f_obj['filename'] in known_keys_non_numeric_exceptions: logger.debug("Skipping {}: file is known to have numeric keys.".format(f_obj['filename'])) else: - check_keys_non_numeric(objs, f_obj) - + #fix_keys_num_to_parent_name(objs, f_obj) + ''' # CHECK FOR KEYS THAT ARE NOT PROPERLY SLUGIFIED - known_keys_are_slugified_exceptions = ['CastingOption.json','Capability.json','Benefit.json','Trait.json','FeatureItem.json'] + known_keys_are_slugified_exceptions = ['CastingOption.json','Capability.json','BackgroundBenefit.json','Trait.json','FeatureItem.json'] if f_obj['filename'] in known_keys_are_slugified_exceptions: logger.debug("Skipping {}: file is known to have non-slugified keys.".format(f_obj['filename'])) else: check_keys_are_slugified(objs, f_obj) - + ''' # CHECK THAT KEYS MATCH THE FORMAT DOC_NAME, SLUGIFIED_NAME - known_keys_doc_name_exceptions = ['CastingOption.json','Capability.json','Benefit.json','Trait.json','FeatureItem.json', 'Size.json'] + known_keys_doc_name_exceptions = ['CastingOption.json','Capability.json','BackgroundBenefit.json','Trait.json','FeatureItem.json', 'Size.json','CreatureAttack.json'] if f_obj['filename'] in known_keys_doc_name_exceptions: logger.debug("Skipping {}: file is known to have non-slugified keys.".format(f_obj['filename'])) else: check_keys_doc_name(objs, f_obj) + fix_keys_to_doc_name(objs, f_obj) + def check_keys_non_numeric(objs,f): for obj in objs: if isinstance(obj['pk'], numbers.Real): logger.warning("{} uses numeric pk".format(f['path'])) +def fix_keys_num_to_parent_name(objs,f): + for obj in objs: + if isinstance(obj['pk'], numbers.Real): + if f['filename']=='BackgroundBenefit.json': + logger.warning("{} changing from numeric pk to string".format(f['path'])) + pk_value = "{}_{}".format(obj['fields']['parent'],slugify(obj['fields']['name'])) + logger.warning("CHANGING PK TO {}".format(pk_value)) + def check_keys_are_slugified(objs,f): for obj in objs: if obj['pk'] != slugify(obj['pk']): @@ -97,6 +107,16 @@ def check_keys_doc_name(objs,f): logger.warning("{}:{} does not follow the doc-key_slugified-name format.".format(f['path'],obj['pk'])) break +def fix_keys_to_doc_name(objs,f): + for obj in objs: + if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): + if f['filename']=='Background.json': + logger.warning("{} changing to doc_name format".format(f['path'])) + pk_value = "{}_{}".format(obj['fields']['document'],slugify(obj['fields']['name'])) + logger.warning("CHANGING PK TO {}".format(pk_value)) + + + def check_keys_doc_parent_name(objs,f): for obj in objs: if obj['pk'] != "{}_{}_{}".format(slugify(f['doc']),slugify(obj['parent']),slugify(obj['fields']['name'])): From 9ece13ec77dac679a68323c3a38975ad597935ba Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 24 May 2024 11:07:48 -0500 Subject: [PATCH 19/84] Fixing background keys. --- data/v2/en-publishing/a5e-ag/Background.json | 380 +++++++++--------- data/v2/en-publishing/a5e-ddg/Background.json | 72 ++-- data/v2/en-publishing/a5e-gpg/Background.json | 36 +- data/v2/green-ronin/tdcs/Background.json | 90 ++--- data/v2/kobold-press/toh/Background.json | 344 ++++++++-------- .../wizards-of-the-coast/srd/Background.json | 18 +- 6 files changed, 470 insertions(+), 470 deletions(-) diff --git a/data/v2/en-publishing/a5e-ag/Background.json b/data/v2/en-publishing/a5e-ag/Background.json index fc466720..e57e0bf3 100644 --- a/data/v2/en-publishing/a5e-ag/Background.json +++ b/data/v2/en-publishing/a5e-ag/Background.json @@ -1,191 +1,191 @@ [ -{ - "model": "api_v2.background", - "pk": "a5e-acolyte", - "fields": { - "name": "Acolyte", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "artisan", - "fields": { - "name": "Artisan", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "charlatan", - "fields": { - "name": "Charlatan", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "criminal", - "fields": { - "name": "Criminal", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "cultist", - "fields": { - "name": "Cultist", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "entertainer", - "fields": { - "name": "Entertainer", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "exile", - "fields": { - "name": "Exile", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "farmer", - "fields": { - "name": "Farmer", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "folk-hero", - "fields": { - "name": "Folk Hero", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "gambler", - "fields": { - "name": "Gambler", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "guard", - "fields": { - "name": "Guard", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "guildmember", - "fields": { - "name": "Guildmember", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "hermit", - "fields": { - "name": "Hermit", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "marauder", - "fields": { - "name": "Marauder", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "noble", - "fields": { - "name": "Noble", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "outlander", - "fields": { - "name": "Outlander", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "sage", - "fields": { - "name": "Sage", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "sailor", - "fields": { - "name": "Sailor", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "soldier", - "fields": { - "name": "Soldier", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "trader", - "fields": { - "name": "Trader", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "urchin", - "fields": { - "name": "Urchin", - "desc": "[No description provided]", - "document": "a5e-ag" - } -} -] + { + "model": "api_v2.background", + "pk": "a5e-ag_acolyte", + "fields": { + "name": "Acolyte", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_artisan", + "fields": { + "name": "Artisan", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_charlatan", + "fields": { + "name": "Charlatan", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_criminal", + "fields": { + "name": "Criminal", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_cultist", + "fields": { + "name": "Cultist", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_entertainer", + "fields": { + "name": "Entertainer", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_exile", + "fields": { + "name": "Exile", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_farmer", + "fields": { + "name": "Farmer", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_folk-hero", + "fields": { + "name": "Folk Hero", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_gambler", + "fields": { + "name": "Gambler", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_guard", + "fields": { + "name": "Guard", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_guildmember", + "fields": { + "name": "Guildmember", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_hermit", + "fields": { + "name": "Hermit", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_marauder", + "fields": { + "name": "Marauder", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_noble", + "fields": { + "name": "Noble", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_outlander", + "fields": { + "name": "Outlander", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_sage", + "fields": { + "name": "Sage", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_sailor", + "fields": { + "name": "Sailor", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_soldier", + "fields": { + "name": "Soldier", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_trader", + "fields": { + "name": "Trader", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_urchin", + "fields": { + "name": "Urchin", + "desc": "[No description provided]", + "document": "a5e-ag" + } + } +] \ No newline at end of file diff --git a/data/v2/en-publishing/a5e-ddg/Background.json b/data/v2/en-publishing/a5e-ddg/Background.json index ded79314..62024bbb 100644 --- a/data/v2/en-publishing/a5e-ddg/Background.json +++ b/data/v2/en-publishing/a5e-ddg/Background.json @@ -1,38 +1,38 @@ [ -{ - "model": "api_v2.background", - "pk": "deep-hunter", - "fields": { - "name": "Deep Hunter", - "desc": "[No description provided]", - "document": "a5e-ddg" + { + "model": "api_v2.background", + "pk": "a5e-ddg_deep-hunter", + "fields": { + "name": "Deep Hunter", + "desc": "[No description provided]", + "document": "a5e-ddg" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ddg_dungeon-robber", + "fields": { + "name": "Dungeon Robber", + "desc": "[No description provided]", + "document": "a5e-ddg" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ddg_escapee-from-below", + "fields": { + "name": "Escapee from Below", + "desc": "[No description provided]", + "document": "a5e-ddg" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ddg_imposter", + "fields": { + "name": "Imposter", + "desc": "[No description provided]", + "document": "a5e-ddg" + } } -}, -{ - "model": "api_v2.background", - "pk": "dungeon-robber", - "fields": { - "name": "Dungeon Robber", - "desc": "[No description provided]", - "document": "a5e-ddg" - } -}, -{ - "model": "api_v2.background", - "pk": "escapee-from-below", - "fields": { - "name": "Escapee from Below", - "desc": "[No description provided]", - "document": "a5e-ddg" - } -}, -{ - "model": "api_v2.background", - "pk": "imposter", - "fields": { - "name": "Imposter", - "desc": "[No description provided]", - "document": "a5e-ddg" - } -} -] +] \ No newline at end of file diff --git a/data/v2/en-publishing/a5e-gpg/Background.json b/data/v2/en-publishing/a5e-gpg/Background.json index d3bebb7b..986cef24 100644 --- a/data/v2/en-publishing/a5e-gpg/Background.json +++ b/data/v2/en-publishing/a5e-gpg/Background.json @@ -1,20 +1,20 @@ [ -{ - "model": "api_v2.background", - "pk": "cursed", - "fields": { - "name": "Cursed", - "desc": "[No description provided]", - "document": "a5e-gpg" + { + "model": "api_v2.background", + "pk": "a5e-gpg_cursed", + "fields": { + "name": "Cursed", + "desc": "[No description provided]", + "document": "a5e-gpg" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-gpg_haunted", + "fields": { + "name": "Haunted", + "desc": "[No description provided]", + "document": "a5e-gpg" + } } -}, -{ - "model": "api_v2.background", - "pk": "haunted", - "fields": { - "name": "Haunted", - "desc": "[No description provided]", - "document": "a5e-gpg" - } -} -] +] \ No newline at end of file diff --git a/data/v2/green-ronin/tdcs/Background.json b/data/v2/green-ronin/tdcs/Background.json index f518422e..6beadb2b 100644 --- a/data/v2/green-ronin/tdcs/Background.json +++ b/data/v2/green-ronin/tdcs/Background.json @@ -1,47 +1,47 @@ [ -{ - "model": "api_v2.background", - "pk": "crime-syndicate-member", - "fields": { - "name": "Crime Syndicate Member", - "desc": "Whether you grew up in slum-run streets bamboozling foolish gamblers out of their fortune, or spent your youth pilfering loose coin from the pockets of less-attentive travelers, your lifestyle of deceiving-to-survive eventually drew the attention of an organized and dangerous crime syndicate. Offering protection, a modicum of kinship, and a number of useful resources to further develop your craft as a criminal, you agree to receive the syndicate’s brand and join their ranks.\r\nYou might have been working the syndicate’s lower ranks, wandering the alleys as a simple cutpurse to fill the meager coffers with wayward gold until the opportunity arose to climb the professional ladder. Or you may have become a clever actor and liar whose skill in blending in with all facets of society has made you an indispensable agent of information gathering. Perhaps your technique with a blade and swiftness of action led you to become a feared hitman for a syndicate boss, sending you on the occasional contract to snuff the life of some unfortunate soul who crossed them. Regardless, while the threat of the law is ever looming, the advantages to having a foot in such a powerful cartel can greatly outweigh the paranoia.", - "document": "tdcs" + { + "model": "api_v2.background", + "pk": "tdcs_crime-syndicate-member", + "fields": { + "name": "Crime Syndicate Member", + "desc": "Whether you grew up in slum-run streets bamboozling foolish gamblers out of their fortune, or spent your youth pilfering loose coin from the pockets of less-attentive travelers, your lifestyle of deceiving-to-survive eventually drew the attention of an organized and dangerous crime syndicate. Offering protection, a modicum of kinship, and a number of useful resources to further develop your craft as a criminal, you agree to receive the syndicate\u2019s brand and join their ranks.\r\nYou might have been working the syndicate\u2019s lower ranks, wandering the alleys as a simple cutpurse to fill the meager coffers with wayward gold until the opportunity arose to climb the professional ladder. Or you may have become a clever actor and liar whose skill in blending in with all facets of society has made you an indispensable agent of information gathering. Perhaps your technique with a blade and swiftness of action led you to become a feared hitman for a syndicate boss, sending you on the occasional contract to snuff the life of some unfortunate soul who crossed them. Regardless, while the threat of the law is ever looming, the advantages to having a foot in such a powerful cartel can greatly outweigh the paranoia.", + "document": "tdcs" + } + }, + { + "model": "api_v2.background", + "pk": "tdcs_elemental-warden", + "fields": { + "name": "Elemental Warden", + "desc": "Away from the complex political struggles of the massive cities, you\u2019ve instead been raised to revere and uphold the protection of the natural world, while policing, bending, and guiding the elemental powers that either foster life or destroy it. Living among smaller bands of tribal societies means you have stronger ties to your neighbors than most, and the protection of this way of life is of cardinal importance. Each elemental warden is tethered to one of the four elemental tribes and their villages. You must select one: Fire, Water, Earth, or Wind.\r\nYour upbringing may have prepared you to be a fierce warrior, trained in combat to defend your culture and charge as protectors of the rifts. It\u2019s possible your meditation on the balance of the elements has brought you peace of mind with strength of body as a monk. Perhaps you found strength in bending the elements yourself, joining the ranks of the powerful elemental druids. Regardless, your loyalties ultimately lie with the continued safety of your tribe, and you\u2019ve set out to gather allies to your cause and learn more about the world around you.", + "document": "tdcs" + } + }, + { + "model": "api_v2.background", + "pk": "tdcs_fate-touched", + "fields": { + "name": "Fate-Touched", + "desc": "Many lives and many souls find their ways through the patterns of fate and destiny, their threads following the path meant for them, oblivious and eager to be a part of the woven essence of history meant for them. Some souls, however, glide forth with mysterious influence, their threads bending the weave around them, toward them, unknowingly guiding history itself wherever they walk. Events both magnificent and catastrophic tend to follow such individuals. These souls often become great rulers and terrible tyrants, powerful mages, religious leaders, and legendary heroes of lore. These are the fate-touched.\nFew fate-touched ever become aware of their prominent nature. Outside of powerful divination magics, it\u2019s extremely difficult to confirm one as fate-touched. There are many communities that regard the status as a terrible omen, treating a confirmed fate-touched with mistrust and fear. Others seek them as a blessing, rallying around them for guidance. Some of renown and power grow jealous, wishing to bend a fate-touched beneath their will, and some stories speak of mages of old attempting to extract or transfer the essence itself.\nPlayers are not intended to select this background, but this is instead provided for the dungeon master to consider for one or more of their players, or perhaps a prominent NPC, as their campaign unfolds. It provides very minor mechanical benefit, but instead adds an element of lore, importance, and fate-bearing responsibility to a character within your story. Being fate-touched overlaps and co-exists with the character\u2019s current background, only adding to their mystique. Consider it for a player character who would benefit from being put more central to the coming conflicts of your adventure, or for an NPC who may require protection as they come into their destiny. Perhaps consider a powerful villain discovering their fate-twisting nature and using it to wreak havoc. All of these possibilities and more can be explored should you choose to include a fate-touched within your campaign.", + "document": "tdcs" + } + }, + { + "model": "api_v2.background", + "pk": "tdcs_lyceum-student", + "fields": { + "name": "Lyceum Student", + "desc": "You most likely came up through money or a family of social prestige somewhere in the world, as tuition at a lyceum is not inexpensive. Your interests and pursuits have brought you to the glittering halls of a place of learning, soaking in all and every lesson you can to better make your mark on the world (or at least you should be, but every class has its slackers). However, the call to adventure threatens to pull you from your studies, and now the challenge of balancing your education with the tide of destiny sweeping you away is looming.\r\nYou may have come to better research and understand the history and lore of the lands you now call home, perhaps seeking a future here at your lyceum as a professor. You could also have been drawn by the promise of prosperity in politics, learning the inner workings of government and alliances to better position yourself as a future writer of history. Perhaps you\u2019ve discovered a knack for the arcane, coming here to focus on refining your spellcraft in the footsteps of some of the finest wizards and sorcerers in days of yore.", + "document": "tdcs" + } + }, + { + "model": "api_v2.background", + "pk": "tdcs_recovered-cultist", + "fields": { + "name": "Recovered Cultist", + "desc": "Dark deities whisper and promise great power to those who listen. Their cults are scattered and separated, with little to no unity between the greater evils. Hidden hierarchies of power-hungry mortals corrupt and seduce, promising a sliver of the same power they had been promised when the time comes to reap their harvest.\r\nYou once belonged to such a cult. Perhaps it was brief, embracing the rebellious spirit of youth and curious where this path may take you. You also may have felt alone and lost, this community offering a welcome you had been subconsciously seeking. It\u2019s possible you were raised from the beginning to pray to the gods of shadow and death. Then one day the veil was lifted and the cruel truth shook your faith, sending you running from the false promises and seeking redemption.\r\nYou have been freed from the bindings of these dangerous philosophies, but few secret societies find comfort until those who abandon their way are rotting beneath the soil.", + "document": "tdcs" + } } -}, -{ - "model": "api_v2.background", - "pk": "elemental-warden", - "fields": { - "name": "Elemental Warden", - "desc": "Away from the complex political struggles of the massive cities, you’ve instead been raised to revere and uphold the protection of the natural world, while policing, bending, and guiding the elemental powers that either foster life or destroy it. Living among smaller bands of tribal societies means you have stronger ties to your neighbors than most, and the protection of this way of life is of cardinal importance. Each elemental warden is tethered to one of the four elemental tribes and their villages. You must select one: Fire, Water, Earth, or Wind.\r\nYour upbringing may have prepared you to be a fierce warrior, trained in combat to defend your culture and charge as protectors of the rifts. It’s possible your meditation on the balance of the elements has brought you peace of mind with strength of body as a monk. Perhaps you found strength in bending the elements yourself, joining the ranks of the powerful elemental druids. Regardless, your loyalties ultimately lie with the continued safety of your tribe, and you’ve set out to gather allies to your cause and learn more about the world around you.", - "document": "tdcs" - } -}, -{ - "model": "api_v2.background", - "pk": "fate-touched", - "fields": { - "name": "Fate-Touched", - "desc": "Many lives and many souls find their ways through the patterns of fate and destiny, their threads following the path meant for them, oblivious and eager to be a part of the woven essence of history meant for them. Some souls, however, glide forth with mysterious influence, their threads bending the weave around them, toward them, unknowingly guiding history itself wherever they walk. Events both magnificent and catastrophic tend to follow such individuals. These souls often become great rulers and terrible tyrants, powerful mages, religious leaders, and legendary heroes of lore. These are the fate-touched.\nFew fate-touched ever become aware of their prominent nature. Outside of powerful divination magics, it’s extremely difficult to confirm one as fate-touched. There are many communities that regard the status as a terrible omen, treating a confirmed fate-touched with mistrust and fear. Others seek them as a blessing, rallying around them for guidance. Some of renown and power grow jealous, wishing to bend a fate-touched beneath their will, and some stories speak of mages of old attempting to extract or transfer the essence itself.\nPlayers are not intended to select this background, but this is instead provided for the dungeon master to consider for one or more of their players, or perhaps a prominent NPC, as their campaign unfolds. It provides very minor mechanical benefit, but instead adds an element of lore, importance, and fate-bearing responsibility to a character within your story. Being fate-touched overlaps and co-exists with the character’s current background, only adding to their mystique. Consider it for a player character who would benefit from being put more central to the coming conflicts of your adventure, or for an NPC who may require protection as they come into their destiny. Perhaps consider a powerful villain discovering their fate-twisting nature and using it to wreak havoc. All of these possibilities and more can be explored should you choose to include a fate-touched within your campaign.", - "document": "tdcs" - } -}, -{ - "model": "api_v2.background", - "pk": "lyceum-student", - "fields": { - "name": "Lyceum Student", - "desc": "You most likely came up through money or a family of social prestige somewhere in the world, as tuition at a lyceum is not inexpensive. Your interests and pursuits have brought you to the glittering halls of a place of learning, soaking in all and every lesson you can to better make your mark on the world (or at least you should be, but every class has its slackers). However, the call to adventure threatens to pull you from your studies, and now the challenge of balancing your education with the tide of destiny sweeping you away is looming.\r\nYou may have come to better research and understand the history and lore of the lands you now call home, perhaps seeking a future here at your lyceum as a professor. You could also have been drawn by the promise of prosperity in politics, learning the inner workings of government and alliances to better position yourself as a future writer of history. Perhaps you’ve discovered a knack for the arcane, coming here to focus on refining your spellcraft in the footsteps of some of the finest wizards and sorcerers in days of yore.", - "document": "tdcs" - } -}, -{ - "model": "api_v2.background", - "pk": "recovered-cultist", - "fields": { - "name": "Recovered Cultist", - "desc": "Dark deities whisper and promise great power to those who listen. Their cults are scattered and separated, with little to no unity between the greater evils. Hidden hierarchies of power-hungry mortals corrupt and seduce, promising a sliver of the same power they had been promised when the time comes to reap their harvest.\r\nYou once belonged to such a cult. Perhaps it was brief, embracing the rebellious spirit of youth and curious where this path may take you. You also may have felt alone and lost, this community offering a welcome you had been subconsciously seeking. It’s possible you were raised from the beginning to pray to the gods of shadow and death. Then one day the veil was lifted and the cruel truth shook your faith, sending you running from the false promises and seeking redemption.\r\nYou have been freed from the bindings of these dangerous philosophies, but few secret societies find comfort until those who abandon their way are rotting beneath the soil.", - "document": "tdcs" - } -} -] +] \ No newline at end of file diff --git a/data/v2/kobold-press/toh/Background.json b/data/v2/kobold-press/toh/Background.json index 43df7ec0..3848390c 100644 --- a/data/v2/kobold-press/toh/Background.json +++ b/data/v2/kobold-press/toh/Background.json @@ -1,173 +1,173 @@ [ -{ - "model": "api_v2.background", - "pk": "court-servant", - "fields": { - "name": "Court Servant", - "desc": "Even though you are independent now, you were once a servant to a merchant, noble, regent, or other person of high station. You are an expert in complex social dynamics and knowledgeable in the history and customs of courtly life. Work with your GM to determine whom you served and why you are no longer a servant: did your master or masters retire and no longer require servants, did you resign from the service of a harsh master, did the court you served fall to a neighboring empire, or did something else happen?", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "desert-runner", - "fields": { - "name": "Desert Runner", - "desc": "You grew up in the desert. As a nomad, you moved from place to place, following the caravan trails. Your upbringing makes you more than just accustomed to desert living—you thrive there. Your family has lived in the desert for centuries, and you know more about desert survival than life in the towns and cities.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "destined", - "fields": { - "name": "Destined", - "desc": "Duty is a complicated, tangled affair, be it filial, political, or civil. Sometimes, there's wealth and intrigue involved, but more often than not, there's also obligation and responsibility. You are a person with just such a responsibility. This could involve a noble title, an arranged marriage, a family business you're expected to administer, or an inherited civil office. You promised to fulfill this responsibility, you are desperately trying to avoid this duty, or you might even be seeking the person intended to be at your side. Regardless of the reason, you're on the road, heading toward or away from your destiny.\r\n\r\n### Destiny\r\nYou're a person who's running from something or hurtling headfirst towards something, but just what is it? The responsibility or event might be happily anticipated or simply dreaded; either way, you're committed to the path. Choose a destiny or roll a d8 and consult the table below.\r\n\r\n| d8 | Destiny |\r\n|---|---|\r\n| 1 | You are running away from a marriage. |\r\n| 2 | You are seeking your runaway betrothed. |\r\n| 3 | You don't want to take over your famous family business. |\r\n| 4 | You need to arrive at a religious site at a specific time to complete an event or prophecy. |\r\n| 5 | Your noble relative died, and you're required to take their vacant position. |\r\n| 6 | You are the reincarnation of a famous figure, and you're expected to live in an isolated temple. |\r\n| 7 | You were supposed to serve an honorary but dangerous position in your people's military. |\r\n| 8 | Members of your family have occupied a civil office (court scribe, sheriff, census official, or similar) for generations. |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "diplomat", - "fields": { - "name": "Diplomat", - "desc": "You have always found harmonious solutions to conflict. You might have started mediating family conflicts as a child. When you were old enough to recognize aggression, you sought to defuse it. You often resolved disputes among neighbors, arriving at a fair middle ground satisfactory to all parties.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "forest-dweller", - "fields": { - "name": "Forest Dweller", - "desc": "You are a creature of the forest, born and reared under a canopy of green. You expected to live all your days in the forest, at one with the green things of the world, until an unforeseen occurrence, traumatic or transformative, drove you from your familiar home and into the larger world. Civilization is strange to you, the open sky unfamiliar, and the bizarre ways of the so-called civilized world run counter to the truths of the natural world.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "former-adventurer", - "fields": { - "name": "Former Adventurer", - "desc": "As you belted on your weapons and hoisted the pack onto your back, you never thought you'd become an adventurer again. But the heroic call couldn't be ignored. You've tried this once before—perhaps it showered you in wealth and glory or perhaps it ended with sorrow and regret. No one ever said adventuring came with a guarantee of success. Now, the time has come to set off toward danger once again. The reasons for picking up adventuring again vary. Could it be a calamitous threat to the town? The region? The world? Was the settled life not what you expected? Or did your past finally catch up to you? In the end, all that matters is diving back into danger. And it's time to show these new folks how it's done.\r\n\r\n### Reason for Retirement\r\nGiving up your first adventuring career was a turning point in your life. Triumph or tragedy, the reason why you gave it up might still haunt you and may shape your actions as you reenter the adventuring life. Choose the event that led you to stop adventuring or roll a d12 and consult the table below.\r\n\r\n| d12 | Event |\r\n|---|---|\r\n| 1 | Your love perished on one of your adventures, and you quit in despair. |\r\n| 2 | You were the only survivor after an ambush by a hideous beast. |\r\n| 3 | Legal entanglements forced you to quit, and they may cause you trouble again. |\r\n| 4 | A death in the family required you to return home. |\r\n| 5 | Your old group disowned you for some reason. |\r\n| 6 | A fabulous treasure allowed you to have a life of luxury, until the money ran out. |\r\n| 7 | An injury forced you to give up adventuring. |\r\n| 8 | You suffered a curse which doomed your former group, but the curse has finally faded away. |\r\n| 9 | You rescued a young child or creature and promised to care for them. They have since grown up and left. |\r\n| 10 | You couldn't master your fear and fled from a dangerous encounter, never to return. |\r\n| 11 | As a reward for helping an area, you were offered a position with the local authorities, and you accepted. |\r\n| 12 | You killed or defeated your nemesis. Now they are back, and you must finish the job. |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "freebooter", - "fields": { - "name": "Freebooter", - "desc": "You sailed the seas as a freebooter, part of a pirate crew. You should come up with a name for your former ship and its captain, as well as its hunting ground and the type of ships you preyed on. Did you sail under the flag of a bloodthirsty captain, raiding coastal communities and putting everyone to the sword? Or were you part of a group of former slaves turned pirates, who battle to end the vile slave trade? Whatever ship you sailed on, you feel at home on board a seafaring vessel, and you have difficulty adjusting to long periods on dry land.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "gamekeeper", - "fields": { - "name": "Gamekeeper", - "desc": "You are at home in natural environments, chasing prey or directing less skilled hunters in the best ways to track game through the brush. You know the requirements for encouraging a herd to grow, and you know what sustainable harvesting from a herd involves. You can train a hunting beast to recognize an owner and perform a half-dozen commands, given the time. You also know the etiquette for engaging nobility or other members of the upper classes, as they regularly seek your services, and you can carry yourself in a professional manner in such social circles.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "innkeeper", - "fields": { - "name": "Innkeeper", - "desc": "You spent some time as an innkeeper, tavern keeper, or perhaps a bartender. It might have been in a small crossroads town, a fishing community, a fine caravanserai, or a large cosmopolitan community. You did it all; preparing food, tracking supplies, tapping kegs, and everything in between. All the while, you listened to the adventurers plan their quests, heard their tales, saw their amazing trophies, marveled at their terrible scars, and eyed their full purses. You watched them come and go, thinking, \"one day, I will have my chance.\" Your time is now.\r\n\r\n### Place of Employment\r\nWhere did you work before turning to the adventuring life? Choose an establishment or roll a d6 and consult the table below. Once you have this information, think about who worked with you, what sort of customers you served, and what sort of reputation your establishment had.\r\n\r\n| d6 | Establishment |\r\n|---|---|\r\n| 1 | Busy crossroads inn |\r\n| 2 | Disreputable tavern full of scum and villainy |\r\n| 3 | Caravanserai on a wide-ranging trade route |\r\n| 4 | Rough seaside pub |\r\n| 5 | Hostel serving only the wealthiest clientele |\r\n| 6 | Saloon catering to expensive and sometimes dangerous tastes |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "mercenary-company-scion", - "fields": { - "name": "Mercenary Company Scion", - "desc": "You descend from a famous line of free company veterans, and your first memory is playing among the tents, training yards, and war rooms of one campaign or another. Adored or perhaps ignored by your parents, you spent your formative years learning weapons and armor skills from brave captains, camp discipline from burly sergeants, and a host of virtues and vices from the common foot soldiers. You've always been told you are special and destined to glory. The weight of your family's legacy, honor, or reputation can weigh heavily, inspiring you to great deeds, or it can be a factor you try to leave behind.\r\n\r\n### Mercenary Company Reputation\r\nYour family is part of or associated with a mercenary company. The company has a certain reputation that may or may not continue to impact your life. Roll a d8 or choose from the options in the Mercenary Company Reputation table to determine the reputation of this free company.\r\n\r\n| d8 | Mercenary Company Reputation |\r\n|---|---|\r\n| 1 | Infamous. The company's evil deeds follow any who are known to consort with them. |\r\n| 2 | Honest. An upstanding company whose words and oaths are trusted. |\r\n| 3 | Unknown. Few know of this company. Its deeds have yet to be written. |\r\n| 4 | Feared. For good or ill, this company is generally feared on the battlefield. |\r\n| 5 | Mocked. Though it tries hard, the company is the butt of many jokes and derision. |\r\n| 6 | Specialized. This company is known for a specific type of skill on or off the battlefield. |\r\n| 7 | Disliked. For well-known reasons, this company has a bad reputation. |\r\n| 8 | Famous. The company's great feats and accomplishments are known far and wide. |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "mercenary-recruit", - "fields": { - "name": "Mercenary Recruit", - "desc": "Every year, the hopeful strive to earn a place in one of the great mercenary companies. Some of these would-be heroes received training from a mercenary company but needed more training before gaining membership. Others are full members but were selected to venture abroad to gain more experience before gaining a rank. You are one of these hopeful warriors, just beginning to carve your place in the world with blade, spell, or skill.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "monstrous-adoptee", - "fields": { - "name": "Monstrous Adoptee", - "desc": "Songs and sagas tell of heroes who, as children, were raised by creatures most view as monsters. You were one such child. Found, taken, left, or otherwise given to your monstrous parents, you were raised as one of their own species. Life with your adopted family could not have been easy for you, but the adversity and hardships you experienced only made you stronger. Perhaps you were *rescued* from your adopted family after only a short time with them, or perhaps only now have you realized the truth of your heritage. Maybe you've since learned enough civilized behavior to get by, or perhaps your *monstrous* tendencies are more evident. As you set out to make your way in the world, the time you spent with your adopted parents continues to shape your present and your future.\r\n\r\n### Adopted\r\nPrior to becoming an adventurer, you defined your history by the creatures who raised you. Choose a type of creature for your adopted parents or roll a d10 and consult the table below. Work with your GM to determine which specific creature of that type adopted you. If you are of a particular race or species that matches a result on the table, your adopted parent can't be of the same race or species as you, as this background represents an individual raised by a creature or in a culture vastly different or even alien to their birth parents.\r\n\r\n| d10 | Creature Type |\r\n|---|---|\r\n| 1 | Humanoid (such as gnoll, goblin, kobold, or merfolk) |\r\n| 2 | Aberration (such as aboleth, chuul, cloaker, or otyugh) |\r\n| 3 | Beast (such as ape, bear, tyrannosaurus rex, or wolf) |\r\n| 4 | Celestial or fiend (such as balor, bearded devil, couatl, deva, or unicorn) |\r\n| 5 | Dragon (such as dragon turtle, pseudodragon, red dragon, or wyvern) |\r\n| 6 | Elemental (such as efreeti, gargoyle, salamander, or water elemental) |\r\n| 7 | Fey (such as dryad, green hag, satyr, or sprite) |\r\n| 8 | Giant (such as ettin, fire giant, ogre, or troll) |\r\n| 9 | Plant or ooze (such as awakened shrub, gray ooze, shambling mound, or treant) |\r\n| 10 | Monstrosity (such as behir, chimera, griffon, mimic, or minotaur) |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "mysterious-origins", - "fields": { - "name": "Mysterious Origins", - "desc": "Your origins are a mystery even to you. You might recall fragments of your previous life, or you might dream of events that could be memories, but you can't be sure of what is remembered and what is imagined. You recall practical information and facts about the world and perhaps even your name, but your upbringing and life before you lost your memories now exist only in dreams or sudden flashes of familiarity. You can leave the details of your character's past up to your GM or give the GM a specific backstory that your character can't remember. Were you the victim of a spell gone awry, or did you voluntarily sacrifice your memories in exchange for power? Is your amnesia the result of a natural accident, or did you purposefully have your mind wiped in order to forget a memory you couldn't live with? Perhaps you have family or friends that are searching for you or enemies you can't even remember.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "northern-minstrel", - "fields": { - "name": "Northern Minstrel", - "desc": "While the tribal warriors residing in other parts of the wintry north consider you to be soft and cowardly, you know the truth: life in northern cities and mead halls is not for the faint of heart. Whether you are a larger-than-life performer hailing from one of the skaldic schools, a contemplative scholar attempting to puzzle out the mysteries of the north, or a doughty warrior hoping to stave off the bleakness of the north, you have successfully navigated alleys and stages as treacherous as any ice-slicked ruin. You adventure for the thrill of adding new songs to your repertoire, adding new lore to your catalog, and proving false the claims of those so-called true northerners.\r\n\r\n### Skaldic Specialty\r\nEvery minstrel excels at certain types of performance. Choose one specialty or roll a d8 and consult the table below to determine your preferred type of performance.\r\n\r\n| d8 | Specialty |\r\n|---|---|\r\n| 1 | Recitation of epic poetry |\r\n| 2 | Singing |\r\n| 3 | Tale-telling |\r\n| 4 | Flyting (insult flinging) |\r\n| 5 | Yodeling |\r\n| 6 | Axe throwing |\r\n| 7 | Playing an instrument |\r\n| 8 | Fire eating or sword swallowing |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "occultist", - "fields": { - "name": "Occultist", - "desc": "At your core, you are a believer in things others dismiss. The signs abound if you know where to look. Questions beget answers that spur further questions. The cycle is endless as you uncover layer after layer of mystery and secrets. Piercing the veil hiding beyond the surface of reality is an irresistible lure spurring you to delve into forgotten and dangerous places in the world. Perhaps you've always yearned toward the occult, or it could be that you encountered something or someone who opened your eyes to the possibilities. You may belong to some esoteric organization determined to uncover the mystery, a cult bent on using the secrets for a dark purpose, or you may be searching for answers on your own. As an occultist, you ask the questions reality doesn't want to answer.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "parfumier", - "fields": { - "name": "Parfumier", - "desc": "You are educated and ambitious. You spent your youth apprenticed among a city's more reputable greenhouses, laboratories, and perfumeries. There, you studied botany and chemistry and explored properties and interactions with fine crystal, rare metals, and magic. You quickly mastered the skills to identify and process rare and complex botanical and alchemical samples and the proper extractions and infusions of essential oils, pollens, and other fragrant chemical compounds—natural or otherwise. Not all (dramatic) changes to one's lifestyle, calling, or ambitions are a result of social or financial decline. Some are simply decided upon. Regardless of your motivation or incentive for change, you have accepted that a comfortable life of research, science and business is—at least for now—a part of your past.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "scoundrel", - "fields": { - "name": "Scoundrel", - "desc": "You were brought up in a poor neighborhood in a crowded town or city. You may have been lucky enough to have a leaky roof over your head, or perhaps you grew up sleeping in doorways or on the rooftops. Either way, you didn't have it easy, and you lived by your wits. While never a hardened criminal, you fell in with the wrong crowd, or you ended up in trouble for stealing food from an orange cart or clean clothes from a washing line. You're no stranger to the city watch in your hometown and have outwitted or outrun them many times.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "sentry", - "fields": { - "name": "Sentry", - "desc": "In your youth, the defense of the city, the community, the caravan, or your patron was how you earned your coin. You might have been trained by an old, grizzled city watchman, or you might have been pressed into service by the local magistrate for your superior skills, size, or intellect. However you came to the role, you excelled at defending others. You have a nose for trouble, a keen eye for spotting threats, a strong arm to back it up, and you are canny enough to know when to act. Most importantly, though, you were a peace officer or a protector and not a member of an army which might march to war.\r\n\r\n### Specialization\r\nEach person or location that hires a sentry comes with its own set of unique needs and responsibilities. As a sentry, you fulfilled one of these unique roles. Choose a specialization or roll a d6 and consult the table below to define your expertise as a sentry.\r\n\r\n| d6 | Specialization |\r\n|---|---|\r\n| 1 | City or gate watch |\r\n| 2 | Bodyguard or jailor |\r\n| 3 | Caravan guard |\r\n| 4 | Palace or judicial sentry |\r\n| 5 | Shop guard |\r\n| 6 | Ecclesiastical or temple guard |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "trophy-hunter", - "fields": { - "name": "Trophy Hunter", - "desc": "You hunt the mightiest beasts in the harshest environments, claiming their pelts as trophies and returning them to settled lands for a profit or to decorate your abode. You likely were set on this path since birth, following your parents on safaris and learning from their actions, but you may have instead come to this path as an adult after being swept away by the thrill of dominating the natural world. Many big game hunters pursue their quarry purely for pleasure, as a calming avocation, but others sell their skills to the highest bidder to amass wealth and reputation as a trophy hunter.", - "document": "toh" - } -} -] + { + "model": "api_v2.background", + "pk": "toh_court-servant", + "fields": { + "name": "Court Servant", + "desc": "Even though you are independent now, you were once a servant to a merchant, noble, regent, or other person of high station. You are an expert in complex social dynamics and knowledgeable in the history and customs of courtly life. Work with your GM to determine whom you served and why you are no longer a servant: did your master or masters retire and no longer require servants, did you resign from the service of a harsh master, did the court you served fall to a neighboring empire, or did something else happen?", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_desert-runner", + "fields": { + "name": "Desert Runner", + "desc": "You grew up in the desert. As a nomad, you moved from place to place, following the caravan trails. Your upbringing makes you more than just accustomed to desert living\u2014you thrive there. Your family has lived in the desert for centuries, and you know more about desert survival than life in the towns and cities.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_destined", + "fields": { + "name": "Destined", + "desc": "Duty is a complicated, tangled affair, be it filial, political, or civil. Sometimes, there's wealth and intrigue involved, but more often than not, there's also obligation and responsibility. You are a person with just such a responsibility. This could involve a noble title, an arranged marriage, a family business you're expected to administer, or an inherited civil office. You promised to fulfill this responsibility, you are desperately trying to avoid this duty, or you might even be seeking the person intended to be at your side. Regardless of the reason, you're on the road, heading toward or away from your destiny.\r\n\r\n### Destiny\r\nYou're a person who's running from something or hurtling headfirst towards something, but just what is it? The responsibility or event might be happily anticipated or simply dreaded; either way, you're committed to the path. Choose a destiny or roll a d8 and consult the table below.\r\n\r\n| d8 | Destiny |\r\n|---|---|\r\n| 1 | You are running away from a marriage. |\r\n| 2 | You are seeking your runaway betrothed. |\r\n| 3 | You don't want to take over your famous family business. |\r\n| 4 | You need to arrive at a religious site at a specific time to complete an event or prophecy. |\r\n| 5 | Your noble relative died, and you're required to take their vacant position. |\r\n| 6 | You are the reincarnation of a famous figure, and you're expected to live in an isolated temple. |\r\n| 7 | You were supposed to serve an honorary but dangerous position in your people's military. |\r\n| 8 | Members of your family have occupied a civil office (court scribe, sheriff, census official, or similar) for generations. |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_diplomat", + "fields": { + "name": "Diplomat", + "desc": "You have always found harmonious solutions to conflict. You might have started mediating family conflicts as a child. When you were old enough to recognize aggression, you sought to defuse it. You often resolved disputes among neighbors, arriving at a fair middle ground satisfactory to all parties.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_forest-dweller", + "fields": { + "name": "Forest Dweller", + "desc": "You are a creature of the forest, born and reared under a canopy of green. You expected to live all your days in the forest, at one with the green things of the world, until an unforeseen occurrence, traumatic or transformative, drove you from your familiar home and into the larger world. Civilization is strange to you, the open sky unfamiliar, and the bizarre ways of the so-called civilized world run counter to the truths of the natural world.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_former-adventurer", + "fields": { + "name": "Former Adventurer", + "desc": "As you belted on your weapons and hoisted the pack onto your back, you never thought you'd become an adventurer again. But the heroic call couldn't be ignored. You've tried this once before\u2014perhaps it showered you in wealth and glory or perhaps it ended with sorrow and regret. No one ever said adventuring came with a guarantee of success. Now, the time has come to set off toward danger once again. The reasons for picking up adventuring again vary. Could it be a calamitous threat to the town? The region? The world? Was the settled life not what you expected? Or did your past finally catch up to you? In the end, all that matters is diving back into danger. And it's time to show these new folks how it's done.\r\n\r\n### Reason for Retirement\r\nGiving up your first adventuring career was a turning point in your life. Triumph or tragedy, the reason why you gave it up might still haunt you and may shape your actions as you reenter the adventuring life. Choose the event that led you to stop adventuring or roll a d12 and consult the table below.\r\n\r\n| d12 | Event |\r\n|---|---|\r\n| 1 | Your love perished on one of your adventures, and you quit in despair. |\r\n| 2 | You were the only survivor after an ambush by a hideous beast. |\r\n| 3 | Legal entanglements forced you to quit, and they may cause you trouble again. |\r\n| 4 | A death in the family required you to return home. |\r\n| 5 | Your old group disowned you for some reason. |\r\n| 6 | A fabulous treasure allowed you to have a life of luxury, until the money ran out. |\r\n| 7 | An injury forced you to give up adventuring. |\r\n| 8 | You suffered a curse which doomed your former group, but the curse has finally faded away. |\r\n| 9 | You rescued a young child or creature and promised to care for them. They have since grown up and left. |\r\n| 10 | You couldn't master your fear and fled from a dangerous encounter, never to return. |\r\n| 11 | As a reward for helping an area, you were offered a position with the local authorities, and you accepted. |\r\n| 12 | You killed or defeated your nemesis. Now they are back, and you must finish the job. |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_freebooter", + "fields": { + "name": "Freebooter", + "desc": "You sailed the seas as a freebooter, part of a pirate crew. You should come up with a name for your former ship and its captain, as well as its hunting ground and the type of ships you preyed on. Did you sail under the flag of a bloodthirsty captain, raiding coastal communities and putting everyone to the sword? Or were you part of a group of former slaves turned pirates, who battle to end the vile slave trade? Whatever ship you sailed on, you feel at home on board a seafaring vessel, and you have difficulty adjusting to long periods on dry land.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_gamekeeper", + "fields": { + "name": "Gamekeeper", + "desc": "You are at home in natural environments, chasing prey or directing less skilled hunters in the best ways to track game through the brush. You know the requirements for encouraging a herd to grow, and you know what sustainable harvesting from a herd involves. You can train a hunting beast to recognize an owner and perform a half-dozen commands, given the time. You also know the etiquette for engaging nobility or other members of the upper classes, as they regularly seek your services, and you can carry yourself in a professional manner in such social circles.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_innkeeper", + "fields": { + "name": "Innkeeper", + "desc": "You spent some time as an innkeeper, tavern keeper, or perhaps a bartender. It might have been in a small crossroads town, a fishing community, a fine caravanserai, or a large cosmopolitan community. You did it all; preparing food, tracking supplies, tapping kegs, and everything in between. All the while, you listened to the adventurers plan their quests, heard their tales, saw their amazing trophies, marveled at their terrible scars, and eyed their full purses. You watched them come and go, thinking, \"one day, I will have my chance.\" Your time is now.\r\n\r\n### Place of Employment\r\nWhere did you work before turning to the adventuring life? Choose an establishment or roll a d6 and consult the table below. Once you have this information, think about who worked with you, what sort of customers you served, and what sort of reputation your establishment had.\r\n\r\n| d6 | Establishment |\r\n|---|---|\r\n| 1 | Busy crossroads inn |\r\n| 2 | Disreputable tavern full of scum and villainy |\r\n| 3 | Caravanserai on a wide-ranging trade route |\r\n| 4 | Rough seaside pub |\r\n| 5 | Hostel serving only the wealthiest clientele |\r\n| 6 | Saloon catering to expensive and sometimes dangerous tastes |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_mercenary-company-scion", + "fields": { + "name": "Mercenary Company Scion", + "desc": "You descend from a famous line of free company veterans, and your first memory is playing among the tents, training yards, and war rooms of one campaign or another. Adored or perhaps ignored by your parents, you spent your formative years learning weapons and armor skills from brave captains, camp discipline from burly sergeants, and a host of virtues and vices from the common foot soldiers. You've always been told you are special and destined to glory. The weight of your family's legacy, honor, or reputation can weigh heavily, inspiring you to great deeds, or it can be a factor you try to leave behind.\r\n\r\n### Mercenary Company Reputation\r\nYour family is part of or associated with a mercenary company. The company has a certain reputation that may or may not continue to impact your life. Roll a d8 or choose from the options in the Mercenary Company Reputation table to determine the reputation of this free company.\r\n\r\n| d8 | Mercenary Company Reputation |\r\n|---|---|\r\n| 1 | Infamous. The company's evil deeds follow any who are known to consort with them. |\r\n| 2 | Honest. An upstanding company whose words and oaths are trusted. |\r\n| 3 | Unknown. Few know of this company. Its deeds have yet to be written. |\r\n| 4 | Feared. For good or ill, this company is generally feared on the battlefield. |\r\n| 5 | Mocked. Though it tries hard, the company is the butt of many jokes and derision. |\r\n| 6 | Specialized. This company is known for a specific type of skill on or off the battlefield. |\r\n| 7 | Disliked. For well-known reasons, this company has a bad reputation. |\r\n| 8 | Famous. The company's great feats and accomplishments are known far and wide. |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_mercenary-recruit", + "fields": { + "name": "Mercenary Recruit", + "desc": "Every year, the hopeful strive to earn a place in one of the great mercenary companies. Some of these would-be heroes received training from a mercenary company but needed more training before gaining membership. Others are full members but were selected to venture abroad to gain more experience before gaining a rank. You are one of these hopeful warriors, just beginning to carve your place in the world with blade, spell, or skill.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_monstrous-adoptee", + "fields": { + "name": "Monstrous Adoptee", + "desc": "Songs and sagas tell of heroes who, as children, were raised by creatures most view as monsters. You were one such child. Found, taken, left, or otherwise given to your monstrous parents, you were raised as one of their own species. Life with your adopted family could not have been easy for you, but the adversity and hardships you experienced only made you stronger. Perhaps you were *rescued* from your adopted family after only a short time with them, or perhaps only now have you realized the truth of your heritage. Maybe you've since learned enough civilized behavior to get by, or perhaps your *monstrous* tendencies are more evident. As you set out to make your way in the world, the time you spent with your adopted parents continues to shape your present and your future.\r\n\r\n### Adopted\r\nPrior to becoming an adventurer, you defined your history by the creatures who raised you. Choose a type of creature for your adopted parents or roll a d10 and consult the table below. Work with your GM to determine which specific creature of that type adopted you. If you are of a particular race or species that matches a result on the table, your adopted parent can't be of the same race or species as you, as this background represents an individual raised by a creature or in a culture vastly different or even alien to their birth parents.\r\n\r\n| d10 | Creature Type |\r\n|---|---|\r\n| 1 | Humanoid (such as gnoll, goblin, kobold, or merfolk) |\r\n| 2 | Aberration (such as aboleth, chuul, cloaker, or otyugh) |\r\n| 3 | Beast (such as ape, bear, tyrannosaurus rex, or wolf) |\r\n| 4 | Celestial or fiend (such as balor, bearded devil, couatl, deva, or unicorn) |\r\n| 5 | Dragon (such as dragon turtle, pseudodragon, red dragon, or wyvern) |\r\n| 6 | Elemental (such as efreeti, gargoyle, salamander, or water elemental) |\r\n| 7 | Fey (such as dryad, green hag, satyr, or sprite) |\r\n| 8 | Giant (such as ettin, fire giant, ogre, or troll) |\r\n| 9 | Plant or ooze (such as awakened shrub, gray ooze, shambling mound, or treant) |\r\n| 10 | Monstrosity (such as behir, chimera, griffon, mimic, or minotaur) |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_mysterious-origins", + "fields": { + "name": "Mysterious Origins", + "desc": "Your origins are a mystery even to you. You might recall fragments of your previous life, or you might dream of events that could be memories, but you can't be sure of what is remembered and what is imagined. You recall practical information and facts about the world and perhaps even your name, but your upbringing and life before you lost your memories now exist only in dreams or sudden flashes of familiarity. You can leave the details of your character's past up to your GM or give the GM a specific backstory that your character can't remember. Were you the victim of a spell gone awry, or did you voluntarily sacrifice your memories in exchange for power? Is your amnesia the result of a natural accident, or did you purposefully have your mind wiped in order to forget a memory you couldn't live with? Perhaps you have family or friends that are searching for you or enemies you can't even remember.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_northern-minstrel", + "fields": { + "name": "Northern Minstrel", + "desc": "While the tribal warriors residing in other parts of the wintry north consider you to be soft and cowardly, you know the truth: life in northern cities and mead halls is not for the faint of heart. Whether you are a larger-than-life performer hailing from one of the skaldic schools, a contemplative scholar attempting to puzzle out the mysteries of the north, or a doughty warrior hoping to stave off the bleakness of the north, you have successfully navigated alleys and stages as treacherous as any ice-slicked ruin. You adventure for the thrill of adding new songs to your repertoire, adding new lore to your catalog, and proving false the claims of those so-called true northerners.\r\n\r\n### Skaldic Specialty\r\nEvery minstrel excels at certain types of performance. Choose one specialty or roll a d8 and consult the table below to determine your preferred type of performance.\r\n\r\n| d8 | Specialty |\r\n|---|---|\r\n| 1 | Recitation of epic poetry |\r\n| 2 | Singing |\r\n| 3 | Tale-telling |\r\n| 4 | Flyting (insult flinging) |\r\n| 5 | Yodeling |\r\n| 6 | Axe throwing |\r\n| 7 | Playing an instrument |\r\n| 8 | Fire eating or sword swallowing |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_occultist", + "fields": { + "name": "Occultist", + "desc": "At your core, you are a believer in things others dismiss. The signs abound if you know where to look. Questions beget answers that spur further questions. The cycle is endless as you uncover layer after layer of mystery and secrets. Piercing the veil hiding beyond the surface of reality is an irresistible lure spurring you to delve into forgotten and dangerous places in the world. Perhaps you've always yearned toward the occult, or it could be that you encountered something or someone who opened your eyes to the possibilities. You may belong to some esoteric organization determined to uncover the mystery, a cult bent on using the secrets for a dark purpose, or you may be searching for answers on your own. As an occultist, you ask the questions reality doesn't want to answer.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_parfumier", + "fields": { + "name": "Parfumier", + "desc": "You are educated and ambitious. You spent your youth apprenticed among a city's more reputable greenhouses, laboratories, and perfumeries. There, you studied botany and chemistry and explored properties and interactions with fine crystal, rare metals, and magic. You quickly mastered the skills to identify and process rare and complex botanical and alchemical samples and the proper extractions and infusions of essential oils, pollens, and other fragrant chemical compounds\u2014natural or otherwise. Not all (dramatic) changes to one's lifestyle, calling, or ambitions are a result of social or financial decline. Some are simply decided upon. Regardless of your motivation or incentive for change, you have accepted that a comfortable life of research, science and business is\u2014at least for now\u2014a part of your past.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_scoundrel", + "fields": { + "name": "Scoundrel", + "desc": "You were brought up in a poor neighborhood in a crowded town or city. You may have been lucky enough to have a leaky roof over your head, or perhaps you grew up sleeping in doorways or on the rooftops. Either way, you didn't have it easy, and you lived by your wits. While never a hardened criminal, you fell in with the wrong crowd, or you ended up in trouble for stealing food from an orange cart or clean clothes from a washing line. You're no stranger to the city watch in your hometown and have outwitted or outrun them many times.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_sentry", + "fields": { + "name": "Sentry", + "desc": "In your youth, the defense of the city, the community, the caravan, or your patron was how you earned your coin. You might have been trained by an old, grizzled city watchman, or you might have been pressed into service by the local magistrate for your superior skills, size, or intellect. However you came to the role, you excelled at defending others. You have a nose for trouble, a keen eye for spotting threats, a strong arm to back it up, and you are canny enough to know when to act. Most importantly, though, you were a peace officer or a protector and not a member of an army which might march to war.\r\n\r\n### Specialization\r\nEach person or location that hires a sentry comes with its own set of unique needs and responsibilities. As a sentry, you fulfilled one of these unique roles. Choose a specialization or roll a d6 and consult the table below to define your expertise as a sentry.\r\n\r\n| d6 | Specialization |\r\n|---|---|\r\n| 1 | City or gate watch |\r\n| 2 | Bodyguard or jailor |\r\n| 3 | Caravan guard |\r\n| 4 | Palace or judicial sentry |\r\n| 5 | Shop guard |\r\n| 6 | Ecclesiastical or temple guard |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_trophy-hunter", + "fields": { + "name": "Trophy Hunter", + "desc": "You hunt the mightiest beasts in the harshest environments, claiming their pelts as trophies and returning them to settled lands for a profit or to decorate your abode. You likely were set on this path since birth, following your parents on safaris and learning from their actions, but you may have instead come to this path as an adult after being swept away by the thrill of dominating the natural world. Many big game hunters pursue their quarry purely for pleasure, as a calming avocation, but others sell their skills to the highest bidder to amass wealth and reputation as a trophy hunter.", + "document": "toh" + } + } +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/Background.json b/data/v2/wizards-of-the-coast/srd/Background.json index 86132337..7c7688bc 100644 --- a/data/v2/wizards-of-the-coast/srd/Background.json +++ b/data/v2/wizards-of-the-coast/srd/Background.json @@ -1,11 +1,11 @@ [ -{ - "model": "api_v2.background", - "pk": "acolyte", - "fields": { - "name": "Acolyte", - "desc": "You have spent your life in the service of a temple to a specific god or pantheon of gods. You act as an\r\nintermediary between the realm of the holy and the mortal world, performing sacred rites and offering sacrifices in order to conduct worshipers into the presence of the divine. You are not necessarily a cleric performing sacred rites is not the same thing as channeling divine power.\r\n\r\nChoose a god, a pantheon of gods, or some other quasi-divine being from among those listed in \"Fantasy-Historical Pantheons\" or those specified by your GM, and work with your GM to detail the nature\r\nof your religious service. Were you a lesser functionary in a temple, raised from childhood to assist the priests in the sacred rites? Or were you a high priest who suddenly experienced a call to serve your god in a different way? Perhaps you were the leader of a small cult outside of any established temple structure, or even an occult group that served a fiendish master that you now deny.", - "document": "srd" + { + "model": "api_v2.background", + "pk": "srd_acolyte", + "fields": { + "name": "Acolyte", + "desc": "You have spent your life in the service of a temple to a specific god or pantheon of gods. You act as an\r\nintermediary between the realm of the holy and the mortal world, performing sacred rites and offering sacrifices in order to conduct worshipers into the presence of the divine. You are not necessarily a cleric performing sacred rites is not the same thing as channeling divine power.\r\n\r\nChoose a god, a pantheon of gods, or some other quasi-divine being from among those listed in \"Fantasy-Historical Pantheons\" or those specified by your GM, and work with your GM to detail the nature\r\nof your religious service. Were you a lesser functionary in a temple, raised from childhood to assist the priests in the sacred rites? Or were you a high priest who suddenly experienced a call to serve your god in a different way? Perhaps you were the leader of a small cult outside of any established temple structure, or even an occult group that served a fiendish master that you now deny.", + "document": "srd" + } } -} -] +] \ No newline at end of file From d8161107b77c4a39b9e9e0993376c3d928b68faa Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 24 May 2024 11:44:32 -0500 Subject: [PATCH 20/84] Fixing background keys. --- data/v2/en-publishing/a5e-ag/Background.json | 380 +-- .../a5e-ag/BackgroundBenefit.json | 2862 ++++++++--------- data/v2/en-publishing/a5e-ddg/Background.json | 72 +- .../a5e-ddg/BackgroundBenefit.json | 580 ++-- data/v2/en-publishing/a5e-gpg/Background.json | 36 +- .../a5e-gpg/BackgroundBenefit.json | 280 +- data/v2/green-ronin/tdcs/Background.json | 90 +- .../green-ronin/tdcs/BackgroundBenefit.json | 462 +-- data/v2/kobold-press/toh/Background.json | 344 +- .../kobold-press/toh/BackgroundBenefit.json | 2282 ++++++------- .../wizards-of-the-coast/srd/Background.json | 18 +- .../srd/BackgroundBenefit.json | 100 +- .../data_manipulation/data_v2_format_check.py | 47 +- 13 files changed, 3796 insertions(+), 3757 deletions(-) diff --git a/data/v2/en-publishing/a5e-ag/Background.json b/data/v2/en-publishing/a5e-ag/Background.json index fc466720..e57e0bf3 100644 --- a/data/v2/en-publishing/a5e-ag/Background.json +++ b/data/v2/en-publishing/a5e-ag/Background.json @@ -1,191 +1,191 @@ [ -{ - "model": "api_v2.background", - "pk": "a5e-acolyte", - "fields": { - "name": "Acolyte", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "artisan", - "fields": { - "name": "Artisan", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "charlatan", - "fields": { - "name": "Charlatan", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "criminal", - "fields": { - "name": "Criminal", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "cultist", - "fields": { - "name": "Cultist", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "entertainer", - "fields": { - "name": "Entertainer", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "exile", - "fields": { - "name": "Exile", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "farmer", - "fields": { - "name": "Farmer", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "folk-hero", - "fields": { - "name": "Folk Hero", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "gambler", - "fields": { - "name": "Gambler", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "guard", - "fields": { - "name": "Guard", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "guildmember", - "fields": { - "name": "Guildmember", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "hermit", - "fields": { - "name": "Hermit", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "marauder", - "fields": { - "name": "Marauder", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "noble", - "fields": { - "name": "Noble", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "outlander", - "fields": { - "name": "Outlander", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "sage", - "fields": { - "name": "Sage", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "sailor", - "fields": { - "name": "Sailor", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "soldier", - "fields": { - "name": "Soldier", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "trader", - "fields": { - "name": "Trader", - "desc": "[No description provided]", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.background", - "pk": "urchin", - "fields": { - "name": "Urchin", - "desc": "[No description provided]", - "document": "a5e-ag" - } -} -] + { + "model": "api_v2.background", + "pk": "a5e-ag_acolyte", + "fields": { + "name": "Acolyte", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_artisan", + "fields": { + "name": "Artisan", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_charlatan", + "fields": { + "name": "Charlatan", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_criminal", + "fields": { + "name": "Criminal", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_cultist", + "fields": { + "name": "Cultist", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_entertainer", + "fields": { + "name": "Entertainer", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_exile", + "fields": { + "name": "Exile", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_farmer", + "fields": { + "name": "Farmer", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_folk-hero", + "fields": { + "name": "Folk Hero", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_gambler", + "fields": { + "name": "Gambler", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_guard", + "fields": { + "name": "Guard", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_guildmember", + "fields": { + "name": "Guildmember", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_hermit", + "fields": { + "name": "Hermit", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_marauder", + "fields": { + "name": "Marauder", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_noble", + "fields": { + "name": "Noble", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_outlander", + "fields": { + "name": "Outlander", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_sage", + "fields": { + "name": "Sage", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_sailor", + "fields": { + "name": "Sailor", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_soldier", + "fields": { + "name": "Soldier", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_trader", + "fields": { + "name": "Trader", + "desc": "[No description provided]", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ag_urchin", + "fields": { + "name": "Urchin", + "desc": "[No description provided]", + "document": "a5e-ag" + } + } +] \ No newline at end of file diff --git a/data/v2/en-publishing/a5e-ag/BackgroundBenefit.json b/data/v2/en-publishing/a5e-ag/BackgroundBenefit.json index 196078d3..3926c970 100644 --- a/data/v2/en-publishing/a5e-ag/BackgroundBenefit.json +++ b/data/v2/en-publishing/a5e-ag/BackgroundBenefit.json @@ -1,1432 +1,1432 @@ [ -{ - "model": "api_v2.backgroundbenefit", - "pk": 24, - "fields": { - "name": "Skill Proficiencies", - "desc": "Religion, and either Insight or Persuasion.", - "type": "skill_proficiency", - "parent": "a5e-acolyte" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 25, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "a5e-acolyte" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 26, - "fields": { - "name": "Equipment", - "desc": "Holy symbol (amulet or reliquary), common clothes, robe, and a prayer book, prayer wheel, or prayer beads.", - "type": "equipment", - "parent": "a5e-acolyte" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 27, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Wisdom and one other ability score.", - "type": "ability_score", - "parent": "a5e-acolyte" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 28, - "fields": { - "name": "Adventures and Advancement", - "desc": "In small settlements without other resources, your authority may extend to such matters as settling disputes and punishing criminals. You might also be expected to deal with local outbreaks of supernatural dangers such as fiendish possessions, cults, and the unquiet dead. \r\nIf you solve several problems brought to you by members of your faith, you may be promoted (or reinstated) within the hierarchy of your order. You gain the free service of up to 4 acolytes, and direct access to your order’s leaders.", - "type": "adventures_and_advancement", - "parent": "a5e-acolyte" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 29, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Acolyte Connections\r\n\r\n1. A beloved high priest or priestess awaiting your return to the temple once you resolve your crisis of faith.\r\n2. A former priest—exposed by you as a heretic—who swore revenge before fleeing.\r\n3. The wandering herald who rescued you as an orphan and sponsored your entry into your temple.\r\n4. The inquisitor who rooted out your heresy (or framed you) and had you banished from your temple.\r\n5. The fugitive charlatan or cult leader whom you once revered as a holy person.\r\n6. Your scandalous friend, a fellow acolyte who fled the temple in search of worldly pleasures.\r\n7. The high priest who discredited your temple and punished the others of your order.\r\n8. The wandering adventurer whose tales of glory enticed you from your temple.\r\n9. The leader of your order, a former adventurer who sends you on quests to battle your god’s enemies.\r\n10. The former leader of your order who inexplicably retired to a life of isolation and penance.\r\n\r\n### Acolyte Memento\r\n\r\n1. The timeworn holy symbol bequeathed to you by your beloved mentor on their deathbed.\r\n2. A precious holy relic secretly passed on to you in a moment of great danger.\r\n3. A prayer book which contains strange and sinister deviations from the accepted liturgy.\r\n4. A half-complete book of prophecies which seems to hint at danger for your faith—if only the other half could be found!\r\n5. A gift from a mentor: a book of complex theology which you don’t yet understand.\r\n6. Your only possession when you entered the temple as a child: a signet ring bearing a coat of arms.\r\n7. A strange candle which never burns down.\r\n8. The true name of a devil that you glimpsed while tidying up papers for a sinister visitor.\r\n9. A weapon (which seems to exhibit no magical properties) given to you with great solemnity by your mentor.\r\n10. A much-thumbed and heavily underlined prayer book given to you by the fellow acolyte you admire most.", - "type": "connection_and_memento", - "parent": "a5e-acolyte" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 43, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of artisan’s tools or smith’s tools.", - "type": "tool_proficiency", - "parent": "artisan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 47, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### **Artisan Connections**\r\n\r\n1. The cruel master who worked you nearly to death and now does the same to other apprentices.\r\n2. The kind master who taught you the trade.\r\n3. The powerful figure who refused to pay for your finest work.\r\n4. The jealous rival who made a fortune after stealing your secret technique.\r\n5. The corrupt rival who framed and imprisoned your mentor.\r\n6. The bandit leader who destroyed your mentor’s shop and livelihood.\r\n7. The crime boss who bankrupted your mentor.\r\n8. The shady alchemist who always needs dangerous ingredients to advance the state of your art.\r\n9. Your apprentice who went missing.\r\n10. The patron who supports your work.\r\n\r\n### **Artisan Mementos**\r\n\r\n1. *Jeweler:* A 10,000 gold commission for a ruby ring (now all you need is a ruby worth 5,000 gold).\r\n2. *Smith:* Your blacksmith's hammer (treat as a light hammer).\r\n3. *Cook:* A well-seasoned skillet (treat as a mace).\r\n4. *Alchemist:* A formula with exotic ingredients that will produce...something.\r\n5. *Leatherworker:* An exotic monster hide which could be turned into striking-looking leather armor.\r\n6. *Mason:* Your trusty sledgehammer (treat as a warhammer).\r\n7. *Potter:* Your secret technique for vivid colors which is sure to disrupt Big Pottery.\r\n8. *Weaver:* A set of fine clothes (your own work).\r\n9. *Woodcarver:* A longbow, shortbow, or crossbow (your own work).\r\n10. *Calligrapher:* Strange notes you copied from a rambling manifesto. Do they mean something?", - "type": "connection_and_memento", - "parent": "artisan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 48, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Charisma and one other ability score.", - "type": "ability_score", - "parent": "charlatan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 49, - "fields": { - "name": "Skill Proficiencies", - "desc": "Deception, and either Culture, Insight, or Sleight of Hand.", - "type": "skill_proficiency", - "parent": "charlatan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 50, - "fields": { - "name": "Tool Proficiencies", - "desc": "Disguise kit, forgery kit.", - "type": "tool_proficiency", - "parent": "charlatan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 51, - "fields": { - "name": "Suggested Equipment", - "desc": "Common clothes, disguise kit, forgery kit.", - "type": "equipment", - "parent": "charlatan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 52, - "fields": { - "name": "Many Identities", - "desc": "You have a bundle of forged papers of all kinds—property deeds, identification papers, love letters, arrest warrants, and letters of recommendation—all requiring only a few signatures and flourishes to meet the current need. When you encounter a new document or letter, you can add a forged and modified copy to your bundle. If your bundle is lost, you can recreate it with a forgery kit and a day’s work.", - "type": "feature", - "parent": "charlatan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 53, - "fields": { - "name": "Adventures and Advancement", - "desc": "If you pull off a long-standing impersonation or false identity with exceptional success, you may eventually legally become that person. If you’re impersonating a real person, they might be considered the impostor. You gain any property and servants associated with your identity.", - "type": "adventures_and_advancement", - "parent": "charlatan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 54, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Charlatan Connections\r\n\r\n1. A relentless pursuer: an inspector who you once made a fool of.\r\n2. A relentless pursuer: a mark you once cheated.\r\n3. A relentless pursuer: a former partner just out of jail who blames you for everything.\r\n4. A former partner now gone straight who couldn’t possibly be coaxed out of retirement.\r\n5. A respected priest or tavernkeeper who tips you off about rich potential marks.\r\n6. The elusive former partner who ratted you out and sent you to jail.\r\n7. A famous noble or politician who through sheer luck happens to bear a striking resemblance to you.\r\n8. The crook who taught you everything and just can’t stay out of trouble.\r\n9. A gullible noble who knows you by one of your former aliases, and who always seems to pop up at inconvenient times.\r\n10. A prominent noble who knows you only under your assumed name and who trusts you as their spiritual advisor, tutor, long-lost relative, or the like.\r\n\r\n### Charlatan Mementos\r\n\r\n1. A die that always comes up 6.\r\n2. A dozen brightly-colored “potions”.\r\n3. A magical staff that emits a harmless shower of sparks when vigorously thumped.\r\n4. A set of fine clothes suitable for nobility.\r\n5. A genuine document allowing its holder one free release from prison for a non-capital crime.\r\n6. A genuine deed to a valuable property that is, unfortunately, quite haunted.\r\n7. An ornate harlequin mask.\r\n8. Counterfeit gold coins or costume jewelry apparently worth 100 gold (DC 15 Investigation check to notice they’re fake).\r\n9. A sword that appears more magical than it really is (its blade is enchanted with continual flame and it is a mundane weapon).\r\n10. A nonmagical crystal ball.", - "type": "connection_and_memento", - "parent": "charlatan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 187, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Charisma and one other ability score.", - "type": "ability_score", - "parent": "trader" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 188, - "fields": { - "name": "Skill Proficiencies", - "desc": "Persuasion, and either Culture, Deception, or Insight.", - "type": "skill_proficiency", - "parent": "trader" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 189, - "fields": { - "name": "Equipment", - "desc": "Traveler's clothes, abacus, merchant's scale.", - "type": "equipment", - "parent": "trader" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 191, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Trader Connections\r\n1. The parent or relative who wants you to carry on the family business.\r\n2. The sibling who inherited the other half of the family business.\r\n3. The trading company to which you are indentured until you pay off a debt.\r\n4. The powerful merchant who will never forgive the business coup you pulled off.\r\n5. The noble whose horse trampled your poor family’s vegetable stall, injuring or killing a relative you\r\ndearly loved.\r\n6. The parent or elder sibling who squandered your family fortune.\r\n7. The business partner who cheated you.\r\n8. The customs agent who has sworn to catch you red-handed with illicit goods.\r\n9. The crime boss to whom you wouldn’t pay protection money.\r\n10. The smuggler who will pay well for certain commodities.\r\n\r\n### Trader Mementos\r\n1. The first gold piece you earned.\r\n2. Thousands of shares in a failed venture.\r\n3. A letter of introduction to a rich merchant in a distant city.\r\n4. A sample of an improved version of a common tool.\r\n5. Scars from a wound sustained when you tried to collect a debt from a vicious noble.\r\n6. A love letter from the heir of a rival trading family.\r\n7. A signet ring bearing your family crest, which is famous in the mercantile world.\r\n8. A contract binding you to a particular trading company for the next few years.\r\n9. A letter from a friend imploring you to invest in an opportunity that can't miss.\r\n10. A trusted family member's travel journals that mix useful geographical knowledge with tall tales.", - "type": "connection_and_memento", - "parent": "trader" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 192, - "fields": { - "name": "Adventures And Advancement", - "desc": "Because of your commercial contacts you may be offered money to lead or escort trade caravans. You'll receive a fee from each trader that reaches their destination safely.", - "type": "adventures_and_advancement", - "parent": "trader" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 245, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Hermit Connections\r\n1. The high priest who banished you to the wilderness until you repent your heresy.\r\n2. The inquisitor who hunts you even through the most solitary wildlands.\r\n3. The supernatural patron whose temptations and gifts you seek to reject.\r\n4. The inner voice you only hear in solitude.\r\n5. The mentor who trained you in silent contemplation—until they mysteriously turned their back on their own teachings.\r\n6. The villain who destroyed the shreds of your original, worldly life. \r\n7. The noble relatives who seek to return you to the life you rejected.\r\n8. The religious superior whose blasphemies scandalized you into fleeing your religious order.\r\n9. The angel who delivered you a prophecy.\r\n10. The mysterious person you glimpsed several times from a distance—unless it was a hallucination.\r\n\r\n### Hermit Mementos\r\n1. The (possibly unhinged) manifesto, encyclopedia, or theoretical work that you spent so much time on.\r\n2. The faded set of fine clothes you preserved for so many years.\r\n3. The signet ring bearing the family crest that you were ashamed of for so long.\r\n4. The book of forbidden secrets that led you to your isolated refuge.\r\n5. The beetle, mouse, or other small creature which was your only companion for so long.\r\n6. The seemingly nonmagical item that your inner voice says is important.\r\n7. The magic-defying clay tablets you spent years translating.\r\n8. The holy relic you were duty bound to protect.\r\n9. The meteor metal you found in a crater the day you first heard your inner voice.\r\n10. Your ridiculous-looking sun hat.", - "type": "connection_and_memento", - "parent": "hermit" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 259, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Dexterity and one other ability score.", - "type": "ability_score", - "parent": "urchin" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 260, - "fields": { - "name": "Skill Proficiencies", - "desc": "Sleight of Hand, and either Deception or Stealth.", - "type": "skill_proficiency", - "parent": "urchin" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 261, - "fields": { - "name": "Equipment", - "desc": "Common clothes, disguise kit.", - "type": "equipment", - "parent": "urchin" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 264, - "fields": { - "name": "Adventures And Advancement", - "desc": "Street kids are among a settlement's most vulnerable people, especially in cities with lycanthropes, vampires, and other supernatural threats. After you help out a few urchins in trouble, word gets out and you'll be able to consult the street network to gather information. If you roll lower than a 15 on an Investigation check to gather information in a city or town, your roll is treated as a 15.", - "type": "adventures_and_advancement", - "parent": "urchin" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 265, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Dexterity and one other ability score.", - "type": "ability_score", - "parent": "criminal" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 266, - "fields": { - "name": "Skill Proficiencies", - "desc": "Stealth, and either Deception or Intimidation.", - "type": "skill_proficiency", - "parent": "criminal" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 267, - "fields": { - "name": "Equipment", - "desc": "Common clothes, dark cloak, thieves' tools.", - "type": "equipment", - "parent": "criminal" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 268, - "fields": { - "name": "Thieves' Cant", - "desc": "You know thieves' cant: a set of slang, hand signals, and code terms used by professional criminals. A creature that knows thieves' cant can hide a short message within a seemingly innocent statement. A listener who knows thieves' cant understands the message.", - "type": "feature", - "parent": "criminal" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 269, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Criminal Connections\r\n\r\n1. The master criminal who inducted you into your first gang.\r\n2. The cleric or herald who convinced you to use your skills for good (and who may be legally responsible for your continued good behavior).\r\n3. Your sibling or other relative—who also happens to be a representative of the law.\r\n4. The gang of rascals and pickpockets who once called you their leader.\r\n5. The bounty hunter who has sworn to bring you to justice.\r\n6. Your former partner who made off with all the loot after a big score.\r\n7. The masked courier who occasionally gives you jobs.\r\n8. The crime boss to whom you have sworn loyalty (or to whom you owe an enormous debt).\r\n9. The master thief who once stole something precious from you. \r\n10. The corrupt noble who ruined your once-wealthy family.\r\n\r\n### Criminal Mementos\r\n\r\n1. A golden key to which you haven't discovered the lock.\r\n2. A brand that was burned into your shoulder as punishment for a crime.\r\n3. A scar for which you have sworn revenge.\r\n4. The distinctive mask that gives you your nickname (for instance, the Black Mask or the Red Fox).\r\n5. A gold coin which reappears in your possession a week after you've gotten rid of it.\r\n6. The stolen symbol of a sinister organization; not even your fence will take it off your hands.\r\n7. Documents that incriminate a dangerous noble or politician.\r\n8. The floor plan of a palace.\r\n9. The calling cards you leave after (or before) you strike.\r\n10. A manuscript written by your mentor: *Secret Exits of the World's Most Secure Prisons*.", - "type": "connection_and_memento", - "parent": "criminal" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 270, - "fields": { - "name": "Adventures And Advancement", - "desc": "If you pull off several successful jobs or heists, you may be promoted (or reinstated) as a leader in your gang. You may gain the free service of up to 8 **bandits** at any time.", - "type": "adventures_and_advancement", - "parent": "criminal" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 271, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Wisdom and one other ability score.", - "type": "ability_score", - "parent": "farmer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 272, - "fields": { - "name": "Skill Proficiencies", - "desc": "Nature, and either Animal Handling or Survival.", - "type": "skill_proficiency", - "parent": "farmer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 273, - "fields": { - "name": "Equipment", - "desc": "Common clothes, shovel, mule with saddlebags, 5 Supply (rations).", - "type": "equipment", - "parent": "farmer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 274, - "fields": { - "name": "Bit and Bridle", - "desc": "You know how to stow and transport food. You and one animal under your care can each carry additional Supply equal to your proficiency bonus.", - "type": "feature", - "parent": "farmer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 275, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Farmer Connections\r\n\r\n1. The landowner who foreclosed on your family land.\r\n2. The thugs who burned your village.\r\n3. The parents who wait for your return.\r\n4. The strange witch to whom your family owes a debt.\r\n5. The retired adventurer who trained you.\r\n6. The druid who—according to the villagers—laid a drought curse on your land.\r\n7. The village bully who threatened to kill you if you ever returned.\r\n8. The evil wizard who will stop at nothing to take your family heirloom.\r\n9. Your elder sibling who left searching for adventure before you did.\r\n10. The dragon whose foul reek has spoiled your countryside.\r\n\r\n### Farmer Mementos\r\n\r\n1. A strange item you dug up in a field: a key, a lump of unmeltable metal, a glass dagger.\r\n2. The bag of beans your mother warned you not to plant.\r\n3. The shovel, pickaxe, pitchfork, or other tool you used for labor. For you it's a one-handed simple melee weapon that deals 1d6 piercing, slashing, or bludgeoning damage.\r\n4. A debt you must pay.\r\n5. A **mastiff**.\r\n6. Your trusty fishing pole.\r\n7. A corncob pipe.\r\n8. A dried flower from your family garden.\r\n9. Half of a locket given to you by a missing sweetheart.\r\n10. A family weapon said to have magic powers, though it exhibits none at the moment.", - "type": "connection_and_memento", - "parent": "farmer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 276, - "fields": { - "name": "Adventures And Advancement", - "desc": "You left the farm for a reason but you still have an eye for land. If you acquire farming property, estates, or domains, you can earn twice as much as you otherwise would from their harvests, or be supported by your lands at a lifestyle one level higher than you otherwise would be.", - "type": "adventures_and_advancement", - "parent": "farmer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 277, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Constitution and one other ability score.", - "type": "ability_score", - "parent": "outlander" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 278, - "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either Athletics or Intimidation.", - "type": "skill_proficiency", - "parent": "outlander" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 279, - "fields": { - "name": "Equipment", - "desc": "Traveler's clothes, waterskin, healer's kit, 7 days rations.", - "type": "equipment", - "parent": "outlander" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 280, - "fields": { - "name": "Trader", - "desc": "If you're in or near the wilderness and have a trading relationship with a tribe, settlement, or other nearby group, you can maintain a moderate lifestyle for yourself and your companions by trading the products of your hunting and gathering.", - "type": "feature", - "parent": "outlander" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 281, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Outlander Connections\r\n1. A tribal chief who owes a favor.\r\n2. The chief of a band of marauders who has a grudge against you.\r\n3. A hag to whom you owe a favor.\r\n4. An alchemist or wizard who frequently gives you requests for rare herbs or trophies.\r\n5. A unicorn you’ve glimpsed but never been able to approach.\r\n6. Another outlander: your former best friend who is now a bitter rival.\r\n7. A wise oracle who knows most of what happens in the wilderness and will reveal it for a price.\r\n8. A zany prospector who knows the wild lands almost as well as you.\r\n9. A circus or arena owner who will pay for live animals not yet in their menagerie.\r\n10. A highly civilized poet or painter who has paid you to guide them to wild and inspiring locales.\r\n\r\n### Outlander Mementos\r\n1. A trophy from the hunt of a mighty beast, such as an phase monster-horn helmet.\r\n2. A trophy from a battle against a fierce monster, such as a still-wriggling troll finger.\r\n3. A stone from a holy druidic shrine.\r\n4. Tools appropriate to your home terrain, such as pitons or snowshoes.\r\n5. Hand-crafted leather armor, hide armor, or clothing.\r\n6. The handaxe you made yourself.\r\n7. A gift from a dryad or faun.\r\n8. Trading goods worth 30 gold, such as furs or rare herbs.\r\n9. A tiny whistle given to you by a sprite.\r\n10. An incomplete map.", - "type": "connection_and_memento", - "parent": "outlander" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 282, - "fields": { - "name": "Adventures And Advancement", - "desc": "During your travels, wilderness dwellers may come to you for help battling monsters and other dangers. If you succeed in several such adventures, you may earn the freely given aid of up to 8 **warriors**.", - "type": "adventures_and_advancement", - "parent": "outlander" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 286, - "fields": { - "name": "Supply and Demand", - "desc": "When you buy a trade good and sell it elsewhere to a community in need of that good, you gain a 10% bonus to its sale price for every 100 miles between the buy and sell location (maximum of 50%).", - "type": "feature", - "parent": "trader" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 289, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Intelligence and one other ability score.", - "type": "ability_score", - "parent": "artisan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 290, - "fields": { - "name": "Skill Proficiencies", - "desc": "Persuasion, and either Insight or History.", - "type": "skill_proficiency", - "parent": "artisan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 291, - "fields": { - "name": "Equipment", - "desc": "One set of artisan's tools, traveler's clothes.", - "type": "equipment", - "parent": "artisan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 292, - "fields": { - "name": "Trade Mark", - "desc": "When in a city or town, you have access to a fully-stocked workshop with everything you need to ply your trade. Furthermore, you can expect to earn full price when you sell items you have crafted (though there is no guarantee of a buyer).", - "type": "feature", - "parent": "artisan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 294, - "fields": { - "name": "Adventures And Advancement", - "desc": "If you participate in the creation of a magic item (a “master work”), you will gain the services of up to 8 commoner apprentices with the appropriate tool proficiency.", - "type": "adventures_and_advancement", - "parent": "artisan" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 295, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Charisma and one other ability score.", - "type": "ability_score", - "parent": "entertainer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 296, - "fields": { - "name": "Skill Proficiencies", - "desc": "Performance, and either Acrobatics, Culture, or Persuasion.", - "type": "skill_proficiency", - "parent": "entertainer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 297, - "fields": { - "name": "Equipment", - "desc": "Lute or other musical instrument, costume.", - "type": "equipment", - "parent": "entertainer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 298, - "fields": { - "name": "Pay the Piper", - "desc": "In any settlement in which you haven't made yourself unpopular, your performances can earn enough money to support yourself and your companions: the bigger the settlement, the higher your standard of living, up to a moderate lifestyle in a city.", - "type": "feature", - "parent": "entertainer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 299, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Entertainer Connections\r\n1. Your rival, an equally talented performer.\r\n2. The cruel ringleader of the sinister circus where you learned your trade.\r\n3. A noble who wants vengeance for the song you wrote about him.\r\n4. The actor who says that there’s always room in their troupe for you and your companions.\r\n5. The noble who owes you a favor for penning the love poems that won their spouse.\r\n6. Your former partner, a slumming noble with a good ear and bad judgment.\r\n7. The rival who became successful and famous by taking credit for your best work.\r\n8. The highly-placed courtier who is always trying to further your career.\r\n9. A jilted lover who wants revenge. \r\n10. The many tavernkeepers and tailors to whom you owe surprisingly large sums.\r\n\r\n### Entertainer Mementos\r\n\r\n1. Your unfinished masterpiece—if you can find inspiration to overcome your writer's block.\r\n2. Fine clothing suitable for a noble and some reasonably convincing costume jewelry.\r\n3. A love letter from a rich admirer.\r\n4. A broken instrument of masterwork quality—if repaired, what music you could make on it!\r\n5. A stack of slim poetry volumes you just can't sell.\r\n6. Jingling jester's motley.\r\n7. A disguise kit.\r\n8. Water-squirting wands, knotted scarves, trick handcuffs, and other tools of a bizarre new entertainment trend: a nonmagical magic show.\r\n9. A stage dagger.\r\n10. A letter of recommendation from your mentor to a noble or royal court.", - "type": "connection_and_memento", - "parent": "entertainer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 300, - "fields": { - "name": "Adventures And Advancement", - "desc": "Some of your admirers will pay you to plead a cause or smear an enemy. If you succeed at several such quests, your fame will grow. You will be welcome at royal courts, which will support you at a rich lifestyle.", - "type": "adventures_and_advancement", - "parent": "entertainer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 301, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Constitution and one other ability score.", - "type": "ability_score", - "parent": "guildmember" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 302, - "fields": { - "name": "Skill Proficiencies", - "desc": "Two of your choice.", - "type": "skill_proficiency", - "parent": "guildmember" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 303, - "fields": { - "name": "Equipment", - "desc": "One set of artisan's tools or one instrument, traveler's clothes, guild badge.", - "type": "equipment", - "parent": "guildmember" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 304, - "fields": { - "name": "Guild Business", - "desc": "While in a city or town, you can maintain a moderate lifestyle by plying your trade. Furthermore, the guild occasionally informs you of jobs that need doing. Completing such a job might require performing a downtime activity, or it might require a full adventure. The guild provides a modest reward if you're successful.", - "type": "feature", - "parent": "guildmember" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 305, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guildmember Connections\r\n\r\n1. Your guild master who occasionally has secret missions for groups which can keep their mouths shut.\r\n2. Members of a rival guild who might or might not stoop to violence.\r\n3. The master who, recognizing your talent, risked all to teach you dangerous guild secrets.\r\n4. The agent of a rival guild who is trying to steal secrets.\r\n5. The jealous teacher who took credit for your work and got you expelled from the guild.\r\n6. The guild quartermaster who stocks goods of dubious legality.\r\n7. The friendly guild officer who always saves you the most interesting assignments.\r\n8. The rivals who always compete for the same guild jobs.\r\n9. The noble who owes you big.\r\n10. Your guild master’s ambitious second-in-command who is recruiting allies for a coup.\r\n\r\n### Guildmember Mementos\r\n\r\n1. *Artisans Guild:* An incomplete masterpiece which your mentor never finished.\r\n2. *Entertainers Guild:* An incomplete masterpiece which your mentor never finished.\r\n3. *Explorers Guild:* A roll of incomplete maps each with a reward for completion.\r\n4. *Laborers Guild:* A badge entitling you to a free round of drinks at most inns and taverns.\r\n5. *Adventurers Guild:* A request from a circus to obtain live exotic animals.\r\n6. *Bounty Hunters Guild:* A set of manacles and a bounty on a fugitive who has already eluded you once.\r\n7. *Mages Guild:* The name of a wizard who has created a rare version of a spell that the guild covets.\r\n8. *Monster Hunters Guild:* A bounty, with no time limit, on a monster far beyond your capability.\r\n9. *Archaeologists Guild:* A map marking the entrance of a distant dungeon.\r\n10. *Thieves Guild:* Blueprints of a bank, casino, mint, or other rich locale.", - "type": "connection_and_memento", - "parent": "guildmember" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 306, - "fields": { - "name": "Adventures And Advancement", - "desc": "Once you have completed several quests or endeavors advancing guild business, you may be promoted to guild officer. You gain access to more lucrative contracts. In addition, the guild supports you at a moderate lifestyle without you having to work.", - "type": "adventures_and_advancement", - "parent": "guildmember" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 307, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Intelligence and one other ability score.", - "type": "ability_score", - "parent": "sage" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 308, - "fields": { - "name": "Skill Proficiencies", - "desc": "History, and either Arcana, Culture, Engineering, or Religion.", - "type": "skill_proficiency", - "parent": "sage" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 309, - "fields": { - "name": "Equipment", - "desc": "Bottle of ink, pen, 50 sheets of parchment, common clothes.", - "type": "equipment", - "parent": "sage" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 310, - "fields": { - "name": "Library Privileges", - "desc": "As a fellow or friend of several universities you have visiting access to the great libraries, most of which are off-limits to the general public. With enough time spent in a library, you can uncover most of the answers you seek (any question answerable with a DC 20 Arcana, Culture, Engineering, History, Nature, or Religion check).", - "type": "feature", - "parent": "sage" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 311, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sage Connections\r\n\r\n1. Your rival who always seems to be one step ahead of you in the research race.\r\n2. The college dean who banished you for conduct unbefitting a research fellow.\r\n3. A former student of yours who has become a dangerous wizard.\r\n4. The professor who took credit for your research.\r\n5. The rival sage whose cruel nickname for you has made you a laughingstock.\r\n6. The alchemist who will pay for bizarre monster trophies and other ingredients—no questions asked.\r\n7. The peer with a competing cosmological theory that causes endless friendly bickering.\r\n8. The noble who recognized your intelligence at a young age and sponsored your entrance into academia.\r\n9. A talented apprentice who ran away after mastering magical power but not the theoretical foundation to control it.\r\n10. The invading general who burned the library that was once your home.\r\n\r\n### Sage Mementos\r\n\r\n1. A letter from a colleague asking for research help.\r\n2. Your incomplete manuscript.\r\n3. An ancient scroll in a language that no magic can decipher.\r\n4. A copy of your highly unorthodox theoretical work that got you in so much trouble.\r\n5. A list of the forbidden books that may answer your equally forbidden question.\r\n6. A formula for a legendary magic item for which you have no ingredients.\r\n7. An ancient manuscript of a famous literary work believed to have been lost; only you believe that it is genuine.\r\n8. Your mentor's incomplete bestiary, encyclopedia, or other work that you vowed to complete.\r\n9. Your prize possession: a magic quill pen that takes dictation.\r\n10. The name of a book you need for your research that seems to be missing from every library you've visited.", - "type": "connection_and_memento", - "parent": "sage" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 312, - "fields": { - "name": "Adventures And Advancement", - "desc": "When you visit libraries and universities you tend to be asked for help in your role as a comparatively rough-and-tumble adventurer. After fetching a few bits of esoteric knowledge and settling a few academic disputes, you may be granted access to the restricted areas of the library (which contain darker secrets and deeper mysteries, such as those answerable with a DC 25 Arcana, Culture, Engineering, History, Nature, or Religion check).", - "type": "adventures_and_advancement", - "parent": "sage" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 313, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Constitution and one other ability score.", - "type": "ability_score", - "parent": "folk-hero" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 314, - "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either Animal Handling or Nature.", - "type": "skill_proficiency", - "parent": "folk-hero" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 315, - "fields": { - "name": "Equipment", - "desc": "Any artisan's tools except alchemist's supplies, common clothes.", - "type": "equipment", - "parent": "folk-hero" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 316, - "fields": { - "name": "Local Fame", - "desc": "Unless you conceal your identity, you're universally recognized and admired near the site of your exploits. You and your companions are treated to a moderate lifestyle in any settlement within 100 miles of your Prestige Center.", - "type": "feature", - "parent": "folk-hero" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 317, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Folk Hero Connections\r\n\r\n1. The bard whose song made you legendary and who wants a sequel.\r\n2. Your friend, a traveling merchant whose caravan spreads your fame.\r\n3. A deadly enemy: the heir of the oppressive noble you killed.\r\n4. A deadly enemy: the mother of the monster you killed.\r\n5. A deadly enemy: the leader of the bandits you defeated.\r\n6. A deadly enemy: the tyrant you robbed.\r\n7. A kid who wants to follow your footsteps into danger.\r\n8. The jealous rival who wants to best your monster-slaying prowess, daring deeds, prize pie recipe, or whatever else made your famous.\r\n9. A secret admirer: the heir or heiress of the oppressive noble you defeated.\r\n10. The retired adventurer who trained you and is now in a bit of trouble.\r\n\r\n### Folk Hero Mementos\r\n\r\n1. The mask you used to conceal your identity while fighting oppression (you are only recognized as a folk hero while wearing the mask).\r\n2. A necklace bearing a horn, tooth, or claw from the monster you defeated.\r\n3. A ring given to you by the dead relative whose death you avenged.\r\n4. The weapon you wrestled from the leader of the raid on your village.\r\n5. The trophy, wrestling belt, silver pie plate, or other prize marking you as the county champion.\r\n6. The famous scar you earned in your struggle against your foe.\r\n7. The signature weapon which provides you with your nickname.\r\n8. The injury or physical difference by which your admirers and foes recognize you.\r\n9. The signal whistle or instrument which you used to summon allies and spook enemies.\r\n10. Copies of the ballads and poems written in your honor.", - "type": "connection_and_memento", - "parent": "folk-hero" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 318, - "fields": { - "name": "Adventures And Advancement", - "desc": "Common folk come to you with all sorts of problems. If you fought an oppressive regime, they bring you tales of injustice. If you fought a monster, they seek you out with monster problems. If you solve many such predicaments, you become universally famous, gaining the benefits of your Local Fame feature in every settled land.", - "type": "adventures_and_advancement", - "parent": "folk-hero" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 325, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Charisma and one other ability score.", - "type": "ability_score", - "parent": "gambler" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 326, - "fields": { - "name": "Skill Proficiencies", - "desc": "Deception, and either Insight or Sleight of Hand.", - "type": "skill_proficiency", - "parent": "gambler" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 327, - "fields": { - "name": "Equipment", - "desc": "Fine clothes, dice set, playing card set.", - "type": "equipment", - "parent": "gambler" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 328, - "fields": { - "name": "Lady Luck", - "desc": "Each week you may attempt a “lucky throw” to support yourself by gambling. Roll a d6 to determine the lifestyle you can afford with your week's winnings (1–2: poor, 3–5: moderate, 6: rich).", - "type": "feature", - "parent": "gambler" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 329, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Gambler Connections\r\n1. The mentor you have now surpassed.\r\n2. The duelist who will never forgive you for fleecing them.\r\n3. The legendary gambler you aspire to beat.\r\n4. The friendly rival who always keeps you on your toes.\r\n5. The noble who publicly accused you of cheating.\r\n6. An ink-stained academic who wants you to test a risky theory about how to beat the house.\r\n7. The gang leader who would rather kill you than pay up.\r\n8. The kid who strives to emulate you. \r\n9. The cardsharp rival who cheats to win.\r\n10. The rival who won something from you that you want back.\r\n\r\n### Gambler Mementos\r\n\r\n1. Gambling debts owed you by someone who's gone missing.\r\n2. Your lucky coin that you've always won back after gambling it away.\r\n3. The deeds to a monster-infested copper mine, a castle on another plane of existence, and several other valueless properties.\r\n4. A pawn shop ticket for a valuable item—if you can gather enough money to redeem it.\r\n5. The hard-to-sell heirloom that someone really wants back.\r\n6. Loaded dice or marked cards. They grant advantage on gambling checks when used, but can be discovered when carefully examined by someone with the appropriate tool proficiency (dice or cards).\r\n7. An invitation to an annual high-stakes game to which you can't even afford the ante.\r\n8. A two-faced coin.\r\n9. A torn half of a card—a long-lost relative is said to hold the other half.\r\n10. An ugly trinket that its former owner claimed had hidden magical powers.", - "type": "connection_and_memento", - "parent": "gambler" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 330, - "fields": { - "name": "Adventures And Advancement", - "desc": "Once you've had more than your fair share of lucky throws, you attract the attention of richer opponents. You add +1 to all your lucky throws. Additionally, you and your friends may be invited to exclusive games with more at stake than money.", - "type": "adventures_and_advancement", - "parent": "gambler" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 331, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Dexterity and one other ability score.", - "type": "ability_score", - "parent": "marauder" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 332, - "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either Intimidation or Stealth.", - "type": "skill_proficiency", - "parent": "marauder" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 333, - "fields": { - "name": "Equipment", - "desc": "Traveler's clothes, signal whistle, tent (one person).", - "type": "equipment", - "parent": "marauder" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 334, - "fields": { - "name": "Secret Ways", - "desc": "When you navigate while traveling, pursuers have disadvantage on checks made to track your group. Additionally, you can travel stealthily at a normal pace.", - "type": "feature", - "parent": "marauder" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 335, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Marauder Connections\r\n1. Your nemesis: a naval captain or captain of the guard who thwarted you on several occasions.\r\n2. Your mentor: a charismatic pirate captain.\r\n3. The stylish highway robber who taught you the trade.\r\n4. The local noble who pursues you obsessively.\r\n5. The three outlaws who hold the other three pieces of your treasure map.\r\n6. The marauder chief who betrayed you and the rest of the gang in exchange for freedom.\r\n7. The child you became an outlaw to protect.\r\n8. The cleric who converted you to a life of law and faith.\r\n9. The scholarly old bandit whose inventions gave you an edge against the pursuing authorities.\r\n10. Your best friend—who is serving a life sentence for your shared crime.\r\n\r\n### Marauder Mementos\r\n1. The eerie mask by which your victims know you.\r\n2. The one item that you wish you hadn't stolen.\r\n3. A signet ring marking you as heir to a seized estate.\r\n4. A locket containing a picture of the one who betrayed you.\r\n5. A broken compass.\r\n6. A love token from the young heir to a fortune.\r\n7. Half of a torn officer's insignia.\r\n8. The hunter's horn which members of your band use to call allies.\r\n9. A wanted poster bearing your face.\r\n10. Your unfinished thesis from your previous life as an honest scholar.", - "type": "connection_and_memento", - "parent": "marauder" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 336, - "fields": { - "name": "Adventures And Advancement", - "desc": "Allies and informants occasionally give you tips about the whereabouts of poorly-guarded loot. After a few such scores, you may gain the free service of up to 8", - "type": "adventures_and_advancement", - "parent": "marauder" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 337, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Wisdom and one other ability score.", - "type": "ability_score", - "parent": "hermit" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 338, - "fields": { - "name": "Skill Proficiencies", - "desc": "Religion, and either Medicine or Survival.", - "type": "skill_proficiency", - "parent": "hermit" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 339, - "fields": { - "name": "Equipment", - "desc": "Healer's satchel, herbalism kit, common clothes, 7 days rations, and a prayer book, prayer wheel, or prayer beads.", - "type": "equipment", - "parent": "hermit" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 340, - "fields": { - "name": "Inner Voice", - "desc": "You occasionally hear a voice—perhaps your conscience, perhaps a higher power—which you have come to trust. It told you to go into seclusion, and then it advised you when to rejoin the world. You think it is leading you to your destiny (consult with your Narrator about this feature.)", - "type": "feature", - "parent": "hermit" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 342, - "fields": { - "name": "Adventures And Advancement", - "desc": "Your inner voice may occasionally prompt you to accept certain adventure opportunities or to avoid certain actions. You are free to obey or disobey this voice. Eventually however it may lead you to a special revelation, adventure, or treasure.", - "type": "adventures_and_advancement", - "parent": "hermit" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 343, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Constitution and one other ability score.", - "type": "ability_score", - "parent": "sailor" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 344, - "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, and either Acrobatics or Perception.", - "type": "skill_proficiency", - "parent": "sailor" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 345, - "fields": { - "name": "Equipment", - "desc": "Common clothes, navigator's tools, 50 feet of rope.", - "type": "equipment", - "parent": "sailor" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 346, - "fields": { - "name": "Sea Salt", - "desc": "Your nautical jargon and rolling gait mark you unmistakably as a mariner. You can easily enter into shop talk with any sailors that are not hostile to you, learning nautical gossip and ships' comings and goings. You also recognize most large ships by sight and by name, and can make a History orCulturecheck to recall their most recent captain and allegiance.", - "type": "feature", - "parent": "sailor" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 347, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle's tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it.\r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction's signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol.\r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle’s tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it. \r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction’s signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol. \r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.", - "type": "connection_and_memento", - "parent": "sailor" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 348, - "fields": { - "name": "Adventures And Advancement", - "desc": "You and your companions will be able to take passage for free on nearly any commercial ship in exchange for occasional ship duties when all hands are called. In addition, after you have a few naval exploits under your belt your fame makes sailors eager to sail under you. You can hire a ship's crew at half the usual price.", - "type": "adventures_and_advancement", - "parent": "sailor" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 349, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Wisdom and one other ability score.", - "type": "ability_score", - "parent": "exile" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 350, - "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either History or Performance.", - "type": "skill_proficiency", - "parent": "exile" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 351, - "fields": { - "name": "Equipment", - "desc": "Traveler's clothes, 10 days rations.", - "type": "equipment", - "parent": "exile" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 352, - "fields": { - "name": "Fellow Traveler", - "desc": "You gain an expertise die on Persuasion checks against others who are away from their land of birth.", - "type": "feature", - "parent": "exile" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 353, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Exile Connections\r\n1. The companions who shared your exile.\r\n2. The kindly local who taught you Common.\r\n3. The shopkeeper or innkeeper who took you in and gave you work.\r\n4. The hunters from your native land who pursue you.\r\n5. The distant ruler who banished you until you redeem yourself.\r\n6. The community of fellow exiles who have banded together in a city neighborhood.\r\n7. The acting or carnival troupe which took you in.\r\n8. The suspicious authorities who were convinced you were a spy.\r\n9. Your first friend after your exile: a grizzled adventurer who traveled with you.\r\n10. A well-connected and unscrupulous celebrity who hails from your homeland.\r\n\r\n### Exile Mementos\r\n\r\n1. A musical instrument which was common in your homeland.\r\n2. A memorized collection of poems or sagas.\r\n3. A locket containing a picture of your betrothed from whom you are separated.\r\n4. Trade, state, or culinary secrets from your native land.\r\n5. A piece of jewelry given to you by someone you will never see again.\r\n6. An inaccurate, ancient map of the land you now live in.\r\n7. Your incomplete travel journals.\r\n8. A letter from a relative directing you to someone who might be able to help you.\r\n9. A precious cultural artifact you must protect.\r\n10. An arrow meant for the heart of your betrayer.", - "type": "connection_and_memento", - "parent": "exile" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 354, - "fields": { - "name": "Adventures And Advancement", - "desc": "You may occasionally meet others from your native land. Some may be friends, and some dire enemies; few will be indifferent to you. After a few such encounters, you may become the leader of a faction of exiles. Your followers include up to three NPCs of Challenge Rating ½ or less, such as scouts.", - "type": "adventures_and_advancement", - "parent": "exile" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 358, - "fields": { - "name": "Guttersnipe", - "desc": "When you're in a town or city, you can provide a poor lifestyle for yourself and your companions. Also, you know how to get anywhere in town without being spotted by gangs, gossips, or guard patrols.", - "type": "feature", - "parent": "urchin" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 361, - "fields": { - "name": "Connection and Memento", - "desc": "### Urchin Connections\r\n\r\n1. The disreputable thief who taught you thieving skills.\r\n2. The saintly orphanage matron who’s so proud of how you’ve grown.\r\n3. The miserly and cruel orphanage administrator who rounds up urchins and runaways.\r\n4. The drunken thief who shared with you what little they could steal. \r\n5. The fellow urchin who has some power to make “bad stuff” happen to their enemies.\r\n6. The thieves’ guild contact who will pay well for small folk to wriggle through a window or chimney to unlock a front door.\r\n7. The philanthropist (or charlatan?) who took you in, dressed you properly, and tried to teach you upper-class manners.\r\n8. The spymaster or detective who sent you on investigation missions.\r\n9. The noble whose horse trampled you or a friend.\r\n10. The rich family you ran away from.\r\n\r\n### Urchin Mementos\r\n\r\n1. A locket containing pictures of your parents.\r\n2. A set of (stolen?) fine clothes.\r\n3. A small trained animal, such as a mouse, parrot, or monkey.\r\n4. A map of the sewers.\r\n5. The key or signet ring that was around your neck when you were discovered as a foundling.\r\n6. A battered one-eyed doll.\r\n7. A portfolio of papers given to you by a fleeing, wounded courier.\r\n8. A gold tooth (not yours, and not in your mouth).\r\n9. The flowers or trinkets that you sell.\r\n10. A dangerous secret overheard while at play.", - "type": "connection_and_memento", - "parent": "urchin" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 362, - "fields": { - "name": "Tool Proficiencies", - "desc": "One vehicle.", - "type": "tool_proficiency", - "parent": "trader" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 363, - "fields": { - "name": "Tool Proficiencies", - "desc": "Disguise kit, thieves’ tools.", - "type": "tool_proficiency", - "parent": "urchin" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 364, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Strength and one other ability score.", - "type": "ability_score", - "parent": "soldier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 365, - "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, and either Animal Handling or Intimidation.", - "type": "skill_proficiency", - "parent": "soldier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 366, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of gaming set.", - "type": "tool_proficiency", - "parent": "soldier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 367, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "soldier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 368, - "fields": { - "name": "Suggested Equipment", - "desc": "Uniform, common clothes, 7 days rations.", - "type": "equipment", - "parent": "soldier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 369, - "fields": { - "name": "Military Bearing", - "desc": "Soldiers recognize their own. Off duty soldiers are usually willing to trade tales and gossip with you. On duty soldiers, while not obeying your orders, are likely to answer your questions and treat you respectfully on the off chance that you’re an unfamiliar officer who can get them in trouble.", - "type": "feature", - "parent": "soldier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 370, - "fields": { - "name": "Adventures and Advancement", - "desc": "You will occasionally run into old comrades, some of whom may need favors. If you perform a few celebrated martial deeds your old military outfit (or a new one) is likely to offer you an officer’s rank. You gain the free service of up to 8 guards. Your new commanders will occasionally give you objectives: you will be expected to act independently in order to achieve these objectives.", - "type": "adventures_and_advancement", - "parent": "soldier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 371, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Soldier Connections\r\n1. Your old commanding officer who still wants you to rejoin.\r\n2. The commander who callously sent your unit into a slaughter.\r\n3. Your shady war buddy who can get their hands on anything with no questions asked.\r\n4. Your best friend who went missing on the battlefield. \r\n5. The comrade who saved your life at the risk of their own.\r\n6. The ghost who haunts you. \r\n7. The superior officer you punched (for abusing civilians? For insulting your honor? For preventing you from looting?)\r\n8. The scary experimental war construct you accompanied on a dangerous mission.\r\n9. The golden-armored knight with ridiculously good teeth who was always giving inspiring speeches.\r\n10. The enemy officer who captured you.\r\n\r\n### Soldier Mementos\r\n1. A broken horn, tooth, or other trophy salvaged from a monster’s corpse.\r\n2. A trophy won in a battle (a tattered banner, a ceremonial sword, or similar).\r\n3. A gaming set.\r\n4. A letter from your sweetheart.\r\n5. An old wound that twinges in bad weather.\r\n6. A letter you’re supposed to deliver to a dead comrade’s family.\r\n7. A horrifying memory you can’t escape.\r\n8. A horned or plumed helmet.\r\n9. The sword you broke over your knee rather than fight for those bastards another day.\r\n10. A medal for valor.", - "type": "connection_and_memento", - "parent": "soldier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 372, - "fields": { - "name": "Tool Proficiencies", - "desc": "Navigator’s tools, water vehicles.", - "type": "tool_proficiency", - "parent": "sailor" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 373, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Strength and one other ability score.", - "type": "ability_score", - "parent": "noble" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 374, - "fields": { - "name": "Skill Proficiencies", - "desc": "Culture, History, and either Animal Handling or Persuasion.", - "type": "skill_proficiency", - "parent": "noble" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 375, - "fields": { - "name": "Tool Proficiencies", - "desc": "One gaming set.", - "type": "tool_proficiency", - "parent": "noble" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 376, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "noble" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 377, - "fields": { - "name": "Equipment", - "desc": "Fine clothes, signet ring, writ detailing your family tree.", - "type": "equipment", - "parent": "noble" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 378, - "fields": { - "name": "High Society", - "desc": "You know of—or personally know—most of the noble families for hundreds of miles. In most settled areas you (and possibly your companions, if well-behaved) can find a noble host who will feed you, shelter you, and offer you a rich lifestyle.", - "type": "feature", - "parent": "noble" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 379, - "fields": { - "name": "Adventures and Advancement", - "desc": "Your family may ask you for one or two little favors: convince this relative to marry a family-approved spouse, slay that family foe in a duel, serve under a liege lord in a battle. If you advance your family’s fortunes, you may earn a knighthood along with the free service of a retinue of servants and up to 8 **guards**.", - "type": "adventures_and_advancement", - "parent": "noble" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 380, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Noble Connections\r\n1. Your perfect elder sibling to whom you never seem to measure up.\r\n2. The treacherous noble who slaughtered or scattered your family and is now living in your ancestral home.\r\n3. Your family servant, a retired adventurer who taught you more about battle than any fancy dueling master.\r\n4. The foppish friend you carouse with.\r\n5. The common-born sweetheart that your family forbid you from seeing again.\r\n6. The fugitive head of your family whose rebellion caused your family’s lands to be seized and titles to be redistributed.\r\n7. Your foe, the heir of a rival house, with whom you have dueled twice.\r\n8. The crime boss to whom your family is in massive debt.\r\n9. The scion of an allied family to whom you were betrothed from birth.\r\n10. The eccentric knight for whom you trained as a squire or page.\r\n\r\n### Noble Mementos\r\n1. A shield or tabard bearing your coat of arms.\r\n2. A keepsake or love letter from a high-born sweetheart.\r\n3. An heirloom weapon—though it’s not magical, it has a name and was used for mighty deeds.\r\n4. A letter of recommendation to a royal court.\r\n5. Perfumed handkerchiefs suitable for blocking the smell of commoners.\r\n6. An extremely fashionable and excessively large hat.\r\n7. A visible scar earned in battle or in a duel.\r\n8. A set of common clothes and a secret commoner identity.\r\n9. IOUs of dubious value that were earned in games of chance against other nobles.\r\n10. A letter from a friend begging for help.", - "type": "connection_and_memento", - "parent": "noble" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 381, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of artisan’s tools or vehicle.", - "type": "tool_proficiency", - "parent": "marauder" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 382, - "fields": { - "name": "Tool Proficiencies", - "desc": "Herbalism kit.", - "type": "tool_proficiency", - "parent": "hermit" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 383, - "fields": { - "name": "Tool Proficiencies", - "desc": "Either one type of artisan’s tools, musical instrument, or vehicle.", - "type": "tool_proficiency", - "parent": "guildmember" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 384, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Strength and one other ability score.", - "type": "ability_score", - "parent": "guard" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 385, - "fields": { - "name": "Skill Proficiencies", - "desc": "Intimidation, and either Athletics or Investigation.", - "type": "skill_proficiency", - "parent": "guard" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 386, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "guard" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 387, - "fields": { - "name": "Equipment", - "desc": "Common clothes, halberd, uniform.", - "type": "equipment", - "parent": "guard" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 388, - "fields": { - "name": "Natural Authority", - "desc": "Commoners and civilians sometimes assume you are part of a local constabulary force and defer to you.", - "type": "feature", - "parent": "guard" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 389, - "fields": { - "name": "Adventures and Advancement", - "desc": "When you visit the city or countryside you once patrolled you’re sure to get embroiled in the same politics that drove you out. Should you stick around righting wrongs, you might accidentally find yourself in a position of responsibility.", - "type": "adventures_and_advancement", - "parent": "guard" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 390, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guard Connections\r\n1. The corrupt guard captain who framed you.\r\n2. The by-the-book guard captain who found you in violation of a regulation.\r\n3. The mighty guard captain who taught you all you know. \r\n4. The informant who tipped you off about criminal activity.\r\n5. The noble or merchant you protected.\r\n6. The comrade or superior officer you admired.\r\n7. The villain who kidnapped the person you were charged to protect.\r\n8. Your betrayer, the one person you didn’t think to mistrust.\r\n9. The noble or merchant who had everyone in their pocket.\r\n10. The diviner wizard who could usually provide you with the missing piece of a puzzle.\r\n\r\n### Guard Mementos\r\n1. Your badge of office, a symbol of an ideal few could live up to.\r\n2. Your badge of office, a symbol of a corrupt system you could no longer stomach.\r\n3. The arrow-damaged prayer book or playing card deck that saved your life.\r\n4. The whiskey flask that stood you in good stead on many cold patrols. \r\n5. Notes about a series of disappearances you would have liked to put a stop to. \r\n6. A broken sword, torn insignia, or other symbol of your disgrace and banishment.\r\n7. A tattoo or insignia marking you as part of an organization of which you are the last member.\r\n8. The fellow guard’s last words which you will never forget. \r\n9. A letter you were asked to deliver. \r\n10. A bloodstained duty roster.", - "type": "connection_and_memento", - "parent": "guard" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 391, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of artisan’s tools, one vehicle.", - "type": "tool_proficiency", - "parent": "folk-hero" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 392, - "fields": { - "name": "Tool Proficiencies", - "desc": "Land vehicles.", - "type": "tool_proficiency", - "parent": "farmer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 393, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Intelligence and one other ability score.", - "type": "ability_score", - "parent": "cultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 394, - "fields": { - "name": "Skill Proficiencies", - "desc": "Religion, and either Arcana or Deception.", - "type": "skill_proficiency", - "parent": "cultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 395, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "cultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 396, - "fields": { - "name": "Equipment", - "desc": "Holy symbol (amulet or reliquary), common clothes, robes, 5 torches.", - "type": "equipment", - "parent": "cultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 397, - "fields": { - "name": "Forbidden Lore", - "desc": "When you fail an Arcana or Religion check, you know what being or book holds the knowledge you seek finding the book or paying the being’s price is another matter.", - "type": "feature", - "parent": "cultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 398, - "fields": { - "name": "Adventures and Advancement", - "desc": "Members of your former order may be hunting you for reenlistment, punishment, or both.\r\nAdditionally, your cult still seeks to open a portal, effect an apotheosis, or otherwise cause catastrophe. Eventually you may have to face the leader of your cult and perhaps even the being you once worshiped.", - "type": "adventures_and_advancement", - "parent": "cultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 399, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cultist Connections\r\n1. The cult leader whom you left for dead.\r\n2. The cleric or herald who showed you the error of your ways.\r\n3. The voice which still speaks to you in dreams.\r\n4. The charismatic cultist whose honeyed words and promises first tempted you.\r\n5. The friend or loved one still in the cult.\r\n6. Your former best friend who now hunts you for your desertion of the cult.\r\n7. The relentless inquisitor who hunts you for your past heresy.\r\n8. The demon which you and your compatriots accidentally unleashed.\r\n9. The self-proclaimed deity who barely escaped from their angry disciples after their magic tricks and fakeries were revealed.\r\n10. The masked cult leader whose identity you never learned, but whose cruel voice you would recognize anywhere.\r\n\r\n### Cultist Mementos\r\n1. The sinister tattoo which occasionally speaks to you.\r\n2. The cursed holy symbol which appears in your possession each morning no matter how you try to rid yourself of it.\r\n3. The scar on your palm which aches with pain when you disobey the will of your former master.\r\n4. The curved dagger that carries a secret enchantment able only to destroy the being you once worshiped.\r\n5. The amulet which is said to grant command of a powerful construct. \r\n6. A forbidden tome which your cult would kill to retrieve. \r\n7. An incriminating letter to your cult leader from their master (a noted noble or politician).\r\n8. A compass which points to some distant location or object.\r\n9. A talisman which is said to open a gateway to the realm of a forgotten god.\r\n10. The birthmark which distinguishes you as the chosen vessel of a reborn god.", - "type": "connection_and_memento", - "parent": "cultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 400, - "fields": { - "name": "Tool Proficiencies", - "desc": "Gaming set, thieves' tools.", - "type": "tool_proficiency", - "parent": "criminal" - } -} -] + { + "model": "api_v2.backgroundbenefit", + "pk": 24, + "fields": { + "name": "Skill Proficiencies", + "desc": "Religion, and either Insight or Persuasion.", + "type": "skill_proficiency", + "parent": "a5e-ag_acolyte" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 25, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_acolyte" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 26, + "fields": { + "name": "Equipment", + "desc": "Holy symbol (amulet or reliquary), common clothes, robe, and a prayer book, prayer wheel, or prayer beads.", + "type": "equipment", + "parent": "a5e-ag_acolyte" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 27, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Wisdom and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_acolyte" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 28, + "fields": { + "name": "Adventures and Advancement", + "desc": "In small settlements without other resources, your authority may extend to such matters as settling disputes and punishing criminals. You might also be expected to deal with local outbreaks of supernatural dangers such as fiendish possessions, cults, and the unquiet dead. \r\nIf you solve several problems brought to you by members of your faith, you may be promoted (or reinstated) within the hierarchy of your order. You gain the free service of up to 4 acolytes, and direct access to your order’s leaders.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_acolyte" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 29, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Acolyte Connections\r\n\r\n1. A beloved high priest or priestess awaiting your return to the temple once you resolve your crisis of faith.\r\n2. A former priest—exposed by you as a heretic—who swore revenge before fleeing.\r\n3. The wandering herald who rescued you as an orphan and sponsored your entry into your temple.\r\n4. The inquisitor who rooted out your heresy (or framed you) and had you banished from your temple.\r\n5. The fugitive charlatan or cult leader whom you once revered as a holy person.\r\n6. Your scandalous friend, a fellow acolyte who fled the temple in search of worldly pleasures.\r\n7. The high priest who discredited your temple and punished the others of your order.\r\n8. The wandering adventurer whose tales of glory enticed you from your temple.\r\n9. The leader of your order, a former adventurer who sends you on quests to battle your god’s enemies.\r\n10. The former leader of your order who inexplicably retired to a life of isolation and penance.\r\n\r\n### Acolyte Memento\r\n\r\n1. The timeworn holy symbol bequeathed to you by your beloved mentor on their deathbed.\r\n2. A precious holy relic secretly passed on to you in a moment of great danger.\r\n3. A prayer book which contains strange and sinister deviations from the accepted liturgy.\r\n4. A half-complete book of prophecies which seems to hint at danger for your faith—if only the other half could be found!\r\n5. A gift from a mentor: a book of complex theology which you don’t yet understand.\r\n6. Your only possession when you entered the temple as a child: a signet ring bearing a coat of arms.\r\n7. A strange candle which never burns down.\r\n8. The true name of a devil that you glimpsed while tidying up papers for a sinister visitor.\r\n9. A weapon (which seems to exhibit no magical properties) given to you with great solemnity by your mentor.\r\n10. A much-thumbed and heavily underlined prayer book given to you by the fellow acolyte you admire most.", + "type": "connection_and_memento", + "parent": "a5e-ag_acolyte" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 43, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of artisan’s tools or smith’s tools.", + "type": "tool_proficiency", + "parent": "a5e-ag_artisan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 47, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### **Artisan Connections**\r\n\r\n1. The cruel master who worked you nearly to death and now does the same to other apprentices.\r\n2. The kind master who taught you the trade.\r\n3. The powerful figure who refused to pay for your finest work.\r\n4. The jealous rival who made a fortune after stealing your secret technique.\r\n5. The corrupt rival who framed and imprisoned your mentor.\r\n6. The bandit leader who destroyed your mentor’s shop and livelihood.\r\n7. The crime boss who bankrupted your mentor.\r\n8. The shady alchemist who always needs dangerous ingredients to advance the state of your art.\r\n9. Your apprentice who went missing.\r\n10. The patron who supports your work.\r\n\r\n### **Artisan Mementos**\r\n\r\n1. *Jeweler:* A 10,000 gold commission for a ruby ring (now all you need is a ruby worth 5,000 gold).\r\n2. *Smith:* Your blacksmith's hammer (treat as a light hammer).\r\n3. *Cook:* A well-seasoned skillet (treat as a mace).\r\n4. *Alchemist:* A formula with exotic ingredients that will produce...something.\r\n5. *Leatherworker:* An exotic monster hide which could be turned into striking-looking leather armor.\r\n6. *Mason:* Your trusty sledgehammer (treat as a warhammer).\r\n7. *Potter:* Your secret technique for vivid colors which is sure to disrupt Big Pottery.\r\n8. *Weaver:* A set of fine clothes (your own work).\r\n9. *Woodcarver:* A longbow, shortbow, or crossbow (your own work).\r\n10. *Calligrapher:* Strange notes you copied from a rambling manifesto. Do they mean something?", + "type": "connection_and_memento", + "parent": "a5e-ag_artisan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 48, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Charisma and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_charlatan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 49, + "fields": { + "name": "Skill Proficiencies", + "desc": "Deception, and either Culture, Insight, or Sleight of Hand.", + "type": "skill_proficiency", + "parent": "a5e-ag_charlatan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 50, + "fields": { + "name": "Tool Proficiencies", + "desc": "Disguise kit, forgery kit.", + "type": "tool_proficiency", + "parent": "a5e-ag_charlatan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 51, + "fields": { + "name": "Suggested Equipment", + "desc": "Common clothes, disguise kit, forgery kit.", + "type": "equipment", + "parent": "a5e-ag_charlatan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 52, + "fields": { + "name": "Many Identities", + "desc": "You have a bundle of forged papers of all kinds—property deeds, identification papers, love letters, arrest warrants, and letters of recommendation—all requiring only a few signatures and flourishes to meet the current need. When you encounter a new document or letter, you can add a forged and modified copy to your bundle. If your bundle is lost, you can recreate it with a forgery kit and a day’s work.", + "type": "feature", + "parent": "a5e-ag_charlatan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 53, + "fields": { + "name": "Adventures and Advancement", + "desc": "If you pull off a long-standing impersonation or false identity with exceptional success, you may eventually legally become that person. If you’re impersonating a real person, they might be considered the impostor. You gain any property and servants associated with your identity.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_charlatan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 54, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Charlatan Connections\r\n\r\n1. A relentless pursuer: an inspector who you once made a fool of.\r\n2. A relentless pursuer: a mark you once cheated.\r\n3. A relentless pursuer: a former partner just out of jail who blames you for everything.\r\n4. A former partner now gone straight who couldn’t possibly be coaxed out of retirement.\r\n5. A respected priest or tavernkeeper who tips you off about rich potential marks.\r\n6. The elusive former partner who ratted you out and sent you to jail.\r\n7. A famous noble or politician who through sheer luck happens to bear a striking resemblance to you.\r\n8. The crook who taught you everything and just can’t stay out of trouble.\r\n9. A gullible noble who knows you by one of your former aliases, and who always seems to pop up at inconvenient times.\r\n10. A prominent noble who knows you only under your assumed name and who trusts you as their spiritual advisor, tutor, long-lost relative, or the like.\r\n\r\n### Charlatan Mementos\r\n\r\n1. A die that always comes up 6.\r\n2. A dozen brightly-colored “potions”.\r\n3. A magical staff that emits a harmless shower of sparks when vigorously thumped.\r\n4. A set of fine clothes suitable for nobility.\r\n5. A genuine document allowing its holder one free release from prison for a non-capital crime.\r\n6. A genuine deed to a valuable property that is, unfortunately, quite haunted.\r\n7. An ornate harlequin mask.\r\n8. Counterfeit gold coins or costume jewelry apparently worth 100 gold (DC 15 Investigation check to notice they’re fake).\r\n9. A sword that appears more magical than it really is (its blade is enchanted with continual flame and it is a mundane weapon).\r\n10. A nonmagical crystal ball.", + "type": "connection_and_memento", + "parent": "a5e-ag_charlatan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 187, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Charisma and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_trader" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 188, + "fields": { + "name": "Skill Proficiencies", + "desc": "Persuasion, and either Culture, Deception, or Insight.", + "type": "skill_proficiency", + "parent": "a5e-ag_trader" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 189, + "fields": { + "name": "Equipment", + "desc": "Traveler's clothes, abacus, merchant's scale.", + "type": "equipment", + "parent": "a5e-ag_trader" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 191, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Trader Connections\r\n1. The parent or relative who wants you to carry on the family business.\r\n2. The sibling who inherited the other half of the family business.\r\n3. The trading company to which you are indentured until you pay off a debt.\r\n4. The powerful merchant who will never forgive the business coup you pulled off.\r\n5. The noble whose horse trampled your poor family’s vegetable stall, injuring or killing a relative you\r\ndearly loved.\r\n6. The parent or elder sibling who squandered your family fortune.\r\n7. The business partner who cheated you.\r\n8. The customs agent who has sworn to catch you red-handed with illicit goods.\r\n9. The crime boss to whom you wouldn’t pay protection money.\r\n10. The smuggler who will pay well for certain commodities.\r\n\r\n### Trader Mementos\r\n1. The first gold piece you earned.\r\n2. Thousands of shares in a failed venture.\r\n3. A letter of introduction to a rich merchant in a distant city.\r\n4. A sample of an improved version of a common tool.\r\n5. Scars from a wound sustained when you tried to collect a debt from a vicious noble.\r\n6. A love letter from the heir of a rival trading family.\r\n7. A signet ring bearing your family crest, which is famous in the mercantile world.\r\n8. A contract binding you to a particular trading company for the next few years.\r\n9. A letter from a friend imploring you to invest in an opportunity that can't miss.\r\n10. A trusted family member's travel journals that mix useful geographical knowledge with tall tales.", + "type": "connection_and_memento", + "parent": "a5e-ag_trader" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 192, + "fields": { + "name": "Adventures And Advancement", + "desc": "Because of your commercial contacts you may be offered money to lead or escort trade caravans. You'll receive a fee from each trader that reaches their destination safely.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_trader" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 245, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Hermit Connections\r\n1. The high priest who banished you to the wilderness until you repent your heresy.\r\n2. The inquisitor who hunts you even through the most solitary wildlands.\r\n3. The supernatural patron whose temptations and gifts you seek to reject.\r\n4. The inner voice you only hear in solitude.\r\n5. The mentor who trained you in silent contemplation—until they mysteriously turned their back on their own teachings.\r\n6. The villain who destroyed the shreds of your original, worldly life. \r\n7. The noble relatives who seek to return you to the life you rejected.\r\n8. The religious superior whose blasphemies scandalized you into fleeing your religious order.\r\n9. The angel who delivered you a prophecy.\r\n10. The mysterious person you glimpsed several times from a distance—unless it was a hallucination.\r\n\r\n### Hermit Mementos\r\n1. The (possibly unhinged) manifesto, encyclopedia, or theoretical work that you spent so much time on.\r\n2. The faded set of fine clothes you preserved for so many years.\r\n3. The signet ring bearing the family crest that you were ashamed of for so long.\r\n4. The book of forbidden secrets that led you to your isolated refuge.\r\n5. The beetle, mouse, or other small creature which was your only companion for so long.\r\n6. The seemingly nonmagical item that your inner voice says is important.\r\n7. The magic-defying clay tablets you spent years translating.\r\n8. The holy relic you were duty bound to protect.\r\n9. The meteor metal you found in a crater the day you first heard your inner voice.\r\n10. Your ridiculous-looking sun hat.", + "type": "connection_and_memento", + "parent": "a5e-ag_hermit" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 259, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Dexterity and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_urchin" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 260, + "fields": { + "name": "Skill Proficiencies", + "desc": "Sleight of Hand, and either Deception or Stealth.", + "type": "skill_proficiency", + "parent": "a5e-ag_urchin" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 261, + "fields": { + "name": "Equipment", + "desc": "Common clothes, disguise kit.", + "type": "equipment", + "parent": "a5e-ag_urchin" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 264, + "fields": { + "name": "Adventures And Advancement", + "desc": "Street kids are among a settlement's most vulnerable people, especially in cities with lycanthropes, vampires, and other supernatural threats. After you help out a few urchins in trouble, word gets out and you'll be able to consult the street network to gather information. If you roll lower than a 15 on an Investigation check to gather information in a city or town, your roll is treated as a 15.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_urchin" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 265, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Dexterity and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_criminal" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 266, + "fields": { + "name": "Skill Proficiencies", + "desc": "Stealth, and either Deception or Intimidation.", + "type": "skill_proficiency", + "parent": "a5e-ag_criminal" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 267, + "fields": { + "name": "Equipment", + "desc": "Common clothes, dark cloak, thieves' tools.", + "type": "equipment", + "parent": "a5e-ag_criminal" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 268, + "fields": { + "name": "Thieves' Cant", + "desc": "You know thieves' cant: a set of slang, hand signals, and code terms used by professional criminals. A creature that knows thieves' cant can hide a short message within a seemingly innocent statement. A listener who knows thieves' cant understands the message.", + "type": "feature", + "parent": "a5e-ag_criminal" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 269, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Criminal Connections\r\n\r\n1. The master criminal who inducted you into your first gang.\r\n2. The cleric or herald who convinced you to use your skills for good (and who may be legally responsible for your continued good behavior).\r\n3. Your sibling or other relative—who also happens to be a representative of the law.\r\n4. The gang of rascals and pickpockets who once called you their leader.\r\n5. The bounty hunter who has sworn to bring you to justice.\r\n6. Your former partner who made off with all the loot after a big score.\r\n7. The masked courier who occasionally gives you jobs.\r\n8. The crime boss to whom you have sworn loyalty (or to whom you owe an enormous debt).\r\n9. The master thief who once stole something precious from you. \r\n10. The corrupt noble who ruined your once-wealthy family.\r\n\r\n### Criminal Mementos\r\n\r\n1. A golden key to which you haven't discovered the lock.\r\n2. A brand that was burned into your shoulder as punishment for a crime.\r\n3. A scar for which you have sworn revenge.\r\n4. The distinctive mask that gives you your nickname (for instance, the Black Mask or the Red Fox).\r\n5. A gold coin which reappears in your possession a week after you've gotten rid of it.\r\n6. The stolen symbol of a sinister organization; not even your fence will take it off your hands.\r\n7. Documents that incriminate a dangerous noble or politician.\r\n8. The floor plan of a palace.\r\n9. The calling cards you leave after (or before) you strike.\r\n10. A manuscript written by your mentor: *Secret Exits of the World's Most Secure Prisons*.", + "type": "connection_and_memento", + "parent": "a5e-ag_criminal" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 270, + "fields": { + "name": "Adventures And Advancement", + "desc": "If you pull off several successful jobs or heists, you may be promoted (or reinstated) as a leader in your gang. You may gain the free service of up to 8 **bandits** at any time.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_criminal" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 271, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Wisdom and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_farmer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 272, + "fields": { + "name": "Skill Proficiencies", + "desc": "Nature, and either Animal Handling or Survival.", + "type": "skill_proficiency", + "parent": "a5e-ag_farmer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 273, + "fields": { + "name": "Equipment", + "desc": "Common clothes, shovel, mule with saddlebags, 5 Supply (rations).", + "type": "equipment", + "parent": "a5e-ag_farmer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 274, + "fields": { + "name": "Bit and Bridle", + "desc": "You know how to stow and transport food. You and one animal under your care can each carry additional Supply equal to your proficiency bonus.", + "type": "feature", + "parent": "a5e-ag_farmer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 275, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Farmer Connections\r\n\r\n1. The landowner who foreclosed on your family land.\r\n2. The thugs who burned your village.\r\n3. The parents who wait for your return.\r\n4. The strange witch to whom your family owes a debt.\r\n5. The retired adventurer who trained you.\r\n6. The druid who—according to the villagers—laid a drought curse on your land.\r\n7. The village bully who threatened to kill you if you ever returned.\r\n8. The evil wizard who will stop at nothing to take your family heirloom.\r\n9. Your elder sibling who left searching for adventure before you did.\r\n10. The dragon whose foul reek has spoiled your countryside.\r\n\r\n### Farmer Mementos\r\n\r\n1. A strange item you dug up in a field: a key, a lump of unmeltable metal, a glass dagger.\r\n2. The bag of beans your mother warned you not to plant.\r\n3. The shovel, pickaxe, pitchfork, or other tool you used for labor. For you it's a one-handed simple melee weapon that deals 1d6 piercing, slashing, or bludgeoning damage.\r\n4. A debt you must pay.\r\n5. A **mastiff**.\r\n6. Your trusty fishing pole.\r\n7. A corncob pipe.\r\n8. A dried flower from your family garden.\r\n9. Half of a locket given to you by a missing sweetheart.\r\n10. A family weapon said to have magic powers, though it exhibits none at the moment.", + "type": "connection_and_memento", + "parent": "a5e-ag_farmer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 276, + "fields": { + "name": "Adventures And Advancement", + "desc": "You left the farm for a reason but you still have an eye for land. If you acquire farming property, estates, or domains, you can earn twice as much as you otherwise would from their harvests, or be supported by your lands at a lifestyle one level higher than you otherwise would be.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_farmer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 277, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Constitution and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_outlander" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 278, + "fields": { + "name": "Skill Proficiencies", + "desc": "Survival, and either Athletics or Intimidation.", + "type": "skill_proficiency", + "parent": "a5e-ag_outlander" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 279, + "fields": { + "name": "Equipment", + "desc": "Traveler's clothes, waterskin, healer's kit, 7 days rations.", + "type": "equipment", + "parent": "a5e-ag_outlander" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 280, + "fields": { + "name": "Trader", + "desc": "If you're in or near the wilderness and have a trading relationship with a tribe, settlement, or other nearby group, you can maintain a moderate lifestyle for yourself and your companions by trading the products of your hunting and gathering.", + "type": "feature", + "parent": "a5e-ag_outlander" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 281, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Outlander Connections\r\n1. A tribal chief who owes a favor.\r\n2. The chief of a band of marauders who has a grudge against you.\r\n3. A hag to whom you owe a favor.\r\n4. An alchemist or wizard who frequently gives you requests for rare herbs or trophies.\r\n5. A unicorn you’ve glimpsed but never been able to approach.\r\n6. Another outlander: your former best friend who is now a bitter rival.\r\n7. A wise oracle who knows most of what happens in the wilderness and will reveal it for a price.\r\n8. A zany prospector who knows the wild lands almost as well as you.\r\n9. A circus or arena owner who will pay for live animals not yet in their menagerie.\r\n10. A highly civilized poet or painter who has paid you to guide them to wild and inspiring locales.\r\n\r\n### Outlander Mementos\r\n1. A trophy from the hunt of a mighty beast, such as an phase monster-horn helmet.\r\n2. A trophy from a battle against a fierce monster, such as a still-wriggling troll finger.\r\n3. A stone from a holy druidic shrine.\r\n4. Tools appropriate to your home terrain, such as pitons or snowshoes.\r\n5. Hand-crafted leather armor, hide armor, or clothing.\r\n6. The handaxe you made yourself.\r\n7. A gift from a dryad or faun.\r\n8. Trading goods worth 30 gold, such as furs or rare herbs.\r\n9. A tiny whistle given to you by a sprite.\r\n10. An incomplete map.", + "type": "connection_and_memento", + "parent": "a5e-ag_outlander" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 282, + "fields": { + "name": "Adventures And Advancement", + "desc": "During your travels, wilderness dwellers may come to you for help battling monsters and other dangers. If you succeed in several such adventures, you may earn the freely given aid of up to 8 **warriors**.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_outlander" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 286, + "fields": { + "name": "Supply and Demand", + "desc": "When you buy a trade good and sell it elsewhere to a community in need of that good, you gain a 10% bonus to its sale price for every 100 miles between the buy and sell location (maximum of 50%).", + "type": "feature", + "parent": "a5e-ag_trader" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 289, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Intelligence and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_artisan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 290, + "fields": { + "name": "Skill Proficiencies", + "desc": "Persuasion, and either Insight or History.", + "type": "skill_proficiency", + "parent": "a5e-ag_artisan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 291, + "fields": { + "name": "Equipment", + "desc": "One set of artisan's tools, traveler's clothes.", + "type": "equipment", + "parent": "a5e-ag_artisan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 292, + "fields": { + "name": "Trade Mark", + "desc": "When in a city or town, you have access to a fully-stocked workshop with everything you need to ply your trade. Furthermore, you can expect to earn full price when you sell items you have crafted (though there is no guarantee of a buyer).", + "type": "feature", + "parent": "a5e-ag_artisan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 294, + "fields": { + "name": "Adventures And Advancement", + "desc": "If you participate in the creation of a magic item (a “master work”), you will gain the services of up to 8 commoner apprentices with the appropriate tool proficiency.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_artisan" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 295, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Charisma and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_entertainer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 296, + "fields": { + "name": "Skill Proficiencies", + "desc": "Performance, and either Acrobatics, Culture, or Persuasion.", + "type": "skill_proficiency", + "parent": "a5e-ag_entertainer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 297, + "fields": { + "name": "Equipment", + "desc": "Lute or other musical instrument, costume.", + "type": "equipment", + "parent": "a5e-ag_entertainer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 298, + "fields": { + "name": "Pay the Piper", + "desc": "In any settlement in which you haven't made yourself unpopular, your performances can earn enough money to support yourself and your companions: the bigger the settlement, the higher your standard of living, up to a moderate lifestyle in a city.", + "type": "feature", + "parent": "a5e-ag_entertainer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 299, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Entertainer Connections\r\n1. Your rival, an equally talented performer.\r\n2. The cruel ringleader of the sinister circus where you learned your trade.\r\n3. A noble who wants vengeance for the song you wrote about him.\r\n4. The actor who says that there’s always room in their troupe for you and your companions.\r\n5. The noble who owes you a favor for penning the love poems that won their spouse.\r\n6. Your former partner, a slumming noble with a good ear and bad judgment.\r\n7. The rival who became successful and famous by taking credit for your best work.\r\n8. The highly-placed courtier who is always trying to further your career.\r\n9. A jilted lover who wants revenge. \r\n10. The many tavernkeepers and tailors to whom you owe surprisingly large sums.\r\n\r\n### Entertainer Mementos\r\n\r\n1. Your unfinished masterpiece—if you can find inspiration to overcome your writer's block.\r\n2. Fine clothing suitable for a noble and some reasonably convincing costume jewelry.\r\n3. A love letter from a rich admirer.\r\n4. A broken instrument of masterwork quality—if repaired, what music you could make on it!\r\n5. A stack of slim poetry volumes you just can't sell.\r\n6. Jingling jester's motley.\r\n7. A disguise kit.\r\n8. Water-squirting wands, knotted scarves, trick handcuffs, and other tools of a bizarre new entertainment trend: a nonmagical magic show.\r\n9. A stage dagger.\r\n10. A letter of recommendation from your mentor to a noble or royal court.", + "type": "connection_and_memento", + "parent": "a5e-ag_entertainer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 300, + "fields": { + "name": "Adventures And Advancement", + "desc": "Some of your admirers will pay you to plead a cause or smear an enemy. If you succeed at several such quests, your fame will grow. You will be welcome at royal courts, which will support you at a rich lifestyle.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_entertainer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 301, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Constitution and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_guildmember" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 302, + "fields": { + "name": "Skill Proficiencies", + "desc": "Two of your choice.", + "type": "skill_proficiency", + "parent": "a5e-ag_guildmember" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 303, + "fields": { + "name": "Equipment", + "desc": "One set of artisan's tools or one instrument, traveler's clothes, guild badge.", + "type": "equipment", + "parent": "a5e-ag_guildmember" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 304, + "fields": { + "name": "Guild Business", + "desc": "While in a city or town, you can maintain a moderate lifestyle by plying your trade. Furthermore, the guild occasionally informs you of jobs that need doing. Completing such a job might require performing a downtime activity, or it might require a full adventure. The guild provides a modest reward if you're successful.", + "type": "feature", + "parent": "a5e-ag_guildmember" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 305, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guildmember Connections\r\n\r\n1. Your guild master who occasionally has secret missions for groups which can keep their mouths shut.\r\n2. Members of a rival guild who might or might not stoop to violence.\r\n3. The master who, recognizing your talent, risked all to teach you dangerous guild secrets.\r\n4. The agent of a rival guild who is trying to steal secrets.\r\n5. The jealous teacher who took credit for your work and got you expelled from the guild.\r\n6. The guild quartermaster who stocks goods of dubious legality.\r\n7. The friendly guild officer who always saves you the most interesting assignments.\r\n8. The rivals who always compete for the same guild jobs.\r\n9. The noble who owes you big.\r\n10. Your guild master’s ambitious second-in-command who is recruiting allies for a coup.\r\n\r\n### Guildmember Mementos\r\n\r\n1. *Artisans Guild:* An incomplete masterpiece which your mentor never finished.\r\n2. *Entertainers Guild:* An incomplete masterpiece which your mentor never finished.\r\n3. *Explorers Guild:* A roll of incomplete maps each with a reward for completion.\r\n4. *Laborers Guild:* A badge entitling you to a free round of drinks at most inns and taverns.\r\n5. *Adventurers Guild:* A request from a circus to obtain live exotic animals.\r\n6. *Bounty Hunters Guild:* A set of manacles and a bounty on a fugitive who has already eluded you once.\r\n7. *Mages Guild:* The name of a wizard who has created a rare version of a spell that the guild covets.\r\n8. *Monster Hunters Guild:* A bounty, with no time limit, on a monster far beyond your capability.\r\n9. *Archaeologists Guild:* A map marking the entrance of a distant dungeon.\r\n10. *Thieves Guild:* Blueprints of a bank, casino, mint, or other rich locale.", + "type": "connection_and_memento", + "parent": "a5e-ag_guildmember" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 306, + "fields": { + "name": "Adventures And Advancement", + "desc": "Once you have completed several quests or endeavors advancing guild business, you may be promoted to guild officer. You gain access to more lucrative contracts. In addition, the guild supports you at a moderate lifestyle without you having to work.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_guildmember" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 307, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Intelligence and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_sage" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 308, + "fields": { + "name": "Skill Proficiencies", + "desc": "History, and either Arcana, Culture, Engineering, or Religion.", + "type": "skill_proficiency", + "parent": "a5e-ag_sage" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 309, + "fields": { + "name": "Equipment", + "desc": "Bottle of ink, pen, 50 sheets of parchment, common clothes.", + "type": "equipment", + "parent": "a5e-ag_sage" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 310, + "fields": { + "name": "Library Privileges", + "desc": "As a fellow or friend of several universities you have visiting access to the great libraries, most of which are off-limits to the general public. With enough time spent in a library, you can uncover most of the answers you seek (any question answerable with a DC 20 Arcana, Culture, Engineering, History, Nature, or Religion check).", + "type": "feature", + "parent": "a5e-ag_sage" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 311, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sage Connections\r\n\r\n1. Your rival who always seems to be one step ahead of you in the research race.\r\n2. The college dean who banished you for conduct unbefitting a research fellow.\r\n3. A former student of yours who has become a dangerous wizard.\r\n4. The professor who took credit for your research.\r\n5. The rival sage whose cruel nickname for you has made you a laughingstock.\r\n6. The alchemist who will pay for bizarre monster trophies and other ingredients—no questions asked.\r\n7. The peer with a competing cosmological theory that causes endless friendly bickering.\r\n8. The noble who recognized your intelligence at a young age and sponsored your entrance into academia.\r\n9. A talented apprentice who ran away after mastering magical power but not the theoretical foundation to control it.\r\n10. The invading general who burned the library that was once your home.\r\n\r\n### Sage Mementos\r\n\r\n1. A letter from a colleague asking for research help.\r\n2. Your incomplete manuscript.\r\n3. An ancient scroll in a language that no magic can decipher.\r\n4. A copy of your highly unorthodox theoretical work that got you in so much trouble.\r\n5. A list of the forbidden books that may answer your equally forbidden question.\r\n6. A formula for a legendary magic item for which you have no ingredients.\r\n7. An ancient manuscript of a famous literary work believed to have been lost; only you believe that it is genuine.\r\n8. Your mentor's incomplete bestiary, encyclopedia, or other work that you vowed to complete.\r\n9. Your prize possession: a magic quill pen that takes dictation.\r\n10. The name of a book you need for your research that seems to be missing from every library you've visited.", + "type": "connection_and_memento", + "parent": "a5e-ag_sage" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 312, + "fields": { + "name": "Adventures And Advancement", + "desc": "When you visit libraries and universities you tend to be asked for help in your role as a comparatively rough-and-tumble adventurer. After fetching a few bits of esoteric knowledge and settling a few academic disputes, you may be granted access to the restricted areas of the library (which contain darker secrets and deeper mysteries, such as those answerable with a DC 25 Arcana, Culture, Engineering, History, Nature, or Religion check).", + "type": "adventures_and_advancement", + "parent": "a5e-ag_sage" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 313, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Constitution and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_folk-hero" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 314, + "fields": { + "name": "Skill Proficiencies", + "desc": "Survival, and either Animal Handling or Nature.", + "type": "skill_proficiency", + "parent": "a5e-ag_folk-hero" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 315, + "fields": { + "name": "Equipment", + "desc": "Any artisan's tools except alchemist's supplies, common clothes.", + "type": "equipment", + "parent": "a5e-ag_folk-hero" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 316, + "fields": { + "name": "Local Fame", + "desc": "Unless you conceal your identity, you're universally recognized and admired near the site of your exploits. You and your companions are treated to a moderate lifestyle in any settlement within 100 miles of your Prestige Center.", + "type": "feature", + "parent": "a5e-ag_folk-hero" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 317, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Folk Hero Connections\r\n\r\n1. The bard whose song made you legendary and who wants a sequel.\r\n2. Your friend, a traveling merchant whose caravan spreads your fame.\r\n3. A deadly enemy: the heir of the oppressive noble you killed.\r\n4. A deadly enemy: the mother of the monster you killed.\r\n5. A deadly enemy: the leader of the bandits you defeated.\r\n6. A deadly enemy: the tyrant you robbed.\r\n7. A kid who wants to follow your footsteps into danger.\r\n8. The jealous rival who wants to best your monster-slaying prowess, daring deeds, prize pie recipe, or whatever else made your famous.\r\n9. A secret admirer: the heir or heiress of the oppressive noble you defeated.\r\n10. The retired adventurer who trained you and is now in a bit of trouble.\r\n\r\n### Folk Hero Mementos\r\n\r\n1. The mask you used to conceal your identity while fighting oppression (you are only recognized as a folk hero while wearing the mask).\r\n2. A necklace bearing a horn, tooth, or claw from the monster you defeated.\r\n3. A ring given to you by the dead relative whose death you avenged.\r\n4. The weapon you wrestled from the leader of the raid on your village.\r\n5. The trophy, wrestling belt, silver pie plate, or other prize marking you as the county champion.\r\n6. The famous scar you earned in your struggle against your foe.\r\n7. The signature weapon which provides you with your nickname.\r\n8. The injury or physical difference by which your admirers and foes recognize you.\r\n9. The signal whistle or instrument which you used to summon allies and spook enemies.\r\n10. Copies of the ballads and poems written in your honor.", + "type": "connection_and_memento", + "parent": "a5e-ag_folk-hero" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 318, + "fields": { + "name": "Adventures And Advancement", + "desc": "Common folk come to you with all sorts of problems. If you fought an oppressive regime, they bring you tales of injustice. If you fought a monster, they seek you out with monster problems. If you solve many such predicaments, you become universally famous, gaining the benefits of your Local Fame feature in every settled land.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_folk-hero" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 325, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Charisma and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_gambler" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 326, + "fields": { + "name": "Skill Proficiencies", + "desc": "Deception, and either Insight or Sleight of Hand.", + "type": "skill_proficiency", + "parent": "a5e-ag_gambler" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 327, + "fields": { + "name": "Equipment", + "desc": "Fine clothes, dice set, playing card set.", + "type": "equipment", + "parent": "a5e-ag_gambler" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 328, + "fields": { + "name": "Lady Luck", + "desc": "Each week you may attempt a “lucky throw” to support yourself by gambling. Roll a d6 to determine the lifestyle you can afford with your week's winnings (1–2: poor, 3–5: moderate, 6: rich).", + "type": "feature", + "parent": "a5e-ag_gambler" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 329, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Gambler Connections\r\n1. The mentor you have now surpassed.\r\n2. The duelist who will never forgive you for fleecing them.\r\n3. The legendary gambler you aspire to beat.\r\n4. The friendly rival who always keeps you on your toes.\r\n5. The noble who publicly accused you of cheating.\r\n6. An ink-stained academic who wants you to test a risky theory about how to beat the house.\r\n7. The gang leader who would rather kill you than pay up.\r\n8. The kid who strives to emulate you. \r\n9. The cardsharp rival who cheats to win.\r\n10. The rival who won something from you that you want back.\r\n\r\n### Gambler Mementos\r\n\r\n1. Gambling debts owed you by someone who's gone missing.\r\n2. Your lucky coin that you've always won back after gambling it away.\r\n3. The deeds to a monster-infested copper mine, a castle on another plane of existence, and several other valueless properties.\r\n4. A pawn shop ticket for a valuable item—if you can gather enough money to redeem it.\r\n5. The hard-to-sell heirloom that someone really wants back.\r\n6. Loaded dice or marked cards. They grant advantage on gambling checks when used, but can be discovered when carefully examined by someone with the appropriate tool proficiency (dice or cards).\r\n7. An invitation to an annual high-stakes game to which you can't even afford the ante.\r\n8. A two-faced coin.\r\n9. A torn half of a card—a long-lost relative is said to hold the other half.\r\n10. An ugly trinket that its former owner claimed had hidden magical powers.", + "type": "connection_and_memento", + "parent": "a5e-ag_gambler" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 330, + "fields": { + "name": "Adventures And Advancement", + "desc": "Once you've had more than your fair share of lucky throws, you attract the attention of richer opponents. You add +1 to all your lucky throws. Additionally, you and your friends may be invited to exclusive games with more at stake than money.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_gambler" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 331, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Dexterity and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_marauder" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 332, + "fields": { + "name": "Skill Proficiencies", + "desc": "Survival, and either Intimidation or Stealth.", + "type": "skill_proficiency", + "parent": "a5e-ag_marauder" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 333, + "fields": { + "name": "Equipment", + "desc": "Traveler's clothes, signal whistle, tent (one person).", + "type": "equipment", + "parent": "a5e-ag_marauder" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 334, + "fields": { + "name": "Secret Ways", + "desc": "When you navigate while traveling, pursuers have disadvantage on checks made to track your group. Additionally, you can travel stealthily at a normal pace.", + "type": "feature", + "parent": "a5e-ag_marauder" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 335, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Marauder Connections\r\n1. Your nemesis: a naval captain or captain of the guard who thwarted you on several occasions.\r\n2. Your mentor: a charismatic pirate captain.\r\n3. The stylish highway robber who taught you the trade.\r\n4. The local noble who pursues you obsessively.\r\n5. The three outlaws who hold the other three pieces of your treasure map.\r\n6. The marauder chief who betrayed you and the rest of the gang in exchange for freedom.\r\n7. The child you became an outlaw to protect.\r\n8. The cleric who converted you to a life of law and faith.\r\n9. The scholarly old bandit whose inventions gave you an edge against the pursuing authorities.\r\n10. Your best friend—who is serving a life sentence for your shared crime.\r\n\r\n### Marauder Mementos\r\n1. The eerie mask by which your victims know you.\r\n2. The one item that you wish you hadn't stolen.\r\n3. A signet ring marking you as heir to a seized estate.\r\n4. A locket containing a picture of the one who betrayed you.\r\n5. A broken compass.\r\n6. A love token from the young heir to a fortune.\r\n7. Half of a torn officer's insignia.\r\n8. The hunter's horn which members of your band use to call allies.\r\n9. A wanted poster bearing your face.\r\n10. Your unfinished thesis from your previous life as an honest scholar.", + "type": "connection_and_memento", + "parent": "a5e-ag_marauder" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 336, + "fields": { + "name": "Adventures And Advancement", + "desc": "Allies and informants occasionally give you tips about the whereabouts of poorly-guarded loot. After a few such scores, you may gain the free service of up to 8", + "type": "adventures_and_advancement", + "parent": "a5e-ag_marauder" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 337, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Wisdom and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_hermit" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 338, + "fields": { + "name": "Skill Proficiencies", + "desc": "Religion, and either Medicine or Survival.", + "type": "skill_proficiency", + "parent": "a5e-ag_hermit" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 339, + "fields": { + "name": "Equipment", + "desc": "Healer's satchel, herbalism kit, common clothes, 7 days rations, and a prayer book, prayer wheel, or prayer beads.", + "type": "equipment", + "parent": "a5e-ag_hermit" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 340, + "fields": { + "name": "Inner Voice", + "desc": "You occasionally hear a voice—perhaps your conscience, perhaps a higher power—which you have come to trust. It told you to go into seclusion, and then it advised you when to rejoin the world. You think it is leading you to your destiny (consult with your Narrator about this feature.)", + "type": "feature", + "parent": "a5e-ag_hermit" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 342, + "fields": { + "name": "Adventures And Advancement", + "desc": "Your inner voice may occasionally prompt you to accept certain adventure opportunities or to avoid certain actions. You are free to obey or disobey this voice. Eventually however it may lead you to a special revelation, adventure, or treasure.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_hermit" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 343, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Constitution and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_sailor" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 344, + "fields": { + "name": "Skill Proficiencies", + "desc": "Athletics, and either Acrobatics or Perception.", + "type": "skill_proficiency", + "parent": "a5e-ag_sailor" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 345, + "fields": { + "name": "Equipment", + "desc": "Common clothes, navigator's tools, 50 feet of rope.", + "type": "equipment", + "parent": "a5e-ag_sailor" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 346, + "fields": { + "name": "Sea Salt", + "desc": "Your nautical jargon and rolling gait mark you unmistakably as a mariner. You can easily enter into shop talk with any sailors that are not hostile to you, learning nautical gossip and ships' comings and goings. You also recognize most large ships by sight and by name, and can make a History orCulturecheck to recall their most recent captain and allegiance.", + "type": "feature", + "parent": "a5e-ag_sailor" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 347, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle's tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it.\r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction's signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol.\r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle’s tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it. \r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction’s signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol. \r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.", + "type": "connection_and_memento", + "parent": "a5e-ag_sailor" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 348, + "fields": { + "name": "Adventures And Advancement", + "desc": "You and your companions will be able to take passage for free on nearly any commercial ship in exchange for occasional ship duties when all hands are called. In addition, after you have a few naval exploits under your belt your fame makes sailors eager to sail under you. You can hire a ship's crew at half the usual price.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_sailor" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 349, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Wisdom and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_exile" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 350, + "fields": { + "name": "Skill Proficiencies", + "desc": "Survival, and either History or Performance.", + "type": "skill_proficiency", + "parent": "a5e-ag_exile" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 351, + "fields": { + "name": "Equipment", + "desc": "Traveler's clothes, 10 days rations.", + "type": "equipment", + "parent": "a5e-ag_exile" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 352, + "fields": { + "name": "Fellow Traveler", + "desc": "You gain an expertise die on Persuasion checks against others who are away from their land of birth.", + "type": "feature", + "parent": "a5e-ag_exile" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 353, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Exile Connections\r\n1. The companions who shared your exile.\r\n2. The kindly local who taught you Common.\r\n3. The shopkeeper or innkeeper who took you in and gave you work.\r\n4. The hunters from your native land who pursue you.\r\n5. The distant ruler who banished you until you redeem yourself.\r\n6. The community of fellow exiles who have banded together in a city neighborhood.\r\n7. The acting or carnival troupe which took you in.\r\n8. The suspicious authorities who were convinced you were a spy.\r\n9. Your first friend after your exile: a grizzled adventurer who traveled with you.\r\n10. A well-connected and unscrupulous celebrity who hails from your homeland.\r\n\r\n### Exile Mementos\r\n\r\n1. A musical instrument which was common in your homeland.\r\n2. A memorized collection of poems or sagas.\r\n3. A locket containing a picture of your betrothed from whom you are separated.\r\n4. Trade, state, or culinary secrets from your native land.\r\n5. A piece of jewelry given to you by someone you will never see again.\r\n6. An inaccurate, ancient map of the land you now live in.\r\n7. Your incomplete travel journals.\r\n8. A letter from a relative directing you to someone who might be able to help you.\r\n9. A precious cultural artifact you must protect.\r\n10. An arrow meant for the heart of your betrayer.", + "type": "connection_and_memento", + "parent": "a5e-ag_exile" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 354, + "fields": { + "name": "Adventures And Advancement", + "desc": "You may occasionally meet others from your native land. Some may be friends, and some dire enemies; few will be indifferent to you. After a few such encounters, you may become the leader of a faction of exiles. Your followers include up to three NPCs of Challenge Rating ½ or less, such as scouts.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_exile" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 358, + "fields": { + "name": "Guttersnipe", + "desc": "When you're in a town or city, you can provide a poor lifestyle for yourself and your companions. Also, you know how to get anywhere in town without being spotted by gangs, gossips, or guard patrols.", + "type": "feature", + "parent": "a5e-ag_urchin" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 361, + "fields": { + "name": "Connection and Memento", + "desc": "### Urchin Connections\r\n\r\n1. The disreputable thief who taught you thieving skills.\r\n2. The saintly orphanage matron who’s so proud of how you’ve grown.\r\n3. The miserly and cruel orphanage administrator who rounds up urchins and runaways.\r\n4. The drunken thief who shared with you what little they could steal. \r\n5. The fellow urchin who has some power to make “bad stuff” happen to their enemies.\r\n6. The thieves’ guild contact who will pay well for small folk to wriggle through a window or chimney to unlock a front door.\r\n7. The philanthropist (or charlatan?) who took you in, dressed you properly, and tried to teach you upper-class manners.\r\n8. The spymaster or detective who sent you on investigation missions.\r\n9. The noble whose horse trampled you or a friend.\r\n10. The rich family you ran away from.\r\n\r\n### Urchin Mementos\r\n\r\n1. A locket containing pictures of your parents.\r\n2. A set of (stolen?) fine clothes.\r\n3. A small trained animal, such as a mouse, parrot, or monkey.\r\n4. A map of the sewers.\r\n5. The key or signet ring that was around your neck when you were discovered as a foundling.\r\n6. A battered one-eyed doll.\r\n7. A portfolio of papers given to you by a fleeing, wounded courier.\r\n8. A gold tooth (not yours, and not in your mouth).\r\n9. The flowers or trinkets that you sell.\r\n10. A dangerous secret overheard while at play.", + "type": "connection_and_memento", + "parent": "a5e-ag_urchin" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 362, + "fields": { + "name": "Tool Proficiencies", + "desc": "One vehicle.", + "type": "tool_proficiency", + "parent": "a5e-ag_trader" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 363, + "fields": { + "name": "Tool Proficiencies", + "desc": "Disguise kit, thieves’ tools.", + "type": "tool_proficiency", + "parent": "a5e-ag_urchin" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 364, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Strength and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_soldier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 365, + "fields": { + "name": "Skill Proficiencies", + "desc": "Athletics, and either Animal Handling or Intimidation.", + "type": "skill_proficiency", + "parent": "a5e-ag_soldier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 366, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of gaming set.", + "type": "tool_proficiency", + "parent": "a5e-ag_soldier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 367, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_soldier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 368, + "fields": { + "name": "Suggested Equipment", + "desc": "Uniform, common clothes, 7 days rations.", + "type": "equipment", + "parent": "a5e-ag_soldier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 369, + "fields": { + "name": "Military Bearing", + "desc": "Soldiers recognize their own. Off duty soldiers are usually willing to trade tales and gossip with you. On duty soldiers, while not obeying your orders, are likely to answer your questions and treat you respectfully on the off chance that you’re an unfamiliar officer who can get them in trouble.", + "type": "feature", + "parent": "a5e-ag_soldier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 370, + "fields": { + "name": "Adventures and Advancement", + "desc": "You will occasionally run into old comrades, some of whom may need favors. If you perform a few celebrated martial deeds your old military outfit (or a new one) is likely to offer you an officer’s rank. You gain the free service of up to 8 guards. Your new commanders will occasionally give you objectives: you will be expected to act independently in order to achieve these objectives.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_soldier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 371, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Soldier Connections\r\n1. Your old commanding officer who still wants you to rejoin.\r\n2. The commander who callously sent your unit into a slaughter.\r\n3. Your shady war buddy who can get their hands on anything with no questions asked.\r\n4. Your best friend who went missing on the battlefield. \r\n5. The comrade who saved your life at the risk of their own.\r\n6. The ghost who haunts you. \r\n7. The superior officer you punched (for abusing civilians? For insulting your honor? For preventing you from looting?)\r\n8. The scary experimental war construct you accompanied on a dangerous mission.\r\n9. The golden-armored knight with ridiculously good teeth who was always giving inspiring speeches.\r\n10. The enemy officer who captured you.\r\n\r\n### Soldier Mementos\r\n1. A broken horn, tooth, or other trophy salvaged from a monster’s corpse.\r\n2. A trophy won in a battle (a tattered banner, a ceremonial sword, or similar).\r\n3. A gaming set.\r\n4. A letter from your sweetheart.\r\n5. An old wound that twinges in bad weather.\r\n6. A letter you’re supposed to deliver to a dead comrade’s family.\r\n7. A horrifying memory you can’t escape.\r\n8. A horned or plumed helmet.\r\n9. The sword you broke over your knee rather than fight for those bastards another day.\r\n10. A medal for valor.", + "type": "connection_and_memento", + "parent": "a5e-ag_soldier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 372, + "fields": { + "name": "Tool Proficiencies", + "desc": "Navigator’s tools, water vehicles.", + "type": "tool_proficiency", + "parent": "a5e-ag_sailor" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 373, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Strength and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_noble" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 374, + "fields": { + "name": "Skill Proficiencies", + "desc": "Culture, History, and either Animal Handling or Persuasion.", + "type": "skill_proficiency", + "parent": "a5e-ag_noble" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 375, + "fields": { + "name": "Tool Proficiencies", + "desc": "One gaming set.", + "type": "tool_proficiency", + "parent": "a5e-ag_noble" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 376, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_noble" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 377, + "fields": { + "name": "Equipment", + "desc": "Fine clothes, signet ring, writ detailing your family tree.", + "type": "equipment", + "parent": "a5e-ag_noble" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 378, + "fields": { + "name": "High Society", + "desc": "You know of—or personally know—most of the noble families for hundreds of miles. In most settled areas you (and possibly your companions, if well-behaved) can find a noble host who will feed you, shelter you, and offer you a rich lifestyle.", + "type": "feature", + "parent": "a5e-ag_noble" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 379, + "fields": { + "name": "Adventures and Advancement", + "desc": "Your family may ask you for one or two little favors: convince this relative to marry a family-approved spouse, slay that family foe in a duel, serve under a liege lord in a battle. If you advance your family’s fortunes, you may earn a knighthood along with the free service of a retinue of servants and up to 8 **guards**.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_noble" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 380, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Noble Connections\r\n1. Your perfect elder sibling to whom you never seem to measure up.\r\n2. The treacherous noble who slaughtered or scattered your family and is now living in your ancestral home.\r\n3. Your family servant, a retired adventurer who taught you more about battle than any fancy dueling master.\r\n4. The foppish friend you carouse with.\r\n5. The common-born sweetheart that your family forbid you from seeing again.\r\n6. The fugitive head of your family whose rebellion caused your family’s lands to be seized and titles to be redistributed.\r\n7. Your foe, the heir of a rival house, with whom you have dueled twice.\r\n8. The crime boss to whom your family is in massive debt.\r\n9. The scion of an allied family to whom you were betrothed from birth.\r\n10. The eccentric knight for whom you trained as a squire or page.\r\n\r\n### Noble Mementos\r\n1. A shield or tabard bearing your coat of arms.\r\n2. A keepsake or love letter from a high-born sweetheart.\r\n3. An heirloom weapon—though it’s not magical, it has a name and was used for mighty deeds.\r\n4. A letter of recommendation to a royal court.\r\n5. Perfumed handkerchiefs suitable for blocking the smell of commoners.\r\n6. An extremely fashionable and excessively large hat.\r\n7. A visible scar earned in battle or in a duel.\r\n8. A set of common clothes and a secret commoner identity.\r\n9. IOUs of dubious value that were earned in games of chance against other nobles.\r\n10. A letter from a friend begging for help.", + "type": "connection_and_memento", + "parent": "a5e-ag_noble" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 381, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of artisan’s tools or vehicle.", + "type": "tool_proficiency", + "parent": "a5e-ag_marauder" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 382, + "fields": { + "name": "Tool Proficiencies", + "desc": "Herbalism kit.", + "type": "tool_proficiency", + "parent": "a5e-ag_hermit" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 383, + "fields": { + "name": "Tool Proficiencies", + "desc": "Either one type of artisan’s tools, musical instrument, or vehicle.", + "type": "tool_proficiency", + "parent": "a5e-ag_guildmember" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 384, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Strength and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_guard" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 385, + "fields": { + "name": "Skill Proficiencies", + "desc": "Intimidation, and either Athletics or Investigation.", + "type": "skill_proficiency", + "parent": "a5e-ag_guard" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 386, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_guard" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 387, + "fields": { + "name": "Equipment", + "desc": "Common clothes, halberd, uniform.", + "type": "equipment", + "parent": "a5e-ag_guard" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 388, + "fields": { + "name": "Natural Authority", + "desc": "Commoners and civilians sometimes assume you are part of a local constabulary force and defer to you.", + "type": "feature", + "parent": "a5e-ag_guard" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 389, + "fields": { + "name": "Adventures and Advancement", + "desc": "When you visit the city or countryside you once patrolled you’re sure to get embroiled in the same politics that drove you out. Should you stick around righting wrongs, you might accidentally find yourself in a position of responsibility.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_guard" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 390, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guard Connections\r\n1. The corrupt guard captain who framed you.\r\n2. The by-the-book guard captain who found you in violation of a regulation.\r\n3. The mighty guard captain who taught you all you know. \r\n4. The informant who tipped you off about criminal activity.\r\n5. The noble or merchant you protected.\r\n6. The comrade or superior officer you admired.\r\n7. The villain who kidnapped the person you were charged to protect.\r\n8. Your betrayer, the one person you didn’t think to mistrust.\r\n9. The noble or merchant who had everyone in their pocket.\r\n10. The diviner wizard who could usually provide you with the missing piece of a puzzle.\r\n\r\n### Guard Mementos\r\n1. Your badge of office, a symbol of an ideal few could live up to.\r\n2. Your badge of office, a symbol of a corrupt system you could no longer stomach.\r\n3. The arrow-damaged prayer book or playing card deck that saved your life.\r\n4. The whiskey flask that stood you in good stead on many cold patrols. \r\n5. Notes about a series of disappearances you would have liked to put a stop to. \r\n6. A broken sword, torn insignia, or other symbol of your disgrace and banishment.\r\n7. A tattoo or insignia marking you as part of an organization of which you are the last member.\r\n8. The fellow guard’s last words which you will never forget. \r\n9. A letter you were asked to deliver. \r\n10. A bloodstained duty roster.", + "type": "connection_and_memento", + "parent": "a5e-ag_guard" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 391, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of artisan’s tools, one vehicle.", + "type": "tool_proficiency", + "parent": "a5e-ag_folk-hero" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 392, + "fields": { + "name": "Tool Proficiencies", + "desc": "Land vehicles.", + "type": "tool_proficiency", + "parent": "a5e-ag_farmer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 393, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Intelligence and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_cultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 394, + "fields": { + "name": "Skill Proficiencies", + "desc": "Religion, and either Arcana or Deception.", + "type": "skill_proficiency", + "parent": "a5e-ag_cultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 395, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_cultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 396, + "fields": { + "name": "Equipment", + "desc": "Holy symbol (amulet or reliquary), common clothes, robes, 5 torches.", + "type": "equipment", + "parent": "a5e-ag_cultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 397, + "fields": { + "name": "Forbidden Lore", + "desc": "When you fail an Arcana or Religion check, you know what being or book holds the knowledge you seek finding the book or paying the being’s price is another matter.", + "type": "feature", + "parent": "a5e-ag_cultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 398, + "fields": { + "name": "Adventures and Advancement", + "desc": "Members of your former order may be hunting you for reenlistment, punishment, or both.\r\nAdditionally, your cult still seeks to open a portal, effect an apotheosis, or otherwise cause catastrophe. Eventually you may have to face the leader of your cult and perhaps even the being you once worshiped.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_cultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 399, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cultist Connections\r\n1. The cult leader whom you left for dead.\r\n2. The cleric or herald who showed you the error of your ways.\r\n3. The voice which still speaks to you in dreams.\r\n4. The charismatic cultist whose honeyed words and promises first tempted you.\r\n5. The friend or loved one still in the cult.\r\n6. Your former best friend who now hunts you for your desertion of the cult.\r\n7. The relentless inquisitor who hunts you for your past heresy.\r\n8. The demon which you and your compatriots accidentally unleashed.\r\n9. The self-proclaimed deity who barely escaped from their angry disciples after their magic tricks and fakeries were revealed.\r\n10. The masked cult leader whose identity you never learned, but whose cruel voice you would recognize anywhere.\r\n\r\n### Cultist Mementos\r\n1. The sinister tattoo which occasionally speaks to you.\r\n2. The cursed holy symbol which appears in your possession each morning no matter how you try to rid yourself of it.\r\n3. The scar on your palm which aches with pain when you disobey the will of your former master.\r\n4. The curved dagger that carries a secret enchantment able only to destroy the being you once worshiped.\r\n5. The amulet which is said to grant command of a powerful construct. \r\n6. A forbidden tome which your cult would kill to retrieve. \r\n7. An incriminating letter to your cult leader from their master (a noted noble or politician).\r\n8. A compass which points to some distant location or object.\r\n9. A talisman which is said to open a gateway to the realm of a forgotten god.\r\n10. The birthmark which distinguishes you as the chosen vessel of a reborn god.", + "type": "connection_and_memento", + "parent": "a5e-ag_cultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 400, + "fields": { + "name": "Tool Proficiencies", + "desc": "Gaming set, thieves' tools.", + "type": "tool_proficiency", + "parent": "a5e-ag_criminal" + } + } +] \ No newline at end of file diff --git a/data/v2/en-publishing/a5e-ddg/Background.json b/data/v2/en-publishing/a5e-ddg/Background.json index ded79314..62024bbb 100644 --- a/data/v2/en-publishing/a5e-ddg/Background.json +++ b/data/v2/en-publishing/a5e-ddg/Background.json @@ -1,38 +1,38 @@ [ -{ - "model": "api_v2.background", - "pk": "deep-hunter", - "fields": { - "name": "Deep Hunter", - "desc": "[No description provided]", - "document": "a5e-ddg" + { + "model": "api_v2.background", + "pk": "a5e-ddg_deep-hunter", + "fields": { + "name": "Deep Hunter", + "desc": "[No description provided]", + "document": "a5e-ddg" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ddg_dungeon-robber", + "fields": { + "name": "Dungeon Robber", + "desc": "[No description provided]", + "document": "a5e-ddg" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ddg_escapee-from-below", + "fields": { + "name": "Escapee from Below", + "desc": "[No description provided]", + "document": "a5e-ddg" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-ddg_imposter", + "fields": { + "name": "Imposter", + "desc": "[No description provided]", + "document": "a5e-ddg" + } } -}, -{ - "model": "api_v2.background", - "pk": "dungeon-robber", - "fields": { - "name": "Dungeon Robber", - "desc": "[No description provided]", - "document": "a5e-ddg" - } -}, -{ - "model": "api_v2.background", - "pk": "escapee-from-below", - "fields": { - "name": "Escapee from Below", - "desc": "[No description provided]", - "document": "a5e-ddg" - } -}, -{ - "model": "api_v2.background", - "pk": "imposter", - "fields": { - "name": "Imposter", - "desc": "[No description provided]", - "document": "a5e-ddg" - } -} -] +] \ No newline at end of file diff --git a/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json b/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json index c70b16bc..d4e82829 100644 --- a/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json +++ b/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json @@ -1,292 +1,292 @@ [ -{ - "model": "api_v2.backgroundbenefit", - "pk": 534, - "fields": { - "name": "Ability Score Increase", - "desc": "+1 to Wisdom and one other ability score.", - "type": "ability_score", - "parent": "deep-hunter" + { + "model": "api_v2.backgroundbenefit", + "pk": 534, + "fields": { + "name": "Ability Score Increase", + "desc": "+1 to Wisdom and one other ability score.", + "type": "ability_score", + "parent": "a5e-ddg_deep-hunter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 535, + "fields": { + "name": "Skill Proficiencies", + "desc": "Survival, and either Nature or Stealth.", + "type": "skill_proficiency", + "parent": "a5e-ddg_deep-hunter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 536, + "fields": { + "name": "Tool Proficiencies", + "desc": "Leatherworker’s tools.", + "type": "tool_proficiency", + "parent": "a5e-ddg_deep-hunter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 537, + "fields": { + "name": "Suggested Equipment", + "desc": "chalk, traveler’s clothes, 2 hunting traps", + "type": "equipment", + "parent": "a5e-ddg_deep-hunter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 538, + "fields": { + "name": "Deep Lore", + "desc": "You always have a sense of how deep you are and which direction is north, provided that you’ve traveled in these regions before. You are also generally aware of the physical and political geography of the region (e.g., “the old dwarf colony is this way and those tunnels are part of the wererat pack’s hunting grounds”). You know where relatively safe places to camp are located and you can usually find fresh sources of water.", + "type": "feature", + "parent": "a5e-ddg_deep-hunter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 539, + "fields": { + "name": "Adventures and Advancement", + "desc": "Once you’ve collected a few trophies from your hunts, people start offering you money in exchange for help against the subterranean monsters plaguing their communities. After a few such bounties, you gain the free service of up to 4 scouts (or scout variants). You can ask them to adventure with you or dispatch them to gather information on distant areas.", + "type": "adventures_and_advancement", + "parent": "a5e-ddg_deep-hunter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 540, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Deep Hunter Connections\r\n1. The hunter that saved your life.\r\n2. The rival hunter that pursues the same beast.\r\n3. The rival hunter that took credit for your kill and branded you a liar.\r\n4. The intelligent monster that mocks you every time it escapes your grasp.\r\n5. The community or family that depends on you.\r\n6. The city alchemist that pays well for your trophies.\r\n7. A community of fey, deep gnome, or shadow elves that owe you their lives.\r\n8. A monster you have befriended and sworn to protect.\r\n9. The surface world ruler from whom you’re hiding.\r\n10. The monster that hunts you.\r\n\r\n### Deep Hunter Mementos\r\n1. A prized bow string, arrow, whetstone, or other piece of equipment that has never let you down.\r\n2. A locket containing the picture of a subterranean monster’s victim.\r\n3. An astonishing assortment of unusual jerkies.\r\n4. A scar from the monster that got away.\r\n5. Clothing bedecked with a dozen grisly trophies.\r\n6. A lucky coin you flip when you’re not sure of the way forward.\r\n7. The broken horn or tooth that nearly killed you.\r\n8. A talking monster skull (you hear it talking, anyway).\r\n9. A copper coin taken from a cavern filled with riches; you stumbled across the cavern while lost and have never found your way back.\r\n10. A journal detailing your attempts to find a navigable passage to the Midnight Sea.", + "type": "connection_and_memento", + "parent": "a5e-ddg_deep-hunter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 541, + "fields": { + "name": "Ability Score Increase", + "desc": "+1 to Intelligence and one other ability score.", + "type": "ability_score", + "parent": "a5e-ddg_dungeon-robber" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 542, + "fields": { + "name": "Skill Proficiencies", + "desc": "History, and either Investigation or Religion.", + "type": "skill_proficiency", + "parent": "a5e-ddg_dungeon-robber" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 543, + "fields": { + "name": "Tool Proficiencies", + "desc": "Cartographers’ tools.", + "type": "tool_proficiency", + "parent": "a5e-ddg_dungeon-robber" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 544, + "fields": { + "name": "Languages", + "desc": "Any six (three of them no longer spoken).", + "type": "language", + "parent": "a5e-ddg_dungeon-robber" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 545, + "fields": { + "name": "Suggested Equipment", + "desc": "Cartographers’ tools, miner’s pick, traveler’s clothes, shovel.", + "type": "equipment", + "parent": "a5e-ddg_dungeon-robber" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 546, + "fields": { + "name": "Unreliable Intelligence", + "desc": "You know conspiracy theorists, armchair historians, disgraced academics, and other people with useful, if unreliable, knowledge. While in a city, once per day you can find an NPC who can make an Intelligence check with a +10 bonus to recall a fact. When you do so, the Narrator secretly rolls a d6. On a 1, your contact’s information is dangerously inaccurate.", + "type": "feature", + "parent": "a5e-ddg_dungeon-robber" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 547, + "fields": { + "name": "Adventures and Advancement", + "desc": "As you build your reputation, shady people approach you with requests to “discover” items of uncertain ownership. After enough successes, a legitimate organization, such as a wizard’s college or esteemed museum, takes an interest in you. They offer you a position, which comes with funding granting a Wealthy lifestyle, access to free spellcasting services, and legal representation when you inevitably run afoul of the law.", + "type": "adventures_and_advancement", + "parent": "a5e-ddg_dungeon-robber" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 548, + "fields": { + "name": "Connection and Memento", + "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Dungeon Robber Connections\r\n1. A rival who always tries to steal what you rightfully find.\r\n2. A rival who seeks powerful artifacts for evil ends.\r\n3. A fence who can find a buyer for anything.\r\n4. An underworld figure to whom you owe a staggering debt.\r\n5. A master forger who can replicate plausible records of ownership, permissions to restricted areas, and so on.\r\n6. An artist who can make perfect copies of artwork and paintings.\r\n7. A collector who sends you after valuable curios.\r\n8. Authorities who would like to question you about a relic’s mysterious disappearance.\r\n9. An admiring urchin who can get you anywhere in their city.\r\n10. A rambling sage whose bizarre, shocking theories you half believe.\r\n\r\n### Dungeon Robber Mementos\r\n1. A mysterious idol whose origin you seek.\r\n2. A cultural item from equipment.\r\n3. A treasure map with no obvious connection to any known land mass.\r\n4. An ancient piece of machinery that is undoubtedly very powerful, although all it currently does is light up.\r\n5. A rare book that grants an expertise die on checks related to a specific civilization.\r\n6. A gold coin bearing the face of a king who never existed.\r\n7. Identification papers from the institution that has kicked you out.\r\n8. A tablet carved with indecipherable glyphs.\r\n9. A giant-sized key to an unknown door.\r\n10. One piece of a seven-part artifact.", + "type": "connection_and_memento", + "parent": "a5e-ddg_dungeon-robber" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 549, + "fields": { + "name": "Ability Score Increase", + "desc": "+1 to Constitution and one other ability score.", + "type": "ability_score", + "parent": "a5e-ddg_escapee-from-below" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 550, + "fields": { + "name": "Skill Proficiencies", + "desc": "Stealth, and either Perception or Survival.", + "type": "skill_proficiency", + "parent": "a5e-ddg_escapee-from-below" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 551, + "fields": { + "name": "Tool Proficiencies", + "desc": "Thieves’ tools.", + "type": "tool_proficiency", + "parent": "a5e-ddg_escapee-from-below" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 552, + "fields": { + "name": "Suggested Equipment", + "desc": "Common clothes, thieves’ tools.", + "type": "equipment", + "parent": "a5e-ddg_escapee-from-below" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 553, + "fields": { + "name": "Alien Culture", + "desc": "Your prolonged captivity has granted you insight into the culture that kept you. You understand their customs, traditions, religion, political ties, and to some extent how they think. You are regarded as an expert in this culture and can usually recall some useful detail when you and your companions face a challenge involving this culture.", + "type": "feature", + "parent": "a5e-ddg_escapee-from-below" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 554, + "fields": { + "name": "Adventures and Advancement", + "desc": "You find yourself drawn to the lands you once escaped. When you return there, you may have an opportunity to right wrongs or take revenge for past injuries. When you do, other escapees may look to you for leadership.", + "type": "adventures_and_advancement", + "parent": "a5e-ddg_escapee-from-below" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 555, + "fields": { + "name": "Connection and Memento", + "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Escapee from Below Connections\r\n1. The friend and fellow escapee from whom you were separated.\r\n2. The family members who remain in captivity.\r\n3. The cruel overseer who tortured you.\r\n4. Members of an Underland resistance movement.\r\n5. An evil commando squad that hunts escapees.\r\n6. The kindly merchant who took you in when you first reached the surface.\r\n7. A fellow prisoner, still in captivity, who claimed to be an heir to royalty.\r\n8. The prominent merchant or politician you saw making deals with evil creatures in the Underland.\r\n9. A mighty Underland creature with ambitions to conquer the surface world.\r\n10. A ship captain who sails the Midnight Sea.\r\n\r\n### Escapee from Below Mementos\r\n1. A partial map of your escape route.\r\n2. Broken shackles or chains.\r\n3. A precious heirloom, still hidden somewhere in Underland.\r\n4. A delicious recipe (which no one would eat if they knew the ingredients).\r\n5. A compass that points back where you came.\r\n6. Twelve days worth of rations (dried mushrooms).\r\n7. A tattoo that conceals the hidden routes and passwords you used to gain your freedom.\r\n8. A trophy taken from the guard you overcame.\r\n9. A strange board game or toy designed for hands with too many fingers.\r\n10. A telepathic rat or other unusual pet.", + "type": "connection_and_memento", + "parent": "a5e-ddg_escapee-from-below" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 556, + "fields": { + "name": "Ability Score Increase", + "desc": "+1 to Charisma and one other ability score.", + "type": "ability_score", + "parent": "a5e-ddg_imposter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 557, + "fields": { + "name": "Skill Proficiencies", + "desc": "Deception, and either Perception or Survival.", + "type": "skill_proficiency", + "parent": "a5e-ddg_imposter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 558, + "fields": { + "name": "Tool Proficiencies", + "desc": "Disguise kit.", + "type": "tool_proficiency", + "parent": "a5e-ddg_imposter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 559, + "fields": { + "name": "Suggested Equipment", + "desc": "Common clothes, disguise kit.", + "type": "equipment", + "parent": "a5e-ddg_imposter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 560, + "fields": { + "name": "Cover Story", + "desc": "Whenever you struggle to maintain the masquerade that you are who you say, a surprising number of people are willing to help you through your “lapses of memory.” They might be deluding themselves, or perhaps they know your secret but provide you cover for reasons of their own. So long as you don’t act completely out of character or get caught in an outrageous lie, you can usually find someone willing to cover for you. This cover most commonly takes he form of excuses for your strange behavior.", + "type": "feature", + "parent": "a5e-ddg_imposter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 561, + "fields": { + "name": "Adventures and Advancement", + "desc": "Each of your double’s former acquaintances must be won over, until they like you more than they did your original. Even once that’s accomplished, you won’t truly be free of your past until you have reckoned with it. When evidence of your true nature surfaces—or when the person you are impersonating reappears—you must triumph in the court of public opinion. Once you have done so, you will have permanent, legal access to your former self’s belongings, inheritance rights, and so on.", + "type": "adventures_and_advancement", + "parent": "a5e-ddg_imposter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 562, + "fields": { + "name": "Connection and Memento", + "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Imposter Connections\r\n1. The accomplice who knows your secret and helps you for their own reasons.\r\n2. The spouse or lover of your other self, whom you must win over.\r\n3. The enemy of your other self, whose hatred you inherit.\r\n4. Your other self’s rich or noble relative, from whom you may inherit a fortune.\r\n5. Your crooked former partner, who still searches for you, unaware of your new identity.\r\n6. The Underland compatriot who knew both you and the person whose identity you stole.\r\n7. The suspicious priest who noticed a change in your personality.\r\n8. An acquaintance whose “inside joke” you pretend to understand.\r\n9. The family pet that doesn’t recognize you.\r\n10. The person you left behind when you abandoned your old life.\r\n\r\n### Imposter Mementos\r\n1. The precious diary containing your original self’s secrets.\r\n2. The locket or signet ring that proves your identity.\r\n3. The scar that matches the one your original self had.\r\n4. An anonymous blackmail letter.\r\n5. An item that proves your real identity, which you keep hidden.\r\n6. The fingerbone that whispers hints to you at opportune times.\r\n7. The heirloom weapon you fraudulently wield.\r\n8. Your trusty hat of disguise.\r\n9. Your trusty ring of mind shielding.\r\n10. The implements (useless to you) of your original self’s magical training.", + "type": "connection_and_memento", + "parent": "a5e-ddg_imposter" + } } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 535, - "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either Nature or Stealth.", - "type": "skill_proficiency", - "parent": "deep-hunter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 536, - "fields": { - "name": "Tool Proficiencies", - "desc": "Leatherworker’s tools.", - "type": "tool_proficiency", - "parent": "deep-hunter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 537, - "fields": { - "name": "Suggested Equipment", - "desc": "chalk, traveler’s clothes, 2 hunting traps", - "type": "equipment", - "parent": "deep-hunter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 538, - "fields": { - "name": "Deep Lore", - "desc": "You always have a sense of how deep you are and which direction is north, provided that you’ve traveled in these regions before. You are also generally aware of the physical and political geography of the region (e.g., “the old dwarf colony is this way and those tunnels are part of the wererat pack’s hunting grounds”). You know where relatively safe places to camp are located and you can usually find fresh sources of water.", - "type": "feature", - "parent": "deep-hunter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 539, - "fields": { - "name": "Adventures and Advancement", - "desc": "Once you’ve collected a few trophies from your hunts, people start offering you money in exchange for help against the subterranean monsters plaguing their communities. After a few such bounties, you gain the free service of up to 4 scouts (or scout variants). You can ask them to adventure with you or dispatch them to gather information on distant areas.", - "type": "adventures_and_advancement", - "parent": "deep-hunter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 540, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Deep Hunter Connections\r\n1. The hunter that saved your life.\r\n2. The rival hunter that pursues the same beast.\r\n3. The rival hunter that took credit for your kill and branded you a liar.\r\n4. The intelligent monster that mocks you every time it escapes your grasp.\r\n5. The community or family that depends on you.\r\n6. The city alchemist that pays well for your trophies.\r\n7. A community of fey, deep gnome, or shadow elves that owe you their lives.\r\n8. A monster you have befriended and sworn to protect.\r\n9. The surface world ruler from whom you’re hiding.\r\n10. The monster that hunts you.\r\n\r\n### Deep Hunter Mementos\r\n1. A prized bow string, arrow, whetstone, or other piece of equipment that has never let you down.\r\n2. A locket containing the picture of a subterranean monster’s victim.\r\n3. An astonishing assortment of unusual jerkies.\r\n4. A scar from the monster that got away.\r\n5. Clothing bedecked with a dozen grisly trophies.\r\n6. A lucky coin you flip when you’re not sure of the way forward.\r\n7. The broken horn or tooth that nearly killed you.\r\n8. A talking monster skull (you hear it talking, anyway).\r\n9. A copper coin taken from a cavern filled with riches; you stumbled across the cavern while lost and have never found your way back.\r\n10. A journal detailing your attempts to find a navigable passage to the Midnight Sea.", - "type": "connection_and_memento", - "parent": "deep-hunter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 541, - "fields": { - "name": "Ability Score Increase", - "desc": "+1 to Intelligence and one other ability score.", - "type": "ability_score", - "parent": "dungeon-robber" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 542, - "fields": { - "name": "Skill Proficiencies", - "desc": "History, and either Investigation or Religion.", - "type": "skill_proficiency", - "parent": "dungeon-robber" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 543, - "fields": { - "name": "Tool Proficiencies", - "desc": "Cartographers’ tools.", - "type": "tool_proficiency", - "parent": "dungeon-robber" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 544, - "fields": { - "name": "Languages", - "desc": "Any six (three of them no longer spoken).", - "type": "language", - "parent": "dungeon-robber" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 545, - "fields": { - "name": "Suggested Equipment", - "desc": "Cartographers’ tools, miner’s pick, traveler’s clothes, shovel.", - "type": "equipment", - "parent": "dungeon-robber" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 546, - "fields": { - "name": "Unreliable Intelligence", - "desc": "You know conspiracy theorists, armchair historians, disgraced academics, and other people with useful, if unreliable, knowledge. While in a city, once per day you can find an NPC who can make an Intelligence check with a +10 bonus to recall a fact. When you do so, the Narrator secretly rolls a d6. On a 1, your contact’s information is dangerously inaccurate.", - "type": "feature", - "parent": "dungeon-robber" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 547, - "fields": { - "name": "Adventures and Advancement", - "desc": "As you build your reputation, shady people approach you with requests to “discover” items of uncertain ownership. After enough successes, a legitimate organization, such as a wizard’s college or esteemed museum, takes an interest in you. They offer you a position, which comes with funding granting a Wealthy lifestyle, access to free spellcasting services, and legal representation when you inevitably run afoul of the law.", - "type": "adventures_and_advancement", - "parent": "dungeon-robber" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 548, - "fields": { - "name": "Connection and Memento", - "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Dungeon Robber Connections\r\n1. A rival who always tries to steal what you rightfully find.\r\n2. A rival who seeks powerful artifacts for evil ends.\r\n3. A fence who can find a buyer for anything.\r\n4. An underworld figure to whom you owe a staggering debt.\r\n5. A master forger who can replicate plausible records of ownership, permissions to restricted areas, and so on.\r\n6. An artist who can make perfect copies of artwork and paintings.\r\n7. A collector who sends you after valuable curios.\r\n8. Authorities who would like to question you about a relic’s mysterious disappearance.\r\n9. An admiring urchin who can get you anywhere in their city.\r\n10. A rambling sage whose bizarre, shocking theories you half believe.\r\n\r\n### Dungeon Robber Mementos\r\n1. A mysterious idol whose origin you seek.\r\n2. A cultural item from equipment.\r\n3. A treasure map with no obvious connection to any known land mass.\r\n4. An ancient piece of machinery that is undoubtedly very powerful, although all it currently does is light up.\r\n5. A rare book that grants an expertise die on checks related to a specific civilization.\r\n6. A gold coin bearing the face of a king who never existed.\r\n7. Identification papers from the institution that has kicked you out.\r\n8. A tablet carved with indecipherable glyphs.\r\n9. A giant-sized key to an unknown door.\r\n10. One piece of a seven-part artifact.", - "type": "connection_and_memento", - "parent": "dungeon-robber" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 549, - "fields": { - "name": "Ability Score Increase", - "desc": "+1 to Constitution and one other ability score.", - "type": "ability_score", - "parent": "escapee-from-below" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 550, - "fields": { - "name": "Skill Proficiencies", - "desc": "Stealth, and either Perception or Survival.", - "type": "skill_proficiency", - "parent": "escapee-from-below" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 551, - "fields": { - "name": "Tool Proficiencies", - "desc": "Thieves’ tools.", - "type": "tool_proficiency", - "parent": "escapee-from-below" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 552, - "fields": { - "name": "Suggested Equipment", - "desc": "Common clothes, thieves’ tools.", - "type": "equipment", - "parent": "escapee-from-below" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 553, - "fields": { - "name": "Alien Culture", - "desc": "Your prolonged captivity has granted you insight into the culture that kept you. You understand their customs, traditions, religion, political ties, and to some extent how they think. You are regarded as an expert in this culture and can usually recall some useful detail when you and your companions face a challenge involving this culture.", - "type": "feature", - "parent": "escapee-from-below" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 554, - "fields": { - "name": "Adventures and Advancement", - "desc": "You find yourself drawn to the lands you once escaped. When you return there, you may have an opportunity to right wrongs or take revenge for past injuries. When you do, other escapees may look to you for leadership.", - "type": "adventures_and_advancement", - "parent": "escapee-from-below" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 555, - "fields": { - "name": "Connection and Memento", - "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Escapee from Below Connections\r\n1. The friend and fellow escapee from whom you were separated.\r\n2. The family members who remain in captivity.\r\n3. The cruel overseer who tortured you.\r\n4. Members of an Underland resistance movement.\r\n5. An evil commando squad that hunts escapees.\r\n6. The kindly merchant who took you in when you first reached the surface.\r\n7. A fellow prisoner, still in captivity, who claimed to be an heir to royalty.\r\n8. The prominent merchant or politician you saw making deals with evil creatures in the Underland.\r\n9. A mighty Underland creature with ambitions to conquer the surface world.\r\n10. A ship captain who sails the Midnight Sea.\r\n\r\n### Escapee from Below Mementos\r\n1. A partial map of your escape route.\r\n2. Broken shackles or chains.\r\n3. A precious heirloom, still hidden somewhere in Underland.\r\n4. A delicious recipe (which no one would eat if they knew the ingredients).\r\n5. A compass that points back where you came.\r\n6. Twelve days worth of rations (dried mushrooms).\r\n7. A tattoo that conceals the hidden routes and passwords you used to gain your freedom.\r\n8. A trophy taken from the guard you overcame.\r\n9. A strange board game or toy designed for hands with too many fingers.\r\n10. A telepathic rat or other unusual pet.", - "type": "connection_and_memento", - "parent": "escapee-from-below" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 556, - "fields": { - "name": "Ability Score Increase", - "desc": "+1 to Charisma and one other ability score.", - "type": "ability_score", - "parent": "imposter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 557, - "fields": { - "name": "Skill Proficiencies", - "desc": "Deception, and either Perception or Survival.", - "type": "skill_proficiency", - "parent": "imposter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 558, - "fields": { - "name": "Tool Proficiencies", - "desc": "Disguise kit.", - "type": "tool_proficiency", - "parent": "imposter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 559, - "fields": { - "name": "Suggested Equipment", - "desc": "Common clothes, disguise kit.", - "type": "equipment", - "parent": "imposter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 560, - "fields": { - "name": "Cover Story", - "desc": "Whenever you struggle to maintain the masquerade that you are who you say, a surprising number of people are willing to help you through your “lapses of memory.” They might be deluding themselves, or perhaps they know your secret but provide you cover for reasons of their own. So long as you don’t act completely out of character or get caught in an outrageous lie, you can usually find someone willing to cover for you. This cover most commonly takes he form of excuses for your strange behavior.", - "type": "feature", - "parent": "imposter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 561, - "fields": { - "name": "Adventures and Advancement", - "desc": "Each of your double’s former acquaintances must be won over, until they like you more than they did your original. Even once that’s accomplished, you won’t truly be free of your past until you have reckoned with it. When evidence of your true nature surfaces—or when the person you are impersonating reappears—you must triumph in the court of public opinion. Once you have done so, you will have permanent, legal access to your former self’s belongings, inheritance rights, and so on.", - "type": "adventures_and_advancement", - "parent": "imposter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 562, - "fields": { - "name": "Connection and Memento", - "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Imposter Connections\r\n1. The accomplice who knows your secret and helps you for their own reasons.\r\n2. The spouse or lover of your other self, whom you must win over.\r\n3. The enemy of your other self, whose hatred you inherit.\r\n4. Your other self’s rich or noble relative, from whom you may inherit a fortune.\r\n5. Your crooked former partner, who still searches for you, unaware of your new identity.\r\n6. The Underland compatriot who knew both you and the person whose identity you stole.\r\n7. The suspicious priest who noticed a change in your personality.\r\n8. An acquaintance whose “inside joke” you pretend to understand.\r\n9. The family pet that doesn’t recognize you.\r\n10. The person you left behind when you abandoned your old life.\r\n\r\n### Imposter Mementos\r\n1. The precious diary containing your original self’s secrets.\r\n2. The locket or signet ring that proves your identity.\r\n3. The scar that matches the one your original self had.\r\n4. An anonymous blackmail letter.\r\n5. An item that proves your real identity, which you keep hidden.\r\n6. The fingerbone that whispers hints to you at opportune times.\r\n7. The heirloom weapon you fraudulently wield.\r\n8. Your trusty hat of disguise.\r\n9. Your trusty ring of mind shielding.\r\n10. The implements (useless to you) of your original self’s magical training.", - "type": "connection_and_memento", - "parent": "imposter" - } -} -] +] \ No newline at end of file diff --git a/data/v2/en-publishing/a5e-gpg/Background.json b/data/v2/en-publishing/a5e-gpg/Background.json index d3bebb7b..986cef24 100644 --- a/data/v2/en-publishing/a5e-gpg/Background.json +++ b/data/v2/en-publishing/a5e-gpg/Background.json @@ -1,20 +1,20 @@ [ -{ - "model": "api_v2.background", - "pk": "cursed", - "fields": { - "name": "Cursed", - "desc": "[No description provided]", - "document": "a5e-gpg" + { + "model": "api_v2.background", + "pk": "a5e-gpg_cursed", + "fields": { + "name": "Cursed", + "desc": "[No description provided]", + "document": "a5e-gpg" + } + }, + { + "model": "api_v2.background", + "pk": "a5e-gpg_haunted", + "fields": { + "name": "Haunted", + "desc": "[No description provided]", + "document": "a5e-gpg" + } } -}, -{ - "model": "api_v2.background", - "pk": "haunted", - "fields": { - "name": "Haunted", - "desc": "[No description provided]", - "document": "a5e-gpg" - } -} -] +] \ No newline at end of file diff --git a/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json b/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json index 7e5c09e1..f7aedd61 100644 --- a/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json +++ b/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json @@ -1,142 +1,142 @@ [ -{ - "model": "api_v2.backgroundbenefit", - "pk": 520, - "fields": { - "name": "Ability Score Increase", - "desc": "+1 Charisma and one other ability score.", - "type": "ability_score", - "parent": "cursed" + { + "model": "api_v2.backgroundbenefit", + "pk": 520, + "fields": { + "name": "Ability Score Increase", + "desc": "+1 Charisma and one other ability score.", + "type": "ability_score", + "parent": "a5e-gpg_cursed" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 521, + "fields": { + "name": "Skill Proficiencies", + "desc": "Perception, and either Arcana, Nature, or Religion based on the source of your curse.", + "type": "skill_proficiency", + "parent": "a5e-gpg_cursed" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 522, + "fields": { + "name": "Languages", + "desc": "Two of your choice.", + "type": "language", + "parent": "a5e-gpg_cursed" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 523, + "fields": { + "name": "Suggested Equipment", + "desc": "4 days of rations, one person tent, traveler’s clothes", + "type": "equipment", + "parent": "a5e-gpg_cursed" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 524, + "fields": { + "name": "Accursed", + "desc": "Whenever you fail at a Deception or Persuasion check, your curse manifests in a manner that you work out with your Narrator ahead of time. The failed check is ignored, and you immediately roll an Intimidation check with which you have expertise, taking the new roll. However, even a successful Intimidation check does not necessarily produce the result you originally intended, as the creatures around you may recoil in fear and distrust. At the Narrator’s discretion, you may keep the expertise die to Intimidation until the end of the scene.", + "type": "feature", + "parent": "a5e-gpg_cursed" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 525, + "fields": { + "name": "Adventures and Advancement", + "desc": "The entity responsible for your curse may press you to complete specific tasks, such as transporting a mysterious item, defeating a hated enemy, or stealing important documents. Work with your Narrator to determine how your curse is leveraged in these situations. After you complete several such tasks, your infamy grows. You are known by all people within 100 miles of your Prestige Center, many of whom hold you in fearful respect. You and your companions are given a moderate lifestyle in settlements within this area by those who dare not risk your curse.", + "type": "adventures_and_advancement", + "parent": "a5e-gpg_cursed" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 526, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cursed Connections\r\n1. Your parent who made the deal and left you cursed for their own ends.\r\n2. A cultist devoted to the entity that cursed you and who reveres you as well.\r\n3. Your childhood romantic interest, ultimately marked in some way by your curse.\r\n4. A childhood friend who pulled away from you when they realized you were cursed.\r\n5. The entity that cursed you.\r\n6. A priest or sage who tried—and failed—to break your curse years ago.\r\n7. The kindly family that took you in out of pity.\r\n8. The law enforcers who see you as a dangerous troublemaker.\r\n9. Another accursed individual with whom you sometimes commiserate.\r\n10. A scholar or researcher obsessed with the entity that cursed you.\r\n\r\n### Cursed Memento\r\n1. A locket or ring once owned by someone who was killed when your curse first manifested.\r\n2. A childhood toy, well worn, which has always been soothing.\r\n3. A torn piece of parchment which may lead you to the person who can break your curse.\r\n4. A weapon or piece of ammunition set aside for the entity that cursed you.\r\n5. A unique scar, discoloration, or other mark on your body which shows your curse.\r\n6. Nightmares brought on by the curse which often wake you, screaming.\r\n7. A charm meant to keep your curse contained. You haven’t noticed an effect.\r\n8. An artistic rendering of the entity that cursed you\r\n9. A flask once given to you as well-meaning consolation.\r\n10. A small knife you used as a child to protect yourself, because no one else would.", + "type": "connection_and_memento", + "parent": "a5e-gpg_cursed" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 527, + "fields": { + "name": "Ability Score Increase", + "desc": "+1 Wisdom and one other ability score of your choice.", + "type": "ability_score", + "parent": "a5e-gpg_haunted" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 528, + "fields": { + "name": "Skill Proficiencies", + "desc": "Religion, and any one skill of your choice that the spirit has imparted to you.", + "type": "skill_proficiency", + "parent": "a5e-gpg_haunted" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 529, + "fields": { + "name": "Languages", + "desc": "Two of your choice, one of which is the spirit’s native language.", + "type": "language", + "parent": "a5e-gpg_haunted" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 530, + "fields": { + "name": "Suggested Equipment", + "desc": "2 days worth of rations, bell, 5 candles, ink, ink pen, 10 sheets of paper, 5 pieces of chalk, traveler’s clothes", + "type": "equipment", + "parent": "a5e-gpg_haunted" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 531, + "fields": { + "name": "Silent Aid", + "desc": "Being in tune with your spirit allows them to point out something you might have missed, if only for their own purposes. You gain a +2 to your choice of your passive Perception, Investigation, or Insight score, depending on your spirit’s skills.\r\nIf you banish, free, or otherwise lose your spirit, consult with the Narrator to choose an appropriate feature from another background. Alternatively, the Narrator may rule that you’ve become a beacon for the supernatural and another spirit has taken up haunting you.", + "type": "feature", + "parent": "a5e-gpg_haunted" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 532, + "fields": { + "name": "Adventures and Advancement", + "desc": "Whether you seek to violently banish the restless dead or help them to peacefully pass on, you will gain a reputation as a spirit-speaker. Common folk and nobility alike are likely to approach you for advice and aid with everything from hereditary curses to irritable poltergeists to speaking with a dead relative about a lost treasure.\r\nAfter you have solved several such problems, you’ve become known to those who deal in certain kinds of esoteric knowledge and gain access to their private libraries. These vast personal collections contain esoteric mysteries, such as those answerable with a DC 25 Arcana, History, or Religion check. While using such a library your host will provide you and your companions a moderate or rich lifestyle, depending on their means and how impressed they are by your exploits.", + "type": "adventures_and_advancement", + "parent": "a5e-gpg_haunted" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 533, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Haunted Connections\r\n1. A descendant of your spirit who blames them for current misfortunes.\r\n2. Another haunted individual who came to you seeking help with their spirit in a time of crisis.\r\n3. The murderer who killed your spirit.\r\n4. A ghost who has consulted your spirit during a time of need.\r\n5. The bereaved spouse your spirit left behind who will do nearly anything to speak with their lost love.\r\n6. Your spirit, a childhood friend or a romantic partner before tragedy struck.\r\n7. Your spirits, a gaggle of bickering ancestors trying to use you to right a terrible wrong.\r\n8. A relative of your spirit who killed them in order to inherit a fortune.\r\n9. Your spirit, a hateful enemy of your family who is bound to you through a quirk of misfortune.\r\n10. Your spirit, who haunts their own body after you stole it and took up residence.\r\n\r\n### Haunted Memento\r\n1. A personal item (jewelry, tools, weapon, ect) once owned by your spirit. You can’t seem to get rid of it.\r\n2. A locket containing the image of the one who haunts you.\r\n3. The scent of your spirit’s favored cologne or perfume that clings to you.\r\n4. A small pouch of soil taken from your spirit’s grave.\r\n5. A letter of introduction penned by your spirit, giving you their blessing.\r\n6. Journals of your spirit’s life.\r\n7. An innocuous nonmagical item that your spirit tells you is of dire importance.\r\n8. The manacles that shackled your spirit before their death.\r\n9. A cryptic note written by your spirit who has no memory of its existence.\r\n10. The signet ring of your spirit, who you claim as your parent or ancestor.", + "type": "connection_and_memento", + "parent": "a5e-gpg_haunted" + } } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 521, - "fields": { - "name": "Skill Proficiencies", - "desc": "Perception, and either Arcana, Nature, or Religion based on the source of your curse.", - "type": "skill_proficiency", - "parent": "cursed" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 522, - "fields": { - "name": "Languages", - "desc": "Two of your choice.", - "type": "language", - "parent": "cursed" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 523, - "fields": { - "name": "Suggested Equipment", - "desc": "4 days of rations, one person tent, traveler’s clothes", - "type": "equipment", - "parent": "cursed" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 524, - "fields": { - "name": "Accursed", - "desc": "Whenever you fail at a Deception or Persuasion check, your curse manifests in a manner that you work out with your Narrator ahead of time. The failed check is ignored, and you immediately roll an Intimidation check with which you have expertise, taking the new roll. However, even a successful Intimidation check does not necessarily produce the result you originally intended, as the creatures around you may recoil in fear and distrust. At the Narrator’s discretion, you may keep the expertise die to Intimidation until the end of the scene.", - "type": "feature", - "parent": "cursed" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 525, - "fields": { - "name": "Adventures and Advancement", - "desc": "The entity responsible for your curse may press you to complete specific tasks, such as transporting a mysterious item, defeating a hated enemy, or stealing important documents. Work with your Narrator to determine how your curse is leveraged in these situations. After you complete several such tasks, your infamy grows. You are known by all people within 100 miles of your Prestige Center, many of whom hold you in fearful respect. You and your companions are given a moderate lifestyle in settlements within this area by those who dare not risk your curse.", - "type": "adventures_and_advancement", - "parent": "cursed" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 526, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cursed Connections\r\n1. Your parent who made the deal and left you cursed for their own ends.\r\n2. A cultist devoted to the entity that cursed you and who reveres you as well.\r\n3. Your childhood romantic interest, ultimately marked in some way by your curse.\r\n4. A childhood friend who pulled away from you when they realized you were cursed.\r\n5. The entity that cursed you.\r\n6. A priest or sage who tried—and failed—to break your curse years ago.\r\n7. The kindly family that took you in out of pity.\r\n8. The law enforcers who see you as a dangerous troublemaker.\r\n9. Another accursed individual with whom you sometimes commiserate.\r\n10. A scholar or researcher obsessed with the entity that cursed you.\r\n\r\n### Cursed Memento\r\n1. A locket or ring once owned by someone who was killed when your curse first manifested.\r\n2. A childhood toy, well worn, which has always been soothing.\r\n3. A torn piece of parchment which may lead you to the person who can break your curse.\r\n4. A weapon or piece of ammunition set aside for the entity that cursed you.\r\n5. A unique scar, discoloration, or other mark on your body which shows your curse.\r\n6. Nightmares brought on by the curse which often wake you, screaming.\r\n7. A charm meant to keep your curse contained. You haven’t noticed an effect.\r\n8. An artistic rendering of the entity that cursed you\r\n9. A flask once given to you as well-meaning consolation.\r\n10. A small knife you used as a child to protect yourself, because no one else would.", - "type": "connection_and_memento", - "parent": "cursed" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 527, - "fields": { - "name": "Ability Score Increase", - "desc": "+1 Wisdom and one other ability score of your choice.", - "type": "ability_score", - "parent": "haunted" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 528, - "fields": { - "name": "Skill Proficiencies", - "desc": "Religion, and any one skill of your choice that the spirit has imparted to you.", - "type": "skill_proficiency", - "parent": "haunted" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 529, - "fields": { - "name": "Languages", - "desc": "Two of your choice, one of which is the spirit’s native language.", - "type": "language", - "parent": "haunted" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 530, - "fields": { - "name": "Suggested Equipment", - "desc": "2 days worth of rations, bell, 5 candles, ink, ink pen, 10 sheets of paper, 5 pieces of chalk, traveler’s clothes", - "type": "equipment", - "parent": "haunted" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 531, - "fields": { - "name": "Silent Aid", - "desc": "Being in tune with your spirit allows them to point out something you might have missed, if only for their own purposes. You gain a +2 to your choice of your passive Perception, Investigation, or Insight score, depending on your spirit’s skills.\r\nIf you banish, free, or otherwise lose your spirit, consult with the Narrator to choose an appropriate feature from another background. Alternatively, the Narrator may rule that you’ve become a beacon for the supernatural and another spirit has taken up haunting you.", - "type": "feature", - "parent": "haunted" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 532, - "fields": { - "name": "Adventures and Advancement", - "desc": "Whether you seek to violently banish the restless dead or help them to peacefully pass on, you will gain a reputation as a spirit-speaker. Common folk and nobility alike are likely to approach you for advice and aid with everything from hereditary curses to irritable poltergeists to speaking with a dead relative about a lost treasure.\r\nAfter you have solved several such problems, you’ve become known to those who deal in certain kinds of esoteric knowledge and gain access to their private libraries. These vast personal collections contain esoteric mysteries, such as those answerable with a DC 25 Arcana, History, or Religion check. While using such a library your host will provide you and your companions a moderate or rich lifestyle, depending on their means and how impressed they are by your exploits.", - "type": "adventures_and_advancement", - "parent": "haunted" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 533, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Haunted Connections\r\n1. A descendant of your spirit who blames them for current misfortunes.\r\n2. Another haunted individual who came to you seeking help with their spirit in a time of crisis.\r\n3. The murderer who killed your spirit.\r\n4. A ghost who has consulted your spirit during a time of need.\r\n5. The bereaved spouse your spirit left behind who will do nearly anything to speak with their lost love.\r\n6. Your spirit, a childhood friend or a romantic partner before tragedy struck.\r\n7. Your spirits, a gaggle of bickering ancestors trying to use you to right a terrible wrong.\r\n8. A relative of your spirit who killed them in order to inherit a fortune.\r\n9. Your spirit, a hateful enemy of your family who is bound to you through a quirk of misfortune.\r\n10. Your spirit, who haunts their own body after you stole it and took up residence.\r\n\r\n### Haunted Memento\r\n1. A personal item (jewelry, tools, weapon, ect) once owned by your spirit. You can’t seem to get rid of it.\r\n2. A locket containing the image of the one who haunts you.\r\n3. The scent of your spirit’s favored cologne or perfume that clings to you.\r\n4. A small pouch of soil taken from your spirit’s grave.\r\n5. A letter of introduction penned by your spirit, giving you their blessing.\r\n6. Journals of your spirit’s life.\r\n7. An innocuous nonmagical item that your spirit tells you is of dire importance.\r\n8. The manacles that shackled your spirit before their death.\r\n9. A cryptic note written by your spirit who has no memory of its existence.\r\n10. The signet ring of your spirit, who you claim as your parent or ancestor.", - "type": "connection_and_memento", - "parent": "haunted" - } -} -] +] \ No newline at end of file diff --git a/data/v2/green-ronin/tdcs/Background.json b/data/v2/green-ronin/tdcs/Background.json index f518422e..1fa8ccf6 100644 --- a/data/v2/green-ronin/tdcs/Background.json +++ b/data/v2/green-ronin/tdcs/Background.json @@ -1,47 +1,47 @@ [ -{ - "model": "api_v2.background", - "pk": "crime-syndicate-member", - "fields": { - "name": "Crime Syndicate Member", - "desc": "Whether you grew up in slum-run streets bamboozling foolish gamblers out of their fortune, or spent your youth pilfering loose coin from the pockets of less-attentive travelers, your lifestyle of deceiving-to-survive eventually drew the attention of an organized and dangerous crime syndicate. Offering protection, a modicum of kinship, and a number of useful resources to further develop your craft as a criminal, you agree to receive the syndicate’s brand and join their ranks.\r\nYou might have been working the syndicate’s lower ranks, wandering the alleys as a simple cutpurse to fill the meager coffers with wayward gold until the opportunity arose to climb the professional ladder. Or you may have become a clever actor and liar whose skill in blending in with all facets of society has made you an indispensable agent of information gathering. Perhaps your technique with a blade and swiftness of action led you to become a feared hitman for a syndicate boss, sending you on the occasional contract to snuff the life of some unfortunate soul who crossed them. Regardless, while the threat of the law is ever looming, the advantages to having a foot in such a powerful cartel can greatly outweigh the paranoia.", - "document": "tdcs" + { + "model": "api_v2.background", + "pk": "tdcs_crime-syndicate-member", + "fields": { + "name": "Crime Syndicate Member", + "desc": "Whether you grew up in slum-run streets bamboozling foolish gamblers out of their fortune, or spent your youth pilfering loose coin from the pockets of less-attentive travelers, your lifestyle of deceiving-to-survive eventually drew the attention of an organized and dangerous crime syndicate. Offering protection, a modicum of kinship, and a number of useful resources to further develop your craft as a criminal, you agree to receive the syndicate’s brand and join their ranks.\r\nYou might have been working the syndicate’s lower ranks, wandering the alleys as a simple cutpurse to fill the meager coffers with wayward gold until the opportunity arose to climb the professional ladder. Or you may have become a clever actor and liar whose skill in blending in with all facets of society has made you an indispensable agent of information gathering. Perhaps your technique with a blade and swiftness of action led you to become a feared hitman for a syndicate boss, sending you on the occasional contract to snuff the life of some unfortunate soul who crossed them. Regardless, while the threat of the law is ever looming, the advantages to having a foot in such a powerful cartel can greatly outweigh the paranoia.", + "document": "tdcs" + } + }, + { + "model": "api_v2.background", + "pk": "tdcs_elemental-warden", + "fields": { + "name": "Elemental Warden", + "desc": "Away from the complex political struggles of the massive cities, you’ve instead been raised to revere and uphold the protection of the natural world, while policing, bending, and guiding the elemental powers that either foster life or destroy it. Living among smaller bands of tribal societies means you have stronger ties to your neighbors than most, and the protection of this way of life is of cardinal importance. Each elemental warden is tethered to one of the four elemental tribes and their villages. You must select one: Fire, Water, Earth, or Wind.\r\nYour upbringing may have prepared you to be a fierce warrior, trained in combat to defend your culture and charge as protectors of the rifts. It’s possible your meditation on the balance of the elements has brought you peace of mind with strength of body as a monk. Perhaps you found strength in bending the elements yourself, joining the ranks of the powerful elemental druids. Regardless, your loyalties ultimately lie with the continued safety of your tribe, and you’ve set out to gather allies to your cause and learn more about the world around you.", + "document": "tdcs" + } + }, + { + "model": "api_v2.background", + "pk": "tdcs_fate-touched", + "fields": { + "name": "Fate-Touched", + "desc": "Many lives and many souls find their ways through the patterns of fate and destiny, their threads following the path meant for them, oblivious and eager to be a part of the woven essence of history meant for them. Some souls, however, glide forth with mysterious influence, their threads bending the weave around them, toward them, unknowingly guiding history itself wherever they walk. Events both magnificent and catastrophic tend to follow such individuals. These souls often become great rulers and terrible tyrants, powerful mages, religious leaders, and legendary heroes of lore. These are the fate-touched.\nFew fate-touched ever become aware of their prominent nature. Outside of powerful divination magics, it’s extremely difficult to confirm one as fate-touched. There are many communities that regard the status as a terrible omen, treating a confirmed fate-touched with mistrust and fear. Others seek them as a blessing, rallying around them for guidance. Some of renown and power grow jealous, wishing to bend a fate-touched beneath their will, and some stories speak of mages of old attempting to extract or transfer the essence itself.\nPlayers are not intended to select this background, but this is instead provided for the dungeon master to consider for one or more of their players, or perhaps a prominent NPC, as their campaign unfolds. It provides very minor mechanical benefit, but instead adds an element of lore, importance, and fate-bearing responsibility to a character within your story. Being fate-touched overlaps and co-exists with the character’s current background, only adding to their mystique. Consider it for a player character who would benefit from being put more central to the coming conflicts of your adventure, or for an NPC who may require protection as they come into their destiny. Perhaps consider a powerful villain discovering their fate-twisting nature and using it to wreak havoc. All of these possibilities and more can be explored should you choose to include a fate-touched within your campaign.", + "document": "tdcs" + } + }, + { + "model": "api_v2.background", + "pk": "tdcs_lyceum-student", + "fields": { + "name": "Lyceum Student", + "desc": "You most likely came up through money or a family of social prestige somewhere in the world, as tuition at a lyceum is not inexpensive. Your interests and pursuits have brought you to the glittering halls of a place of learning, soaking in all and every lesson you can to better make your mark on the world (or at least you should be, but every class has its slackers). However, the call to adventure threatens to pull you from your studies, and now the challenge of balancing your education with the tide of destiny sweeping you away is looming.\r\nYou may have come to better research and understand the history and lore of the lands you now call home, perhaps seeking a future here at your lyceum as a professor. You could also have been drawn by the promise of prosperity in politics, learning the inner workings of government and alliances to better position yourself as a future writer of history. Perhaps you’ve discovered a knack for the arcane, coming here to focus on refining your spellcraft in the footsteps of some of the finest wizards and sorcerers in days of yore.", + "document": "tdcs" + } + }, + { + "model": "api_v2.background", + "pk": "tdcs_recovered-cultist", + "fields": { + "name": "Recovered Cultist", + "desc": "Dark deities whisper and promise great power to those who listen. Their cults are scattered and separated, with little to no unity between the greater evils. Hidden hierarchies of power-hungry mortals corrupt and seduce, promising a sliver of the same power they had been promised when the time comes to reap their harvest.\r\nYou once belonged to such a cult. Perhaps it was brief, embracing the rebellious spirit of youth and curious where this path may take you. You also may have felt alone and lost, this community offering a welcome you had been subconsciously seeking. It’s possible you were raised from the beginning to pray to the gods of shadow and death. Then one day the veil was lifted and the cruel truth shook your faith, sending you running from the false promises and seeking redemption.\r\nYou have been freed from the bindings of these dangerous philosophies, but few secret societies find comfort until those who abandon their way are rotting beneath the soil.", + "document": "tdcs" + } } -}, -{ - "model": "api_v2.background", - "pk": "elemental-warden", - "fields": { - "name": "Elemental Warden", - "desc": "Away from the complex political struggles of the massive cities, you’ve instead been raised to revere and uphold the protection of the natural world, while policing, bending, and guiding the elemental powers that either foster life or destroy it. Living among smaller bands of tribal societies means you have stronger ties to your neighbors than most, and the protection of this way of life is of cardinal importance. Each elemental warden is tethered to one of the four elemental tribes and their villages. You must select one: Fire, Water, Earth, or Wind.\r\nYour upbringing may have prepared you to be a fierce warrior, trained in combat to defend your culture and charge as protectors of the rifts. It’s possible your meditation on the balance of the elements has brought you peace of mind with strength of body as a monk. Perhaps you found strength in bending the elements yourself, joining the ranks of the powerful elemental druids. Regardless, your loyalties ultimately lie with the continued safety of your tribe, and you’ve set out to gather allies to your cause and learn more about the world around you.", - "document": "tdcs" - } -}, -{ - "model": "api_v2.background", - "pk": "fate-touched", - "fields": { - "name": "Fate-Touched", - "desc": "Many lives and many souls find their ways through the patterns of fate and destiny, their threads following the path meant for them, oblivious and eager to be a part of the woven essence of history meant for them. Some souls, however, glide forth with mysterious influence, their threads bending the weave around them, toward them, unknowingly guiding history itself wherever they walk. Events both magnificent and catastrophic tend to follow such individuals. These souls often become great rulers and terrible tyrants, powerful mages, religious leaders, and legendary heroes of lore. These are the fate-touched.\nFew fate-touched ever become aware of their prominent nature. Outside of powerful divination magics, it’s extremely difficult to confirm one as fate-touched. There are many communities that regard the status as a terrible omen, treating a confirmed fate-touched with mistrust and fear. Others seek them as a blessing, rallying around them for guidance. Some of renown and power grow jealous, wishing to bend a fate-touched beneath their will, and some stories speak of mages of old attempting to extract or transfer the essence itself.\nPlayers are not intended to select this background, but this is instead provided for the dungeon master to consider for one or more of their players, or perhaps a prominent NPC, as their campaign unfolds. It provides very minor mechanical benefit, but instead adds an element of lore, importance, and fate-bearing responsibility to a character within your story. Being fate-touched overlaps and co-exists with the character’s current background, only adding to their mystique. Consider it for a player character who would benefit from being put more central to the coming conflicts of your adventure, or for an NPC who may require protection as they come into their destiny. Perhaps consider a powerful villain discovering their fate-twisting nature and using it to wreak havoc. All of these possibilities and more can be explored should you choose to include a fate-touched within your campaign.", - "document": "tdcs" - } -}, -{ - "model": "api_v2.background", - "pk": "lyceum-student", - "fields": { - "name": "Lyceum Student", - "desc": "You most likely came up through money or a family of social prestige somewhere in the world, as tuition at a lyceum is not inexpensive. Your interests and pursuits have brought you to the glittering halls of a place of learning, soaking in all and every lesson you can to better make your mark on the world (or at least you should be, but every class has its slackers). However, the call to adventure threatens to pull you from your studies, and now the challenge of balancing your education with the tide of destiny sweeping you away is looming.\r\nYou may have come to better research and understand the history and lore of the lands you now call home, perhaps seeking a future here at your lyceum as a professor. You could also have been drawn by the promise of prosperity in politics, learning the inner workings of government and alliances to better position yourself as a future writer of history. Perhaps you’ve discovered a knack for the arcane, coming here to focus on refining your spellcraft in the footsteps of some of the finest wizards and sorcerers in days of yore.", - "document": "tdcs" - } -}, -{ - "model": "api_v2.background", - "pk": "recovered-cultist", - "fields": { - "name": "Recovered Cultist", - "desc": "Dark deities whisper and promise great power to those who listen. Their cults are scattered and separated, with little to no unity between the greater evils. Hidden hierarchies of power-hungry mortals corrupt and seduce, promising a sliver of the same power they had been promised when the time comes to reap their harvest.\r\nYou once belonged to such a cult. Perhaps it was brief, embracing the rebellious spirit of youth and curious where this path may take you. You also may have felt alone and lost, this community offering a welcome you had been subconsciously seeking. It’s possible you were raised from the beginning to pray to the gods of shadow and death. Then one day the veil was lifted and the cruel truth shook your faith, sending you running from the false promises and seeking redemption.\r\nYou have been freed from the bindings of these dangerous philosophies, but few secret societies find comfort until those who abandon their way are rotting beneath the soil.", - "document": "tdcs" - } -} -] +] \ No newline at end of file diff --git a/data/v2/green-ronin/tdcs/BackgroundBenefit.json b/data/v2/green-ronin/tdcs/BackgroundBenefit.json index 958db6ab..1193a926 100644 --- a/data/v2/green-ronin/tdcs/BackgroundBenefit.json +++ b/data/v2/green-ronin/tdcs/BackgroundBenefit.json @@ -1,232 +1,232 @@ [ -{ - "model": "api_v2.backgroundbenefit", - "pk": 497, - "fields": { - "name": "Skill Proficiencies", - "desc": "Deception, plus your choice of one between Sleight of Hand or Stealth.", - "type": "skill_proficiency", - "parent": "crime-syndicate-member" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 498, - "fields": { - "name": "Languages", - "desc": "Thieves’ Cant", - "type": "language", - "parent": "crime-syndicate-member" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 499, - "fields": { - "name": "Tool Proficiencies", - "desc": "Your choice of one from Thieves’ Tools, Forgery Kit, or Disguise Kit.", - "type": "tool_proficiency", - "parent": "crime-syndicate-member" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 500, - "fields": { - "name": "Equipment", - "desc": "A set of dark common clothes including a hood, a set of tools to match your choice of tool proficiency, and a belt pouch containing 10g.", - "type": "equipment", - "parent": "crime-syndicate-member" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 501, - "fields": { - "name": "A Favor In Turn", - "desc": "You have gained enough clout within the syndicate that you can call in a favor from your contacts, should you be close enough to a center of syndicate activity. A request for a favor can be no longer than 20 words, and is passed up the chain to an undisclosed syndicate boss for approval. This favor can take a shape up to the DM’s discretion depending on the request, with varying speeds of fulfillment: If muscle is requested, an NPC syndicate minion can temporarily aid the party. If money is needed, a small loan can be provided. If you’ve been imprisoned, they can look into breaking you free, or paying off the jailer.\r\nThe turn comes when a favor is asked to be repaid. The favor debt can be called in without warning, and many times with intended immediacy. Perhaps the player is called to commit a specific burglary without the option to decline. Maybe they must press a dignitary for a specific secret at an upcoming ball. The syndicate could even request a hit on an NPC, no questions asked or answered. The DM is to provide a debt call proportionate to the favor fulfilled. If a favor is not repaid within a reasonable period of time, membership to the crime syndicate can be revoked, and if the debt is large enough, the player may become the next hit contract to make the rounds.", - "type": "feature", - "parent": "crime-syndicate-member" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 502, - "fields": { - "name": "Suggested Characteristics", - "desc": "Use the tables for the Criminal background in the PHB as the basis for your traits and motivations, modifying the entries when appropriate to suit your identity as a member of a crime syndicate. Your bond is likely associated with your fellow syndicate members or the individual who introduced you to the organization. Your ideal probably involves establishing your importance and indispensability within the syndicate. You joined to improve your livelihood and sense of purpose.", - "type": "suggested_characteristics", - "parent": "crime-syndicate-member" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 503, - "fields": { - "name": "Skill Proficiencies", - "desc": "Your choice of two from among Arcana, History, and Persuasion.", - "type": "skill_proficiency", - "parent": "lyceum-student" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 504, - "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", - "parent": "lyceum-student" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 505, - "fields": { - "name": "Equipment", - "desc": "A set of fine clothes, a lyceum student uniform, a writing kit (small pouch with a quill, ink, folded parchment, and a small penknife), and a belt pouch containing 10g.", - "type": "equipment", - "parent": "lyceum-student" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 506, - "fields": { - "name": "Student Privilege", - "desc": "You’ve cleared enough lessons, and gained an ally or two on staff, to have access to certain chambers within the lyceum (and some other allied universities) that outsiders would not. This allows use of any Tool Kit, so long as the Tool Kit is used on the grounds of the lyceum and is not removed from its respective chamber (each tool kit is magically marked and will sound an alarm if removed). More dangerous kits and advanced crafts (such as use of a Poisoner’s Kit, or the enchanting of a magical item) might require staff supervision. You may also have access to free crafting materials and enchanting tables, so long as they are relatively inexpensive, or your argument for them is convincing (up to the staff’s approval and DM’s discretion).", - "type": "feature", - "parent": "lyceum-student" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 507, - "fields": { - "name": "Suggested Characteristics", - "desc": "Use the tables for the Sage background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your pursuits at the lyceum. Your bond is likely associated with your goals as a student, and eventually a graduate. Your ideal probably involves your hopes in using the knowledge you gain at the lyceum, and your travels as an adventurer, to tailor the world to your liking.", - "type": "suggested_characteristics", - "parent": "lyceum-student" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 508, - "fields": { - "name": "Skill Proficiencies", - "desc": "Nature, plus your choice of one between Arcana or Survival.", - "type": "skill_proficiency", - "parent": "elemental-warden" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 509, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "elemental-warden" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 510, - "fields": { - "name": "Tool Proficiencies", - "desc": "Herbalism Kit", - "type": "tool_proficiency", - "parent": "elemental-warden" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 511, - "fields": { - "name": "Equipment", - "desc": "A staff, hunting gear (a shortbow with 20 arrows, or a hunting trap), a set of traveler’s clothes, a belt pouch containing 10 gp.", - "type": "equipment", - "parent": "elemental-warden" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 512, - "fields": { - "name": "Elemental Harmony", - "desc": "Your upbringing surrounded by such strong, wild elemental magics has attuned your senses to the very nature of their chaotic forces, enabling you to subtly bend them to your will in small amounts. You learn the _Prestidigitation_ Cantrip, but can only produce the extremely minor effects below that involve the element of your chosen elemental tribe: \r\n* You create an instantaneous puff of wind strong enough to blow papers off a desk, or mess up someone’s hair (Wind). \r\n* You instantaneously create and control a burst of flame small enough to light or snuff out a candle, a torch, or a small campfire. (Fire). \r\n* You instantaneously create a small rock within your hand, no larger than a gold coin, that turns to dust after a minute (Earth). \r\n* You instantaneously create enough hot or cold water to fill a small glass (Water).", - "type": "feature", - "parent": "elemental-warden" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 513, - "fields": { - "name": "Suggested Characteristics", - "desc": "Use the tables for the Outlander background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your ties to your upbringing. Your bond is likely associated with those you respect whom you grew up around. Your ideal probably involves your wanting to understand your place in the world, not just the tribe, and whether you feel your destiny reaches beyond just watching the rift.", - "type": "suggested_characteristics", - "parent": "elemental-warden" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 514, - "fields": { - "name": "Skill Proficiencies", - "desc": "Religion and Deception.", - "type": "skill_proficiency", - "parent": "recovered-cultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 515, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "recovered-cultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 516, - "fields": { - "name": "Equipment", - "desc": "Vestments and a holy symbol of your previous cult, a set of common clothes, a belt pouch containing 15 gp.", - "type": "equipment", - "parent": "recovered-cultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 517, - "fields": { - "name": "Wicked Awareness", - "desc": "Your time worshipping in secrecy and shadow at the altar of malevolent forces has left you with insight and keen awareness to those who still operate in such ways. You can often spot hidden signs, messages, and signals left in populated places. If actively seeking signs of a cult or dark following, you have an easier time locating and decoding the signs or social interactions that signify cult activity, gaining advantage on any ability checks to discover such details.", - "type": "feature", - "parent": "recovered-cultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 518, - "fields": { - "name": "Suggested Characteristics", - "desc": "Use the tables for the Acolyte background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your ties to your intent on fleeing your past and rectifying your future. Your bond is likely associated with those who gave you the insight and strength to flee your old ways. Your ideal probably involves your wishing to take down and destroy those who promote the dark ways you escaped, and perhaps finding new faith in a forgiving god.", - "type": "suggested_characteristics", - "parent": "recovered-cultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 519, - "fields": { - "name": "Fortune’s Grace", - "desc": "Your fate-touched essence occasionally leads surrounding events to shift in your favor. You gain 1 Luck point, as per the Lucky feat outlined within the Player’s Handbook pg 167. This luck point is used in the same fashion as the feat, and you regain this expended luck point when you finish a long rest. If you already have the Lucky feat, you add this luck point to your total for the feat.", - "type": "feature", - "parent": "fate-touched" - } -} -] + { + "model": "api_v2.backgroundbenefit", + "pk": 497, + "fields": { + "name": "Skill Proficiencies", + "desc": "Deception, plus your choice of one between Sleight of Hand or Stealth.", + "type": "skill_proficiency", + "parent": "tdcs_crime-syndicate-member" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 498, + "fields": { + "name": "Languages", + "desc": "Thieves’ Cant", + "type": "language", + "parent": "tdcs_crime-syndicate-member" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 499, + "fields": { + "name": "Tool Proficiencies", + "desc": "Your choice of one from Thieves’ Tools, Forgery Kit, or Disguise Kit.", + "type": "tool_proficiency", + "parent": "tdcs_crime-syndicate-member" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 500, + "fields": { + "name": "Equipment", + "desc": "A set of dark common clothes including a hood, a set of tools to match your choice of tool proficiency, and a belt pouch containing 10g.", + "type": "equipment", + "parent": "tdcs_crime-syndicate-member" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 501, + "fields": { + "name": "A Favor In Turn", + "desc": "You have gained enough clout within the syndicate that you can call in a favor from your contacts, should you be close enough to a center of syndicate activity. A request for a favor can be no longer than 20 words, and is passed up the chain to an undisclosed syndicate boss for approval. This favor can take a shape up to the DM’s discretion depending on the request, with varying speeds of fulfillment: If muscle is requested, an NPC syndicate minion can temporarily aid the party. If money is needed, a small loan can be provided. If you’ve been imprisoned, they can look into breaking you free, or paying off the jailer.\r\nThe turn comes when a favor is asked to be repaid. The favor debt can be called in without warning, and many times with intended immediacy. Perhaps the player is called to commit a specific burglary without the option to decline. Maybe they must press a dignitary for a specific secret at an upcoming ball. The syndicate could even request a hit on an NPC, no questions asked or answered. The DM is to provide a debt call proportionate to the favor fulfilled. If a favor is not repaid within a reasonable period of time, membership to the crime syndicate can be revoked, and if the debt is large enough, the player may become the next hit contract to make the rounds.", + "type": "feature", + "parent": "tdcs_crime-syndicate-member" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 502, + "fields": { + "name": "Suggested Characteristics", + "desc": "Use the tables for the Criminal background in the PHB as the basis for your traits and motivations, modifying the entries when appropriate to suit your identity as a member of a crime syndicate. Your bond is likely associated with your fellow syndicate members or the individual who introduced you to the organization. Your ideal probably involves establishing your importance and indispensability within the syndicate. You joined to improve your livelihood and sense of purpose.", + "type": "suggested_characteristics", + "parent": "tdcs_crime-syndicate-member" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 503, + "fields": { + "name": "Skill Proficiencies", + "desc": "Your choice of two from among Arcana, History, and Persuasion.", + "type": "skill_proficiency", + "parent": "tdcs_lyceum-student" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 504, + "fields": { + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "tdcs_lyceum-student" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 505, + "fields": { + "name": "Equipment", + "desc": "A set of fine clothes, a lyceum student uniform, a writing kit (small pouch with a quill, ink, folded parchment, and a small penknife), and a belt pouch containing 10g.", + "type": "equipment", + "parent": "tdcs_lyceum-student" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 506, + "fields": { + "name": "Student Privilege", + "desc": "You’ve cleared enough lessons, and gained an ally or two on staff, to have access to certain chambers within the lyceum (and some other allied universities) that outsiders would not. This allows use of any Tool Kit, so long as the Tool Kit is used on the grounds of the lyceum and is not removed from its respective chamber (each tool kit is magically marked and will sound an alarm if removed). More dangerous kits and advanced crafts (such as use of a Poisoner’s Kit, or the enchanting of a magical item) might require staff supervision. You may also have access to free crafting materials and enchanting tables, so long as they are relatively inexpensive, or your argument for them is convincing (up to the staff’s approval and DM’s discretion).", + "type": "feature", + "parent": "tdcs_lyceum-student" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 507, + "fields": { + "name": "Suggested Characteristics", + "desc": "Use the tables for the Sage background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your pursuits at the lyceum. Your bond is likely associated with your goals as a student, and eventually a graduate. Your ideal probably involves your hopes in using the knowledge you gain at the lyceum, and your travels as an adventurer, to tailor the world to your liking.", + "type": "suggested_characteristics", + "parent": "tdcs_lyceum-student" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 508, + "fields": { + "name": "Skill Proficiencies", + "desc": "Nature, plus your choice of one between Arcana or Survival.", + "type": "skill_proficiency", + "parent": "tdcs_elemental-warden" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 509, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "tdcs_elemental-warden" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 510, + "fields": { + "name": "Tool Proficiencies", + "desc": "Herbalism Kit", + "type": "tool_proficiency", + "parent": "tdcs_elemental-warden" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 511, + "fields": { + "name": "Equipment", + "desc": "A staff, hunting gear (a shortbow with 20 arrows, or a hunting trap), a set of traveler’s clothes, a belt pouch containing 10 gp.", + "type": "equipment", + "parent": "tdcs_elemental-warden" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 512, + "fields": { + "name": "Elemental Harmony", + "desc": "Your upbringing surrounded by such strong, wild elemental magics has attuned your senses to the very nature of their chaotic forces, enabling you to subtly bend them to your will in small amounts. You learn the _Prestidigitation_ Cantrip, but can only produce the extremely minor effects below that involve the element of your chosen elemental tribe: \r\n* You create an instantaneous puff of wind strong enough to blow papers off a desk, or mess up someone’s hair (Wind). \r\n* You instantaneously create and control a burst of flame small enough to light or snuff out a candle, a torch, or a small campfire. (Fire). \r\n* You instantaneously create a small rock within your hand, no larger than a gold coin, that turns to dust after a minute (Earth). \r\n* You instantaneously create enough hot or cold water to fill a small glass (Water).", + "type": "feature", + "parent": "tdcs_elemental-warden" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 513, + "fields": { + "name": "Suggested Characteristics", + "desc": "Use the tables for the Outlander background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your ties to your upbringing. Your bond is likely associated with those you respect whom you grew up around. Your ideal probably involves your wanting to understand your place in the world, not just the tribe, and whether you feel your destiny reaches beyond just watching the rift.", + "type": "suggested_characteristics", + "parent": "tdcs_elemental-warden" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 514, + "fields": { + "name": "Skill Proficiencies", + "desc": "Religion and Deception.", + "type": "skill_proficiency", + "parent": "tdcs_recovered-cultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 515, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "tdcs_recovered-cultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 516, + "fields": { + "name": "Equipment", + "desc": "Vestments and a holy symbol of your previous cult, a set of common clothes, a belt pouch containing 15 gp.", + "type": "equipment", + "parent": "tdcs_recovered-cultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 517, + "fields": { + "name": "Wicked Awareness", + "desc": "Your time worshipping in secrecy and shadow at the altar of malevolent forces has left you with insight and keen awareness to those who still operate in such ways. You can often spot hidden signs, messages, and signals left in populated places. If actively seeking signs of a cult or dark following, you have an easier time locating and decoding the signs or social interactions that signify cult activity, gaining advantage on any ability checks to discover such details.", + "type": "feature", + "parent": "tdcs_recovered-cultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 518, + "fields": { + "name": "Suggested Characteristics", + "desc": "Use the tables for the Acolyte background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your ties to your intent on fleeing your past and rectifying your future. Your bond is likely associated with those who gave you the insight and strength to flee your old ways. Your ideal probably involves your wishing to take down and destroy those who promote the dark ways you escaped, and perhaps finding new faith in a forgiving god.", + "type": "suggested_characteristics", + "parent": "tdcs_recovered-cultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 519, + "fields": { + "name": "Fortune’s Grace", + "desc": "Your fate-touched essence occasionally leads surrounding events to shift in your favor. You gain 1 Luck point, as per the Lucky feat outlined within the Player’s Handbook pg 167. This luck point is used in the same fashion as the feat, and you regain this expended luck point when you finish a long rest. If you already have the Lucky feat, you add this luck point to your total for the feat.", + "type": "feature", + "parent": "tdcs_fate-touched" + } + } +] \ No newline at end of file diff --git a/data/v2/kobold-press/toh/Background.json b/data/v2/kobold-press/toh/Background.json index 43df7ec0..e44fe6b1 100644 --- a/data/v2/kobold-press/toh/Background.json +++ b/data/v2/kobold-press/toh/Background.json @@ -1,173 +1,173 @@ [ -{ - "model": "api_v2.background", - "pk": "court-servant", - "fields": { - "name": "Court Servant", - "desc": "Even though you are independent now, you were once a servant to a merchant, noble, regent, or other person of high station. You are an expert in complex social dynamics and knowledgeable in the history and customs of courtly life. Work with your GM to determine whom you served and why you are no longer a servant: did your master or masters retire and no longer require servants, did you resign from the service of a harsh master, did the court you served fall to a neighboring empire, or did something else happen?", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "desert-runner", - "fields": { - "name": "Desert Runner", - "desc": "You grew up in the desert. As a nomad, you moved from place to place, following the caravan trails. Your upbringing makes you more than just accustomed to desert living—you thrive there. Your family has lived in the desert for centuries, and you know more about desert survival than life in the towns and cities.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "destined", - "fields": { - "name": "Destined", - "desc": "Duty is a complicated, tangled affair, be it filial, political, or civil. Sometimes, there's wealth and intrigue involved, but more often than not, there's also obligation and responsibility. You are a person with just such a responsibility. This could involve a noble title, an arranged marriage, a family business you're expected to administer, or an inherited civil office. You promised to fulfill this responsibility, you are desperately trying to avoid this duty, or you might even be seeking the person intended to be at your side. Regardless of the reason, you're on the road, heading toward or away from your destiny.\r\n\r\n### Destiny\r\nYou're a person who's running from something or hurtling headfirst towards something, but just what is it? The responsibility or event might be happily anticipated or simply dreaded; either way, you're committed to the path. Choose a destiny or roll a d8 and consult the table below.\r\n\r\n| d8 | Destiny |\r\n|---|---|\r\n| 1 | You are running away from a marriage. |\r\n| 2 | You are seeking your runaway betrothed. |\r\n| 3 | You don't want to take over your famous family business. |\r\n| 4 | You need to arrive at a religious site at a specific time to complete an event or prophecy. |\r\n| 5 | Your noble relative died, and you're required to take their vacant position. |\r\n| 6 | You are the reincarnation of a famous figure, and you're expected to live in an isolated temple. |\r\n| 7 | You were supposed to serve an honorary but dangerous position in your people's military. |\r\n| 8 | Members of your family have occupied a civil office (court scribe, sheriff, census official, or similar) for generations. |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "diplomat", - "fields": { - "name": "Diplomat", - "desc": "You have always found harmonious solutions to conflict. You might have started mediating family conflicts as a child. When you were old enough to recognize aggression, you sought to defuse it. You often resolved disputes among neighbors, arriving at a fair middle ground satisfactory to all parties.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "forest-dweller", - "fields": { - "name": "Forest Dweller", - "desc": "You are a creature of the forest, born and reared under a canopy of green. You expected to live all your days in the forest, at one with the green things of the world, until an unforeseen occurrence, traumatic or transformative, drove you from your familiar home and into the larger world. Civilization is strange to you, the open sky unfamiliar, and the bizarre ways of the so-called civilized world run counter to the truths of the natural world.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "former-adventurer", - "fields": { - "name": "Former Adventurer", - "desc": "As you belted on your weapons and hoisted the pack onto your back, you never thought you'd become an adventurer again. But the heroic call couldn't be ignored. You've tried this once before—perhaps it showered you in wealth and glory or perhaps it ended with sorrow and regret. No one ever said adventuring came with a guarantee of success. Now, the time has come to set off toward danger once again. The reasons for picking up adventuring again vary. Could it be a calamitous threat to the town? The region? The world? Was the settled life not what you expected? Or did your past finally catch up to you? In the end, all that matters is diving back into danger. And it's time to show these new folks how it's done.\r\n\r\n### Reason for Retirement\r\nGiving up your first adventuring career was a turning point in your life. Triumph or tragedy, the reason why you gave it up might still haunt you and may shape your actions as you reenter the adventuring life. Choose the event that led you to stop adventuring or roll a d12 and consult the table below.\r\n\r\n| d12 | Event |\r\n|---|---|\r\n| 1 | Your love perished on one of your adventures, and you quit in despair. |\r\n| 2 | You were the only survivor after an ambush by a hideous beast. |\r\n| 3 | Legal entanglements forced you to quit, and they may cause you trouble again. |\r\n| 4 | A death in the family required you to return home. |\r\n| 5 | Your old group disowned you for some reason. |\r\n| 6 | A fabulous treasure allowed you to have a life of luxury, until the money ran out. |\r\n| 7 | An injury forced you to give up adventuring. |\r\n| 8 | You suffered a curse which doomed your former group, but the curse has finally faded away. |\r\n| 9 | You rescued a young child or creature and promised to care for them. They have since grown up and left. |\r\n| 10 | You couldn't master your fear and fled from a dangerous encounter, never to return. |\r\n| 11 | As a reward for helping an area, you were offered a position with the local authorities, and you accepted. |\r\n| 12 | You killed or defeated your nemesis. Now they are back, and you must finish the job. |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "freebooter", - "fields": { - "name": "Freebooter", - "desc": "You sailed the seas as a freebooter, part of a pirate crew. You should come up with a name for your former ship and its captain, as well as its hunting ground and the type of ships you preyed on. Did you sail under the flag of a bloodthirsty captain, raiding coastal communities and putting everyone to the sword? Or were you part of a group of former slaves turned pirates, who battle to end the vile slave trade? Whatever ship you sailed on, you feel at home on board a seafaring vessel, and you have difficulty adjusting to long periods on dry land.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "gamekeeper", - "fields": { - "name": "Gamekeeper", - "desc": "You are at home in natural environments, chasing prey or directing less skilled hunters in the best ways to track game through the brush. You know the requirements for encouraging a herd to grow, and you know what sustainable harvesting from a herd involves. You can train a hunting beast to recognize an owner and perform a half-dozen commands, given the time. You also know the etiquette for engaging nobility or other members of the upper classes, as they regularly seek your services, and you can carry yourself in a professional manner in such social circles.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "innkeeper", - "fields": { - "name": "Innkeeper", - "desc": "You spent some time as an innkeeper, tavern keeper, or perhaps a bartender. It might have been in a small crossroads town, a fishing community, a fine caravanserai, or a large cosmopolitan community. You did it all; preparing food, tracking supplies, tapping kegs, and everything in between. All the while, you listened to the adventurers plan their quests, heard their tales, saw their amazing trophies, marveled at their terrible scars, and eyed their full purses. You watched them come and go, thinking, \"one day, I will have my chance.\" Your time is now.\r\n\r\n### Place of Employment\r\nWhere did you work before turning to the adventuring life? Choose an establishment or roll a d6 and consult the table below. Once you have this information, think about who worked with you, what sort of customers you served, and what sort of reputation your establishment had.\r\n\r\n| d6 | Establishment |\r\n|---|---|\r\n| 1 | Busy crossroads inn |\r\n| 2 | Disreputable tavern full of scum and villainy |\r\n| 3 | Caravanserai on a wide-ranging trade route |\r\n| 4 | Rough seaside pub |\r\n| 5 | Hostel serving only the wealthiest clientele |\r\n| 6 | Saloon catering to expensive and sometimes dangerous tastes |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "mercenary-company-scion", - "fields": { - "name": "Mercenary Company Scion", - "desc": "You descend from a famous line of free company veterans, and your first memory is playing among the tents, training yards, and war rooms of one campaign or another. Adored or perhaps ignored by your parents, you spent your formative years learning weapons and armor skills from brave captains, camp discipline from burly sergeants, and a host of virtues and vices from the common foot soldiers. You've always been told you are special and destined to glory. The weight of your family's legacy, honor, or reputation can weigh heavily, inspiring you to great deeds, or it can be a factor you try to leave behind.\r\n\r\n### Mercenary Company Reputation\r\nYour family is part of or associated with a mercenary company. The company has a certain reputation that may or may not continue to impact your life. Roll a d8 or choose from the options in the Mercenary Company Reputation table to determine the reputation of this free company.\r\n\r\n| d8 | Mercenary Company Reputation |\r\n|---|---|\r\n| 1 | Infamous. The company's evil deeds follow any who are known to consort with them. |\r\n| 2 | Honest. An upstanding company whose words and oaths are trusted. |\r\n| 3 | Unknown. Few know of this company. Its deeds have yet to be written. |\r\n| 4 | Feared. For good or ill, this company is generally feared on the battlefield. |\r\n| 5 | Mocked. Though it tries hard, the company is the butt of many jokes and derision. |\r\n| 6 | Specialized. This company is known for a specific type of skill on or off the battlefield. |\r\n| 7 | Disliked. For well-known reasons, this company has a bad reputation. |\r\n| 8 | Famous. The company's great feats and accomplishments are known far and wide. |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "mercenary-recruit", - "fields": { - "name": "Mercenary Recruit", - "desc": "Every year, the hopeful strive to earn a place in one of the great mercenary companies. Some of these would-be heroes received training from a mercenary company but needed more training before gaining membership. Others are full members but were selected to venture abroad to gain more experience before gaining a rank. You are one of these hopeful warriors, just beginning to carve your place in the world with blade, spell, or skill.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "monstrous-adoptee", - "fields": { - "name": "Monstrous Adoptee", - "desc": "Songs and sagas tell of heroes who, as children, were raised by creatures most view as monsters. You were one such child. Found, taken, left, or otherwise given to your monstrous parents, you were raised as one of their own species. Life with your adopted family could not have been easy for you, but the adversity and hardships you experienced only made you stronger. Perhaps you were *rescued* from your adopted family after only a short time with them, or perhaps only now have you realized the truth of your heritage. Maybe you've since learned enough civilized behavior to get by, or perhaps your *monstrous* tendencies are more evident. As you set out to make your way in the world, the time you spent with your adopted parents continues to shape your present and your future.\r\n\r\n### Adopted\r\nPrior to becoming an adventurer, you defined your history by the creatures who raised you. Choose a type of creature for your adopted parents or roll a d10 and consult the table below. Work with your GM to determine which specific creature of that type adopted you. If you are of a particular race or species that matches a result on the table, your adopted parent can't be of the same race or species as you, as this background represents an individual raised by a creature or in a culture vastly different or even alien to their birth parents.\r\n\r\n| d10 | Creature Type |\r\n|---|---|\r\n| 1 | Humanoid (such as gnoll, goblin, kobold, or merfolk) |\r\n| 2 | Aberration (such as aboleth, chuul, cloaker, or otyugh) |\r\n| 3 | Beast (such as ape, bear, tyrannosaurus rex, or wolf) |\r\n| 4 | Celestial or fiend (such as balor, bearded devil, couatl, deva, or unicorn) |\r\n| 5 | Dragon (such as dragon turtle, pseudodragon, red dragon, or wyvern) |\r\n| 6 | Elemental (such as efreeti, gargoyle, salamander, or water elemental) |\r\n| 7 | Fey (such as dryad, green hag, satyr, or sprite) |\r\n| 8 | Giant (such as ettin, fire giant, ogre, or troll) |\r\n| 9 | Plant or ooze (such as awakened shrub, gray ooze, shambling mound, or treant) |\r\n| 10 | Monstrosity (such as behir, chimera, griffon, mimic, or minotaur) |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "mysterious-origins", - "fields": { - "name": "Mysterious Origins", - "desc": "Your origins are a mystery even to you. You might recall fragments of your previous life, or you might dream of events that could be memories, but you can't be sure of what is remembered and what is imagined. You recall practical information and facts about the world and perhaps even your name, but your upbringing and life before you lost your memories now exist only in dreams or sudden flashes of familiarity. You can leave the details of your character's past up to your GM or give the GM a specific backstory that your character can't remember. Were you the victim of a spell gone awry, or did you voluntarily sacrifice your memories in exchange for power? Is your amnesia the result of a natural accident, or did you purposefully have your mind wiped in order to forget a memory you couldn't live with? Perhaps you have family or friends that are searching for you or enemies you can't even remember.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "northern-minstrel", - "fields": { - "name": "Northern Minstrel", - "desc": "While the tribal warriors residing in other parts of the wintry north consider you to be soft and cowardly, you know the truth: life in northern cities and mead halls is not for the faint of heart. Whether you are a larger-than-life performer hailing from one of the skaldic schools, a contemplative scholar attempting to puzzle out the mysteries of the north, or a doughty warrior hoping to stave off the bleakness of the north, you have successfully navigated alleys and stages as treacherous as any ice-slicked ruin. You adventure for the thrill of adding new songs to your repertoire, adding new lore to your catalog, and proving false the claims of those so-called true northerners.\r\n\r\n### Skaldic Specialty\r\nEvery minstrel excels at certain types of performance. Choose one specialty or roll a d8 and consult the table below to determine your preferred type of performance.\r\n\r\n| d8 | Specialty |\r\n|---|---|\r\n| 1 | Recitation of epic poetry |\r\n| 2 | Singing |\r\n| 3 | Tale-telling |\r\n| 4 | Flyting (insult flinging) |\r\n| 5 | Yodeling |\r\n| 6 | Axe throwing |\r\n| 7 | Playing an instrument |\r\n| 8 | Fire eating or sword swallowing |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "occultist", - "fields": { - "name": "Occultist", - "desc": "At your core, you are a believer in things others dismiss. The signs abound if you know where to look. Questions beget answers that spur further questions. The cycle is endless as you uncover layer after layer of mystery and secrets. Piercing the veil hiding beyond the surface of reality is an irresistible lure spurring you to delve into forgotten and dangerous places in the world. Perhaps you've always yearned toward the occult, or it could be that you encountered something or someone who opened your eyes to the possibilities. You may belong to some esoteric organization determined to uncover the mystery, a cult bent on using the secrets for a dark purpose, or you may be searching for answers on your own. As an occultist, you ask the questions reality doesn't want to answer.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "parfumier", - "fields": { - "name": "Parfumier", - "desc": "You are educated and ambitious. You spent your youth apprenticed among a city's more reputable greenhouses, laboratories, and perfumeries. There, you studied botany and chemistry and explored properties and interactions with fine crystal, rare metals, and magic. You quickly mastered the skills to identify and process rare and complex botanical and alchemical samples and the proper extractions and infusions of essential oils, pollens, and other fragrant chemical compounds—natural or otherwise. Not all (dramatic) changes to one's lifestyle, calling, or ambitions are a result of social or financial decline. Some are simply decided upon. Regardless of your motivation or incentive for change, you have accepted that a comfortable life of research, science and business is—at least for now—a part of your past.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "scoundrel", - "fields": { - "name": "Scoundrel", - "desc": "You were brought up in a poor neighborhood in a crowded town or city. You may have been lucky enough to have a leaky roof over your head, or perhaps you grew up sleeping in doorways or on the rooftops. Either way, you didn't have it easy, and you lived by your wits. While never a hardened criminal, you fell in with the wrong crowd, or you ended up in trouble for stealing food from an orange cart or clean clothes from a washing line. You're no stranger to the city watch in your hometown and have outwitted or outrun them many times.", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "sentry", - "fields": { - "name": "Sentry", - "desc": "In your youth, the defense of the city, the community, the caravan, or your patron was how you earned your coin. You might have been trained by an old, grizzled city watchman, or you might have been pressed into service by the local magistrate for your superior skills, size, or intellect. However you came to the role, you excelled at defending others. You have a nose for trouble, a keen eye for spotting threats, a strong arm to back it up, and you are canny enough to know when to act. Most importantly, though, you were a peace officer or a protector and not a member of an army which might march to war.\r\n\r\n### Specialization\r\nEach person or location that hires a sentry comes with its own set of unique needs and responsibilities. As a sentry, you fulfilled one of these unique roles. Choose a specialization or roll a d6 and consult the table below to define your expertise as a sentry.\r\n\r\n| d6 | Specialization |\r\n|---|---|\r\n| 1 | City or gate watch |\r\n| 2 | Bodyguard or jailor |\r\n| 3 | Caravan guard |\r\n| 4 | Palace or judicial sentry |\r\n| 5 | Shop guard |\r\n| 6 | Ecclesiastical or temple guard |", - "document": "toh" - } -}, -{ - "model": "api_v2.background", - "pk": "trophy-hunter", - "fields": { - "name": "Trophy Hunter", - "desc": "You hunt the mightiest beasts in the harshest environments, claiming their pelts as trophies and returning them to settled lands for a profit or to decorate your abode. You likely were set on this path since birth, following your parents on safaris and learning from their actions, but you may have instead come to this path as an adult after being swept away by the thrill of dominating the natural world. Many big game hunters pursue their quarry purely for pleasure, as a calming avocation, but others sell their skills to the highest bidder to amass wealth and reputation as a trophy hunter.", - "document": "toh" - } -} -] + { + "model": "api_v2.background", + "pk": "toh_court-servant", + "fields": { + "name": "Court Servant", + "desc": "Even though you are independent now, you were once a servant to a merchant, noble, regent, or other person of high station. You are an expert in complex social dynamics and knowledgeable in the history and customs of courtly life. Work with your GM to determine whom you served and why you are no longer a servant: did your master or masters retire and no longer require servants, did you resign from the service of a harsh master, did the court you served fall to a neighboring empire, or did something else happen?", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_desert-runner", + "fields": { + "name": "Desert Runner", + "desc": "You grew up in the desert. As a nomad, you moved from place to place, following the caravan trails. Your upbringing makes you more than just accustomed to desert living—you thrive there. Your family has lived in the desert for centuries, and you know more about desert survival than life in the towns and cities.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_destined", + "fields": { + "name": "Destined", + "desc": "Duty is a complicated, tangled affair, be it filial, political, or civil. Sometimes, there's wealth and intrigue involved, but more often than not, there's also obligation and responsibility. You are a person with just such a responsibility. This could involve a noble title, an arranged marriage, a family business you're expected to administer, or an inherited civil office. You promised to fulfill this responsibility, you are desperately trying to avoid this duty, or you might even be seeking the person intended to be at your side. Regardless of the reason, you're on the road, heading toward or away from your destiny.\r\n\r\n### Destiny\r\nYou're a person who's running from something or hurtling headfirst towards something, but just what is it? The responsibility or event might be happily anticipated or simply dreaded; either way, you're committed to the path. Choose a destiny or roll a d8 and consult the table below.\r\n\r\n| d8 | Destiny |\r\n|---|---|\r\n| 1 | You are running away from a marriage. |\r\n| 2 | You are seeking your runaway betrothed. |\r\n| 3 | You don't want to take over your famous family business. |\r\n| 4 | You need to arrive at a religious site at a specific time to complete an event or prophecy. |\r\n| 5 | Your noble relative died, and you're required to take their vacant position. |\r\n| 6 | You are the reincarnation of a famous figure, and you're expected to live in an isolated temple. |\r\n| 7 | You were supposed to serve an honorary but dangerous position in your people's military. |\r\n| 8 | Members of your family have occupied a civil office (court scribe, sheriff, census official, or similar) for generations. |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_diplomat", + "fields": { + "name": "Diplomat", + "desc": "You have always found harmonious solutions to conflict. You might have started mediating family conflicts as a child. When you were old enough to recognize aggression, you sought to defuse it. You often resolved disputes among neighbors, arriving at a fair middle ground satisfactory to all parties.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_forest-dweller", + "fields": { + "name": "Forest Dweller", + "desc": "You are a creature of the forest, born and reared under a canopy of green. You expected to live all your days in the forest, at one with the green things of the world, until an unforeseen occurrence, traumatic or transformative, drove you from your familiar home and into the larger world. Civilization is strange to you, the open sky unfamiliar, and the bizarre ways of the so-called civilized world run counter to the truths of the natural world.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_former-adventurer", + "fields": { + "name": "Former Adventurer", + "desc": "As you belted on your weapons and hoisted the pack onto your back, you never thought you'd become an adventurer again. But the heroic call couldn't be ignored. You've tried this once before—perhaps it showered you in wealth and glory or perhaps it ended with sorrow and regret. No one ever said adventuring came with a guarantee of success. Now, the time has come to set off toward danger once again. The reasons for picking up adventuring again vary. Could it be a calamitous threat to the town? The region? The world? Was the settled life not what you expected? Or did your past finally catch up to you? In the end, all that matters is diving back into danger. And it's time to show these new folks how it's done.\r\n\r\n### Reason for Retirement\r\nGiving up your first adventuring career was a turning point in your life. Triumph or tragedy, the reason why you gave it up might still haunt you and may shape your actions as you reenter the adventuring life. Choose the event that led you to stop adventuring or roll a d12 and consult the table below.\r\n\r\n| d12 | Event |\r\n|---|---|\r\n| 1 | Your love perished on one of your adventures, and you quit in despair. |\r\n| 2 | You were the only survivor after an ambush by a hideous beast. |\r\n| 3 | Legal entanglements forced you to quit, and they may cause you trouble again. |\r\n| 4 | A death in the family required you to return home. |\r\n| 5 | Your old group disowned you for some reason. |\r\n| 6 | A fabulous treasure allowed you to have a life of luxury, until the money ran out. |\r\n| 7 | An injury forced you to give up adventuring. |\r\n| 8 | You suffered a curse which doomed your former group, but the curse has finally faded away. |\r\n| 9 | You rescued a young child or creature and promised to care for them. They have since grown up and left. |\r\n| 10 | You couldn't master your fear and fled from a dangerous encounter, never to return. |\r\n| 11 | As a reward for helping an area, you were offered a position with the local authorities, and you accepted. |\r\n| 12 | You killed or defeated your nemesis. Now they are back, and you must finish the job. |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_freebooter", + "fields": { + "name": "Freebooter", + "desc": "You sailed the seas as a freebooter, part of a pirate crew. You should come up with a name for your former ship and its captain, as well as its hunting ground and the type of ships you preyed on. Did you sail under the flag of a bloodthirsty captain, raiding coastal communities and putting everyone to the sword? Or were you part of a group of former slaves turned pirates, who battle to end the vile slave trade? Whatever ship you sailed on, you feel at home on board a seafaring vessel, and you have difficulty adjusting to long periods on dry land.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_gamekeeper", + "fields": { + "name": "Gamekeeper", + "desc": "You are at home in natural environments, chasing prey or directing less skilled hunters in the best ways to track game through the brush. You know the requirements for encouraging a herd to grow, and you know what sustainable harvesting from a herd involves. You can train a hunting beast to recognize an owner and perform a half-dozen commands, given the time. You also know the etiquette for engaging nobility or other members of the upper classes, as they regularly seek your services, and you can carry yourself in a professional manner in such social circles.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_innkeeper", + "fields": { + "name": "Innkeeper", + "desc": "You spent some time as an innkeeper, tavern keeper, or perhaps a bartender. It might have been in a small crossroads town, a fishing community, a fine caravanserai, or a large cosmopolitan community. You did it all; preparing food, tracking supplies, tapping kegs, and everything in between. All the while, you listened to the adventurers plan their quests, heard their tales, saw their amazing trophies, marveled at their terrible scars, and eyed their full purses. You watched them come and go, thinking, \"one day, I will have my chance.\" Your time is now.\r\n\r\n### Place of Employment\r\nWhere did you work before turning to the adventuring life? Choose an establishment or roll a d6 and consult the table below. Once you have this information, think about who worked with you, what sort of customers you served, and what sort of reputation your establishment had.\r\n\r\n| d6 | Establishment |\r\n|---|---|\r\n| 1 | Busy crossroads inn |\r\n| 2 | Disreputable tavern full of scum and villainy |\r\n| 3 | Caravanserai on a wide-ranging trade route |\r\n| 4 | Rough seaside pub |\r\n| 5 | Hostel serving only the wealthiest clientele |\r\n| 6 | Saloon catering to expensive and sometimes dangerous tastes |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_mercenary-company-scion", + "fields": { + "name": "Mercenary Company Scion", + "desc": "You descend from a famous line of free company veterans, and your first memory is playing among the tents, training yards, and war rooms of one campaign or another. Adored or perhaps ignored by your parents, you spent your formative years learning weapons and armor skills from brave captains, camp discipline from burly sergeants, and a host of virtues and vices from the common foot soldiers. You've always been told you are special and destined to glory. The weight of your family's legacy, honor, or reputation can weigh heavily, inspiring you to great deeds, or it can be a factor you try to leave behind.\r\n\r\n### Mercenary Company Reputation\r\nYour family is part of or associated with a mercenary company. The company has a certain reputation that may or may not continue to impact your life. Roll a d8 or choose from the options in the Mercenary Company Reputation table to determine the reputation of this free company.\r\n\r\n| d8 | Mercenary Company Reputation |\r\n|---|---|\r\n| 1 | Infamous. The company's evil deeds follow any who are known to consort with them. |\r\n| 2 | Honest. An upstanding company whose words and oaths are trusted. |\r\n| 3 | Unknown. Few know of this company. Its deeds have yet to be written. |\r\n| 4 | Feared. For good or ill, this company is generally feared on the battlefield. |\r\n| 5 | Mocked. Though it tries hard, the company is the butt of many jokes and derision. |\r\n| 6 | Specialized. This company is known for a specific type of skill on or off the battlefield. |\r\n| 7 | Disliked. For well-known reasons, this company has a bad reputation. |\r\n| 8 | Famous. The company's great feats and accomplishments are known far and wide. |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_mercenary-recruit", + "fields": { + "name": "Mercenary Recruit", + "desc": "Every year, the hopeful strive to earn a place in one of the great mercenary companies. Some of these would-be heroes received training from a mercenary company but needed more training before gaining membership. Others are full members but were selected to venture abroad to gain more experience before gaining a rank. You are one of these hopeful warriors, just beginning to carve your place in the world with blade, spell, or skill.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_monstrous-adoptee", + "fields": { + "name": "Monstrous Adoptee", + "desc": "Songs and sagas tell of heroes who, as children, were raised by creatures most view as monsters. You were one such child. Found, taken, left, or otherwise given to your monstrous parents, you were raised as one of their own species. Life with your adopted family could not have been easy for you, but the adversity and hardships you experienced only made you stronger. Perhaps you were *rescued* from your adopted family after only a short time with them, or perhaps only now have you realized the truth of your heritage. Maybe you've since learned enough civilized behavior to get by, or perhaps your *monstrous* tendencies are more evident. As you set out to make your way in the world, the time you spent with your adopted parents continues to shape your present and your future.\r\n\r\n### Adopted\r\nPrior to becoming an adventurer, you defined your history by the creatures who raised you. Choose a type of creature for your adopted parents or roll a d10 and consult the table below. Work with your GM to determine which specific creature of that type adopted you. If you are of a particular race or species that matches a result on the table, your adopted parent can't be of the same race or species as you, as this background represents an individual raised by a creature or in a culture vastly different or even alien to their birth parents.\r\n\r\n| d10 | Creature Type |\r\n|---|---|\r\n| 1 | Humanoid (such as gnoll, goblin, kobold, or merfolk) |\r\n| 2 | Aberration (such as aboleth, chuul, cloaker, or otyugh) |\r\n| 3 | Beast (such as ape, bear, tyrannosaurus rex, or wolf) |\r\n| 4 | Celestial or fiend (such as balor, bearded devil, couatl, deva, or unicorn) |\r\n| 5 | Dragon (such as dragon turtle, pseudodragon, red dragon, or wyvern) |\r\n| 6 | Elemental (such as efreeti, gargoyle, salamander, or water elemental) |\r\n| 7 | Fey (such as dryad, green hag, satyr, or sprite) |\r\n| 8 | Giant (such as ettin, fire giant, ogre, or troll) |\r\n| 9 | Plant or ooze (such as awakened shrub, gray ooze, shambling mound, or treant) |\r\n| 10 | Monstrosity (such as behir, chimera, griffon, mimic, or minotaur) |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_mysterious-origins", + "fields": { + "name": "Mysterious Origins", + "desc": "Your origins are a mystery even to you. You might recall fragments of your previous life, or you might dream of events that could be memories, but you can't be sure of what is remembered and what is imagined. You recall practical information and facts about the world and perhaps even your name, but your upbringing and life before you lost your memories now exist only in dreams or sudden flashes of familiarity. You can leave the details of your character's past up to your GM or give the GM a specific backstory that your character can't remember. Were you the victim of a spell gone awry, or did you voluntarily sacrifice your memories in exchange for power? Is your amnesia the result of a natural accident, or did you purposefully have your mind wiped in order to forget a memory you couldn't live with? Perhaps you have family or friends that are searching for you or enemies you can't even remember.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_northern-minstrel", + "fields": { + "name": "Northern Minstrel", + "desc": "While the tribal warriors residing in other parts of the wintry north consider you to be soft and cowardly, you know the truth: life in northern cities and mead halls is not for the faint of heart. Whether you are a larger-than-life performer hailing from one of the skaldic schools, a contemplative scholar attempting to puzzle out the mysteries of the north, or a doughty warrior hoping to stave off the bleakness of the north, you have successfully navigated alleys and stages as treacherous as any ice-slicked ruin. You adventure for the thrill of adding new songs to your repertoire, adding new lore to your catalog, and proving false the claims of those so-called true northerners.\r\n\r\n### Skaldic Specialty\r\nEvery minstrel excels at certain types of performance. Choose one specialty or roll a d8 and consult the table below to determine your preferred type of performance.\r\n\r\n| d8 | Specialty |\r\n|---|---|\r\n| 1 | Recitation of epic poetry |\r\n| 2 | Singing |\r\n| 3 | Tale-telling |\r\n| 4 | Flyting (insult flinging) |\r\n| 5 | Yodeling |\r\n| 6 | Axe throwing |\r\n| 7 | Playing an instrument |\r\n| 8 | Fire eating or sword swallowing |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_occultist", + "fields": { + "name": "Occultist", + "desc": "At your core, you are a believer in things others dismiss. The signs abound if you know where to look. Questions beget answers that spur further questions. The cycle is endless as you uncover layer after layer of mystery and secrets. Piercing the veil hiding beyond the surface of reality is an irresistible lure spurring you to delve into forgotten and dangerous places in the world. Perhaps you've always yearned toward the occult, or it could be that you encountered something or someone who opened your eyes to the possibilities. You may belong to some esoteric organization determined to uncover the mystery, a cult bent on using the secrets for a dark purpose, or you may be searching for answers on your own. As an occultist, you ask the questions reality doesn't want to answer.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_parfumier", + "fields": { + "name": "Parfumier", + "desc": "You are educated and ambitious. You spent your youth apprenticed among a city's more reputable greenhouses, laboratories, and perfumeries. There, you studied botany and chemistry and explored properties and interactions with fine crystal, rare metals, and magic. You quickly mastered the skills to identify and process rare and complex botanical and alchemical samples and the proper extractions and infusions of essential oils, pollens, and other fragrant chemical compounds—natural or otherwise. Not all (dramatic) changes to one's lifestyle, calling, or ambitions are a result of social or financial decline. Some are simply decided upon. Regardless of your motivation or incentive for change, you have accepted that a comfortable life of research, science and business is—at least for now—a part of your past.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_scoundrel", + "fields": { + "name": "Scoundrel", + "desc": "You were brought up in a poor neighborhood in a crowded town or city. You may have been lucky enough to have a leaky roof over your head, or perhaps you grew up sleeping in doorways or on the rooftops. Either way, you didn't have it easy, and you lived by your wits. While never a hardened criminal, you fell in with the wrong crowd, or you ended up in trouble for stealing food from an orange cart or clean clothes from a washing line. You're no stranger to the city watch in your hometown and have outwitted or outrun them many times.", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_sentry", + "fields": { + "name": "Sentry", + "desc": "In your youth, the defense of the city, the community, the caravan, or your patron was how you earned your coin. You might have been trained by an old, grizzled city watchman, or you might have been pressed into service by the local magistrate for your superior skills, size, or intellect. However you came to the role, you excelled at defending others. You have a nose for trouble, a keen eye for spotting threats, a strong arm to back it up, and you are canny enough to know when to act. Most importantly, though, you were a peace officer or a protector and not a member of an army which might march to war.\r\n\r\n### Specialization\r\nEach person or location that hires a sentry comes with its own set of unique needs and responsibilities. As a sentry, you fulfilled one of these unique roles. Choose a specialization or roll a d6 and consult the table below to define your expertise as a sentry.\r\n\r\n| d6 | Specialization |\r\n|---|---|\r\n| 1 | City or gate watch |\r\n| 2 | Bodyguard or jailor |\r\n| 3 | Caravan guard |\r\n| 4 | Palace or judicial sentry |\r\n| 5 | Shop guard |\r\n| 6 | Ecclesiastical or temple guard |", + "document": "toh" + } + }, + { + "model": "api_v2.background", + "pk": "toh_trophy-hunter", + "fields": { + "name": "Trophy Hunter", + "desc": "You hunt the mightiest beasts in the harshest environments, claiming their pelts as trophies and returning them to settled lands for a profit or to decorate your abode. You likely were set on this path since birth, following your parents on safaris and learning from their actions, but you may have instead come to this path as an adult after being swept away by the thrill of dominating the natural world. Many big game hunters pursue their quarry purely for pleasure, as a calming avocation, but others sell their skills to the highest bidder to amass wealth and reputation as a trophy hunter.", + "document": "toh" + } + } +] \ No newline at end of file diff --git a/data/v2/kobold-press/toh/BackgroundBenefit.json b/data/v2/kobold-press/toh/BackgroundBenefit.json index ac092b5c..aed1e2ec 100644 --- a/data/v2/kobold-press/toh/BackgroundBenefit.json +++ b/data/v2/kobold-press/toh/BackgroundBenefit.json @@ -1,1142 +1,1142 @@ [ -{ - "model": "api_v2.backgroundbenefit", - "pk": 18, - "fields": { - "name": "Skill Proficiencies", - "desc": "Perception, Survival", - "type": "skill_proficiency", - "parent": "desert-runner" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 19, - "fields": { - "name": "Tool Proficiencies", - "desc": "Herbalist kit", - "type": "tool_proficiency", - "parent": "desert-runner" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 20, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "desert-runner" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 21, - "fields": { - "name": "Equipment", - "desc": "Traveler's clothes, herbalist kit, waterskin, pouch with 10 gp", - "type": "equipment", - "parent": "desert-runner" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 22, - "fields": { - "name": "Nomad", - "desc": "Living in the open desert has allowed your body to adapt to a range of environmental conditions. You can survive on 1 gallon of water in hot conditions (or 1/2 gallon in normal conditions) without being forced to make Constitution saving throws, and you are considered naturally adapted to hot climates. While in a desert, you can read the environment to predict natural weather patterns and temperatures for the next 24 hours, allowing you to cross dangerous terrain at the best times. The accuracy of your predictions is up to the GM, but they should be reliable unless affected by magic or unforeseeable events, such as distant earthquakes or volcanic eruptions.", - "type": "feature", - "parent": "desert-runner" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 23, - "fields": { - "name": "Suggested Characteristics", - "desc": "Those raised in the desert can be the friendliest of humanoids—knowing allies are better than enemies in that harsh environment—or territorial and warlike, believing that protecting food and water sources by force is the only way to survive.\r\n\r\n| d8 | Personality Trait |\r\n| --- | --- |\r\n| 1 | I'm much happier sleeping under the stars than in a bed in a stuffy caravanserai. |\r\n| 2 | It's always best to help a traveler in need; one day it might be you. | \r\n| 3 | I am slow to trust strangers, but I'm extremely loyal to my friends. | \r\n| 4 | If there's a camel race, I'm the first to saddle up! | \r\n| 5 | I always have a tale or poem to share at the campfire. | \r\n| 6 | I don't like sleeping in the same place more than two nights in a row. | \r\n| 7 | I've been troubled by dreams for the last month. I am determined to uncover their meaning. | \r\n| 8 | I feel lonelier in a crowded city than I do out on the empty desert sands. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greater Good.** The needs of the whole tribe outweigh those of the individuals who are part of it. (Good) |\r\n| 2 | **Nature.** I must do what I can to protect the beautiful wilderness from those who would do it harm. (Neutral) |\r\n| 3 | **Tradition.** I am duty-bound to follow my tribe's age-old route through the desert. (Lawful) |\r\n 4 | **Change.** Things seldom stay the same and we must always be prepared to go with the flow. (Chaotic) |\r\n| 5 | **Honor.** If I behave dishonorably, my actions will bring shame upon the entire tribe. (Lawful) |\r\n| 6 | **Greed.** Seize what you want if no one gives it to you freely. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I am the last living member of my tribe, and I cannot let their deaths go unavenged. |\r\n| 2 | I follow the spiritual path of my tribe; it will bring me to the best afterlife when the time comes. |\r\n| 3 | My best friend has been sold into slavery to devils, and I need to rescue them before it is too late. |\r\n| 4 | A nature spirit saved my life when I was dying of thirst in the desert. |\r\n| 5 | My takoba sword is my most prized possession; for over two centuries, it's been handed down from generation to generation. |\r\n| 6 | I have sworn revenge on the sheikh who unjustly banished me from the tribe. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I enjoy the company of camels more than people. |\r\n| 2 | I can be loud and boorish after a few wineskins. |\r\n| 3 | If I feel insulted, I'll refuse to speak to anyone for several hours. |\r\n| 4 | I enjoy violence and mayhem a bit too much. |\r\n| 5 | You can't rely on me in a crisis. |\r\n| 6 | I betrayed my brother to cultists to save my own skin. |", - "type": "suggested_characteristics", - "parent": "desert-runner" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 35, - "fields": { - "name": "Skill Proficiencies", - "desc": "History, Insight", - "type": "skill_proficiency", - "parent": "court-servant" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 36, - "fields": { - "name": "Tool Proficiencies", - "desc": "One artisan's tools set of your choice", - "type": "tool_proficiency", - "parent": "court-servant" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 37, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "court-servant" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 38, - "fields": { - "name": "Equipment", - "desc": "A set of artisan's tools of your choice, a unique piece of jewelry, a set of fine clothes, a handcrafted pipe, and a belt pouch containing 20 gp", - "type": "equipment", - "parent": "court-servant" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 39, - "fields": { - "name": "Servant's Invisibility", - "desc": "The art of excellent service requires a balance struck between being always available and yet unobtrusive, and you've mastered it. If you don't perform a visible action, speak or be spoken to, or otherwise have attention drawn to you for at least 1 minute, creatures nearby have trouble remembering you are even in the room. Until you speak, perform a visible action, or have someone draw attention to you, creatures must succeed on a Wisdom (Perception) check (DC equal to 8 + your Charisma modifier + your proficiency bonus) to notice you. Otherwise, they conduct themselves as though you aren't present until either attention is drawn to you or one of their actions would take them into or within 5 feet of the space you occupy.", - "type": "feature", - "parent": "court-servant" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 40, - "fields": { - "name": "Suggested Characteristics", - "desc": "Court servants tend to be outwardly quiet and soft-spoken, but their insight into the nuances of conversation and societal happenings is unparalleled. When in crowds or around strangers, most court servants keep to themselves, quietly observing their surroundings and later sharing such observations with those they trust.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Unless I must speak, I hold my breath while serving others. |\r\n| 2 | It takes all my effort not to show the effusive emotions I feel when I help others. Best to quietly serve. |\r\n| 3 | It's getting harder to tolerate the prejudices of those I serve daily. |\r\n| 4 | Though the old ways are hard to give up, I want to be my own boss. I'll decide my path. |\r\n| 5 | Serving my family and friends is the only thing I truly care about. |\r\n| 6 | City life is killing my soul. I long for the old courtly ways. |\r\n| 7 | It's time for my fellows to wake up and be taken advantage of no longer. |\r\n| 8 | It's the small things that make it all worthwhile. I try to be present in every moment. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Family. My family, whether the one I come from or the one I make, is the thing in this world most worth protecting. (Any) |\r\n| 2 | Service. I am most rewarded when I know I have performed a valuable service for another. (Good) |\r\n| 3 | Sloth. What's the point of helping anyone now that I've been discarded? (Chaotic) |\r\n| 4 | Compassion. I can't resist helping anyone in need. (Good) |\r\n| 5 | Tradition. Life under my master's rule was best, and things should be kept as close to their ideals as possible. (Lawful) |\r\n| 6 | Joy. The pursuit of happiness is the only thing worth serving anymore. (Neutral) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My family needs me to provide for them. They mean everything to me, which means I'll do whatever it takes. |\r\n| 2 | My kin have served this holding and its lords and ladies for generations. I serve them faithfully to make my lineage proud. |\r\n| 3 | I can't read the inscriptions on this odd ring, but it's all I have left of my family and our history of loyal service. |\r\n| 4 | I'm with the best friends a person can ask for, so why do I feel so lonesome and homesick? |\r\n| 5 | I've found a profession where my skills are put to good use, and I won't let anyone bring me down. |\r\n| 6 | I found peace in a special garden filled with beautiful life, but I only have this flower to remind me. Someday I'll remember where to find that garden. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 |\r\n| 2 | I'm afraid of taking risks that might be good for me. |\r\n| 3 | I believe my master's people are superior to all others, and I'm not afraid to share that truth. |\r\n| 4 | I always do as I'm told, even though sometimes I don't think I should. |\r\n| 5 | I know what's best for everyone, and they'd all be better off if they'd follow my advice. |\r\n| 6 | I can't stand seeing ugly or depressing things. I'd much rather think happy thoughts. |", - "type": "suggested_characteristics", - "parent": "court-servant" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 67, - "fields": { - "name": "Skill Proficiencies", - "desc": "History, Insight", - "type": "skill_proficiency", - "parent": "destined" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 68, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "destined" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 69, - "fields": { - "name": "Tool Proficiencies", - "desc": "No additional tool proficiencies", - "type": "tool_proficiency", - "parent": "destined" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 70, - "fields": { - "name": "Equipment", - "desc": "A dagger, quarterstaff, or spear, a set of traveler's clothes, a memento of your destiny (a keepsake from your betrothed, the seal of your destined office, your family signet ring, or similar), a belt pouch containing 15 gp", - "type": "equipment", - "parent": "destined" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 71, - "fields": { - "name": "Reputation of Opportunity", - "desc": "Your story precedes you, as does your quest to claim—or run away from—your destiny. Those in positions of power, such as nobles, bureaucrats, rich merchants, and even mercenaries and brigands, all look to either help or hinder you, based on what they think they may get out of it. They're always willing to meet with you briefly to see just how worthwhile such aid or interference might be. This might mean a traveler pays for your passage on a ferry, a generous benefactor covers your group's meals at a tavern, or a local governor invites your adventuring entourage to enjoy a night's stay in their guest quarters. However, the aid often includes an implied threat or request. Some might consider delaying you as long as politely possible, some might consider taking you prisoner for ransom or to do “what's best” for you, and others might decide to help you on your quest in exchange for some future assistance. You're never exactly sure of the associated “cost” of the person's aid until the moment arrives. In the meantime, the open road awaits.", - "type": "feature", - "parent": "destined" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 72, - "fields": { - "name": "Suggested Characteristics", - "desc": "Destined characters might be running toward or away from destiny, but whatever the case, their destiny has shaped them. Think about the impact of your destiny on you and the kind of relationship you have with your destiny. Do you embrace it? Accept it as inevitable? Or do you fight it every step of the way?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm eager to find this destiny and move on with the next stage in my life. |\r\n| 2 | I keep the fire of my hope burning bright. I'm sure this will work out for the best. |\r\n| 3 | Fate has a way of finding you no matter what you do. I'm resigned to whatever they have planned for me, but I'll enjoy my time on the way. |\r\n| 4 | I owe it to myself or to those who helped establish this destiny. I'm determined to follow this through to the end. |\r\n| 5 | I don't know what this path means for me or my future. I'm more afraid of going back to that destiny than of seeing what's out in the world. |\r\n| 6 | I didn't ask for this, and I don't want it. I'm bitter that I must change my life for it. |\r\n| 7 | Few have been chosen to complete this lifepath, and I'm proud to be one of them. |\r\n| 8 | Who can say how this will work out? The world is an uncertain place, and I'll find my destiny when it finds me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Inevitability.** What's coming can't be stopped, and I'm dedicated to making it happen. (Evil) |\r\n| 2 | **Tradition.** I'm part of a cycle that has repeated for generations. I can't deny that. (Any) |\r\n| 3 | **Defiance.** No one can make me be something I don't want to be. (Any) |\r\n| 4 | **Greater Good.** Completing my duty ensures the betterment of my family, community, or region. (Good) |\r\n| 5 | **Power.** If I can take this role and be successful, I'll have opportunities to do whatever I want. (Chaotic) |\r\n| 6 | **Responsibility.** It doesn't matter if I want it or not; it's what I'm supposed to do. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | The true gift of my destiny is the friendships I make along the way to it. |\r\n| 2 | The benefits of completing this destiny will strengthen my family for years to come. |\r\n| 3 | Trying to alter my decision regarding my destiny is an unthinkable affront to me. |\r\n| 4 | How I reach my destiny is just as important as how I accomplish my destiny. |\r\n| 5 | People expect me to complete this task. I don't know how I feel about succeeding or failing, but I'm committed to it. |\r\n| 6 | Without this role fulfilled, the people of my home region will suffer, and that's not acceptable. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If you don't have a destiny, are you really special? |\r\n| 2 | But I am the “Chosen One.” |\r\n| 3 | I fear commitment; that's what this boils down to in the end. |\r\n| 4 | What if I follow through with this and I fail? |\r\n| 5 | It doesn't matter what someone else sacrificed for this. I only care about my feelings. |\r\n| 6 | Occasionally—ok, maybe “often”—I make poor decisions in life, like running from this destiny. |", - "type": "suggested_characteristics", - "parent": "destined" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 73, - "fields": { - "name": "Skill Proficiencies", - "desc": "Insight, Persuasion", - "type": "skill_proficiency", - "parent": "diplomat" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 74, - "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", - "parent": "diplomat" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 75, - "fields": { - "name": "Tool Proficiencies", - "desc": "No additional tool proficiencies", - "type": "tool_proficiency", - "parent": "diplomat" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 76, - "fields": { - "name": "Equipment", - "desc": "A set of fine clothes, a letter of passage from a local minor authority or traveling papers that signify you as a traveling diplomat, and a belt pouch containing 20 gp", - "type": "equipment", - "parent": "diplomat" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 77, - "fields": { - "name": "A Friend in Every Port", - "desc": "Your reputation as a peacemaker precedes you, or people recognize your easy demeanor, typically allowing you to attain food and lodging at a discount. In addition, people are predisposed to warn you about dangers in a location, alert you when a threat approaches you, or seek out your help for resolving conflicts between locals.", - "type": "feature", - "parent": "diplomat" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 78, - "fields": { - "name": "Suggested Characteristics", - "desc": "Diplomats always have kind words and encourage their companions to think positively when encountering upsetting situations or people. Diplomats have their limits, however, and are quick to discover when someone is negotiating in bad faith.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I like to travel, meet new people, and learn about different customs. |\r\n| 2 | I intercede in minor squabbles to find common ground on all sides.|\r\n| 3 | I never disparage others, even when they might deserve such treatment.|\r\n| 4 | I always try to make a new friend wherever I travel, and when I return to those areas, I seek out my friends. |\r\n| 5 | I have learned how to damn with faint praise, but I only use it when someone has irked me. |\r\n| 6 | I am not opposed to throwing a bit of coin around to ensure a good first impression. |\r\n| 7 | Even when words fail at the outset, I still try to calm tempers. |\r\n| 8 | I treat everyone as an equal, and I encourage others to do likewise. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Harmony.** I want everyone to get along. (Good) |\r\n| 2 | **Contractual.** When I resolve a conflict, I ensure all parties formally acknowledge the resolution. (Lawful) |\r\n| 3 | **Selfishness.** I use my way with words to benefit myself the most. (Evil) 4 Freedom. Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 4 | **Freedom.** Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 5 | **Avoidance.** A kind word is preferable to the drawing of a sword. (Any) |\r\n| 6 | **Unity.** It is possible to achieve a world without borders and without conflict. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|------|\r\n| 1 | I want to engineer a treaty with far-reaching effects in the world. |\r\n| 2 | I am carrying out someone else's agenda and making favorable arrangements for my benefactor. |\r\n| 3 | A deal I brokered went sour, and I am trying to make amends for my mistake. |\r\n| 4 | My nation treats everyone equitably, and I'd like to bring that enlightenment to other nations. |\r\n| 5 | A traveling orator taught me the power of words, and I want to emulate that person. |\r\n| 6 | I fear a worldwide conflict is imminent, and I want to do all I can to stop it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I always start by appealing to a better nature from those I face, regardless of their apparent hostility. |\r\n| 2 | I assume the best in everyone, even if I have been betrayed by that trust in the past. |\r\n| 3 | I will stand in the way of an ally to ensure conflicts don't start. |\r\n| 4 | I believe I can always talk my way out of a problem. |\r\n| 5 | I chastise those who are rude or use vulgar language. |\r\n| 6 | When I feel I am on the verge of a successful negotiation, I often push my luck to obtain further concessions. |", - "type": "suggested_characteristics", - "parent": "diplomat" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 79, - "fields": { - "name": "Skill Proficiencies", - "desc": "Nature, Survival", - "type": "skill_proficiency", - "parent": "forest-dweller" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 80, - "fields": { - "name": "Languages", - "desc": "Sylvan", - "type": "language", - "parent": "forest-dweller" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 81, - "fields": { - "name": "Tool Proficiencies", - "desc": "Woodcarver's tools, Herbalism kit", - "type": "tool_proficiency", - "parent": "forest-dweller" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 82, - "fields": { - "name": "Equipment", - "desc": "A set of common clothes, a hunting trap, a wood staff, a whetstone, an explorer's pack, and a pouch containing 5 gp", - "type": "equipment", - "parent": "forest-dweller" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 83, - "fields": { - "name": "Forester", - "desc": "Your experience living, hunting, and foraging in the woods gives you a wealth of experience to draw upon when you are traveling within a forest. If you spend 1 hour observing, examining, and exploring your surroundings while in a forest, you are able to identify a safe location to rest. The area is protected from all but the most extreme elements and from the nonmagical native beasts of the forest. In addition, you are able to find sufficient kindling for a small fire throughout the night.\r\n\r\n### Life-Changing Event\r\nYou have lived a simple life deep in the sheltering boughs of the forest, be it as a trapper, farmer, or villager eking out a simple existence in the forest. But something happened that set you on a different path and marked you for greater things. Choose or randomly determine a defining event that caused you to leave your home for the wider world. \r\n\r\n| d8 | Event |\r\n|---|---|\r\n| 1 | You were living within the forest when cesspools of magical refuse from a nearby city expanded and drove away the game that sustained you. You had to move to avoid the prospect of a long, slow demise via starvation. |\r\n| 2 | Your village was razed by a contingent of undead. For reasons of its own, the forest and its denizens protected and hid you from their raid. |\r\n| 3 | A roving band of skeletons and zombies attacked your family while you were hunting. |\r\n| 4 | You are an ardent believer in the preservation of the forest and the natural world. When the people of your village abandoned those beliefs, you were cast out and expelled into the forest. |\r\n| 5 | You wandered into the forest as a child and became lost. For inexplicable reasons, the forest took an interest in you. You have faint memories of a village and have had no contact with civilization in many years. |\r\n| 6 | You were your village's premier hunter. They relied on you for game and without your contributions their survival in the winter was questionable. Upon returning from your last hunt, you found your village in ruins, as if decades had passed overnight. |\r\n| 7 | Your quiet, peaceful, and solitary existence has been interrupted with dreams of the forest's destruction, and the urge to leave your home compels you to seek answers. |\r\n| 8 | Once in a hidden glen, you danced with golden fey and forgotten gods. Nothing in your life since approaches that transcendent moment, cursing you with a wanderlust to seek something that could. |", - "type": "feature", - "parent": "forest-dweller" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 84, - "fields": { - "name": "Suggested Characteristics", - "desc": "Forest dwellers tend toward solitude, introspection, and self-sufficiency. You keep your own council, and you are more likely to watch from a distance than get involved in the affairs of others. You are wary, slow to trust, and cautious of depending on outsiders.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will never forget being hungry in the winter. I field dress beasts that fall to blade or arrow so that I am never hungry again. |\r\n| 2 | I may be alone in the forest, but I am only ever lonely in cities. |\r\n| 3 | Walking barefoot allows me to interact more intuitively with the natural world. |\r\n| 4 | The road is just another kind of wall. I make my own paths and go where I will. |\r\n| 5 | Others seek the gods in temples and shrines, but I know their will is only revealed in the natural world, not an edifice constructed by socalled worshippers. I pray in the woods, never indoors. |\r\n| 6 | What you call personal hygiene, I call an artificially imposed distraction from natural living. |\r\n| 7 | No forged weapon can replace the sheer joy of a kill accomplished only with hands and teeth. |\r\n| 8 | Time lived alone has made me accustomed to talking loudly to myself, something I still do even when others are present. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Change. As the seasons shift, so too does the world around us. To resist is futile and anathema to the natural order. (Chaotic) |\r\n| 2 | Conservation. All life should be preserved and, if needed, protected. (Good) |\r\n| 3 | Acceptance. I am a part of my forest, no different from any other flora and fauna. To think otherwise is arrogance and folly. When I die, it will be as a leaf falling in the woods. (Neutral) |\r\n| 4 | Cull. The weak must be removed for the strong to thrive. (Evil) |\r\n| 5 | Candor. I am open, plain, and simple in life, word, and actions. (Any) |\r\n| 6 | Balance. The forest does not lie. The beasts do not create war. Equity in all things is the way of nature. (Neutral) |\r\n\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | When I lose a trusted friend or companion, I plant a tree upon their grave. |\r\n| 2 | The voice of the forest guides me, comforts me, and protects me. |\r\n| 3 | The hermit who raised me and taught me the ways of the forest is the most important person in my life. |\r\n| 4 | I have a wooden doll, a tiny wickerman, that I made as a child and carry with me at all times. |\r\n| 5 | I know the ways of civilizations rise and fall. The forest and the Old Ways are eternal. |\r\n| 6 | I am driven to protect the natural order from those that would disrupt it. |\r\n\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am accustomed to doing what I like when I like. I'm bad at compromising, and I must exert real effort to make even basic conversation with other people. |\r\n| 2 | I won't harm a beast without just cause or provocation. |\r\n| 3 | Years of isolated living has left me blind to the nuances of social interaction. It is a struggle not to view every new encounter through the lens of fight or flight. |\r\n| 4 | The decay after death is merely the loam from which new growth springs—and I enjoy nurturing new growth. |\r\n| 5 | An accident that I caused incurred great damage upon my forest, and, as penance, I have placed myself in self-imposed exile. |\r\n| 6 | I distrust the undead and the unliving, and I refuse to work with them. |", - "type": "suggested_characteristics", - "parent": "forest-dweller" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 85, - "fields": { - "name": "Skill Proficiencies", - "desc": "Perception, Survival", - "type": "skill_proficiency", - "parent": "former-adventurer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 86, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "former-adventurer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 87, - "fields": { - "name": "Tool Proficiencies", - "desc": "No additional tool proficiencies", - "type": "tool_proficiency", - "parent": "former-adventurer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 88, - "fields": { - "name": "Equipment", - "desc": "A dagger, quarterstaff, or shortsword (if proficient), an old souvenir from your previous adventuring days, a set of traveler's clothes, 50 feet of hempen rope, and a belt pouch containing 15 gp", - "type": "equipment", - "parent": "former-adventurer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 89, - "fields": { - "name": "Old Friends and Enemies", - "desc": "Your previous career as an adventurer might have been brief or long. Either way, you certainly journeyed far and met people along the way. Some of these acquaintances might remember you fondly for aiding them in their time of need. On the other hand, others may be suspicious, or even hostile, because of your past actions. When you least expect it, or maybe just when you need it, you might encounter someone who knows you from your previous adventuring career. These people work in places high and low, their fortunes varying widely. The individual responds appropriately based on your mutual history, helping or hindering you at the GM's discretion.", - "type": "feature", - "parent": "former-adventurer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 90, - "fields": { - "name": "Suggested Characteristics", - "desc": "Former adventurers bring a level of practical experience that fledgling heroes can't match. However, the decisions, outcomes, successes, and failures of your previous career often weigh heavily on your mind. The past seldom remains in the past. How you rise to these new (or old) challenges determines the outcome of your new career.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I have a thousand stories about every aspect of the adventuring life. |\r\n| 2 | My past is my own, and to the pit with anyone who pushes me about it. |\r\n| 3 | I can endure any hardship without complaint. |\r\n| 4 | I have a list of rules for surviving adventures, and I refer to them often. |\r\n| 5 | It's a dangerous job, and I take my pleasures when I can. |\r\n| 6 | I can't help mentioning all the famous friends I've met before. |\r\n| 7 | Anyone who doesn't recognize me is clearly not someone worth knowing. |\r\n| 8 | I've seen it all. If you don't listen to me, you're going to get us all killed. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Strength.** Experience tells me there are no rules to war. Only victory matters. (Evil) |\r\n| 2 | **Growth.** I strive to improve myself and prove my worth to my companions—and to myself. (Any) |\r\n| 3 | **Thrill.** I am only happy when I am facing danger with my life on the line. (Any) |\r\n| 4 | **Generous.** If I can help someone in danger, I will. (Good) |\r\n| 5 | **Ambition.** I may have lost my renown, but nothing will stop me from reclaiming it. (Chaotic) |\r\n| 6 | **Responsibility.** Any cost to myself is far less than the price of doing nothing. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will end the monsters who killed my family and pulled me back into the adventuring life. |\r\n| 2 | A disaster made me retire once. Now I will stop it from happening to anyone else. |\r\n| 3 | My old weapon has been my trusted companion for years. It's my lucky charm. |\r\n| 4 | My family doesn't understand why I became an adventurer again, which is why I send them souvenirs, letters, or sketches of exciting encounters in my travels. |\r\n| 5 | I was a famous adventurer once. This time, I will be even more famous, or die trying. |\r\n| 6 | Someone is impersonating me. I will hunt them down and restore my reputation. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | It's all about me! Haven't you learned that by now? |\r\n| 2 | I can identify every weapon and item with a look. |\r\n| 3 | You think this is bad? Let me tell you about something really frightening. |\r\n| 4 | Sure, I have old foes around every corner, but who doesn't? |\r\n| 5 | I'm getting too old for this. |\r\n| 6 | Seeing the bad side in everything just protects you from inevitable disappointment. |", - "type": "suggested_characteristics", - "parent": "former-adventurer" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 91, - "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, Survival", - "type": "skill_proficiency", - "parent": "freebooter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 92, - "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", - "parent": "freebooter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 93, - "fields": { - "name": "Tool Proficiencies", - "desc": "Navigator's tools, vehicles (water)", - "type": "tool_proficiency", - "parent": "freebooter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 94, - "fields": { - "name": "Equipment", - "desc": "A pirate flag from your ship, several tattoos, 50 feet of rope, a set of traveler's clothes, and a belt pouch containing 10 gp", - "type": "equipment", - "parent": "freebooter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 95, - "fields": { - "name": "A Friendly Face in Every Port", - "desc": "Your reputation precedes you. Whenever you visit a port city, you can always find someone who knows of (or has sailed on) your former ship and is familiar with its captain and crew. They are willing to provide you and your traveling companions with a roof over your head, a bed for the night, and a decent meal. If you have a reputation for cruelty and savagery, your host is probably afraid of you and will be keen for you to leave as soon as possible. Otherwise, you receive a warm welcome, and your host keeps your presence a secret, if needed. They may also provide you with useful information about recent goings-on in the city, including which ships have been in and out of port.", - "type": "feature", - "parent": "freebooter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 96, - "fields": { - "name": "Suggested Characteristics", - "desc": "Freebooters are a boisterous lot, but their personalities include freedom-loving mavericks and mindless thugs. Nonetheless, sailing a ship requires discipline, and freebooters tend to be reliable and aware of their role on board, even if they do their own thing once fighting breaks out. Most still yearn for the sea, and some feel shame or regret for past deeds.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm happiest when I'm on a gently rocking vessel, staring at the distant horizon. |\r\n| 2 | Every time we hoisted the mainsail and raised the pirate flag, I felt butterflies in my stomach. |\r\n| 3 | I have lovers in a dozen different ports. Most of them don't know about the others. |\r\n| 4 | Being a pirate has taught me more swear words and bawdy jokes than I ever knew existed. I like to try them out when I meet new people. |\r\n| 5 | One day I hope to have enough gold to fill a tub so I can bathe in it. |\r\n| 6 | There's nothing I enjoy more than a good scrap—the bloodier, the better. |\r\n| 7 | When a storm is blowing and the rain is lashing the deck, I'll be out there getting drenched. It makes me feel so alive! |\r\n| 8 | Nothing makes me more annoyed than a badly tied knot. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** No one tells me what to do or where to go. Apart from the captain. (Chaotic) |\r\n| 2 | **Greed.** I'm only in it for the booty. I'll gladly stab anyone stupid enough to stand in my way. (Evil) |\r\n| 3 | **Comradery.** My former shipmates are my family. I'll do anything for them. (Neutral) |\r\n| 4 | **Greater Good.** No man has the right to enslave another, or to profit from slavery. (Good) |\r\n| 5 | **Code.** I may be on dry land now, but I still stick to the Freebooter's Code. (Lawful) |\r\n| 6 | **Aspiration.** One day I'll return to the sea as the captain of my own ship. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | Anti-slavery pirates rescued me from a slave ship. I owe them my life. |\r\n| 2 | I still feel a deep attachment to my ship. Some nights I dream her figurehead is talking to me. |\r\n| 3 | I was the ship's captain until the crew mutinied and threw me overboard to feed the sharks. I swam to a small island and survived. Vengeance will be mine! |\r\n| 4 | Years ago, when my city was attacked, I fled the city on a small fleet bound for a neighboring city. I arrived back in the ruined city a few weeks ago on the same ship and can remember nothing of the voyage. |\r\n| 5 | I fell asleep when I was supposed to be on watch, allowing our ship to be taken by surprise. I still have nightmares about my shipmates who died in the fighting. |\r\n| 6 | One of my shipmates was captured and sold into slavery. I need to rescue them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm terrified by the desert. Not enough water, far too much sand. |\r\n| 2 | I drink too much and end up starting barroom brawls. |\r\n| 3 | I killed one of my shipmates and took his share of the loot. |\r\n| 4 | I take unnecessary risks and often put my friends in danger. |\r\n| 5 | I sold captives taken at sea to traders. |\r\n| 6 | Most of the time, I find it impossible to tell the truth. |", - "type": "suggested_characteristics", - "parent": "freebooter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 97, - "fields": { - "name": "Skill Proficiencies", - "desc": "Animal Handling, Persuasion", - "type": "skill_proficiency", - "parent": "gamekeeper" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 98, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "gamekeeper" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 99, - "fields": { - "name": "Tool Proficiencies", - "desc": "Leatherworker's tools", - "type": "tool_proficiency", - "parent": "gamekeeper" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 100, - "fields": { - "name": "Equipment", - "desc": "A set of leatherworker's tools, a hunting trap, fishing tackle, a set of traveler's clothes, and a belt pouch containing 10 gp", - "type": "equipment", - "parent": "gamekeeper" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 101, - "fields": { - "name": "Confirmed Guildmember", - "desc": "As a recognized member of the Gamekeepers' Guild, you are knowledgeable in the care, training, and habits of animals used for hunting. With 30 days' of work and at least 2 gp for each day, you can train a raptor, such as a hawk, falcon, or owl, or a hunting dog, such as a hound, terrier, or cur, to become a hunting companion. Use the statistics of an owl for the raptor and the statistics of a jackal for the hunting dog. A hunting companion is trained to obey and respond to a series of one-word commands or signals, communicating basic concepts such as *attack*, *protect*, *retrieve*, *find*, *hide*, or similar. The companion can know up to six such commands and can be trained to obey a number of creatures, other than you, equal to your proficiency bonus. A hunting companion travels with you wherever you go, unless you enter a particularly dangerous environment (such as a poisonous swamp), or you command the companion to stay elsewhere. A hunting companion doesn't join you in combat and stays on the edge of any conflict until it is safe to return to your side. When traveling overland with a hunting companion, you can use the companion to find sufficient food to sustain yourself and up to five other people each day. You can have only one hunting companion at a time.", - "type": "feature", - "parent": "gamekeeper" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 102, - "fields": { - "name": "Suggested Characteristics", - "desc": "You are one of the capable people who maintains hunting preserves, trains coursing hounds and circling raptors, and plans the safe outings that allow fair nobles, rich merchants, visiting dignitaries, and their entourages to venture into preserves and forests to seek their quarry. You are as comfortable hunting quarry in the forest as you are conversing with members of the elite who have an interest in hunting.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nature has lessons to teach us all, and I'm always happy to share them. |\r\n| 2 | Once while out on a hunt, something happened which was very relatable to our current situation. Let me tell you about it. |\r\n| 3 | My friends are my new charges, and I'll make sure they thrive. |\r\n| 4 | Preparation and knowledge are the key to any success. |\r\n| 5 | I've dealt with all sorts of wealthy and noble folk, and I've seen just how spoiled they can be. |\r\n| 6 | I feel like my animals are the only ones who really understand me. |\r\n| 7 | You can train yourself to accomplish anything you put your mind to accomplishing. |\r\n| 8 | The world shows you everything you need to know to understand a situation. You just have to be paying attention to the details. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Dedication. Your willingness to get the job done, no matter what the cost, is what is most important. (Evil) |\r\n| 2 | Training. You sink to the level of your training more often than you rise to the occasion. (Any) |\r\n| 3 | Prestige. Pride in your training, your work, and your results is what is best in life. (Any) |\r\n| 4 | Diligent. Hard work and attention to detail bring success more often than failure. (Good) |\r\n| 5 | Nature. The glory and majesty of the wild world outshine anything mortals create. (Chaotic) |\r\n| 6 | Responsibility. When you take an oath to protect and shepherd something, that oath is for life. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I understand animals better than people, and the way of the hunter just makes sense. |\r\n| 2 | I take great pride in providing my services to the wealthy and influential. |\r\n| 3 | Natural spaces need to be tended and preserved, and I take joy in doing it when I can. |\r\n| 4 | I need to ensure people know how to manage nature rather than live in ignorance. |\r\n| 5 | Laws are important to prevent nature's overexploitation. |\r\n| 6 | I can be alone in the wilderness and not feel lonely. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Individuals can be all right, but civilization is the worst. |\r\n| 2 | The wealthy and nobility are a rot in society. |\r\n| 3 | Things die, either by predators or nature; get used to it. |\r\n| 4 | Everything can be managed if you want it badly enough. |\r\n| 5 | When you make exceptions, you allow unworthy or wasteful things to survive. |\r\n| 6 | If you don't work hard for something, is it worth anything? |", - "type": "suggested_characteristics", - "parent": "gamekeeper" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 103, - "fields": { - "name": "Skill Proficiencies", - "desc": "Insight plus one of your choice from among Intimidation or Persuasion", - "type": "skill_proficiency", - "parent": "innkeeper" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 104, - "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", - "parent": "innkeeper" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 105, - "fields": { - "name": "Tool Proficiencies", - "desc": "No additional tool proficiencies", - "type": "tool_proficiency", - "parent": "innkeeper" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 106, - "fields": { - "name": "Equipment", - "desc": "A set of either brewer's supplies or cook's utensils, a dagger or light hammer, traveler's clothes, and a pouch containing 20 gp", - "type": "equipment", - "parent": "innkeeper" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 107, - "fields": { - "name": "I Know Someone", - "desc": "In interacting with the wide variety of people who graced the tables and bars of your previous life, you gained an excellent knowledge of who might be able to perform a particular task, provide the right service, sell the perfect item, or be able to connect you with someone who can. You can spend a couple of hours in a town or city and identify a person or place of business capable of selling the product or service you seek, provided the product is nonmagical and isn't worth more than 250 gp. At the GM's discretion, these restrictions can be lifted in certain locations. The price might not always be what you hoped, the quality might not necessarily be the best, or the person's demeanor may be grating, but you can find the product or service. In addition, you know within the first hour if the product or service you desire doesn't exist in the community, such as a coldweather outfit in a tropical fishing village.", - "type": "feature", - "parent": "innkeeper" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 108, - "fields": { - "name": "Suggested Characteristics", - "desc": "The day-to-day operation of a tavern or inn teaches many lessons about people and how they interact.\r\n\r\nThe nose for trouble, the keen eye on the kegs, and the ready hand on a truncheon translates well to the life of an adventurer.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I insist on doing all the cooking, and I plan strategies like I cook—with proper measurements and all the right ingredients. |\r\n| 2 | Lending a sympathetic ear or a shoulder to cry on often yields unexpected benefits. |\r\n| 3 | I always have a story or tale to relate to any situation. |\r\n| 4 | There is a world of tastes and flavors to explore. |\r\n| 5 | Few problems can't be solved with judicious application of a stout cudgel. |\r\n| 6 | I never pass up the chance to bargain. Never. |\r\n| 7 | I demand the finest accommodations; I know what they're worth. |\r\n| 8 | I can defuse a situation with a joke, cutting remark, or arched eyebrow. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Service.** If we serve others, they will serve us in turn. (Lawful) |\r\n| 2 | **Perspective.** People will tell you a great deal about themselves, their situations, and their desires, if you listen. (Any) |\r\n| 3 | **Determination.** Giving up is not in my nature. (Any) |\r\n| 4 | **Charity.** I try to have extra coins to buy a meal for someone in need. (Good) |\r\n| 5 | **Curiosity.** Staying safe never allows you to see the wonders of the world. (Chaotic) |\r\n| 6 | **Selfish.** We must make sure we bargain for what our skills are worth; people don't value what you give away for free. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I started my career in a tavern, and I'll end it running one of my very own. |\r\n| 2 | I try to ensure stories of my companions will live on forever. |\r\n| 3 | You want to take the measure of a person? Have a meal or drink with them. |\r\n| 4 | I've seen the dregs of life pass through my door, and I will never end up like them. |\r\n| 5 | A mysterious foe burned down my inn, and I will have my revenge. |\r\n| 6 | One day, I want my story to be sung in all the taverns of my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I can't help teasing or criticizing those less intelligent than I. |\r\n| 2 | I love rich food and drink, and I never miss a chance at a good meal. |\r\n| 3 | I never trust anyone who won't drink with me. |\r\n| 4 | I hate it when people start fights in bars; they never consider the consequences. |\r\n| 5 | I can't stand to see someone go hungry or sleep in the cold if I can help it. |\r\n| 6 | I am quick to anger if anyone doesn't like my meals or brews. If you don't like it, do it yourself. |", - "type": "suggested_characteristics", - "parent": "innkeeper" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 109, - "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, History", - "type": "skill_proficiency", - "parent": "mercenary-company-scion" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 110, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "mercenary-company-scion" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 111, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of gaming set, one musical instrument", - "type": "tool_proficiency", - "parent": "mercenary-company-scion" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 112, - "fields": { - "name": "Equipment", - "desc": "A backpack, a signet ring emblazoned with the symbol of your family's free company, a musical instrument of your choice, a mess kit, a set of traveler's clothes, and a belt pouch containing 20 gp", - "type": "equipment", - "parent": "mercenary-company-scion" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 113, - "fields": { - "name": "The Family Name", - "desc": "Your family name is well known in the closeknit world of mercenary companies. Members of mercenary companies readily recognize your name and will provide food, drink, and shelter with pleasure or out of fear, depending upon your family's reputation. You can also gain access to friendly military encampments, fortresses, or powerful political figures through your contacts among the mercenaries. Utilizing such connections might require the donation of money, magic items, or a great deal of drink.", - "type": "feature", - "parent": "mercenary-company-scion" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 114, - "fields": { - "name": "Suggested Characteristics", - "desc": "The turmoil of war, the drudgery of the camp, long days on the road, and the thrill of battle shape a Mercenary Company Scion to create strong bonds of loyalty, military discipline, and a practical mind. Yet this history can scar as well, leaving the scion open to guilt, pride, resentment, and hatred.\r\n\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am ashamed of my family's reputation and seek to distance myself from their deeds. |\r\n| 2 | I have seen the world and know people everywhere. |\r\n| 3 | I expect the best life has to offer and won't settle for less. |\r\n| 4 | I know stories from a thousand campaigns and can apply them to any situation. |\r\n| 5 | After too many betrayals, I don't trust anyone. |\r\n| 6 | My parents were heroes, and I try to live up to their example. |\r\n| 7 | I have seen the horrors of war; nothing dis'turbs me anymore. |\r\n| 8 | I truly believe I have a destiny of glory and fame awaiting me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Glory.** Only by fighting for the right causes can I achieve true fame and honor. (Good) |\r\n| 2 | **Dependable.** Once my oath is given, it cannot be broken. (Lawful) |\r\n| 3 | **Seeker.** Life can be short, so I will live it to the fullest before I die. (Chaotic) |\r\n| 4 | **Ruthless.** Only the strong survive. (Evil) |\r\n| 5 | **Mercenary.** If you have gold, I'm your blade. (Neutral) |\r\n| 6 | **Challenge.** Life is a test, and only by meeting life head on can I prove I am worthy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My parent's legacy is a tissue of lies. I will never stop until I uncover the truth. |\r\n| 2 | I am the only one who can uphold the family name. |\r\n| 3 | My companions are my life, and I would do anything to protect them. |\r\n| 4 | I will never forget the betrayal leading to my parent's murder, but I will avenge them. |\r\n| 5 | My honor and reputation are all that matter in life. |\r\n| 6 | I betrayed my family to protect my friend who was a soldier in another free company. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I have no respect for those who never signed on to a mercenary company or walked the battlefield. |\r\n| 2 | I cannot bear losing anyone close to me, so I keep everyone at a distance. |\r\n| 3 | Bloody violence is the only way to solve problems. |\r\n| 4 | I caused the downfall of my family's mercenary company. |\r\n| 5 | I am hiding a horrible secret about one of my family's patrons. |\r\n| 6 | I see insults to my honor or reputation in every whisper, veiled glance, and knowing look. |", - "type": "suggested_characteristics", - "parent": "mercenary-company-scion" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 115, - "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, Persuasion", - "type": "skill_proficiency", - "parent": "mercenary-recruit" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 116, - "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", - "parent": "mercenary-recruit" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 117, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of gaming set", - "type": "tool_proficiency", - "parent": "mercenary-recruit" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 118, - "fields": { - "name": "Equipment", - "desc": "A letter of introduction from an old teacher, a gaming set of your choice, traveling clothes, and a pouch containing 10 gp", - "type": "equipment", - "parent": "mercenary-recruit" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 119, - "fields": { - "name": "Theoretical Experience", - "desc": "You have an encyclopedic knowledge of stories, myths, and legends of famous soldiers, mercenaries, and generals. Telling these stories can earn you a bed and food for the evening in taverns, inns, and alehouses. Your age or inexperience is endearing, making commoners more comfortable with sharing local rumors, news, and information with you.", - "type": "feature", - "parent": "mercenary-recruit" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 120, - "fields": { - "name": "Suggested Characteristics", - "desc": "Recruits are eager to earn their place in the world of mercenaries. Sometimes humble, other times filled with false bravado, they are still untested by the joys and horrors awaiting them. Meaning well and driven to learn, recruits are generally plagued by their own fears, ignorance, and inexperience.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am thrilled by the thought of an upcoming fight. |\r\n| 2 | Why wait until I'm famous to have songs written about me? I can write my own right now! |\r\n| 3 | I know many stories and legends of famous adventurers and compare everything to these tales. |\r\n| 4 | Humor is how I deal with fear. |\r\n| 5 | I always seek to learn new ways to use my weapons and love sharing my knowledge. |\r\n| 6 | The only way I can prove myself is to work hard and take risks. |\r\n| 7 | When you stop training, you sign your own death notice |\r\n| 8 | I try to act braver than I actually am. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Respect.** To be treated with honor and trust, I must honor and trust people first. (Good) |\r\n| 2 | **Discipline.** A good soldier obeys orders. (Lawful) |\r\n| 3 | **Courage.** Sometimes doing the right thing means breaking the law. (Chaotic) |\r\n| 4 | **Excitement.** I live for the thrill of battle, the rush of the duel, and the glory of victory. (Neutral) |\r\n| 5 | **Power.** When I achieve fame and power, no one will give me orders anymore! (Evil) |\r\n| 6 | **Ambition.** I will make something of myself no matter what. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My first mentor was murdered, and I seek the skills to avenge that crime. |\r\n| 2 | I will become the greatest mercenary warrior ever. |\r\n| 3 | I value the lessons from my teachers and trust them implicitly. |\r\n| 4 | My family has sacrificed much to get me this far. I must repay their faith in me. |\r\n| 5 | I will face any danger to win the respect of my companions. |\r\n| 6 | I have hidden a map to an amazing and powerful magical treasure until I grow strong enough to follow it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I do not trust easily and question anyone who attempts to give me orders. |\r\n| 2 | I ridicule others to hide my insecurities. |\r\n| 3 | To seem brave and competent, I refuse to allow anyone to doubt my courage. |\r\n| 4 | I survived an attack by a monster as a child, and I have feared that creature ever since. |\r\n| 5 | I have a hard time thinking before I act. |\r\n| 6 | I hide my laziness by tricking others into doing my work for me. |", - "type": "suggested_characteristics", - "parent": "mercenary-recruit" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 121, - "fields": { - "name": "Skill Proficiencies", - "desc": "Intimidation, Survival", - "type": "skill_proficiency", - "parent": "monstrous-adoptee" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 122, - "fields": { - "name": "Languages", - "desc": "One language of your choice, typically your adopted parents' language (if any)", - "type": "language", - "parent": "monstrous-adoptee" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 123, - "fields": { - "name": "Tool Proficiencies", - "desc": "No additional tool proficiencies", - "type": "tool_proficiency", - "parent": "monstrous-adoptee" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 124, - "fields": { - "name": "Equipment", - "desc": "A club, handaxe, or spear, a trinket from your life before you were adopted, a set of traveler's clothes, a collection of bones, shells, or other natural objects, and a belt pouch containing 5 gp", - "type": "equipment", - "parent": "monstrous-adoptee" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 125, - "fields": { - "name": "Abnormal Demeanor", - "desc": "Your time with your adopted parents taught you an entire lexicon of habits, behaviors, and intuitions suited to life in the wild among creatures of your parents' type. When you are in the same type of terrain your adopted parent inhabits, you can find food and fresh water for yourself and up to five other people each day. In addition, when you encounter a creature like your adopted parent or parents, the creature is disposed to hear your words instead of leaping directly into battle. Mindless or simple creatures might not respond to your overtures, but more intelligent creatures may be willing to treat instead of fight, if you approach them in an appropriate manner. For example, if your adopted parent was a cloaker, when you encounter a cloaker years later, you understand the appropriate words, body language, and motions for approaching the cloaker respectfully and peacefully.", - "type": "feature", - "parent": "monstrous-adoptee" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 126, - "fields": { - "name": "Suggested Characteristics", - "desc": "When monstrous adoptees leave their adopted parents for the wider world, they often have a hard time adapting. What is common or usual for many humanoids strikes them as surprising, frightening, or infuriating, depending on the individual. Most make an effort to adjust their habits and imitate those around them, but not all. Some lean into their differences, reveling in shocking those around them. When you choose a creature to be your character's adopted parent, think about how that might affect your character. Was your character treated kindly? Was your character traded by their birth parents to their adopted parents as part of some mysterious bargain? Did your character seek constant escape or do they miss their adopted parents?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I don't eat my friends (at least not while they are alive). My foes, on the other hand . . . |\r\n| 2 | Meeting another's gaze is a challenge for dominance that I never fail to answer. |\r\n| 3 | Monsters I understand; people are confusing. |\r\n| 4 | There are two types of creatures in life: prey or not-prey. |\r\n| 5 | I often use the growls, sounds, or calls of my adopted parents instead of words. |\r\n| 6 | Inconsequential items fascinate me. |\r\n| 7 | It's not my fault, I was raised by [insert parent's type here]. |\r\n| 8 | I may look fine, but I behave like a monster. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Wild.** After seeing the wider world, I want to be the monster that strikes fear in the hearts of people. (Evil) |\r\n| 2 | **Insight.** I want to understand the world of my adopted parents. (Neutral) |\r\n| 3 | **Revenge.** I want revenge for my lost childhood. Monsters must die! (Any) |\r\n| 4 | **Harmony.** With my unique perspective and upbringing, I hope to bring understanding between the different creatures of the world. (Good) |\r\n| 5 | **Freedom.** My past away from law-abiding society has shown me the ridiculousness of those laws. (Chaotic) |\r\n| 6 | **Redemption.** I will rise above the cruelty of my adopted parent and embrace the wider world. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I want to experience every single aspect of the world. |\r\n| 2 | I rely on my companions to teach me how to behave appropriately in their society. |\r\n| 3 | I have a *sibling*, a child of my adopted parent that was raised alongside me, and now that sibling has been kidnapped! |\r\n| 4 | My monstrous family deserves a place in this world, too. |\r\n| 5 | I'm hiding from my monstrous family. They want me back! |\r\n| 6 | An old enemy of my adopted parents is on my trail. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | What? I like my meat raw. Is that so strange? |\r\n| 2 | I like to collect trophies from my defeated foes (ears, teeth, bones, or similar). It's how I keep score. |\r\n| 3 | I usually forget about pesky social conventions like *personal property* or *laws*. |\r\n| 4 | I am easily startled by loud noises or bright lights. |\r\n| 5 | I have trouble respecting anyone who can't best me in a fight. |\r\n| 6 | Kindness is for the weak. |", - "type": "suggested_characteristics", - "parent": "monstrous-adoptee" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 127, - "fields": { - "name": "Skill Proficiencies", - "desc": "Deception, Survival", - "type": "skill_proficiency", - "parent": "mysterious-origins" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 128, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "mysterious-origins" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 129, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of artisan's tools or one type of musical instrument", - "type": "tool_proficiency", - "parent": "mysterious-origins" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 130, - "fields": { - "name": "Equipment", - "desc": "A mysterious trinket from your past life, a set of artisan's tools or a musical instrument (one of your choice), a set of common clothes, and a belt pouch containing 5 gp", - "type": "equipment", - "parent": "mysterious-origins" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 131, - "fields": { - "name": "Unexpected Acquaintance", - "desc": "Even though you can't recall them, someone from your past will recognize you and offer to aid you—or to impede you. The person and their relationship to you depend on the truth of your backstory. They might be a childhood friend, a former rival, or even your child who's grown up with dreams of finding their missing parent. They may want you to return to your former life even if it means abandoning your current goals and companions. Work with your GM to determine the details of this character and your history with them.", - "type": "feature", - "parent": "mysterious-origins" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 132, - "fields": { - "name": "Suggested Characteristics", - "desc": "You may be bothered by your lack of memories and driven to recover them or reclaim the secrets of your past, or you can use your anonymity to your advantage.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm always humming a song, but I can't remember the words. |\r\n| 2 | I love learning new things and meeting new people. |\r\n| 3 | I want to prove my worth and have people know my name. |\r\n| 4 | I don't like places that are crowded or noisy. |\r\n| 5 | I'm mistrustful of mages and magic in general. |\r\n| 6 | I like to keep everything tidy and organized so that I can find things easily. |\r\n| 7 | Every night I record my day in a detailed journal. |\r\n| 8 | I live in the present. The future will come as it may. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Redemption.** Whatever I did in the past, I'm determined to make the world a better place. (Good) |\r\n| 2 | **Independence.** I'm beholden to no one, so I can do whatever I want. (Chaotic) |\r\n| 3 | **Cunning.** Since I have no past, no one can use it to thwart my rise to power. (Evil) |\r\n| 4 | **Community.** I believe in a just society that takes care of people in need. (Lawful) |\r\n| 5 | **Fairness.** I judge others by who they are now, not by what they've done in the past. (Neutral) |\r\n| 6 | **Friendship.** The people in my life now are more important than any ideal. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have dreams where I see a loved one's face, but I can't remember their name or who they are. |\r\n| 2 | I wear a wedding ring, so I must have been married before I lost my memories. |\r\n| 3 | My mentor raised me; they told me that I lost my memories in a terrible accident that killed my family. |\r\n| 4 | I have an enemy who wants to kill me, but I don't know what I did to earn their hatred. |\r\n| 5 | I know there's an important memory attached to the scar I bear on my body. |\r\n| 6 | I can never repay the debt I owe to the person who cared for me after I lost my memories. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am jealous of those who have memories of a happy childhood. |\r\n| 2 | I'm desperate for knowledge about my past, and I'll do anything to obtain that information. |\r\n| 3 | I'm terrified of meeting someone from my past, so I avoid strangers as much as possible. |\r\n| 4 | Only the present matters. I can't bring myself to care about the future. |\r\n| 5 | I'm convinced that I was powerful and rich before I lost my memories—and I expect everyone to treat me accordingly. |\r\n| 6 | Anyone who shows me pity is subjected to my biting scorn. |", - "type": "suggested_characteristics", - "parent": "mysterious-origins" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 133, - "fields": { - "name": "Skill Proficiencies", - "desc": "Perception plus one of your choice from among History or Performance", - "type": "skill_proficiency", - "parent": "northern-minstrel" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 134, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "northern-minstrel" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 135, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of musical instrument", - "type": "tool_proficiency", - "parent": "northern-minstrel" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 136, - "fields": { - "name": "Equipment", - "desc": "A book collecting all the songs, poems, or stories you know, a pair of snowshoes, one musical instrument of your choice, a heavy fur-lined cloak, and a belt pouch containing 10 gp", - "type": "equipment", - "parent": "northern-minstrel" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 137, - "fields": { - "name": "Northern Historian", - "desc": "Your education and experience have taught you how to determine the provenance of ruins, monuments, and other structures within the north. When you spend at least 1 hour examining a structure or non-natural feature of the terrain, you can determine if it was built by humans, dwarves, elves, goblins, giants, trolls, or fey. You can also determine the approximate age (within 500 years) of the construction based on its features and embellishments.", - "type": "feature", - "parent": "northern-minstrel" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 138, - "fields": { - "name": "Suggested Characteristics", - "desc": "Northern minstrels tend to either be boisterous and loud or pensive and watchful with few falling between these extremes. Many exude both qualities at different times, and they have learned how and when to turn their skald persona on and off. Like other northerners, they place a lot of stock in appearing brave and tough, which can lead them unwittingly into conflict.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will accept any dare and expect accolades when I complete it. |\r\n| 2 | Revelry and boisterousness are for foolish children. I prefer to quietly wait and watch. |\r\n| 3 | I am more than a match for any northern reaver. If they believe that is not so, let them show me what stuff they are made of. |\r\n| 4 | I yearn for the raiding season and the tales of blood and butchery I can use to draw the crowds. |\r\n| 5 | Ragnarok is nigh. I will bear witness to the end of all things and leave a record should there be any who survive it. |\r\n| 6 | There is nothing better than mutton, honeyed mead, and a crowd in thrall to my words. |\r\n| 7 | The gods weave our fates. There is nothing to do but accept this and live as we will. |\r\n| 8 | All life is artifice. I lie better than most and I am not ashamed to reap the rewards. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Valor.** Stories and songs should inspire others—and me—to perform great deeds that benefit us all. (Good) |\r\n| 2 | **Greed.** There is little point in taking action if it leads to living in squalor. I will take what I want and dare any who disagree to oppose me. (Evil) |\r\n| 3 | **Perfection.** I will not let the threat of failure deter me. Every deed I attempt, even those I do not succeed at, serve to improve me and prepare me for future endeavors. (Lawful) |\r\n| 4 | **Anarchy.** If Ragnarok is coming to end all that is, I must do what I want and damn the consequences. (Chaotic) |\r\n| 5 | **Knowledge.** The north is full of ancient ruins and monuments. If I can glean their meaning, I may understand fate as well as the gods. (Any) |\r\n| 6 | **Pleasure.** I will eat the richest food, sleep in the softest bed, enjoy the finest company, and allow no one to stand in the way of my delight and contentment. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have the support of my peers from the skaldic school I attended, and they have mine. |\r\n| 2 | I will find and answer the Unanswerable Riddle and gain infamy. |\r\n| 3 | I will craft an epic of such renown it will be recited the world over. |\r\n| 4 | All my companions were slain in an ambush laid by cowardly trolls. At least I snatched up my tagelharpa before I escaped the carnage. |\r\n| 5 | The cold waves call to me even across great distances. I must never stray too far from the ocean's embrace. |\r\n| 6 | It is inevitable that people fail me. Mead, on the other hand, never fails to slake my thirst. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Only a coward retreats. The valiant press forward to victory or death. |\r\n| 2 | All the tales I tell of my experiences are lies. |\r\n| 3 | Critics and hecklers will suffer my wrath once the performance is over. |\r\n| 4 | Companions and friends cease to be valuable if their accomplishments outshine my own. |\r\n| 5 | I once burned down a tavern where I was poorly received. I would do it again. |\r\n| 6 | I cannot bear to be gainsaid and fall into a bitter melancholy when I am. |", - "type": "suggested_characteristics", - "parent": "northern-minstrel" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 139, - "fields": { - "name": "Skill Proficiencies", - "desc": "Arcana, Religion", - "type": "skill_proficiency", - "parent": "occultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 140, - "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", - "parent": "occultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 141, - "fields": { - "name": "Tool Proficiencies", - "desc": "Thieves' tools", - "type": "tool_proficiency", - "parent": "occultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 142, - "fields": { - "name": "Equipment", - "desc": "A book of obscure lore holding clues to an occult location, a bottle of black ink, a quill, a leather-bound journal in which you record your secrets, a bullseye lantern, a set of common clothes, and a belt pouch containing 5 gp", - "type": "equipment", - "parent": "occultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 143, - "fields": { - "name": "Strange Lore", - "desc": "Your passions for forbidden knowledge, esoteric religions, secretive cults, and terrible histories brought you into contact with a wide variety of interesting and unique individuals operating on the fringes of polite society. When you're trying to find something that pertains to eldritch secrets or dark knowledge, you have a good idea of where to start looking. Usually, this information comes from information brokers, disgraced scholars, chaotic mages, dangerous cults, or insane priests. Your GM might rule that the knowledge you seek isn't found with just one contact, but this feature provides a starting point.", - "type": "feature", - "parent": "occultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 144, - "fields": { - "name": "Suggested Characteristics", - "desc": "Occultists can't resist the lure of an ancient ruin, forgotten dungeon, or the lair of some mysterious cult. They eagerly follow odd rumors, folktales, and obscure clues found in dusty tomes. Some adventure with the hope of turning their discoveries into fame and fortune, while others consider the answers they uncover to be the true reward. Whatever their motivations, occultists combine elements of archaeologist, scholar, and fanatic.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I always ask questions, especially if I think I can learn something new. |\r\n| 2 | I believe every superstition I hear and follow their rules fanatically. |\r\n| 3 | The things I know give me nightmares, and not only when I sleep. |\r\n| 4 | Nothing makes me happier than explaining some obscure lore to my friends. |\r\n| 5 | I startle easily. |\r\n| 6 | I perform a host of rituals throughout the day that I believe protect me from occult threats. |\r\n| 7 | I never know when to give up. |\r\n| 8 | The more someone refuses to believe me, the more I am determined to convince them. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Domination.** With the power I will unearth, I will take my revenge on those who wronged me. (Evil) |\r\n| 2 | **Mettle.** Each nugget of hidden knowledge I uncover proves my worth. (Any) |\r\n| 3 | **Lore.** Knowledge is never good or evil; it is simply knowledge. (Neutral) |\r\n| 4 | **Redemption.** This dark knowledge can be made good if it is used properly. (Good) |\r\n| 5 | **Truth.** Nothing should be hidden. Truth is all that matters, no matter who it hurts. (Chaotic) |\r\n| 6 | **Responsibility.** Only by bringing dark lore into the light can we eliminate its threat. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | One or more secret organizations are trying to stop me, which means I must be close to the truth. |\r\n| 2 | My studies come before anything else. |\r\n| 3 | No theory, however unbelievable, is worth abandoning without investigation. |\r\n| 4 | I must uncover the truth behind a particular mystery, one my father died to protect. |\r\n| 5 | I travel with my companions because I have reason to believe they are crucial to the future. |\r\n| 6 | I once had a partner in my occult searches who vanished. I am determined to find them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | When stressed, I mutter theories to myself, sometimes connecting seemingly unconnected or random events, to explain my current predicament. |\r\n| 2 | It's not paranoia if they really are out to get me. |\r\n| 3 | I have a habit of lying to hide my theories and discoveries. |\r\n| 4 | I see secrets and mysteries in everything and everyone. |\r\n| 5 | The world is full of dark secrets, and I'm the only one who can safely unearth them. |\r\n| 6 | There is no law or social convention I won't break to further my goals. |", - "type": "suggested_characteristics", - "parent": "occultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 145, - "fields": { - "name": "Skill Proficiencies", - "desc": "Nature, Investigation", - "type": "skill_proficiency", - "parent": "parfumier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 146, - "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", - "parent": "parfumier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 147, - "fields": { - "name": "Tool Proficiencies", - "desc": "Alchemist's supplies, herbalism kit", - "type": "tool_proficiency", - "parent": "parfumier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 148, - "fields": { - "name": "Equipment", - "desc": "Herbalism kit, a leather satchel containing perfume recipes, research notes, and chemical and botanical samples; 1d4 metal or crystal (shatter-proof) perfume bottles, a set of fine clothes, and a silk purse containing 10 gp", - "type": "equipment", - "parent": "parfumier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 149, - "fields": { - "name": "Aromas and Odors and Airs, Oh My", - "desc": "Before you became an adventurer, you crafted perfumes for customers in your home town or city. When not out adventuring, you can fall back on that trade to make a living. For each week you spend practicing your profession, you can craft one of the following at half the normal cost in time and resources: 5 samples of fine perfume worth 10 gp each, 2 vials of acid, or 1 vial of parfum toxique worth 50 gp. As an action, you can throw a vial of parfum toxique up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the parfum as an improvised weapon. On a hit, the target takes 1d6 poison damage and is poisoned until the end of its next turn.", - "type": "feature", - "parent": "parfumier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 150, - "fields": { - "name": "Suggested Characteristics", - "desc": "As with many parfumiers with the extensive training you received, you are well spoken, stately of bearing, and possessed of a self-assuredness that sometimes is found imposing. You are not easily impressed and rarely subscribe to notions like *insurmountable* or *unavoidable*. Every problem has a solution.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I do not deal in absolutes. There is a solution to every problem, an answer for every riddle. |\r\n| 2 | I am used to associating with educated and “elevated” society. I find rough living and rough manners unpalatable. |\r\n| 3 | Years spent witnessing the dealings, intrigues, and industrial espionage of the Bouquet Districts' mercantile-elite have left me secretive and guarded. |\r\n| 4 | I have a strong interest and sense for fashion and current trends. |\r\n| 5 | I eagerly discuss the minutiae, subtleties, and nuances of my profession to any who will listen. |\r\n| 6 | I am easily distracted by unusual or exceptional botanical specimens. |\r\n| 7 | I can seem distant and introverted. I listen more than I speak. |\r\n| 8 | I always strive to make allies, not enemies. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Responsibility.** It is my duty to share my exceptional gifts and knowledge for the betterment of all. (Good) |\r\n| 2 | **Pragmatism.** I never let passion, preference, or emotion influence my decision-making or clear headedness. (Lawful) |\r\n| 3 | **Freedom.** Rules, particularly those imposed by others, were meant to be broken. (Chaotic) |\r\n| 4 | **Deep Science.** I live a life based on facts, logic, probability, and common sense. (Lawful) |\r\n| 5 | **Notoriety.** I will do whatever it takes to become the elite that I was witness to during my time among the boutiques, salons, and workshops of the noble's district. (Any) |\r\n| 6 | **Profit.** I will utilize my talents to harvest, synthesize, concoct, and brew almost anything for almost anyone. As long as the profit margin is right. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will return to my home city someday and have revenge upon the elitist perfume consortium and corrupt shipping magnates who drove my dreams to ruin. |\r\n| 2 | I have been experimenting and searching my whole career for the ultimate aromatic aphrodisiac. The “alchemists' stone” of perfumery. |\r\n| 3 | My home is safely far behind me now. With it go the unfounded accusations, spiteful rumors, and perhaps some potential links to a string of corporate assassinations. |\r\n| 4 | I am cataloging an encyclopedia of flora and their various chemical, magical, and alchemical properties and applications. It is my life's work. |\r\n| 5 | I am dedicated to my craft, always seeking to expand my knowledge and hone my skills in the science and business of aromatics. |\r\n| 6 | I have a loved one who is threatened (held hostage?) by an organized gang of vicious halfling thugs who control many of the “rackets” in the perfumeries in my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am driven to reclaim the status and respect of the socially and scientifically elite and will sacrifice much to gain it. |\r\n| 2 | I am highly competitive and not above plagiarizing or stealing the occasional recipe, idea, formula, or sample. |\r\n| 3 | I am hard-pressed to treat anyone who is not (by my standards) “well schooled” or “well heeled” as little more than lab assistants and house servants. |\r\n| 4 | A pretty face is always able to lead me astray. |\r\n| 5 | I am secretly addicted to a special perfume that only I can reproduce. |\r\n| 6 | *On a stormy night, I heard a voice in the wind, which led me to a mysterious plant. Its scent was intoxicating, and I consumed it. Now, that voice occasionally whispers in my dreams, urging me to some unknown destiny.* |", - "type": "suggested_characteristics", - "parent": "parfumier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 151, - "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, Sleight of Hand", - "type": "skill_proficiency", - "parent": "scoundrel" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 152, - "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", - "parent": "scoundrel" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 153, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of gaming set, thieves' tools", - "type": "tool_proficiency", - "parent": "scoundrel" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 154, - "fields": { - "name": "Equipment", - "desc": "A bag of 1,000 ball bearings, a pet monkey wearing a tiny fez, a set of common clothes, and a pouch containing 10 gp", - "type": "equipment", - "parent": "scoundrel" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 155, - "fields": { - "name": "Urban Explorer", - "desc": "You are familiar with the layout and rhythms of towns and cities. When you arrive in a new city, you can quickly locate places to stay, where to buy good quality gear, and other facilities. You can shake off pursuers when you are being chased through the streets or across the rooftops. You have a knack for leading pursuers into a crowded market filled with stalls piled high with breakable merchandise, or down a narrow alley just as a dung cart is coming in the other direction.", - "type": "feature", - "parent": "scoundrel" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 156, - "fields": { - "name": "Suggested Characteristics", - "desc": "Despite their poor upbringing, scoundrels tend to live a charmed life—never far from trouble, but usually coming out on top. Many are thrill-seekers who delight in taunting their opponents before making a flashy and daring escape. Most are generally good-hearted, but some are self-centered to the point of arrogance. Quieter, introverted types and the lawfully-inclined can find them very annoying.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Flashing a big smile often gets me out of trouble. |\r\n| 2 | If I can just keep them talking, it will give me time to escape. |\r\n| 3 | I get fidgety if I have to sit still for more than ten minutes or so. |\r\n| 4 | Whatever I do, I try to do it with style and panache. |\r\n| 5 | I don't hold back when there's free food and drink on offer. |\r\n| 6 | Nothing gets me more annoyed than being ignored. |\r\n| 7 | I always sit with my back to the wall and my eyes on the exits. |\r\n| 8 | Why walk down the street when you can run across the rooftops? |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** Ropes and chains are made to be broken. Locks are made to be picked. Doors are meant to be opened. (Chaotic) |\r\n| 2 | **Community.** We need to look out for one another and keep everyone safe. (Lawful) |\r\n| 3 | **Charity.** I share my wealth with those who need it the most. (Good) |\r\n| 4 | **Friendship.** My friends matter more to me than lofty ideals. (Neutral) |\r\n| 5 | **Aspiration.** One day my wondrous deeds will be known across the world. (Any) |\r\n| 6 | **Greed.** I'll stop at nothing to get what I want. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My elder sibling taught me how to find a safe hiding place in the city. This saved my life at least once. |\r\n| 2 | I stole money from someone who couldn't afford to lose it and now they're destitute. One day I'll make it up to them. |\r\n| 3 | The street kids in my town are my true family. |\r\n| 4 | My mother gave me an old brass lamp. I polish it every night before going to sleep. |\r\n| 5 | When I was young, I was too scared to leap from the tallest tower in my hometown onto the hay cart beneath. I'll try again someday. |\r\n| 6 | A city guardsman let me go when they should have arrested me for stealing. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If there's a lever to pull, I'll pull it. |\r\n| 2 | It's not stealing if nobody realizes it's gone. |\r\n| 3 | If I don't like the odds, I'm out of there. |\r\n| 4 | I often don't know when to shut up. |\r\n| 5 | I once filched a pipe from a priest. Now I think the god has cursed me. |\r\n| 6 | I grow angry when someone else steals the limelight. |", - "type": "suggested_characteristics", - "parent": "scoundrel" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 157, - "fields": { - "name": "Skill Proficiencies", - "desc": "Insight, Perception", - "type": "skill_proficiency", - "parent": "sentry" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 158, - "fields": { - "name": "Languages", - "desc": "One language of your choice", - "type": "language", - "parent": "sentry" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 159, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of gaming set", - "type": "tool_proficiency", - "parent": "sentry" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 160, - "fields": { - "name": "Equipment", - "desc": "A set of dice or deck of cards, a shield bearing your previous employer's symbol, a set of common clothes, a hooded lantern, a signal whistle, and a belt pouch containing 10 gp", - "type": "equipment", - "parent": "sentry" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 161, - "fields": { - "name": "Comrades in Arms", - "desc": "The knowing look from the caravan guard to the city gatekeeper or the nod of recognition between the noble's bodyguard and the district watchman—no matter the community, city, or town, the guards share a commonality of purpose. When you arrive in a new location, you can speak briefly with the gate guards, local watch, or other community guardians to gain local knowledge. This knowledge could be information, such as the most efficient routes through the city, primary vendors for a variety of luxury goods, the best (or worst) inns and taverns, the primary criminal elements in town, or the current conflicts in the community.", - "type": "feature", - "parent": "sentry" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 162, - "fields": { - "name": "Suggested Characteristics", - "desc": "You're a person who understands both patience and boredom, as a guard is always waiting for something to happen. More often than not, sentries hope nothing happens because something happening usually means something has gone wrong. A life spent watching and protecting, acting in critical moments, and learning the details of places and behaviors; all of these help shape the personality of the former sentry. Some claim you never stop being a guard, you just change what you protect.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I've seen the dregs of society and nothing surprises me anymore. |\r\n| 2 | I know where to look to spot threats lurking around a corner, in a glance, and even in a bite of food or cup of drink. |\r\n| 3 | I hate standing still and always keep moving. |\r\n| 4 | My friends know they can rely on me to stand and protect them. |\r\n| 5 | I resent the rich and powerful; they think they can get away with anything. |\r\n| 6 | A deception of any sort marks you as untrustworthy in my mind. |\r\n| 7 | Stopping lawbreakers taught me the best ways to skirt the law. |\r\n| 8 | I never take anything at face-value. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greed.** Threats to my companions only increase my glory when I protect them from it. (Evil) |\r\n| 2 | **Perception.** I watch everyone, for threats come from every rank or station. (Neutral) |\r\n| 3 | **Duty.** The laws of the community must be followed to keep everyone safe. (Lawful) |\r\n| 4 | **Community.** I am all that stands between my companions and certain doom. (Good) |\r\n| 5 | **Determination.** To truly protect others, you must sometimes break the law. (Chaotic) |\r\n| 6 | **Practicality.** I require payment for the protection or service I provide. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My charge is paramount; if you can't protect your charge, you've failed. |\r\n| 2 | I was once saved by one of my fellow guards. Now I always come to my companions' aid, no matter what the threat. |\r\n| 3 | My oath is unbreakable; I'd rather die first. |\r\n| 4 | There is no pride equal to the accomplishment of a successful mission. |\r\n| 5 | I stand as a bulwark against those who would damage or destroy society, and society is worth protecting. |\r\n| 6 | I know that as long as I stand with my companions, things can be made right. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Sometimes I may overindulge in a guilty pleasure, but you need something to pass time. |\r\n| 2 | I can't just sit quietly next to someone. I've got to fill the silence with conversation to make good company. |\r\n| 3 | I'm not very capable in social situations. I'd rather sit on the sidelines and observe. People make me nervous. |\r\n| 4 | I have a tough time trusting strangers and new people. You don't know their habits and behaviors; therefore, you don't know their risk. |\r\n| 5 | There is danger all around us, and only the foolish let their guard down. I am no fool, and I will spot the danger. |\r\n| 6 | I believe there's a firm separation between task and personal time. I don't do other people's work when I'm on my own time. If you want me, hire me. |", - "type": "suggested_characteristics", - "parent": "sentry" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 163, - "fields": { - "name": "Skill Proficiencies", - "desc": "Nature, Survival", - "type": "skill_proficiency", - "parent": "trophy-hunter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 164, - "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", - "parent": "trophy-hunter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 165, - "fields": { - "name": "Tool Proficiencies", - "desc": "Leatherworker's tools, vehicles (land)", - "type": "tool_proficiency", - "parent": "trophy-hunter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 166, - "fields": { - "name": "Equipment", - "desc": "A donkey or mule with bit and bridle, a set of cold-weather or warm-weather clothes, and a belt pouch containing 5 gp", - "type": "equipment", - "parent": "trophy-hunter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 167, - "fields": { - "name": "Shelter from the Storm", - "desc": "You have spent years hunting in the harshest environments of the world and have seen tents blown away by gales, food stolen by hungry bears, and equipment destroyed by the elements. While traveling in the wilderness, you can find a natural location suitable to make camp by spending 1 hour searching. This location provides cover from the elements and is in some way naturally defensible, at the GM's discretion.", - "type": "feature", - "parent": "trophy-hunter" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 168, - "fields": { - "name": "Suggested Characteristics", - "desc": "Most trophy hunters are skilled hobbyists and find strange relaxation in the tension of the hunt and revel in the glory of a kill. You may find great personal joy in hunting, in the adoration of peers, or simply in earning gold by selling pelts, scales, and horns.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nothing gets my blood pumping like stalking a wild animal. |\r\n| 2 | I like things big! Trophies, big! Food, big! Money, houses, weapons, possessions, I want ‘em big, big, BIG! |\r\n| 3 | When hunting, it's almost as if I become a different person. Focused. Confident. Ruthless. |\r\n| 4 | The only way to kill a beast is to be patient and find the perfect moment to strike. The same is true for all the important things in life. |\r\n| 5 | Bathing is for novices. I know that to catch my smelly, filthy prey, I must smell like them to throw off their scent. |\r\n| 6 | I eat only raw meat. It gets me more in tune with my prey. |\r\n| 7 | I'm a connoisseur of killing implements; I only use the best, because I am the best. |\r\n| 8 | I thank the natural world for its bounty after every kill. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Ambition.** It is my divine calling to become better than my rivals by any means necessary. (Chaotic) |\r\n| 2 | **Altruism.** I hunt only to protect those who cannot protect themselves. (Good) |\r\n| 3 | **Determination.** No matter what the laws say, I will kill that beast! (Chaotic) |\r\n| 4 | **Cruelty.** My prey lives only for my pleasure. It will die exactly as quickly or as slowly as I desire. (Evil) |\r\n| 5 | **Sport.** We're just here to have fun. (Neutral) |\r\n| 6 | **Family.** I follow in my family's footsteps. I will not tarnish their legacy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I like hunting because I like feeling big and powerful. |\r\n| 2 | I hunt because my parents think I'm a worthless runt. I need to make them proud. |\r\n| 3 | I was mauled by a beast on my first hunting trip. I've spent my life searching for that monster. |\r\n| 4 | The first time I drew blood, something awoke within me. Every hunt is a search for the original ecstasy of blood. |\r\n| 5 | My hunting companions used to laugh at me behind my back. They aren't laughing anymore. |\r\n| 6 | A close friend funded my first hunting expedition. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm actually a sham. All of my trophies were bagged by someone else. I just followed along and watched. |\r\n| 2 | I'm terrified of anything larger than myself. |\r\n| 3 | I can't express anger without lashing out at something. |\r\n| 4 | I need money. I don't care how much or how little I have; I need more. And I would do anything to get it. |\r\n| 5 | I am obsessed with beauty in animals, art, and people. |\r\n| 6 | I don't trust my hunting partners, whom I know are here to steal my glory! |", - "type": "suggested_characteristics", - "parent": "trophy-hunter" - } -} -] + { + "model": "api_v2.backgroundbenefit", + "pk": 18, + "fields": { + "name": "Skill Proficiencies", + "desc": "Perception, Survival", + "type": "skill_proficiency", + "parent": "toh_desert-runner" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 19, + "fields": { + "name": "Tool Proficiencies", + "desc": "Herbalist kit", + "type": "tool_proficiency", + "parent": "toh_desert-runner" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 20, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_desert-runner" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 21, + "fields": { + "name": "Equipment", + "desc": "Traveler's clothes, herbalist kit, waterskin, pouch with 10 gp", + "type": "equipment", + "parent": "toh_desert-runner" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 22, + "fields": { + "name": "Nomad", + "desc": "Living in the open desert has allowed your body to adapt to a range of environmental conditions. You can survive on 1 gallon of water in hot conditions (or 1/2 gallon in normal conditions) without being forced to make Constitution saving throws, and you are considered naturally adapted to hot climates. While in a desert, you can read the environment to predict natural weather patterns and temperatures for the next 24 hours, allowing you to cross dangerous terrain at the best times. The accuracy of your predictions is up to the GM, but they should be reliable unless affected by magic or unforeseeable events, such as distant earthquakes or volcanic eruptions.", + "type": "feature", + "parent": "toh_desert-runner" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 23, + "fields": { + "name": "Suggested Characteristics", + "desc": "Those raised in the desert can be the friendliest of humanoids—knowing allies are better than enemies in that harsh environment—or territorial and warlike, believing that protecting food and water sources by force is the only way to survive.\r\n\r\n| d8 | Personality Trait |\r\n| --- | --- |\r\n| 1 | I'm much happier sleeping under the stars than in a bed in a stuffy caravanserai. |\r\n| 2 | It's always best to help a traveler in need; one day it might be you. | \r\n| 3 | I am slow to trust strangers, but I'm extremely loyal to my friends. | \r\n| 4 | If there's a camel race, I'm the first to saddle up! | \r\n| 5 | I always have a tale or poem to share at the campfire. | \r\n| 6 | I don't like sleeping in the same place more than two nights in a row. | \r\n| 7 | I've been troubled by dreams for the last month. I am determined to uncover their meaning. | \r\n| 8 | I feel lonelier in a crowded city than I do out on the empty desert sands. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greater Good.** The needs of the whole tribe outweigh those of the individuals who are part of it. (Good) |\r\n| 2 | **Nature.** I must do what I can to protect the beautiful wilderness from those who would do it harm. (Neutral) |\r\n| 3 | **Tradition.** I am duty-bound to follow my tribe's age-old route through the desert. (Lawful) |\r\n 4 | **Change.** Things seldom stay the same and we must always be prepared to go with the flow. (Chaotic) |\r\n| 5 | **Honor.** If I behave dishonorably, my actions will bring shame upon the entire tribe. (Lawful) |\r\n| 6 | **Greed.** Seize what you want if no one gives it to you freely. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I am the last living member of my tribe, and I cannot let their deaths go unavenged. |\r\n| 2 | I follow the spiritual path of my tribe; it will bring me to the best afterlife when the time comes. |\r\n| 3 | My best friend has been sold into slavery to devils, and I need to rescue them before it is too late. |\r\n| 4 | A nature spirit saved my life when I was dying of thirst in the desert. |\r\n| 5 | My takoba sword is my most prized possession; for over two centuries, it's been handed down from generation to generation. |\r\n| 6 | I have sworn revenge on the sheikh who unjustly banished me from the tribe. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I enjoy the company of camels more than people. |\r\n| 2 | I can be loud and boorish after a few wineskins. |\r\n| 3 | If I feel insulted, I'll refuse to speak to anyone for several hours. |\r\n| 4 | I enjoy violence and mayhem a bit too much. |\r\n| 5 | You can't rely on me in a crisis. |\r\n| 6 | I betrayed my brother to cultists to save my own skin. |", + "type": "suggested_characteristics", + "parent": "toh_desert-runner" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 35, + "fields": { + "name": "Skill Proficiencies", + "desc": "History, Insight", + "type": "skill_proficiency", + "parent": "toh_court-servant" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 36, + "fields": { + "name": "Tool Proficiencies", + "desc": "One artisan's tools set of your choice", + "type": "tool_proficiency", + "parent": "toh_court-servant" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 37, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_court-servant" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 38, + "fields": { + "name": "Equipment", + "desc": "A set of artisan's tools of your choice, a unique piece of jewelry, a set of fine clothes, a handcrafted pipe, and a belt pouch containing 20 gp", + "type": "equipment", + "parent": "toh_court-servant" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 39, + "fields": { + "name": "Servant's Invisibility", + "desc": "The art of excellent service requires a balance struck between being always available and yet unobtrusive, and you've mastered it. If you don't perform a visible action, speak or be spoken to, or otherwise have attention drawn to you for at least 1 minute, creatures nearby have trouble remembering you are even in the room. Until you speak, perform a visible action, or have someone draw attention to you, creatures must succeed on a Wisdom (Perception) check (DC equal to 8 + your Charisma modifier + your proficiency bonus) to notice you. Otherwise, they conduct themselves as though you aren't present until either attention is drawn to you or one of their actions would take them into or within 5 feet of the space you occupy.", + "type": "feature", + "parent": "toh_court-servant" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 40, + "fields": { + "name": "Suggested Characteristics", + "desc": "Court servants tend to be outwardly quiet and soft-spoken, but their insight into the nuances of conversation and societal happenings is unparalleled. When in crowds or around strangers, most court servants keep to themselves, quietly observing their surroundings and later sharing such observations with those they trust.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Unless I must speak, I hold my breath while serving others. |\r\n| 2 | It takes all my effort not to show the effusive emotions I feel when I help others. Best to quietly serve. |\r\n| 3 | It's getting harder to tolerate the prejudices of those I serve daily. |\r\n| 4 | Though the old ways are hard to give up, I want to be my own boss. I'll decide my path. |\r\n| 5 | Serving my family and friends is the only thing I truly care about. |\r\n| 6 | City life is killing my soul. I long for the old courtly ways. |\r\n| 7 | It's time for my fellows to wake up and be taken advantage of no longer. |\r\n| 8 | It's the small things that make it all worthwhile. I try to be present in every moment. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Family. My family, whether the one I come from or the one I make, is the thing in this world most worth protecting. (Any) |\r\n| 2 | Service. I am most rewarded when I know I have performed a valuable service for another. (Good) |\r\n| 3 | Sloth. What's the point of helping anyone now that I've been discarded? (Chaotic) |\r\n| 4 | Compassion. I can't resist helping anyone in need. (Good) |\r\n| 5 | Tradition. Life under my master's rule was best, and things should be kept as close to their ideals as possible. (Lawful) |\r\n| 6 | Joy. The pursuit of happiness is the only thing worth serving anymore. (Neutral) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My family needs me to provide for them. They mean everything to me, which means I'll do whatever it takes. |\r\n| 2 | My kin have served this holding and its lords and ladies for generations. I serve them faithfully to make my lineage proud. |\r\n| 3 | I can't read the inscriptions on this odd ring, but it's all I have left of my family and our history of loyal service. |\r\n| 4 | I'm with the best friends a person can ask for, so why do I feel so lonesome and homesick? |\r\n| 5 | I've found a profession where my skills are put to good use, and I won't let anyone bring me down. |\r\n| 6 | I found peace in a special garden filled with beautiful life, but I only have this flower to remind me. Someday I'll remember where to find that garden. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 |\r\n| 2 | I'm afraid of taking risks that might be good for me. |\r\n| 3 | I believe my master's people are superior to all others, and I'm not afraid to share that truth. |\r\n| 4 | I always do as I'm told, even though sometimes I don't think I should. |\r\n| 5 | I know what's best for everyone, and they'd all be better off if they'd follow my advice. |\r\n| 6 | I can't stand seeing ugly or depressing things. I'd much rather think happy thoughts. |", + "type": "suggested_characteristics", + "parent": "toh_court-servant" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 67, + "fields": { + "name": "Skill Proficiencies", + "desc": "History, Insight", + "type": "skill_proficiency", + "parent": "toh_destined" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 68, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_destined" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 69, + "fields": { + "name": "Tool Proficiencies", + "desc": "No additional tool proficiencies", + "type": "tool_proficiency", + "parent": "toh_destined" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 70, + "fields": { + "name": "Equipment", + "desc": "A dagger, quarterstaff, or spear, a set of traveler's clothes, a memento of your destiny (a keepsake from your betrothed, the seal of your destined office, your family signet ring, or similar), a belt pouch containing 15 gp", + "type": "equipment", + "parent": "toh_destined" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 71, + "fields": { + "name": "Reputation of Opportunity", + "desc": "Your story precedes you, as does your quest to claim—or run away from—your destiny. Those in positions of power, such as nobles, bureaucrats, rich merchants, and even mercenaries and brigands, all look to either help or hinder you, based on what they think they may get out of it. They're always willing to meet with you briefly to see just how worthwhile such aid or interference might be. This might mean a traveler pays for your passage on a ferry, a generous benefactor covers your group's meals at a tavern, or a local governor invites your adventuring entourage to enjoy a night's stay in their guest quarters. However, the aid often includes an implied threat or request. Some might consider delaying you as long as politely possible, some might consider taking you prisoner for ransom or to do “what's best” for you, and others might decide to help you on your quest in exchange for some future assistance. You're never exactly sure of the associated “cost” of the person's aid until the moment arrives. In the meantime, the open road awaits.", + "type": "feature", + "parent": "toh_destined" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 72, + "fields": { + "name": "Suggested Characteristics", + "desc": "Destined characters might be running toward or away from destiny, but whatever the case, their destiny has shaped them. Think about the impact of your destiny on you and the kind of relationship you have with your destiny. Do you embrace it? Accept it as inevitable? Or do you fight it every step of the way?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm eager to find this destiny and move on with the next stage in my life. |\r\n| 2 | I keep the fire of my hope burning bright. I'm sure this will work out for the best. |\r\n| 3 | Fate has a way of finding you no matter what you do. I'm resigned to whatever they have planned for me, but I'll enjoy my time on the way. |\r\n| 4 | I owe it to myself or to those who helped establish this destiny. I'm determined to follow this through to the end. |\r\n| 5 | I don't know what this path means for me or my future. I'm more afraid of going back to that destiny than of seeing what's out in the world. |\r\n| 6 | I didn't ask for this, and I don't want it. I'm bitter that I must change my life for it. |\r\n| 7 | Few have been chosen to complete this lifepath, and I'm proud to be one of them. |\r\n| 8 | Who can say how this will work out? The world is an uncertain place, and I'll find my destiny when it finds me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Inevitability.** What's coming can't be stopped, and I'm dedicated to making it happen. (Evil) |\r\n| 2 | **Tradition.** I'm part of a cycle that has repeated for generations. I can't deny that. (Any) |\r\n| 3 | **Defiance.** No one can make me be something I don't want to be. (Any) |\r\n| 4 | **Greater Good.** Completing my duty ensures the betterment of my family, community, or region. (Good) |\r\n| 5 | **Power.** If I can take this role and be successful, I'll have opportunities to do whatever I want. (Chaotic) |\r\n| 6 | **Responsibility.** It doesn't matter if I want it or not; it's what I'm supposed to do. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | The true gift of my destiny is the friendships I make along the way to it. |\r\n| 2 | The benefits of completing this destiny will strengthen my family for years to come. |\r\n| 3 | Trying to alter my decision regarding my destiny is an unthinkable affront to me. |\r\n| 4 | How I reach my destiny is just as important as how I accomplish my destiny. |\r\n| 5 | People expect me to complete this task. I don't know how I feel about succeeding or failing, but I'm committed to it. |\r\n| 6 | Without this role fulfilled, the people of my home region will suffer, and that's not acceptable. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If you don't have a destiny, are you really special? |\r\n| 2 | But I am the “Chosen One.” |\r\n| 3 | I fear commitment; that's what this boils down to in the end. |\r\n| 4 | What if I follow through with this and I fail? |\r\n| 5 | It doesn't matter what someone else sacrificed for this. I only care about my feelings. |\r\n| 6 | Occasionally—ok, maybe “often”—I make poor decisions in life, like running from this destiny. |", + "type": "suggested_characteristics", + "parent": "toh_destined" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 73, + "fields": { + "name": "Skill Proficiencies", + "desc": "Insight, Persuasion", + "type": "skill_proficiency", + "parent": "toh_diplomat" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 74, + "fields": { + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "toh_diplomat" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 75, + "fields": { + "name": "Tool Proficiencies", + "desc": "No additional tool proficiencies", + "type": "tool_proficiency", + "parent": "toh_diplomat" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 76, + "fields": { + "name": "Equipment", + "desc": "A set of fine clothes, a letter of passage from a local minor authority or traveling papers that signify you as a traveling diplomat, and a belt pouch containing 20 gp", + "type": "equipment", + "parent": "toh_diplomat" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 77, + "fields": { + "name": "A Friend in Every Port", + "desc": "Your reputation as a peacemaker precedes you, or people recognize your easy demeanor, typically allowing you to attain food and lodging at a discount. In addition, people are predisposed to warn you about dangers in a location, alert you when a threat approaches you, or seek out your help for resolving conflicts between locals.", + "type": "feature", + "parent": "toh_diplomat" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 78, + "fields": { + "name": "Suggested Characteristics", + "desc": "Diplomats always have kind words and encourage their companions to think positively when encountering upsetting situations or people. Diplomats have their limits, however, and are quick to discover when someone is negotiating in bad faith.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I like to travel, meet new people, and learn about different customs. |\r\n| 2 | I intercede in minor squabbles to find common ground on all sides.|\r\n| 3 | I never disparage others, even when they might deserve such treatment.|\r\n| 4 | I always try to make a new friend wherever I travel, and when I return to those areas, I seek out my friends. |\r\n| 5 | I have learned how to damn with faint praise, but I only use it when someone has irked me. |\r\n| 6 | I am not opposed to throwing a bit of coin around to ensure a good first impression. |\r\n| 7 | Even when words fail at the outset, I still try to calm tempers. |\r\n| 8 | I treat everyone as an equal, and I encourage others to do likewise. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Harmony.** I want everyone to get along. (Good) |\r\n| 2 | **Contractual.** When I resolve a conflict, I ensure all parties formally acknowledge the resolution. (Lawful) |\r\n| 3 | **Selfishness.** I use my way with words to benefit myself the most. (Evil) 4 Freedom. Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 4 | **Freedom.** Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 5 | **Avoidance.** A kind word is preferable to the drawing of a sword. (Any) |\r\n| 6 | **Unity.** It is possible to achieve a world without borders and without conflict. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|------|\r\n| 1 | I want to engineer a treaty with far-reaching effects in the world. |\r\n| 2 | I am carrying out someone else's agenda and making favorable arrangements for my benefactor. |\r\n| 3 | A deal I brokered went sour, and I am trying to make amends for my mistake. |\r\n| 4 | My nation treats everyone equitably, and I'd like to bring that enlightenment to other nations. |\r\n| 5 | A traveling orator taught me the power of words, and I want to emulate that person. |\r\n| 6 | I fear a worldwide conflict is imminent, and I want to do all I can to stop it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I always start by appealing to a better nature from those I face, regardless of their apparent hostility. |\r\n| 2 | I assume the best in everyone, even if I have been betrayed by that trust in the past. |\r\n| 3 | I will stand in the way of an ally to ensure conflicts don't start. |\r\n| 4 | I believe I can always talk my way out of a problem. |\r\n| 5 | I chastise those who are rude or use vulgar language. |\r\n| 6 | When I feel I am on the verge of a successful negotiation, I often push my luck to obtain further concessions. |", + "type": "suggested_characteristics", + "parent": "toh_diplomat" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 79, + "fields": { + "name": "Skill Proficiencies", + "desc": "Nature, Survival", + "type": "skill_proficiency", + "parent": "toh_forest-dweller" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 80, + "fields": { + "name": "Languages", + "desc": "Sylvan", + "type": "language", + "parent": "toh_forest-dweller" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 81, + "fields": { + "name": "Tool Proficiencies", + "desc": "Woodcarver's tools, Herbalism kit", + "type": "tool_proficiency", + "parent": "toh_forest-dweller" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 82, + "fields": { + "name": "Equipment", + "desc": "A set of common clothes, a hunting trap, a wood staff, a whetstone, an explorer's pack, and a pouch containing 5 gp", + "type": "equipment", + "parent": "toh_forest-dweller" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 83, + "fields": { + "name": "Forester", + "desc": "Your experience living, hunting, and foraging in the woods gives you a wealth of experience to draw upon when you are traveling within a forest. If you spend 1 hour observing, examining, and exploring your surroundings while in a forest, you are able to identify a safe location to rest. The area is protected from all but the most extreme elements and from the nonmagical native beasts of the forest. In addition, you are able to find sufficient kindling for a small fire throughout the night.\r\n\r\n### Life-Changing Event\r\nYou have lived a simple life deep in the sheltering boughs of the forest, be it as a trapper, farmer, or villager eking out a simple existence in the forest. But something happened that set you on a different path and marked you for greater things. Choose or randomly determine a defining event that caused you to leave your home for the wider world. \r\n\r\n| d8 | Event |\r\n|---|---|\r\n| 1 | You were living within the forest when cesspools of magical refuse from a nearby city expanded and drove away the game that sustained you. You had to move to avoid the prospect of a long, slow demise via starvation. |\r\n| 2 | Your village was razed by a contingent of undead. For reasons of its own, the forest and its denizens protected and hid you from their raid. |\r\n| 3 | A roving band of skeletons and zombies attacked your family while you were hunting. |\r\n| 4 | You are an ardent believer in the preservation of the forest and the natural world. When the people of your village abandoned those beliefs, you were cast out and expelled into the forest. |\r\n| 5 | You wandered into the forest as a child and became lost. For inexplicable reasons, the forest took an interest in you. You have faint memories of a village and have had no contact with civilization in many years. |\r\n| 6 | You were your village's premier hunter. They relied on you for game and without your contributions their survival in the winter was questionable. Upon returning from your last hunt, you found your village in ruins, as if decades had passed overnight. |\r\n| 7 | Your quiet, peaceful, and solitary existence has been interrupted with dreams of the forest's destruction, and the urge to leave your home compels you to seek answers. |\r\n| 8 | Once in a hidden glen, you danced with golden fey and forgotten gods. Nothing in your life since approaches that transcendent moment, cursing you with a wanderlust to seek something that could. |", + "type": "feature", + "parent": "toh_forest-dweller" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 84, + "fields": { + "name": "Suggested Characteristics", + "desc": "Forest dwellers tend toward solitude, introspection, and self-sufficiency. You keep your own council, and you are more likely to watch from a distance than get involved in the affairs of others. You are wary, slow to trust, and cautious of depending on outsiders.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will never forget being hungry in the winter. I field dress beasts that fall to blade or arrow so that I am never hungry again. |\r\n| 2 | I may be alone in the forest, but I am only ever lonely in cities. |\r\n| 3 | Walking barefoot allows me to interact more intuitively with the natural world. |\r\n| 4 | The road is just another kind of wall. I make my own paths and go where I will. |\r\n| 5 | Others seek the gods in temples and shrines, but I know their will is only revealed in the natural world, not an edifice constructed by socalled worshippers. I pray in the woods, never indoors. |\r\n| 6 | What you call personal hygiene, I call an artificially imposed distraction from natural living. |\r\n| 7 | No forged weapon can replace the sheer joy of a kill accomplished only with hands and teeth. |\r\n| 8 | Time lived alone has made me accustomed to talking loudly to myself, something I still do even when others are present. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Change. As the seasons shift, so too does the world around us. To resist is futile and anathema to the natural order. (Chaotic) |\r\n| 2 | Conservation. All life should be preserved and, if needed, protected. (Good) |\r\n| 3 | Acceptance. I am a part of my forest, no different from any other flora and fauna. To think otherwise is arrogance and folly. When I die, it will be as a leaf falling in the woods. (Neutral) |\r\n| 4 | Cull. The weak must be removed for the strong to thrive. (Evil) |\r\n| 5 | Candor. I am open, plain, and simple in life, word, and actions. (Any) |\r\n| 6 | Balance. The forest does not lie. The beasts do not create war. Equity in all things is the way of nature. (Neutral) |\r\n\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | When I lose a trusted friend or companion, I plant a tree upon their grave. |\r\n| 2 | The voice of the forest guides me, comforts me, and protects me. |\r\n| 3 | The hermit who raised me and taught me the ways of the forest is the most important person in my life. |\r\n| 4 | I have a wooden doll, a tiny wickerman, that I made as a child and carry with me at all times. |\r\n| 5 | I know the ways of civilizations rise and fall. The forest and the Old Ways are eternal. |\r\n| 6 | I am driven to protect the natural order from those that would disrupt it. |\r\n\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am accustomed to doing what I like when I like. I'm bad at compromising, and I must exert real effort to make even basic conversation with other people. |\r\n| 2 | I won't harm a beast without just cause or provocation. |\r\n| 3 | Years of isolated living has left me blind to the nuances of social interaction. It is a struggle not to view every new encounter through the lens of fight or flight. |\r\n| 4 | The decay after death is merely the loam from which new growth springs—and I enjoy nurturing new growth. |\r\n| 5 | An accident that I caused incurred great damage upon my forest, and, as penance, I have placed myself in self-imposed exile. |\r\n| 6 | I distrust the undead and the unliving, and I refuse to work with them. |", + "type": "suggested_characteristics", + "parent": "toh_forest-dweller" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 85, + "fields": { + "name": "Skill Proficiencies", + "desc": "Perception, Survival", + "type": "skill_proficiency", + "parent": "toh_former-adventurer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 86, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_former-adventurer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 87, + "fields": { + "name": "Tool Proficiencies", + "desc": "No additional tool proficiencies", + "type": "tool_proficiency", + "parent": "toh_former-adventurer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 88, + "fields": { + "name": "Equipment", + "desc": "A dagger, quarterstaff, or shortsword (if proficient), an old souvenir from your previous adventuring days, a set of traveler's clothes, 50 feet of hempen rope, and a belt pouch containing 15 gp", + "type": "equipment", + "parent": "toh_former-adventurer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 89, + "fields": { + "name": "Old Friends and Enemies", + "desc": "Your previous career as an adventurer might have been brief or long. Either way, you certainly journeyed far and met people along the way. Some of these acquaintances might remember you fondly for aiding them in their time of need. On the other hand, others may be suspicious, or even hostile, because of your past actions. When you least expect it, or maybe just when you need it, you might encounter someone who knows you from your previous adventuring career. These people work in places high and low, their fortunes varying widely. The individual responds appropriately based on your mutual history, helping or hindering you at the GM's discretion.", + "type": "feature", + "parent": "toh_former-adventurer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 90, + "fields": { + "name": "Suggested Characteristics", + "desc": "Former adventurers bring a level of practical experience that fledgling heroes can't match. However, the decisions, outcomes, successes, and failures of your previous career often weigh heavily on your mind. The past seldom remains in the past. How you rise to these new (or old) challenges determines the outcome of your new career.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I have a thousand stories about every aspect of the adventuring life. |\r\n| 2 | My past is my own, and to the pit with anyone who pushes me about it. |\r\n| 3 | I can endure any hardship without complaint. |\r\n| 4 | I have a list of rules for surviving adventures, and I refer to them often. |\r\n| 5 | It's a dangerous job, and I take my pleasures when I can. |\r\n| 6 | I can't help mentioning all the famous friends I've met before. |\r\n| 7 | Anyone who doesn't recognize me is clearly not someone worth knowing. |\r\n| 8 | I've seen it all. If you don't listen to me, you're going to get us all killed. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Strength.** Experience tells me there are no rules to war. Only victory matters. (Evil) |\r\n| 2 | **Growth.** I strive to improve myself and prove my worth to my companions—and to myself. (Any) |\r\n| 3 | **Thrill.** I am only happy when I am facing danger with my life on the line. (Any) |\r\n| 4 | **Generous.** If I can help someone in danger, I will. (Good) |\r\n| 5 | **Ambition.** I may have lost my renown, but nothing will stop me from reclaiming it. (Chaotic) |\r\n| 6 | **Responsibility.** Any cost to myself is far less than the price of doing nothing. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will end the monsters who killed my family and pulled me back into the adventuring life. |\r\n| 2 | A disaster made me retire once. Now I will stop it from happening to anyone else. |\r\n| 3 | My old weapon has been my trusted companion for years. It's my lucky charm. |\r\n| 4 | My family doesn't understand why I became an adventurer again, which is why I send them souvenirs, letters, or sketches of exciting encounters in my travels. |\r\n| 5 | I was a famous adventurer once. This time, I will be even more famous, or die trying. |\r\n| 6 | Someone is impersonating me. I will hunt them down and restore my reputation. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | It's all about me! Haven't you learned that by now? |\r\n| 2 | I can identify every weapon and item with a look. |\r\n| 3 | You think this is bad? Let me tell you about something really frightening. |\r\n| 4 | Sure, I have old foes around every corner, but who doesn't? |\r\n| 5 | I'm getting too old for this. |\r\n| 6 | Seeing the bad side in everything just protects you from inevitable disappointment. |", + "type": "suggested_characteristics", + "parent": "toh_former-adventurer" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 91, + "fields": { + "name": "Skill Proficiencies", + "desc": "Athletics, Survival", + "type": "skill_proficiency", + "parent": "toh_freebooter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 92, + "fields": { + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_freebooter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 93, + "fields": { + "name": "Tool Proficiencies", + "desc": "Navigator's tools, vehicles (water)", + "type": "tool_proficiency", + "parent": "toh_freebooter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 94, + "fields": { + "name": "Equipment", + "desc": "A pirate flag from your ship, several tattoos, 50 feet of rope, a set of traveler's clothes, and a belt pouch containing 10 gp", + "type": "equipment", + "parent": "toh_freebooter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 95, + "fields": { + "name": "A Friendly Face in Every Port", + "desc": "Your reputation precedes you. Whenever you visit a port city, you can always find someone who knows of (or has sailed on) your former ship and is familiar with its captain and crew. They are willing to provide you and your traveling companions with a roof over your head, a bed for the night, and a decent meal. If you have a reputation for cruelty and savagery, your host is probably afraid of you and will be keen for you to leave as soon as possible. Otherwise, you receive a warm welcome, and your host keeps your presence a secret, if needed. They may also provide you with useful information about recent goings-on in the city, including which ships have been in and out of port.", + "type": "feature", + "parent": "toh_freebooter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 96, + "fields": { + "name": "Suggested Characteristics", + "desc": "Freebooters are a boisterous lot, but their personalities include freedom-loving mavericks and mindless thugs. Nonetheless, sailing a ship requires discipline, and freebooters tend to be reliable and aware of their role on board, even if they do their own thing once fighting breaks out. Most still yearn for the sea, and some feel shame or regret for past deeds.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm happiest when I'm on a gently rocking vessel, staring at the distant horizon. |\r\n| 2 | Every time we hoisted the mainsail and raised the pirate flag, I felt butterflies in my stomach. |\r\n| 3 | I have lovers in a dozen different ports. Most of them don't know about the others. |\r\n| 4 | Being a pirate has taught me more swear words and bawdy jokes than I ever knew existed. I like to try them out when I meet new people. |\r\n| 5 | One day I hope to have enough gold to fill a tub so I can bathe in it. |\r\n| 6 | There's nothing I enjoy more than a good scrap—the bloodier, the better. |\r\n| 7 | When a storm is blowing and the rain is lashing the deck, I'll be out there getting drenched. It makes me feel so alive! |\r\n| 8 | Nothing makes me more annoyed than a badly tied knot. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** No one tells me what to do or where to go. Apart from the captain. (Chaotic) |\r\n| 2 | **Greed.** I'm only in it for the booty. I'll gladly stab anyone stupid enough to stand in my way. (Evil) |\r\n| 3 | **Comradery.** My former shipmates are my family. I'll do anything for them. (Neutral) |\r\n| 4 | **Greater Good.** No man has the right to enslave another, or to profit from slavery. (Good) |\r\n| 5 | **Code.** I may be on dry land now, but I still stick to the Freebooter's Code. (Lawful) |\r\n| 6 | **Aspiration.** One day I'll return to the sea as the captain of my own ship. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | Anti-slavery pirates rescued me from a slave ship. I owe them my life. |\r\n| 2 | I still feel a deep attachment to my ship. Some nights I dream her figurehead is talking to me. |\r\n| 3 | I was the ship's captain until the crew mutinied and threw me overboard to feed the sharks. I swam to a small island and survived. Vengeance will be mine! |\r\n| 4 | Years ago, when my city was attacked, I fled the city on a small fleet bound for a neighboring city. I arrived back in the ruined city a few weeks ago on the same ship and can remember nothing of the voyage. |\r\n| 5 | I fell asleep when I was supposed to be on watch, allowing our ship to be taken by surprise. I still have nightmares about my shipmates who died in the fighting. |\r\n| 6 | One of my shipmates was captured and sold into slavery. I need to rescue them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm terrified by the desert. Not enough water, far too much sand. |\r\n| 2 | I drink too much and end up starting barroom brawls. |\r\n| 3 | I killed one of my shipmates and took his share of the loot. |\r\n| 4 | I take unnecessary risks and often put my friends in danger. |\r\n| 5 | I sold captives taken at sea to traders. |\r\n| 6 | Most of the time, I find it impossible to tell the truth. |", + "type": "suggested_characteristics", + "parent": "toh_freebooter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 97, + "fields": { + "name": "Skill Proficiencies", + "desc": "Animal Handling, Persuasion", + "type": "skill_proficiency", + "parent": "toh_gamekeeper" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 98, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_gamekeeper" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 99, + "fields": { + "name": "Tool Proficiencies", + "desc": "Leatherworker's tools", + "type": "tool_proficiency", + "parent": "toh_gamekeeper" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 100, + "fields": { + "name": "Equipment", + "desc": "A set of leatherworker's tools, a hunting trap, fishing tackle, a set of traveler's clothes, and a belt pouch containing 10 gp", + "type": "equipment", + "parent": "toh_gamekeeper" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 101, + "fields": { + "name": "Confirmed Guildmember", + "desc": "As a recognized member of the Gamekeepers' Guild, you are knowledgeable in the care, training, and habits of animals used for hunting. With 30 days' of work and at least 2 gp for each day, you can train a raptor, such as a hawk, falcon, or owl, or a hunting dog, such as a hound, terrier, or cur, to become a hunting companion. Use the statistics of an owl for the raptor and the statistics of a jackal for the hunting dog. A hunting companion is trained to obey and respond to a series of one-word commands or signals, communicating basic concepts such as *attack*, *protect*, *retrieve*, *find*, *hide*, or similar. The companion can know up to six such commands and can be trained to obey a number of creatures, other than you, equal to your proficiency bonus. A hunting companion travels with you wherever you go, unless you enter a particularly dangerous environment (such as a poisonous swamp), or you command the companion to stay elsewhere. A hunting companion doesn't join you in combat and stays on the edge of any conflict until it is safe to return to your side. When traveling overland with a hunting companion, you can use the companion to find sufficient food to sustain yourself and up to five other people each day. You can have only one hunting companion at a time.", + "type": "feature", + "parent": "toh_gamekeeper" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 102, + "fields": { + "name": "Suggested Characteristics", + "desc": "You are one of the capable people who maintains hunting preserves, trains coursing hounds and circling raptors, and plans the safe outings that allow fair nobles, rich merchants, visiting dignitaries, and their entourages to venture into preserves and forests to seek their quarry. You are as comfortable hunting quarry in the forest as you are conversing with members of the elite who have an interest in hunting.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nature has lessons to teach us all, and I'm always happy to share them. |\r\n| 2 | Once while out on a hunt, something happened which was very relatable to our current situation. Let me tell you about it. |\r\n| 3 | My friends are my new charges, and I'll make sure they thrive. |\r\n| 4 | Preparation and knowledge are the key to any success. |\r\n| 5 | I've dealt with all sorts of wealthy and noble folk, and I've seen just how spoiled they can be. |\r\n| 6 | I feel like my animals are the only ones who really understand me. |\r\n| 7 | You can train yourself to accomplish anything you put your mind to accomplishing. |\r\n| 8 | The world shows you everything you need to know to understand a situation. You just have to be paying attention to the details. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Dedication. Your willingness to get the job done, no matter what the cost, is what is most important. (Evil) |\r\n| 2 | Training. You sink to the level of your training more often than you rise to the occasion. (Any) |\r\n| 3 | Prestige. Pride in your training, your work, and your results is what is best in life. (Any) |\r\n| 4 | Diligent. Hard work and attention to detail bring success more often than failure. (Good) |\r\n| 5 | Nature. The glory and majesty of the wild world outshine anything mortals create. (Chaotic) |\r\n| 6 | Responsibility. When you take an oath to protect and shepherd something, that oath is for life. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I understand animals better than people, and the way of the hunter just makes sense. |\r\n| 2 | I take great pride in providing my services to the wealthy and influential. |\r\n| 3 | Natural spaces need to be tended and preserved, and I take joy in doing it when I can. |\r\n| 4 | I need to ensure people know how to manage nature rather than live in ignorance. |\r\n| 5 | Laws are important to prevent nature's overexploitation. |\r\n| 6 | I can be alone in the wilderness and not feel lonely. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Individuals can be all right, but civilization is the worst. |\r\n| 2 | The wealthy and nobility are a rot in society. |\r\n| 3 | Things die, either by predators or nature; get used to it. |\r\n| 4 | Everything can be managed if you want it badly enough. |\r\n| 5 | When you make exceptions, you allow unworthy or wasteful things to survive. |\r\n| 6 | If you don't work hard for something, is it worth anything? |", + "type": "suggested_characteristics", + "parent": "toh_gamekeeper" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 103, + "fields": { + "name": "Skill Proficiencies", + "desc": "Insight plus one of your choice from among Intimidation or Persuasion", + "type": "skill_proficiency", + "parent": "toh_innkeeper" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 104, + "fields": { + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "toh_innkeeper" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 105, + "fields": { + "name": "Tool Proficiencies", + "desc": "No additional tool proficiencies", + "type": "tool_proficiency", + "parent": "toh_innkeeper" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 106, + "fields": { + "name": "Equipment", + "desc": "A set of either brewer's supplies or cook's utensils, a dagger or light hammer, traveler's clothes, and a pouch containing 20 gp", + "type": "equipment", + "parent": "toh_innkeeper" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 107, + "fields": { + "name": "I Know Someone", + "desc": "In interacting with the wide variety of people who graced the tables and bars of your previous life, you gained an excellent knowledge of who might be able to perform a particular task, provide the right service, sell the perfect item, or be able to connect you with someone who can. You can spend a couple of hours in a town or city and identify a person or place of business capable of selling the product or service you seek, provided the product is nonmagical and isn't worth more than 250 gp. At the GM's discretion, these restrictions can be lifted in certain locations. The price might not always be what you hoped, the quality might not necessarily be the best, or the person's demeanor may be grating, but you can find the product or service. In addition, you know within the first hour if the product or service you desire doesn't exist in the community, such as a coldweather outfit in a tropical fishing village.", + "type": "feature", + "parent": "toh_innkeeper" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 108, + "fields": { + "name": "Suggested Characteristics", + "desc": "The day-to-day operation of a tavern or inn teaches many lessons about people and how they interact.\r\n\r\nThe nose for trouble, the keen eye on the kegs, and the ready hand on a truncheon translates well to the life of an adventurer.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I insist on doing all the cooking, and I plan strategies like I cook—with proper measurements and all the right ingredients. |\r\n| 2 | Lending a sympathetic ear or a shoulder to cry on often yields unexpected benefits. |\r\n| 3 | I always have a story or tale to relate to any situation. |\r\n| 4 | There is a world of tastes and flavors to explore. |\r\n| 5 | Few problems can't be solved with judicious application of a stout cudgel. |\r\n| 6 | I never pass up the chance to bargain. Never. |\r\n| 7 | I demand the finest accommodations; I know what they're worth. |\r\n| 8 | I can defuse a situation with a joke, cutting remark, or arched eyebrow. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Service.** If we serve others, they will serve us in turn. (Lawful) |\r\n| 2 | **Perspective.** People will tell you a great deal about themselves, their situations, and their desires, if you listen. (Any) |\r\n| 3 | **Determination.** Giving up is not in my nature. (Any) |\r\n| 4 | **Charity.** I try to have extra coins to buy a meal for someone in need. (Good) |\r\n| 5 | **Curiosity.** Staying safe never allows you to see the wonders of the world. (Chaotic) |\r\n| 6 | **Selfish.** We must make sure we bargain for what our skills are worth; people don't value what you give away for free. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I started my career in a tavern, and I'll end it running one of my very own. |\r\n| 2 | I try to ensure stories of my companions will live on forever. |\r\n| 3 | You want to take the measure of a person? Have a meal or drink with them. |\r\n| 4 | I've seen the dregs of life pass through my door, and I will never end up like them. |\r\n| 5 | A mysterious foe burned down my inn, and I will have my revenge. |\r\n| 6 | One day, I want my story to be sung in all the taverns of my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I can't help teasing or criticizing those less intelligent than I. |\r\n| 2 | I love rich food and drink, and I never miss a chance at a good meal. |\r\n| 3 | I never trust anyone who won't drink with me. |\r\n| 4 | I hate it when people start fights in bars; they never consider the consequences. |\r\n| 5 | I can't stand to see someone go hungry or sleep in the cold if I can help it. |\r\n| 6 | I am quick to anger if anyone doesn't like my meals or brews. If you don't like it, do it yourself. |", + "type": "suggested_characteristics", + "parent": "toh_innkeeper" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 109, + "fields": { + "name": "Skill Proficiencies", + "desc": "Athletics, History", + "type": "skill_proficiency", + "parent": "toh_mercenary-company-scion" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 110, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_mercenary-company-scion" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 111, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of gaming set, one musical instrument", + "type": "tool_proficiency", + "parent": "toh_mercenary-company-scion" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 112, + "fields": { + "name": "Equipment", + "desc": "A backpack, a signet ring emblazoned with the symbol of your family's free company, a musical instrument of your choice, a mess kit, a set of traveler's clothes, and a belt pouch containing 20 gp", + "type": "equipment", + "parent": "toh_mercenary-company-scion" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 113, + "fields": { + "name": "The Family Name", + "desc": "Your family name is well known in the closeknit world of mercenary companies. Members of mercenary companies readily recognize your name and will provide food, drink, and shelter with pleasure or out of fear, depending upon your family's reputation. You can also gain access to friendly military encampments, fortresses, or powerful political figures through your contacts among the mercenaries. Utilizing such connections might require the donation of money, magic items, or a great deal of drink.", + "type": "feature", + "parent": "toh_mercenary-company-scion" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 114, + "fields": { + "name": "Suggested Characteristics", + "desc": "The turmoil of war, the drudgery of the camp, long days on the road, and the thrill of battle shape a Mercenary Company Scion to create strong bonds of loyalty, military discipline, and a practical mind. Yet this history can scar as well, leaving the scion open to guilt, pride, resentment, and hatred.\r\n\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am ashamed of my family's reputation and seek to distance myself from their deeds. |\r\n| 2 | I have seen the world and know people everywhere. |\r\n| 3 | I expect the best life has to offer and won't settle for less. |\r\n| 4 | I know stories from a thousand campaigns and can apply them to any situation. |\r\n| 5 | After too many betrayals, I don't trust anyone. |\r\n| 6 | My parents were heroes, and I try to live up to their example. |\r\n| 7 | I have seen the horrors of war; nothing dis'turbs me anymore. |\r\n| 8 | I truly believe I have a destiny of glory and fame awaiting me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Glory.** Only by fighting for the right causes can I achieve true fame and honor. (Good) |\r\n| 2 | **Dependable.** Once my oath is given, it cannot be broken. (Lawful) |\r\n| 3 | **Seeker.** Life can be short, so I will live it to the fullest before I die. (Chaotic) |\r\n| 4 | **Ruthless.** Only the strong survive. (Evil) |\r\n| 5 | **Mercenary.** If you have gold, I'm your blade. (Neutral) |\r\n| 6 | **Challenge.** Life is a test, and only by meeting life head on can I prove I am worthy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My parent's legacy is a tissue of lies. I will never stop until I uncover the truth. |\r\n| 2 | I am the only one who can uphold the family name. |\r\n| 3 | My companions are my life, and I would do anything to protect them. |\r\n| 4 | I will never forget the betrayal leading to my parent's murder, but I will avenge them. |\r\n| 5 | My honor and reputation are all that matter in life. |\r\n| 6 | I betrayed my family to protect my friend who was a soldier in another free company. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I have no respect for those who never signed on to a mercenary company or walked the battlefield. |\r\n| 2 | I cannot bear losing anyone close to me, so I keep everyone at a distance. |\r\n| 3 | Bloody violence is the only way to solve problems. |\r\n| 4 | I caused the downfall of my family's mercenary company. |\r\n| 5 | I am hiding a horrible secret about one of my family's patrons. |\r\n| 6 | I see insults to my honor or reputation in every whisper, veiled glance, and knowing look. |", + "type": "suggested_characteristics", + "parent": "toh_mercenary-company-scion" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 115, + "fields": { + "name": "Skill Proficiencies", + "desc": "Athletics, Persuasion", + "type": "skill_proficiency", + "parent": "toh_mercenary-recruit" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 116, + "fields": { + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_mercenary-recruit" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 117, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of gaming set", + "type": "tool_proficiency", + "parent": "toh_mercenary-recruit" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 118, + "fields": { + "name": "Equipment", + "desc": "A letter of introduction from an old teacher, a gaming set of your choice, traveling clothes, and a pouch containing 10 gp", + "type": "equipment", + "parent": "toh_mercenary-recruit" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 119, + "fields": { + "name": "Theoretical Experience", + "desc": "You have an encyclopedic knowledge of stories, myths, and legends of famous soldiers, mercenaries, and generals. Telling these stories can earn you a bed and food for the evening in taverns, inns, and alehouses. Your age or inexperience is endearing, making commoners more comfortable with sharing local rumors, news, and information with you.", + "type": "feature", + "parent": "toh_mercenary-recruit" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 120, + "fields": { + "name": "Suggested Characteristics", + "desc": "Recruits are eager to earn their place in the world of mercenaries. Sometimes humble, other times filled with false bravado, they are still untested by the joys and horrors awaiting them. Meaning well and driven to learn, recruits are generally plagued by their own fears, ignorance, and inexperience.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am thrilled by the thought of an upcoming fight. |\r\n| 2 | Why wait until I'm famous to have songs written about me? I can write my own right now! |\r\n| 3 | I know many stories and legends of famous adventurers and compare everything to these tales. |\r\n| 4 | Humor is how I deal with fear. |\r\n| 5 | I always seek to learn new ways to use my weapons and love sharing my knowledge. |\r\n| 6 | The only way I can prove myself is to work hard and take risks. |\r\n| 7 | When you stop training, you sign your own death notice |\r\n| 8 | I try to act braver than I actually am. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Respect.** To be treated with honor and trust, I must honor and trust people first. (Good) |\r\n| 2 | **Discipline.** A good soldier obeys orders. (Lawful) |\r\n| 3 | **Courage.** Sometimes doing the right thing means breaking the law. (Chaotic) |\r\n| 4 | **Excitement.** I live for the thrill of battle, the rush of the duel, and the glory of victory. (Neutral) |\r\n| 5 | **Power.** When I achieve fame and power, no one will give me orders anymore! (Evil) |\r\n| 6 | **Ambition.** I will make something of myself no matter what. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My first mentor was murdered, and I seek the skills to avenge that crime. |\r\n| 2 | I will become the greatest mercenary warrior ever. |\r\n| 3 | I value the lessons from my teachers and trust them implicitly. |\r\n| 4 | My family has sacrificed much to get me this far. I must repay their faith in me. |\r\n| 5 | I will face any danger to win the respect of my companions. |\r\n| 6 | I have hidden a map to an amazing and powerful magical treasure until I grow strong enough to follow it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I do not trust easily and question anyone who attempts to give me orders. |\r\n| 2 | I ridicule others to hide my insecurities. |\r\n| 3 | To seem brave and competent, I refuse to allow anyone to doubt my courage. |\r\n| 4 | I survived an attack by a monster as a child, and I have feared that creature ever since. |\r\n| 5 | I have a hard time thinking before I act. |\r\n| 6 | I hide my laziness by tricking others into doing my work for me. |", + "type": "suggested_characteristics", + "parent": "toh_mercenary-recruit" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 121, + "fields": { + "name": "Skill Proficiencies", + "desc": "Intimidation, Survival", + "type": "skill_proficiency", + "parent": "toh_monstrous-adoptee" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 122, + "fields": { + "name": "Languages", + "desc": "One language of your choice, typically your adopted parents' language (if any)", + "type": "language", + "parent": "toh_monstrous-adoptee" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 123, + "fields": { + "name": "Tool Proficiencies", + "desc": "No additional tool proficiencies", + "type": "tool_proficiency", + "parent": "toh_monstrous-adoptee" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 124, + "fields": { + "name": "Equipment", + "desc": "A club, handaxe, or spear, a trinket from your life before you were adopted, a set of traveler's clothes, a collection of bones, shells, or other natural objects, and a belt pouch containing 5 gp", + "type": "equipment", + "parent": "toh_monstrous-adoptee" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 125, + "fields": { + "name": "Abnormal Demeanor", + "desc": "Your time with your adopted parents taught you an entire lexicon of habits, behaviors, and intuitions suited to life in the wild among creatures of your parents' type. When you are in the same type of terrain your adopted parent inhabits, you can find food and fresh water for yourself and up to five other people each day. In addition, when you encounter a creature like your adopted parent or parents, the creature is disposed to hear your words instead of leaping directly into battle. Mindless or simple creatures might not respond to your overtures, but more intelligent creatures may be willing to treat instead of fight, if you approach them in an appropriate manner. For example, if your adopted parent was a cloaker, when you encounter a cloaker years later, you understand the appropriate words, body language, and motions for approaching the cloaker respectfully and peacefully.", + "type": "feature", + "parent": "toh_monstrous-adoptee" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 126, + "fields": { + "name": "Suggested Characteristics", + "desc": "When monstrous adoptees leave their adopted parents for the wider world, they often have a hard time adapting. What is common or usual for many humanoids strikes them as surprising, frightening, or infuriating, depending on the individual. Most make an effort to adjust their habits and imitate those around them, but not all. Some lean into their differences, reveling in shocking those around them. When you choose a creature to be your character's adopted parent, think about how that might affect your character. Was your character treated kindly? Was your character traded by their birth parents to their adopted parents as part of some mysterious bargain? Did your character seek constant escape or do they miss their adopted parents?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I don't eat my friends (at least not while they are alive). My foes, on the other hand . . . |\r\n| 2 | Meeting another's gaze is a challenge for dominance that I never fail to answer. |\r\n| 3 | Monsters I understand; people are confusing. |\r\n| 4 | There are two types of creatures in life: prey or not-prey. |\r\n| 5 | I often use the growls, sounds, or calls of my adopted parents instead of words. |\r\n| 6 | Inconsequential items fascinate me. |\r\n| 7 | It's not my fault, I was raised by [insert parent's type here]. |\r\n| 8 | I may look fine, but I behave like a monster. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Wild.** After seeing the wider world, I want to be the monster that strikes fear in the hearts of people. (Evil) |\r\n| 2 | **Insight.** I want to understand the world of my adopted parents. (Neutral) |\r\n| 3 | **Revenge.** I want revenge for my lost childhood. Monsters must die! (Any) |\r\n| 4 | **Harmony.** With my unique perspective and upbringing, I hope to bring understanding between the different creatures of the world. (Good) |\r\n| 5 | **Freedom.** My past away from law-abiding society has shown me the ridiculousness of those laws. (Chaotic) |\r\n| 6 | **Redemption.** I will rise above the cruelty of my adopted parent and embrace the wider world. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I want to experience every single aspect of the world. |\r\n| 2 | I rely on my companions to teach me how to behave appropriately in their society. |\r\n| 3 | I have a *sibling*, a child of my adopted parent that was raised alongside me, and now that sibling has been kidnapped! |\r\n| 4 | My monstrous family deserves a place in this world, too. |\r\n| 5 | I'm hiding from my monstrous family. They want me back! |\r\n| 6 | An old enemy of my adopted parents is on my trail. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | What? I like my meat raw. Is that so strange? |\r\n| 2 | I like to collect trophies from my defeated foes (ears, teeth, bones, or similar). It's how I keep score. |\r\n| 3 | I usually forget about pesky social conventions like *personal property* or *laws*. |\r\n| 4 | I am easily startled by loud noises or bright lights. |\r\n| 5 | I have trouble respecting anyone who can't best me in a fight. |\r\n| 6 | Kindness is for the weak. |", + "type": "suggested_characteristics", + "parent": "toh_monstrous-adoptee" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 127, + "fields": { + "name": "Skill Proficiencies", + "desc": "Deception, Survival", + "type": "skill_proficiency", + "parent": "toh_mysterious-origins" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 128, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_mysterious-origins" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 129, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of artisan's tools or one type of musical instrument", + "type": "tool_proficiency", + "parent": "toh_mysterious-origins" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 130, + "fields": { + "name": "Equipment", + "desc": "A mysterious trinket from your past life, a set of artisan's tools or a musical instrument (one of your choice), a set of common clothes, and a belt pouch containing 5 gp", + "type": "equipment", + "parent": "toh_mysterious-origins" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 131, + "fields": { + "name": "Unexpected Acquaintance", + "desc": "Even though you can't recall them, someone from your past will recognize you and offer to aid you—or to impede you. The person and their relationship to you depend on the truth of your backstory. They might be a childhood friend, a former rival, or even your child who's grown up with dreams of finding their missing parent. They may want you to return to your former life even if it means abandoning your current goals and companions. Work with your GM to determine the details of this character and your history with them.", + "type": "feature", + "parent": "toh_mysterious-origins" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 132, + "fields": { + "name": "Suggested Characteristics", + "desc": "You may be bothered by your lack of memories and driven to recover them or reclaim the secrets of your past, or you can use your anonymity to your advantage.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm always humming a song, but I can't remember the words. |\r\n| 2 | I love learning new things and meeting new people. |\r\n| 3 | I want to prove my worth and have people know my name. |\r\n| 4 | I don't like places that are crowded or noisy. |\r\n| 5 | I'm mistrustful of mages and magic in general. |\r\n| 6 | I like to keep everything tidy and organized so that I can find things easily. |\r\n| 7 | Every night I record my day in a detailed journal. |\r\n| 8 | I live in the present. The future will come as it may. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Redemption.** Whatever I did in the past, I'm determined to make the world a better place. (Good) |\r\n| 2 | **Independence.** I'm beholden to no one, so I can do whatever I want. (Chaotic) |\r\n| 3 | **Cunning.** Since I have no past, no one can use it to thwart my rise to power. (Evil) |\r\n| 4 | **Community.** I believe in a just society that takes care of people in need. (Lawful) |\r\n| 5 | **Fairness.** I judge others by who they are now, not by what they've done in the past. (Neutral) |\r\n| 6 | **Friendship.** The people in my life now are more important than any ideal. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have dreams where I see a loved one's face, but I can't remember their name or who they are. |\r\n| 2 | I wear a wedding ring, so I must have been married before I lost my memories. |\r\n| 3 | My mentor raised me; they told me that I lost my memories in a terrible accident that killed my family. |\r\n| 4 | I have an enemy who wants to kill me, but I don't know what I did to earn their hatred. |\r\n| 5 | I know there's an important memory attached to the scar I bear on my body. |\r\n| 6 | I can never repay the debt I owe to the person who cared for me after I lost my memories. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am jealous of those who have memories of a happy childhood. |\r\n| 2 | I'm desperate for knowledge about my past, and I'll do anything to obtain that information. |\r\n| 3 | I'm terrified of meeting someone from my past, so I avoid strangers as much as possible. |\r\n| 4 | Only the present matters. I can't bring myself to care about the future. |\r\n| 5 | I'm convinced that I was powerful and rich before I lost my memories—and I expect everyone to treat me accordingly. |\r\n| 6 | Anyone who shows me pity is subjected to my biting scorn. |", + "type": "suggested_characteristics", + "parent": "toh_mysterious-origins" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 133, + "fields": { + "name": "Skill Proficiencies", + "desc": "Perception plus one of your choice from among History or Performance", + "type": "skill_proficiency", + "parent": "toh_northern-minstrel" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 134, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_northern-minstrel" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 135, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of musical instrument", + "type": "tool_proficiency", + "parent": "toh_northern-minstrel" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 136, + "fields": { + "name": "Equipment", + "desc": "A book collecting all the songs, poems, or stories you know, a pair of snowshoes, one musical instrument of your choice, a heavy fur-lined cloak, and a belt pouch containing 10 gp", + "type": "equipment", + "parent": "toh_northern-minstrel" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 137, + "fields": { + "name": "Northern Historian", + "desc": "Your education and experience have taught you how to determine the provenance of ruins, monuments, and other structures within the north. When you spend at least 1 hour examining a structure or non-natural feature of the terrain, you can determine if it was built by humans, dwarves, elves, goblins, giants, trolls, or fey. You can also determine the approximate age (within 500 years) of the construction based on its features and embellishments.", + "type": "feature", + "parent": "toh_northern-minstrel" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 138, + "fields": { + "name": "Suggested Characteristics", + "desc": "Northern minstrels tend to either be boisterous and loud or pensive and watchful with few falling between these extremes. Many exude both qualities at different times, and they have learned how and when to turn their skald persona on and off. Like other northerners, they place a lot of stock in appearing brave and tough, which can lead them unwittingly into conflict.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will accept any dare and expect accolades when I complete it. |\r\n| 2 | Revelry and boisterousness are for foolish children. I prefer to quietly wait and watch. |\r\n| 3 | I am more than a match for any northern reaver. If they believe that is not so, let them show me what stuff they are made of. |\r\n| 4 | I yearn for the raiding season and the tales of blood and butchery I can use to draw the crowds. |\r\n| 5 | Ragnarok is nigh. I will bear witness to the end of all things and leave a record should there be any who survive it. |\r\n| 6 | There is nothing better than mutton, honeyed mead, and a crowd in thrall to my words. |\r\n| 7 | The gods weave our fates. There is nothing to do but accept this and live as we will. |\r\n| 8 | All life is artifice. I lie better than most and I am not ashamed to reap the rewards. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Valor.** Stories and songs should inspire others—and me—to perform great deeds that benefit us all. (Good) |\r\n| 2 | **Greed.** There is little point in taking action if it leads to living in squalor. I will take what I want and dare any who disagree to oppose me. (Evil) |\r\n| 3 | **Perfection.** I will not let the threat of failure deter me. Every deed I attempt, even those I do not succeed at, serve to improve me and prepare me for future endeavors. (Lawful) |\r\n| 4 | **Anarchy.** If Ragnarok is coming to end all that is, I must do what I want and damn the consequences. (Chaotic) |\r\n| 5 | **Knowledge.** The north is full of ancient ruins and monuments. If I can glean their meaning, I may understand fate as well as the gods. (Any) |\r\n| 6 | **Pleasure.** I will eat the richest food, sleep in the softest bed, enjoy the finest company, and allow no one to stand in the way of my delight and contentment. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have the support of my peers from the skaldic school I attended, and they have mine. |\r\n| 2 | I will find and answer the Unanswerable Riddle and gain infamy. |\r\n| 3 | I will craft an epic of such renown it will be recited the world over. |\r\n| 4 | All my companions were slain in an ambush laid by cowardly trolls. At least I snatched up my tagelharpa before I escaped the carnage. |\r\n| 5 | The cold waves call to me even across great distances. I must never stray too far from the ocean's embrace. |\r\n| 6 | It is inevitable that people fail me. Mead, on the other hand, never fails to slake my thirst. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Only a coward retreats. The valiant press forward to victory or death. |\r\n| 2 | All the tales I tell of my experiences are lies. |\r\n| 3 | Critics and hecklers will suffer my wrath once the performance is over. |\r\n| 4 | Companions and friends cease to be valuable if their accomplishments outshine my own. |\r\n| 5 | I once burned down a tavern where I was poorly received. I would do it again. |\r\n| 6 | I cannot bear to be gainsaid and fall into a bitter melancholy when I am. |", + "type": "suggested_characteristics", + "parent": "toh_northern-minstrel" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 139, + "fields": { + "name": "Skill Proficiencies", + "desc": "Arcana, Religion", + "type": "skill_proficiency", + "parent": "toh_occultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 140, + "fields": { + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "toh_occultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 141, + "fields": { + "name": "Tool Proficiencies", + "desc": "Thieves' tools", + "type": "tool_proficiency", + "parent": "toh_occultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 142, + "fields": { + "name": "Equipment", + "desc": "A book of obscure lore holding clues to an occult location, a bottle of black ink, a quill, a leather-bound journal in which you record your secrets, a bullseye lantern, a set of common clothes, and a belt pouch containing 5 gp", + "type": "equipment", + "parent": "toh_occultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 143, + "fields": { + "name": "Strange Lore", + "desc": "Your passions for forbidden knowledge, esoteric religions, secretive cults, and terrible histories brought you into contact with a wide variety of interesting and unique individuals operating on the fringes of polite society. When you're trying to find something that pertains to eldritch secrets or dark knowledge, you have a good idea of where to start looking. Usually, this information comes from information brokers, disgraced scholars, chaotic mages, dangerous cults, or insane priests. Your GM might rule that the knowledge you seek isn't found with just one contact, but this feature provides a starting point.", + "type": "feature", + "parent": "toh_occultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 144, + "fields": { + "name": "Suggested Characteristics", + "desc": "Occultists can't resist the lure of an ancient ruin, forgotten dungeon, or the lair of some mysterious cult. They eagerly follow odd rumors, folktales, and obscure clues found in dusty tomes. Some adventure with the hope of turning their discoveries into fame and fortune, while others consider the answers they uncover to be the true reward. Whatever their motivations, occultists combine elements of archaeologist, scholar, and fanatic.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I always ask questions, especially if I think I can learn something new. |\r\n| 2 | I believe every superstition I hear and follow their rules fanatically. |\r\n| 3 | The things I know give me nightmares, and not only when I sleep. |\r\n| 4 | Nothing makes me happier than explaining some obscure lore to my friends. |\r\n| 5 | I startle easily. |\r\n| 6 | I perform a host of rituals throughout the day that I believe protect me from occult threats. |\r\n| 7 | I never know when to give up. |\r\n| 8 | The more someone refuses to believe me, the more I am determined to convince them. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Domination.** With the power I will unearth, I will take my revenge on those who wronged me. (Evil) |\r\n| 2 | **Mettle.** Each nugget of hidden knowledge I uncover proves my worth. (Any) |\r\n| 3 | **Lore.** Knowledge is never good or evil; it is simply knowledge. (Neutral) |\r\n| 4 | **Redemption.** This dark knowledge can be made good if it is used properly. (Good) |\r\n| 5 | **Truth.** Nothing should be hidden. Truth is all that matters, no matter who it hurts. (Chaotic) |\r\n| 6 | **Responsibility.** Only by bringing dark lore into the light can we eliminate its threat. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | One or more secret organizations are trying to stop me, which means I must be close to the truth. |\r\n| 2 | My studies come before anything else. |\r\n| 3 | No theory, however unbelievable, is worth abandoning without investigation. |\r\n| 4 | I must uncover the truth behind a particular mystery, one my father died to protect. |\r\n| 5 | I travel with my companions because I have reason to believe they are crucial to the future. |\r\n| 6 | I once had a partner in my occult searches who vanished. I am determined to find them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | When stressed, I mutter theories to myself, sometimes connecting seemingly unconnected or random events, to explain my current predicament. |\r\n| 2 | It's not paranoia if they really are out to get me. |\r\n| 3 | I have a habit of lying to hide my theories and discoveries. |\r\n| 4 | I see secrets and mysteries in everything and everyone. |\r\n| 5 | The world is full of dark secrets, and I'm the only one who can safely unearth them. |\r\n| 6 | There is no law or social convention I won't break to further my goals. |", + "type": "suggested_characteristics", + "parent": "toh_occultist" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 145, + "fields": { + "name": "Skill Proficiencies", + "desc": "Nature, Investigation", + "type": "skill_proficiency", + "parent": "toh_parfumier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 146, + "fields": { + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_parfumier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 147, + "fields": { + "name": "Tool Proficiencies", + "desc": "Alchemist's supplies, herbalism kit", + "type": "tool_proficiency", + "parent": "toh_parfumier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 148, + "fields": { + "name": "Equipment", + "desc": "Herbalism kit, a leather satchel containing perfume recipes, research notes, and chemical and botanical samples; 1d4 metal or crystal (shatter-proof) perfume bottles, a set of fine clothes, and a silk purse containing 10 gp", + "type": "equipment", + "parent": "toh_parfumier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 149, + "fields": { + "name": "Aromas and Odors and Airs, Oh My", + "desc": "Before you became an adventurer, you crafted perfumes for customers in your home town or city. When not out adventuring, you can fall back on that trade to make a living. For each week you spend practicing your profession, you can craft one of the following at half the normal cost in time and resources: 5 samples of fine perfume worth 10 gp each, 2 vials of acid, or 1 vial of parfum toxique worth 50 gp. As an action, you can throw a vial of parfum toxique up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the parfum as an improvised weapon. On a hit, the target takes 1d6 poison damage and is poisoned until the end of its next turn.", + "type": "feature", + "parent": "toh_parfumier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 150, + "fields": { + "name": "Suggested Characteristics", + "desc": "As with many parfumiers with the extensive training you received, you are well spoken, stately of bearing, and possessed of a self-assuredness that sometimes is found imposing. You are not easily impressed and rarely subscribe to notions like *insurmountable* or *unavoidable*. Every problem has a solution.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I do not deal in absolutes. There is a solution to every problem, an answer for every riddle. |\r\n| 2 | I am used to associating with educated and “elevated” society. I find rough living and rough manners unpalatable. |\r\n| 3 | Years spent witnessing the dealings, intrigues, and industrial espionage of the Bouquet Districts' mercantile-elite have left me secretive and guarded. |\r\n| 4 | I have a strong interest and sense for fashion and current trends. |\r\n| 5 | I eagerly discuss the minutiae, subtleties, and nuances of my profession to any who will listen. |\r\n| 6 | I am easily distracted by unusual or exceptional botanical specimens. |\r\n| 7 | I can seem distant and introverted. I listen more than I speak. |\r\n| 8 | I always strive to make allies, not enemies. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Responsibility.** It is my duty to share my exceptional gifts and knowledge for the betterment of all. (Good) |\r\n| 2 | **Pragmatism.** I never let passion, preference, or emotion influence my decision-making or clear headedness. (Lawful) |\r\n| 3 | **Freedom.** Rules, particularly those imposed by others, were meant to be broken. (Chaotic) |\r\n| 4 | **Deep Science.** I live a life based on facts, logic, probability, and common sense. (Lawful) |\r\n| 5 | **Notoriety.** I will do whatever it takes to become the elite that I was witness to during my time among the boutiques, salons, and workshops of the noble's district. (Any) |\r\n| 6 | **Profit.** I will utilize my talents to harvest, synthesize, concoct, and brew almost anything for almost anyone. As long as the profit margin is right. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will return to my home city someday and have revenge upon the elitist perfume consortium and corrupt shipping magnates who drove my dreams to ruin. |\r\n| 2 | I have been experimenting and searching my whole career for the ultimate aromatic aphrodisiac. The “alchemists' stone” of perfumery. |\r\n| 3 | My home is safely far behind me now. With it go the unfounded accusations, spiteful rumors, and perhaps some potential links to a string of corporate assassinations. |\r\n| 4 | I am cataloging an encyclopedia of flora and their various chemical, magical, and alchemical properties and applications. It is my life's work. |\r\n| 5 | I am dedicated to my craft, always seeking to expand my knowledge and hone my skills in the science and business of aromatics. |\r\n| 6 | I have a loved one who is threatened (held hostage?) by an organized gang of vicious halfling thugs who control many of the “rackets” in the perfumeries in my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am driven to reclaim the status and respect of the socially and scientifically elite and will sacrifice much to gain it. |\r\n| 2 | I am highly competitive and not above plagiarizing or stealing the occasional recipe, idea, formula, or sample. |\r\n| 3 | I am hard-pressed to treat anyone who is not (by my standards) “well schooled” or “well heeled” as little more than lab assistants and house servants. |\r\n| 4 | A pretty face is always able to lead me astray. |\r\n| 5 | I am secretly addicted to a special perfume that only I can reproduce. |\r\n| 6 | *On a stormy night, I heard a voice in the wind, which led me to a mysterious plant. Its scent was intoxicating, and I consumed it. Now, that voice occasionally whispers in my dreams, urging me to some unknown destiny.* |", + "type": "suggested_characteristics", + "parent": "toh_parfumier" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 151, + "fields": { + "name": "Skill Proficiencies", + "desc": "Athletics, Sleight of Hand", + "type": "skill_proficiency", + "parent": "toh_scoundrel" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 152, + "fields": { + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_scoundrel" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 153, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of gaming set, thieves' tools", + "type": "tool_proficiency", + "parent": "toh_scoundrel" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 154, + "fields": { + "name": "Equipment", + "desc": "A bag of 1,000 ball bearings, a pet monkey wearing a tiny fez, a set of common clothes, and a pouch containing 10 gp", + "type": "equipment", + "parent": "toh_scoundrel" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 155, + "fields": { + "name": "Urban Explorer", + "desc": "You are familiar with the layout and rhythms of towns and cities. When you arrive in a new city, you can quickly locate places to stay, where to buy good quality gear, and other facilities. You can shake off pursuers when you are being chased through the streets or across the rooftops. You have a knack for leading pursuers into a crowded market filled with stalls piled high with breakable merchandise, or down a narrow alley just as a dung cart is coming in the other direction.", + "type": "feature", + "parent": "toh_scoundrel" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 156, + "fields": { + "name": "Suggested Characteristics", + "desc": "Despite their poor upbringing, scoundrels tend to live a charmed life—never far from trouble, but usually coming out on top. Many are thrill-seekers who delight in taunting their opponents before making a flashy and daring escape. Most are generally good-hearted, but some are self-centered to the point of arrogance. Quieter, introverted types and the lawfully-inclined can find them very annoying.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Flashing a big smile often gets me out of trouble. |\r\n| 2 | If I can just keep them talking, it will give me time to escape. |\r\n| 3 | I get fidgety if I have to sit still for more than ten minutes or so. |\r\n| 4 | Whatever I do, I try to do it with style and panache. |\r\n| 5 | I don't hold back when there's free food and drink on offer. |\r\n| 6 | Nothing gets me more annoyed than being ignored. |\r\n| 7 | I always sit with my back to the wall and my eyes on the exits. |\r\n| 8 | Why walk down the street when you can run across the rooftops? |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** Ropes and chains are made to be broken. Locks are made to be picked. Doors are meant to be opened. (Chaotic) |\r\n| 2 | **Community.** We need to look out for one another and keep everyone safe. (Lawful) |\r\n| 3 | **Charity.** I share my wealth with those who need it the most. (Good) |\r\n| 4 | **Friendship.** My friends matter more to me than lofty ideals. (Neutral) |\r\n| 5 | **Aspiration.** One day my wondrous deeds will be known across the world. (Any) |\r\n| 6 | **Greed.** I'll stop at nothing to get what I want. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My elder sibling taught me how to find a safe hiding place in the city. This saved my life at least once. |\r\n| 2 | I stole money from someone who couldn't afford to lose it and now they're destitute. One day I'll make it up to them. |\r\n| 3 | The street kids in my town are my true family. |\r\n| 4 | My mother gave me an old brass lamp. I polish it every night before going to sleep. |\r\n| 5 | When I was young, I was too scared to leap from the tallest tower in my hometown onto the hay cart beneath. I'll try again someday. |\r\n| 6 | A city guardsman let me go when they should have arrested me for stealing. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If there's a lever to pull, I'll pull it. |\r\n| 2 | It's not stealing if nobody realizes it's gone. |\r\n| 3 | If I don't like the odds, I'm out of there. |\r\n| 4 | I often don't know when to shut up. |\r\n| 5 | I once filched a pipe from a priest. Now I think the god has cursed me. |\r\n| 6 | I grow angry when someone else steals the limelight. |", + "type": "suggested_characteristics", + "parent": "toh_scoundrel" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 157, + "fields": { + "name": "Skill Proficiencies", + "desc": "Insight, Perception", + "type": "skill_proficiency", + "parent": "toh_sentry" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 158, + "fields": { + "name": "Languages", + "desc": "One language of your choice", + "type": "language", + "parent": "toh_sentry" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 159, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of gaming set", + "type": "tool_proficiency", + "parent": "toh_sentry" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 160, + "fields": { + "name": "Equipment", + "desc": "A set of dice or deck of cards, a shield bearing your previous employer's symbol, a set of common clothes, a hooded lantern, a signal whistle, and a belt pouch containing 10 gp", + "type": "equipment", + "parent": "toh_sentry" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 161, + "fields": { + "name": "Comrades in Arms", + "desc": "The knowing look from the caravan guard to the city gatekeeper or the nod of recognition between the noble's bodyguard and the district watchman—no matter the community, city, or town, the guards share a commonality of purpose. When you arrive in a new location, you can speak briefly with the gate guards, local watch, or other community guardians to gain local knowledge. This knowledge could be information, such as the most efficient routes through the city, primary vendors for a variety of luxury goods, the best (or worst) inns and taverns, the primary criminal elements in town, or the current conflicts in the community.", + "type": "feature", + "parent": "toh_sentry" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 162, + "fields": { + "name": "Suggested Characteristics", + "desc": "You're a person who understands both patience and boredom, as a guard is always waiting for something to happen. More often than not, sentries hope nothing happens because something happening usually means something has gone wrong. A life spent watching and protecting, acting in critical moments, and learning the details of places and behaviors; all of these help shape the personality of the former sentry. Some claim you never stop being a guard, you just change what you protect.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I've seen the dregs of society and nothing surprises me anymore. |\r\n| 2 | I know where to look to spot threats lurking around a corner, in a glance, and even in a bite of food or cup of drink. |\r\n| 3 | I hate standing still and always keep moving. |\r\n| 4 | My friends know they can rely on me to stand and protect them. |\r\n| 5 | I resent the rich and powerful; they think they can get away with anything. |\r\n| 6 | A deception of any sort marks you as untrustworthy in my mind. |\r\n| 7 | Stopping lawbreakers taught me the best ways to skirt the law. |\r\n| 8 | I never take anything at face-value. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greed.** Threats to my companions only increase my glory when I protect them from it. (Evil) |\r\n| 2 | **Perception.** I watch everyone, for threats come from every rank or station. (Neutral) |\r\n| 3 | **Duty.** The laws of the community must be followed to keep everyone safe. (Lawful) |\r\n| 4 | **Community.** I am all that stands between my companions and certain doom. (Good) |\r\n| 5 | **Determination.** To truly protect others, you must sometimes break the law. (Chaotic) |\r\n| 6 | **Practicality.** I require payment for the protection or service I provide. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My charge is paramount; if you can't protect your charge, you've failed. |\r\n| 2 | I was once saved by one of my fellow guards. Now I always come to my companions' aid, no matter what the threat. |\r\n| 3 | My oath is unbreakable; I'd rather die first. |\r\n| 4 | There is no pride equal to the accomplishment of a successful mission. |\r\n| 5 | I stand as a bulwark against those who would damage or destroy society, and society is worth protecting. |\r\n| 6 | I know that as long as I stand with my companions, things can be made right. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Sometimes I may overindulge in a guilty pleasure, but you need something to pass time. |\r\n| 2 | I can't just sit quietly next to someone. I've got to fill the silence with conversation to make good company. |\r\n| 3 | I'm not very capable in social situations. I'd rather sit on the sidelines and observe. People make me nervous. |\r\n| 4 | I have a tough time trusting strangers and new people. You don't know their habits and behaviors; therefore, you don't know their risk. |\r\n| 5 | There is danger all around us, and only the foolish let their guard down. I am no fool, and I will spot the danger. |\r\n| 6 | I believe there's a firm separation between task and personal time. I don't do other people's work when I'm on my own time. If you want me, hire me. |", + "type": "suggested_characteristics", + "parent": "toh_sentry" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 163, + "fields": { + "name": "Skill Proficiencies", + "desc": "Nature, Survival", + "type": "skill_proficiency", + "parent": "toh_trophy-hunter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 164, + "fields": { + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_trophy-hunter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 165, + "fields": { + "name": "Tool Proficiencies", + "desc": "Leatherworker's tools, vehicles (land)", + "type": "tool_proficiency", + "parent": "toh_trophy-hunter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 166, + "fields": { + "name": "Equipment", + "desc": "A donkey or mule with bit and bridle, a set of cold-weather or warm-weather clothes, and a belt pouch containing 5 gp", + "type": "equipment", + "parent": "toh_trophy-hunter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 167, + "fields": { + "name": "Shelter from the Storm", + "desc": "You have spent years hunting in the harshest environments of the world and have seen tents blown away by gales, food stolen by hungry bears, and equipment destroyed by the elements. While traveling in the wilderness, you can find a natural location suitable to make camp by spending 1 hour searching. This location provides cover from the elements and is in some way naturally defensible, at the GM's discretion.", + "type": "feature", + "parent": "toh_trophy-hunter" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 168, + "fields": { + "name": "Suggested Characteristics", + "desc": "Most trophy hunters are skilled hobbyists and find strange relaxation in the tension of the hunt and revel in the glory of a kill. You may find great personal joy in hunting, in the adoration of peers, or simply in earning gold by selling pelts, scales, and horns.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nothing gets my blood pumping like stalking a wild animal. |\r\n| 2 | I like things big! Trophies, big! Food, big! Money, houses, weapons, possessions, I want ‘em big, big, BIG! |\r\n| 3 | When hunting, it's almost as if I become a different person. Focused. Confident. Ruthless. |\r\n| 4 | The only way to kill a beast is to be patient and find the perfect moment to strike. The same is true for all the important things in life. |\r\n| 5 | Bathing is for novices. I know that to catch my smelly, filthy prey, I must smell like them to throw off their scent. |\r\n| 6 | I eat only raw meat. It gets me more in tune with my prey. |\r\n| 7 | I'm a connoisseur of killing implements; I only use the best, because I am the best. |\r\n| 8 | I thank the natural world for its bounty after every kill. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Ambition.** It is my divine calling to become better than my rivals by any means necessary. (Chaotic) |\r\n| 2 | **Altruism.** I hunt only to protect those who cannot protect themselves. (Good) |\r\n| 3 | **Determination.** No matter what the laws say, I will kill that beast! (Chaotic) |\r\n| 4 | **Cruelty.** My prey lives only for my pleasure. It will die exactly as quickly or as slowly as I desire. (Evil) |\r\n| 5 | **Sport.** We're just here to have fun. (Neutral) |\r\n| 6 | **Family.** I follow in my family's footsteps. I will not tarnish their legacy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I like hunting because I like feeling big and powerful. |\r\n| 2 | I hunt because my parents think I'm a worthless runt. I need to make them proud. |\r\n| 3 | I was mauled by a beast on my first hunting trip. I've spent my life searching for that monster. |\r\n| 4 | The first time I drew blood, something awoke within me. Every hunt is a search for the original ecstasy of blood. |\r\n| 5 | My hunting companions used to laugh at me behind my back. They aren't laughing anymore. |\r\n| 6 | A close friend funded my first hunting expedition. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm actually a sham. All of my trophies were bagged by someone else. I just followed along and watched. |\r\n| 2 | I'm terrified of anything larger than myself. |\r\n| 3 | I can't express anger without lashing out at something. |\r\n| 4 | I need money. I don't care how much or how little I have; I need more. And I would do anything to get it. |\r\n| 5 | I am obsessed with beauty in animals, art, and people. |\r\n| 6 | I don't trust my hunting partners, whom I know are here to steal my glory! |", + "type": "suggested_characteristics", + "parent": "toh_trophy-hunter" + } + } +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/Background.json b/data/v2/wizards-of-the-coast/srd/Background.json index 86132337..7c7688bc 100644 --- a/data/v2/wizards-of-the-coast/srd/Background.json +++ b/data/v2/wizards-of-the-coast/srd/Background.json @@ -1,11 +1,11 @@ [ -{ - "model": "api_v2.background", - "pk": "acolyte", - "fields": { - "name": "Acolyte", - "desc": "You have spent your life in the service of a temple to a specific god or pantheon of gods. You act as an\r\nintermediary between the realm of the holy and the mortal world, performing sacred rites and offering sacrifices in order to conduct worshipers into the presence of the divine. You are not necessarily a cleric performing sacred rites is not the same thing as channeling divine power.\r\n\r\nChoose a god, a pantheon of gods, or some other quasi-divine being from among those listed in \"Fantasy-Historical Pantheons\" or those specified by your GM, and work with your GM to detail the nature\r\nof your religious service. Were you a lesser functionary in a temple, raised from childhood to assist the priests in the sacred rites? Or were you a high priest who suddenly experienced a call to serve your god in a different way? Perhaps you were the leader of a small cult outside of any established temple structure, or even an occult group that served a fiendish master that you now deny.", - "document": "srd" + { + "model": "api_v2.background", + "pk": "srd_acolyte", + "fields": { + "name": "Acolyte", + "desc": "You have spent your life in the service of a temple to a specific god or pantheon of gods. You act as an\r\nintermediary between the realm of the holy and the mortal world, performing sacred rites and offering sacrifices in order to conduct worshipers into the presence of the divine. You are not necessarily a cleric performing sacred rites is not the same thing as channeling divine power.\r\n\r\nChoose a god, a pantheon of gods, or some other quasi-divine being from among those listed in \"Fantasy-Historical Pantheons\" or those specified by your GM, and work with your GM to detail the nature\r\nof your religious service. Were you a lesser functionary in a temple, raised from childhood to assist the priests in the sacred rites? Or were you a high priest who suddenly experienced a call to serve your god in a different way? Perhaps you were the leader of a small cult outside of any established temple structure, or even an occult group that served a fiendish master that you now deny.", + "document": "srd" + } } -} -] +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json b/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json index f7f22ae0..e93a881d 100644 --- a/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json +++ b/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json @@ -1,52 +1,52 @@ [ -{ - "model": "api_v2.backgroundbenefit", - "pk": 30, - "fields": { - "name": "Skill Proficiencies", - "desc": "Insight, Religion", - "type": "skill_proficiency", - "parent": "acolyte" + { + "model": "api_v2.backgroundbenefit", + "pk": 30, + "fields": { + "name": "Skill Proficiencies", + "desc": "Insight, Religion", + "type": "skill_proficiency", + "parent": "srd_acolyte" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 31, + "fields": { + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "srd_acolyte" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 32, + "fields": { + "name": "Equipment", + "desc": "A holy symbol (a gift to you when you entered the priesthood), a prayer book or prayer wheel, 5 sticks of incense, vestments, a set of common clothes, and a pouch containing 15 gp", + "type": "equipment", + "parent": "srd_acolyte" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 33, + "fields": { + "name": "Shelter of the Faithful", + "desc": "As an acolyte, you command the respect of those who share your faith, and you can perform the religious ceremonies of your deity. You and your adventuring companions can expect to receive free healing and care at a temple, shrine, or other established presence of your faith, though you must provide any material components needed for spells. Those who share your religion will support you (but only you) at a modest lifestyle.\r\n\r\nYou might also have ties to a specific temple dedicated to your chosen deity or pantheon, and you have a residence there. This could be the temple where you used to serve, if you remain on good terms with it, or a temple where you have found a new home. While near your temple, you can call upon the priests for assistance, provided the assistance you ask for is not hazardous and you remain in good standing with your temple.", + "type": "feature", + "parent": "srd_acolyte" + } + }, + { + "model": "api_v2.backgroundbenefit", + "pk": 34, + "fields": { + "name": "Suggested Characteristics", + "desc": "Acolytes are shaped by their experience in temples or other religious communities. Their study of the history and tenets of their faith and their relationships to temples, shrines, or hierarchies affect their mannerisms and ideals. Their flaws might be some hidden hypocrisy or heretical idea, or an ideal or bond taken to an extreme.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I idolize a particular hero of my faith, and constantly refer to that person's deeds and example. |\r\n| 2 | I can find common ground between the fiercest enemies, empathizing with them and always working toward peace. |\r\n| 3 | I see omens in every event and action. The gods try to speak to us, we just need to listen |\r\n| 4 | Nothing can shake my optimistic attitude. |\r\n| 5 | I quote (or misquote) sacred texts and proverbs in almost every situation. |\r\n| 6 | I am tolerant (or intolerant) of other faiths and respect (or condemn) the worship of other gods. |\r\n| 7 | I've enjoyed fine food, drink, and high society among my temple's elite. Rough living grates on me. |\r\n| 8 | I've spent so long in the temple that I have little practical experience dealing with people in the outside world. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Tradition. The ancient traditions of worship and sacrifice must be preserved and upheld. (Lawful) |\r\n| 2 | Charity. I always try to help those in need, no matter what the personal cost. (Good) |\r\n| 3 | Change. We must help bring about the changes the gods are constantly working in the world. (Chaotic) |\r\n| 4 | Power. I hope to one day rise to the top of my faith's religious hierarchy. (Lawful) |\r\n| 5 | Faith. I trust that my deity will guide my actions. I have faith that if I work hard, things will go well. (Lawful) |\r\n| 6 | Aspiration. I seek to prove myself worthy of my god's favor by matching my actions against his or her teachings. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I would die to recover an ancient relic of my faith that was lost long ago. |\r\n| 2 | I will someday get revenge on the corrupt temple hierarchy who branded me a heretic. |\r\n| 3 | I owe my life to the priest who took me in when my parents died. |\r\n| 4 | Everything I do is for the common people. |\r\n| 5 | I will do anything to protect the temple where I served. |\r\n| 6 | I seek to preserve a sacred text that my enemies consider heretical and seek to destroy. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I judge others harshly, and myself even more severely. |\r\n| 2 | I put too much trust in those who wield power within my temple's hierarchy. |\r\n| 3 | My piety sometimes leads me to blindly trust those that profess faith in my god. |\r\n| 4 | I am inflexible in my thinking. |\r\n| 5 | I am suspicious of strangers and expect the worst of them. |\r\n| 6 | Once I pick a goal, I become obsessed with it to the detriment of everything else in my life. |", + "type": "suggested_characteristics", + "parent": "srd_acolyte" + } } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 31, - "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", - "parent": "acolyte" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 32, - "fields": { - "name": "Equipment", - "desc": "A holy symbol (a gift to you when you entered the priesthood), a prayer book or prayer wheel, 5 sticks of incense, vestments, a set of common clothes, and a pouch containing 15 gp", - "type": "equipment", - "parent": "acolyte" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 33, - "fields": { - "name": "Shelter of the Faithful", - "desc": "As an acolyte, you command the respect of those who share your faith, and you can perform the religious ceremonies of your deity. You and your adventuring companions can expect to receive free healing and care at a temple, shrine, or other established presence of your faith, though you must provide any material components needed for spells. Those who share your religion will support you (but only you) at a modest lifestyle.\r\n\r\nYou might also have ties to a specific temple dedicated to your chosen deity or pantheon, and you have a residence there. This could be the temple where you used to serve, if you remain on good terms with it, or a temple where you have found a new home. While near your temple, you can call upon the priests for assistance, provided the assistance you ask for is not hazardous and you remain in good standing with your temple.", - "type": "feature", - "parent": "acolyte" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 34, - "fields": { - "name": "Suggested Characteristics", - "desc": "Acolytes are shaped by their experience in temples or other religious communities. Their study of the history and tenets of their faith and their relationships to temples, shrines, or hierarchies affect their mannerisms and ideals. Their flaws might be some hidden hypocrisy or heretical idea, or an ideal or bond taken to an extreme.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I idolize a particular hero of my faith, and constantly refer to that person's deeds and example. |\r\n| 2 | I can find common ground between the fiercest enemies, empathizing with them and always working toward peace. |\r\n| 3 | I see omens in every event and action. The gods try to speak to us, we just need to listen |\r\n| 4 | Nothing can shake my optimistic attitude. |\r\n| 5 | I quote (or misquote) sacred texts and proverbs in almost every situation. |\r\n| 6 | I am tolerant (or intolerant) of other faiths and respect (or condemn) the worship of other gods. |\r\n| 7 | I've enjoyed fine food, drink, and high society among my temple's elite. Rough living grates on me. |\r\n| 8 | I've spent so long in the temple that I have little practical experience dealing with people in the outside world. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Tradition. The ancient traditions of worship and sacrifice must be preserved and upheld. (Lawful) |\r\n| 2 | Charity. I always try to help those in need, no matter what the personal cost. (Good) |\r\n| 3 | Change. We must help bring about the changes the gods are constantly working in the world. (Chaotic) |\r\n| 4 | Power. I hope to one day rise to the top of my faith's religious hierarchy. (Lawful) |\r\n| 5 | Faith. I trust that my deity will guide my actions. I have faith that if I work hard, things will go well. (Lawful) |\r\n| 6 | Aspiration. I seek to prove myself worthy of my god's favor by matching my actions against his or her teachings. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I would die to recover an ancient relic of my faith that was lost long ago. |\r\n| 2 | I will someday get revenge on the corrupt temple hierarchy who branded me a heretic. |\r\n| 3 | I owe my life to the priest who took me in when my parents died. |\r\n| 4 | Everything I do is for the common people. |\r\n| 5 | I will do anything to protect the temple where I served. |\r\n| 6 | I seek to preserve a sacred text that my enemies consider heretical and seek to destroy. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I judge others harshly, and myself even more severely. |\r\n| 2 | I put too much trust in those who wield power within my temple's hierarchy. |\r\n| 3 | My piety sometimes leads me to blindly trust those that profess faith in my god. |\r\n| 4 | I am inflexible in my thinking. |\r\n| 5 | I am suspicious of strangers and expect the worst of them. |\r\n| 6 | Once I pick a goal, I become obsessed with it to the detriment of everything else in my life. |", - "type": "suggested_characteristics", - "parent": "acolyte" - } -} -] +] \ No newline at end of file diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index dae1210b..0f477619 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -16,6 +16,8 @@ def main(): help='Input data directory containing fixtures for v2 models.') parser.add_argument('-l','--loglevel', default='INFO', help='Log level.') + parser.add_argument('-f', '--fix', action='store_true', + help='If this flag is set, the script will automatically fix what it can.') args = parser.parse_args() if args.loglevel == 'INFO': @@ -64,22 +66,22 @@ def main(): logger.debug("Skipping {}: file is known to have numeric keys.".format(f_obj['filename'])) else: check_keys_non_numeric(objs, f_obj) - #fix_keys_num_to_parent_name(objs, f_obj) - ''' + if args.fix: fix_keys_num_to_parent_name(objs, f_obj) + # CHECK FOR KEYS THAT ARE NOT PROPERLY SLUGIFIED known_keys_are_slugified_exceptions = ['CastingOption.json','Capability.json','BackgroundBenefit.json','Trait.json','FeatureItem.json'] if f_obj['filename'] in known_keys_are_slugified_exceptions: logger.debug("Skipping {}: file is known to have non-slugified keys.".format(f_obj['filename'])) else: check_keys_are_slugified(objs, f_obj) - ''' + # CHECK THAT KEYS MATCH THE FORMAT DOC_NAME, SLUGIFIED_NAME known_keys_doc_name_exceptions = ['CastingOption.json','Capability.json','BackgroundBenefit.json','Trait.json','FeatureItem.json', 'Size.json','CreatureAttack.json'] if f_obj['filename'] in known_keys_doc_name_exceptions: logger.debug("Skipping {}: file is known to have non-slugified keys.".format(f_obj['filename'])) else: check_keys_doc_name(objs, f_obj) - fix_keys_to_doc_name(objs, f_obj) + if args.fix: fix_keys_to_doc_name(objs, f_obj) def check_keys_non_numeric(objs,f): @@ -88,12 +90,18 @@ def check_keys_non_numeric(objs,f): logger.warning("{} uses numeric pk".format(f['path'])) def fix_keys_num_to_parent_name(objs,f): + objs_fixed=[] for obj in objs: if isinstance(obj['pk'], numbers.Real): if f['filename']=='BackgroundBenefit.json': logger.warning("{} changing from numeric pk to string".format(f['path'])) pk_value = "{}_{}".format(obj['fields']['parent'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) + obj['pk'] = pk_value + objs_fixed.append(obj) + +# with open(f['path'],'w',encoding='utf-8') as wf: +# json.dump(objs_fixed,wf,indent=2) def check_keys_are_slugified(objs,f): for obj in objs: @@ -108,14 +116,45 @@ def check_keys_doc_name(objs,f): break def fix_keys_to_doc_name(objs,f): + objs_fixed=[] + for obj in objs: if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): if f['filename']=='Background.json': logger.warning("{} changing to doc_name format".format(f['path'])) pk_value = "{}_{}".format(obj['fields']['document'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) + + obj['former_pk'] = obj['pk'] + obj['pk'] = pk_value + objs_fixed.append(obj) + + + related_path = "{}/{}/{}/{}/{}/".format(f['root'],f['dir'],f['schema'],f['publisher'],f['doc']) + related_filenames = ['BackgroundBenefit.json'] + + for obj in objs_fixed: + for related_file in related_filenames: + refactor_relations(related_path+related_file,"parent",obj['former_pk'], obj['pk']) + obj.pop('former_pk') + + if f['filename']=='Background.json': + with open(f['path'],'w',encoding='utf-8') as wf: + json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) + + +def refactor_relations(filename, key, former_pk, new_pk): + refactored_objects = [] + with open(filename, 'r', encoding='utf-8') as f: + objs = json.load(f) + for obj in objs: + if obj['fields'][key] == former_pk: + obj['fields'][key] = new_pk + refactored_objects.append(obj) + with open(filename,'w', encoding='utf-8') as o: + json.dump(refactored_objects,o, ensure_ascii=False,indent=2) def check_keys_doc_parent_name(objs,f): for obj in objs: From f93a6a2a118a520f6000c485c3f820701505261d Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 24 May 2024 11:45:06 -0500 Subject: [PATCH 21/84] Adjusting to meet new filenames. --- api_v2/management/commands/export.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index 7a202fd5..631d1653 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -109,7 +109,7 @@ def handle(self, *args, **options) -> None: for model in app_models: SKIPPED_MODEL_NAMES = ['Document', 'Ruleset', 'License', 'Publisher','SearchResult'] - CHILD_MODEL_NAMES = ['Trait', 'Capability', 'Benefit', 'FeatureItem', 'CastingOption'] + CHILD_MODEL_NAMES = ['Trait', 'Capability', 'BackgroundBenefit', 'FeatureItem', 'CastingOption'] if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES: if model.__name__ in CHILD_MODEL_NAMES: @@ -117,8 +117,8 @@ def handle(self, *args, **options) -> None: modelq = model.objects.filter(race__document=doc).order_by('pk') if model.__name__ == 'Capability': modelq = model.objects.filter(feat__document=doc).order_by('pk') - if model.__name__ == 'Benefit': - modelq = model.objects.filter(background__document=doc).order_by('pk') + if model.__name__ == 'BackgroundBenefit': + modelq = model.objects.filter(parent__document=doc).order_by('pk') if model.__name__ == 'CastingOption': modelq = model.objects.filter(spell__document=doc).order_by('pk') if model.__name__ == 'FeatureItem': From 83ba6e6e9d3409d2e94a4175daa2aac20e0917a2 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 24 May 2024 12:21:07 -0500 Subject: [PATCH 22/84] adding whitespace to make it good with export. --- data/v2/en-publishing/a5e-ag/Background.json | 380 +-- .../a5e-ag/BackgroundBenefit.json | 2862 ++++++++--------- data/v2/en-publishing/a5e-ddg/Background.json | 72 +- .../a5e-ddg/BackgroundBenefit.json | 580 ++-- data/v2/en-publishing/a5e-gpg/Background.json | 36 +- .../a5e-gpg/BackgroundBenefit.json | 280 +- data/v2/green-ronin/tdcs/Background.json | 90 +- .../green-ronin/tdcs/BackgroundBenefit.json | 462 +-- data/v2/kobold-press/toh/Background.json | 344 +- .../kobold-press/toh/BackgroundBenefit.json | 2282 ++++++------- .../wizards-of-the-coast/srd/Background.json | 18 +- .../srd/BackgroundBenefit.json | 100 +- 12 files changed, 3753 insertions(+), 3753 deletions(-) diff --git a/data/v2/en-publishing/a5e-ag/Background.json b/data/v2/en-publishing/a5e-ag/Background.json index e57e0bf3..8f61f66c 100644 --- a/data/v2/en-publishing/a5e-ag/Background.json +++ b/data/v2/en-publishing/a5e-ag/Background.json @@ -1,191 +1,191 @@ [ - { - "model": "api_v2.background", - "pk": "a5e-ag_acolyte", - "fields": { - "name": "Acolyte", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_artisan", - "fields": { - "name": "Artisan", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_charlatan", - "fields": { - "name": "Charlatan", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_criminal", - "fields": { - "name": "Criminal", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_cultist", - "fields": { - "name": "Cultist", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_entertainer", - "fields": { - "name": "Entertainer", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_exile", - "fields": { - "name": "Exile", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_farmer", - "fields": { - "name": "Farmer", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_folk-hero", - "fields": { - "name": "Folk Hero", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_gambler", - "fields": { - "name": "Gambler", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_guard", - "fields": { - "name": "Guard", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_guildmember", - "fields": { - "name": "Guildmember", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_hermit", - "fields": { - "name": "Hermit", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_marauder", - "fields": { - "name": "Marauder", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_noble", - "fields": { - "name": "Noble", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_outlander", - "fields": { - "name": "Outlander", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_sage", - "fields": { - "name": "Sage", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_sailor", - "fields": { - "name": "Sailor", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_soldier", - "fields": { - "name": "Soldier", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_trader", - "fields": { - "name": "Trader", - "desc": "[No description provided]", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ag_urchin", - "fields": { - "name": "Urchin", - "desc": "[No description provided]", - "document": "a5e-ag" - } - } -] \ No newline at end of file +{ + "model": "api_v2.background", + "pk": "a5e-ag_acolyte", + "fields": { + "name": "Acolyte", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_artisan", + "fields": { + "name": "Artisan", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_charlatan", + "fields": { + "name": "Charlatan", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_criminal", + "fields": { + "name": "Criminal", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_cultist", + "fields": { + "name": "Cultist", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_entertainer", + "fields": { + "name": "Entertainer", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_exile", + "fields": { + "name": "Exile", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_farmer", + "fields": { + "name": "Farmer", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_folk-hero", + "fields": { + "name": "Folk Hero", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_gambler", + "fields": { + "name": "Gambler", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_guard", + "fields": { + "name": "Guard", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_guildmember", + "fields": { + "name": "Guildmember", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_hermit", + "fields": { + "name": "Hermit", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_marauder", + "fields": { + "name": "Marauder", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_noble", + "fields": { + "name": "Noble", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_outlander", + "fields": { + "name": "Outlander", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_sage", + "fields": { + "name": "Sage", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_sailor", + "fields": { + "name": "Sailor", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_soldier", + "fields": { + "name": "Soldier", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_trader", + "fields": { + "name": "Trader", + "desc": "[No description provided]", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ag_urchin", + "fields": { + "name": "Urchin", + "desc": "[No description provided]", + "document": "a5e-ag" + } +} +] diff --git a/data/v2/en-publishing/a5e-ag/BackgroundBenefit.json b/data/v2/en-publishing/a5e-ag/BackgroundBenefit.json index 3926c970..81351bc2 100644 --- a/data/v2/en-publishing/a5e-ag/BackgroundBenefit.json +++ b/data/v2/en-publishing/a5e-ag/BackgroundBenefit.json @@ -1,1432 +1,1432 @@ [ - { - "model": "api_v2.backgroundbenefit", - "pk": 24, - "fields": { - "name": "Skill Proficiencies", - "desc": "Religion, and either Insight or Persuasion.", - "type": "skill_proficiency", - "parent": "a5e-ag_acolyte" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 25, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "a5e-ag_acolyte" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 26, - "fields": { - "name": "Equipment", - "desc": "Holy symbol (amulet or reliquary), common clothes, robe, and a prayer book, prayer wheel, or prayer beads.", - "type": "equipment", - "parent": "a5e-ag_acolyte" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 27, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Wisdom and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_acolyte" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 28, - "fields": { - "name": "Adventures and Advancement", - "desc": "In small settlements without other resources, your authority may extend to such matters as settling disputes and punishing criminals. You might also be expected to deal with local outbreaks of supernatural dangers such as fiendish possessions, cults, and the unquiet dead. \r\nIf you solve several problems brought to you by members of your faith, you may be promoted (or reinstated) within the hierarchy of your order. You gain the free service of up to 4 acolytes, and direct access to your order’s leaders.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_acolyte" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 29, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Acolyte Connections\r\n\r\n1. A beloved high priest or priestess awaiting your return to the temple once you resolve your crisis of faith.\r\n2. A former priest—exposed by you as a heretic—who swore revenge before fleeing.\r\n3. The wandering herald who rescued you as an orphan and sponsored your entry into your temple.\r\n4. The inquisitor who rooted out your heresy (or framed you) and had you banished from your temple.\r\n5. The fugitive charlatan or cult leader whom you once revered as a holy person.\r\n6. Your scandalous friend, a fellow acolyte who fled the temple in search of worldly pleasures.\r\n7. The high priest who discredited your temple and punished the others of your order.\r\n8. The wandering adventurer whose tales of glory enticed you from your temple.\r\n9. The leader of your order, a former adventurer who sends you on quests to battle your god’s enemies.\r\n10. The former leader of your order who inexplicably retired to a life of isolation and penance.\r\n\r\n### Acolyte Memento\r\n\r\n1. The timeworn holy symbol bequeathed to you by your beloved mentor on their deathbed.\r\n2. A precious holy relic secretly passed on to you in a moment of great danger.\r\n3. A prayer book which contains strange and sinister deviations from the accepted liturgy.\r\n4. A half-complete book of prophecies which seems to hint at danger for your faith—if only the other half could be found!\r\n5. A gift from a mentor: a book of complex theology which you don’t yet understand.\r\n6. Your only possession when you entered the temple as a child: a signet ring bearing a coat of arms.\r\n7. A strange candle which never burns down.\r\n8. The true name of a devil that you glimpsed while tidying up papers for a sinister visitor.\r\n9. A weapon (which seems to exhibit no magical properties) given to you with great solemnity by your mentor.\r\n10. A much-thumbed and heavily underlined prayer book given to you by the fellow acolyte you admire most.", - "type": "connection_and_memento", - "parent": "a5e-ag_acolyte" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 43, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of artisan’s tools or smith’s tools.", - "type": "tool_proficiency", - "parent": "a5e-ag_artisan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 47, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### **Artisan Connections**\r\n\r\n1. The cruel master who worked you nearly to death and now does the same to other apprentices.\r\n2. The kind master who taught you the trade.\r\n3. The powerful figure who refused to pay for your finest work.\r\n4. The jealous rival who made a fortune after stealing your secret technique.\r\n5. The corrupt rival who framed and imprisoned your mentor.\r\n6. The bandit leader who destroyed your mentor’s shop and livelihood.\r\n7. The crime boss who bankrupted your mentor.\r\n8. The shady alchemist who always needs dangerous ingredients to advance the state of your art.\r\n9. Your apprentice who went missing.\r\n10. The patron who supports your work.\r\n\r\n### **Artisan Mementos**\r\n\r\n1. *Jeweler:* A 10,000 gold commission for a ruby ring (now all you need is a ruby worth 5,000 gold).\r\n2. *Smith:* Your blacksmith's hammer (treat as a light hammer).\r\n3. *Cook:* A well-seasoned skillet (treat as a mace).\r\n4. *Alchemist:* A formula with exotic ingredients that will produce...something.\r\n5. *Leatherworker:* An exotic monster hide which could be turned into striking-looking leather armor.\r\n6. *Mason:* Your trusty sledgehammer (treat as a warhammer).\r\n7. *Potter:* Your secret technique for vivid colors which is sure to disrupt Big Pottery.\r\n8. *Weaver:* A set of fine clothes (your own work).\r\n9. *Woodcarver:* A longbow, shortbow, or crossbow (your own work).\r\n10. *Calligrapher:* Strange notes you copied from a rambling manifesto. Do they mean something?", - "type": "connection_and_memento", - "parent": "a5e-ag_artisan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 48, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Charisma and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_charlatan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 49, - "fields": { - "name": "Skill Proficiencies", - "desc": "Deception, and either Culture, Insight, or Sleight of Hand.", - "type": "skill_proficiency", - "parent": "a5e-ag_charlatan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 50, - "fields": { - "name": "Tool Proficiencies", - "desc": "Disguise kit, forgery kit.", - "type": "tool_proficiency", - "parent": "a5e-ag_charlatan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 51, - "fields": { - "name": "Suggested Equipment", - "desc": "Common clothes, disguise kit, forgery kit.", - "type": "equipment", - "parent": "a5e-ag_charlatan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 52, - "fields": { - "name": "Many Identities", - "desc": "You have a bundle of forged papers of all kinds—property deeds, identification papers, love letters, arrest warrants, and letters of recommendation—all requiring only a few signatures and flourishes to meet the current need. When you encounter a new document or letter, you can add a forged and modified copy to your bundle. If your bundle is lost, you can recreate it with a forgery kit and a day’s work.", - "type": "feature", - "parent": "a5e-ag_charlatan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 53, - "fields": { - "name": "Adventures and Advancement", - "desc": "If you pull off a long-standing impersonation or false identity with exceptional success, you may eventually legally become that person. If you’re impersonating a real person, they might be considered the impostor. You gain any property and servants associated with your identity.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_charlatan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 54, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Charlatan Connections\r\n\r\n1. A relentless pursuer: an inspector who you once made a fool of.\r\n2. A relentless pursuer: a mark you once cheated.\r\n3. A relentless pursuer: a former partner just out of jail who blames you for everything.\r\n4. A former partner now gone straight who couldn’t possibly be coaxed out of retirement.\r\n5. A respected priest or tavernkeeper who tips you off about rich potential marks.\r\n6. The elusive former partner who ratted you out and sent you to jail.\r\n7. A famous noble or politician who through sheer luck happens to bear a striking resemblance to you.\r\n8. The crook who taught you everything and just can’t stay out of trouble.\r\n9. A gullible noble who knows you by one of your former aliases, and who always seems to pop up at inconvenient times.\r\n10. A prominent noble who knows you only under your assumed name and who trusts you as their spiritual advisor, tutor, long-lost relative, or the like.\r\n\r\n### Charlatan Mementos\r\n\r\n1. A die that always comes up 6.\r\n2. A dozen brightly-colored “potions”.\r\n3. A magical staff that emits a harmless shower of sparks when vigorously thumped.\r\n4. A set of fine clothes suitable for nobility.\r\n5. A genuine document allowing its holder one free release from prison for a non-capital crime.\r\n6. A genuine deed to a valuable property that is, unfortunately, quite haunted.\r\n7. An ornate harlequin mask.\r\n8. Counterfeit gold coins or costume jewelry apparently worth 100 gold (DC 15 Investigation check to notice they’re fake).\r\n9. A sword that appears more magical than it really is (its blade is enchanted with continual flame and it is a mundane weapon).\r\n10. A nonmagical crystal ball.", - "type": "connection_and_memento", - "parent": "a5e-ag_charlatan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 187, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Charisma and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_trader" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 188, - "fields": { - "name": "Skill Proficiencies", - "desc": "Persuasion, and either Culture, Deception, or Insight.", - "type": "skill_proficiency", - "parent": "a5e-ag_trader" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 189, - "fields": { - "name": "Equipment", - "desc": "Traveler's clothes, abacus, merchant's scale.", - "type": "equipment", - "parent": "a5e-ag_trader" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 191, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Trader Connections\r\n1. The parent or relative who wants you to carry on the family business.\r\n2. The sibling who inherited the other half of the family business.\r\n3. The trading company to which you are indentured until you pay off a debt.\r\n4. The powerful merchant who will never forgive the business coup you pulled off.\r\n5. The noble whose horse trampled your poor family’s vegetable stall, injuring or killing a relative you\r\ndearly loved.\r\n6. The parent or elder sibling who squandered your family fortune.\r\n7. The business partner who cheated you.\r\n8. The customs agent who has sworn to catch you red-handed with illicit goods.\r\n9. The crime boss to whom you wouldn’t pay protection money.\r\n10. The smuggler who will pay well for certain commodities.\r\n\r\n### Trader Mementos\r\n1. The first gold piece you earned.\r\n2. Thousands of shares in a failed venture.\r\n3. A letter of introduction to a rich merchant in a distant city.\r\n4. A sample of an improved version of a common tool.\r\n5. Scars from a wound sustained when you tried to collect a debt from a vicious noble.\r\n6. A love letter from the heir of a rival trading family.\r\n7. A signet ring bearing your family crest, which is famous in the mercantile world.\r\n8. A contract binding you to a particular trading company for the next few years.\r\n9. A letter from a friend imploring you to invest in an opportunity that can't miss.\r\n10. A trusted family member's travel journals that mix useful geographical knowledge with tall tales.", - "type": "connection_and_memento", - "parent": "a5e-ag_trader" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 192, - "fields": { - "name": "Adventures And Advancement", - "desc": "Because of your commercial contacts you may be offered money to lead or escort trade caravans. You'll receive a fee from each trader that reaches their destination safely.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_trader" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 245, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Hermit Connections\r\n1. The high priest who banished you to the wilderness until you repent your heresy.\r\n2. The inquisitor who hunts you even through the most solitary wildlands.\r\n3. The supernatural patron whose temptations and gifts you seek to reject.\r\n4. The inner voice you only hear in solitude.\r\n5. The mentor who trained you in silent contemplation—until they mysteriously turned their back on their own teachings.\r\n6. The villain who destroyed the shreds of your original, worldly life. \r\n7. The noble relatives who seek to return you to the life you rejected.\r\n8. The religious superior whose blasphemies scandalized you into fleeing your religious order.\r\n9. The angel who delivered you a prophecy.\r\n10. The mysterious person you glimpsed several times from a distance—unless it was a hallucination.\r\n\r\n### Hermit Mementos\r\n1. The (possibly unhinged) manifesto, encyclopedia, or theoretical work that you spent so much time on.\r\n2. The faded set of fine clothes you preserved for so many years.\r\n3. The signet ring bearing the family crest that you were ashamed of for so long.\r\n4. The book of forbidden secrets that led you to your isolated refuge.\r\n5. The beetle, mouse, or other small creature which was your only companion for so long.\r\n6. The seemingly nonmagical item that your inner voice says is important.\r\n7. The magic-defying clay tablets you spent years translating.\r\n8. The holy relic you were duty bound to protect.\r\n9. The meteor metal you found in a crater the day you first heard your inner voice.\r\n10. Your ridiculous-looking sun hat.", - "type": "connection_and_memento", - "parent": "a5e-ag_hermit" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 259, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Dexterity and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_urchin" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 260, - "fields": { - "name": "Skill Proficiencies", - "desc": "Sleight of Hand, and either Deception or Stealth.", - "type": "skill_proficiency", - "parent": "a5e-ag_urchin" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 261, - "fields": { - "name": "Equipment", - "desc": "Common clothes, disguise kit.", - "type": "equipment", - "parent": "a5e-ag_urchin" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 264, - "fields": { - "name": "Adventures And Advancement", - "desc": "Street kids are among a settlement's most vulnerable people, especially in cities with lycanthropes, vampires, and other supernatural threats. After you help out a few urchins in trouble, word gets out and you'll be able to consult the street network to gather information. If you roll lower than a 15 on an Investigation check to gather information in a city or town, your roll is treated as a 15.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_urchin" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 265, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Dexterity and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_criminal" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 266, - "fields": { - "name": "Skill Proficiencies", - "desc": "Stealth, and either Deception or Intimidation.", - "type": "skill_proficiency", - "parent": "a5e-ag_criminal" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 267, - "fields": { - "name": "Equipment", - "desc": "Common clothes, dark cloak, thieves' tools.", - "type": "equipment", - "parent": "a5e-ag_criminal" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 268, - "fields": { - "name": "Thieves' Cant", - "desc": "You know thieves' cant: a set of slang, hand signals, and code terms used by professional criminals. A creature that knows thieves' cant can hide a short message within a seemingly innocent statement. A listener who knows thieves' cant understands the message.", - "type": "feature", - "parent": "a5e-ag_criminal" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 269, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Criminal Connections\r\n\r\n1. The master criminal who inducted you into your first gang.\r\n2. The cleric or herald who convinced you to use your skills for good (and who may be legally responsible for your continued good behavior).\r\n3. Your sibling or other relative—who also happens to be a representative of the law.\r\n4. The gang of rascals and pickpockets who once called you their leader.\r\n5. The bounty hunter who has sworn to bring you to justice.\r\n6. Your former partner who made off with all the loot after a big score.\r\n7. The masked courier who occasionally gives you jobs.\r\n8. The crime boss to whom you have sworn loyalty (or to whom you owe an enormous debt).\r\n9. The master thief who once stole something precious from you. \r\n10. The corrupt noble who ruined your once-wealthy family.\r\n\r\n### Criminal Mementos\r\n\r\n1. A golden key to which you haven't discovered the lock.\r\n2. A brand that was burned into your shoulder as punishment for a crime.\r\n3. A scar for which you have sworn revenge.\r\n4. The distinctive mask that gives you your nickname (for instance, the Black Mask or the Red Fox).\r\n5. A gold coin which reappears in your possession a week after you've gotten rid of it.\r\n6. The stolen symbol of a sinister organization; not even your fence will take it off your hands.\r\n7. Documents that incriminate a dangerous noble or politician.\r\n8. The floor plan of a palace.\r\n9. The calling cards you leave after (or before) you strike.\r\n10. A manuscript written by your mentor: *Secret Exits of the World's Most Secure Prisons*.", - "type": "connection_and_memento", - "parent": "a5e-ag_criminal" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 270, - "fields": { - "name": "Adventures And Advancement", - "desc": "If you pull off several successful jobs or heists, you may be promoted (or reinstated) as a leader in your gang. You may gain the free service of up to 8 **bandits** at any time.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_criminal" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 271, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Wisdom and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_farmer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 272, - "fields": { - "name": "Skill Proficiencies", - "desc": "Nature, and either Animal Handling or Survival.", - "type": "skill_proficiency", - "parent": "a5e-ag_farmer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 273, - "fields": { - "name": "Equipment", - "desc": "Common clothes, shovel, mule with saddlebags, 5 Supply (rations).", - "type": "equipment", - "parent": "a5e-ag_farmer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 274, - "fields": { - "name": "Bit and Bridle", - "desc": "You know how to stow and transport food. You and one animal under your care can each carry additional Supply equal to your proficiency bonus.", - "type": "feature", - "parent": "a5e-ag_farmer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 275, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Farmer Connections\r\n\r\n1. The landowner who foreclosed on your family land.\r\n2. The thugs who burned your village.\r\n3. The parents who wait for your return.\r\n4. The strange witch to whom your family owes a debt.\r\n5. The retired adventurer who trained you.\r\n6. The druid who—according to the villagers—laid a drought curse on your land.\r\n7. The village bully who threatened to kill you if you ever returned.\r\n8. The evil wizard who will stop at nothing to take your family heirloom.\r\n9. Your elder sibling who left searching for adventure before you did.\r\n10. The dragon whose foul reek has spoiled your countryside.\r\n\r\n### Farmer Mementos\r\n\r\n1. A strange item you dug up in a field: a key, a lump of unmeltable metal, a glass dagger.\r\n2. The bag of beans your mother warned you not to plant.\r\n3. The shovel, pickaxe, pitchfork, or other tool you used for labor. For you it's a one-handed simple melee weapon that deals 1d6 piercing, slashing, or bludgeoning damage.\r\n4. A debt you must pay.\r\n5. A **mastiff**.\r\n6. Your trusty fishing pole.\r\n7. A corncob pipe.\r\n8. A dried flower from your family garden.\r\n9. Half of a locket given to you by a missing sweetheart.\r\n10. A family weapon said to have magic powers, though it exhibits none at the moment.", - "type": "connection_and_memento", - "parent": "a5e-ag_farmer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 276, - "fields": { - "name": "Adventures And Advancement", - "desc": "You left the farm for a reason but you still have an eye for land. If you acquire farming property, estates, or domains, you can earn twice as much as you otherwise would from their harvests, or be supported by your lands at a lifestyle one level higher than you otherwise would be.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_farmer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 277, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Constitution and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_outlander" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 278, - "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either Athletics or Intimidation.", - "type": "skill_proficiency", - "parent": "a5e-ag_outlander" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 279, - "fields": { - "name": "Equipment", - "desc": "Traveler's clothes, waterskin, healer's kit, 7 days rations.", - "type": "equipment", - "parent": "a5e-ag_outlander" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 280, - "fields": { - "name": "Trader", - "desc": "If you're in or near the wilderness and have a trading relationship with a tribe, settlement, or other nearby group, you can maintain a moderate lifestyle for yourself and your companions by trading the products of your hunting and gathering.", - "type": "feature", - "parent": "a5e-ag_outlander" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 281, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Outlander Connections\r\n1. A tribal chief who owes a favor.\r\n2. The chief of a band of marauders who has a grudge against you.\r\n3. A hag to whom you owe a favor.\r\n4. An alchemist or wizard who frequently gives you requests for rare herbs or trophies.\r\n5. A unicorn you’ve glimpsed but never been able to approach.\r\n6. Another outlander: your former best friend who is now a bitter rival.\r\n7. A wise oracle who knows most of what happens in the wilderness and will reveal it for a price.\r\n8. A zany prospector who knows the wild lands almost as well as you.\r\n9. A circus or arena owner who will pay for live animals not yet in their menagerie.\r\n10. A highly civilized poet or painter who has paid you to guide them to wild and inspiring locales.\r\n\r\n### Outlander Mementos\r\n1. A trophy from the hunt of a mighty beast, such as an phase monster-horn helmet.\r\n2. A trophy from a battle against a fierce monster, such as a still-wriggling troll finger.\r\n3. A stone from a holy druidic shrine.\r\n4. Tools appropriate to your home terrain, such as pitons or snowshoes.\r\n5. Hand-crafted leather armor, hide armor, or clothing.\r\n6. The handaxe you made yourself.\r\n7. A gift from a dryad or faun.\r\n8. Trading goods worth 30 gold, such as furs or rare herbs.\r\n9. A tiny whistle given to you by a sprite.\r\n10. An incomplete map.", - "type": "connection_and_memento", - "parent": "a5e-ag_outlander" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 282, - "fields": { - "name": "Adventures And Advancement", - "desc": "During your travels, wilderness dwellers may come to you for help battling monsters and other dangers. If you succeed in several such adventures, you may earn the freely given aid of up to 8 **warriors**.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_outlander" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 286, - "fields": { - "name": "Supply and Demand", - "desc": "When you buy a trade good and sell it elsewhere to a community in need of that good, you gain a 10% bonus to its sale price for every 100 miles between the buy and sell location (maximum of 50%).", - "type": "feature", - "parent": "a5e-ag_trader" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 289, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Intelligence and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_artisan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 290, - "fields": { - "name": "Skill Proficiencies", - "desc": "Persuasion, and either Insight or History.", - "type": "skill_proficiency", - "parent": "a5e-ag_artisan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 291, - "fields": { - "name": "Equipment", - "desc": "One set of artisan's tools, traveler's clothes.", - "type": "equipment", - "parent": "a5e-ag_artisan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 292, - "fields": { - "name": "Trade Mark", - "desc": "When in a city or town, you have access to a fully-stocked workshop with everything you need to ply your trade. Furthermore, you can expect to earn full price when you sell items you have crafted (though there is no guarantee of a buyer).", - "type": "feature", - "parent": "a5e-ag_artisan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 294, - "fields": { - "name": "Adventures And Advancement", - "desc": "If you participate in the creation of a magic item (a “master work”), you will gain the services of up to 8 commoner apprentices with the appropriate tool proficiency.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_artisan" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 295, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Charisma and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_entertainer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 296, - "fields": { - "name": "Skill Proficiencies", - "desc": "Performance, and either Acrobatics, Culture, or Persuasion.", - "type": "skill_proficiency", - "parent": "a5e-ag_entertainer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 297, - "fields": { - "name": "Equipment", - "desc": "Lute or other musical instrument, costume.", - "type": "equipment", - "parent": "a5e-ag_entertainer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 298, - "fields": { - "name": "Pay the Piper", - "desc": "In any settlement in which you haven't made yourself unpopular, your performances can earn enough money to support yourself and your companions: the bigger the settlement, the higher your standard of living, up to a moderate lifestyle in a city.", - "type": "feature", - "parent": "a5e-ag_entertainer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 299, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Entertainer Connections\r\n1. Your rival, an equally talented performer.\r\n2. The cruel ringleader of the sinister circus where you learned your trade.\r\n3. A noble who wants vengeance for the song you wrote about him.\r\n4. The actor who says that there’s always room in their troupe for you and your companions.\r\n5. The noble who owes you a favor for penning the love poems that won their spouse.\r\n6. Your former partner, a slumming noble with a good ear and bad judgment.\r\n7. The rival who became successful and famous by taking credit for your best work.\r\n8. The highly-placed courtier who is always trying to further your career.\r\n9. A jilted lover who wants revenge. \r\n10. The many tavernkeepers and tailors to whom you owe surprisingly large sums.\r\n\r\n### Entertainer Mementos\r\n\r\n1. Your unfinished masterpiece—if you can find inspiration to overcome your writer's block.\r\n2. Fine clothing suitable for a noble and some reasonably convincing costume jewelry.\r\n3. A love letter from a rich admirer.\r\n4. A broken instrument of masterwork quality—if repaired, what music you could make on it!\r\n5. A stack of slim poetry volumes you just can't sell.\r\n6. Jingling jester's motley.\r\n7. A disguise kit.\r\n8. Water-squirting wands, knotted scarves, trick handcuffs, and other tools of a bizarre new entertainment trend: a nonmagical magic show.\r\n9. A stage dagger.\r\n10. A letter of recommendation from your mentor to a noble or royal court.", - "type": "connection_and_memento", - "parent": "a5e-ag_entertainer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 300, - "fields": { - "name": "Adventures And Advancement", - "desc": "Some of your admirers will pay you to plead a cause or smear an enemy. If you succeed at several such quests, your fame will grow. You will be welcome at royal courts, which will support you at a rich lifestyle.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_entertainer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 301, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Constitution and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_guildmember" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 302, - "fields": { - "name": "Skill Proficiencies", - "desc": "Two of your choice.", - "type": "skill_proficiency", - "parent": "a5e-ag_guildmember" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 303, - "fields": { - "name": "Equipment", - "desc": "One set of artisan's tools or one instrument, traveler's clothes, guild badge.", - "type": "equipment", - "parent": "a5e-ag_guildmember" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 304, - "fields": { - "name": "Guild Business", - "desc": "While in a city or town, you can maintain a moderate lifestyle by plying your trade. Furthermore, the guild occasionally informs you of jobs that need doing. Completing such a job might require performing a downtime activity, or it might require a full adventure. The guild provides a modest reward if you're successful.", - "type": "feature", - "parent": "a5e-ag_guildmember" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 305, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guildmember Connections\r\n\r\n1. Your guild master who occasionally has secret missions for groups which can keep their mouths shut.\r\n2. Members of a rival guild who might or might not stoop to violence.\r\n3. The master who, recognizing your talent, risked all to teach you dangerous guild secrets.\r\n4. The agent of a rival guild who is trying to steal secrets.\r\n5. The jealous teacher who took credit for your work and got you expelled from the guild.\r\n6. The guild quartermaster who stocks goods of dubious legality.\r\n7. The friendly guild officer who always saves you the most interesting assignments.\r\n8. The rivals who always compete for the same guild jobs.\r\n9. The noble who owes you big.\r\n10. Your guild master’s ambitious second-in-command who is recruiting allies for a coup.\r\n\r\n### Guildmember Mementos\r\n\r\n1. *Artisans Guild:* An incomplete masterpiece which your mentor never finished.\r\n2. *Entertainers Guild:* An incomplete masterpiece which your mentor never finished.\r\n3. *Explorers Guild:* A roll of incomplete maps each with a reward for completion.\r\n4. *Laborers Guild:* A badge entitling you to a free round of drinks at most inns and taverns.\r\n5. *Adventurers Guild:* A request from a circus to obtain live exotic animals.\r\n6. *Bounty Hunters Guild:* A set of manacles and a bounty on a fugitive who has already eluded you once.\r\n7. *Mages Guild:* The name of a wizard who has created a rare version of a spell that the guild covets.\r\n8. *Monster Hunters Guild:* A bounty, with no time limit, on a monster far beyond your capability.\r\n9. *Archaeologists Guild:* A map marking the entrance of a distant dungeon.\r\n10. *Thieves Guild:* Blueprints of a bank, casino, mint, or other rich locale.", - "type": "connection_and_memento", - "parent": "a5e-ag_guildmember" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 306, - "fields": { - "name": "Adventures And Advancement", - "desc": "Once you have completed several quests or endeavors advancing guild business, you may be promoted to guild officer. You gain access to more lucrative contracts. In addition, the guild supports you at a moderate lifestyle without you having to work.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_guildmember" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 307, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Intelligence and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_sage" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 308, - "fields": { - "name": "Skill Proficiencies", - "desc": "History, and either Arcana, Culture, Engineering, or Religion.", - "type": "skill_proficiency", - "parent": "a5e-ag_sage" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 309, - "fields": { - "name": "Equipment", - "desc": "Bottle of ink, pen, 50 sheets of parchment, common clothes.", - "type": "equipment", - "parent": "a5e-ag_sage" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 310, - "fields": { - "name": "Library Privileges", - "desc": "As a fellow or friend of several universities you have visiting access to the great libraries, most of which are off-limits to the general public. With enough time spent in a library, you can uncover most of the answers you seek (any question answerable with a DC 20 Arcana, Culture, Engineering, History, Nature, or Religion check).", - "type": "feature", - "parent": "a5e-ag_sage" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 311, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sage Connections\r\n\r\n1. Your rival who always seems to be one step ahead of you in the research race.\r\n2. The college dean who banished you for conduct unbefitting a research fellow.\r\n3. A former student of yours who has become a dangerous wizard.\r\n4. The professor who took credit for your research.\r\n5. The rival sage whose cruel nickname for you has made you a laughingstock.\r\n6. The alchemist who will pay for bizarre monster trophies and other ingredients—no questions asked.\r\n7. The peer with a competing cosmological theory that causes endless friendly bickering.\r\n8. The noble who recognized your intelligence at a young age and sponsored your entrance into academia.\r\n9. A talented apprentice who ran away after mastering magical power but not the theoretical foundation to control it.\r\n10. The invading general who burned the library that was once your home.\r\n\r\n### Sage Mementos\r\n\r\n1. A letter from a colleague asking for research help.\r\n2. Your incomplete manuscript.\r\n3. An ancient scroll in a language that no magic can decipher.\r\n4. A copy of your highly unorthodox theoretical work that got you in so much trouble.\r\n5. A list of the forbidden books that may answer your equally forbidden question.\r\n6. A formula for a legendary magic item for which you have no ingredients.\r\n7. An ancient manuscript of a famous literary work believed to have been lost; only you believe that it is genuine.\r\n8. Your mentor's incomplete bestiary, encyclopedia, or other work that you vowed to complete.\r\n9. Your prize possession: a magic quill pen that takes dictation.\r\n10. The name of a book you need for your research that seems to be missing from every library you've visited.", - "type": "connection_and_memento", - "parent": "a5e-ag_sage" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 312, - "fields": { - "name": "Adventures And Advancement", - "desc": "When you visit libraries and universities you tend to be asked for help in your role as a comparatively rough-and-tumble adventurer. After fetching a few bits of esoteric knowledge and settling a few academic disputes, you may be granted access to the restricted areas of the library (which contain darker secrets and deeper mysteries, such as those answerable with a DC 25 Arcana, Culture, Engineering, History, Nature, or Religion check).", - "type": "adventures_and_advancement", - "parent": "a5e-ag_sage" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 313, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Constitution and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_folk-hero" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 314, - "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either Animal Handling or Nature.", - "type": "skill_proficiency", - "parent": "a5e-ag_folk-hero" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 315, - "fields": { - "name": "Equipment", - "desc": "Any artisan's tools except alchemist's supplies, common clothes.", - "type": "equipment", - "parent": "a5e-ag_folk-hero" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 316, - "fields": { - "name": "Local Fame", - "desc": "Unless you conceal your identity, you're universally recognized and admired near the site of your exploits. You and your companions are treated to a moderate lifestyle in any settlement within 100 miles of your Prestige Center.", - "type": "feature", - "parent": "a5e-ag_folk-hero" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 317, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Folk Hero Connections\r\n\r\n1. The bard whose song made you legendary and who wants a sequel.\r\n2. Your friend, a traveling merchant whose caravan spreads your fame.\r\n3. A deadly enemy: the heir of the oppressive noble you killed.\r\n4. A deadly enemy: the mother of the monster you killed.\r\n5. A deadly enemy: the leader of the bandits you defeated.\r\n6. A deadly enemy: the tyrant you robbed.\r\n7. A kid who wants to follow your footsteps into danger.\r\n8. The jealous rival who wants to best your monster-slaying prowess, daring deeds, prize pie recipe, or whatever else made your famous.\r\n9. A secret admirer: the heir or heiress of the oppressive noble you defeated.\r\n10. The retired adventurer who trained you and is now in a bit of trouble.\r\n\r\n### Folk Hero Mementos\r\n\r\n1. The mask you used to conceal your identity while fighting oppression (you are only recognized as a folk hero while wearing the mask).\r\n2. A necklace bearing a horn, tooth, or claw from the monster you defeated.\r\n3. A ring given to you by the dead relative whose death you avenged.\r\n4. The weapon you wrestled from the leader of the raid on your village.\r\n5. The trophy, wrestling belt, silver pie plate, or other prize marking you as the county champion.\r\n6. The famous scar you earned in your struggle against your foe.\r\n7. The signature weapon which provides you with your nickname.\r\n8. The injury or physical difference by which your admirers and foes recognize you.\r\n9. The signal whistle or instrument which you used to summon allies and spook enemies.\r\n10. Copies of the ballads and poems written in your honor.", - "type": "connection_and_memento", - "parent": "a5e-ag_folk-hero" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 318, - "fields": { - "name": "Adventures And Advancement", - "desc": "Common folk come to you with all sorts of problems. If you fought an oppressive regime, they bring you tales of injustice. If you fought a monster, they seek you out with monster problems. If you solve many such predicaments, you become universally famous, gaining the benefits of your Local Fame feature in every settled land.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_folk-hero" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 325, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Charisma and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_gambler" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 326, - "fields": { - "name": "Skill Proficiencies", - "desc": "Deception, and either Insight or Sleight of Hand.", - "type": "skill_proficiency", - "parent": "a5e-ag_gambler" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 327, - "fields": { - "name": "Equipment", - "desc": "Fine clothes, dice set, playing card set.", - "type": "equipment", - "parent": "a5e-ag_gambler" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 328, - "fields": { - "name": "Lady Luck", - "desc": "Each week you may attempt a “lucky throw” to support yourself by gambling. Roll a d6 to determine the lifestyle you can afford with your week's winnings (1–2: poor, 3–5: moderate, 6: rich).", - "type": "feature", - "parent": "a5e-ag_gambler" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 329, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Gambler Connections\r\n1. The mentor you have now surpassed.\r\n2. The duelist who will never forgive you for fleecing them.\r\n3. The legendary gambler you aspire to beat.\r\n4. The friendly rival who always keeps you on your toes.\r\n5. The noble who publicly accused you of cheating.\r\n6. An ink-stained academic who wants you to test a risky theory about how to beat the house.\r\n7. The gang leader who would rather kill you than pay up.\r\n8. The kid who strives to emulate you. \r\n9. The cardsharp rival who cheats to win.\r\n10. The rival who won something from you that you want back.\r\n\r\n### Gambler Mementos\r\n\r\n1. Gambling debts owed you by someone who's gone missing.\r\n2. Your lucky coin that you've always won back after gambling it away.\r\n3. The deeds to a monster-infested copper mine, a castle on another plane of existence, and several other valueless properties.\r\n4. A pawn shop ticket for a valuable item—if you can gather enough money to redeem it.\r\n5. The hard-to-sell heirloom that someone really wants back.\r\n6. Loaded dice or marked cards. They grant advantage on gambling checks when used, but can be discovered when carefully examined by someone with the appropriate tool proficiency (dice or cards).\r\n7. An invitation to an annual high-stakes game to which you can't even afford the ante.\r\n8. A two-faced coin.\r\n9. A torn half of a card—a long-lost relative is said to hold the other half.\r\n10. An ugly trinket that its former owner claimed had hidden magical powers.", - "type": "connection_and_memento", - "parent": "a5e-ag_gambler" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 330, - "fields": { - "name": "Adventures And Advancement", - "desc": "Once you've had more than your fair share of lucky throws, you attract the attention of richer opponents. You add +1 to all your lucky throws. Additionally, you and your friends may be invited to exclusive games with more at stake than money.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_gambler" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 331, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Dexterity and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_marauder" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 332, - "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either Intimidation or Stealth.", - "type": "skill_proficiency", - "parent": "a5e-ag_marauder" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 333, - "fields": { - "name": "Equipment", - "desc": "Traveler's clothes, signal whistle, tent (one person).", - "type": "equipment", - "parent": "a5e-ag_marauder" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 334, - "fields": { - "name": "Secret Ways", - "desc": "When you navigate while traveling, pursuers have disadvantage on checks made to track your group. Additionally, you can travel stealthily at a normal pace.", - "type": "feature", - "parent": "a5e-ag_marauder" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 335, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Marauder Connections\r\n1. Your nemesis: a naval captain or captain of the guard who thwarted you on several occasions.\r\n2. Your mentor: a charismatic pirate captain.\r\n3. The stylish highway robber who taught you the trade.\r\n4. The local noble who pursues you obsessively.\r\n5. The three outlaws who hold the other three pieces of your treasure map.\r\n6. The marauder chief who betrayed you and the rest of the gang in exchange for freedom.\r\n7. The child you became an outlaw to protect.\r\n8. The cleric who converted you to a life of law and faith.\r\n9. The scholarly old bandit whose inventions gave you an edge against the pursuing authorities.\r\n10. Your best friend—who is serving a life sentence for your shared crime.\r\n\r\n### Marauder Mementos\r\n1. The eerie mask by which your victims know you.\r\n2. The one item that you wish you hadn't stolen.\r\n3. A signet ring marking you as heir to a seized estate.\r\n4. A locket containing a picture of the one who betrayed you.\r\n5. A broken compass.\r\n6. A love token from the young heir to a fortune.\r\n7. Half of a torn officer's insignia.\r\n8. The hunter's horn which members of your band use to call allies.\r\n9. A wanted poster bearing your face.\r\n10. Your unfinished thesis from your previous life as an honest scholar.", - "type": "connection_and_memento", - "parent": "a5e-ag_marauder" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 336, - "fields": { - "name": "Adventures And Advancement", - "desc": "Allies and informants occasionally give you tips about the whereabouts of poorly-guarded loot. After a few such scores, you may gain the free service of up to 8", - "type": "adventures_and_advancement", - "parent": "a5e-ag_marauder" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 337, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Wisdom and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_hermit" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 338, - "fields": { - "name": "Skill Proficiencies", - "desc": "Religion, and either Medicine or Survival.", - "type": "skill_proficiency", - "parent": "a5e-ag_hermit" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 339, - "fields": { - "name": "Equipment", - "desc": "Healer's satchel, herbalism kit, common clothes, 7 days rations, and a prayer book, prayer wheel, or prayer beads.", - "type": "equipment", - "parent": "a5e-ag_hermit" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 340, - "fields": { - "name": "Inner Voice", - "desc": "You occasionally hear a voice—perhaps your conscience, perhaps a higher power—which you have come to trust. It told you to go into seclusion, and then it advised you when to rejoin the world. You think it is leading you to your destiny (consult with your Narrator about this feature.)", - "type": "feature", - "parent": "a5e-ag_hermit" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 342, - "fields": { - "name": "Adventures And Advancement", - "desc": "Your inner voice may occasionally prompt you to accept certain adventure opportunities or to avoid certain actions. You are free to obey or disobey this voice. Eventually however it may lead you to a special revelation, adventure, or treasure.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_hermit" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 343, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Constitution and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_sailor" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 344, - "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, and either Acrobatics or Perception.", - "type": "skill_proficiency", - "parent": "a5e-ag_sailor" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 345, - "fields": { - "name": "Equipment", - "desc": "Common clothes, navigator's tools, 50 feet of rope.", - "type": "equipment", - "parent": "a5e-ag_sailor" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 346, - "fields": { - "name": "Sea Salt", - "desc": "Your nautical jargon and rolling gait mark you unmistakably as a mariner. You can easily enter into shop talk with any sailors that are not hostile to you, learning nautical gossip and ships' comings and goings. You also recognize most large ships by sight and by name, and can make a History orCulturecheck to recall their most recent captain and allegiance.", - "type": "feature", - "parent": "a5e-ag_sailor" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 347, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle's tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it.\r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction's signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol.\r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle’s tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it. \r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction’s signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol. \r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.", - "type": "connection_and_memento", - "parent": "a5e-ag_sailor" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 348, - "fields": { - "name": "Adventures And Advancement", - "desc": "You and your companions will be able to take passage for free on nearly any commercial ship in exchange for occasional ship duties when all hands are called. In addition, after you have a few naval exploits under your belt your fame makes sailors eager to sail under you. You can hire a ship's crew at half the usual price.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_sailor" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 349, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Wisdom and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_exile" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 350, - "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either History or Performance.", - "type": "skill_proficiency", - "parent": "a5e-ag_exile" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 351, - "fields": { - "name": "Equipment", - "desc": "Traveler's clothes, 10 days rations.", - "type": "equipment", - "parent": "a5e-ag_exile" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 352, - "fields": { - "name": "Fellow Traveler", - "desc": "You gain an expertise die on Persuasion checks against others who are away from their land of birth.", - "type": "feature", - "parent": "a5e-ag_exile" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 353, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Exile Connections\r\n1. The companions who shared your exile.\r\n2. The kindly local who taught you Common.\r\n3. The shopkeeper or innkeeper who took you in and gave you work.\r\n4. The hunters from your native land who pursue you.\r\n5. The distant ruler who banished you until you redeem yourself.\r\n6. The community of fellow exiles who have banded together in a city neighborhood.\r\n7. The acting or carnival troupe which took you in.\r\n8. The suspicious authorities who were convinced you were a spy.\r\n9. Your first friend after your exile: a grizzled adventurer who traveled with you.\r\n10. A well-connected and unscrupulous celebrity who hails from your homeland.\r\n\r\n### Exile Mementos\r\n\r\n1. A musical instrument which was common in your homeland.\r\n2. A memorized collection of poems or sagas.\r\n3. A locket containing a picture of your betrothed from whom you are separated.\r\n4. Trade, state, or culinary secrets from your native land.\r\n5. A piece of jewelry given to you by someone you will never see again.\r\n6. An inaccurate, ancient map of the land you now live in.\r\n7. Your incomplete travel journals.\r\n8. A letter from a relative directing you to someone who might be able to help you.\r\n9. A precious cultural artifact you must protect.\r\n10. An arrow meant for the heart of your betrayer.", - "type": "connection_and_memento", - "parent": "a5e-ag_exile" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 354, - "fields": { - "name": "Adventures And Advancement", - "desc": "You may occasionally meet others from your native land. Some may be friends, and some dire enemies; few will be indifferent to you. After a few such encounters, you may become the leader of a faction of exiles. Your followers include up to three NPCs of Challenge Rating ½ or less, such as scouts.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_exile" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 358, - "fields": { - "name": "Guttersnipe", - "desc": "When you're in a town or city, you can provide a poor lifestyle for yourself and your companions. Also, you know how to get anywhere in town without being spotted by gangs, gossips, or guard patrols.", - "type": "feature", - "parent": "a5e-ag_urchin" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 361, - "fields": { - "name": "Connection and Memento", - "desc": "### Urchin Connections\r\n\r\n1. The disreputable thief who taught you thieving skills.\r\n2. The saintly orphanage matron who’s so proud of how you’ve grown.\r\n3. The miserly and cruel orphanage administrator who rounds up urchins and runaways.\r\n4. The drunken thief who shared with you what little they could steal. \r\n5. The fellow urchin who has some power to make “bad stuff” happen to their enemies.\r\n6. The thieves’ guild contact who will pay well for small folk to wriggle through a window or chimney to unlock a front door.\r\n7. The philanthropist (or charlatan?) who took you in, dressed you properly, and tried to teach you upper-class manners.\r\n8. The spymaster or detective who sent you on investigation missions.\r\n9. The noble whose horse trampled you or a friend.\r\n10. The rich family you ran away from.\r\n\r\n### Urchin Mementos\r\n\r\n1. A locket containing pictures of your parents.\r\n2. A set of (stolen?) fine clothes.\r\n3. A small trained animal, such as a mouse, parrot, or monkey.\r\n4. A map of the sewers.\r\n5. The key or signet ring that was around your neck when you were discovered as a foundling.\r\n6. A battered one-eyed doll.\r\n7. A portfolio of papers given to you by a fleeing, wounded courier.\r\n8. A gold tooth (not yours, and not in your mouth).\r\n9. The flowers or trinkets that you sell.\r\n10. A dangerous secret overheard while at play.", - "type": "connection_and_memento", - "parent": "a5e-ag_urchin" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 362, - "fields": { - "name": "Tool Proficiencies", - "desc": "One vehicle.", - "type": "tool_proficiency", - "parent": "a5e-ag_trader" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 363, - "fields": { - "name": "Tool Proficiencies", - "desc": "Disguise kit, thieves’ tools.", - "type": "tool_proficiency", - "parent": "a5e-ag_urchin" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 364, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Strength and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_soldier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 365, - "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, and either Animal Handling or Intimidation.", - "type": "skill_proficiency", - "parent": "a5e-ag_soldier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 366, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of gaming set.", - "type": "tool_proficiency", - "parent": "a5e-ag_soldier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 367, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "a5e-ag_soldier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 368, - "fields": { - "name": "Suggested Equipment", - "desc": "Uniform, common clothes, 7 days rations.", - "type": "equipment", - "parent": "a5e-ag_soldier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 369, - "fields": { - "name": "Military Bearing", - "desc": "Soldiers recognize their own. Off duty soldiers are usually willing to trade tales and gossip with you. On duty soldiers, while not obeying your orders, are likely to answer your questions and treat you respectfully on the off chance that you’re an unfamiliar officer who can get them in trouble.", - "type": "feature", - "parent": "a5e-ag_soldier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 370, - "fields": { - "name": "Adventures and Advancement", - "desc": "You will occasionally run into old comrades, some of whom may need favors. If you perform a few celebrated martial deeds your old military outfit (or a new one) is likely to offer you an officer’s rank. You gain the free service of up to 8 guards. Your new commanders will occasionally give you objectives: you will be expected to act independently in order to achieve these objectives.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_soldier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 371, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Soldier Connections\r\n1. Your old commanding officer who still wants you to rejoin.\r\n2. The commander who callously sent your unit into a slaughter.\r\n3. Your shady war buddy who can get their hands on anything with no questions asked.\r\n4. Your best friend who went missing on the battlefield. \r\n5. The comrade who saved your life at the risk of their own.\r\n6. The ghost who haunts you. \r\n7. The superior officer you punched (for abusing civilians? For insulting your honor? For preventing you from looting?)\r\n8. The scary experimental war construct you accompanied on a dangerous mission.\r\n9. The golden-armored knight with ridiculously good teeth who was always giving inspiring speeches.\r\n10. The enemy officer who captured you.\r\n\r\n### Soldier Mementos\r\n1. A broken horn, tooth, or other trophy salvaged from a monster’s corpse.\r\n2. A trophy won in a battle (a tattered banner, a ceremonial sword, or similar).\r\n3. A gaming set.\r\n4. A letter from your sweetheart.\r\n5. An old wound that twinges in bad weather.\r\n6. A letter you’re supposed to deliver to a dead comrade’s family.\r\n7. A horrifying memory you can’t escape.\r\n8. A horned or plumed helmet.\r\n9. The sword you broke over your knee rather than fight for those bastards another day.\r\n10. A medal for valor.", - "type": "connection_and_memento", - "parent": "a5e-ag_soldier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 372, - "fields": { - "name": "Tool Proficiencies", - "desc": "Navigator’s tools, water vehicles.", - "type": "tool_proficiency", - "parent": "a5e-ag_sailor" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 373, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Strength and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_noble" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 374, - "fields": { - "name": "Skill Proficiencies", - "desc": "Culture, History, and either Animal Handling or Persuasion.", - "type": "skill_proficiency", - "parent": "a5e-ag_noble" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 375, - "fields": { - "name": "Tool Proficiencies", - "desc": "One gaming set.", - "type": "tool_proficiency", - "parent": "a5e-ag_noble" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 376, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "a5e-ag_noble" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 377, - "fields": { - "name": "Equipment", - "desc": "Fine clothes, signet ring, writ detailing your family tree.", - "type": "equipment", - "parent": "a5e-ag_noble" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 378, - "fields": { - "name": "High Society", - "desc": "You know of—or personally know—most of the noble families for hundreds of miles. In most settled areas you (and possibly your companions, if well-behaved) can find a noble host who will feed you, shelter you, and offer you a rich lifestyle.", - "type": "feature", - "parent": "a5e-ag_noble" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 379, - "fields": { - "name": "Adventures and Advancement", - "desc": "Your family may ask you for one or two little favors: convince this relative to marry a family-approved spouse, slay that family foe in a duel, serve under a liege lord in a battle. If you advance your family’s fortunes, you may earn a knighthood along with the free service of a retinue of servants and up to 8 **guards**.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_noble" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 380, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Noble Connections\r\n1. Your perfect elder sibling to whom you never seem to measure up.\r\n2. The treacherous noble who slaughtered or scattered your family and is now living in your ancestral home.\r\n3. Your family servant, a retired adventurer who taught you more about battle than any fancy dueling master.\r\n4. The foppish friend you carouse with.\r\n5. The common-born sweetheart that your family forbid you from seeing again.\r\n6. The fugitive head of your family whose rebellion caused your family’s lands to be seized and titles to be redistributed.\r\n7. Your foe, the heir of a rival house, with whom you have dueled twice.\r\n8. The crime boss to whom your family is in massive debt.\r\n9. The scion of an allied family to whom you were betrothed from birth.\r\n10. The eccentric knight for whom you trained as a squire or page.\r\n\r\n### Noble Mementos\r\n1. A shield or tabard bearing your coat of arms.\r\n2. A keepsake or love letter from a high-born sweetheart.\r\n3. An heirloom weapon—though it’s not magical, it has a name and was used for mighty deeds.\r\n4. A letter of recommendation to a royal court.\r\n5. Perfumed handkerchiefs suitable for blocking the smell of commoners.\r\n6. An extremely fashionable and excessively large hat.\r\n7. A visible scar earned in battle or in a duel.\r\n8. A set of common clothes and a secret commoner identity.\r\n9. IOUs of dubious value that were earned in games of chance against other nobles.\r\n10. A letter from a friend begging for help.", - "type": "connection_and_memento", - "parent": "a5e-ag_noble" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 381, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of artisan’s tools or vehicle.", - "type": "tool_proficiency", - "parent": "a5e-ag_marauder" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 382, - "fields": { - "name": "Tool Proficiencies", - "desc": "Herbalism kit.", - "type": "tool_proficiency", - "parent": "a5e-ag_hermit" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 383, - "fields": { - "name": "Tool Proficiencies", - "desc": "Either one type of artisan’s tools, musical instrument, or vehicle.", - "type": "tool_proficiency", - "parent": "a5e-ag_guildmember" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 384, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Strength and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_guard" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 385, - "fields": { - "name": "Skill Proficiencies", - "desc": "Intimidation, and either Athletics or Investigation.", - "type": "skill_proficiency", - "parent": "a5e-ag_guard" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 386, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "a5e-ag_guard" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 387, - "fields": { - "name": "Equipment", - "desc": "Common clothes, halberd, uniform.", - "type": "equipment", - "parent": "a5e-ag_guard" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 388, - "fields": { - "name": "Natural Authority", - "desc": "Commoners and civilians sometimes assume you are part of a local constabulary force and defer to you.", - "type": "feature", - "parent": "a5e-ag_guard" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 389, - "fields": { - "name": "Adventures and Advancement", - "desc": "When you visit the city or countryside you once patrolled you’re sure to get embroiled in the same politics that drove you out. Should you stick around righting wrongs, you might accidentally find yourself in a position of responsibility.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_guard" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 390, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guard Connections\r\n1. The corrupt guard captain who framed you.\r\n2. The by-the-book guard captain who found you in violation of a regulation.\r\n3. The mighty guard captain who taught you all you know. \r\n4. The informant who tipped you off about criminal activity.\r\n5. The noble or merchant you protected.\r\n6. The comrade or superior officer you admired.\r\n7. The villain who kidnapped the person you were charged to protect.\r\n8. Your betrayer, the one person you didn’t think to mistrust.\r\n9. The noble or merchant who had everyone in their pocket.\r\n10. The diviner wizard who could usually provide you with the missing piece of a puzzle.\r\n\r\n### Guard Mementos\r\n1. Your badge of office, a symbol of an ideal few could live up to.\r\n2. Your badge of office, a symbol of a corrupt system you could no longer stomach.\r\n3. The arrow-damaged prayer book or playing card deck that saved your life.\r\n4. The whiskey flask that stood you in good stead on many cold patrols. \r\n5. Notes about a series of disappearances you would have liked to put a stop to. \r\n6. A broken sword, torn insignia, or other symbol of your disgrace and banishment.\r\n7. A tattoo or insignia marking you as part of an organization of which you are the last member.\r\n8. The fellow guard’s last words which you will never forget. \r\n9. A letter you were asked to deliver. \r\n10. A bloodstained duty roster.", - "type": "connection_and_memento", - "parent": "a5e-ag_guard" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 391, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of artisan’s tools, one vehicle.", - "type": "tool_proficiency", - "parent": "a5e-ag_folk-hero" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 392, - "fields": { - "name": "Tool Proficiencies", - "desc": "Land vehicles.", - "type": "tool_proficiency", - "parent": "a5e-ag_farmer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 393, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Intelligence and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_cultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 394, - "fields": { - "name": "Skill Proficiencies", - "desc": "Religion, and either Arcana or Deception.", - "type": "skill_proficiency", - "parent": "a5e-ag_cultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 395, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "a5e-ag_cultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 396, - "fields": { - "name": "Equipment", - "desc": "Holy symbol (amulet or reliquary), common clothes, robes, 5 torches.", - "type": "equipment", - "parent": "a5e-ag_cultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 397, - "fields": { - "name": "Forbidden Lore", - "desc": "When you fail an Arcana or Religion check, you know what being or book holds the knowledge you seek finding the book or paying the being’s price is another matter.", - "type": "feature", - "parent": "a5e-ag_cultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 398, - "fields": { - "name": "Adventures and Advancement", - "desc": "Members of your former order may be hunting you for reenlistment, punishment, or both.\r\nAdditionally, your cult still seeks to open a portal, effect an apotheosis, or otherwise cause catastrophe. Eventually you may have to face the leader of your cult and perhaps even the being you once worshiped.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_cultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 399, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cultist Connections\r\n1. The cult leader whom you left for dead.\r\n2. The cleric or herald who showed you the error of your ways.\r\n3. The voice which still speaks to you in dreams.\r\n4. The charismatic cultist whose honeyed words and promises first tempted you.\r\n5. The friend or loved one still in the cult.\r\n6. Your former best friend who now hunts you for your desertion of the cult.\r\n7. The relentless inquisitor who hunts you for your past heresy.\r\n8. The demon which you and your compatriots accidentally unleashed.\r\n9. The self-proclaimed deity who barely escaped from their angry disciples after their magic tricks and fakeries were revealed.\r\n10. The masked cult leader whose identity you never learned, but whose cruel voice you would recognize anywhere.\r\n\r\n### Cultist Mementos\r\n1. The sinister tattoo which occasionally speaks to you.\r\n2. The cursed holy symbol which appears in your possession each morning no matter how you try to rid yourself of it.\r\n3. The scar on your palm which aches with pain when you disobey the will of your former master.\r\n4. The curved dagger that carries a secret enchantment able only to destroy the being you once worshiped.\r\n5. The amulet which is said to grant command of a powerful construct. \r\n6. A forbidden tome which your cult would kill to retrieve. \r\n7. An incriminating letter to your cult leader from their master (a noted noble or politician).\r\n8. A compass which points to some distant location or object.\r\n9. A talisman which is said to open a gateway to the realm of a forgotten god.\r\n10. The birthmark which distinguishes you as the chosen vessel of a reborn god.", - "type": "connection_and_memento", - "parent": "a5e-ag_cultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 400, - "fields": { - "name": "Tool Proficiencies", - "desc": "Gaming set, thieves' tools.", - "type": "tool_proficiency", - "parent": "a5e-ag_criminal" - } - } -] \ No newline at end of file +{ + "model": "api_v2.backgroundbenefit", + "pk": 24, + "fields": { + "name": "Skill Proficiencies", + "desc": "Religion, and either Insight or Persuasion.", + "type": "skill_proficiency", + "parent": "a5e-ag_acolyte" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 25, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_acolyte" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 26, + "fields": { + "name": "Equipment", + "desc": "Holy symbol (amulet or reliquary), common clothes, robe, and a prayer book, prayer wheel, or prayer beads.", + "type": "equipment", + "parent": "a5e-ag_acolyte" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 27, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Wisdom and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_acolyte" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 28, + "fields": { + "name": "Adventures and Advancement", + "desc": "In small settlements without other resources, your authority may extend to such matters as settling disputes and punishing criminals. You might also be expected to deal with local outbreaks of supernatural dangers such as fiendish possessions, cults, and the unquiet dead. \r\nIf you solve several problems brought to you by members of your faith, you may be promoted (or reinstated) within the hierarchy of your order. You gain the free service of up to 4 acolytes, and direct access to your order’s leaders.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_acolyte" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 29, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Acolyte Connections\r\n\r\n1. A beloved high priest or priestess awaiting your return to the temple once you resolve your crisis of faith.\r\n2. A former priest—exposed by you as a heretic—who swore revenge before fleeing.\r\n3. The wandering herald who rescued you as an orphan and sponsored your entry into your temple.\r\n4. The inquisitor who rooted out your heresy (or framed you) and had you banished from your temple.\r\n5. The fugitive charlatan or cult leader whom you once revered as a holy person.\r\n6. Your scandalous friend, a fellow acolyte who fled the temple in search of worldly pleasures.\r\n7. The high priest who discredited your temple and punished the others of your order.\r\n8. The wandering adventurer whose tales of glory enticed you from your temple.\r\n9. The leader of your order, a former adventurer who sends you on quests to battle your god’s enemies.\r\n10. The former leader of your order who inexplicably retired to a life of isolation and penance.\r\n\r\n### Acolyte Memento\r\n\r\n1. The timeworn holy symbol bequeathed to you by your beloved mentor on their deathbed.\r\n2. A precious holy relic secretly passed on to you in a moment of great danger.\r\n3. A prayer book which contains strange and sinister deviations from the accepted liturgy.\r\n4. A half-complete book of prophecies which seems to hint at danger for your faith—if only the other half could be found!\r\n5. A gift from a mentor: a book of complex theology which you don’t yet understand.\r\n6. Your only possession when you entered the temple as a child: a signet ring bearing a coat of arms.\r\n7. A strange candle which never burns down.\r\n8. The true name of a devil that you glimpsed while tidying up papers for a sinister visitor.\r\n9. A weapon (which seems to exhibit no magical properties) given to you with great solemnity by your mentor.\r\n10. A much-thumbed and heavily underlined prayer book given to you by the fellow acolyte you admire most.", + "type": "connection_and_memento", + "parent": "a5e-ag_acolyte" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 43, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of artisan’s tools or smith’s tools.", + "type": "tool_proficiency", + "parent": "a5e-ag_artisan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 47, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### **Artisan Connections**\r\n\r\n1. The cruel master who worked you nearly to death and now does the same to other apprentices.\r\n2. The kind master who taught you the trade.\r\n3. The powerful figure who refused to pay for your finest work.\r\n4. The jealous rival who made a fortune after stealing your secret technique.\r\n5. The corrupt rival who framed and imprisoned your mentor.\r\n6. The bandit leader who destroyed your mentor’s shop and livelihood.\r\n7. The crime boss who bankrupted your mentor.\r\n8. The shady alchemist who always needs dangerous ingredients to advance the state of your art.\r\n9. Your apprentice who went missing.\r\n10. The patron who supports your work.\r\n\r\n### **Artisan Mementos**\r\n\r\n1. *Jeweler:* A 10,000 gold commission for a ruby ring (now all you need is a ruby worth 5,000 gold).\r\n2. *Smith:* Your blacksmith's hammer (treat as a light hammer).\r\n3. *Cook:* A well-seasoned skillet (treat as a mace).\r\n4. *Alchemist:* A formula with exotic ingredients that will produce...something.\r\n5. *Leatherworker:* An exotic monster hide which could be turned into striking-looking leather armor.\r\n6. *Mason:* Your trusty sledgehammer (treat as a warhammer).\r\n7. *Potter:* Your secret technique for vivid colors which is sure to disrupt Big Pottery.\r\n8. *Weaver:* A set of fine clothes (your own work).\r\n9. *Woodcarver:* A longbow, shortbow, or crossbow (your own work).\r\n10. *Calligrapher:* Strange notes you copied from a rambling manifesto. Do they mean something?", + "type": "connection_and_memento", + "parent": "a5e-ag_artisan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 48, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Charisma and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_charlatan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 49, + "fields": { + "name": "Skill Proficiencies", + "desc": "Deception, and either Culture, Insight, or Sleight of Hand.", + "type": "skill_proficiency", + "parent": "a5e-ag_charlatan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 50, + "fields": { + "name": "Tool Proficiencies", + "desc": "Disguise kit, forgery kit.", + "type": "tool_proficiency", + "parent": "a5e-ag_charlatan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 51, + "fields": { + "name": "Suggested Equipment", + "desc": "Common clothes, disguise kit, forgery kit.", + "type": "equipment", + "parent": "a5e-ag_charlatan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 52, + "fields": { + "name": "Many Identities", + "desc": "You have a bundle of forged papers of all kinds—property deeds, identification papers, love letters, arrest warrants, and letters of recommendation—all requiring only a few signatures and flourishes to meet the current need. When you encounter a new document or letter, you can add a forged and modified copy to your bundle. If your bundle is lost, you can recreate it with a forgery kit and a day’s work.", + "type": "feature", + "parent": "a5e-ag_charlatan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 53, + "fields": { + "name": "Adventures and Advancement", + "desc": "If you pull off a long-standing impersonation or false identity with exceptional success, you may eventually legally become that person. If you’re impersonating a real person, they might be considered the impostor. You gain any property and servants associated with your identity.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_charlatan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 54, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Charlatan Connections\r\n\r\n1. A relentless pursuer: an inspector who you once made a fool of.\r\n2. A relentless pursuer: a mark you once cheated.\r\n3. A relentless pursuer: a former partner just out of jail who blames you for everything.\r\n4. A former partner now gone straight who couldn’t possibly be coaxed out of retirement.\r\n5. A respected priest or tavernkeeper who tips you off about rich potential marks.\r\n6. The elusive former partner who ratted you out and sent you to jail.\r\n7. A famous noble or politician who through sheer luck happens to bear a striking resemblance to you.\r\n8. The crook who taught you everything and just can’t stay out of trouble.\r\n9. A gullible noble who knows you by one of your former aliases, and who always seems to pop up at inconvenient times.\r\n10. A prominent noble who knows you only under your assumed name and who trusts you as their spiritual advisor, tutor, long-lost relative, or the like.\r\n\r\n### Charlatan Mementos\r\n\r\n1. A die that always comes up 6.\r\n2. A dozen brightly-colored “potions”.\r\n3. A magical staff that emits a harmless shower of sparks when vigorously thumped.\r\n4. A set of fine clothes suitable for nobility.\r\n5. A genuine document allowing its holder one free release from prison for a non-capital crime.\r\n6. A genuine deed to a valuable property that is, unfortunately, quite haunted.\r\n7. An ornate harlequin mask.\r\n8. Counterfeit gold coins or costume jewelry apparently worth 100 gold (DC 15 Investigation check to notice they’re fake).\r\n9. A sword that appears more magical than it really is (its blade is enchanted with continual flame and it is a mundane weapon).\r\n10. A nonmagical crystal ball.", + "type": "connection_and_memento", + "parent": "a5e-ag_charlatan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 187, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Charisma and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_trader" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 188, + "fields": { + "name": "Skill Proficiencies", + "desc": "Persuasion, and either Culture, Deception, or Insight.", + "type": "skill_proficiency", + "parent": "a5e-ag_trader" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 189, + "fields": { + "name": "Equipment", + "desc": "Traveler's clothes, abacus, merchant's scale.", + "type": "equipment", + "parent": "a5e-ag_trader" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 191, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Trader Connections\r\n1. The parent or relative who wants you to carry on the family business.\r\n2. The sibling who inherited the other half of the family business.\r\n3. The trading company to which you are indentured until you pay off a debt.\r\n4. The powerful merchant who will never forgive the business coup you pulled off.\r\n5. The noble whose horse trampled your poor family’s vegetable stall, injuring or killing a relative you\r\ndearly loved.\r\n6. The parent or elder sibling who squandered your family fortune.\r\n7. The business partner who cheated you.\r\n8. The customs agent who has sworn to catch you red-handed with illicit goods.\r\n9. The crime boss to whom you wouldn’t pay protection money.\r\n10. The smuggler who will pay well for certain commodities.\r\n\r\n### Trader Mementos\r\n1. The first gold piece you earned.\r\n2. Thousands of shares in a failed venture.\r\n3. A letter of introduction to a rich merchant in a distant city.\r\n4. A sample of an improved version of a common tool.\r\n5. Scars from a wound sustained when you tried to collect a debt from a vicious noble.\r\n6. A love letter from the heir of a rival trading family.\r\n7. A signet ring bearing your family crest, which is famous in the mercantile world.\r\n8. A contract binding you to a particular trading company for the next few years.\r\n9. A letter from a friend imploring you to invest in an opportunity that can't miss.\r\n10. A trusted family member's travel journals that mix useful geographical knowledge with tall tales.", + "type": "connection_and_memento", + "parent": "a5e-ag_trader" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 192, + "fields": { + "name": "Adventures And Advancement", + "desc": "Because of your commercial contacts you may be offered money to lead or escort trade caravans. You'll receive a fee from each trader that reaches their destination safely.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_trader" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 245, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Hermit Connections\r\n1. The high priest who banished you to the wilderness until you repent your heresy.\r\n2. The inquisitor who hunts you even through the most solitary wildlands.\r\n3. The supernatural patron whose temptations and gifts you seek to reject.\r\n4. The inner voice you only hear in solitude.\r\n5. The mentor who trained you in silent contemplation—until they mysteriously turned their back on their own teachings.\r\n6. The villain who destroyed the shreds of your original, worldly life. \r\n7. The noble relatives who seek to return you to the life you rejected.\r\n8. The religious superior whose blasphemies scandalized you into fleeing your religious order.\r\n9. The angel who delivered you a prophecy.\r\n10. The mysterious person you glimpsed several times from a distance—unless it was a hallucination.\r\n\r\n### Hermit Mementos\r\n1. The (possibly unhinged) manifesto, encyclopedia, or theoretical work that you spent so much time on.\r\n2. The faded set of fine clothes you preserved for so many years.\r\n3. The signet ring bearing the family crest that you were ashamed of for so long.\r\n4. The book of forbidden secrets that led you to your isolated refuge.\r\n5. The beetle, mouse, or other small creature which was your only companion for so long.\r\n6. The seemingly nonmagical item that your inner voice says is important.\r\n7. The magic-defying clay tablets you spent years translating.\r\n8. The holy relic you were duty bound to protect.\r\n9. The meteor metal you found in a crater the day you first heard your inner voice.\r\n10. Your ridiculous-looking sun hat.", + "type": "connection_and_memento", + "parent": "a5e-ag_hermit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 259, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Dexterity and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_urchin" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 260, + "fields": { + "name": "Skill Proficiencies", + "desc": "Sleight of Hand, and either Deception or Stealth.", + "type": "skill_proficiency", + "parent": "a5e-ag_urchin" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 261, + "fields": { + "name": "Equipment", + "desc": "Common clothes, disguise kit.", + "type": "equipment", + "parent": "a5e-ag_urchin" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 264, + "fields": { + "name": "Adventures And Advancement", + "desc": "Street kids are among a settlement's most vulnerable people, especially in cities with lycanthropes, vampires, and other supernatural threats. After you help out a few urchins in trouble, word gets out and you'll be able to consult the street network to gather information. If you roll lower than a 15 on an Investigation check to gather information in a city or town, your roll is treated as a 15.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_urchin" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 265, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Dexterity and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_criminal" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 266, + "fields": { + "name": "Skill Proficiencies", + "desc": "Stealth, and either Deception or Intimidation.", + "type": "skill_proficiency", + "parent": "a5e-ag_criminal" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 267, + "fields": { + "name": "Equipment", + "desc": "Common clothes, dark cloak, thieves' tools.", + "type": "equipment", + "parent": "a5e-ag_criminal" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 268, + "fields": { + "name": "Thieves' Cant", + "desc": "You know thieves' cant: a set of slang, hand signals, and code terms used by professional criminals. A creature that knows thieves' cant can hide a short message within a seemingly innocent statement. A listener who knows thieves' cant understands the message.", + "type": "feature", + "parent": "a5e-ag_criminal" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 269, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Criminal Connections\r\n\r\n1. The master criminal who inducted you into your first gang.\r\n2. The cleric or herald who convinced you to use your skills for good (and who may be legally responsible for your continued good behavior).\r\n3. Your sibling or other relative—who also happens to be a representative of the law.\r\n4. The gang of rascals and pickpockets who once called you their leader.\r\n5. The bounty hunter who has sworn to bring you to justice.\r\n6. Your former partner who made off with all the loot after a big score.\r\n7. The masked courier who occasionally gives you jobs.\r\n8. The crime boss to whom you have sworn loyalty (or to whom you owe an enormous debt).\r\n9. The master thief who once stole something precious from you. \r\n10. The corrupt noble who ruined your once-wealthy family.\r\n\r\n### Criminal Mementos\r\n\r\n1. A golden key to which you haven't discovered the lock.\r\n2. A brand that was burned into your shoulder as punishment for a crime.\r\n3. A scar for which you have sworn revenge.\r\n4. The distinctive mask that gives you your nickname (for instance, the Black Mask or the Red Fox).\r\n5. A gold coin which reappears in your possession a week after you've gotten rid of it.\r\n6. The stolen symbol of a sinister organization; not even your fence will take it off your hands.\r\n7. Documents that incriminate a dangerous noble or politician.\r\n8. The floor plan of a palace.\r\n9. The calling cards you leave after (or before) you strike.\r\n10. A manuscript written by your mentor: *Secret Exits of the World's Most Secure Prisons*.", + "type": "connection_and_memento", + "parent": "a5e-ag_criminal" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 270, + "fields": { + "name": "Adventures And Advancement", + "desc": "If you pull off several successful jobs or heists, you may be promoted (or reinstated) as a leader in your gang. You may gain the free service of up to 8 **bandits** at any time.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_criminal" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 271, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Wisdom and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_farmer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 272, + "fields": { + "name": "Skill Proficiencies", + "desc": "Nature, and either Animal Handling or Survival.", + "type": "skill_proficiency", + "parent": "a5e-ag_farmer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 273, + "fields": { + "name": "Equipment", + "desc": "Common clothes, shovel, mule with saddlebags, 5 Supply (rations).", + "type": "equipment", + "parent": "a5e-ag_farmer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 274, + "fields": { + "name": "Bit and Bridle", + "desc": "You know how to stow and transport food. You and one animal under your care can each carry additional Supply equal to your proficiency bonus.", + "type": "feature", + "parent": "a5e-ag_farmer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 275, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Farmer Connections\r\n\r\n1. The landowner who foreclosed on your family land.\r\n2. The thugs who burned your village.\r\n3. The parents who wait for your return.\r\n4. The strange witch to whom your family owes a debt.\r\n5. The retired adventurer who trained you.\r\n6. The druid who—according to the villagers—laid a drought curse on your land.\r\n7. The village bully who threatened to kill you if you ever returned.\r\n8. The evil wizard who will stop at nothing to take your family heirloom.\r\n9. Your elder sibling who left searching for adventure before you did.\r\n10. The dragon whose foul reek has spoiled your countryside.\r\n\r\n### Farmer Mementos\r\n\r\n1. A strange item you dug up in a field: a key, a lump of unmeltable metal, a glass dagger.\r\n2. The bag of beans your mother warned you not to plant.\r\n3. The shovel, pickaxe, pitchfork, or other tool you used for labor. For you it's a one-handed simple melee weapon that deals 1d6 piercing, slashing, or bludgeoning damage.\r\n4. A debt you must pay.\r\n5. A **mastiff**.\r\n6. Your trusty fishing pole.\r\n7. A corncob pipe.\r\n8. A dried flower from your family garden.\r\n9. Half of a locket given to you by a missing sweetheart.\r\n10. A family weapon said to have magic powers, though it exhibits none at the moment.", + "type": "connection_and_memento", + "parent": "a5e-ag_farmer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 276, + "fields": { + "name": "Adventures And Advancement", + "desc": "You left the farm for a reason but you still have an eye for land. If you acquire farming property, estates, or domains, you can earn twice as much as you otherwise would from their harvests, or be supported by your lands at a lifestyle one level higher than you otherwise would be.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_farmer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 277, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Constitution and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_outlander" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 278, + "fields": { + "name": "Skill Proficiencies", + "desc": "Survival, and either Athletics or Intimidation.", + "type": "skill_proficiency", + "parent": "a5e-ag_outlander" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 279, + "fields": { + "name": "Equipment", + "desc": "Traveler's clothes, waterskin, healer's kit, 7 days rations.", + "type": "equipment", + "parent": "a5e-ag_outlander" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 280, + "fields": { + "name": "Trader", + "desc": "If you're in or near the wilderness and have a trading relationship with a tribe, settlement, or other nearby group, you can maintain a moderate lifestyle for yourself and your companions by trading the products of your hunting and gathering.", + "type": "feature", + "parent": "a5e-ag_outlander" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 281, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Outlander Connections\r\n1. A tribal chief who owes a favor.\r\n2. The chief of a band of marauders who has a grudge against you.\r\n3. A hag to whom you owe a favor.\r\n4. An alchemist or wizard who frequently gives you requests for rare herbs or trophies.\r\n5. A unicorn you’ve glimpsed but never been able to approach.\r\n6. Another outlander: your former best friend who is now a bitter rival.\r\n7. A wise oracle who knows most of what happens in the wilderness and will reveal it for a price.\r\n8. A zany prospector who knows the wild lands almost as well as you.\r\n9. A circus or arena owner who will pay for live animals not yet in their menagerie.\r\n10. A highly civilized poet or painter who has paid you to guide them to wild and inspiring locales.\r\n\r\n### Outlander Mementos\r\n1. A trophy from the hunt of a mighty beast, such as an phase monster-horn helmet.\r\n2. A trophy from a battle against a fierce monster, such as a still-wriggling troll finger.\r\n3. A stone from a holy druidic shrine.\r\n4. Tools appropriate to your home terrain, such as pitons or snowshoes.\r\n5. Hand-crafted leather armor, hide armor, or clothing.\r\n6. The handaxe you made yourself.\r\n7. A gift from a dryad or faun.\r\n8. Trading goods worth 30 gold, such as furs or rare herbs.\r\n9. A tiny whistle given to you by a sprite.\r\n10. An incomplete map.", + "type": "connection_and_memento", + "parent": "a5e-ag_outlander" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 282, + "fields": { + "name": "Adventures And Advancement", + "desc": "During your travels, wilderness dwellers may come to you for help battling monsters and other dangers. If you succeed in several such adventures, you may earn the freely given aid of up to 8 **warriors**.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_outlander" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 286, + "fields": { + "name": "Supply and Demand", + "desc": "When you buy a trade good and sell it elsewhere to a community in need of that good, you gain a 10% bonus to its sale price for every 100 miles between the buy and sell location (maximum of 50%).", + "type": "feature", + "parent": "a5e-ag_trader" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 289, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Intelligence and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_artisan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 290, + "fields": { + "name": "Skill Proficiencies", + "desc": "Persuasion, and either Insight or History.", + "type": "skill_proficiency", + "parent": "a5e-ag_artisan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 291, + "fields": { + "name": "Equipment", + "desc": "One set of artisan's tools, traveler's clothes.", + "type": "equipment", + "parent": "a5e-ag_artisan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 292, + "fields": { + "name": "Trade Mark", + "desc": "When in a city or town, you have access to a fully-stocked workshop with everything you need to ply your trade. Furthermore, you can expect to earn full price when you sell items you have crafted (though there is no guarantee of a buyer).", + "type": "feature", + "parent": "a5e-ag_artisan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 294, + "fields": { + "name": "Adventures And Advancement", + "desc": "If you participate in the creation of a magic item (a “master work”), you will gain the services of up to 8 commoner apprentices with the appropriate tool proficiency.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_artisan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 295, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Charisma and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_entertainer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 296, + "fields": { + "name": "Skill Proficiencies", + "desc": "Performance, and either Acrobatics, Culture, or Persuasion.", + "type": "skill_proficiency", + "parent": "a5e-ag_entertainer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 297, + "fields": { + "name": "Equipment", + "desc": "Lute or other musical instrument, costume.", + "type": "equipment", + "parent": "a5e-ag_entertainer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 298, + "fields": { + "name": "Pay the Piper", + "desc": "In any settlement in which you haven't made yourself unpopular, your performances can earn enough money to support yourself and your companions: the bigger the settlement, the higher your standard of living, up to a moderate lifestyle in a city.", + "type": "feature", + "parent": "a5e-ag_entertainer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 299, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Entertainer Connections\r\n1. Your rival, an equally talented performer.\r\n2. The cruel ringleader of the sinister circus where you learned your trade.\r\n3. A noble who wants vengeance for the song you wrote about him.\r\n4. The actor who says that there’s always room in their troupe for you and your companions.\r\n5. The noble who owes you a favor for penning the love poems that won their spouse.\r\n6. Your former partner, a slumming noble with a good ear and bad judgment.\r\n7. The rival who became successful and famous by taking credit for your best work.\r\n8. The highly-placed courtier who is always trying to further your career.\r\n9. A jilted lover who wants revenge. \r\n10. The many tavernkeepers and tailors to whom you owe surprisingly large sums.\r\n\r\n### Entertainer Mementos\r\n\r\n1. Your unfinished masterpiece—if you can find inspiration to overcome your writer's block.\r\n2. Fine clothing suitable for a noble and some reasonably convincing costume jewelry.\r\n3. A love letter from a rich admirer.\r\n4. A broken instrument of masterwork quality—if repaired, what music you could make on it!\r\n5. A stack of slim poetry volumes you just can't sell.\r\n6. Jingling jester's motley.\r\n7. A disguise kit.\r\n8. Water-squirting wands, knotted scarves, trick handcuffs, and other tools of a bizarre new entertainment trend: a nonmagical magic show.\r\n9. A stage dagger.\r\n10. A letter of recommendation from your mentor to a noble or royal court.", + "type": "connection_and_memento", + "parent": "a5e-ag_entertainer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 300, + "fields": { + "name": "Adventures And Advancement", + "desc": "Some of your admirers will pay you to plead a cause or smear an enemy. If you succeed at several such quests, your fame will grow. You will be welcome at royal courts, which will support you at a rich lifestyle.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_entertainer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 301, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Constitution and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_guildmember" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 302, + "fields": { + "name": "Skill Proficiencies", + "desc": "Two of your choice.", + "type": "skill_proficiency", + "parent": "a5e-ag_guildmember" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 303, + "fields": { + "name": "Equipment", + "desc": "One set of artisan's tools or one instrument, traveler's clothes, guild badge.", + "type": "equipment", + "parent": "a5e-ag_guildmember" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 304, + "fields": { + "name": "Guild Business", + "desc": "While in a city or town, you can maintain a moderate lifestyle by plying your trade. Furthermore, the guild occasionally informs you of jobs that need doing. Completing such a job might require performing a downtime activity, or it might require a full adventure. The guild provides a modest reward if you're successful.", + "type": "feature", + "parent": "a5e-ag_guildmember" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 305, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guildmember Connections\r\n\r\n1. Your guild master who occasionally has secret missions for groups which can keep their mouths shut.\r\n2. Members of a rival guild who might or might not stoop to violence.\r\n3. The master who, recognizing your talent, risked all to teach you dangerous guild secrets.\r\n4. The agent of a rival guild who is trying to steal secrets.\r\n5. The jealous teacher who took credit for your work and got you expelled from the guild.\r\n6. The guild quartermaster who stocks goods of dubious legality.\r\n7. The friendly guild officer who always saves you the most interesting assignments.\r\n8. The rivals who always compete for the same guild jobs.\r\n9. The noble who owes you big.\r\n10. Your guild master’s ambitious second-in-command who is recruiting allies for a coup.\r\n\r\n### Guildmember Mementos\r\n\r\n1. *Artisans Guild:* An incomplete masterpiece which your mentor never finished.\r\n2. *Entertainers Guild:* An incomplete masterpiece which your mentor never finished.\r\n3. *Explorers Guild:* A roll of incomplete maps each with a reward for completion.\r\n4. *Laborers Guild:* A badge entitling you to a free round of drinks at most inns and taverns.\r\n5. *Adventurers Guild:* A request from a circus to obtain live exotic animals.\r\n6. *Bounty Hunters Guild:* A set of manacles and a bounty on a fugitive who has already eluded you once.\r\n7. *Mages Guild:* The name of a wizard who has created a rare version of a spell that the guild covets.\r\n8. *Monster Hunters Guild:* A bounty, with no time limit, on a monster far beyond your capability.\r\n9. *Archaeologists Guild:* A map marking the entrance of a distant dungeon.\r\n10. *Thieves Guild:* Blueprints of a bank, casino, mint, or other rich locale.", + "type": "connection_and_memento", + "parent": "a5e-ag_guildmember" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 306, + "fields": { + "name": "Adventures And Advancement", + "desc": "Once you have completed several quests or endeavors advancing guild business, you may be promoted to guild officer. You gain access to more lucrative contracts. In addition, the guild supports you at a moderate lifestyle without you having to work.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_guildmember" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 307, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Intelligence and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_sage" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 308, + "fields": { + "name": "Skill Proficiencies", + "desc": "History, and either Arcana, Culture, Engineering, or Religion.", + "type": "skill_proficiency", + "parent": "a5e-ag_sage" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 309, + "fields": { + "name": "Equipment", + "desc": "Bottle of ink, pen, 50 sheets of parchment, common clothes.", + "type": "equipment", + "parent": "a5e-ag_sage" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 310, + "fields": { + "name": "Library Privileges", + "desc": "As a fellow or friend of several universities you have visiting access to the great libraries, most of which are off-limits to the general public. With enough time spent in a library, you can uncover most of the answers you seek (any question answerable with a DC 20 Arcana, Culture, Engineering, History, Nature, or Religion check).", + "type": "feature", + "parent": "a5e-ag_sage" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 311, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sage Connections\r\n\r\n1. Your rival who always seems to be one step ahead of you in the research race.\r\n2. The college dean who banished you for conduct unbefitting a research fellow.\r\n3. A former student of yours who has become a dangerous wizard.\r\n4. The professor who took credit for your research.\r\n5. The rival sage whose cruel nickname for you has made you a laughingstock.\r\n6. The alchemist who will pay for bizarre monster trophies and other ingredients—no questions asked.\r\n7. The peer with a competing cosmological theory that causes endless friendly bickering.\r\n8. The noble who recognized your intelligence at a young age and sponsored your entrance into academia.\r\n9. A talented apprentice who ran away after mastering magical power but not the theoretical foundation to control it.\r\n10. The invading general who burned the library that was once your home.\r\n\r\n### Sage Mementos\r\n\r\n1. A letter from a colleague asking for research help.\r\n2. Your incomplete manuscript.\r\n3. An ancient scroll in a language that no magic can decipher.\r\n4. A copy of your highly unorthodox theoretical work that got you in so much trouble.\r\n5. A list of the forbidden books that may answer your equally forbidden question.\r\n6. A formula for a legendary magic item for which you have no ingredients.\r\n7. An ancient manuscript of a famous literary work believed to have been lost; only you believe that it is genuine.\r\n8. Your mentor's incomplete bestiary, encyclopedia, or other work that you vowed to complete.\r\n9. Your prize possession: a magic quill pen that takes dictation.\r\n10. The name of a book you need for your research that seems to be missing from every library you've visited.", + "type": "connection_and_memento", + "parent": "a5e-ag_sage" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 312, + "fields": { + "name": "Adventures And Advancement", + "desc": "When you visit libraries and universities you tend to be asked for help in your role as a comparatively rough-and-tumble adventurer. After fetching a few bits of esoteric knowledge and settling a few academic disputes, you may be granted access to the restricted areas of the library (which contain darker secrets and deeper mysteries, such as those answerable with a DC 25 Arcana, Culture, Engineering, History, Nature, or Religion check).", + "type": "adventures_and_advancement", + "parent": "a5e-ag_sage" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 313, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Constitution and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_folk-hero" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 314, + "fields": { + "name": "Skill Proficiencies", + "desc": "Survival, and either Animal Handling or Nature.", + "type": "skill_proficiency", + "parent": "a5e-ag_folk-hero" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 315, + "fields": { + "name": "Equipment", + "desc": "Any artisan's tools except alchemist's supplies, common clothes.", + "type": "equipment", + "parent": "a5e-ag_folk-hero" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 316, + "fields": { + "name": "Local Fame", + "desc": "Unless you conceal your identity, you're universally recognized and admired near the site of your exploits. You and your companions are treated to a moderate lifestyle in any settlement within 100 miles of your Prestige Center.", + "type": "feature", + "parent": "a5e-ag_folk-hero" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 317, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Folk Hero Connections\r\n\r\n1. The bard whose song made you legendary and who wants a sequel.\r\n2. Your friend, a traveling merchant whose caravan spreads your fame.\r\n3. A deadly enemy: the heir of the oppressive noble you killed.\r\n4. A deadly enemy: the mother of the monster you killed.\r\n5. A deadly enemy: the leader of the bandits you defeated.\r\n6. A deadly enemy: the tyrant you robbed.\r\n7. A kid who wants to follow your footsteps into danger.\r\n8. The jealous rival who wants to best your monster-slaying prowess, daring deeds, prize pie recipe, or whatever else made your famous.\r\n9. A secret admirer: the heir or heiress of the oppressive noble you defeated.\r\n10. The retired adventurer who trained you and is now in a bit of trouble.\r\n\r\n### Folk Hero Mementos\r\n\r\n1. The mask you used to conceal your identity while fighting oppression (you are only recognized as a folk hero while wearing the mask).\r\n2. A necklace bearing a horn, tooth, or claw from the monster you defeated.\r\n3. A ring given to you by the dead relative whose death you avenged.\r\n4. The weapon you wrestled from the leader of the raid on your village.\r\n5. The trophy, wrestling belt, silver pie plate, or other prize marking you as the county champion.\r\n6. The famous scar you earned in your struggle against your foe.\r\n7. The signature weapon which provides you with your nickname.\r\n8. The injury or physical difference by which your admirers and foes recognize you.\r\n9. The signal whistle or instrument which you used to summon allies and spook enemies.\r\n10. Copies of the ballads and poems written in your honor.", + "type": "connection_and_memento", + "parent": "a5e-ag_folk-hero" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 318, + "fields": { + "name": "Adventures And Advancement", + "desc": "Common folk come to you with all sorts of problems. If you fought an oppressive regime, they bring you tales of injustice. If you fought a monster, they seek you out with monster problems. If you solve many such predicaments, you become universally famous, gaining the benefits of your Local Fame feature in every settled land.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_folk-hero" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 325, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Charisma and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_gambler" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 326, + "fields": { + "name": "Skill Proficiencies", + "desc": "Deception, and either Insight or Sleight of Hand.", + "type": "skill_proficiency", + "parent": "a5e-ag_gambler" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 327, + "fields": { + "name": "Equipment", + "desc": "Fine clothes, dice set, playing card set.", + "type": "equipment", + "parent": "a5e-ag_gambler" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 328, + "fields": { + "name": "Lady Luck", + "desc": "Each week you may attempt a “lucky throw” to support yourself by gambling. Roll a d6 to determine the lifestyle you can afford with your week's winnings (1–2: poor, 3–5: moderate, 6: rich).", + "type": "feature", + "parent": "a5e-ag_gambler" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 329, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Gambler Connections\r\n1. The mentor you have now surpassed.\r\n2. The duelist who will never forgive you for fleecing them.\r\n3. The legendary gambler you aspire to beat.\r\n4. The friendly rival who always keeps you on your toes.\r\n5. The noble who publicly accused you of cheating.\r\n6. An ink-stained academic who wants you to test a risky theory about how to beat the house.\r\n7. The gang leader who would rather kill you than pay up.\r\n8. The kid who strives to emulate you. \r\n9. The cardsharp rival who cheats to win.\r\n10. The rival who won something from you that you want back.\r\n\r\n### Gambler Mementos\r\n\r\n1. Gambling debts owed you by someone who's gone missing.\r\n2. Your lucky coin that you've always won back after gambling it away.\r\n3. The deeds to a monster-infested copper mine, a castle on another plane of existence, and several other valueless properties.\r\n4. A pawn shop ticket for a valuable item—if you can gather enough money to redeem it.\r\n5. The hard-to-sell heirloom that someone really wants back.\r\n6. Loaded dice or marked cards. They grant advantage on gambling checks when used, but can be discovered when carefully examined by someone with the appropriate tool proficiency (dice or cards).\r\n7. An invitation to an annual high-stakes game to which you can't even afford the ante.\r\n8. A two-faced coin.\r\n9. A torn half of a card—a long-lost relative is said to hold the other half.\r\n10. An ugly trinket that its former owner claimed had hidden magical powers.", + "type": "connection_and_memento", + "parent": "a5e-ag_gambler" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 330, + "fields": { + "name": "Adventures And Advancement", + "desc": "Once you've had more than your fair share of lucky throws, you attract the attention of richer opponents. You add +1 to all your lucky throws. Additionally, you and your friends may be invited to exclusive games with more at stake than money.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_gambler" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 331, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Dexterity and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_marauder" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 332, + "fields": { + "name": "Skill Proficiencies", + "desc": "Survival, and either Intimidation or Stealth.", + "type": "skill_proficiency", + "parent": "a5e-ag_marauder" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 333, + "fields": { + "name": "Equipment", + "desc": "Traveler's clothes, signal whistle, tent (one person).", + "type": "equipment", + "parent": "a5e-ag_marauder" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 334, + "fields": { + "name": "Secret Ways", + "desc": "When you navigate while traveling, pursuers have disadvantage on checks made to track your group. Additionally, you can travel stealthily at a normal pace.", + "type": "feature", + "parent": "a5e-ag_marauder" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 335, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Marauder Connections\r\n1. Your nemesis: a naval captain or captain of the guard who thwarted you on several occasions.\r\n2. Your mentor: a charismatic pirate captain.\r\n3. The stylish highway robber who taught you the trade.\r\n4. The local noble who pursues you obsessively.\r\n5. The three outlaws who hold the other three pieces of your treasure map.\r\n6. The marauder chief who betrayed you and the rest of the gang in exchange for freedom.\r\n7. The child you became an outlaw to protect.\r\n8. The cleric who converted you to a life of law and faith.\r\n9. The scholarly old bandit whose inventions gave you an edge against the pursuing authorities.\r\n10. Your best friend—who is serving a life sentence for your shared crime.\r\n\r\n### Marauder Mementos\r\n1. The eerie mask by which your victims know you.\r\n2. The one item that you wish you hadn't stolen.\r\n3. A signet ring marking you as heir to a seized estate.\r\n4. A locket containing a picture of the one who betrayed you.\r\n5. A broken compass.\r\n6. A love token from the young heir to a fortune.\r\n7. Half of a torn officer's insignia.\r\n8. The hunter's horn which members of your band use to call allies.\r\n9. A wanted poster bearing your face.\r\n10. Your unfinished thesis from your previous life as an honest scholar.", + "type": "connection_and_memento", + "parent": "a5e-ag_marauder" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 336, + "fields": { + "name": "Adventures And Advancement", + "desc": "Allies and informants occasionally give you tips about the whereabouts of poorly-guarded loot. After a few such scores, you may gain the free service of up to 8", + "type": "adventures_and_advancement", + "parent": "a5e-ag_marauder" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 337, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Wisdom and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_hermit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 338, + "fields": { + "name": "Skill Proficiencies", + "desc": "Religion, and either Medicine or Survival.", + "type": "skill_proficiency", + "parent": "a5e-ag_hermit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 339, + "fields": { + "name": "Equipment", + "desc": "Healer's satchel, herbalism kit, common clothes, 7 days rations, and a prayer book, prayer wheel, or prayer beads.", + "type": "equipment", + "parent": "a5e-ag_hermit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 340, + "fields": { + "name": "Inner Voice", + "desc": "You occasionally hear a voice—perhaps your conscience, perhaps a higher power—which you have come to trust. It told you to go into seclusion, and then it advised you when to rejoin the world. You think it is leading you to your destiny (consult with your Narrator about this feature.)", + "type": "feature", + "parent": "a5e-ag_hermit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 342, + "fields": { + "name": "Adventures And Advancement", + "desc": "Your inner voice may occasionally prompt you to accept certain adventure opportunities or to avoid certain actions. You are free to obey or disobey this voice. Eventually however it may lead you to a special revelation, adventure, or treasure.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_hermit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 343, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Constitution and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_sailor" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 344, + "fields": { + "name": "Skill Proficiencies", + "desc": "Athletics, and either Acrobatics or Perception.", + "type": "skill_proficiency", + "parent": "a5e-ag_sailor" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 345, + "fields": { + "name": "Equipment", + "desc": "Common clothes, navigator's tools, 50 feet of rope.", + "type": "equipment", + "parent": "a5e-ag_sailor" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 346, + "fields": { + "name": "Sea Salt", + "desc": "Your nautical jargon and rolling gait mark you unmistakably as a mariner. You can easily enter into shop talk with any sailors that are not hostile to you, learning nautical gossip and ships' comings and goings. You also recognize most large ships by sight and by name, and can make a History orCulturecheck to recall their most recent captain and allegiance.", + "type": "feature", + "parent": "a5e-ag_sailor" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 347, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle's tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it.\r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction's signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol.\r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle’s tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it. \r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction’s signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol. \r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.", + "type": "connection_and_memento", + "parent": "a5e-ag_sailor" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 348, + "fields": { + "name": "Adventures And Advancement", + "desc": "You and your companions will be able to take passage for free on nearly any commercial ship in exchange for occasional ship duties when all hands are called. In addition, after you have a few naval exploits under your belt your fame makes sailors eager to sail under you. You can hire a ship's crew at half the usual price.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_sailor" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 349, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Wisdom and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_exile" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 350, + "fields": { + "name": "Skill Proficiencies", + "desc": "Survival, and either History or Performance.", + "type": "skill_proficiency", + "parent": "a5e-ag_exile" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 351, + "fields": { + "name": "Equipment", + "desc": "Traveler's clothes, 10 days rations.", + "type": "equipment", + "parent": "a5e-ag_exile" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 352, + "fields": { + "name": "Fellow Traveler", + "desc": "You gain an expertise die on Persuasion checks against others who are away from their land of birth.", + "type": "feature", + "parent": "a5e-ag_exile" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 353, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Exile Connections\r\n1. The companions who shared your exile.\r\n2. The kindly local who taught you Common.\r\n3. The shopkeeper or innkeeper who took you in and gave you work.\r\n4. The hunters from your native land who pursue you.\r\n5. The distant ruler who banished you until you redeem yourself.\r\n6. The community of fellow exiles who have banded together in a city neighborhood.\r\n7. The acting or carnival troupe which took you in.\r\n8. The suspicious authorities who were convinced you were a spy.\r\n9. Your first friend after your exile: a grizzled adventurer who traveled with you.\r\n10. A well-connected and unscrupulous celebrity who hails from your homeland.\r\n\r\n### Exile Mementos\r\n\r\n1. A musical instrument which was common in your homeland.\r\n2. A memorized collection of poems or sagas.\r\n3. A locket containing a picture of your betrothed from whom you are separated.\r\n4. Trade, state, or culinary secrets from your native land.\r\n5. A piece of jewelry given to you by someone you will never see again.\r\n6. An inaccurate, ancient map of the land you now live in.\r\n7. Your incomplete travel journals.\r\n8. A letter from a relative directing you to someone who might be able to help you.\r\n9. A precious cultural artifact you must protect.\r\n10. An arrow meant for the heart of your betrayer.", + "type": "connection_and_memento", + "parent": "a5e-ag_exile" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 354, + "fields": { + "name": "Adventures And Advancement", + "desc": "You may occasionally meet others from your native land. Some may be friends, and some dire enemies; few will be indifferent to you. After a few such encounters, you may become the leader of a faction of exiles. Your followers include up to three NPCs of Challenge Rating ½ or less, such as scouts.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_exile" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 358, + "fields": { + "name": "Guttersnipe", + "desc": "When you're in a town or city, you can provide a poor lifestyle for yourself and your companions. Also, you know how to get anywhere in town without being spotted by gangs, gossips, or guard patrols.", + "type": "feature", + "parent": "a5e-ag_urchin" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 361, + "fields": { + "name": "Connection and Memento", + "desc": "### Urchin Connections\r\n\r\n1. The disreputable thief who taught you thieving skills.\r\n2. The saintly orphanage matron who’s so proud of how you’ve grown.\r\n3. The miserly and cruel orphanage administrator who rounds up urchins and runaways.\r\n4. The drunken thief who shared with you what little they could steal. \r\n5. The fellow urchin who has some power to make “bad stuff” happen to their enemies.\r\n6. The thieves’ guild contact who will pay well for small folk to wriggle through a window or chimney to unlock a front door.\r\n7. The philanthropist (or charlatan?) who took you in, dressed you properly, and tried to teach you upper-class manners.\r\n8. The spymaster or detective who sent you on investigation missions.\r\n9. The noble whose horse trampled you or a friend.\r\n10. The rich family you ran away from.\r\n\r\n### Urchin Mementos\r\n\r\n1. A locket containing pictures of your parents.\r\n2. A set of (stolen?) fine clothes.\r\n3. A small trained animal, such as a mouse, parrot, or monkey.\r\n4. A map of the sewers.\r\n5. The key or signet ring that was around your neck when you were discovered as a foundling.\r\n6. A battered one-eyed doll.\r\n7. A portfolio of papers given to you by a fleeing, wounded courier.\r\n8. A gold tooth (not yours, and not in your mouth).\r\n9. The flowers or trinkets that you sell.\r\n10. A dangerous secret overheard while at play.", + "type": "connection_and_memento", + "parent": "a5e-ag_urchin" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 362, + "fields": { + "name": "Tool Proficiencies", + "desc": "One vehicle.", + "type": "tool_proficiency", + "parent": "a5e-ag_trader" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 363, + "fields": { + "name": "Tool Proficiencies", + "desc": "Disguise kit, thieves’ tools.", + "type": "tool_proficiency", + "parent": "a5e-ag_urchin" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 364, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Strength and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_soldier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 365, + "fields": { + "name": "Skill Proficiencies", + "desc": "Athletics, and either Animal Handling or Intimidation.", + "type": "skill_proficiency", + "parent": "a5e-ag_soldier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 366, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of gaming set.", + "type": "tool_proficiency", + "parent": "a5e-ag_soldier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 367, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_soldier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 368, + "fields": { + "name": "Suggested Equipment", + "desc": "Uniform, common clothes, 7 days rations.", + "type": "equipment", + "parent": "a5e-ag_soldier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 369, + "fields": { + "name": "Military Bearing", + "desc": "Soldiers recognize their own. Off duty soldiers are usually willing to trade tales and gossip with you. On duty soldiers, while not obeying your orders, are likely to answer your questions and treat you respectfully on the off chance that you’re an unfamiliar officer who can get them in trouble.", + "type": "feature", + "parent": "a5e-ag_soldier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 370, + "fields": { + "name": "Adventures and Advancement", + "desc": "You will occasionally run into old comrades, some of whom may need favors. If you perform a few celebrated martial deeds your old military outfit (or a new one) is likely to offer you an officer’s rank. You gain the free service of up to 8 guards. Your new commanders will occasionally give you objectives: you will be expected to act independently in order to achieve these objectives.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_soldier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 371, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Soldier Connections\r\n1. Your old commanding officer who still wants you to rejoin.\r\n2. The commander who callously sent your unit into a slaughter.\r\n3. Your shady war buddy who can get their hands on anything with no questions asked.\r\n4. Your best friend who went missing on the battlefield. \r\n5. The comrade who saved your life at the risk of their own.\r\n6. The ghost who haunts you. \r\n7. The superior officer you punched (for abusing civilians? For insulting your honor? For preventing you from looting?)\r\n8. The scary experimental war construct you accompanied on a dangerous mission.\r\n9. The golden-armored knight with ridiculously good teeth who was always giving inspiring speeches.\r\n10. The enemy officer who captured you.\r\n\r\n### Soldier Mementos\r\n1. A broken horn, tooth, or other trophy salvaged from a monster’s corpse.\r\n2. A trophy won in a battle (a tattered banner, a ceremonial sword, or similar).\r\n3. A gaming set.\r\n4. A letter from your sweetheart.\r\n5. An old wound that twinges in bad weather.\r\n6. A letter you’re supposed to deliver to a dead comrade’s family.\r\n7. A horrifying memory you can’t escape.\r\n8. A horned or plumed helmet.\r\n9. The sword you broke over your knee rather than fight for those bastards another day.\r\n10. A medal for valor.", + "type": "connection_and_memento", + "parent": "a5e-ag_soldier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 372, + "fields": { + "name": "Tool Proficiencies", + "desc": "Navigator’s tools, water vehicles.", + "type": "tool_proficiency", + "parent": "a5e-ag_sailor" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 373, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Strength and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_noble" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 374, + "fields": { + "name": "Skill Proficiencies", + "desc": "Culture, History, and either Animal Handling or Persuasion.", + "type": "skill_proficiency", + "parent": "a5e-ag_noble" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 375, + "fields": { + "name": "Tool Proficiencies", + "desc": "One gaming set.", + "type": "tool_proficiency", + "parent": "a5e-ag_noble" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 376, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_noble" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 377, + "fields": { + "name": "Equipment", + "desc": "Fine clothes, signet ring, writ detailing your family tree.", + "type": "equipment", + "parent": "a5e-ag_noble" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 378, + "fields": { + "name": "High Society", + "desc": "You know of—or personally know—most of the noble families for hundreds of miles. In most settled areas you (and possibly your companions, if well-behaved) can find a noble host who will feed you, shelter you, and offer you a rich lifestyle.", + "type": "feature", + "parent": "a5e-ag_noble" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 379, + "fields": { + "name": "Adventures and Advancement", + "desc": "Your family may ask you for one or two little favors: convince this relative to marry a family-approved spouse, slay that family foe in a duel, serve under a liege lord in a battle. If you advance your family’s fortunes, you may earn a knighthood along with the free service of a retinue of servants and up to 8 **guards**.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_noble" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 380, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Noble Connections\r\n1. Your perfect elder sibling to whom you never seem to measure up.\r\n2. The treacherous noble who slaughtered or scattered your family and is now living in your ancestral home.\r\n3. Your family servant, a retired adventurer who taught you more about battle than any fancy dueling master.\r\n4. The foppish friend you carouse with.\r\n5. The common-born sweetheart that your family forbid you from seeing again.\r\n6. The fugitive head of your family whose rebellion caused your family’s lands to be seized and titles to be redistributed.\r\n7. Your foe, the heir of a rival house, with whom you have dueled twice.\r\n8. The crime boss to whom your family is in massive debt.\r\n9. The scion of an allied family to whom you were betrothed from birth.\r\n10. The eccentric knight for whom you trained as a squire or page.\r\n\r\n### Noble Mementos\r\n1. A shield or tabard bearing your coat of arms.\r\n2. A keepsake or love letter from a high-born sweetheart.\r\n3. An heirloom weapon—though it’s not magical, it has a name and was used for mighty deeds.\r\n4. A letter of recommendation to a royal court.\r\n5. Perfumed handkerchiefs suitable for blocking the smell of commoners.\r\n6. An extremely fashionable and excessively large hat.\r\n7. A visible scar earned in battle or in a duel.\r\n8. A set of common clothes and a secret commoner identity.\r\n9. IOUs of dubious value that were earned in games of chance against other nobles.\r\n10. A letter from a friend begging for help.", + "type": "connection_and_memento", + "parent": "a5e-ag_noble" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 381, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of artisan’s tools or vehicle.", + "type": "tool_proficiency", + "parent": "a5e-ag_marauder" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 382, + "fields": { + "name": "Tool Proficiencies", + "desc": "Herbalism kit.", + "type": "tool_proficiency", + "parent": "a5e-ag_hermit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 383, + "fields": { + "name": "Tool Proficiencies", + "desc": "Either one type of artisan’s tools, musical instrument, or vehicle.", + "type": "tool_proficiency", + "parent": "a5e-ag_guildmember" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 384, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Strength and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_guard" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 385, + "fields": { + "name": "Skill Proficiencies", + "desc": "Intimidation, and either Athletics or Investigation.", + "type": "skill_proficiency", + "parent": "a5e-ag_guard" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 386, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_guard" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 387, + "fields": { + "name": "Equipment", + "desc": "Common clothes, halberd, uniform.", + "type": "equipment", + "parent": "a5e-ag_guard" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 388, + "fields": { + "name": "Natural Authority", + "desc": "Commoners and civilians sometimes assume you are part of a local constabulary force and defer to you.", + "type": "feature", + "parent": "a5e-ag_guard" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 389, + "fields": { + "name": "Adventures and Advancement", + "desc": "When you visit the city or countryside you once patrolled you’re sure to get embroiled in the same politics that drove you out. Should you stick around righting wrongs, you might accidentally find yourself in a position of responsibility.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_guard" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 390, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guard Connections\r\n1. The corrupt guard captain who framed you.\r\n2. The by-the-book guard captain who found you in violation of a regulation.\r\n3. The mighty guard captain who taught you all you know. \r\n4. The informant who tipped you off about criminal activity.\r\n5. The noble or merchant you protected.\r\n6. The comrade or superior officer you admired.\r\n7. The villain who kidnapped the person you were charged to protect.\r\n8. Your betrayer, the one person you didn’t think to mistrust.\r\n9. The noble or merchant who had everyone in their pocket.\r\n10. The diviner wizard who could usually provide you with the missing piece of a puzzle.\r\n\r\n### Guard Mementos\r\n1. Your badge of office, a symbol of an ideal few could live up to.\r\n2. Your badge of office, a symbol of a corrupt system you could no longer stomach.\r\n3. The arrow-damaged prayer book or playing card deck that saved your life.\r\n4. The whiskey flask that stood you in good stead on many cold patrols. \r\n5. Notes about a series of disappearances you would have liked to put a stop to. \r\n6. A broken sword, torn insignia, or other symbol of your disgrace and banishment.\r\n7. A tattoo or insignia marking you as part of an organization of which you are the last member.\r\n8. The fellow guard’s last words which you will never forget. \r\n9. A letter you were asked to deliver. \r\n10. A bloodstained duty roster.", + "type": "connection_and_memento", + "parent": "a5e-ag_guard" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 391, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of artisan’s tools, one vehicle.", + "type": "tool_proficiency", + "parent": "a5e-ag_folk-hero" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 392, + "fields": { + "name": "Tool Proficiencies", + "desc": "Land vehicles.", + "type": "tool_proficiency", + "parent": "a5e-ag_farmer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 393, + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Intelligence and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 394, + "fields": { + "name": "Skill Proficiencies", + "desc": "Religion, and either Arcana or Deception.", + "type": "skill_proficiency", + "parent": "a5e-ag_cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 395, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 396, + "fields": { + "name": "Equipment", + "desc": "Holy symbol (amulet or reliquary), common clothes, robes, 5 torches.", + "type": "equipment", + "parent": "a5e-ag_cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 397, + "fields": { + "name": "Forbidden Lore", + "desc": "When you fail an Arcana or Religion check, you know what being or book holds the knowledge you seek finding the book or paying the being’s price is another matter.", + "type": "feature", + "parent": "a5e-ag_cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 398, + "fields": { + "name": "Adventures and Advancement", + "desc": "Members of your former order may be hunting you for reenlistment, punishment, or both.\r\nAdditionally, your cult still seeks to open a portal, effect an apotheosis, or otherwise cause catastrophe. Eventually you may have to face the leader of your cult and perhaps even the being you once worshiped.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 399, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cultist Connections\r\n1. The cult leader whom you left for dead.\r\n2. The cleric or herald who showed you the error of your ways.\r\n3. The voice which still speaks to you in dreams.\r\n4. The charismatic cultist whose honeyed words and promises first tempted you.\r\n5. The friend or loved one still in the cult.\r\n6. Your former best friend who now hunts you for your desertion of the cult.\r\n7. The relentless inquisitor who hunts you for your past heresy.\r\n8. The demon which you and your compatriots accidentally unleashed.\r\n9. The self-proclaimed deity who barely escaped from their angry disciples after their magic tricks and fakeries were revealed.\r\n10. The masked cult leader whose identity you never learned, but whose cruel voice you would recognize anywhere.\r\n\r\n### Cultist Mementos\r\n1. The sinister tattoo which occasionally speaks to you.\r\n2. The cursed holy symbol which appears in your possession each morning no matter how you try to rid yourself of it.\r\n3. The scar on your palm which aches with pain when you disobey the will of your former master.\r\n4. The curved dagger that carries a secret enchantment able only to destroy the being you once worshiped.\r\n5. The amulet which is said to grant command of a powerful construct. \r\n6. A forbidden tome which your cult would kill to retrieve. \r\n7. An incriminating letter to your cult leader from their master (a noted noble or politician).\r\n8. A compass which points to some distant location or object.\r\n9. A talisman which is said to open a gateway to the realm of a forgotten god.\r\n10. The birthmark which distinguishes you as the chosen vessel of a reborn god.", + "type": "connection_and_memento", + "parent": "a5e-ag_cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 400, + "fields": { + "name": "Tool Proficiencies", + "desc": "Gaming set, thieves' tools.", + "type": "tool_proficiency", + "parent": "a5e-ag_criminal" + } +} +] diff --git a/data/v2/en-publishing/a5e-ddg/Background.json b/data/v2/en-publishing/a5e-ddg/Background.json index 62024bbb..e9cc90b0 100644 --- a/data/v2/en-publishing/a5e-ddg/Background.json +++ b/data/v2/en-publishing/a5e-ddg/Background.json @@ -1,38 +1,38 @@ [ - { - "model": "api_v2.background", - "pk": "a5e-ddg_deep-hunter", - "fields": { - "name": "Deep Hunter", - "desc": "[No description provided]", - "document": "a5e-ddg" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ddg_dungeon-robber", - "fields": { - "name": "Dungeon Robber", - "desc": "[No description provided]", - "document": "a5e-ddg" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ddg_escapee-from-below", - "fields": { - "name": "Escapee from Below", - "desc": "[No description provided]", - "document": "a5e-ddg" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-ddg_imposter", - "fields": { - "name": "Imposter", - "desc": "[No description provided]", - "document": "a5e-ddg" - } +{ + "model": "api_v2.background", + "pk": "a5e-ddg_deep-hunter", + "fields": { + "name": "Deep Hunter", + "desc": "[No description provided]", + "document": "a5e-ddg" } -] \ No newline at end of file +}, +{ + "model": "api_v2.background", + "pk": "a5e-ddg_dungeon-robber", + "fields": { + "name": "Dungeon Robber", + "desc": "[No description provided]", + "document": "a5e-ddg" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ddg_escapee-from-below", + "fields": { + "name": "Escapee from Below", + "desc": "[No description provided]", + "document": "a5e-ddg" + } +}, +{ + "model": "api_v2.background", + "pk": "a5e-ddg_imposter", + "fields": { + "name": "Imposter", + "desc": "[No description provided]", + "document": "a5e-ddg" + } +} +] diff --git a/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json b/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json index d4e82829..d0dd1ffd 100644 --- a/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json +++ b/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json @@ -1,292 +1,292 @@ [ - { - "model": "api_v2.backgroundbenefit", - "pk": 534, - "fields": { - "name": "Ability Score Increase", - "desc": "+1 to Wisdom and one other ability score.", - "type": "ability_score", - "parent": "a5e-ddg_deep-hunter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 535, - "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either Nature or Stealth.", - "type": "skill_proficiency", - "parent": "a5e-ddg_deep-hunter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 536, - "fields": { - "name": "Tool Proficiencies", - "desc": "Leatherworker’s tools.", - "type": "tool_proficiency", - "parent": "a5e-ddg_deep-hunter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 537, - "fields": { - "name": "Suggested Equipment", - "desc": "chalk, traveler’s clothes, 2 hunting traps", - "type": "equipment", - "parent": "a5e-ddg_deep-hunter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 538, - "fields": { - "name": "Deep Lore", - "desc": "You always have a sense of how deep you are and which direction is north, provided that you’ve traveled in these regions before. You are also generally aware of the physical and political geography of the region (e.g., “the old dwarf colony is this way and those tunnels are part of the wererat pack’s hunting grounds”). You know where relatively safe places to camp are located and you can usually find fresh sources of water.", - "type": "feature", - "parent": "a5e-ddg_deep-hunter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 539, - "fields": { - "name": "Adventures and Advancement", - "desc": "Once you’ve collected a few trophies from your hunts, people start offering you money in exchange for help against the subterranean monsters plaguing their communities. After a few such bounties, you gain the free service of up to 4 scouts (or scout variants). You can ask them to adventure with you or dispatch them to gather information on distant areas.", - "type": "adventures_and_advancement", - "parent": "a5e-ddg_deep-hunter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 540, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Deep Hunter Connections\r\n1. The hunter that saved your life.\r\n2. The rival hunter that pursues the same beast.\r\n3. The rival hunter that took credit for your kill and branded you a liar.\r\n4. The intelligent monster that mocks you every time it escapes your grasp.\r\n5. The community or family that depends on you.\r\n6. The city alchemist that pays well for your trophies.\r\n7. A community of fey, deep gnome, or shadow elves that owe you their lives.\r\n8. A monster you have befriended and sworn to protect.\r\n9. The surface world ruler from whom you’re hiding.\r\n10. The monster that hunts you.\r\n\r\n### Deep Hunter Mementos\r\n1. A prized bow string, arrow, whetstone, or other piece of equipment that has never let you down.\r\n2. A locket containing the picture of a subterranean monster’s victim.\r\n3. An astonishing assortment of unusual jerkies.\r\n4. A scar from the monster that got away.\r\n5. Clothing bedecked with a dozen grisly trophies.\r\n6. A lucky coin you flip when you’re not sure of the way forward.\r\n7. The broken horn or tooth that nearly killed you.\r\n8. A talking monster skull (you hear it talking, anyway).\r\n9. A copper coin taken from a cavern filled with riches; you stumbled across the cavern while lost and have never found your way back.\r\n10. A journal detailing your attempts to find a navigable passage to the Midnight Sea.", - "type": "connection_and_memento", - "parent": "a5e-ddg_deep-hunter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 541, - "fields": { - "name": "Ability Score Increase", - "desc": "+1 to Intelligence and one other ability score.", - "type": "ability_score", - "parent": "a5e-ddg_dungeon-robber" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 542, - "fields": { - "name": "Skill Proficiencies", - "desc": "History, and either Investigation or Religion.", - "type": "skill_proficiency", - "parent": "a5e-ddg_dungeon-robber" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 543, - "fields": { - "name": "Tool Proficiencies", - "desc": "Cartographers’ tools.", - "type": "tool_proficiency", - "parent": "a5e-ddg_dungeon-robber" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 544, - "fields": { - "name": "Languages", - "desc": "Any six (three of them no longer spoken).", - "type": "language", - "parent": "a5e-ddg_dungeon-robber" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 545, - "fields": { - "name": "Suggested Equipment", - "desc": "Cartographers’ tools, miner’s pick, traveler’s clothes, shovel.", - "type": "equipment", - "parent": "a5e-ddg_dungeon-robber" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 546, - "fields": { - "name": "Unreliable Intelligence", - "desc": "You know conspiracy theorists, armchair historians, disgraced academics, and other people with useful, if unreliable, knowledge. While in a city, once per day you can find an NPC who can make an Intelligence check with a +10 bonus to recall a fact. When you do so, the Narrator secretly rolls a d6. On a 1, your contact’s information is dangerously inaccurate.", - "type": "feature", - "parent": "a5e-ddg_dungeon-robber" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 547, - "fields": { - "name": "Adventures and Advancement", - "desc": "As you build your reputation, shady people approach you with requests to “discover” items of uncertain ownership. After enough successes, a legitimate organization, such as a wizard’s college or esteemed museum, takes an interest in you. They offer you a position, which comes with funding granting a Wealthy lifestyle, access to free spellcasting services, and legal representation when you inevitably run afoul of the law.", - "type": "adventures_and_advancement", - "parent": "a5e-ddg_dungeon-robber" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 548, - "fields": { - "name": "Connection and Memento", - "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Dungeon Robber Connections\r\n1. A rival who always tries to steal what you rightfully find.\r\n2. A rival who seeks powerful artifacts for evil ends.\r\n3. A fence who can find a buyer for anything.\r\n4. An underworld figure to whom you owe a staggering debt.\r\n5. A master forger who can replicate plausible records of ownership, permissions to restricted areas, and so on.\r\n6. An artist who can make perfect copies of artwork and paintings.\r\n7. A collector who sends you after valuable curios.\r\n8. Authorities who would like to question you about a relic’s mysterious disappearance.\r\n9. An admiring urchin who can get you anywhere in their city.\r\n10. A rambling sage whose bizarre, shocking theories you half believe.\r\n\r\n### Dungeon Robber Mementos\r\n1. A mysterious idol whose origin you seek.\r\n2. A cultural item from equipment.\r\n3. A treasure map with no obvious connection to any known land mass.\r\n4. An ancient piece of machinery that is undoubtedly very powerful, although all it currently does is light up.\r\n5. A rare book that grants an expertise die on checks related to a specific civilization.\r\n6. A gold coin bearing the face of a king who never existed.\r\n7. Identification papers from the institution that has kicked you out.\r\n8. A tablet carved with indecipherable glyphs.\r\n9. A giant-sized key to an unknown door.\r\n10. One piece of a seven-part artifact.", - "type": "connection_and_memento", - "parent": "a5e-ddg_dungeon-robber" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 549, - "fields": { - "name": "Ability Score Increase", - "desc": "+1 to Constitution and one other ability score.", - "type": "ability_score", - "parent": "a5e-ddg_escapee-from-below" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 550, - "fields": { - "name": "Skill Proficiencies", - "desc": "Stealth, and either Perception or Survival.", - "type": "skill_proficiency", - "parent": "a5e-ddg_escapee-from-below" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 551, - "fields": { - "name": "Tool Proficiencies", - "desc": "Thieves’ tools.", - "type": "tool_proficiency", - "parent": "a5e-ddg_escapee-from-below" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 552, - "fields": { - "name": "Suggested Equipment", - "desc": "Common clothes, thieves’ tools.", - "type": "equipment", - "parent": "a5e-ddg_escapee-from-below" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 553, - "fields": { - "name": "Alien Culture", - "desc": "Your prolonged captivity has granted you insight into the culture that kept you. You understand their customs, traditions, religion, political ties, and to some extent how they think. You are regarded as an expert in this culture and can usually recall some useful detail when you and your companions face a challenge involving this culture.", - "type": "feature", - "parent": "a5e-ddg_escapee-from-below" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 554, - "fields": { - "name": "Adventures and Advancement", - "desc": "You find yourself drawn to the lands you once escaped. When you return there, you may have an opportunity to right wrongs or take revenge for past injuries. When you do, other escapees may look to you for leadership.", - "type": "adventures_and_advancement", - "parent": "a5e-ddg_escapee-from-below" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 555, - "fields": { - "name": "Connection and Memento", - "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Escapee from Below Connections\r\n1. The friend and fellow escapee from whom you were separated.\r\n2. The family members who remain in captivity.\r\n3. The cruel overseer who tortured you.\r\n4. Members of an Underland resistance movement.\r\n5. An evil commando squad that hunts escapees.\r\n6. The kindly merchant who took you in when you first reached the surface.\r\n7. A fellow prisoner, still in captivity, who claimed to be an heir to royalty.\r\n8. The prominent merchant or politician you saw making deals with evil creatures in the Underland.\r\n9. A mighty Underland creature with ambitions to conquer the surface world.\r\n10. A ship captain who sails the Midnight Sea.\r\n\r\n### Escapee from Below Mementos\r\n1. A partial map of your escape route.\r\n2. Broken shackles or chains.\r\n3. A precious heirloom, still hidden somewhere in Underland.\r\n4. A delicious recipe (which no one would eat if they knew the ingredients).\r\n5. A compass that points back where you came.\r\n6. Twelve days worth of rations (dried mushrooms).\r\n7. A tattoo that conceals the hidden routes and passwords you used to gain your freedom.\r\n8. A trophy taken from the guard you overcame.\r\n9. A strange board game or toy designed for hands with too many fingers.\r\n10. A telepathic rat or other unusual pet.", - "type": "connection_and_memento", - "parent": "a5e-ddg_escapee-from-below" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 556, - "fields": { - "name": "Ability Score Increase", - "desc": "+1 to Charisma and one other ability score.", - "type": "ability_score", - "parent": "a5e-ddg_imposter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 557, - "fields": { - "name": "Skill Proficiencies", - "desc": "Deception, and either Perception or Survival.", - "type": "skill_proficiency", - "parent": "a5e-ddg_imposter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 558, - "fields": { - "name": "Tool Proficiencies", - "desc": "Disguise kit.", - "type": "tool_proficiency", - "parent": "a5e-ddg_imposter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 559, - "fields": { - "name": "Suggested Equipment", - "desc": "Common clothes, disguise kit.", - "type": "equipment", - "parent": "a5e-ddg_imposter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 560, - "fields": { - "name": "Cover Story", - "desc": "Whenever you struggle to maintain the masquerade that you are who you say, a surprising number of people are willing to help you through your “lapses of memory.” They might be deluding themselves, or perhaps they know your secret but provide you cover for reasons of their own. So long as you don’t act completely out of character or get caught in an outrageous lie, you can usually find someone willing to cover for you. This cover most commonly takes he form of excuses for your strange behavior.", - "type": "feature", - "parent": "a5e-ddg_imposter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 561, - "fields": { - "name": "Adventures and Advancement", - "desc": "Each of your double’s former acquaintances must be won over, until they like you more than they did your original. Even once that’s accomplished, you won’t truly be free of your past until you have reckoned with it. When evidence of your true nature surfaces—or when the person you are impersonating reappears—you must triumph in the court of public opinion. Once you have done so, you will have permanent, legal access to your former self’s belongings, inheritance rights, and so on.", - "type": "adventures_and_advancement", - "parent": "a5e-ddg_imposter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 562, - "fields": { - "name": "Connection and Memento", - "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Imposter Connections\r\n1. The accomplice who knows your secret and helps you for their own reasons.\r\n2. The spouse or lover of your other self, whom you must win over.\r\n3. The enemy of your other self, whose hatred you inherit.\r\n4. Your other self’s rich or noble relative, from whom you may inherit a fortune.\r\n5. Your crooked former partner, who still searches for you, unaware of your new identity.\r\n6. The Underland compatriot who knew both you and the person whose identity you stole.\r\n7. The suspicious priest who noticed a change in your personality.\r\n8. An acquaintance whose “inside joke” you pretend to understand.\r\n9. The family pet that doesn’t recognize you.\r\n10. The person you left behind when you abandoned your old life.\r\n\r\n### Imposter Mementos\r\n1. The precious diary containing your original self’s secrets.\r\n2. The locket or signet ring that proves your identity.\r\n3. The scar that matches the one your original self had.\r\n4. An anonymous blackmail letter.\r\n5. An item that proves your real identity, which you keep hidden.\r\n6. The fingerbone that whispers hints to you at opportune times.\r\n7. The heirloom weapon you fraudulently wield.\r\n8. Your trusty hat of disguise.\r\n9. Your trusty ring of mind shielding.\r\n10. The implements (useless to you) of your original self’s magical training.", - "type": "connection_and_memento", - "parent": "a5e-ddg_imposter" - } +{ + "model": "api_v2.backgroundbenefit", + "pk": 534, + "fields": { + "name": "Ability Score Increase", + "desc": "+1 to Wisdom and one other ability score.", + "type": "ability_score", + "parent": "a5e-ddg_deep-hunter" } -] \ No newline at end of file +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 535, + "fields": { + "name": "Skill Proficiencies", + "desc": "Survival, and either Nature or Stealth.", + "type": "skill_proficiency", + "parent": "a5e-ddg_deep-hunter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 536, + "fields": { + "name": "Tool Proficiencies", + "desc": "Leatherworker’s tools.", + "type": "tool_proficiency", + "parent": "a5e-ddg_deep-hunter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 537, + "fields": { + "name": "Suggested Equipment", + "desc": "chalk, traveler’s clothes, 2 hunting traps", + "type": "equipment", + "parent": "a5e-ddg_deep-hunter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 538, + "fields": { + "name": "Deep Lore", + "desc": "You always have a sense of how deep you are and which direction is north, provided that you’ve traveled in these regions before. You are also generally aware of the physical and political geography of the region (e.g., “the old dwarf colony is this way and those tunnels are part of the wererat pack’s hunting grounds”). You know where relatively safe places to camp are located and you can usually find fresh sources of water.", + "type": "feature", + "parent": "a5e-ddg_deep-hunter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 539, + "fields": { + "name": "Adventures and Advancement", + "desc": "Once you’ve collected a few trophies from your hunts, people start offering you money in exchange for help against the subterranean monsters plaguing their communities. After a few such bounties, you gain the free service of up to 4 scouts (or scout variants). You can ask them to adventure with you or dispatch them to gather information on distant areas.", + "type": "adventures_and_advancement", + "parent": "a5e-ddg_deep-hunter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 540, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Deep Hunter Connections\r\n1. The hunter that saved your life.\r\n2. The rival hunter that pursues the same beast.\r\n3. The rival hunter that took credit for your kill and branded you a liar.\r\n4. The intelligent monster that mocks you every time it escapes your grasp.\r\n5. The community or family that depends on you.\r\n6. The city alchemist that pays well for your trophies.\r\n7. A community of fey, deep gnome, or shadow elves that owe you their lives.\r\n8. A monster you have befriended and sworn to protect.\r\n9. The surface world ruler from whom you’re hiding.\r\n10. The monster that hunts you.\r\n\r\n### Deep Hunter Mementos\r\n1. A prized bow string, arrow, whetstone, or other piece of equipment that has never let you down.\r\n2. A locket containing the picture of a subterranean monster’s victim.\r\n3. An astonishing assortment of unusual jerkies.\r\n4. A scar from the monster that got away.\r\n5. Clothing bedecked with a dozen grisly trophies.\r\n6. A lucky coin you flip when you’re not sure of the way forward.\r\n7. The broken horn or tooth that nearly killed you.\r\n8. A talking monster skull (you hear it talking, anyway).\r\n9. A copper coin taken from a cavern filled with riches; you stumbled across the cavern while lost and have never found your way back.\r\n10. A journal detailing your attempts to find a navigable passage to the Midnight Sea.", + "type": "connection_and_memento", + "parent": "a5e-ddg_deep-hunter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 541, + "fields": { + "name": "Ability Score Increase", + "desc": "+1 to Intelligence and one other ability score.", + "type": "ability_score", + "parent": "a5e-ddg_dungeon-robber" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 542, + "fields": { + "name": "Skill Proficiencies", + "desc": "History, and either Investigation or Religion.", + "type": "skill_proficiency", + "parent": "a5e-ddg_dungeon-robber" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 543, + "fields": { + "name": "Tool Proficiencies", + "desc": "Cartographers’ tools.", + "type": "tool_proficiency", + "parent": "a5e-ddg_dungeon-robber" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 544, + "fields": { + "name": "Languages", + "desc": "Any six (three of them no longer spoken).", + "type": "language", + "parent": "a5e-ddg_dungeon-robber" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 545, + "fields": { + "name": "Suggested Equipment", + "desc": "Cartographers’ tools, miner’s pick, traveler’s clothes, shovel.", + "type": "equipment", + "parent": "a5e-ddg_dungeon-robber" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 546, + "fields": { + "name": "Unreliable Intelligence", + "desc": "You know conspiracy theorists, armchair historians, disgraced academics, and other people with useful, if unreliable, knowledge. While in a city, once per day you can find an NPC who can make an Intelligence check with a +10 bonus to recall a fact. When you do so, the Narrator secretly rolls a d6. On a 1, your contact’s information is dangerously inaccurate.", + "type": "feature", + "parent": "a5e-ddg_dungeon-robber" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 547, + "fields": { + "name": "Adventures and Advancement", + "desc": "As you build your reputation, shady people approach you with requests to “discover” items of uncertain ownership. After enough successes, a legitimate organization, such as a wizard’s college or esteemed museum, takes an interest in you. They offer you a position, which comes with funding granting a Wealthy lifestyle, access to free spellcasting services, and legal representation when you inevitably run afoul of the law.", + "type": "adventures_and_advancement", + "parent": "a5e-ddg_dungeon-robber" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 548, + "fields": { + "name": "Connection and Memento", + "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Dungeon Robber Connections\r\n1. A rival who always tries to steal what you rightfully find.\r\n2. A rival who seeks powerful artifacts for evil ends.\r\n3. A fence who can find a buyer for anything.\r\n4. An underworld figure to whom you owe a staggering debt.\r\n5. A master forger who can replicate plausible records of ownership, permissions to restricted areas, and so on.\r\n6. An artist who can make perfect copies of artwork and paintings.\r\n7. A collector who sends you after valuable curios.\r\n8. Authorities who would like to question you about a relic’s mysterious disappearance.\r\n9. An admiring urchin who can get you anywhere in their city.\r\n10. A rambling sage whose bizarre, shocking theories you half believe.\r\n\r\n### Dungeon Robber Mementos\r\n1. A mysterious idol whose origin you seek.\r\n2. A cultural item from equipment.\r\n3. A treasure map with no obvious connection to any known land mass.\r\n4. An ancient piece of machinery that is undoubtedly very powerful, although all it currently does is light up.\r\n5. A rare book that grants an expertise die on checks related to a specific civilization.\r\n6. A gold coin bearing the face of a king who never existed.\r\n7. Identification papers from the institution that has kicked you out.\r\n8. A tablet carved with indecipherable glyphs.\r\n9. A giant-sized key to an unknown door.\r\n10. One piece of a seven-part artifact.", + "type": "connection_and_memento", + "parent": "a5e-ddg_dungeon-robber" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 549, + "fields": { + "name": "Ability Score Increase", + "desc": "+1 to Constitution and one other ability score.", + "type": "ability_score", + "parent": "a5e-ddg_escapee-from-below" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 550, + "fields": { + "name": "Skill Proficiencies", + "desc": "Stealth, and either Perception or Survival.", + "type": "skill_proficiency", + "parent": "a5e-ddg_escapee-from-below" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 551, + "fields": { + "name": "Tool Proficiencies", + "desc": "Thieves’ tools.", + "type": "tool_proficiency", + "parent": "a5e-ddg_escapee-from-below" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 552, + "fields": { + "name": "Suggested Equipment", + "desc": "Common clothes, thieves’ tools.", + "type": "equipment", + "parent": "a5e-ddg_escapee-from-below" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 553, + "fields": { + "name": "Alien Culture", + "desc": "Your prolonged captivity has granted you insight into the culture that kept you. You understand their customs, traditions, religion, political ties, and to some extent how they think. You are regarded as an expert in this culture and can usually recall some useful detail when you and your companions face a challenge involving this culture.", + "type": "feature", + "parent": "a5e-ddg_escapee-from-below" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 554, + "fields": { + "name": "Adventures and Advancement", + "desc": "You find yourself drawn to the lands you once escaped. When you return there, you may have an opportunity to right wrongs or take revenge for past injuries. When you do, other escapees may look to you for leadership.", + "type": "adventures_and_advancement", + "parent": "a5e-ddg_escapee-from-below" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 555, + "fields": { + "name": "Connection and Memento", + "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Escapee from Below Connections\r\n1. The friend and fellow escapee from whom you were separated.\r\n2. The family members who remain in captivity.\r\n3. The cruel overseer who tortured you.\r\n4. Members of an Underland resistance movement.\r\n5. An evil commando squad that hunts escapees.\r\n6. The kindly merchant who took you in when you first reached the surface.\r\n7. A fellow prisoner, still in captivity, who claimed to be an heir to royalty.\r\n8. The prominent merchant or politician you saw making deals with evil creatures in the Underland.\r\n9. A mighty Underland creature with ambitions to conquer the surface world.\r\n10. A ship captain who sails the Midnight Sea.\r\n\r\n### Escapee from Below Mementos\r\n1. A partial map of your escape route.\r\n2. Broken shackles or chains.\r\n3. A precious heirloom, still hidden somewhere in Underland.\r\n4. A delicious recipe (which no one would eat if they knew the ingredients).\r\n5. A compass that points back where you came.\r\n6. Twelve days worth of rations (dried mushrooms).\r\n7. A tattoo that conceals the hidden routes and passwords you used to gain your freedom.\r\n8. A trophy taken from the guard you overcame.\r\n9. A strange board game or toy designed for hands with too many fingers.\r\n10. A telepathic rat or other unusual pet.", + "type": "connection_and_memento", + "parent": "a5e-ddg_escapee-from-below" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 556, + "fields": { + "name": "Ability Score Increase", + "desc": "+1 to Charisma and one other ability score.", + "type": "ability_score", + "parent": "a5e-ddg_imposter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 557, + "fields": { + "name": "Skill Proficiencies", + "desc": "Deception, and either Perception or Survival.", + "type": "skill_proficiency", + "parent": "a5e-ddg_imposter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 558, + "fields": { + "name": "Tool Proficiencies", + "desc": "Disguise kit.", + "type": "tool_proficiency", + "parent": "a5e-ddg_imposter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 559, + "fields": { + "name": "Suggested Equipment", + "desc": "Common clothes, disguise kit.", + "type": "equipment", + "parent": "a5e-ddg_imposter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 560, + "fields": { + "name": "Cover Story", + "desc": "Whenever you struggle to maintain the masquerade that you are who you say, a surprising number of people are willing to help you through your “lapses of memory.” They might be deluding themselves, or perhaps they know your secret but provide you cover for reasons of their own. So long as you don’t act completely out of character or get caught in an outrageous lie, you can usually find someone willing to cover for you. This cover most commonly takes he form of excuses for your strange behavior.", + "type": "feature", + "parent": "a5e-ddg_imposter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 561, + "fields": { + "name": "Adventures and Advancement", + "desc": "Each of your double’s former acquaintances must be won over, until they like you more than they did your original. Even once that’s accomplished, you won’t truly be free of your past until you have reckoned with it. When evidence of your true nature surfaces—or when the person you are impersonating reappears—you must triumph in the court of public opinion. Once you have done so, you will have permanent, legal access to your former self’s belongings, inheritance rights, and so on.", + "type": "adventures_and_advancement", + "parent": "a5e-ddg_imposter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 562, + "fields": { + "name": "Connection and Memento", + "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Imposter Connections\r\n1. The accomplice who knows your secret and helps you for their own reasons.\r\n2. The spouse or lover of your other self, whom you must win over.\r\n3. The enemy of your other self, whose hatred you inherit.\r\n4. Your other self’s rich or noble relative, from whom you may inherit a fortune.\r\n5. Your crooked former partner, who still searches for you, unaware of your new identity.\r\n6. The Underland compatriot who knew both you and the person whose identity you stole.\r\n7. The suspicious priest who noticed a change in your personality.\r\n8. An acquaintance whose “inside joke” you pretend to understand.\r\n9. The family pet that doesn’t recognize you.\r\n10. The person you left behind when you abandoned your old life.\r\n\r\n### Imposter Mementos\r\n1. The precious diary containing your original self’s secrets.\r\n2. The locket or signet ring that proves your identity.\r\n3. The scar that matches the one your original self had.\r\n4. An anonymous blackmail letter.\r\n5. An item that proves your real identity, which you keep hidden.\r\n6. The fingerbone that whispers hints to you at opportune times.\r\n7. The heirloom weapon you fraudulently wield.\r\n8. Your trusty hat of disguise.\r\n9. Your trusty ring of mind shielding.\r\n10. The implements (useless to you) of your original self’s magical training.", + "type": "connection_and_memento", + "parent": "a5e-ddg_imposter" + } +} +] diff --git a/data/v2/en-publishing/a5e-gpg/Background.json b/data/v2/en-publishing/a5e-gpg/Background.json index 986cef24..0946eced 100644 --- a/data/v2/en-publishing/a5e-gpg/Background.json +++ b/data/v2/en-publishing/a5e-gpg/Background.json @@ -1,20 +1,20 @@ [ - { - "model": "api_v2.background", - "pk": "a5e-gpg_cursed", - "fields": { - "name": "Cursed", - "desc": "[No description provided]", - "document": "a5e-gpg" - } - }, - { - "model": "api_v2.background", - "pk": "a5e-gpg_haunted", - "fields": { - "name": "Haunted", - "desc": "[No description provided]", - "document": "a5e-gpg" - } +{ + "model": "api_v2.background", + "pk": "a5e-gpg_cursed", + "fields": { + "name": "Cursed", + "desc": "[No description provided]", + "document": "a5e-gpg" } -] \ No newline at end of file +}, +{ + "model": "api_v2.background", + "pk": "a5e-gpg_haunted", + "fields": { + "name": "Haunted", + "desc": "[No description provided]", + "document": "a5e-gpg" + } +} +] diff --git a/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json b/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json index f7aedd61..8e55af17 100644 --- a/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json +++ b/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json @@ -1,142 +1,142 @@ [ - { - "model": "api_v2.backgroundbenefit", - "pk": 520, - "fields": { - "name": "Ability Score Increase", - "desc": "+1 Charisma and one other ability score.", - "type": "ability_score", - "parent": "a5e-gpg_cursed" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 521, - "fields": { - "name": "Skill Proficiencies", - "desc": "Perception, and either Arcana, Nature, or Religion based on the source of your curse.", - "type": "skill_proficiency", - "parent": "a5e-gpg_cursed" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 522, - "fields": { - "name": "Languages", - "desc": "Two of your choice.", - "type": "language", - "parent": "a5e-gpg_cursed" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 523, - "fields": { - "name": "Suggested Equipment", - "desc": "4 days of rations, one person tent, traveler’s clothes", - "type": "equipment", - "parent": "a5e-gpg_cursed" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 524, - "fields": { - "name": "Accursed", - "desc": "Whenever you fail at a Deception or Persuasion check, your curse manifests in a manner that you work out with your Narrator ahead of time. The failed check is ignored, and you immediately roll an Intimidation check with which you have expertise, taking the new roll. However, even a successful Intimidation check does not necessarily produce the result you originally intended, as the creatures around you may recoil in fear and distrust. At the Narrator’s discretion, you may keep the expertise die to Intimidation until the end of the scene.", - "type": "feature", - "parent": "a5e-gpg_cursed" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 525, - "fields": { - "name": "Adventures and Advancement", - "desc": "The entity responsible for your curse may press you to complete specific tasks, such as transporting a mysterious item, defeating a hated enemy, or stealing important documents. Work with your Narrator to determine how your curse is leveraged in these situations. After you complete several such tasks, your infamy grows. You are known by all people within 100 miles of your Prestige Center, many of whom hold you in fearful respect. You and your companions are given a moderate lifestyle in settlements within this area by those who dare not risk your curse.", - "type": "adventures_and_advancement", - "parent": "a5e-gpg_cursed" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 526, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cursed Connections\r\n1. Your parent who made the deal and left you cursed for their own ends.\r\n2. A cultist devoted to the entity that cursed you and who reveres you as well.\r\n3. Your childhood romantic interest, ultimately marked in some way by your curse.\r\n4. A childhood friend who pulled away from you when they realized you were cursed.\r\n5. The entity that cursed you.\r\n6. A priest or sage who tried—and failed—to break your curse years ago.\r\n7. The kindly family that took you in out of pity.\r\n8. The law enforcers who see you as a dangerous troublemaker.\r\n9. Another accursed individual with whom you sometimes commiserate.\r\n10. A scholar or researcher obsessed with the entity that cursed you.\r\n\r\n### Cursed Memento\r\n1. A locket or ring once owned by someone who was killed when your curse first manifested.\r\n2. A childhood toy, well worn, which has always been soothing.\r\n3. A torn piece of parchment which may lead you to the person who can break your curse.\r\n4. A weapon or piece of ammunition set aside for the entity that cursed you.\r\n5. A unique scar, discoloration, or other mark on your body which shows your curse.\r\n6. Nightmares brought on by the curse which often wake you, screaming.\r\n7. A charm meant to keep your curse contained. You haven’t noticed an effect.\r\n8. An artistic rendering of the entity that cursed you\r\n9. A flask once given to you as well-meaning consolation.\r\n10. A small knife you used as a child to protect yourself, because no one else would.", - "type": "connection_and_memento", - "parent": "a5e-gpg_cursed" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 527, - "fields": { - "name": "Ability Score Increase", - "desc": "+1 Wisdom and one other ability score of your choice.", - "type": "ability_score", - "parent": "a5e-gpg_haunted" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 528, - "fields": { - "name": "Skill Proficiencies", - "desc": "Religion, and any one skill of your choice that the spirit has imparted to you.", - "type": "skill_proficiency", - "parent": "a5e-gpg_haunted" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 529, - "fields": { - "name": "Languages", - "desc": "Two of your choice, one of which is the spirit’s native language.", - "type": "language", - "parent": "a5e-gpg_haunted" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 530, - "fields": { - "name": "Suggested Equipment", - "desc": "2 days worth of rations, bell, 5 candles, ink, ink pen, 10 sheets of paper, 5 pieces of chalk, traveler’s clothes", - "type": "equipment", - "parent": "a5e-gpg_haunted" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 531, - "fields": { - "name": "Silent Aid", - "desc": "Being in tune with your spirit allows them to point out something you might have missed, if only for their own purposes. You gain a +2 to your choice of your passive Perception, Investigation, or Insight score, depending on your spirit’s skills.\r\nIf you banish, free, or otherwise lose your spirit, consult with the Narrator to choose an appropriate feature from another background. Alternatively, the Narrator may rule that you’ve become a beacon for the supernatural and another spirit has taken up haunting you.", - "type": "feature", - "parent": "a5e-gpg_haunted" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 532, - "fields": { - "name": "Adventures and Advancement", - "desc": "Whether you seek to violently banish the restless dead or help them to peacefully pass on, you will gain a reputation as a spirit-speaker. Common folk and nobility alike are likely to approach you for advice and aid with everything from hereditary curses to irritable poltergeists to speaking with a dead relative about a lost treasure.\r\nAfter you have solved several such problems, you’ve become known to those who deal in certain kinds of esoteric knowledge and gain access to their private libraries. These vast personal collections contain esoteric mysteries, such as those answerable with a DC 25 Arcana, History, or Religion check. While using such a library your host will provide you and your companions a moderate or rich lifestyle, depending on their means and how impressed they are by your exploits.", - "type": "adventures_and_advancement", - "parent": "a5e-gpg_haunted" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 533, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Haunted Connections\r\n1. A descendant of your spirit who blames them for current misfortunes.\r\n2. Another haunted individual who came to you seeking help with their spirit in a time of crisis.\r\n3. The murderer who killed your spirit.\r\n4. A ghost who has consulted your spirit during a time of need.\r\n5. The bereaved spouse your spirit left behind who will do nearly anything to speak with their lost love.\r\n6. Your spirit, a childhood friend or a romantic partner before tragedy struck.\r\n7. Your spirits, a gaggle of bickering ancestors trying to use you to right a terrible wrong.\r\n8. A relative of your spirit who killed them in order to inherit a fortune.\r\n9. Your spirit, a hateful enemy of your family who is bound to you through a quirk of misfortune.\r\n10. Your spirit, who haunts their own body after you stole it and took up residence.\r\n\r\n### Haunted Memento\r\n1. A personal item (jewelry, tools, weapon, ect) once owned by your spirit. You can’t seem to get rid of it.\r\n2. A locket containing the image of the one who haunts you.\r\n3. The scent of your spirit’s favored cologne or perfume that clings to you.\r\n4. A small pouch of soil taken from your spirit’s grave.\r\n5. A letter of introduction penned by your spirit, giving you their blessing.\r\n6. Journals of your spirit’s life.\r\n7. An innocuous nonmagical item that your spirit tells you is of dire importance.\r\n8. The manacles that shackled your spirit before their death.\r\n9. A cryptic note written by your spirit who has no memory of its existence.\r\n10. The signet ring of your spirit, who you claim as your parent or ancestor.", - "type": "connection_and_memento", - "parent": "a5e-gpg_haunted" - } +{ + "model": "api_v2.backgroundbenefit", + "pk": 520, + "fields": { + "name": "Ability Score Increase", + "desc": "+1 Charisma and one other ability score.", + "type": "ability_score", + "parent": "a5e-gpg_cursed" } -] \ No newline at end of file +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 521, + "fields": { + "name": "Skill Proficiencies", + "desc": "Perception, and either Arcana, Nature, or Religion based on the source of your curse.", + "type": "skill_proficiency", + "parent": "a5e-gpg_cursed" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 522, + "fields": { + "name": "Languages", + "desc": "Two of your choice.", + "type": "language", + "parent": "a5e-gpg_cursed" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 523, + "fields": { + "name": "Suggested Equipment", + "desc": "4 days of rations, one person tent, traveler’s clothes", + "type": "equipment", + "parent": "a5e-gpg_cursed" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 524, + "fields": { + "name": "Accursed", + "desc": "Whenever you fail at a Deception or Persuasion check, your curse manifests in a manner that you work out with your Narrator ahead of time. The failed check is ignored, and you immediately roll an Intimidation check with which you have expertise, taking the new roll. However, even a successful Intimidation check does not necessarily produce the result you originally intended, as the creatures around you may recoil in fear and distrust. At the Narrator’s discretion, you may keep the expertise die to Intimidation until the end of the scene.", + "type": "feature", + "parent": "a5e-gpg_cursed" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 525, + "fields": { + "name": "Adventures and Advancement", + "desc": "The entity responsible for your curse may press you to complete specific tasks, such as transporting a mysterious item, defeating a hated enemy, or stealing important documents. Work with your Narrator to determine how your curse is leveraged in these situations. After you complete several such tasks, your infamy grows. You are known by all people within 100 miles of your Prestige Center, many of whom hold you in fearful respect. You and your companions are given a moderate lifestyle in settlements within this area by those who dare not risk your curse.", + "type": "adventures_and_advancement", + "parent": "a5e-gpg_cursed" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 526, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cursed Connections\r\n1. Your parent who made the deal and left you cursed for their own ends.\r\n2. A cultist devoted to the entity that cursed you and who reveres you as well.\r\n3. Your childhood romantic interest, ultimately marked in some way by your curse.\r\n4. A childhood friend who pulled away from you when they realized you were cursed.\r\n5. The entity that cursed you.\r\n6. A priest or sage who tried—and failed—to break your curse years ago.\r\n7. The kindly family that took you in out of pity.\r\n8. The law enforcers who see you as a dangerous troublemaker.\r\n9. Another accursed individual with whom you sometimes commiserate.\r\n10. A scholar or researcher obsessed with the entity that cursed you.\r\n\r\n### Cursed Memento\r\n1. A locket or ring once owned by someone who was killed when your curse first manifested.\r\n2. A childhood toy, well worn, which has always been soothing.\r\n3. A torn piece of parchment which may lead you to the person who can break your curse.\r\n4. A weapon or piece of ammunition set aside for the entity that cursed you.\r\n5. A unique scar, discoloration, or other mark on your body which shows your curse.\r\n6. Nightmares brought on by the curse which often wake you, screaming.\r\n7. A charm meant to keep your curse contained. You haven’t noticed an effect.\r\n8. An artistic rendering of the entity that cursed you\r\n9. A flask once given to you as well-meaning consolation.\r\n10. A small knife you used as a child to protect yourself, because no one else would.", + "type": "connection_and_memento", + "parent": "a5e-gpg_cursed" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 527, + "fields": { + "name": "Ability Score Increase", + "desc": "+1 Wisdom and one other ability score of your choice.", + "type": "ability_score", + "parent": "a5e-gpg_haunted" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 528, + "fields": { + "name": "Skill Proficiencies", + "desc": "Religion, and any one skill of your choice that the spirit has imparted to you.", + "type": "skill_proficiency", + "parent": "a5e-gpg_haunted" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 529, + "fields": { + "name": "Languages", + "desc": "Two of your choice, one of which is the spirit’s native language.", + "type": "language", + "parent": "a5e-gpg_haunted" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 530, + "fields": { + "name": "Suggested Equipment", + "desc": "2 days worth of rations, bell, 5 candles, ink, ink pen, 10 sheets of paper, 5 pieces of chalk, traveler’s clothes", + "type": "equipment", + "parent": "a5e-gpg_haunted" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 531, + "fields": { + "name": "Silent Aid", + "desc": "Being in tune with your spirit allows them to point out something you might have missed, if only for their own purposes. You gain a +2 to your choice of your passive Perception, Investigation, or Insight score, depending on your spirit’s skills.\r\nIf you banish, free, or otherwise lose your spirit, consult with the Narrator to choose an appropriate feature from another background. Alternatively, the Narrator may rule that you’ve become a beacon for the supernatural and another spirit has taken up haunting you.", + "type": "feature", + "parent": "a5e-gpg_haunted" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 532, + "fields": { + "name": "Adventures and Advancement", + "desc": "Whether you seek to violently banish the restless dead or help them to peacefully pass on, you will gain a reputation as a spirit-speaker. Common folk and nobility alike are likely to approach you for advice and aid with everything from hereditary curses to irritable poltergeists to speaking with a dead relative about a lost treasure.\r\nAfter you have solved several such problems, you’ve become known to those who deal in certain kinds of esoteric knowledge and gain access to their private libraries. These vast personal collections contain esoteric mysteries, such as those answerable with a DC 25 Arcana, History, or Religion check. While using such a library your host will provide you and your companions a moderate or rich lifestyle, depending on their means and how impressed they are by your exploits.", + "type": "adventures_and_advancement", + "parent": "a5e-gpg_haunted" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 533, + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Haunted Connections\r\n1. A descendant of your spirit who blames them for current misfortunes.\r\n2. Another haunted individual who came to you seeking help with their spirit in a time of crisis.\r\n3. The murderer who killed your spirit.\r\n4. A ghost who has consulted your spirit during a time of need.\r\n5. The bereaved spouse your spirit left behind who will do nearly anything to speak with their lost love.\r\n6. Your spirit, a childhood friend or a romantic partner before tragedy struck.\r\n7. Your spirits, a gaggle of bickering ancestors trying to use you to right a terrible wrong.\r\n8. A relative of your spirit who killed them in order to inherit a fortune.\r\n9. Your spirit, a hateful enemy of your family who is bound to you through a quirk of misfortune.\r\n10. Your spirit, who haunts their own body after you stole it and took up residence.\r\n\r\n### Haunted Memento\r\n1. A personal item (jewelry, tools, weapon, ect) once owned by your spirit. You can’t seem to get rid of it.\r\n2. A locket containing the image of the one who haunts you.\r\n3. The scent of your spirit’s favored cologne or perfume that clings to you.\r\n4. A small pouch of soil taken from your spirit’s grave.\r\n5. A letter of introduction penned by your spirit, giving you their blessing.\r\n6. Journals of your spirit’s life.\r\n7. An innocuous nonmagical item that your spirit tells you is of dire importance.\r\n8. The manacles that shackled your spirit before their death.\r\n9. A cryptic note written by your spirit who has no memory of its existence.\r\n10. The signet ring of your spirit, who you claim as your parent or ancestor.", + "type": "connection_and_memento", + "parent": "a5e-gpg_haunted" + } +} +] diff --git a/data/v2/green-ronin/tdcs/Background.json b/data/v2/green-ronin/tdcs/Background.json index 1fa8ccf6..702eb1f6 100644 --- a/data/v2/green-ronin/tdcs/Background.json +++ b/data/v2/green-ronin/tdcs/Background.json @@ -1,47 +1,47 @@ [ - { - "model": "api_v2.background", - "pk": "tdcs_crime-syndicate-member", - "fields": { - "name": "Crime Syndicate Member", - "desc": "Whether you grew up in slum-run streets bamboozling foolish gamblers out of their fortune, or spent your youth pilfering loose coin from the pockets of less-attentive travelers, your lifestyle of deceiving-to-survive eventually drew the attention of an organized and dangerous crime syndicate. Offering protection, a modicum of kinship, and a number of useful resources to further develop your craft as a criminal, you agree to receive the syndicate’s brand and join their ranks.\r\nYou might have been working the syndicate’s lower ranks, wandering the alleys as a simple cutpurse to fill the meager coffers with wayward gold until the opportunity arose to climb the professional ladder. Or you may have become a clever actor and liar whose skill in blending in with all facets of society has made you an indispensable agent of information gathering. Perhaps your technique with a blade and swiftness of action led you to become a feared hitman for a syndicate boss, sending you on the occasional contract to snuff the life of some unfortunate soul who crossed them. Regardless, while the threat of the law is ever looming, the advantages to having a foot in such a powerful cartel can greatly outweigh the paranoia.", - "document": "tdcs" - } - }, - { - "model": "api_v2.background", - "pk": "tdcs_elemental-warden", - "fields": { - "name": "Elemental Warden", - "desc": "Away from the complex political struggles of the massive cities, you’ve instead been raised to revere and uphold the protection of the natural world, while policing, bending, and guiding the elemental powers that either foster life or destroy it. Living among smaller bands of tribal societies means you have stronger ties to your neighbors than most, and the protection of this way of life is of cardinal importance. Each elemental warden is tethered to one of the four elemental tribes and their villages. You must select one: Fire, Water, Earth, or Wind.\r\nYour upbringing may have prepared you to be a fierce warrior, trained in combat to defend your culture and charge as protectors of the rifts. It’s possible your meditation on the balance of the elements has brought you peace of mind with strength of body as a monk. Perhaps you found strength in bending the elements yourself, joining the ranks of the powerful elemental druids. Regardless, your loyalties ultimately lie with the continued safety of your tribe, and you’ve set out to gather allies to your cause and learn more about the world around you.", - "document": "tdcs" - } - }, - { - "model": "api_v2.background", - "pk": "tdcs_fate-touched", - "fields": { - "name": "Fate-Touched", - "desc": "Many lives and many souls find their ways through the patterns of fate and destiny, their threads following the path meant for them, oblivious and eager to be a part of the woven essence of history meant for them. Some souls, however, glide forth with mysterious influence, their threads bending the weave around them, toward them, unknowingly guiding history itself wherever they walk. Events both magnificent and catastrophic tend to follow such individuals. These souls often become great rulers and terrible tyrants, powerful mages, religious leaders, and legendary heroes of lore. These are the fate-touched.\nFew fate-touched ever become aware of their prominent nature. Outside of powerful divination magics, it’s extremely difficult to confirm one as fate-touched. There are many communities that regard the status as a terrible omen, treating a confirmed fate-touched with mistrust and fear. Others seek them as a blessing, rallying around them for guidance. Some of renown and power grow jealous, wishing to bend a fate-touched beneath their will, and some stories speak of mages of old attempting to extract or transfer the essence itself.\nPlayers are not intended to select this background, but this is instead provided for the dungeon master to consider for one or more of their players, or perhaps a prominent NPC, as their campaign unfolds. It provides very minor mechanical benefit, but instead adds an element of lore, importance, and fate-bearing responsibility to a character within your story. Being fate-touched overlaps and co-exists with the character’s current background, only adding to their mystique. Consider it for a player character who would benefit from being put more central to the coming conflicts of your adventure, or for an NPC who may require protection as they come into their destiny. Perhaps consider a powerful villain discovering their fate-twisting nature and using it to wreak havoc. All of these possibilities and more can be explored should you choose to include a fate-touched within your campaign.", - "document": "tdcs" - } - }, - { - "model": "api_v2.background", - "pk": "tdcs_lyceum-student", - "fields": { - "name": "Lyceum Student", - "desc": "You most likely came up through money or a family of social prestige somewhere in the world, as tuition at a lyceum is not inexpensive. Your interests and pursuits have brought you to the glittering halls of a place of learning, soaking in all and every lesson you can to better make your mark on the world (or at least you should be, but every class has its slackers). However, the call to adventure threatens to pull you from your studies, and now the challenge of balancing your education with the tide of destiny sweeping you away is looming.\r\nYou may have come to better research and understand the history and lore of the lands you now call home, perhaps seeking a future here at your lyceum as a professor. You could also have been drawn by the promise of prosperity in politics, learning the inner workings of government and alliances to better position yourself as a future writer of history. Perhaps you’ve discovered a knack for the arcane, coming here to focus on refining your spellcraft in the footsteps of some of the finest wizards and sorcerers in days of yore.", - "document": "tdcs" - } - }, - { - "model": "api_v2.background", - "pk": "tdcs_recovered-cultist", - "fields": { - "name": "Recovered Cultist", - "desc": "Dark deities whisper and promise great power to those who listen. Their cults are scattered and separated, with little to no unity between the greater evils. Hidden hierarchies of power-hungry mortals corrupt and seduce, promising a sliver of the same power they had been promised when the time comes to reap their harvest.\r\nYou once belonged to such a cult. Perhaps it was brief, embracing the rebellious spirit of youth and curious where this path may take you. You also may have felt alone and lost, this community offering a welcome you had been subconsciously seeking. It’s possible you were raised from the beginning to pray to the gods of shadow and death. Then one day the veil was lifted and the cruel truth shook your faith, sending you running from the false promises and seeking redemption.\r\nYou have been freed from the bindings of these dangerous philosophies, but few secret societies find comfort until those who abandon their way are rotting beneath the soil.", - "document": "tdcs" - } +{ + "model": "api_v2.background", + "pk": "tdcs_crime-syndicate-member", + "fields": { + "name": "Crime Syndicate Member", + "desc": "Whether you grew up in slum-run streets bamboozling foolish gamblers out of their fortune, or spent your youth pilfering loose coin from the pockets of less-attentive travelers, your lifestyle of deceiving-to-survive eventually drew the attention of an organized and dangerous crime syndicate. Offering protection, a modicum of kinship, and a number of useful resources to further develop your craft as a criminal, you agree to receive the syndicate’s brand and join their ranks.\r\nYou might have been working the syndicate’s lower ranks, wandering the alleys as a simple cutpurse to fill the meager coffers with wayward gold until the opportunity arose to climb the professional ladder. Or you may have become a clever actor and liar whose skill in blending in with all facets of society has made you an indispensable agent of information gathering. Perhaps your technique with a blade and swiftness of action led you to become a feared hitman for a syndicate boss, sending you on the occasional contract to snuff the life of some unfortunate soul who crossed them. Regardless, while the threat of the law is ever looming, the advantages to having a foot in such a powerful cartel can greatly outweigh the paranoia.", + "document": "tdcs" } -] \ No newline at end of file +}, +{ + "model": "api_v2.background", + "pk": "tdcs_elemental-warden", + "fields": { + "name": "Elemental Warden", + "desc": "Away from the complex political struggles of the massive cities, you’ve instead been raised to revere and uphold the protection of the natural world, while policing, bending, and guiding the elemental powers that either foster life or destroy it. Living among smaller bands of tribal societies means you have stronger ties to your neighbors than most, and the protection of this way of life is of cardinal importance. Each elemental warden is tethered to one of the four elemental tribes and their villages. You must select one: Fire, Water, Earth, or Wind.\r\nYour upbringing may have prepared you to be a fierce warrior, trained in combat to defend your culture and charge as protectors of the rifts. It’s possible your meditation on the balance of the elements has brought you peace of mind with strength of body as a monk. Perhaps you found strength in bending the elements yourself, joining the ranks of the powerful elemental druids. Regardless, your loyalties ultimately lie with the continued safety of your tribe, and you’ve set out to gather allies to your cause and learn more about the world around you.", + "document": "tdcs" + } +}, +{ + "model": "api_v2.background", + "pk": "tdcs_fate-touched", + "fields": { + "name": "Fate-Touched", + "desc": "Many lives and many souls find their ways through the patterns of fate and destiny, their threads following the path meant for them, oblivious and eager to be a part of the woven essence of history meant for them. Some souls, however, glide forth with mysterious influence, their threads bending the weave around them, toward them, unknowingly guiding history itself wherever they walk. Events both magnificent and catastrophic tend to follow such individuals. These souls often become great rulers and terrible tyrants, powerful mages, religious leaders, and legendary heroes of lore. These are the fate-touched.\nFew fate-touched ever become aware of their prominent nature. Outside of powerful divination magics, it’s extremely difficult to confirm one as fate-touched. There are many communities that regard the status as a terrible omen, treating a confirmed fate-touched with mistrust and fear. Others seek them as a blessing, rallying around them for guidance. Some of renown and power grow jealous, wishing to bend a fate-touched beneath their will, and some stories speak of mages of old attempting to extract or transfer the essence itself.\nPlayers are not intended to select this background, but this is instead provided for the dungeon master to consider for one or more of their players, or perhaps a prominent NPC, as their campaign unfolds. It provides very minor mechanical benefit, but instead adds an element of lore, importance, and fate-bearing responsibility to a character within your story. Being fate-touched overlaps and co-exists with the character’s current background, only adding to their mystique. Consider it for a player character who would benefit from being put more central to the coming conflicts of your adventure, or for an NPC who may require protection as they come into their destiny. Perhaps consider a powerful villain discovering their fate-twisting nature and using it to wreak havoc. All of these possibilities and more can be explored should you choose to include a fate-touched within your campaign.", + "document": "tdcs" + } +}, +{ + "model": "api_v2.background", + "pk": "tdcs_lyceum-student", + "fields": { + "name": "Lyceum Student", + "desc": "You most likely came up through money or a family of social prestige somewhere in the world, as tuition at a lyceum is not inexpensive. Your interests and pursuits have brought you to the glittering halls of a place of learning, soaking in all and every lesson you can to better make your mark on the world (or at least you should be, but every class has its slackers). However, the call to adventure threatens to pull you from your studies, and now the challenge of balancing your education with the tide of destiny sweeping you away is looming.\r\nYou may have come to better research and understand the history and lore of the lands you now call home, perhaps seeking a future here at your lyceum as a professor. You could also have been drawn by the promise of prosperity in politics, learning the inner workings of government and alliances to better position yourself as a future writer of history. Perhaps you’ve discovered a knack for the arcane, coming here to focus on refining your spellcraft in the footsteps of some of the finest wizards and sorcerers in days of yore.", + "document": "tdcs" + } +}, +{ + "model": "api_v2.background", + "pk": "tdcs_recovered-cultist", + "fields": { + "name": "Recovered Cultist", + "desc": "Dark deities whisper and promise great power to those who listen. Their cults are scattered and separated, with little to no unity between the greater evils. Hidden hierarchies of power-hungry mortals corrupt and seduce, promising a sliver of the same power they had been promised when the time comes to reap their harvest.\r\nYou once belonged to such a cult. Perhaps it was brief, embracing the rebellious spirit of youth and curious where this path may take you. You also may have felt alone and lost, this community offering a welcome you had been subconsciously seeking. It’s possible you were raised from the beginning to pray to the gods of shadow and death. Then one day the veil was lifted and the cruel truth shook your faith, sending you running from the false promises and seeking redemption.\r\nYou have been freed from the bindings of these dangerous philosophies, but few secret societies find comfort until those who abandon their way are rotting beneath the soil.", + "document": "tdcs" + } +} +] diff --git a/data/v2/green-ronin/tdcs/BackgroundBenefit.json b/data/v2/green-ronin/tdcs/BackgroundBenefit.json index 1193a926..06e23e3d 100644 --- a/data/v2/green-ronin/tdcs/BackgroundBenefit.json +++ b/data/v2/green-ronin/tdcs/BackgroundBenefit.json @@ -1,232 +1,232 @@ [ - { - "model": "api_v2.backgroundbenefit", - "pk": 497, - "fields": { - "name": "Skill Proficiencies", - "desc": "Deception, plus your choice of one between Sleight of Hand or Stealth.", - "type": "skill_proficiency", - "parent": "tdcs_crime-syndicate-member" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 498, - "fields": { - "name": "Languages", - "desc": "Thieves’ Cant", - "type": "language", - "parent": "tdcs_crime-syndicate-member" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 499, - "fields": { - "name": "Tool Proficiencies", - "desc": "Your choice of one from Thieves’ Tools, Forgery Kit, or Disguise Kit.", - "type": "tool_proficiency", - "parent": "tdcs_crime-syndicate-member" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 500, - "fields": { - "name": "Equipment", - "desc": "A set of dark common clothes including a hood, a set of tools to match your choice of tool proficiency, and a belt pouch containing 10g.", - "type": "equipment", - "parent": "tdcs_crime-syndicate-member" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 501, - "fields": { - "name": "A Favor In Turn", - "desc": "You have gained enough clout within the syndicate that you can call in a favor from your contacts, should you be close enough to a center of syndicate activity. A request for a favor can be no longer than 20 words, and is passed up the chain to an undisclosed syndicate boss for approval. This favor can take a shape up to the DM’s discretion depending on the request, with varying speeds of fulfillment: If muscle is requested, an NPC syndicate minion can temporarily aid the party. If money is needed, a small loan can be provided. If you’ve been imprisoned, they can look into breaking you free, or paying off the jailer.\r\nThe turn comes when a favor is asked to be repaid. The favor debt can be called in without warning, and many times with intended immediacy. Perhaps the player is called to commit a specific burglary without the option to decline. Maybe they must press a dignitary for a specific secret at an upcoming ball. The syndicate could even request a hit on an NPC, no questions asked or answered. The DM is to provide a debt call proportionate to the favor fulfilled. If a favor is not repaid within a reasonable period of time, membership to the crime syndicate can be revoked, and if the debt is large enough, the player may become the next hit contract to make the rounds.", - "type": "feature", - "parent": "tdcs_crime-syndicate-member" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 502, - "fields": { - "name": "Suggested Characteristics", - "desc": "Use the tables for the Criminal background in the PHB as the basis for your traits and motivations, modifying the entries when appropriate to suit your identity as a member of a crime syndicate. Your bond is likely associated with your fellow syndicate members or the individual who introduced you to the organization. Your ideal probably involves establishing your importance and indispensability within the syndicate. You joined to improve your livelihood and sense of purpose.", - "type": "suggested_characteristics", - "parent": "tdcs_crime-syndicate-member" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 503, - "fields": { - "name": "Skill Proficiencies", - "desc": "Your choice of two from among Arcana, History, and Persuasion.", - "type": "skill_proficiency", - "parent": "tdcs_lyceum-student" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 504, - "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", - "parent": "tdcs_lyceum-student" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 505, - "fields": { - "name": "Equipment", - "desc": "A set of fine clothes, a lyceum student uniform, a writing kit (small pouch with a quill, ink, folded parchment, and a small penknife), and a belt pouch containing 10g.", - "type": "equipment", - "parent": "tdcs_lyceum-student" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 506, - "fields": { - "name": "Student Privilege", - "desc": "You’ve cleared enough lessons, and gained an ally or two on staff, to have access to certain chambers within the lyceum (and some other allied universities) that outsiders would not. This allows use of any Tool Kit, so long as the Tool Kit is used on the grounds of the lyceum and is not removed from its respective chamber (each tool kit is magically marked and will sound an alarm if removed). More dangerous kits and advanced crafts (such as use of a Poisoner’s Kit, or the enchanting of a magical item) might require staff supervision. You may also have access to free crafting materials and enchanting tables, so long as they are relatively inexpensive, or your argument for them is convincing (up to the staff’s approval and DM’s discretion).", - "type": "feature", - "parent": "tdcs_lyceum-student" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 507, - "fields": { - "name": "Suggested Characteristics", - "desc": "Use the tables for the Sage background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your pursuits at the lyceum. Your bond is likely associated with your goals as a student, and eventually a graduate. Your ideal probably involves your hopes in using the knowledge you gain at the lyceum, and your travels as an adventurer, to tailor the world to your liking.", - "type": "suggested_characteristics", - "parent": "tdcs_lyceum-student" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 508, - "fields": { - "name": "Skill Proficiencies", - "desc": "Nature, plus your choice of one between Arcana or Survival.", - "type": "skill_proficiency", - "parent": "tdcs_elemental-warden" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 509, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "tdcs_elemental-warden" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 510, - "fields": { - "name": "Tool Proficiencies", - "desc": "Herbalism Kit", - "type": "tool_proficiency", - "parent": "tdcs_elemental-warden" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 511, - "fields": { - "name": "Equipment", - "desc": "A staff, hunting gear (a shortbow with 20 arrows, or a hunting trap), a set of traveler’s clothes, a belt pouch containing 10 gp.", - "type": "equipment", - "parent": "tdcs_elemental-warden" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 512, - "fields": { - "name": "Elemental Harmony", - "desc": "Your upbringing surrounded by such strong, wild elemental magics has attuned your senses to the very nature of their chaotic forces, enabling you to subtly bend them to your will in small amounts. You learn the _Prestidigitation_ Cantrip, but can only produce the extremely minor effects below that involve the element of your chosen elemental tribe: \r\n* You create an instantaneous puff of wind strong enough to blow papers off a desk, or mess up someone’s hair (Wind). \r\n* You instantaneously create and control a burst of flame small enough to light or snuff out a candle, a torch, or a small campfire. (Fire). \r\n* You instantaneously create a small rock within your hand, no larger than a gold coin, that turns to dust after a minute (Earth). \r\n* You instantaneously create enough hot or cold water to fill a small glass (Water).", - "type": "feature", - "parent": "tdcs_elemental-warden" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 513, - "fields": { - "name": "Suggested Characteristics", - "desc": "Use the tables for the Outlander background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your ties to your upbringing. Your bond is likely associated with those you respect whom you grew up around. Your ideal probably involves your wanting to understand your place in the world, not just the tribe, and whether you feel your destiny reaches beyond just watching the rift.", - "type": "suggested_characteristics", - "parent": "tdcs_elemental-warden" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 514, - "fields": { - "name": "Skill Proficiencies", - "desc": "Religion and Deception.", - "type": "skill_proficiency", - "parent": "tdcs_recovered-cultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 515, - "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "tdcs_recovered-cultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 516, - "fields": { - "name": "Equipment", - "desc": "Vestments and a holy symbol of your previous cult, a set of common clothes, a belt pouch containing 15 gp.", - "type": "equipment", - "parent": "tdcs_recovered-cultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 517, - "fields": { - "name": "Wicked Awareness", - "desc": "Your time worshipping in secrecy and shadow at the altar of malevolent forces has left you with insight and keen awareness to those who still operate in such ways. You can often spot hidden signs, messages, and signals left in populated places. If actively seeking signs of a cult or dark following, you have an easier time locating and decoding the signs or social interactions that signify cult activity, gaining advantage on any ability checks to discover such details.", - "type": "feature", - "parent": "tdcs_recovered-cultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 518, - "fields": { - "name": "Suggested Characteristics", - "desc": "Use the tables for the Acolyte background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your ties to your intent on fleeing your past and rectifying your future. Your bond is likely associated with those who gave you the insight and strength to flee your old ways. Your ideal probably involves your wishing to take down and destroy those who promote the dark ways you escaped, and perhaps finding new faith in a forgiving god.", - "type": "suggested_characteristics", - "parent": "tdcs_recovered-cultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 519, - "fields": { - "name": "Fortune’s Grace", - "desc": "Your fate-touched essence occasionally leads surrounding events to shift in your favor. You gain 1 Luck point, as per the Lucky feat outlined within the Player’s Handbook pg 167. This luck point is used in the same fashion as the feat, and you regain this expended luck point when you finish a long rest. If you already have the Lucky feat, you add this luck point to your total for the feat.", - "type": "feature", - "parent": "tdcs_fate-touched" - } - } -] \ No newline at end of file +{ + "model": "api_v2.backgroundbenefit", + "pk": 497, + "fields": { + "name": "Skill Proficiencies", + "desc": "Deception, plus your choice of one between Sleight of Hand or Stealth.", + "type": "skill_proficiency", + "parent": "tdcs_crime-syndicate-member" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 498, + "fields": { + "name": "Languages", + "desc": "Thieves’ Cant", + "type": "language", + "parent": "tdcs_crime-syndicate-member" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 499, + "fields": { + "name": "Tool Proficiencies", + "desc": "Your choice of one from Thieves’ Tools, Forgery Kit, or Disguise Kit.", + "type": "tool_proficiency", + "parent": "tdcs_crime-syndicate-member" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 500, + "fields": { + "name": "Equipment", + "desc": "A set of dark common clothes including a hood, a set of tools to match your choice of tool proficiency, and a belt pouch containing 10g.", + "type": "equipment", + "parent": "tdcs_crime-syndicate-member" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 501, + "fields": { + "name": "A Favor In Turn", + "desc": "You have gained enough clout within the syndicate that you can call in a favor from your contacts, should you be close enough to a center of syndicate activity. A request for a favor can be no longer than 20 words, and is passed up the chain to an undisclosed syndicate boss for approval. This favor can take a shape up to the DM’s discretion depending on the request, with varying speeds of fulfillment: If muscle is requested, an NPC syndicate minion can temporarily aid the party. If money is needed, a small loan can be provided. If you’ve been imprisoned, they can look into breaking you free, or paying off the jailer.\r\nThe turn comes when a favor is asked to be repaid. The favor debt can be called in without warning, and many times with intended immediacy. Perhaps the player is called to commit a specific burglary without the option to decline. Maybe they must press a dignitary for a specific secret at an upcoming ball. The syndicate could even request a hit on an NPC, no questions asked or answered. The DM is to provide a debt call proportionate to the favor fulfilled. If a favor is not repaid within a reasonable period of time, membership to the crime syndicate can be revoked, and if the debt is large enough, the player may become the next hit contract to make the rounds.", + "type": "feature", + "parent": "tdcs_crime-syndicate-member" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 502, + "fields": { + "name": "Suggested Characteristics", + "desc": "Use the tables for the Criminal background in the PHB as the basis for your traits and motivations, modifying the entries when appropriate to suit your identity as a member of a crime syndicate. Your bond is likely associated with your fellow syndicate members or the individual who introduced you to the organization. Your ideal probably involves establishing your importance and indispensability within the syndicate. You joined to improve your livelihood and sense of purpose.", + "type": "suggested_characteristics", + "parent": "tdcs_crime-syndicate-member" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 503, + "fields": { + "name": "Skill Proficiencies", + "desc": "Your choice of two from among Arcana, History, and Persuasion.", + "type": "skill_proficiency", + "parent": "tdcs_lyceum-student" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 504, + "fields": { + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "tdcs_lyceum-student" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 505, + "fields": { + "name": "Equipment", + "desc": "A set of fine clothes, a lyceum student uniform, a writing kit (small pouch with a quill, ink, folded parchment, and a small penknife), and a belt pouch containing 10g.", + "type": "equipment", + "parent": "tdcs_lyceum-student" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 506, + "fields": { + "name": "Student Privilege", + "desc": "You’ve cleared enough lessons, and gained an ally or two on staff, to have access to certain chambers within the lyceum (and some other allied universities) that outsiders would not. This allows use of any Tool Kit, so long as the Tool Kit is used on the grounds of the lyceum and is not removed from its respective chamber (each tool kit is magically marked and will sound an alarm if removed). More dangerous kits and advanced crafts (such as use of a Poisoner’s Kit, or the enchanting of a magical item) might require staff supervision. You may also have access to free crafting materials and enchanting tables, so long as they are relatively inexpensive, or your argument for them is convincing (up to the staff’s approval and DM’s discretion).", + "type": "feature", + "parent": "tdcs_lyceum-student" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 507, + "fields": { + "name": "Suggested Characteristics", + "desc": "Use the tables for the Sage background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your pursuits at the lyceum. Your bond is likely associated with your goals as a student, and eventually a graduate. Your ideal probably involves your hopes in using the knowledge you gain at the lyceum, and your travels as an adventurer, to tailor the world to your liking.", + "type": "suggested_characteristics", + "parent": "tdcs_lyceum-student" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 508, + "fields": { + "name": "Skill Proficiencies", + "desc": "Nature, plus your choice of one between Arcana or Survival.", + "type": "skill_proficiency", + "parent": "tdcs_elemental-warden" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 509, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "tdcs_elemental-warden" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 510, + "fields": { + "name": "Tool Proficiencies", + "desc": "Herbalism Kit", + "type": "tool_proficiency", + "parent": "tdcs_elemental-warden" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 511, + "fields": { + "name": "Equipment", + "desc": "A staff, hunting gear (a shortbow with 20 arrows, or a hunting trap), a set of traveler’s clothes, a belt pouch containing 10 gp.", + "type": "equipment", + "parent": "tdcs_elemental-warden" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 512, + "fields": { + "name": "Elemental Harmony", + "desc": "Your upbringing surrounded by such strong, wild elemental magics has attuned your senses to the very nature of their chaotic forces, enabling you to subtly bend them to your will in small amounts. You learn the _Prestidigitation_ Cantrip, but can only produce the extremely minor effects below that involve the element of your chosen elemental tribe: \r\n* You create an instantaneous puff of wind strong enough to blow papers off a desk, or mess up someone’s hair (Wind). \r\n* You instantaneously create and control a burst of flame small enough to light or snuff out a candle, a torch, or a small campfire. (Fire). \r\n* You instantaneously create a small rock within your hand, no larger than a gold coin, that turns to dust after a minute (Earth). \r\n* You instantaneously create enough hot or cold water to fill a small glass (Water).", + "type": "feature", + "parent": "tdcs_elemental-warden" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 513, + "fields": { + "name": "Suggested Characteristics", + "desc": "Use the tables for the Outlander background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your ties to your upbringing. Your bond is likely associated with those you respect whom you grew up around. Your ideal probably involves your wanting to understand your place in the world, not just the tribe, and whether you feel your destiny reaches beyond just watching the rift.", + "type": "suggested_characteristics", + "parent": "tdcs_elemental-warden" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 514, + "fields": { + "name": "Skill Proficiencies", + "desc": "Religion and Deception.", + "type": "skill_proficiency", + "parent": "tdcs_recovered-cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 515, + "fields": { + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "tdcs_recovered-cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 516, + "fields": { + "name": "Equipment", + "desc": "Vestments and a holy symbol of your previous cult, a set of common clothes, a belt pouch containing 15 gp.", + "type": "equipment", + "parent": "tdcs_recovered-cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 517, + "fields": { + "name": "Wicked Awareness", + "desc": "Your time worshipping in secrecy and shadow at the altar of malevolent forces has left you with insight and keen awareness to those who still operate in such ways. You can often spot hidden signs, messages, and signals left in populated places. If actively seeking signs of a cult or dark following, you have an easier time locating and decoding the signs or social interactions that signify cult activity, gaining advantage on any ability checks to discover such details.", + "type": "feature", + "parent": "tdcs_recovered-cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 518, + "fields": { + "name": "Suggested Characteristics", + "desc": "Use the tables for the Acolyte background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your ties to your intent on fleeing your past and rectifying your future. Your bond is likely associated with those who gave you the insight and strength to flee your old ways. Your ideal probably involves your wishing to take down and destroy those who promote the dark ways you escaped, and perhaps finding new faith in a forgiving god.", + "type": "suggested_characteristics", + "parent": "tdcs_recovered-cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 519, + "fields": { + "name": "Fortune’s Grace", + "desc": "Your fate-touched essence occasionally leads surrounding events to shift in your favor. You gain 1 Luck point, as per the Lucky feat outlined within the Player’s Handbook pg 167. This luck point is used in the same fashion as the feat, and you regain this expended luck point when you finish a long rest. If you already have the Lucky feat, you add this luck point to your total for the feat.", + "type": "feature", + "parent": "tdcs_fate-touched" + } +} +] diff --git a/data/v2/kobold-press/toh/Background.json b/data/v2/kobold-press/toh/Background.json index e44fe6b1..6d1f23cd 100644 --- a/data/v2/kobold-press/toh/Background.json +++ b/data/v2/kobold-press/toh/Background.json @@ -1,173 +1,173 @@ [ - { - "model": "api_v2.background", - "pk": "toh_court-servant", - "fields": { - "name": "Court Servant", - "desc": "Even though you are independent now, you were once a servant to a merchant, noble, regent, or other person of high station. You are an expert in complex social dynamics and knowledgeable in the history and customs of courtly life. Work with your GM to determine whom you served and why you are no longer a servant: did your master or masters retire and no longer require servants, did you resign from the service of a harsh master, did the court you served fall to a neighboring empire, or did something else happen?", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_desert-runner", - "fields": { - "name": "Desert Runner", - "desc": "You grew up in the desert. As a nomad, you moved from place to place, following the caravan trails. Your upbringing makes you more than just accustomed to desert living—you thrive there. Your family has lived in the desert for centuries, and you know more about desert survival than life in the towns and cities.", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_destined", - "fields": { - "name": "Destined", - "desc": "Duty is a complicated, tangled affair, be it filial, political, or civil. Sometimes, there's wealth and intrigue involved, but more often than not, there's also obligation and responsibility. You are a person with just such a responsibility. This could involve a noble title, an arranged marriage, a family business you're expected to administer, or an inherited civil office. You promised to fulfill this responsibility, you are desperately trying to avoid this duty, or you might even be seeking the person intended to be at your side. Regardless of the reason, you're on the road, heading toward or away from your destiny.\r\n\r\n### Destiny\r\nYou're a person who's running from something or hurtling headfirst towards something, but just what is it? The responsibility or event might be happily anticipated or simply dreaded; either way, you're committed to the path. Choose a destiny or roll a d8 and consult the table below.\r\n\r\n| d8 | Destiny |\r\n|---|---|\r\n| 1 | You are running away from a marriage. |\r\n| 2 | You are seeking your runaway betrothed. |\r\n| 3 | You don't want to take over your famous family business. |\r\n| 4 | You need to arrive at a religious site at a specific time to complete an event or prophecy. |\r\n| 5 | Your noble relative died, and you're required to take their vacant position. |\r\n| 6 | You are the reincarnation of a famous figure, and you're expected to live in an isolated temple. |\r\n| 7 | You were supposed to serve an honorary but dangerous position in your people's military. |\r\n| 8 | Members of your family have occupied a civil office (court scribe, sheriff, census official, or similar) for generations. |", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_diplomat", - "fields": { - "name": "Diplomat", - "desc": "You have always found harmonious solutions to conflict. You might have started mediating family conflicts as a child. When you were old enough to recognize aggression, you sought to defuse it. You often resolved disputes among neighbors, arriving at a fair middle ground satisfactory to all parties.", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_forest-dweller", - "fields": { - "name": "Forest Dweller", - "desc": "You are a creature of the forest, born and reared under a canopy of green. You expected to live all your days in the forest, at one with the green things of the world, until an unforeseen occurrence, traumatic or transformative, drove you from your familiar home and into the larger world. Civilization is strange to you, the open sky unfamiliar, and the bizarre ways of the so-called civilized world run counter to the truths of the natural world.", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_former-adventurer", - "fields": { - "name": "Former Adventurer", - "desc": "As you belted on your weapons and hoisted the pack onto your back, you never thought you'd become an adventurer again. But the heroic call couldn't be ignored. You've tried this once before—perhaps it showered you in wealth and glory or perhaps it ended with sorrow and regret. No one ever said adventuring came with a guarantee of success. Now, the time has come to set off toward danger once again. The reasons for picking up adventuring again vary. Could it be a calamitous threat to the town? The region? The world? Was the settled life not what you expected? Or did your past finally catch up to you? In the end, all that matters is diving back into danger. And it's time to show these new folks how it's done.\r\n\r\n### Reason for Retirement\r\nGiving up your first adventuring career was a turning point in your life. Triumph or tragedy, the reason why you gave it up might still haunt you and may shape your actions as you reenter the adventuring life. Choose the event that led you to stop adventuring or roll a d12 and consult the table below.\r\n\r\n| d12 | Event |\r\n|---|---|\r\n| 1 | Your love perished on one of your adventures, and you quit in despair. |\r\n| 2 | You were the only survivor after an ambush by a hideous beast. |\r\n| 3 | Legal entanglements forced you to quit, and they may cause you trouble again. |\r\n| 4 | A death in the family required you to return home. |\r\n| 5 | Your old group disowned you for some reason. |\r\n| 6 | A fabulous treasure allowed you to have a life of luxury, until the money ran out. |\r\n| 7 | An injury forced you to give up adventuring. |\r\n| 8 | You suffered a curse which doomed your former group, but the curse has finally faded away. |\r\n| 9 | You rescued a young child or creature and promised to care for them. They have since grown up and left. |\r\n| 10 | You couldn't master your fear and fled from a dangerous encounter, never to return. |\r\n| 11 | As a reward for helping an area, you were offered a position with the local authorities, and you accepted. |\r\n| 12 | You killed or defeated your nemesis. Now they are back, and you must finish the job. |", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_freebooter", - "fields": { - "name": "Freebooter", - "desc": "You sailed the seas as a freebooter, part of a pirate crew. You should come up with a name for your former ship and its captain, as well as its hunting ground and the type of ships you preyed on. Did you sail under the flag of a bloodthirsty captain, raiding coastal communities and putting everyone to the sword? Or were you part of a group of former slaves turned pirates, who battle to end the vile slave trade? Whatever ship you sailed on, you feel at home on board a seafaring vessel, and you have difficulty adjusting to long periods on dry land.", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_gamekeeper", - "fields": { - "name": "Gamekeeper", - "desc": "You are at home in natural environments, chasing prey or directing less skilled hunters in the best ways to track game through the brush. You know the requirements for encouraging a herd to grow, and you know what sustainable harvesting from a herd involves. You can train a hunting beast to recognize an owner and perform a half-dozen commands, given the time. You also know the etiquette for engaging nobility or other members of the upper classes, as they regularly seek your services, and you can carry yourself in a professional manner in such social circles.", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_innkeeper", - "fields": { - "name": "Innkeeper", - "desc": "You spent some time as an innkeeper, tavern keeper, or perhaps a bartender. It might have been in a small crossroads town, a fishing community, a fine caravanserai, or a large cosmopolitan community. You did it all; preparing food, tracking supplies, tapping kegs, and everything in between. All the while, you listened to the adventurers plan their quests, heard their tales, saw their amazing trophies, marveled at their terrible scars, and eyed their full purses. You watched them come and go, thinking, \"one day, I will have my chance.\" Your time is now.\r\n\r\n### Place of Employment\r\nWhere did you work before turning to the adventuring life? Choose an establishment or roll a d6 and consult the table below. Once you have this information, think about who worked with you, what sort of customers you served, and what sort of reputation your establishment had.\r\n\r\n| d6 | Establishment |\r\n|---|---|\r\n| 1 | Busy crossroads inn |\r\n| 2 | Disreputable tavern full of scum and villainy |\r\n| 3 | Caravanserai on a wide-ranging trade route |\r\n| 4 | Rough seaside pub |\r\n| 5 | Hostel serving only the wealthiest clientele |\r\n| 6 | Saloon catering to expensive and sometimes dangerous tastes |", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_mercenary-company-scion", - "fields": { - "name": "Mercenary Company Scion", - "desc": "You descend from a famous line of free company veterans, and your first memory is playing among the tents, training yards, and war rooms of one campaign or another. Adored or perhaps ignored by your parents, you spent your formative years learning weapons and armor skills from brave captains, camp discipline from burly sergeants, and a host of virtues and vices from the common foot soldiers. You've always been told you are special and destined to glory. The weight of your family's legacy, honor, or reputation can weigh heavily, inspiring you to great deeds, or it can be a factor you try to leave behind.\r\n\r\n### Mercenary Company Reputation\r\nYour family is part of or associated with a mercenary company. The company has a certain reputation that may or may not continue to impact your life. Roll a d8 or choose from the options in the Mercenary Company Reputation table to determine the reputation of this free company.\r\n\r\n| d8 | Mercenary Company Reputation |\r\n|---|---|\r\n| 1 | Infamous. The company's evil deeds follow any who are known to consort with them. |\r\n| 2 | Honest. An upstanding company whose words and oaths are trusted. |\r\n| 3 | Unknown. Few know of this company. Its deeds have yet to be written. |\r\n| 4 | Feared. For good or ill, this company is generally feared on the battlefield. |\r\n| 5 | Mocked. Though it tries hard, the company is the butt of many jokes and derision. |\r\n| 6 | Specialized. This company is known for a specific type of skill on or off the battlefield. |\r\n| 7 | Disliked. For well-known reasons, this company has a bad reputation. |\r\n| 8 | Famous. The company's great feats and accomplishments are known far and wide. |", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_mercenary-recruit", - "fields": { - "name": "Mercenary Recruit", - "desc": "Every year, the hopeful strive to earn a place in one of the great mercenary companies. Some of these would-be heroes received training from a mercenary company but needed more training before gaining membership. Others are full members but were selected to venture abroad to gain more experience before gaining a rank. You are one of these hopeful warriors, just beginning to carve your place in the world with blade, spell, or skill.", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_monstrous-adoptee", - "fields": { - "name": "Monstrous Adoptee", - "desc": "Songs and sagas tell of heroes who, as children, were raised by creatures most view as monsters. You were one such child. Found, taken, left, or otherwise given to your monstrous parents, you were raised as one of their own species. Life with your adopted family could not have been easy for you, but the adversity and hardships you experienced only made you stronger. Perhaps you were *rescued* from your adopted family after only a short time with them, or perhaps only now have you realized the truth of your heritage. Maybe you've since learned enough civilized behavior to get by, or perhaps your *monstrous* tendencies are more evident. As you set out to make your way in the world, the time you spent with your adopted parents continues to shape your present and your future.\r\n\r\n### Adopted\r\nPrior to becoming an adventurer, you defined your history by the creatures who raised you. Choose a type of creature for your adopted parents or roll a d10 and consult the table below. Work with your GM to determine which specific creature of that type adopted you. If you are of a particular race or species that matches a result on the table, your adopted parent can't be of the same race or species as you, as this background represents an individual raised by a creature or in a culture vastly different or even alien to their birth parents.\r\n\r\n| d10 | Creature Type |\r\n|---|---|\r\n| 1 | Humanoid (such as gnoll, goblin, kobold, or merfolk) |\r\n| 2 | Aberration (such as aboleth, chuul, cloaker, or otyugh) |\r\n| 3 | Beast (such as ape, bear, tyrannosaurus rex, or wolf) |\r\n| 4 | Celestial or fiend (such as balor, bearded devil, couatl, deva, or unicorn) |\r\n| 5 | Dragon (such as dragon turtle, pseudodragon, red dragon, or wyvern) |\r\n| 6 | Elemental (such as efreeti, gargoyle, salamander, or water elemental) |\r\n| 7 | Fey (such as dryad, green hag, satyr, or sprite) |\r\n| 8 | Giant (such as ettin, fire giant, ogre, or troll) |\r\n| 9 | Plant or ooze (such as awakened shrub, gray ooze, shambling mound, or treant) |\r\n| 10 | Monstrosity (such as behir, chimera, griffon, mimic, or minotaur) |", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_mysterious-origins", - "fields": { - "name": "Mysterious Origins", - "desc": "Your origins are a mystery even to you. You might recall fragments of your previous life, or you might dream of events that could be memories, but you can't be sure of what is remembered and what is imagined. You recall practical information and facts about the world and perhaps even your name, but your upbringing and life before you lost your memories now exist only in dreams or sudden flashes of familiarity. You can leave the details of your character's past up to your GM or give the GM a specific backstory that your character can't remember. Were you the victim of a spell gone awry, or did you voluntarily sacrifice your memories in exchange for power? Is your amnesia the result of a natural accident, or did you purposefully have your mind wiped in order to forget a memory you couldn't live with? Perhaps you have family or friends that are searching for you or enemies you can't even remember.", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_northern-minstrel", - "fields": { - "name": "Northern Minstrel", - "desc": "While the tribal warriors residing in other parts of the wintry north consider you to be soft and cowardly, you know the truth: life in northern cities and mead halls is not for the faint of heart. Whether you are a larger-than-life performer hailing from one of the skaldic schools, a contemplative scholar attempting to puzzle out the mysteries of the north, or a doughty warrior hoping to stave off the bleakness of the north, you have successfully navigated alleys and stages as treacherous as any ice-slicked ruin. You adventure for the thrill of adding new songs to your repertoire, adding new lore to your catalog, and proving false the claims of those so-called true northerners.\r\n\r\n### Skaldic Specialty\r\nEvery minstrel excels at certain types of performance. Choose one specialty or roll a d8 and consult the table below to determine your preferred type of performance.\r\n\r\n| d8 | Specialty |\r\n|---|---|\r\n| 1 | Recitation of epic poetry |\r\n| 2 | Singing |\r\n| 3 | Tale-telling |\r\n| 4 | Flyting (insult flinging) |\r\n| 5 | Yodeling |\r\n| 6 | Axe throwing |\r\n| 7 | Playing an instrument |\r\n| 8 | Fire eating or sword swallowing |", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_occultist", - "fields": { - "name": "Occultist", - "desc": "At your core, you are a believer in things others dismiss. The signs abound if you know where to look. Questions beget answers that spur further questions. The cycle is endless as you uncover layer after layer of mystery and secrets. Piercing the veil hiding beyond the surface of reality is an irresistible lure spurring you to delve into forgotten and dangerous places in the world. Perhaps you've always yearned toward the occult, or it could be that you encountered something or someone who opened your eyes to the possibilities. You may belong to some esoteric organization determined to uncover the mystery, a cult bent on using the secrets for a dark purpose, or you may be searching for answers on your own. As an occultist, you ask the questions reality doesn't want to answer.", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_parfumier", - "fields": { - "name": "Parfumier", - "desc": "You are educated and ambitious. You spent your youth apprenticed among a city's more reputable greenhouses, laboratories, and perfumeries. There, you studied botany and chemistry and explored properties and interactions with fine crystal, rare metals, and magic. You quickly mastered the skills to identify and process rare and complex botanical and alchemical samples and the proper extractions and infusions of essential oils, pollens, and other fragrant chemical compounds—natural or otherwise. Not all (dramatic) changes to one's lifestyle, calling, or ambitions are a result of social or financial decline. Some are simply decided upon. Regardless of your motivation or incentive for change, you have accepted that a comfortable life of research, science and business is—at least for now—a part of your past.", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_scoundrel", - "fields": { - "name": "Scoundrel", - "desc": "You were brought up in a poor neighborhood in a crowded town or city. You may have been lucky enough to have a leaky roof over your head, or perhaps you grew up sleeping in doorways or on the rooftops. Either way, you didn't have it easy, and you lived by your wits. While never a hardened criminal, you fell in with the wrong crowd, or you ended up in trouble for stealing food from an orange cart or clean clothes from a washing line. You're no stranger to the city watch in your hometown and have outwitted or outrun them many times.", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_sentry", - "fields": { - "name": "Sentry", - "desc": "In your youth, the defense of the city, the community, the caravan, or your patron was how you earned your coin. You might have been trained by an old, grizzled city watchman, or you might have been pressed into service by the local magistrate for your superior skills, size, or intellect. However you came to the role, you excelled at defending others. You have a nose for trouble, a keen eye for spotting threats, a strong arm to back it up, and you are canny enough to know when to act. Most importantly, though, you were a peace officer or a protector and not a member of an army which might march to war.\r\n\r\n### Specialization\r\nEach person or location that hires a sentry comes with its own set of unique needs and responsibilities. As a sentry, you fulfilled one of these unique roles. Choose a specialization or roll a d6 and consult the table below to define your expertise as a sentry.\r\n\r\n| d6 | Specialization |\r\n|---|---|\r\n| 1 | City or gate watch |\r\n| 2 | Bodyguard or jailor |\r\n| 3 | Caravan guard |\r\n| 4 | Palace or judicial sentry |\r\n| 5 | Shop guard |\r\n| 6 | Ecclesiastical or temple guard |", - "document": "toh" - } - }, - { - "model": "api_v2.background", - "pk": "toh_trophy-hunter", - "fields": { - "name": "Trophy Hunter", - "desc": "You hunt the mightiest beasts in the harshest environments, claiming their pelts as trophies and returning them to settled lands for a profit or to decorate your abode. You likely were set on this path since birth, following your parents on safaris and learning from their actions, but you may have instead come to this path as an adult after being swept away by the thrill of dominating the natural world. Many big game hunters pursue their quarry purely for pleasure, as a calming avocation, but others sell their skills to the highest bidder to amass wealth and reputation as a trophy hunter.", - "document": "toh" - } - } -] \ No newline at end of file +{ + "model": "api_v2.background", + "pk": "toh_court-servant", + "fields": { + "name": "Court Servant", + "desc": "Even though you are independent now, you were once a servant to a merchant, noble, regent, or other person of high station. You are an expert in complex social dynamics and knowledgeable in the history and customs of courtly life. Work with your GM to determine whom you served and why you are no longer a servant: did your master or masters retire and no longer require servants, did you resign from the service of a harsh master, did the court you served fall to a neighboring empire, or did something else happen?", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_desert-runner", + "fields": { + "name": "Desert Runner", + "desc": "You grew up in the desert. As a nomad, you moved from place to place, following the caravan trails. Your upbringing makes you more than just accustomed to desert living—you thrive there. Your family has lived in the desert for centuries, and you know more about desert survival than life in the towns and cities.", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_destined", + "fields": { + "name": "Destined", + "desc": "Duty is a complicated, tangled affair, be it filial, political, or civil. Sometimes, there's wealth and intrigue involved, but more often than not, there's also obligation and responsibility. You are a person with just such a responsibility. This could involve a noble title, an arranged marriage, a family business you're expected to administer, or an inherited civil office. You promised to fulfill this responsibility, you are desperately trying to avoid this duty, or you might even be seeking the person intended to be at your side. Regardless of the reason, you're on the road, heading toward or away from your destiny.\r\n\r\n### Destiny\r\nYou're a person who's running from something or hurtling headfirst towards something, but just what is it? The responsibility or event might be happily anticipated or simply dreaded; either way, you're committed to the path. Choose a destiny or roll a d8 and consult the table below.\r\n\r\n| d8 | Destiny |\r\n|---|---|\r\n| 1 | You are running away from a marriage. |\r\n| 2 | You are seeking your runaway betrothed. |\r\n| 3 | You don't want to take over your famous family business. |\r\n| 4 | You need to arrive at a religious site at a specific time to complete an event or prophecy. |\r\n| 5 | Your noble relative died, and you're required to take their vacant position. |\r\n| 6 | You are the reincarnation of a famous figure, and you're expected to live in an isolated temple. |\r\n| 7 | You were supposed to serve an honorary but dangerous position in your people's military. |\r\n| 8 | Members of your family have occupied a civil office (court scribe, sheriff, census official, or similar) for generations. |", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_diplomat", + "fields": { + "name": "Diplomat", + "desc": "You have always found harmonious solutions to conflict. You might have started mediating family conflicts as a child. When you were old enough to recognize aggression, you sought to defuse it. You often resolved disputes among neighbors, arriving at a fair middle ground satisfactory to all parties.", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_forest-dweller", + "fields": { + "name": "Forest Dweller", + "desc": "You are a creature of the forest, born and reared under a canopy of green. You expected to live all your days in the forest, at one with the green things of the world, until an unforeseen occurrence, traumatic or transformative, drove you from your familiar home and into the larger world. Civilization is strange to you, the open sky unfamiliar, and the bizarre ways of the so-called civilized world run counter to the truths of the natural world.", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_former-adventurer", + "fields": { + "name": "Former Adventurer", + "desc": "As you belted on your weapons and hoisted the pack onto your back, you never thought you'd become an adventurer again. But the heroic call couldn't be ignored. You've tried this once before—perhaps it showered you in wealth and glory or perhaps it ended with sorrow and regret. No one ever said adventuring came with a guarantee of success. Now, the time has come to set off toward danger once again. The reasons for picking up adventuring again vary. Could it be a calamitous threat to the town? The region? The world? Was the settled life not what you expected? Or did your past finally catch up to you? In the end, all that matters is diving back into danger. And it's time to show these new folks how it's done.\r\n\r\n### Reason for Retirement\r\nGiving up your first adventuring career was a turning point in your life. Triumph or tragedy, the reason why you gave it up might still haunt you and may shape your actions as you reenter the adventuring life. Choose the event that led you to stop adventuring or roll a d12 and consult the table below.\r\n\r\n| d12 | Event |\r\n|---|---|\r\n| 1 | Your love perished on one of your adventures, and you quit in despair. |\r\n| 2 | You were the only survivor after an ambush by a hideous beast. |\r\n| 3 | Legal entanglements forced you to quit, and they may cause you trouble again. |\r\n| 4 | A death in the family required you to return home. |\r\n| 5 | Your old group disowned you for some reason. |\r\n| 6 | A fabulous treasure allowed you to have a life of luxury, until the money ran out. |\r\n| 7 | An injury forced you to give up adventuring. |\r\n| 8 | You suffered a curse which doomed your former group, but the curse has finally faded away. |\r\n| 9 | You rescued a young child or creature and promised to care for them. They have since grown up and left. |\r\n| 10 | You couldn't master your fear and fled from a dangerous encounter, never to return. |\r\n| 11 | As a reward for helping an area, you were offered a position with the local authorities, and you accepted. |\r\n| 12 | You killed or defeated your nemesis. Now they are back, and you must finish the job. |", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_freebooter", + "fields": { + "name": "Freebooter", + "desc": "You sailed the seas as a freebooter, part of a pirate crew. You should come up with a name for your former ship and its captain, as well as its hunting ground and the type of ships you preyed on. Did you sail under the flag of a bloodthirsty captain, raiding coastal communities and putting everyone to the sword? Or were you part of a group of former slaves turned pirates, who battle to end the vile slave trade? Whatever ship you sailed on, you feel at home on board a seafaring vessel, and you have difficulty adjusting to long periods on dry land.", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_gamekeeper", + "fields": { + "name": "Gamekeeper", + "desc": "You are at home in natural environments, chasing prey or directing less skilled hunters in the best ways to track game through the brush. You know the requirements for encouraging a herd to grow, and you know what sustainable harvesting from a herd involves. You can train a hunting beast to recognize an owner and perform a half-dozen commands, given the time. You also know the etiquette for engaging nobility or other members of the upper classes, as they regularly seek your services, and you can carry yourself in a professional manner in such social circles.", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_innkeeper", + "fields": { + "name": "Innkeeper", + "desc": "You spent some time as an innkeeper, tavern keeper, or perhaps a bartender. It might have been in a small crossroads town, a fishing community, a fine caravanserai, or a large cosmopolitan community. You did it all; preparing food, tracking supplies, tapping kegs, and everything in between. All the while, you listened to the adventurers plan their quests, heard their tales, saw their amazing trophies, marveled at their terrible scars, and eyed their full purses. You watched them come and go, thinking, \"one day, I will have my chance.\" Your time is now.\r\n\r\n### Place of Employment\r\nWhere did you work before turning to the adventuring life? Choose an establishment or roll a d6 and consult the table below. Once you have this information, think about who worked with you, what sort of customers you served, and what sort of reputation your establishment had.\r\n\r\n| d6 | Establishment |\r\n|---|---|\r\n| 1 | Busy crossroads inn |\r\n| 2 | Disreputable tavern full of scum and villainy |\r\n| 3 | Caravanserai on a wide-ranging trade route |\r\n| 4 | Rough seaside pub |\r\n| 5 | Hostel serving only the wealthiest clientele |\r\n| 6 | Saloon catering to expensive and sometimes dangerous tastes |", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_mercenary-company-scion", + "fields": { + "name": "Mercenary Company Scion", + "desc": "You descend from a famous line of free company veterans, and your first memory is playing among the tents, training yards, and war rooms of one campaign or another. Adored or perhaps ignored by your parents, you spent your formative years learning weapons and armor skills from brave captains, camp discipline from burly sergeants, and a host of virtues and vices from the common foot soldiers. You've always been told you are special and destined to glory. The weight of your family's legacy, honor, or reputation can weigh heavily, inspiring you to great deeds, or it can be a factor you try to leave behind.\r\n\r\n### Mercenary Company Reputation\r\nYour family is part of or associated with a mercenary company. The company has a certain reputation that may or may not continue to impact your life. Roll a d8 or choose from the options in the Mercenary Company Reputation table to determine the reputation of this free company.\r\n\r\n| d8 | Mercenary Company Reputation |\r\n|---|---|\r\n| 1 | Infamous. The company's evil deeds follow any who are known to consort with them. |\r\n| 2 | Honest. An upstanding company whose words and oaths are trusted. |\r\n| 3 | Unknown. Few know of this company. Its deeds have yet to be written. |\r\n| 4 | Feared. For good or ill, this company is generally feared on the battlefield. |\r\n| 5 | Mocked. Though it tries hard, the company is the butt of many jokes and derision. |\r\n| 6 | Specialized. This company is known for a specific type of skill on or off the battlefield. |\r\n| 7 | Disliked. For well-known reasons, this company has a bad reputation. |\r\n| 8 | Famous. The company's great feats and accomplishments are known far and wide. |", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_mercenary-recruit", + "fields": { + "name": "Mercenary Recruit", + "desc": "Every year, the hopeful strive to earn a place in one of the great mercenary companies. Some of these would-be heroes received training from a mercenary company but needed more training before gaining membership. Others are full members but were selected to venture abroad to gain more experience before gaining a rank. You are one of these hopeful warriors, just beginning to carve your place in the world with blade, spell, or skill.", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_monstrous-adoptee", + "fields": { + "name": "Monstrous Adoptee", + "desc": "Songs and sagas tell of heroes who, as children, were raised by creatures most view as monsters. You were one such child. Found, taken, left, or otherwise given to your monstrous parents, you were raised as one of their own species. Life with your adopted family could not have been easy for you, but the adversity and hardships you experienced only made you stronger. Perhaps you were *rescued* from your adopted family after only a short time with them, or perhaps only now have you realized the truth of your heritage. Maybe you've since learned enough civilized behavior to get by, or perhaps your *monstrous* tendencies are more evident. As you set out to make your way in the world, the time you spent with your adopted parents continues to shape your present and your future.\r\n\r\n### Adopted\r\nPrior to becoming an adventurer, you defined your history by the creatures who raised you. Choose a type of creature for your adopted parents or roll a d10 and consult the table below. Work with your GM to determine which specific creature of that type adopted you. If you are of a particular race or species that matches a result on the table, your adopted parent can't be of the same race or species as you, as this background represents an individual raised by a creature or in a culture vastly different or even alien to their birth parents.\r\n\r\n| d10 | Creature Type |\r\n|---|---|\r\n| 1 | Humanoid (such as gnoll, goblin, kobold, or merfolk) |\r\n| 2 | Aberration (such as aboleth, chuul, cloaker, or otyugh) |\r\n| 3 | Beast (such as ape, bear, tyrannosaurus rex, or wolf) |\r\n| 4 | Celestial or fiend (such as balor, bearded devil, couatl, deva, or unicorn) |\r\n| 5 | Dragon (such as dragon turtle, pseudodragon, red dragon, or wyvern) |\r\n| 6 | Elemental (such as efreeti, gargoyle, salamander, or water elemental) |\r\n| 7 | Fey (such as dryad, green hag, satyr, or sprite) |\r\n| 8 | Giant (such as ettin, fire giant, ogre, or troll) |\r\n| 9 | Plant or ooze (such as awakened shrub, gray ooze, shambling mound, or treant) |\r\n| 10 | Monstrosity (such as behir, chimera, griffon, mimic, or minotaur) |", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_mysterious-origins", + "fields": { + "name": "Mysterious Origins", + "desc": "Your origins are a mystery even to you. You might recall fragments of your previous life, or you might dream of events that could be memories, but you can't be sure of what is remembered and what is imagined. You recall practical information and facts about the world and perhaps even your name, but your upbringing and life before you lost your memories now exist only in dreams or sudden flashes of familiarity. You can leave the details of your character's past up to your GM or give the GM a specific backstory that your character can't remember. Were you the victim of a spell gone awry, or did you voluntarily sacrifice your memories in exchange for power? Is your amnesia the result of a natural accident, or did you purposefully have your mind wiped in order to forget a memory you couldn't live with? Perhaps you have family or friends that are searching for you or enemies you can't even remember.", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_northern-minstrel", + "fields": { + "name": "Northern Minstrel", + "desc": "While the tribal warriors residing in other parts of the wintry north consider you to be soft and cowardly, you know the truth: life in northern cities and mead halls is not for the faint of heart. Whether you are a larger-than-life performer hailing from one of the skaldic schools, a contemplative scholar attempting to puzzle out the mysteries of the north, or a doughty warrior hoping to stave off the bleakness of the north, you have successfully navigated alleys and stages as treacherous as any ice-slicked ruin. You adventure for the thrill of adding new songs to your repertoire, adding new lore to your catalog, and proving false the claims of those so-called true northerners.\r\n\r\n### Skaldic Specialty\r\nEvery minstrel excels at certain types of performance. Choose one specialty or roll a d8 and consult the table below to determine your preferred type of performance.\r\n\r\n| d8 | Specialty |\r\n|---|---|\r\n| 1 | Recitation of epic poetry |\r\n| 2 | Singing |\r\n| 3 | Tale-telling |\r\n| 4 | Flyting (insult flinging) |\r\n| 5 | Yodeling |\r\n| 6 | Axe throwing |\r\n| 7 | Playing an instrument |\r\n| 8 | Fire eating or sword swallowing |", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_occultist", + "fields": { + "name": "Occultist", + "desc": "At your core, you are a believer in things others dismiss. The signs abound if you know where to look. Questions beget answers that spur further questions. The cycle is endless as you uncover layer after layer of mystery and secrets. Piercing the veil hiding beyond the surface of reality is an irresistible lure spurring you to delve into forgotten and dangerous places in the world. Perhaps you've always yearned toward the occult, or it could be that you encountered something or someone who opened your eyes to the possibilities. You may belong to some esoteric organization determined to uncover the mystery, a cult bent on using the secrets for a dark purpose, or you may be searching for answers on your own. As an occultist, you ask the questions reality doesn't want to answer.", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_parfumier", + "fields": { + "name": "Parfumier", + "desc": "You are educated and ambitious. You spent your youth apprenticed among a city's more reputable greenhouses, laboratories, and perfumeries. There, you studied botany and chemistry and explored properties and interactions with fine crystal, rare metals, and magic. You quickly mastered the skills to identify and process rare and complex botanical and alchemical samples and the proper extractions and infusions of essential oils, pollens, and other fragrant chemical compounds—natural or otherwise. Not all (dramatic) changes to one's lifestyle, calling, or ambitions are a result of social or financial decline. Some are simply decided upon. Regardless of your motivation or incentive for change, you have accepted that a comfortable life of research, science and business is—at least for now—a part of your past.", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_scoundrel", + "fields": { + "name": "Scoundrel", + "desc": "You were brought up in a poor neighborhood in a crowded town or city. You may have been lucky enough to have a leaky roof over your head, or perhaps you grew up sleeping in doorways or on the rooftops. Either way, you didn't have it easy, and you lived by your wits. While never a hardened criminal, you fell in with the wrong crowd, or you ended up in trouble for stealing food from an orange cart or clean clothes from a washing line. You're no stranger to the city watch in your hometown and have outwitted or outrun them many times.", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_sentry", + "fields": { + "name": "Sentry", + "desc": "In your youth, the defense of the city, the community, the caravan, or your patron was how you earned your coin. You might have been trained by an old, grizzled city watchman, or you might have been pressed into service by the local magistrate for your superior skills, size, or intellect. However you came to the role, you excelled at defending others. You have a nose for trouble, a keen eye for spotting threats, a strong arm to back it up, and you are canny enough to know when to act. Most importantly, though, you were a peace officer or a protector and not a member of an army which might march to war.\r\n\r\n### Specialization\r\nEach person or location that hires a sentry comes with its own set of unique needs and responsibilities. As a sentry, you fulfilled one of these unique roles. Choose a specialization or roll a d6 and consult the table below to define your expertise as a sentry.\r\n\r\n| d6 | Specialization |\r\n|---|---|\r\n| 1 | City or gate watch |\r\n| 2 | Bodyguard or jailor |\r\n| 3 | Caravan guard |\r\n| 4 | Palace or judicial sentry |\r\n| 5 | Shop guard |\r\n| 6 | Ecclesiastical or temple guard |", + "document": "toh" + } +}, +{ + "model": "api_v2.background", + "pk": "toh_trophy-hunter", + "fields": { + "name": "Trophy Hunter", + "desc": "You hunt the mightiest beasts in the harshest environments, claiming their pelts as trophies and returning them to settled lands for a profit or to decorate your abode. You likely were set on this path since birth, following your parents on safaris and learning from their actions, but you may have instead come to this path as an adult after being swept away by the thrill of dominating the natural world. Many big game hunters pursue their quarry purely for pleasure, as a calming avocation, but others sell their skills to the highest bidder to amass wealth and reputation as a trophy hunter.", + "document": "toh" + } +} +] diff --git a/data/v2/kobold-press/toh/BackgroundBenefit.json b/data/v2/kobold-press/toh/BackgroundBenefit.json index aed1e2ec..eee896cb 100644 --- a/data/v2/kobold-press/toh/BackgroundBenefit.json +++ b/data/v2/kobold-press/toh/BackgroundBenefit.json @@ -1,1142 +1,1142 @@ [ - { - "model": "api_v2.backgroundbenefit", - "pk": 18, - "fields": { - "name": "Skill Proficiencies", - "desc": "Perception, Survival", - "type": "skill_proficiency", - "parent": "toh_desert-runner" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 19, - "fields": { - "name": "Tool Proficiencies", - "desc": "Herbalist kit", - "type": "tool_proficiency", - "parent": "toh_desert-runner" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 20, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "toh_desert-runner" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 21, - "fields": { - "name": "Equipment", - "desc": "Traveler's clothes, herbalist kit, waterskin, pouch with 10 gp", - "type": "equipment", - "parent": "toh_desert-runner" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 22, - "fields": { - "name": "Nomad", - "desc": "Living in the open desert has allowed your body to adapt to a range of environmental conditions. You can survive on 1 gallon of water in hot conditions (or 1/2 gallon in normal conditions) without being forced to make Constitution saving throws, and you are considered naturally adapted to hot climates. While in a desert, you can read the environment to predict natural weather patterns and temperatures for the next 24 hours, allowing you to cross dangerous terrain at the best times. The accuracy of your predictions is up to the GM, but they should be reliable unless affected by magic or unforeseeable events, such as distant earthquakes or volcanic eruptions.", - "type": "feature", - "parent": "toh_desert-runner" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 23, - "fields": { - "name": "Suggested Characteristics", - "desc": "Those raised in the desert can be the friendliest of humanoids—knowing allies are better than enemies in that harsh environment—or territorial and warlike, believing that protecting food and water sources by force is the only way to survive.\r\n\r\n| d8 | Personality Trait |\r\n| --- | --- |\r\n| 1 | I'm much happier sleeping under the stars than in a bed in a stuffy caravanserai. |\r\n| 2 | It's always best to help a traveler in need; one day it might be you. | \r\n| 3 | I am slow to trust strangers, but I'm extremely loyal to my friends. | \r\n| 4 | If there's a camel race, I'm the first to saddle up! | \r\n| 5 | I always have a tale or poem to share at the campfire. | \r\n| 6 | I don't like sleeping in the same place more than two nights in a row. | \r\n| 7 | I've been troubled by dreams for the last month. I am determined to uncover their meaning. | \r\n| 8 | I feel lonelier in a crowded city than I do out on the empty desert sands. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greater Good.** The needs of the whole tribe outweigh those of the individuals who are part of it. (Good) |\r\n| 2 | **Nature.** I must do what I can to protect the beautiful wilderness from those who would do it harm. (Neutral) |\r\n| 3 | **Tradition.** I am duty-bound to follow my tribe's age-old route through the desert. (Lawful) |\r\n 4 | **Change.** Things seldom stay the same and we must always be prepared to go with the flow. (Chaotic) |\r\n| 5 | **Honor.** If I behave dishonorably, my actions will bring shame upon the entire tribe. (Lawful) |\r\n| 6 | **Greed.** Seize what you want if no one gives it to you freely. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I am the last living member of my tribe, and I cannot let their deaths go unavenged. |\r\n| 2 | I follow the spiritual path of my tribe; it will bring me to the best afterlife when the time comes. |\r\n| 3 | My best friend has been sold into slavery to devils, and I need to rescue them before it is too late. |\r\n| 4 | A nature spirit saved my life when I was dying of thirst in the desert. |\r\n| 5 | My takoba sword is my most prized possession; for over two centuries, it's been handed down from generation to generation. |\r\n| 6 | I have sworn revenge on the sheikh who unjustly banished me from the tribe. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I enjoy the company of camels more than people. |\r\n| 2 | I can be loud and boorish after a few wineskins. |\r\n| 3 | If I feel insulted, I'll refuse to speak to anyone for several hours. |\r\n| 4 | I enjoy violence and mayhem a bit too much. |\r\n| 5 | You can't rely on me in a crisis. |\r\n| 6 | I betrayed my brother to cultists to save my own skin. |", - "type": "suggested_characteristics", - "parent": "toh_desert-runner" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 35, - "fields": { - "name": "Skill Proficiencies", - "desc": "History, Insight", - "type": "skill_proficiency", - "parent": "toh_court-servant" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 36, - "fields": { - "name": "Tool Proficiencies", - "desc": "One artisan's tools set of your choice", - "type": "tool_proficiency", - "parent": "toh_court-servant" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 37, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "toh_court-servant" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 38, - "fields": { - "name": "Equipment", - "desc": "A set of artisan's tools of your choice, a unique piece of jewelry, a set of fine clothes, a handcrafted pipe, and a belt pouch containing 20 gp", - "type": "equipment", - "parent": "toh_court-servant" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 39, - "fields": { - "name": "Servant's Invisibility", - "desc": "The art of excellent service requires a balance struck between being always available and yet unobtrusive, and you've mastered it. If you don't perform a visible action, speak or be spoken to, or otherwise have attention drawn to you for at least 1 minute, creatures nearby have trouble remembering you are even in the room. Until you speak, perform a visible action, or have someone draw attention to you, creatures must succeed on a Wisdom (Perception) check (DC equal to 8 + your Charisma modifier + your proficiency bonus) to notice you. Otherwise, they conduct themselves as though you aren't present until either attention is drawn to you or one of their actions would take them into or within 5 feet of the space you occupy.", - "type": "feature", - "parent": "toh_court-servant" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 40, - "fields": { - "name": "Suggested Characteristics", - "desc": "Court servants tend to be outwardly quiet and soft-spoken, but their insight into the nuances of conversation and societal happenings is unparalleled. When in crowds or around strangers, most court servants keep to themselves, quietly observing their surroundings and later sharing such observations with those they trust.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Unless I must speak, I hold my breath while serving others. |\r\n| 2 | It takes all my effort not to show the effusive emotions I feel when I help others. Best to quietly serve. |\r\n| 3 | It's getting harder to tolerate the prejudices of those I serve daily. |\r\n| 4 | Though the old ways are hard to give up, I want to be my own boss. I'll decide my path. |\r\n| 5 | Serving my family and friends is the only thing I truly care about. |\r\n| 6 | City life is killing my soul. I long for the old courtly ways. |\r\n| 7 | It's time for my fellows to wake up and be taken advantage of no longer. |\r\n| 8 | It's the small things that make it all worthwhile. I try to be present in every moment. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Family. My family, whether the one I come from or the one I make, is the thing in this world most worth protecting. (Any) |\r\n| 2 | Service. I am most rewarded when I know I have performed a valuable service for another. (Good) |\r\n| 3 | Sloth. What's the point of helping anyone now that I've been discarded? (Chaotic) |\r\n| 4 | Compassion. I can't resist helping anyone in need. (Good) |\r\n| 5 | Tradition. Life under my master's rule was best, and things should be kept as close to their ideals as possible. (Lawful) |\r\n| 6 | Joy. The pursuit of happiness is the only thing worth serving anymore. (Neutral) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My family needs me to provide for them. They mean everything to me, which means I'll do whatever it takes. |\r\n| 2 | My kin have served this holding and its lords and ladies for generations. I serve them faithfully to make my lineage proud. |\r\n| 3 | I can't read the inscriptions on this odd ring, but it's all I have left of my family and our history of loyal service. |\r\n| 4 | I'm with the best friends a person can ask for, so why do I feel so lonesome and homesick? |\r\n| 5 | I've found a profession where my skills are put to good use, and I won't let anyone bring me down. |\r\n| 6 | I found peace in a special garden filled with beautiful life, but I only have this flower to remind me. Someday I'll remember where to find that garden. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 |\r\n| 2 | I'm afraid of taking risks that might be good for me. |\r\n| 3 | I believe my master's people are superior to all others, and I'm not afraid to share that truth. |\r\n| 4 | I always do as I'm told, even though sometimes I don't think I should. |\r\n| 5 | I know what's best for everyone, and they'd all be better off if they'd follow my advice. |\r\n| 6 | I can't stand seeing ugly or depressing things. I'd much rather think happy thoughts. |", - "type": "suggested_characteristics", - "parent": "toh_court-servant" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 67, - "fields": { - "name": "Skill Proficiencies", - "desc": "History, Insight", - "type": "skill_proficiency", - "parent": "toh_destined" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 68, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "toh_destined" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 69, - "fields": { - "name": "Tool Proficiencies", - "desc": "No additional tool proficiencies", - "type": "tool_proficiency", - "parent": "toh_destined" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 70, - "fields": { - "name": "Equipment", - "desc": "A dagger, quarterstaff, or spear, a set of traveler's clothes, a memento of your destiny (a keepsake from your betrothed, the seal of your destined office, your family signet ring, or similar), a belt pouch containing 15 gp", - "type": "equipment", - "parent": "toh_destined" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 71, - "fields": { - "name": "Reputation of Opportunity", - "desc": "Your story precedes you, as does your quest to claim—or run away from—your destiny. Those in positions of power, such as nobles, bureaucrats, rich merchants, and even mercenaries and brigands, all look to either help or hinder you, based on what they think they may get out of it. They're always willing to meet with you briefly to see just how worthwhile such aid or interference might be. This might mean a traveler pays for your passage on a ferry, a generous benefactor covers your group's meals at a tavern, or a local governor invites your adventuring entourage to enjoy a night's stay in their guest quarters. However, the aid often includes an implied threat or request. Some might consider delaying you as long as politely possible, some might consider taking you prisoner for ransom or to do “what's best” for you, and others might decide to help you on your quest in exchange for some future assistance. You're never exactly sure of the associated “cost” of the person's aid until the moment arrives. In the meantime, the open road awaits.", - "type": "feature", - "parent": "toh_destined" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 72, - "fields": { - "name": "Suggested Characteristics", - "desc": "Destined characters might be running toward or away from destiny, but whatever the case, their destiny has shaped them. Think about the impact of your destiny on you and the kind of relationship you have with your destiny. Do you embrace it? Accept it as inevitable? Or do you fight it every step of the way?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm eager to find this destiny and move on with the next stage in my life. |\r\n| 2 | I keep the fire of my hope burning bright. I'm sure this will work out for the best. |\r\n| 3 | Fate has a way of finding you no matter what you do. I'm resigned to whatever they have planned for me, but I'll enjoy my time on the way. |\r\n| 4 | I owe it to myself or to those who helped establish this destiny. I'm determined to follow this through to the end. |\r\n| 5 | I don't know what this path means for me or my future. I'm more afraid of going back to that destiny than of seeing what's out in the world. |\r\n| 6 | I didn't ask for this, and I don't want it. I'm bitter that I must change my life for it. |\r\n| 7 | Few have been chosen to complete this lifepath, and I'm proud to be one of them. |\r\n| 8 | Who can say how this will work out? The world is an uncertain place, and I'll find my destiny when it finds me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Inevitability.** What's coming can't be stopped, and I'm dedicated to making it happen. (Evil) |\r\n| 2 | **Tradition.** I'm part of a cycle that has repeated for generations. I can't deny that. (Any) |\r\n| 3 | **Defiance.** No one can make me be something I don't want to be. (Any) |\r\n| 4 | **Greater Good.** Completing my duty ensures the betterment of my family, community, or region. (Good) |\r\n| 5 | **Power.** If I can take this role and be successful, I'll have opportunities to do whatever I want. (Chaotic) |\r\n| 6 | **Responsibility.** It doesn't matter if I want it or not; it's what I'm supposed to do. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | The true gift of my destiny is the friendships I make along the way to it. |\r\n| 2 | The benefits of completing this destiny will strengthen my family for years to come. |\r\n| 3 | Trying to alter my decision regarding my destiny is an unthinkable affront to me. |\r\n| 4 | How I reach my destiny is just as important as how I accomplish my destiny. |\r\n| 5 | People expect me to complete this task. I don't know how I feel about succeeding or failing, but I'm committed to it. |\r\n| 6 | Without this role fulfilled, the people of my home region will suffer, and that's not acceptable. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If you don't have a destiny, are you really special? |\r\n| 2 | But I am the “Chosen One.” |\r\n| 3 | I fear commitment; that's what this boils down to in the end. |\r\n| 4 | What if I follow through with this and I fail? |\r\n| 5 | It doesn't matter what someone else sacrificed for this. I only care about my feelings. |\r\n| 6 | Occasionally—ok, maybe “often”—I make poor decisions in life, like running from this destiny. |", - "type": "suggested_characteristics", - "parent": "toh_destined" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 73, - "fields": { - "name": "Skill Proficiencies", - "desc": "Insight, Persuasion", - "type": "skill_proficiency", - "parent": "toh_diplomat" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 74, - "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", - "parent": "toh_diplomat" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 75, - "fields": { - "name": "Tool Proficiencies", - "desc": "No additional tool proficiencies", - "type": "tool_proficiency", - "parent": "toh_diplomat" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 76, - "fields": { - "name": "Equipment", - "desc": "A set of fine clothes, a letter of passage from a local minor authority or traveling papers that signify you as a traveling diplomat, and a belt pouch containing 20 gp", - "type": "equipment", - "parent": "toh_diplomat" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 77, - "fields": { - "name": "A Friend in Every Port", - "desc": "Your reputation as a peacemaker precedes you, or people recognize your easy demeanor, typically allowing you to attain food and lodging at a discount. In addition, people are predisposed to warn you about dangers in a location, alert you when a threat approaches you, or seek out your help for resolving conflicts between locals.", - "type": "feature", - "parent": "toh_diplomat" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 78, - "fields": { - "name": "Suggested Characteristics", - "desc": "Diplomats always have kind words and encourage their companions to think positively when encountering upsetting situations or people. Diplomats have their limits, however, and are quick to discover when someone is negotiating in bad faith.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I like to travel, meet new people, and learn about different customs. |\r\n| 2 | I intercede in minor squabbles to find common ground on all sides.|\r\n| 3 | I never disparage others, even when they might deserve such treatment.|\r\n| 4 | I always try to make a new friend wherever I travel, and when I return to those areas, I seek out my friends. |\r\n| 5 | I have learned how to damn with faint praise, but I only use it when someone has irked me. |\r\n| 6 | I am not opposed to throwing a bit of coin around to ensure a good first impression. |\r\n| 7 | Even when words fail at the outset, I still try to calm tempers. |\r\n| 8 | I treat everyone as an equal, and I encourage others to do likewise. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Harmony.** I want everyone to get along. (Good) |\r\n| 2 | **Contractual.** When I resolve a conflict, I ensure all parties formally acknowledge the resolution. (Lawful) |\r\n| 3 | **Selfishness.** I use my way with words to benefit myself the most. (Evil) 4 Freedom. Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 4 | **Freedom.** Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 5 | **Avoidance.** A kind word is preferable to the drawing of a sword. (Any) |\r\n| 6 | **Unity.** It is possible to achieve a world without borders and without conflict. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|------|\r\n| 1 | I want to engineer a treaty with far-reaching effects in the world. |\r\n| 2 | I am carrying out someone else's agenda and making favorable arrangements for my benefactor. |\r\n| 3 | A deal I brokered went sour, and I am trying to make amends for my mistake. |\r\n| 4 | My nation treats everyone equitably, and I'd like to bring that enlightenment to other nations. |\r\n| 5 | A traveling orator taught me the power of words, and I want to emulate that person. |\r\n| 6 | I fear a worldwide conflict is imminent, and I want to do all I can to stop it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I always start by appealing to a better nature from those I face, regardless of their apparent hostility. |\r\n| 2 | I assume the best in everyone, even if I have been betrayed by that trust in the past. |\r\n| 3 | I will stand in the way of an ally to ensure conflicts don't start. |\r\n| 4 | I believe I can always talk my way out of a problem. |\r\n| 5 | I chastise those who are rude or use vulgar language. |\r\n| 6 | When I feel I am on the verge of a successful negotiation, I often push my luck to obtain further concessions. |", - "type": "suggested_characteristics", - "parent": "toh_diplomat" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 79, - "fields": { - "name": "Skill Proficiencies", - "desc": "Nature, Survival", - "type": "skill_proficiency", - "parent": "toh_forest-dweller" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 80, - "fields": { - "name": "Languages", - "desc": "Sylvan", - "type": "language", - "parent": "toh_forest-dweller" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 81, - "fields": { - "name": "Tool Proficiencies", - "desc": "Woodcarver's tools, Herbalism kit", - "type": "tool_proficiency", - "parent": "toh_forest-dweller" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 82, - "fields": { - "name": "Equipment", - "desc": "A set of common clothes, a hunting trap, a wood staff, a whetstone, an explorer's pack, and a pouch containing 5 gp", - "type": "equipment", - "parent": "toh_forest-dweller" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 83, - "fields": { - "name": "Forester", - "desc": "Your experience living, hunting, and foraging in the woods gives you a wealth of experience to draw upon when you are traveling within a forest. If you spend 1 hour observing, examining, and exploring your surroundings while in a forest, you are able to identify a safe location to rest. The area is protected from all but the most extreme elements and from the nonmagical native beasts of the forest. In addition, you are able to find sufficient kindling for a small fire throughout the night.\r\n\r\n### Life-Changing Event\r\nYou have lived a simple life deep in the sheltering boughs of the forest, be it as a trapper, farmer, or villager eking out a simple existence in the forest. But something happened that set you on a different path and marked you for greater things. Choose or randomly determine a defining event that caused you to leave your home for the wider world. \r\n\r\n| d8 | Event |\r\n|---|---|\r\n| 1 | You were living within the forest when cesspools of magical refuse from a nearby city expanded and drove away the game that sustained you. You had to move to avoid the prospect of a long, slow demise via starvation. |\r\n| 2 | Your village was razed by a contingent of undead. For reasons of its own, the forest and its denizens protected and hid you from their raid. |\r\n| 3 | A roving band of skeletons and zombies attacked your family while you were hunting. |\r\n| 4 | You are an ardent believer in the preservation of the forest and the natural world. When the people of your village abandoned those beliefs, you were cast out and expelled into the forest. |\r\n| 5 | You wandered into the forest as a child and became lost. For inexplicable reasons, the forest took an interest in you. You have faint memories of a village and have had no contact with civilization in many years. |\r\n| 6 | You were your village's premier hunter. They relied on you for game and without your contributions their survival in the winter was questionable. Upon returning from your last hunt, you found your village in ruins, as if decades had passed overnight. |\r\n| 7 | Your quiet, peaceful, and solitary existence has been interrupted with dreams of the forest's destruction, and the urge to leave your home compels you to seek answers. |\r\n| 8 | Once in a hidden glen, you danced with golden fey and forgotten gods. Nothing in your life since approaches that transcendent moment, cursing you with a wanderlust to seek something that could. |", - "type": "feature", - "parent": "toh_forest-dweller" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 84, - "fields": { - "name": "Suggested Characteristics", - "desc": "Forest dwellers tend toward solitude, introspection, and self-sufficiency. You keep your own council, and you are more likely to watch from a distance than get involved in the affairs of others. You are wary, slow to trust, and cautious of depending on outsiders.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will never forget being hungry in the winter. I field dress beasts that fall to blade or arrow so that I am never hungry again. |\r\n| 2 | I may be alone in the forest, but I am only ever lonely in cities. |\r\n| 3 | Walking barefoot allows me to interact more intuitively with the natural world. |\r\n| 4 | The road is just another kind of wall. I make my own paths and go where I will. |\r\n| 5 | Others seek the gods in temples and shrines, but I know their will is only revealed in the natural world, not an edifice constructed by socalled worshippers. I pray in the woods, never indoors. |\r\n| 6 | What you call personal hygiene, I call an artificially imposed distraction from natural living. |\r\n| 7 | No forged weapon can replace the sheer joy of a kill accomplished only with hands and teeth. |\r\n| 8 | Time lived alone has made me accustomed to talking loudly to myself, something I still do even when others are present. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Change. As the seasons shift, so too does the world around us. To resist is futile and anathema to the natural order. (Chaotic) |\r\n| 2 | Conservation. All life should be preserved and, if needed, protected. (Good) |\r\n| 3 | Acceptance. I am a part of my forest, no different from any other flora and fauna. To think otherwise is arrogance and folly. When I die, it will be as a leaf falling in the woods. (Neutral) |\r\n| 4 | Cull. The weak must be removed for the strong to thrive. (Evil) |\r\n| 5 | Candor. I am open, plain, and simple in life, word, and actions. (Any) |\r\n| 6 | Balance. The forest does not lie. The beasts do not create war. Equity in all things is the way of nature. (Neutral) |\r\n\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | When I lose a trusted friend or companion, I plant a tree upon their grave. |\r\n| 2 | The voice of the forest guides me, comforts me, and protects me. |\r\n| 3 | The hermit who raised me and taught me the ways of the forest is the most important person in my life. |\r\n| 4 | I have a wooden doll, a tiny wickerman, that I made as a child and carry with me at all times. |\r\n| 5 | I know the ways of civilizations rise and fall. The forest and the Old Ways are eternal. |\r\n| 6 | I am driven to protect the natural order from those that would disrupt it. |\r\n\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am accustomed to doing what I like when I like. I'm bad at compromising, and I must exert real effort to make even basic conversation with other people. |\r\n| 2 | I won't harm a beast without just cause or provocation. |\r\n| 3 | Years of isolated living has left me blind to the nuances of social interaction. It is a struggle not to view every new encounter through the lens of fight or flight. |\r\n| 4 | The decay after death is merely the loam from which new growth springs—and I enjoy nurturing new growth. |\r\n| 5 | An accident that I caused incurred great damage upon my forest, and, as penance, I have placed myself in self-imposed exile. |\r\n| 6 | I distrust the undead and the unliving, and I refuse to work with them. |", - "type": "suggested_characteristics", - "parent": "toh_forest-dweller" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 85, - "fields": { - "name": "Skill Proficiencies", - "desc": "Perception, Survival", - "type": "skill_proficiency", - "parent": "toh_former-adventurer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 86, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "toh_former-adventurer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 87, - "fields": { - "name": "Tool Proficiencies", - "desc": "No additional tool proficiencies", - "type": "tool_proficiency", - "parent": "toh_former-adventurer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 88, - "fields": { - "name": "Equipment", - "desc": "A dagger, quarterstaff, or shortsword (if proficient), an old souvenir from your previous adventuring days, a set of traveler's clothes, 50 feet of hempen rope, and a belt pouch containing 15 gp", - "type": "equipment", - "parent": "toh_former-adventurer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 89, - "fields": { - "name": "Old Friends and Enemies", - "desc": "Your previous career as an adventurer might have been brief or long. Either way, you certainly journeyed far and met people along the way. Some of these acquaintances might remember you fondly for aiding them in their time of need. On the other hand, others may be suspicious, or even hostile, because of your past actions. When you least expect it, or maybe just when you need it, you might encounter someone who knows you from your previous adventuring career. These people work in places high and low, their fortunes varying widely. The individual responds appropriately based on your mutual history, helping or hindering you at the GM's discretion.", - "type": "feature", - "parent": "toh_former-adventurer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 90, - "fields": { - "name": "Suggested Characteristics", - "desc": "Former adventurers bring a level of practical experience that fledgling heroes can't match. However, the decisions, outcomes, successes, and failures of your previous career often weigh heavily on your mind. The past seldom remains in the past. How you rise to these new (or old) challenges determines the outcome of your new career.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I have a thousand stories about every aspect of the adventuring life. |\r\n| 2 | My past is my own, and to the pit with anyone who pushes me about it. |\r\n| 3 | I can endure any hardship without complaint. |\r\n| 4 | I have a list of rules for surviving adventures, and I refer to them often. |\r\n| 5 | It's a dangerous job, and I take my pleasures when I can. |\r\n| 6 | I can't help mentioning all the famous friends I've met before. |\r\n| 7 | Anyone who doesn't recognize me is clearly not someone worth knowing. |\r\n| 8 | I've seen it all. If you don't listen to me, you're going to get us all killed. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Strength.** Experience tells me there are no rules to war. Only victory matters. (Evil) |\r\n| 2 | **Growth.** I strive to improve myself and prove my worth to my companions—and to myself. (Any) |\r\n| 3 | **Thrill.** I am only happy when I am facing danger with my life on the line. (Any) |\r\n| 4 | **Generous.** If I can help someone in danger, I will. (Good) |\r\n| 5 | **Ambition.** I may have lost my renown, but nothing will stop me from reclaiming it. (Chaotic) |\r\n| 6 | **Responsibility.** Any cost to myself is far less than the price of doing nothing. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will end the monsters who killed my family and pulled me back into the adventuring life. |\r\n| 2 | A disaster made me retire once. Now I will stop it from happening to anyone else. |\r\n| 3 | My old weapon has been my trusted companion for years. It's my lucky charm. |\r\n| 4 | My family doesn't understand why I became an adventurer again, which is why I send them souvenirs, letters, or sketches of exciting encounters in my travels. |\r\n| 5 | I was a famous adventurer once. This time, I will be even more famous, or die trying. |\r\n| 6 | Someone is impersonating me. I will hunt them down and restore my reputation. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | It's all about me! Haven't you learned that by now? |\r\n| 2 | I can identify every weapon and item with a look. |\r\n| 3 | You think this is bad? Let me tell you about something really frightening. |\r\n| 4 | Sure, I have old foes around every corner, but who doesn't? |\r\n| 5 | I'm getting too old for this. |\r\n| 6 | Seeing the bad side in everything just protects you from inevitable disappointment. |", - "type": "suggested_characteristics", - "parent": "toh_former-adventurer" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 91, - "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, Survival", - "type": "skill_proficiency", - "parent": "toh_freebooter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 92, - "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", - "parent": "toh_freebooter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 93, - "fields": { - "name": "Tool Proficiencies", - "desc": "Navigator's tools, vehicles (water)", - "type": "tool_proficiency", - "parent": "toh_freebooter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 94, - "fields": { - "name": "Equipment", - "desc": "A pirate flag from your ship, several tattoos, 50 feet of rope, a set of traveler's clothes, and a belt pouch containing 10 gp", - "type": "equipment", - "parent": "toh_freebooter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 95, - "fields": { - "name": "A Friendly Face in Every Port", - "desc": "Your reputation precedes you. Whenever you visit a port city, you can always find someone who knows of (or has sailed on) your former ship and is familiar with its captain and crew. They are willing to provide you and your traveling companions with a roof over your head, a bed for the night, and a decent meal. If you have a reputation for cruelty and savagery, your host is probably afraid of you and will be keen for you to leave as soon as possible. Otherwise, you receive a warm welcome, and your host keeps your presence a secret, if needed. They may also provide you with useful information about recent goings-on in the city, including which ships have been in and out of port.", - "type": "feature", - "parent": "toh_freebooter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 96, - "fields": { - "name": "Suggested Characteristics", - "desc": "Freebooters are a boisterous lot, but their personalities include freedom-loving mavericks and mindless thugs. Nonetheless, sailing a ship requires discipline, and freebooters tend to be reliable and aware of their role on board, even if they do their own thing once fighting breaks out. Most still yearn for the sea, and some feel shame or regret for past deeds.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm happiest when I'm on a gently rocking vessel, staring at the distant horizon. |\r\n| 2 | Every time we hoisted the mainsail and raised the pirate flag, I felt butterflies in my stomach. |\r\n| 3 | I have lovers in a dozen different ports. Most of them don't know about the others. |\r\n| 4 | Being a pirate has taught me more swear words and bawdy jokes than I ever knew existed. I like to try them out when I meet new people. |\r\n| 5 | One day I hope to have enough gold to fill a tub so I can bathe in it. |\r\n| 6 | There's nothing I enjoy more than a good scrap—the bloodier, the better. |\r\n| 7 | When a storm is blowing and the rain is lashing the deck, I'll be out there getting drenched. It makes me feel so alive! |\r\n| 8 | Nothing makes me more annoyed than a badly tied knot. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** No one tells me what to do or where to go. Apart from the captain. (Chaotic) |\r\n| 2 | **Greed.** I'm only in it for the booty. I'll gladly stab anyone stupid enough to stand in my way. (Evil) |\r\n| 3 | **Comradery.** My former shipmates are my family. I'll do anything for them. (Neutral) |\r\n| 4 | **Greater Good.** No man has the right to enslave another, or to profit from slavery. (Good) |\r\n| 5 | **Code.** I may be on dry land now, but I still stick to the Freebooter's Code. (Lawful) |\r\n| 6 | **Aspiration.** One day I'll return to the sea as the captain of my own ship. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | Anti-slavery pirates rescued me from a slave ship. I owe them my life. |\r\n| 2 | I still feel a deep attachment to my ship. Some nights I dream her figurehead is talking to me. |\r\n| 3 | I was the ship's captain until the crew mutinied and threw me overboard to feed the sharks. I swam to a small island and survived. Vengeance will be mine! |\r\n| 4 | Years ago, when my city was attacked, I fled the city on a small fleet bound for a neighboring city. I arrived back in the ruined city a few weeks ago on the same ship and can remember nothing of the voyage. |\r\n| 5 | I fell asleep when I was supposed to be on watch, allowing our ship to be taken by surprise. I still have nightmares about my shipmates who died in the fighting. |\r\n| 6 | One of my shipmates was captured and sold into slavery. I need to rescue them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm terrified by the desert. Not enough water, far too much sand. |\r\n| 2 | I drink too much and end up starting barroom brawls. |\r\n| 3 | I killed one of my shipmates and took his share of the loot. |\r\n| 4 | I take unnecessary risks and often put my friends in danger. |\r\n| 5 | I sold captives taken at sea to traders. |\r\n| 6 | Most of the time, I find it impossible to tell the truth. |", - "type": "suggested_characteristics", - "parent": "toh_freebooter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 97, - "fields": { - "name": "Skill Proficiencies", - "desc": "Animal Handling, Persuasion", - "type": "skill_proficiency", - "parent": "toh_gamekeeper" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 98, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "toh_gamekeeper" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 99, - "fields": { - "name": "Tool Proficiencies", - "desc": "Leatherworker's tools", - "type": "tool_proficiency", - "parent": "toh_gamekeeper" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 100, - "fields": { - "name": "Equipment", - "desc": "A set of leatherworker's tools, a hunting trap, fishing tackle, a set of traveler's clothes, and a belt pouch containing 10 gp", - "type": "equipment", - "parent": "toh_gamekeeper" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 101, - "fields": { - "name": "Confirmed Guildmember", - "desc": "As a recognized member of the Gamekeepers' Guild, you are knowledgeable in the care, training, and habits of animals used for hunting. With 30 days' of work and at least 2 gp for each day, you can train a raptor, such as a hawk, falcon, or owl, or a hunting dog, such as a hound, terrier, or cur, to become a hunting companion. Use the statistics of an owl for the raptor and the statistics of a jackal for the hunting dog. A hunting companion is trained to obey and respond to a series of one-word commands or signals, communicating basic concepts such as *attack*, *protect*, *retrieve*, *find*, *hide*, or similar. The companion can know up to six such commands and can be trained to obey a number of creatures, other than you, equal to your proficiency bonus. A hunting companion travels with you wherever you go, unless you enter a particularly dangerous environment (such as a poisonous swamp), or you command the companion to stay elsewhere. A hunting companion doesn't join you in combat and stays on the edge of any conflict until it is safe to return to your side. When traveling overland with a hunting companion, you can use the companion to find sufficient food to sustain yourself and up to five other people each day. You can have only one hunting companion at a time.", - "type": "feature", - "parent": "toh_gamekeeper" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 102, - "fields": { - "name": "Suggested Characteristics", - "desc": "You are one of the capable people who maintains hunting preserves, trains coursing hounds and circling raptors, and plans the safe outings that allow fair nobles, rich merchants, visiting dignitaries, and their entourages to venture into preserves and forests to seek their quarry. You are as comfortable hunting quarry in the forest as you are conversing with members of the elite who have an interest in hunting.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nature has lessons to teach us all, and I'm always happy to share them. |\r\n| 2 | Once while out on a hunt, something happened which was very relatable to our current situation. Let me tell you about it. |\r\n| 3 | My friends are my new charges, and I'll make sure they thrive. |\r\n| 4 | Preparation and knowledge are the key to any success. |\r\n| 5 | I've dealt with all sorts of wealthy and noble folk, and I've seen just how spoiled they can be. |\r\n| 6 | I feel like my animals are the only ones who really understand me. |\r\n| 7 | You can train yourself to accomplish anything you put your mind to accomplishing. |\r\n| 8 | The world shows you everything you need to know to understand a situation. You just have to be paying attention to the details. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Dedication. Your willingness to get the job done, no matter what the cost, is what is most important. (Evil) |\r\n| 2 | Training. You sink to the level of your training more often than you rise to the occasion. (Any) |\r\n| 3 | Prestige. Pride in your training, your work, and your results is what is best in life. (Any) |\r\n| 4 | Diligent. Hard work and attention to detail bring success more often than failure. (Good) |\r\n| 5 | Nature. The glory and majesty of the wild world outshine anything mortals create. (Chaotic) |\r\n| 6 | Responsibility. When you take an oath to protect and shepherd something, that oath is for life. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I understand animals better than people, and the way of the hunter just makes sense. |\r\n| 2 | I take great pride in providing my services to the wealthy and influential. |\r\n| 3 | Natural spaces need to be tended and preserved, and I take joy in doing it when I can. |\r\n| 4 | I need to ensure people know how to manage nature rather than live in ignorance. |\r\n| 5 | Laws are important to prevent nature's overexploitation. |\r\n| 6 | I can be alone in the wilderness and not feel lonely. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Individuals can be all right, but civilization is the worst. |\r\n| 2 | The wealthy and nobility are a rot in society. |\r\n| 3 | Things die, either by predators or nature; get used to it. |\r\n| 4 | Everything can be managed if you want it badly enough. |\r\n| 5 | When you make exceptions, you allow unworthy or wasteful things to survive. |\r\n| 6 | If you don't work hard for something, is it worth anything? |", - "type": "suggested_characteristics", - "parent": "toh_gamekeeper" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 103, - "fields": { - "name": "Skill Proficiencies", - "desc": "Insight plus one of your choice from among Intimidation or Persuasion", - "type": "skill_proficiency", - "parent": "toh_innkeeper" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 104, - "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", - "parent": "toh_innkeeper" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 105, - "fields": { - "name": "Tool Proficiencies", - "desc": "No additional tool proficiencies", - "type": "tool_proficiency", - "parent": "toh_innkeeper" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 106, - "fields": { - "name": "Equipment", - "desc": "A set of either brewer's supplies or cook's utensils, a dagger or light hammer, traveler's clothes, and a pouch containing 20 gp", - "type": "equipment", - "parent": "toh_innkeeper" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 107, - "fields": { - "name": "I Know Someone", - "desc": "In interacting with the wide variety of people who graced the tables and bars of your previous life, you gained an excellent knowledge of who might be able to perform a particular task, provide the right service, sell the perfect item, or be able to connect you with someone who can. You can spend a couple of hours in a town or city and identify a person or place of business capable of selling the product or service you seek, provided the product is nonmagical and isn't worth more than 250 gp. At the GM's discretion, these restrictions can be lifted in certain locations. The price might not always be what you hoped, the quality might not necessarily be the best, or the person's demeanor may be grating, but you can find the product or service. In addition, you know within the first hour if the product or service you desire doesn't exist in the community, such as a coldweather outfit in a tropical fishing village.", - "type": "feature", - "parent": "toh_innkeeper" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 108, - "fields": { - "name": "Suggested Characteristics", - "desc": "The day-to-day operation of a tavern or inn teaches many lessons about people and how they interact.\r\n\r\nThe nose for trouble, the keen eye on the kegs, and the ready hand on a truncheon translates well to the life of an adventurer.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I insist on doing all the cooking, and I plan strategies like I cook—with proper measurements and all the right ingredients. |\r\n| 2 | Lending a sympathetic ear or a shoulder to cry on often yields unexpected benefits. |\r\n| 3 | I always have a story or tale to relate to any situation. |\r\n| 4 | There is a world of tastes and flavors to explore. |\r\n| 5 | Few problems can't be solved with judicious application of a stout cudgel. |\r\n| 6 | I never pass up the chance to bargain. Never. |\r\n| 7 | I demand the finest accommodations; I know what they're worth. |\r\n| 8 | I can defuse a situation with a joke, cutting remark, or arched eyebrow. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Service.** If we serve others, they will serve us in turn. (Lawful) |\r\n| 2 | **Perspective.** People will tell you a great deal about themselves, their situations, and their desires, if you listen. (Any) |\r\n| 3 | **Determination.** Giving up is not in my nature. (Any) |\r\n| 4 | **Charity.** I try to have extra coins to buy a meal for someone in need. (Good) |\r\n| 5 | **Curiosity.** Staying safe never allows you to see the wonders of the world. (Chaotic) |\r\n| 6 | **Selfish.** We must make sure we bargain for what our skills are worth; people don't value what you give away for free. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I started my career in a tavern, and I'll end it running one of my very own. |\r\n| 2 | I try to ensure stories of my companions will live on forever. |\r\n| 3 | You want to take the measure of a person? Have a meal or drink with them. |\r\n| 4 | I've seen the dregs of life pass through my door, and I will never end up like them. |\r\n| 5 | A mysterious foe burned down my inn, and I will have my revenge. |\r\n| 6 | One day, I want my story to be sung in all the taverns of my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I can't help teasing or criticizing those less intelligent than I. |\r\n| 2 | I love rich food and drink, and I never miss a chance at a good meal. |\r\n| 3 | I never trust anyone who won't drink with me. |\r\n| 4 | I hate it when people start fights in bars; they never consider the consequences. |\r\n| 5 | I can't stand to see someone go hungry or sleep in the cold if I can help it. |\r\n| 6 | I am quick to anger if anyone doesn't like my meals or brews. If you don't like it, do it yourself. |", - "type": "suggested_characteristics", - "parent": "toh_innkeeper" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 109, - "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, History", - "type": "skill_proficiency", - "parent": "toh_mercenary-company-scion" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 110, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "toh_mercenary-company-scion" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 111, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of gaming set, one musical instrument", - "type": "tool_proficiency", - "parent": "toh_mercenary-company-scion" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 112, - "fields": { - "name": "Equipment", - "desc": "A backpack, a signet ring emblazoned with the symbol of your family's free company, a musical instrument of your choice, a mess kit, a set of traveler's clothes, and a belt pouch containing 20 gp", - "type": "equipment", - "parent": "toh_mercenary-company-scion" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 113, - "fields": { - "name": "The Family Name", - "desc": "Your family name is well known in the closeknit world of mercenary companies. Members of mercenary companies readily recognize your name and will provide food, drink, and shelter with pleasure or out of fear, depending upon your family's reputation. You can also gain access to friendly military encampments, fortresses, or powerful political figures through your contacts among the mercenaries. Utilizing such connections might require the donation of money, magic items, or a great deal of drink.", - "type": "feature", - "parent": "toh_mercenary-company-scion" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 114, - "fields": { - "name": "Suggested Characteristics", - "desc": "The turmoil of war, the drudgery of the camp, long days on the road, and the thrill of battle shape a Mercenary Company Scion to create strong bonds of loyalty, military discipline, and a practical mind. Yet this history can scar as well, leaving the scion open to guilt, pride, resentment, and hatred.\r\n\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am ashamed of my family's reputation and seek to distance myself from their deeds. |\r\n| 2 | I have seen the world and know people everywhere. |\r\n| 3 | I expect the best life has to offer and won't settle for less. |\r\n| 4 | I know stories from a thousand campaigns and can apply them to any situation. |\r\n| 5 | After too many betrayals, I don't trust anyone. |\r\n| 6 | My parents were heroes, and I try to live up to their example. |\r\n| 7 | I have seen the horrors of war; nothing dis'turbs me anymore. |\r\n| 8 | I truly believe I have a destiny of glory and fame awaiting me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Glory.** Only by fighting for the right causes can I achieve true fame and honor. (Good) |\r\n| 2 | **Dependable.** Once my oath is given, it cannot be broken. (Lawful) |\r\n| 3 | **Seeker.** Life can be short, so I will live it to the fullest before I die. (Chaotic) |\r\n| 4 | **Ruthless.** Only the strong survive. (Evil) |\r\n| 5 | **Mercenary.** If you have gold, I'm your blade. (Neutral) |\r\n| 6 | **Challenge.** Life is a test, and only by meeting life head on can I prove I am worthy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My parent's legacy is a tissue of lies. I will never stop until I uncover the truth. |\r\n| 2 | I am the only one who can uphold the family name. |\r\n| 3 | My companions are my life, and I would do anything to protect them. |\r\n| 4 | I will never forget the betrayal leading to my parent's murder, but I will avenge them. |\r\n| 5 | My honor and reputation are all that matter in life. |\r\n| 6 | I betrayed my family to protect my friend who was a soldier in another free company. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I have no respect for those who never signed on to a mercenary company or walked the battlefield. |\r\n| 2 | I cannot bear losing anyone close to me, so I keep everyone at a distance. |\r\n| 3 | Bloody violence is the only way to solve problems. |\r\n| 4 | I caused the downfall of my family's mercenary company. |\r\n| 5 | I am hiding a horrible secret about one of my family's patrons. |\r\n| 6 | I see insults to my honor or reputation in every whisper, veiled glance, and knowing look. |", - "type": "suggested_characteristics", - "parent": "toh_mercenary-company-scion" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 115, - "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, Persuasion", - "type": "skill_proficiency", - "parent": "toh_mercenary-recruit" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 116, - "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", - "parent": "toh_mercenary-recruit" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 117, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of gaming set", - "type": "tool_proficiency", - "parent": "toh_mercenary-recruit" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 118, - "fields": { - "name": "Equipment", - "desc": "A letter of introduction from an old teacher, a gaming set of your choice, traveling clothes, and a pouch containing 10 gp", - "type": "equipment", - "parent": "toh_mercenary-recruit" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 119, - "fields": { - "name": "Theoretical Experience", - "desc": "You have an encyclopedic knowledge of stories, myths, and legends of famous soldiers, mercenaries, and generals. Telling these stories can earn you a bed and food for the evening in taverns, inns, and alehouses. Your age or inexperience is endearing, making commoners more comfortable with sharing local rumors, news, and information with you.", - "type": "feature", - "parent": "toh_mercenary-recruit" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 120, - "fields": { - "name": "Suggested Characteristics", - "desc": "Recruits are eager to earn their place in the world of mercenaries. Sometimes humble, other times filled with false bravado, they are still untested by the joys and horrors awaiting them. Meaning well and driven to learn, recruits are generally plagued by their own fears, ignorance, and inexperience.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am thrilled by the thought of an upcoming fight. |\r\n| 2 | Why wait until I'm famous to have songs written about me? I can write my own right now! |\r\n| 3 | I know many stories and legends of famous adventurers and compare everything to these tales. |\r\n| 4 | Humor is how I deal with fear. |\r\n| 5 | I always seek to learn new ways to use my weapons and love sharing my knowledge. |\r\n| 6 | The only way I can prove myself is to work hard and take risks. |\r\n| 7 | When you stop training, you sign your own death notice |\r\n| 8 | I try to act braver than I actually am. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Respect.** To be treated with honor and trust, I must honor and trust people first. (Good) |\r\n| 2 | **Discipline.** A good soldier obeys orders. (Lawful) |\r\n| 3 | **Courage.** Sometimes doing the right thing means breaking the law. (Chaotic) |\r\n| 4 | **Excitement.** I live for the thrill of battle, the rush of the duel, and the glory of victory. (Neutral) |\r\n| 5 | **Power.** When I achieve fame and power, no one will give me orders anymore! (Evil) |\r\n| 6 | **Ambition.** I will make something of myself no matter what. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My first mentor was murdered, and I seek the skills to avenge that crime. |\r\n| 2 | I will become the greatest mercenary warrior ever. |\r\n| 3 | I value the lessons from my teachers and trust them implicitly. |\r\n| 4 | My family has sacrificed much to get me this far. I must repay their faith in me. |\r\n| 5 | I will face any danger to win the respect of my companions. |\r\n| 6 | I have hidden a map to an amazing and powerful magical treasure until I grow strong enough to follow it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I do not trust easily and question anyone who attempts to give me orders. |\r\n| 2 | I ridicule others to hide my insecurities. |\r\n| 3 | To seem brave and competent, I refuse to allow anyone to doubt my courage. |\r\n| 4 | I survived an attack by a monster as a child, and I have feared that creature ever since. |\r\n| 5 | I have a hard time thinking before I act. |\r\n| 6 | I hide my laziness by tricking others into doing my work for me. |", - "type": "suggested_characteristics", - "parent": "toh_mercenary-recruit" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 121, - "fields": { - "name": "Skill Proficiencies", - "desc": "Intimidation, Survival", - "type": "skill_proficiency", - "parent": "toh_monstrous-adoptee" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 122, - "fields": { - "name": "Languages", - "desc": "One language of your choice, typically your adopted parents' language (if any)", - "type": "language", - "parent": "toh_monstrous-adoptee" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 123, - "fields": { - "name": "Tool Proficiencies", - "desc": "No additional tool proficiencies", - "type": "tool_proficiency", - "parent": "toh_monstrous-adoptee" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 124, - "fields": { - "name": "Equipment", - "desc": "A club, handaxe, or spear, a trinket from your life before you were adopted, a set of traveler's clothes, a collection of bones, shells, or other natural objects, and a belt pouch containing 5 gp", - "type": "equipment", - "parent": "toh_monstrous-adoptee" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 125, - "fields": { - "name": "Abnormal Demeanor", - "desc": "Your time with your adopted parents taught you an entire lexicon of habits, behaviors, and intuitions suited to life in the wild among creatures of your parents' type. When you are in the same type of terrain your adopted parent inhabits, you can find food and fresh water for yourself and up to five other people each day. In addition, when you encounter a creature like your adopted parent or parents, the creature is disposed to hear your words instead of leaping directly into battle. Mindless or simple creatures might not respond to your overtures, but more intelligent creatures may be willing to treat instead of fight, if you approach them in an appropriate manner. For example, if your adopted parent was a cloaker, when you encounter a cloaker years later, you understand the appropriate words, body language, and motions for approaching the cloaker respectfully and peacefully.", - "type": "feature", - "parent": "toh_monstrous-adoptee" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 126, - "fields": { - "name": "Suggested Characteristics", - "desc": "When monstrous adoptees leave their adopted parents for the wider world, they often have a hard time adapting. What is common or usual for many humanoids strikes them as surprising, frightening, or infuriating, depending on the individual. Most make an effort to adjust their habits and imitate those around them, but not all. Some lean into their differences, reveling in shocking those around them. When you choose a creature to be your character's adopted parent, think about how that might affect your character. Was your character treated kindly? Was your character traded by their birth parents to their adopted parents as part of some mysterious bargain? Did your character seek constant escape or do they miss their adopted parents?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I don't eat my friends (at least not while they are alive). My foes, on the other hand . . . |\r\n| 2 | Meeting another's gaze is a challenge for dominance that I never fail to answer. |\r\n| 3 | Monsters I understand; people are confusing. |\r\n| 4 | There are two types of creatures in life: prey or not-prey. |\r\n| 5 | I often use the growls, sounds, or calls of my adopted parents instead of words. |\r\n| 6 | Inconsequential items fascinate me. |\r\n| 7 | It's not my fault, I was raised by [insert parent's type here]. |\r\n| 8 | I may look fine, but I behave like a monster. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Wild.** After seeing the wider world, I want to be the monster that strikes fear in the hearts of people. (Evil) |\r\n| 2 | **Insight.** I want to understand the world of my adopted parents. (Neutral) |\r\n| 3 | **Revenge.** I want revenge for my lost childhood. Monsters must die! (Any) |\r\n| 4 | **Harmony.** With my unique perspective and upbringing, I hope to bring understanding between the different creatures of the world. (Good) |\r\n| 5 | **Freedom.** My past away from law-abiding society has shown me the ridiculousness of those laws. (Chaotic) |\r\n| 6 | **Redemption.** I will rise above the cruelty of my adopted parent and embrace the wider world. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I want to experience every single aspect of the world. |\r\n| 2 | I rely on my companions to teach me how to behave appropriately in their society. |\r\n| 3 | I have a *sibling*, a child of my adopted parent that was raised alongside me, and now that sibling has been kidnapped! |\r\n| 4 | My monstrous family deserves a place in this world, too. |\r\n| 5 | I'm hiding from my monstrous family. They want me back! |\r\n| 6 | An old enemy of my adopted parents is on my trail. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | What? I like my meat raw. Is that so strange? |\r\n| 2 | I like to collect trophies from my defeated foes (ears, teeth, bones, or similar). It's how I keep score. |\r\n| 3 | I usually forget about pesky social conventions like *personal property* or *laws*. |\r\n| 4 | I am easily startled by loud noises or bright lights. |\r\n| 5 | I have trouble respecting anyone who can't best me in a fight. |\r\n| 6 | Kindness is for the weak. |", - "type": "suggested_characteristics", - "parent": "toh_monstrous-adoptee" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 127, - "fields": { - "name": "Skill Proficiencies", - "desc": "Deception, Survival", - "type": "skill_proficiency", - "parent": "toh_mysterious-origins" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 128, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "toh_mysterious-origins" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 129, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of artisan's tools or one type of musical instrument", - "type": "tool_proficiency", - "parent": "toh_mysterious-origins" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 130, - "fields": { - "name": "Equipment", - "desc": "A mysterious trinket from your past life, a set of artisan's tools or a musical instrument (one of your choice), a set of common clothes, and a belt pouch containing 5 gp", - "type": "equipment", - "parent": "toh_mysterious-origins" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 131, - "fields": { - "name": "Unexpected Acquaintance", - "desc": "Even though you can't recall them, someone from your past will recognize you and offer to aid you—or to impede you. The person and their relationship to you depend on the truth of your backstory. They might be a childhood friend, a former rival, or even your child who's grown up with dreams of finding their missing parent. They may want you to return to your former life even if it means abandoning your current goals and companions. Work with your GM to determine the details of this character and your history with them.", - "type": "feature", - "parent": "toh_mysterious-origins" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 132, - "fields": { - "name": "Suggested Characteristics", - "desc": "You may be bothered by your lack of memories and driven to recover them or reclaim the secrets of your past, or you can use your anonymity to your advantage.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm always humming a song, but I can't remember the words. |\r\n| 2 | I love learning new things and meeting new people. |\r\n| 3 | I want to prove my worth and have people know my name. |\r\n| 4 | I don't like places that are crowded or noisy. |\r\n| 5 | I'm mistrustful of mages and magic in general. |\r\n| 6 | I like to keep everything tidy and organized so that I can find things easily. |\r\n| 7 | Every night I record my day in a detailed journal. |\r\n| 8 | I live in the present. The future will come as it may. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Redemption.** Whatever I did in the past, I'm determined to make the world a better place. (Good) |\r\n| 2 | **Independence.** I'm beholden to no one, so I can do whatever I want. (Chaotic) |\r\n| 3 | **Cunning.** Since I have no past, no one can use it to thwart my rise to power. (Evil) |\r\n| 4 | **Community.** I believe in a just society that takes care of people in need. (Lawful) |\r\n| 5 | **Fairness.** I judge others by who they are now, not by what they've done in the past. (Neutral) |\r\n| 6 | **Friendship.** The people in my life now are more important than any ideal. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have dreams where I see a loved one's face, but I can't remember their name or who they are. |\r\n| 2 | I wear a wedding ring, so I must have been married before I lost my memories. |\r\n| 3 | My mentor raised me; they told me that I lost my memories in a terrible accident that killed my family. |\r\n| 4 | I have an enemy who wants to kill me, but I don't know what I did to earn their hatred. |\r\n| 5 | I know there's an important memory attached to the scar I bear on my body. |\r\n| 6 | I can never repay the debt I owe to the person who cared for me after I lost my memories. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am jealous of those who have memories of a happy childhood. |\r\n| 2 | I'm desperate for knowledge about my past, and I'll do anything to obtain that information. |\r\n| 3 | I'm terrified of meeting someone from my past, so I avoid strangers as much as possible. |\r\n| 4 | Only the present matters. I can't bring myself to care about the future. |\r\n| 5 | I'm convinced that I was powerful and rich before I lost my memories—and I expect everyone to treat me accordingly. |\r\n| 6 | Anyone who shows me pity is subjected to my biting scorn. |", - "type": "suggested_characteristics", - "parent": "toh_mysterious-origins" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 133, - "fields": { - "name": "Skill Proficiencies", - "desc": "Perception plus one of your choice from among History or Performance", - "type": "skill_proficiency", - "parent": "toh_northern-minstrel" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 134, - "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "toh_northern-minstrel" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 135, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of musical instrument", - "type": "tool_proficiency", - "parent": "toh_northern-minstrel" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 136, - "fields": { - "name": "Equipment", - "desc": "A book collecting all the songs, poems, or stories you know, a pair of snowshoes, one musical instrument of your choice, a heavy fur-lined cloak, and a belt pouch containing 10 gp", - "type": "equipment", - "parent": "toh_northern-minstrel" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 137, - "fields": { - "name": "Northern Historian", - "desc": "Your education and experience have taught you how to determine the provenance of ruins, monuments, and other structures within the north. When you spend at least 1 hour examining a structure or non-natural feature of the terrain, you can determine if it was built by humans, dwarves, elves, goblins, giants, trolls, or fey. You can also determine the approximate age (within 500 years) of the construction based on its features and embellishments.", - "type": "feature", - "parent": "toh_northern-minstrel" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 138, - "fields": { - "name": "Suggested Characteristics", - "desc": "Northern minstrels tend to either be boisterous and loud or pensive and watchful with few falling between these extremes. Many exude both qualities at different times, and they have learned how and when to turn their skald persona on and off. Like other northerners, they place a lot of stock in appearing brave and tough, which can lead them unwittingly into conflict.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will accept any dare and expect accolades when I complete it. |\r\n| 2 | Revelry and boisterousness are for foolish children. I prefer to quietly wait and watch. |\r\n| 3 | I am more than a match for any northern reaver. If they believe that is not so, let them show me what stuff they are made of. |\r\n| 4 | I yearn for the raiding season and the tales of blood and butchery I can use to draw the crowds. |\r\n| 5 | Ragnarok is nigh. I will bear witness to the end of all things and leave a record should there be any who survive it. |\r\n| 6 | There is nothing better than mutton, honeyed mead, and a crowd in thrall to my words. |\r\n| 7 | The gods weave our fates. There is nothing to do but accept this and live as we will. |\r\n| 8 | All life is artifice. I lie better than most and I am not ashamed to reap the rewards. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Valor.** Stories and songs should inspire others—and me—to perform great deeds that benefit us all. (Good) |\r\n| 2 | **Greed.** There is little point in taking action if it leads to living in squalor. I will take what I want and dare any who disagree to oppose me. (Evil) |\r\n| 3 | **Perfection.** I will not let the threat of failure deter me. Every deed I attempt, even those I do not succeed at, serve to improve me and prepare me for future endeavors. (Lawful) |\r\n| 4 | **Anarchy.** If Ragnarok is coming to end all that is, I must do what I want and damn the consequences. (Chaotic) |\r\n| 5 | **Knowledge.** The north is full of ancient ruins and monuments. If I can glean their meaning, I may understand fate as well as the gods. (Any) |\r\n| 6 | **Pleasure.** I will eat the richest food, sleep in the softest bed, enjoy the finest company, and allow no one to stand in the way of my delight and contentment. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have the support of my peers from the skaldic school I attended, and they have mine. |\r\n| 2 | I will find and answer the Unanswerable Riddle and gain infamy. |\r\n| 3 | I will craft an epic of such renown it will be recited the world over. |\r\n| 4 | All my companions were slain in an ambush laid by cowardly trolls. At least I snatched up my tagelharpa before I escaped the carnage. |\r\n| 5 | The cold waves call to me even across great distances. I must never stray too far from the ocean's embrace. |\r\n| 6 | It is inevitable that people fail me. Mead, on the other hand, never fails to slake my thirst. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Only a coward retreats. The valiant press forward to victory or death. |\r\n| 2 | All the tales I tell of my experiences are lies. |\r\n| 3 | Critics and hecklers will suffer my wrath once the performance is over. |\r\n| 4 | Companions and friends cease to be valuable if their accomplishments outshine my own. |\r\n| 5 | I once burned down a tavern where I was poorly received. I would do it again. |\r\n| 6 | I cannot bear to be gainsaid and fall into a bitter melancholy when I am. |", - "type": "suggested_characteristics", - "parent": "toh_northern-minstrel" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 139, - "fields": { - "name": "Skill Proficiencies", - "desc": "Arcana, Religion", - "type": "skill_proficiency", - "parent": "toh_occultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 140, - "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", - "parent": "toh_occultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 141, - "fields": { - "name": "Tool Proficiencies", - "desc": "Thieves' tools", - "type": "tool_proficiency", - "parent": "toh_occultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 142, - "fields": { - "name": "Equipment", - "desc": "A book of obscure lore holding clues to an occult location, a bottle of black ink, a quill, a leather-bound journal in which you record your secrets, a bullseye lantern, a set of common clothes, and a belt pouch containing 5 gp", - "type": "equipment", - "parent": "toh_occultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 143, - "fields": { - "name": "Strange Lore", - "desc": "Your passions for forbidden knowledge, esoteric religions, secretive cults, and terrible histories brought you into contact with a wide variety of interesting and unique individuals operating on the fringes of polite society. When you're trying to find something that pertains to eldritch secrets or dark knowledge, you have a good idea of where to start looking. Usually, this information comes from information brokers, disgraced scholars, chaotic mages, dangerous cults, or insane priests. Your GM might rule that the knowledge you seek isn't found with just one contact, but this feature provides a starting point.", - "type": "feature", - "parent": "toh_occultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 144, - "fields": { - "name": "Suggested Characteristics", - "desc": "Occultists can't resist the lure of an ancient ruin, forgotten dungeon, or the lair of some mysterious cult. They eagerly follow odd rumors, folktales, and obscure clues found in dusty tomes. Some adventure with the hope of turning their discoveries into fame and fortune, while others consider the answers they uncover to be the true reward. Whatever their motivations, occultists combine elements of archaeologist, scholar, and fanatic.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I always ask questions, especially if I think I can learn something new. |\r\n| 2 | I believe every superstition I hear and follow their rules fanatically. |\r\n| 3 | The things I know give me nightmares, and not only when I sleep. |\r\n| 4 | Nothing makes me happier than explaining some obscure lore to my friends. |\r\n| 5 | I startle easily. |\r\n| 6 | I perform a host of rituals throughout the day that I believe protect me from occult threats. |\r\n| 7 | I never know when to give up. |\r\n| 8 | The more someone refuses to believe me, the more I am determined to convince them. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Domination.** With the power I will unearth, I will take my revenge on those who wronged me. (Evil) |\r\n| 2 | **Mettle.** Each nugget of hidden knowledge I uncover proves my worth. (Any) |\r\n| 3 | **Lore.** Knowledge is never good or evil; it is simply knowledge. (Neutral) |\r\n| 4 | **Redemption.** This dark knowledge can be made good if it is used properly. (Good) |\r\n| 5 | **Truth.** Nothing should be hidden. Truth is all that matters, no matter who it hurts. (Chaotic) |\r\n| 6 | **Responsibility.** Only by bringing dark lore into the light can we eliminate its threat. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | One or more secret organizations are trying to stop me, which means I must be close to the truth. |\r\n| 2 | My studies come before anything else. |\r\n| 3 | No theory, however unbelievable, is worth abandoning without investigation. |\r\n| 4 | I must uncover the truth behind a particular mystery, one my father died to protect. |\r\n| 5 | I travel with my companions because I have reason to believe they are crucial to the future. |\r\n| 6 | I once had a partner in my occult searches who vanished. I am determined to find them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | When stressed, I mutter theories to myself, sometimes connecting seemingly unconnected or random events, to explain my current predicament. |\r\n| 2 | It's not paranoia if they really are out to get me. |\r\n| 3 | I have a habit of lying to hide my theories and discoveries. |\r\n| 4 | I see secrets and mysteries in everything and everyone. |\r\n| 5 | The world is full of dark secrets, and I'm the only one who can safely unearth them. |\r\n| 6 | There is no law or social convention I won't break to further my goals. |", - "type": "suggested_characteristics", - "parent": "toh_occultist" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 145, - "fields": { - "name": "Skill Proficiencies", - "desc": "Nature, Investigation", - "type": "skill_proficiency", - "parent": "toh_parfumier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 146, - "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", - "parent": "toh_parfumier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 147, - "fields": { - "name": "Tool Proficiencies", - "desc": "Alchemist's supplies, herbalism kit", - "type": "tool_proficiency", - "parent": "toh_parfumier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 148, - "fields": { - "name": "Equipment", - "desc": "Herbalism kit, a leather satchel containing perfume recipes, research notes, and chemical and botanical samples; 1d4 metal or crystal (shatter-proof) perfume bottles, a set of fine clothes, and a silk purse containing 10 gp", - "type": "equipment", - "parent": "toh_parfumier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 149, - "fields": { - "name": "Aromas and Odors and Airs, Oh My", - "desc": "Before you became an adventurer, you crafted perfumes for customers in your home town or city. When not out adventuring, you can fall back on that trade to make a living. For each week you spend practicing your profession, you can craft one of the following at half the normal cost in time and resources: 5 samples of fine perfume worth 10 gp each, 2 vials of acid, or 1 vial of parfum toxique worth 50 gp. As an action, you can throw a vial of parfum toxique up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the parfum as an improvised weapon. On a hit, the target takes 1d6 poison damage and is poisoned until the end of its next turn.", - "type": "feature", - "parent": "toh_parfumier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 150, - "fields": { - "name": "Suggested Characteristics", - "desc": "As with many parfumiers with the extensive training you received, you are well spoken, stately of bearing, and possessed of a self-assuredness that sometimes is found imposing. You are not easily impressed and rarely subscribe to notions like *insurmountable* or *unavoidable*. Every problem has a solution.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I do not deal in absolutes. There is a solution to every problem, an answer for every riddle. |\r\n| 2 | I am used to associating with educated and “elevated” society. I find rough living and rough manners unpalatable. |\r\n| 3 | Years spent witnessing the dealings, intrigues, and industrial espionage of the Bouquet Districts' mercantile-elite have left me secretive and guarded. |\r\n| 4 | I have a strong interest and sense for fashion and current trends. |\r\n| 5 | I eagerly discuss the minutiae, subtleties, and nuances of my profession to any who will listen. |\r\n| 6 | I am easily distracted by unusual or exceptional botanical specimens. |\r\n| 7 | I can seem distant and introverted. I listen more than I speak. |\r\n| 8 | I always strive to make allies, not enemies. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Responsibility.** It is my duty to share my exceptional gifts and knowledge for the betterment of all. (Good) |\r\n| 2 | **Pragmatism.** I never let passion, preference, or emotion influence my decision-making or clear headedness. (Lawful) |\r\n| 3 | **Freedom.** Rules, particularly those imposed by others, were meant to be broken. (Chaotic) |\r\n| 4 | **Deep Science.** I live a life based on facts, logic, probability, and common sense. (Lawful) |\r\n| 5 | **Notoriety.** I will do whatever it takes to become the elite that I was witness to during my time among the boutiques, salons, and workshops of the noble's district. (Any) |\r\n| 6 | **Profit.** I will utilize my talents to harvest, synthesize, concoct, and brew almost anything for almost anyone. As long as the profit margin is right. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will return to my home city someday and have revenge upon the elitist perfume consortium and corrupt shipping magnates who drove my dreams to ruin. |\r\n| 2 | I have been experimenting and searching my whole career for the ultimate aromatic aphrodisiac. The “alchemists' stone” of perfumery. |\r\n| 3 | My home is safely far behind me now. With it go the unfounded accusations, spiteful rumors, and perhaps some potential links to a string of corporate assassinations. |\r\n| 4 | I am cataloging an encyclopedia of flora and their various chemical, magical, and alchemical properties and applications. It is my life's work. |\r\n| 5 | I am dedicated to my craft, always seeking to expand my knowledge and hone my skills in the science and business of aromatics. |\r\n| 6 | I have a loved one who is threatened (held hostage?) by an organized gang of vicious halfling thugs who control many of the “rackets” in the perfumeries in my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am driven to reclaim the status and respect of the socially and scientifically elite and will sacrifice much to gain it. |\r\n| 2 | I am highly competitive and not above plagiarizing or stealing the occasional recipe, idea, formula, or sample. |\r\n| 3 | I am hard-pressed to treat anyone who is not (by my standards) “well schooled” or “well heeled” as little more than lab assistants and house servants. |\r\n| 4 | A pretty face is always able to lead me astray. |\r\n| 5 | I am secretly addicted to a special perfume that only I can reproduce. |\r\n| 6 | *On a stormy night, I heard a voice in the wind, which led me to a mysterious plant. Its scent was intoxicating, and I consumed it. Now, that voice occasionally whispers in my dreams, urging me to some unknown destiny.* |", - "type": "suggested_characteristics", - "parent": "toh_parfumier" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 151, - "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, Sleight of Hand", - "type": "skill_proficiency", - "parent": "toh_scoundrel" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 152, - "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", - "parent": "toh_scoundrel" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 153, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of gaming set, thieves' tools", - "type": "tool_proficiency", - "parent": "toh_scoundrel" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 154, - "fields": { - "name": "Equipment", - "desc": "A bag of 1,000 ball bearings, a pet monkey wearing a tiny fez, a set of common clothes, and a pouch containing 10 gp", - "type": "equipment", - "parent": "toh_scoundrel" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 155, - "fields": { - "name": "Urban Explorer", - "desc": "You are familiar with the layout and rhythms of towns and cities. When you arrive in a new city, you can quickly locate places to stay, where to buy good quality gear, and other facilities. You can shake off pursuers when you are being chased through the streets or across the rooftops. You have a knack for leading pursuers into a crowded market filled with stalls piled high with breakable merchandise, or down a narrow alley just as a dung cart is coming in the other direction.", - "type": "feature", - "parent": "toh_scoundrel" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 156, - "fields": { - "name": "Suggested Characteristics", - "desc": "Despite their poor upbringing, scoundrels tend to live a charmed life—never far from trouble, but usually coming out on top. Many are thrill-seekers who delight in taunting their opponents before making a flashy and daring escape. Most are generally good-hearted, but some are self-centered to the point of arrogance. Quieter, introverted types and the lawfully-inclined can find them very annoying.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Flashing a big smile often gets me out of trouble. |\r\n| 2 | If I can just keep them talking, it will give me time to escape. |\r\n| 3 | I get fidgety if I have to sit still for more than ten minutes or so. |\r\n| 4 | Whatever I do, I try to do it with style and panache. |\r\n| 5 | I don't hold back when there's free food and drink on offer. |\r\n| 6 | Nothing gets me more annoyed than being ignored. |\r\n| 7 | I always sit with my back to the wall and my eyes on the exits. |\r\n| 8 | Why walk down the street when you can run across the rooftops? |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** Ropes and chains are made to be broken. Locks are made to be picked. Doors are meant to be opened. (Chaotic) |\r\n| 2 | **Community.** We need to look out for one another and keep everyone safe. (Lawful) |\r\n| 3 | **Charity.** I share my wealth with those who need it the most. (Good) |\r\n| 4 | **Friendship.** My friends matter more to me than lofty ideals. (Neutral) |\r\n| 5 | **Aspiration.** One day my wondrous deeds will be known across the world. (Any) |\r\n| 6 | **Greed.** I'll stop at nothing to get what I want. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My elder sibling taught me how to find a safe hiding place in the city. This saved my life at least once. |\r\n| 2 | I stole money from someone who couldn't afford to lose it and now they're destitute. One day I'll make it up to them. |\r\n| 3 | The street kids in my town are my true family. |\r\n| 4 | My mother gave me an old brass lamp. I polish it every night before going to sleep. |\r\n| 5 | When I was young, I was too scared to leap from the tallest tower in my hometown onto the hay cart beneath. I'll try again someday. |\r\n| 6 | A city guardsman let me go when they should have arrested me for stealing. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If there's a lever to pull, I'll pull it. |\r\n| 2 | It's not stealing if nobody realizes it's gone. |\r\n| 3 | If I don't like the odds, I'm out of there. |\r\n| 4 | I often don't know when to shut up. |\r\n| 5 | I once filched a pipe from a priest. Now I think the god has cursed me. |\r\n| 6 | I grow angry when someone else steals the limelight. |", - "type": "suggested_characteristics", - "parent": "toh_scoundrel" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 157, - "fields": { - "name": "Skill Proficiencies", - "desc": "Insight, Perception", - "type": "skill_proficiency", - "parent": "toh_sentry" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 158, - "fields": { - "name": "Languages", - "desc": "One language of your choice", - "type": "language", - "parent": "toh_sentry" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 159, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of gaming set", - "type": "tool_proficiency", - "parent": "toh_sentry" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 160, - "fields": { - "name": "Equipment", - "desc": "A set of dice or deck of cards, a shield bearing your previous employer's symbol, a set of common clothes, a hooded lantern, a signal whistle, and a belt pouch containing 10 gp", - "type": "equipment", - "parent": "toh_sentry" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 161, - "fields": { - "name": "Comrades in Arms", - "desc": "The knowing look from the caravan guard to the city gatekeeper or the nod of recognition between the noble's bodyguard and the district watchman—no matter the community, city, or town, the guards share a commonality of purpose. When you arrive in a new location, you can speak briefly with the gate guards, local watch, or other community guardians to gain local knowledge. This knowledge could be information, such as the most efficient routes through the city, primary vendors for a variety of luxury goods, the best (or worst) inns and taverns, the primary criminal elements in town, or the current conflicts in the community.", - "type": "feature", - "parent": "toh_sentry" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 162, - "fields": { - "name": "Suggested Characteristics", - "desc": "You're a person who understands both patience and boredom, as a guard is always waiting for something to happen. More often than not, sentries hope nothing happens because something happening usually means something has gone wrong. A life spent watching and protecting, acting in critical moments, and learning the details of places and behaviors; all of these help shape the personality of the former sentry. Some claim you never stop being a guard, you just change what you protect.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I've seen the dregs of society and nothing surprises me anymore. |\r\n| 2 | I know where to look to spot threats lurking around a corner, in a glance, and even in a bite of food or cup of drink. |\r\n| 3 | I hate standing still and always keep moving. |\r\n| 4 | My friends know they can rely on me to stand and protect them. |\r\n| 5 | I resent the rich and powerful; they think they can get away with anything. |\r\n| 6 | A deception of any sort marks you as untrustworthy in my mind. |\r\n| 7 | Stopping lawbreakers taught me the best ways to skirt the law. |\r\n| 8 | I never take anything at face-value. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greed.** Threats to my companions only increase my glory when I protect them from it. (Evil) |\r\n| 2 | **Perception.** I watch everyone, for threats come from every rank or station. (Neutral) |\r\n| 3 | **Duty.** The laws of the community must be followed to keep everyone safe. (Lawful) |\r\n| 4 | **Community.** I am all that stands between my companions and certain doom. (Good) |\r\n| 5 | **Determination.** To truly protect others, you must sometimes break the law. (Chaotic) |\r\n| 6 | **Practicality.** I require payment for the protection or service I provide. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My charge is paramount; if you can't protect your charge, you've failed. |\r\n| 2 | I was once saved by one of my fellow guards. Now I always come to my companions' aid, no matter what the threat. |\r\n| 3 | My oath is unbreakable; I'd rather die first. |\r\n| 4 | There is no pride equal to the accomplishment of a successful mission. |\r\n| 5 | I stand as a bulwark against those who would damage or destroy society, and society is worth protecting. |\r\n| 6 | I know that as long as I stand with my companions, things can be made right. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Sometimes I may overindulge in a guilty pleasure, but you need something to pass time. |\r\n| 2 | I can't just sit quietly next to someone. I've got to fill the silence with conversation to make good company. |\r\n| 3 | I'm not very capable in social situations. I'd rather sit on the sidelines and observe. People make me nervous. |\r\n| 4 | I have a tough time trusting strangers and new people. You don't know their habits and behaviors; therefore, you don't know their risk. |\r\n| 5 | There is danger all around us, and only the foolish let their guard down. I am no fool, and I will spot the danger. |\r\n| 6 | I believe there's a firm separation between task and personal time. I don't do other people's work when I'm on my own time. If you want me, hire me. |", - "type": "suggested_characteristics", - "parent": "toh_sentry" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 163, - "fields": { - "name": "Skill Proficiencies", - "desc": "Nature, Survival", - "type": "skill_proficiency", - "parent": "toh_trophy-hunter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 164, - "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", - "parent": "toh_trophy-hunter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 165, - "fields": { - "name": "Tool Proficiencies", - "desc": "Leatherworker's tools, vehicles (land)", - "type": "tool_proficiency", - "parent": "toh_trophy-hunter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 166, - "fields": { - "name": "Equipment", - "desc": "A donkey or mule with bit and bridle, a set of cold-weather or warm-weather clothes, and a belt pouch containing 5 gp", - "type": "equipment", - "parent": "toh_trophy-hunter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 167, - "fields": { - "name": "Shelter from the Storm", - "desc": "You have spent years hunting in the harshest environments of the world and have seen tents blown away by gales, food stolen by hungry bears, and equipment destroyed by the elements. While traveling in the wilderness, you can find a natural location suitable to make camp by spending 1 hour searching. This location provides cover from the elements and is in some way naturally defensible, at the GM's discretion.", - "type": "feature", - "parent": "toh_trophy-hunter" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 168, - "fields": { - "name": "Suggested Characteristics", - "desc": "Most trophy hunters are skilled hobbyists and find strange relaxation in the tension of the hunt and revel in the glory of a kill. You may find great personal joy in hunting, in the adoration of peers, or simply in earning gold by selling pelts, scales, and horns.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nothing gets my blood pumping like stalking a wild animal. |\r\n| 2 | I like things big! Trophies, big! Food, big! Money, houses, weapons, possessions, I want ‘em big, big, BIG! |\r\n| 3 | When hunting, it's almost as if I become a different person. Focused. Confident. Ruthless. |\r\n| 4 | The only way to kill a beast is to be patient and find the perfect moment to strike. The same is true for all the important things in life. |\r\n| 5 | Bathing is for novices. I know that to catch my smelly, filthy prey, I must smell like them to throw off their scent. |\r\n| 6 | I eat only raw meat. It gets me more in tune with my prey. |\r\n| 7 | I'm a connoisseur of killing implements; I only use the best, because I am the best. |\r\n| 8 | I thank the natural world for its bounty after every kill. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Ambition.** It is my divine calling to become better than my rivals by any means necessary. (Chaotic) |\r\n| 2 | **Altruism.** I hunt only to protect those who cannot protect themselves. (Good) |\r\n| 3 | **Determination.** No matter what the laws say, I will kill that beast! (Chaotic) |\r\n| 4 | **Cruelty.** My prey lives only for my pleasure. It will die exactly as quickly or as slowly as I desire. (Evil) |\r\n| 5 | **Sport.** We're just here to have fun. (Neutral) |\r\n| 6 | **Family.** I follow in my family's footsteps. I will not tarnish their legacy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I like hunting because I like feeling big and powerful. |\r\n| 2 | I hunt because my parents think I'm a worthless runt. I need to make them proud. |\r\n| 3 | I was mauled by a beast on my first hunting trip. I've spent my life searching for that monster. |\r\n| 4 | The first time I drew blood, something awoke within me. Every hunt is a search for the original ecstasy of blood. |\r\n| 5 | My hunting companions used to laugh at me behind my back. They aren't laughing anymore. |\r\n| 6 | A close friend funded my first hunting expedition. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm actually a sham. All of my trophies were bagged by someone else. I just followed along and watched. |\r\n| 2 | I'm terrified of anything larger than myself. |\r\n| 3 | I can't express anger without lashing out at something. |\r\n| 4 | I need money. I don't care how much or how little I have; I need more. And I would do anything to get it. |\r\n| 5 | I am obsessed with beauty in animals, art, and people. |\r\n| 6 | I don't trust my hunting partners, whom I know are here to steal my glory! |", - "type": "suggested_characteristics", - "parent": "toh_trophy-hunter" - } - } -] \ No newline at end of file +{ + "model": "api_v2.backgroundbenefit", + "pk": 18, + "fields": { + "name": "Skill Proficiencies", + "desc": "Perception, Survival", + "type": "skill_proficiency", + "parent": "toh_desert-runner" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 19, + "fields": { + "name": "Tool Proficiencies", + "desc": "Herbalist kit", + "type": "tool_proficiency", + "parent": "toh_desert-runner" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 20, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_desert-runner" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 21, + "fields": { + "name": "Equipment", + "desc": "Traveler's clothes, herbalist kit, waterskin, pouch with 10 gp", + "type": "equipment", + "parent": "toh_desert-runner" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 22, + "fields": { + "name": "Nomad", + "desc": "Living in the open desert has allowed your body to adapt to a range of environmental conditions. You can survive on 1 gallon of water in hot conditions (or 1/2 gallon in normal conditions) without being forced to make Constitution saving throws, and you are considered naturally adapted to hot climates. While in a desert, you can read the environment to predict natural weather patterns and temperatures for the next 24 hours, allowing you to cross dangerous terrain at the best times. The accuracy of your predictions is up to the GM, but they should be reliable unless affected by magic or unforeseeable events, such as distant earthquakes or volcanic eruptions.", + "type": "feature", + "parent": "toh_desert-runner" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 23, + "fields": { + "name": "Suggested Characteristics", + "desc": "Those raised in the desert can be the friendliest of humanoids—knowing allies are better than enemies in that harsh environment—or territorial and warlike, believing that protecting food and water sources by force is the only way to survive.\r\n\r\n| d8 | Personality Trait |\r\n| --- | --- |\r\n| 1 | I'm much happier sleeping under the stars than in a bed in a stuffy caravanserai. |\r\n| 2 | It's always best to help a traveler in need; one day it might be you. | \r\n| 3 | I am slow to trust strangers, but I'm extremely loyal to my friends. | \r\n| 4 | If there's a camel race, I'm the first to saddle up! | \r\n| 5 | I always have a tale or poem to share at the campfire. | \r\n| 6 | I don't like sleeping in the same place more than two nights in a row. | \r\n| 7 | I've been troubled by dreams for the last month. I am determined to uncover their meaning. | \r\n| 8 | I feel lonelier in a crowded city than I do out on the empty desert sands. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greater Good.** The needs of the whole tribe outweigh those of the individuals who are part of it. (Good) |\r\n| 2 | **Nature.** I must do what I can to protect the beautiful wilderness from those who would do it harm. (Neutral) |\r\n| 3 | **Tradition.** I am duty-bound to follow my tribe's age-old route through the desert. (Lawful) |\r\n 4 | **Change.** Things seldom stay the same and we must always be prepared to go with the flow. (Chaotic) |\r\n| 5 | **Honor.** If I behave dishonorably, my actions will bring shame upon the entire tribe. (Lawful) |\r\n| 6 | **Greed.** Seize what you want if no one gives it to you freely. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I am the last living member of my tribe, and I cannot let their deaths go unavenged. |\r\n| 2 | I follow the spiritual path of my tribe; it will bring me to the best afterlife when the time comes. |\r\n| 3 | My best friend has been sold into slavery to devils, and I need to rescue them before it is too late. |\r\n| 4 | A nature spirit saved my life when I was dying of thirst in the desert. |\r\n| 5 | My takoba sword is my most prized possession; for over two centuries, it's been handed down from generation to generation. |\r\n| 6 | I have sworn revenge on the sheikh who unjustly banished me from the tribe. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I enjoy the company of camels more than people. |\r\n| 2 | I can be loud and boorish after a few wineskins. |\r\n| 3 | If I feel insulted, I'll refuse to speak to anyone for several hours. |\r\n| 4 | I enjoy violence and mayhem a bit too much. |\r\n| 5 | You can't rely on me in a crisis. |\r\n| 6 | I betrayed my brother to cultists to save my own skin. |", + "type": "suggested_characteristics", + "parent": "toh_desert-runner" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 35, + "fields": { + "name": "Skill Proficiencies", + "desc": "History, Insight", + "type": "skill_proficiency", + "parent": "toh_court-servant" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 36, + "fields": { + "name": "Tool Proficiencies", + "desc": "One artisan's tools set of your choice", + "type": "tool_proficiency", + "parent": "toh_court-servant" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 37, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_court-servant" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 38, + "fields": { + "name": "Equipment", + "desc": "A set of artisan's tools of your choice, a unique piece of jewelry, a set of fine clothes, a handcrafted pipe, and a belt pouch containing 20 gp", + "type": "equipment", + "parent": "toh_court-servant" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 39, + "fields": { + "name": "Servant's Invisibility", + "desc": "The art of excellent service requires a balance struck between being always available and yet unobtrusive, and you've mastered it. If you don't perform a visible action, speak or be spoken to, or otherwise have attention drawn to you for at least 1 minute, creatures nearby have trouble remembering you are even in the room. Until you speak, perform a visible action, or have someone draw attention to you, creatures must succeed on a Wisdom (Perception) check (DC equal to 8 + your Charisma modifier + your proficiency bonus) to notice you. Otherwise, they conduct themselves as though you aren't present until either attention is drawn to you or one of their actions would take them into or within 5 feet of the space you occupy.", + "type": "feature", + "parent": "toh_court-servant" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 40, + "fields": { + "name": "Suggested Characteristics", + "desc": "Court servants tend to be outwardly quiet and soft-spoken, but their insight into the nuances of conversation and societal happenings is unparalleled. When in crowds or around strangers, most court servants keep to themselves, quietly observing their surroundings and later sharing such observations with those they trust.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Unless I must speak, I hold my breath while serving others. |\r\n| 2 | It takes all my effort not to show the effusive emotions I feel when I help others. Best to quietly serve. |\r\n| 3 | It's getting harder to tolerate the prejudices of those I serve daily. |\r\n| 4 | Though the old ways are hard to give up, I want to be my own boss. I'll decide my path. |\r\n| 5 | Serving my family and friends is the only thing I truly care about. |\r\n| 6 | City life is killing my soul. I long for the old courtly ways. |\r\n| 7 | It's time for my fellows to wake up and be taken advantage of no longer. |\r\n| 8 | It's the small things that make it all worthwhile. I try to be present in every moment. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Family. My family, whether the one I come from or the one I make, is the thing in this world most worth protecting. (Any) |\r\n| 2 | Service. I am most rewarded when I know I have performed a valuable service for another. (Good) |\r\n| 3 | Sloth. What's the point of helping anyone now that I've been discarded? (Chaotic) |\r\n| 4 | Compassion. I can't resist helping anyone in need. (Good) |\r\n| 5 | Tradition. Life under my master's rule was best, and things should be kept as close to their ideals as possible. (Lawful) |\r\n| 6 | Joy. The pursuit of happiness is the only thing worth serving anymore. (Neutral) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My family needs me to provide for them. They mean everything to me, which means I'll do whatever it takes. |\r\n| 2 | My kin have served this holding and its lords and ladies for generations. I serve them faithfully to make my lineage proud. |\r\n| 3 | I can't read the inscriptions on this odd ring, but it's all I have left of my family and our history of loyal service. |\r\n| 4 | I'm with the best friends a person can ask for, so why do I feel so lonesome and homesick? |\r\n| 5 | I've found a profession where my skills are put to good use, and I won't let anyone bring me down. |\r\n| 6 | I found peace in a special garden filled with beautiful life, but I only have this flower to remind me. Someday I'll remember where to find that garden. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 |\r\n| 2 | I'm afraid of taking risks that might be good for me. |\r\n| 3 | I believe my master's people are superior to all others, and I'm not afraid to share that truth. |\r\n| 4 | I always do as I'm told, even though sometimes I don't think I should. |\r\n| 5 | I know what's best for everyone, and they'd all be better off if they'd follow my advice. |\r\n| 6 | I can't stand seeing ugly or depressing things. I'd much rather think happy thoughts. |", + "type": "suggested_characteristics", + "parent": "toh_court-servant" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 67, + "fields": { + "name": "Skill Proficiencies", + "desc": "History, Insight", + "type": "skill_proficiency", + "parent": "toh_destined" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 68, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_destined" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 69, + "fields": { + "name": "Tool Proficiencies", + "desc": "No additional tool proficiencies", + "type": "tool_proficiency", + "parent": "toh_destined" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 70, + "fields": { + "name": "Equipment", + "desc": "A dagger, quarterstaff, or spear, a set of traveler's clothes, a memento of your destiny (a keepsake from your betrothed, the seal of your destined office, your family signet ring, or similar), a belt pouch containing 15 gp", + "type": "equipment", + "parent": "toh_destined" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 71, + "fields": { + "name": "Reputation of Opportunity", + "desc": "Your story precedes you, as does your quest to claim—or run away from—your destiny. Those in positions of power, such as nobles, bureaucrats, rich merchants, and even mercenaries and brigands, all look to either help or hinder you, based on what they think they may get out of it. They're always willing to meet with you briefly to see just how worthwhile such aid or interference might be. This might mean a traveler pays for your passage on a ferry, a generous benefactor covers your group's meals at a tavern, or a local governor invites your adventuring entourage to enjoy a night's stay in their guest quarters. However, the aid often includes an implied threat or request. Some might consider delaying you as long as politely possible, some might consider taking you prisoner for ransom or to do “what's best” for you, and others might decide to help you on your quest in exchange for some future assistance. You're never exactly sure of the associated “cost” of the person's aid until the moment arrives. In the meantime, the open road awaits.", + "type": "feature", + "parent": "toh_destined" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 72, + "fields": { + "name": "Suggested Characteristics", + "desc": "Destined characters might be running toward or away from destiny, but whatever the case, their destiny has shaped them. Think about the impact of your destiny on you and the kind of relationship you have with your destiny. Do you embrace it? Accept it as inevitable? Or do you fight it every step of the way?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm eager to find this destiny and move on with the next stage in my life. |\r\n| 2 | I keep the fire of my hope burning bright. I'm sure this will work out for the best. |\r\n| 3 | Fate has a way of finding you no matter what you do. I'm resigned to whatever they have planned for me, but I'll enjoy my time on the way. |\r\n| 4 | I owe it to myself or to those who helped establish this destiny. I'm determined to follow this through to the end. |\r\n| 5 | I don't know what this path means for me or my future. I'm more afraid of going back to that destiny than of seeing what's out in the world. |\r\n| 6 | I didn't ask for this, and I don't want it. I'm bitter that I must change my life for it. |\r\n| 7 | Few have been chosen to complete this lifepath, and I'm proud to be one of them. |\r\n| 8 | Who can say how this will work out? The world is an uncertain place, and I'll find my destiny when it finds me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Inevitability.** What's coming can't be stopped, and I'm dedicated to making it happen. (Evil) |\r\n| 2 | **Tradition.** I'm part of a cycle that has repeated for generations. I can't deny that. (Any) |\r\n| 3 | **Defiance.** No one can make me be something I don't want to be. (Any) |\r\n| 4 | **Greater Good.** Completing my duty ensures the betterment of my family, community, or region. (Good) |\r\n| 5 | **Power.** If I can take this role and be successful, I'll have opportunities to do whatever I want. (Chaotic) |\r\n| 6 | **Responsibility.** It doesn't matter if I want it or not; it's what I'm supposed to do. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | The true gift of my destiny is the friendships I make along the way to it. |\r\n| 2 | The benefits of completing this destiny will strengthen my family for years to come. |\r\n| 3 | Trying to alter my decision regarding my destiny is an unthinkable affront to me. |\r\n| 4 | How I reach my destiny is just as important as how I accomplish my destiny. |\r\n| 5 | People expect me to complete this task. I don't know how I feel about succeeding or failing, but I'm committed to it. |\r\n| 6 | Without this role fulfilled, the people of my home region will suffer, and that's not acceptable. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If you don't have a destiny, are you really special? |\r\n| 2 | But I am the “Chosen One.” |\r\n| 3 | I fear commitment; that's what this boils down to in the end. |\r\n| 4 | What if I follow through with this and I fail? |\r\n| 5 | It doesn't matter what someone else sacrificed for this. I only care about my feelings. |\r\n| 6 | Occasionally—ok, maybe “often”—I make poor decisions in life, like running from this destiny. |", + "type": "suggested_characteristics", + "parent": "toh_destined" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 73, + "fields": { + "name": "Skill Proficiencies", + "desc": "Insight, Persuasion", + "type": "skill_proficiency", + "parent": "toh_diplomat" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 74, + "fields": { + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "toh_diplomat" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 75, + "fields": { + "name": "Tool Proficiencies", + "desc": "No additional tool proficiencies", + "type": "tool_proficiency", + "parent": "toh_diplomat" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 76, + "fields": { + "name": "Equipment", + "desc": "A set of fine clothes, a letter of passage from a local minor authority or traveling papers that signify you as a traveling diplomat, and a belt pouch containing 20 gp", + "type": "equipment", + "parent": "toh_diplomat" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 77, + "fields": { + "name": "A Friend in Every Port", + "desc": "Your reputation as a peacemaker precedes you, or people recognize your easy demeanor, typically allowing you to attain food and lodging at a discount. In addition, people are predisposed to warn you about dangers in a location, alert you when a threat approaches you, or seek out your help for resolving conflicts between locals.", + "type": "feature", + "parent": "toh_diplomat" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 78, + "fields": { + "name": "Suggested Characteristics", + "desc": "Diplomats always have kind words and encourage their companions to think positively when encountering upsetting situations or people. Diplomats have their limits, however, and are quick to discover when someone is negotiating in bad faith.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I like to travel, meet new people, and learn about different customs. |\r\n| 2 | I intercede in minor squabbles to find common ground on all sides.|\r\n| 3 | I never disparage others, even when they might deserve such treatment.|\r\n| 4 | I always try to make a new friend wherever I travel, and when I return to those areas, I seek out my friends. |\r\n| 5 | I have learned how to damn with faint praise, but I only use it when someone has irked me. |\r\n| 6 | I am not opposed to throwing a bit of coin around to ensure a good first impression. |\r\n| 7 | Even when words fail at the outset, I still try to calm tempers. |\r\n| 8 | I treat everyone as an equal, and I encourage others to do likewise. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Harmony.** I want everyone to get along. (Good) |\r\n| 2 | **Contractual.** When I resolve a conflict, I ensure all parties formally acknowledge the resolution. (Lawful) |\r\n| 3 | **Selfishness.** I use my way with words to benefit myself the most. (Evil) 4 Freedom. Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 4 | **Freedom.** Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 5 | **Avoidance.** A kind word is preferable to the drawing of a sword. (Any) |\r\n| 6 | **Unity.** It is possible to achieve a world without borders and without conflict. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|------|\r\n| 1 | I want to engineer a treaty with far-reaching effects in the world. |\r\n| 2 | I am carrying out someone else's agenda and making favorable arrangements for my benefactor. |\r\n| 3 | A deal I brokered went sour, and I am trying to make amends for my mistake. |\r\n| 4 | My nation treats everyone equitably, and I'd like to bring that enlightenment to other nations. |\r\n| 5 | A traveling orator taught me the power of words, and I want to emulate that person. |\r\n| 6 | I fear a worldwide conflict is imminent, and I want to do all I can to stop it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I always start by appealing to a better nature from those I face, regardless of their apparent hostility. |\r\n| 2 | I assume the best in everyone, even if I have been betrayed by that trust in the past. |\r\n| 3 | I will stand in the way of an ally to ensure conflicts don't start. |\r\n| 4 | I believe I can always talk my way out of a problem. |\r\n| 5 | I chastise those who are rude or use vulgar language. |\r\n| 6 | When I feel I am on the verge of a successful negotiation, I often push my luck to obtain further concessions. |", + "type": "suggested_characteristics", + "parent": "toh_diplomat" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 79, + "fields": { + "name": "Skill Proficiencies", + "desc": "Nature, Survival", + "type": "skill_proficiency", + "parent": "toh_forest-dweller" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 80, + "fields": { + "name": "Languages", + "desc": "Sylvan", + "type": "language", + "parent": "toh_forest-dweller" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 81, + "fields": { + "name": "Tool Proficiencies", + "desc": "Woodcarver's tools, Herbalism kit", + "type": "tool_proficiency", + "parent": "toh_forest-dweller" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 82, + "fields": { + "name": "Equipment", + "desc": "A set of common clothes, a hunting trap, a wood staff, a whetstone, an explorer's pack, and a pouch containing 5 gp", + "type": "equipment", + "parent": "toh_forest-dweller" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 83, + "fields": { + "name": "Forester", + "desc": "Your experience living, hunting, and foraging in the woods gives you a wealth of experience to draw upon when you are traveling within a forest. If you spend 1 hour observing, examining, and exploring your surroundings while in a forest, you are able to identify a safe location to rest. The area is protected from all but the most extreme elements and from the nonmagical native beasts of the forest. In addition, you are able to find sufficient kindling for a small fire throughout the night.\r\n\r\n### Life-Changing Event\r\nYou have lived a simple life deep in the sheltering boughs of the forest, be it as a trapper, farmer, or villager eking out a simple existence in the forest. But something happened that set you on a different path and marked you for greater things. Choose or randomly determine a defining event that caused you to leave your home for the wider world. \r\n\r\n| d8 | Event |\r\n|---|---|\r\n| 1 | You were living within the forest when cesspools of magical refuse from a nearby city expanded and drove away the game that sustained you. You had to move to avoid the prospect of a long, slow demise via starvation. |\r\n| 2 | Your village was razed by a contingent of undead. For reasons of its own, the forest and its denizens protected and hid you from their raid. |\r\n| 3 | A roving band of skeletons and zombies attacked your family while you were hunting. |\r\n| 4 | You are an ardent believer in the preservation of the forest and the natural world. When the people of your village abandoned those beliefs, you were cast out and expelled into the forest. |\r\n| 5 | You wandered into the forest as a child and became lost. For inexplicable reasons, the forest took an interest in you. You have faint memories of a village and have had no contact with civilization in many years. |\r\n| 6 | You were your village's premier hunter. They relied on you for game and without your contributions their survival in the winter was questionable. Upon returning from your last hunt, you found your village in ruins, as if decades had passed overnight. |\r\n| 7 | Your quiet, peaceful, and solitary existence has been interrupted with dreams of the forest's destruction, and the urge to leave your home compels you to seek answers. |\r\n| 8 | Once in a hidden glen, you danced with golden fey and forgotten gods. Nothing in your life since approaches that transcendent moment, cursing you with a wanderlust to seek something that could. |", + "type": "feature", + "parent": "toh_forest-dweller" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 84, + "fields": { + "name": "Suggested Characteristics", + "desc": "Forest dwellers tend toward solitude, introspection, and self-sufficiency. You keep your own council, and you are more likely to watch from a distance than get involved in the affairs of others. You are wary, slow to trust, and cautious of depending on outsiders.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will never forget being hungry in the winter. I field dress beasts that fall to blade or arrow so that I am never hungry again. |\r\n| 2 | I may be alone in the forest, but I am only ever lonely in cities. |\r\n| 3 | Walking barefoot allows me to interact more intuitively with the natural world. |\r\n| 4 | The road is just another kind of wall. I make my own paths and go where I will. |\r\n| 5 | Others seek the gods in temples and shrines, but I know their will is only revealed in the natural world, not an edifice constructed by socalled worshippers. I pray in the woods, never indoors. |\r\n| 6 | What you call personal hygiene, I call an artificially imposed distraction from natural living. |\r\n| 7 | No forged weapon can replace the sheer joy of a kill accomplished only with hands and teeth. |\r\n| 8 | Time lived alone has made me accustomed to talking loudly to myself, something I still do even when others are present. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Change. As the seasons shift, so too does the world around us. To resist is futile and anathema to the natural order. (Chaotic) |\r\n| 2 | Conservation. All life should be preserved and, if needed, protected. (Good) |\r\n| 3 | Acceptance. I am a part of my forest, no different from any other flora and fauna. To think otherwise is arrogance and folly. When I die, it will be as a leaf falling in the woods. (Neutral) |\r\n| 4 | Cull. The weak must be removed for the strong to thrive. (Evil) |\r\n| 5 | Candor. I am open, plain, and simple in life, word, and actions. (Any) |\r\n| 6 | Balance. The forest does not lie. The beasts do not create war. Equity in all things is the way of nature. (Neutral) |\r\n\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | When I lose a trusted friend or companion, I plant a tree upon their grave. |\r\n| 2 | The voice of the forest guides me, comforts me, and protects me. |\r\n| 3 | The hermit who raised me and taught me the ways of the forest is the most important person in my life. |\r\n| 4 | I have a wooden doll, a tiny wickerman, that I made as a child and carry with me at all times. |\r\n| 5 | I know the ways of civilizations rise and fall. The forest and the Old Ways are eternal. |\r\n| 6 | I am driven to protect the natural order from those that would disrupt it. |\r\n\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am accustomed to doing what I like when I like. I'm bad at compromising, and I must exert real effort to make even basic conversation with other people. |\r\n| 2 | I won't harm a beast without just cause or provocation. |\r\n| 3 | Years of isolated living has left me blind to the nuances of social interaction. It is a struggle not to view every new encounter through the lens of fight or flight. |\r\n| 4 | The decay after death is merely the loam from which new growth springs—and I enjoy nurturing new growth. |\r\n| 5 | An accident that I caused incurred great damage upon my forest, and, as penance, I have placed myself in self-imposed exile. |\r\n| 6 | I distrust the undead and the unliving, and I refuse to work with them. |", + "type": "suggested_characteristics", + "parent": "toh_forest-dweller" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 85, + "fields": { + "name": "Skill Proficiencies", + "desc": "Perception, Survival", + "type": "skill_proficiency", + "parent": "toh_former-adventurer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 86, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_former-adventurer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 87, + "fields": { + "name": "Tool Proficiencies", + "desc": "No additional tool proficiencies", + "type": "tool_proficiency", + "parent": "toh_former-adventurer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 88, + "fields": { + "name": "Equipment", + "desc": "A dagger, quarterstaff, or shortsword (if proficient), an old souvenir from your previous adventuring days, a set of traveler's clothes, 50 feet of hempen rope, and a belt pouch containing 15 gp", + "type": "equipment", + "parent": "toh_former-adventurer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 89, + "fields": { + "name": "Old Friends and Enemies", + "desc": "Your previous career as an adventurer might have been brief or long. Either way, you certainly journeyed far and met people along the way. Some of these acquaintances might remember you fondly for aiding them in their time of need. On the other hand, others may be suspicious, or even hostile, because of your past actions. When you least expect it, or maybe just when you need it, you might encounter someone who knows you from your previous adventuring career. These people work in places high and low, their fortunes varying widely. The individual responds appropriately based on your mutual history, helping or hindering you at the GM's discretion.", + "type": "feature", + "parent": "toh_former-adventurer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 90, + "fields": { + "name": "Suggested Characteristics", + "desc": "Former adventurers bring a level of practical experience that fledgling heroes can't match. However, the decisions, outcomes, successes, and failures of your previous career often weigh heavily on your mind. The past seldom remains in the past. How you rise to these new (or old) challenges determines the outcome of your new career.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I have a thousand stories about every aspect of the adventuring life. |\r\n| 2 | My past is my own, and to the pit with anyone who pushes me about it. |\r\n| 3 | I can endure any hardship without complaint. |\r\n| 4 | I have a list of rules for surviving adventures, and I refer to them often. |\r\n| 5 | It's a dangerous job, and I take my pleasures when I can. |\r\n| 6 | I can't help mentioning all the famous friends I've met before. |\r\n| 7 | Anyone who doesn't recognize me is clearly not someone worth knowing. |\r\n| 8 | I've seen it all. If you don't listen to me, you're going to get us all killed. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Strength.** Experience tells me there are no rules to war. Only victory matters. (Evil) |\r\n| 2 | **Growth.** I strive to improve myself and prove my worth to my companions—and to myself. (Any) |\r\n| 3 | **Thrill.** I am only happy when I am facing danger with my life on the line. (Any) |\r\n| 4 | **Generous.** If I can help someone in danger, I will. (Good) |\r\n| 5 | **Ambition.** I may have lost my renown, but nothing will stop me from reclaiming it. (Chaotic) |\r\n| 6 | **Responsibility.** Any cost to myself is far less than the price of doing nothing. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will end the monsters who killed my family and pulled me back into the adventuring life. |\r\n| 2 | A disaster made me retire once. Now I will stop it from happening to anyone else. |\r\n| 3 | My old weapon has been my trusted companion for years. It's my lucky charm. |\r\n| 4 | My family doesn't understand why I became an adventurer again, which is why I send them souvenirs, letters, or sketches of exciting encounters in my travels. |\r\n| 5 | I was a famous adventurer once. This time, I will be even more famous, or die trying. |\r\n| 6 | Someone is impersonating me. I will hunt them down and restore my reputation. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | It's all about me! Haven't you learned that by now? |\r\n| 2 | I can identify every weapon and item with a look. |\r\n| 3 | You think this is bad? Let me tell you about something really frightening. |\r\n| 4 | Sure, I have old foes around every corner, but who doesn't? |\r\n| 5 | I'm getting too old for this. |\r\n| 6 | Seeing the bad side in everything just protects you from inevitable disappointment. |", + "type": "suggested_characteristics", + "parent": "toh_former-adventurer" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 91, + "fields": { + "name": "Skill Proficiencies", + "desc": "Athletics, Survival", + "type": "skill_proficiency", + "parent": "toh_freebooter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 92, + "fields": { + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_freebooter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 93, + "fields": { + "name": "Tool Proficiencies", + "desc": "Navigator's tools, vehicles (water)", + "type": "tool_proficiency", + "parent": "toh_freebooter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 94, + "fields": { + "name": "Equipment", + "desc": "A pirate flag from your ship, several tattoos, 50 feet of rope, a set of traveler's clothes, and a belt pouch containing 10 gp", + "type": "equipment", + "parent": "toh_freebooter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 95, + "fields": { + "name": "A Friendly Face in Every Port", + "desc": "Your reputation precedes you. Whenever you visit a port city, you can always find someone who knows of (or has sailed on) your former ship and is familiar with its captain and crew. They are willing to provide you and your traveling companions with a roof over your head, a bed for the night, and a decent meal. If you have a reputation for cruelty and savagery, your host is probably afraid of you and will be keen for you to leave as soon as possible. Otherwise, you receive a warm welcome, and your host keeps your presence a secret, if needed. They may also provide you with useful information about recent goings-on in the city, including which ships have been in and out of port.", + "type": "feature", + "parent": "toh_freebooter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 96, + "fields": { + "name": "Suggested Characteristics", + "desc": "Freebooters are a boisterous lot, but their personalities include freedom-loving mavericks and mindless thugs. Nonetheless, sailing a ship requires discipline, and freebooters tend to be reliable and aware of their role on board, even if they do their own thing once fighting breaks out. Most still yearn for the sea, and some feel shame or regret for past deeds.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm happiest when I'm on a gently rocking vessel, staring at the distant horizon. |\r\n| 2 | Every time we hoisted the mainsail and raised the pirate flag, I felt butterflies in my stomach. |\r\n| 3 | I have lovers in a dozen different ports. Most of them don't know about the others. |\r\n| 4 | Being a pirate has taught me more swear words and bawdy jokes than I ever knew existed. I like to try them out when I meet new people. |\r\n| 5 | One day I hope to have enough gold to fill a tub so I can bathe in it. |\r\n| 6 | There's nothing I enjoy more than a good scrap—the bloodier, the better. |\r\n| 7 | When a storm is blowing and the rain is lashing the deck, I'll be out there getting drenched. It makes me feel so alive! |\r\n| 8 | Nothing makes me more annoyed than a badly tied knot. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** No one tells me what to do or where to go. Apart from the captain. (Chaotic) |\r\n| 2 | **Greed.** I'm only in it for the booty. I'll gladly stab anyone stupid enough to stand in my way. (Evil) |\r\n| 3 | **Comradery.** My former shipmates are my family. I'll do anything for them. (Neutral) |\r\n| 4 | **Greater Good.** No man has the right to enslave another, or to profit from slavery. (Good) |\r\n| 5 | **Code.** I may be on dry land now, but I still stick to the Freebooter's Code. (Lawful) |\r\n| 6 | **Aspiration.** One day I'll return to the sea as the captain of my own ship. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | Anti-slavery pirates rescued me from a slave ship. I owe them my life. |\r\n| 2 | I still feel a deep attachment to my ship. Some nights I dream her figurehead is talking to me. |\r\n| 3 | I was the ship's captain until the crew mutinied and threw me overboard to feed the sharks. I swam to a small island and survived. Vengeance will be mine! |\r\n| 4 | Years ago, when my city was attacked, I fled the city on a small fleet bound for a neighboring city. I arrived back in the ruined city a few weeks ago on the same ship and can remember nothing of the voyage. |\r\n| 5 | I fell asleep when I was supposed to be on watch, allowing our ship to be taken by surprise. I still have nightmares about my shipmates who died in the fighting. |\r\n| 6 | One of my shipmates was captured and sold into slavery. I need to rescue them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm terrified by the desert. Not enough water, far too much sand. |\r\n| 2 | I drink too much and end up starting barroom brawls. |\r\n| 3 | I killed one of my shipmates and took his share of the loot. |\r\n| 4 | I take unnecessary risks and often put my friends in danger. |\r\n| 5 | I sold captives taken at sea to traders. |\r\n| 6 | Most of the time, I find it impossible to tell the truth. |", + "type": "suggested_characteristics", + "parent": "toh_freebooter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 97, + "fields": { + "name": "Skill Proficiencies", + "desc": "Animal Handling, Persuasion", + "type": "skill_proficiency", + "parent": "toh_gamekeeper" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 98, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_gamekeeper" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 99, + "fields": { + "name": "Tool Proficiencies", + "desc": "Leatherworker's tools", + "type": "tool_proficiency", + "parent": "toh_gamekeeper" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 100, + "fields": { + "name": "Equipment", + "desc": "A set of leatherworker's tools, a hunting trap, fishing tackle, a set of traveler's clothes, and a belt pouch containing 10 gp", + "type": "equipment", + "parent": "toh_gamekeeper" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 101, + "fields": { + "name": "Confirmed Guildmember", + "desc": "As a recognized member of the Gamekeepers' Guild, you are knowledgeable in the care, training, and habits of animals used for hunting. With 30 days' of work and at least 2 gp for each day, you can train a raptor, such as a hawk, falcon, or owl, or a hunting dog, such as a hound, terrier, or cur, to become a hunting companion. Use the statistics of an owl for the raptor and the statistics of a jackal for the hunting dog. A hunting companion is trained to obey and respond to a series of one-word commands or signals, communicating basic concepts such as *attack*, *protect*, *retrieve*, *find*, *hide*, or similar. The companion can know up to six such commands and can be trained to obey a number of creatures, other than you, equal to your proficiency bonus. A hunting companion travels with you wherever you go, unless you enter a particularly dangerous environment (such as a poisonous swamp), or you command the companion to stay elsewhere. A hunting companion doesn't join you in combat and stays on the edge of any conflict until it is safe to return to your side. When traveling overland with a hunting companion, you can use the companion to find sufficient food to sustain yourself and up to five other people each day. You can have only one hunting companion at a time.", + "type": "feature", + "parent": "toh_gamekeeper" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 102, + "fields": { + "name": "Suggested Characteristics", + "desc": "You are one of the capable people who maintains hunting preserves, trains coursing hounds and circling raptors, and plans the safe outings that allow fair nobles, rich merchants, visiting dignitaries, and their entourages to venture into preserves and forests to seek their quarry. You are as comfortable hunting quarry in the forest as you are conversing with members of the elite who have an interest in hunting.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nature has lessons to teach us all, and I'm always happy to share them. |\r\n| 2 | Once while out on a hunt, something happened which was very relatable to our current situation. Let me tell you about it. |\r\n| 3 | My friends are my new charges, and I'll make sure they thrive. |\r\n| 4 | Preparation and knowledge are the key to any success. |\r\n| 5 | I've dealt with all sorts of wealthy and noble folk, and I've seen just how spoiled they can be. |\r\n| 6 | I feel like my animals are the only ones who really understand me. |\r\n| 7 | You can train yourself to accomplish anything you put your mind to accomplishing. |\r\n| 8 | The world shows you everything you need to know to understand a situation. You just have to be paying attention to the details. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Dedication. Your willingness to get the job done, no matter what the cost, is what is most important. (Evil) |\r\n| 2 | Training. You sink to the level of your training more often than you rise to the occasion. (Any) |\r\n| 3 | Prestige. Pride in your training, your work, and your results is what is best in life. (Any) |\r\n| 4 | Diligent. Hard work and attention to detail bring success more often than failure. (Good) |\r\n| 5 | Nature. The glory and majesty of the wild world outshine anything mortals create. (Chaotic) |\r\n| 6 | Responsibility. When you take an oath to protect and shepherd something, that oath is for life. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I understand animals better than people, and the way of the hunter just makes sense. |\r\n| 2 | I take great pride in providing my services to the wealthy and influential. |\r\n| 3 | Natural spaces need to be tended and preserved, and I take joy in doing it when I can. |\r\n| 4 | I need to ensure people know how to manage nature rather than live in ignorance. |\r\n| 5 | Laws are important to prevent nature's overexploitation. |\r\n| 6 | I can be alone in the wilderness and not feel lonely. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Individuals can be all right, but civilization is the worst. |\r\n| 2 | The wealthy and nobility are a rot in society. |\r\n| 3 | Things die, either by predators or nature; get used to it. |\r\n| 4 | Everything can be managed if you want it badly enough. |\r\n| 5 | When you make exceptions, you allow unworthy or wasteful things to survive. |\r\n| 6 | If you don't work hard for something, is it worth anything? |", + "type": "suggested_characteristics", + "parent": "toh_gamekeeper" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 103, + "fields": { + "name": "Skill Proficiencies", + "desc": "Insight plus one of your choice from among Intimidation or Persuasion", + "type": "skill_proficiency", + "parent": "toh_innkeeper" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 104, + "fields": { + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "toh_innkeeper" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 105, + "fields": { + "name": "Tool Proficiencies", + "desc": "No additional tool proficiencies", + "type": "tool_proficiency", + "parent": "toh_innkeeper" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 106, + "fields": { + "name": "Equipment", + "desc": "A set of either brewer's supplies or cook's utensils, a dagger or light hammer, traveler's clothes, and a pouch containing 20 gp", + "type": "equipment", + "parent": "toh_innkeeper" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 107, + "fields": { + "name": "I Know Someone", + "desc": "In interacting with the wide variety of people who graced the tables and bars of your previous life, you gained an excellent knowledge of who might be able to perform a particular task, provide the right service, sell the perfect item, or be able to connect you with someone who can. You can spend a couple of hours in a town or city and identify a person or place of business capable of selling the product or service you seek, provided the product is nonmagical and isn't worth more than 250 gp. At the GM's discretion, these restrictions can be lifted in certain locations. The price might not always be what you hoped, the quality might not necessarily be the best, or the person's demeanor may be grating, but you can find the product or service. In addition, you know within the first hour if the product or service you desire doesn't exist in the community, such as a coldweather outfit in a tropical fishing village.", + "type": "feature", + "parent": "toh_innkeeper" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 108, + "fields": { + "name": "Suggested Characteristics", + "desc": "The day-to-day operation of a tavern or inn teaches many lessons about people and how they interact.\r\n\r\nThe nose for trouble, the keen eye on the kegs, and the ready hand on a truncheon translates well to the life of an adventurer.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I insist on doing all the cooking, and I plan strategies like I cook—with proper measurements and all the right ingredients. |\r\n| 2 | Lending a sympathetic ear or a shoulder to cry on often yields unexpected benefits. |\r\n| 3 | I always have a story or tale to relate to any situation. |\r\n| 4 | There is a world of tastes and flavors to explore. |\r\n| 5 | Few problems can't be solved with judicious application of a stout cudgel. |\r\n| 6 | I never pass up the chance to bargain. Never. |\r\n| 7 | I demand the finest accommodations; I know what they're worth. |\r\n| 8 | I can defuse a situation with a joke, cutting remark, or arched eyebrow. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Service.** If we serve others, they will serve us in turn. (Lawful) |\r\n| 2 | **Perspective.** People will tell you a great deal about themselves, their situations, and their desires, if you listen. (Any) |\r\n| 3 | **Determination.** Giving up is not in my nature. (Any) |\r\n| 4 | **Charity.** I try to have extra coins to buy a meal for someone in need. (Good) |\r\n| 5 | **Curiosity.** Staying safe never allows you to see the wonders of the world. (Chaotic) |\r\n| 6 | **Selfish.** We must make sure we bargain for what our skills are worth; people don't value what you give away for free. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I started my career in a tavern, and I'll end it running one of my very own. |\r\n| 2 | I try to ensure stories of my companions will live on forever. |\r\n| 3 | You want to take the measure of a person? Have a meal or drink with them. |\r\n| 4 | I've seen the dregs of life pass through my door, and I will never end up like them. |\r\n| 5 | A mysterious foe burned down my inn, and I will have my revenge. |\r\n| 6 | One day, I want my story to be sung in all the taverns of my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I can't help teasing or criticizing those less intelligent than I. |\r\n| 2 | I love rich food and drink, and I never miss a chance at a good meal. |\r\n| 3 | I never trust anyone who won't drink with me. |\r\n| 4 | I hate it when people start fights in bars; they never consider the consequences. |\r\n| 5 | I can't stand to see someone go hungry or sleep in the cold if I can help it. |\r\n| 6 | I am quick to anger if anyone doesn't like my meals or brews. If you don't like it, do it yourself. |", + "type": "suggested_characteristics", + "parent": "toh_innkeeper" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 109, + "fields": { + "name": "Skill Proficiencies", + "desc": "Athletics, History", + "type": "skill_proficiency", + "parent": "toh_mercenary-company-scion" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 110, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_mercenary-company-scion" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 111, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of gaming set, one musical instrument", + "type": "tool_proficiency", + "parent": "toh_mercenary-company-scion" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 112, + "fields": { + "name": "Equipment", + "desc": "A backpack, a signet ring emblazoned with the symbol of your family's free company, a musical instrument of your choice, a mess kit, a set of traveler's clothes, and a belt pouch containing 20 gp", + "type": "equipment", + "parent": "toh_mercenary-company-scion" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 113, + "fields": { + "name": "The Family Name", + "desc": "Your family name is well known in the closeknit world of mercenary companies. Members of mercenary companies readily recognize your name and will provide food, drink, and shelter with pleasure or out of fear, depending upon your family's reputation. You can also gain access to friendly military encampments, fortresses, or powerful political figures through your contacts among the mercenaries. Utilizing such connections might require the donation of money, magic items, or a great deal of drink.", + "type": "feature", + "parent": "toh_mercenary-company-scion" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 114, + "fields": { + "name": "Suggested Characteristics", + "desc": "The turmoil of war, the drudgery of the camp, long days on the road, and the thrill of battle shape a Mercenary Company Scion to create strong bonds of loyalty, military discipline, and a practical mind. Yet this history can scar as well, leaving the scion open to guilt, pride, resentment, and hatred.\r\n\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am ashamed of my family's reputation and seek to distance myself from their deeds. |\r\n| 2 | I have seen the world and know people everywhere. |\r\n| 3 | I expect the best life has to offer and won't settle for less. |\r\n| 4 | I know stories from a thousand campaigns and can apply them to any situation. |\r\n| 5 | After too many betrayals, I don't trust anyone. |\r\n| 6 | My parents were heroes, and I try to live up to their example. |\r\n| 7 | I have seen the horrors of war; nothing dis'turbs me anymore. |\r\n| 8 | I truly believe I have a destiny of glory and fame awaiting me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Glory.** Only by fighting for the right causes can I achieve true fame and honor. (Good) |\r\n| 2 | **Dependable.** Once my oath is given, it cannot be broken. (Lawful) |\r\n| 3 | **Seeker.** Life can be short, so I will live it to the fullest before I die. (Chaotic) |\r\n| 4 | **Ruthless.** Only the strong survive. (Evil) |\r\n| 5 | **Mercenary.** If you have gold, I'm your blade. (Neutral) |\r\n| 6 | **Challenge.** Life is a test, and only by meeting life head on can I prove I am worthy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My parent's legacy is a tissue of lies. I will never stop until I uncover the truth. |\r\n| 2 | I am the only one who can uphold the family name. |\r\n| 3 | My companions are my life, and I would do anything to protect them. |\r\n| 4 | I will never forget the betrayal leading to my parent's murder, but I will avenge them. |\r\n| 5 | My honor and reputation are all that matter in life. |\r\n| 6 | I betrayed my family to protect my friend who was a soldier in another free company. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I have no respect for those who never signed on to a mercenary company or walked the battlefield. |\r\n| 2 | I cannot bear losing anyone close to me, so I keep everyone at a distance. |\r\n| 3 | Bloody violence is the only way to solve problems. |\r\n| 4 | I caused the downfall of my family's mercenary company. |\r\n| 5 | I am hiding a horrible secret about one of my family's patrons. |\r\n| 6 | I see insults to my honor or reputation in every whisper, veiled glance, and knowing look. |", + "type": "suggested_characteristics", + "parent": "toh_mercenary-company-scion" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 115, + "fields": { + "name": "Skill Proficiencies", + "desc": "Athletics, Persuasion", + "type": "skill_proficiency", + "parent": "toh_mercenary-recruit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 116, + "fields": { + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_mercenary-recruit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 117, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of gaming set", + "type": "tool_proficiency", + "parent": "toh_mercenary-recruit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 118, + "fields": { + "name": "Equipment", + "desc": "A letter of introduction from an old teacher, a gaming set of your choice, traveling clothes, and a pouch containing 10 gp", + "type": "equipment", + "parent": "toh_mercenary-recruit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 119, + "fields": { + "name": "Theoretical Experience", + "desc": "You have an encyclopedic knowledge of stories, myths, and legends of famous soldiers, mercenaries, and generals. Telling these stories can earn you a bed and food for the evening in taverns, inns, and alehouses. Your age or inexperience is endearing, making commoners more comfortable with sharing local rumors, news, and information with you.", + "type": "feature", + "parent": "toh_mercenary-recruit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 120, + "fields": { + "name": "Suggested Characteristics", + "desc": "Recruits are eager to earn their place in the world of mercenaries. Sometimes humble, other times filled with false bravado, they are still untested by the joys and horrors awaiting them. Meaning well and driven to learn, recruits are generally plagued by their own fears, ignorance, and inexperience.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am thrilled by the thought of an upcoming fight. |\r\n| 2 | Why wait until I'm famous to have songs written about me? I can write my own right now! |\r\n| 3 | I know many stories and legends of famous adventurers and compare everything to these tales. |\r\n| 4 | Humor is how I deal with fear. |\r\n| 5 | I always seek to learn new ways to use my weapons and love sharing my knowledge. |\r\n| 6 | The only way I can prove myself is to work hard and take risks. |\r\n| 7 | When you stop training, you sign your own death notice |\r\n| 8 | I try to act braver than I actually am. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Respect.** To be treated with honor and trust, I must honor and trust people first. (Good) |\r\n| 2 | **Discipline.** A good soldier obeys orders. (Lawful) |\r\n| 3 | **Courage.** Sometimes doing the right thing means breaking the law. (Chaotic) |\r\n| 4 | **Excitement.** I live for the thrill of battle, the rush of the duel, and the glory of victory. (Neutral) |\r\n| 5 | **Power.** When I achieve fame and power, no one will give me orders anymore! (Evil) |\r\n| 6 | **Ambition.** I will make something of myself no matter what. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My first mentor was murdered, and I seek the skills to avenge that crime. |\r\n| 2 | I will become the greatest mercenary warrior ever. |\r\n| 3 | I value the lessons from my teachers and trust them implicitly. |\r\n| 4 | My family has sacrificed much to get me this far. I must repay their faith in me. |\r\n| 5 | I will face any danger to win the respect of my companions. |\r\n| 6 | I have hidden a map to an amazing and powerful magical treasure until I grow strong enough to follow it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I do not trust easily and question anyone who attempts to give me orders. |\r\n| 2 | I ridicule others to hide my insecurities. |\r\n| 3 | To seem brave and competent, I refuse to allow anyone to doubt my courage. |\r\n| 4 | I survived an attack by a monster as a child, and I have feared that creature ever since. |\r\n| 5 | I have a hard time thinking before I act. |\r\n| 6 | I hide my laziness by tricking others into doing my work for me. |", + "type": "suggested_characteristics", + "parent": "toh_mercenary-recruit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 121, + "fields": { + "name": "Skill Proficiencies", + "desc": "Intimidation, Survival", + "type": "skill_proficiency", + "parent": "toh_monstrous-adoptee" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 122, + "fields": { + "name": "Languages", + "desc": "One language of your choice, typically your adopted parents' language (if any)", + "type": "language", + "parent": "toh_monstrous-adoptee" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 123, + "fields": { + "name": "Tool Proficiencies", + "desc": "No additional tool proficiencies", + "type": "tool_proficiency", + "parent": "toh_monstrous-adoptee" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 124, + "fields": { + "name": "Equipment", + "desc": "A club, handaxe, or spear, a trinket from your life before you were adopted, a set of traveler's clothes, a collection of bones, shells, or other natural objects, and a belt pouch containing 5 gp", + "type": "equipment", + "parent": "toh_monstrous-adoptee" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 125, + "fields": { + "name": "Abnormal Demeanor", + "desc": "Your time with your adopted parents taught you an entire lexicon of habits, behaviors, and intuitions suited to life in the wild among creatures of your parents' type. When you are in the same type of terrain your adopted parent inhabits, you can find food and fresh water for yourself and up to five other people each day. In addition, when you encounter a creature like your adopted parent or parents, the creature is disposed to hear your words instead of leaping directly into battle. Mindless or simple creatures might not respond to your overtures, but more intelligent creatures may be willing to treat instead of fight, if you approach them in an appropriate manner. For example, if your adopted parent was a cloaker, when you encounter a cloaker years later, you understand the appropriate words, body language, and motions for approaching the cloaker respectfully and peacefully.", + "type": "feature", + "parent": "toh_monstrous-adoptee" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 126, + "fields": { + "name": "Suggested Characteristics", + "desc": "When monstrous adoptees leave their adopted parents for the wider world, they often have a hard time adapting. What is common or usual for many humanoids strikes them as surprising, frightening, or infuriating, depending on the individual. Most make an effort to adjust their habits and imitate those around them, but not all. Some lean into their differences, reveling in shocking those around them. When you choose a creature to be your character's adopted parent, think about how that might affect your character. Was your character treated kindly? Was your character traded by their birth parents to their adopted parents as part of some mysterious bargain? Did your character seek constant escape or do they miss their adopted parents?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I don't eat my friends (at least not while they are alive). My foes, on the other hand . . . |\r\n| 2 | Meeting another's gaze is a challenge for dominance that I never fail to answer. |\r\n| 3 | Monsters I understand; people are confusing. |\r\n| 4 | There are two types of creatures in life: prey or not-prey. |\r\n| 5 | I often use the growls, sounds, or calls of my adopted parents instead of words. |\r\n| 6 | Inconsequential items fascinate me. |\r\n| 7 | It's not my fault, I was raised by [insert parent's type here]. |\r\n| 8 | I may look fine, but I behave like a monster. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Wild.** After seeing the wider world, I want to be the monster that strikes fear in the hearts of people. (Evil) |\r\n| 2 | **Insight.** I want to understand the world of my adopted parents. (Neutral) |\r\n| 3 | **Revenge.** I want revenge for my lost childhood. Monsters must die! (Any) |\r\n| 4 | **Harmony.** With my unique perspective and upbringing, I hope to bring understanding between the different creatures of the world. (Good) |\r\n| 5 | **Freedom.** My past away from law-abiding society has shown me the ridiculousness of those laws. (Chaotic) |\r\n| 6 | **Redemption.** I will rise above the cruelty of my adopted parent and embrace the wider world. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I want to experience every single aspect of the world. |\r\n| 2 | I rely on my companions to teach me how to behave appropriately in their society. |\r\n| 3 | I have a *sibling*, a child of my adopted parent that was raised alongside me, and now that sibling has been kidnapped! |\r\n| 4 | My monstrous family deserves a place in this world, too. |\r\n| 5 | I'm hiding from my monstrous family. They want me back! |\r\n| 6 | An old enemy of my adopted parents is on my trail. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | What? I like my meat raw. Is that so strange? |\r\n| 2 | I like to collect trophies from my defeated foes (ears, teeth, bones, or similar). It's how I keep score. |\r\n| 3 | I usually forget about pesky social conventions like *personal property* or *laws*. |\r\n| 4 | I am easily startled by loud noises or bright lights. |\r\n| 5 | I have trouble respecting anyone who can't best me in a fight. |\r\n| 6 | Kindness is for the weak. |", + "type": "suggested_characteristics", + "parent": "toh_monstrous-adoptee" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 127, + "fields": { + "name": "Skill Proficiencies", + "desc": "Deception, Survival", + "type": "skill_proficiency", + "parent": "toh_mysterious-origins" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 128, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_mysterious-origins" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 129, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of artisan's tools or one type of musical instrument", + "type": "tool_proficiency", + "parent": "toh_mysterious-origins" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 130, + "fields": { + "name": "Equipment", + "desc": "A mysterious trinket from your past life, a set of artisan's tools or a musical instrument (one of your choice), a set of common clothes, and a belt pouch containing 5 gp", + "type": "equipment", + "parent": "toh_mysterious-origins" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 131, + "fields": { + "name": "Unexpected Acquaintance", + "desc": "Even though you can't recall them, someone from your past will recognize you and offer to aid you—or to impede you. The person and their relationship to you depend on the truth of your backstory. They might be a childhood friend, a former rival, or even your child who's grown up with dreams of finding their missing parent. They may want you to return to your former life even if it means abandoning your current goals and companions. Work with your GM to determine the details of this character and your history with them.", + "type": "feature", + "parent": "toh_mysterious-origins" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 132, + "fields": { + "name": "Suggested Characteristics", + "desc": "You may be bothered by your lack of memories and driven to recover them or reclaim the secrets of your past, or you can use your anonymity to your advantage.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm always humming a song, but I can't remember the words. |\r\n| 2 | I love learning new things and meeting new people. |\r\n| 3 | I want to prove my worth and have people know my name. |\r\n| 4 | I don't like places that are crowded or noisy. |\r\n| 5 | I'm mistrustful of mages and magic in general. |\r\n| 6 | I like to keep everything tidy and organized so that I can find things easily. |\r\n| 7 | Every night I record my day in a detailed journal. |\r\n| 8 | I live in the present. The future will come as it may. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Redemption.** Whatever I did in the past, I'm determined to make the world a better place. (Good) |\r\n| 2 | **Independence.** I'm beholden to no one, so I can do whatever I want. (Chaotic) |\r\n| 3 | **Cunning.** Since I have no past, no one can use it to thwart my rise to power. (Evil) |\r\n| 4 | **Community.** I believe in a just society that takes care of people in need. (Lawful) |\r\n| 5 | **Fairness.** I judge others by who they are now, not by what they've done in the past. (Neutral) |\r\n| 6 | **Friendship.** The people in my life now are more important than any ideal. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have dreams where I see a loved one's face, but I can't remember their name or who they are. |\r\n| 2 | I wear a wedding ring, so I must have been married before I lost my memories. |\r\n| 3 | My mentor raised me; they told me that I lost my memories in a terrible accident that killed my family. |\r\n| 4 | I have an enemy who wants to kill me, but I don't know what I did to earn their hatred. |\r\n| 5 | I know there's an important memory attached to the scar I bear on my body. |\r\n| 6 | I can never repay the debt I owe to the person who cared for me after I lost my memories. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am jealous of those who have memories of a happy childhood. |\r\n| 2 | I'm desperate for knowledge about my past, and I'll do anything to obtain that information. |\r\n| 3 | I'm terrified of meeting someone from my past, so I avoid strangers as much as possible. |\r\n| 4 | Only the present matters. I can't bring myself to care about the future. |\r\n| 5 | I'm convinced that I was powerful and rich before I lost my memories—and I expect everyone to treat me accordingly. |\r\n| 6 | Anyone who shows me pity is subjected to my biting scorn. |", + "type": "suggested_characteristics", + "parent": "toh_mysterious-origins" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 133, + "fields": { + "name": "Skill Proficiencies", + "desc": "Perception plus one of your choice from among History or Performance", + "type": "skill_proficiency", + "parent": "toh_northern-minstrel" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 134, + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_northern-minstrel" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 135, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of musical instrument", + "type": "tool_proficiency", + "parent": "toh_northern-minstrel" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 136, + "fields": { + "name": "Equipment", + "desc": "A book collecting all the songs, poems, or stories you know, a pair of snowshoes, one musical instrument of your choice, a heavy fur-lined cloak, and a belt pouch containing 10 gp", + "type": "equipment", + "parent": "toh_northern-minstrel" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 137, + "fields": { + "name": "Northern Historian", + "desc": "Your education and experience have taught you how to determine the provenance of ruins, monuments, and other structures within the north. When you spend at least 1 hour examining a structure or non-natural feature of the terrain, you can determine if it was built by humans, dwarves, elves, goblins, giants, trolls, or fey. You can also determine the approximate age (within 500 years) of the construction based on its features and embellishments.", + "type": "feature", + "parent": "toh_northern-minstrel" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 138, + "fields": { + "name": "Suggested Characteristics", + "desc": "Northern minstrels tend to either be boisterous and loud or pensive and watchful with few falling between these extremes. Many exude both qualities at different times, and they have learned how and when to turn their skald persona on and off. Like other northerners, they place a lot of stock in appearing brave and tough, which can lead them unwittingly into conflict.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will accept any dare and expect accolades when I complete it. |\r\n| 2 | Revelry and boisterousness are for foolish children. I prefer to quietly wait and watch. |\r\n| 3 | I am more than a match for any northern reaver. If they believe that is not so, let them show me what stuff they are made of. |\r\n| 4 | I yearn for the raiding season and the tales of blood and butchery I can use to draw the crowds. |\r\n| 5 | Ragnarok is nigh. I will bear witness to the end of all things and leave a record should there be any who survive it. |\r\n| 6 | There is nothing better than mutton, honeyed mead, and a crowd in thrall to my words. |\r\n| 7 | The gods weave our fates. There is nothing to do but accept this and live as we will. |\r\n| 8 | All life is artifice. I lie better than most and I am not ashamed to reap the rewards. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Valor.** Stories and songs should inspire others—and me—to perform great deeds that benefit us all. (Good) |\r\n| 2 | **Greed.** There is little point in taking action if it leads to living in squalor. I will take what I want and dare any who disagree to oppose me. (Evil) |\r\n| 3 | **Perfection.** I will not let the threat of failure deter me. Every deed I attempt, even those I do not succeed at, serve to improve me and prepare me for future endeavors. (Lawful) |\r\n| 4 | **Anarchy.** If Ragnarok is coming to end all that is, I must do what I want and damn the consequences. (Chaotic) |\r\n| 5 | **Knowledge.** The north is full of ancient ruins and monuments. If I can glean their meaning, I may understand fate as well as the gods. (Any) |\r\n| 6 | **Pleasure.** I will eat the richest food, sleep in the softest bed, enjoy the finest company, and allow no one to stand in the way of my delight and contentment. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have the support of my peers from the skaldic school I attended, and they have mine. |\r\n| 2 | I will find and answer the Unanswerable Riddle and gain infamy. |\r\n| 3 | I will craft an epic of such renown it will be recited the world over. |\r\n| 4 | All my companions were slain in an ambush laid by cowardly trolls. At least I snatched up my tagelharpa before I escaped the carnage. |\r\n| 5 | The cold waves call to me even across great distances. I must never stray too far from the ocean's embrace. |\r\n| 6 | It is inevitable that people fail me. Mead, on the other hand, never fails to slake my thirst. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Only a coward retreats. The valiant press forward to victory or death. |\r\n| 2 | All the tales I tell of my experiences are lies. |\r\n| 3 | Critics and hecklers will suffer my wrath once the performance is over. |\r\n| 4 | Companions and friends cease to be valuable if their accomplishments outshine my own. |\r\n| 5 | I once burned down a tavern where I was poorly received. I would do it again. |\r\n| 6 | I cannot bear to be gainsaid and fall into a bitter melancholy when I am. |", + "type": "suggested_characteristics", + "parent": "toh_northern-minstrel" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 139, + "fields": { + "name": "Skill Proficiencies", + "desc": "Arcana, Religion", + "type": "skill_proficiency", + "parent": "toh_occultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 140, + "fields": { + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "toh_occultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 141, + "fields": { + "name": "Tool Proficiencies", + "desc": "Thieves' tools", + "type": "tool_proficiency", + "parent": "toh_occultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 142, + "fields": { + "name": "Equipment", + "desc": "A book of obscure lore holding clues to an occult location, a bottle of black ink, a quill, a leather-bound journal in which you record your secrets, a bullseye lantern, a set of common clothes, and a belt pouch containing 5 gp", + "type": "equipment", + "parent": "toh_occultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 143, + "fields": { + "name": "Strange Lore", + "desc": "Your passions for forbidden knowledge, esoteric religions, secretive cults, and terrible histories brought you into contact with a wide variety of interesting and unique individuals operating on the fringes of polite society. When you're trying to find something that pertains to eldritch secrets or dark knowledge, you have a good idea of where to start looking. Usually, this information comes from information brokers, disgraced scholars, chaotic mages, dangerous cults, or insane priests. Your GM might rule that the knowledge you seek isn't found with just one contact, but this feature provides a starting point.", + "type": "feature", + "parent": "toh_occultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 144, + "fields": { + "name": "Suggested Characteristics", + "desc": "Occultists can't resist the lure of an ancient ruin, forgotten dungeon, or the lair of some mysterious cult. They eagerly follow odd rumors, folktales, and obscure clues found in dusty tomes. Some adventure with the hope of turning their discoveries into fame and fortune, while others consider the answers they uncover to be the true reward. Whatever their motivations, occultists combine elements of archaeologist, scholar, and fanatic.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I always ask questions, especially if I think I can learn something new. |\r\n| 2 | I believe every superstition I hear and follow their rules fanatically. |\r\n| 3 | The things I know give me nightmares, and not only when I sleep. |\r\n| 4 | Nothing makes me happier than explaining some obscure lore to my friends. |\r\n| 5 | I startle easily. |\r\n| 6 | I perform a host of rituals throughout the day that I believe protect me from occult threats. |\r\n| 7 | I never know when to give up. |\r\n| 8 | The more someone refuses to believe me, the more I am determined to convince them. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Domination.** With the power I will unearth, I will take my revenge on those who wronged me. (Evil) |\r\n| 2 | **Mettle.** Each nugget of hidden knowledge I uncover proves my worth. (Any) |\r\n| 3 | **Lore.** Knowledge is never good or evil; it is simply knowledge. (Neutral) |\r\n| 4 | **Redemption.** This dark knowledge can be made good if it is used properly. (Good) |\r\n| 5 | **Truth.** Nothing should be hidden. Truth is all that matters, no matter who it hurts. (Chaotic) |\r\n| 6 | **Responsibility.** Only by bringing dark lore into the light can we eliminate its threat. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | One or more secret organizations are trying to stop me, which means I must be close to the truth. |\r\n| 2 | My studies come before anything else. |\r\n| 3 | No theory, however unbelievable, is worth abandoning without investigation. |\r\n| 4 | I must uncover the truth behind a particular mystery, one my father died to protect. |\r\n| 5 | I travel with my companions because I have reason to believe they are crucial to the future. |\r\n| 6 | I once had a partner in my occult searches who vanished. I am determined to find them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | When stressed, I mutter theories to myself, sometimes connecting seemingly unconnected or random events, to explain my current predicament. |\r\n| 2 | It's not paranoia if they really are out to get me. |\r\n| 3 | I have a habit of lying to hide my theories and discoveries. |\r\n| 4 | I see secrets and mysteries in everything and everyone. |\r\n| 5 | The world is full of dark secrets, and I'm the only one who can safely unearth them. |\r\n| 6 | There is no law or social convention I won't break to further my goals. |", + "type": "suggested_characteristics", + "parent": "toh_occultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 145, + "fields": { + "name": "Skill Proficiencies", + "desc": "Nature, Investigation", + "type": "skill_proficiency", + "parent": "toh_parfumier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 146, + "fields": { + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_parfumier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 147, + "fields": { + "name": "Tool Proficiencies", + "desc": "Alchemist's supplies, herbalism kit", + "type": "tool_proficiency", + "parent": "toh_parfumier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 148, + "fields": { + "name": "Equipment", + "desc": "Herbalism kit, a leather satchel containing perfume recipes, research notes, and chemical and botanical samples; 1d4 metal or crystal (shatter-proof) perfume bottles, a set of fine clothes, and a silk purse containing 10 gp", + "type": "equipment", + "parent": "toh_parfumier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 149, + "fields": { + "name": "Aromas and Odors and Airs, Oh My", + "desc": "Before you became an adventurer, you crafted perfumes for customers in your home town or city. When not out adventuring, you can fall back on that trade to make a living. For each week you spend practicing your profession, you can craft one of the following at half the normal cost in time and resources: 5 samples of fine perfume worth 10 gp each, 2 vials of acid, or 1 vial of parfum toxique worth 50 gp. As an action, you can throw a vial of parfum toxique up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the parfum as an improvised weapon. On a hit, the target takes 1d6 poison damage and is poisoned until the end of its next turn.", + "type": "feature", + "parent": "toh_parfumier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 150, + "fields": { + "name": "Suggested Characteristics", + "desc": "As with many parfumiers with the extensive training you received, you are well spoken, stately of bearing, and possessed of a self-assuredness that sometimes is found imposing. You are not easily impressed and rarely subscribe to notions like *insurmountable* or *unavoidable*. Every problem has a solution.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I do not deal in absolutes. There is a solution to every problem, an answer for every riddle. |\r\n| 2 | I am used to associating with educated and “elevated” society. I find rough living and rough manners unpalatable. |\r\n| 3 | Years spent witnessing the dealings, intrigues, and industrial espionage of the Bouquet Districts' mercantile-elite have left me secretive and guarded. |\r\n| 4 | I have a strong interest and sense for fashion and current trends. |\r\n| 5 | I eagerly discuss the minutiae, subtleties, and nuances of my profession to any who will listen. |\r\n| 6 | I am easily distracted by unusual or exceptional botanical specimens. |\r\n| 7 | I can seem distant and introverted. I listen more than I speak. |\r\n| 8 | I always strive to make allies, not enemies. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Responsibility.** It is my duty to share my exceptional gifts and knowledge for the betterment of all. (Good) |\r\n| 2 | **Pragmatism.** I never let passion, preference, or emotion influence my decision-making or clear headedness. (Lawful) |\r\n| 3 | **Freedom.** Rules, particularly those imposed by others, were meant to be broken. (Chaotic) |\r\n| 4 | **Deep Science.** I live a life based on facts, logic, probability, and common sense. (Lawful) |\r\n| 5 | **Notoriety.** I will do whatever it takes to become the elite that I was witness to during my time among the boutiques, salons, and workshops of the noble's district. (Any) |\r\n| 6 | **Profit.** I will utilize my talents to harvest, synthesize, concoct, and brew almost anything for almost anyone. As long as the profit margin is right. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will return to my home city someday and have revenge upon the elitist perfume consortium and corrupt shipping magnates who drove my dreams to ruin. |\r\n| 2 | I have been experimenting and searching my whole career for the ultimate aromatic aphrodisiac. The “alchemists' stone” of perfumery. |\r\n| 3 | My home is safely far behind me now. With it go the unfounded accusations, spiteful rumors, and perhaps some potential links to a string of corporate assassinations. |\r\n| 4 | I am cataloging an encyclopedia of flora and their various chemical, magical, and alchemical properties and applications. It is my life's work. |\r\n| 5 | I am dedicated to my craft, always seeking to expand my knowledge and hone my skills in the science and business of aromatics. |\r\n| 6 | I have a loved one who is threatened (held hostage?) by an organized gang of vicious halfling thugs who control many of the “rackets” in the perfumeries in my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am driven to reclaim the status and respect of the socially and scientifically elite and will sacrifice much to gain it. |\r\n| 2 | I am highly competitive and not above plagiarizing or stealing the occasional recipe, idea, formula, or sample. |\r\n| 3 | I am hard-pressed to treat anyone who is not (by my standards) “well schooled” or “well heeled” as little more than lab assistants and house servants. |\r\n| 4 | A pretty face is always able to lead me astray. |\r\n| 5 | I am secretly addicted to a special perfume that only I can reproduce. |\r\n| 6 | *On a stormy night, I heard a voice in the wind, which led me to a mysterious plant. Its scent was intoxicating, and I consumed it. Now, that voice occasionally whispers in my dreams, urging me to some unknown destiny.* |", + "type": "suggested_characteristics", + "parent": "toh_parfumier" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 151, + "fields": { + "name": "Skill Proficiencies", + "desc": "Athletics, Sleight of Hand", + "type": "skill_proficiency", + "parent": "toh_scoundrel" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 152, + "fields": { + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_scoundrel" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 153, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of gaming set, thieves' tools", + "type": "tool_proficiency", + "parent": "toh_scoundrel" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 154, + "fields": { + "name": "Equipment", + "desc": "A bag of 1,000 ball bearings, a pet monkey wearing a tiny fez, a set of common clothes, and a pouch containing 10 gp", + "type": "equipment", + "parent": "toh_scoundrel" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 155, + "fields": { + "name": "Urban Explorer", + "desc": "You are familiar with the layout and rhythms of towns and cities. When you arrive in a new city, you can quickly locate places to stay, where to buy good quality gear, and other facilities. You can shake off pursuers when you are being chased through the streets or across the rooftops. You have a knack for leading pursuers into a crowded market filled with stalls piled high with breakable merchandise, or down a narrow alley just as a dung cart is coming in the other direction.", + "type": "feature", + "parent": "toh_scoundrel" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 156, + "fields": { + "name": "Suggested Characteristics", + "desc": "Despite their poor upbringing, scoundrels tend to live a charmed life—never far from trouble, but usually coming out on top. Many are thrill-seekers who delight in taunting their opponents before making a flashy and daring escape. Most are generally good-hearted, but some are self-centered to the point of arrogance. Quieter, introverted types and the lawfully-inclined can find them very annoying.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Flashing a big smile often gets me out of trouble. |\r\n| 2 | If I can just keep them talking, it will give me time to escape. |\r\n| 3 | I get fidgety if I have to sit still for more than ten minutes or so. |\r\n| 4 | Whatever I do, I try to do it with style and panache. |\r\n| 5 | I don't hold back when there's free food and drink on offer. |\r\n| 6 | Nothing gets me more annoyed than being ignored. |\r\n| 7 | I always sit with my back to the wall and my eyes on the exits. |\r\n| 8 | Why walk down the street when you can run across the rooftops? |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** Ropes and chains are made to be broken. Locks are made to be picked. Doors are meant to be opened. (Chaotic) |\r\n| 2 | **Community.** We need to look out for one another and keep everyone safe. (Lawful) |\r\n| 3 | **Charity.** I share my wealth with those who need it the most. (Good) |\r\n| 4 | **Friendship.** My friends matter more to me than lofty ideals. (Neutral) |\r\n| 5 | **Aspiration.** One day my wondrous deeds will be known across the world. (Any) |\r\n| 6 | **Greed.** I'll stop at nothing to get what I want. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My elder sibling taught me how to find a safe hiding place in the city. This saved my life at least once. |\r\n| 2 | I stole money from someone who couldn't afford to lose it and now they're destitute. One day I'll make it up to them. |\r\n| 3 | The street kids in my town are my true family. |\r\n| 4 | My mother gave me an old brass lamp. I polish it every night before going to sleep. |\r\n| 5 | When I was young, I was too scared to leap from the tallest tower in my hometown onto the hay cart beneath. I'll try again someday. |\r\n| 6 | A city guardsman let me go when they should have arrested me for stealing. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If there's a lever to pull, I'll pull it. |\r\n| 2 | It's not stealing if nobody realizes it's gone. |\r\n| 3 | If I don't like the odds, I'm out of there. |\r\n| 4 | I often don't know when to shut up. |\r\n| 5 | I once filched a pipe from a priest. Now I think the god has cursed me. |\r\n| 6 | I grow angry when someone else steals the limelight. |", + "type": "suggested_characteristics", + "parent": "toh_scoundrel" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 157, + "fields": { + "name": "Skill Proficiencies", + "desc": "Insight, Perception", + "type": "skill_proficiency", + "parent": "toh_sentry" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 158, + "fields": { + "name": "Languages", + "desc": "One language of your choice", + "type": "language", + "parent": "toh_sentry" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 159, + "fields": { + "name": "Tool Proficiencies", + "desc": "One type of gaming set", + "type": "tool_proficiency", + "parent": "toh_sentry" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 160, + "fields": { + "name": "Equipment", + "desc": "A set of dice or deck of cards, a shield bearing your previous employer's symbol, a set of common clothes, a hooded lantern, a signal whistle, and a belt pouch containing 10 gp", + "type": "equipment", + "parent": "toh_sentry" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 161, + "fields": { + "name": "Comrades in Arms", + "desc": "The knowing look from the caravan guard to the city gatekeeper or the nod of recognition between the noble's bodyguard and the district watchman—no matter the community, city, or town, the guards share a commonality of purpose. When you arrive in a new location, you can speak briefly with the gate guards, local watch, or other community guardians to gain local knowledge. This knowledge could be information, such as the most efficient routes through the city, primary vendors for a variety of luxury goods, the best (or worst) inns and taverns, the primary criminal elements in town, or the current conflicts in the community.", + "type": "feature", + "parent": "toh_sentry" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 162, + "fields": { + "name": "Suggested Characteristics", + "desc": "You're a person who understands both patience and boredom, as a guard is always waiting for something to happen. More often than not, sentries hope nothing happens because something happening usually means something has gone wrong. A life spent watching and protecting, acting in critical moments, and learning the details of places and behaviors; all of these help shape the personality of the former sentry. Some claim you never stop being a guard, you just change what you protect.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I've seen the dregs of society and nothing surprises me anymore. |\r\n| 2 | I know where to look to spot threats lurking around a corner, in a glance, and even in a bite of food or cup of drink. |\r\n| 3 | I hate standing still and always keep moving. |\r\n| 4 | My friends know they can rely on me to stand and protect them. |\r\n| 5 | I resent the rich and powerful; they think they can get away with anything. |\r\n| 6 | A deception of any sort marks you as untrustworthy in my mind. |\r\n| 7 | Stopping lawbreakers taught me the best ways to skirt the law. |\r\n| 8 | I never take anything at face-value. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greed.** Threats to my companions only increase my glory when I protect them from it. (Evil) |\r\n| 2 | **Perception.** I watch everyone, for threats come from every rank or station. (Neutral) |\r\n| 3 | **Duty.** The laws of the community must be followed to keep everyone safe. (Lawful) |\r\n| 4 | **Community.** I am all that stands between my companions and certain doom. (Good) |\r\n| 5 | **Determination.** To truly protect others, you must sometimes break the law. (Chaotic) |\r\n| 6 | **Practicality.** I require payment for the protection or service I provide. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My charge is paramount; if you can't protect your charge, you've failed. |\r\n| 2 | I was once saved by one of my fellow guards. Now I always come to my companions' aid, no matter what the threat. |\r\n| 3 | My oath is unbreakable; I'd rather die first. |\r\n| 4 | There is no pride equal to the accomplishment of a successful mission. |\r\n| 5 | I stand as a bulwark against those who would damage or destroy society, and society is worth protecting. |\r\n| 6 | I know that as long as I stand with my companions, things can be made right. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Sometimes I may overindulge in a guilty pleasure, but you need something to pass time. |\r\n| 2 | I can't just sit quietly next to someone. I've got to fill the silence with conversation to make good company. |\r\n| 3 | I'm not very capable in social situations. I'd rather sit on the sidelines and observe. People make me nervous. |\r\n| 4 | I have a tough time trusting strangers and new people. You don't know their habits and behaviors; therefore, you don't know their risk. |\r\n| 5 | There is danger all around us, and only the foolish let their guard down. I am no fool, and I will spot the danger. |\r\n| 6 | I believe there's a firm separation between task and personal time. I don't do other people's work when I'm on my own time. If you want me, hire me. |", + "type": "suggested_characteristics", + "parent": "toh_sentry" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 163, + "fields": { + "name": "Skill Proficiencies", + "desc": "Nature, Survival", + "type": "skill_proficiency", + "parent": "toh_trophy-hunter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 164, + "fields": { + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_trophy-hunter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 165, + "fields": { + "name": "Tool Proficiencies", + "desc": "Leatherworker's tools, vehicles (land)", + "type": "tool_proficiency", + "parent": "toh_trophy-hunter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 166, + "fields": { + "name": "Equipment", + "desc": "A donkey or mule with bit and bridle, a set of cold-weather or warm-weather clothes, and a belt pouch containing 5 gp", + "type": "equipment", + "parent": "toh_trophy-hunter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 167, + "fields": { + "name": "Shelter from the Storm", + "desc": "You have spent years hunting in the harshest environments of the world and have seen tents blown away by gales, food stolen by hungry bears, and equipment destroyed by the elements. While traveling in the wilderness, you can find a natural location suitable to make camp by spending 1 hour searching. This location provides cover from the elements and is in some way naturally defensible, at the GM's discretion.", + "type": "feature", + "parent": "toh_trophy-hunter" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 168, + "fields": { + "name": "Suggested Characteristics", + "desc": "Most trophy hunters are skilled hobbyists and find strange relaxation in the tension of the hunt and revel in the glory of a kill. You may find great personal joy in hunting, in the adoration of peers, or simply in earning gold by selling pelts, scales, and horns.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nothing gets my blood pumping like stalking a wild animal. |\r\n| 2 | I like things big! Trophies, big! Food, big! Money, houses, weapons, possessions, I want ‘em big, big, BIG! |\r\n| 3 | When hunting, it's almost as if I become a different person. Focused. Confident. Ruthless. |\r\n| 4 | The only way to kill a beast is to be patient and find the perfect moment to strike. The same is true for all the important things in life. |\r\n| 5 | Bathing is for novices. I know that to catch my smelly, filthy prey, I must smell like them to throw off their scent. |\r\n| 6 | I eat only raw meat. It gets me more in tune with my prey. |\r\n| 7 | I'm a connoisseur of killing implements; I only use the best, because I am the best. |\r\n| 8 | I thank the natural world for its bounty after every kill. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Ambition.** It is my divine calling to become better than my rivals by any means necessary. (Chaotic) |\r\n| 2 | **Altruism.** I hunt only to protect those who cannot protect themselves. (Good) |\r\n| 3 | **Determination.** No matter what the laws say, I will kill that beast! (Chaotic) |\r\n| 4 | **Cruelty.** My prey lives only for my pleasure. It will die exactly as quickly or as slowly as I desire. (Evil) |\r\n| 5 | **Sport.** We're just here to have fun. (Neutral) |\r\n| 6 | **Family.** I follow in my family's footsteps. I will not tarnish their legacy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I like hunting because I like feeling big and powerful. |\r\n| 2 | I hunt because my parents think I'm a worthless runt. I need to make them proud. |\r\n| 3 | I was mauled by a beast on my first hunting trip. I've spent my life searching for that monster. |\r\n| 4 | The first time I drew blood, something awoke within me. Every hunt is a search for the original ecstasy of blood. |\r\n| 5 | My hunting companions used to laugh at me behind my back. They aren't laughing anymore. |\r\n| 6 | A close friend funded my first hunting expedition. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm actually a sham. All of my trophies were bagged by someone else. I just followed along and watched. |\r\n| 2 | I'm terrified of anything larger than myself. |\r\n| 3 | I can't express anger without lashing out at something. |\r\n| 4 | I need money. I don't care how much or how little I have; I need more. And I would do anything to get it. |\r\n| 5 | I am obsessed with beauty in animals, art, and people. |\r\n| 6 | I don't trust my hunting partners, whom I know are here to steal my glory! |", + "type": "suggested_characteristics", + "parent": "toh_trophy-hunter" + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/Background.json b/data/v2/wizards-of-the-coast/srd/Background.json index 7c7688bc..d1fd1d67 100644 --- a/data/v2/wizards-of-the-coast/srd/Background.json +++ b/data/v2/wizards-of-the-coast/srd/Background.json @@ -1,11 +1,11 @@ [ - { - "model": "api_v2.background", - "pk": "srd_acolyte", - "fields": { - "name": "Acolyte", - "desc": "You have spent your life in the service of a temple to a specific god or pantheon of gods. You act as an\r\nintermediary between the realm of the holy and the mortal world, performing sacred rites and offering sacrifices in order to conduct worshipers into the presence of the divine. You are not necessarily a cleric performing sacred rites is not the same thing as channeling divine power.\r\n\r\nChoose a god, a pantheon of gods, or some other quasi-divine being from among those listed in \"Fantasy-Historical Pantheons\" or those specified by your GM, and work with your GM to detail the nature\r\nof your religious service. Were you a lesser functionary in a temple, raised from childhood to assist the priests in the sacred rites? Or were you a high priest who suddenly experienced a call to serve your god in a different way? Perhaps you were the leader of a small cult outside of any established temple structure, or even an occult group that served a fiendish master that you now deny.", - "document": "srd" - } +{ + "model": "api_v2.background", + "pk": "srd_acolyte", + "fields": { + "name": "Acolyte", + "desc": "You have spent your life in the service of a temple to a specific god or pantheon of gods. You act as an\r\nintermediary between the realm of the holy and the mortal world, performing sacred rites and offering sacrifices in order to conduct worshipers into the presence of the divine. You are not necessarily a cleric performing sacred rites is not the same thing as channeling divine power.\r\n\r\nChoose a god, a pantheon of gods, or some other quasi-divine being from among those listed in \"Fantasy-Historical Pantheons\" or those specified by your GM, and work with your GM to detail the nature\r\nof your religious service. Were you a lesser functionary in a temple, raised from childhood to assist the priests in the sacred rites? Or were you a high priest who suddenly experienced a call to serve your god in a different way? Perhaps you were the leader of a small cult outside of any established temple structure, or even an occult group that served a fiendish master that you now deny.", + "document": "srd" } -] \ No newline at end of file +} +] diff --git a/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json b/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json index e93a881d..3f25f16e 100644 --- a/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json +++ b/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json @@ -1,52 +1,52 @@ [ - { - "model": "api_v2.backgroundbenefit", - "pk": 30, - "fields": { - "name": "Skill Proficiencies", - "desc": "Insight, Religion", - "type": "skill_proficiency", - "parent": "srd_acolyte" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 31, - "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", - "parent": "srd_acolyte" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 32, - "fields": { - "name": "Equipment", - "desc": "A holy symbol (a gift to you when you entered the priesthood), a prayer book or prayer wheel, 5 sticks of incense, vestments, a set of common clothes, and a pouch containing 15 gp", - "type": "equipment", - "parent": "srd_acolyte" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 33, - "fields": { - "name": "Shelter of the Faithful", - "desc": "As an acolyte, you command the respect of those who share your faith, and you can perform the religious ceremonies of your deity. You and your adventuring companions can expect to receive free healing and care at a temple, shrine, or other established presence of your faith, though you must provide any material components needed for spells. Those who share your religion will support you (but only you) at a modest lifestyle.\r\n\r\nYou might also have ties to a specific temple dedicated to your chosen deity or pantheon, and you have a residence there. This could be the temple where you used to serve, if you remain on good terms with it, or a temple where you have found a new home. While near your temple, you can call upon the priests for assistance, provided the assistance you ask for is not hazardous and you remain in good standing with your temple.", - "type": "feature", - "parent": "srd_acolyte" - } - }, - { - "model": "api_v2.backgroundbenefit", - "pk": 34, - "fields": { - "name": "Suggested Characteristics", - "desc": "Acolytes are shaped by their experience in temples or other religious communities. Their study of the history and tenets of their faith and their relationships to temples, shrines, or hierarchies affect their mannerisms and ideals. Their flaws might be some hidden hypocrisy or heretical idea, or an ideal or bond taken to an extreme.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I idolize a particular hero of my faith, and constantly refer to that person's deeds and example. |\r\n| 2 | I can find common ground between the fiercest enemies, empathizing with them and always working toward peace. |\r\n| 3 | I see omens in every event and action. The gods try to speak to us, we just need to listen |\r\n| 4 | Nothing can shake my optimistic attitude. |\r\n| 5 | I quote (or misquote) sacred texts and proverbs in almost every situation. |\r\n| 6 | I am tolerant (or intolerant) of other faiths and respect (or condemn) the worship of other gods. |\r\n| 7 | I've enjoyed fine food, drink, and high society among my temple's elite. Rough living grates on me. |\r\n| 8 | I've spent so long in the temple that I have little practical experience dealing with people in the outside world. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Tradition. The ancient traditions of worship and sacrifice must be preserved and upheld. (Lawful) |\r\n| 2 | Charity. I always try to help those in need, no matter what the personal cost. (Good) |\r\n| 3 | Change. We must help bring about the changes the gods are constantly working in the world. (Chaotic) |\r\n| 4 | Power. I hope to one day rise to the top of my faith's religious hierarchy. (Lawful) |\r\n| 5 | Faith. I trust that my deity will guide my actions. I have faith that if I work hard, things will go well. (Lawful) |\r\n| 6 | Aspiration. I seek to prove myself worthy of my god's favor by matching my actions against his or her teachings. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I would die to recover an ancient relic of my faith that was lost long ago. |\r\n| 2 | I will someday get revenge on the corrupt temple hierarchy who branded me a heretic. |\r\n| 3 | I owe my life to the priest who took me in when my parents died. |\r\n| 4 | Everything I do is for the common people. |\r\n| 5 | I will do anything to protect the temple where I served. |\r\n| 6 | I seek to preserve a sacred text that my enemies consider heretical and seek to destroy. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I judge others harshly, and myself even more severely. |\r\n| 2 | I put too much trust in those who wield power within my temple's hierarchy. |\r\n| 3 | My piety sometimes leads me to blindly trust those that profess faith in my god. |\r\n| 4 | I am inflexible in my thinking. |\r\n| 5 | I am suspicious of strangers and expect the worst of them. |\r\n| 6 | Once I pick a goal, I become obsessed with it to the detriment of everything else in my life. |", - "type": "suggested_characteristics", - "parent": "srd_acolyte" - } +{ + "model": "api_v2.backgroundbenefit", + "pk": 30, + "fields": { + "name": "Skill Proficiencies", + "desc": "Insight, Religion", + "type": "skill_proficiency", + "parent": "srd_acolyte" } -] \ No newline at end of file +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 31, + "fields": { + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "srd_acolyte" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 32, + "fields": { + "name": "Equipment", + "desc": "A holy symbol (a gift to you when you entered the priesthood), a prayer book or prayer wheel, 5 sticks of incense, vestments, a set of common clothes, and a pouch containing 15 gp", + "type": "equipment", + "parent": "srd_acolyte" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 33, + "fields": { + "name": "Shelter of the Faithful", + "desc": "As an acolyte, you command the respect of those who share your faith, and you can perform the religious ceremonies of your deity. You and your adventuring companions can expect to receive free healing and care at a temple, shrine, or other established presence of your faith, though you must provide any material components needed for spells. Those who share your religion will support you (but only you) at a modest lifestyle.\r\n\r\nYou might also have ties to a specific temple dedicated to your chosen deity or pantheon, and you have a residence there. This could be the temple where you used to serve, if you remain on good terms with it, or a temple where you have found a new home. While near your temple, you can call upon the priests for assistance, provided the assistance you ask for is not hazardous and you remain in good standing with your temple.", + "type": "feature", + "parent": "srd_acolyte" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": 34, + "fields": { + "name": "Suggested Characteristics", + "desc": "Acolytes are shaped by their experience in temples or other religious communities. Their study of the history and tenets of their faith and their relationships to temples, shrines, or hierarchies affect their mannerisms and ideals. Their flaws might be some hidden hypocrisy or heretical idea, or an ideal or bond taken to an extreme.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I idolize a particular hero of my faith, and constantly refer to that person's deeds and example. |\r\n| 2 | I can find common ground between the fiercest enemies, empathizing with them and always working toward peace. |\r\n| 3 | I see omens in every event and action. The gods try to speak to us, we just need to listen |\r\n| 4 | Nothing can shake my optimistic attitude. |\r\n| 5 | I quote (or misquote) sacred texts and proverbs in almost every situation. |\r\n| 6 | I am tolerant (or intolerant) of other faiths and respect (or condemn) the worship of other gods. |\r\n| 7 | I've enjoyed fine food, drink, and high society among my temple's elite. Rough living grates on me. |\r\n| 8 | I've spent so long in the temple that I have little practical experience dealing with people in the outside world. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Tradition. The ancient traditions of worship and sacrifice must be preserved and upheld. (Lawful) |\r\n| 2 | Charity. I always try to help those in need, no matter what the personal cost. (Good) |\r\n| 3 | Change. We must help bring about the changes the gods are constantly working in the world. (Chaotic) |\r\n| 4 | Power. I hope to one day rise to the top of my faith's religious hierarchy. (Lawful) |\r\n| 5 | Faith. I trust that my deity will guide my actions. I have faith that if I work hard, things will go well. (Lawful) |\r\n| 6 | Aspiration. I seek to prove myself worthy of my god's favor by matching my actions against his or her teachings. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I would die to recover an ancient relic of my faith that was lost long ago. |\r\n| 2 | I will someday get revenge on the corrupt temple hierarchy who branded me a heretic. |\r\n| 3 | I owe my life to the priest who took me in when my parents died. |\r\n| 4 | Everything I do is for the common people. |\r\n| 5 | I will do anything to protect the temple where I served. |\r\n| 6 | I seek to preserve a sacred text that my enemies consider heretical and seek to destroy. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I judge others harshly, and myself even more severely. |\r\n| 2 | I put too much trust in those who wield power within my temple's hierarchy. |\r\n| 3 | My piety sometimes leads me to blindly trust those that profess faith in my god. |\r\n| 4 | I am inflexible in my thinking. |\r\n| 5 | I am suspicious of strangers and expect the worst of them. |\r\n| 6 | Once I pick a goal, I become obsessed with it to the detriment of everything else in my life. |", + "type": "suggested_characteristics", + "parent": "srd_acolyte" + } +} +] From e9bafc0d5901d93e6dc9843d03a4aadb56ea2078 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 24 May 2024 12:28:06 -0500 Subject: [PATCH 23/84] Switching background benefit to key rather than id. --- api_v2/migrations/0076_auto_20240524_1727.py | 23 + api_v2/models/background.py | 1 + .../a5e-ag/BackgroundBenefit.json | 1288 ++++++++--------- .../a5e-ddg/BackgroundBenefit.json | 202 +-- .../a5e-gpg/BackgroundBenefit.json | 94 +- .../green-ronin/tdcs/BackgroundBenefit.json | 188 +-- .../kobold-press/toh/BackgroundBenefit.json | 822 +++++------ .../srd/BackgroundBenefit.json | 28 +- .../data_manipulation/data_v2_format_check.py | 12 +- 9 files changed, 1342 insertions(+), 1316 deletions(-) create mode 100644 api_v2/migrations/0076_auto_20240524_1727.py diff --git a/api_v2/migrations/0076_auto_20240524_1727.py b/api_v2/migrations/0076_auto_20240524_1727.py new file mode 100644 index 00000000..2c1a768e --- /dev/null +++ b/api_v2/migrations/0076_auto_20240524_1727.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.20 on 2024-05-24 17:27 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0075_rename_benefit_backgroundbenefit'), + ] + + operations = [ + migrations.RemoveField( + model_name='backgroundbenefit', + name='id', + ), + migrations.AddField( + model_name='backgroundbenefit', + name='key', + field=models.CharField(default=1, help_text='Unique key for the Document.', max_length=100, primary_key=True, serialize=False), + preserve_default=False, + ), + ] diff --git a/api_v2/models/background.py b/api_v2/models/background.py index 90a8b667..a21645be 100644 --- a/api_v2/models/background.py +++ b/api_v2/models/background.py @@ -8,6 +8,7 @@ class BackgroundBenefit(Modification): """This is the model for an individual benefit of a background.""" + key = key_field() parent = models.ForeignKey('Background', on_delete=models.CASCADE) diff --git a/data/v2/en-publishing/a5e-ag/BackgroundBenefit.json b/data/v2/en-publishing/a5e-ag/BackgroundBenefit.json index 81351bc2..f05e0cf5 100644 --- a/data/v2/en-publishing/a5e-ag/BackgroundBenefit.json +++ b/data/v2/en-publishing/a5e-ag/BackgroundBenefit.json @@ -1,27 +1,37 @@ [ { "model": "api_v2.backgroundbenefit", - "pk": 24, + "pk": "a5e-ag_acolyte_ability-score-increases", "fields": { - "name": "Skill Proficiencies", - "desc": "Religion, and either Insight or Persuasion.", - "type": "skill_proficiency", + "name": "Ability Score Increases", + "desc": "+1 to Wisdom and one other ability score.", + "type": "ability_score", "parent": "a5e-ag_acolyte" } }, { "model": "api_v2.backgroundbenefit", - "pk": 25, + "pk": "a5e-ag_acolyte_adventures-and-advancement", "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", + "name": "Adventures and Advancement", + "desc": "In small settlements without other resources, your authority may extend to such matters as settling disputes and punishing criminals. You might also be expected to deal with local outbreaks of supernatural dangers such as fiendish possessions, cults, and the unquiet dead. \r\nIf you solve several problems brought to you by members of your faith, you may be promoted (or reinstated) within the hierarchy of your order. You gain the free service of up to 4 acolytes, and direct access to your order’s leaders.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_acolyte" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "a5e-ag_acolyte_connection-and-memento", + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Acolyte Connections\r\n\r\n1. A beloved high priest or priestess awaiting your return to the temple once you resolve your crisis of faith.\r\n2. A former priest—exposed by you as a heretic—who swore revenge before fleeing.\r\n3. The wandering herald who rescued you as an orphan and sponsored your entry into your temple.\r\n4. The inquisitor who rooted out your heresy (or framed you) and had you banished from your temple.\r\n5. The fugitive charlatan or cult leader whom you once revered as a holy person.\r\n6. Your scandalous friend, a fellow acolyte who fled the temple in search of worldly pleasures.\r\n7. The high priest who discredited your temple and punished the others of your order.\r\n8. The wandering adventurer whose tales of glory enticed you from your temple.\r\n9. The leader of your order, a former adventurer who sends you on quests to battle your god’s enemies.\r\n10. The former leader of your order who inexplicably retired to a life of isolation and penance.\r\n\r\n### Acolyte Memento\r\n\r\n1. The timeworn holy symbol bequeathed to you by your beloved mentor on their deathbed.\r\n2. A precious holy relic secretly passed on to you in a moment of great danger.\r\n3. A prayer book which contains strange and sinister deviations from the accepted liturgy.\r\n4. A half-complete book of prophecies which seems to hint at danger for your faith—if only the other half could be found!\r\n5. A gift from a mentor: a book of complex theology which you don’t yet understand.\r\n6. Your only possession when you entered the temple as a child: a signet ring bearing a coat of arms.\r\n7. A strange candle which never burns down.\r\n8. The true name of a devil that you glimpsed while tidying up papers for a sinister visitor.\r\n9. A weapon (which seems to exhibit no magical properties) given to you with great solemnity by your mentor.\r\n10. A much-thumbed and heavily underlined prayer book given to you by the fellow acolyte you admire most.", + "type": "connection_and_memento", "parent": "a5e-ag_acolyte" } }, { "model": "api_v2.backgroundbenefit", - "pk": 26, + "pk": "a5e-ag_acolyte_equipment", "fields": { "name": "Equipment", "desc": "Holy symbol (amulet or reliquary), common clothes, robe, and a prayer book, prayer wheel, or prayer beads.", @@ -31,47 +41,47 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 27, + "pk": "a5e-ag_acolyte_languages", "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Wisdom and one other ability score.", - "type": "ability_score", + "name": "Languages", + "desc": "One of your choice.", + "type": "language", "parent": "a5e-ag_acolyte" } }, { "model": "api_v2.backgroundbenefit", - "pk": 28, + "pk": "a5e-ag_acolyte_skill-proficiencies", "fields": { - "name": "Adventures and Advancement", - "desc": "In small settlements without other resources, your authority may extend to such matters as settling disputes and punishing criminals. You might also be expected to deal with local outbreaks of supernatural dangers such as fiendish possessions, cults, and the unquiet dead. \r\nIf you solve several problems brought to you by members of your faith, you may be promoted (or reinstated) within the hierarchy of your order. You gain the free service of up to 4 acolytes, and direct access to your order’s leaders.", - "type": "adventures_and_advancement", + "name": "Skill Proficiencies", + "desc": "Religion, and either Insight or Persuasion.", + "type": "skill_proficiency", "parent": "a5e-ag_acolyte" } }, { "model": "api_v2.backgroundbenefit", - "pk": 29, + "pk": "a5e-ag_artisan_ability-score-increases", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Acolyte Connections\r\n\r\n1. A beloved high priest or priestess awaiting your return to the temple once you resolve your crisis of faith.\r\n2. A former priest—exposed by you as a heretic—who swore revenge before fleeing.\r\n3. The wandering herald who rescued you as an orphan and sponsored your entry into your temple.\r\n4. The inquisitor who rooted out your heresy (or framed you) and had you banished from your temple.\r\n5. The fugitive charlatan or cult leader whom you once revered as a holy person.\r\n6. Your scandalous friend, a fellow acolyte who fled the temple in search of worldly pleasures.\r\n7. The high priest who discredited your temple and punished the others of your order.\r\n8. The wandering adventurer whose tales of glory enticed you from your temple.\r\n9. The leader of your order, a former adventurer who sends you on quests to battle your god’s enemies.\r\n10. The former leader of your order who inexplicably retired to a life of isolation and penance.\r\n\r\n### Acolyte Memento\r\n\r\n1. The timeworn holy symbol bequeathed to you by your beloved mentor on their deathbed.\r\n2. A precious holy relic secretly passed on to you in a moment of great danger.\r\n3. A prayer book which contains strange and sinister deviations from the accepted liturgy.\r\n4. A half-complete book of prophecies which seems to hint at danger for your faith—if only the other half could be found!\r\n5. A gift from a mentor: a book of complex theology which you don’t yet understand.\r\n6. Your only possession when you entered the temple as a child: a signet ring bearing a coat of arms.\r\n7. A strange candle which never burns down.\r\n8. The true name of a devil that you glimpsed while tidying up papers for a sinister visitor.\r\n9. A weapon (which seems to exhibit no magical properties) given to you with great solemnity by your mentor.\r\n10. A much-thumbed and heavily underlined prayer book given to you by the fellow acolyte you admire most.", - "type": "connection_and_memento", - "parent": "a5e-ag_acolyte" + "name": "Ability Score Increases", + "desc": "+1 to Intelligence and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_artisan" } }, { "model": "api_v2.backgroundbenefit", - "pk": 43, + "pk": "a5e-ag_artisan_adventures-and-advancement", "fields": { - "name": "Tool Proficiencies", - "desc": "One type of artisan’s tools or smith’s tools.", - "type": "tool_proficiency", + "name": "Adventures And Advancement", + "desc": "If you participate in the creation of a magic item (a “master work”), you will gain the services of up to 8 commoner apprentices with the appropriate tool proficiency.", + "type": "adventures_and_advancement", "parent": "a5e-ag_artisan" } }, { "model": "api_v2.backgroundbenefit", - "pk": 47, + "pk": "a5e-ag_artisan_connection-and-memento", "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### **Artisan Connections**\r\n\r\n1. The cruel master who worked you nearly to death and now does the same to other apprentices.\r\n2. The kind master who taught you the trade.\r\n3. The powerful figure who refused to pay for your finest work.\r\n4. The jealous rival who made a fortune after stealing your secret technique.\r\n5. The corrupt rival who framed and imprisoned your mentor.\r\n6. The bandit leader who destroyed your mentor’s shop and livelihood.\r\n7. The crime boss who bankrupted your mentor.\r\n8. The shady alchemist who always needs dangerous ingredients to advance the state of your art.\r\n9. Your apprentice who went missing.\r\n10. The patron who supports your work.\r\n\r\n### **Artisan Mementos**\r\n\r\n1. *Jeweler:* A 10,000 gold commission for a ruby ring (now all you need is a ruby worth 5,000 gold).\r\n2. *Smith:* Your blacksmith's hammer (treat as a light hammer).\r\n3. *Cook:* A well-seasoned skillet (treat as a mace).\r\n4. *Alchemist:* A formula with exotic ingredients that will produce...something.\r\n5. *Leatherworker:* An exotic monster hide which could be turned into striking-looking leather armor.\r\n6. *Mason:* Your trusty sledgehammer (treat as a warhammer).\r\n7. *Potter:* Your secret technique for vivid colors which is sure to disrupt Big Pottery.\r\n8. *Weaver:* A set of fine clothes (your own work).\r\n9. *Woodcarver:* A longbow, shortbow, or crossbow (your own work).\r\n10. *Calligrapher:* Strange notes you copied from a rambling manifesto. Do they mean something?", @@ -81,57 +91,57 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 48, + "pk": "a5e-ag_artisan_equipment", "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Charisma and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_charlatan" + "name": "Equipment", + "desc": "One set of artisan's tools, traveler's clothes.", + "type": "equipment", + "parent": "a5e-ag_artisan" } }, { "model": "api_v2.backgroundbenefit", - "pk": 49, + "pk": "a5e-ag_artisan_skill-proficiencies", "fields": { "name": "Skill Proficiencies", - "desc": "Deception, and either Culture, Insight, or Sleight of Hand.", + "desc": "Persuasion, and either Insight or History.", "type": "skill_proficiency", - "parent": "a5e-ag_charlatan" + "parent": "a5e-ag_artisan" } }, { "model": "api_v2.backgroundbenefit", - "pk": 50, + "pk": "a5e-ag_artisan_tool-proficiencies", "fields": { "name": "Tool Proficiencies", - "desc": "Disguise kit, forgery kit.", + "desc": "One type of artisan’s tools or smith’s tools.", "type": "tool_proficiency", - "parent": "a5e-ag_charlatan" + "parent": "a5e-ag_artisan" } }, { "model": "api_v2.backgroundbenefit", - "pk": 51, + "pk": "a5e-ag_artisan_trade-mark", "fields": { - "name": "Suggested Equipment", - "desc": "Common clothes, disguise kit, forgery kit.", - "type": "equipment", - "parent": "a5e-ag_charlatan" + "name": "Trade Mark", + "desc": "When in a city or town, you have access to a fully-stocked workshop with everything you need to ply your trade. Furthermore, you can expect to earn full price when you sell items you have crafted (though there is no guarantee of a buyer).", + "type": "feature", + "parent": "a5e-ag_artisan" } }, { "model": "api_v2.backgroundbenefit", - "pk": 52, + "pk": "a5e-ag_charlatan_ability-score-increases", "fields": { - "name": "Many Identities", - "desc": "You have a bundle of forged papers of all kinds—property deeds, identification papers, love letters, arrest warrants, and letters of recommendation—all requiring only a few signatures and flourishes to meet the current need. When you encounter a new document or letter, you can add a forged and modified copy to your bundle. If your bundle is lost, you can recreate it with a forgery kit and a day’s work.", - "type": "feature", + "name": "Ability Score Increases", + "desc": "+1 to Charisma and one other ability score.", + "type": "ability_score", "parent": "a5e-ag_charlatan" } }, { "model": "api_v2.backgroundbenefit", - "pk": 53, + "pk": "a5e-ag_charlatan_adventures-and-advancement", "fields": { "name": "Adventures and Advancement", "desc": "If you pull off a long-standing impersonation or false identity with exceptional success, you may eventually legally become that person. If you’re impersonating a real person, they might be considered the impostor. You gain any property and servants associated with your identity.", @@ -141,7 +151,7 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 54, + "pk": "a5e-ag_charlatan_connection-and-memento", "fields": { "name": "Connection and Memento", "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Charlatan Connections\r\n\r\n1. A relentless pursuer: an inspector who you once made a fool of.\r\n2. A relentless pursuer: a mark you once cheated.\r\n3. A relentless pursuer: a former partner just out of jail who blames you for everything.\r\n4. A former partner now gone straight who couldn’t possibly be coaxed out of retirement.\r\n5. A respected priest or tavernkeeper who tips you off about rich potential marks.\r\n6. The elusive former partner who ratted you out and sent you to jail.\r\n7. A famous noble or politician who through sheer luck happens to bear a striking resemblance to you.\r\n8. The crook who taught you everything and just can’t stay out of trouble.\r\n9. A gullible noble who knows you by one of your former aliases, and who always seems to pop up at inconvenient times.\r\n10. A prominent noble who knows you only under your assumed name and who trusts you as their spiritual advisor, tutor, long-lost relative, or the like.\r\n\r\n### Charlatan Mementos\r\n\r\n1. A die that always comes up 6.\r\n2. A dozen brightly-colored “potions”.\r\n3. A magical staff that emits a harmless shower of sparks when vigorously thumped.\r\n4. A set of fine clothes suitable for nobility.\r\n5. A genuine document allowing its holder one free release from prison for a non-capital crime.\r\n6. A genuine deed to a valuable property that is, unfortunately, quite haunted.\r\n7. An ornate harlequin mask.\r\n8. Counterfeit gold coins or costume jewelry apparently worth 100 gold (DC 15 Investigation check to notice they’re fake).\r\n9. A sword that appears more magical than it really is (its blade is enchanted with continual flame and it is a mundane weapon).\r\n10. A nonmagical crystal ball.", @@ -151,647 +161,717 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 187, + "pk": "a5e-ag_charlatan_many-identities", "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Charisma and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_trader" + "name": "Many Identities", + "desc": "You have a bundle of forged papers of all kinds—property deeds, identification papers, love letters, arrest warrants, and letters of recommendation—all requiring only a few signatures and flourishes to meet the current need. When you encounter a new document or letter, you can add a forged and modified copy to your bundle. If your bundle is lost, you can recreate it with a forgery kit and a day’s work.", + "type": "feature", + "parent": "a5e-ag_charlatan" } }, { "model": "api_v2.backgroundbenefit", - "pk": 188, + "pk": "a5e-ag_charlatan_skill-proficiencies", "fields": { "name": "Skill Proficiencies", - "desc": "Persuasion, and either Culture, Deception, or Insight.", + "desc": "Deception, and either Culture, Insight, or Sleight of Hand.", "type": "skill_proficiency", - "parent": "a5e-ag_trader" + "parent": "a5e-ag_charlatan" } }, { "model": "api_v2.backgroundbenefit", - "pk": 189, + "pk": "a5e-ag_charlatan_suggested-equipment", "fields": { - "name": "Equipment", - "desc": "Traveler's clothes, abacus, merchant's scale.", + "name": "Suggested Equipment", + "desc": "Common clothes, disguise kit, forgery kit.", "type": "equipment", - "parent": "a5e-ag_trader" + "parent": "a5e-ag_charlatan" } }, { "model": "api_v2.backgroundbenefit", - "pk": 191, + "pk": "a5e-ag_charlatan_tool-proficiencies", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Trader Connections\r\n1. The parent or relative who wants you to carry on the family business.\r\n2. The sibling who inherited the other half of the family business.\r\n3. The trading company to which you are indentured until you pay off a debt.\r\n4. The powerful merchant who will never forgive the business coup you pulled off.\r\n5. The noble whose horse trampled your poor family’s vegetable stall, injuring or killing a relative you\r\ndearly loved.\r\n6. The parent or elder sibling who squandered your family fortune.\r\n7. The business partner who cheated you.\r\n8. The customs agent who has sworn to catch you red-handed with illicit goods.\r\n9. The crime boss to whom you wouldn’t pay protection money.\r\n10. The smuggler who will pay well for certain commodities.\r\n\r\n### Trader Mementos\r\n1. The first gold piece you earned.\r\n2. Thousands of shares in a failed venture.\r\n3. A letter of introduction to a rich merchant in a distant city.\r\n4. A sample of an improved version of a common tool.\r\n5. Scars from a wound sustained when you tried to collect a debt from a vicious noble.\r\n6. A love letter from the heir of a rival trading family.\r\n7. A signet ring bearing your family crest, which is famous in the mercantile world.\r\n8. A contract binding you to a particular trading company for the next few years.\r\n9. A letter from a friend imploring you to invest in an opportunity that can't miss.\r\n10. A trusted family member's travel journals that mix useful geographical knowledge with tall tales.", - "type": "connection_and_memento", - "parent": "a5e-ag_trader" + "name": "Tool Proficiencies", + "desc": "Disguise kit, forgery kit.", + "type": "tool_proficiency", + "parent": "a5e-ag_charlatan" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "a5e-ag_criminal_ability-score-increases", + "fields": { + "name": "Ability Score Increases", + "desc": "+1 to Dexterity and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_criminal" } }, { "model": "api_v2.backgroundbenefit", - "pk": 192, + "pk": "a5e-ag_criminal_adventures-and-advancement", "fields": { "name": "Adventures And Advancement", - "desc": "Because of your commercial contacts you may be offered money to lead or escort trade caravans. You'll receive a fee from each trader that reaches their destination safely.", + "desc": "If you pull off several successful jobs or heists, you may be promoted (or reinstated) as a leader in your gang. You may gain the free service of up to 8 **bandits** at any time.", "type": "adventures_and_advancement", - "parent": "a5e-ag_trader" + "parent": "a5e-ag_criminal" } }, { "model": "api_v2.backgroundbenefit", - "pk": 245, + "pk": "a5e-ag_criminal_connection-and-memento", "fields": { "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Hermit Connections\r\n1. The high priest who banished you to the wilderness until you repent your heresy.\r\n2. The inquisitor who hunts you even through the most solitary wildlands.\r\n3. The supernatural patron whose temptations and gifts you seek to reject.\r\n4. The inner voice you only hear in solitude.\r\n5. The mentor who trained you in silent contemplation—until they mysteriously turned their back on their own teachings.\r\n6. The villain who destroyed the shreds of your original, worldly life. \r\n7. The noble relatives who seek to return you to the life you rejected.\r\n8. The religious superior whose blasphemies scandalized you into fleeing your religious order.\r\n9. The angel who delivered you a prophecy.\r\n10. The mysterious person you glimpsed several times from a distance—unless it was a hallucination.\r\n\r\n### Hermit Mementos\r\n1. The (possibly unhinged) manifesto, encyclopedia, or theoretical work that you spent so much time on.\r\n2. The faded set of fine clothes you preserved for so many years.\r\n3. The signet ring bearing the family crest that you were ashamed of for so long.\r\n4. The book of forbidden secrets that led you to your isolated refuge.\r\n5. The beetle, mouse, or other small creature which was your only companion for so long.\r\n6. The seemingly nonmagical item that your inner voice says is important.\r\n7. The magic-defying clay tablets you spent years translating.\r\n8. The holy relic you were duty bound to protect.\r\n9. The meteor metal you found in a crater the day you first heard your inner voice.\r\n10. Your ridiculous-looking sun hat.", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Criminal Connections\r\n\r\n1. The master criminal who inducted you into your first gang.\r\n2. The cleric or herald who convinced you to use your skills for good (and who may be legally responsible for your continued good behavior).\r\n3. Your sibling or other relative—who also happens to be a representative of the law.\r\n4. The gang of rascals and pickpockets who once called you their leader.\r\n5. The bounty hunter who has sworn to bring you to justice.\r\n6. Your former partner who made off with all the loot after a big score.\r\n7. The masked courier who occasionally gives you jobs.\r\n8. The crime boss to whom you have sworn loyalty (or to whom you owe an enormous debt).\r\n9. The master thief who once stole something precious from you. \r\n10. The corrupt noble who ruined your once-wealthy family.\r\n\r\n### Criminal Mementos\r\n\r\n1. A golden key to which you haven't discovered the lock.\r\n2. A brand that was burned into your shoulder as punishment for a crime.\r\n3. A scar for which you have sworn revenge.\r\n4. The distinctive mask that gives you your nickname (for instance, the Black Mask or the Red Fox).\r\n5. A gold coin which reappears in your possession a week after you've gotten rid of it.\r\n6. The stolen symbol of a sinister organization; not even your fence will take it off your hands.\r\n7. Documents that incriminate a dangerous noble or politician.\r\n8. The floor plan of a palace.\r\n9. The calling cards you leave after (or before) you strike.\r\n10. A manuscript written by your mentor: *Secret Exits of the World's Most Secure Prisons*.", "type": "connection_and_memento", - "parent": "a5e-ag_hermit" + "parent": "a5e-ag_criminal" } }, { "model": "api_v2.backgroundbenefit", - "pk": 259, + "pk": "a5e-ag_criminal_equipment", "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Dexterity and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_urchin" + "name": "Equipment", + "desc": "Common clothes, dark cloak, thieves' tools.", + "type": "equipment", + "parent": "a5e-ag_criminal" } }, { "model": "api_v2.backgroundbenefit", - "pk": 260, + "pk": "a5e-ag_criminal_skill-proficiencies", "fields": { "name": "Skill Proficiencies", - "desc": "Sleight of Hand, and either Deception or Stealth.", + "desc": "Stealth, and either Deception or Intimidation.", "type": "skill_proficiency", - "parent": "a5e-ag_urchin" + "parent": "a5e-ag_criminal" } }, { "model": "api_v2.backgroundbenefit", - "pk": 261, + "pk": "a5e-ag_criminal_thieves-cant", "fields": { - "name": "Equipment", - "desc": "Common clothes, disguise kit.", - "type": "equipment", - "parent": "a5e-ag_urchin" + "name": "Thieves' Cant", + "desc": "You know thieves' cant: a set of slang, hand signals, and code terms used by professional criminals. A creature that knows thieves' cant can hide a short message within a seemingly innocent statement. A listener who knows thieves' cant understands the message.", + "type": "feature", + "parent": "a5e-ag_criminal" } }, { "model": "api_v2.backgroundbenefit", - "pk": 264, + "pk": "a5e-ag_criminal_tool-proficiencies", "fields": { - "name": "Adventures And Advancement", - "desc": "Street kids are among a settlement's most vulnerable people, especially in cities with lycanthropes, vampires, and other supernatural threats. After you help out a few urchins in trouble, word gets out and you'll be able to consult the street network to gather information. If you roll lower than a 15 on an Investigation check to gather information in a city or town, your roll is treated as a 15.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_urchin" + "name": "Tool Proficiencies", + "desc": "Gaming set, thieves' tools.", + "type": "tool_proficiency", + "parent": "a5e-ag_criminal" } }, { "model": "api_v2.backgroundbenefit", - "pk": 265, + "pk": "a5e-ag_cultist_ability-score-increases", "fields": { "name": "Ability Score Increases", - "desc": "+1 to Dexterity and one other ability score.", + "desc": "+1 to Intelligence and one other ability score.", "type": "ability_score", - "parent": "a5e-ag_criminal" + "parent": "a5e-ag_cultist" } }, { "model": "api_v2.backgroundbenefit", - "pk": 266, + "pk": "a5e-ag_cultist_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Stealth, and either Deception or Intimidation.", - "type": "skill_proficiency", - "parent": "a5e-ag_criminal" + "name": "Adventures and Advancement", + "desc": "Members of your former order may be hunting you for reenlistment, punishment, or both.\r\nAdditionally, your cult still seeks to open a portal, effect an apotheosis, or otherwise cause catastrophe. Eventually you may have to face the leader of your cult and perhaps even the being you once worshiped.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_cultist" } }, { "model": "api_v2.backgroundbenefit", - "pk": 267, + "pk": "a5e-ag_cultist_connection-and-memento", + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cultist Connections\r\n1. The cult leader whom you left for dead.\r\n2. The cleric or herald who showed you the error of your ways.\r\n3. The voice which still speaks to you in dreams.\r\n4. The charismatic cultist whose honeyed words and promises first tempted you.\r\n5. The friend or loved one still in the cult.\r\n6. Your former best friend who now hunts you for your desertion of the cult.\r\n7. The relentless inquisitor who hunts you for your past heresy.\r\n8. The demon which you and your compatriots accidentally unleashed.\r\n9. The self-proclaimed deity who barely escaped from their angry disciples after their magic tricks and fakeries were revealed.\r\n10. The masked cult leader whose identity you never learned, but whose cruel voice you would recognize anywhere.\r\n\r\n### Cultist Mementos\r\n1. The sinister tattoo which occasionally speaks to you.\r\n2. The cursed holy symbol which appears in your possession each morning no matter how you try to rid yourself of it.\r\n3. The scar on your palm which aches with pain when you disobey the will of your former master.\r\n4. The curved dagger that carries a secret enchantment able only to destroy the being you once worshiped.\r\n5. The amulet which is said to grant command of a powerful construct. \r\n6. A forbidden tome which your cult would kill to retrieve. \r\n7. An incriminating letter to your cult leader from their master (a noted noble or politician).\r\n8. A compass which points to some distant location or object.\r\n9. A talisman which is said to open a gateway to the realm of a forgotten god.\r\n10. The birthmark which distinguishes you as the chosen vessel of a reborn god.", + "type": "connection_and_memento", + "parent": "a5e-ag_cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "a5e-ag_cultist_equipment", "fields": { "name": "Equipment", - "desc": "Common clothes, dark cloak, thieves' tools.", + "desc": "Holy symbol (amulet or reliquary), common clothes, robes, 5 torches.", "type": "equipment", - "parent": "a5e-ag_criminal" + "parent": "a5e-ag_cultist" } }, { "model": "api_v2.backgroundbenefit", - "pk": 268, + "pk": "a5e-ag_cultist_forbidden-lore", "fields": { - "name": "Thieves' Cant", - "desc": "You know thieves' cant: a set of slang, hand signals, and code terms used by professional criminals. A creature that knows thieves' cant can hide a short message within a seemingly innocent statement. A listener who knows thieves' cant understands the message.", + "name": "Forbidden Lore", + "desc": "When you fail an Arcana or Religion check, you know what being or book holds the knowledge you seek finding the book or paying the being’s price is another matter.", "type": "feature", - "parent": "a5e-ag_criminal" + "parent": "a5e-ag_cultist" } }, { "model": "api_v2.backgroundbenefit", - "pk": 269, + "pk": "a5e-ag_cultist_languages", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Criminal Connections\r\n\r\n1. The master criminal who inducted you into your first gang.\r\n2. The cleric or herald who convinced you to use your skills for good (and who may be legally responsible for your continued good behavior).\r\n3. Your sibling or other relative—who also happens to be a representative of the law.\r\n4. The gang of rascals and pickpockets who once called you their leader.\r\n5. The bounty hunter who has sworn to bring you to justice.\r\n6. Your former partner who made off with all the loot after a big score.\r\n7. The masked courier who occasionally gives you jobs.\r\n8. The crime boss to whom you have sworn loyalty (or to whom you owe an enormous debt).\r\n9. The master thief who once stole something precious from you. \r\n10. The corrupt noble who ruined your once-wealthy family.\r\n\r\n### Criminal Mementos\r\n\r\n1. A golden key to which you haven't discovered the lock.\r\n2. A brand that was burned into your shoulder as punishment for a crime.\r\n3. A scar for which you have sworn revenge.\r\n4. The distinctive mask that gives you your nickname (for instance, the Black Mask or the Red Fox).\r\n5. A gold coin which reappears in your possession a week after you've gotten rid of it.\r\n6. The stolen symbol of a sinister organization; not even your fence will take it off your hands.\r\n7. Documents that incriminate a dangerous noble or politician.\r\n8. The floor plan of a palace.\r\n9. The calling cards you leave after (or before) you strike.\r\n10. A manuscript written by your mentor: *Secret Exits of the World's Most Secure Prisons*.", - "type": "connection_and_memento", - "parent": "a5e-ag_criminal" + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_cultist" } }, { "model": "api_v2.backgroundbenefit", - "pk": 270, + "pk": "a5e-ag_cultist_skill-proficiencies", "fields": { - "name": "Adventures And Advancement", - "desc": "If you pull off several successful jobs or heists, you may be promoted (or reinstated) as a leader in your gang. You may gain the free service of up to 8 **bandits** at any time.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_criminal" + "name": "Skill Proficiencies", + "desc": "Religion, and either Arcana or Deception.", + "type": "skill_proficiency", + "parent": "a5e-ag_cultist" } }, { "model": "api_v2.backgroundbenefit", - "pk": 271, + "pk": "a5e-ag_entertainer_ability-score-increases", "fields": { "name": "Ability Score Increases", - "desc": "+1 to Wisdom and one other ability score.", + "desc": "+1 to Charisma and one other ability score.", "type": "ability_score", - "parent": "a5e-ag_farmer" + "parent": "a5e-ag_entertainer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 272, + "pk": "a5e-ag_entertainer_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Nature, and either Animal Handling or Survival.", - "type": "skill_proficiency", - "parent": "a5e-ag_farmer" + "name": "Adventures And Advancement", + "desc": "Some of your admirers will pay you to plead a cause or smear an enemy. If you succeed at several such quests, your fame will grow. You will be welcome at royal courts, which will support you at a rich lifestyle.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_entertainer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 273, + "pk": "a5e-ag_entertainer_connection-and-memento", "fields": { - "name": "Equipment", - "desc": "Common clothes, shovel, mule with saddlebags, 5 Supply (rations).", - "type": "equipment", - "parent": "a5e-ag_farmer" + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Entertainer Connections\r\n1. Your rival, an equally talented performer.\r\n2. The cruel ringleader of the sinister circus where you learned your trade.\r\n3. A noble who wants vengeance for the song you wrote about him.\r\n4. The actor who says that there’s always room in their troupe for you and your companions.\r\n5. The noble who owes you a favor for penning the love poems that won their spouse.\r\n6. Your former partner, a slumming noble with a good ear and bad judgment.\r\n7. The rival who became successful and famous by taking credit for your best work.\r\n8. The highly-placed courtier who is always trying to further your career.\r\n9. A jilted lover who wants revenge. \r\n10. The many tavernkeepers and tailors to whom you owe surprisingly large sums.\r\n\r\n### Entertainer Mementos\r\n\r\n1. Your unfinished masterpiece—if you can find inspiration to overcome your writer's block.\r\n2. Fine clothing suitable for a noble and some reasonably convincing costume jewelry.\r\n3. A love letter from a rich admirer.\r\n4. A broken instrument of masterwork quality—if repaired, what music you could make on it!\r\n5. A stack of slim poetry volumes you just can't sell.\r\n6. Jingling jester's motley.\r\n7. A disguise kit.\r\n8. Water-squirting wands, knotted scarves, trick handcuffs, and other tools of a bizarre new entertainment trend: a nonmagical magic show.\r\n9. A stage dagger.\r\n10. A letter of recommendation from your mentor to a noble or royal court.", + "type": "connection_and_memento", + "parent": "a5e-ag_entertainer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 274, + "pk": "a5e-ag_entertainer_equipment", "fields": { - "name": "Bit and Bridle", - "desc": "You know how to stow and transport food. You and one animal under your care can each carry additional Supply equal to your proficiency bonus.", - "type": "feature", - "parent": "a5e-ag_farmer" + "name": "Equipment", + "desc": "Lute or other musical instrument, costume.", + "type": "equipment", + "parent": "a5e-ag_entertainer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 275, + "pk": "a5e-ag_entertainer_pay-the-piper", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Farmer Connections\r\n\r\n1. The landowner who foreclosed on your family land.\r\n2. The thugs who burned your village.\r\n3. The parents who wait for your return.\r\n4. The strange witch to whom your family owes a debt.\r\n5. The retired adventurer who trained you.\r\n6. The druid who—according to the villagers—laid a drought curse on your land.\r\n7. The village bully who threatened to kill you if you ever returned.\r\n8. The evil wizard who will stop at nothing to take your family heirloom.\r\n9. Your elder sibling who left searching for adventure before you did.\r\n10. The dragon whose foul reek has spoiled your countryside.\r\n\r\n### Farmer Mementos\r\n\r\n1. A strange item you dug up in a field: a key, a lump of unmeltable metal, a glass dagger.\r\n2. The bag of beans your mother warned you not to plant.\r\n3. The shovel, pickaxe, pitchfork, or other tool you used for labor. For you it's a one-handed simple melee weapon that deals 1d6 piercing, slashing, or bludgeoning damage.\r\n4. A debt you must pay.\r\n5. A **mastiff**.\r\n6. Your trusty fishing pole.\r\n7. A corncob pipe.\r\n8. A dried flower from your family garden.\r\n9. Half of a locket given to you by a missing sweetheart.\r\n10. A family weapon said to have magic powers, though it exhibits none at the moment.", - "type": "connection_and_memento", - "parent": "a5e-ag_farmer" + "name": "Pay the Piper", + "desc": "In any settlement in which you haven't made yourself unpopular, your performances can earn enough money to support yourself and your companions: the bigger the settlement, the higher your standard of living, up to a moderate lifestyle in a city.", + "type": "feature", + "parent": "a5e-ag_entertainer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 276, + "pk": "a5e-ag_entertainer_skill-proficiencies", "fields": { - "name": "Adventures And Advancement", - "desc": "You left the farm for a reason but you still have an eye for land. If you acquire farming property, estates, or domains, you can earn twice as much as you otherwise would from their harvests, or be supported by your lands at a lifestyle one level higher than you otherwise would be.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_farmer" + "name": "Skill Proficiencies", + "desc": "Performance, and either Acrobatics, Culture, or Persuasion.", + "type": "skill_proficiency", + "parent": "a5e-ag_entertainer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 277, + "pk": "a5e-ag_exile_ability-score-increases", "fields": { "name": "Ability Score Increases", - "desc": "+1 to Constitution and one other ability score.", + "desc": "+1 to Wisdom and one other ability score.", "type": "ability_score", - "parent": "a5e-ag_outlander" + "parent": "a5e-ag_exile" } }, { "model": "api_v2.backgroundbenefit", - "pk": 278, + "pk": "a5e-ag_exile_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either Athletics or Intimidation.", - "type": "skill_proficiency", - "parent": "a5e-ag_outlander" + "name": "Adventures And Advancement", + "desc": "You may occasionally meet others from your native land. Some may be friends, and some dire enemies; few will be indifferent to you. After a few such encounters, you may become the leader of a faction of exiles. Your followers include up to three NPCs of Challenge Rating ½ or less, such as scouts.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_exile" } }, { "model": "api_v2.backgroundbenefit", - "pk": 279, + "pk": "a5e-ag_exile_connection-and-memento", "fields": { - "name": "Equipment", - "desc": "Traveler's clothes, waterskin, healer's kit, 7 days rations.", - "type": "equipment", - "parent": "a5e-ag_outlander" - } + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Exile Connections\r\n1. The companions who shared your exile.\r\n2. The kindly local who taught you Common.\r\n3. The shopkeeper or innkeeper who took you in and gave you work.\r\n4. The hunters from your native land who pursue you.\r\n5. The distant ruler who banished you until you redeem yourself.\r\n6. The community of fellow exiles who have banded together in a city neighborhood.\r\n7. The acting or carnival troupe which took you in.\r\n8. The suspicious authorities who were convinced you were a spy.\r\n9. Your first friend after your exile: a grizzled adventurer who traveled with you.\r\n10. A well-connected and unscrupulous celebrity who hails from your homeland.\r\n\r\n### Exile Mementos\r\n\r\n1. A musical instrument which was common in your homeland.\r\n2. A memorized collection of poems or sagas.\r\n3. A locket containing a picture of your betrothed from whom you are separated.\r\n4. Trade, state, or culinary secrets from your native land.\r\n5. A piece of jewelry given to you by someone you will never see again.\r\n6. An inaccurate, ancient map of the land you now live in.\r\n7. Your incomplete travel journals.\r\n8. A letter from a relative directing you to someone who might be able to help you.\r\n9. A precious cultural artifact you must protect.\r\n10. An arrow meant for the heart of your betrayer.", + "type": "connection_and_memento", + "parent": "a5e-ag_exile" + } }, { "model": "api_v2.backgroundbenefit", - "pk": 280, + "pk": "a5e-ag_exile_equipment", "fields": { - "name": "Trader", - "desc": "If you're in or near the wilderness and have a trading relationship with a tribe, settlement, or other nearby group, you can maintain a moderate lifestyle for yourself and your companions by trading the products of your hunting and gathering.", + "name": "Equipment", + "desc": "Traveler's clothes, 10 days rations.", + "type": "equipment", + "parent": "a5e-ag_exile" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "a5e-ag_exile_fellow-traveler", + "fields": { + "name": "Fellow Traveler", + "desc": "You gain an expertise die on Persuasion checks against others who are away from their land of birth.", "type": "feature", - "parent": "a5e-ag_outlander" + "parent": "a5e-ag_exile" } }, { "model": "api_v2.backgroundbenefit", - "pk": 281, + "pk": "a5e-ag_exile_skill-proficiencies", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Outlander Connections\r\n1. A tribal chief who owes a favor.\r\n2. The chief of a band of marauders who has a grudge against you.\r\n3. A hag to whom you owe a favor.\r\n4. An alchemist or wizard who frequently gives you requests for rare herbs or trophies.\r\n5. A unicorn you’ve glimpsed but never been able to approach.\r\n6. Another outlander: your former best friend who is now a bitter rival.\r\n7. A wise oracle who knows most of what happens in the wilderness and will reveal it for a price.\r\n8. A zany prospector who knows the wild lands almost as well as you.\r\n9. A circus or arena owner who will pay for live animals not yet in their menagerie.\r\n10. A highly civilized poet or painter who has paid you to guide them to wild and inspiring locales.\r\n\r\n### Outlander Mementos\r\n1. A trophy from the hunt of a mighty beast, such as an phase monster-horn helmet.\r\n2. A trophy from a battle against a fierce monster, such as a still-wriggling troll finger.\r\n3. A stone from a holy druidic shrine.\r\n4. Tools appropriate to your home terrain, such as pitons or snowshoes.\r\n5. Hand-crafted leather armor, hide armor, or clothing.\r\n6. The handaxe you made yourself.\r\n7. A gift from a dryad or faun.\r\n8. Trading goods worth 30 gold, such as furs or rare herbs.\r\n9. A tiny whistle given to you by a sprite.\r\n10. An incomplete map.", - "type": "connection_and_memento", - "parent": "a5e-ag_outlander" + "name": "Skill Proficiencies", + "desc": "Survival, and either History or Performance.", + "type": "skill_proficiency", + "parent": "a5e-ag_exile" } }, { "model": "api_v2.backgroundbenefit", - "pk": 282, + "pk": "a5e-ag_farmer_ability-score-increases", "fields": { - "name": "Adventures And Advancement", - "desc": "During your travels, wilderness dwellers may come to you for help battling monsters and other dangers. If you succeed in several such adventures, you may earn the freely given aid of up to 8 **warriors**.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_outlander" + "name": "Ability Score Increases", + "desc": "+1 to Wisdom and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_farmer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 286, + "pk": "a5e-ag_farmer_adventures-and-advancement", "fields": { - "name": "Supply and Demand", - "desc": "When you buy a trade good and sell it elsewhere to a community in need of that good, you gain a 10% bonus to its sale price for every 100 miles between the buy and sell location (maximum of 50%).", - "type": "feature", - "parent": "a5e-ag_trader" + "name": "Adventures And Advancement", + "desc": "You left the farm for a reason but you still have an eye for land. If you acquire farming property, estates, or domains, you can earn twice as much as you otherwise would from their harvests, or be supported by your lands at a lifestyle one level higher than you otherwise would be.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_farmer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 289, + "pk": "a5e-ag_farmer_bit-and-bridle", "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Intelligence and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_artisan" + "name": "Bit and Bridle", + "desc": "You know how to stow and transport food. You and one animal under your care can each carry additional Supply equal to your proficiency bonus.", + "type": "feature", + "parent": "a5e-ag_farmer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 290, + "pk": "a5e-ag_farmer_connection-and-memento", "fields": { - "name": "Skill Proficiencies", - "desc": "Persuasion, and either Insight or History.", - "type": "skill_proficiency", - "parent": "a5e-ag_artisan" + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Farmer Connections\r\n\r\n1. The landowner who foreclosed on your family land.\r\n2. The thugs who burned your village.\r\n3. The parents who wait for your return.\r\n4. The strange witch to whom your family owes a debt.\r\n5. The retired adventurer who trained you.\r\n6. The druid who—according to the villagers—laid a drought curse on your land.\r\n7. The village bully who threatened to kill you if you ever returned.\r\n8. The evil wizard who will stop at nothing to take your family heirloom.\r\n9. Your elder sibling who left searching for adventure before you did.\r\n10. The dragon whose foul reek has spoiled your countryside.\r\n\r\n### Farmer Mementos\r\n\r\n1. A strange item you dug up in a field: a key, a lump of unmeltable metal, a glass dagger.\r\n2. The bag of beans your mother warned you not to plant.\r\n3. The shovel, pickaxe, pitchfork, or other tool you used for labor. For you it's a one-handed simple melee weapon that deals 1d6 piercing, slashing, or bludgeoning damage.\r\n4. A debt you must pay.\r\n5. A **mastiff**.\r\n6. Your trusty fishing pole.\r\n7. A corncob pipe.\r\n8. A dried flower from your family garden.\r\n9. Half of a locket given to you by a missing sweetheart.\r\n10. A family weapon said to have magic powers, though it exhibits none at the moment.", + "type": "connection_and_memento", + "parent": "a5e-ag_farmer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 291, + "pk": "a5e-ag_farmer_equipment", "fields": { "name": "Equipment", - "desc": "One set of artisan's tools, traveler's clothes.", + "desc": "Common clothes, shovel, mule with saddlebags, 5 Supply (rations).", "type": "equipment", - "parent": "a5e-ag_artisan" + "parent": "a5e-ag_farmer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 292, + "pk": "a5e-ag_farmer_skill-proficiencies", "fields": { - "name": "Trade Mark", - "desc": "When in a city or town, you have access to a fully-stocked workshop with everything you need to ply your trade. Furthermore, you can expect to earn full price when you sell items you have crafted (though there is no guarantee of a buyer).", - "type": "feature", - "parent": "a5e-ag_artisan" + "name": "Skill Proficiencies", + "desc": "Nature, and either Animal Handling or Survival.", + "type": "skill_proficiency", + "parent": "a5e-ag_farmer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 294, + "pk": "a5e-ag_farmer_tool-proficiencies", "fields": { - "name": "Adventures And Advancement", - "desc": "If you participate in the creation of a magic item (a “master work”), you will gain the services of up to 8 commoner apprentices with the appropriate tool proficiency.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_artisan" + "name": "Tool Proficiencies", + "desc": "Land vehicles.", + "type": "tool_proficiency", + "parent": "a5e-ag_farmer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 295, + "pk": "a5e-ag_folk-hero_ability-score-increases", "fields": { "name": "Ability Score Increases", - "desc": "+1 to Charisma and one other ability score.", + "desc": "+1 to Constitution and one other ability score.", "type": "ability_score", - "parent": "a5e-ag_entertainer" + "parent": "a5e-ag_folk-hero" } }, { "model": "api_v2.backgroundbenefit", - "pk": 296, + "pk": "a5e-ag_folk-hero_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Performance, and either Acrobatics, Culture, or Persuasion.", - "type": "skill_proficiency", - "parent": "a5e-ag_entertainer" + "name": "Adventures And Advancement", + "desc": "Common folk come to you with all sorts of problems. If you fought an oppressive regime, they bring you tales of injustice. If you fought a monster, they seek you out with monster problems. If you solve many such predicaments, you become universally famous, gaining the benefits of your Local Fame feature in every settled land.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_folk-hero" } }, { "model": "api_v2.backgroundbenefit", - "pk": 297, + "pk": "a5e-ag_folk-hero_connection-and-memento", + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Folk Hero Connections\r\n\r\n1. The bard whose song made you legendary and who wants a sequel.\r\n2. Your friend, a traveling merchant whose caravan spreads your fame.\r\n3. A deadly enemy: the heir of the oppressive noble you killed.\r\n4. A deadly enemy: the mother of the monster you killed.\r\n5. A deadly enemy: the leader of the bandits you defeated.\r\n6. A deadly enemy: the tyrant you robbed.\r\n7. A kid who wants to follow your footsteps into danger.\r\n8. The jealous rival who wants to best your monster-slaying prowess, daring deeds, prize pie recipe, or whatever else made your famous.\r\n9. A secret admirer: the heir or heiress of the oppressive noble you defeated.\r\n10. The retired adventurer who trained you and is now in a bit of trouble.\r\n\r\n### Folk Hero Mementos\r\n\r\n1. The mask you used to conceal your identity while fighting oppression (you are only recognized as a folk hero while wearing the mask).\r\n2. A necklace bearing a horn, tooth, or claw from the monster you defeated.\r\n3. A ring given to you by the dead relative whose death you avenged.\r\n4. The weapon you wrestled from the leader of the raid on your village.\r\n5. The trophy, wrestling belt, silver pie plate, or other prize marking you as the county champion.\r\n6. The famous scar you earned in your struggle against your foe.\r\n7. The signature weapon which provides you with your nickname.\r\n8. The injury or physical difference by which your admirers and foes recognize you.\r\n9. The signal whistle or instrument which you used to summon allies and spook enemies.\r\n10. Copies of the ballads and poems written in your honor.", + "type": "connection_and_memento", + "parent": "a5e-ag_folk-hero" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "a5e-ag_folk-hero_equipment", "fields": { "name": "Equipment", - "desc": "Lute or other musical instrument, costume.", + "desc": "Any artisan's tools except alchemist's supplies, common clothes.", "type": "equipment", - "parent": "a5e-ag_entertainer" + "parent": "a5e-ag_folk-hero" } }, { "model": "api_v2.backgroundbenefit", - "pk": 298, + "pk": "a5e-ag_folk-hero_local-fame", "fields": { - "name": "Pay the Piper", - "desc": "In any settlement in which you haven't made yourself unpopular, your performances can earn enough money to support yourself and your companions: the bigger the settlement, the higher your standard of living, up to a moderate lifestyle in a city.", + "name": "Local Fame", + "desc": "Unless you conceal your identity, you're universally recognized and admired near the site of your exploits. You and your companions are treated to a moderate lifestyle in any settlement within 100 miles of your Prestige Center.", "type": "feature", - "parent": "a5e-ag_entertainer" + "parent": "a5e-ag_folk-hero" } }, { "model": "api_v2.backgroundbenefit", - "pk": 299, + "pk": "a5e-ag_folk-hero_skill-proficiencies", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Entertainer Connections\r\n1. Your rival, an equally talented performer.\r\n2. The cruel ringleader of the sinister circus where you learned your trade.\r\n3. A noble who wants vengeance for the song you wrote about him.\r\n4. The actor who says that there’s always room in their troupe for you and your companions.\r\n5. The noble who owes you a favor for penning the love poems that won their spouse.\r\n6. Your former partner, a slumming noble with a good ear and bad judgment.\r\n7. The rival who became successful and famous by taking credit for your best work.\r\n8. The highly-placed courtier who is always trying to further your career.\r\n9. A jilted lover who wants revenge. \r\n10. The many tavernkeepers and tailors to whom you owe surprisingly large sums.\r\n\r\n### Entertainer Mementos\r\n\r\n1. Your unfinished masterpiece—if you can find inspiration to overcome your writer's block.\r\n2. Fine clothing suitable for a noble and some reasonably convincing costume jewelry.\r\n3. A love letter from a rich admirer.\r\n4. A broken instrument of masterwork quality—if repaired, what music you could make on it!\r\n5. A stack of slim poetry volumes you just can't sell.\r\n6. Jingling jester's motley.\r\n7. A disguise kit.\r\n8. Water-squirting wands, knotted scarves, trick handcuffs, and other tools of a bizarre new entertainment trend: a nonmagical magic show.\r\n9. A stage dagger.\r\n10. A letter of recommendation from your mentor to a noble or royal court.", - "type": "connection_and_memento", - "parent": "a5e-ag_entertainer" + "name": "Skill Proficiencies", + "desc": "Survival, and either Animal Handling or Nature.", + "type": "skill_proficiency", + "parent": "a5e-ag_folk-hero" } }, { "model": "api_v2.backgroundbenefit", - "pk": 300, + "pk": "a5e-ag_folk-hero_tool-proficiencies", "fields": { - "name": "Adventures And Advancement", - "desc": "Some of your admirers will pay you to plead a cause or smear an enemy. If you succeed at several such quests, your fame will grow. You will be welcome at royal courts, which will support you at a rich lifestyle.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_entertainer" + "name": "Tool Proficiencies", + "desc": "One type of artisan’s tools, one vehicle.", + "type": "tool_proficiency", + "parent": "a5e-ag_folk-hero" } }, { "model": "api_v2.backgroundbenefit", - "pk": 301, + "pk": "a5e-ag_gambler_ability-score-increases", "fields": { "name": "Ability Score Increases", - "desc": "+1 to Constitution and one other ability score.", + "desc": "+1 to Charisma and one other ability score.", "type": "ability_score", - "parent": "a5e-ag_guildmember" + "parent": "a5e-ag_gambler" } }, { "model": "api_v2.backgroundbenefit", - "pk": 302, + "pk": "a5e-ag_gambler_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Two of your choice.", - "type": "skill_proficiency", - "parent": "a5e-ag_guildmember" + "name": "Adventures And Advancement", + "desc": "Once you've had more than your fair share of lucky throws, you attract the attention of richer opponents. You add +1 to all your lucky throws. Additionally, you and your friends may be invited to exclusive games with more at stake than money.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_gambler" } }, { "model": "api_v2.backgroundbenefit", - "pk": 303, + "pk": "a5e-ag_gambler_connection-and-memento", + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Gambler Connections\r\n1. The mentor you have now surpassed.\r\n2. The duelist who will never forgive you for fleecing them.\r\n3. The legendary gambler you aspire to beat.\r\n4. The friendly rival who always keeps you on your toes.\r\n5. The noble who publicly accused you of cheating.\r\n6. An ink-stained academic who wants you to test a risky theory about how to beat the house.\r\n7. The gang leader who would rather kill you than pay up.\r\n8. The kid who strives to emulate you. \r\n9. The cardsharp rival who cheats to win.\r\n10. The rival who won something from you that you want back.\r\n\r\n### Gambler Mementos\r\n\r\n1. Gambling debts owed you by someone who's gone missing.\r\n2. Your lucky coin that you've always won back after gambling it away.\r\n3. The deeds to a monster-infested copper mine, a castle on another plane of existence, and several other valueless properties.\r\n4. A pawn shop ticket for a valuable item—if you can gather enough money to redeem it.\r\n5. The hard-to-sell heirloom that someone really wants back.\r\n6. Loaded dice or marked cards. They grant advantage on gambling checks when used, but can be discovered when carefully examined by someone with the appropriate tool proficiency (dice or cards).\r\n7. An invitation to an annual high-stakes game to which you can't even afford the ante.\r\n8. A two-faced coin.\r\n9. A torn half of a card—a long-lost relative is said to hold the other half.\r\n10. An ugly trinket that its former owner claimed had hidden magical powers.", + "type": "connection_and_memento", + "parent": "a5e-ag_gambler" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "a5e-ag_gambler_equipment", "fields": { "name": "Equipment", - "desc": "One set of artisan's tools or one instrument, traveler's clothes, guild badge.", + "desc": "Fine clothes, dice set, playing card set.", "type": "equipment", - "parent": "a5e-ag_guildmember" + "parent": "a5e-ag_gambler" } }, { "model": "api_v2.backgroundbenefit", - "pk": 304, + "pk": "a5e-ag_gambler_lady-luck", "fields": { - "name": "Guild Business", - "desc": "While in a city or town, you can maintain a moderate lifestyle by plying your trade. Furthermore, the guild occasionally informs you of jobs that need doing. Completing such a job might require performing a downtime activity, or it might require a full adventure. The guild provides a modest reward if you're successful.", + "name": "Lady Luck", + "desc": "Each week you may attempt a “lucky throw” to support yourself by gambling. Roll a d6 to determine the lifestyle you can afford with your week's winnings (1–2: poor, 3–5: moderate, 6: rich).", "type": "feature", - "parent": "a5e-ag_guildmember" + "parent": "a5e-ag_gambler" } }, { "model": "api_v2.backgroundbenefit", - "pk": 305, + "pk": "a5e-ag_gambler_skill-proficiencies", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guildmember Connections\r\n\r\n1. Your guild master who occasionally has secret missions for groups which can keep their mouths shut.\r\n2. Members of a rival guild who might or might not stoop to violence.\r\n3. The master who, recognizing your talent, risked all to teach you dangerous guild secrets.\r\n4. The agent of a rival guild who is trying to steal secrets.\r\n5. The jealous teacher who took credit for your work and got you expelled from the guild.\r\n6. The guild quartermaster who stocks goods of dubious legality.\r\n7. The friendly guild officer who always saves you the most interesting assignments.\r\n8. The rivals who always compete for the same guild jobs.\r\n9. The noble who owes you big.\r\n10. Your guild master’s ambitious second-in-command who is recruiting allies for a coup.\r\n\r\n### Guildmember Mementos\r\n\r\n1. *Artisans Guild:* An incomplete masterpiece which your mentor never finished.\r\n2. *Entertainers Guild:* An incomplete masterpiece which your mentor never finished.\r\n3. *Explorers Guild:* A roll of incomplete maps each with a reward for completion.\r\n4. *Laborers Guild:* A badge entitling you to a free round of drinks at most inns and taverns.\r\n5. *Adventurers Guild:* A request from a circus to obtain live exotic animals.\r\n6. *Bounty Hunters Guild:* A set of manacles and a bounty on a fugitive who has already eluded you once.\r\n7. *Mages Guild:* The name of a wizard who has created a rare version of a spell that the guild covets.\r\n8. *Monster Hunters Guild:* A bounty, with no time limit, on a monster far beyond your capability.\r\n9. *Archaeologists Guild:* A map marking the entrance of a distant dungeon.\r\n10. *Thieves Guild:* Blueprints of a bank, casino, mint, or other rich locale.", - "type": "connection_and_memento", - "parent": "a5e-ag_guildmember" + "name": "Skill Proficiencies", + "desc": "Deception, and either Insight or Sleight of Hand.", + "type": "skill_proficiency", + "parent": "a5e-ag_gambler" } }, { "model": "api_v2.backgroundbenefit", - "pk": 306, + "pk": "a5e-ag_guard_ability-score-increases", "fields": { - "name": "Adventures And Advancement", - "desc": "Once you have completed several quests or endeavors advancing guild business, you may be promoted to guild officer. You gain access to more lucrative contracts. In addition, the guild supports you at a moderate lifestyle without you having to work.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_guildmember" + "name": "Ability Score Increases", + "desc": "+1 to Strength and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_guard" } }, { "model": "api_v2.backgroundbenefit", - "pk": 307, + "pk": "a5e-ag_guard_adventures-and-advancement", "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Intelligence and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_sage" + "name": "Adventures and Advancement", + "desc": "When you visit the city or countryside you once patrolled you’re sure to get embroiled in the same politics that drove you out. Should you stick around righting wrongs, you might accidentally find yourself in a position of responsibility.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_guard" } }, { "model": "api_v2.backgroundbenefit", - "pk": 308, + "pk": "a5e-ag_guard_connection-and-memento", "fields": { - "name": "Skill Proficiencies", - "desc": "History, and either Arcana, Culture, Engineering, or Religion.", - "type": "skill_proficiency", - "parent": "a5e-ag_sage" + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guard Connections\r\n1. The corrupt guard captain who framed you.\r\n2. The by-the-book guard captain who found you in violation of a regulation.\r\n3. The mighty guard captain who taught you all you know. \r\n4. The informant who tipped you off about criminal activity.\r\n5. The noble or merchant you protected.\r\n6. The comrade or superior officer you admired.\r\n7. The villain who kidnapped the person you were charged to protect.\r\n8. Your betrayer, the one person you didn’t think to mistrust.\r\n9. The noble or merchant who had everyone in their pocket.\r\n10. The diviner wizard who could usually provide you with the missing piece of a puzzle.\r\n\r\n### Guard Mementos\r\n1. Your badge of office, a symbol of an ideal few could live up to.\r\n2. Your badge of office, a symbol of a corrupt system you could no longer stomach.\r\n3. The arrow-damaged prayer book or playing card deck that saved your life.\r\n4. The whiskey flask that stood you in good stead on many cold patrols. \r\n5. Notes about a series of disappearances you would have liked to put a stop to. \r\n6. A broken sword, torn insignia, or other symbol of your disgrace and banishment.\r\n7. A tattoo or insignia marking you as part of an organization of which you are the last member.\r\n8. The fellow guard’s last words which you will never forget. \r\n9. A letter you were asked to deliver. \r\n10. A bloodstained duty roster.", + "type": "connection_and_memento", + "parent": "a5e-ag_guard" } }, { "model": "api_v2.backgroundbenefit", - "pk": 309, + "pk": "a5e-ag_guard_equipment", "fields": { "name": "Equipment", - "desc": "Bottle of ink, pen, 50 sheets of parchment, common clothes.", + "desc": "Common clothes, halberd, uniform.", "type": "equipment", - "parent": "a5e-ag_sage" + "parent": "a5e-ag_guard" } }, { "model": "api_v2.backgroundbenefit", - "pk": 310, + "pk": "a5e-ag_guard_languages", "fields": { - "name": "Library Privileges", - "desc": "As a fellow or friend of several universities you have visiting access to the great libraries, most of which are off-limits to the general public. With enough time spent in a library, you can uncover most of the answers you seek (any question answerable with a DC 20 Arcana, Culture, Engineering, History, Nature, or Religion check).", - "type": "feature", - "parent": "a5e-ag_sage" + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_guard" } }, { "model": "api_v2.backgroundbenefit", - "pk": 311, + "pk": "a5e-ag_guard_natural-authority", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sage Connections\r\n\r\n1. Your rival who always seems to be one step ahead of you in the research race.\r\n2. The college dean who banished you for conduct unbefitting a research fellow.\r\n3. A former student of yours who has become a dangerous wizard.\r\n4. The professor who took credit for your research.\r\n5. The rival sage whose cruel nickname for you has made you a laughingstock.\r\n6. The alchemist who will pay for bizarre monster trophies and other ingredients—no questions asked.\r\n7. The peer with a competing cosmological theory that causes endless friendly bickering.\r\n8. The noble who recognized your intelligence at a young age and sponsored your entrance into academia.\r\n9. A talented apprentice who ran away after mastering magical power but not the theoretical foundation to control it.\r\n10. The invading general who burned the library that was once your home.\r\n\r\n### Sage Mementos\r\n\r\n1. A letter from a colleague asking for research help.\r\n2. Your incomplete manuscript.\r\n3. An ancient scroll in a language that no magic can decipher.\r\n4. A copy of your highly unorthodox theoretical work that got you in so much trouble.\r\n5. A list of the forbidden books that may answer your equally forbidden question.\r\n6. A formula for a legendary magic item for which you have no ingredients.\r\n7. An ancient manuscript of a famous literary work believed to have been lost; only you believe that it is genuine.\r\n8. Your mentor's incomplete bestiary, encyclopedia, or other work that you vowed to complete.\r\n9. Your prize possession: a magic quill pen that takes dictation.\r\n10. The name of a book you need for your research that seems to be missing from every library you've visited.", - "type": "connection_and_memento", - "parent": "a5e-ag_sage" + "name": "Natural Authority", + "desc": "Commoners and civilians sometimes assume you are part of a local constabulary force and defer to you.", + "type": "feature", + "parent": "a5e-ag_guard" } }, { "model": "api_v2.backgroundbenefit", - "pk": 312, + "pk": "a5e-ag_guard_skill-proficiencies", "fields": { - "name": "Adventures And Advancement", - "desc": "When you visit libraries and universities you tend to be asked for help in your role as a comparatively rough-and-tumble adventurer. After fetching a few bits of esoteric knowledge and settling a few academic disputes, you may be granted access to the restricted areas of the library (which contain darker secrets and deeper mysteries, such as those answerable with a DC 25 Arcana, Culture, Engineering, History, Nature, or Religion check).", - "type": "adventures_and_advancement", - "parent": "a5e-ag_sage" + "name": "Skill Proficiencies", + "desc": "Intimidation, and either Athletics or Investigation.", + "type": "skill_proficiency", + "parent": "a5e-ag_guard" } }, { "model": "api_v2.backgroundbenefit", - "pk": 313, + "pk": "a5e-ag_guildmember_ability-score-increases", "fields": { "name": "Ability Score Increases", "desc": "+1 to Constitution and one other ability score.", "type": "ability_score", - "parent": "a5e-ag_folk-hero" + "parent": "a5e-ag_guildmember" } }, { "model": "api_v2.backgroundbenefit", - "pk": 314, + "pk": "a5e-ag_guildmember_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either Animal Handling or Nature.", - "type": "skill_proficiency", - "parent": "a5e-ag_folk-hero" + "name": "Adventures And Advancement", + "desc": "Once you have completed several quests or endeavors advancing guild business, you may be promoted to guild officer. You gain access to more lucrative contracts. In addition, the guild supports you at a moderate lifestyle without you having to work.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_guildmember" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "a5e-ag_guildmember_connection-and-memento", + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guildmember Connections\r\n\r\n1. Your guild master who occasionally has secret missions for groups which can keep their mouths shut.\r\n2. Members of a rival guild who might or might not stoop to violence.\r\n3. The master who, recognizing your talent, risked all to teach you dangerous guild secrets.\r\n4. The agent of a rival guild who is trying to steal secrets.\r\n5. The jealous teacher who took credit for your work and got you expelled from the guild.\r\n6. The guild quartermaster who stocks goods of dubious legality.\r\n7. The friendly guild officer who always saves you the most interesting assignments.\r\n8. The rivals who always compete for the same guild jobs.\r\n9. The noble who owes you big.\r\n10. Your guild master’s ambitious second-in-command who is recruiting allies for a coup.\r\n\r\n### Guildmember Mementos\r\n\r\n1. *Artisans Guild:* An incomplete masterpiece which your mentor never finished.\r\n2. *Entertainers Guild:* An incomplete masterpiece which your mentor never finished.\r\n3. *Explorers Guild:* A roll of incomplete maps each with a reward for completion.\r\n4. *Laborers Guild:* A badge entitling you to a free round of drinks at most inns and taverns.\r\n5. *Adventurers Guild:* A request from a circus to obtain live exotic animals.\r\n6. *Bounty Hunters Guild:* A set of manacles and a bounty on a fugitive who has already eluded you once.\r\n7. *Mages Guild:* The name of a wizard who has created a rare version of a spell that the guild covets.\r\n8. *Monster Hunters Guild:* A bounty, with no time limit, on a monster far beyond your capability.\r\n9. *Archaeologists Guild:* A map marking the entrance of a distant dungeon.\r\n10. *Thieves Guild:* Blueprints of a bank, casino, mint, or other rich locale.", + "type": "connection_and_memento", + "parent": "a5e-ag_guildmember" } }, { "model": "api_v2.backgroundbenefit", - "pk": 315, + "pk": "a5e-ag_guildmember_equipment", "fields": { "name": "Equipment", - "desc": "Any artisan's tools except alchemist's supplies, common clothes.", + "desc": "One set of artisan's tools or one instrument, traveler's clothes, guild badge.", "type": "equipment", - "parent": "a5e-ag_folk-hero" + "parent": "a5e-ag_guildmember" } }, { "model": "api_v2.backgroundbenefit", - "pk": 316, + "pk": "a5e-ag_guildmember_guild-business", "fields": { - "name": "Local Fame", - "desc": "Unless you conceal your identity, you're universally recognized and admired near the site of your exploits. You and your companions are treated to a moderate lifestyle in any settlement within 100 miles of your Prestige Center.", + "name": "Guild Business", + "desc": "While in a city or town, you can maintain a moderate lifestyle by plying your trade. Furthermore, the guild occasionally informs you of jobs that need doing. Completing such a job might require performing a downtime activity, or it might require a full adventure. The guild provides a modest reward if you're successful.", "type": "feature", - "parent": "a5e-ag_folk-hero" + "parent": "a5e-ag_guildmember" } }, { "model": "api_v2.backgroundbenefit", - "pk": 317, + "pk": "a5e-ag_guildmember_skill-proficiencies", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Folk Hero Connections\r\n\r\n1. The bard whose song made you legendary and who wants a sequel.\r\n2. Your friend, a traveling merchant whose caravan spreads your fame.\r\n3. A deadly enemy: the heir of the oppressive noble you killed.\r\n4. A deadly enemy: the mother of the monster you killed.\r\n5. A deadly enemy: the leader of the bandits you defeated.\r\n6. A deadly enemy: the tyrant you robbed.\r\n7. A kid who wants to follow your footsteps into danger.\r\n8. The jealous rival who wants to best your monster-slaying prowess, daring deeds, prize pie recipe, or whatever else made your famous.\r\n9. A secret admirer: the heir or heiress of the oppressive noble you defeated.\r\n10. The retired adventurer who trained you and is now in a bit of trouble.\r\n\r\n### Folk Hero Mementos\r\n\r\n1. The mask you used to conceal your identity while fighting oppression (you are only recognized as a folk hero while wearing the mask).\r\n2. A necklace bearing a horn, tooth, or claw from the monster you defeated.\r\n3. A ring given to you by the dead relative whose death you avenged.\r\n4. The weapon you wrestled from the leader of the raid on your village.\r\n5. The trophy, wrestling belt, silver pie plate, or other prize marking you as the county champion.\r\n6. The famous scar you earned in your struggle against your foe.\r\n7. The signature weapon which provides you with your nickname.\r\n8. The injury or physical difference by which your admirers and foes recognize you.\r\n9. The signal whistle or instrument which you used to summon allies and spook enemies.\r\n10. Copies of the ballads and poems written in your honor.", - "type": "connection_and_memento", - "parent": "a5e-ag_folk-hero" + "name": "Skill Proficiencies", + "desc": "Two of your choice.", + "type": "skill_proficiency", + "parent": "a5e-ag_guildmember" } }, { "model": "api_v2.backgroundbenefit", - "pk": 318, + "pk": "a5e-ag_guildmember_tool-proficiencies", "fields": { - "name": "Adventures And Advancement", - "desc": "Common folk come to you with all sorts of problems. If you fought an oppressive regime, they bring you tales of injustice. If you fought a monster, they seek you out with monster problems. If you solve many such predicaments, you become universally famous, gaining the benefits of your Local Fame feature in every settled land.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_folk-hero" + "name": "Tool Proficiencies", + "desc": "Either one type of artisan’s tools, musical instrument, or vehicle.", + "type": "tool_proficiency", + "parent": "a5e-ag_guildmember" } }, { "model": "api_v2.backgroundbenefit", - "pk": 325, + "pk": "a5e-ag_hermit_ability-score-increases", "fields": { "name": "Ability Score Increases", - "desc": "+1 to Charisma and one other ability score.", + "desc": "+1 to Wisdom and one other ability score.", "type": "ability_score", - "parent": "a5e-ag_gambler" + "parent": "a5e-ag_hermit" } }, { "model": "api_v2.backgroundbenefit", - "pk": 326, + "pk": "a5e-ag_hermit_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Deception, and either Insight or Sleight of Hand.", - "type": "skill_proficiency", - "parent": "a5e-ag_gambler" + "name": "Adventures And Advancement", + "desc": "Your inner voice may occasionally prompt you to accept certain adventure opportunities or to avoid certain actions. You are free to obey or disobey this voice. Eventually however it may lead you to a special revelation, adventure, or treasure.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_hermit" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "a5e-ag_hermit_connection-and-memento", + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Hermit Connections\r\n1. The high priest who banished you to the wilderness until you repent your heresy.\r\n2. The inquisitor who hunts you even through the most solitary wildlands.\r\n3. The supernatural patron whose temptations and gifts you seek to reject.\r\n4. The inner voice you only hear in solitude.\r\n5. The mentor who trained you in silent contemplation—until they mysteriously turned their back on their own teachings.\r\n6. The villain who destroyed the shreds of your original, worldly life. \r\n7. The noble relatives who seek to return you to the life you rejected.\r\n8. The religious superior whose blasphemies scandalized you into fleeing your religious order.\r\n9. The angel who delivered you a prophecy.\r\n10. The mysterious person you glimpsed several times from a distance—unless it was a hallucination.\r\n\r\n### Hermit Mementos\r\n1. The (possibly unhinged) manifesto, encyclopedia, or theoretical work that you spent so much time on.\r\n2. The faded set of fine clothes you preserved for so many years.\r\n3. The signet ring bearing the family crest that you were ashamed of for so long.\r\n4. The book of forbidden secrets that led you to your isolated refuge.\r\n5. The beetle, mouse, or other small creature which was your only companion for so long.\r\n6. The seemingly nonmagical item that your inner voice says is important.\r\n7. The magic-defying clay tablets you spent years translating.\r\n8. The holy relic you were duty bound to protect.\r\n9. The meteor metal you found in a crater the day you first heard your inner voice.\r\n10. Your ridiculous-looking sun hat.", + "type": "connection_and_memento", + "parent": "a5e-ag_hermit" } }, { "model": "api_v2.backgroundbenefit", - "pk": 327, + "pk": "a5e-ag_hermit_equipment", "fields": { "name": "Equipment", - "desc": "Fine clothes, dice set, playing card set.", + "desc": "Healer's satchel, herbalism kit, common clothes, 7 days rations, and a prayer book, prayer wheel, or prayer beads.", "type": "equipment", - "parent": "a5e-ag_gambler" + "parent": "a5e-ag_hermit" } }, { "model": "api_v2.backgroundbenefit", - "pk": 328, + "pk": "a5e-ag_hermit_inner-voice", "fields": { - "name": "Lady Luck", - "desc": "Each week you may attempt a “lucky throw” to support yourself by gambling. Roll a d6 to determine the lifestyle you can afford with your week's winnings (1–2: poor, 3–5: moderate, 6: rich).", + "name": "Inner Voice", + "desc": "You occasionally hear a voice—perhaps your conscience, perhaps a higher power—which you have come to trust. It told you to go into seclusion, and then it advised you when to rejoin the world. You think it is leading you to your destiny (consult with your Narrator about this feature.)", "type": "feature", - "parent": "a5e-ag_gambler" + "parent": "a5e-ag_hermit" } }, { "model": "api_v2.backgroundbenefit", - "pk": 329, + "pk": "a5e-ag_hermit_skill-proficiencies", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Gambler Connections\r\n1. The mentor you have now surpassed.\r\n2. The duelist who will never forgive you for fleecing them.\r\n3. The legendary gambler you aspire to beat.\r\n4. The friendly rival who always keeps you on your toes.\r\n5. The noble who publicly accused you of cheating.\r\n6. An ink-stained academic who wants you to test a risky theory about how to beat the house.\r\n7. The gang leader who would rather kill you than pay up.\r\n8. The kid who strives to emulate you. \r\n9. The cardsharp rival who cheats to win.\r\n10. The rival who won something from you that you want back.\r\n\r\n### Gambler Mementos\r\n\r\n1. Gambling debts owed you by someone who's gone missing.\r\n2. Your lucky coin that you've always won back after gambling it away.\r\n3. The deeds to a monster-infested copper mine, a castle on another plane of existence, and several other valueless properties.\r\n4. A pawn shop ticket for a valuable item—if you can gather enough money to redeem it.\r\n5. The hard-to-sell heirloom that someone really wants back.\r\n6. Loaded dice or marked cards. They grant advantage on gambling checks when used, but can be discovered when carefully examined by someone with the appropriate tool proficiency (dice or cards).\r\n7. An invitation to an annual high-stakes game to which you can't even afford the ante.\r\n8. A two-faced coin.\r\n9. A torn half of a card—a long-lost relative is said to hold the other half.\r\n10. An ugly trinket that its former owner claimed had hidden magical powers.", - "type": "connection_and_memento", - "parent": "a5e-ag_gambler" + "name": "Skill Proficiencies", + "desc": "Religion, and either Medicine or Survival.", + "type": "skill_proficiency", + "parent": "a5e-ag_hermit" } }, { "model": "api_v2.backgroundbenefit", - "pk": 330, + "pk": "a5e-ag_hermit_tool-proficiencies", "fields": { - "name": "Adventures And Advancement", - "desc": "Once you've had more than your fair share of lucky throws, you attract the attention of richer opponents. You add +1 to all your lucky throws. Additionally, you and your friends may be invited to exclusive games with more at stake than money.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_gambler" + "name": "Tool Proficiencies", + "desc": "Herbalism kit.", + "type": "tool_proficiency", + "parent": "a5e-ag_hermit" } }, { "model": "api_v2.backgroundbenefit", - "pk": 331, + "pk": "a5e-ag_marauder_ability-score-increases", "fields": { "name": "Ability Score Increases", "desc": "+1 to Dexterity and one other ability score.", @@ -801,17 +881,27 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 332, + "pk": "a5e-ag_marauder_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either Intimidation or Stealth.", - "type": "skill_proficiency", + "name": "Adventures And Advancement", + "desc": "Allies and informants occasionally give you tips about the whereabouts of poorly-guarded loot. After a few such scores, you may gain the free service of up to 8", + "type": "adventures_and_advancement", "parent": "a5e-ag_marauder" } }, { "model": "api_v2.backgroundbenefit", - "pk": 333, + "pk": "a5e-ag_marauder_connection-and-memento", + "fields": { + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Marauder Connections\r\n1. Your nemesis: a naval captain or captain of the guard who thwarted you on several occasions.\r\n2. Your mentor: a charismatic pirate captain.\r\n3. The stylish highway robber who taught you the trade.\r\n4. The local noble who pursues you obsessively.\r\n5. The three outlaws who hold the other three pieces of your treasure map.\r\n6. The marauder chief who betrayed you and the rest of the gang in exchange for freedom.\r\n7. The child you became an outlaw to protect.\r\n8. The cleric who converted you to a life of law and faith.\r\n9. The scholarly old bandit whose inventions gave you an edge against the pursuing authorities.\r\n10. Your best friend—who is serving a life sentence for your shared crime.\r\n\r\n### Marauder Mementos\r\n1. The eerie mask by which your victims know you.\r\n2. The one item that you wish you hadn't stolen.\r\n3. A signet ring marking you as heir to a seized estate.\r\n4. A locket containing a picture of the one who betrayed you.\r\n5. A broken compass.\r\n6. A love token from the young heir to a fortune.\r\n7. Half of a torn officer's insignia.\r\n8. The hunter's horn which members of your band use to call allies.\r\n9. A wanted poster bearing your face.\r\n10. Your unfinished thesis from your previous life as an honest scholar.", + "type": "connection_and_memento", + "parent": "a5e-ag_marauder" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "a5e-ag_marauder_equipment", "fields": { "name": "Equipment", "desc": "Traveler's clothes, signal whistle, tent (one person).", @@ -821,7 +911,7 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 334, + "pk": "a5e-ag_marauder_secret-ways", "fields": { "name": "Secret Ways", "desc": "When you navigate while traveling, pursuers have disadvantage on checks made to track your group. Additionally, you can travel stealthily at a normal pace.", @@ -831,602 +921,512 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 335, + "pk": "a5e-ag_marauder_skill-proficiencies", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Marauder Connections\r\n1. Your nemesis: a naval captain or captain of the guard who thwarted you on several occasions.\r\n2. Your mentor: a charismatic pirate captain.\r\n3. The stylish highway robber who taught you the trade.\r\n4. The local noble who pursues you obsessively.\r\n5. The three outlaws who hold the other three pieces of your treasure map.\r\n6. The marauder chief who betrayed you and the rest of the gang in exchange for freedom.\r\n7. The child you became an outlaw to protect.\r\n8. The cleric who converted you to a life of law and faith.\r\n9. The scholarly old bandit whose inventions gave you an edge against the pursuing authorities.\r\n10. Your best friend—who is serving a life sentence for your shared crime.\r\n\r\n### Marauder Mementos\r\n1. The eerie mask by which your victims know you.\r\n2. The one item that you wish you hadn't stolen.\r\n3. A signet ring marking you as heir to a seized estate.\r\n4. A locket containing a picture of the one who betrayed you.\r\n5. A broken compass.\r\n6. A love token from the young heir to a fortune.\r\n7. Half of a torn officer's insignia.\r\n8. The hunter's horn which members of your band use to call allies.\r\n9. A wanted poster bearing your face.\r\n10. Your unfinished thesis from your previous life as an honest scholar.", - "type": "connection_and_memento", + "name": "Skill Proficiencies", + "desc": "Survival, and either Intimidation or Stealth.", + "type": "skill_proficiency", "parent": "a5e-ag_marauder" } }, { "model": "api_v2.backgroundbenefit", - "pk": 336, + "pk": "a5e-ag_marauder_tool-proficiencies", "fields": { - "name": "Adventures And Advancement", - "desc": "Allies and informants occasionally give you tips about the whereabouts of poorly-guarded loot. After a few such scores, you may gain the free service of up to 8", - "type": "adventures_and_advancement", + "name": "Tool Proficiencies", + "desc": "One type of artisan’s tools or vehicle.", + "type": "tool_proficiency", "parent": "a5e-ag_marauder" } }, { "model": "api_v2.backgroundbenefit", - "pk": 337, + "pk": "a5e-ag_noble_ability-score-increases", "fields": { "name": "Ability Score Increases", - "desc": "+1 to Wisdom and one other ability score.", + "desc": "+1 to Strength and one other ability score.", "type": "ability_score", - "parent": "a5e-ag_hermit" + "parent": "a5e-ag_noble" } }, { "model": "api_v2.backgroundbenefit", - "pk": 338, + "pk": "a5e-ag_noble_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Religion, and either Medicine or Survival.", - "type": "skill_proficiency", - "parent": "a5e-ag_hermit" + "name": "Adventures and Advancement", + "desc": "Your family may ask you for one or two little favors: convince this relative to marry a family-approved spouse, slay that family foe in a duel, serve under a liege lord in a battle. If you advance your family’s fortunes, you may earn a knighthood along with the free service of a retinue of servants and up to 8 **guards**.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_noble" } }, { "model": "api_v2.backgroundbenefit", - "pk": 339, + "pk": "a5e-ag_noble_connection-and-memento", "fields": { - "name": "Equipment", - "desc": "Healer's satchel, herbalism kit, common clothes, 7 days rations, and a prayer book, prayer wheel, or prayer beads.", - "type": "equipment", - "parent": "a5e-ag_hermit" + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Noble Connections\r\n1. Your perfect elder sibling to whom you never seem to measure up.\r\n2. The treacherous noble who slaughtered or scattered your family and is now living in your ancestral home.\r\n3. Your family servant, a retired adventurer who taught you more about battle than any fancy dueling master.\r\n4. The foppish friend you carouse with.\r\n5. The common-born sweetheart that your family forbid you from seeing again.\r\n6. The fugitive head of your family whose rebellion caused your family’s lands to be seized and titles to be redistributed.\r\n7. Your foe, the heir of a rival house, with whom you have dueled twice.\r\n8. The crime boss to whom your family is in massive debt.\r\n9. The scion of an allied family to whom you were betrothed from birth.\r\n10. The eccentric knight for whom you trained as a squire or page.\r\n\r\n### Noble Mementos\r\n1. A shield or tabard bearing your coat of arms.\r\n2. A keepsake or love letter from a high-born sweetheart.\r\n3. An heirloom weapon—though it’s not magical, it has a name and was used for mighty deeds.\r\n4. A letter of recommendation to a royal court.\r\n5. Perfumed handkerchiefs suitable for blocking the smell of commoners.\r\n6. An extremely fashionable and excessively large hat.\r\n7. A visible scar earned in battle or in a duel.\r\n8. A set of common clothes and a secret commoner identity.\r\n9. IOUs of dubious value that were earned in games of chance against other nobles.\r\n10. A letter from a friend begging for help.", + "type": "connection_and_memento", + "parent": "a5e-ag_noble" } }, { "model": "api_v2.backgroundbenefit", - "pk": 340, + "pk": "a5e-ag_noble_equipment", "fields": { - "name": "Inner Voice", - "desc": "You occasionally hear a voice—perhaps your conscience, perhaps a higher power—which you have come to trust. It told you to go into seclusion, and then it advised you when to rejoin the world. You think it is leading you to your destiny (consult with your Narrator about this feature.)", - "type": "feature", - "parent": "a5e-ag_hermit" + "name": "Equipment", + "desc": "Fine clothes, signet ring, writ detailing your family tree.", + "type": "equipment", + "parent": "a5e-ag_noble" } }, { "model": "api_v2.backgroundbenefit", - "pk": 342, + "pk": "a5e-ag_noble_high-society", "fields": { - "name": "Adventures And Advancement", - "desc": "Your inner voice may occasionally prompt you to accept certain adventure opportunities or to avoid certain actions. You are free to obey or disobey this voice. Eventually however it may lead you to a special revelation, adventure, or treasure.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_hermit" + "name": "High Society", + "desc": "You know of—or personally know—most of the noble families for hundreds of miles. In most settled areas you (and possibly your companions, if well-behaved) can find a noble host who will feed you, shelter you, and offer you a rich lifestyle.", + "type": "feature", + "parent": "a5e-ag_noble" } }, { "model": "api_v2.backgroundbenefit", - "pk": 343, + "pk": "a5e-ag_noble_languages", "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Constitution and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_sailor" + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_noble" } }, { "model": "api_v2.backgroundbenefit", - "pk": 344, + "pk": "a5e-ag_noble_skill-proficiencies", "fields": { "name": "Skill Proficiencies", - "desc": "Athletics, and either Acrobatics or Perception.", + "desc": "Culture, History, and either Animal Handling or Persuasion.", "type": "skill_proficiency", - "parent": "a5e-ag_sailor" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 345, - "fields": { - "name": "Equipment", - "desc": "Common clothes, navigator's tools, 50 feet of rope.", - "type": "equipment", - "parent": "a5e-ag_sailor" + "parent": "a5e-ag_noble" } }, { "model": "api_v2.backgroundbenefit", - "pk": 346, + "pk": "a5e-ag_noble_tool-proficiencies", "fields": { - "name": "Sea Salt", - "desc": "Your nautical jargon and rolling gait mark you unmistakably as a mariner. You can easily enter into shop talk with any sailors that are not hostile to you, learning nautical gossip and ships' comings and goings. You also recognize most large ships by sight and by name, and can make a History orCulturecheck to recall their most recent captain and allegiance.", - "type": "feature", - "parent": "a5e-ag_sailor" + "name": "Tool Proficiencies", + "desc": "One gaming set.", + "type": "tool_proficiency", + "parent": "a5e-ag_noble" } }, { "model": "api_v2.backgroundbenefit", - "pk": 347, + "pk": "a5e-ag_outlander_ability-score-increases", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle's tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it.\r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction's signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol.\r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle’s tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it. \r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction’s signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol. \r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.", - "type": "connection_and_memento", - "parent": "a5e-ag_sailor" + "name": "Ability Score Increases", + "desc": "+1 to Constitution and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_outlander" } }, { "model": "api_v2.backgroundbenefit", - "pk": 348, + "pk": "a5e-ag_outlander_adventures-and-advancement", "fields": { "name": "Adventures And Advancement", - "desc": "You and your companions will be able to take passage for free on nearly any commercial ship in exchange for occasional ship duties when all hands are called. In addition, after you have a few naval exploits under your belt your fame makes sailors eager to sail under you. You can hire a ship's crew at half the usual price.", + "desc": "During your travels, wilderness dwellers may come to you for help battling monsters and other dangers. If you succeed in several such adventures, you may earn the freely given aid of up to 8 **warriors**.", "type": "adventures_and_advancement", - "parent": "a5e-ag_sailor" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 349, - "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Wisdom and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_exile" + "parent": "a5e-ag_outlander" } }, { "model": "api_v2.backgroundbenefit", - "pk": 350, + "pk": "a5e-ag_outlander_connection-and-memento", "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either History or Performance.", - "type": "skill_proficiency", - "parent": "a5e-ag_exile" + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Outlander Connections\r\n1. A tribal chief who owes a favor.\r\n2. The chief of a band of marauders who has a grudge against you.\r\n3. A hag to whom you owe a favor.\r\n4. An alchemist or wizard who frequently gives you requests for rare herbs or trophies.\r\n5. A unicorn you’ve glimpsed but never been able to approach.\r\n6. Another outlander: your former best friend who is now a bitter rival.\r\n7. A wise oracle who knows most of what happens in the wilderness and will reveal it for a price.\r\n8. A zany prospector who knows the wild lands almost as well as you.\r\n9. A circus or arena owner who will pay for live animals not yet in their menagerie.\r\n10. A highly civilized poet or painter who has paid you to guide them to wild and inspiring locales.\r\n\r\n### Outlander Mementos\r\n1. A trophy from the hunt of a mighty beast, such as an phase monster-horn helmet.\r\n2. A trophy from a battle against a fierce monster, such as a still-wriggling troll finger.\r\n3. A stone from a holy druidic shrine.\r\n4. Tools appropriate to your home terrain, such as pitons or snowshoes.\r\n5. Hand-crafted leather armor, hide armor, or clothing.\r\n6. The handaxe you made yourself.\r\n7. A gift from a dryad or faun.\r\n8. Trading goods worth 30 gold, such as furs or rare herbs.\r\n9. A tiny whistle given to you by a sprite.\r\n10. An incomplete map.", + "type": "connection_and_memento", + "parent": "a5e-ag_outlander" } }, { "model": "api_v2.backgroundbenefit", - "pk": 351, + "pk": "a5e-ag_outlander_equipment", "fields": { "name": "Equipment", - "desc": "Traveler's clothes, 10 days rations.", + "desc": "Traveler's clothes, waterskin, healer's kit, 7 days rations.", "type": "equipment", - "parent": "a5e-ag_exile" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 352, - "fields": { - "name": "Fellow Traveler", - "desc": "You gain an expertise die on Persuasion checks against others who are away from their land of birth.", - "type": "feature", - "parent": "a5e-ag_exile" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 353, - "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Exile Connections\r\n1. The companions who shared your exile.\r\n2. The kindly local who taught you Common.\r\n3. The shopkeeper or innkeeper who took you in and gave you work.\r\n4. The hunters from your native land who pursue you.\r\n5. The distant ruler who banished you until you redeem yourself.\r\n6. The community of fellow exiles who have banded together in a city neighborhood.\r\n7. The acting or carnival troupe which took you in.\r\n8. The suspicious authorities who were convinced you were a spy.\r\n9. Your first friend after your exile: a grizzled adventurer who traveled with you.\r\n10. A well-connected and unscrupulous celebrity who hails from your homeland.\r\n\r\n### Exile Mementos\r\n\r\n1. A musical instrument which was common in your homeland.\r\n2. A memorized collection of poems or sagas.\r\n3. A locket containing a picture of your betrothed from whom you are separated.\r\n4. Trade, state, or culinary secrets from your native land.\r\n5. A piece of jewelry given to you by someone you will never see again.\r\n6. An inaccurate, ancient map of the land you now live in.\r\n7. Your incomplete travel journals.\r\n8. A letter from a relative directing you to someone who might be able to help you.\r\n9. A precious cultural artifact you must protect.\r\n10. An arrow meant for the heart of your betrayer.", - "type": "connection_and_memento", - "parent": "a5e-ag_exile" + "parent": "a5e-ag_outlander" } }, { "model": "api_v2.backgroundbenefit", - "pk": 354, + "pk": "a5e-ag_outlander_skill-proficiencies", "fields": { - "name": "Adventures And Advancement", - "desc": "You may occasionally meet others from your native land. Some may be friends, and some dire enemies; few will be indifferent to you. After a few such encounters, you may become the leader of a faction of exiles. Your followers include up to three NPCs of Challenge Rating ½ or less, such as scouts.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_exile" + "name": "Skill Proficiencies", + "desc": "Survival, and either Athletics or Intimidation.", + "type": "skill_proficiency", + "parent": "a5e-ag_outlander" } }, { "model": "api_v2.backgroundbenefit", - "pk": 358, + "pk": "a5e-ag_outlander_trader", "fields": { - "name": "Guttersnipe", - "desc": "When you're in a town or city, you can provide a poor lifestyle for yourself and your companions. Also, you know how to get anywhere in town without being spotted by gangs, gossips, or guard patrols.", + "name": "Trader", + "desc": "If you're in or near the wilderness and have a trading relationship with a tribe, settlement, or other nearby group, you can maintain a moderate lifestyle for yourself and your companions by trading the products of your hunting and gathering.", "type": "feature", - "parent": "a5e-ag_urchin" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 361, - "fields": { - "name": "Connection and Memento", - "desc": "### Urchin Connections\r\n\r\n1. The disreputable thief who taught you thieving skills.\r\n2. The saintly orphanage matron who’s so proud of how you’ve grown.\r\n3. The miserly and cruel orphanage administrator who rounds up urchins and runaways.\r\n4. The drunken thief who shared with you what little they could steal. \r\n5. The fellow urchin who has some power to make “bad stuff” happen to their enemies.\r\n6. The thieves’ guild contact who will pay well for small folk to wriggle through a window or chimney to unlock a front door.\r\n7. The philanthropist (or charlatan?) who took you in, dressed you properly, and tried to teach you upper-class manners.\r\n8. The spymaster or detective who sent you on investigation missions.\r\n9. The noble whose horse trampled you or a friend.\r\n10. The rich family you ran away from.\r\n\r\n### Urchin Mementos\r\n\r\n1. A locket containing pictures of your parents.\r\n2. A set of (stolen?) fine clothes.\r\n3. A small trained animal, such as a mouse, parrot, or monkey.\r\n4. A map of the sewers.\r\n5. The key or signet ring that was around your neck when you were discovered as a foundling.\r\n6. A battered one-eyed doll.\r\n7. A portfolio of papers given to you by a fleeing, wounded courier.\r\n8. A gold tooth (not yours, and not in your mouth).\r\n9. The flowers or trinkets that you sell.\r\n10. A dangerous secret overheard while at play.", - "type": "connection_and_memento", - "parent": "a5e-ag_urchin" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 362, - "fields": { - "name": "Tool Proficiencies", - "desc": "One vehicle.", - "type": "tool_proficiency", - "parent": "a5e-ag_trader" + "parent": "a5e-ag_outlander" } }, { "model": "api_v2.backgroundbenefit", - "pk": 363, + "pk": "a5e-ag_sage_ability-score-increases", "fields": { - "name": "Tool Proficiencies", - "desc": "Disguise kit, thieves’ tools.", - "type": "tool_proficiency", - "parent": "a5e-ag_urchin" + "name": "Ability Score Increases", + "desc": "+1 to Intelligence and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_sage" } }, { "model": "api_v2.backgroundbenefit", - "pk": 364, + "pk": "a5e-ag_sage_adventures-and-advancement", "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Strength and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_soldier" + "name": "Adventures And Advancement", + "desc": "When you visit libraries and universities you tend to be asked for help in your role as a comparatively rough-and-tumble adventurer. After fetching a few bits of esoteric knowledge and settling a few academic disputes, you may be granted access to the restricted areas of the library (which contain darker secrets and deeper mysteries, such as those answerable with a DC 25 Arcana, Culture, Engineering, History, Nature, or Religion check).", + "type": "adventures_and_advancement", + "parent": "a5e-ag_sage" } }, { "model": "api_v2.backgroundbenefit", - "pk": 365, + "pk": "a5e-ag_sage_connection-and-memento", "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, and either Animal Handling or Intimidation.", - "type": "skill_proficiency", - "parent": "a5e-ag_soldier" + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sage Connections\r\n\r\n1. Your rival who always seems to be one step ahead of you in the research race.\r\n2. The college dean who banished you for conduct unbefitting a research fellow.\r\n3. A former student of yours who has become a dangerous wizard.\r\n4. The professor who took credit for your research.\r\n5. The rival sage whose cruel nickname for you has made you a laughingstock.\r\n6. The alchemist who will pay for bizarre monster trophies and other ingredients—no questions asked.\r\n7. The peer with a competing cosmological theory that causes endless friendly bickering.\r\n8. The noble who recognized your intelligence at a young age and sponsored your entrance into academia.\r\n9. A talented apprentice who ran away after mastering magical power but not the theoretical foundation to control it.\r\n10. The invading general who burned the library that was once your home.\r\n\r\n### Sage Mementos\r\n\r\n1. A letter from a colleague asking for research help.\r\n2. Your incomplete manuscript.\r\n3. An ancient scroll in a language that no magic can decipher.\r\n4. A copy of your highly unorthodox theoretical work that got you in so much trouble.\r\n5. A list of the forbidden books that may answer your equally forbidden question.\r\n6. A formula for a legendary magic item for which you have no ingredients.\r\n7. An ancient manuscript of a famous literary work believed to have been lost; only you believe that it is genuine.\r\n8. Your mentor's incomplete bestiary, encyclopedia, or other work that you vowed to complete.\r\n9. Your prize possession: a magic quill pen that takes dictation.\r\n10. The name of a book you need for your research that seems to be missing from every library you've visited.", + "type": "connection_and_memento", + "parent": "a5e-ag_sage" } }, { "model": "api_v2.backgroundbenefit", - "pk": 366, + "pk": "a5e-ag_sage_equipment", "fields": { - "name": "Tool Proficiencies", - "desc": "One type of gaming set.", - "type": "tool_proficiency", - "parent": "a5e-ag_soldier" + "name": "Equipment", + "desc": "Bottle of ink, pen, 50 sheets of parchment, common clothes.", + "type": "equipment", + "parent": "a5e-ag_sage" } }, { "model": "api_v2.backgroundbenefit", - "pk": 367, + "pk": "a5e-ag_sage_library-privileges", "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "a5e-ag_soldier" + "name": "Library Privileges", + "desc": "As a fellow or friend of several universities you have visiting access to the great libraries, most of which are off-limits to the general public. With enough time spent in a library, you can uncover most of the answers you seek (any question answerable with a DC 20 Arcana, Culture, Engineering, History, Nature, or Religion check).", + "type": "feature", + "parent": "a5e-ag_sage" } }, { "model": "api_v2.backgroundbenefit", - "pk": 368, + "pk": "a5e-ag_sage_skill-proficiencies", "fields": { - "name": "Suggested Equipment", - "desc": "Uniform, common clothes, 7 days rations.", - "type": "equipment", - "parent": "a5e-ag_soldier" + "name": "Skill Proficiencies", + "desc": "History, and either Arcana, Culture, Engineering, or Religion.", + "type": "skill_proficiency", + "parent": "a5e-ag_sage" } }, { "model": "api_v2.backgroundbenefit", - "pk": 369, + "pk": "a5e-ag_sailor_ability-score-increases", "fields": { - "name": "Military Bearing", - "desc": "Soldiers recognize their own. Off duty soldiers are usually willing to trade tales and gossip with you. On duty soldiers, while not obeying your orders, are likely to answer your questions and treat you respectfully on the off chance that you’re an unfamiliar officer who can get them in trouble.", - "type": "feature", - "parent": "a5e-ag_soldier" + "name": "Ability Score Increases", + "desc": "+1 to Constitution and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_sailor" } }, { "model": "api_v2.backgroundbenefit", - "pk": 370, + "pk": "a5e-ag_sailor_adventures-and-advancement", "fields": { - "name": "Adventures and Advancement", - "desc": "You will occasionally run into old comrades, some of whom may need favors. If you perform a few celebrated martial deeds your old military outfit (or a new one) is likely to offer you an officer’s rank. You gain the free service of up to 8 guards. Your new commanders will occasionally give you objectives: you will be expected to act independently in order to achieve these objectives.", + "name": "Adventures And Advancement", + "desc": "You and your companions will be able to take passage for free on nearly any commercial ship in exchange for occasional ship duties when all hands are called. In addition, after you have a few naval exploits under your belt your fame makes sailors eager to sail under you. You can hire a ship's crew at half the usual price.", "type": "adventures_and_advancement", - "parent": "a5e-ag_soldier" + "parent": "a5e-ag_sailor" } }, { "model": "api_v2.backgroundbenefit", - "pk": 371, + "pk": "a5e-ag_sailor_connection-and-memento", "fields": { "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Soldier Connections\r\n1. Your old commanding officer who still wants you to rejoin.\r\n2. The commander who callously sent your unit into a slaughter.\r\n3. Your shady war buddy who can get their hands on anything with no questions asked.\r\n4. Your best friend who went missing on the battlefield. \r\n5. The comrade who saved your life at the risk of their own.\r\n6. The ghost who haunts you. \r\n7. The superior officer you punched (for abusing civilians? For insulting your honor? For preventing you from looting?)\r\n8. The scary experimental war construct you accompanied on a dangerous mission.\r\n9. The golden-armored knight with ridiculously good teeth who was always giving inspiring speeches.\r\n10. The enemy officer who captured you.\r\n\r\n### Soldier Mementos\r\n1. A broken horn, tooth, or other trophy salvaged from a monster’s corpse.\r\n2. A trophy won in a battle (a tattered banner, a ceremonial sword, or similar).\r\n3. A gaming set.\r\n4. A letter from your sweetheart.\r\n5. An old wound that twinges in bad weather.\r\n6. A letter you’re supposed to deliver to a dead comrade’s family.\r\n7. A horrifying memory you can’t escape.\r\n8. A horned or plumed helmet.\r\n9. The sword you broke over your knee rather than fight for those bastards another day.\r\n10. A medal for valor.", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle's tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it.\r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction's signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol.\r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.\r\n\r\n### Sailor Mementos\r\n1. A dagger with a handle carved from a dragon turtle’s tooth.\r\n2. A scroll tube filled with nautical charts.\r\n3. A harpoon (treat as a javelin with its butt end fastened to a rope).\r\n4. A scar with a famous tale behind it. \r\n5. A treasure map.\r\n6. A codebook which lets you decipher a certain faction’s signal flags.\r\n7. A necklace bearing a scale, shell, tooth, or other nautical trinket.\r\n8. Several bottles of alcohol. \r\n9. A tale of an eerie encounter with a strange monster, a ghost ship, or other mystery.\r\n10. A half-finished manuscript outlining an untested theory about how to rerig a ship to maximize speed.", "type": "connection_and_memento", - "parent": "a5e-ag_soldier" + "parent": "a5e-ag_sailor" } }, { "model": "api_v2.backgroundbenefit", - "pk": 372, + "pk": "a5e-ag_sailor_equipment", "fields": { - "name": "Tool Proficiencies", - "desc": "Navigator’s tools, water vehicles.", - "type": "tool_proficiency", + "name": "Equipment", + "desc": "Common clothes, navigator's tools, 50 feet of rope.", + "type": "equipment", "parent": "a5e-ag_sailor" } }, { "model": "api_v2.backgroundbenefit", - "pk": 373, + "pk": "a5e-ag_sailor_sea-salt", "fields": { - "name": "Ability Score Increases", - "desc": "+1 to Strength and one other ability score.", - "type": "ability_score", - "parent": "a5e-ag_noble" + "name": "Sea Salt", + "desc": "Your nautical jargon and rolling gait mark you unmistakably as a mariner. You can easily enter into shop talk with any sailors that are not hostile to you, learning nautical gossip and ships' comings and goings. You also recognize most large ships by sight and by name, and can make a History orCulturecheck to recall their most recent captain and allegiance.", + "type": "feature", + "parent": "a5e-ag_sailor" } }, { "model": "api_v2.backgroundbenefit", - "pk": 374, + "pk": "a5e-ag_sailor_skill-proficiencies", "fields": { "name": "Skill Proficiencies", - "desc": "Culture, History, and either Animal Handling or Persuasion.", + "desc": "Athletics, and either Acrobatics or Perception.", "type": "skill_proficiency", - "parent": "a5e-ag_noble" + "parent": "a5e-ag_sailor" } }, { "model": "api_v2.backgroundbenefit", - "pk": 375, + "pk": "a5e-ag_sailor_tool-proficiencies", "fields": { "name": "Tool Proficiencies", - "desc": "One gaming set.", + "desc": "Navigator’s tools, water vehicles.", "type": "tool_proficiency", - "parent": "a5e-ag_noble" + "parent": "a5e-ag_sailor" } }, { "model": "api_v2.backgroundbenefit", - "pk": 376, + "pk": "a5e-ag_soldier_ability-score-increases", "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "a5e-ag_noble" + "name": "Ability Score Increases", + "desc": "+1 to Strength and one other ability score.", + "type": "ability_score", + "parent": "a5e-ag_soldier" } }, { "model": "api_v2.backgroundbenefit", - "pk": 377, + "pk": "a5e-ag_soldier_adventures-and-advancement", "fields": { - "name": "Equipment", - "desc": "Fine clothes, signet ring, writ detailing your family tree.", - "type": "equipment", - "parent": "a5e-ag_noble" + "name": "Adventures and Advancement", + "desc": "You will occasionally run into old comrades, some of whom may need favors. If you perform a few celebrated martial deeds your old military outfit (or a new one) is likely to offer you an officer’s rank. You gain the free service of up to 8 guards. Your new commanders will occasionally give you objectives: you will be expected to act independently in order to achieve these objectives.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_soldier" } }, { "model": "api_v2.backgroundbenefit", - "pk": 378, + "pk": "a5e-ag_soldier_connection-and-memento", "fields": { - "name": "High Society", - "desc": "You know of—or personally know—most of the noble families for hundreds of miles. In most settled areas you (and possibly your companions, if well-behaved) can find a noble host who will feed you, shelter you, and offer you a rich lifestyle.", - "type": "feature", - "parent": "a5e-ag_noble" + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Soldier Connections\r\n1. Your old commanding officer who still wants you to rejoin.\r\n2. The commander who callously sent your unit into a slaughter.\r\n3. Your shady war buddy who can get their hands on anything with no questions asked.\r\n4. Your best friend who went missing on the battlefield. \r\n5. The comrade who saved your life at the risk of their own.\r\n6. The ghost who haunts you. \r\n7. The superior officer you punched (for abusing civilians? For insulting your honor? For preventing you from looting?)\r\n8. The scary experimental war construct you accompanied on a dangerous mission.\r\n9. The golden-armored knight with ridiculously good teeth who was always giving inspiring speeches.\r\n10. The enemy officer who captured you.\r\n\r\n### Soldier Mementos\r\n1. A broken horn, tooth, or other trophy salvaged from a monster’s corpse.\r\n2. A trophy won in a battle (a tattered banner, a ceremonial sword, or similar).\r\n3. A gaming set.\r\n4. A letter from your sweetheart.\r\n5. An old wound that twinges in bad weather.\r\n6. A letter you’re supposed to deliver to a dead comrade’s family.\r\n7. A horrifying memory you can’t escape.\r\n8. A horned or plumed helmet.\r\n9. The sword you broke over your knee rather than fight for those bastards another day.\r\n10. A medal for valor.", + "type": "connection_and_memento", + "parent": "a5e-ag_soldier" } }, { "model": "api_v2.backgroundbenefit", - "pk": 379, + "pk": "a5e-ag_soldier_languages", "fields": { - "name": "Adventures and Advancement", - "desc": "Your family may ask you for one or two little favors: convince this relative to marry a family-approved spouse, slay that family foe in a duel, serve under a liege lord in a battle. If you advance your family’s fortunes, you may earn a knighthood along with the free service of a retinue of servants and up to 8 **guards**.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_noble" + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "a5e-ag_soldier" } }, { "model": "api_v2.backgroundbenefit", - "pk": 380, + "pk": "a5e-ag_soldier_military-bearing", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Noble Connections\r\n1. Your perfect elder sibling to whom you never seem to measure up.\r\n2. The treacherous noble who slaughtered or scattered your family and is now living in your ancestral home.\r\n3. Your family servant, a retired adventurer who taught you more about battle than any fancy dueling master.\r\n4. The foppish friend you carouse with.\r\n5. The common-born sweetheart that your family forbid you from seeing again.\r\n6. The fugitive head of your family whose rebellion caused your family’s lands to be seized and titles to be redistributed.\r\n7. Your foe, the heir of a rival house, with whom you have dueled twice.\r\n8. The crime boss to whom your family is in massive debt.\r\n9. The scion of an allied family to whom you were betrothed from birth.\r\n10. The eccentric knight for whom you trained as a squire or page.\r\n\r\n### Noble Mementos\r\n1. A shield or tabard bearing your coat of arms.\r\n2. A keepsake or love letter from a high-born sweetheart.\r\n3. An heirloom weapon—though it’s not magical, it has a name and was used for mighty deeds.\r\n4. A letter of recommendation to a royal court.\r\n5. Perfumed handkerchiefs suitable for blocking the smell of commoners.\r\n6. An extremely fashionable and excessively large hat.\r\n7. A visible scar earned in battle or in a duel.\r\n8. A set of common clothes and a secret commoner identity.\r\n9. IOUs of dubious value that were earned in games of chance against other nobles.\r\n10. A letter from a friend begging for help.", - "type": "connection_and_memento", - "parent": "a5e-ag_noble" + "name": "Military Bearing", + "desc": "Soldiers recognize their own. Off duty soldiers are usually willing to trade tales and gossip with you. On duty soldiers, while not obeying your orders, are likely to answer your questions and treat you respectfully on the off chance that you’re an unfamiliar officer who can get them in trouble.", + "type": "feature", + "parent": "a5e-ag_soldier" } }, { "model": "api_v2.backgroundbenefit", - "pk": 381, + "pk": "a5e-ag_soldier_skill-proficiencies", "fields": { - "name": "Tool Proficiencies", - "desc": "One type of artisan’s tools or vehicle.", - "type": "tool_proficiency", - "parent": "a5e-ag_marauder" + "name": "Skill Proficiencies", + "desc": "Athletics, and either Animal Handling or Intimidation.", + "type": "skill_proficiency", + "parent": "a5e-ag_soldier" } }, { "model": "api_v2.backgroundbenefit", - "pk": 382, + "pk": "a5e-ag_soldier_suggested-equipment", "fields": { - "name": "Tool Proficiencies", - "desc": "Herbalism kit.", - "type": "tool_proficiency", - "parent": "a5e-ag_hermit" + "name": "Suggested Equipment", + "desc": "Uniform, common clothes, 7 days rations.", + "type": "equipment", + "parent": "a5e-ag_soldier" } }, { "model": "api_v2.backgroundbenefit", - "pk": 383, + "pk": "a5e-ag_soldier_tool-proficiencies", "fields": { "name": "Tool Proficiencies", - "desc": "Either one type of artisan’s tools, musical instrument, or vehicle.", + "desc": "One type of gaming set.", "type": "tool_proficiency", - "parent": "a5e-ag_guildmember" + "parent": "a5e-ag_soldier" } }, { "model": "api_v2.backgroundbenefit", - "pk": 384, + "pk": "a5e-ag_trader_ability-score-increases", "fields": { "name": "Ability Score Increases", - "desc": "+1 to Strength and one other ability score.", + "desc": "+1 to Charisma and one other ability score.", "type": "ability_score", - "parent": "a5e-ag_guard" + "parent": "a5e-ag_trader" } }, { "model": "api_v2.backgroundbenefit", - "pk": 385, + "pk": "a5e-ag_trader_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Intimidation, and either Athletics or Investigation.", - "type": "skill_proficiency", - "parent": "a5e-ag_guard" + "name": "Adventures And Advancement", + "desc": "Because of your commercial contacts you may be offered money to lead or escort trade caravans. You'll receive a fee from each trader that reaches their destination safely.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_trader" } }, { "model": "api_v2.backgroundbenefit", - "pk": 386, + "pk": "a5e-ag_trader_connection-and-memento", "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "a5e-ag_guard" + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Trader Connections\r\n1. The parent or relative who wants you to carry on the family business.\r\n2. The sibling who inherited the other half of the family business.\r\n3. The trading company to which you are indentured until you pay off a debt.\r\n4. The powerful merchant who will never forgive the business coup you pulled off.\r\n5. The noble whose horse trampled your poor family’s vegetable stall, injuring or killing a relative you\r\ndearly loved.\r\n6. The parent or elder sibling who squandered your family fortune.\r\n7. The business partner who cheated you.\r\n8. The customs agent who has sworn to catch you red-handed with illicit goods.\r\n9. The crime boss to whom you wouldn’t pay protection money.\r\n10. The smuggler who will pay well for certain commodities.\r\n\r\n### Trader Mementos\r\n1. The first gold piece you earned.\r\n2. Thousands of shares in a failed venture.\r\n3. A letter of introduction to a rich merchant in a distant city.\r\n4. A sample of an improved version of a common tool.\r\n5. Scars from a wound sustained when you tried to collect a debt from a vicious noble.\r\n6. A love letter from the heir of a rival trading family.\r\n7. A signet ring bearing your family crest, which is famous in the mercantile world.\r\n8. A contract binding you to a particular trading company for the next few years.\r\n9. A letter from a friend imploring you to invest in an opportunity that can't miss.\r\n10. A trusted family member's travel journals that mix useful geographical knowledge with tall tales.", + "type": "connection_and_memento", + "parent": "a5e-ag_trader" } }, { "model": "api_v2.backgroundbenefit", - "pk": 387, + "pk": "a5e-ag_trader_equipment", "fields": { "name": "Equipment", - "desc": "Common clothes, halberd, uniform.", + "desc": "Traveler's clothes, abacus, merchant's scale.", "type": "equipment", - "parent": "a5e-ag_guard" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 388, - "fields": { - "name": "Natural Authority", - "desc": "Commoners and civilians sometimes assume you are part of a local constabulary force and defer to you.", - "type": "feature", - "parent": "a5e-ag_guard" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 389, - "fields": { - "name": "Adventures and Advancement", - "desc": "When you visit the city or countryside you once patrolled you’re sure to get embroiled in the same politics that drove you out. Should you stick around righting wrongs, you might accidentally find yourself in a position of responsibility.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_guard" + "parent": "a5e-ag_trader" } }, { "model": "api_v2.backgroundbenefit", - "pk": 390, + "pk": "a5e-ag_trader_skill-proficiencies", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Guard Connections\r\n1. The corrupt guard captain who framed you.\r\n2. The by-the-book guard captain who found you in violation of a regulation.\r\n3. The mighty guard captain who taught you all you know. \r\n4. The informant who tipped you off about criminal activity.\r\n5. The noble or merchant you protected.\r\n6. The comrade or superior officer you admired.\r\n7. The villain who kidnapped the person you were charged to protect.\r\n8. Your betrayer, the one person you didn’t think to mistrust.\r\n9. The noble or merchant who had everyone in their pocket.\r\n10. The diviner wizard who could usually provide you with the missing piece of a puzzle.\r\n\r\n### Guard Mementos\r\n1. Your badge of office, a symbol of an ideal few could live up to.\r\n2. Your badge of office, a symbol of a corrupt system you could no longer stomach.\r\n3. The arrow-damaged prayer book or playing card deck that saved your life.\r\n4. The whiskey flask that stood you in good stead on many cold patrols. \r\n5. Notes about a series of disappearances you would have liked to put a stop to. \r\n6. A broken sword, torn insignia, or other symbol of your disgrace and banishment.\r\n7. A tattoo or insignia marking you as part of an organization of which you are the last member.\r\n8. The fellow guard’s last words which you will never forget. \r\n9. A letter you were asked to deliver. \r\n10. A bloodstained duty roster.", - "type": "connection_and_memento", - "parent": "a5e-ag_guard" + "name": "Skill Proficiencies", + "desc": "Persuasion, and either Culture, Deception, or Insight.", + "type": "skill_proficiency", + "parent": "a5e-ag_trader" } }, { "model": "api_v2.backgroundbenefit", - "pk": 391, + "pk": "a5e-ag_trader_supply-and-demand", "fields": { - "name": "Tool Proficiencies", - "desc": "One type of artisan’s tools, one vehicle.", - "type": "tool_proficiency", - "parent": "a5e-ag_folk-hero" + "name": "Supply and Demand", + "desc": "When you buy a trade good and sell it elsewhere to a community in need of that good, you gain a 10% bonus to its sale price for every 100 miles between the buy and sell location (maximum of 50%).", + "type": "feature", + "parent": "a5e-ag_trader" } }, { "model": "api_v2.backgroundbenefit", - "pk": 392, + "pk": "a5e-ag_trader_tool-proficiencies", "fields": { "name": "Tool Proficiencies", - "desc": "Land vehicles.", + "desc": "One vehicle.", "type": "tool_proficiency", - "parent": "a5e-ag_farmer" + "parent": "a5e-ag_trader" } }, { "model": "api_v2.backgroundbenefit", - "pk": 393, + "pk": "a5e-ag_urchin_ability-score-increases", "fields": { "name": "Ability Score Increases", - "desc": "+1 to Intelligence and one other ability score.", + "desc": "+1 to Dexterity and one other ability score.", "type": "ability_score", - "parent": "a5e-ag_cultist" + "parent": "a5e-ag_urchin" } }, { "model": "api_v2.backgroundbenefit", - "pk": 394, + "pk": "a5e-ag_urchin_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Religion, and either Arcana or Deception.", - "type": "skill_proficiency", - "parent": "a5e-ag_cultist" + "name": "Adventures And Advancement", + "desc": "Street kids are among a settlement's most vulnerable people, especially in cities with lycanthropes, vampires, and other supernatural threats. After you help out a few urchins in trouble, word gets out and you'll be able to consult the street network to gather information. If you roll lower than a 15 on an Investigation check to gather information in a city or town, your roll is treated as a 15.", + "type": "adventures_and_advancement", + "parent": "a5e-ag_urchin" } }, { "model": "api_v2.backgroundbenefit", - "pk": 395, + "pk": "a5e-ag_urchin_connection-and-memento", "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "a5e-ag_cultist" + "name": "Connection and Memento", + "desc": "### Urchin Connections\r\n\r\n1. The disreputable thief who taught you thieving skills.\r\n2. The saintly orphanage matron who’s so proud of how you’ve grown.\r\n3. The miserly and cruel orphanage administrator who rounds up urchins and runaways.\r\n4. The drunken thief who shared with you what little they could steal. \r\n5. The fellow urchin who has some power to make “bad stuff” happen to their enemies.\r\n6. The thieves’ guild contact who will pay well for small folk to wriggle through a window or chimney to unlock a front door.\r\n7. The philanthropist (or charlatan?) who took you in, dressed you properly, and tried to teach you upper-class manners.\r\n8. The spymaster or detective who sent you on investigation missions.\r\n9. The noble whose horse trampled you or a friend.\r\n10. The rich family you ran away from.\r\n\r\n### Urchin Mementos\r\n\r\n1. A locket containing pictures of your parents.\r\n2. A set of (stolen?) fine clothes.\r\n3. A small trained animal, such as a mouse, parrot, or monkey.\r\n4. A map of the sewers.\r\n5. The key or signet ring that was around your neck when you were discovered as a foundling.\r\n6. A battered one-eyed doll.\r\n7. A portfolio of papers given to you by a fleeing, wounded courier.\r\n8. A gold tooth (not yours, and not in your mouth).\r\n9. The flowers or trinkets that you sell.\r\n10. A dangerous secret overheard while at play.", + "type": "connection_and_memento", + "parent": "a5e-ag_urchin" } }, { "model": "api_v2.backgroundbenefit", - "pk": 396, + "pk": "a5e-ag_urchin_equipment", "fields": { "name": "Equipment", - "desc": "Holy symbol (amulet or reliquary), common clothes, robes, 5 torches.", + "desc": "Common clothes, disguise kit.", "type": "equipment", - "parent": "a5e-ag_cultist" + "parent": "a5e-ag_urchin" } }, { "model": "api_v2.backgroundbenefit", - "pk": 397, + "pk": "a5e-ag_urchin_guttersnipe", "fields": { - "name": "Forbidden Lore", - "desc": "When you fail an Arcana or Religion check, you know what being or book holds the knowledge you seek finding the book or paying the being’s price is another matter.", + "name": "Guttersnipe", + "desc": "When you're in a town or city, you can provide a poor lifestyle for yourself and your companions. Also, you know how to get anywhere in town without being spotted by gangs, gossips, or guard patrols.", "type": "feature", - "parent": "a5e-ag_cultist" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 398, - "fields": { - "name": "Adventures and Advancement", - "desc": "Members of your former order may be hunting you for reenlistment, punishment, or both.\r\nAdditionally, your cult still seeks to open a portal, effect an apotheosis, or otherwise cause catastrophe. Eventually you may have to face the leader of your cult and perhaps even the being you once worshiped.", - "type": "adventures_and_advancement", - "parent": "a5e-ag_cultist" + "parent": "a5e-ag_urchin" } }, { "model": "api_v2.backgroundbenefit", - "pk": 399, + "pk": "a5e-ag_urchin_skill-proficiencies", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cultist Connections\r\n1. The cult leader whom you left for dead.\r\n2. The cleric or herald who showed you the error of your ways.\r\n3. The voice which still speaks to you in dreams.\r\n4. The charismatic cultist whose honeyed words and promises first tempted you.\r\n5. The friend or loved one still in the cult.\r\n6. Your former best friend who now hunts you for your desertion of the cult.\r\n7. The relentless inquisitor who hunts you for your past heresy.\r\n8. The demon which you and your compatriots accidentally unleashed.\r\n9. The self-proclaimed deity who barely escaped from their angry disciples after their magic tricks and fakeries were revealed.\r\n10. The masked cult leader whose identity you never learned, but whose cruel voice you would recognize anywhere.\r\n\r\n### Cultist Mementos\r\n1. The sinister tattoo which occasionally speaks to you.\r\n2. The cursed holy symbol which appears in your possession each morning no matter how you try to rid yourself of it.\r\n3. The scar on your palm which aches with pain when you disobey the will of your former master.\r\n4. The curved dagger that carries a secret enchantment able only to destroy the being you once worshiped.\r\n5. The amulet which is said to grant command of a powerful construct. \r\n6. A forbidden tome which your cult would kill to retrieve. \r\n7. An incriminating letter to your cult leader from their master (a noted noble or politician).\r\n8. A compass which points to some distant location or object.\r\n9. A talisman which is said to open a gateway to the realm of a forgotten god.\r\n10. The birthmark which distinguishes you as the chosen vessel of a reborn god.", - "type": "connection_and_memento", - "parent": "a5e-ag_cultist" + "name": "Skill Proficiencies", + "desc": "Sleight of Hand, and either Deception or Stealth.", + "type": "skill_proficiency", + "parent": "a5e-ag_urchin" } }, { "model": "api_v2.backgroundbenefit", - "pk": 400, + "pk": "a5e-ag_urchin_tool-proficiencies", "fields": { "name": "Tool Proficiencies", - "desc": "Gaming set, thieves' tools.", + "desc": "Disguise kit, thieves’ tools.", "type": "tool_proficiency", - "parent": "a5e-ag_criminal" + "parent": "a5e-ag_urchin" } } ] diff --git a/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json b/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json index d0dd1ffd..162e5f15 100644 --- a/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json +++ b/data/v2/en-publishing/a5e-ddg/BackgroundBenefit.json @@ -1,7 +1,7 @@ [ { "model": "api_v2.backgroundbenefit", - "pk": 534, + "pk": "a5e-ddg_deep-hunter_ability-score-increase", "fields": { "name": "Ability Score Increase", "desc": "+1 to Wisdom and one other ability score.", @@ -11,67 +11,67 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 535, + "pk": "a5e-ddg_deep-hunter_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Survival, and either Nature or Stealth.", - "type": "skill_proficiency", + "name": "Adventures and Advancement", + "desc": "Once you’ve collected a few trophies from your hunts, people start offering you money in exchange for help against the subterranean monsters plaguing their communities. After a few such bounties, you gain the free service of up to 4 scouts (or scout variants). You can ask them to adventure with you or dispatch them to gather information on distant areas.", + "type": "adventures_and_advancement", "parent": "a5e-ddg_deep-hunter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 536, + "pk": "a5e-ddg_deep-hunter_connection-and-memento", "fields": { - "name": "Tool Proficiencies", - "desc": "Leatherworker’s tools.", - "type": "tool_proficiency", + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Deep Hunter Connections\r\n1. The hunter that saved your life.\r\n2. The rival hunter that pursues the same beast.\r\n3. The rival hunter that took credit for your kill and branded you a liar.\r\n4. The intelligent monster that mocks you every time it escapes your grasp.\r\n5. The community or family that depends on you.\r\n6. The city alchemist that pays well for your trophies.\r\n7. A community of fey, deep gnome, or shadow elves that owe you their lives.\r\n8. A monster you have befriended and sworn to protect.\r\n9. The surface world ruler from whom you’re hiding.\r\n10. The monster that hunts you.\r\n\r\n### Deep Hunter Mementos\r\n1. A prized bow string, arrow, whetstone, or other piece of equipment that has never let you down.\r\n2. A locket containing the picture of a subterranean monster’s victim.\r\n3. An astonishing assortment of unusual jerkies.\r\n4. A scar from the monster that got away.\r\n5. Clothing bedecked with a dozen grisly trophies.\r\n6. A lucky coin you flip when you’re not sure of the way forward.\r\n7. The broken horn or tooth that nearly killed you.\r\n8. A talking monster skull (you hear it talking, anyway).\r\n9. A copper coin taken from a cavern filled with riches; you stumbled across the cavern while lost and have never found your way back.\r\n10. A journal detailing your attempts to find a navigable passage to the Midnight Sea.", + "type": "connection_and_memento", "parent": "a5e-ddg_deep-hunter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 537, + "pk": "a5e-ddg_deep-hunter_deep-lore", "fields": { - "name": "Suggested Equipment", - "desc": "chalk, traveler’s clothes, 2 hunting traps", - "type": "equipment", + "name": "Deep Lore", + "desc": "You always have a sense of how deep you are and which direction is north, provided that you’ve traveled in these regions before. You are also generally aware of the physical and political geography of the region (e.g., “the old dwarf colony is this way and those tunnels are part of the wererat pack’s hunting grounds”). You know where relatively safe places to camp are located and you can usually find fresh sources of water.", + "type": "feature", "parent": "a5e-ddg_deep-hunter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 538, + "pk": "a5e-ddg_deep-hunter_skill-proficiencies", "fields": { - "name": "Deep Lore", - "desc": "You always have a sense of how deep you are and which direction is north, provided that you’ve traveled in these regions before. You are also generally aware of the physical and political geography of the region (e.g., “the old dwarf colony is this way and those tunnels are part of the wererat pack’s hunting grounds”). You know where relatively safe places to camp are located and you can usually find fresh sources of water.", - "type": "feature", + "name": "Skill Proficiencies", + "desc": "Survival, and either Nature or Stealth.", + "type": "skill_proficiency", "parent": "a5e-ddg_deep-hunter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 539, + "pk": "a5e-ddg_deep-hunter_suggested-equipment", "fields": { - "name": "Adventures and Advancement", - "desc": "Once you’ve collected a few trophies from your hunts, people start offering you money in exchange for help against the subterranean monsters plaguing their communities. After a few such bounties, you gain the free service of up to 4 scouts (or scout variants). You can ask them to adventure with you or dispatch them to gather information on distant areas.", - "type": "adventures_and_advancement", + "name": "Suggested Equipment", + "desc": "chalk, traveler’s clothes, 2 hunting traps", + "type": "equipment", "parent": "a5e-ddg_deep-hunter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 540, + "pk": "a5e-ddg_deep-hunter_tool-proficiencies", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Deep Hunter Connections\r\n1. The hunter that saved your life.\r\n2. The rival hunter that pursues the same beast.\r\n3. The rival hunter that took credit for your kill and branded you a liar.\r\n4. The intelligent monster that mocks you every time it escapes your grasp.\r\n5. The community or family that depends on you.\r\n6. The city alchemist that pays well for your trophies.\r\n7. A community of fey, deep gnome, or shadow elves that owe you their lives.\r\n8. A monster you have befriended and sworn to protect.\r\n9. The surface world ruler from whom you’re hiding.\r\n10. The monster that hunts you.\r\n\r\n### Deep Hunter Mementos\r\n1. A prized bow string, arrow, whetstone, or other piece of equipment that has never let you down.\r\n2. A locket containing the picture of a subterranean monster’s victim.\r\n3. An astonishing assortment of unusual jerkies.\r\n4. A scar from the monster that got away.\r\n5. Clothing bedecked with a dozen grisly trophies.\r\n6. A lucky coin you flip when you’re not sure of the way forward.\r\n7. The broken horn or tooth that nearly killed you.\r\n8. A talking monster skull (you hear it talking, anyway).\r\n9. A copper coin taken from a cavern filled with riches; you stumbled across the cavern while lost and have never found your way back.\r\n10. A journal detailing your attempts to find a navigable passage to the Midnight Sea.", - "type": "connection_and_memento", + "name": "Tool Proficiencies", + "desc": "Leatherworker’s tools.", + "type": "tool_proficiency", "parent": "a5e-ddg_deep-hunter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 541, + "pk": "a5e-ddg_dungeon-robber_ability-score-increase", "fields": { "name": "Ability Score Increase", "desc": "+1 to Intelligence and one other ability score.", @@ -81,27 +81,27 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 542, + "pk": "a5e-ddg_dungeon-robber_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "History, and either Investigation or Religion.", - "type": "skill_proficiency", + "name": "Adventures and Advancement", + "desc": "As you build your reputation, shady people approach you with requests to “discover” items of uncertain ownership. After enough successes, a legitimate organization, such as a wizard’s college or esteemed museum, takes an interest in you. They offer you a position, which comes with funding granting a Wealthy lifestyle, access to free spellcasting services, and legal representation when you inevitably run afoul of the law.", + "type": "adventures_and_advancement", "parent": "a5e-ddg_dungeon-robber" } }, { "model": "api_v2.backgroundbenefit", - "pk": 543, + "pk": "a5e-ddg_dungeon-robber_connection-and-memento", "fields": { - "name": "Tool Proficiencies", - "desc": "Cartographers’ tools.", - "type": "tool_proficiency", + "name": "Connection and Memento", + "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Dungeon Robber Connections\r\n1. A rival who always tries to steal what you rightfully find.\r\n2. A rival who seeks powerful artifacts for evil ends.\r\n3. A fence who can find a buyer for anything.\r\n4. An underworld figure to whom you owe a staggering debt.\r\n5. A master forger who can replicate plausible records of ownership, permissions to restricted areas, and so on.\r\n6. An artist who can make perfect copies of artwork and paintings.\r\n7. A collector who sends you after valuable curios.\r\n8. Authorities who would like to question you about a relic’s mysterious disappearance.\r\n9. An admiring urchin who can get you anywhere in their city.\r\n10. A rambling sage whose bizarre, shocking theories you half believe.\r\n\r\n### Dungeon Robber Mementos\r\n1. A mysterious idol whose origin you seek.\r\n2. A cultural item from equipment.\r\n3. A treasure map with no obvious connection to any known land mass.\r\n4. An ancient piece of machinery that is undoubtedly very powerful, although all it currently does is light up.\r\n5. A rare book that grants an expertise die on checks related to a specific civilization.\r\n6. A gold coin bearing the face of a king who never existed.\r\n7. Identification papers from the institution that has kicked you out.\r\n8. A tablet carved with indecipherable glyphs.\r\n9. A giant-sized key to an unknown door.\r\n10. One piece of a seven-part artifact.", + "type": "connection_and_memento", "parent": "a5e-ddg_dungeon-robber" } }, { "model": "api_v2.backgroundbenefit", - "pk": 544, + "pk": "a5e-ddg_dungeon-robber_languages", "fields": { "name": "Languages", "desc": "Any six (three of them no longer spoken).", @@ -111,47 +111,47 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 545, + "pk": "a5e-ddg_dungeon-robber_skill-proficiencies", "fields": { - "name": "Suggested Equipment", - "desc": "Cartographers’ tools, miner’s pick, traveler’s clothes, shovel.", - "type": "equipment", + "name": "Skill Proficiencies", + "desc": "History, and either Investigation or Religion.", + "type": "skill_proficiency", "parent": "a5e-ddg_dungeon-robber" } }, { "model": "api_v2.backgroundbenefit", - "pk": 546, + "pk": "a5e-ddg_dungeon-robber_suggested-equipment", "fields": { - "name": "Unreliable Intelligence", - "desc": "You know conspiracy theorists, armchair historians, disgraced academics, and other people with useful, if unreliable, knowledge. While in a city, once per day you can find an NPC who can make an Intelligence check with a +10 bonus to recall a fact. When you do so, the Narrator secretly rolls a d6. On a 1, your contact’s information is dangerously inaccurate.", - "type": "feature", + "name": "Suggested Equipment", + "desc": "Cartographers’ tools, miner’s pick, traveler’s clothes, shovel.", + "type": "equipment", "parent": "a5e-ddg_dungeon-robber" } }, { "model": "api_v2.backgroundbenefit", - "pk": 547, + "pk": "a5e-ddg_dungeon-robber_tool-proficiencies", "fields": { - "name": "Adventures and Advancement", - "desc": "As you build your reputation, shady people approach you with requests to “discover” items of uncertain ownership. After enough successes, a legitimate organization, such as a wizard’s college or esteemed museum, takes an interest in you. They offer you a position, which comes with funding granting a Wealthy lifestyle, access to free spellcasting services, and legal representation when you inevitably run afoul of the law.", - "type": "adventures_and_advancement", + "name": "Tool Proficiencies", + "desc": "Cartographers’ tools.", + "type": "tool_proficiency", "parent": "a5e-ddg_dungeon-robber" } }, { "model": "api_v2.backgroundbenefit", - "pk": 548, + "pk": "a5e-ddg_dungeon-robber_unreliable-intelligence", "fields": { - "name": "Connection and Memento", - "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Dungeon Robber Connections\r\n1. A rival who always tries to steal what you rightfully find.\r\n2. A rival who seeks powerful artifacts for evil ends.\r\n3. A fence who can find a buyer for anything.\r\n4. An underworld figure to whom you owe a staggering debt.\r\n5. A master forger who can replicate plausible records of ownership, permissions to restricted areas, and so on.\r\n6. An artist who can make perfect copies of artwork and paintings.\r\n7. A collector who sends you after valuable curios.\r\n8. Authorities who would like to question you about a relic’s mysterious disappearance.\r\n9. An admiring urchin who can get you anywhere in their city.\r\n10. A rambling sage whose bizarre, shocking theories you half believe.\r\n\r\n### Dungeon Robber Mementos\r\n1. A mysterious idol whose origin you seek.\r\n2. A cultural item from equipment.\r\n3. A treasure map with no obvious connection to any known land mass.\r\n4. An ancient piece of machinery that is undoubtedly very powerful, although all it currently does is light up.\r\n5. A rare book that grants an expertise die on checks related to a specific civilization.\r\n6. A gold coin bearing the face of a king who never existed.\r\n7. Identification papers from the institution that has kicked you out.\r\n8. A tablet carved with indecipherable glyphs.\r\n9. A giant-sized key to an unknown door.\r\n10. One piece of a seven-part artifact.", - "type": "connection_and_memento", + "name": "Unreliable Intelligence", + "desc": "You know conspiracy theorists, armchair historians, disgraced academics, and other people with useful, if unreliable, knowledge. While in a city, once per day you can find an NPC who can make an Intelligence check with a +10 bonus to recall a fact. When you do so, the Narrator secretly rolls a d6. On a 1, your contact’s information is dangerously inaccurate.", + "type": "feature", "parent": "a5e-ddg_dungeon-robber" } }, { "model": "api_v2.backgroundbenefit", - "pk": 549, + "pk": "a5e-ddg_escapee-from-below_ability-score-increase", "fields": { "name": "Ability Score Increase", "desc": "+1 to Constitution and one other ability score.", @@ -161,67 +161,67 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 550, + "pk": "a5e-ddg_escapee-from-below_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Stealth, and either Perception or Survival.", - "type": "skill_proficiency", + "name": "Adventures and Advancement", + "desc": "You find yourself drawn to the lands you once escaped. When you return there, you may have an opportunity to right wrongs or take revenge for past injuries. When you do, other escapees may look to you for leadership.", + "type": "adventures_and_advancement", "parent": "a5e-ddg_escapee-from-below" } }, { "model": "api_v2.backgroundbenefit", - "pk": 551, + "pk": "a5e-ddg_escapee-from-below_alien-culture", "fields": { - "name": "Tool Proficiencies", - "desc": "Thieves’ tools.", - "type": "tool_proficiency", + "name": "Alien Culture", + "desc": "Your prolonged captivity has granted you insight into the culture that kept you. You understand their customs, traditions, religion, political ties, and to some extent how they think. You are regarded as an expert in this culture and can usually recall some useful detail when you and your companions face a challenge involving this culture.", + "type": "feature", "parent": "a5e-ddg_escapee-from-below" } }, { "model": "api_v2.backgroundbenefit", - "pk": 552, + "pk": "a5e-ddg_escapee-from-below_connection-and-memento", "fields": { - "name": "Suggested Equipment", - "desc": "Common clothes, thieves’ tools.", - "type": "equipment", + "name": "Connection and Memento", + "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Escapee from Below Connections\r\n1. The friend and fellow escapee from whom you were separated.\r\n2. The family members who remain in captivity.\r\n3. The cruel overseer who tortured you.\r\n4. Members of an Underland resistance movement.\r\n5. An evil commando squad that hunts escapees.\r\n6. The kindly merchant who took you in when you first reached the surface.\r\n7. A fellow prisoner, still in captivity, who claimed to be an heir to royalty.\r\n8. The prominent merchant or politician you saw making deals with evil creatures in the Underland.\r\n9. A mighty Underland creature with ambitions to conquer the surface world.\r\n10. A ship captain who sails the Midnight Sea.\r\n\r\n### Escapee from Below Mementos\r\n1. A partial map of your escape route.\r\n2. Broken shackles or chains.\r\n3. A precious heirloom, still hidden somewhere in Underland.\r\n4. A delicious recipe (which no one would eat if they knew the ingredients).\r\n5. A compass that points back where you came.\r\n6. Twelve days worth of rations (dried mushrooms).\r\n7. A tattoo that conceals the hidden routes and passwords you used to gain your freedom.\r\n8. A trophy taken from the guard you overcame.\r\n9. A strange board game or toy designed for hands with too many fingers.\r\n10. A telepathic rat or other unusual pet.", + "type": "connection_and_memento", "parent": "a5e-ddg_escapee-from-below" } }, { "model": "api_v2.backgroundbenefit", - "pk": 553, + "pk": "a5e-ddg_escapee-from-below_skill-proficiencies", "fields": { - "name": "Alien Culture", - "desc": "Your prolonged captivity has granted you insight into the culture that kept you. You understand their customs, traditions, religion, political ties, and to some extent how they think. You are regarded as an expert in this culture and can usually recall some useful detail when you and your companions face a challenge involving this culture.", - "type": "feature", + "name": "Skill Proficiencies", + "desc": "Stealth, and either Perception or Survival.", + "type": "skill_proficiency", "parent": "a5e-ddg_escapee-from-below" } }, { "model": "api_v2.backgroundbenefit", - "pk": 554, + "pk": "a5e-ddg_escapee-from-below_suggested-equipment", "fields": { - "name": "Adventures and Advancement", - "desc": "You find yourself drawn to the lands you once escaped. When you return there, you may have an opportunity to right wrongs or take revenge for past injuries. When you do, other escapees may look to you for leadership.", - "type": "adventures_and_advancement", + "name": "Suggested Equipment", + "desc": "Common clothes, thieves’ tools.", + "type": "equipment", "parent": "a5e-ddg_escapee-from-below" } }, { "model": "api_v2.backgroundbenefit", - "pk": 555, + "pk": "a5e-ddg_escapee-from-below_tool-proficiencies", "fields": { - "name": "Connection and Memento", - "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Escapee from Below Connections\r\n1. The friend and fellow escapee from whom you were separated.\r\n2. The family members who remain in captivity.\r\n3. The cruel overseer who tortured you.\r\n4. Members of an Underland resistance movement.\r\n5. An evil commando squad that hunts escapees.\r\n6. The kindly merchant who took you in when you first reached the surface.\r\n7. A fellow prisoner, still in captivity, who claimed to be an heir to royalty.\r\n8. The prominent merchant or politician you saw making deals with evil creatures in the Underland.\r\n9. A mighty Underland creature with ambitions to conquer the surface world.\r\n10. A ship captain who sails the Midnight Sea.\r\n\r\n### Escapee from Below Mementos\r\n1. A partial map of your escape route.\r\n2. Broken shackles or chains.\r\n3. A precious heirloom, still hidden somewhere in Underland.\r\n4. A delicious recipe (which no one would eat if they knew the ingredients).\r\n5. A compass that points back where you came.\r\n6. Twelve days worth of rations (dried mushrooms).\r\n7. A tattoo that conceals the hidden routes and passwords you used to gain your freedom.\r\n8. A trophy taken from the guard you overcame.\r\n9. A strange board game or toy designed for hands with too many fingers.\r\n10. A telepathic rat or other unusual pet.", - "type": "connection_and_memento", + "name": "Tool Proficiencies", + "desc": "Thieves’ tools.", + "type": "tool_proficiency", "parent": "a5e-ddg_escapee-from-below" } }, { "model": "api_v2.backgroundbenefit", - "pk": 556, + "pk": "a5e-ddg_imposter_ability-score-increase", "fields": { "name": "Ability Score Increase", "desc": "+1 to Charisma and one other ability score.", @@ -231,61 +231,61 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 557, + "pk": "a5e-ddg_imposter_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Deception, and either Perception or Survival.", - "type": "skill_proficiency", + "name": "Adventures and Advancement", + "desc": "Each of your double’s former acquaintances must be won over, until they like you more than they did your original. Even once that’s accomplished, you won’t truly be free of your past until you have reckoned with it. When evidence of your true nature surfaces—or when the person you are impersonating reappears—you must triumph in the court of public opinion. Once you have done so, you will have permanent, legal access to your former self’s belongings, inheritance rights, and so on.", + "type": "adventures_and_advancement", "parent": "a5e-ddg_imposter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 558, + "pk": "a5e-ddg_imposter_connection-and-memento", "fields": { - "name": "Tool Proficiencies", - "desc": "Disguise kit.", - "type": "tool_proficiency", + "name": "Connection and Memento", + "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Imposter Connections\r\n1. The accomplice who knows your secret and helps you for their own reasons.\r\n2. The spouse or lover of your other self, whom you must win over.\r\n3. The enemy of your other self, whose hatred you inherit.\r\n4. Your other self’s rich or noble relative, from whom you may inherit a fortune.\r\n5. Your crooked former partner, who still searches for you, unaware of your new identity.\r\n6. The Underland compatriot who knew both you and the person whose identity you stole.\r\n7. The suspicious priest who noticed a change in your personality.\r\n8. An acquaintance whose “inside joke” you pretend to understand.\r\n9. The family pet that doesn’t recognize you.\r\n10. The person you left behind when you abandoned your old life.\r\n\r\n### Imposter Mementos\r\n1. The precious diary containing your original self’s secrets.\r\n2. The locket or signet ring that proves your identity.\r\n3. The scar that matches the one your original self had.\r\n4. An anonymous blackmail letter.\r\n5. An item that proves your real identity, which you keep hidden.\r\n6. The fingerbone that whispers hints to you at opportune times.\r\n7. The heirloom weapon you fraudulently wield.\r\n8. Your trusty hat of disguise.\r\n9. Your trusty ring of mind shielding.\r\n10. The implements (useless to you) of your original self’s magical training.", + "type": "connection_and_memento", "parent": "a5e-ddg_imposter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 559, + "pk": "a5e-ddg_imposter_cover-story", "fields": { - "name": "Suggested Equipment", - "desc": "Common clothes, disguise kit.", - "type": "equipment", + "name": "Cover Story", + "desc": "Whenever you struggle to maintain the masquerade that you are who you say, a surprising number of people are willing to help you through your “lapses of memory.” They might be deluding themselves, or perhaps they know your secret but provide you cover for reasons of their own. So long as you don’t act completely out of character or get caught in an outrageous lie, you can usually find someone willing to cover for you. This cover most commonly takes he form of excuses for your strange behavior.", + "type": "feature", "parent": "a5e-ddg_imposter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 560, + "pk": "a5e-ddg_imposter_skill-proficiencies", "fields": { - "name": "Cover Story", - "desc": "Whenever you struggle to maintain the masquerade that you are who you say, a surprising number of people are willing to help you through your “lapses of memory.” They might be deluding themselves, or perhaps they know your secret but provide you cover for reasons of their own. So long as you don’t act completely out of character or get caught in an outrageous lie, you can usually find someone willing to cover for you. This cover most commonly takes he form of excuses for your strange behavior.", - "type": "feature", + "name": "Skill Proficiencies", + "desc": "Deception, and either Perception or Survival.", + "type": "skill_proficiency", "parent": "a5e-ddg_imposter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 561, + "pk": "a5e-ddg_imposter_suggested-equipment", "fields": { - "name": "Adventures and Advancement", - "desc": "Each of your double’s former acquaintances must be won over, until they like you more than they did your original. Even once that’s accomplished, you won’t truly be free of your past until you have reckoned with it. When evidence of your true nature surfaces—or when the person you are impersonating reappears—you must triumph in the court of public opinion. Once you have done so, you will have permanent, legal access to your former self’s belongings, inheritance rights, and so on.", - "type": "adventures_and_advancement", + "name": "Suggested Equipment", + "desc": "Common clothes, disguise kit.", + "type": "equipment", "parent": "a5e-ddg_imposter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 562, + "pk": "a5e-ddg_imposter_tool-proficiencies", "fields": { - "name": "Connection and Memento", - "desc": "Roll d10, choose, or make up your own.\r\n\r\n### Imposter Connections\r\n1. The accomplice who knows your secret and helps you for their own reasons.\r\n2. The spouse or lover of your other self, whom you must win over.\r\n3. The enemy of your other self, whose hatred you inherit.\r\n4. Your other self’s rich or noble relative, from whom you may inherit a fortune.\r\n5. Your crooked former partner, who still searches for you, unaware of your new identity.\r\n6. The Underland compatriot who knew both you and the person whose identity you stole.\r\n7. The suspicious priest who noticed a change in your personality.\r\n8. An acquaintance whose “inside joke” you pretend to understand.\r\n9. The family pet that doesn’t recognize you.\r\n10. The person you left behind when you abandoned your old life.\r\n\r\n### Imposter Mementos\r\n1. The precious diary containing your original self’s secrets.\r\n2. The locket or signet ring that proves your identity.\r\n3. The scar that matches the one your original self had.\r\n4. An anonymous blackmail letter.\r\n5. An item that proves your real identity, which you keep hidden.\r\n6. The fingerbone that whispers hints to you at opportune times.\r\n7. The heirloom weapon you fraudulently wield.\r\n8. Your trusty hat of disguise.\r\n9. Your trusty ring of mind shielding.\r\n10. The implements (useless to you) of your original self’s magical training.", - "type": "connection_and_memento", + "name": "Tool Proficiencies", + "desc": "Disguise kit.", + "type": "tool_proficiency", "parent": "a5e-ddg_imposter" } } diff --git a/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json b/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json index 8e55af17..d56e0648 100644 --- a/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json +++ b/data/v2/en-publishing/a5e-gpg/BackgroundBenefit.json @@ -1,7 +1,7 @@ [ { "model": "api_v2.backgroundbenefit", - "pk": 520, + "pk": "a5e-gpg_cursed_ability-score-increase", "fields": { "name": "Ability Score Increase", "desc": "+1 Charisma and one other ability score.", @@ -11,67 +11,67 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 521, + "pk": "a5e-gpg_cursed_accursed", "fields": { - "name": "Skill Proficiencies", - "desc": "Perception, and either Arcana, Nature, or Religion based on the source of your curse.", - "type": "skill_proficiency", + "name": "Accursed", + "desc": "Whenever you fail at a Deception or Persuasion check, your curse manifests in a manner that you work out with your Narrator ahead of time. The failed check is ignored, and you immediately roll an Intimidation check with which you have expertise, taking the new roll. However, even a successful Intimidation check does not necessarily produce the result you originally intended, as the creatures around you may recoil in fear and distrust. At the Narrator’s discretion, you may keep the expertise die to Intimidation until the end of the scene.", + "type": "feature", "parent": "a5e-gpg_cursed" } }, { "model": "api_v2.backgroundbenefit", - "pk": 522, + "pk": "a5e-gpg_cursed_adventures-and-advancement", "fields": { - "name": "Languages", - "desc": "Two of your choice.", - "type": "language", + "name": "Adventures and Advancement", + "desc": "The entity responsible for your curse may press you to complete specific tasks, such as transporting a mysterious item, defeating a hated enemy, or stealing important documents. Work with your Narrator to determine how your curse is leveraged in these situations. After you complete several such tasks, your infamy grows. You are known by all people within 100 miles of your Prestige Center, many of whom hold you in fearful respect. You and your companions are given a moderate lifestyle in settlements within this area by those who dare not risk your curse.", + "type": "adventures_and_advancement", "parent": "a5e-gpg_cursed" } }, { "model": "api_v2.backgroundbenefit", - "pk": 523, + "pk": "a5e-gpg_cursed_connection-and-memento", "fields": { - "name": "Suggested Equipment", - "desc": "4 days of rations, one person tent, traveler’s clothes", - "type": "equipment", + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cursed Connections\r\n1. Your parent who made the deal and left you cursed for their own ends.\r\n2. A cultist devoted to the entity that cursed you and who reveres you as well.\r\n3. Your childhood romantic interest, ultimately marked in some way by your curse.\r\n4. A childhood friend who pulled away from you when they realized you were cursed.\r\n5. The entity that cursed you.\r\n6. A priest or sage who tried—and failed—to break your curse years ago.\r\n7. The kindly family that took you in out of pity.\r\n8. The law enforcers who see you as a dangerous troublemaker.\r\n9. Another accursed individual with whom you sometimes commiserate.\r\n10. A scholar or researcher obsessed with the entity that cursed you.\r\n\r\n### Cursed Memento\r\n1. A locket or ring once owned by someone who was killed when your curse first manifested.\r\n2. A childhood toy, well worn, which has always been soothing.\r\n3. A torn piece of parchment which may lead you to the person who can break your curse.\r\n4. A weapon or piece of ammunition set aside for the entity that cursed you.\r\n5. A unique scar, discoloration, or other mark on your body which shows your curse.\r\n6. Nightmares brought on by the curse which often wake you, screaming.\r\n7. A charm meant to keep your curse contained. You haven’t noticed an effect.\r\n8. An artistic rendering of the entity that cursed you\r\n9. A flask once given to you as well-meaning consolation.\r\n10. A small knife you used as a child to protect yourself, because no one else would.", + "type": "connection_and_memento", "parent": "a5e-gpg_cursed" } }, { "model": "api_v2.backgroundbenefit", - "pk": 524, + "pk": "a5e-gpg_cursed_languages", "fields": { - "name": "Accursed", - "desc": "Whenever you fail at a Deception or Persuasion check, your curse manifests in a manner that you work out with your Narrator ahead of time. The failed check is ignored, and you immediately roll an Intimidation check with which you have expertise, taking the new roll. However, even a successful Intimidation check does not necessarily produce the result you originally intended, as the creatures around you may recoil in fear and distrust. At the Narrator’s discretion, you may keep the expertise die to Intimidation until the end of the scene.", - "type": "feature", + "name": "Languages", + "desc": "Two of your choice.", + "type": "language", "parent": "a5e-gpg_cursed" } }, { "model": "api_v2.backgroundbenefit", - "pk": 525, + "pk": "a5e-gpg_cursed_skill-proficiencies", "fields": { - "name": "Adventures and Advancement", - "desc": "The entity responsible for your curse may press you to complete specific tasks, such as transporting a mysterious item, defeating a hated enemy, or stealing important documents. Work with your Narrator to determine how your curse is leveraged in these situations. After you complete several such tasks, your infamy grows. You are known by all people within 100 miles of your Prestige Center, many of whom hold you in fearful respect. You and your companions are given a moderate lifestyle in settlements within this area by those who dare not risk your curse.", - "type": "adventures_and_advancement", + "name": "Skill Proficiencies", + "desc": "Perception, and either Arcana, Nature, or Religion based on the source of your curse.", + "type": "skill_proficiency", "parent": "a5e-gpg_cursed" } }, { "model": "api_v2.backgroundbenefit", - "pk": 526, + "pk": "a5e-gpg_cursed_suggested-equipment", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Cursed Connections\r\n1. Your parent who made the deal and left you cursed for their own ends.\r\n2. A cultist devoted to the entity that cursed you and who reveres you as well.\r\n3. Your childhood romantic interest, ultimately marked in some way by your curse.\r\n4. A childhood friend who pulled away from you when they realized you were cursed.\r\n5. The entity that cursed you.\r\n6. A priest or sage who tried—and failed—to break your curse years ago.\r\n7. The kindly family that took you in out of pity.\r\n8. The law enforcers who see you as a dangerous troublemaker.\r\n9. Another accursed individual with whom you sometimes commiserate.\r\n10. A scholar or researcher obsessed with the entity that cursed you.\r\n\r\n### Cursed Memento\r\n1. A locket or ring once owned by someone who was killed when your curse first manifested.\r\n2. A childhood toy, well worn, which has always been soothing.\r\n3. A torn piece of parchment which may lead you to the person who can break your curse.\r\n4. A weapon or piece of ammunition set aside for the entity that cursed you.\r\n5. A unique scar, discoloration, or other mark on your body which shows your curse.\r\n6. Nightmares brought on by the curse which often wake you, screaming.\r\n7. A charm meant to keep your curse contained. You haven’t noticed an effect.\r\n8. An artistic rendering of the entity that cursed you\r\n9. A flask once given to you as well-meaning consolation.\r\n10. A small knife you used as a child to protect yourself, because no one else would.", - "type": "connection_and_memento", + "name": "Suggested Equipment", + "desc": "4 days of rations, one person tent, traveler’s clothes", + "type": "equipment", "parent": "a5e-gpg_cursed" } }, { "model": "api_v2.backgroundbenefit", - "pk": 527, + "pk": "a5e-gpg_haunted_ability-score-increase", "fields": { "name": "Ability Score Increase", "desc": "+1 Wisdom and one other ability score of your choice.", @@ -81,37 +81,37 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 528, + "pk": "a5e-gpg_haunted_adventures-and-advancement", "fields": { - "name": "Skill Proficiencies", - "desc": "Religion, and any one skill of your choice that the spirit has imparted to you.", - "type": "skill_proficiency", + "name": "Adventures and Advancement", + "desc": "Whether you seek to violently banish the restless dead or help them to peacefully pass on, you will gain a reputation as a spirit-speaker. Common folk and nobility alike are likely to approach you for advice and aid with everything from hereditary curses to irritable poltergeists to speaking with a dead relative about a lost treasure.\r\nAfter you have solved several such problems, you’ve become known to those who deal in certain kinds of esoteric knowledge and gain access to their private libraries. These vast personal collections contain esoteric mysteries, such as those answerable with a DC 25 Arcana, History, or Religion check. While using such a library your host will provide you and your companions a moderate or rich lifestyle, depending on their means and how impressed they are by your exploits.", + "type": "adventures_and_advancement", "parent": "a5e-gpg_haunted" } }, { "model": "api_v2.backgroundbenefit", - "pk": 529, + "pk": "a5e-gpg_haunted_connection-and-memento", "fields": { - "name": "Languages", - "desc": "Two of your choice, one of which is the spirit’s native language.", - "type": "language", + "name": "Connection and Memento", + "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Haunted Connections\r\n1. A descendant of your spirit who blames them for current misfortunes.\r\n2. Another haunted individual who came to you seeking help with their spirit in a time of crisis.\r\n3. The murderer who killed your spirit.\r\n4. A ghost who has consulted your spirit during a time of need.\r\n5. The bereaved spouse your spirit left behind who will do nearly anything to speak with their lost love.\r\n6. Your spirit, a childhood friend or a romantic partner before tragedy struck.\r\n7. Your spirits, a gaggle of bickering ancestors trying to use you to right a terrible wrong.\r\n8. A relative of your spirit who killed them in order to inherit a fortune.\r\n9. Your spirit, a hateful enemy of your family who is bound to you through a quirk of misfortune.\r\n10. Your spirit, who haunts their own body after you stole it and took up residence.\r\n\r\n### Haunted Memento\r\n1. A personal item (jewelry, tools, weapon, ect) once owned by your spirit. You can’t seem to get rid of it.\r\n2. A locket containing the image of the one who haunts you.\r\n3. The scent of your spirit’s favored cologne or perfume that clings to you.\r\n4. A small pouch of soil taken from your spirit’s grave.\r\n5. A letter of introduction penned by your spirit, giving you their blessing.\r\n6. Journals of your spirit’s life.\r\n7. An innocuous nonmagical item that your spirit tells you is of dire importance.\r\n8. The manacles that shackled your spirit before their death.\r\n9. A cryptic note written by your spirit who has no memory of its existence.\r\n10. The signet ring of your spirit, who you claim as your parent or ancestor.", + "type": "connection_and_memento", "parent": "a5e-gpg_haunted" } }, { "model": "api_v2.backgroundbenefit", - "pk": 530, + "pk": "a5e-gpg_haunted_languages", "fields": { - "name": "Suggested Equipment", - "desc": "2 days worth of rations, bell, 5 candles, ink, ink pen, 10 sheets of paper, 5 pieces of chalk, traveler’s clothes", - "type": "equipment", + "name": "Languages", + "desc": "Two of your choice, one of which is the spirit’s native language.", + "type": "language", "parent": "a5e-gpg_haunted" } }, { "model": "api_v2.backgroundbenefit", - "pk": 531, + "pk": "a5e-gpg_haunted_silent-aid", "fields": { "name": "Silent Aid", "desc": "Being in tune with your spirit allows them to point out something you might have missed, if only for their own purposes. You gain a +2 to your choice of your passive Perception, Investigation, or Insight score, depending on your spirit’s skills.\r\nIf you banish, free, or otherwise lose your spirit, consult with the Narrator to choose an appropriate feature from another background. Alternatively, the Narrator may rule that you’ve become a beacon for the supernatural and another spirit has taken up haunting you.", @@ -121,21 +121,21 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 532, + "pk": "a5e-gpg_haunted_skill-proficiencies", "fields": { - "name": "Adventures and Advancement", - "desc": "Whether you seek to violently banish the restless dead or help them to peacefully pass on, you will gain a reputation as a spirit-speaker. Common folk and nobility alike are likely to approach you for advice and aid with everything from hereditary curses to irritable poltergeists to speaking with a dead relative about a lost treasure.\r\nAfter you have solved several such problems, you’ve become known to those who deal in certain kinds of esoteric knowledge and gain access to their private libraries. These vast personal collections contain esoteric mysteries, such as those answerable with a DC 25 Arcana, History, or Religion check. While using such a library your host will provide you and your companions a moderate or rich lifestyle, depending on their means and how impressed they are by your exploits.", - "type": "adventures_and_advancement", + "name": "Skill Proficiencies", + "desc": "Religion, and any one skill of your choice that the spirit has imparted to you.", + "type": "skill_proficiency", "parent": "a5e-gpg_haunted" } }, { "model": "api_v2.backgroundbenefit", - "pk": 533, + "pk": "a5e-gpg_haunted_suggested-equipment", "fields": { - "name": "Connection and Memento", - "desc": "Roll 1d10, choose, or make up your own.\r\n\r\n### Haunted Connections\r\n1. A descendant of your spirit who blames them for current misfortunes.\r\n2. Another haunted individual who came to you seeking help with their spirit in a time of crisis.\r\n3. The murderer who killed your spirit.\r\n4. A ghost who has consulted your spirit during a time of need.\r\n5. The bereaved spouse your spirit left behind who will do nearly anything to speak with their lost love.\r\n6. Your spirit, a childhood friend or a romantic partner before tragedy struck.\r\n7. Your spirits, a gaggle of bickering ancestors trying to use you to right a terrible wrong.\r\n8. A relative of your spirit who killed them in order to inherit a fortune.\r\n9. Your spirit, a hateful enemy of your family who is bound to you through a quirk of misfortune.\r\n10. Your spirit, who haunts their own body after you stole it and took up residence.\r\n\r\n### Haunted Memento\r\n1. A personal item (jewelry, tools, weapon, ect) once owned by your spirit. You can’t seem to get rid of it.\r\n2. A locket containing the image of the one who haunts you.\r\n3. The scent of your spirit’s favored cologne or perfume that clings to you.\r\n4. A small pouch of soil taken from your spirit’s grave.\r\n5. A letter of introduction penned by your spirit, giving you their blessing.\r\n6. Journals of your spirit’s life.\r\n7. An innocuous nonmagical item that your spirit tells you is of dire importance.\r\n8. The manacles that shackled your spirit before their death.\r\n9. A cryptic note written by your spirit who has no memory of its existence.\r\n10. The signet ring of your spirit, who you claim as your parent or ancestor.", - "type": "connection_and_memento", + "name": "Suggested Equipment", + "desc": "2 days worth of rations, bell, 5 candles, ink, ink pen, 10 sheets of paper, 5 pieces of chalk, traveler’s clothes", + "type": "equipment", "parent": "a5e-gpg_haunted" } } diff --git a/data/v2/green-ronin/tdcs/BackgroundBenefit.json b/data/v2/green-ronin/tdcs/BackgroundBenefit.json index 06e23e3d..3aecf020 100644 --- a/data/v2/green-ronin/tdcs/BackgroundBenefit.json +++ b/data/v2/green-ronin/tdcs/BackgroundBenefit.json @@ -1,57 +1,47 @@ [ { "model": "api_v2.backgroundbenefit", - "pk": 497, + "pk": "tdcs_crime-syndicate-member_a-favor-in-turn", "fields": { - "name": "Skill Proficiencies", - "desc": "Deception, plus your choice of one between Sleight of Hand or Stealth.", - "type": "skill_proficiency", - "parent": "tdcs_crime-syndicate-member" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 498, - "fields": { - "name": "Languages", - "desc": "Thieves’ Cant", - "type": "language", + "name": "A Favor In Turn", + "desc": "You have gained enough clout within the syndicate that you can call in a favor from your contacts, should you be close enough to a center of syndicate activity. A request for a favor can be no longer than 20 words, and is passed up the chain to an undisclosed syndicate boss for approval. This favor can take a shape up to the DM’s discretion depending on the request, with varying speeds of fulfillment: If muscle is requested, an NPC syndicate minion can temporarily aid the party. If money is needed, a small loan can be provided. If you’ve been imprisoned, they can look into breaking you free, or paying off the jailer.\r\nThe turn comes when a favor is asked to be repaid. The favor debt can be called in without warning, and many times with intended immediacy. Perhaps the player is called to commit a specific burglary without the option to decline. Maybe they must press a dignitary for a specific secret at an upcoming ball. The syndicate could even request a hit on an NPC, no questions asked or answered. The DM is to provide a debt call proportionate to the favor fulfilled. If a favor is not repaid within a reasonable period of time, membership to the crime syndicate can be revoked, and if the debt is large enough, the player may become the next hit contract to make the rounds.", + "type": "feature", "parent": "tdcs_crime-syndicate-member" } }, { "model": "api_v2.backgroundbenefit", - "pk": 499, + "pk": "tdcs_crime-syndicate-member_equipment", "fields": { - "name": "Tool Proficiencies", - "desc": "Your choice of one from Thieves’ Tools, Forgery Kit, or Disguise Kit.", - "type": "tool_proficiency", + "name": "Equipment", + "desc": "A set of dark common clothes including a hood, a set of tools to match your choice of tool proficiency, and a belt pouch containing 10g.", + "type": "equipment", "parent": "tdcs_crime-syndicate-member" } }, { "model": "api_v2.backgroundbenefit", - "pk": 500, + "pk": "tdcs_crime-syndicate-member_languages", "fields": { - "name": "Equipment", - "desc": "A set of dark common clothes including a hood, a set of tools to match your choice of tool proficiency, and a belt pouch containing 10g.", - "type": "equipment", + "name": "Languages", + "desc": "Thieves’ Cant", + "type": "language", "parent": "tdcs_crime-syndicate-member" } }, { "model": "api_v2.backgroundbenefit", - "pk": 501, + "pk": "tdcs_crime-syndicate-member_skill-proficiencies", "fields": { - "name": "A Favor In Turn", - "desc": "You have gained enough clout within the syndicate that you can call in a favor from your contacts, should you be close enough to a center of syndicate activity. A request for a favor can be no longer than 20 words, and is passed up the chain to an undisclosed syndicate boss for approval. This favor can take a shape up to the DM’s discretion depending on the request, with varying speeds of fulfillment: If muscle is requested, an NPC syndicate minion can temporarily aid the party. If money is needed, a small loan can be provided. If you’ve been imprisoned, they can look into breaking you free, or paying off the jailer.\r\nThe turn comes when a favor is asked to be repaid. The favor debt can be called in without warning, and many times with intended immediacy. Perhaps the player is called to commit a specific burglary without the option to decline. Maybe they must press a dignitary for a specific secret at an upcoming ball. The syndicate could even request a hit on an NPC, no questions asked or answered. The DM is to provide a debt call proportionate to the favor fulfilled. If a favor is not repaid within a reasonable period of time, membership to the crime syndicate can be revoked, and if the debt is large enough, the player may become the next hit contract to make the rounds.", - "type": "feature", + "name": "Skill Proficiencies", + "desc": "Deception, plus your choice of one between Sleight of Hand or Stealth.", + "type": "skill_proficiency", "parent": "tdcs_crime-syndicate-member" } }, { "model": "api_v2.backgroundbenefit", - "pk": 502, + "pk": "tdcs_crime-syndicate-member_suggested-characteristics", "fields": { "name": "Suggested Characteristics", "desc": "Use the tables for the Criminal background in the PHB as the basis for your traits and motivations, modifying the entries when appropriate to suit your identity as a member of a crime syndicate. Your bond is likely associated with your fellow syndicate members or the individual who introduced you to the organization. Your ideal probably involves establishing your importance and indispensability within the syndicate. You joined to improve your livelihood and sense of purpose.", @@ -61,57 +51,47 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 503, + "pk": "tdcs_crime-syndicate-member_tool-proficiencies", "fields": { - "name": "Skill Proficiencies", - "desc": "Your choice of two from among Arcana, History, and Persuasion.", - "type": "skill_proficiency", - "parent": "tdcs_lyceum-student" + "name": "Tool Proficiencies", + "desc": "Your choice of one from Thieves’ Tools, Forgery Kit, or Disguise Kit.", + "type": "tool_proficiency", + "parent": "tdcs_crime-syndicate-member" } }, { "model": "api_v2.backgroundbenefit", - "pk": 504, + "pk": "tdcs_elemental-warden_elemental-harmony", "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", - "parent": "tdcs_lyceum-student" + "name": "Elemental Harmony", + "desc": "Your upbringing surrounded by such strong, wild elemental magics has attuned your senses to the very nature of their chaotic forces, enabling you to subtly bend them to your will in small amounts. You learn the _Prestidigitation_ Cantrip, but can only produce the extremely minor effects below that involve the element of your chosen elemental tribe: \r\n* You create an instantaneous puff of wind strong enough to blow papers off a desk, or mess up someone’s hair (Wind). \r\n* You instantaneously create and control a burst of flame small enough to light or snuff out a candle, a torch, or a small campfire. (Fire). \r\n* You instantaneously create a small rock within your hand, no larger than a gold coin, that turns to dust after a minute (Earth). \r\n* You instantaneously create enough hot or cold water to fill a small glass (Water).", + "type": "feature", + "parent": "tdcs_elemental-warden" } }, { "model": "api_v2.backgroundbenefit", - "pk": 505, + "pk": "tdcs_elemental-warden_equipment", "fields": { "name": "Equipment", - "desc": "A set of fine clothes, a lyceum student uniform, a writing kit (small pouch with a quill, ink, folded parchment, and a small penknife), and a belt pouch containing 10g.", + "desc": "A staff, hunting gear (a shortbow with 20 arrows, or a hunting trap), a set of traveler’s clothes, a belt pouch containing 10 gp.", "type": "equipment", - "parent": "tdcs_lyceum-student" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 506, - "fields": { - "name": "Student Privilege", - "desc": "You’ve cleared enough lessons, and gained an ally or two on staff, to have access to certain chambers within the lyceum (and some other allied universities) that outsiders would not. This allows use of any Tool Kit, so long as the Tool Kit is used on the grounds of the lyceum and is not removed from its respective chamber (each tool kit is magically marked and will sound an alarm if removed). More dangerous kits and advanced crafts (such as use of a Poisoner’s Kit, or the enchanting of a magical item) might require staff supervision. You may also have access to free crafting materials and enchanting tables, so long as they are relatively inexpensive, or your argument for them is convincing (up to the staff’s approval and DM’s discretion).", - "type": "feature", - "parent": "tdcs_lyceum-student" + "parent": "tdcs_elemental-warden" } }, { "model": "api_v2.backgroundbenefit", - "pk": 507, + "pk": "tdcs_elemental-warden_languages", "fields": { - "name": "Suggested Characteristics", - "desc": "Use the tables for the Sage background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your pursuits at the lyceum. Your bond is likely associated with your goals as a student, and eventually a graduate. Your ideal probably involves your hopes in using the knowledge you gain at the lyceum, and your travels as an adventurer, to tailor the world to your liking.", - "type": "suggested_characteristics", - "parent": "tdcs_lyceum-student" + "name": "Languages", + "desc": "One of your choice.", + "type": "language", + "parent": "tdcs_elemental-warden" } }, { "model": "api_v2.backgroundbenefit", - "pk": 508, + "pk": "tdcs_elemental-warden_skill-proficiencies", "fields": { "name": "Skill Proficiencies", "desc": "Nature, plus your choice of one between Arcana or Survival.", @@ -121,17 +101,17 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 509, + "pk": "tdcs_elemental-warden_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", + "name": "Suggested Characteristics", + "desc": "Use the tables for the Outlander background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your ties to your upbringing. Your bond is likely associated with those you respect whom you grew up around. Your ideal probably involves your wanting to understand your place in the world, not just the tribe, and whether you feel your destiny reaches beyond just watching the rift.", + "type": "suggested_characteristics", "parent": "tdcs_elemental-warden" } }, { "model": "api_v2.backgroundbenefit", - "pk": 510, + "pk": "tdcs_elemental-warden_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "Herbalism Kit", @@ -141,57 +121,67 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 511, + "pk": "tdcs_fate-touched_fortunes-grace", "fields": { - "name": "Equipment", - "desc": "A staff, hunting gear (a shortbow with 20 arrows, or a hunting trap), a set of traveler’s clothes, a belt pouch containing 10 gp.", - "type": "equipment", - "parent": "tdcs_elemental-warden" + "name": "Fortune’s Grace", + "desc": "Your fate-touched essence occasionally leads surrounding events to shift in your favor. You gain 1 Luck point, as per the Lucky feat outlined within the Player’s Handbook pg 167. This luck point is used in the same fashion as the feat, and you regain this expended luck point when you finish a long rest. If you already have the Lucky feat, you add this luck point to your total for the feat.", + "type": "feature", + "parent": "tdcs_fate-touched" } }, { "model": "api_v2.backgroundbenefit", - "pk": 512, + "pk": "tdcs_lyceum-student_equipment", "fields": { - "name": "Elemental Harmony", - "desc": "Your upbringing surrounded by such strong, wild elemental magics has attuned your senses to the very nature of their chaotic forces, enabling you to subtly bend them to your will in small amounts. You learn the _Prestidigitation_ Cantrip, but can only produce the extremely minor effects below that involve the element of your chosen elemental tribe: \r\n* You create an instantaneous puff of wind strong enough to blow papers off a desk, or mess up someone’s hair (Wind). \r\n* You instantaneously create and control a burst of flame small enough to light or snuff out a candle, a torch, or a small campfire. (Fire). \r\n* You instantaneously create a small rock within your hand, no larger than a gold coin, that turns to dust after a minute (Earth). \r\n* You instantaneously create enough hot or cold water to fill a small glass (Water).", - "type": "feature", - "parent": "tdcs_elemental-warden" + "name": "Equipment", + "desc": "A set of fine clothes, a lyceum student uniform, a writing kit (small pouch with a quill, ink, folded parchment, and a small penknife), and a belt pouch containing 10g.", + "type": "equipment", + "parent": "tdcs_lyceum-student" } }, { "model": "api_v2.backgroundbenefit", - "pk": 513, + "pk": "tdcs_lyceum-student_languages", "fields": { - "name": "Suggested Characteristics", - "desc": "Use the tables for the Outlander background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your ties to your upbringing. Your bond is likely associated with those you respect whom you grew up around. Your ideal probably involves your wanting to understand your place in the world, not just the tribe, and whether you feel your destiny reaches beyond just watching the rift.", - "type": "suggested_characteristics", - "parent": "tdcs_elemental-warden" + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "tdcs_lyceum-student" } }, { "model": "api_v2.backgroundbenefit", - "pk": 514, + "pk": "tdcs_lyceum-student_skill-proficiencies", "fields": { "name": "Skill Proficiencies", - "desc": "Religion and Deception.", + "desc": "Your choice of two from among Arcana, History, and Persuasion.", "type": "skill_proficiency", - "parent": "tdcs_recovered-cultist" + "parent": "tdcs_lyceum-student" } }, { "model": "api_v2.backgroundbenefit", - "pk": 515, + "pk": "tdcs_lyceum-student_student-privilege", "fields": { - "name": "Languages", - "desc": "One of your choice.", - "type": "language", - "parent": "tdcs_recovered-cultist" + "name": "Student Privilege", + "desc": "You’ve cleared enough lessons, and gained an ally or two on staff, to have access to certain chambers within the lyceum (and some other allied universities) that outsiders would not. This allows use of any Tool Kit, so long as the Tool Kit is used on the grounds of the lyceum and is not removed from its respective chamber (each tool kit is magically marked and will sound an alarm if removed). More dangerous kits and advanced crafts (such as use of a Poisoner’s Kit, or the enchanting of a magical item) might require staff supervision. You may also have access to free crafting materials and enchanting tables, so long as they are relatively inexpensive, or your argument for them is convincing (up to the staff’s approval and DM’s discretion).", + "type": "feature", + "parent": "tdcs_lyceum-student" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "tdcs_lyceum-student_suggested-characteristics", + "fields": { + "name": "Suggested Characteristics", + "desc": "Use the tables for the Sage background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your pursuits at the lyceum. Your bond is likely associated with your goals as a student, and eventually a graduate. Your ideal probably involves your hopes in using the knowledge you gain at the lyceum, and your travels as an adventurer, to tailor the world to your liking.", + "type": "suggested_characteristics", + "parent": "tdcs_lyceum-student" } }, { "model": "api_v2.backgroundbenefit", - "pk": 516, + "pk": "tdcs_recovered-cultist_equipment", "fields": { "name": "Equipment", "desc": "Vestments and a holy symbol of your previous cult, a set of common clothes, a belt pouch containing 15 gp.", @@ -201,17 +191,27 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 517, + "pk": "tdcs_recovered-cultist_languages", "fields": { - "name": "Wicked Awareness", - "desc": "Your time worshipping in secrecy and shadow at the altar of malevolent forces has left you with insight and keen awareness to those who still operate in such ways. You can often spot hidden signs, messages, and signals left in populated places. If actively seeking signs of a cult or dark following, you have an easier time locating and decoding the signs or social interactions that signify cult activity, gaining advantage on any ability checks to discover such details.", - "type": "feature", + "name": "Languages", + "desc": "One of your choice.", + "type": "language", "parent": "tdcs_recovered-cultist" } }, { "model": "api_v2.backgroundbenefit", - "pk": 518, + "pk": "tdcs_recovered-cultist_skill-proficiencies", + "fields": { + "name": "Skill Proficiencies", + "desc": "Religion and Deception.", + "type": "skill_proficiency", + "parent": "tdcs_recovered-cultist" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "tdcs_recovered-cultist_suggested-characteristics", "fields": { "name": "Suggested Characteristics", "desc": "Use the tables for the Acolyte background in the Player’s Handbook as the basis for your traits and motivations, modifying the entries when appropriate to match your ties to your intent on fleeing your past and rectifying your future. Your bond is likely associated with those who gave you the insight and strength to flee your old ways. Your ideal probably involves your wishing to take down and destroy those who promote the dark ways you escaped, and perhaps finding new faith in a forgiving god.", @@ -221,12 +221,12 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 519, + "pk": "tdcs_recovered-cultist_wicked-awareness", "fields": { - "name": "Fortune’s Grace", - "desc": "Your fate-touched essence occasionally leads surrounding events to shift in your favor. You gain 1 Luck point, as per the Lucky feat outlined within the Player’s Handbook pg 167. This luck point is used in the same fashion as the feat, and you regain this expended luck point when you finish a long rest. If you already have the Lucky feat, you add this luck point to your total for the feat.", + "name": "Wicked Awareness", + "desc": "Your time worshipping in secrecy and shadow at the altar of malevolent forces has left you with insight and keen awareness to those who still operate in such ways. You can often spot hidden signs, messages, and signals left in populated places. If actively seeking signs of a cult or dark following, you have an easier time locating and decoding the signs or social interactions that signify cult activity, gaining advantage on any ability checks to discover such details.", "type": "feature", - "parent": "tdcs_fate-touched" + "parent": "tdcs_recovered-cultist" } } ] diff --git a/data/v2/kobold-press/toh/BackgroundBenefit.json b/data/v2/kobold-press/toh/BackgroundBenefit.json index eee896cb..d47e1bea 100644 --- a/data/v2/kobold-press/toh/BackgroundBenefit.json +++ b/data/v2/kobold-press/toh/BackgroundBenefit.json @@ -1,37 +1,67 @@ [ { "model": "api_v2.backgroundbenefit", - "pk": 18, + "pk": "toh_court-servant_equipment", + "fields": { + "name": "Equipment", + "desc": "A set of artisan's tools of your choice, a unique piece of jewelry, a set of fine clothes, a handcrafted pipe, and a belt pouch containing 20 gp", + "type": "equipment", + "parent": "toh_court-servant" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "toh_court-servant_languages", + "fields": { + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_court-servant" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "toh_court-servant_servants-invisibility", + "fields": { + "name": "Servant's Invisibility", + "desc": "The art of excellent service requires a balance struck between being always available and yet unobtrusive, and you've mastered it. If you don't perform a visible action, speak or be spoken to, or otherwise have attention drawn to you for at least 1 minute, creatures nearby have trouble remembering you are even in the room. Until you speak, perform a visible action, or have someone draw attention to you, creatures must succeed on a Wisdom (Perception) check (DC equal to 8 + your Charisma modifier + your proficiency bonus) to notice you. Otherwise, they conduct themselves as though you aren't present until either attention is drawn to you or one of their actions would take them into or within 5 feet of the space you occupy.", + "type": "feature", + "parent": "toh_court-servant" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "toh_court-servant_skill-proficiencies", "fields": { "name": "Skill Proficiencies", - "desc": "Perception, Survival", + "desc": "History, Insight", "type": "skill_proficiency", - "parent": "toh_desert-runner" + "parent": "toh_court-servant" } }, { "model": "api_v2.backgroundbenefit", - "pk": 19, + "pk": "toh_court-servant_suggested-characteristics", "fields": { - "name": "Tool Proficiencies", - "desc": "Herbalist kit", - "type": "tool_proficiency", - "parent": "toh_desert-runner" + "name": "Suggested Characteristics", + "desc": "Court servants tend to be outwardly quiet and soft-spoken, but their insight into the nuances of conversation and societal happenings is unparalleled. When in crowds or around strangers, most court servants keep to themselves, quietly observing their surroundings and later sharing such observations with those they trust.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Unless I must speak, I hold my breath while serving others. |\r\n| 2 | It takes all my effort not to show the effusive emotions I feel when I help others. Best to quietly serve. |\r\n| 3 | It's getting harder to tolerate the prejudices of those I serve daily. |\r\n| 4 | Though the old ways are hard to give up, I want to be my own boss. I'll decide my path. |\r\n| 5 | Serving my family and friends is the only thing I truly care about. |\r\n| 6 | City life is killing my soul. I long for the old courtly ways. |\r\n| 7 | It's time for my fellows to wake up and be taken advantage of no longer. |\r\n| 8 | It's the small things that make it all worthwhile. I try to be present in every moment. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Family. My family, whether the one I come from or the one I make, is the thing in this world most worth protecting. (Any) |\r\n| 2 | Service. I am most rewarded when I know I have performed a valuable service for another. (Good) |\r\n| 3 | Sloth. What's the point of helping anyone now that I've been discarded? (Chaotic) |\r\n| 4 | Compassion. I can't resist helping anyone in need. (Good) |\r\n| 5 | Tradition. Life under my master's rule was best, and things should be kept as close to their ideals as possible. (Lawful) |\r\n| 6 | Joy. The pursuit of happiness is the only thing worth serving anymore. (Neutral) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My family needs me to provide for them. They mean everything to me, which means I'll do whatever it takes. |\r\n| 2 | My kin have served this holding and its lords and ladies for generations. I serve them faithfully to make my lineage proud. |\r\n| 3 | I can't read the inscriptions on this odd ring, but it's all I have left of my family and our history of loyal service. |\r\n| 4 | I'm with the best friends a person can ask for, so why do I feel so lonesome and homesick? |\r\n| 5 | I've found a profession where my skills are put to good use, and I won't let anyone bring me down. |\r\n| 6 | I found peace in a special garden filled with beautiful life, but I only have this flower to remind me. Someday I'll remember where to find that garden. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 |\r\n| 2 | I'm afraid of taking risks that might be good for me. |\r\n| 3 | I believe my master's people are superior to all others, and I'm not afraid to share that truth. |\r\n| 4 | I always do as I'm told, even though sometimes I don't think I should. |\r\n| 5 | I know what's best for everyone, and they'd all be better off if they'd follow my advice. |\r\n| 6 | I can't stand seeing ugly or depressing things. I'd much rather think happy thoughts. |", + "type": "suggested_characteristics", + "parent": "toh_court-servant" } }, { "model": "api_v2.backgroundbenefit", - "pk": 20, + "pk": "toh_court-servant_tool-proficiencies", "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "toh_desert-runner" + "name": "Tool Proficiencies", + "desc": "One artisan's tools set of your choice", + "type": "tool_proficiency", + "parent": "toh_court-servant" } }, { "model": "api_v2.backgroundbenefit", - "pk": 21, + "pk": "toh_desert-runner_equipment", "fields": { "name": "Equipment", "desc": "Traveler's clothes, herbalist kit, waterskin, pouch with 10 gp", @@ -41,87 +71,87 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 22, + "pk": "toh_desert-runner_languages", "fields": { - "name": "Nomad", - "desc": "Living in the open desert has allowed your body to adapt to a range of environmental conditions. You can survive on 1 gallon of water in hot conditions (or 1/2 gallon in normal conditions) without being forced to make Constitution saving throws, and you are considered naturally adapted to hot climates. While in a desert, you can read the environment to predict natural weather patterns and temperatures for the next 24 hours, allowing you to cross dangerous terrain at the best times. The accuracy of your predictions is up to the GM, but they should be reliable unless affected by magic or unforeseeable events, such as distant earthquakes or volcanic eruptions.", - "type": "feature", + "name": "Languages", + "desc": "One of your choice", + "type": "language", "parent": "toh_desert-runner" } }, { "model": "api_v2.backgroundbenefit", - "pk": 23, + "pk": "toh_desert-runner_nomad", "fields": { - "name": "Suggested Characteristics", - "desc": "Those raised in the desert can be the friendliest of humanoids—knowing allies are better than enemies in that harsh environment—or territorial and warlike, believing that protecting food and water sources by force is the only way to survive.\r\n\r\n| d8 | Personality Trait |\r\n| --- | --- |\r\n| 1 | I'm much happier sleeping under the stars than in a bed in a stuffy caravanserai. |\r\n| 2 | It's always best to help a traveler in need; one day it might be you. | \r\n| 3 | I am slow to trust strangers, but I'm extremely loyal to my friends. | \r\n| 4 | If there's a camel race, I'm the first to saddle up! | \r\n| 5 | I always have a tale or poem to share at the campfire. | \r\n| 6 | I don't like sleeping in the same place more than two nights in a row. | \r\n| 7 | I've been troubled by dreams for the last month. I am determined to uncover their meaning. | \r\n| 8 | I feel lonelier in a crowded city than I do out on the empty desert sands. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greater Good.** The needs of the whole tribe outweigh those of the individuals who are part of it. (Good) |\r\n| 2 | **Nature.** I must do what I can to protect the beautiful wilderness from those who would do it harm. (Neutral) |\r\n| 3 | **Tradition.** I am duty-bound to follow my tribe's age-old route through the desert. (Lawful) |\r\n 4 | **Change.** Things seldom stay the same and we must always be prepared to go with the flow. (Chaotic) |\r\n| 5 | **Honor.** If I behave dishonorably, my actions will bring shame upon the entire tribe. (Lawful) |\r\n| 6 | **Greed.** Seize what you want if no one gives it to you freely. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I am the last living member of my tribe, and I cannot let their deaths go unavenged. |\r\n| 2 | I follow the spiritual path of my tribe; it will bring me to the best afterlife when the time comes. |\r\n| 3 | My best friend has been sold into slavery to devils, and I need to rescue them before it is too late. |\r\n| 4 | A nature spirit saved my life when I was dying of thirst in the desert. |\r\n| 5 | My takoba sword is my most prized possession; for over two centuries, it's been handed down from generation to generation. |\r\n| 6 | I have sworn revenge on the sheikh who unjustly banished me from the tribe. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I enjoy the company of camels more than people. |\r\n| 2 | I can be loud and boorish after a few wineskins. |\r\n| 3 | If I feel insulted, I'll refuse to speak to anyone for several hours. |\r\n| 4 | I enjoy violence and mayhem a bit too much. |\r\n| 5 | You can't rely on me in a crisis. |\r\n| 6 | I betrayed my brother to cultists to save my own skin. |", - "type": "suggested_characteristics", + "name": "Nomad", + "desc": "Living in the open desert has allowed your body to adapt to a range of environmental conditions. You can survive on 1 gallon of water in hot conditions (or 1/2 gallon in normal conditions) without being forced to make Constitution saving throws, and you are considered naturally adapted to hot climates. While in a desert, you can read the environment to predict natural weather patterns and temperatures for the next 24 hours, allowing you to cross dangerous terrain at the best times. The accuracy of your predictions is up to the GM, but they should be reliable unless affected by magic or unforeseeable events, such as distant earthquakes or volcanic eruptions.", + "type": "feature", "parent": "toh_desert-runner" } }, { "model": "api_v2.backgroundbenefit", - "pk": 35, + "pk": "toh_desert-runner_skill-proficiencies", "fields": { "name": "Skill Proficiencies", - "desc": "History, Insight", + "desc": "Perception, Survival", "type": "skill_proficiency", - "parent": "toh_court-servant" + "parent": "toh_desert-runner" } }, { "model": "api_v2.backgroundbenefit", - "pk": 36, + "pk": "toh_desert-runner_suggested-characteristics", "fields": { - "name": "Tool Proficiencies", - "desc": "One artisan's tools set of your choice", - "type": "tool_proficiency", - "parent": "toh_court-servant" + "name": "Suggested Characteristics", + "desc": "Those raised in the desert can be the friendliest of humanoids—knowing allies are better than enemies in that harsh environment—or territorial and warlike, believing that protecting food and water sources by force is the only way to survive.\r\n\r\n| d8 | Personality Trait |\r\n| --- | --- |\r\n| 1 | I'm much happier sleeping under the stars than in a bed in a stuffy caravanserai. |\r\n| 2 | It's always best to help a traveler in need; one day it might be you. | \r\n| 3 | I am slow to trust strangers, but I'm extremely loyal to my friends. | \r\n| 4 | If there's a camel race, I'm the first to saddle up! | \r\n| 5 | I always have a tale or poem to share at the campfire. | \r\n| 6 | I don't like sleeping in the same place more than two nights in a row. | \r\n| 7 | I've been troubled by dreams for the last month. I am determined to uncover their meaning. | \r\n| 8 | I feel lonelier in a crowded city than I do out on the empty desert sands. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greater Good.** The needs of the whole tribe outweigh those of the individuals who are part of it. (Good) |\r\n| 2 | **Nature.** I must do what I can to protect the beautiful wilderness from those who would do it harm. (Neutral) |\r\n| 3 | **Tradition.** I am duty-bound to follow my tribe's age-old route through the desert. (Lawful) |\r\n 4 | **Change.** Things seldom stay the same and we must always be prepared to go with the flow. (Chaotic) |\r\n| 5 | **Honor.** If I behave dishonorably, my actions will bring shame upon the entire tribe. (Lawful) |\r\n| 6 | **Greed.** Seize what you want if no one gives it to you freely. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I am the last living member of my tribe, and I cannot let their deaths go unavenged. |\r\n| 2 | I follow the spiritual path of my tribe; it will bring me to the best afterlife when the time comes. |\r\n| 3 | My best friend has been sold into slavery to devils, and I need to rescue them before it is too late. |\r\n| 4 | A nature spirit saved my life when I was dying of thirst in the desert. |\r\n| 5 | My takoba sword is my most prized possession; for over two centuries, it's been handed down from generation to generation. |\r\n| 6 | I have sworn revenge on the sheikh who unjustly banished me from the tribe. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I enjoy the company of camels more than people. |\r\n| 2 | I can be loud and boorish after a few wineskins. |\r\n| 3 | If I feel insulted, I'll refuse to speak to anyone for several hours. |\r\n| 4 | I enjoy violence and mayhem a bit too much. |\r\n| 5 | You can't rely on me in a crisis. |\r\n| 6 | I betrayed my brother to cultists to save my own skin. |", + "type": "suggested_characteristics", + "parent": "toh_desert-runner" } }, { "model": "api_v2.backgroundbenefit", - "pk": 37, + "pk": "toh_desert-runner_tool-proficiencies", "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", - "parent": "toh_court-servant" + "name": "Tool Proficiencies", + "desc": "Herbalist kit", + "type": "tool_proficiency", + "parent": "toh_desert-runner" } }, { "model": "api_v2.backgroundbenefit", - "pk": 38, + "pk": "toh_destined_equipment", "fields": { "name": "Equipment", - "desc": "A set of artisan's tools of your choice, a unique piece of jewelry, a set of fine clothes, a handcrafted pipe, and a belt pouch containing 20 gp", + "desc": "A dagger, quarterstaff, or spear, a set of traveler's clothes, a memento of your destiny (a keepsake from your betrothed, the seal of your destined office, your family signet ring, or similar), a belt pouch containing 15 gp", "type": "equipment", - "parent": "toh_court-servant" + "parent": "toh_destined" } }, { "model": "api_v2.backgroundbenefit", - "pk": 39, + "pk": "toh_destined_languages", "fields": { - "name": "Servant's Invisibility", - "desc": "The art of excellent service requires a balance struck between being always available and yet unobtrusive, and you've mastered it. If you don't perform a visible action, speak or be spoken to, or otherwise have attention drawn to you for at least 1 minute, creatures nearby have trouble remembering you are even in the room. Until you speak, perform a visible action, or have someone draw attention to you, creatures must succeed on a Wisdom (Perception) check (DC equal to 8 + your Charisma modifier + your proficiency bonus) to notice you. Otherwise, they conduct themselves as though you aren't present until either attention is drawn to you or one of their actions would take them into or within 5 feet of the space you occupy.", - "type": "feature", - "parent": "toh_court-servant" + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_destined" } }, { "model": "api_v2.backgroundbenefit", - "pk": 40, + "pk": "toh_destined_reputation-of-opportunity", "fields": { - "name": "Suggested Characteristics", - "desc": "Court servants tend to be outwardly quiet and soft-spoken, but their insight into the nuances of conversation and societal happenings is unparalleled. When in crowds or around strangers, most court servants keep to themselves, quietly observing their surroundings and later sharing such observations with those they trust.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Unless I must speak, I hold my breath while serving others. |\r\n| 2 | It takes all my effort not to show the effusive emotions I feel when I help others. Best to quietly serve. |\r\n| 3 | It's getting harder to tolerate the prejudices of those I serve daily. |\r\n| 4 | Though the old ways are hard to give up, I want to be my own boss. I'll decide my path. |\r\n| 5 | Serving my family and friends is the only thing I truly care about. |\r\n| 6 | City life is killing my soul. I long for the old courtly ways. |\r\n| 7 | It's time for my fellows to wake up and be taken advantage of no longer. |\r\n| 8 | It's the small things that make it all worthwhile. I try to be present in every moment. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Family. My family, whether the one I come from or the one I make, is the thing in this world most worth protecting. (Any) |\r\n| 2 | Service. I am most rewarded when I know I have performed a valuable service for another. (Good) |\r\n| 3 | Sloth. What's the point of helping anyone now that I've been discarded? (Chaotic) |\r\n| 4 | Compassion. I can't resist helping anyone in need. (Good) |\r\n| 5 | Tradition. Life under my master's rule was best, and things should be kept as close to their ideals as possible. (Lawful) |\r\n| 6 | Joy. The pursuit of happiness is the only thing worth serving anymore. (Neutral) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My family needs me to provide for them. They mean everything to me, which means I'll do whatever it takes. |\r\n| 2 | My kin have served this holding and its lords and ladies for generations. I serve them faithfully to make my lineage proud. |\r\n| 3 | I can't read the inscriptions on this odd ring, but it's all I have left of my family and our history of loyal service. |\r\n| 4 | I'm with the best friends a person can ask for, so why do I feel so lonesome and homesick? |\r\n| 5 | I've found a profession where my skills are put to good use, and I won't let anyone bring me down. |\r\n| 6 | I found peace in a special garden filled with beautiful life, but I only have this flower to remind me. Someday I'll remember where to find that garden. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 |\r\n| 2 | I'm afraid of taking risks that might be good for me. |\r\n| 3 | I believe my master's people are superior to all others, and I'm not afraid to share that truth. |\r\n| 4 | I always do as I'm told, even though sometimes I don't think I should. |\r\n| 5 | I know what's best for everyone, and they'd all be better off if they'd follow my advice. |\r\n| 6 | I can't stand seeing ugly or depressing things. I'd much rather think happy thoughts. |", - "type": "suggested_characteristics", - "parent": "toh_court-servant" + "name": "Reputation of Opportunity", + "desc": "Your story precedes you, as does your quest to claim—or run away from—your destiny. Those in positions of power, such as nobles, bureaucrats, rich merchants, and even mercenaries and brigands, all look to either help or hinder you, based on what they think they may get out of it. They're always willing to meet with you briefly to see just how worthwhile such aid or interference might be. This might mean a traveler pays for your passage on a ferry, a generous benefactor covers your group's meals at a tavern, or a local governor invites your adventuring entourage to enjoy a night's stay in their guest quarters. However, the aid often includes an implied threat or request. Some might consider delaying you as long as politely possible, some might consider taking you prisoner for ransom or to do “what's best” for you, and others might decide to help you on your quest in exchange for some future assistance. You're never exactly sure of the associated “cost” of the person's aid until the moment arrives. In the meantime, the open road awaits.", + "type": "feature", + "parent": "toh_destined" } }, { "model": "api_v2.backgroundbenefit", - "pk": 67, + "pk": "toh_destined_skill-proficiencies", "fields": { "name": "Skill Proficiencies", "desc": "History, Insight", @@ -131,17 +161,17 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 68, + "pk": "toh_destined_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", + "name": "Suggested Characteristics", + "desc": "Destined characters might be running toward or away from destiny, but whatever the case, their destiny has shaped them. Think about the impact of your destiny on you and the kind of relationship you have with your destiny. Do you embrace it? Accept it as inevitable? Or do you fight it every step of the way?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm eager to find this destiny and move on with the next stage in my life. |\r\n| 2 | I keep the fire of my hope burning bright. I'm sure this will work out for the best. |\r\n| 3 | Fate has a way of finding you no matter what you do. I'm resigned to whatever they have planned for me, but I'll enjoy my time on the way. |\r\n| 4 | I owe it to myself or to those who helped establish this destiny. I'm determined to follow this through to the end. |\r\n| 5 | I don't know what this path means for me or my future. I'm more afraid of going back to that destiny than of seeing what's out in the world. |\r\n| 6 | I didn't ask for this, and I don't want it. I'm bitter that I must change my life for it. |\r\n| 7 | Few have been chosen to complete this lifepath, and I'm proud to be one of them. |\r\n| 8 | Who can say how this will work out? The world is an uncertain place, and I'll find my destiny when it finds me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Inevitability.** What's coming can't be stopped, and I'm dedicated to making it happen. (Evil) |\r\n| 2 | **Tradition.** I'm part of a cycle that has repeated for generations. I can't deny that. (Any) |\r\n| 3 | **Defiance.** No one can make me be something I don't want to be. (Any) |\r\n| 4 | **Greater Good.** Completing my duty ensures the betterment of my family, community, or region. (Good) |\r\n| 5 | **Power.** If I can take this role and be successful, I'll have opportunities to do whatever I want. (Chaotic) |\r\n| 6 | **Responsibility.** It doesn't matter if I want it or not; it's what I'm supposed to do. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | The true gift of my destiny is the friendships I make along the way to it. |\r\n| 2 | The benefits of completing this destiny will strengthen my family for years to come. |\r\n| 3 | Trying to alter my decision regarding my destiny is an unthinkable affront to me. |\r\n| 4 | How I reach my destiny is just as important as how I accomplish my destiny. |\r\n| 5 | People expect me to complete this task. I don't know how I feel about succeeding or failing, but I'm committed to it. |\r\n| 6 | Without this role fulfilled, the people of my home region will suffer, and that's not acceptable. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If you don't have a destiny, are you really special? |\r\n| 2 | But I am the “Chosen One.” |\r\n| 3 | I fear commitment; that's what this boils down to in the end. |\r\n| 4 | What if I follow through with this and I fail? |\r\n| 5 | It doesn't matter what someone else sacrificed for this. I only care about my feelings. |\r\n| 6 | Occasionally—ok, maybe “often”—I make poor decisions in life, like running from this destiny. |", + "type": "suggested_characteristics", "parent": "toh_destined" } }, { "model": "api_v2.backgroundbenefit", - "pk": 69, + "pk": "toh_destined_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "No additional tool proficiencies", @@ -151,37 +181,37 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 70, + "pk": "toh_diplomat_a-friend-in-every-port", "fields": { - "name": "Equipment", - "desc": "A dagger, quarterstaff, or spear, a set of traveler's clothes, a memento of your destiny (a keepsake from your betrothed, the seal of your destined office, your family signet ring, or similar), a belt pouch containing 15 gp", - "type": "equipment", - "parent": "toh_destined" + "name": "A Friend in Every Port", + "desc": "Your reputation as a peacemaker precedes you, or people recognize your easy demeanor, typically allowing you to attain food and lodging at a discount. In addition, people are predisposed to warn you about dangers in a location, alert you when a threat approaches you, or seek out your help for resolving conflicts between locals.", + "type": "feature", + "parent": "toh_diplomat" } }, { "model": "api_v2.backgroundbenefit", - "pk": 71, + "pk": "toh_diplomat_equipment", "fields": { - "name": "Reputation of Opportunity", - "desc": "Your story precedes you, as does your quest to claim—or run away from—your destiny. Those in positions of power, such as nobles, bureaucrats, rich merchants, and even mercenaries and brigands, all look to either help or hinder you, based on what they think they may get out of it. They're always willing to meet with you briefly to see just how worthwhile such aid or interference might be. This might mean a traveler pays for your passage on a ferry, a generous benefactor covers your group's meals at a tavern, or a local governor invites your adventuring entourage to enjoy a night's stay in their guest quarters. However, the aid often includes an implied threat or request. Some might consider delaying you as long as politely possible, some might consider taking you prisoner for ransom or to do “what's best” for you, and others might decide to help you on your quest in exchange for some future assistance. You're never exactly sure of the associated “cost” of the person's aid until the moment arrives. In the meantime, the open road awaits.", - "type": "feature", - "parent": "toh_destined" + "name": "Equipment", + "desc": "A set of fine clothes, a letter of passage from a local minor authority or traveling papers that signify you as a traveling diplomat, and a belt pouch containing 20 gp", + "type": "equipment", + "parent": "toh_diplomat" } }, { "model": "api_v2.backgroundbenefit", - "pk": 72, + "pk": "toh_diplomat_languages", "fields": { - "name": "Suggested Characteristics", - "desc": "Destined characters might be running toward or away from destiny, but whatever the case, their destiny has shaped them. Think about the impact of your destiny on you and the kind of relationship you have with your destiny. Do you embrace it? Accept it as inevitable? Or do you fight it every step of the way?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm eager to find this destiny and move on with the next stage in my life. |\r\n| 2 | I keep the fire of my hope burning bright. I'm sure this will work out for the best. |\r\n| 3 | Fate has a way of finding you no matter what you do. I'm resigned to whatever they have planned for me, but I'll enjoy my time on the way. |\r\n| 4 | I owe it to myself or to those who helped establish this destiny. I'm determined to follow this through to the end. |\r\n| 5 | I don't know what this path means for me or my future. I'm more afraid of going back to that destiny than of seeing what's out in the world. |\r\n| 6 | I didn't ask for this, and I don't want it. I'm bitter that I must change my life for it. |\r\n| 7 | Few have been chosen to complete this lifepath, and I'm proud to be one of them. |\r\n| 8 | Who can say how this will work out? The world is an uncertain place, and I'll find my destiny when it finds me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Inevitability.** What's coming can't be stopped, and I'm dedicated to making it happen. (Evil) |\r\n| 2 | **Tradition.** I'm part of a cycle that has repeated for generations. I can't deny that. (Any) |\r\n| 3 | **Defiance.** No one can make me be something I don't want to be. (Any) |\r\n| 4 | **Greater Good.** Completing my duty ensures the betterment of my family, community, or region. (Good) |\r\n| 5 | **Power.** If I can take this role and be successful, I'll have opportunities to do whatever I want. (Chaotic) |\r\n| 6 | **Responsibility.** It doesn't matter if I want it or not; it's what I'm supposed to do. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | The true gift of my destiny is the friendships I make along the way to it. |\r\n| 2 | The benefits of completing this destiny will strengthen my family for years to come. |\r\n| 3 | Trying to alter my decision regarding my destiny is an unthinkable affront to me. |\r\n| 4 | How I reach my destiny is just as important as how I accomplish my destiny. |\r\n| 5 | People expect me to complete this task. I don't know how I feel about succeeding or failing, but I'm committed to it. |\r\n| 6 | Without this role fulfilled, the people of my home region will suffer, and that's not acceptable. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If you don't have a destiny, are you really special? |\r\n| 2 | But I am the “Chosen One.” |\r\n| 3 | I fear commitment; that's what this boils down to in the end. |\r\n| 4 | What if I follow through with this and I fail? |\r\n| 5 | It doesn't matter what someone else sacrificed for this. I only care about my feelings. |\r\n| 6 | Occasionally—ok, maybe “often”—I make poor decisions in life, like running from this destiny. |", - "type": "suggested_characteristics", - "parent": "toh_destined" + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "toh_diplomat" } }, { "model": "api_v2.backgroundbenefit", - "pk": 73, + "pk": "toh_diplomat_skill-proficiencies", "fields": { "name": "Skill Proficiencies", "desc": "Insight, Persuasion", @@ -191,17 +221,17 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 74, + "pk": "toh_diplomat_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", + "name": "Suggested Characteristics", + "desc": "Diplomats always have kind words and encourage their companions to think positively when encountering upsetting situations or people. Diplomats have their limits, however, and are quick to discover when someone is negotiating in bad faith.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I like to travel, meet new people, and learn about different customs. |\r\n| 2 | I intercede in minor squabbles to find common ground on all sides.|\r\n| 3 | I never disparage others, even when they might deserve such treatment.|\r\n| 4 | I always try to make a new friend wherever I travel, and when I return to those areas, I seek out my friends. |\r\n| 5 | I have learned how to damn with faint praise, but I only use it when someone has irked me. |\r\n| 6 | I am not opposed to throwing a bit of coin around to ensure a good first impression. |\r\n| 7 | Even when words fail at the outset, I still try to calm tempers. |\r\n| 8 | I treat everyone as an equal, and I encourage others to do likewise. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Harmony.** I want everyone to get along. (Good) |\r\n| 2 | **Contractual.** When I resolve a conflict, I ensure all parties formally acknowledge the resolution. (Lawful) |\r\n| 3 | **Selfishness.** I use my way with words to benefit myself the most. (Evil) 4 Freedom. Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 4 | **Freedom.** Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 5 | **Avoidance.** A kind word is preferable to the drawing of a sword. (Any) |\r\n| 6 | **Unity.** It is possible to achieve a world without borders and without conflict. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|------|\r\n| 1 | I want to engineer a treaty with far-reaching effects in the world. |\r\n| 2 | I am carrying out someone else's agenda and making favorable arrangements for my benefactor. |\r\n| 3 | A deal I brokered went sour, and I am trying to make amends for my mistake. |\r\n| 4 | My nation treats everyone equitably, and I'd like to bring that enlightenment to other nations. |\r\n| 5 | A traveling orator taught me the power of words, and I want to emulate that person. |\r\n| 6 | I fear a worldwide conflict is imminent, and I want to do all I can to stop it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I always start by appealing to a better nature from those I face, regardless of their apparent hostility. |\r\n| 2 | I assume the best in everyone, even if I have been betrayed by that trust in the past. |\r\n| 3 | I will stand in the way of an ally to ensure conflicts don't start. |\r\n| 4 | I believe I can always talk my way out of a problem. |\r\n| 5 | I chastise those who are rude or use vulgar language. |\r\n| 6 | When I feel I am on the verge of a successful negotiation, I often push my luck to obtain further concessions. |", + "type": "suggested_characteristics", "parent": "toh_diplomat" } }, { "model": "api_v2.backgroundbenefit", - "pk": 75, + "pk": "toh_diplomat_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "No additional tool proficiencies", @@ -211,37 +241,37 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 76, + "pk": "toh_forest-dweller_equipment", "fields": { "name": "Equipment", - "desc": "A set of fine clothes, a letter of passage from a local minor authority or traveling papers that signify you as a traveling diplomat, and a belt pouch containing 20 gp", + "desc": "A set of common clothes, a hunting trap, a wood staff, a whetstone, an explorer's pack, and a pouch containing 5 gp", "type": "equipment", - "parent": "toh_diplomat" + "parent": "toh_forest-dweller" } }, { "model": "api_v2.backgroundbenefit", - "pk": 77, + "pk": "toh_forest-dweller_forester", "fields": { - "name": "A Friend in Every Port", - "desc": "Your reputation as a peacemaker precedes you, or people recognize your easy demeanor, typically allowing you to attain food and lodging at a discount. In addition, people are predisposed to warn you about dangers in a location, alert you when a threat approaches you, or seek out your help for resolving conflicts between locals.", + "name": "Forester", + "desc": "Your experience living, hunting, and foraging in the woods gives you a wealth of experience to draw upon when you are traveling within a forest. If you spend 1 hour observing, examining, and exploring your surroundings while in a forest, you are able to identify a safe location to rest. The area is protected from all but the most extreme elements and from the nonmagical native beasts of the forest. In addition, you are able to find sufficient kindling for a small fire throughout the night.\r\n\r\n### Life-Changing Event\r\nYou have lived a simple life deep in the sheltering boughs of the forest, be it as a trapper, farmer, or villager eking out a simple existence in the forest. But something happened that set you on a different path and marked you for greater things. Choose or randomly determine a defining event that caused you to leave your home for the wider world. \r\n\r\n| d8 | Event |\r\n|---|---|\r\n| 1 | You were living within the forest when cesspools of magical refuse from a nearby city expanded and drove away the game that sustained you. You had to move to avoid the prospect of a long, slow demise via starvation. |\r\n| 2 | Your village was razed by a contingent of undead. For reasons of its own, the forest and its denizens protected and hid you from their raid. |\r\n| 3 | A roving band of skeletons and zombies attacked your family while you were hunting. |\r\n| 4 | You are an ardent believer in the preservation of the forest and the natural world. When the people of your village abandoned those beliefs, you were cast out and expelled into the forest. |\r\n| 5 | You wandered into the forest as a child and became lost. For inexplicable reasons, the forest took an interest in you. You have faint memories of a village and have had no contact with civilization in many years. |\r\n| 6 | You were your village's premier hunter. They relied on you for game and without your contributions their survival in the winter was questionable. Upon returning from your last hunt, you found your village in ruins, as if decades had passed overnight. |\r\n| 7 | Your quiet, peaceful, and solitary existence has been interrupted with dreams of the forest's destruction, and the urge to leave your home compels you to seek answers. |\r\n| 8 | Once in a hidden glen, you danced with golden fey and forgotten gods. Nothing in your life since approaches that transcendent moment, cursing you with a wanderlust to seek something that could. |", "type": "feature", - "parent": "toh_diplomat" + "parent": "toh_forest-dweller" } }, { "model": "api_v2.backgroundbenefit", - "pk": 78, + "pk": "toh_forest-dweller_languages", "fields": { - "name": "Suggested Characteristics", - "desc": "Diplomats always have kind words and encourage their companions to think positively when encountering upsetting situations or people. Diplomats have their limits, however, and are quick to discover when someone is negotiating in bad faith.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I like to travel, meet new people, and learn about different customs. |\r\n| 2 | I intercede in minor squabbles to find common ground on all sides.|\r\n| 3 | I never disparage others, even when they might deserve such treatment.|\r\n| 4 | I always try to make a new friend wherever I travel, and when I return to those areas, I seek out my friends. |\r\n| 5 | I have learned how to damn with faint praise, but I only use it when someone has irked me. |\r\n| 6 | I am not opposed to throwing a bit of coin around to ensure a good first impression. |\r\n| 7 | Even when words fail at the outset, I still try to calm tempers. |\r\n| 8 | I treat everyone as an equal, and I encourage others to do likewise. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Harmony.** I want everyone to get along. (Good) |\r\n| 2 | **Contractual.** When I resolve a conflict, I ensure all parties formally acknowledge the resolution. (Lawful) |\r\n| 3 | **Selfishness.** I use my way with words to benefit myself the most. (Evil) 4 Freedom. Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 4 | **Freedom.** Tyranny is a roadblock to compromise. (Chaotic) |\r\n| 5 | **Avoidance.** A kind word is preferable to the drawing of a sword. (Any) |\r\n| 6 | **Unity.** It is possible to achieve a world without borders and without conflict. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|------|\r\n| 1 | I want to engineer a treaty with far-reaching effects in the world. |\r\n| 2 | I am carrying out someone else's agenda and making favorable arrangements for my benefactor. |\r\n| 3 | A deal I brokered went sour, and I am trying to make amends for my mistake. |\r\n| 4 | My nation treats everyone equitably, and I'd like to bring that enlightenment to other nations. |\r\n| 5 | A traveling orator taught me the power of words, and I want to emulate that person. |\r\n| 6 | I fear a worldwide conflict is imminent, and I want to do all I can to stop it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I always start by appealing to a better nature from those I face, regardless of their apparent hostility. |\r\n| 2 | I assume the best in everyone, even if I have been betrayed by that trust in the past. |\r\n| 3 | I will stand in the way of an ally to ensure conflicts don't start. |\r\n| 4 | I believe I can always talk my way out of a problem. |\r\n| 5 | I chastise those who are rude or use vulgar language. |\r\n| 6 | When I feel I am on the verge of a successful negotiation, I often push my luck to obtain further concessions. |", - "type": "suggested_characteristics", - "parent": "toh_diplomat" + "name": "Languages", + "desc": "Sylvan", + "type": "language", + "parent": "toh_forest-dweller" } }, { "model": "api_v2.backgroundbenefit", - "pk": 79, + "pk": "toh_forest-dweller_skill-proficiencies", "fields": { "name": "Skill Proficiencies", "desc": "Nature, Survival", @@ -251,17 +281,17 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 80, + "pk": "toh_forest-dweller_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "Sylvan", - "type": "language", + "name": "Suggested Characteristics", + "desc": "Forest dwellers tend toward solitude, introspection, and self-sufficiency. You keep your own council, and you are more likely to watch from a distance than get involved in the affairs of others. You are wary, slow to trust, and cautious of depending on outsiders.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will never forget being hungry in the winter. I field dress beasts that fall to blade or arrow so that I am never hungry again. |\r\n| 2 | I may be alone in the forest, but I am only ever lonely in cities. |\r\n| 3 | Walking barefoot allows me to interact more intuitively with the natural world. |\r\n| 4 | The road is just another kind of wall. I make my own paths and go where I will. |\r\n| 5 | Others seek the gods in temples and shrines, but I know their will is only revealed in the natural world, not an edifice constructed by socalled worshippers. I pray in the woods, never indoors. |\r\n| 6 | What you call personal hygiene, I call an artificially imposed distraction from natural living. |\r\n| 7 | No forged weapon can replace the sheer joy of a kill accomplished only with hands and teeth. |\r\n| 8 | Time lived alone has made me accustomed to talking loudly to myself, something I still do even when others are present. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Change. As the seasons shift, so too does the world around us. To resist is futile and anathema to the natural order. (Chaotic) |\r\n| 2 | Conservation. All life should be preserved and, if needed, protected. (Good) |\r\n| 3 | Acceptance. I am a part of my forest, no different from any other flora and fauna. To think otherwise is arrogance and folly. When I die, it will be as a leaf falling in the woods. (Neutral) |\r\n| 4 | Cull. The weak must be removed for the strong to thrive. (Evil) |\r\n| 5 | Candor. I am open, plain, and simple in life, word, and actions. (Any) |\r\n| 6 | Balance. The forest does not lie. The beasts do not create war. Equity in all things is the way of nature. (Neutral) |\r\n\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | When I lose a trusted friend or companion, I plant a tree upon their grave. |\r\n| 2 | The voice of the forest guides me, comforts me, and protects me. |\r\n| 3 | The hermit who raised me and taught me the ways of the forest is the most important person in my life. |\r\n| 4 | I have a wooden doll, a tiny wickerman, that I made as a child and carry with me at all times. |\r\n| 5 | I know the ways of civilizations rise and fall. The forest and the Old Ways are eternal. |\r\n| 6 | I am driven to protect the natural order from those that would disrupt it. |\r\n\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am accustomed to doing what I like when I like. I'm bad at compromising, and I must exert real effort to make even basic conversation with other people. |\r\n| 2 | I won't harm a beast without just cause or provocation. |\r\n| 3 | Years of isolated living has left me blind to the nuances of social interaction. It is a struggle not to view every new encounter through the lens of fight or flight. |\r\n| 4 | The decay after death is merely the loam from which new growth springs—and I enjoy nurturing new growth. |\r\n| 5 | An accident that I caused incurred great damage upon my forest, and, as penance, I have placed myself in self-imposed exile. |\r\n| 6 | I distrust the undead and the unliving, and I refuse to work with them. |", + "type": "suggested_characteristics", "parent": "toh_forest-dweller" } }, { "model": "api_v2.backgroundbenefit", - "pk": 81, + "pk": "toh_forest-dweller_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "Woodcarver's tools, Herbalism kit", @@ -271,37 +301,37 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 82, + "pk": "toh_former-adventurer_equipment", "fields": { "name": "Equipment", - "desc": "A set of common clothes, a hunting trap, a wood staff, a whetstone, an explorer's pack, and a pouch containing 5 gp", + "desc": "A dagger, quarterstaff, or shortsword (if proficient), an old souvenir from your previous adventuring days, a set of traveler's clothes, 50 feet of hempen rope, and a belt pouch containing 15 gp", "type": "equipment", - "parent": "toh_forest-dweller" + "parent": "toh_former-adventurer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 83, + "pk": "toh_former-adventurer_languages", "fields": { - "name": "Forester", - "desc": "Your experience living, hunting, and foraging in the woods gives you a wealth of experience to draw upon when you are traveling within a forest. If you spend 1 hour observing, examining, and exploring your surroundings while in a forest, you are able to identify a safe location to rest. The area is protected from all but the most extreme elements and from the nonmagical native beasts of the forest. In addition, you are able to find sufficient kindling for a small fire throughout the night.\r\n\r\n### Life-Changing Event\r\nYou have lived a simple life deep in the sheltering boughs of the forest, be it as a trapper, farmer, or villager eking out a simple existence in the forest. But something happened that set you on a different path and marked you for greater things. Choose or randomly determine a defining event that caused you to leave your home for the wider world. \r\n\r\n| d8 | Event |\r\n|---|---|\r\n| 1 | You were living within the forest when cesspools of magical refuse from a nearby city expanded and drove away the game that sustained you. You had to move to avoid the prospect of a long, slow demise via starvation. |\r\n| 2 | Your village was razed by a contingent of undead. For reasons of its own, the forest and its denizens protected and hid you from their raid. |\r\n| 3 | A roving band of skeletons and zombies attacked your family while you were hunting. |\r\n| 4 | You are an ardent believer in the preservation of the forest and the natural world. When the people of your village abandoned those beliefs, you were cast out and expelled into the forest. |\r\n| 5 | You wandered into the forest as a child and became lost. For inexplicable reasons, the forest took an interest in you. You have faint memories of a village and have had no contact with civilization in many years. |\r\n| 6 | You were your village's premier hunter. They relied on you for game and without your contributions their survival in the winter was questionable. Upon returning from your last hunt, you found your village in ruins, as if decades had passed overnight. |\r\n| 7 | Your quiet, peaceful, and solitary existence has been interrupted with dreams of the forest's destruction, and the urge to leave your home compels you to seek answers. |\r\n| 8 | Once in a hidden glen, you danced with golden fey and forgotten gods. Nothing in your life since approaches that transcendent moment, cursing you with a wanderlust to seek something that could. |", - "type": "feature", - "parent": "toh_forest-dweller" + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_former-adventurer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 84, + "pk": "toh_former-adventurer_old-friends-and-enemies", "fields": { - "name": "Suggested Characteristics", - "desc": "Forest dwellers tend toward solitude, introspection, and self-sufficiency. You keep your own council, and you are more likely to watch from a distance than get involved in the affairs of others. You are wary, slow to trust, and cautious of depending on outsiders.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will never forget being hungry in the winter. I field dress beasts that fall to blade or arrow so that I am never hungry again. |\r\n| 2 | I may be alone in the forest, but I am only ever lonely in cities. |\r\n| 3 | Walking barefoot allows me to interact more intuitively with the natural world. |\r\n| 4 | The road is just another kind of wall. I make my own paths and go where I will. |\r\n| 5 | Others seek the gods in temples and shrines, but I know their will is only revealed in the natural world, not an edifice constructed by socalled worshippers. I pray in the woods, never indoors. |\r\n| 6 | What you call personal hygiene, I call an artificially imposed distraction from natural living. |\r\n| 7 | No forged weapon can replace the sheer joy of a kill accomplished only with hands and teeth. |\r\n| 8 | Time lived alone has made me accustomed to talking loudly to myself, something I still do even when others are present. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Change. As the seasons shift, so too does the world around us. To resist is futile and anathema to the natural order. (Chaotic) |\r\n| 2 | Conservation. All life should be preserved and, if needed, protected. (Good) |\r\n| 3 | Acceptance. I am a part of my forest, no different from any other flora and fauna. To think otherwise is arrogance and folly. When I die, it will be as a leaf falling in the woods. (Neutral) |\r\n| 4 | Cull. The weak must be removed for the strong to thrive. (Evil) |\r\n| 5 | Candor. I am open, plain, and simple in life, word, and actions. (Any) |\r\n| 6 | Balance. The forest does not lie. The beasts do not create war. Equity in all things is the way of nature. (Neutral) |\r\n\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | When I lose a trusted friend or companion, I plant a tree upon their grave. |\r\n| 2 | The voice of the forest guides me, comforts me, and protects me. |\r\n| 3 | The hermit who raised me and taught me the ways of the forest is the most important person in my life. |\r\n| 4 | I have a wooden doll, a tiny wickerman, that I made as a child and carry with me at all times. |\r\n| 5 | I know the ways of civilizations rise and fall. The forest and the Old Ways are eternal. |\r\n| 6 | I am driven to protect the natural order from those that would disrupt it. |\r\n\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am accustomed to doing what I like when I like. I'm bad at compromising, and I must exert real effort to make even basic conversation with other people. |\r\n| 2 | I won't harm a beast without just cause or provocation. |\r\n| 3 | Years of isolated living has left me blind to the nuances of social interaction. It is a struggle not to view every new encounter through the lens of fight or flight. |\r\n| 4 | The decay after death is merely the loam from which new growth springs—and I enjoy nurturing new growth. |\r\n| 5 | An accident that I caused incurred great damage upon my forest, and, as penance, I have placed myself in self-imposed exile. |\r\n| 6 | I distrust the undead and the unliving, and I refuse to work with them. |", - "type": "suggested_characteristics", - "parent": "toh_forest-dweller" + "name": "Old Friends and Enemies", + "desc": "Your previous career as an adventurer might have been brief or long. Either way, you certainly journeyed far and met people along the way. Some of these acquaintances might remember you fondly for aiding them in their time of need. On the other hand, others may be suspicious, or even hostile, because of your past actions. When you least expect it, or maybe just when you need it, you might encounter someone who knows you from your previous adventuring career. These people work in places high and low, their fortunes varying widely. The individual responds appropriately based on your mutual history, helping or hindering you at the GM's discretion.", + "type": "feature", + "parent": "toh_former-adventurer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 85, + "pk": "toh_former-adventurer_skill-proficiencies", "fields": { "name": "Skill Proficiencies", "desc": "Perception, Survival", @@ -311,17 +341,17 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 86, + "pk": "toh_former-adventurer_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", + "name": "Suggested Characteristics", + "desc": "Former adventurers bring a level of practical experience that fledgling heroes can't match. However, the decisions, outcomes, successes, and failures of your previous career often weigh heavily on your mind. The past seldom remains in the past. How you rise to these new (or old) challenges determines the outcome of your new career.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I have a thousand stories about every aspect of the adventuring life. |\r\n| 2 | My past is my own, and to the pit with anyone who pushes me about it. |\r\n| 3 | I can endure any hardship without complaint. |\r\n| 4 | I have a list of rules for surviving adventures, and I refer to them often. |\r\n| 5 | It's a dangerous job, and I take my pleasures when I can. |\r\n| 6 | I can't help mentioning all the famous friends I've met before. |\r\n| 7 | Anyone who doesn't recognize me is clearly not someone worth knowing. |\r\n| 8 | I've seen it all. If you don't listen to me, you're going to get us all killed. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Strength.** Experience tells me there are no rules to war. Only victory matters. (Evil) |\r\n| 2 | **Growth.** I strive to improve myself and prove my worth to my companions—and to myself. (Any) |\r\n| 3 | **Thrill.** I am only happy when I am facing danger with my life on the line. (Any) |\r\n| 4 | **Generous.** If I can help someone in danger, I will. (Good) |\r\n| 5 | **Ambition.** I may have lost my renown, but nothing will stop me from reclaiming it. (Chaotic) |\r\n| 6 | **Responsibility.** Any cost to myself is far less than the price of doing nothing. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will end the monsters who killed my family and pulled me back into the adventuring life. |\r\n| 2 | A disaster made me retire once. Now I will stop it from happening to anyone else. |\r\n| 3 | My old weapon has been my trusted companion for years. It's my lucky charm. |\r\n| 4 | My family doesn't understand why I became an adventurer again, which is why I send them souvenirs, letters, or sketches of exciting encounters in my travels. |\r\n| 5 | I was a famous adventurer once. This time, I will be even more famous, or die trying. |\r\n| 6 | Someone is impersonating me. I will hunt them down and restore my reputation. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | It's all about me! Haven't you learned that by now? |\r\n| 2 | I can identify every weapon and item with a look. |\r\n| 3 | You think this is bad? Let me tell you about something really frightening. |\r\n| 4 | Sure, I have old foes around every corner, but who doesn't? |\r\n| 5 | I'm getting too old for this. |\r\n| 6 | Seeing the bad side in everything just protects you from inevitable disappointment. |", + "type": "suggested_characteristics", "parent": "toh_former-adventurer" } }, { "model": "api_v2.backgroundbenefit", - "pk": 87, + "pk": "toh_former-adventurer_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "No additional tool proficiencies", @@ -331,37 +361,37 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 88, + "pk": "toh_freebooter_a-friendly-face-in-every-port", "fields": { - "name": "Equipment", - "desc": "A dagger, quarterstaff, or shortsword (if proficient), an old souvenir from your previous adventuring days, a set of traveler's clothes, 50 feet of hempen rope, and a belt pouch containing 15 gp", - "type": "equipment", - "parent": "toh_former-adventurer" + "name": "A Friendly Face in Every Port", + "desc": "Your reputation precedes you. Whenever you visit a port city, you can always find someone who knows of (or has sailed on) your former ship and is familiar with its captain and crew. They are willing to provide you and your traveling companions with a roof over your head, a bed for the night, and a decent meal. If you have a reputation for cruelty and savagery, your host is probably afraid of you and will be keen for you to leave as soon as possible. Otherwise, you receive a warm welcome, and your host keeps your presence a secret, if needed. They may also provide you with useful information about recent goings-on in the city, including which ships have been in and out of port.", + "type": "feature", + "parent": "toh_freebooter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 89, + "pk": "toh_freebooter_equipment", "fields": { - "name": "Old Friends and Enemies", - "desc": "Your previous career as an adventurer might have been brief or long. Either way, you certainly journeyed far and met people along the way. Some of these acquaintances might remember you fondly for aiding them in their time of need. On the other hand, others may be suspicious, or even hostile, because of your past actions. When you least expect it, or maybe just when you need it, you might encounter someone who knows you from your previous adventuring career. These people work in places high and low, their fortunes varying widely. The individual responds appropriately based on your mutual history, helping or hindering you at the GM's discretion.", - "type": "feature", - "parent": "toh_former-adventurer" + "name": "Equipment", + "desc": "A pirate flag from your ship, several tattoos, 50 feet of rope, a set of traveler's clothes, and a belt pouch containing 10 gp", + "type": "equipment", + "parent": "toh_freebooter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 90, + "pk": "toh_freebooter_languages", "fields": { - "name": "Suggested Characteristics", - "desc": "Former adventurers bring a level of practical experience that fledgling heroes can't match. However, the decisions, outcomes, successes, and failures of your previous career often weigh heavily on your mind. The past seldom remains in the past. How you rise to these new (or old) challenges determines the outcome of your new career.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I have a thousand stories about every aspect of the adventuring life. |\r\n| 2 | My past is my own, and to the pit with anyone who pushes me about it. |\r\n| 3 | I can endure any hardship without complaint. |\r\n| 4 | I have a list of rules for surviving adventures, and I refer to them often. |\r\n| 5 | It's a dangerous job, and I take my pleasures when I can. |\r\n| 6 | I can't help mentioning all the famous friends I've met before. |\r\n| 7 | Anyone who doesn't recognize me is clearly not someone worth knowing. |\r\n| 8 | I've seen it all. If you don't listen to me, you're going to get us all killed. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Strength.** Experience tells me there are no rules to war. Only victory matters. (Evil) |\r\n| 2 | **Growth.** I strive to improve myself and prove my worth to my companions—and to myself. (Any) |\r\n| 3 | **Thrill.** I am only happy when I am facing danger with my life on the line. (Any) |\r\n| 4 | **Generous.** If I can help someone in danger, I will. (Good) |\r\n| 5 | **Ambition.** I may have lost my renown, but nothing will stop me from reclaiming it. (Chaotic) |\r\n| 6 | **Responsibility.** Any cost to myself is far less than the price of doing nothing. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will end the monsters who killed my family and pulled me back into the adventuring life. |\r\n| 2 | A disaster made me retire once. Now I will stop it from happening to anyone else. |\r\n| 3 | My old weapon has been my trusted companion for years. It's my lucky charm. |\r\n| 4 | My family doesn't understand why I became an adventurer again, which is why I send them souvenirs, letters, or sketches of exciting encounters in my travels. |\r\n| 5 | I was a famous adventurer once. This time, I will be even more famous, or die trying. |\r\n| 6 | Someone is impersonating me. I will hunt them down and restore my reputation. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | It's all about me! Haven't you learned that by now? |\r\n| 2 | I can identify every weapon and item with a look. |\r\n| 3 | You think this is bad? Let me tell you about something really frightening. |\r\n| 4 | Sure, I have old foes around every corner, but who doesn't? |\r\n| 5 | I'm getting too old for this. |\r\n| 6 | Seeing the bad side in everything just protects you from inevitable disappointment. |", - "type": "suggested_characteristics", - "parent": "toh_former-adventurer" + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_freebooter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 91, + "pk": "toh_freebooter_skill-proficiencies", "fields": { "name": "Skill Proficiencies", "desc": "Athletics, Survival", @@ -371,17 +401,17 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 92, + "pk": "toh_freebooter_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", + "name": "Suggested Characteristics", + "desc": "Freebooters are a boisterous lot, but their personalities include freedom-loving mavericks and mindless thugs. Nonetheless, sailing a ship requires discipline, and freebooters tend to be reliable and aware of their role on board, even if they do their own thing once fighting breaks out. Most still yearn for the sea, and some feel shame or regret for past deeds.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm happiest when I'm on a gently rocking vessel, staring at the distant horizon. |\r\n| 2 | Every time we hoisted the mainsail and raised the pirate flag, I felt butterflies in my stomach. |\r\n| 3 | I have lovers in a dozen different ports. Most of them don't know about the others. |\r\n| 4 | Being a pirate has taught me more swear words and bawdy jokes than I ever knew existed. I like to try them out when I meet new people. |\r\n| 5 | One day I hope to have enough gold to fill a tub so I can bathe in it. |\r\n| 6 | There's nothing I enjoy more than a good scrap—the bloodier, the better. |\r\n| 7 | When a storm is blowing and the rain is lashing the deck, I'll be out there getting drenched. It makes me feel so alive! |\r\n| 8 | Nothing makes me more annoyed than a badly tied knot. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** No one tells me what to do or where to go. Apart from the captain. (Chaotic) |\r\n| 2 | **Greed.** I'm only in it for the booty. I'll gladly stab anyone stupid enough to stand in my way. (Evil) |\r\n| 3 | **Comradery.** My former shipmates are my family. I'll do anything for them. (Neutral) |\r\n| 4 | **Greater Good.** No man has the right to enslave another, or to profit from slavery. (Good) |\r\n| 5 | **Code.** I may be on dry land now, but I still stick to the Freebooter's Code. (Lawful) |\r\n| 6 | **Aspiration.** One day I'll return to the sea as the captain of my own ship. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | Anti-slavery pirates rescued me from a slave ship. I owe them my life. |\r\n| 2 | I still feel a deep attachment to my ship. Some nights I dream her figurehead is talking to me. |\r\n| 3 | I was the ship's captain until the crew mutinied and threw me overboard to feed the sharks. I swam to a small island and survived. Vengeance will be mine! |\r\n| 4 | Years ago, when my city was attacked, I fled the city on a small fleet bound for a neighboring city. I arrived back in the ruined city a few weeks ago on the same ship and can remember nothing of the voyage. |\r\n| 5 | I fell asleep when I was supposed to be on watch, allowing our ship to be taken by surprise. I still have nightmares about my shipmates who died in the fighting. |\r\n| 6 | One of my shipmates was captured and sold into slavery. I need to rescue them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm terrified by the desert. Not enough water, far too much sand. |\r\n| 2 | I drink too much and end up starting barroom brawls. |\r\n| 3 | I killed one of my shipmates and took his share of the loot. |\r\n| 4 | I take unnecessary risks and often put my friends in danger. |\r\n| 5 | I sold captives taken at sea to traders. |\r\n| 6 | Most of the time, I find it impossible to tell the truth. |", + "type": "suggested_characteristics", "parent": "toh_freebooter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 93, + "pk": "toh_freebooter_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "Navigator's tools, vehicles (water)", @@ -391,37 +421,37 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 94, + "pk": "toh_gamekeeper_confirmed-guildmember", "fields": { - "name": "Equipment", - "desc": "A pirate flag from your ship, several tattoos, 50 feet of rope, a set of traveler's clothes, and a belt pouch containing 10 gp", - "type": "equipment", - "parent": "toh_freebooter" + "name": "Confirmed Guildmember", + "desc": "As a recognized member of the Gamekeepers' Guild, you are knowledgeable in the care, training, and habits of animals used for hunting. With 30 days' of work and at least 2 gp for each day, you can train a raptor, such as a hawk, falcon, or owl, or a hunting dog, such as a hound, terrier, or cur, to become a hunting companion. Use the statistics of an owl for the raptor and the statistics of a jackal for the hunting dog. A hunting companion is trained to obey and respond to a series of one-word commands or signals, communicating basic concepts such as *attack*, *protect*, *retrieve*, *find*, *hide*, or similar. The companion can know up to six such commands and can be trained to obey a number of creatures, other than you, equal to your proficiency bonus. A hunting companion travels with you wherever you go, unless you enter a particularly dangerous environment (such as a poisonous swamp), or you command the companion to stay elsewhere. A hunting companion doesn't join you in combat and stays on the edge of any conflict until it is safe to return to your side. When traveling overland with a hunting companion, you can use the companion to find sufficient food to sustain yourself and up to five other people each day. You can have only one hunting companion at a time.", + "type": "feature", + "parent": "toh_gamekeeper" } }, { "model": "api_v2.backgroundbenefit", - "pk": 95, + "pk": "toh_gamekeeper_equipment", "fields": { - "name": "A Friendly Face in Every Port", - "desc": "Your reputation precedes you. Whenever you visit a port city, you can always find someone who knows of (or has sailed on) your former ship and is familiar with its captain and crew. They are willing to provide you and your traveling companions with a roof over your head, a bed for the night, and a decent meal. If you have a reputation for cruelty and savagery, your host is probably afraid of you and will be keen for you to leave as soon as possible. Otherwise, you receive a warm welcome, and your host keeps your presence a secret, if needed. They may also provide you with useful information about recent goings-on in the city, including which ships have been in and out of port.", - "type": "feature", - "parent": "toh_freebooter" + "name": "Equipment", + "desc": "A set of leatherworker's tools, a hunting trap, fishing tackle, a set of traveler's clothes, and a belt pouch containing 10 gp", + "type": "equipment", + "parent": "toh_gamekeeper" } }, { "model": "api_v2.backgroundbenefit", - "pk": 96, + "pk": "toh_gamekeeper_languages", "fields": { - "name": "Suggested Characteristics", - "desc": "Freebooters are a boisterous lot, but their personalities include freedom-loving mavericks and mindless thugs. Nonetheless, sailing a ship requires discipline, and freebooters tend to be reliable and aware of their role on board, even if they do their own thing once fighting breaks out. Most still yearn for the sea, and some feel shame or regret for past deeds.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm happiest when I'm on a gently rocking vessel, staring at the distant horizon. |\r\n| 2 | Every time we hoisted the mainsail and raised the pirate flag, I felt butterflies in my stomach. |\r\n| 3 | I have lovers in a dozen different ports. Most of them don't know about the others. |\r\n| 4 | Being a pirate has taught me more swear words and bawdy jokes than I ever knew existed. I like to try them out when I meet new people. |\r\n| 5 | One day I hope to have enough gold to fill a tub so I can bathe in it. |\r\n| 6 | There's nothing I enjoy more than a good scrap—the bloodier, the better. |\r\n| 7 | When a storm is blowing and the rain is lashing the deck, I'll be out there getting drenched. It makes me feel so alive! |\r\n| 8 | Nothing makes me more annoyed than a badly tied knot. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** No one tells me what to do or where to go. Apart from the captain. (Chaotic) |\r\n| 2 | **Greed.** I'm only in it for the booty. I'll gladly stab anyone stupid enough to stand in my way. (Evil) |\r\n| 3 | **Comradery.** My former shipmates are my family. I'll do anything for them. (Neutral) |\r\n| 4 | **Greater Good.** No man has the right to enslave another, or to profit from slavery. (Good) |\r\n| 5 | **Code.** I may be on dry land now, but I still stick to the Freebooter's Code. (Lawful) |\r\n| 6 | **Aspiration.** One day I'll return to the sea as the captain of my own ship. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | Anti-slavery pirates rescued me from a slave ship. I owe them my life. |\r\n| 2 | I still feel a deep attachment to my ship. Some nights I dream her figurehead is talking to me. |\r\n| 3 | I was the ship's captain until the crew mutinied and threw me overboard to feed the sharks. I swam to a small island and survived. Vengeance will be mine! |\r\n| 4 | Years ago, when my city was attacked, I fled the city on a small fleet bound for a neighboring city. I arrived back in the ruined city a few weeks ago on the same ship and can remember nothing of the voyage. |\r\n| 5 | I fell asleep when I was supposed to be on watch, allowing our ship to be taken by surprise. I still have nightmares about my shipmates who died in the fighting. |\r\n| 6 | One of my shipmates was captured and sold into slavery. I need to rescue them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm terrified by the desert. Not enough water, far too much sand. |\r\n| 2 | I drink too much and end up starting barroom brawls. |\r\n| 3 | I killed one of my shipmates and took his share of the loot. |\r\n| 4 | I take unnecessary risks and often put my friends in danger. |\r\n| 5 | I sold captives taken at sea to traders. |\r\n| 6 | Most of the time, I find it impossible to tell the truth. |", - "type": "suggested_characteristics", - "parent": "toh_freebooter" + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_gamekeeper" } }, { "model": "api_v2.backgroundbenefit", - "pk": 97, + "pk": "toh_gamekeeper_skill-proficiencies", "fields": { "name": "Skill Proficiencies", "desc": "Animal Handling, Persuasion", @@ -431,17 +461,17 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 98, + "pk": "toh_gamekeeper_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", + "name": "Suggested Characteristics", + "desc": "You are one of the capable people who maintains hunting preserves, trains coursing hounds and circling raptors, and plans the safe outings that allow fair nobles, rich merchants, visiting dignitaries, and their entourages to venture into preserves and forests to seek their quarry. You are as comfortable hunting quarry in the forest as you are conversing with members of the elite who have an interest in hunting.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nature has lessons to teach us all, and I'm always happy to share them. |\r\n| 2 | Once while out on a hunt, something happened which was very relatable to our current situation. Let me tell you about it. |\r\n| 3 | My friends are my new charges, and I'll make sure they thrive. |\r\n| 4 | Preparation and knowledge are the key to any success. |\r\n| 5 | I've dealt with all sorts of wealthy and noble folk, and I've seen just how spoiled they can be. |\r\n| 6 | I feel like my animals are the only ones who really understand me. |\r\n| 7 | You can train yourself to accomplish anything you put your mind to accomplishing. |\r\n| 8 | The world shows you everything you need to know to understand a situation. You just have to be paying attention to the details. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Dedication. Your willingness to get the job done, no matter what the cost, is what is most important. (Evil) |\r\n| 2 | Training. You sink to the level of your training more often than you rise to the occasion. (Any) |\r\n| 3 | Prestige. Pride in your training, your work, and your results is what is best in life. (Any) |\r\n| 4 | Diligent. Hard work and attention to detail bring success more often than failure. (Good) |\r\n| 5 | Nature. The glory and majesty of the wild world outshine anything mortals create. (Chaotic) |\r\n| 6 | Responsibility. When you take an oath to protect and shepherd something, that oath is for life. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I understand animals better than people, and the way of the hunter just makes sense. |\r\n| 2 | I take great pride in providing my services to the wealthy and influential. |\r\n| 3 | Natural spaces need to be tended and preserved, and I take joy in doing it when I can. |\r\n| 4 | I need to ensure people know how to manage nature rather than live in ignorance. |\r\n| 5 | Laws are important to prevent nature's overexploitation. |\r\n| 6 | I can be alone in the wilderness and not feel lonely. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Individuals can be all right, but civilization is the worst. |\r\n| 2 | The wealthy and nobility are a rot in society. |\r\n| 3 | Things die, either by predators or nature; get used to it. |\r\n| 4 | Everything can be managed if you want it badly enough. |\r\n| 5 | When you make exceptions, you allow unworthy or wasteful things to survive. |\r\n| 6 | If you don't work hard for something, is it worth anything? |", + "type": "suggested_characteristics", "parent": "toh_gamekeeper" } }, { "model": "api_v2.backgroundbenefit", - "pk": 99, + "pk": "toh_gamekeeper_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "Leatherworker's tools", @@ -451,37 +481,37 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 100, + "pk": "toh_innkeeper_equipment", "fields": { "name": "Equipment", - "desc": "A set of leatherworker's tools, a hunting trap, fishing tackle, a set of traveler's clothes, and a belt pouch containing 10 gp", + "desc": "A set of either brewer's supplies or cook's utensils, a dagger or light hammer, traveler's clothes, and a pouch containing 20 gp", "type": "equipment", - "parent": "toh_gamekeeper" + "parent": "toh_innkeeper" } }, { "model": "api_v2.backgroundbenefit", - "pk": 101, + "pk": "toh_innkeeper_i-know-someone", "fields": { - "name": "Confirmed Guildmember", - "desc": "As a recognized member of the Gamekeepers' Guild, you are knowledgeable in the care, training, and habits of animals used for hunting. With 30 days' of work and at least 2 gp for each day, you can train a raptor, such as a hawk, falcon, or owl, or a hunting dog, such as a hound, terrier, or cur, to become a hunting companion. Use the statistics of an owl for the raptor and the statistics of a jackal for the hunting dog. A hunting companion is trained to obey and respond to a series of one-word commands or signals, communicating basic concepts such as *attack*, *protect*, *retrieve*, *find*, *hide*, or similar. The companion can know up to six such commands and can be trained to obey a number of creatures, other than you, equal to your proficiency bonus. A hunting companion travels with you wherever you go, unless you enter a particularly dangerous environment (such as a poisonous swamp), or you command the companion to stay elsewhere. A hunting companion doesn't join you in combat and stays on the edge of any conflict until it is safe to return to your side. When traveling overland with a hunting companion, you can use the companion to find sufficient food to sustain yourself and up to five other people each day. You can have only one hunting companion at a time.", + "name": "I Know Someone", + "desc": "In interacting with the wide variety of people who graced the tables and bars of your previous life, you gained an excellent knowledge of who might be able to perform a particular task, provide the right service, sell the perfect item, or be able to connect you with someone who can. You can spend a couple of hours in a town or city and identify a person or place of business capable of selling the product or service you seek, provided the product is nonmagical and isn't worth more than 250 gp. At the GM's discretion, these restrictions can be lifted in certain locations. The price might not always be what you hoped, the quality might not necessarily be the best, or the person's demeanor may be grating, but you can find the product or service. In addition, you know within the first hour if the product or service you desire doesn't exist in the community, such as a coldweather outfit in a tropical fishing village.", "type": "feature", - "parent": "toh_gamekeeper" + "parent": "toh_innkeeper" } }, { "model": "api_v2.backgroundbenefit", - "pk": 102, + "pk": "toh_innkeeper_languages", "fields": { - "name": "Suggested Characteristics", - "desc": "You are one of the capable people who maintains hunting preserves, trains coursing hounds and circling raptors, and plans the safe outings that allow fair nobles, rich merchants, visiting dignitaries, and their entourages to venture into preserves and forests to seek their quarry. You are as comfortable hunting quarry in the forest as you are conversing with members of the elite who have an interest in hunting.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nature has lessons to teach us all, and I'm always happy to share them. |\r\n| 2 | Once while out on a hunt, something happened which was very relatable to our current situation. Let me tell you about it. |\r\n| 3 | My friends are my new charges, and I'll make sure they thrive. |\r\n| 4 | Preparation and knowledge are the key to any success. |\r\n| 5 | I've dealt with all sorts of wealthy and noble folk, and I've seen just how spoiled they can be. |\r\n| 6 | I feel like my animals are the only ones who really understand me. |\r\n| 7 | You can train yourself to accomplish anything you put your mind to accomplishing. |\r\n| 8 | The world shows you everything you need to know to understand a situation. You just have to be paying attention to the details. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Dedication. Your willingness to get the job done, no matter what the cost, is what is most important. (Evil) |\r\n| 2 | Training. You sink to the level of your training more often than you rise to the occasion. (Any) |\r\n| 3 | Prestige. Pride in your training, your work, and your results is what is best in life. (Any) |\r\n| 4 | Diligent. Hard work and attention to detail bring success more often than failure. (Good) |\r\n| 5 | Nature. The glory and majesty of the wild world outshine anything mortals create. (Chaotic) |\r\n| 6 | Responsibility. When you take an oath to protect and shepherd something, that oath is for life. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I understand animals better than people, and the way of the hunter just makes sense. |\r\n| 2 | I take great pride in providing my services to the wealthy and influential. |\r\n| 3 | Natural spaces need to be tended and preserved, and I take joy in doing it when I can. |\r\n| 4 | I need to ensure people know how to manage nature rather than live in ignorance. |\r\n| 5 | Laws are important to prevent nature's overexploitation. |\r\n| 6 | I can be alone in the wilderness and not feel lonely. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Individuals can be all right, but civilization is the worst. |\r\n| 2 | The wealthy and nobility are a rot in society. |\r\n| 3 | Things die, either by predators or nature; get used to it. |\r\n| 4 | Everything can be managed if you want it badly enough. |\r\n| 5 | When you make exceptions, you allow unworthy or wasteful things to survive. |\r\n| 6 | If you don't work hard for something, is it worth anything? |", - "type": "suggested_characteristics", - "parent": "toh_gamekeeper" + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "toh_innkeeper" } }, { "model": "api_v2.backgroundbenefit", - "pk": 103, + "pk": "toh_innkeeper_skill-proficiencies", "fields": { "name": "Skill Proficiencies", "desc": "Insight plus one of your choice from among Intimidation or Persuasion", @@ -491,17 +521,17 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 104, + "pk": "toh_innkeeper_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", + "name": "Suggested Characteristics", + "desc": "The day-to-day operation of a tavern or inn teaches many lessons about people and how they interact.\r\n\r\nThe nose for trouble, the keen eye on the kegs, and the ready hand on a truncheon translates well to the life of an adventurer.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I insist on doing all the cooking, and I plan strategies like I cook—with proper measurements and all the right ingredients. |\r\n| 2 | Lending a sympathetic ear or a shoulder to cry on often yields unexpected benefits. |\r\n| 3 | I always have a story or tale to relate to any situation. |\r\n| 4 | There is a world of tastes and flavors to explore. |\r\n| 5 | Few problems can't be solved with judicious application of a stout cudgel. |\r\n| 6 | I never pass up the chance to bargain. Never. |\r\n| 7 | I demand the finest accommodations; I know what they're worth. |\r\n| 8 | I can defuse a situation with a joke, cutting remark, or arched eyebrow. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Service.** If we serve others, they will serve us in turn. (Lawful) |\r\n| 2 | **Perspective.** People will tell you a great deal about themselves, their situations, and their desires, if you listen. (Any) |\r\n| 3 | **Determination.** Giving up is not in my nature. (Any) |\r\n| 4 | **Charity.** I try to have extra coins to buy a meal for someone in need. (Good) |\r\n| 5 | **Curiosity.** Staying safe never allows you to see the wonders of the world. (Chaotic) |\r\n| 6 | **Selfish.** We must make sure we bargain for what our skills are worth; people don't value what you give away for free. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I started my career in a tavern, and I'll end it running one of my very own. |\r\n| 2 | I try to ensure stories of my companions will live on forever. |\r\n| 3 | You want to take the measure of a person? Have a meal or drink with them. |\r\n| 4 | I've seen the dregs of life pass through my door, and I will never end up like them. |\r\n| 5 | A mysterious foe burned down my inn, and I will have my revenge. |\r\n| 6 | One day, I want my story to be sung in all the taverns of my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I can't help teasing or criticizing those less intelligent than I. |\r\n| 2 | I love rich food and drink, and I never miss a chance at a good meal. |\r\n| 3 | I never trust anyone who won't drink with me. |\r\n| 4 | I hate it when people start fights in bars; they never consider the consequences. |\r\n| 5 | I can't stand to see someone go hungry or sleep in the cold if I can help it. |\r\n| 6 | I am quick to anger if anyone doesn't like my meals or brews. If you don't like it, do it yourself. |", + "type": "suggested_characteristics", "parent": "toh_innkeeper" } }, { "model": "api_v2.backgroundbenefit", - "pk": 105, + "pk": "toh_innkeeper_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "No additional tool proficiencies", @@ -511,57 +541,57 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 106, + "pk": "toh_mercenary-company-scion_equipment", "fields": { "name": "Equipment", - "desc": "A set of either brewer's supplies or cook's utensils, a dagger or light hammer, traveler's clothes, and a pouch containing 20 gp", + "desc": "A backpack, a signet ring emblazoned with the symbol of your family's free company, a musical instrument of your choice, a mess kit, a set of traveler's clothes, and a belt pouch containing 20 gp", "type": "equipment", - "parent": "toh_innkeeper" + "parent": "toh_mercenary-company-scion" } }, { "model": "api_v2.backgroundbenefit", - "pk": 107, + "pk": "toh_mercenary-company-scion_languages", "fields": { - "name": "I Know Someone", - "desc": "In interacting with the wide variety of people who graced the tables and bars of your previous life, you gained an excellent knowledge of who might be able to perform a particular task, provide the right service, sell the perfect item, or be able to connect you with someone who can. You can spend a couple of hours in a town or city and identify a person or place of business capable of selling the product or service you seek, provided the product is nonmagical and isn't worth more than 250 gp. At the GM's discretion, these restrictions can be lifted in certain locations. The price might not always be what you hoped, the quality might not necessarily be the best, or the person's demeanor may be grating, but you can find the product or service. In addition, you know within the first hour if the product or service you desire doesn't exist in the community, such as a coldweather outfit in a tropical fishing village.", - "type": "feature", - "parent": "toh_innkeeper" + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_mercenary-company-scion" } }, { "model": "api_v2.backgroundbenefit", - "pk": 108, + "pk": "toh_mercenary-company-scion_skill-proficiencies", "fields": { - "name": "Suggested Characteristics", - "desc": "The day-to-day operation of a tavern or inn teaches many lessons about people and how they interact.\r\n\r\nThe nose for trouble, the keen eye on the kegs, and the ready hand on a truncheon translates well to the life of an adventurer.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I insist on doing all the cooking, and I plan strategies like I cook—with proper measurements and all the right ingredients. |\r\n| 2 | Lending a sympathetic ear or a shoulder to cry on often yields unexpected benefits. |\r\n| 3 | I always have a story or tale to relate to any situation. |\r\n| 4 | There is a world of tastes and flavors to explore. |\r\n| 5 | Few problems can't be solved with judicious application of a stout cudgel. |\r\n| 6 | I never pass up the chance to bargain. Never. |\r\n| 7 | I demand the finest accommodations; I know what they're worth. |\r\n| 8 | I can defuse a situation with a joke, cutting remark, or arched eyebrow. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Service.** If we serve others, they will serve us in turn. (Lawful) |\r\n| 2 | **Perspective.** People will tell you a great deal about themselves, their situations, and their desires, if you listen. (Any) |\r\n| 3 | **Determination.** Giving up is not in my nature. (Any) |\r\n| 4 | **Charity.** I try to have extra coins to buy a meal for someone in need. (Good) |\r\n| 5 | **Curiosity.** Staying safe never allows you to see the wonders of the world. (Chaotic) |\r\n| 6 | **Selfish.** We must make sure we bargain for what our skills are worth; people don't value what you give away for free. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I started my career in a tavern, and I'll end it running one of my very own. |\r\n| 2 | I try to ensure stories of my companions will live on forever. |\r\n| 3 | You want to take the measure of a person? Have a meal or drink with them. |\r\n| 4 | I've seen the dregs of life pass through my door, and I will never end up like them. |\r\n| 5 | A mysterious foe burned down my inn, and I will have my revenge. |\r\n| 6 | One day, I want my story to be sung in all the taverns of my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I can't help teasing or criticizing those less intelligent than I. |\r\n| 2 | I love rich food and drink, and I never miss a chance at a good meal. |\r\n| 3 | I never trust anyone who won't drink with me. |\r\n| 4 | I hate it when people start fights in bars; they never consider the consequences. |\r\n| 5 | I can't stand to see someone go hungry or sleep in the cold if I can help it. |\r\n| 6 | I am quick to anger if anyone doesn't like my meals or brews. If you don't like it, do it yourself. |", - "type": "suggested_characteristics", - "parent": "toh_innkeeper" + "name": "Skill Proficiencies", + "desc": "Athletics, History", + "type": "skill_proficiency", + "parent": "toh_mercenary-company-scion" } }, { "model": "api_v2.backgroundbenefit", - "pk": 109, + "pk": "toh_mercenary-company-scion_suggested-characteristics", "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, History", - "type": "skill_proficiency", + "name": "Suggested Characteristics", + "desc": "The turmoil of war, the drudgery of the camp, long days on the road, and the thrill of battle shape a Mercenary Company Scion to create strong bonds of loyalty, military discipline, and a practical mind. Yet this history can scar as well, leaving the scion open to guilt, pride, resentment, and hatred.\r\n\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am ashamed of my family's reputation and seek to distance myself from their deeds. |\r\n| 2 | I have seen the world and know people everywhere. |\r\n| 3 | I expect the best life has to offer and won't settle for less. |\r\n| 4 | I know stories from a thousand campaigns and can apply them to any situation. |\r\n| 5 | After too many betrayals, I don't trust anyone. |\r\n| 6 | My parents were heroes, and I try to live up to their example. |\r\n| 7 | I have seen the horrors of war; nothing dis'turbs me anymore. |\r\n| 8 | I truly believe I have a destiny of glory and fame awaiting me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Glory.** Only by fighting for the right causes can I achieve true fame and honor. (Good) |\r\n| 2 | **Dependable.** Once my oath is given, it cannot be broken. (Lawful) |\r\n| 3 | **Seeker.** Life can be short, so I will live it to the fullest before I die. (Chaotic) |\r\n| 4 | **Ruthless.** Only the strong survive. (Evil) |\r\n| 5 | **Mercenary.** If you have gold, I'm your blade. (Neutral) |\r\n| 6 | **Challenge.** Life is a test, and only by meeting life head on can I prove I am worthy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My parent's legacy is a tissue of lies. I will never stop until I uncover the truth. |\r\n| 2 | I am the only one who can uphold the family name. |\r\n| 3 | My companions are my life, and I would do anything to protect them. |\r\n| 4 | I will never forget the betrayal leading to my parent's murder, but I will avenge them. |\r\n| 5 | My honor and reputation are all that matter in life. |\r\n| 6 | I betrayed my family to protect my friend who was a soldier in another free company. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I have no respect for those who never signed on to a mercenary company or walked the battlefield. |\r\n| 2 | I cannot bear losing anyone close to me, so I keep everyone at a distance. |\r\n| 3 | Bloody violence is the only way to solve problems. |\r\n| 4 | I caused the downfall of my family's mercenary company. |\r\n| 5 | I am hiding a horrible secret about one of my family's patrons. |\r\n| 6 | I see insults to my honor or reputation in every whisper, veiled glance, and knowing look. |", + "type": "suggested_characteristics", "parent": "toh_mercenary-company-scion" } }, { "model": "api_v2.backgroundbenefit", - "pk": 110, + "pk": "toh_mercenary-company-scion_the-family-name", "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", + "name": "The Family Name", + "desc": "Your family name is well known in the closeknit world of mercenary companies. Members of mercenary companies readily recognize your name and will provide food, drink, and shelter with pleasure or out of fear, depending upon your family's reputation. You can also gain access to friendly military encampments, fortresses, or powerful political figures through your contacts among the mercenaries. Utilizing such connections might require the donation of money, magic items, or a great deal of drink.", + "type": "feature", "parent": "toh_mercenary-company-scion" } }, { "model": "api_v2.backgroundbenefit", - "pk": 111, + "pk": "toh_mercenary-company-scion_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "One type of gaming set, one musical instrument", @@ -571,57 +601,57 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 112, + "pk": "toh_mercenary-recruit_equipment", "fields": { "name": "Equipment", - "desc": "A backpack, a signet ring emblazoned with the symbol of your family's free company, a musical instrument of your choice, a mess kit, a set of traveler's clothes, and a belt pouch containing 20 gp", + "desc": "A letter of introduction from an old teacher, a gaming set of your choice, traveling clothes, and a pouch containing 10 gp", "type": "equipment", - "parent": "toh_mercenary-company-scion" + "parent": "toh_mercenary-recruit" } }, { "model": "api_v2.backgroundbenefit", - "pk": 113, + "pk": "toh_mercenary-recruit_languages", "fields": { - "name": "The Family Name", - "desc": "Your family name is well known in the closeknit world of mercenary companies. Members of mercenary companies readily recognize your name and will provide food, drink, and shelter with pleasure or out of fear, depending upon your family's reputation. You can also gain access to friendly military encampments, fortresses, or powerful political figures through your contacts among the mercenaries. Utilizing such connections might require the donation of money, magic items, or a great deal of drink.", - "type": "feature", - "parent": "toh_mercenary-company-scion" + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_mercenary-recruit" } }, { "model": "api_v2.backgroundbenefit", - "pk": 114, + "pk": "toh_mercenary-recruit_skill-proficiencies", "fields": { - "name": "Suggested Characteristics", - "desc": "The turmoil of war, the drudgery of the camp, long days on the road, and the thrill of battle shape a Mercenary Company Scion to create strong bonds of loyalty, military discipline, and a practical mind. Yet this history can scar as well, leaving the scion open to guilt, pride, resentment, and hatred.\r\n\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am ashamed of my family's reputation and seek to distance myself from their deeds. |\r\n| 2 | I have seen the world and know people everywhere. |\r\n| 3 | I expect the best life has to offer and won't settle for less. |\r\n| 4 | I know stories from a thousand campaigns and can apply them to any situation. |\r\n| 5 | After too many betrayals, I don't trust anyone. |\r\n| 6 | My parents were heroes, and I try to live up to their example. |\r\n| 7 | I have seen the horrors of war; nothing dis'turbs me anymore. |\r\n| 8 | I truly believe I have a destiny of glory and fame awaiting me. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Glory.** Only by fighting for the right causes can I achieve true fame and honor. (Good) |\r\n| 2 | **Dependable.** Once my oath is given, it cannot be broken. (Lawful) |\r\n| 3 | **Seeker.** Life can be short, so I will live it to the fullest before I die. (Chaotic) |\r\n| 4 | **Ruthless.** Only the strong survive. (Evil) |\r\n| 5 | **Mercenary.** If you have gold, I'm your blade. (Neutral) |\r\n| 6 | **Challenge.** Life is a test, and only by meeting life head on can I prove I am worthy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My parent's legacy is a tissue of lies. I will never stop until I uncover the truth. |\r\n| 2 | I am the only one who can uphold the family name. |\r\n| 3 | My companions are my life, and I would do anything to protect them. |\r\n| 4 | I will never forget the betrayal leading to my parent's murder, but I will avenge them. |\r\n| 5 | My honor and reputation are all that matter in life. |\r\n| 6 | I betrayed my family to protect my friend who was a soldier in another free company. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I have no respect for those who never signed on to a mercenary company or walked the battlefield. |\r\n| 2 | I cannot bear losing anyone close to me, so I keep everyone at a distance. |\r\n| 3 | Bloody violence is the only way to solve problems. |\r\n| 4 | I caused the downfall of my family's mercenary company. |\r\n| 5 | I am hiding a horrible secret about one of my family's patrons. |\r\n| 6 | I see insults to my honor or reputation in every whisper, veiled glance, and knowing look. |", - "type": "suggested_characteristics", - "parent": "toh_mercenary-company-scion" + "name": "Skill Proficiencies", + "desc": "Athletics, Persuasion", + "type": "skill_proficiency", + "parent": "toh_mercenary-recruit" } }, { "model": "api_v2.backgroundbenefit", - "pk": 115, + "pk": "toh_mercenary-recruit_suggested-characteristics", "fields": { - "name": "Skill Proficiencies", - "desc": "Athletics, Persuasion", - "type": "skill_proficiency", + "name": "Suggested Characteristics", + "desc": "Recruits are eager to earn their place in the world of mercenaries. Sometimes humble, other times filled with false bravado, they are still untested by the joys and horrors awaiting them. Meaning well and driven to learn, recruits are generally plagued by their own fears, ignorance, and inexperience.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am thrilled by the thought of an upcoming fight. |\r\n| 2 | Why wait until I'm famous to have songs written about me? I can write my own right now! |\r\n| 3 | I know many stories and legends of famous adventurers and compare everything to these tales. |\r\n| 4 | Humor is how I deal with fear. |\r\n| 5 | I always seek to learn new ways to use my weapons and love sharing my knowledge. |\r\n| 6 | The only way I can prove myself is to work hard and take risks. |\r\n| 7 | When you stop training, you sign your own death notice |\r\n| 8 | I try to act braver than I actually am. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Respect.** To be treated with honor and trust, I must honor and trust people first. (Good) |\r\n| 2 | **Discipline.** A good soldier obeys orders. (Lawful) |\r\n| 3 | **Courage.** Sometimes doing the right thing means breaking the law. (Chaotic) |\r\n| 4 | **Excitement.** I live for the thrill of battle, the rush of the duel, and the glory of victory. (Neutral) |\r\n| 5 | **Power.** When I achieve fame and power, no one will give me orders anymore! (Evil) |\r\n| 6 | **Ambition.** I will make something of myself no matter what. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My first mentor was murdered, and I seek the skills to avenge that crime. |\r\n| 2 | I will become the greatest mercenary warrior ever. |\r\n| 3 | I value the lessons from my teachers and trust them implicitly. |\r\n| 4 | My family has sacrificed much to get me this far. I must repay their faith in me. |\r\n| 5 | I will face any danger to win the respect of my companions. |\r\n| 6 | I have hidden a map to an amazing and powerful magical treasure until I grow strong enough to follow it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I do not trust easily and question anyone who attempts to give me orders. |\r\n| 2 | I ridicule others to hide my insecurities. |\r\n| 3 | To seem brave and competent, I refuse to allow anyone to doubt my courage. |\r\n| 4 | I survived an attack by a monster as a child, and I have feared that creature ever since. |\r\n| 5 | I have a hard time thinking before I act. |\r\n| 6 | I hide my laziness by tricking others into doing my work for me. |", + "type": "suggested_characteristics", "parent": "toh_mercenary-recruit" } }, { "model": "api_v2.backgroundbenefit", - "pk": 116, + "pk": "toh_mercenary-recruit_theoretical-experience", "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", + "name": "Theoretical Experience", + "desc": "You have an encyclopedic knowledge of stories, myths, and legends of famous soldiers, mercenaries, and generals. Telling these stories can earn you a bed and food for the evening in taverns, inns, and alehouses. Your age or inexperience is endearing, making commoners more comfortable with sharing local rumors, news, and information with you.", + "type": "feature", "parent": "toh_mercenary-recruit" } }, { "model": "api_v2.backgroundbenefit", - "pk": 117, + "pk": "toh_mercenary-recruit_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "One type of gaming set", @@ -631,37 +661,37 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 118, + "pk": "toh_monstrous-adoptee_abnormal-demeanor", "fields": { - "name": "Equipment", - "desc": "A letter of introduction from an old teacher, a gaming set of your choice, traveling clothes, and a pouch containing 10 gp", - "type": "equipment", - "parent": "toh_mercenary-recruit" + "name": "Abnormal Demeanor", + "desc": "Your time with your adopted parents taught you an entire lexicon of habits, behaviors, and intuitions suited to life in the wild among creatures of your parents' type. When you are in the same type of terrain your adopted parent inhabits, you can find food and fresh water for yourself and up to five other people each day. In addition, when you encounter a creature like your adopted parent or parents, the creature is disposed to hear your words instead of leaping directly into battle. Mindless or simple creatures might not respond to your overtures, but more intelligent creatures may be willing to treat instead of fight, if you approach them in an appropriate manner. For example, if your adopted parent was a cloaker, when you encounter a cloaker years later, you understand the appropriate words, body language, and motions for approaching the cloaker respectfully and peacefully.", + "type": "feature", + "parent": "toh_monstrous-adoptee" } }, { "model": "api_v2.backgroundbenefit", - "pk": 119, + "pk": "toh_monstrous-adoptee_equipment", "fields": { - "name": "Theoretical Experience", - "desc": "You have an encyclopedic knowledge of stories, myths, and legends of famous soldiers, mercenaries, and generals. Telling these stories can earn you a bed and food for the evening in taverns, inns, and alehouses. Your age or inexperience is endearing, making commoners more comfortable with sharing local rumors, news, and information with you.", - "type": "feature", - "parent": "toh_mercenary-recruit" + "name": "Equipment", + "desc": "A club, handaxe, or spear, a trinket from your life before you were adopted, a set of traveler's clothes, a collection of bones, shells, or other natural objects, and a belt pouch containing 5 gp", + "type": "equipment", + "parent": "toh_monstrous-adoptee" } }, { "model": "api_v2.backgroundbenefit", - "pk": 120, + "pk": "toh_monstrous-adoptee_languages", "fields": { - "name": "Suggested Characteristics", - "desc": "Recruits are eager to earn their place in the world of mercenaries. Sometimes humble, other times filled with false bravado, they are still untested by the joys and horrors awaiting them. Meaning well and driven to learn, recruits are generally plagued by their own fears, ignorance, and inexperience.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I am thrilled by the thought of an upcoming fight. |\r\n| 2 | Why wait until I'm famous to have songs written about me? I can write my own right now! |\r\n| 3 | I know many stories and legends of famous adventurers and compare everything to these tales. |\r\n| 4 | Humor is how I deal with fear. |\r\n| 5 | I always seek to learn new ways to use my weapons and love sharing my knowledge. |\r\n| 6 | The only way I can prove myself is to work hard and take risks. |\r\n| 7 | When you stop training, you sign your own death notice |\r\n| 8 | I try to act braver than I actually am. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Respect.** To be treated with honor and trust, I must honor and trust people first. (Good) |\r\n| 2 | **Discipline.** A good soldier obeys orders. (Lawful) |\r\n| 3 | **Courage.** Sometimes doing the right thing means breaking the law. (Chaotic) |\r\n| 4 | **Excitement.** I live for the thrill of battle, the rush of the duel, and the glory of victory. (Neutral) |\r\n| 5 | **Power.** When I achieve fame and power, no one will give me orders anymore! (Evil) |\r\n| 6 | **Ambition.** I will make something of myself no matter what. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My first mentor was murdered, and I seek the skills to avenge that crime. |\r\n| 2 | I will become the greatest mercenary warrior ever. |\r\n| 3 | I value the lessons from my teachers and trust them implicitly. |\r\n| 4 | My family has sacrificed much to get me this far. I must repay their faith in me. |\r\n| 5 | I will face any danger to win the respect of my companions. |\r\n| 6 | I have hidden a map to an amazing and powerful magical treasure until I grow strong enough to follow it. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I do not trust easily and question anyone who attempts to give me orders. |\r\n| 2 | I ridicule others to hide my insecurities. |\r\n| 3 | To seem brave and competent, I refuse to allow anyone to doubt my courage. |\r\n| 4 | I survived an attack by a monster as a child, and I have feared that creature ever since. |\r\n| 5 | I have a hard time thinking before I act. |\r\n| 6 | I hide my laziness by tricking others into doing my work for me. |", - "type": "suggested_characteristics", - "parent": "toh_mercenary-recruit" + "name": "Languages", + "desc": "One language of your choice, typically your adopted parents' language (if any)", + "type": "language", + "parent": "toh_monstrous-adoptee" } }, { "model": "api_v2.backgroundbenefit", - "pk": 121, + "pk": "toh_monstrous-adoptee_skill-proficiencies", "fields": { "name": "Skill Proficiencies", "desc": "Intimidation, Survival", @@ -671,17 +701,17 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 122, + "pk": "toh_monstrous-adoptee_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "One language of your choice, typically your adopted parents' language (if any)", - "type": "language", + "name": "Suggested Characteristics", + "desc": "When monstrous adoptees leave their adopted parents for the wider world, they often have a hard time adapting. What is common or usual for many humanoids strikes them as surprising, frightening, or infuriating, depending on the individual. Most make an effort to adjust their habits and imitate those around them, but not all. Some lean into their differences, reveling in shocking those around them. When you choose a creature to be your character's adopted parent, think about how that might affect your character. Was your character treated kindly? Was your character traded by their birth parents to their adopted parents as part of some mysterious bargain? Did your character seek constant escape or do they miss their adopted parents?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I don't eat my friends (at least not while they are alive). My foes, on the other hand . . . |\r\n| 2 | Meeting another's gaze is a challenge for dominance that I never fail to answer. |\r\n| 3 | Monsters I understand; people are confusing. |\r\n| 4 | There are two types of creatures in life: prey or not-prey. |\r\n| 5 | I often use the growls, sounds, or calls of my adopted parents instead of words. |\r\n| 6 | Inconsequential items fascinate me. |\r\n| 7 | It's not my fault, I was raised by [insert parent's type here]. |\r\n| 8 | I may look fine, but I behave like a monster. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Wild.** After seeing the wider world, I want to be the monster that strikes fear in the hearts of people. (Evil) |\r\n| 2 | **Insight.** I want to understand the world of my adopted parents. (Neutral) |\r\n| 3 | **Revenge.** I want revenge for my lost childhood. Monsters must die! (Any) |\r\n| 4 | **Harmony.** With my unique perspective and upbringing, I hope to bring understanding between the different creatures of the world. (Good) |\r\n| 5 | **Freedom.** My past away from law-abiding society has shown me the ridiculousness of those laws. (Chaotic) |\r\n| 6 | **Redemption.** I will rise above the cruelty of my adopted parent and embrace the wider world. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I want to experience every single aspect of the world. |\r\n| 2 | I rely on my companions to teach me how to behave appropriately in their society. |\r\n| 3 | I have a *sibling*, a child of my adopted parent that was raised alongside me, and now that sibling has been kidnapped! |\r\n| 4 | My monstrous family deserves a place in this world, too. |\r\n| 5 | I'm hiding from my monstrous family. They want me back! |\r\n| 6 | An old enemy of my adopted parents is on my trail. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | What? I like my meat raw. Is that so strange? |\r\n| 2 | I like to collect trophies from my defeated foes (ears, teeth, bones, or similar). It's how I keep score. |\r\n| 3 | I usually forget about pesky social conventions like *personal property* or *laws*. |\r\n| 4 | I am easily startled by loud noises or bright lights. |\r\n| 5 | I have trouble respecting anyone who can't best me in a fight. |\r\n| 6 | Kindness is for the weak. |", + "type": "suggested_characteristics", "parent": "toh_monstrous-adoptee" } }, { "model": "api_v2.backgroundbenefit", - "pk": 123, + "pk": "toh_monstrous-adoptee_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "No additional tool proficiencies", @@ -691,37 +721,27 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 124, + "pk": "toh_mysterious-origins_equipment", "fields": { "name": "Equipment", - "desc": "A club, handaxe, or spear, a trinket from your life before you were adopted, a set of traveler's clothes, a collection of bones, shells, or other natural objects, and a belt pouch containing 5 gp", + "desc": "A mysterious trinket from your past life, a set of artisan's tools or a musical instrument (one of your choice), a set of common clothes, and a belt pouch containing 5 gp", "type": "equipment", - "parent": "toh_monstrous-adoptee" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 125, - "fields": { - "name": "Abnormal Demeanor", - "desc": "Your time with your adopted parents taught you an entire lexicon of habits, behaviors, and intuitions suited to life in the wild among creatures of your parents' type. When you are in the same type of terrain your adopted parent inhabits, you can find food and fresh water for yourself and up to five other people each day. In addition, when you encounter a creature like your adopted parent or parents, the creature is disposed to hear your words instead of leaping directly into battle. Mindless or simple creatures might not respond to your overtures, but more intelligent creatures may be willing to treat instead of fight, if you approach them in an appropriate manner. For example, if your adopted parent was a cloaker, when you encounter a cloaker years later, you understand the appropriate words, body language, and motions for approaching the cloaker respectfully and peacefully.", - "type": "feature", - "parent": "toh_monstrous-adoptee" + "parent": "toh_mysterious-origins" } }, { "model": "api_v2.backgroundbenefit", - "pk": 126, + "pk": "toh_mysterious-origins_languages", "fields": { - "name": "Suggested Characteristics", - "desc": "When monstrous adoptees leave their adopted parents for the wider world, they often have a hard time adapting. What is common or usual for many humanoids strikes them as surprising, frightening, or infuriating, depending on the individual. Most make an effort to adjust their habits and imitate those around them, but not all. Some lean into their differences, reveling in shocking those around them. When you choose a creature to be your character's adopted parent, think about how that might affect your character. Was your character treated kindly? Was your character traded by their birth parents to their adopted parents as part of some mysterious bargain? Did your character seek constant escape or do they miss their adopted parents?\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I don't eat my friends (at least not while they are alive). My foes, on the other hand . . . |\r\n| 2 | Meeting another's gaze is a challenge for dominance that I never fail to answer. |\r\n| 3 | Monsters I understand; people are confusing. |\r\n| 4 | There are two types of creatures in life: prey or not-prey. |\r\n| 5 | I often use the growls, sounds, or calls of my adopted parents instead of words. |\r\n| 6 | Inconsequential items fascinate me. |\r\n| 7 | It's not my fault, I was raised by [insert parent's type here]. |\r\n| 8 | I may look fine, but I behave like a monster. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Wild.** After seeing the wider world, I want to be the monster that strikes fear in the hearts of people. (Evil) |\r\n| 2 | **Insight.** I want to understand the world of my adopted parents. (Neutral) |\r\n| 3 | **Revenge.** I want revenge for my lost childhood. Monsters must die! (Any) |\r\n| 4 | **Harmony.** With my unique perspective and upbringing, I hope to bring understanding between the different creatures of the world. (Good) |\r\n| 5 | **Freedom.** My past away from law-abiding society has shown me the ridiculousness of those laws. (Chaotic) |\r\n| 6 | **Redemption.** I will rise above the cruelty of my adopted parent and embrace the wider world. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I want to experience every single aspect of the world. |\r\n| 2 | I rely on my companions to teach me how to behave appropriately in their society. |\r\n| 3 | I have a *sibling*, a child of my adopted parent that was raised alongside me, and now that sibling has been kidnapped! |\r\n| 4 | My monstrous family deserves a place in this world, too. |\r\n| 5 | I'm hiding from my monstrous family. They want me back! |\r\n| 6 | An old enemy of my adopted parents is on my trail. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | What? I like my meat raw. Is that so strange? |\r\n| 2 | I like to collect trophies from my defeated foes (ears, teeth, bones, or similar). It's how I keep score. |\r\n| 3 | I usually forget about pesky social conventions like *personal property* or *laws*. |\r\n| 4 | I am easily startled by loud noises or bright lights. |\r\n| 5 | I have trouble respecting anyone who can't best me in a fight. |\r\n| 6 | Kindness is for the weak. |", - "type": "suggested_characteristics", - "parent": "toh_monstrous-adoptee" + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_mysterious-origins" } }, { "model": "api_v2.backgroundbenefit", - "pk": 127, + "pk": "toh_mysterious-origins_skill-proficiencies", "fields": { "name": "Skill Proficiencies", "desc": "Deception, Survival", @@ -731,17 +751,17 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 128, + "pk": "toh_mysterious-origins_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", + "name": "Suggested Characteristics", + "desc": "You may be bothered by your lack of memories and driven to recover them or reclaim the secrets of your past, or you can use your anonymity to your advantage.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm always humming a song, but I can't remember the words. |\r\n| 2 | I love learning new things and meeting new people. |\r\n| 3 | I want to prove my worth and have people know my name. |\r\n| 4 | I don't like places that are crowded or noisy. |\r\n| 5 | I'm mistrustful of mages and magic in general. |\r\n| 6 | I like to keep everything tidy and organized so that I can find things easily. |\r\n| 7 | Every night I record my day in a detailed journal. |\r\n| 8 | I live in the present. The future will come as it may. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Redemption.** Whatever I did in the past, I'm determined to make the world a better place. (Good) |\r\n| 2 | **Independence.** I'm beholden to no one, so I can do whatever I want. (Chaotic) |\r\n| 3 | **Cunning.** Since I have no past, no one can use it to thwart my rise to power. (Evil) |\r\n| 4 | **Community.** I believe in a just society that takes care of people in need. (Lawful) |\r\n| 5 | **Fairness.** I judge others by who they are now, not by what they've done in the past. (Neutral) |\r\n| 6 | **Friendship.** The people in my life now are more important than any ideal. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have dreams where I see a loved one's face, but I can't remember their name or who they are. |\r\n| 2 | I wear a wedding ring, so I must have been married before I lost my memories. |\r\n| 3 | My mentor raised me; they told me that I lost my memories in a terrible accident that killed my family. |\r\n| 4 | I have an enemy who wants to kill me, but I don't know what I did to earn their hatred. |\r\n| 5 | I know there's an important memory attached to the scar I bear on my body. |\r\n| 6 | I can never repay the debt I owe to the person who cared for me after I lost my memories. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am jealous of those who have memories of a happy childhood. |\r\n| 2 | I'm desperate for knowledge about my past, and I'll do anything to obtain that information. |\r\n| 3 | I'm terrified of meeting someone from my past, so I avoid strangers as much as possible. |\r\n| 4 | Only the present matters. I can't bring myself to care about the future. |\r\n| 5 | I'm convinced that I was powerful and rich before I lost my memories—and I expect everyone to treat me accordingly. |\r\n| 6 | Anyone who shows me pity is subjected to my biting scorn. |", + "type": "suggested_characteristics", "parent": "toh_mysterious-origins" } }, { "model": "api_v2.backgroundbenefit", - "pk": 129, + "pk": "toh_mysterious-origins_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "One type of artisan's tools or one type of musical instrument", @@ -751,37 +771,47 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 130, + "pk": "toh_mysterious-origins_unexpected-acquaintance", + "fields": { + "name": "Unexpected Acquaintance", + "desc": "Even though you can't recall them, someone from your past will recognize you and offer to aid you—or to impede you. The person and their relationship to you depend on the truth of your backstory. They might be a childhood friend, a former rival, or even your child who's grown up with dreams of finding their missing parent. They may want you to return to your former life even if it means abandoning your current goals and companions. Work with your GM to determine the details of this character and your history with them.", + "type": "feature", + "parent": "toh_mysterious-origins" + } +}, +{ + "model": "api_v2.backgroundbenefit", + "pk": "toh_northern-minstrel_equipment", "fields": { "name": "Equipment", - "desc": "A mysterious trinket from your past life, a set of artisan's tools or a musical instrument (one of your choice), a set of common clothes, and a belt pouch containing 5 gp", + "desc": "A book collecting all the songs, poems, or stories you know, a pair of snowshoes, one musical instrument of your choice, a heavy fur-lined cloak, and a belt pouch containing 10 gp", "type": "equipment", - "parent": "toh_mysterious-origins" + "parent": "toh_northern-minstrel" } }, { "model": "api_v2.backgroundbenefit", - "pk": 131, + "pk": "toh_northern-minstrel_languages", "fields": { - "name": "Unexpected Acquaintance", - "desc": "Even though you can't recall them, someone from your past will recognize you and offer to aid you—or to impede you. The person and their relationship to you depend on the truth of your backstory. They might be a childhood friend, a former rival, or even your child who's grown up with dreams of finding their missing parent. They may want you to return to your former life even if it means abandoning your current goals and companions. Work with your GM to determine the details of this character and your history with them.", - "type": "feature", - "parent": "toh_mysterious-origins" + "name": "Languages", + "desc": "One of your choice", + "type": "language", + "parent": "toh_northern-minstrel" } }, { "model": "api_v2.backgroundbenefit", - "pk": 132, + "pk": "toh_northern-minstrel_northern-historian", "fields": { - "name": "Suggested Characteristics", - "desc": "You may be bothered by your lack of memories and driven to recover them or reclaim the secrets of your past, or you can use your anonymity to your advantage.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I'm always humming a song, but I can't remember the words. |\r\n| 2 | I love learning new things and meeting new people. |\r\n| 3 | I want to prove my worth and have people know my name. |\r\n| 4 | I don't like places that are crowded or noisy. |\r\n| 5 | I'm mistrustful of mages and magic in general. |\r\n| 6 | I like to keep everything tidy and organized so that I can find things easily. |\r\n| 7 | Every night I record my day in a detailed journal. |\r\n| 8 | I live in the present. The future will come as it may. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Redemption.** Whatever I did in the past, I'm determined to make the world a better place. (Good) |\r\n| 2 | **Independence.** I'm beholden to no one, so I can do whatever I want. (Chaotic) |\r\n| 3 | **Cunning.** Since I have no past, no one can use it to thwart my rise to power. (Evil) |\r\n| 4 | **Community.** I believe in a just society that takes care of people in need. (Lawful) |\r\n| 5 | **Fairness.** I judge others by who they are now, not by what they've done in the past. (Neutral) |\r\n| 6 | **Friendship.** The people in my life now are more important than any ideal. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have dreams where I see a loved one's face, but I can't remember their name or who they are. |\r\n| 2 | I wear a wedding ring, so I must have been married before I lost my memories. |\r\n| 3 | My mentor raised me; they told me that I lost my memories in a terrible accident that killed my family. |\r\n| 4 | I have an enemy who wants to kill me, but I don't know what I did to earn their hatred. |\r\n| 5 | I know there's an important memory attached to the scar I bear on my body. |\r\n| 6 | I can never repay the debt I owe to the person who cared for me after I lost my memories. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am jealous of those who have memories of a happy childhood. |\r\n| 2 | I'm desperate for knowledge about my past, and I'll do anything to obtain that information. |\r\n| 3 | I'm terrified of meeting someone from my past, so I avoid strangers as much as possible. |\r\n| 4 | Only the present matters. I can't bring myself to care about the future. |\r\n| 5 | I'm convinced that I was powerful and rich before I lost my memories—and I expect everyone to treat me accordingly. |\r\n| 6 | Anyone who shows me pity is subjected to my biting scorn. |", - "type": "suggested_characteristics", - "parent": "toh_mysterious-origins" + "name": "Northern Historian", + "desc": "Your education and experience have taught you how to determine the provenance of ruins, monuments, and other structures within the north. When you spend at least 1 hour examining a structure or non-natural feature of the terrain, you can determine if it was built by humans, dwarves, elves, goblins, giants, trolls, or fey. You can also determine the approximate age (within 500 years) of the construction based on its features and embellishments.", + "type": "feature", + "parent": "toh_northern-minstrel" } }, { "model": "api_v2.backgroundbenefit", - "pk": 133, + "pk": "toh_northern-minstrel_skill-proficiencies", "fields": { "name": "Skill Proficiencies", "desc": "Perception plus one of your choice from among History or Performance", @@ -791,17 +821,17 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 134, + "pk": "toh_northern-minstrel_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "One of your choice", - "type": "language", + "name": "Suggested Characteristics", + "desc": "Northern minstrels tend to either be boisterous and loud or pensive and watchful with few falling between these extremes. Many exude both qualities at different times, and they have learned how and when to turn their skald persona on and off. Like other northerners, they place a lot of stock in appearing brave and tough, which can lead them unwittingly into conflict.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will accept any dare and expect accolades when I complete it. |\r\n| 2 | Revelry and boisterousness are for foolish children. I prefer to quietly wait and watch. |\r\n| 3 | I am more than a match for any northern reaver. If they believe that is not so, let them show me what stuff they are made of. |\r\n| 4 | I yearn for the raiding season and the tales of blood and butchery I can use to draw the crowds. |\r\n| 5 | Ragnarok is nigh. I will bear witness to the end of all things and leave a record should there be any who survive it. |\r\n| 6 | There is nothing better than mutton, honeyed mead, and a crowd in thrall to my words. |\r\n| 7 | The gods weave our fates. There is nothing to do but accept this and live as we will. |\r\n| 8 | All life is artifice. I lie better than most and I am not ashamed to reap the rewards. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Valor.** Stories and songs should inspire others—and me—to perform great deeds that benefit us all. (Good) |\r\n| 2 | **Greed.** There is little point in taking action if it leads to living in squalor. I will take what I want and dare any who disagree to oppose me. (Evil) |\r\n| 3 | **Perfection.** I will not let the threat of failure deter me. Every deed I attempt, even those I do not succeed at, serve to improve me and prepare me for future endeavors. (Lawful) |\r\n| 4 | **Anarchy.** If Ragnarok is coming to end all that is, I must do what I want and damn the consequences. (Chaotic) |\r\n| 5 | **Knowledge.** The north is full of ancient ruins and monuments. If I can glean their meaning, I may understand fate as well as the gods. (Any) |\r\n| 6 | **Pleasure.** I will eat the richest food, sleep in the softest bed, enjoy the finest company, and allow no one to stand in the way of my delight and contentment. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have the support of my peers from the skaldic school I attended, and they have mine. |\r\n| 2 | I will find and answer the Unanswerable Riddle and gain infamy. |\r\n| 3 | I will craft an epic of such renown it will be recited the world over. |\r\n| 4 | All my companions were slain in an ambush laid by cowardly trolls. At least I snatched up my tagelharpa before I escaped the carnage. |\r\n| 5 | The cold waves call to me even across great distances. I must never stray too far from the ocean's embrace. |\r\n| 6 | It is inevitable that people fail me. Mead, on the other hand, never fails to slake my thirst. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Only a coward retreats. The valiant press forward to victory or death. |\r\n| 2 | All the tales I tell of my experiences are lies. |\r\n| 3 | Critics and hecklers will suffer my wrath once the performance is over. |\r\n| 4 | Companions and friends cease to be valuable if their accomplishments outshine my own. |\r\n| 5 | I once burned down a tavern where I was poorly received. I would do it again. |\r\n| 6 | I cannot bear to be gainsaid and fall into a bitter melancholy when I am. |", + "type": "suggested_characteristics", "parent": "toh_northern-minstrel" } }, { "model": "api_v2.backgroundbenefit", - "pk": 135, + "pk": "toh_northern-minstrel_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "One type of musical instrument", @@ -811,57 +841,57 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 136, + "pk": "toh_occultist_equipment", "fields": { "name": "Equipment", - "desc": "A book collecting all the songs, poems, or stories you know, a pair of snowshoes, one musical instrument of your choice, a heavy fur-lined cloak, and a belt pouch containing 10 gp", + "desc": "A book of obscure lore holding clues to an occult location, a bottle of black ink, a quill, a leather-bound journal in which you record your secrets, a bullseye lantern, a set of common clothes, and a belt pouch containing 5 gp", "type": "equipment", - "parent": "toh_northern-minstrel" + "parent": "toh_occultist" } }, { "model": "api_v2.backgroundbenefit", - "pk": 137, + "pk": "toh_occultist_languages", "fields": { - "name": "Northern Historian", - "desc": "Your education and experience have taught you how to determine the provenance of ruins, monuments, and other structures within the north. When you spend at least 1 hour examining a structure or non-natural feature of the terrain, you can determine if it was built by humans, dwarves, elves, goblins, giants, trolls, or fey. You can also determine the approximate age (within 500 years) of the construction based on its features and embellishments.", - "type": "feature", - "parent": "toh_northern-minstrel" + "name": "Languages", + "desc": "Two of your choice", + "type": "language", + "parent": "toh_occultist" } }, { "model": "api_v2.backgroundbenefit", - "pk": 138, + "pk": "toh_occultist_skill-proficiencies", "fields": { - "name": "Suggested Characteristics", - "desc": "Northern minstrels tend to either be boisterous and loud or pensive and watchful with few falling between these extremes. Many exude both qualities at different times, and they have learned how and when to turn their skald persona on and off. Like other northerners, they place a lot of stock in appearing brave and tough, which can lead them unwittingly into conflict.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I will accept any dare and expect accolades when I complete it. |\r\n| 2 | Revelry and boisterousness are for foolish children. I prefer to quietly wait and watch. |\r\n| 3 | I am more than a match for any northern reaver. If they believe that is not so, let them show me what stuff they are made of. |\r\n| 4 | I yearn for the raiding season and the tales of blood and butchery I can use to draw the crowds. |\r\n| 5 | Ragnarok is nigh. I will bear witness to the end of all things and leave a record should there be any who survive it. |\r\n| 6 | There is nothing better than mutton, honeyed mead, and a crowd in thrall to my words. |\r\n| 7 | The gods weave our fates. There is nothing to do but accept this and live as we will. |\r\n| 8 | All life is artifice. I lie better than most and I am not ashamed to reap the rewards. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Valor.** Stories and songs should inspire others—and me—to perform great deeds that benefit us all. (Good) |\r\n| 2 | **Greed.** There is little point in taking action if it leads to living in squalor. I will take what I want and dare any who disagree to oppose me. (Evil) |\r\n| 3 | **Perfection.** I will not let the threat of failure deter me. Every deed I attempt, even those I do not succeed at, serve to improve me and prepare me for future endeavors. (Lawful) |\r\n| 4 | **Anarchy.** If Ragnarok is coming to end all that is, I must do what I want and damn the consequences. (Chaotic) |\r\n| 5 | **Knowledge.** The north is full of ancient ruins and monuments. If I can glean their meaning, I may understand fate as well as the gods. (Any) |\r\n| 6 | **Pleasure.** I will eat the richest food, sleep in the softest bed, enjoy the finest company, and allow no one to stand in the way of my delight and contentment. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I have the support of my peers from the skaldic school I attended, and they have mine. |\r\n| 2 | I will find and answer the Unanswerable Riddle and gain infamy. |\r\n| 3 | I will craft an epic of such renown it will be recited the world over. |\r\n| 4 | All my companions were slain in an ambush laid by cowardly trolls. At least I snatched up my tagelharpa before I escaped the carnage. |\r\n| 5 | The cold waves call to me even across great distances. I must never stray too far from the ocean's embrace. |\r\n| 6 | It is inevitable that people fail me. Mead, on the other hand, never fails to slake my thirst. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Only a coward retreats. The valiant press forward to victory or death. |\r\n| 2 | All the tales I tell of my experiences are lies. |\r\n| 3 | Critics and hecklers will suffer my wrath once the performance is over. |\r\n| 4 | Companions and friends cease to be valuable if their accomplishments outshine my own. |\r\n| 5 | I once burned down a tavern where I was poorly received. I would do it again. |\r\n| 6 | I cannot bear to be gainsaid and fall into a bitter melancholy when I am. |", - "type": "suggested_characteristics", - "parent": "toh_northern-minstrel" + "name": "Skill Proficiencies", + "desc": "Arcana, Religion", + "type": "skill_proficiency", + "parent": "toh_occultist" } }, { "model": "api_v2.backgroundbenefit", - "pk": 139, + "pk": "toh_occultist_strange-lore", "fields": { - "name": "Skill Proficiencies", - "desc": "Arcana, Religion", - "type": "skill_proficiency", + "name": "Strange Lore", + "desc": "Your passions for forbidden knowledge, esoteric religions, secretive cults, and terrible histories brought you into contact with a wide variety of interesting and unique individuals operating on the fringes of polite society. When you're trying to find something that pertains to eldritch secrets or dark knowledge, you have a good idea of where to start looking. Usually, this information comes from information brokers, disgraced scholars, chaotic mages, dangerous cults, or insane priests. Your GM might rule that the knowledge you seek isn't found with just one contact, but this feature provides a starting point.", + "type": "feature", "parent": "toh_occultist" } }, { "model": "api_v2.backgroundbenefit", - "pk": 140, + "pk": "toh_occultist_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "Two of your choice", - "type": "language", + "name": "Suggested Characteristics", + "desc": "Occultists can't resist the lure of an ancient ruin, forgotten dungeon, or the lair of some mysterious cult. They eagerly follow odd rumors, folktales, and obscure clues found in dusty tomes. Some adventure with the hope of turning their discoveries into fame and fortune, while others consider the answers they uncover to be the true reward. Whatever their motivations, occultists combine elements of archaeologist, scholar, and fanatic.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I always ask questions, especially if I think I can learn something new. |\r\n| 2 | I believe every superstition I hear and follow their rules fanatically. |\r\n| 3 | The things I know give me nightmares, and not only when I sleep. |\r\n| 4 | Nothing makes me happier than explaining some obscure lore to my friends. |\r\n| 5 | I startle easily. |\r\n| 6 | I perform a host of rituals throughout the day that I believe protect me from occult threats. |\r\n| 7 | I never know when to give up. |\r\n| 8 | The more someone refuses to believe me, the more I am determined to convince them. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Domination.** With the power I will unearth, I will take my revenge on those who wronged me. (Evil) |\r\n| 2 | **Mettle.** Each nugget of hidden knowledge I uncover proves my worth. (Any) |\r\n| 3 | **Lore.** Knowledge is never good or evil; it is simply knowledge. (Neutral) |\r\n| 4 | **Redemption.** This dark knowledge can be made good if it is used properly. (Good) |\r\n| 5 | **Truth.** Nothing should be hidden. Truth is all that matters, no matter who it hurts. (Chaotic) |\r\n| 6 | **Responsibility.** Only by bringing dark lore into the light can we eliminate its threat. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | One or more secret organizations are trying to stop me, which means I must be close to the truth. |\r\n| 2 | My studies come before anything else. |\r\n| 3 | No theory, however unbelievable, is worth abandoning without investigation. |\r\n| 4 | I must uncover the truth behind a particular mystery, one my father died to protect. |\r\n| 5 | I travel with my companions because I have reason to believe they are crucial to the future. |\r\n| 6 | I once had a partner in my occult searches who vanished. I am determined to find them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | When stressed, I mutter theories to myself, sometimes connecting seemingly unconnected or random events, to explain my current predicament. |\r\n| 2 | It's not paranoia if they really are out to get me. |\r\n| 3 | I have a habit of lying to hide my theories and discoveries. |\r\n| 4 | I see secrets and mysteries in everything and everyone. |\r\n| 5 | The world is full of dark secrets, and I'm the only one who can safely unearth them. |\r\n| 6 | There is no law or social convention I won't break to further my goals. |", + "type": "suggested_characteristics", "parent": "toh_occultist" } }, { "model": "api_v2.backgroundbenefit", - "pk": 141, + "pk": "toh_occultist_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "Thieves' tools", @@ -871,37 +901,37 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 142, + "pk": "toh_parfumier_aromas-and-odors-and-airs-oh-my", "fields": { - "name": "Equipment", - "desc": "A book of obscure lore holding clues to an occult location, a bottle of black ink, a quill, a leather-bound journal in which you record your secrets, a bullseye lantern, a set of common clothes, and a belt pouch containing 5 gp", - "type": "equipment", - "parent": "toh_occultist" + "name": "Aromas and Odors and Airs, Oh My", + "desc": "Before you became an adventurer, you crafted perfumes for customers in your home town or city. When not out adventuring, you can fall back on that trade to make a living. For each week you spend practicing your profession, you can craft one of the following at half the normal cost in time and resources: 5 samples of fine perfume worth 10 gp each, 2 vials of acid, or 1 vial of parfum toxique worth 50 gp. As an action, you can throw a vial of parfum toxique up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the parfum as an improvised weapon. On a hit, the target takes 1d6 poison damage and is poisoned until the end of its next turn.", + "type": "feature", + "parent": "toh_parfumier" } }, { "model": "api_v2.backgroundbenefit", - "pk": 143, + "pk": "toh_parfumier_equipment", "fields": { - "name": "Strange Lore", - "desc": "Your passions for forbidden knowledge, esoteric religions, secretive cults, and terrible histories brought you into contact with a wide variety of interesting and unique individuals operating on the fringes of polite society. When you're trying to find something that pertains to eldritch secrets or dark knowledge, you have a good idea of where to start looking. Usually, this information comes from information brokers, disgraced scholars, chaotic mages, dangerous cults, or insane priests. Your GM might rule that the knowledge you seek isn't found with just one contact, but this feature provides a starting point.", - "type": "feature", - "parent": "toh_occultist" + "name": "Equipment", + "desc": "Herbalism kit, a leather satchel containing perfume recipes, research notes, and chemical and botanical samples; 1d4 metal or crystal (shatter-proof) perfume bottles, a set of fine clothes, and a silk purse containing 10 gp", + "type": "equipment", + "parent": "toh_parfumier" } }, { "model": "api_v2.backgroundbenefit", - "pk": 144, + "pk": "toh_parfumier_languages", "fields": { - "name": "Suggested Characteristics", - "desc": "Occultists can't resist the lure of an ancient ruin, forgotten dungeon, or the lair of some mysterious cult. They eagerly follow odd rumors, folktales, and obscure clues found in dusty tomes. Some adventure with the hope of turning their discoveries into fame and fortune, while others consider the answers they uncover to be the true reward. Whatever their motivations, occultists combine elements of archaeologist, scholar, and fanatic.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I always ask questions, especially if I think I can learn something new. |\r\n| 2 | I believe every superstition I hear and follow their rules fanatically. |\r\n| 3 | The things I know give me nightmares, and not only when I sleep. |\r\n| 4 | Nothing makes me happier than explaining some obscure lore to my friends. |\r\n| 5 | I startle easily. |\r\n| 6 | I perform a host of rituals throughout the day that I believe protect me from occult threats. |\r\n| 7 | I never know when to give up. |\r\n| 8 | The more someone refuses to believe me, the more I am determined to convince them. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Domination.** With the power I will unearth, I will take my revenge on those who wronged me. (Evil) |\r\n| 2 | **Mettle.** Each nugget of hidden knowledge I uncover proves my worth. (Any) |\r\n| 3 | **Lore.** Knowledge is never good or evil; it is simply knowledge. (Neutral) |\r\n| 4 | **Redemption.** This dark knowledge can be made good if it is used properly. (Good) |\r\n| 5 | **Truth.** Nothing should be hidden. Truth is all that matters, no matter who it hurts. (Chaotic) |\r\n| 6 | **Responsibility.** Only by bringing dark lore into the light can we eliminate its threat. (Lawful) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | One or more secret organizations are trying to stop me, which means I must be close to the truth. |\r\n| 2 | My studies come before anything else. |\r\n| 3 | No theory, however unbelievable, is worth abandoning without investigation. |\r\n| 4 | I must uncover the truth behind a particular mystery, one my father died to protect. |\r\n| 5 | I travel with my companions because I have reason to believe they are crucial to the future. |\r\n| 6 | I once had a partner in my occult searches who vanished. I am determined to find them. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | When stressed, I mutter theories to myself, sometimes connecting seemingly unconnected or random events, to explain my current predicament. |\r\n| 2 | It's not paranoia if they really are out to get me. |\r\n| 3 | I have a habit of lying to hide my theories and discoveries. |\r\n| 4 | I see secrets and mysteries in everything and everyone. |\r\n| 5 | The world is full of dark secrets, and I'm the only one who can safely unearth them. |\r\n| 6 | There is no law or social convention I won't break to further my goals. |", - "type": "suggested_characteristics", - "parent": "toh_occultist" + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_parfumier" } }, { "model": "api_v2.backgroundbenefit", - "pk": 145, + "pk": "toh_parfumier_skill-proficiencies", "fields": { "name": "Skill Proficiencies", "desc": "Nature, Investigation", @@ -911,17 +941,17 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 146, + "pk": "toh_parfumier_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", + "name": "Suggested Characteristics", + "desc": "As with many parfumiers with the extensive training you received, you are well spoken, stately of bearing, and possessed of a self-assuredness that sometimes is found imposing. You are not easily impressed and rarely subscribe to notions like *insurmountable* or *unavoidable*. Every problem has a solution.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I do not deal in absolutes. There is a solution to every problem, an answer for every riddle. |\r\n| 2 | I am used to associating with educated and “elevated” society. I find rough living and rough manners unpalatable. |\r\n| 3 | Years spent witnessing the dealings, intrigues, and industrial espionage of the Bouquet Districts' mercantile-elite have left me secretive and guarded. |\r\n| 4 | I have a strong interest and sense for fashion and current trends. |\r\n| 5 | I eagerly discuss the minutiae, subtleties, and nuances of my profession to any who will listen. |\r\n| 6 | I am easily distracted by unusual or exceptional botanical specimens. |\r\n| 7 | I can seem distant and introverted. I listen more than I speak. |\r\n| 8 | I always strive to make allies, not enemies. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Responsibility.** It is my duty to share my exceptional gifts and knowledge for the betterment of all. (Good) |\r\n| 2 | **Pragmatism.** I never let passion, preference, or emotion influence my decision-making or clear headedness. (Lawful) |\r\n| 3 | **Freedom.** Rules, particularly those imposed by others, were meant to be broken. (Chaotic) |\r\n| 4 | **Deep Science.** I live a life based on facts, logic, probability, and common sense. (Lawful) |\r\n| 5 | **Notoriety.** I will do whatever it takes to become the elite that I was witness to during my time among the boutiques, salons, and workshops of the noble's district. (Any) |\r\n| 6 | **Profit.** I will utilize my talents to harvest, synthesize, concoct, and brew almost anything for almost anyone. As long as the profit margin is right. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will return to my home city someday and have revenge upon the elitist perfume consortium and corrupt shipping magnates who drove my dreams to ruin. |\r\n| 2 | I have been experimenting and searching my whole career for the ultimate aromatic aphrodisiac. The “alchemists' stone” of perfumery. |\r\n| 3 | My home is safely far behind me now. With it go the unfounded accusations, spiteful rumors, and perhaps some potential links to a string of corporate assassinations. |\r\n| 4 | I am cataloging an encyclopedia of flora and their various chemical, magical, and alchemical properties and applications. It is my life's work. |\r\n| 5 | I am dedicated to my craft, always seeking to expand my knowledge and hone my skills in the science and business of aromatics. |\r\n| 6 | I have a loved one who is threatened (held hostage?) by an organized gang of vicious halfling thugs who control many of the “rackets” in the perfumeries in my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am driven to reclaim the status and respect of the socially and scientifically elite and will sacrifice much to gain it. |\r\n| 2 | I am highly competitive and not above plagiarizing or stealing the occasional recipe, idea, formula, or sample. |\r\n| 3 | I am hard-pressed to treat anyone who is not (by my standards) “well schooled” or “well heeled” as little more than lab assistants and house servants. |\r\n| 4 | A pretty face is always able to lead me astray. |\r\n| 5 | I am secretly addicted to a special perfume that only I can reproduce. |\r\n| 6 | *On a stormy night, I heard a voice in the wind, which led me to a mysterious plant. Its scent was intoxicating, and I consumed it. Now, that voice occasionally whispers in my dreams, urging me to some unknown destiny.* |", + "type": "suggested_characteristics", "parent": "toh_parfumier" } }, { "model": "api_v2.backgroundbenefit", - "pk": 147, + "pk": "toh_parfumier_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "Alchemist's supplies, herbalism kit", @@ -931,37 +961,27 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 148, + "pk": "toh_scoundrel_equipment", "fields": { "name": "Equipment", - "desc": "Herbalism kit, a leather satchel containing perfume recipes, research notes, and chemical and botanical samples; 1d4 metal or crystal (shatter-proof) perfume bottles, a set of fine clothes, and a silk purse containing 10 gp", + "desc": "A bag of 1,000 ball bearings, a pet monkey wearing a tiny fez, a set of common clothes, and a pouch containing 10 gp", "type": "equipment", - "parent": "toh_parfumier" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 149, - "fields": { - "name": "Aromas and Odors and Airs, Oh My", - "desc": "Before you became an adventurer, you crafted perfumes for customers in your home town or city. When not out adventuring, you can fall back on that trade to make a living. For each week you spend practicing your profession, you can craft one of the following at half the normal cost in time and resources: 5 samples of fine perfume worth 10 gp each, 2 vials of acid, or 1 vial of parfum toxique worth 50 gp. As an action, you can throw a vial of parfum toxique up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the parfum as an improvised weapon. On a hit, the target takes 1d6 poison damage and is poisoned until the end of its next turn.", - "type": "feature", - "parent": "toh_parfumier" + "parent": "toh_scoundrel" } }, { "model": "api_v2.backgroundbenefit", - "pk": 150, + "pk": "toh_scoundrel_languages", "fields": { - "name": "Suggested Characteristics", - "desc": "As with many parfumiers with the extensive training you received, you are well spoken, stately of bearing, and possessed of a self-assuredness that sometimes is found imposing. You are not easily impressed and rarely subscribe to notions like *insurmountable* or *unavoidable*. Every problem has a solution.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I do not deal in absolutes. There is a solution to every problem, an answer for every riddle. |\r\n| 2 | I am used to associating with educated and “elevated” society. I find rough living and rough manners unpalatable. |\r\n| 3 | Years spent witnessing the dealings, intrigues, and industrial espionage of the Bouquet Districts' mercantile-elite have left me secretive and guarded. |\r\n| 4 | I have a strong interest and sense for fashion and current trends. |\r\n| 5 | I eagerly discuss the minutiae, subtleties, and nuances of my profession to any who will listen. |\r\n| 6 | I am easily distracted by unusual or exceptional botanical specimens. |\r\n| 7 | I can seem distant and introverted. I listen more than I speak. |\r\n| 8 | I always strive to make allies, not enemies. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Responsibility.** It is my duty to share my exceptional gifts and knowledge for the betterment of all. (Good) |\r\n| 2 | **Pragmatism.** I never let passion, preference, or emotion influence my decision-making or clear headedness. (Lawful) |\r\n| 3 | **Freedom.** Rules, particularly those imposed by others, were meant to be broken. (Chaotic) |\r\n| 4 | **Deep Science.** I live a life based on facts, logic, probability, and common sense. (Lawful) |\r\n| 5 | **Notoriety.** I will do whatever it takes to become the elite that I was witness to during my time among the boutiques, salons, and workshops of the noble's district. (Any) |\r\n| 6 | **Profit.** I will utilize my talents to harvest, synthesize, concoct, and brew almost anything for almost anyone. As long as the profit margin is right. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I will return to my home city someday and have revenge upon the elitist perfume consortium and corrupt shipping magnates who drove my dreams to ruin. |\r\n| 2 | I have been experimenting and searching my whole career for the ultimate aromatic aphrodisiac. The “alchemists' stone” of perfumery. |\r\n| 3 | My home is safely far behind me now. With it go the unfounded accusations, spiteful rumors, and perhaps some potential links to a string of corporate assassinations. |\r\n| 4 | I am cataloging an encyclopedia of flora and their various chemical, magical, and alchemical properties and applications. It is my life's work. |\r\n| 5 | I am dedicated to my craft, always seeking to expand my knowledge and hone my skills in the science and business of aromatics. |\r\n| 6 | I have a loved one who is threatened (held hostage?) by an organized gang of vicious halfling thugs who control many of the “rackets” in the perfumeries in my home city. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I am driven to reclaim the status and respect of the socially and scientifically elite and will sacrifice much to gain it. |\r\n| 2 | I am highly competitive and not above plagiarizing or stealing the occasional recipe, idea, formula, or sample. |\r\n| 3 | I am hard-pressed to treat anyone who is not (by my standards) “well schooled” or “well heeled” as little more than lab assistants and house servants. |\r\n| 4 | A pretty face is always able to lead me astray. |\r\n| 5 | I am secretly addicted to a special perfume that only I can reproduce. |\r\n| 6 | *On a stormy night, I heard a voice in the wind, which led me to a mysterious plant. Its scent was intoxicating, and I consumed it. Now, that voice occasionally whispers in my dreams, urging me to some unknown destiny.* |", - "type": "suggested_characteristics", - "parent": "toh_parfumier" + "name": "Languages", + "desc": "No additional languages", + "type": "language", + "parent": "toh_scoundrel" } }, { "model": "api_v2.backgroundbenefit", - "pk": 151, + "pk": "toh_scoundrel_skill-proficiencies", "fields": { "name": "Skill Proficiencies", "desc": "Athletics, Sleight of Hand", @@ -971,17 +991,17 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 152, + "pk": "toh_scoundrel_suggested-characteristics", "fields": { - "name": "Languages", - "desc": "No additional languages", - "type": "language", + "name": "Suggested Characteristics", + "desc": "Despite their poor upbringing, scoundrels tend to live a charmed life—never far from trouble, but usually coming out on top. Many are thrill-seekers who delight in taunting their opponents before making a flashy and daring escape. Most are generally good-hearted, but some are self-centered to the point of arrogance. Quieter, introverted types and the lawfully-inclined can find them very annoying.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Flashing a big smile often gets me out of trouble. |\r\n| 2 | If I can just keep them talking, it will give me time to escape. |\r\n| 3 | I get fidgety if I have to sit still for more than ten minutes or so. |\r\n| 4 | Whatever I do, I try to do it with style and panache. |\r\n| 5 | I don't hold back when there's free food and drink on offer. |\r\n| 6 | Nothing gets me more annoyed than being ignored. |\r\n| 7 | I always sit with my back to the wall and my eyes on the exits. |\r\n| 8 | Why walk down the street when you can run across the rooftops? |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** Ropes and chains are made to be broken. Locks are made to be picked. Doors are meant to be opened. (Chaotic) |\r\n| 2 | **Community.** We need to look out for one another and keep everyone safe. (Lawful) |\r\n| 3 | **Charity.** I share my wealth with those who need it the most. (Good) |\r\n| 4 | **Friendship.** My friends matter more to me than lofty ideals. (Neutral) |\r\n| 5 | **Aspiration.** One day my wondrous deeds will be known across the world. (Any) |\r\n| 6 | **Greed.** I'll stop at nothing to get what I want. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My elder sibling taught me how to find a safe hiding place in the city. This saved my life at least once. |\r\n| 2 | I stole money from someone who couldn't afford to lose it and now they're destitute. One day I'll make it up to them. |\r\n| 3 | The street kids in my town are my true family. |\r\n| 4 | My mother gave me an old brass lamp. I polish it every night before going to sleep. |\r\n| 5 | When I was young, I was too scared to leap from the tallest tower in my hometown onto the hay cart beneath. I'll try again someday. |\r\n| 6 | A city guardsman let me go when they should have arrested me for stealing. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If there's a lever to pull, I'll pull it. |\r\n| 2 | It's not stealing if nobody realizes it's gone. |\r\n| 3 | If I don't like the odds, I'm out of there. |\r\n| 4 | I often don't know when to shut up. |\r\n| 5 | I once filched a pipe from a priest. Now I think the god has cursed me. |\r\n| 6 | I grow angry when someone else steals the limelight. |", + "type": "suggested_characteristics", "parent": "toh_scoundrel" } }, { "model": "api_v2.backgroundbenefit", - "pk": 153, + "pk": "toh_scoundrel_tool-proficiencies", "fields": { "name": "Tool Proficiencies", "desc": "One type of gaming set, thieves' tools", @@ -991,17 +1011,7 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 154, - "fields": { - "name": "Equipment", - "desc": "A bag of 1,000 ball bearings, a pet monkey wearing a tiny fez, a set of common clothes, and a pouch containing 10 gp", - "type": "equipment", - "parent": "toh_scoundrel" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 155, + "pk": "toh_scoundrel_urban-explorer", "fields": { "name": "Urban Explorer", "desc": "You are familiar with the layout and rhythms of towns and cities. When you arrive in a new city, you can quickly locate places to stay, where to buy good quality gear, and other facilities. You can shake off pursuers when you are being chased through the streets or across the rooftops. You have a knack for leading pursuers into a crowded market filled with stalls piled high with breakable merchandise, or down a narrow alley just as a dung cart is coming in the other direction.", @@ -1011,27 +1021,27 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 156, + "pk": "toh_sentry_comrades-in-arms", "fields": { - "name": "Suggested Characteristics", - "desc": "Despite their poor upbringing, scoundrels tend to live a charmed life—never far from trouble, but usually coming out on top. Many are thrill-seekers who delight in taunting their opponents before making a flashy and daring escape. Most are generally good-hearted, but some are self-centered to the point of arrogance. Quieter, introverted types and the lawfully-inclined can find them very annoying.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Flashing a big smile often gets me out of trouble. |\r\n| 2 | If I can just keep them talking, it will give me time to escape. |\r\n| 3 | I get fidgety if I have to sit still for more than ten minutes or so. |\r\n| 4 | Whatever I do, I try to do it with style and panache. |\r\n| 5 | I don't hold back when there's free food and drink on offer. |\r\n| 6 | Nothing gets me more annoyed than being ignored. |\r\n| 7 | I always sit with my back to the wall and my eyes on the exits. |\r\n| 8 | Why walk down the street when you can run across the rooftops? |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Freedom.** Ropes and chains are made to be broken. Locks are made to be picked. Doors are meant to be opened. (Chaotic) |\r\n| 2 | **Community.** We need to look out for one another and keep everyone safe. (Lawful) |\r\n| 3 | **Charity.** I share my wealth with those who need it the most. (Good) |\r\n| 4 | **Friendship.** My friends matter more to me than lofty ideals. (Neutral) |\r\n| 5 | **Aspiration.** One day my wondrous deeds will be known across the world. (Any) |\r\n| 6 | **Greed.** I'll stop at nothing to get what I want. (Evil) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My elder sibling taught me how to find a safe hiding place in the city. This saved my life at least once. |\r\n| 2 | I stole money from someone who couldn't afford to lose it and now they're destitute. One day I'll make it up to them. |\r\n| 3 | The street kids in my town are my true family. |\r\n| 4 | My mother gave me an old brass lamp. I polish it every night before going to sleep. |\r\n| 5 | When I was young, I was too scared to leap from the tallest tower in my hometown onto the hay cart beneath. I'll try again someday. |\r\n| 6 | A city guardsman let me go when they should have arrested me for stealing. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | If there's a lever to pull, I'll pull it. |\r\n| 2 | It's not stealing if nobody realizes it's gone. |\r\n| 3 | If I don't like the odds, I'm out of there. |\r\n| 4 | I often don't know when to shut up. |\r\n| 5 | I once filched a pipe from a priest. Now I think the god has cursed me. |\r\n| 6 | I grow angry when someone else steals the limelight. |", - "type": "suggested_characteristics", - "parent": "toh_scoundrel" + "name": "Comrades in Arms", + "desc": "The knowing look from the caravan guard to the city gatekeeper or the nod of recognition between the noble's bodyguard and the district watchman—no matter the community, city, or town, the guards share a commonality of purpose. When you arrive in a new location, you can speak briefly with the gate guards, local watch, or other community guardians to gain local knowledge. This knowledge could be information, such as the most efficient routes through the city, primary vendors for a variety of luxury goods, the best (or worst) inns and taverns, the primary criminal elements in town, or the current conflicts in the community.", + "type": "feature", + "parent": "toh_sentry" } }, { "model": "api_v2.backgroundbenefit", - "pk": 157, + "pk": "toh_sentry_equipment", "fields": { - "name": "Skill Proficiencies", - "desc": "Insight, Perception", - "type": "skill_proficiency", + "name": "Equipment", + "desc": "A set of dice or deck of cards, a shield bearing your previous employer's symbol, a set of common clothes, a hooded lantern, a signal whistle, and a belt pouch containing 10 gp", + "type": "equipment", "parent": "toh_sentry" } }, { "model": "api_v2.backgroundbenefit", - "pk": 158, + "pk": "toh_sentry_languages", "fields": { "name": "Languages", "desc": "One language of your choice", @@ -1041,57 +1051,47 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 159, - "fields": { - "name": "Tool Proficiencies", - "desc": "One type of gaming set", - "type": "tool_proficiency", - "parent": "toh_sentry" - } -}, -{ - "model": "api_v2.backgroundbenefit", - "pk": 160, + "pk": "toh_sentry_skill-proficiencies", "fields": { - "name": "Equipment", - "desc": "A set of dice or deck of cards, a shield bearing your previous employer's symbol, a set of common clothes, a hooded lantern, a signal whistle, and a belt pouch containing 10 gp", - "type": "equipment", + "name": "Skill Proficiencies", + "desc": "Insight, Perception", + "type": "skill_proficiency", "parent": "toh_sentry" } }, { "model": "api_v2.backgroundbenefit", - "pk": 161, + "pk": "toh_sentry_suggested-characteristics", "fields": { - "name": "Comrades in Arms", - "desc": "The knowing look from the caravan guard to the city gatekeeper or the nod of recognition between the noble's bodyguard and the district watchman—no matter the community, city, or town, the guards share a commonality of purpose. When you arrive in a new location, you can speak briefly with the gate guards, local watch, or other community guardians to gain local knowledge. This knowledge could be information, such as the most efficient routes through the city, primary vendors for a variety of luxury goods, the best (or worst) inns and taverns, the primary criminal elements in town, or the current conflicts in the community.", - "type": "feature", + "name": "Suggested Characteristics", + "desc": "You're a person who understands both patience and boredom, as a guard is always waiting for something to happen. More often than not, sentries hope nothing happens because something happening usually means something has gone wrong. A life spent watching and protecting, acting in critical moments, and learning the details of places and behaviors; all of these help shape the personality of the former sentry. Some claim you never stop being a guard, you just change what you protect.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I've seen the dregs of society and nothing surprises me anymore. |\r\n| 2 | I know where to look to spot threats lurking around a corner, in a glance, and even in a bite of food or cup of drink. |\r\n| 3 | I hate standing still and always keep moving. |\r\n| 4 | My friends know they can rely on me to stand and protect them. |\r\n| 5 | I resent the rich and powerful; they think they can get away with anything. |\r\n| 6 | A deception of any sort marks you as untrustworthy in my mind. |\r\n| 7 | Stopping lawbreakers taught me the best ways to skirt the law. |\r\n| 8 | I never take anything at face-value. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greed.** Threats to my companions only increase my glory when I protect them from it. (Evil) |\r\n| 2 | **Perception.** I watch everyone, for threats come from every rank or station. (Neutral) |\r\n| 3 | **Duty.** The laws of the community must be followed to keep everyone safe. (Lawful) |\r\n| 4 | **Community.** I am all that stands between my companions and certain doom. (Good) |\r\n| 5 | **Determination.** To truly protect others, you must sometimes break the law. (Chaotic) |\r\n| 6 | **Practicality.** I require payment for the protection or service I provide. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My charge is paramount; if you can't protect your charge, you've failed. |\r\n| 2 | I was once saved by one of my fellow guards. Now I always come to my companions' aid, no matter what the threat. |\r\n| 3 | My oath is unbreakable; I'd rather die first. |\r\n| 4 | There is no pride equal to the accomplishment of a successful mission. |\r\n| 5 | I stand as a bulwark against those who would damage or destroy society, and society is worth protecting. |\r\n| 6 | I know that as long as I stand with my companions, things can be made right. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Sometimes I may overindulge in a guilty pleasure, but you need something to pass time. |\r\n| 2 | I can't just sit quietly next to someone. I've got to fill the silence with conversation to make good company. |\r\n| 3 | I'm not very capable in social situations. I'd rather sit on the sidelines and observe. People make me nervous. |\r\n| 4 | I have a tough time trusting strangers and new people. You don't know their habits and behaviors; therefore, you don't know their risk. |\r\n| 5 | There is danger all around us, and only the foolish let their guard down. I am no fool, and I will spot the danger. |\r\n| 6 | I believe there's a firm separation between task and personal time. I don't do other people's work when I'm on my own time. If you want me, hire me. |", + "type": "suggested_characteristics", "parent": "toh_sentry" } }, { "model": "api_v2.backgroundbenefit", - "pk": 162, + "pk": "toh_sentry_tool-proficiencies", "fields": { - "name": "Suggested Characteristics", - "desc": "You're a person who understands both patience and boredom, as a guard is always waiting for something to happen. More often than not, sentries hope nothing happens because something happening usually means something has gone wrong. A life spent watching and protecting, acting in critical moments, and learning the details of places and behaviors; all of these help shape the personality of the former sentry. Some claim you never stop being a guard, you just change what you protect.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I've seen the dregs of society and nothing surprises me anymore. |\r\n| 2 | I know where to look to spot threats lurking around a corner, in a glance, and even in a bite of food or cup of drink. |\r\n| 3 | I hate standing still and always keep moving. |\r\n| 4 | My friends know they can rely on me to stand and protect them. |\r\n| 5 | I resent the rich and powerful; they think they can get away with anything. |\r\n| 6 | A deception of any sort marks you as untrustworthy in my mind. |\r\n| 7 | Stopping lawbreakers taught me the best ways to skirt the law. |\r\n| 8 | I never take anything at face-value. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Greed.** Threats to my companions only increase my glory when I protect them from it. (Evil) |\r\n| 2 | **Perception.** I watch everyone, for threats come from every rank or station. (Neutral) |\r\n| 3 | **Duty.** The laws of the community must be followed to keep everyone safe. (Lawful) |\r\n| 4 | **Community.** I am all that stands between my companions and certain doom. (Good) |\r\n| 5 | **Determination.** To truly protect others, you must sometimes break the law. (Chaotic) |\r\n| 6 | **Practicality.** I require payment for the protection or service I provide. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | My charge is paramount; if you can't protect your charge, you've failed. |\r\n| 2 | I was once saved by one of my fellow guards. Now I always come to my companions' aid, no matter what the threat. |\r\n| 3 | My oath is unbreakable; I'd rather die first. |\r\n| 4 | There is no pride equal to the accomplishment of a successful mission. |\r\n| 5 | I stand as a bulwark against those who would damage or destroy society, and society is worth protecting. |\r\n| 6 | I know that as long as I stand with my companions, things can be made right. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | Sometimes I may overindulge in a guilty pleasure, but you need something to pass time. |\r\n| 2 | I can't just sit quietly next to someone. I've got to fill the silence with conversation to make good company. |\r\n| 3 | I'm not very capable in social situations. I'd rather sit on the sidelines and observe. People make me nervous. |\r\n| 4 | I have a tough time trusting strangers and new people. You don't know their habits and behaviors; therefore, you don't know their risk. |\r\n| 5 | There is danger all around us, and only the foolish let their guard down. I am no fool, and I will spot the danger. |\r\n| 6 | I believe there's a firm separation between task and personal time. I don't do other people's work when I'm on my own time. If you want me, hire me. |", - "type": "suggested_characteristics", + "name": "Tool Proficiencies", + "desc": "One type of gaming set", + "type": "tool_proficiency", "parent": "toh_sentry" } }, { "model": "api_v2.backgroundbenefit", - "pk": 163, + "pk": "toh_trophy-hunter_equipment", "fields": { - "name": "Skill Proficiencies", - "desc": "Nature, Survival", - "type": "skill_proficiency", + "name": "Equipment", + "desc": "A donkey or mule with bit and bridle, a set of cold-weather or warm-weather clothes, and a belt pouch containing 5 gp", + "type": "equipment", "parent": "toh_trophy-hunter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 164, + "pk": "toh_trophy-hunter_languages", "fields": { "name": "Languages", "desc": "No additional languages", @@ -1101,41 +1101,41 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 165, + "pk": "toh_trophy-hunter_shelter-from-the-storm", "fields": { - "name": "Tool Proficiencies", - "desc": "Leatherworker's tools, vehicles (land)", - "type": "tool_proficiency", + "name": "Shelter from the Storm", + "desc": "You have spent years hunting in the harshest environments of the world and have seen tents blown away by gales, food stolen by hungry bears, and equipment destroyed by the elements. While traveling in the wilderness, you can find a natural location suitable to make camp by spending 1 hour searching. This location provides cover from the elements and is in some way naturally defensible, at the GM's discretion.", + "type": "feature", "parent": "toh_trophy-hunter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 166, + "pk": "toh_trophy-hunter_skill-proficiencies", "fields": { - "name": "Equipment", - "desc": "A donkey or mule with bit and bridle, a set of cold-weather or warm-weather clothes, and a belt pouch containing 5 gp", - "type": "equipment", + "name": "Skill Proficiencies", + "desc": "Nature, Survival", + "type": "skill_proficiency", "parent": "toh_trophy-hunter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 167, + "pk": "toh_trophy-hunter_suggested-characteristics", "fields": { - "name": "Shelter from the Storm", - "desc": "You have spent years hunting in the harshest environments of the world and have seen tents blown away by gales, food stolen by hungry bears, and equipment destroyed by the elements. While traveling in the wilderness, you can find a natural location suitable to make camp by spending 1 hour searching. This location provides cover from the elements and is in some way naturally defensible, at the GM's discretion.", - "type": "feature", + "name": "Suggested Characteristics", + "desc": "Most trophy hunters are skilled hobbyists and find strange relaxation in the tension of the hunt and revel in the glory of a kill. You may find great personal joy in hunting, in the adoration of peers, or simply in earning gold by selling pelts, scales, and horns.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nothing gets my blood pumping like stalking a wild animal. |\r\n| 2 | I like things big! Trophies, big! Food, big! Money, houses, weapons, possessions, I want ‘em big, big, BIG! |\r\n| 3 | When hunting, it's almost as if I become a different person. Focused. Confident. Ruthless. |\r\n| 4 | The only way to kill a beast is to be patient and find the perfect moment to strike. The same is true for all the important things in life. |\r\n| 5 | Bathing is for novices. I know that to catch my smelly, filthy prey, I must smell like them to throw off their scent. |\r\n| 6 | I eat only raw meat. It gets me more in tune with my prey. |\r\n| 7 | I'm a connoisseur of killing implements; I only use the best, because I am the best. |\r\n| 8 | I thank the natural world for its bounty after every kill. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Ambition.** It is my divine calling to become better than my rivals by any means necessary. (Chaotic) |\r\n| 2 | **Altruism.** I hunt only to protect those who cannot protect themselves. (Good) |\r\n| 3 | **Determination.** No matter what the laws say, I will kill that beast! (Chaotic) |\r\n| 4 | **Cruelty.** My prey lives only for my pleasure. It will die exactly as quickly or as slowly as I desire. (Evil) |\r\n| 5 | **Sport.** We're just here to have fun. (Neutral) |\r\n| 6 | **Family.** I follow in my family's footsteps. I will not tarnish their legacy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I like hunting because I like feeling big and powerful. |\r\n| 2 | I hunt because my parents think I'm a worthless runt. I need to make them proud. |\r\n| 3 | I was mauled by a beast on my first hunting trip. I've spent my life searching for that monster. |\r\n| 4 | The first time I drew blood, something awoke within me. Every hunt is a search for the original ecstasy of blood. |\r\n| 5 | My hunting companions used to laugh at me behind my back. They aren't laughing anymore. |\r\n| 6 | A close friend funded my first hunting expedition. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm actually a sham. All of my trophies were bagged by someone else. I just followed along and watched. |\r\n| 2 | I'm terrified of anything larger than myself. |\r\n| 3 | I can't express anger without lashing out at something. |\r\n| 4 | I need money. I don't care how much or how little I have; I need more. And I would do anything to get it. |\r\n| 5 | I am obsessed with beauty in animals, art, and people. |\r\n| 6 | I don't trust my hunting partners, whom I know are here to steal my glory! |", + "type": "suggested_characteristics", "parent": "toh_trophy-hunter" } }, { "model": "api_v2.backgroundbenefit", - "pk": 168, + "pk": "toh_trophy-hunter_tool-proficiencies", "fields": { - "name": "Suggested Characteristics", - "desc": "Most trophy hunters are skilled hobbyists and find strange relaxation in the tension of the hunt and revel in the glory of a kill. You may find great personal joy in hunting, in the adoration of peers, or simply in earning gold by selling pelts, scales, and horns.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | Nothing gets my blood pumping like stalking a wild animal. |\r\n| 2 | I like things big! Trophies, big! Food, big! Money, houses, weapons, possessions, I want ‘em big, big, BIG! |\r\n| 3 | When hunting, it's almost as if I become a different person. Focused. Confident. Ruthless. |\r\n| 4 | The only way to kill a beast is to be patient and find the perfect moment to strike. The same is true for all the important things in life. |\r\n| 5 | Bathing is for novices. I know that to catch my smelly, filthy prey, I must smell like them to throw off their scent. |\r\n| 6 | I eat only raw meat. It gets me more in tune with my prey. |\r\n| 7 | I'm a connoisseur of killing implements; I only use the best, because I am the best. |\r\n| 8 | I thank the natural world for its bounty after every kill. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | **Ambition.** It is my divine calling to become better than my rivals by any means necessary. (Chaotic) |\r\n| 2 | **Altruism.** I hunt only to protect those who cannot protect themselves. (Good) |\r\n| 3 | **Determination.** No matter what the laws say, I will kill that beast! (Chaotic) |\r\n| 4 | **Cruelty.** My prey lives only for my pleasure. It will die exactly as quickly or as slowly as I desire. (Evil) |\r\n| 5 | **Sport.** We're just here to have fun. (Neutral) |\r\n| 6 | **Family.** I follow in my family's footsteps. I will not tarnish their legacy. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I like hunting because I like feeling big and powerful. |\r\n| 2 | I hunt because my parents think I'm a worthless runt. I need to make them proud. |\r\n| 3 | I was mauled by a beast on my first hunting trip. I've spent my life searching for that monster. |\r\n| 4 | The first time I drew blood, something awoke within me. Every hunt is a search for the original ecstasy of blood. |\r\n| 5 | My hunting companions used to laugh at me behind my back. They aren't laughing anymore. |\r\n| 6 | A close friend funded my first hunting expedition. I am forever in their debt. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I'm actually a sham. All of my trophies were bagged by someone else. I just followed along and watched. |\r\n| 2 | I'm terrified of anything larger than myself. |\r\n| 3 | I can't express anger without lashing out at something. |\r\n| 4 | I need money. I don't care how much or how little I have; I need more. And I would do anything to get it. |\r\n| 5 | I am obsessed with beauty in animals, art, and people. |\r\n| 6 | I don't trust my hunting partners, whom I know are here to steal my glory! |", - "type": "suggested_characteristics", + "name": "Tool Proficiencies", + "desc": "Leatherworker's tools, vehicles (land)", + "type": "tool_proficiency", "parent": "toh_trophy-hunter" } } diff --git a/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json b/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json index 3f25f16e..11de0304 100644 --- a/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json +++ b/data/v2/wizards-of-the-coast/srd/BackgroundBenefit.json @@ -1,17 +1,17 @@ [ { "model": "api_v2.backgroundbenefit", - "pk": 30, + "pk": "srd_acolyte_equipment", "fields": { - "name": "Skill Proficiencies", - "desc": "Insight, Religion", - "type": "skill_proficiency", + "name": "Equipment", + "desc": "A holy symbol (a gift to you when you entered the priesthood), a prayer book or prayer wheel, 5 sticks of incense, vestments, a set of common clothes, and a pouch containing 15 gp", + "type": "equipment", "parent": "srd_acolyte" } }, { "model": "api_v2.backgroundbenefit", - "pk": 31, + "pk": "srd_acolyte_languages", "fields": { "name": "Languages", "desc": "Two of your choice", @@ -21,27 +21,27 @@ }, { "model": "api_v2.backgroundbenefit", - "pk": 32, + "pk": "srd_acolyte_shelter-of-the-faithful", "fields": { - "name": "Equipment", - "desc": "A holy symbol (a gift to you when you entered the priesthood), a prayer book or prayer wheel, 5 sticks of incense, vestments, a set of common clothes, and a pouch containing 15 gp", - "type": "equipment", + "name": "Shelter of the Faithful", + "desc": "As an acolyte, you command the respect of those who share your faith, and you can perform the religious ceremonies of your deity. You and your adventuring companions can expect to receive free healing and care at a temple, shrine, or other established presence of your faith, though you must provide any material components needed for spells. Those who share your religion will support you (but only you) at a modest lifestyle.\r\n\r\nYou might also have ties to a specific temple dedicated to your chosen deity or pantheon, and you have a residence there. This could be the temple where you used to serve, if you remain on good terms with it, or a temple where you have found a new home. While near your temple, you can call upon the priests for assistance, provided the assistance you ask for is not hazardous and you remain in good standing with your temple.", + "type": "feature", "parent": "srd_acolyte" } }, { "model": "api_v2.backgroundbenefit", - "pk": 33, + "pk": "srd_acolyte_skill-proficiencies", "fields": { - "name": "Shelter of the Faithful", - "desc": "As an acolyte, you command the respect of those who share your faith, and you can perform the religious ceremonies of your deity. You and your adventuring companions can expect to receive free healing and care at a temple, shrine, or other established presence of your faith, though you must provide any material components needed for spells. Those who share your religion will support you (but only you) at a modest lifestyle.\r\n\r\nYou might also have ties to a specific temple dedicated to your chosen deity or pantheon, and you have a residence there. This could be the temple where you used to serve, if you remain on good terms with it, or a temple where you have found a new home. While near your temple, you can call upon the priests for assistance, provided the assistance you ask for is not hazardous and you remain in good standing with your temple.", - "type": "feature", + "name": "Skill Proficiencies", + "desc": "Insight, Religion", + "type": "skill_proficiency", "parent": "srd_acolyte" } }, { "model": "api_v2.backgroundbenefit", - "pk": 34, + "pk": "srd_acolyte_suggested-characteristics", "fields": { "name": "Suggested Characteristics", "desc": "Acolytes are shaped by their experience in temples or other religious communities. Their study of the history and tenets of their faith and their relationships to temples, shrines, or hierarchies affect their mannerisms and ideals. Their flaws might be some hidden hypocrisy or heretical idea, or an ideal or bond taken to an extreme.\r\n\r\n| d8 | Personality Trait |\r\n|---|---|\r\n| 1 | I idolize a particular hero of my faith, and constantly refer to that person's deeds and example. |\r\n| 2 | I can find common ground between the fiercest enemies, empathizing with them and always working toward peace. |\r\n| 3 | I see omens in every event and action. The gods try to speak to us, we just need to listen |\r\n| 4 | Nothing can shake my optimistic attitude. |\r\n| 5 | I quote (or misquote) sacred texts and proverbs in almost every situation. |\r\n| 6 | I am tolerant (or intolerant) of other faiths and respect (or condemn) the worship of other gods. |\r\n| 7 | I've enjoyed fine food, drink, and high society among my temple's elite. Rough living grates on me. |\r\n| 8 | I've spent so long in the temple that I have little practical experience dealing with people in the outside world. |\r\n\r\n| d6 | Ideal |\r\n|---|---|\r\n| 1 | Tradition. The ancient traditions of worship and sacrifice must be preserved and upheld. (Lawful) |\r\n| 2 | Charity. I always try to help those in need, no matter what the personal cost. (Good) |\r\n| 3 | Change. We must help bring about the changes the gods are constantly working in the world. (Chaotic) |\r\n| 4 | Power. I hope to one day rise to the top of my faith's religious hierarchy. (Lawful) |\r\n| 5 | Faith. I trust that my deity will guide my actions. I have faith that if I work hard, things will go well. (Lawful) |\r\n| 6 | Aspiration. I seek to prove myself worthy of my god's favor by matching my actions against his or her teachings. (Any) |\r\n\r\n| d6 | Bond |\r\n|---|---|\r\n| 1 | I would die to recover an ancient relic of my faith that was lost long ago. |\r\n| 2 | I will someday get revenge on the corrupt temple hierarchy who branded me a heretic. |\r\n| 3 | I owe my life to the priest who took me in when my parents died. |\r\n| 4 | Everything I do is for the common people. |\r\n| 5 | I will do anything to protect the temple where I served. |\r\n| 6 | I seek to preserve a sacred text that my enemies consider heretical and seek to destroy. |\r\n\r\n| d6 | Flaw |\r\n|---|---|\r\n| 1 | I judge others harshly, and myself even more severely. |\r\n| 2 | I put too much trust in those who wield power within my temple's hierarchy. |\r\n| 3 | My piety sometimes leads me to blindly trust those that profess faith in my god. |\r\n| 4 | I am inflexible in my thinking. |\r\n| 5 | I am suspicious of strangers and expect the worst of them. |\r\n| 6 | Once I pick a goal, I become obsessed with it to the detriment of everything else in my life. |", diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index 0f477619..5eede72c 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -100,8 +100,10 @@ def fix_keys_num_to_parent_name(objs,f): obj['pk'] = pk_value objs_fixed.append(obj) -# with open(f['path'],'w',encoding='utf-8') as wf: -# json.dump(objs_fixed,wf,indent=2) + if f['filename']=='BackgroundBenefit.json': + with open(f['path'],'w',encoding='utf-8') as wf: + json.dump(objs_fixed,wf,indent=2) + wf.write('\n') def check_keys_are_slugified(objs,f): for obj in objs: @@ -138,9 +140,9 @@ def fix_keys_to_doc_name(objs,f): refactor_relations(related_path+related_file,"parent",obj['former_pk'], obj['pk']) obj.pop('former_pk') - if f['filename']=='Background.json': - with open(f['path'],'w',encoding='utf-8') as wf: - json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) +# if f['filename']=='Background.json': +# with open(f['path'],'w',encoding='utf-8') as wf: +# json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) From be7adc22a69eeb82858cd6bc5495255f94068f6f Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 25 May 2024 06:53:07 -0500 Subject: [PATCH 24/84] Refactor classfeature --- api_v2/admin.py | 4 ++-- .../0077_rename_featureitem_classfeatureitem.py | 17 +++++++++++++++++ .../0078_rename_feature_classfeature.py | 17 +++++++++++++++++ api_v2/models/__init__.py | 4 ++-- api_v2/models/characterclass.py | 6 +++--- api_v2/serializers/__init__.py | 4 ++-- api_v2/serializers/characterclass.py | 10 +++++----- .../data_manipulation/data_v2_format_check.py | 16 ++++++++-------- 8 files changed, 56 insertions(+), 22 deletions(-) create mode 100644 api_v2/migrations/0077_rename_featureitem_classfeatureitem.py create mode 100644 api_v2/migrations/0078_rename_feature_classfeature.py diff --git a/api_v2/admin.py b/api_v2/admin.py index ce409500..568ed866 100644 --- a/api_v2/admin.py +++ b/api_v2/admin.py @@ -98,6 +98,6 @@ class LanguageAdmin(admin.ModelAdmin): admin.site.register(Condition) -admin.site.register(FeatureItem) -admin.site.register(Feature) +admin.site.register(ClassFeatureItem) +admin.site.register(ClassFeature) admin.site.register(CharacterClass) \ No newline at end of file diff --git a/api_v2/migrations/0077_rename_featureitem_classfeatureitem.py b/api_v2/migrations/0077_rename_featureitem_classfeatureitem.py new file mode 100644 index 00000000..1cc1e18c --- /dev/null +++ b/api_v2/migrations/0077_rename_featureitem_classfeatureitem.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2024-05-25 11:50 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0076_auto_20240524_1727'), + ] + + operations = [ + migrations.RenameModel( + old_name='FeatureItem', + new_name='ClassFeatureItem', + ), + ] diff --git a/api_v2/migrations/0078_rename_feature_classfeature.py b/api_v2/migrations/0078_rename_feature_classfeature.py new file mode 100644 index 00000000..3b9c956d --- /dev/null +++ b/api_v2/migrations/0078_rename_feature_classfeature.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2024-05-25 11:52 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0077_rename_featureitem_classfeatureitem'), + ] + + operations = [ + migrations.RenameModel( + old_name='Feature', + new_name='ClassFeature', + ), + ] diff --git a/api_v2/models/__init__.py b/api_v2/models/__init__.py index 6fef41d0..54d1f307 100644 --- a/api_v2/models/__init__.py +++ b/api_v2/models/__init__.py @@ -44,8 +44,8 @@ from .spell import CastingOption from .spell import SpellSchool -from .characterclass import FeatureItem -from .characterclass import Feature +from .characterclass import ClassFeatureItem +from .characterclass import ClassFeature from .characterclass import CharacterClass from .search import SearchResult diff --git a/api_v2/models/characterclass.py b/api_v2/models/characterclass.py index 5a360137..1f07828f 100644 --- a/api_v2/models/characterclass.py +++ b/api_v2/models/characterclass.py @@ -7,7 +7,7 @@ from .document import FromDocument from .enums import DIE_TYPES -class FeatureItem(models.Model): +class ClassFeatureItem(models.Model): """This is the class for an individual class feature item, a subset of a class feature. The name field is unused.""" @@ -17,7 +17,7 @@ class FeatureItem(models.Model): # Also spell slots...? #TODO refactor to parent - feature = models.ForeignKey('Feature', on_delete=models.CASCADE) + feature = models.ForeignKey('ClassFeature', on_delete=models.CASCADE) level = models.IntegerField(validators=[MinValueValidator(0),MaxValueValidator(20)]) def __str__(self): @@ -27,7 +27,7 @@ def __str__(self): self.feature.name) -class Feature(HasName, HasDescription, FromDocument): +class ClassFeature(HasName, HasDescription, FromDocument): """This class represents an individual class feature, such as Rage, or Extra Attack.""" diff --git a/api_v2/serializers/__init__.py b/api_v2/serializers/__init__.py index ba58a58d..d14ef52e 100644 --- a/api_v2/serializers/__init__.py +++ b/api_v2/serializers/__init__.py @@ -37,8 +37,8 @@ from .spell import SpellSerializer from .characterclass import CharacterClassSerializer -from .characterclass import FeatureSerializer -from .characterclass import FeatureItemSerializer +from .characterclass import ClassFeatureSerializer +from .characterclass import ClassFeatureItemSerializer from .search import SearchResultSerializer diff --git a/api_v2/serializers/characterclass.py b/api_v2/serializers/characterclass.py index 2a76411f..e69ffd0e 100644 --- a/api_v2/serializers/characterclass.py +++ b/api_v2/serializers/characterclass.py @@ -6,21 +6,21 @@ from .abstracts import GameContentSerializer -class FeatureItemSerializer(serializers.ModelSerializer): +class ClassFeatureItemSerializer(serializers.ModelSerializer): class Meta: - model = models.FeatureItem + model = models.ClassFeatureItem fields = ['name','desc','type'] -class FeatureSerializer(serializers.ModelSerializer): +class ClassFeatureSerializer(serializers.ModelSerializer): key = serializers.ReadOnlyField() class Meta: - model = models.Feature + model = models.ClassFeature fields = ['key', 'name', 'desc'] class CharacterClassSerializer(GameContentSerializer): key = serializers.ReadOnlyField() - features = FeatureSerializer( + features = ClassFeatureSerializer( many=True, context={'request': {}}) levels = serializers.ReadOnlyField() hit_points = serializers.ReadOnlyField() diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index 5eede72c..efd815f5 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -61,7 +61,7 @@ def main(): objs = json.load(f_in) # CHECK FOR KEYS THAT ARE NUMBERS, WARN IF EXISTS - known_keys_non_numeric_exceptions = ['CastingOption.json','Capability.json','Trait.json','FeatureItem.json'] + known_keys_non_numeric_exceptions = ['CastingOption.json','Capability.json','Trait.json'] if f_obj['filename'] in known_keys_non_numeric_exceptions: logger.debug("Skipping {}: file is known to have numeric keys.".format(f_obj['filename'])) else: @@ -93,7 +93,7 @@ def fix_keys_num_to_parent_name(objs,f): objs_fixed=[] for obj in objs: if isinstance(obj['pk'], numbers.Real): - if f['filename']=='BackgroundBenefit.json': + if f['filename']=='FeatureItem.json': logger.warning("{} changing from numeric pk to string".format(f['path'])) pk_value = "{}_{}".format(obj['fields']['parent'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) @@ -122,7 +122,7 @@ def fix_keys_to_doc_name(objs,f): for obj in objs: if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): - if f['filename']=='Background.json': + if f['filename']=='FeatureItem.json': logger.warning("{} changing to doc_name format".format(f['path'])) pk_value = "{}_{}".format(obj['fields']['document'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) @@ -132,17 +132,17 @@ def fix_keys_to_doc_name(objs,f): objs_fixed.append(obj) - related_path = "{}/{}/{}/{}/{}/".format(f['root'],f['dir'],f['schema'],f['publisher'],f['doc']) - related_filenames = ['BackgroundBenefit.json'] + # related_path = "{}/{}/{}/{}/{}/".format(f['root'],f['dir'],f['schema'],f['publisher'],f['doc']) + # related_filenames = ['BackgroundBenefit.json'] for obj in objs_fixed: for related_file in related_filenames: refactor_relations(related_path+related_file,"parent",obj['former_pk'], obj['pk']) obj.pop('former_pk') -# if f['filename']=='Background.json': -# with open(f['path'],'w',encoding='utf-8') as wf: -# json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) + #if f['filename']=='CharacterClass.json': + # with open(f['path'],'w',encoding='utf-8') as wf: + # json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) From e507a6c3baa49aa4c515603ec8517bfa8d461f6a Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 25 May 2024 06:59:06 -0500 Subject: [PATCH 25/84] Sorting out some renames. --- api_v2/migrations/0079_auto_20240525_1155.py | 23 ++++++++++++++++++++ api_v2/models/characterclass.py | 13 ++++++----- 2 files changed, 30 insertions(+), 6 deletions(-) create mode 100644 api_v2/migrations/0079_auto_20240525_1155.py diff --git a/api_v2/migrations/0079_auto_20240525_1155.py b/api_v2/migrations/0079_auto_20240525_1155.py new file mode 100644 index 00000000..2d3f1501 --- /dev/null +++ b/api_v2/migrations/0079_auto_20240525_1155.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.20 on 2024-05-25 11:55 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0078_rename_feature_classfeature'), + ] + + operations = [ + migrations.RenameField( + model_name='classfeature', + old_name='characterclass', + new_name='parent', + ), + migrations.RenameField( + model_name='classfeatureitem', + old_name='feature', + new_name='parent', + ), + ] diff --git a/api_v2/models/characterclass.py b/api_v2/models/characterclass.py index 1f07828f..1ef61af6 100644 --- a/api_v2/models/characterclass.py +++ b/api_v2/models/characterclass.py @@ -17,7 +17,7 @@ class ClassFeatureItem(models.Model): # Also spell slots...? #TODO refactor to parent - feature = models.ForeignKey('ClassFeature', on_delete=models.CASCADE) + parent = models.ForeignKey('ClassFeature', on_delete=models.CASCADE) level = models.IntegerField(validators=[MinValueValidator(0),MaxValueValidator(20)]) def __str__(self): @@ -32,7 +32,7 @@ class ClassFeature(HasName, HasDescription, FromDocument): Attack.""" #TODO refactor to parent - characterclass = models.ForeignKey('CharacterClass', + parent = models.ForeignKey('CharacterClass', on_delete=models.CASCADE) def __str__(self): @@ -78,18 +78,19 @@ def is_subclass(self): @property def features(self): """Returns the set of features that are related to this class.""" - return self.feature_set + return self.classfeature_set def levels(self): + """Returns an array of level information for the given class.""" by_level = {} - for feature in self.feature_set.all(): - for fl in feature.featureitem_set.all(): + for classfeature in self.classfeature_set.all(): + for fl in classfeature.classfeatureitem_set.all(): if (str(fl.level)) not in by_level.keys(): by_level[str(fl.level)] = {} by_level[str(fl.level)]['features'] = [] - by_level[str(fl.level)]['features'].append(fl.feature.key) + by_level[str(fl.level)]['features'].append(fl.parent.key) by_level[str(fl.level)]['proficiency-bonus'] = self.proficiency_bonus(player_level=fl.level) return by_level From 1985b1330890577a66acbf8714b2ea482d0bbf69 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 25 May 2024 07:03:30 -0500 Subject: [PATCH 26/84] Refactoring class names. --- api_v2/management/commands/export.py | 6 +- .../srd/{Feature.json => ClassFeature.json} | 736 +++--- .../srd/ClassFeatureItem.json | 2218 +++++++++++++++++ .../wizards-of-the-coast/srd/FeatureItem.json | 2218 ----------------- .../data_manipulation/data_v2_format_check.py | 8 +- 5 files changed, 2593 insertions(+), 2593 deletions(-) rename data/v2/wizards-of-the-coast/srd/{Feature.json => ClassFeature.json} (91%) create mode 100644 data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json delete mode 100644 data/v2/wizards-of-the-coast/srd/FeatureItem.json diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index 631d1653..015b1960 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -109,7 +109,7 @@ def handle(self, *args, **options) -> None: for model in app_models: SKIPPED_MODEL_NAMES = ['Document', 'Ruleset', 'License', 'Publisher','SearchResult'] - CHILD_MODEL_NAMES = ['Trait', 'Capability', 'BackgroundBenefit', 'FeatureItem', 'CastingOption'] + CHILD_MODEL_NAMES = ['Trait', 'Capability', 'BackgroundBenefit', 'ClassFeatureItem', 'CastingOption'] if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES: if model.__name__ in CHILD_MODEL_NAMES: @@ -121,8 +121,8 @@ def handle(self, *args, **options) -> None: modelq = model.objects.filter(parent__document=doc).order_by('pk') if model.__name__ == 'CastingOption': modelq = model.objects.filter(spell__document=doc).order_by('pk') - if model.__name__ == 'FeatureItem': - modelq = model.objects.filter(feature__document=doc).order_by('pk') + if model.__name__ == 'ClassFeatureItem': + modelq = model.objects.filter(parent__document=doc).order_by('pk') else: modelq = model.objects.filter(document=doc).order_by('pk') model_path = get_filepath_by_model( diff --git a/data/v2/wizards-of-the-coast/srd/Feature.json b/data/v2/wizards-of-the-coast/srd/ClassFeature.json similarity index 91% rename from data/v2/wizards-of-the-coast/srd/Feature.json rename to data/v2/wizards-of-the-coast/srd/ClassFeature.json index 9b55c2e4..6051e9fd 100644 --- a/data/v2/wizards-of-the-coast/srd/Feature.json +++ b/data/v2/wizards-of-the-coast/srd/ClassFeature.json @@ -1,1842 +1,1842 @@ [ { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "Aura of Protection", "fields": { "name": "Aura of Protection", "desc": "Starting at 6th level, whenever you or a friendly creature within 10 feet of you must make a saving throw, the creature gains a bonus to the saving throw equal to your Charisma modifier (with a minimum bonus of +1). You must be conscious to grant this bonus.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", "document": "srd", - "characterclass": "paladin" + "parent": "paladin" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "Stroke of Luck", "fields": { "name": "Stroke of Luck", "desc": "At 20th level, you have an uncanny knack for succeeding when you need to. If your attack misses a target within range, you can turn the miss into a hit. Alternatively, if you fail an ability check, you can treat the d20 roll as a 20.\r\n\r\nOnce you use this feature, you can't use it again until you finish a short or long rest.", "document": "srd", - "characterclass": "rogue" + "parent": "rogue" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "action-surge", "fields": { "name": "Action Surge", "desc": "Starting at 2nd level, you can push yourself beyond your normal limits for a moment. On your turn, you can take one additional action on top of your regular action and a possible bonus action.\r\n\r\nOnce you use this feature, you must finish a short or long rest before you can use it again. Starting at 17th level, you can use it twice before a rest, but only once on the same turn.", "document": "srd", - "characterclass": "fighter" + "parent": "fighter" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "additional-fighting-style", "fields": { "name": "Additional Fighting Style", "desc": "At 10th level, you can choose a second option from the Fighting Style class feature.", "document": "srd", - "characterclass": "champion" + "parent": "champion" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "additional-magical-secrets", "fields": { "name": "Additional Magical Secrets", "desc": "At 6th level, you learn two spells of your choice from any class. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip. The chosen spells count as bard spells for you but don't count against the number of bard spells you know.", "document": "srd", - "characterclass": "college-of-lore" + "parent": "college-of-lore" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "arcane-recovery", "fields": { "name": "Arcane Recovery", "desc": "You have learned to regain some of your magical energy by studying your spellbook. Once per day when you finish a short rest, you can choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.\r\n\r\nFor example, if you're a 4th-level wizard, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level spell slot or two 1st-level spell slots.", "document": "srd", - "characterclass": "wizard" + "parent": "wizard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "arcane-tradition", "fields": { "name": "Arcane Tradition", "desc": "When you reach 2nd level, you choose an arcane tradition, shaping your practice of magic through one of eight schools: Abjuration, Conjuration, Divination, Enchantment, Evocation, Illusion, Necromancy, or Transmutation, all detailed at the end of the class description.\r\n\r\nYour choice grants you features at 2nd level and again at 6th, 10th, and 14th level.", "document": "srd", - "characterclass": "wizard" + "parent": "wizard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "archdruid", "fields": { "name": "Archdruid", "desc": "At 20th level, you can use your Wild Shape an unlimited number of times.\r\n\r\nAdditionally, you can ignore the verbal and somatic components of your druid spells, as well as any material components that lack a cost and aren't consumed by a spell. You gain this benefit in both your normal shape and your beast shape from Wild Shape.", "document": "srd", - "characterclass": "druid" + "parent": "druid" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "aura-of-courage", "fields": { "name": "Aura of Courage", "desc": "Starting at 10th level, you and friendly creatures within 10 feet of you can't be frightened while you are conscious.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", "document": "srd", - "characterclass": "paladin" + "parent": "paladin" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "aura-of-devotion", "fields": { "name": "Aura of Devotion", "desc": "Starting at 7th level, you and friendly creatures within 10 feet of you can't be charmed while you are conscious.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", "document": "srd", - "characterclass": "oath-of-devotion" + "parent": "oath-of-devotion" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "barbarian-ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can’t increase an ability score above 20 using this feature.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "barbarian-extra-attack", "fields": { "name": "Extra Attack", "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "barbarian-unarmored-defense", "fields": { "name": "Unarmored Defense", "desc": "While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "bard-ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", "document": "srd", - "characterclass": "bard" + "parent": "bard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "bard-college", "fields": { "name": "Bard College", "desc": "At 3rd level, you delve into the advanced techniques of a bard college of your choice: the College of Lore or the College of Valor, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th and 14th level.", "document": "srd", - "characterclass": "bard" + "parent": "bard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "bard-expertise", "fields": { "name": "Expertise", "desc": "At 3rd level, choose two of your skill proficiencies. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.\r\n\r\nAt 10th level, you can choose another two skill proficiencies to gain this benefit.", "document": "srd", - "characterclass": "bard" + "parent": "bard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "bard-spellcasting", "fields": { "name": "Spellcasting", "desc": "You have learned to untangle and reshape the fabric of reality in harmony with your wishes and music.\r\n\r\nYour spells are part of your vast repertoire, magic that you can tune to different situations.\r\n\r\n###Cantrips\r\n\r\nYou know two cantrips of your choice from the bard spell list. You learn additional bard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Bard table.\r\n\r\n###Spell Slots\r\n\r\nThe Bard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell cure wounds and have a 1st-level and a 2nd-level spell slot available, you can cast cure wounds using either slot.\r\n\r\n###Spells Known of 1st Level and Higher\r\n\r\nYou know four 1st-level spells of your choice from the bard spell list.\r\n\r\nThe Spells Known column of the Bard table shows when you learn more bard spells of your choice. Each of these spells must be of a level for which you have spell slots, as shown on the table. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the bard spells you know and replace it with another spell from the bard spell list, which also must be of a level for which you have spell slots.\r\n\r\n###Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your bard spells. Your magic comes from the heart and soul you pour into the performance of your music or oration. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a bard spell you cast and when making an attack roll with one.\r\n\r\n*Spell save DC* = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n*Spell attack modifier* = your proficiency bonus + your Charisma modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast any bard spell you know as a ritual if that spell has the ritual tag.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a musical instrument (see chapter 5, “Equipment”) as a spellcasting focus for your bard spells.", "document": "srd", - "characterclass": "bard" + "parent": "bard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "bardic-inspiration", "fields": { "name": "Bardic Inspiration", "desc": "You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6.\r\n\r\nOnce within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time.\r\n\r\nYou can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest.\r\n\r\nYour Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level.", "document": "srd", - "characterclass": "bard" + "parent": "bard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "beast-spells", "fields": { "name": "Beast Spells", "desc": "Beginning at 18th level, you can cast many of your druid spells in any shape you assume using Wild Shape. You can perform the somatic and verbal components of a druid spell while in a beast shape, but you aren't able to provide material components.", "document": "srd", - "characterclass": "druid" + "parent": "druid" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "blessed-healer", "fields": { "name": "Blessed Healer", "desc": "Beginning at 6th level, the healing spells you cast on others heal you as well. When you cast a spell of 1st level or higher that restores hit points to a creature other than you, you regain hit points equal to 2 + the spell's level.", "document": "srd", - "characterclass": "life-domain" + "parent": "life-domain" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "blindsense", "fields": { "name": "Blindsense", "desc": "Starting at 14th level, if you are able to hear, you are aware of the location of any hidden or invisible creature within 10 feet of you.", "document": "srd", - "characterclass": "rogue" + "parent": "rogue" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "bonus-cantrip", "fields": { "name": "Bonus Cantrip", "desc": "When you choose this circle at 2nd level, you learn one additional druid cantrip of your choice.", "document": "srd", - "characterclass": "circle-of-the-land" + "parent": "circle-of-the-land" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "bonus-proficiencies", "fields": { "name": "Bonus Proficiencies", "desc": "When you join the College of Lore at 3rd level, you gain proficiency with three skills of your choice.", "document": "srd", - "characterclass": "college-of-lore" + "parent": "college-of-lore" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "brutal-critical", "fields": { "name": "Brutal Critical", "desc": "Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack.\r\n\r\nThis increases to two additional dice at 13th level and three additional dice at 17th level.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "channel-divinity-preserve-life", "fields": { "name": "Channel Divinity: Preserve Life", "desc": "Starting at 2nd level, you can use your Channel Divinity to heal the badly injured.\r\n\r\nAs an action, you present your holy symbol and evoke healing energy that can restore a number of hit points equal to five times your cleric level. Choose any creatures within 30 feet of you, and divide those hit points among them. This feature can restore a creature to no more than half of its hit point maximum. You can't use this feature on an undead or a construct.", "document": "srd", - "characterclass": "life-domain" + "parent": "life-domain" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "cleansing-touch", "fields": { "name": "Cleansing Touch", "desc": "Beginning at 14th level, you can use your action to end one spell on yourself or on one willing creature that you touch.\r\n\r\nYou can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain expended uses when you finish a long rest.", "document": "srd", - "characterclass": "paladin" + "parent": "paladin" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "cleric-ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", "document": "srd", - "characterclass": "cleric" + "parent": "cleric" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "cleric-channel-divinity", "fields": { "name": "Channel Divinity", "desc": "At 2nd level, you gain the ability to channel divine energy directly from your deity, using that energy to fuel magical effects. You start with two such effects: Turn Undead and an effect determined by your domain. Some domains grant you additional effects as you advance in levels, as noted in the domain description.\r\n\r\nWhen you use your Channel Divinity, you choose which effect to create. You must then finish a short or long rest to use your Channel Divinity again.\r\n\r\nSome Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your cleric spell save DC.\r\n\r\nBeginning at 6th level, you can use your Channel Divinity twice between rests, and beginning at 18th level, you can use it three times between rests. When you finish a short or long rest, you regain your expended uses.\r\n\r\n### Channel Divinity: Turn Undead\r\n\r\nAs an action, you present your holy symbol and speak a prayer censuring the undead. Each undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes any damage.\r\n\r\nA turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.", "document": "srd", - "characterclass": "cleric" + "parent": "cleric" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "cleric-spellcasting", "fields": { "name": "Spellcasting", "desc": "As a conduit for divine power, you can cast cleric spells.\r\n\r\n###Cantrips\r\n\r\nAt 1st level, you know three cantrips of your choice from the cleric spell list. You learn additional cleric cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Cleric table.\r\nPreparing and Casting Spells\r\n\r\nThe Cleric table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of cleric spells that are available for you to cast, choosing from the cleric spell list. When you do so, choose a number of cleric spells equal to your Wisdom modifier + your cleric level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 3rd-level cleric, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of cleric spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n###Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your cleric spells. The power of your spells comes from your devotion to your deity. You use your Wisdom whenever a cleric spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a cleric spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast a cleric spell as a ritual if that spell has the ritual tag and you have the spell prepared.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a holy symbol (see chapter 5, “Equipment”) as a spellcasting focus for your cleric spells.", "document": "srd", - "characterclass": "cleric" + "parent": "cleric" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "countercharm", "fields": { "name": "Countercharm", "desc": "At 6th level, you gain the ability to use musical notes or words of power to disrupt mind-influencing effects. As an action, you can start a performance that lasts until the end of your next turn. During that time, you and any friendly creatures within 30 feet of you have advantage on saving throws against being frightened or charmed. A creature must be able to hear you to gain this benefit. The performance ends early if you are incapacitated or silenced or if you voluntarily end it (no action required).", "document": "srd", - "characterclass": "bard" + "parent": "bard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "cunning-action", "fields": { "name": "Cunning Action", "desc": "Starting at 2nd level, your quick thinking and agility allow you to move and act quickly. You can take a bonus action on each of your turns in combat. This action can be used only to take the Dash, Disengage, or Hide action.", "document": "srd", - "characterclass": "rogue" + "parent": "rogue" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "cutting-words", "fields": { "name": "Cutting Words", "desc": "Also at 3rd level, you learn how to use your wit to distract, confuse, and otherwise sap the confidence and competence of others. When a creature that you can see within 60 feet of you makes an attack roll, an ability check, or a damage roll, you can use your reaction to expend one of your uses of Bardic Inspiration, rolling a Bardic Inspiration die and subtracting the number rolled from the creature's roll. You can choose to use this feature after the creature makes its roll, but before the GM determines whether the attack roll or ability check succeeds or fails, or before the creature deals its damage. The creature is immune if it can't hear you or if it's immune to being charmed.", "document": "srd", - "characterclass": "college-of-lore" + "parent": "college-of-lore" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "danger-sense", "fields": { "name": "Danger Sense", "desc": "At 2nd level, you gain an uncanny sense of when things nearby aren’t as they should be, giving you an edge when you dodge away from danger.\r\n\r\nYou have advantage on Dexterity saving throws against effects that you can see, such as traps and spells. To gain this benefit, you can’t be blinded, deafened, or incapacitated.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "dark-ones-blessing", "fields": { "name": "Dark One's Blessing", "desc": "Starting at 1st level, when you reduce a hostile creature to 0 hit points, you gain temporary hit points equal to your Charisma modifier + your warlock level (minimum of 1).", "document": "srd", - "characterclass": "the-fiend" + "parent": "the-fiend" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "dark-ones-own-luck", "fields": { "name": "Dark One's Own Luck", "desc": "Starting at 6th level, you can call on your patron to alter fate in your favor. When you make an ability check or a saving throw, you can use this feature to add a d10 to your roll. You can do so after seeing the initial roll but before any of the roll's effects occur.\r\n\r\nOnce you use this feature, you can't use it again until you finish a short or long rest.", "document": "srd", - "characterclass": "the-fiend" + "parent": "the-fiend" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "defensive-tactics", "fields": { "name": "Defensive Tactics", "desc": "At 7th level, you gain one of the following features of your choice.\r\n\r\n***Escape the Horde.*** Opportunity attacks against you are made with disadvantage.\r\n\r\n***Multiattack Defense.*** When a creature hits you with an attack, you gain a +4 bonus to AC against all subsequent attacks made by that creature for the rest of the turn.\r\n\r\n***Steel Will.*** You have advantage on saving throws against being frightened.", "document": "srd", - "characterclass": "hunter" + "parent": "hunter" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "deflect-missiles", "fields": { "name": "Deflect Missiles", "desc": "Starting at 3rd level, you can use your reaction to deflect or catch the missile when you are hit by a ranged weapon attack. When you do so, the damage you take from the attack is reduced by 1d10 + your Dexterity modifier + your monk level.\r\n\r\nIf you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in one hand and you have at least one hand free. If you catch a missile in this way, you can spend 1 ki point to make a ranged attack with the weapon or piece of ammunition you just caught, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and the missile counts as a monk weapon for the attack, which has a normal range of 20 feet and a long range of 60 feet.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "destroy-undead", "fields": { "name": "Destroy Undead", "desc": "Starting at 5th level, when an undead fails its saving throw against your Turn Undead feature, the creature is instantly destroyed if its challenge rating is at or below a certain threshold, as shown in the Destroy Undead table. \r\n\r\n### Destroy Undead (table)\r\n\r\n| Cleric Level | Destroys Undead of CR... | \r\n|---|---|\r\n| 5th | 1/2 or lower |\r\n| 8th | 1 or lower |\r\n| 11th | 2 or lower |\r\n| 14th | 3 or lower | \r\n| 17th | 4 or lower |", "document": "srd", - "characterclass": "cleric" + "parent": "cleric" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "devotion-channel-divinity", "fields": { "name": "Channel Divinity", "desc": "When you take this oath at 3rd level, you gain the following two Channel Divinity options.\r\n\r\n**Sacred Weapon.** As an action, you can imbue one weapon that you are holding with positive energy, using your Channel Divinity. For 1 minute, you add your Charisma modifier to attack rolls made with that weapon (with a minimum bonus of +1). The weapon also emits bright light in a 20-foot radius and dim light 20 feet beyond that. If the weapon is not already magical, it becomes magical for the duration.\r\n\r\nYou can end this effect on your turn as part of any other action. If you are no longer holding or carrying this weapon, or if you fall unconscious, this effect ends.\r\n\r\n**Turn the Unholy.** As an action, you present your holy symbol and speak a prayer censuring fiends and undead, using your Channel Divinity. Each fiend or undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes damage.\r\n\r\nA turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.", "document": "srd", - "characterclass": "oath-of-devotion" + "parent": "oath-of-devotion" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "devotion-oath-spells", "fields": { "name": "Oath Spells", "desc": "You gain oath spells at the paladin levels listed.\r\n\r\n### Oath of Devotion Spells\r\n| Paladin Level | Spells |\r\n| --- | --- |\r\n| 3rd | protection from evil and good, sanctuary |\r\n| 5th | lesser restoration, zone of truth |\r\n| 9th | beacon of hope, dispel magic |\r\n| 13th | freedom of movement, guardian of faith |\r\n| 17th | commune, flame strike |", "document": "srd", - "characterclass": "oath-of-devotion" + "parent": "oath-of-devotion" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "diamond-soul", "fields": { "name": "Diamond Soul", "desc": "Beginning at 14th level, your mastery of ki grants you proficiency in all saving throws.\r\n\r\nAdditionally, whenever you make a saving throw and fail, you can spend 1 ki point to reroll it and take the second result.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "disciple-of-life", "fields": { "name": "Disciple of Life", "desc": "Also starting at 1st level, your healing spells are more effective. Whenever you use a spell of 1st level or higher to restore hit points to a creature, the creature regains additional hit points equal to 2 + the spell's level.", "document": "srd", - "characterclass": "life-domain" + "parent": "life-domain" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "divine-domain", "fields": { "name": "Divine Domain", "desc": "Choose one domain related to your deity, such as Life. Each domain is detailed at the end of the class description, and each one provides examples of gods associated with it. Your choice grants you domain spells and other features when you choose it at 1st level. It also grants you additional ways to use Channel Divinity when you gain that feature at 2nd level, and additional benefits at 6th, 8th, and 17th levels.\r\n\r\n### Domain Spells\r\nEach domain has a list of spells—its domain spells—that you gain at the cleric levels noted in the domain description. Once you gain a domain spell, you always have it prepared, and it doesn’t count against the number of spells you can prepare each day. \r\nIf you have a domain spell that doesn’t appear on the cleric spell list, the spell is nonetheless a cleric spell for you.", "document": "srd", - "characterclass": "cleric" + "parent": "cleric" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "divine-health", "fields": { "name": "Divine Health", "desc": "By 3rd level, the divine magic flowing through you makes you immune to disease.", "document": "srd", - "characterclass": "paladin" + "parent": "paladin" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "divine-intervention", "fields": { "name": "Divine Intervention", "desc": "Beginning at 10th level, you can call on your deity to intervene on your behalf when your need is great.\r\n\r\nImploring your deity's aid requires you to use your action. Describe the assistance you seek, and roll percentile dice. If you roll a number equal to or lower than your cleric level, your deity intervenes. The GM chooses the nature of the intervention; the effect of any cleric spell or cleric domain spell would be appropriate.\r\n\r\nIf your deity intervenes, you can't use this feature again for 7 days. Otherwise, you can use it again after you finish a long rest.\r\n\r\nAt 20th level, your call for intervention succeeds automatically, no roll required.", "document": "srd", - "characterclass": "cleric" + "parent": "cleric" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "divine-sense", "fields": { "name": "Divine Sense", "desc": "The presence of strong evil registers on your senses like a noxious odor, and powerful good rings like heavenly music in your ears. As an action, you can open your awareness to detect such forces. Until the end of your next turn, you know the location of any celestial, fiend, or undead within 60 feet of you that is not behind total cover. You know the type (celestial, fiend, or undead) of any being whose presence you sense, but not its identity (the vampire Count Strahd von Zarovich, for instance). Within the same radius, you also detect the presence of any place or object that has been consecrated or desecrated, as with the hallow spell.\r\n\r\nYou can use this feature a number of times equal to 1 + your Charisma modifier. When you finish a long rest, you regain all expended uses.", "document": "srd", - "characterclass": "paladin" + "parent": "paladin" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "divine-smite", "fields": { "name": "Divine Smite", "desc": "Starting at 2nd level, when you hit a creature with a melee weapon attack, you can expend one spell slot to deal radiant damage to the target, in addition to the weapon's damage. The extra damage is 2d8 for a 1st-level spell slot, plus 1d8 for each spell level higher than 1st, to a maximum of 5d8. The damage increases by 1d8 if the target is an undead or a fiend.", "document": "srd", - "characterclass": "paladin" + "parent": "paladin" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "divine-strike", "fields": { "name": "Divine Strike", "desc": "At 8th level, you gain the ability to infuse your weapon strikes with divine energy. Once on each of your turns when you hit a creature with a weapon attack, you can cause the attack to deal an extra 1d8 radiant damage to the target. When you reach 14th level, the extra damage increases to 2d8.", "document": "srd", - "characterclass": "life-domain" + "parent": "life-domain" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "draconic-presence", "fields": { "name": "Draconic Presence", "desc": "Beginning at 18th level, you can channel the dread presence of your dragon ancestor, causing those around you to become awestruck or frightened. As an action, you can spend 5 sorcery points to draw on this power and exude an aura of awe or fear (your choice) to a distance of 60 feet. For 1 minute or until you lose your concentration (as if you were casting a concentration spell), each hostile creature that starts its turn in this aura must succeed on a Wisdom saving throw or be charmed (if you chose awe) or frightened (if you chose fear) until the aura ends. A creature that succeeds on this saving throw is immune to your aura for 24 hours.", "document": "srd", - "characterclass": "draconic-bloodline" + "parent": "draconic-bloodline" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "draconic-resilience", "fields": { "name": "Draconic Resilience", "desc": "As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class.\r\n\r\nAdditionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.", "document": "srd", - "characterclass": "draconic-bloodline" + "parent": "draconic-bloodline" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "dragon-ancestor", "fields": { "name": "Dragon Ancestor", "desc": "At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.\r\n\r\n### Draconic Ancestry (table)\r\n| Dragon | Damage Type |\r\n| --- | --- |\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |\r\n\r\nYou can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.", "document": "srd", - "characterclass": "draconic-bloodline" + "parent": "draconic-bloodline" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "dragon-wings", "fields": { "name": "Dragon Wings", "desc": "At 14th level, you gain the ability to sprout a pair of dragon wings from your back, gaining a flying speed equal to your current speed. You can create these wings as a bonus action on your turn. They last until you dismiss them as a bonus action on your turn.\r\n\r\nYou can't manifest your wings while wearing armor unless the armor is made to accommodate them, and clothing not made to accommodate your wings might be destroyed when you manifest them.", "document": "srd", - "characterclass": "draconic-bloodline" + "parent": "draconic-bloodline" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "druid-ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", "document": "srd", - "characterclass": "druid" + "parent": "druid" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "druid-circle", "fields": { "name": "Druid Circle", "desc": "At 2nd level, you choose to identify with a circle of druids such as the Circle of the Land. Your choice grants you features at 2nd level and again at 6th, 10th, and 14th level.", "document": "srd", - "characterclass": "druid" + "parent": "druid" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "druid-spellcasting", "fields": { "name": "Spellcasting", "desc": "Drawing on the divine essence of nature itself, you can cast spells to shape that essence to your will.\r\n\r\n###Cantrips\r\n\r\nAt 1st level, you know two cantrips of your choice from the druid spell list. You learn additional druid cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Druid table.\r\n\r\n###Preparing and Casting Spells\r\n\r\nThe Druid table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these druid spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of druid spells that are available for you to cast, choosing from the druid spell list. When you do so, choose a number of druid spells equal to your Wisdom modifier + your druid level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 3rd-level druid, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can also change your list of prepared spells when you finish a long rest. Preparing a new list of druid spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n###Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your druid spells, since your magic draws upon your devotion and attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a druid spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast a druid spell as a ritual if that spell has the ritual tag and you have the spell prepared.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a druidic focus (see chapter 5, “Equipment”) as a spellcasting focus for your druid spells.", "document": "srd", - "characterclass": "druid" + "parent": "druid" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "druid-timeless-body", "fields": { "name": "Timeless Body", "desc": "Starting at 18th level, the primal magic that you wield causes you to age more slowly. For every 10 years that pass, your body ages only 1 year.", "document": "srd", - "characterclass": "druid" + "parent": "druid" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "druidic", "fields": { "name": "Druidic", "desc": "You know Druidic, the secret language of druids. You can speak the language and use it to leave hidden messages. You and others who know this language automatically spot such a message. Others spot the message's presence with a successful DC 15 Wisdom (Perception) check but can't decipher it without magic.", "document": "srd", - "characterclass": "druid" + "parent": "druid" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "eldritch-invocation-list", "fields": { "name": "Eldritch Invocation List", "desc": "If an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.\r\n\r\n### Agonizing Blast\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you cast eldritch blast, add your Charisma modifier to the damage it deals on a hit.\r\nArmor of Shadows\r\n\r\nYou can cast mage armor on yourself at will, without expending a spell slot or material components.\r\n\r\n### Ascendant Step\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast levitate on yourself at will, without expending a spell slot or material components.\r\n\r\n### Beast Speech\r\n\r\nYou can cast speak with animals at will, without expending a spell slot.\r\n\r\n### Beguiling Influence\r\n\r\nYou gain proficiency in the Deception and Persuasion skills.\r\n\r\n### Bewitching Whispers\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast compulsion once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Book of Ancient Secrets\r\n\r\nPrerequisite: Pact of the Tome feature\r\n\r\nYou can now inscribe magical rituals in your Book of Shadows. Choose two 1st-level spells that have the ritual tag from any class's spell list (the two needn't be from the same list). The spells appear in the book and don't count against the number of spells you know. With your Book of Shadows in hand, you can cast the chosen spells as rituals. You can't cast the spells except as rituals, unless you've learned them by some other means. You can also cast a warlock spell you know as a ritual if it has the ritual tag.\r\n\r\nOn your adventures, you can add other ritual spells to your Book of Shadows. When you find such a spell, you can add it to the book if the spell's level is equal to or less than half your warlock level (rounded up) and if you can spare the time to transcribe the spell. For each level of the spell, the transcription process takes 2 hours and costs 50 gp for the rare inks needed to inscribe it.\r\n\r\n### Chains of Carceri\r\n\r\nPrerequisite: 15th level, Pact of the Chain feature\r\n\r\nYou can cast hold monster at will-targeting a celestial, fiend, or elemental-without expending a spell slot or material components. You must finish a long rest before you can use this invocation on the same creature again.\r\n\r\n### Devil's Sight\r\n\r\nYou can see normally in darkness, both magical and nonmagical, to a distance of 120 feet.\r\n\r\n### Dreadful Word\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast confusion once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Eldritch Sight\r\n\r\nYou can cast detect magic at will, without expending a spell slot.\r\n\r\n### Eldritch Spear\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you cast eldritch blast, its range is 300 feet.\r\n\r\n### Eyes of the Rune Keeper\r\n\r\nYou can read all writing.\r\n\r\n### Fiendish Vigor\r\n\r\nYou can cast false life on yourself at will as a 1st-level spell, without expending a spell slot or material components.\r\n\r\n### Gaze of Two Minds\r\n\r\nYou can use your action to touch a willing humanoid and perceive through its senses until the end of your next turn. As long as the creature is on the same plane of existence as you, you can use your action on subsequent turns to maintain this connection, extending the duration until the end of your next turn. While perceiving through the other creature's senses, you benefit from any special senses possessed by that creature, and you are blinded and deafened to your own surroundings.\r\n\r\n### Lifedrinker\r\n\r\nPrerequisite: 12th level, Pact of the Blade feature\r\n\r\nWhen you hit a creature with your pact weapon, the creature takes extra necrotic damage equal to your Charisma modifier (minimum 1).\r\n\r\n### Mask of Many Faces\r\n\r\nYou can cast disguise self at will, without expending a spell slot.\r\n\r\n### Master of Myriad Forms\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can cast alter self at will, without expending a spell slot.\r\n\r\n### Minions of Chaos\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast conjure elemental once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Mire the Mind\r\n\r\nPrerequisite: 5th level\r\n\r\nYou can cast slow once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Misty Visions\r\n\r\nYou can cast silent image at will, without expending a spell slot or material components.\r\n\r\n### One with Shadows\r\n\r\nPrerequisite: 5th level\r\n\r\nWhen you are in an area of dim light or darkness, you can use your action to become invisible until you move or take an action or a reaction.\r\n\r\n### Otherworldly Leap\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast jump on yourself at will, without expending a spell slot or material components.\r\n\r\n### Repelling Blast\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you hit a creature with eldritch blast, you can push the creature up to 10 feet away from you in a straight line.\r\n\r\n### Sculptor of Flesh\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast polymorph once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Sign of Ill Omen\r\n\r\nPrerequisite: 5th level\r\n\r\nYou can cast bestow curse once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Thief of Five Fates\r\n\r\nYou can cast bane once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Thirsting Blade\r\n\r\nPrerequisite: 5th level, Pact of the Blade feature\r\n\r\nYou can attack with your pact weapon twice, instead of once, whenever you take the Attack action on your turn.\r\n\r\n### Visions of Distant Realms\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can cast arcane eye at will, without expending a spell slot.\r\n\r\n### Voice of the Chain Master\r\n\r\nPrerequisite: Pact of the Chain feature\r\n\r\nYou can communicate telepathically with your familiar and perceive through your familiar's senses as long as you are on the same plane of existence. Additionally, while perceiving through your familiar's senses, you can also speak through your familiar in your own voice, even if your familiar is normally incapable of speech.\r\n\r\n### Whispers of the Grave\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast speak with dead at will, without expending a spell slot.\r\n\r\n### Witch Sight\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can see the true form of any shapechanger or creature concealed by illusion or transmutation magic while the creature is within 30 feet of you and within line of sight.", "document": "srd", - "characterclass": "warlock" + "parent": "warlock" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "eldritch-invocations", "fields": { "name": "Eldritch Invocations", "desc": "In your study of occult lore, you have unearthed eldritch invocations, fragments of forbidden knowledge that imbue you with an abiding magical ability.\r\n\r\nAt 2nd level, you gain two eldritch invocations of your choice. Your invocation options are detailed at the end of the class description. When you gain certain warlock levels, you gain additional invocations of your choice, as shown in the Invocations Known column of the Warlock table.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the invocations you know and replace it with another invocation that you could learn at that level.", "document": "srd", - "characterclass": "warlock" + "parent": "warlock" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "eldritch-master", "fields": { "name": "Eldritch Master", "desc": "At 20th level, you can draw on your inner reserve of mystical power while entreating your patron to regain expended spell slots. You can spend 1 minute entreating your patron for aid to regain all your expended spell slots from your Pact Magic feature. Once you regain spell slots with this feature, you must finish a long rest before you can do so again.", "document": "srd", - "characterclass": "warlock" + "parent": "warlock" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "elemental-affinity", "fields": { "name": "Elemental Affinity", "desc": "Starting at 6th level, when you cast a spell that deals damage of the type associated with your draconic ancestry, you can add your Charisma modifier to one damage roll of that spell. At the same time, you can spend 1 sorcery point to gain resistance to that damage type for 1 hour.", "document": "srd", - "characterclass": "draconic-bloodline" + "parent": "draconic-bloodline" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "elusive", "fields": { "name": "Elusive", "desc": "Beginning at 18th level, you are so evasive that attackers rarely gain the upper hand against you. No attack roll has advantage against you while you aren't incapacitated.", "document": "srd", - "characterclass": "rogue" + "parent": "rogue" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "empowered-evocation", "fields": { "name": "Empowered Evocation", "desc": "Beginning at 10th level, you can add your Intelligence modifier to one damage roll of any wizard evocation spell you cast.", "document": "srd", - "characterclass": "school-of-evocation" + "parent": "school-of-evocation" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "empty-body", "fields": { "name": "Empty Body", "desc": "Beginning at 18th level, you can use your action to spend 4 ki points to become invisible for 1 minute. During that time, you also have resistance to all damage but force damage.\r\n\r\nAdditionally, you can spend 8 ki points to cast the astral projection spell, without needing material components. When you do so, you can't take any other creatures with you.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "evocation-savant", "fields": { "name": "Evocation Savant", "desc": "Beginning when you select this school at 2nd level, the gold and time you must spend to copy an evocation spell into your spellbook is halved.", "document": "srd", - "characterclass": "school-of-evocation" + "parent": "school-of-evocation" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "expanded-spell-list", "fields": { "name": "Expanded Spell List", "desc": "The Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\r\n\r\n### Fiend Expanded Spells (table)\r\n| Spell Level | Spells |\r\n| --- | --- |\r\n| 1st | burning hands, command |\r\n| 2nd | blindness/deafness, scorching ray |\r\n| 3rd | fireball, stinking cloud |\r\n| 4th | fire shield, wall of fire |\r\n| 5th | flame strike, hallow |", "document": "srd", - "characterclass": "the-fiend" + "parent": "the-fiend" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "fast-hands", "fields": { "name": "Fast Hands", "desc": "Starting at 3rd level, you can use the bonus action granted by your Cunning Action to make a Dexterity (Sleight of Hand) check, use your thieves' tools to disarm a trap or open a lock, or take the Use an Object action.", "document": "srd", - "characterclass": "thief" + "parent": "thief" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "fast-movement", "fields": { "name": "Fast Movement", "desc": "Starting at 5th level, your speed increases by 10 feet while you aren’t wearing heavy armor.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "favored-enemy", "fields": { "name": "Favored Enemy", "desc": "Beginning at 1st level, you have significant experience studying, tracking, hunting, and even talking to a certain type of enemy.\r\n\r\nChoose a type of favored enemy: aberrations, beasts, celestials, constructs, dragons, elementals, fey, fiends, giants, monstrosities, oozes, plants, or undead. Alternatively, you can select two races of humanoid (such as gnolls and orcs) as favored enemies.\r\n\r\nYou have advantage on Wisdom (Survival) checks to track your favored enemies, as well as on Intelligence checks to recall information about them.\r\n\r\nWhen you gain this feature, you also learn one language of your choice that is spoken by your favored enemies, if they speak one at all.\r\n\r\nYou choose one additional favored enemy, as well as an associated language, at 6th and 14th level. As you gain levels, your choices should reflect the types of monsters you have encountered on your adventures.", "document": "srd", - "characterclass": "ranger" + "parent": "ranger" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "feral-instinct", "fields": { "name": "Feral Instinct", "desc": "By 7th level, your instincts are so honed that you have advantage on initiative rolls.\r\n\r\nAdditionally, if you are surprised at the beginning of combat and aren’t incapacitated, you can act normally on your first turn, but only if you enter your rage before doing anything else on that turn.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "feral-senses", "fields": { "name": "Feral Senses", "desc": "At 18th level, you gain preternatural senses that help you fight creatures you can't see. When you attack a creature you can't see, your inability to see it doesn't impose disadvantage on your attack rolls against it.\r\n\r\nYou are also aware of the location of any invisible creature within 30 feet of you, provided that the creature isn't hidden from you and you aren't blinded or deafened.", "document": "srd", - "characterclass": "ranger" + "parent": "ranger" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "fiendish-resilience", "fields": { "name": "Fiendish Resilience", "desc": "Starting at 10th level, you can choose one damage type when you finish a short or long rest. You gain resistance to that damage type until you choose a different one with this feature. Damage from magical weapons or silver weapons ignores this resistance.", "document": "srd", - "characterclass": "the-fiend" + "parent": "the-fiend" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "fighter-ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 6th, 8th, 12th, 14th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", "document": "srd", - "characterclass": "fighter" + "parent": "fighter" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "fighter-extra-attack", "fields": { "name": "Extra Attack", "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.\r\n\r\nThe number of attacks increases to three when you reach 11th level in this class and to four when you reach 20th level in this class.", "document": "srd", - "characterclass": "fighter" + "parent": "fighter" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "fighting-style", "fields": { "name": "Fighting Style", "desc": "You adopt a particular style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n###Archery\r\n\r\nYou gain a +2 bonus to attack rolls you make with ranged weapons.\r\n\r\n###Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n###Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n###Great Weapon Fighting\r\n\r\nWhen you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2. The weapon must have the two-handed or versatile property for you to gain this benefit.\r\n\r\n###Protection\r\n\r\nWhen a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.\r\n\r\n###Two-Weapon Fighting\r\n\r\nWhen you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.", "document": "srd", - "characterclass": "fighter" + "parent": "fighter" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "foe-slayer", "fields": { "name": "Foe Slayer", "desc": "At 20th level, you become an unparalleled hunter of your enemies. Once on each of your turns, you can add your Wisdom modifier to the attack roll or the damage roll of an attack you make against one of your favored enemies. You can choose to use this feature before or after the roll, but before any effects of the roll are applied.", "document": "srd", - "characterclass": "ranger" + "parent": "ranger" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "font-of-inspiration", "fields": { "name": "Font of Inspiration", "desc": "Beginning when you reach 5th level, you regain all of your expended uses of Bardic Inspiration when you finish a short or long rest.", "document": "srd", - "characterclass": "bard" + "parent": "bard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "font-of-magic", "fields": { "name": "Font of Magic", "desc": "At 2nd level, you tap into a deep wellspring of magic within yourself. This wellspring is represented by sorcery points, which allow you to create a variety of magical effects.\r\n\r\n### Sorcery Points\r\n\r\nYou have 2 sorcery points, and you gain more as you reach higher levels, as shown in the Sorcery Points column of the Sorcerer table. You can never have more sorcery points than shown on the table for your level. You regain all spent sorcery points when you finish a long rest.\r\n\r\n### Flexible Casting\r\n\r\nYou can use your sorcery points to gain additional spell slots, or sacrifice spell slots to gain additional sorcery points. You learn other ways to use your sorcery points as you reach higher levels.\r\n\r\n***Creating Spell Slots.*** You can transform unexpended sorcery points into one spell slot as a bonus action on your turn. The Creating Spell Slots table shows the cost of creating a spell slot of a given level. You can create spell slots no higher in level than 5th.\r\n\r\nAny spell slot you create with this feature vanishes when you finish a long rest.\r\n\r\n### Creating Spell Slots (table)\r\n| Spell Slot Level | Sorcery Point Cost |\r\n| --- | --- |\r\n| 1st | 2 |\r\n| 2nd | 3 |\r\n| 3rd | 5 |\r\n| 4th | 6 |\r\n| 5th | 7|\r\n\r\n***Converting a Spell Slot to Sorcery Points.*** As a bonus action on your turn, you can expend one spell slot and gain a number of sorcery points equal to the slot's level.", "document": "srd", - "characterclass": "sorcerer" + "parent": "sorcerer" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "frenzy", "fields": { "name": "Frenzy", "desc": "Starting when you choose this path at 3rd level, you can go into a frenzy when you rage. If you do so, for the duration of your rage you can make a single melee weapon attack as a bonus action on each of your turns after this one. When your rage ends, you suffer one level of exhaustion (as described in appendix A).", "document": "srd", - "characterclass": "path-of-the-berserker" + "parent": "path-of-the-berserker" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "hide-in-plain-sight", "fields": { "name": "Hide in Plain Sight", "desc": "Starting at 10th level, you can spend 1 minute creating camouflage for yourself. You must have access to fresh mud, dirt, plants, soot, and other naturally occurring materials with which to create your camouflage.\r\n\r\nOnce you are camouflaged in this way, you can try to hide by pressing yourself up against a solid surface, such as a tree or wall, that is at least as tall and wide as you are. You gain a +10 bonus to Dexterity (Stealth) checks as long as you remain there without moving or taking actions. Once you move or take an action or a reaction, you must camouflage yourself again to gain this benefit.", "document": "srd", - "characterclass": "ranger" + "parent": "ranger" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "holy-nimbus", "fields": { "name": "Holy Nimbus", "desc": "At 20th level, as an action, you can emanate an aura of sunlight. For 1 minute, bright light shines from you in a 30-foot radius, and dim light shines 30 feet beyond that.\r\n\r\nWhenever an enemy creature starts its turn in the bright light, the creature takes 10 radiant damage.\r\n\r\nIn addition, for the duration, you have advantage on saving throws against spells cast by fiends or undead.\r\n\r\nOnce you use this feature, you can't use it again until you finish a long rest.", "document": "srd", - "characterclass": "oath-of-devotion" + "parent": "oath-of-devotion" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "hunters-prey", "fields": { "name": "Hunter's Prey", "desc": "At 3rd level, you gain one of the following features of your choice.\r\n\r\n***Colossus Slayer.*** Your tenacity can wear down the most potent foes. When you hit a creature with a weapon attack, the creature takes an extra 1d8 damage if it's below its hit point maximum. You can deal this extra damage only once per turn.\r\n\r\n***Giant Killer.*** When a Large or larger creature within 5 feet of you hits or misses you with an attack, you can use your reaction to attack that creature immediately after its attack, provided that you can see the creature.\r\n\r\n***Horde Breaker.*** Once on each of your turns when you make a weapon attack, you can make another attack with the same weapon against a different creature that is within 5 feet of the original target and within range of your weapon.", "document": "srd", - "characterclass": "hunter" + "parent": "hunter" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "hurl-through-hell", "fields": { "name": "Hurl Through Hell", "desc": "Starting at 14th level, when you hit a creature with an attack, you can use this feature to instantly transport the target through the lower planes. The creature disappears and hurtles through a nightmare landscape.\r\n\r\nAt the end of your next turn, the target returns to the space it previously occupied, or the nearest unoccupied space. If the target is not a fiend, it takes 10d10 psychic damage as it reels from its horrific experience.\r\n\r\nOnce you use this feature, you can't use it again until you finish a long rest.", "document": "srd", - "characterclass": "the-fiend" + "parent": "the-fiend" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "improved-critical", "fields": { "name": "Improved Critical", "desc": "Beginning when you choose this archetype at 3rd level, your weapon attacks score a critical hit on a roll of 19 or 20.", "document": "srd", - "characterclass": "champion" + "parent": "champion" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "improved-divine-smite", "fields": { "name": "Improved Divine Smite", "desc": "By 11th level, you are so suffused with righteous might that all your melee weapon strikes carry divine power with them. Whenever you hit a creature with a melee weapon, the creature takes an extra 1d8 radiant damage. If you also use your Divine Smite with an attack, you add this damage to the extra damage of your Divine Smite.", "document": "srd", - "characterclass": "paladin" + "parent": "paladin" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "indomitable", "fields": { "name": "Indomitable", "desc": "Beginning at 9th level, you can reroll a saving throw that you fail. If you do so, you must use the new roll, and you can't use this feature again until you finish a long rest.\r\n\r\nYou can use this feature twice between long rests starting at 13th level and three times between long rests starting at 17th level.", "document": "srd", - "characterclass": "fighter" + "parent": "fighter" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "indomitable-might", "fields": { "name": "Indomitable Might", "desc": "Beginning at 18th level, if your total for a Strength check is less than your Strength score, you can use that score in place of the total.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "intimidating-presence", "fields": { "name": "Intimidating Presence", "desc": "Beginning at 10th level, you can use your action to frighten someone with your menacing presence. When you do so, choose one creature that you can see within 30 feet of you. If the creature can see or hear you, it must succeed on a Wisdom saving throw (DC equal to 8 + your proficiency bonus + your Charisma modifier) or be frightened of you until the end of your next turn. On subsequent turns, you can use your action to extend the duration of this effect on the frightened creature until the end of your next turn. This effect ends if the creature ends its turn out of line of sight or more than 60 feet away from you.\r\n\r\nIf the creature succeeds on its saving throw, you can't use this feature on that creature again for 24 hours.", "document": "srd", - "characterclass": "path-of-the-berserker" + "parent": "path-of-the-berserker" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "jack-of-all-trades", "fields": { "name": "Jack of All Trades", "desc": "Starting at 2nd level, you can add half your proficiency bonus, rounded down, to any ability check you make that doesn't already include your proficiency bonus.", "document": "srd", - "characterclass": "bard" + "parent": "bard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "ki", "fields": { "name": "Ki", "desc": "Starting at 2nd level, your training allows you to harness the mystic energy of ki. Your access to this energy is represented by a number of ki points. Your monk level determines the number of points you have, as shown in the Ki Points column of the Monk table.\r\n\r\nYou can spend these points to fuel various ki features. You start knowing three such features: Flurry of Blows, Patient Defense, and Step of the Wind. You learn more ki features as you gain levels in this class.\r\n\r\nWhen you spend a ki point, it is unavailable until you finish a short or long rest, at the end of which you draw all of your expended ki back into yourself. You must spend at least 30 minutes of the rest meditating to regain your ki points.\r\n\r\nSome of your ki features require your target to make a saving throw to resist the feature's effects. The saving throw DC is calculated as follows:\r\n\r\n*Ki save DC* = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n### Flurry of Blows\r\n\r\nImmediately after you take the Attack action on your turn, you can spend 1 ki point to make two unarmed strikes as a bonus action. \r\n\r\n### Patient Defense\r\n\r\nYou can spend 1 ki point to take the Dodge action as a bonus action on your turn.\r\n\r\n### Step of the Wind\r\n\r\nYou can spend 1 ki point to take the Disengage or Dash action as a bonus action on your turn, and your jump distance is doubled for the turn.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "ki-empowered-strikes", "fields": { "name": "Ki-Empowered Strikes", "desc": "Starting at 6th level, your unarmed strikes count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "land-circle-spells", "fields": { "name": "Circle Spells", "desc": "Your mystical connection to the land infuses you with the ability to cast certain spells. At 3rd, 5th, 7th, and 9th level you gain access to circle spells connected to the land where you became a druid. Choose that land-arctic, coast, desert, forest, grassland, mountain, or swamp-and consult the associated list of spells. \r\n\r\nOnce you gain access to a circle spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day. If you gain access to a spell that doesn't appear on the druid spell list, the spell is nonetheless a druid spell for you.\r\n\r\n**Arctic (table)**\r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | hold person, spike growth | \r\n| 5th | sleet storm, slow | \r\n| 7th | freedom of movement, ice storm | \r\n| 9th | commune with nature, cone of cold | \r\n \r\n**Coast (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | mirror image, misty step | \r\n| 5th | water breathing, water walk | \r\n| 7th | control water, freedom of movement | \r\n| 9th | conjure elemental, scrying | \r\n \r\n**Desert (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | blur, silence | \r\n| 5th | create food and water, protection from energy | \r\n| 7th | blight, hallucinatory terrain | \r\n| 9th | insect plague, wall of stone | \r\n \r\n**Forest (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | barkskin, spider climb | \r\n| 5th | call lightning, plant growth | \r\n| 7th | divination, freedom of movement | \r\n| 9th | commune with nature, tree stride | \r\n \r\n**Grassland (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | invisibility, pass without trace | \r\n| 5th | daylight, haste | \r\n| 7th | divination, freedom of movement | \r\n| 9th | dream, insect plague | \r\n \r\n**Mountain (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | spider climb, spike growth | \r\n| 5th | lightning bolt, meld into stone | \r\n| 7th | stone shape, stoneskin | \r\n| 9th | passwall, wall of stone | \r\n \r\n**Swamp (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | acid arrow, darkness | \r\n| 5th | water walk, stinking cloud | \r\n| 7th | freedom of movement, locate creature | \r\n| 9th | insect plague, scrying |", "document": "srd", - "characterclass": "circle-of-the-land" + "parent": "circle-of-the-land" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "lands-stride", "fields": { "name": "Land's Stride", "desc": "Starting at 6th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.\r\n\r\nIn addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the entangle spell.", "document": "srd", - "characterclass": "circle-of-the-land" + "parent": "circle-of-the-land" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "lay-on-hands", "fields": { "name": "Lay on Hands", "desc": "Your blessed touch can heal wounds. You have a pool of healing power that replenishes when you take a long rest. With that pool, you can restore a total number of hit points equal to your paladin level × 5.\r\n\r\nAs an action, you can touch a creature and draw power from the pool to restore a number of hit points to that creature, up to the maximum amount remaining in your pool.\r\n\r\nAlternatively, you can expend 5 hit points from your pool of healing to cure the target of one disease or neutralize one poison affecting it. You can cure multiple diseases and neutralize multiple poisons with a single use of Lay on Hands, expending hit points separately for each one.\r\n\r\nThis feature has no effect on undead and constructs.", "document": "srd", - "characterclass": "paladin" + "parent": "paladin" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "life-bonus-proficiency", "fields": { "name": "Bonus Proficiency", "desc": "When you choose this domain at 1st level, you gain proficiency with heavy armor.", "document": "srd", - "characterclass": "life-domain" + "parent": "life-domain" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "life-domain-spells", "fields": { "name": "Life Domain Spells (table)", "desc": "Cleric Level | Spells |\r\n|---|---|\r\n| 1st | bless, cure wounds | \r\n| 3rd | lesser restoration, spiritual weapon |\r\n| 5th | beacon of hope, revivify |\r\n| 7th | death ward, guardian of faith |\r\n| 9th | mass cure wounds, raise dead |", "document": "srd", - "characterclass": "life-domain" + "parent": "life-domain" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "magical-secrets", "fields": { "name": "Magical Secrets", "desc": "By 10th level, you have plundered magical knowledge from a wide spectrum of disciplines. Choose two spells from any class, including this one. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.\r\n\r\nThe chosen spells count as bard spells for you and are included in the number in the Spells Known column of the Bard table.\r\n\r\nYou learn two additional spells from any class at 14th level and again at 18th level.", "document": "srd", - "characterclass": "bard" + "parent": "bard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "martial-archetype", "fields": { "name": "Martial Archetype", "desc": "At 3rd level, you choose an archetype that you strive to emulate in your combat styles and techniques, such as Champion. The archetype you choose grants you features at 3rd level and again at 7th, 10th, 15th, and 18th level.", "document": "srd", - "characterclass": "fighter" + "parent": "fighter" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "martial-arts", "fields": { "name": "Martial Arts", "desc": "At 1st level, your practice of martial arts gives you mastery of combat styles that use unarmed strikes and monk weapons, which are shortswords and any simple melee weapons that don't have the two- handed or heavy property.\r\n\r\nYou gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:\r\n\r\n* You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.\r\n* You can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.\r\n* When you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn. \r\n\r\nCertain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "metamagic", "fields": { "name": "Metamagic", "desc": "At 3rd level, you gain the ability to twist your spells to suit your needs. You gain two of the following Metamagic options of your choice. You gain another one at 10th and 17th level.\r\n\r\nYou can use only one Metamagic option on a spell when you cast it, unless otherwise noted.\r\n\r\n### Careful Spell\r\n\r\nWhen you cast a spell that forces other creatures to make a saving throw, you can protect some of those creatures from the spell's full force. To do so, you spend 1 sorcery point and choose a number of those creatures up to your Charisma modifier (minimum of one creature). A chosen creature automatically succeeds on its saving throw against the spell.\r\n\r\n### Distant Spell\r\n\r\nWhen you cast a spell that has a range of 5 feet or greater, you can spend 1 sorcery point to double the range of the spell.\r\n\r\nWhen you cast a spell that has a range of touch, you can spend 1 sorcery point to make the range of the spell 30 feet.\r\n\r\n### Empowered Spell\r\n\r\nWhen you roll damage for a spell, you can spend 1 sorcery point to reroll a number of the damage dice up to your Charisma modifier (minimum of one). You must use the new rolls.\r\n\r\nYou can use Empowered Spell even if you have already used a different Metamagic option during the casting of the spell.\r\n\r\n### Extended Spell\r\n\r\nWhen you cast a spell that has a duration of 1 minute or longer, you can spend 1 sorcery point to double its duration, to a maximum duration of 24 hours.\r\n\r\n### Heightened Spell\r\n\r\nWhen you cast a spell that forces a creature to make a saving throw to resist its effects, you can spend 3 sorcery points to give one target of the spell disadvantage on its first saving throw made against the spell.\r\n\r\n### Quickened Spell\r\n\r\nWhen you cast a spell that has a casting time of 1 action, you can spend 2 sorcery points to change the casting time to 1 bonus action for this casting.\r\n\r\n### Subtle Spell\r\n\r\nWhen you cast a spell, you can spend 1 sorcery point to cast it without any somatic or verbal components.\r\n\r\n### Twinned Spell\r\n\r\nWhen you cast a spell that targets only one creature and doesn't have a range of self, you can spend a number of sorcery points equal to the spell's level to target a second creature in range with the same spell (1 sorcery point if the spell is a cantrip).\r\n\r\nTo be eligible, a spell must be incapable of targeting more than one creature at the spell's current level. For example, magic missile and scorching ray aren't eligible, but ray of frost and chromatic orb are.", "document": "srd", - "characterclass": "sorcerer" + "parent": "sorcerer" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "mindless-rage", "fields": { "name": "Mindless Rage", "desc": "Beginning at 6th level, you can't be charmed or frightened while raging. If you are charmed or frightened when you enter your rage, the effect is suspended for the duration of the rage.", "document": "srd", - "characterclass": "path-of-the-berserker" + "parent": "path-of-the-berserker" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "monastic-tradition", "fields": { "name": "Monastic Tradition", "desc": "When you reach 3rd level, you commit yourself to a monastic tradition such as the Way of the Open Hand. Your tradition grants you features at 3rd level and again at 6th, 11th, and 17th level.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "monk-ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "monk-evasion", "fields": { "name": "Evasion", "desc": "At 7th level, your instinctive agility lets you dodge out of the way of certain area effects, such as a blue dragon's lightning breath or a fireball spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "monk-extra-attack", "fields": { "name": "Extra Attack", "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "monk-timeless-body", "fields": { "name": "Timeless Body", "desc": "At 15th level, your ki sustains you so that you suffer none of the frailty of old age, and you can't be aged magically. You can still die of old age, however. In addition, you no longer need food or water.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "monk-unarmored-defense", "fields": { "name": "Unarmored Defense", "desc": "Beginning at 1st level, while you are wearing no armor and not wielding a shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "multiattack", "fields": { "name": "Multiattack", "desc": "At 11th level, you gain one of the following features of your choice.\r\n\r\n***Volley.*** You can use your action to make a ranged attack against any number of creatures within 10 feet of a point you can see within your weapon's range. You must have ammunition for each target, as normal, and you make a separate attack roll for each target.\r\n\r\n***Whirlwind Attack.*** You can use your action to make a melee attack against any number of creatures within 5 feet of you, with a separate attack roll for each target.", "document": "srd", - "characterclass": "hunter" + "parent": "hunter" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "mystic-arcanum", "fields": { "name": "Mystic Arcanum", "desc": "At 11th level, your patron bestows upon you a magical secret called an arcanum. Choose one 6th- level spell from the warlock spell list as this arcanum.\r\n\r\nYou can cast your arcanum spell once without expending a spell slot. You must finish a long rest before you can do so again.\r\n\r\nAt higher levels, you gain more warlock spells of your choice that can be cast in this way: one 7th- level spell at 13th level, one 8th-level spell at 15th level, and one 9th-level spell at 17th level. You regain all uses of your Mystic Arcanum when you finish a long rest.", "document": "srd", - "characterclass": "warlock" + "parent": "warlock" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "natural-explorer", "fields": { "name": "Natural Explorer", "desc": "You are particularly familiar with one type of natural environment and are adept at traveling and surviving in such regions. Choose one type of favored terrain: arctic, coast, desert, forest, grassland, mountain, or swamp. When you make an Intelligence or Wisdom check related to your favored terrain, your proficiency bonus is doubled if you are using a skill that you're proficient in.\r\n\r\nWhile traveling for an hour or more in your favored terrain, you gain the following benefits:\r\n\r\n* Difficult terrain doesn't slow your group's travel.\r\n* Your group can't become lost except by magical means.\r\n* Even when you are engaged in another activity while traveling (such as foraging, navigating, or tracking), you remain alert to danger.\r\n* If you are traveling alone, you can move stealthily at a normal pace.\r\n* When you forage, you find twice as much food as you normally would.\r\n* While tracking other creatures, you also learn their exact number, their sizes, and how long ago they passed through the area. \r\n\r\nYou choose additional favored terrain types at 6th and 10th level.", "document": "srd", - "characterclass": "ranger" + "parent": "ranger" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "natural-recovery", "fields": { "name": "Natural Recovery", "desc": "Starting at 2nd level, you can regain some of your magical energy by sitting in meditation and communing with nature. During a short rest, you choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your druid level (rounded up), and none of the slots can be 6th level or higher. You can't use this feature again until you finish a long rest.\r\n\r\nFor example, when you are a 4th-level druid, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level slot or two 1st-level slots.", "document": "srd", - "characterclass": "circle-of-the-land" + "parent": "circle-of-the-land" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "natures-sanctuary", "fields": { "name": "Nature's Sanctuary", "desc": "When you reach 14th level, creatures of the natural world sense your connection to nature and become hesitant to attack you. When a beast or plant creature attacks you, that creature must make a Wisdom saving throw against your druid spell save DC. On a failed save, the creature must choose a different target, or the attack automatically misses. On a successful save, the creature is immune to this effect for 24 hours.\r\n\r\nThe creature is aware of this effect before it makes its attack against you.", "document": "srd", - "characterclass": "circle-of-the-land" + "parent": "circle-of-the-land" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "natures-ward", "fields": { "name": "Nature's Ward", "desc": "When you reach 10th level, you can't be charmed or frightened by elementals or fey, and you are immune to poison and disease.", "document": "srd", - "characterclass": "circle-of-the-land" + "parent": "circle-of-the-land" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "open-hand-technique", "fields": { "name": "Open Hand Technique", "desc": "Starting when you choose this tradition at 3rd level, you can manipulate your enemy's ki when you harness your own. Whenever you hit a creature with one of the attacks granted by your Flurry of Blows, you can impose one of the following effects on that target:\r\n\r\n* It must succeed on a Dexterity saving throw or be knocked prone.\r\n* It must make a Strength saving throw. If it fails, you can push it up to 15 feet away from you.\r\n* It can't take reactions until the end of your next turn.", "document": "srd", - "characterclass": "way-of-the-open-hand" + "parent": "way-of-the-open-hand" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "otherworldly-patron", "fields": { "name": "Otherworldly Patron", "desc": "At 1st level, you have struck a bargain with an otherworldly being of your choice: the Archfey, the Fiend, or the Great Old One, each of which is detailed at the end of the class description. Your choice grants you features at 1st level and again at 6th, 10th, and 14th level.", "document": "srd", - "characterclass": "warlock" + "parent": "warlock" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "overchannel", "fields": { "name": "Overchannel", "desc": "Starting at 14th level, you can increase the power of your simpler spells. When you cast a wizard spell of 1st through 5th level that deals damage, you can deal maximum damage with that spell.\r\n\r\nThe first time you do so, you suffer no adverse effect. If you use this feature again before you finish a long rest, you take 2d12 necrotic damage for each level of the spell, immediately after you cast it. Each time you use this feature again before finishing a long rest, the necrotic damage per spell level increases by 1d12. This damage ignores resistance and immunity.", "document": "srd", - "characterclass": "school-of-evocation" + "parent": "school-of-evocation" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "pact-boon", "fields": { "name": "Pact Boon", "desc": "At 3rd level, your otherworldly patron bestows a gift upon you for your loyal service. You gain one of the following features of your choice.\r\n\r\n### Pact of the Chain\r\n\r\nYou learn the find familiar spell and can cast it as a ritual. The spell doesn't count against your number of spells known.\r\n\r\nWhen you cast the spell, you can choose one of the normal forms for your familiar or one of the following special forms: imp, pseudodragon, quasit, or sprite.\r\n\r\nAdditionally, when you take the Attack action, you can forgo one of your own attacks to allow your familiar to make one attack of its own with its reaction.\r\n\r\n### Pact of the Blade\r\n\r\nYou can use your action to create a pact weapon in your empty hand. You can choose the form that this melee weapon takes each time you create it. You are proficient with it while you wield it. This weapon counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.\r\n\r\nYour pact weapon disappears if it is more than 5 feet away from you for 1 minute or more. It also disappears if you use this feature again, if you dismiss the weapon (no action required), or if you die.\r\n\r\nYou can transform one magic weapon into your pact weapon by performing a special ritual while you hold the weapon. You perform the ritual over the course of 1 hour, which can be done during a short rest. You can then dismiss the weapon, shunting it into an extradimensional space, and it appears whenever you create your pact weapon thereafter. You can't affect an artifact or a sentient weapon in this way. The weapon ceases being your pact weapon if you die, if you perform the 1-hour ritual on a different weapon, or if you use a 1-hour ritual to break your bond to it. The weapon appears at your feet if it is in the extradimensional space when the bond breaks.\r\n\r\n### Pact of the Tome\r\n\r\nYour patron gives you a grimoire called a Book of Shadows. When you gain this feature, choose three cantrips from any class's spell list (the three needn't be from the same list). While the book is on your person, you can cast those cantrips at will. They don't count against your number of cantrips known. If they don't appear on the warlock spell list, they are nonetheless warlock spells for you.\r\n\r\nIf you lose your Book of Shadows, you can perform a 1-hour ceremony to receive a replacement from your patron. This ceremony can be performed during a short or long rest, and it destroys the previous book. The book turns to ash when you die.", "document": "srd", - "characterclass": "warlock" + "parent": "warlock" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "pact-magic", "fields": { "name": "Pact Magic", "desc": "Your arcane research and the magic bestowed on you by your patron have given you facility with spells.\r\n\r\n### Cantrips\r\n\r\nYou know two cantrips of your choice from the warlock spell list. You learn additional warlock cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Warlock table.\r\nSpell Slots\r\n\r\nThe Warlock table shows how many spell slots you have. The table also shows what the level of those slots is; all of your spell slots are the same level. To cast one of your warlock spells of 1st level or higher, you must expend a spell slot. You regain all expended spell slots when you finish a short or long rest.\r\n\r\nFor example, when you are 5th level, you have two 3rd-level spell slots. To cast the 1st-level spell thunderwave, you must spend one of those slots, and you cast it as a 3rd-level spell.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nAt 1st level, you know two 1st-level spells of your choice from the warlock spell list.\r\n\r\nThe Spells Known column of the Warlock table shows when you learn more warlock spells of your choice of 1st level and higher. A spell you choose must be of a level no higher than what's shown in the table's Slot Level column for your level. When you reach 6th level, for example, you learn a new warlock spell, which can be 1st, 2nd, or 3rd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the warlock spells you know and replace it with another spell from the warlock spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your warlock spells, so you use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a warlock spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\n\r\n### Spellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your warlock spells.", "document": "srd", - "characterclass": "warlock" + "parent": "warlock" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "paladin-ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", "document": "srd", - "characterclass": "paladin" + "parent": "paladin" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "paladin-extra-attack", "fields": { "name": "Extra Attack", "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", "document": "srd", - "characterclass": "paladin" + "parent": "paladin" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "paladin-fighting-style", "fields": { "name": "Fighting Style", "desc": "At 2nd level, you adopt a style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n### Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n### Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n### Great Weapon Fighting\r\n\r\nWhen you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll. The weapon must have the two-handed or versatile property for you to gain this benefit.\r\n\r\n### Protection\r\n\r\nWhen a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.", "document": "srd", - "characterclass": "paladin" + "parent": "paladin" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "paladin-spellcasting", "fields": { "name": "Spellcasting", "desc": "By 2nd level, you have learned to draw on divine magic through meditation and prayer to cast spells as a cleric does.\r\n\r\n### Preparing and Casting Spells\r\n\r\nThe Paladin table shows how many spell slots you have to cast your spells. To cast one of your paladin spells of 1st level or higher, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of paladin spells that are available for you to cast, choosing from the paladin spell list. When you do so, choose a number of paladin spells equal to your Charisma modifier + half your paladin level, rounded down (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 5th-level paladin, you have four 1st-level and two 2nd-level spell slots. With a Charisma of 14, your list of prepared spells can include four spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or a 2nd- level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of paladin spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your paladin spells, since their power derives from the strength of your convictions. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a paladin spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\nSpellcasting Focus\r\n\r\nYou can use a holy symbol as a spellcasting focus for your paladin spells.", "document": "srd", - "characterclass": "paladin" + "parent": "paladin" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "peerless-skill", "fields": { "name": "Peerless Skill", "desc": "Starting at 14th level, when you make an ability check, you can expend one use of Bardic Inspiration. Roll a Bardic Inspiration die and add the number rolled to your ability check. You can choose to do so after you roll the die for the ability check, but before the GM tells you whether you succeed or fail.", "document": "srd", - "characterclass": "college-of-lore" + "parent": "college-of-lore" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "perfect-self", "fields": { "name": "Perfect Self", "desc": "At 20th level, when you roll for initiative and have no ki points remaining, you regain 4 ki points.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "persistent-rage", "fields": { "name": "Persistent Rage", "desc": "Beginning at 15th level, your rage is so fierce that it ends early only if you fall unconscious or if you choose to end it.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "potent-cantrip", "fields": { "name": "Potent Cantrip", "desc": "Starting at 6th level, your damaging cantrips affect even creatures that avoid the brunt of the effect. When a creature succeeds on a saving throw against your cantrip, the creature takes half the cantrip's damage (if any) but suffers no additional effect from the cantrip.", "document": "srd", - "characterclass": "school-of-evocation" + "parent": "school-of-evocation" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "primal-champion", "fields": { "name": "Primal Champion", "desc": "At 20th level, you embody the power of the wilds. Your Strength and Constitution scores increase by 4. Your maximum for those scores is now 24.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "primal-path", "fields": { "name": "Primal Path", "desc": "At 3rd level, you choose a path that shapes the nature of your rage. Choose the Path of the Berserker or the Path of the Totem Warrior, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th, 10th, and 14th levels.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "primeval-awareness", "fields": { "name": "Primeval Awareness", "desc": "Beginning at 3rd level, you can use your action and expend one ranger spell slot to focus your awareness on the region around you. For 1 minute per level of the spell slot you expend, you can sense whether the following types of creatures are present within 1 mile of you (or within up to 6 miles if you are in your favored terrain): aberrations, celestials, dragons, elementals, fey, fiends, and undead. This feature doesn't reveal the creatures' location or number.", "document": "srd", - "characterclass": "ranger" + "parent": "ranger" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "purity-of-body", "fields": { "name": "Purity of Body", "desc": "At 10th level, your mastery of the ki flowing through you makes you immune to disease and poison.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "purity-of-spirit", "fields": { "name": "Purity of Spirit", "desc": "Beginning at 15th level, you are always under the effects of a *protection from evil and good* spell.", "document": "srd", - "characterclass": "oath-of-devotion" + "parent": "oath-of-devotion" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "quivering-palm", "fields": { "name": "Quivering Palm", "desc": "At 17th level, you gain the ability to set up lethal vibrations in someone's body. When you hit a creature with an unarmed strike, you can spend 3 ki points to start these imperceptible vibrations, which last for a number of days equal to your monk level. The vibrations are harmless unless you use your action to end them. To do so, you and the target must be on the same plane of existence. When you use this action, the creature must make a Constitution saving throw. If it fails, it is reduced to 0 hit points. If it succeeds, it takes 10d10 necrotic damage.\r\n\r\nYou can have only one creature under the effect of this feature at a time. You can choose to end the vibrations harmlessly without using an action.", "document": "srd", - "characterclass": "way-of-the-open-hand" + "parent": "way-of-the-open-hand" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "rage", "fields": { "name": "Rage", "desc": "In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action.\r\n\r\nWhile raging, you gain the following benefits if you aren't wearing heavy armor:\r\n\r\n* You have advantage on Strength checks and Strength saving throws.\r\n* When you make a melee weapon attack using Strength, you gain a bonus to the damage roll that increases as you gain levels as a barbarian, as shown in the Rage Damage column of the Barbarian table.\r\n* You have resistance to bludgeoning, piercing, and slashing damage. \r\n\r\nIf you are able to cast spells, you can't cast them or concentrate on them while raging.\r\n\r\nYour rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action.\r\n\r\nOnce you have raged the number of times shown for your barbarian level in the Rages column of the Barbarian table, you must finish a long rest before you can rage again.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "ranger-ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", "document": "srd", - "characterclass": "ranger" + "parent": "ranger" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "ranger-archetype", "fields": { "name": "Ranger Archetype", "desc": "At 3rd level, you choose an archetype that you strive to emulate: Hunter or Beast Master, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 7th, 11th, and 15th level.", "document": "srd", - "characterclass": "ranger" + "parent": "ranger" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "ranger-extra-attack", "fields": { "name": "Extra Attack", "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", "document": "srd", - "characterclass": "ranger" + "parent": "ranger" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "ranger-fighting-style", "fields": { "name": "Fighting Style", "desc": "At 2nd level, you adopt a particular style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n### Archery\r\n\r\nYou gain a +2 bonus to attack rolls you make with ranged weapons.\r\n\r\n### Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n### Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n### Two-Weapon Fighting\r\n\r\nWhen you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.", "document": "srd", - "characterclass": "ranger" + "parent": "ranger" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "ranger-lands-stride", "fields": { "name": "Land's Stride", "desc": "Starting at 8th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.\r\n\r\nIn addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the entangle spell.", "document": "srd", - "characterclass": "ranger" + "parent": "ranger" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "ranger-spellcasting", "fields": { "name": "Spellcasting", "desc": "By the time you reach 2nd level, you have learned to use the magical essence of nature to cast spells, much as a druid does. See chapter 10 for the general rules of spellcasting and chapter 11 for the ranger spell list.\r\n\r\n### Spell Slots\r\n\r\nThe Ranger table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell animal friendship and have a 1st-level and a 2nd-level spell slot available, you can cast animal friendship using either slot.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nYou know two 1st-level spells of your choice from the ranger spell list.\r\n\r\nThe Spells Known column of the Ranger table shows when you learn more ranger spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 5th level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the ranger spells you know and replace it with another spell from the ranger spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your ranger spells, since your magic draws on your attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a ranger spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier", "document": "srd", - "characterclass": "ranger" + "parent": "ranger" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "reckless-attack", "fields": { "name": "Reckless Attack", "desc": "Starting at 2nd level, you can throw aside all concern for defense to attack with fierce desperation. When you make your first attack on your turn, you can decide to attack recklessly. Doing so gives you advantage on melee weapon attack rolls using Strength during this turn, but attack rolls against you have advantage until your next turn.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "relentless-rage", "fields": { "name": "Relentless Rage", "desc": "Starting at 11th level, your rage can keep you fighting despite grievous wounds. If you drop to 0 hit points while you’re raging and don’t die outright, you can make a DC 10 Constitution saving throw. If you succeed, you drop to 1 hit point instead.\r\n\r\nEach time you use this feature after the first, the DC increases by 5. When you finish a short or long rest, the DC resets to 10.", "document": "srd", - "characterclass": "barbarian" + "parent": "barbarian" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "reliable-talent", "fields": { "name": "Reliable Talent", "desc": "By 11th level, you have refined your chosen skills until they approach perfection. Whenever you make an ability check that lets you add your proficiency bonus, you can treat a d20 roll of 9 or lower as a 10.", "document": "srd", - "characterclass": "rogue" + "parent": "rogue" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "remarkable-athlete", "fields": { "name": "Remarkable Athlete", "desc": "Starting at 7th level, you can add half your proficiency bonus (round up) to any Strength, Dexterity, or Constitution check you make that doesn't already use your proficiency bonus.\r\n\r\nIn addition, when you make a running long jump, the distance you can cover increases by a number of feet equal to your Strength modifier.", "document": "srd", - "characterclass": "champion" + "parent": "champion" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "retaliation", "fields": { "name": "Retaliation", "desc": "Starting at 14th level, when you take damage from a creature that is within 5 feet of you, you can use your reaction to make a melee weapon attack against that creature.", "document": "srd", - "characterclass": "path-of-the-berserker" + "parent": "path-of-the-berserker" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "rogue-ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 10th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", "document": "srd", - "characterclass": "rogue" + "parent": "rogue" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "rogue-evasion", "fields": { "name": "Evasion", "desc": "Beginning at 7th level, you can nimbly dodge out of the way of certain area effects, such as a red dragon's fiery breath or an ice storm spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.", "document": "srd", - "characterclass": "rogue" + "parent": "rogue" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "rogue-expertise", "fields": { "name": "Expertise", "desc": "At 1st level, choose two of your skill proficiencies, or one of your skill proficiencies and your proficiency with thieves' tools. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.\r\n\r\nAt 6th level, you can choose two more of your proficiencies (in skills or with thieves' tools) to gain this benefit.", "document": "srd", - "characterclass": "rogue" + "parent": "rogue" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "roguish-archetype", "fields": { "name": "Roguish Archetype", "desc": "At 3rd level, you choose an archetype that you emulate in the exercise of your rogue abilities: Thief, Assassin, or Arcane Trickster, all detailed at the end of the class description. Your archetype choice grants you features at 3rd level and then again at 9th, 13th, and 17th level.", "document": "srd", - "characterclass": "rogue" + "parent": "rogue" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "sacred-oath", "fields": { "name": "Sacred Oath", "desc": "When you reach 3rd level, you swear the oath that binds you as a paladin forever. Up to this time you have been in a preparatory stage, committed to the path but not yet sworn to it. Now you choose the Oath of Devotion, the Oath of the Ancients, or the Oath of Vengeance, all detailed at the end of the class description.\r\n\r\nYour choice grants you features at 3rd level and again at 7th, 15th, and 20th level. Those features include oath spells and the Channel Divinity feature.\r\n\r\n### Oath Spells\r\n\r\nEach oath has a list of associated spells. You gain access to these spells at the levels specified in the oath description. Once you gain access to an oath spell, you always have it prepared. Oath spells don't count against the number of spells you can prepare each day.\r\n\r\nIf you gain an oath spell that doesn't appear on the paladin spell list, the spell is nonetheless a paladin spell for you.\r\n\r\n### Channel Divinity\r\n\r\nYour oath allows you to channel divine energy to fuel magical effects. Each Channel Divinity option provided by your oath explains how to use it.\r\n\r\nWhen you use your Channel Divinity, you choose which option to use. You must then finish a short or long rest to use your Channel Divinity again.\r\n\r\nSome Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your paladin spell save DC.", "document": "srd", - "characterclass": "paladin" + "parent": "paladin" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "sculpt-spells", "fields": { "name": "Sculpt Spells", "desc": "Beginning at 2nd level, you can create pockets of relative safety within the effects of your evocation spells. When you cast an evocation spell that affects other creatures that you can see, you can choose a number of them equal to 1 + the spell's level. The chosen creatures automatically succeed on their saving throws against the spell, and they take no damage if they would normally take half damage on a successful save.", "document": "srd", - "characterclass": "school-of-evocation" + "parent": "school-of-evocation" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "second-story-work", "fields": { "name": "Second-Story Work", "desc": "When you choose this archetype at 3rd level, you gain the ability to climb faster than normal; climbing no longer costs you extra movement.\r\n\r\nIn addition, when you make a running jump, the distance you cover increases by a number of feet equal to your Dexterity modifier.", "document": "srd", - "characterclass": "thief" + "parent": "thief" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "second-wind", "fields": { "name": "Second Wind", "desc": "You have a limited well of stamina that you can draw on to protect yourself from harm. On your turn, you can use a bonus action to regain hit points equal to 1d10 + your fighter level. Once you use this feature, you must finish a short or long rest before you can use it again.", "document": "srd", - "characterclass": "fighter" + "parent": "fighter" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "signature-spells", "fields": { "name": "Signature Spells", "desc": "When you reach 20th level, you gain mastery over two powerful spells and can cast them with little effort. Choose two 3rd-level wizard spells in your spellbook as your signature spells. You always have these spells prepared, they don't count against the number of spells you have prepared, and you can cast each of them once at 3rd level without expending a spell slot. When you do so, you can't do so again until you finish a short or long rest.\r\n\r\nIf you want to cast either spell at a higher level, you must expend a spell slot as normal.", "document": "srd", - "characterclass": "wizard" + "parent": "wizard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "slippery-mind", "fields": { "name": "Slippery Mind", "desc": "By 15th level, you have acquired greater mental strength. You gain proficiency in Wisdom saving throws.", "document": "srd", - "characterclass": "rogue" + "parent": "rogue" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "slow-fall", "fields": { "name": "Slow Fall", "desc": "Beginning at 4th level, you can use your reaction when you fall to reduce any falling damage you take by an amount equal to five times your monk level.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "sneak-attack", "fields": { "name": "Sneak Attack", "desc": "Beginning at 1st level, you know how to strike subtly and exploit a foe's distraction. Once per turn, you can deal an extra 1d6 damage to one creature you hit with an attack if you have advantage on the attack roll. The attack must use a finesse or a ranged weapon.\r\n\r\nYou don't need advantage on the attack roll if another enemy of the target is within 5 feet of it, that enemy isn't incapacitated, and you don't have disadvantage on the attack roll.\r\n\r\nThe amount of the extra damage increases as you gain levels in this class, as shown in the Sneak Attack column of the Rogue table.", "document": "srd", - "characterclass": "rogue" + "parent": "rogue" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "song-of-rest", "fields": { "name": "Song of Rest", "desc": "Beginning at 2nd level, you can use soothing music or oration to help revitalize your wounded allies during a short rest. If you or any friendly creatures who can hear your performance regain hit points at the end of the short rest by spending one or more Hit Dice, each of those creatures regains an extra 1d6 hit points.\r\n\r\nThe extra hit points increase when you reach certain levels in this class: to 1d8 at 9th level, to 1d10 at 13th level, and to 1d12 at 17th level.", "document": "srd", - "characterclass": "bard" + "parent": "bard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "sorceror-ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", "document": "srd", - "characterclass": "sorcerer" + "parent": "sorcerer" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "sorceror-spellcasting", "fields": { "name": "Spellcasting", "desc": "An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your spells.\r\n\r\n### Cantrips\r\n\r\nAt 1st level, you know four cantrips of your choice from the sorcerer spell list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.\r\n\r\n### Spell Slots\r\n\r\nThe Sorcerer table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these sorcerer spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell burning hands and have a 1st-level and a 2nd-level spell slot available, you can cast burning hands using either slot.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nYou know two 1st-level spells of your choice from the sorcerer spell list.\r\n\r\nThe Spells Known column of the Sorcerer table shows when you learn more sorcerer spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the sorcerer spells you know and replace it with another spell from the sorcerer spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your sorcerer spells, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC = 8** + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\nSpellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your sorcerer spells.", "document": "srd", - "characterclass": "sorcerer" + "parent": "sorcerer" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "sorcerous-origin", "fields": { "name": "Sorcerous Origin", "desc": "Choose a sorcerous origin, which describes the source of your innate magical power: Draconic Bloodline or Wild Magic, both detailed at the end of the class description.\r\n\r\nYour choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.", "document": "srd", - "characterclass": "sorcerer" + "parent": "sorcerer" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "sorcerous-restoration", "fields": { "name": "Sorcerous Restoration", "desc": "At 20th level, you regain 4 expended sorcery points whenever you finish a short rest.", "document": "srd", - "characterclass": "sorcerer" + "parent": "sorcerer" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "spell-mastery", "fields": { "name": "Spell Mastery", "desc": "At 18th level, you have achieved such mastery over certain spells that you can cast them at will. Choose a 1st-level wizard spell and a 2nd-level wizard spell that are in your spellbook. You can cast those spells at their lowest level without expending a spell slot when you have them prepared. If you want to cast either spell at a higher level, you must expend a spell slot as normal.\r\n\r\nBy spending 8 hours in study, you can exchange one or both of the spells you chose for different spells of the same levels.", "document": "srd", - "characterclass": "wizard" + "parent": "wizard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "stillness-of-mind", "fields": { "name": "Stillness of Mind", "desc": "Starting at 7th level, you can use your action to end one effect on yourself that is causing you to be charmed or frightened.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "stunning-strike", "fields": { "name": "Stunning Strike", "desc": "Starting at 5th level, you can interfere with the flow of ki in an opponent's body. When you hit another creature with a melee weapon attack, you can spend 1 ki point to attempt a stunning strike. The target must succeed on a Constitution saving throw or be stunned until the end of your next turn.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "superior-critical", "fields": { "name": "Superior Critical", "desc": "Starting at 15th level, your weapon attacks score a critical hit on a roll of 18-20.", "document": "srd", - "characterclass": "champion" + "parent": "champion" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "superior-hunters-defense", "fields": { "name": "Superior Hunter's Defense", "desc": "At 15th level, you gain one of the following features of your choice.\r\n\r\n***Evasion.*** When you are subjected to an effect, such as a red dragon's fiery breath or a lightning bolt spell, that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.\r\n\r\n***Stand Against the Tide.*** When a hostile creature misses you with a melee attack, you can use your reaction to force that creature to repeat the same attack against another creature (other than itself) of your choice.\r\n\r\n***Uncanny Dodge.*** When an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.", "document": "srd", - "characterclass": "hunter" + "parent": "hunter" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "superior-inspiration", "fields": { "name": "Superior Inspiration", "desc": "At 20th level, when you roll initiative and have no uses of Bardic Inspiration left, you regain one use.", "document": "srd", - "characterclass": "bard" + "parent": "bard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "supreme-healing", "fields": { "name": "Supreme Healing", "desc": "Starting at 17th level, when you would normally roll one or more dice to restore hit points with a spell, you instead use the highest number possible for each die. For example, instead of restoring 2d6 hit points to a creature, you restore 12.", "document": "srd", - "characterclass": "life-domain" + "parent": "life-domain" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "supreme-sneak", "fields": { "name": "Supreme Sneak", "desc": "Starting at 9th level, you have advantage on a Dexterity (Stealth) check if you move no more than half your speed on the same turn.", "document": "srd", - "characterclass": "thief" + "parent": "thief" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "survivor", "fields": { "name": "Survivor", "desc": "At 18th level, you attain the pinnacle of resilience in battle. At the start of each of your turns, you regain hit points equal to 5 + your Constitution modifier if you have no more than half of your hit points left. You don't gain this benefit if you have 0 hit points.", "document": "srd", - "characterclass": "champion" + "parent": "champion" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "tenets-of-devotion", "fields": { "name": "Tenets of Devotion", "desc": "Though the exact words and strictures of the Oath of Devotion vary, paladins of this oath share these tenets.\r\n\r\n*Honesty.* Don't lie or cheat. Let your word be your promise.\r\n\r\n*Courage.* Never fear to act, though caution is wise.\r\n\r\n*Compassion.* Aid others, protect the weak, and punish those who threaten them. Show mercy to your foes, but temper it with wisdom.\r\n\r\n*Honor.* Treat others with fairness, and let your honorable deeds be an example to them. Do as much good as possible while causing the least amount of harm.\r\n\r\n*Duty.* Be responsible for your actions and their consequences, protect those entrusted to your care, and obey those who have just authority over you.", "document": "srd", - "characterclass": "oath-of-devotion" + "parent": "oath-of-devotion" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "thiefs-reflexes", "fields": { "name": "Thief's Reflexes", "desc": "When you reach 17th level, you have become adept at laying ambushes and quickly escaping danger. You can take two turns during the first round of any combat. You take your first turn at your normal initiative and your second turn at your initiative minus 10. You can't use this feature when you are surprised.", "document": "srd", - "characterclass": "thief" + "parent": "thief" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "thieves-cant", "fields": { "name": "Thieves' Cant", "desc": "During your rogue training you learned thieves' cant, a secret mix of dialect, jargon, and code that allows you to hide messages in seemingly normal conversation. Only another creature that knows thieves' cant understands such messages. It takes four times longer to convey such a message than it does to speak the same idea plainly.\r\n\r\nIn addition, you understand a set of secret signs and symbols used to convey short, simple messages, such as whether an area is dangerous or the territory of a thieves' guild, whether loot is nearby, or whether the people in an area are easy marks or will provide a safe house for thieves on the run.", "document": "srd", - "characterclass": "rogue" + "parent": "rogue" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "tongue-of-the-sun-and-moon", "fields": { "name": "Tongue of the Sun and Moon", "desc": "Starting at 13th level, you learn to touch the ki of other minds so that you understand all spoken languages. Moreover, any creature that can understand a language can understand what you say.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "tranquility", "fields": { "name": "Tranquility", "desc": "Beginning at 11th level, you can enter a special meditation that surrounds you with an aura of peace. At the end of a long rest, you gain the effect of a sanctuary spell that lasts until the start of your next long rest (the spell can end early as normal). The saving throw DC for the spell equals 8 + your Wisdom modifier + your proficiency bonus.", "document": "srd", - "characterclass": "way-of-the-open-hand" + "parent": "way-of-the-open-hand" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "unarmored-movement", "fields": { "name": "Unarmored Movement", "desc": "Starting at 2nd level, your speed increases by 10 feet while you are not wearing armor or wielding a shield. This bonus increases when you reach certain monk levels, as shown in the Monk table.\r\n\r\nAt 9th level, you gain the ability to move along vertical surfaces and across liquids on your turn without falling during the move.", "document": "srd", - "characterclass": "monk" + "parent": "monk" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "uncanny-dodge", "fields": { "name": "Uncanny Dodge", "desc": "Starting at 5th level, when an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.", "document": "srd", - "characterclass": "rogue" + "parent": "rogue" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "use-magic-device", "fields": { "name": "Use Magic Device", "desc": "By 13th level, you have learned enough about the workings of magic that you can improvise the use of items even when they are not intended for you. You ignore all class, race, and level requirements on the use of magic items.", "document": "srd", - "characterclass": "thief" + "parent": "thief" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "vanish", "fields": { "name": "Vanish", "desc": "Starting at 14th level, you can use the Hide action as a bonus action on your turn. Also, you can't be tracked by nonmagical means, unless you choose to leave a trail.", "document": "srd", - "characterclass": "ranger" + "parent": "ranger" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "warlock-ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", "document": "srd", - "characterclass": "warlock" + "parent": "warlock" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "wholeness-of-body", "fields": { "name": "Wholeness of Body", "desc": "At 6th level, you gain the ability to heal yourself. As an action, you can regain hit points equal to three times your monk level. You must finish a long rest before you can use this feature again.", "document": "srd", - "characterclass": "way-of-the-open-hand" + "parent": "way-of-the-open-hand" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "wild-shape", "fields": { "name": "Wild Shape", "desc": "Starting at 2nd level, you can use your action to magically assume the shape of a beast that you have seen before. You can use this feature twice. You regain expended uses when you finish a short or long rest.\r\n\r\nYour druid level determines the beasts you can transform into, as shown in the Beast Shapes table. At 2nd level, for example, you can transform into any beast that has a challenge rating of 1/4 or lower that doesn't have a flying or swimming speed.\r\n\r\n| Level | Max. CR | Limitations | Example |\r\n| --- | --- | --- | --- |\r\n| 2nd | 1/4 | No flying or swimming speed | Wolf |\r\n| 4th | 1/2 | No flying speed | Crocodile |\r\n| 8th | 1 | - | Giant Eagle |\r\n\r\nYou can stay in a beast shape for a number of hours equal to half your druid level (rounded down). You then revert to your normal form unless you expend another use of this feature. You can revert to your normal form earlier by using a bonus action on your turn. You automatically revert if you fall unconscious, drop to 0 hit points, or die.\r\n\r\nWhile you are transformed, the following rules apply:\r\nYour game statistics are replaced by the statistics of the beast, but you retain your alignment, personality, and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus in its stat block is higher than yours, use the creature's bonus instead of yours. If the creature has any legendary or lair actions, you can't use them.\r\n\r\nWhen you transform, you assume the beast's hit points and Hit Dice. When you revert to your normal form, you return to the number of hit points you had before you transformed. However, if you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. For example, if you take 10 damage in animal form and have only 1 hit point left, you revert and take 9 damage. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious.\r\n\r\nYou can't cast spells, and your ability to speak or take any action that requires hands is limited to the capabilities of your beast form. Transforming doesn't break your concentration on a spell you've already cast, however, or prevent you from taking actions that are part of a spell, such as call lightning, that you've already cast.\r\n\r\nYou retain the benefit of any features from your class, race, or other source and can use them if the new form is physically capable of doing so. However, you can't use any of your special senses, such as darkvision, unless your new form also has that sense.\r\n\r\nYou choose whether your equipment falls to the ground in your space, merges into your new form, or is worn by it. Worn equipment functions as normal, but the GM decides whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change size or shape to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge with it. Equipment that merges with the form has no effect until you leave the form.", "document": "srd", - "characterclass": "druid" + "parent": "druid" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "wizard-ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", "document": "srd", - "characterclass": "wizard" + "parent": "wizard" } }, { - "model": "api_v2.feature", + "model": "api_v2.classfeature", "pk": "wizard-spellcasting", "fields": { "name": "Spellcasting", "desc": "As a student of arcane magic, you have a spellbook containing spells that show the first glimmerings of your true power.\r\n\r\n### Cantrips\r\n\r\nAt 1st level, you know three cantrips of your choice from the wizard spell list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.\r\n\r\n### Spellbook\r\n\r\nAt 1st level, you have a spellbook containing six 1st- level wizard spells of your choice. Your spellbook is the repository of the wizard spells you know, except your cantrips, which are fixed in your mind.\r\n\r\n### Preparing and Casting Spells\r\n\r\nThe Wizard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of wizard spells that are available for you to cast. To do so, choose a number of wizard spells from your spellbook equal to your Intelligence modifier + your wizard level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you're a 3rd-level wizard, you have four 1st-level and two 2nd-level spell slots. With an Intelligence of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination, chosen from your spellbook. If you prepare the 1st-level spell magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of wizard spells requires time spent studying your spellbook and memorizing the incantations and gestures you must make to cast the spell: at least 1 minute per spell level for each spell on your list.\r\n\r\n### Spellcasting Ability\r\n\r\nIntelligence is your spellcasting ability for your wizard spells, since you learn your spells through dedicated study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Intelligence modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Intelligence modifier\r\n\r\n### Ritual Casting\r\n\r\nYou can cast a wizard spell as a ritual if that spell has the ritual tag and you have the spell in your spellbook. You don't need to have the spell prepared.\r\n\r\n### Spellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your wizard spells.\r\n\r\n### Learning Spells of 1st Level and Higher\r\n\r\nEach time you gain a wizard level, you can add two wizard spells of your choice to your spellbook for free. Each of these spells must be of a level for which you have spell slots, as shown on the Wizard table. On your adventures, you might find other spells that you can add to your spellbook (see the “Your Spellbook” sidebar).", "document": "srd", - "characterclass": "wizard" + "parent": "wizard" } } ] diff --git a/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json b/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json new file mode 100644 index 00000000..f06c082e --- /dev/null +++ b/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json @@ -0,0 +1,2218 @@ +[ +{ + "model": "api_v2.classfeatureitem", + "pk": 1, + "fields": { + "parent": "rage", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 2, + "fields": { + "parent": "barbarian-unarmored-defense", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 3, + "fields": { + "parent": "reckless-attack", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 4, + "fields": { + "parent": "danger-sense", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 5, + "fields": { + "parent": "primal-path", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 6, + "fields": { + "parent": "barbarian-ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 7, + "fields": { + "parent": "barbarian-extra-attack", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 8, + "fields": { + "parent": "fast-movement", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 9, + "fields": { + "parent": "feral-instinct", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 10, + "fields": { + "parent": "barbarian-ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 11, + "fields": { + "parent": "brutal-critical", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 12, + "fields": { + "parent": "relentless-rage", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 13, + "fields": { + "parent": "barbarian-ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 14, + "fields": { + "parent": "brutal-critical", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 15, + "fields": { + "parent": "persistent-rage", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 16, + "fields": { + "parent": "barbarian-ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 17, + "fields": { + "parent": "brutal-critical", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 18, + "fields": { + "parent": "indomitable-might", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 19, + "fields": { + "parent": "barbarian-ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 20, + "fields": { + "parent": "primal-champion", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 21, + "fields": { + "parent": "frenzy", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 22, + "fields": { + "parent": "mindless-rage", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 23, + "fields": { + "parent": "intimidating-presence", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 24, + "fields": { + "parent": "retaliation", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 25, + "fields": { + "parent": "bard-spellcasting", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 26, + "fields": { + "parent": "bardic-inspiration", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 27, + "fields": { + "parent": "jack-of-all-trades", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 28, + "fields": { + "parent": "song-of-rest", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 29, + "fields": { + "parent": "bard-college", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 30, + "fields": { + "parent": "bard-expertise", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 31, + "fields": { + "parent": "bard-ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 32, + "fields": { + "parent": "bardic-inspiration", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 33, + "fields": { + "parent": "font-of-inspiration", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 34, + "fields": { + "parent": "countercharm", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 35, + "fields": { + "parent": "bard-ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 36, + "fields": { + "parent": "song-of-rest", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 37, + "fields": { + "parent": "bardic-inspiration", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 38, + "fields": { + "parent": "bard-expertise", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 39, + "fields": { + "parent": "magical-secrets", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 40, + "fields": { + "parent": "bard-ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 41, + "fields": { + "parent": "song-of-rest", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 42, + "fields": { + "parent": "magical-secrets", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 43, + "fields": { + "parent": "bardic-inspiration", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 44, + "fields": { + "parent": "bard-ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 45, + "fields": { + "parent": "song-of-rest", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 46, + "fields": { + "parent": "magical-secrets", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 47, + "fields": { + "parent": "bard-ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 48, + "fields": { + "parent": "superior-inspiration", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 49, + "fields": { + "parent": "bonus-proficiencies", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 50, + "fields": { + "parent": "cutting-words", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 51, + "fields": { + "parent": "additional-magical-secrets", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 52, + "fields": { + "parent": "peerless-skill", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 53, + "fields": { + "parent": "cleric-spellcasting", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 54, + "fields": { + "parent": "divine-domain", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 55, + "fields": { + "parent": "cleric-channel-divinity", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 56, + "fields": { + "parent": "life-bonus-proficiency", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 57, + "fields": { + "parent": "life-domain-spells", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 58, + "fields": { + "parent": "disciple-of-life", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 59, + "fields": { + "parent": "channel-divinity-preserve-life", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 60, + "fields": { + "parent": "cleric-ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 61, + "fields": { + "parent": "destroy-undead", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 62, + "fields": { + "parent": "cleric-channel-divinity", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 63, + "fields": { + "parent": "blessed-healer", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 64, + "fields": { + "parent": "cleric-ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 65, + "fields": { + "parent": "destroy-undead", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 66, + "fields": { + "parent": "divine-strike", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 67, + "fields": { + "parent": "divine-intervention", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 68, + "fields": { + "parent": "destroy-undead", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 69, + "fields": { + "parent": "cleric-ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 70, + "fields": { + "parent": "destroy-undead", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 71, + "fields": { + "parent": "supreme-healing", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 72, + "fields": { + "parent": "cleric-channel-divinity", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 73, + "fields": { + "parent": "cleric-ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 74, + "fields": { + "parent": "divine-intervention", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 75, + "fields": { + "parent": "druidic", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 76, + "fields": { + "parent": "druid-spellcasting", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 77, + "fields": { + "parent": "wild-shape", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 78, + "fields": { + "parent": "druid-circle", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 79, + "fields": { + "parent": "wild-shape", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 80, + "fields": { + "parent": "druid-ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 81, + "fields": { + "parent": "wild-shape", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 82, + "fields": { + "parent": "druid-ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 83, + "fields": { + "parent": "druid-ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 84, + "fields": { + "parent": "druid-ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 86, + "fields": { + "parent": "beast-spells", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 87, + "fields": { + "parent": "druid-ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 88, + "fields": { + "parent": "archdruid", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 89, + "fields": { + "parent": "bonus-cantrip", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 90, + "fields": { + "parent": "natural-recovery", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 91, + "fields": { + "parent": "land-circle-spells", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 92, + "fields": { + "parent": "land-circle-spells", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 93, + "fields": { + "parent": "land-circle-spells", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 94, + "fields": { + "parent": "land-circle-spells", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 95, + "fields": { + "parent": "lands-stride", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 96, + "fields": { + "parent": "natures-ward", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 97, + "fields": { + "parent": "natures-sanctuary", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 98, + "fields": { + "parent": "fighting-style", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 99, + "fields": { + "parent": "second-wind", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 100, + "fields": { + "parent": "action-surge", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 101, + "fields": { + "parent": "martial-archetype", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 102, + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 103, + "fields": { + "parent": "fighter-extra-attack", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 104, + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 105, + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 106, + "fields": { + "parent": "indomitable", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 107, + "fields": { + "parent": "fighter-extra-attack", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 108, + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 109, + "fields": { + "parent": "indomitable", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 110, + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 111, + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 112, + "fields": { + "parent": "action-surge", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 113, + "fields": { + "parent": "indomitable", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 114, + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 115, + "fields": { + "parent": "fighter-extra-attack", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 116, + "fields": { + "parent": "improved-critical", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 117, + "fields": { + "parent": "remarkable-athlete", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 118, + "fields": { + "parent": "additional-fighting-style", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 119, + "fields": { + "parent": "superior-critical", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 120, + "fields": { + "parent": "survivor", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 121, + "fields": { + "parent": "monk-unarmored-defense", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 122, + "fields": { + "parent": "martial-arts", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 123, + "fields": { + "parent": "ki", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 124, + "fields": { + "parent": "unarmored-movement", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 125, + "fields": { + "parent": "monastic-tradition", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 126, + "fields": { + "parent": "deflect-missiles", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 127, + "fields": { + "parent": "monk-ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 128, + "fields": { + "parent": "slow-fall", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 129, + "fields": { + "parent": "monk-extra-attack", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 130, + "fields": { + "parent": "stunning-strike", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 131, + "fields": { + "parent": "ki-empowered-strikes", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 132, + "fields": { + "parent": "monk-evasion", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 133, + "fields": { + "parent": "stillness-of-mind", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 134, + "fields": { + "parent": "monk-ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 135, + "fields": { + "parent": "unarmored-movement", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 136, + "fields": { + "parent": "purity-of-body", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 137, + "fields": { + "parent": "monk-ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 138, + "fields": { + "parent": "tongue-of-the-sun-and-moon", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 139, + "fields": { + "parent": "diamond-soul", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 140, + "fields": { + "parent": "monk-timeless-body", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 141, + "fields": { + "parent": "monk-ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 142, + "fields": { + "parent": "empty-body", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 143, + "fields": { + "parent": "monk-ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 144, + "fields": { + "parent": "perfect-self", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 145, + "fields": { + "parent": "open-hand-technique", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 146, + "fields": { + "parent": "wholeness-of-body", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 147, + "fields": { + "parent": "tranquility", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 148, + "fields": { + "parent": "quivering-palm", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 149, + "fields": { + "parent": "divine-sense", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 150, + "fields": { + "parent": "lay-on-hands", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 151, + "fields": { + "parent": "paladin-fighting-style", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 152, + "fields": { + "parent": "paladin-spellcasting", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 153, + "fields": { + "parent": "divine-smite", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 154, + "fields": { + "parent": "divine-health", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 155, + "fields": { + "parent": "sacred-oath", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 156, + "fields": { + "parent": "paladin-ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 157, + "fields": { + "parent": "paladin-extra-attack", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 158, + "fields": { + "parent": "Aura of Protection", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 159, + "fields": { + "parent": "paladin-ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 160, + "fields": { + "parent": "aura-of-courage", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 161, + "fields": { + "parent": "improved-divine-smite", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 162, + "fields": { + "parent": "paladin-ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 163, + "fields": { + "parent": "cleansing-touch", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 164, + "fields": { + "parent": "paladin-ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 165, + "fields": { + "parent": "Aura of Protection", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 166, + "fields": { + "parent": "aura-of-courage", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 167, + "fields": { + "parent": "paladin-ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 168, + "fields": { + "parent": "tenets-of-devotion", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 169, + "fields": { + "parent": "devotion-oath-spells", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 170, + "fields": { + "parent": "devotion-oath-spells", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 171, + "fields": { + "parent": "devotion-oath-spells", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 172, + "fields": { + "parent": "devotion-oath-spells", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 173, + "fields": { + "parent": "devotion-oath-spells", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 174, + "fields": { + "parent": "devotion-channel-divinity", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 175, + "fields": { + "parent": "aura-of-devotion", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 176, + "fields": { + "parent": "aura-of-devotion", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 177, + "fields": { + "parent": "purity-of-spirit", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 178, + "fields": { + "parent": "holy-nimbus", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 179, + "fields": { + "parent": "favored-enemy", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 180, + "fields": { + "parent": "natural-explorer", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 181, + "fields": { + "parent": "ranger-fighting-style", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 182, + "fields": { + "parent": "ranger-spellcasting", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 183, + "fields": { + "parent": "ranger-archetype", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 184, + "fields": { + "parent": "primeval-awareness", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 185, + "fields": { + "parent": "ranger-ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 186, + "fields": { + "parent": "ranger-extra-attack", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 187, + "fields": { + "parent": "favored-enemy", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 188, + "fields": { + "parent": "natural-explorer", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 189, + "fields": { + "parent": "ranger-ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 190, + "fields": { + "parent": "ranger-lands-stride", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 191, + "fields": { + "parent": "natural-explorer", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 192, + "fields": { + "parent": "hide-in-plain-sight", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 193, + "fields": { + "parent": "ranger-ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 194, + "fields": { + "parent": "favored-enemy", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 195, + "fields": { + "parent": "vanish", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 196, + "fields": { + "parent": "ranger-ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 197, + "fields": { + "parent": "feral-senses", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 198, + "fields": { + "parent": "ranger-ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 199, + "fields": { + "parent": "foe-slayer", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 200, + "fields": { + "parent": "hunters-prey", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 201, + "fields": { + "parent": "defensive-tactics", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 202, + "fields": { + "parent": "multiattack", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 203, + "fields": { + "parent": "superior-hunters-defense", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 204, + "fields": { + "parent": "rogue-expertise", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 205, + "fields": { + "parent": "sneak-attack", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 206, + "fields": { + "parent": "thieves-cant", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 207, + "fields": { + "parent": "cunning-action", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 208, + "fields": { + "parent": "roguish-archetype", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 209, + "fields": { + "parent": "rogue-ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 210, + "fields": { + "parent": "uncanny-dodge", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 211, + "fields": { + "parent": "rogue-expertise", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 212, + "fields": { + "parent": "rogue-evasion", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 213, + "fields": { + "parent": "rogue-ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 214, + "fields": { + "parent": "rogue-ability-score-improvement", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 215, + "fields": { + "parent": "reliable-talent", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 216, + "fields": { + "parent": "rogue-ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 217, + "fields": { + "parent": "blindsense", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 218, + "fields": { + "parent": "slippery-mind", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 219, + "fields": { + "parent": "rogue-ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 220, + "fields": { + "parent": "elusive", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 221, + "fields": { + "parent": "rogue-ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 222, + "fields": { + "parent": "Stroke of Luck", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 223, + "fields": { + "parent": "fast-hands", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 224, + "fields": { + "parent": "second-story-work", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 225, + "fields": { + "parent": "supreme-sneak", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 226, + "fields": { + "parent": "use-magic-device", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 227, + "fields": { + "parent": "thiefs-reflexes", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 228, + "fields": { + "parent": "sorceror-spellcasting", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 229, + "fields": { + "parent": "sorcerous-origin", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 230, + "fields": { + "parent": "font-of-magic", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 231, + "fields": { + "parent": "metamagic", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 232, + "fields": { + "parent": "sorceror-ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 233, + "fields": { + "parent": "sorceror-ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 234, + "fields": { + "parent": "metamagic", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 235, + "fields": { + "parent": "sorceror-ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 236, + "fields": { + "parent": "sorceror-ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 237, + "fields": { + "parent": "metamagic", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 238, + "fields": { + "parent": "sorceror-ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 239, + "fields": { + "parent": "sorcerous-restoration", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 240, + "fields": { + "parent": "dragon-ancestor", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 241, + "fields": { + "parent": "draconic-resilience", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 242, + "fields": { + "parent": "elemental-affinity", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 243, + "fields": { + "parent": "dragon-wings", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 244, + "fields": { + "parent": "draconic-presence", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 245, + "fields": { + "parent": "otherworldly-patron", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 246, + "fields": { + "parent": "pact-magic", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 247, + "fields": { + "parent": "eldritch-invocations", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 248, + "fields": { + "parent": "pact-boon", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 249, + "fields": { + "parent": "warlock-ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 250, + "fields": { + "parent": "warlock-ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 251, + "fields": { + "parent": "mystic-arcanum", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 252, + "fields": { + "parent": "warlock-ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 253, + "fields": { + "parent": "mystic-arcanum", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 254, + "fields": { + "parent": "mystic-arcanum", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 255, + "fields": { + "parent": "mystic-arcanum", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 256, + "fields": { + "parent": "warlock-ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 257, + "fields": { + "parent": "eldritch-master", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 258, + "fields": { + "parent": "eldritch-invocation-list", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 259, + "fields": { + "parent": "expanded-spell-list", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 260, + "fields": { + "parent": "dark-ones-blessing", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 261, + "fields": { + "parent": "dark-ones-own-luck", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 262, + "fields": { + "parent": "fiendish-resilience", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 263, + "fields": { + "parent": "hurl-through-hell", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 264, + "fields": { + "parent": "wizard-spellcasting", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 265, + "fields": { + "parent": "arcane-recovery", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 266, + "fields": { + "parent": "arcane-tradition", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 267, + "fields": { + "parent": "wizard-ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 268, + "fields": { + "parent": "wizard-ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 269, + "fields": { + "parent": "wizard-ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 270, + "fields": { + "parent": "wizard-ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 271, + "fields": { + "parent": "spell-mastery", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 272, + "fields": { + "parent": "wizard-ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 273, + "fields": { + "parent": "signature-spells", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 274, + "fields": { + "parent": "evocation-savant", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 275, + "fields": { + "parent": "sculpt-spells", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 276, + "fields": { + "parent": "potent-cantrip", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 277, + "fields": { + "parent": "empowered-evocation", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": 278, + "fields": { + "parent": "overchannel", + "level": 14 + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/FeatureItem.json b/data/v2/wizards-of-the-coast/srd/FeatureItem.json deleted file mode 100644 index 0a613423..00000000 --- a/data/v2/wizards-of-the-coast/srd/FeatureItem.json +++ /dev/null @@ -1,2218 +0,0 @@ -[ -{ - "model": "api_v2.featureitem", - "pk": 1, - "fields": { - "feature": "rage", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 2, - "fields": { - "feature": "barbarian-unarmored-defense", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 3, - "fields": { - "feature": "reckless-attack", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 4, - "fields": { - "feature": "danger-sense", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 5, - "fields": { - "feature": "primal-path", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 6, - "fields": { - "feature": "barbarian-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 7, - "fields": { - "feature": "barbarian-extra-attack", - "level": 5 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 8, - "fields": { - "feature": "fast-movement", - "level": 5 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 9, - "fields": { - "feature": "feral-instinct", - "level": 7 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 10, - "fields": { - "feature": "barbarian-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 11, - "fields": { - "feature": "brutal-critical", - "level": 9 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 12, - "fields": { - "feature": "relentless-rage", - "level": 11 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 13, - "fields": { - "feature": "barbarian-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 14, - "fields": { - "feature": "brutal-critical", - "level": 13 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 15, - "fields": { - "feature": "persistent-rage", - "level": 15 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 16, - "fields": { - "feature": "barbarian-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 17, - "fields": { - "feature": "brutal-critical", - "level": 17 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 18, - "fields": { - "feature": "indomitable-might", - "level": 18 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 19, - "fields": { - "feature": "barbarian-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 20, - "fields": { - "feature": "primal-champion", - "level": 20 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 21, - "fields": { - "feature": "frenzy", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 22, - "fields": { - "feature": "mindless-rage", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 23, - "fields": { - "feature": "intimidating-presence", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 24, - "fields": { - "feature": "retaliation", - "level": 14 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 25, - "fields": { - "feature": "bard-spellcasting", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 26, - "fields": { - "feature": "bardic-inspiration", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 27, - "fields": { - "feature": "jack-of-all-trades", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 28, - "fields": { - "feature": "song-of-rest", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 29, - "fields": { - "feature": "bard-college", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 30, - "fields": { - "feature": "bard-expertise", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 31, - "fields": { - "feature": "bard-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 32, - "fields": { - "feature": "bardic-inspiration", - "level": 5 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 33, - "fields": { - "feature": "font-of-inspiration", - "level": 5 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 34, - "fields": { - "feature": "countercharm", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 35, - "fields": { - "feature": "bard-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 36, - "fields": { - "feature": "song-of-rest", - "level": 9 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 37, - "fields": { - "feature": "bardic-inspiration", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 38, - "fields": { - "feature": "bard-expertise", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 39, - "fields": { - "feature": "magical-secrets", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 40, - "fields": { - "feature": "bard-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 41, - "fields": { - "feature": "song-of-rest", - "level": 13 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 42, - "fields": { - "feature": "magical-secrets", - "level": 14 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 43, - "fields": { - "feature": "bardic-inspiration", - "level": 15 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 44, - "fields": { - "feature": "bard-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 45, - "fields": { - "feature": "song-of-rest", - "level": 17 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 46, - "fields": { - "feature": "magical-secrets", - "level": 18 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 47, - "fields": { - "feature": "bard-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 48, - "fields": { - "feature": "superior-inspiration", - "level": 20 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 49, - "fields": { - "feature": "bonus-proficiencies", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 50, - "fields": { - "feature": "cutting-words", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 51, - "fields": { - "feature": "additional-magical-secrets", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 52, - "fields": { - "feature": "peerless-skill", - "level": 14 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 53, - "fields": { - "feature": "cleric-spellcasting", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 54, - "fields": { - "feature": "divine-domain", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 55, - "fields": { - "feature": "cleric-channel-divinity", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 56, - "fields": { - "feature": "life-bonus-proficiency", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 57, - "fields": { - "feature": "life-domain-spells", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 58, - "fields": { - "feature": "disciple-of-life", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 59, - "fields": { - "feature": "channel-divinity-preserve-life", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 60, - "fields": { - "feature": "cleric-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 61, - "fields": { - "feature": "destroy-undead", - "level": 5 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 62, - "fields": { - "feature": "cleric-channel-divinity", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 63, - "fields": { - "feature": "blessed-healer", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 64, - "fields": { - "feature": "cleric-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 65, - "fields": { - "feature": "destroy-undead", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 66, - "fields": { - "feature": "divine-strike", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 67, - "fields": { - "feature": "divine-intervention", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 68, - "fields": { - "feature": "destroy-undead", - "level": 14 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 69, - "fields": { - "feature": "cleric-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 70, - "fields": { - "feature": "destroy-undead", - "level": 17 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 71, - "fields": { - "feature": "supreme-healing", - "level": 17 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 72, - "fields": { - "feature": "cleric-channel-divinity", - "level": 18 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 73, - "fields": { - "feature": "cleric-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 74, - "fields": { - "feature": "divine-intervention", - "level": 20 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 75, - "fields": { - "feature": "druidic", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 76, - "fields": { - "feature": "druid-spellcasting", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 77, - "fields": { - "feature": "wild-shape", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 78, - "fields": { - "feature": "druid-circle", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 79, - "fields": { - "feature": "wild-shape", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 80, - "fields": { - "feature": "druid-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 81, - "fields": { - "feature": "wild-shape", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 82, - "fields": { - "feature": "druid-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 83, - "fields": { - "feature": "druid-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 84, - "fields": { - "feature": "druid-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 86, - "fields": { - "feature": "beast-spells", - "level": 18 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 87, - "fields": { - "feature": "druid-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 88, - "fields": { - "feature": "archdruid", - "level": 20 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 89, - "fields": { - "feature": "bonus-cantrip", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 90, - "fields": { - "feature": "natural-recovery", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 91, - "fields": { - "feature": "land-circle-spells", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 92, - "fields": { - "feature": "land-circle-spells", - "level": 5 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 93, - "fields": { - "feature": "land-circle-spells", - "level": 7 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 94, - "fields": { - "feature": "land-circle-spells", - "level": 9 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 95, - "fields": { - "feature": "lands-stride", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 96, - "fields": { - "feature": "natures-ward", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 97, - "fields": { - "feature": "natures-sanctuary", - "level": 14 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 98, - "fields": { - "feature": "fighting-style", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 99, - "fields": { - "feature": "second-wind", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 100, - "fields": { - "feature": "action-surge", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 101, - "fields": { - "feature": "martial-archetype", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 102, - "fields": { - "feature": "fighter-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 103, - "fields": { - "feature": "fighter-extra-attack", - "level": 5 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 104, - "fields": { - "feature": "fighter-ability-score-improvement", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 105, - "fields": { - "feature": "fighter-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 106, - "fields": { - "feature": "indomitable", - "level": 9 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 107, - "fields": { - "feature": "fighter-extra-attack", - "level": 11 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 108, - "fields": { - "feature": "fighter-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 109, - "fields": { - "feature": "indomitable", - "level": 13 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 110, - "fields": { - "feature": "fighter-ability-score-improvement", - "level": 14 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 111, - "fields": { - "feature": "fighter-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 112, - "fields": { - "feature": "action-surge", - "level": 17 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 113, - "fields": { - "feature": "indomitable", - "level": 17 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 114, - "fields": { - "feature": "fighter-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 115, - "fields": { - "feature": "fighter-extra-attack", - "level": 20 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 116, - "fields": { - "feature": "improved-critical", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 117, - "fields": { - "feature": "remarkable-athlete", - "level": 7 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 118, - "fields": { - "feature": "additional-fighting-style", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 119, - "fields": { - "feature": "superior-critical", - "level": 15 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 120, - "fields": { - "feature": "survivor", - "level": 18 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 121, - "fields": { - "feature": "monk-unarmored-defense", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 122, - "fields": { - "feature": "martial-arts", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 123, - "fields": { - "feature": "ki", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 124, - "fields": { - "feature": "unarmored-movement", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 125, - "fields": { - "feature": "monastic-tradition", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 126, - "fields": { - "feature": "deflect-missiles", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 127, - "fields": { - "feature": "monk-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 128, - "fields": { - "feature": "slow-fall", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 129, - "fields": { - "feature": "monk-extra-attack", - "level": 5 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 130, - "fields": { - "feature": "stunning-strike", - "level": 5 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 131, - "fields": { - "feature": "ki-empowered-strikes", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 132, - "fields": { - "feature": "monk-evasion", - "level": 7 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 133, - "fields": { - "feature": "stillness-of-mind", - "level": 7 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 134, - "fields": { - "feature": "monk-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 135, - "fields": { - "feature": "unarmored-movement", - "level": 9 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 136, - "fields": { - "feature": "purity-of-body", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 137, - "fields": { - "feature": "monk-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 138, - "fields": { - "feature": "tongue-of-the-sun-and-moon", - "level": 13 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 139, - "fields": { - "feature": "diamond-soul", - "level": 14 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 140, - "fields": { - "feature": "monk-timeless-body", - "level": 15 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 141, - "fields": { - "feature": "monk-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 142, - "fields": { - "feature": "empty-body", - "level": 18 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 143, - "fields": { - "feature": "monk-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 144, - "fields": { - "feature": "perfect-self", - "level": 20 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 145, - "fields": { - "feature": "open-hand-technique", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 146, - "fields": { - "feature": "wholeness-of-body", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 147, - "fields": { - "feature": "tranquility", - "level": 11 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 148, - "fields": { - "feature": "quivering-palm", - "level": 17 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 149, - "fields": { - "feature": "divine-sense", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 150, - "fields": { - "feature": "lay-on-hands", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 151, - "fields": { - "feature": "paladin-fighting-style", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 152, - "fields": { - "feature": "paladin-spellcasting", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 153, - "fields": { - "feature": "divine-smite", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 154, - "fields": { - "feature": "divine-health", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 155, - "fields": { - "feature": "sacred-oath", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 156, - "fields": { - "feature": "paladin-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 157, - "fields": { - "feature": "paladin-extra-attack", - "level": 5 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 158, - "fields": { - "feature": "Aura of Protection", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 159, - "fields": { - "feature": "paladin-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 160, - "fields": { - "feature": "aura-of-courage", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 161, - "fields": { - "feature": "improved-divine-smite", - "level": 11 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 162, - "fields": { - "feature": "paladin-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 163, - "fields": { - "feature": "cleansing-touch", - "level": 14 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 164, - "fields": { - "feature": "paladin-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 165, - "fields": { - "feature": "Aura of Protection", - "level": 18 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 166, - "fields": { - "feature": "aura-of-courage", - "level": 18 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 167, - "fields": { - "feature": "paladin-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 168, - "fields": { - "feature": "tenets-of-devotion", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 169, - "fields": { - "feature": "devotion-oath-spells", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 170, - "fields": { - "feature": "devotion-oath-spells", - "level": 5 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 171, - "fields": { - "feature": "devotion-oath-spells", - "level": 9 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 172, - "fields": { - "feature": "devotion-oath-spells", - "level": 13 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 173, - "fields": { - "feature": "devotion-oath-spells", - "level": 17 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 174, - "fields": { - "feature": "devotion-channel-divinity", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 175, - "fields": { - "feature": "aura-of-devotion", - "level": 7 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 176, - "fields": { - "feature": "aura-of-devotion", - "level": 18 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 177, - "fields": { - "feature": "purity-of-spirit", - "level": 15 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 178, - "fields": { - "feature": "holy-nimbus", - "level": 20 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 179, - "fields": { - "feature": "favored-enemy", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 180, - "fields": { - "feature": "natural-explorer", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 181, - "fields": { - "feature": "ranger-fighting-style", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 182, - "fields": { - "feature": "ranger-spellcasting", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 183, - "fields": { - "feature": "ranger-archetype", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 184, - "fields": { - "feature": "primeval-awareness", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 185, - "fields": { - "feature": "ranger-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 186, - "fields": { - "feature": "ranger-extra-attack", - "level": 5 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 187, - "fields": { - "feature": "favored-enemy", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 188, - "fields": { - "feature": "natural-explorer", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 189, - "fields": { - "feature": "ranger-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 190, - "fields": { - "feature": "ranger-lands-stride", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 191, - "fields": { - "feature": "natural-explorer", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 192, - "fields": { - "feature": "hide-in-plain-sight", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 193, - "fields": { - "feature": "ranger-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 194, - "fields": { - "feature": "favored-enemy", - "level": 14 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 195, - "fields": { - "feature": "vanish", - "level": 14 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 196, - "fields": { - "feature": "ranger-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 197, - "fields": { - "feature": "feral-senses", - "level": 18 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 198, - "fields": { - "feature": "ranger-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 199, - "fields": { - "feature": "foe-slayer", - "level": 20 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 200, - "fields": { - "feature": "hunters-prey", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 201, - "fields": { - "feature": "defensive-tactics", - "level": 7 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 202, - "fields": { - "feature": "multiattack", - "level": 11 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 203, - "fields": { - "feature": "superior-hunters-defense", - "level": 15 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 204, - "fields": { - "feature": "rogue-expertise", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 205, - "fields": { - "feature": "sneak-attack", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 206, - "fields": { - "feature": "thieves-cant", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 207, - "fields": { - "feature": "cunning-action", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 208, - "fields": { - "feature": "roguish-archetype", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 209, - "fields": { - "feature": "rogue-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 210, - "fields": { - "feature": "uncanny-dodge", - "level": 5 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 211, - "fields": { - "feature": "rogue-expertise", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 212, - "fields": { - "feature": "rogue-evasion", - "level": 7 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 213, - "fields": { - "feature": "rogue-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 214, - "fields": { - "feature": "rogue-ability-score-improvement", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 215, - "fields": { - "feature": "reliable-talent", - "level": 11 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 216, - "fields": { - "feature": "rogue-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 217, - "fields": { - "feature": "blindsense", - "level": 14 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 218, - "fields": { - "feature": "slippery-mind", - "level": 15 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 219, - "fields": { - "feature": "rogue-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 220, - "fields": { - "feature": "elusive", - "level": 18 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 221, - "fields": { - "feature": "rogue-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 222, - "fields": { - "feature": "Stroke of Luck", - "level": 20 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 223, - "fields": { - "feature": "fast-hands", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 224, - "fields": { - "feature": "second-story-work", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 225, - "fields": { - "feature": "supreme-sneak", - "level": 9 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 226, - "fields": { - "feature": "use-magic-device", - "level": 13 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 227, - "fields": { - "feature": "thiefs-reflexes", - "level": 17 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 228, - "fields": { - "feature": "sorceror-spellcasting", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 229, - "fields": { - "feature": "sorcerous-origin", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 230, - "fields": { - "feature": "font-of-magic", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 231, - "fields": { - "feature": "metamagic", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 232, - "fields": { - "feature": "sorceror-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 233, - "fields": { - "feature": "sorceror-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 234, - "fields": { - "feature": "metamagic", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 235, - "fields": { - "feature": "sorceror-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 236, - "fields": { - "feature": "sorceror-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 237, - "fields": { - "feature": "metamagic", - "level": 17 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 238, - "fields": { - "feature": "sorceror-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 239, - "fields": { - "feature": "sorcerous-restoration", - "level": 20 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 240, - "fields": { - "feature": "dragon-ancestor", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 241, - "fields": { - "feature": "draconic-resilience", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 242, - "fields": { - "feature": "elemental-affinity", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 243, - "fields": { - "feature": "dragon-wings", - "level": 14 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 244, - "fields": { - "feature": "draconic-presence", - "level": 18 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 245, - "fields": { - "feature": "otherworldly-patron", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 246, - "fields": { - "feature": "pact-magic", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 247, - "fields": { - "feature": "eldritch-invocations", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 248, - "fields": { - "feature": "pact-boon", - "level": 3 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 249, - "fields": { - "feature": "warlock-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 250, - "fields": { - "feature": "warlock-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 251, - "fields": { - "feature": "mystic-arcanum", - "level": 11 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 252, - "fields": { - "feature": "warlock-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 253, - "fields": { - "feature": "mystic-arcanum", - "level": 13 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 254, - "fields": { - "feature": "mystic-arcanum", - "level": 15 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 255, - "fields": { - "feature": "mystic-arcanum", - "level": 17 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 256, - "fields": { - "feature": "warlock-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 257, - "fields": { - "feature": "eldritch-master", - "level": 20 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 258, - "fields": { - "feature": "eldritch-invocation-list", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 259, - "fields": { - "feature": "expanded-spell-list", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 260, - "fields": { - "feature": "dark-ones-blessing", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 261, - "fields": { - "feature": "dark-ones-own-luck", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 262, - "fields": { - "feature": "fiendish-resilience", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 263, - "fields": { - "feature": "hurl-through-hell", - "level": 14 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 264, - "fields": { - "feature": "wizard-spellcasting", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 265, - "fields": { - "feature": "arcane-recovery", - "level": 1 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 266, - "fields": { - "feature": "arcane-tradition", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 267, - "fields": { - "feature": "wizard-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 268, - "fields": { - "feature": "wizard-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 269, - "fields": { - "feature": "wizard-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 270, - "fields": { - "feature": "wizard-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 271, - "fields": { - "feature": "spell-mastery", - "level": 18 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 272, - "fields": { - "feature": "wizard-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 273, - "fields": { - "feature": "signature-spells", - "level": 20 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 274, - "fields": { - "feature": "evocation-savant", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 275, - "fields": { - "feature": "sculpt-spells", - "level": 2 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 276, - "fields": { - "feature": "potent-cantrip", - "level": 6 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 277, - "fields": { - "feature": "empowered-evocation", - "level": 10 - } -}, -{ - "model": "api_v2.featureitem", - "pk": 278, - "fields": { - "feature": "overchannel", - "level": 14 - } -} -] diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index efd815f5..f599e214 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -100,10 +100,10 @@ def fix_keys_num_to_parent_name(objs,f): obj['pk'] = pk_value objs_fixed.append(obj) - if f['filename']=='BackgroundBenefit.json': - with open(f['path'],'w',encoding='utf-8') as wf: - json.dump(objs_fixed,wf,indent=2) - wf.write('\n') + #if f['filename']=='BackgroundBenefit.json': + # with open(f['path'],'w',encoding='utf-8') as wf: + # json.dump(objs_fixed,wf,indent=2) + # wf.write('\n') def check_keys_are_slugified(objs,f): for obj in objs: From 0a6239da33e8fc4554cda8b56a7ebaa3c1dcc3aa Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 25 May 2024 07:07:49 -0500 Subject: [PATCH 27/84] Refactor the start of class. --- .../srd/CharacterClass.json | 482 +-- .../srd/ClassFeature.json | 3682 ++++++++--------- .../data_manipulation/data_v2_format_check.py | 15 +- 3 files changed, 2090 insertions(+), 2089 deletions(-) diff --git a/data/v2/wizards-of-the-coast/srd/CharacterClass.json b/data/v2/wizards-of-the-coast/srd/CharacterClass.json index 52363fe0..3af0534a 100644 --- a/data/v2/wizards-of-the-coast/srd/CharacterClass.json +++ b/data/v2/wizards-of-the-coast/srd/CharacterClass.json @@ -1,242 +1,242 @@ [ -{ - "model": "api_v2.characterclass", - "pk": "barbarian", - "fields": { - "name": "Barbarian", - "document": "srd", - "subclass_of": null, - "hit_dice": "d12" - } -}, -{ - "model": "api_v2.characterclass", - "pk": "bard", - "fields": { - "name": "Bard", - "document": "srd", - "subclass_of": null, - "hit_dice": "d8" - } -}, -{ - "model": "api_v2.characterclass", - "pk": "champion", - "fields": { - "name": "Champion", - "document": "srd", - "subclass_of": "fighter", - "hit_dice": null - } -}, -{ - "model": "api_v2.characterclass", - "pk": "circle-of-the-land", - "fields": { - "name": "Circle of the Land", - "document": "srd", - "subclass_of": "druid", - "hit_dice": null - } -}, -{ - "model": "api_v2.characterclass", - "pk": "cleric", - "fields": { - "name": "Cleric", - "document": "srd", - "subclass_of": null, - "hit_dice": "d8" - } -}, -{ - "model": "api_v2.characterclass", - "pk": "college-of-lore", - "fields": { - "name": "College of Lore", - "document": "srd", - "subclass_of": "bard", - "hit_dice": null - } -}, -{ - "model": "api_v2.characterclass", - "pk": "draconic-bloodline", - "fields": { - "name": "Draconic Bloodline", - "document": "srd", - "subclass_of": "sorcerer", - "hit_dice": null - } -}, -{ - "model": "api_v2.characterclass", - "pk": "druid", - "fields": { - "name": "Druid", - "document": "srd", - "subclass_of": null, - "hit_dice": "d8" - } -}, -{ - "model": "api_v2.characterclass", - "pk": "fighter", - "fields": { - "name": "Fighter", - "document": "srd", - "subclass_of": null, - "hit_dice": "d10" - } -}, -{ - "model": "api_v2.characterclass", - "pk": "hunter", - "fields": { - "name": "Hunter", - "document": "srd", - "subclass_of": "ranger", - "hit_dice": null - } -}, -{ - "model": "api_v2.characterclass", - "pk": "life-domain", - "fields": { - "name": "Life Domain", - "document": "srd", - "subclass_of": "cleric", - "hit_dice": null - } -}, -{ - "model": "api_v2.characterclass", - "pk": "monk", - "fields": { - "name": "Monk", - "document": "srd", - "subclass_of": null, - "hit_dice": "d8" - } -}, -{ - "model": "api_v2.characterclass", - "pk": "oath-of-devotion", - "fields": { - "name": "Oath of Devotion", - "document": "srd", - "subclass_of": "paladin", - "hit_dice": null - } -}, -{ - "model": "api_v2.characterclass", - "pk": "paladin", - "fields": { - "name": "Paladin", - "document": "srd", - "subclass_of": null, - "hit_dice": "d10" - } -}, -{ - "model": "api_v2.characterclass", - "pk": "path-of-the-berserker", - "fields": { - "name": "Path of the Berserker", - "document": "srd", - "subclass_of": "barbarian", - "hit_dice": null - } -}, -{ - "model": "api_v2.characterclass", - "pk": "ranger", - "fields": { - "name": "Ranger", - "document": "srd", - "subclass_of": null, - "hit_dice": "d10" - } -}, -{ - "model": "api_v2.characterclass", - "pk": "rogue", - "fields": { - "name": "Rogue", - "document": "srd", - "subclass_of": null, - "hit_dice": "d8" - } -}, -{ - "model": "api_v2.characterclass", - "pk": "school-of-evocation", - "fields": { - "name": "School of Evocation", - "document": "srd", - "subclass_of": "wizard", - "hit_dice": null - } -}, -{ - "model": "api_v2.characterclass", - "pk": "sorcerer", - "fields": { - "name": "Sorcerer", - "document": "srd", - "subclass_of": null, - "hit_dice": "d6" - } -}, -{ - "model": "api_v2.characterclass", - "pk": "the-fiend", - "fields": { - "name": "The Fiend", - "document": "srd", - "subclass_of": "warlock", - "hit_dice": null - } -}, -{ - "model": "api_v2.characterclass", - "pk": "thief", - "fields": { - "name": "Thief", - "document": "srd", - "subclass_of": "rogue", - "hit_dice": null - } -}, -{ - "model": "api_v2.characterclass", - "pk": "warlock", - "fields": { - "name": "Warlock", - "document": "srd", - "subclass_of": null, - "hit_dice": "d8" - } -}, -{ - "model": "api_v2.characterclass", - "pk": "way-of-the-open-hand", - "fields": { - "name": "Way of the Open Hand", - "document": "srd", - "subclass_of": "monk", - "hit_dice": null - } -}, -{ - "model": "api_v2.characterclass", - "pk": "wizard", - "fields": { - "name": "Wizard", - "document": "srd", - "subclass_of": null, - "hit_dice": "d6" - } -} -] + { + "model": "api_v2.characterclass", + "pk": "srd_barbarian", + "fields": { + "name": "Barbarian", + "document": "srd", + "subclass_of": null, + "hit_dice": "d12" + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_bard", + "fields": { + "name": "Bard", + "document": "srd", + "subclass_of": null, + "hit_dice": "d8" + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_champion", + "fields": { + "name": "Champion", + "document": "srd", + "subclass_of": "fighter", + "hit_dice": null + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_circle-of-the-land", + "fields": { + "name": "Circle of the Land", + "document": "srd", + "subclass_of": "druid", + "hit_dice": null + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_cleric", + "fields": { + "name": "Cleric", + "document": "srd", + "subclass_of": null, + "hit_dice": "d8" + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_college-of-lore", + "fields": { + "name": "College of Lore", + "document": "srd", + "subclass_of": "bard", + "hit_dice": null + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_draconic-bloodline", + "fields": { + "name": "Draconic Bloodline", + "document": "srd", + "subclass_of": "sorcerer", + "hit_dice": null + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_druid", + "fields": { + "name": "Druid", + "document": "srd", + "subclass_of": null, + "hit_dice": "d8" + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_fighter", + "fields": { + "name": "Fighter", + "document": "srd", + "subclass_of": null, + "hit_dice": "d10" + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_hunter", + "fields": { + "name": "Hunter", + "document": "srd", + "subclass_of": "ranger", + "hit_dice": null + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_life-domain", + "fields": { + "name": "Life Domain", + "document": "srd", + "subclass_of": "cleric", + "hit_dice": null + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_monk", + "fields": { + "name": "Monk", + "document": "srd", + "subclass_of": null, + "hit_dice": "d8" + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_oath-of-devotion", + "fields": { + "name": "Oath of Devotion", + "document": "srd", + "subclass_of": "paladin", + "hit_dice": null + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_paladin", + "fields": { + "name": "Paladin", + "document": "srd", + "subclass_of": null, + "hit_dice": "d10" + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_path-of-the-berserker", + "fields": { + "name": "Path of the Berserker", + "document": "srd", + "subclass_of": "barbarian", + "hit_dice": null + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_ranger", + "fields": { + "name": "Ranger", + "document": "srd", + "subclass_of": null, + "hit_dice": "d10" + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_rogue", + "fields": { + "name": "Rogue", + "document": "srd", + "subclass_of": null, + "hit_dice": "d8" + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_school-of-evocation", + "fields": { + "name": "School of Evocation", + "document": "srd", + "subclass_of": "wizard", + "hit_dice": null + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_sorcerer", + "fields": { + "name": "Sorcerer", + "document": "srd", + "subclass_of": null, + "hit_dice": "d6" + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_the-fiend", + "fields": { + "name": "The Fiend", + "document": "srd", + "subclass_of": "warlock", + "hit_dice": null + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_thief", + "fields": { + "name": "Thief", + "document": "srd", + "subclass_of": "rogue", + "hit_dice": null + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_warlock", + "fields": { + "name": "Warlock", + "document": "srd", + "subclass_of": null, + "hit_dice": "d8" + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_way-of-the-open-hand", + "fields": { + "name": "Way of the Open Hand", + "document": "srd", + "subclass_of": "monk", + "hit_dice": null + } + }, + { + "model": "api_v2.characterclass", + "pk": "srd_wizard", + "fields": { + "name": "Wizard", + "document": "srd", + "subclass_of": null, + "hit_dice": "d6" + } + } +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/ClassFeature.json b/data/v2/wizards-of-the-coast/srd/ClassFeature.json index 6051e9fd..69bb1f6b 100644 --- a/data/v2/wizards-of-the-coast/srd/ClassFeature.json +++ b/data/v2/wizards-of-the-coast/srd/ClassFeature.json @@ -1,1842 +1,1842 @@ [ -{ - "model": "api_v2.classfeature", - "pk": "Aura of Protection", - "fields": { - "name": "Aura of Protection", - "desc": "Starting at 6th level, whenever you or a friendly creature within 10 feet of you must make a saving throw, the creature gains a bonus to the saving throw equal to your Charisma modifier (with a minimum bonus of +1). You must be conscious to grant this bonus.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", - "document": "srd", - "parent": "paladin" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "Stroke of Luck", - "fields": { - "name": "Stroke of Luck", - "desc": "At 20th level, you have an uncanny knack for succeeding when you need to. If your attack misses a target within range, you can turn the miss into a hit. Alternatively, if you fail an ability check, you can treat the d20 roll as a 20.\r\n\r\nOnce you use this feature, you can't use it again until you finish a short or long rest.", - "document": "srd", - "parent": "rogue" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "action-surge", - "fields": { - "name": "Action Surge", - "desc": "Starting at 2nd level, you can push yourself beyond your normal limits for a moment. On your turn, you can take one additional action on top of your regular action and a possible bonus action.\r\n\r\nOnce you use this feature, you must finish a short or long rest before you can use it again. Starting at 17th level, you can use it twice before a rest, but only once on the same turn.", - "document": "srd", - "parent": "fighter" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "additional-fighting-style", - "fields": { - "name": "Additional Fighting Style", - "desc": "At 10th level, you can choose a second option from the Fighting Style class feature.", - "document": "srd", - "parent": "champion" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "additional-magical-secrets", - "fields": { - "name": "Additional Magical Secrets", - "desc": "At 6th level, you learn two spells of your choice from any class. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip. The chosen spells count as bard spells for you but don't count against the number of bard spells you know.", - "document": "srd", - "parent": "college-of-lore" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "arcane-recovery", - "fields": { - "name": "Arcane Recovery", - "desc": "You have learned to regain some of your magical energy by studying your spellbook. Once per day when you finish a short rest, you can choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.\r\n\r\nFor example, if you're a 4th-level wizard, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level spell slot or two 1st-level spell slots.", - "document": "srd", - "parent": "wizard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "arcane-tradition", - "fields": { - "name": "Arcane Tradition", - "desc": "When you reach 2nd level, you choose an arcane tradition, shaping your practice of magic through one of eight schools: Abjuration, Conjuration, Divination, Enchantment, Evocation, Illusion, Necromancy, or Transmutation, all detailed at the end of the class description.\r\n\r\nYour choice grants you features at 2nd level and again at 6th, 10th, and 14th level.", - "document": "srd", - "parent": "wizard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "archdruid", - "fields": { - "name": "Archdruid", - "desc": "At 20th level, you can use your Wild Shape an unlimited number of times.\r\n\r\nAdditionally, you can ignore the verbal and somatic components of your druid spells, as well as any material components that lack a cost and aren't consumed by a spell. You gain this benefit in both your normal shape and your beast shape from Wild Shape.", - "document": "srd", - "parent": "druid" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "aura-of-courage", - "fields": { - "name": "Aura of Courage", - "desc": "Starting at 10th level, you and friendly creatures within 10 feet of you can't be frightened while you are conscious.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", - "document": "srd", - "parent": "paladin" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "aura-of-devotion", - "fields": { - "name": "Aura of Devotion", - "desc": "Starting at 7th level, you and friendly creatures within 10 feet of you can't be charmed while you are conscious.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", - "document": "srd", - "parent": "oath-of-devotion" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "barbarian-ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can’t increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "barbarian-extra-attack", - "fields": { - "name": "Extra Attack", - "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "barbarian-unarmored-defense", - "fields": { - "name": "Unarmored Defense", - "desc": "While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "bard-ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "bard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "bard-college", - "fields": { - "name": "Bard College", - "desc": "At 3rd level, you delve into the advanced techniques of a bard college of your choice: the College of Lore or the College of Valor, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th and 14th level.", - "document": "srd", - "parent": "bard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "bard-expertise", - "fields": { - "name": "Expertise", - "desc": "At 3rd level, choose two of your skill proficiencies. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.\r\n\r\nAt 10th level, you can choose another two skill proficiencies to gain this benefit.", - "document": "srd", - "parent": "bard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "bard-spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "You have learned to untangle and reshape the fabric of reality in harmony with your wishes and music.\r\n\r\nYour spells are part of your vast repertoire, magic that you can tune to different situations.\r\n\r\n###Cantrips\r\n\r\nYou know two cantrips of your choice from the bard spell list. You learn additional bard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Bard table.\r\n\r\n###Spell Slots\r\n\r\nThe Bard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell cure wounds and have a 1st-level and a 2nd-level spell slot available, you can cast cure wounds using either slot.\r\n\r\n###Spells Known of 1st Level and Higher\r\n\r\nYou know four 1st-level spells of your choice from the bard spell list.\r\n\r\nThe Spells Known column of the Bard table shows when you learn more bard spells of your choice. Each of these spells must be of a level for which you have spell slots, as shown on the table. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the bard spells you know and replace it with another spell from the bard spell list, which also must be of a level for which you have spell slots.\r\n\r\n###Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your bard spells. Your magic comes from the heart and soul you pour into the performance of your music or oration. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a bard spell you cast and when making an attack roll with one.\r\n\r\n*Spell save DC* = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n*Spell attack modifier* = your proficiency bonus + your Charisma modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast any bard spell you know as a ritual if that spell has the ritual tag.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a musical instrument (see chapter 5, “Equipment”) as a spellcasting focus for your bard spells.", - "document": "srd", - "parent": "bard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "bardic-inspiration", - "fields": { - "name": "Bardic Inspiration", - "desc": "You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6.\r\n\r\nOnce within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time.\r\n\r\nYou can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest.\r\n\r\nYour Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level.", - "document": "srd", - "parent": "bard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "beast-spells", - "fields": { - "name": "Beast Spells", - "desc": "Beginning at 18th level, you can cast many of your druid spells in any shape you assume using Wild Shape. You can perform the somatic and verbal components of a druid spell while in a beast shape, but you aren't able to provide material components.", - "document": "srd", - "parent": "druid" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "blessed-healer", - "fields": { - "name": "Blessed Healer", - "desc": "Beginning at 6th level, the healing spells you cast on others heal you as well. When you cast a spell of 1st level or higher that restores hit points to a creature other than you, you regain hit points equal to 2 + the spell's level.", - "document": "srd", - "parent": "life-domain" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "blindsense", - "fields": { - "name": "Blindsense", - "desc": "Starting at 14th level, if you are able to hear, you are aware of the location of any hidden or invisible creature within 10 feet of you.", - "document": "srd", - "parent": "rogue" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "bonus-cantrip", - "fields": { - "name": "Bonus Cantrip", - "desc": "When you choose this circle at 2nd level, you learn one additional druid cantrip of your choice.", - "document": "srd", - "parent": "circle-of-the-land" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "bonus-proficiencies", - "fields": { - "name": "Bonus Proficiencies", - "desc": "When you join the College of Lore at 3rd level, you gain proficiency with three skills of your choice.", - "document": "srd", - "parent": "college-of-lore" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "brutal-critical", - "fields": { - "name": "Brutal Critical", - "desc": "Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack.\r\n\r\nThis increases to two additional dice at 13th level and three additional dice at 17th level.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "channel-divinity-preserve-life", - "fields": { - "name": "Channel Divinity: Preserve Life", - "desc": "Starting at 2nd level, you can use your Channel Divinity to heal the badly injured.\r\n\r\nAs an action, you present your holy symbol and evoke healing energy that can restore a number of hit points equal to five times your cleric level. Choose any creatures within 30 feet of you, and divide those hit points among them. This feature can restore a creature to no more than half of its hit point maximum. You can't use this feature on an undead or a construct.", - "document": "srd", - "parent": "life-domain" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "cleansing-touch", - "fields": { - "name": "Cleansing Touch", - "desc": "Beginning at 14th level, you can use your action to end one spell on yourself or on one willing creature that you touch.\r\n\r\nYou can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain expended uses when you finish a long rest.", - "document": "srd", - "parent": "paladin" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "cleric-ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "cleric" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "cleric-channel-divinity", - "fields": { - "name": "Channel Divinity", - "desc": "At 2nd level, you gain the ability to channel divine energy directly from your deity, using that energy to fuel magical effects. You start with two such effects: Turn Undead and an effect determined by your domain. Some domains grant you additional effects as you advance in levels, as noted in the domain description.\r\n\r\nWhen you use your Channel Divinity, you choose which effect to create. You must then finish a short or long rest to use your Channel Divinity again.\r\n\r\nSome Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your cleric spell save DC.\r\n\r\nBeginning at 6th level, you can use your Channel Divinity twice between rests, and beginning at 18th level, you can use it three times between rests. When you finish a short or long rest, you regain your expended uses.\r\n\r\n### Channel Divinity: Turn Undead\r\n\r\nAs an action, you present your holy symbol and speak a prayer censuring the undead. Each undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes any damage.\r\n\r\nA turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.", - "document": "srd", - "parent": "cleric" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "cleric-spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "As a conduit for divine power, you can cast cleric spells.\r\n\r\n###Cantrips\r\n\r\nAt 1st level, you know three cantrips of your choice from the cleric spell list. You learn additional cleric cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Cleric table.\r\nPreparing and Casting Spells\r\n\r\nThe Cleric table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of cleric spells that are available for you to cast, choosing from the cleric spell list. When you do so, choose a number of cleric spells equal to your Wisdom modifier + your cleric level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 3rd-level cleric, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of cleric spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n###Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your cleric spells. The power of your spells comes from your devotion to your deity. You use your Wisdom whenever a cleric spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a cleric spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast a cleric spell as a ritual if that spell has the ritual tag and you have the spell prepared.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a holy symbol (see chapter 5, “Equipment”) as a spellcasting focus for your cleric spells.", - "document": "srd", - "parent": "cleric" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "countercharm", - "fields": { - "name": "Countercharm", - "desc": "At 6th level, you gain the ability to use musical notes or words of power to disrupt mind-influencing effects. As an action, you can start a performance that lasts until the end of your next turn. During that time, you and any friendly creatures within 30 feet of you have advantage on saving throws against being frightened or charmed. A creature must be able to hear you to gain this benefit. The performance ends early if you are incapacitated or silenced or if you voluntarily end it (no action required).", - "document": "srd", - "parent": "bard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "cunning-action", - "fields": { - "name": "Cunning Action", - "desc": "Starting at 2nd level, your quick thinking and agility allow you to move and act quickly. You can take a bonus action on each of your turns in combat. This action can be used only to take the Dash, Disengage, or Hide action.", - "document": "srd", - "parent": "rogue" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "cutting-words", - "fields": { - "name": "Cutting Words", - "desc": "Also at 3rd level, you learn how to use your wit to distract, confuse, and otherwise sap the confidence and competence of others. When a creature that you can see within 60 feet of you makes an attack roll, an ability check, or a damage roll, you can use your reaction to expend one of your uses of Bardic Inspiration, rolling a Bardic Inspiration die and subtracting the number rolled from the creature's roll. You can choose to use this feature after the creature makes its roll, but before the GM determines whether the attack roll or ability check succeeds or fails, or before the creature deals its damage. The creature is immune if it can't hear you or if it's immune to being charmed.", - "document": "srd", - "parent": "college-of-lore" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "danger-sense", - "fields": { - "name": "Danger Sense", - "desc": "At 2nd level, you gain an uncanny sense of when things nearby aren’t as they should be, giving you an edge when you dodge away from danger.\r\n\r\nYou have advantage on Dexterity saving throws against effects that you can see, such as traps and spells. To gain this benefit, you can’t be blinded, deafened, or incapacitated.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "dark-ones-blessing", - "fields": { - "name": "Dark One's Blessing", - "desc": "Starting at 1st level, when you reduce a hostile creature to 0 hit points, you gain temporary hit points equal to your Charisma modifier + your warlock level (minimum of 1).", - "document": "srd", - "parent": "the-fiend" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "dark-ones-own-luck", - "fields": { - "name": "Dark One's Own Luck", - "desc": "Starting at 6th level, you can call on your patron to alter fate in your favor. When you make an ability check or a saving throw, you can use this feature to add a d10 to your roll. You can do so after seeing the initial roll but before any of the roll's effects occur.\r\n\r\nOnce you use this feature, you can't use it again until you finish a short or long rest.", - "document": "srd", - "parent": "the-fiend" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "defensive-tactics", - "fields": { - "name": "Defensive Tactics", - "desc": "At 7th level, you gain one of the following features of your choice.\r\n\r\n***Escape the Horde.*** Opportunity attacks against you are made with disadvantage.\r\n\r\n***Multiattack Defense.*** When a creature hits you with an attack, you gain a +4 bonus to AC against all subsequent attacks made by that creature for the rest of the turn.\r\n\r\n***Steel Will.*** You have advantage on saving throws against being frightened.", - "document": "srd", - "parent": "hunter" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "deflect-missiles", - "fields": { - "name": "Deflect Missiles", - "desc": "Starting at 3rd level, you can use your reaction to deflect or catch the missile when you are hit by a ranged weapon attack. When you do so, the damage you take from the attack is reduced by 1d10 + your Dexterity modifier + your monk level.\r\n\r\nIf you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in one hand and you have at least one hand free. If you catch a missile in this way, you can spend 1 ki point to make a ranged attack with the weapon or piece of ammunition you just caught, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and the missile counts as a monk weapon for the attack, which has a normal range of 20 feet and a long range of 60 feet.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "destroy-undead", - "fields": { - "name": "Destroy Undead", - "desc": "Starting at 5th level, when an undead fails its saving throw against your Turn Undead feature, the creature is instantly destroyed if its challenge rating is at or below a certain threshold, as shown in the Destroy Undead table. \r\n\r\n### Destroy Undead (table)\r\n\r\n| Cleric Level | Destroys Undead of CR... | \r\n|---|---|\r\n| 5th | 1/2 or lower |\r\n| 8th | 1 or lower |\r\n| 11th | 2 or lower |\r\n| 14th | 3 or lower | \r\n| 17th | 4 or lower |", - "document": "srd", - "parent": "cleric" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "devotion-channel-divinity", - "fields": { - "name": "Channel Divinity", - "desc": "When you take this oath at 3rd level, you gain the following two Channel Divinity options.\r\n\r\n**Sacred Weapon.** As an action, you can imbue one weapon that you are holding with positive energy, using your Channel Divinity. For 1 minute, you add your Charisma modifier to attack rolls made with that weapon (with a minimum bonus of +1). The weapon also emits bright light in a 20-foot radius and dim light 20 feet beyond that. If the weapon is not already magical, it becomes magical for the duration.\r\n\r\nYou can end this effect on your turn as part of any other action. If you are no longer holding or carrying this weapon, or if you fall unconscious, this effect ends.\r\n\r\n**Turn the Unholy.** As an action, you present your holy symbol and speak a prayer censuring fiends and undead, using your Channel Divinity. Each fiend or undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes damage.\r\n\r\nA turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.", - "document": "srd", - "parent": "oath-of-devotion" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "devotion-oath-spells", - "fields": { - "name": "Oath Spells", - "desc": "You gain oath spells at the paladin levels listed.\r\n\r\n### Oath of Devotion Spells\r\n| Paladin Level | Spells |\r\n| --- | --- |\r\n| 3rd | protection from evil and good, sanctuary |\r\n| 5th | lesser restoration, zone of truth |\r\n| 9th | beacon of hope, dispel magic |\r\n| 13th | freedom of movement, guardian of faith |\r\n| 17th | commune, flame strike |", - "document": "srd", - "parent": "oath-of-devotion" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "diamond-soul", - "fields": { - "name": "Diamond Soul", - "desc": "Beginning at 14th level, your mastery of ki grants you proficiency in all saving throws.\r\n\r\nAdditionally, whenever you make a saving throw and fail, you can spend 1 ki point to reroll it and take the second result.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "disciple-of-life", - "fields": { - "name": "Disciple of Life", - "desc": "Also starting at 1st level, your healing spells are more effective. Whenever you use a spell of 1st level or higher to restore hit points to a creature, the creature regains additional hit points equal to 2 + the spell's level.", - "document": "srd", - "parent": "life-domain" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "divine-domain", - "fields": { - "name": "Divine Domain", - "desc": "Choose one domain related to your deity, such as Life. Each domain is detailed at the end of the class description, and each one provides examples of gods associated with it. Your choice grants you domain spells and other features when you choose it at 1st level. It also grants you additional ways to use Channel Divinity when you gain that feature at 2nd level, and additional benefits at 6th, 8th, and 17th levels.\r\n\r\n### Domain Spells\r\nEach domain has a list of spells—its domain spells—that you gain at the cleric levels noted in the domain description. Once you gain a domain spell, you always have it prepared, and it doesn’t count against the number of spells you can prepare each day. \r\nIf you have a domain spell that doesn’t appear on the cleric spell list, the spell is nonetheless a cleric spell for you.", - "document": "srd", - "parent": "cleric" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "divine-health", - "fields": { - "name": "Divine Health", - "desc": "By 3rd level, the divine magic flowing through you makes you immune to disease.", - "document": "srd", - "parent": "paladin" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "divine-intervention", - "fields": { - "name": "Divine Intervention", - "desc": "Beginning at 10th level, you can call on your deity to intervene on your behalf when your need is great.\r\n\r\nImploring your deity's aid requires you to use your action. Describe the assistance you seek, and roll percentile dice. If you roll a number equal to or lower than your cleric level, your deity intervenes. The GM chooses the nature of the intervention; the effect of any cleric spell or cleric domain spell would be appropriate.\r\n\r\nIf your deity intervenes, you can't use this feature again for 7 days. Otherwise, you can use it again after you finish a long rest.\r\n\r\nAt 20th level, your call for intervention succeeds automatically, no roll required.", - "document": "srd", - "parent": "cleric" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "divine-sense", - "fields": { - "name": "Divine Sense", - "desc": "The presence of strong evil registers on your senses like a noxious odor, and powerful good rings like heavenly music in your ears. As an action, you can open your awareness to detect such forces. Until the end of your next turn, you know the location of any celestial, fiend, or undead within 60 feet of you that is not behind total cover. You know the type (celestial, fiend, or undead) of any being whose presence you sense, but not its identity (the vampire Count Strahd von Zarovich, for instance). Within the same radius, you also detect the presence of any place or object that has been consecrated or desecrated, as with the hallow spell.\r\n\r\nYou can use this feature a number of times equal to 1 + your Charisma modifier. When you finish a long rest, you regain all expended uses.", - "document": "srd", - "parent": "paladin" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "divine-smite", - "fields": { - "name": "Divine Smite", - "desc": "Starting at 2nd level, when you hit a creature with a melee weapon attack, you can expend one spell slot to deal radiant damage to the target, in addition to the weapon's damage. The extra damage is 2d8 for a 1st-level spell slot, plus 1d8 for each spell level higher than 1st, to a maximum of 5d8. The damage increases by 1d8 if the target is an undead or a fiend.", - "document": "srd", - "parent": "paladin" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "divine-strike", - "fields": { - "name": "Divine Strike", - "desc": "At 8th level, you gain the ability to infuse your weapon strikes with divine energy. Once on each of your turns when you hit a creature with a weapon attack, you can cause the attack to deal an extra 1d8 radiant damage to the target. When you reach 14th level, the extra damage increases to 2d8.", - "document": "srd", - "parent": "life-domain" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "draconic-presence", - "fields": { - "name": "Draconic Presence", - "desc": "Beginning at 18th level, you can channel the dread presence of your dragon ancestor, causing those around you to become awestruck or frightened. As an action, you can spend 5 sorcery points to draw on this power and exude an aura of awe or fear (your choice) to a distance of 60 feet. For 1 minute or until you lose your concentration (as if you were casting a concentration spell), each hostile creature that starts its turn in this aura must succeed on a Wisdom saving throw or be charmed (if you chose awe) or frightened (if you chose fear) until the aura ends. A creature that succeeds on this saving throw is immune to your aura for 24 hours.", - "document": "srd", - "parent": "draconic-bloodline" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "draconic-resilience", - "fields": { - "name": "Draconic Resilience", - "desc": "As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class.\r\n\r\nAdditionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.", - "document": "srd", - "parent": "draconic-bloodline" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "dragon-ancestor", - "fields": { - "name": "Dragon Ancestor", - "desc": "At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.\r\n\r\n### Draconic Ancestry (table)\r\n| Dragon | Damage Type |\r\n| --- | --- |\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |\r\n\r\nYou can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.", - "document": "srd", - "parent": "draconic-bloodline" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "dragon-wings", - "fields": { - "name": "Dragon Wings", - "desc": "At 14th level, you gain the ability to sprout a pair of dragon wings from your back, gaining a flying speed equal to your current speed. You can create these wings as a bonus action on your turn. They last until you dismiss them as a bonus action on your turn.\r\n\r\nYou can't manifest your wings while wearing armor unless the armor is made to accommodate them, and clothing not made to accommodate your wings might be destroyed when you manifest them.", - "document": "srd", - "parent": "draconic-bloodline" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "druid-ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "druid" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "druid-circle", - "fields": { - "name": "Druid Circle", - "desc": "At 2nd level, you choose to identify with a circle of druids such as the Circle of the Land. Your choice grants you features at 2nd level and again at 6th, 10th, and 14th level.", - "document": "srd", - "parent": "druid" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "druid-spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "Drawing on the divine essence of nature itself, you can cast spells to shape that essence to your will.\r\n\r\n###Cantrips\r\n\r\nAt 1st level, you know two cantrips of your choice from the druid spell list. You learn additional druid cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Druid table.\r\n\r\n###Preparing and Casting Spells\r\n\r\nThe Druid table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these druid spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of druid spells that are available for you to cast, choosing from the druid spell list. When you do so, choose a number of druid spells equal to your Wisdom modifier + your druid level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 3rd-level druid, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can also change your list of prepared spells when you finish a long rest. Preparing a new list of druid spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n###Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your druid spells, since your magic draws upon your devotion and attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a druid spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast a druid spell as a ritual if that spell has the ritual tag and you have the spell prepared.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a druidic focus (see chapter 5, “Equipment”) as a spellcasting focus for your druid spells.", - "document": "srd", - "parent": "druid" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "druid-timeless-body", - "fields": { - "name": "Timeless Body", - "desc": "Starting at 18th level, the primal magic that you wield causes you to age more slowly. For every 10 years that pass, your body ages only 1 year.", - "document": "srd", - "parent": "druid" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "druidic", - "fields": { - "name": "Druidic", - "desc": "You know Druidic, the secret language of druids. You can speak the language and use it to leave hidden messages. You and others who know this language automatically spot such a message. Others spot the message's presence with a successful DC 15 Wisdom (Perception) check but can't decipher it without magic.", - "document": "srd", - "parent": "druid" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "eldritch-invocation-list", - "fields": { - "name": "Eldritch Invocation List", - "desc": "If an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.\r\n\r\n### Agonizing Blast\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you cast eldritch blast, add your Charisma modifier to the damage it deals on a hit.\r\nArmor of Shadows\r\n\r\nYou can cast mage armor on yourself at will, without expending a spell slot or material components.\r\n\r\n### Ascendant Step\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast levitate on yourself at will, without expending a spell slot or material components.\r\n\r\n### Beast Speech\r\n\r\nYou can cast speak with animals at will, without expending a spell slot.\r\n\r\n### Beguiling Influence\r\n\r\nYou gain proficiency in the Deception and Persuasion skills.\r\n\r\n### Bewitching Whispers\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast compulsion once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Book of Ancient Secrets\r\n\r\nPrerequisite: Pact of the Tome feature\r\n\r\nYou can now inscribe magical rituals in your Book of Shadows. Choose two 1st-level spells that have the ritual tag from any class's spell list (the two needn't be from the same list). The spells appear in the book and don't count against the number of spells you know. With your Book of Shadows in hand, you can cast the chosen spells as rituals. You can't cast the spells except as rituals, unless you've learned them by some other means. You can also cast a warlock spell you know as a ritual if it has the ritual tag.\r\n\r\nOn your adventures, you can add other ritual spells to your Book of Shadows. When you find such a spell, you can add it to the book if the spell's level is equal to or less than half your warlock level (rounded up) and if you can spare the time to transcribe the spell. For each level of the spell, the transcription process takes 2 hours and costs 50 gp for the rare inks needed to inscribe it.\r\n\r\n### Chains of Carceri\r\n\r\nPrerequisite: 15th level, Pact of the Chain feature\r\n\r\nYou can cast hold monster at will-targeting a celestial, fiend, or elemental-without expending a spell slot or material components. You must finish a long rest before you can use this invocation on the same creature again.\r\n\r\n### Devil's Sight\r\n\r\nYou can see normally in darkness, both magical and nonmagical, to a distance of 120 feet.\r\n\r\n### Dreadful Word\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast confusion once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Eldritch Sight\r\n\r\nYou can cast detect magic at will, without expending a spell slot.\r\n\r\n### Eldritch Spear\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you cast eldritch blast, its range is 300 feet.\r\n\r\n### Eyes of the Rune Keeper\r\n\r\nYou can read all writing.\r\n\r\n### Fiendish Vigor\r\n\r\nYou can cast false life on yourself at will as a 1st-level spell, without expending a spell slot or material components.\r\n\r\n### Gaze of Two Minds\r\n\r\nYou can use your action to touch a willing humanoid and perceive through its senses until the end of your next turn. As long as the creature is on the same plane of existence as you, you can use your action on subsequent turns to maintain this connection, extending the duration until the end of your next turn. While perceiving through the other creature's senses, you benefit from any special senses possessed by that creature, and you are blinded and deafened to your own surroundings.\r\n\r\n### Lifedrinker\r\n\r\nPrerequisite: 12th level, Pact of the Blade feature\r\n\r\nWhen you hit a creature with your pact weapon, the creature takes extra necrotic damage equal to your Charisma modifier (minimum 1).\r\n\r\n### Mask of Many Faces\r\n\r\nYou can cast disguise self at will, without expending a spell slot.\r\n\r\n### Master of Myriad Forms\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can cast alter self at will, without expending a spell slot.\r\n\r\n### Minions of Chaos\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast conjure elemental once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Mire the Mind\r\n\r\nPrerequisite: 5th level\r\n\r\nYou can cast slow once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Misty Visions\r\n\r\nYou can cast silent image at will, without expending a spell slot or material components.\r\n\r\n### One with Shadows\r\n\r\nPrerequisite: 5th level\r\n\r\nWhen you are in an area of dim light or darkness, you can use your action to become invisible until you move or take an action or a reaction.\r\n\r\n### Otherworldly Leap\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast jump on yourself at will, without expending a spell slot or material components.\r\n\r\n### Repelling Blast\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you hit a creature with eldritch blast, you can push the creature up to 10 feet away from you in a straight line.\r\n\r\n### Sculptor of Flesh\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast polymorph once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Sign of Ill Omen\r\n\r\nPrerequisite: 5th level\r\n\r\nYou can cast bestow curse once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Thief of Five Fates\r\n\r\nYou can cast bane once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Thirsting Blade\r\n\r\nPrerequisite: 5th level, Pact of the Blade feature\r\n\r\nYou can attack with your pact weapon twice, instead of once, whenever you take the Attack action on your turn.\r\n\r\n### Visions of Distant Realms\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can cast arcane eye at will, without expending a spell slot.\r\n\r\n### Voice of the Chain Master\r\n\r\nPrerequisite: Pact of the Chain feature\r\n\r\nYou can communicate telepathically with your familiar and perceive through your familiar's senses as long as you are on the same plane of existence. Additionally, while perceiving through your familiar's senses, you can also speak through your familiar in your own voice, even if your familiar is normally incapable of speech.\r\n\r\n### Whispers of the Grave\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast speak with dead at will, without expending a spell slot.\r\n\r\n### Witch Sight\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can see the true form of any shapechanger or creature concealed by illusion or transmutation magic while the creature is within 30 feet of you and within line of sight.", - "document": "srd", - "parent": "warlock" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "eldritch-invocations", - "fields": { - "name": "Eldritch Invocations", - "desc": "In your study of occult lore, you have unearthed eldritch invocations, fragments of forbidden knowledge that imbue you with an abiding magical ability.\r\n\r\nAt 2nd level, you gain two eldritch invocations of your choice. Your invocation options are detailed at the end of the class description. When you gain certain warlock levels, you gain additional invocations of your choice, as shown in the Invocations Known column of the Warlock table.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the invocations you know and replace it with another invocation that you could learn at that level.", - "document": "srd", - "parent": "warlock" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "eldritch-master", - "fields": { - "name": "Eldritch Master", - "desc": "At 20th level, you can draw on your inner reserve of mystical power while entreating your patron to regain expended spell slots. You can spend 1 minute entreating your patron for aid to regain all your expended spell slots from your Pact Magic feature. Once you regain spell slots with this feature, you must finish a long rest before you can do so again.", - "document": "srd", - "parent": "warlock" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "elemental-affinity", - "fields": { - "name": "Elemental Affinity", - "desc": "Starting at 6th level, when you cast a spell that deals damage of the type associated with your draconic ancestry, you can add your Charisma modifier to one damage roll of that spell. At the same time, you can spend 1 sorcery point to gain resistance to that damage type for 1 hour.", - "document": "srd", - "parent": "draconic-bloodline" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "elusive", - "fields": { - "name": "Elusive", - "desc": "Beginning at 18th level, you are so evasive that attackers rarely gain the upper hand against you. No attack roll has advantage against you while you aren't incapacitated.", - "document": "srd", - "parent": "rogue" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "empowered-evocation", - "fields": { - "name": "Empowered Evocation", - "desc": "Beginning at 10th level, you can add your Intelligence modifier to one damage roll of any wizard evocation spell you cast.", - "document": "srd", - "parent": "school-of-evocation" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "empty-body", - "fields": { - "name": "Empty Body", - "desc": "Beginning at 18th level, you can use your action to spend 4 ki points to become invisible for 1 minute. During that time, you also have resistance to all damage but force damage.\r\n\r\nAdditionally, you can spend 8 ki points to cast the astral projection spell, without needing material components. When you do so, you can't take any other creatures with you.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "evocation-savant", - "fields": { - "name": "Evocation Savant", - "desc": "Beginning when you select this school at 2nd level, the gold and time you must spend to copy an evocation spell into your spellbook is halved.", - "document": "srd", - "parent": "school-of-evocation" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "expanded-spell-list", - "fields": { - "name": "Expanded Spell List", - "desc": "The Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\r\n\r\n### Fiend Expanded Spells (table)\r\n| Spell Level | Spells |\r\n| --- | --- |\r\n| 1st | burning hands, command |\r\n| 2nd | blindness/deafness, scorching ray |\r\n| 3rd | fireball, stinking cloud |\r\n| 4th | fire shield, wall of fire |\r\n| 5th | flame strike, hallow |", - "document": "srd", - "parent": "the-fiend" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "fast-hands", - "fields": { - "name": "Fast Hands", - "desc": "Starting at 3rd level, you can use the bonus action granted by your Cunning Action to make a Dexterity (Sleight of Hand) check, use your thieves' tools to disarm a trap or open a lock, or take the Use an Object action.", - "document": "srd", - "parent": "thief" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "fast-movement", - "fields": { - "name": "Fast Movement", - "desc": "Starting at 5th level, your speed increases by 10 feet while you aren’t wearing heavy armor.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "favored-enemy", - "fields": { - "name": "Favored Enemy", - "desc": "Beginning at 1st level, you have significant experience studying, tracking, hunting, and even talking to a certain type of enemy.\r\n\r\nChoose a type of favored enemy: aberrations, beasts, celestials, constructs, dragons, elementals, fey, fiends, giants, monstrosities, oozes, plants, or undead. Alternatively, you can select two races of humanoid (such as gnolls and orcs) as favored enemies.\r\n\r\nYou have advantage on Wisdom (Survival) checks to track your favored enemies, as well as on Intelligence checks to recall information about them.\r\n\r\nWhen you gain this feature, you also learn one language of your choice that is spoken by your favored enemies, if they speak one at all.\r\n\r\nYou choose one additional favored enemy, as well as an associated language, at 6th and 14th level. As you gain levels, your choices should reflect the types of monsters you have encountered on your adventures.", - "document": "srd", - "parent": "ranger" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "feral-instinct", - "fields": { - "name": "Feral Instinct", - "desc": "By 7th level, your instincts are so honed that you have advantage on initiative rolls.\r\n\r\nAdditionally, if you are surprised at the beginning of combat and aren’t incapacitated, you can act normally on your first turn, but only if you enter your rage before doing anything else on that turn.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "feral-senses", - "fields": { - "name": "Feral Senses", - "desc": "At 18th level, you gain preternatural senses that help you fight creatures you can't see. When you attack a creature you can't see, your inability to see it doesn't impose disadvantage on your attack rolls against it.\r\n\r\nYou are also aware of the location of any invisible creature within 30 feet of you, provided that the creature isn't hidden from you and you aren't blinded or deafened.", - "document": "srd", - "parent": "ranger" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "fiendish-resilience", - "fields": { - "name": "Fiendish Resilience", - "desc": "Starting at 10th level, you can choose one damage type when you finish a short or long rest. You gain resistance to that damage type until you choose a different one with this feature. Damage from magical weapons or silver weapons ignores this resistance.", - "document": "srd", - "parent": "the-fiend" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "fighter-ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 6th, 8th, 12th, 14th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "fighter" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "fighter-extra-attack", - "fields": { - "name": "Extra Attack", - "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.\r\n\r\nThe number of attacks increases to three when you reach 11th level in this class and to four when you reach 20th level in this class.", - "document": "srd", - "parent": "fighter" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "fighting-style", - "fields": { - "name": "Fighting Style", - "desc": "You adopt a particular style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n###Archery\r\n\r\nYou gain a +2 bonus to attack rolls you make with ranged weapons.\r\n\r\n###Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n###Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n###Great Weapon Fighting\r\n\r\nWhen you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2. The weapon must have the two-handed or versatile property for you to gain this benefit.\r\n\r\n###Protection\r\n\r\nWhen a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.\r\n\r\n###Two-Weapon Fighting\r\n\r\nWhen you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.", - "document": "srd", - "parent": "fighter" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "foe-slayer", - "fields": { - "name": "Foe Slayer", - "desc": "At 20th level, you become an unparalleled hunter of your enemies. Once on each of your turns, you can add your Wisdom modifier to the attack roll or the damage roll of an attack you make against one of your favored enemies. You can choose to use this feature before or after the roll, but before any effects of the roll are applied.", - "document": "srd", - "parent": "ranger" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "font-of-inspiration", - "fields": { - "name": "Font of Inspiration", - "desc": "Beginning when you reach 5th level, you regain all of your expended uses of Bardic Inspiration when you finish a short or long rest.", - "document": "srd", - "parent": "bard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "font-of-magic", - "fields": { - "name": "Font of Magic", - "desc": "At 2nd level, you tap into a deep wellspring of magic within yourself. This wellspring is represented by sorcery points, which allow you to create a variety of magical effects.\r\n\r\n### Sorcery Points\r\n\r\nYou have 2 sorcery points, and you gain more as you reach higher levels, as shown in the Sorcery Points column of the Sorcerer table. You can never have more sorcery points than shown on the table for your level. You regain all spent sorcery points when you finish a long rest.\r\n\r\n### Flexible Casting\r\n\r\nYou can use your sorcery points to gain additional spell slots, or sacrifice spell slots to gain additional sorcery points. You learn other ways to use your sorcery points as you reach higher levels.\r\n\r\n***Creating Spell Slots.*** You can transform unexpended sorcery points into one spell slot as a bonus action on your turn. The Creating Spell Slots table shows the cost of creating a spell slot of a given level. You can create spell slots no higher in level than 5th.\r\n\r\nAny spell slot you create with this feature vanishes when you finish a long rest.\r\n\r\n### Creating Spell Slots (table)\r\n| Spell Slot Level | Sorcery Point Cost |\r\n| --- | --- |\r\n| 1st | 2 |\r\n| 2nd | 3 |\r\n| 3rd | 5 |\r\n| 4th | 6 |\r\n| 5th | 7|\r\n\r\n***Converting a Spell Slot to Sorcery Points.*** As a bonus action on your turn, you can expend one spell slot and gain a number of sorcery points equal to the slot's level.", - "document": "srd", - "parent": "sorcerer" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "frenzy", - "fields": { - "name": "Frenzy", - "desc": "Starting when you choose this path at 3rd level, you can go into a frenzy when you rage. If you do so, for the duration of your rage you can make a single melee weapon attack as a bonus action on each of your turns after this one. When your rage ends, you suffer one level of exhaustion (as described in appendix A).", - "document": "srd", - "parent": "path-of-the-berserker" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "hide-in-plain-sight", - "fields": { - "name": "Hide in Plain Sight", - "desc": "Starting at 10th level, you can spend 1 minute creating camouflage for yourself. You must have access to fresh mud, dirt, plants, soot, and other naturally occurring materials with which to create your camouflage.\r\n\r\nOnce you are camouflaged in this way, you can try to hide by pressing yourself up against a solid surface, such as a tree or wall, that is at least as tall and wide as you are. You gain a +10 bonus to Dexterity (Stealth) checks as long as you remain there without moving or taking actions. Once you move or take an action or a reaction, you must camouflage yourself again to gain this benefit.", - "document": "srd", - "parent": "ranger" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "holy-nimbus", - "fields": { - "name": "Holy Nimbus", - "desc": "At 20th level, as an action, you can emanate an aura of sunlight. For 1 minute, bright light shines from you in a 30-foot radius, and dim light shines 30 feet beyond that.\r\n\r\nWhenever an enemy creature starts its turn in the bright light, the creature takes 10 radiant damage.\r\n\r\nIn addition, for the duration, you have advantage on saving throws against spells cast by fiends or undead.\r\n\r\nOnce you use this feature, you can't use it again until you finish a long rest.", - "document": "srd", - "parent": "oath-of-devotion" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "hunters-prey", - "fields": { - "name": "Hunter's Prey", - "desc": "At 3rd level, you gain one of the following features of your choice.\r\n\r\n***Colossus Slayer.*** Your tenacity can wear down the most potent foes. When you hit a creature with a weapon attack, the creature takes an extra 1d8 damage if it's below its hit point maximum. You can deal this extra damage only once per turn.\r\n\r\n***Giant Killer.*** When a Large or larger creature within 5 feet of you hits or misses you with an attack, you can use your reaction to attack that creature immediately after its attack, provided that you can see the creature.\r\n\r\n***Horde Breaker.*** Once on each of your turns when you make a weapon attack, you can make another attack with the same weapon against a different creature that is within 5 feet of the original target and within range of your weapon.", - "document": "srd", - "parent": "hunter" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "hurl-through-hell", - "fields": { - "name": "Hurl Through Hell", - "desc": "Starting at 14th level, when you hit a creature with an attack, you can use this feature to instantly transport the target through the lower planes. The creature disappears and hurtles through a nightmare landscape.\r\n\r\nAt the end of your next turn, the target returns to the space it previously occupied, or the nearest unoccupied space. If the target is not a fiend, it takes 10d10 psychic damage as it reels from its horrific experience.\r\n\r\nOnce you use this feature, you can't use it again until you finish a long rest.", - "document": "srd", - "parent": "the-fiend" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "improved-critical", - "fields": { - "name": "Improved Critical", - "desc": "Beginning when you choose this archetype at 3rd level, your weapon attacks score a critical hit on a roll of 19 or 20.", - "document": "srd", - "parent": "champion" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "improved-divine-smite", - "fields": { - "name": "Improved Divine Smite", - "desc": "By 11th level, you are so suffused with righteous might that all your melee weapon strikes carry divine power with them. Whenever you hit a creature with a melee weapon, the creature takes an extra 1d8 radiant damage. If you also use your Divine Smite with an attack, you add this damage to the extra damage of your Divine Smite.", - "document": "srd", - "parent": "paladin" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "indomitable", - "fields": { - "name": "Indomitable", - "desc": "Beginning at 9th level, you can reroll a saving throw that you fail. If you do so, you must use the new roll, and you can't use this feature again until you finish a long rest.\r\n\r\nYou can use this feature twice between long rests starting at 13th level and three times between long rests starting at 17th level.", - "document": "srd", - "parent": "fighter" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "indomitable-might", - "fields": { - "name": "Indomitable Might", - "desc": "Beginning at 18th level, if your total for a Strength check is less than your Strength score, you can use that score in place of the total.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "intimidating-presence", - "fields": { - "name": "Intimidating Presence", - "desc": "Beginning at 10th level, you can use your action to frighten someone with your menacing presence. When you do so, choose one creature that you can see within 30 feet of you. If the creature can see or hear you, it must succeed on a Wisdom saving throw (DC equal to 8 + your proficiency bonus + your Charisma modifier) or be frightened of you until the end of your next turn. On subsequent turns, you can use your action to extend the duration of this effect on the frightened creature until the end of your next turn. This effect ends if the creature ends its turn out of line of sight or more than 60 feet away from you.\r\n\r\nIf the creature succeeds on its saving throw, you can't use this feature on that creature again for 24 hours.", - "document": "srd", - "parent": "path-of-the-berserker" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "jack-of-all-trades", - "fields": { - "name": "Jack of All Trades", - "desc": "Starting at 2nd level, you can add half your proficiency bonus, rounded down, to any ability check you make that doesn't already include your proficiency bonus.", - "document": "srd", - "parent": "bard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "ki", - "fields": { - "name": "Ki", - "desc": "Starting at 2nd level, your training allows you to harness the mystic energy of ki. Your access to this energy is represented by a number of ki points. Your monk level determines the number of points you have, as shown in the Ki Points column of the Monk table.\r\n\r\nYou can spend these points to fuel various ki features. You start knowing three such features: Flurry of Blows, Patient Defense, and Step of the Wind. You learn more ki features as you gain levels in this class.\r\n\r\nWhen you spend a ki point, it is unavailable until you finish a short or long rest, at the end of which you draw all of your expended ki back into yourself. You must spend at least 30 minutes of the rest meditating to regain your ki points.\r\n\r\nSome of your ki features require your target to make a saving throw to resist the feature's effects. The saving throw DC is calculated as follows:\r\n\r\n*Ki save DC* = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n### Flurry of Blows\r\n\r\nImmediately after you take the Attack action on your turn, you can spend 1 ki point to make two unarmed strikes as a bonus action. \r\n\r\n### Patient Defense\r\n\r\nYou can spend 1 ki point to take the Dodge action as a bonus action on your turn.\r\n\r\n### Step of the Wind\r\n\r\nYou can spend 1 ki point to take the Disengage or Dash action as a bonus action on your turn, and your jump distance is doubled for the turn.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "ki-empowered-strikes", - "fields": { - "name": "Ki-Empowered Strikes", - "desc": "Starting at 6th level, your unarmed strikes count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "land-circle-spells", - "fields": { - "name": "Circle Spells", - "desc": "Your mystical connection to the land infuses you with the ability to cast certain spells. At 3rd, 5th, 7th, and 9th level you gain access to circle spells connected to the land where you became a druid. Choose that land-arctic, coast, desert, forest, grassland, mountain, or swamp-and consult the associated list of spells. \r\n\r\nOnce you gain access to a circle spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day. If you gain access to a spell that doesn't appear on the druid spell list, the spell is nonetheless a druid spell for you.\r\n\r\n**Arctic (table)**\r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | hold person, spike growth | \r\n| 5th | sleet storm, slow | \r\n| 7th | freedom of movement, ice storm | \r\n| 9th | commune with nature, cone of cold | \r\n \r\n**Coast (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | mirror image, misty step | \r\n| 5th | water breathing, water walk | \r\n| 7th | control water, freedom of movement | \r\n| 9th | conjure elemental, scrying | \r\n \r\n**Desert (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | blur, silence | \r\n| 5th | create food and water, protection from energy | \r\n| 7th | blight, hallucinatory terrain | \r\n| 9th | insect plague, wall of stone | \r\n \r\n**Forest (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | barkskin, spider climb | \r\n| 5th | call lightning, plant growth | \r\n| 7th | divination, freedom of movement | \r\n| 9th | commune with nature, tree stride | \r\n \r\n**Grassland (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | invisibility, pass without trace | \r\n| 5th | daylight, haste | \r\n| 7th | divination, freedom of movement | \r\n| 9th | dream, insect plague | \r\n \r\n**Mountain (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | spider climb, spike growth | \r\n| 5th | lightning bolt, meld into stone | \r\n| 7th | stone shape, stoneskin | \r\n| 9th | passwall, wall of stone | \r\n \r\n**Swamp (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | acid arrow, darkness | \r\n| 5th | water walk, stinking cloud | \r\n| 7th | freedom of movement, locate creature | \r\n| 9th | insect plague, scrying |", - "document": "srd", - "parent": "circle-of-the-land" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "lands-stride", - "fields": { - "name": "Land's Stride", - "desc": "Starting at 6th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.\r\n\r\nIn addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the entangle spell.", - "document": "srd", - "parent": "circle-of-the-land" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "lay-on-hands", - "fields": { - "name": "Lay on Hands", - "desc": "Your blessed touch can heal wounds. You have a pool of healing power that replenishes when you take a long rest. With that pool, you can restore a total number of hit points equal to your paladin level × 5.\r\n\r\nAs an action, you can touch a creature and draw power from the pool to restore a number of hit points to that creature, up to the maximum amount remaining in your pool.\r\n\r\nAlternatively, you can expend 5 hit points from your pool of healing to cure the target of one disease or neutralize one poison affecting it. You can cure multiple diseases and neutralize multiple poisons with a single use of Lay on Hands, expending hit points separately for each one.\r\n\r\nThis feature has no effect on undead and constructs.", - "document": "srd", - "parent": "paladin" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "life-bonus-proficiency", - "fields": { - "name": "Bonus Proficiency", - "desc": "When you choose this domain at 1st level, you gain proficiency with heavy armor.", - "document": "srd", - "parent": "life-domain" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "life-domain-spells", - "fields": { - "name": "Life Domain Spells (table)", - "desc": "Cleric Level | Spells |\r\n|---|---|\r\n| 1st | bless, cure wounds | \r\n| 3rd | lesser restoration, spiritual weapon |\r\n| 5th | beacon of hope, revivify |\r\n| 7th | death ward, guardian of faith |\r\n| 9th | mass cure wounds, raise dead |", - "document": "srd", - "parent": "life-domain" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "magical-secrets", - "fields": { - "name": "Magical Secrets", - "desc": "By 10th level, you have plundered magical knowledge from a wide spectrum of disciplines. Choose two spells from any class, including this one. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.\r\n\r\nThe chosen spells count as bard spells for you and are included in the number in the Spells Known column of the Bard table.\r\n\r\nYou learn two additional spells from any class at 14th level and again at 18th level.", - "document": "srd", - "parent": "bard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "martial-archetype", - "fields": { - "name": "Martial Archetype", - "desc": "At 3rd level, you choose an archetype that you strive to emulate in your combat styles and techniques, such as Champion. The archetype you choose grants you features at 3rd level and again at 7th, 10th, 15th, and 18th level.", - "document": "srd", - "parent": "fighter" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "martial-arts", - "fields": { - "name": "Martial Arts", - "desc": "At 1st level, your practice of martial arts gives you mastery of combat styles that use unarmed strikes and monk weapons, which are shortswords and any simple melee weapons that don't have the two- handed or heavy property.\r\n\r\nYou gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:\r\n\r\n* You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.\r\n* You can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.\r\n* When you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn. \r\n\r\nCertain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "metamagic", - "fields": { - "name": "Metamagic", - "desc": "At 3rd level, you gain the ability to twist your spells to suit your needs. You gain two of the following Metamagic options of your choice. You gain another one at 10th and 17th level.\r\n\r\nYou can use only one Metamagic option on a spell when you cast it, unless otherwise noted.\r\n\r\n### Careful Spell\r\n\r\nWhen you cast a spell that forces other creatures to make a saving throw, you can protect some of those creatures from the spell's full force. To do so, you spend 1 sorcery point and choose a number of those creatures up to your Charisma modifier (minimum of one creature). A chosen creature automatically succeeds on its saving throw against the spell.\r\n\r\n### Distant Spell\r\n\r\nWhen you cast a spell that has a range of 5 feet or greater, you can spend 1 sorcery point to double the range of the spell.\r\n\r\nWhen you cast a spell that has a range of touch, you can spend 1 sorcery point to make the range of the spell 30 feet.\r\n\r\n### Empowered Spell\r\n\r\nWhen you roll damage for a spell, you can spend 1 sorcery point to reroll a number of the damage dice up to your Charisma modifier (minimum of one). You must use the new rolls.\r\n\r\nYou can use Empowered Spell even if you have already used a different Metamagic option during the casting of the spell.\r\n\r\n### Extended Spell\r\n\r\nWhen you cast a spell that has a duration of 1 minute or longer, you can spend 1 sorcery point to double its duration, to a maximum duration of 24 hours.\r\n\r\n### Heightened Spell\r\n\r\nWhen you cast a spell that forces a creature to make a saving throw to resist its effects, you can spend 3 sorcery points to give one target of the spell disadvantage on its first saving throw made against the spell.\r\n\r\n### Quickened Spell\r\n\r\nWhen you cast a spell that has a casting time of 1 action, you can spend 2 sorcery points to change the casting time to 1 bonus action for this casting.\r\n\r\n### Subtle Spell\r\n\r\nWhen you cast a spell, you can spend 1 sorcery point to cast it without any somatic or verbal components.\r\n\r\n### Twinned Spell\r\n\r\nWhen you cast a spell that targets only one creature and doesn't have a range of self, you can spend a number of sorcery points equal to the spell's level to target a second creature in range with the same spell (1 sorcery point if the spell is a cantrip).\r\n\r\nTo be eligible, a spell must be incapable of targeting more than one creature at the spell's current level. For example, magic missile and scorching ray aren't eligible, but ray of frost and chromatic orb are.", - "document": "srd", - "parent": "sorcerer" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "mindless-rage", - "fields": { - "name": "Mindless Rage", - "desc": "Beginning at 6th level, you can't be charmed or frightened while raging. If you are charmed or frightened when you enter your rage, the effect is suspended for the duration of the rage.", - "document": "srd", - "parent": "path-of-the-berserker" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "monastic-tradition", - "fields": { - "name": "Monastic Tradition", - "desc": "When you reach 3rd level, you commit yourself to a monastic tradition such as the Way of the Open Hand. Your tradition grants you features at 3rd level and again at 6th, 11th, and 17th level.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "monk-ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "monk-evasion", - "fields": { - "name": "Evasion", - "desc": "At 7th level, your instinctive agility lets you dodge out of the way of certain area effects, such as a blue dragon's lightning breath or a fireball spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "monk-extra-attack", - "fields": { - "name": "Extra Attack", - "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "monk-timeless-body", - "fields": { - "name": "Timeless Body", - "desc": "At 15th level, your ki sustains you so that you suffer none of the frailty of old age, and you can't be aged magically. You can still die of old age, however. In addition, you no longer need food or water.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "monk-unarmored-defense", - "fields": { - "name": "Unarmored Defense", - "desc": "Beginning at 1st level, while you are wearing no armor and not wielding a shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "multiattack", - "fields": { - "name": "Multiattack", - "desc": "At 11th level, you gain one of the following features of your choice.\r\n\r\n***Volley.*** You can use your action to make a ranged attack against any number of creatures within 10 feet of a point you can see within your weapon's range. You must have ammunition for each target, as normal, and you make a separate attack roll for each target.\r\n\r\n***Whirlwind Attack.*** You can use your action to make a melee attack against any number of creatures within 5 feet of you, with a separate attack roll for each target.", - "document": "srd", - "parent": "hunter" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "mystic-arcanum", - "fields": { - "name": "Mystic Arcanum", - "desc": "At 11th level, your patron bestows upon you a magical secret called an arcanum. Choose one 6th- level spell from the warlock spell list as this arcanum.\r\n\r\nYou can cast your arcanum spell once without expending a spell slot. You must finish a long rest before you can do so again.\r\n\r\nAt higher levels, you gain more warlock spells of your choice that can be cast in this way: one 7th- level spell at 13th level, one 8th-level spell at 15th level, and one 9th-level spell at 17th level. You regain all uses of your Mystic Arcanum when you finish a long rest.", - "document": "srd", - "parent": "warlock" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "natural-explorer", - "fields": { - "name": "Natural Explorer", - "desc": "You are particularly familiar with one type of natural environment and are adept at traveling and surviving in such regions. Choose one type of favored terrain: arctic, coast, desert, forest, grassland, mountain, or swamp. When you make an Intelligence or Wisdom check related to your favored terrain, your proficiency bonus is doubled if you are using a skill that you're proficient in.\r\n\r\nWhile traveling for an hour or more in your favored terrain, you gain the following benefits:\r\n\r\n* Difficult terrain doesn't slow your group's travel.\r\n* Your group can't become lost except by magical means.\r\n* Even when you are engaged in another activity while traveling (such as foraging, navigating, or tracking), you remain alert to danger.\r\n* If you are traveling alone, you can move stealthily at a normal pace.\r\n* When you forage, you find twice as much food as you normally would.\r\n* While tracking other creatures, you also learn their exact number, their sizes, and how long ago they passed through the area. \r\n\r\nYou choose additional favored terrain types at 6th and 10th level.", - "document": "srd", - "parent": "ranger" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "natural-recovery", - "fields": { - "name": "Natural Recovery", - "desc": "Starting at 2nd level, you can regain some of your magical energy by sitting in meditation and communing with nature. During a short rest, you choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your druid level (rounded up), and none of the slots can be 6th level or higher. You can't use this feature again until you finish a long rest.\r\n\r\nFor example, when you are a 4th-level druid, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level slot or two 1st-level slots.", - "document": "srd", - "parent": "circle-of-the-land" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "natures-sanctuary", - "fields": { - "name": "Nature's Sanctuary", - "desc": "When you reach 14th level, creatures of the natural world sense your connection to nature and become hesitant to attack you. When a beast or plant creature attacks you, that creature must make a Wisdom saving throw against your druid spell save DC. On a failed save, the creature must choose a different target, or the attack automatically misses. On a successful save, the creature is immune to this effect for 24 hours.\r\n\r\nThe creature is aware of this effect before it makes its attack against you.", - "document": "srd", - "parent": "circle-of-the-land" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "natures-ward", - "fields": { - "name": "Nature's Ward", - "desc": "When you reach 10th level, you can't be charmed or frightened by elementals or fey, and you are immune to poison and disease.", - "document": "srd", - "parent": "circle-of-the-land" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "open-hand-technique", - "fields": { - "name": "Open Hand Technique", - "desc": "Starting when you choose this tradition at 3rd level, you can manipulate your enemy's ki when you harness your own. Whenever you hit a creature with one of the attacks granted by your Flurry of Blows, you can impose one of the following effects on that target:\r\n\r\n* It must succeed on a Dexterity saving throw or be knocked prone.\r\n* It must make a Strength saving throw. If it fails, you can push it up to 15 feet away from you.\r\n* It can't take reactions until the end of your next turn.", - "document": "srd", - "parent": "way-of-the-open-hand" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "otherworldly-patron", - "fields": { - "name": "Otherworldly Patron", - "desc": "At 1st level, you have struck a bargain with an otherworldly being of your choice: the Archfey, the Fiend, or the Great Old One, each of which is detailed at the end of the class description. Your choice grants you features at 1st level and again at 6th, 10th, and 14th level.", - "document": "srd", - "parent": "warlock" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "overchannel", - "fields": { - "name": "Overchannel", - "desc": "Starting at 14th level, you can increase the power of your simpler spells. When you cast a wizard spell of 1st through 5th level that deals damage, you can deal maximum damage with that spell.\r\n\r\nThe first time you do so, you suffer no adverse effect. If you use this feature again before you finish a long rest, you take 2d12 necrotic damage for each level of the spell, immediately after you cast it. Each time you use this feature again before finishing a long rest, the necrotic damage per spell level increases by 1d12. This damage ignores resistance and immunity.", - "document": "srd", - "parent": "school-of-evocation" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "pact-boon", - "fields": { - "name": "Pact Boon", - "desc": "At 3rd level, your otherworldly patron bestows a gift upon you for your loyal service. You gain one of the following features of your choice.\r\n\r\n### Pact of the Chain\r\n\r\nYou learn the find familiar spell and can cast it as a ritual. The spell doesn't count against your number of spells known.\r\n\r\nWhen you cast the spell, you can choose one of the normal forms for your familiar or one of the following special forms: imp, pseudodragon, quasit, or sprite.\r\n\r\nAdditionally, when you take the Attack action, you can forgo one of your own attacks to allow your familiar to make one attack of its own with its reaction.\r\n\r\n### Pact of the Blade\r\n\r\nYou can use your action to create a pact weapon in your empty hand. You can choose the form that this melee weapon takes each time you create it. You are proficient with it while you wield it. This weapon counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.\r\n\r\nYour pact weapon disappears if it is more than 5 feet away from you for 1 minute or more. It also disappears if you use this feature again, if you dismiss the weapon (no action required), or if you die.\r\n\r\nYou can transform one magic weapon into your pact weapon by performing a special ritual while you hold the weapon. You perform the ritual over the course of 1 hour, which can be done during a short rest. You can then dismiss the weapon, shunting it into an extradimensional space, and it appears whenever you create your pact weapon thereafter. You can't affect an artifact or a sentient weapon in this way. The weapon ceases being your pact weapon if you die, if you perform the 1-hour ritual on a different weapon, or if you use a 1-hour ritual to break your bond to it. The weapon appears at your feet if it is in the extradimensional space when the bond breaks.\r\n\r\n### Pact of the Tome\r\n\r\nYour patron gives you a grimoire called a Book of Shadows. When you gain this feature, choose three cantrips from any class's spell list (the three needn't be from the same list). While the book is on your person, you can cast those cantrips at will. They don't count against your number of cantrips known. If they don't appear on the warlock spell list, they are nonetheless warlock spells for you.\r\n\r\nIf you lose your Book of Shadows, you can perform a 1-hour ceremony to receive a replacement from your patron. This ceremony can be performed during a short or long rest, and it destroys the previous book. The book turns to ash when you die.", - "document": "srd", - "parent": "warlock" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "pact-magic", - "fields": { - "name": "Pact Magic", - "desc": "Your arcane research and the magic bestowed on you by your patron have given you facility with spells.\r\n\r\n### Cantrips\r\n\r\nYou know two cantrips of your choice from the warlock spell list. You learn additional warlock cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Warlock table.\r\nSpell Slots\r\n\r\nThe Warlock table shows how many spell slots you have. The table also shows what the level of those slots is; all of your spell slots are the same level. To cast one of your warlock spells of 1st level or higher, you must expend a spell slot. You regain all expended spell slots when you finish a short or long rest.\r\n\r\nFor example, when you are 5th level, you have two 3rd-level spell slots. To cast the 1st-level spell thunderwave, you must spend one of those slots, and you cast it as a 3rd-level spell.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nAt 1st level, you know two 1st-level spells of your choice from the warlock spell list.\r\n\r\nThe Spells Known column of the Warlock table shows when you learn more warlock spells of your choice of 1st level and higher. A spell you choose must be of a level no higher than what's shown in the table's Slot Level column for your level. When you reach 6th level, for example, you learn a new warlock spell, which can be 1st, 2nd, or 3rd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the warlock spells you know and replace it with another spell from the warlock spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your warlock spells, so you use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a warlock spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\n\r\n### Spellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your warlock spells.", - "document": "srd", - "parent": "warlock" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "paladin-ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "paladin" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "paladin-extra-attack", - "fields": { - "name": "Extra Attack", - "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", - "document": "srd", - "parent": "paladin" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "paladin-fighting-style", - "fields": { - "name": "Fighting Style", - "desc": "At 2nd level, you adopt a style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n### Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n### Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n### Great Weapon Fighting\r\n\r\nWhen you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll. The weapon must have the two-handed or versatile property for you to gain this benefit.\r\n\r\n### Protection\r\n\r\nWhen a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.", - "document": "srd", - "parent": "paladin" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "paladin-spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "By 2nd level, you have learned to draw on divine magic through meditation and prayer to cast spells as a cleric does.\r\n\r\n### Preparing and Casting Spells\r\n\r\nThe Paladin table shows how many spell slots you have to cast your spells. To cast one of your paladin spells of 1st level or higher, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of paladin spells that are available for you to cast, choosing from the paladin spell list. When you do so, choose a number of paladin spells equal to your Charisma modifier + half your paladin level, rounded down (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 5th-level paladin, you have four 1st-level and two 2nd-level spell slots. With a Charisma of 14, your list of prepared spells can include four spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or a 2nd- level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of paladin spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your paladin spells, since their power derives from the strength of your convictions. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a paladin spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\nSpellcasting Focus\r\n\r\nYou can use a holy symbol as a spellcasting focus for your paladin spells.", - "document": "srd", - "parent": "paladin" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "peerless-skill", - "fields": { - "name": "Peerless Skill", - "desc": "Starting at 14th level, when you make an ability check, you can expend one use of Bardic Inspiration. Roll a Bardic Inspiration die and add the number rolled to your ability check. You can choose to do so after you roll the die for the ability check, but before the GM tells you whether you succeed or fail.", - "document": "srd", - "parent": "college-of-lore" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "perfect-self", - "fields": { - "name": "Perfect Self", - "desc": "At 20th level, when you roll for initiative and have no ki points remaining, you regain 4 ki points.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "persistent-rage", - "fields": { - "name": "Persistent Rage", - "desc": "Beginning at 15th level, your rage is so fierce that it ends early only if you fall unconscious or if you choose to end it.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "potent-cantrip", - "fields": { - "name": "Potent Cantrip", - "desc": "Starting at 6th level, your damaging cantrips affect even creatures that avoid the brunt of the effect. When a creature succeeds on a saving throw against your cantrip, the creature takes half the cantrip's damage (if any) but suffers no additional effect from the cantrip.", - "document": "srd", - "parent": "school-of-evocation" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "primal-champion", - "fields": { - "name": "Primal Champion", - "desc": "At 20th level, you embody the power of the wilds. Your Strength and Constitution scores increase by 4. Your maximum for those scores is now 24.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "primal-path", - "fields": { - "name": "Primal Path", - "desc": "At 3rd level, you choose a path that shapes the nature of your rage. Choose the Path of the Berserker or the Path of the Totem Warrior, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th, 10th, and 14th levels.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "primeval-awareness", - "fields": { - "name": "Primeval Awareness", - "desc": "Beginning at 3rd level, you can use your action and expend one ranger spell slot to focus your awareness on the region around you. For 1 minute per level of the spell slot you expend, you can sense whether the following types of creatures are present within 1 mile of you (or within up to 6 miles if you are in your favored terrain): aberrations, celestials, dragons, elementals, fey, fiends, and undead. This feature doesn't reveal the creatures' location or number.", - "document": "srd", - "parent": "ranger" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "purity-of-body", - "fields": { - "name": "Purity of Body", - "desc": "At 10th level, your mastery of the ki flowing through you makes you immune to disease and poison.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "purity-of-spirit", - "fields": { - "name": "Purity of Spirit", - "desc": "Beginning at 15th level, you are always under the effects of a *protection from evil and good* spell.", - "document": "srd", - "parent": "oath-of-devotion" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "quivering-palm", - "fields": { - "name": "Quivering Palm", - "desc": "At 17th level, you gain the ability to set up lethal vibrations in someone's body. When you hit a creature with an unarmed strike, you can spend 3 ki points to start these imperceptible vibrations, which last for a number of days equal to your monk level. The vibrations are harmless unless you use your action to end them. To do so, you and the target must be on the same plane of existence. When you use this action, the creature must make a Constitution saving throw. If it fails, it is reduced to 0 hit points. If it succeeds, it takes 10d10 necrotic damage.\r\n\r\nYou can have only one creature under the effect of this feature at a time. You can choose to end the vibrations harmlessly without using an action.", - "document": "srd", - "parent": "way-of-the-open-hand" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "rage", - "fields": { - "name": "Rage", - "desc": "In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action.\r\n\r\nWhile raging, you gain the following benefits if you aren't wearing heavy armor:\r\n\r\n* You have advantage on Strength checks and Strength saving throws.\r\n* When you make a melee weapon attack using Strength, you gain a bonus to the damage roll that increases as you gain levels as a barbarian, as shown in the Rage Damage column of the Barbarian table.\r\n* You have resistance to bludgeoning, piercing, and slashing damage. \r\n\r\nIf you are able to cast spells, you can't cast them or concentrate on them while raging.\r\n\r\nYour rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action.\r\n\r\nOnce you have raged the number of times shown for your barbarian level in the Rages column of the Barbarian table, you must finish a long rest before you can rage again.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "ranger-ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "ranger" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "ranger-archetype", - "fields": { - "name": "Ranger Archetype", - "desc": "At 3rd level, you choose an archetype that you strive to emulate: Hunter or Beast Master, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 7th, 11th, and 15th level.", - "document": "srd", - "parent": "ranger" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "ranger-extra-attack", - "fields": { - "name": "Extra Attack", - "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", - "document": "srd", - "parent": "ranger" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "ranger-fighting-style", - "fields": { - "name": "Fighting Style", - "desc": "At 2nd level, you adopt a particular style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n### Archery\r\n\r\nYou gain a +2 bonus to attack rolls you make with ranged weapons.\r\n\r\n### Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n### Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n### Two-Weapon Fighting\r\n\r\nWhen you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.", - "document": "srd", - "parent": "ranger" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "ranger-lands-stride", - "fields": { - "name": "Land's Stride", - "desc": "Starting at 8th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.\r\n\r\nIn addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the entangle spell.", - "document": "srd", - "parent": "ranger" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "ranger-spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "By the time you reach 2nd level, you have learned to use the magical essence of nature to cast spells, much as a druid does. See chapter 10 for the general rules of spellcasting and chapter 11 for the ranger spell list.\r\n\r\n### Spell Slots\r\n\r\nThe Ranger table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell animal friendship and have a 1st-level and a 2nd-level spell slot available, you can cast animal friendship using either slot.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nYou know two 1st-level spells of your choice from the ranger spell list.\r\n\r\nThe Spells Known column of the Ranger table shows when you learn more ranger spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 5th level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the ranger spells you know and replace it with another spell from the ranger spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your ranger spells, since your magic draws on your attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a ranger spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier", - "document": "srd", - "parent": "ranger" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "reckless-attack", - "fields": { - "name": "Reckless Attack", - "desc": "Starting at 2nd level, you can throw aside all concern for defense to attack with fierce desperation. When you make your first attack on your turn, you can decide to attack recklessly. Doing so gives you advantage on melee weapon attack rolls using Strength during this turn, but attack rolls against you have advantage until your next turn.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "relentless-rage", - "fields": { - "name": "Relentless Rage", - "desc": "Starting at 11th level, your rage can keep you fighting despite grievous wounds. If you drop to 0 hit points while you’re raging and don’t die outright, you can make a DC 10 Constitution saving throw. If you succeed, you drop to 1 hit point instead.\r\n\r\nEach time you use this feature after the first, the DC increases by 5. When you finish a short or long rest, the DC resets to 10.", - "document": "srd", - "parent": "barbarian" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "reliable-talent", - "fields": { - "name": "Reliable Talent", - "desc": "By 11th level, you have refined your chosen skills until they approach perfection. Whenever you make an ability check that lets you add your proficiency bonus, you can treat a d20 roll of 9 or lower as a 10.", - "document": "srd", - "parent": "rogue" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "remarkable-athlete", - "fields": { - "name": "Remarkable Athlete", - "desc": "Starting at 7th level, you can add half your proficiency bonus (round up) to any Strength, Dexterity, or Constitution check you make that doesn't already use your proficiency bonus.\r\n\r\nIn addition, when you make a running long jump, the distance you can cover increases by a number of feet equal to your Strength modifier.", - "document": "srd", - "parent": "champion" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "retaliation", - "fields": { - "name": "Retaliation", - "desc": "Starting at 14th level, when you take damage from a creature that is within 5 feet of you, you can use your reaction to make a melee weapon attack against that creature.", - "document": "srd", - "parent": "path-of-the-berserker" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "rogue-ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 10th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "rogue" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "rogue-evasion", - "fields": { - "name": "Evasion", - "desc": "Beginning at 7th level, you can nimbly dodge out of the way of certain area effects, such as a red dragon's fiery breath or an ice storm spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.", - "document": "srd", - "parent": "rogue" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "rogue-expertise", - "fields": { - "name": "Expertise", - "desc": "At 1st level, choose two of your skill proficiencies, or one of your skill proficiencies and your proficiency with thieves' tools. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.\r\n\r\nAt 6th level, you can choose two more of your proficiencies (in skills or with thieves' tools) to gain this benefit.", - "document": "srd", - "parent": "rogue" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "roguish-archetype", - "fields": { - "name": "Roguish Archetype", - "desc": "At 3rd level, you choose an archetype that you emulate in the exercise of your rogue abilities: Thief, Assassin, or Arcane Trickster, all detailed at the end of the class description. Your archetype choice grants you features at 3rd level and then again at 9th, 13th, and 17th level.", - "document": "srd", - "parent": "rogue" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "sacred-oath", - "fields": { - "name": "Sacred Oath", - "desc": "When you reach 3rd level, you swear the oath that binds you as a paladin forever. Up to this time you have been in a preparatory stage, committed to the path but not yet sworn to it. Now you choose the Oath of Devotion, the Oath of the Ancients, or the Oath of Vengeance, all detailed at the end of the class description.\r\n\r\nYour choice grants you features at 3rd level and again at 7th, 15th, and 20th level. Those features include oath spells and the Channel Divinity feature.\r\n\r\n### Oath Spells\r\n\r\nEach oath has a list of associated spells. You gain access to these spells at the levels specified in the oath description. Once you gain access to an oath spell, you always have it prepared. Oath spells don't count against the number of spells you can prepare each day.\r\n\r\nIf you gain an oath spell that doesn't appear on the paladin spell list, the spell is nonetheless a paladin spell for you.\r\n\r\n### Channel Divinity\r\n\r\nYour oath allows you to channel divine energy to fuel magical effects. Each Channel Divinity option provided by your oath explains how to use it.\r\n\r\nWhen you use your Channel Divinity, you choose which option to use. You must then finish a short or long rest to use your Channel Divinity again.\r\n\r\nSome Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your paladin spell save DC.", - "document": "srd", - "parent": "paladin" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "sculpt-spells", - "fields": { - "name": "Sculpt Spells", - "desc": "Beginning at 2nd level, you can create pockets of relative safety within the effects of your evocation spells. When you cast an evocation spell that affects other creatures that you can see, you can choose a number of them equal to 1 + the spell's level. The chosen creatures automatically succeed on their saving throws against the spell, and they take no damage if they would normally take half damage on a successful save.", - "document": "srd", - "parent": "school-of-evocation" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "second-story-work", - "fields": { - "name": "Second-Story Work", - "desc": "When you choose this archetype at 3rd level, you gain the ability to climb faster than normal; climbing no longer costs you extra movement.\r\n\r\nIn addition, when you make a running jump, the distance you cover increases by a number of feet equal to your Dexterity modifier.", - "document": "srd", - "parent": "thief" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "second-wind", - "fields": { - "name": "Second Wind", - "desc": "You have a limited well of stamina that you can draw on to protect yourself from harm. On your turn, you can use a bonus action to regain hit points equal to 1d10 + your fighter level. Once you use this feature, you must finish a short or long rest before you can use it again.", - "document": "srd", - "parent": "fighter" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "signature-spells", - "fields": { - "name": "Signature Spells", - "desc": "When you reach 20th level, you gain mastery over two powerful spells and can cast them with little effort. Choose two 3rd-level wizard spells in your spellbook as your signature spells. You always have these spells prepared, they don't count against the number of spells you have prepared, and you can cast each of them once at 3rd level without expending a spell slot. When you do so, you can't do so again until you finish a short or long rest.\r\n\r\nIf you want to cast either spell at a higher level, you must expend a spell slot as normal.", - "document": "srd", - "parent": "wizard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "slippery-mind", - "fields": { - "name": "Slippery Mind", - "desc": "By 15th level, you have acquired greater mental strength. You gain proficiency in Wisdom saving throws.", - "document": "srd", - "parent": "rogue" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "slow-fall", - "fields": { - "name": "Slow Fall", - "desc": "Beginning at 4th level, you can use your reaction when you fall to reduce any falling damage you take by an amount equal to five times your monk level.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "sneak-attack", - "fields": { - "name": "Sneak Attack", - "desc": "Beginning at 1st level, you know how to strike subtly and exploit a foe's distraction. Once per turn, you can deal an extra 1d6 damage to one creature you hit with an attack if you have advantage on the attack roll. The attack must use a finesse or a ranged weapon.\r\n\r\nYou don't need advantage on the attack roll if another enemy of the target is within 5 feet of it, that enemy isn't incapacitated, and you don't have disadvantage on the attack roll.\r\n\r\nThe amount of the extra damage increases as you gain levels in this class, as shown in the Sneak Attack column of the Rogue table.", - "document": "srd", - "parent": "rogue" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "song-of-rest", - "fields": { - "name": "Song of Rest", - "desc": "Beginning at 2nd level, you can use soothing music or oration to help revitalize your wounded allies during a short rest. If you or any friendly creatures who can hear your performance regain hit points at the end of the short rest by spending one or more Hit Dice, each of those creatures regains an extra 1d6 hit points.\r\n\r\nThe extra hit points increase when you reach certain levels in this class: to 1d8 at 9th level, to 1d10 at 13th level, and to 1d12 at 17th level.", - "document": "srd", - "parent": "bard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "sorceror-ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "sorcerer" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "sorceror-spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your spells.\r\n\r\n### Cantrips\r\n\r\nAt 1st level, you know four cantrips of your choice from the sorcerer spell list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.\r\n\r\n### Spell Slots\r\n\r\nThe Sorcerer table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these sorcerer spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell burning hands and have a 1st-level and a 2nd-level spell slot available, you can cast burning hands using either slot.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nYou know two 1st-level spells of your choice from the sorcerer spell list.\r\n\r\nThe Spells Known column of the Sorcerer table shows when you learn more sorcerer spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the sorcerer spells you know and replace it with another spell from the sorcerer spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your sorcerer spells, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC = 8** + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\nSpellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your sorcerer spells.", - "document": "srd", - "parent": "sorcerer" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "sorcerous-origin", - "fields": { - "name": "Sorcerous Origin", - "desc": "Choose a sorcerous origin, which describes the source of your innate magical power: Draconic Bloodline or Wild Magic, both detailed at the end of the class description.\r\n\r\nYour choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.", - "document": "srd", - "parent": "sorcerer" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "sorcerous-restoration", - "fields": { - "name": "Sorcerous Restoration", - "desc": "At 20th level, you regain 4 expended sorcery points whenever you finish a short rest.", - "document": "srd", - "parent": "sorcerer" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "spell-mastery", - "fields": { - "name": "Spell Mastery", - "desc": "At 18th level, you have achieved such mastery over certain spells that you can cast them at will. Choose a 1st-level wizard spell and a 2nd-level wizard spell that are in your spellbook. You can cast those spells at their lowest level without expending a spell slot when you have them prepared. If you want to cast either spell at a higher level, you must expend a spell slot as normal.\r\n\r\nBy spending 8 hours in study, you can exchange one or both of the spells you chose for different spells of the same levels.", - "document": "srd", - "parent": "wizard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "stillness-of-mind", - "fields": { - "name": "Stillness of Mind", - "desc": "Starting at 7th level, you can use your action to end one effect on yourself that is causing you to be charmed or frightened.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "stunning-strike", - "fields": { - "name": "Stunning Strike", - "desc": "Starting at 5th level, you can interfere with the flow of ki in an opponent's body. When you hit another creature with a melee weapon attack, you can spend 1 ki point to attempt a stunning strike. The target must succeed on a Constitution saving throw or be stunned until the end of your next turn.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "superior-critical", - "fields": { - "name": "Superior Critical", - "desc": "Starting at 15th level, your weapon attacks score a critical hit on a roll of 18-20.", - "document": "srd", - "parent": "champion" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "superior-hunters-defense", - "fields": { - "name": "Superior Hunter's Defense", - "desc": "At 15th level, you gain one of the following features of your choice.\r\n\r\n***Evasion.*** When you are subjected to an effect, such as a red dragon's fiery breath or a lightning bolt spell, that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.\r\n\r\n***Stand Against the Tide.*** When a hostile creature misses you with a melee attack, you can use your reaction to force that creature to repeat the same attack against another creature (other than itself) of your choice.\r\n\r\n***Uncanny Dodge.*** When an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.", - "document": "srd", - "parent": "hunter" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "superior-inspiration", - "fields": { - "name": "Superior Inspiration", - "desc": "At 20th level, when you roll initiative and have no uses of Bardic Inspiration left, you regain one use.", - "document": "srd", - "parent": "bard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "supreme-healing", - "fields": { - "name": "Supreme Healing", - "desc": "Starting at 17th level, when you would normally roll one or more dice to restore hit points with a spell, you instead use the highest number possible for each die. For example, instead of restoring 2d6 hit points to a creature, you restore 12.", - "document": "srd", - "parent": "life-domain" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "supreme-sneak", - "fields": { - "name": "Supreme Sneak", - "desc": "Starting at 9th level, you have advantage on a Dexterity (Stealth) check if you move no more than half your speed on the same turn.", - "document": "srd", - "parent": "thief" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "survivor", - "fields": { - "name": "Survivor", - "desc": "At 18th level, you attain the pinnacle of resilience in battle. At the start of each of your turns, you regain hit points equal to 5 + your Constitution modifier if you have no more than half of your hit points left. You don't gain this benefit if you have 0 hit points.", - "document": "srd", - "parent": "champion" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "tenets-of-devotion", - "fields": { - "name": "Tenets of Devotion", - "desc": "Though the exact words and strictures of the Oath of Devotion vary, paladins of this oath share these tenets.\r\n\r\n*Honesty.* Don't lie or cheat. Let your word be your promise.\r\n\r\n*Courage.* Never fear to act, though caution is wise.\r\n\r\n*Compassion.* Aid others, protect the weak, and punish those who threaten them. Show mercy to your foes, but temper it with wisdom.\r\n\r\n*Honor.* Treat others with fairness, and let your honorable deeds be an example to them. Do as much good as possible while causing the least amount of harm.\r\n\r\n*Duty.* Be responsible for your actions and their consequences, protect those entrusted to your care, and obey those who have just authority over you.", - "document": "srd", - "parent": "oath-of-devotion" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "thiefs-reflexes", - "fields": { - "name": "Thief's Reflexes", - "desc": "When you reach 17th level, you have become adept at laying ambushes and quickly escaping danger. You can take two turns during the first round of any combat. You take your first turn at your normal initiative and your second turn at your initiative minus 10. You can't use this feature when you are surprised.", - "document": "srd", - "parent": "thief" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "thieves-cant", - "fields": { - "name": "Thieves' Cant", - "desc": "During your rogue training you learned thieves' cant, a secret mix of dialect, jargon, and code that allows you to hide messages in seemingly normal conversation. Only another creature that knows thieves' cant understands such messages. It takes four times longer to convey such a message than it does to speak the same idea plainly.\r\n\r\nIn addition, you understand a set of secret signs and symbols used to convey short, simple messages, such as whether an area is dangerous or the territory of a thieves' guild, whether loot is nearby, or whether the people in an area are easy marks or will provide a safe house for thieves on the run.", - "document": "srd", - "parent": "rogue" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "tongue-of-the-sun-and-moon", - "fields": { - "name": "Tongue of the Sun and Moon", - "desc": "Starting at 13th level, you learn to touch the ki of other minds so that you understand all spoken languages. Moreover, any creature that can understand a language can understand what you say.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "tranquility", - "fields": { - "name": "Tranquility", - "desc": "Beginning at 11th level, you can enter a special meditation that surrounds you with an aura of peace. At the end of a long rest, you gain the effect of a sanctuary spell that lasts until the start of your next long rest (the spell can end early as normal). The saving throw DC for the spell equals 8 + your Wisdom modifier + your proficiency bonus.", - "document": "srd", - "parent": "way-of-the-open-hand" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "unarmored-movement", - "fields": { - "name": "Unarmored Movement", - "desc": "Starting at 2nd level, your speed increases by 10 feet while you are not wearing armor or wielding a shield. This bonus increases when you reach certain monk levels, as shown in the Monk table.\r\n\r\nAt 9th level, you gain the ability to move along vertical surfaces and across liquids on your turn without falling during the move.", - "document": "srd", - "parent": "monk" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "uncanny-dodge", - "fields": { - "name": "Uncanny Dodge", - "desc": "Starting at 5th level, when an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.", - "document": "srd", - "parent": "rogue" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "use-magic-device", - "fields": { - "name": "Use Magic Device", - "desc": "By 13th level, you have learned enough about the workings of magic that you can improvise the use of items even when they are not intended for you. You ignore all class, race, and level requirements on the use of magic items.", - "document": "srd", - "parent": "thief" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "vanish", - "fields": { - "name": "Vanish", - "desc": "Starting at 14th level, you can use the Hide action as a bonus action on your turn. Also, you can't be tracked by nonmagical means, unless you choose to leave a trail.", - "document": "srd", - "parent": "ranger" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "warlock-ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "warlock" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "wholeness-of-body", - "fields": { - "name": "Wholeness of Body", - "desc": "At 6th level, you gain the ability to heal yourself. As an action, you can regain hit points equal to three times your monk level. You must finish a long rest before you can use this feature again.", - "document": "srd", - "parent": "way-of-the-open-hand" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "wild-shape", - "fields": { - "name": "Wild Shape", - "desc": "Starting at 2nd level, you can use your action to magically assume the shape of a beast that you have seen before. You can use this feature twice. You regain expended uses when you finish a short or long rest.\r\n\r\nYour druid level determines the beasts you can transform into, as shown in the Beast Shapes table. At 2nd level, for example, you can transform into any beast that has a challenge rating of 1/4 or lower that doesn't have a flying or swimming speed.\r\n\r\n| Level | Max. CR | Limitations | Example |\r\n| --- | --- | --- | --- |\r\n| 2nd | 1/4 | No flying or swimming speed | Wolf |\r\n| 4th | 1/2 | No flying speed | Crocodile |\r\n| 8th | 1 | - | Giant Eagle |\r\n\r\nYou can stay in a beast shape for a number of hours equal to half your druid level (rounded down). You then revert to your normal form unless you expend another use of this feature. You can revert to your normal form earlier by using a bonus action on your turn. You automatically revert if you fall unconscious, drop to 0 hit points, or die.\r\n\r\nWhile you are transformed, the following rules apply:\r\nYour game statistics are replaced by the statistics of the beast, but you retain your alignment, personality, and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus in its stat block is higher than yours, use the creature's bonus instead of yours. If the creature has any legendary or lair actions, you can't use them.\r\n\r\nWhen you transform, you assume the beast's hit points and Hit Dice. When you revert to your normal form, you return to the number of hit points you had before you transformed. However, if you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. For example, if you take 10 damage in animal form and have only 1 hit point left, you revert and take 9 damage. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious.\r\n\r\nYou can't cast spells, and your ability to speak or take any action that requires hands is limited to the capabilities of your beast form. Transforming doesn't break your concentration on a spell you've already cast, however, or prevent you from taking actions that are part of a spell, such as call lightning, that you've already cast.\r\n\r\nYou retain the benefit of any features from your class, race, or other source and can use them if the new form is physically capable of doing so. However, you can't use any of your special senses, such as darkvision, unless your new form also has that sense.\r\n\r\nYou choose whether your equipment falls to the ground in your space, merges into your new form, or is worn by it. Worn equipment functions as normal, but the GM decides whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change size or shape to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge with it. Equipment that merges with the form has no effect until you leave the form.", - "document": "srd", - "parent": "druid" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "wizard-ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "wizard" - } -}, -{ - "model": "api_v2.classfeature", - "pk": "wizard-spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "As a student of arcane magic, you have a spellbook containing spells that show the first glimmerings of your true power.\r\n\r\n### Cantrips\r\n\r\nAt 1st level, you know three cantrips of your choice from the wizard spell list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.\r\n\r\n### Spellbook\r\n\r\nAt 1st level, you have a spellbook containing six 1st- level wizard spells of your choice. Your spellbook is the repository of the wizard spells you know, except your cantrips, which are fixed in your mind.\r\n\r\n### Preparing and Casting Spells\r\n\r\nThe Wizard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of wizard spells that are available for you to cast. To do so, choose a number of wizard spells from your spellbook equal to your Intelligence modifier + your wizard level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you're a 3rd-level wizard, you have four 1st-level and two 2nd-level spell slots. With an Intelligence of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination, chosen from your spellbook. If you prepare the 1st-level spell magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of wizard spells requires time spent studying your spellbook and memorizing the incantations and gestures you must make to cast the spell: at least 1 minute per spell level for each spell on your list.\r\n\r\n### Spellcasting Ability\r\n\r\nIntelligence is your spellcasting ability for your wizard spells, since you learn your spells through dedicated study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Intelligence modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Intelligence modifier\r\n\r\n### Ritual Casting\r\n\r\nYou can cast a wizard spell as a ritual if that spell has the ritual tag and you have the spell in your spellbook. You don't need to have the spell prepared.\r\n\r\n### Spellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your wizard spells.\r\n\r\n### Learning Spells of 1st Level and Higher\r\n\r\nEach time you gain a wizard level, you can add two wizard spells of your choice to your spellbook for free. Each of these spells must be of a level for which you have spell slots, as shown on the Wizard table. On your adventures, you might find other spells that you can add to your spellbook (see the “Your Spellbook” sidebar).", - "document": "srd", - "parent": "wizard" - } -} -] + { + "model": "api_v2.classfeature", + "pk": "Aura of Protection", + "fields": { + "name": "Aura of Protection", + "desc": "Starting at 6th level, whenever you or a friendly creature within 10 feet of you must make a saving throw, the creature gains a bonus to the saving throw equal to your Charisma modifier (with a minimum bonus of +1). You must be conscious to grant this bonus.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", + "document": "srd", + "parent": "srd_paladin" + } + }, + { + "model": "api_v2.classfeature", + "pk": "Stroke of Luck", + "fields": { + "name": "Stroke of Luck", + "desc": "At 20th level, you have an uncanny knack for succeeding when you need to. If your attack misses a target within range, you can turn the miss into a hit. Alternatively, if you fail an ability check, you can treat the d20 roll as a 20.\r\n\r\nOnce you use this feature, you can't use it again until you finish a short or long rest.", + "document": "srd", + "parent": "srd_rogue" + } + }, + { + "model": "api_v2.classfeature", + "pk": "action-surge", + "fields": { + "name": "Action Surge", + "desc": "Starting at 2nd level, you can push yourself beyond your normal limits for a moment. On your turn, you can take one additional action on top of your regular action and a possible bonus action.\r\n\r\nOnce you use this feature, you must finish a short or long rest before you can use it again. Starting at 17th level, you can use it twice before a rest, but only once on the same turn.", + "document": "srd", + "parent": "srd_fighter" + } + }, + { + "model": "api_v2.classfeature", + "pk": "additional-fighting-style", + "fields": { + "name": "Additional Fighting Style", + "desc": "At 10th level, you can choose a second option from the Fighting Style class feature.", + "document": "srd", + "parent": "srd_champion" + } + }, + { + "model": "api_v2.classfeature", + "pk": "additional-magical-secrets", + "fields": { + "name": "Additional Magical Secrets", + "desc": "At 6th level, you learn two spells of your choice from any class. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip. The chosen spells count as bard spells for you but don't count against the number of bard spells you know.", + "document": "srd", + "parent": "srd_college-of-lore" + } + }, + { + "model": "api_v2.classfeature", + "pk": "arcane-recovery", + "fields": { + "name": "Arcane Recovery", + "desc": "You have learned to regain some of your magical energy by studying your spellbook. Once per day when you finish a short rest, you can choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.\r\n\r\nFor example, if you're a 4th-level wizard, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level spell slot or two 1st-level spell slots.", + "document": "srd", + "parent": "srd_wizard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "arcane-tradition", + "fields": { + "name": "Arcane Tradition", + "desc": "When you reach 2nd level, you choose an arcane tradition, shaping your practice of magic through one of eight schools: Abjuration, Conjuration, Divination, Enchantment, Evocation, Illusion, Necromancy, or Transmutation, all detailed at the end of the class description.\r\n\r\nYour choice grants you features at 2nd level and again at 6th, 10th, and 14th level.", + "document": "srd", + "parent": "srd_wizard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "archdruid", + "fields": { + "name": "Archdruid", + "desc": "At 20th level, you can use your Wild Shape an unlimited number of times.\r\n\r\nAdditionally, you can ignore the verbal and somatic components of your druid spells, as well as any material components that lack a cost and aren't consumed by a spell. You gain this benefit in both your normal shape and your beast shape from Wild Shape.", + "document": "srd", + "parent": "srd_druid" + } + }, + { + "model": "api_v2.classfeature", + "pk": "aura-of-courage", + "fields": { + "name": "Aura of Courage", + "desc": "Starting at 10th level, you and friendly creatures within 10 feet of you can't be frightened while you are conscious.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", + "document": "srd", + "parent": "srd_paladin" + } + }, + { + "model": "api_v2.classfeature", + "pk": "aura-of-devotion", + "fields": { + "name": "Aura of Devotion", + "desc": "Starting at 7th level, you and friendly creatures within 10 feet of you can't be charmed while you are conscious.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", + "document": "srd", + "parent": "srd_oath-of-devotion" + } + }, + { + "model": "api_v2.classfeature", + "pk": "barbarian-ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can’t increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "barbarian-extra-attack", + "fields": { + "name": "Extra Attack", + "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "barbarian-unarmored-defense", + "fields": { + "name": "Unarmored Defense", + "desc": "While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "bard-ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_bard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "bard-college", + "fields": { + "name": "Bard College", + "desc": "At 3rd level, you delve into the advanced techniques of a bard college of your choice: the College of Lore or the College of Valor, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th and 14th level.", + "document": "srd", + "parent": "srd_bard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "bard-expertise", + "fields": { + "name": "Expertise", + "desc": "At 3rd level, choose two of your skill proficiencies. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.\r\n\r\nAt 10th level, you can choose another two skill proficiencies to gain this benefit.", + "document": "srd", + "parent": "srd_bard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "bard-spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "You have learned to untangle and reshape the fabric of reality in harmony with your wishes and music.\r\n\r\nYour spells are part of your vast repertoire, magic that you can tune to different situations.\r\n\r\n###Cantrips\r\n\r\nYou know two cantrips of your choice from the bard spell list. You learn additional bard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Bard table.\r\n\r\n###Spell Slots\r\n\r\nThe Bard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell cure wounds and have a 1st-level and a 2nd-level spell slot available, you can cast cure wounds using either slot.\r\n\r\n###Spells Known of 1st Level and Higher\r\n\r\nYou know four 1st-level spells of your choice from the bard spell list.\r\n\r\nThe Spells Known column of the Bard table shows when you learn more bard spells of your choice. Each of these spells must be of a level for which you have spell slots, as shown on the table. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the bard spells you know and replace it with another spell from the bard spell list, which also must be of a level for which you have spell slots.\r\n\r\n###Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your bard spells. Your magic comes from the heart and soul you pour into the performance of your music or oration. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a bard spell you cast and when making an attack roll with one.\r\n\r\n*Spell save DC* = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n*Spell attack modifier* = your proficiency bonus + your Charisma modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast any bard spell you know as a ritual if that spell has the ritual tag.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a musical instrument (see chapter 5, “Equipment”) as a spellcasting focus for your bard spells.", + "document": "srd", + "parent": "srd_bard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "bardic-inspiration", + "fields": { + "name": "Bardic Inspiration", + "desc": "You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6.\r\n\r\nOnce within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time.\r\n\r\nYou can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest.\r\n\r\nYour Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level.", + "document": "srd", + "parent": "srd_bard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "beast-spells", + "fields": { + "name": "Beast Spells", + "desc": "Beginning at 18th level, you can cast many of your druid spells in any shape you assume using Wild Shape. You can perform the somatic and verbal components of a druid spell while in a beast shape, but you aren't able to provide material components.", + "document": "srd", + "parent": "srd_druid" + } + }, + { + "model": "api_v2.classfeature", + "pk": "blessed-healer", + "fields": { + "name": "Blessed Healer", + "desc": "Beginning at 6th level, the healing spells you cast on others heal you as well. When you cast a spell of 1st level or higher that restores hit points to a creature other than you, you regain hit points equal to 2 + the spell's level.", + "document": "srd", + "parent": "srd_life-domain" + } + }, + { + "model": "api_v2.classfeature", + "pk": "blindsense", + "fields": { + "name": "Blindsense", + "desc": "Starting at 14th level, if you are able to hear, you are aware of the location of any hidden or invisible creature within 10 feet of you.", + "document": "srd", + "parent": "srd_rogue" + } + }, + { + "model": "api_v2.classfeature", + "pk": "bonus-cantrip", + "fields": { + "name": "Bonus Cantrip", + "desc": "When you choose this circle at 2nd level, you learn one additional druid cantrip of your choice.", + "document": "srd", + "parent": "srd_circle-of-the-land" + } + }, + { + "model": "api_v2.classfeature", + "pk": "bonus-proficiencies", + "fields": { + "name": "Bonus Proficiencies", + "desc": "When you join the College of Lore at 3rd level, you gain proficiency with three skills of your choice.", + "document": "srd", + "parent": "srd_college-of-lore" + } + }, + { + "model": "api_v2.classfeature", + "pk": "brutal-critical", + "fields": { + "name": "Brutal Critical", + "desc": "Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack.\r\n\r\nThis increases to two additional dice at 13th level and three additional dice at 17th level.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "channel-divinity-preserve-life", + "fields": { + "name": "Channel Divinity: Preserve Life", + "desc": "Starting at 2nd level, you can use your Channel Divinity to heal the badly injured.\r\n\r\nAs an action, you present your holy symbol and evoke healing energy that can restore a number of hit points equal to five times your cleric level. Choose any creatures within 30 feet of you, and divide those hit points among them. This feature can restore a creature to no more than half of its hit point maximum. You can't use this feature on an undead or a construct.", + "document": "srd", + "parent": "srd_life-domain" + } + }, + { + "model": "api_v2.classfeature", + "pk": "cleansing-touch", + "fields": { + "name": "Cleansing Touch", + "desc": "Beginning at 14th level, you can use your action to end one spell on yourself or on one willing creature that you touch.\r\n\r\nYou can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain expended uses when you finish a long rest.", + "document": "srd", + "parent": "srd_paladin" + } + }, + { + "model": "api_v2.classfeature", + "pk": "cleric-ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_cleric" + } + }, + { + "model": "api_v2.classfeature", + "pk": "cleric-channel-divinity", + "fields": { + "name": "Channel Divinity", + "desc": "At 2nd level, you gain the ability to channel divine energy directly from your deity, using that energy to fuel magical effects. You start with two such effects: Turn Undead and an effect determined by your domain. Some domains grant you additional effects as you advance in levels, as noted in the domain description.\r\n\r\nWhen you use your Channel Divinity, you choose which effect to create. You must then finish a short or long rest to use your Channel Divinity again.\r\n\r\nSome Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your cleric spell save DC.\r\n\r\nBeginning at 6th level, you can use your Channel Divinity twice between rests, and beginning at 18th level, you can use it three times between rests. When you finish a short or long rest, you regain your expended uses.\r\n\r\n### Channel Divinity: Turn Undead\r\n\r\nAs an action, you present your holy symbol and speak a prayer censuring the undead. Each undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes any damage.\r\n\r\nA turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.", + "document": "srd", + "parent": "srd_cleric" + } + }, + { + "model": "api_v2.classfeature", + "pk": "cleric-spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "As a conduit for divine power, you can cast cleric spells.\r\n\r\n###Cantrips\r\n\r\nAt 1st level, you know three cantrips of your choice from the cleric spell list. You learn additional cleric cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Cleric table.\r\nPreparing and Casting Spells\r\n\r\nThe Cleric table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of cleric spells that are available for you to cast, choosing from the cleric spell list. When you do so, choose a number of cleric spells equal to your Wisdom modifier + your cleric level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 3rd-level cleric, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of cleric spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n###Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your cleric spells. The power of your spells comes from your devotion to your deity. You use your Wisdom whenever a cleric spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a cleric spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast a cleric spell as a ritual if that spell has the ritual tag and you have the spell prepared.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a holy symbol (see chapter 5, “Equipment”) as a spellcasting focus for your cleric spells.", + "document": "srd", + "parent": "srd_cleric" + } + }, + { + "model": "api_v2.classfeature", + "pk": "countercharm", + "fields": { + "name": "Countercharm", + "desc": "At 6th level, you gain the ability to use musical notes or words of power to disrupt mind-influencing effects. As an action, you can start a performance that lasts until the end of your next turn. During that time, you and any friendly creatures within 30 feet of you have advantage on saving throws against being frightened or charmed. A creature must be able to hear you to gain this benefit. The performance ends early if you are incapacitated or silenced or if you voluntarily end it (no action required).", + "document": "srd", + "parent": "srd_bard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "cunning-action", + "fields": { + "name": "Cunning Action", + "desc": "Starting at 2nd level, your quick thinking and agility allow you to move and act quickly. You can take a bonus action on each of your turns in combat. This action can be used only to take the Dash, Disengage, or Hide action.", + "document": "srd", + "parent": "srd_rogue" + } + }, + { + "model": "api_v2.classfeature", + "pk": "cutting-words", + "fields": { + "name": "Cutting Words", + "desc": "Also at 3rd level, you learn how to use your wit to distract, confuse, and otherwise sap the confidence and competence of others. When a creature that you can see within 60 feet of you makes an attack roll, an ability check, or a damage roll, you can use your reaction to expend one of your uses of Bardic Inspiration, rolling a Bardic Inspiration die and subtracting the number rolled from the creature's roll. You can choose to use this feature after the creature makes its roll, but before the GM determines whether the attack roll or ability check succeeds or fails, or before the creature deals its damage. The creature is immune if it can't hear you or if it's immune to being charmed.", + "document": "srd", + "parent": "srd_college-of-lore" + } + }, + { + "model": "api_v2.classfeature", + "pk": "danger-sense", + "fields": { + "name": "Danger Sense", + "desc": "At 2nd level, you gain an uncanny sense of when things nearby aren’t as they should be, giving you an edge when you dodge away from danger.\r\n\r\nYou have advantage on Dexterity saving throws against effects that you can see, such as traps and spells. To gain this benefit, you can’t be blinded, deafened, or incapacitated.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "dark-ones-blessing", + "fields": { + "name": "Dark One's Blessing", + "desc": "Starting at 1st level, when you reduce a hostile creature to 0 hit points, you gain temporary hit points equal to your Charisma modifier + your warlock level (minimum of 1).", + "document": "srd", + "parent": "srd_the-fiend" + } + }, + { + "model": "api_v2.classfeature", + "pk": "dark-ones-own-luck", + "fields": { + "name": "Dark One's Own Luck", + "desc": "Starting at 6th level, you can call on your patron to alter fate in your favor. When you make an ability check or a saving throw, you can use this feature to add a d10 to your roll. You can do so after seeing the initial roll but before any of the roll's effects occur.\r\n\r\nOnce you use this feature, you can't use it again until you finish a short or long rest.", + "document": "srd", + "parent": "srd_the-fiend" + } + }, + { + "model": "api_v2.classfeature", + "pk": "defensive-tactics", + "fields": { + "name": "Defensive Tactics", + "desc": "At 7th level, you gain one of the following features of your choice.\r\n\r\n***Escape the Horde.*** Opportunity attacks against you are made with disadvantage.\r\n\r\n***Multiattack Defense.*** When a creature hits you with an attack, you gain a +4 bonus to AC against all subsequent attacks made by that creature for the rest of the turn.\r\n\r\n***Steel Will.*** You have advantage on saving throws against being frightened.", + "document": "srd", + "parent": "srd_hunter" + } + }, + { + "model": "api_v2.classfeature", + "pk": "deflect-missiles", + "fields": { + "name": "Deflect Missiles", + "desc": "Starting at 3rd level, you can use your reaction to deflect or catch the missile when you are hit by a ranged weapon attack. When you do so, the damage you take from the attack is reduced by 1d10 + your Dexterity modifier + your monk level.\r\n\r\nIf you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in one hand and you have at least one hand free. If you catch a missile in this way, you can spend 1 ki point to make a ranged attack with the weapon or piece of ammunition you just caught, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and the missile counts as a monk weapon for the attack, which has a normal range of 20 feet and a long range of 60 feet.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "destroy-undead", + "fields": { + "name": "Destroy Undead", + "desc": "Starting at 5th level, when an undead fails its saving throw against your Turn Undead feature, the creature is instantly destroyed if its challenge rating is at or below a certain threshold, as shown in the Destroy Undead table. \r\n\r\n### Destroy Undead (table)\r\n\r\n| Cleric Level | Destroys Undead of CR... | \r\n|---|---|\r\n| 5th | 1/2 or lower |\r\n| 8th | 1 or lower |\r\n| 11th | 2 or lower |\r\n| 14th | 3 or lower | \r\n| 17th | 4 or lower |", + "document": "srd", + "parent": "srd_cleric" + } + }, + { + "model": "api_v2.classfeature", + "pk": "devotion-channel-divinity", + "fields": { + "name": "Channel Divinity", + "desc": "When you take this oath at 3rd level, you gain the following two Channel Divinity options.\r\n\r\n**Sacred Weapon.** As an action, you can imbue one weapon that you are holding with positive energy, using your Channel Divinity. For 1 minute, you add your Charisma modifier to attack rolls made with that weapon (with a minimum bonus of +1). The weapon also emits bright light in a 20-foot radius and dim light 20 feet beyond that. If the weapon is not already magical, it becomes magical for the duration.\r\n\r\nYou can end this effect on your turn as part of any other action. If you are no longer holding or carrying this weapon, or if you fall unconscious, this effect ends.\r\n\r\n**Turn the Unholy.** As an action, you present your holy symbol and speak a prayer censuring fiends and undead, using your Channel Divinity. Each fiend or undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes damage.\r\n\r\nA turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.", + "document": "srd", + "parent": "srd_oath-of-devotion" + } + }, + { + "model": "api_v2.classfeature", + "pk": "devotion-oath-spells", + "fields": { + "name": "Oath Spells", + "desc": "You gain oath spells at the paladin levels listed.\r\n\r\n### Oath of Devotion Spells\r\n| Paladin Level | Spells |\r\n| --- | --- |\r\n| 3rd | protection from evil and good, sanctuary |\r\n| 5th | lesser restoration, zone of truth |\r\n| 9th | beacon of hope, dispel magic |\r\n| 13th | freedom of movement, guardian of faith |\r\n| 17th | commune, flame strike |", + "document": "srd", + "parent": "srd_oath-of-devotion" + } + }, + { + "model": "api_v2.classfeature", + "pk": "diamond-soul", + "fields": { + "name": "Diamond Soul", + "desc": "Beginning at 14th level, your mastery of ki grants you proficiency in all saving throws.\r\n\r\nAdditionally, whenever you make a saving throw and fail, you can spend 1 ki point to reroll it and take the second result.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "disciple-of-life", + "fields": { + "name": "Disciple of Life", + "desc": "Also starting at 1st level, your healing spells are more effective. Whenever you use a spell of 1st level or higher to restore hit points to a creature, the creature regains additional hit points equal to 2 + the spell's level.", + "document": "srd", + "parent": "srd_life-domain" + } + }, + { + "model": "api_v2.classfeature", + "pk": "divine-domain", + "fields": { + "name": "Divine Domain", + "desc": "Choose one domain related to your deity, such as Life. Each domain is detailed at the end of the class description, and each one provides examples of gods associated with it. Your choice grants you domain spells and other features when you choose it at 1st level. It also grants you additional ways to use Channel Divinity when you gain that feature at 2nd level, and additional benefits at 6th, 8th, and 17th levels.\r\n\r\n### Domain Spells\r\nEach domain has a list of spells—its domain spells—that you gain at the cleric levels noted in the domain description. Once you gain a domain spell, you always have it prepared, and it doesn’t count against the number of spells you can prepare each day. \r\nIf you have a domain spell that doesn’t appear on the cleric spell list, the spell is nonetheless a cleric spell for you.", + "document": "srd", + "parent": "srd_cleric" + } + }, + { + "model": "api_v2.classfeature", + "pk": "divine-health", + "fields": { + "name": "Divine Health", + "desc": "By 3rd level, the divine magic flowing through you makes you immune to disease.", + "document": "srd", + "parent": "srd_paladin" + } + }, + { + "model": "api_v2.classfeature", + "pk": "divine-intervention", + "fields": { + "name": "Divine Intervention", + "desc": "Beginning at 10th level, you can call on your deity to intervene on your behalf when your need is great.\r\n\r\nImploring your deity's aid requires you to use your action. Describe the assistance you seek, and roll percentile dice. If you roll a number equal to or lower than your cleric level, your deity intervenes. The GM chooses the nature of the intervention; the effect of any cleric spell or cleric domain spell would be appropriate.\r\n\r\nIf your deity intervenes, you can't use this feature again for 7 days. Otherwise, you can use it again after you finish a long rest.\r\n\r\nAt 20th level, your call for intervention succeeds automatically, no roll required.", + "document": "srd", + "parent": "srd_cleric" + } + }, + { + "model": "api_v2.classfeature", + "pk": "divine-sense", + "fields": { + "name": "Divine Sense", + "desc": "The presence of strong evil registers on your senses like a noxious odor, and powerful good rings like heavenly music in your ears. As an action, you can open your awareness to detect such forces. Until the end of your next turn, you know the location of any celestial, fiend, or undead within 60 feet of you that is not behind total cover. You know the type (celestial, fiend, or undead) of any being whose presence you sense, but not its identity (the vampire Count Strahd von Zarovich, for instance). Within the same radius, you also detect the presence of any place or object that has been consecrated or desecrated, as with the hallow spell.\r\n\r\nYou can use this feature a number of times equal to 1 + your Charisma modifier. When you finish a long rest, you regain all expended uses.", + "document": "srd", + "parent": "srd_paladin" + } + }, + { + "model": "api_v2.classfeature", + "pk": "divine-smite", + "fields": { + "name": "Divine Smite", + "desc": "Starting at 2nd level, when you hit a creature with a melee weapon attack, you can expend one spell slot to deal radiant damage to the target, in addition to the weapon's damage. The extra damage is 2d8 for a 1st-level spell slot, plus 1d8 for each spell level higher than 1st, to a maximum of 5d8. The damage increases by 1d8 if the target is an undead or a fiend.", + "document": "srd", + "parent": "srd_paladin" + } + }, + { + "model": "api_v2.classfeature", + "pk": "divine-strike", + "fields": { + "name": "Divine Strike", + "desc": "At 8th level, you gain the ability to infuse your weapon strikes with divine energy. Once on each of your turns when you hit a creature with a weapon attack, you can cause the attack to deal an extra 1d8 radiant damage to the target. When you reach 14th level, the extra damage increases to 2d8.", + "document": "srd", + "parent": "srd_life-domain" + } + }, + { + "model": "api_v2.classfeature", + "pk": "draconic-presence", + "fields": { + "name": "Draconic Presence", + "desc": "Beginning at 18th level, you can channel the dread presence of your dragon ancestor, causing those around you to become awestruck or frightened. As an action, you can spend 5 sorcery points to draw on this power and exude an aura of awe or fear (your choice) to a distance of 60 feet. For 1 minute or until you lose your concentration (as if you were casting a concentration spell), each hostile creature that starts its turn in this aura must succeed on a Wisdom saving throw or be charmed (if you chose awe) or frightened (if you chose fear) until the aura ends. A creature that succeeds on this saving throw is immune to your aura for 24 hours.", + "document": "srd", + "parent": "srd_draconic-bloodline" + } + }, + { + "model": "api_v2.classfeature", + "pk": "draconic-resilience", + "fields": { + "name": "Draconic Resilience", + "desc": "As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class.\r\n\r\nAdditionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.", + "document": "srd", + "parent": "srd_draconic-bloodline" + } + }, + { + "model": "api_v2.classfeature", + "pk": "dragon-ancestor", + "fields": { + "name": "Dragon Ancestor", + "desc": "At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.\r\n\r\n### Draconic Ancestry (table)\r\n| Dragon | Damage Type |\r\n| --- | --- |\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |\r\n\r\nYou can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.", + "document": "srd", + "parent": "srd_draconic-bloodline" + } + }, + { + "model": "api_v2.classfeature", + "pk": "dragon-wings", + "fields": { + "name": "Dragon Wings", + "desc": "At 14th level, you gain the ability to sprout a pair of dragon wings from your back, gaining a flying speed equal to your current speed. You can create these wings as a bonus action on your turn. They last until you dismiss them as a bonus action on your turn.\r\n\r\nYou can't manifest your wings while wearing armor unless the armor is made to accommodate them, and clothing not made to accommodate your wings might be destroyed when you manifest them.", + "document": "srd", + "parent": "srd_draconic-bloodline" + } + }, + { + "model": "api_v2.classfeature", + "pk": "druid-ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_druid" + } + }, + { + "model": "api_v2.classfeature", + "pk": "druid-circle", + "fields": { + "name": "Druid Circle", + "desc": "At 2nd level, you choose to identify with a circle of druids such as the Circle of the Land. Your choice grants you features at 2nd level and again at 6th, 10th, and 14th level.", + "document": "srd", + "parent": "srd_druid" + } + }, + { + "model": "api_v2.classfeature", + "pk": "druid-spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "Drawing on the divine essence of nature itself, you can cast spells to shape that essence to your will.\r\n\r\n###Cantrips\r\n\r\nAt 1st level, you know two cantrips of your choice from the druid spell list. You learn additional druid cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Druid table.\r\n\r\n###Preparing and Casting Spells\r\n\r\nThe Druid table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these druid spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of druid spells that are available for you to cast, choosing from the druid spell list. When you do so, choose a number of druid spells equal to your Wisdom modifier + your druid level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 3rd-level druid, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can also change your list of prepared spells when you finish a long rest. Preparing a new list of druid spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n###Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your druid spells, since your magic draws upon your devotion and attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a druid spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast a druid spell as a ritual if that spell has the ritual tag and you have the spell prepared.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a druidic focus (see chapter 5, “Equipment”) as a spellcasting focus for your druid spells.", + "document": "srd", + "parent": "srd_druid" + } + }, + { + "model": "api_v2.classfeature", + "pk": "druid-timeless-body", + "fields": { + "name": "Timeless Body", + "desc": "Starting at 18th level, the primal magic that you wield causes you to age more slowly. For every 10 years that pass, your body ages only 1 year.", + "document": "srd", + "parent": "srd_druid" + } + }, + { + "model": "api_v2.classfeature", + "pk": "druidic", + "fields": { + "name": "Druidic", + "desc": "You know Druidic, the secret language of druids. You can speak the language and use it to leave hidden messages. You and others who know this language automatically spot such a message. Others spot the message's presence with a successful DC 15 Wisdom (Perception) check but can't decipher it without magic.", + "document": "srd", + "parent": "srd_druid" + } + }, + { + "model": "api_v2.classfeature", + "pk": "eldritch-invocation-list", + "fields": { + "name": "Eldritch Invocation List", + "desc": "If an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.\r\n\r\n### Agonizing Blast\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you cast eldritch blast, add your Charisma modifier to the damage it deals on a hit.\r\nArmor of Shadows\r\n\r\nYou can cast mage armor on yourself at will, without expending a spell slot or material components.\r\n\r\n### Ascendant Step\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast levitate on yourself at will, without expending a spell slot or material components.\r\n\r\n### Beast Speech\r\n\r\nYou can cast speak with animals at will, without expending a spell slot.\r\n\r\n### Beguiling Influence\r\n\r\nYou gain proficiency in the Deception and Persuasion skills.\r\n\r\n### Bewitching Whispers\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast compulsion once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Book of Ancient Secrets\r\n\r\nPrerequisite: Pact of the Tome feature\r\n\r\nYou can now inscribe magical rituals in your Book of Shadows. Choose two 1st-level spells that have the ritual tag from any class's spell list (the two needn't be from the same list). The spells appear in the book and don't count against the number of spells you know. With your Book of Shadows in hand, you can cast the chosen spells as rituals. You can't cast the spells except as rituals, unless you've learned them by some other means. You can also cast a warlock spell you know as a ritual if it has the ritual tag.\r\n\r\nOn your adventures, you can add other ritual spells to your Book of Shadows. When you find such a spell, you can add it to the book if the spell's level is equal to or less than half your warlock level (rounded up) and if you can spare the time to transcribe the spell. For each level of the spell, the transcription process takes 2 hours and costs 50 gp for the rare inks needed to inscribe it.\r\n\r\n### Chains of Carceri\r\n\r\nPrerequisite: 15th level, Pact of the Chain feature\r\n\r\nYou can cast hold monster at will-targeting a celestial, fiend, or elemental-without expending a spell slot or material components. You must finish a long rest before you can use this invocation on the same creature again.\r\n\r\n### Devil's Sight\r\n\r\nYou can see normally in darkness, both magical and nonmagical, to a distance of 120 feet.\r\n\r\n### Dreadful Word\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast confusion once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Eldritch Sight\r\n\r\nYou can cast detect magic at will, without expending a spell slot.\r\n\r\n### Eldritch Spear\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you cast eldritch blast, its range is 300 feet.\r\n\r\n### Eyes of the Rune Keeper\r\n\r\nYou can read all writing.\r\n\r\n### Fiendish Vigor\r\n\r\nYou can cast false life on yourself at will as a 1st-level spell, without expending a spell slot or material components.\r\n\r\n### Gaze of Two Minds\r\n\r\nYou can use your action to touch a willing humanoid and perceive through its senses until the end of your next turn. As long as the creature is on the same plane of existence as you, you can use your action on subsequent turns to maintain this connection, extending the duration until the end of your next turn. While perceiving through the other creature's senses, you benefit from any special senses possessed by that creature, and you are blinded and deafened to your own surroundings.\r\n\r\n### Lifedrinker\r\n\r\nPrerequisite: 12th level, Pact of the Blade feature\r\n\r\nWhen you hit a creature with your pact weapon, the creature takes extra necrotic damage equal to your Charisma modifier (minimum 1).\r\n\r\n### Mask of Many Faces\r\n\r\nYou can cast disguise self at will, without expending a spell slot.\r\n\r\n### Master of Myriad Forms\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can cast alter self at will, without expending a spell slot.\r\n\r\n### Minions of Chaos\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast conjure elemental once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Mire the Mind\r\n\r\nPrerequisite: 5th level\r\n\r\nYou can cast slow once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Misty Visions\r\n\r\nYou can cast silent image at will, without expending a spell slot or material components.\r\n\r\n### One with Shadows\r\n\r\nPrerequisite: 5th level\r\n\r\nWhen you are in an area of dim light or darkness, you can use your action to become invisible until you move or take an action or a reaction.\r\n\r\n### Otherworldly Leap\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast jump on yourself at will, without expending a spell slot or material components.\r\n\r\n### Repelling Blast\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you hit a creature with eldritch blast, you can push the creature up to 10 feet away from you in a straight line.\r\n\r\n### Sculptor of Flesh\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast polymorph once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Sign of Ill Omen\r\n\r\nPrerequisite: 5th level\r\n\r\nYou can cast bestow curse once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Thief of Five Fates\r\n\r\nYou can cast bane once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Thirsting Blade\r\n\r\nPrerequisite: 5th level, Pact of the Blade feature\r\n\r\nYou can attack with your pact weapon twice, instead of once, whenever you take the Attack action on your turn.\r\n\r\n### Visions of Distant Realms\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can cast arcane eye at will, without expending a spell slot.\r\n\r\n### Voice of the Chain Master\r\n\r\nPrerequisite: Pact of the Chain feature\r\n\r\nYou can communicate telepathically with your familiar and perceive through your familiar's senses as long as you are on the same plane of existence. Additionally, while perceiving through your familiar's senses, you can also speak through your familiar in your own voice, even if your familiar is normally incapable of speech.\r\n\r\n### Whispers of the Grave\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast speak with dead at will, without expending a spell slot.\r\n\r\n### Witch Sight\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can see the true form of any shapechanger or creature concealed by illusion or transmutation magic while the creature is within 30 feet of you and within line of sight.", + "document": "srd", + "parent": "srd_warlock" + } + }, + { + "model": "api_v2.classfeature", + "pk": "eldritch-invocations", + "fields": { + "name": "Eldritch Invocations", + "desc": "In your study of occult lore, you have unearthed eldritch invocations, fragments of forbidden knowledge that imbue you with an abiding magical ability.\r\n\r\nAt 2nd level, you gain two eldritch invocations of your choice. Your invocation options are detailed at the end of the class description. When you gain certain warlock levels, you gain additional invocations of your choice, as shown in the Invocations Known column of the Warlock table.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the invocations you know and replace it with another invocation that you could learn at that level.", + "document": "srd", + "parent": "srd_warlock" + } + }, + { + "model": "api_v2.classfeature", + "pk": "eldritch-master", + "fields": { + "name": "Eldritch Master", + "desc": "At 20th level, you can draw on your inner reserve of mystical power while entreating your patron to regain expended spell slots. You can spend 1 minute entreating your patron for aid to regain all your expended spell slots from your Pact Magic feature. Once you regain spell slots with this feature, you must finish a long rest before you can do so again.", + "document": "srd", + "parent": "srd_warlock" + } + }, + { + "model": "api_v2.classfeature", + "pk": "elemental-affinity", + "fields": { + "name": "Elemental Affinity", + "desc": "Starting at 6th level, when you cast a spell that deals damage of the type associated with your draconic ancestry, you can add your Charisma modifier to one damage roll of that spell. At the same time, you can spend 1 sorcery point to gain resistance to that damage type for 1 hour.", + "document": "srd", + "parent": "srd_draconic-bloodline" + } + }, + { + "model": "api_v2.classfeature", + "pk": "elusive", + "fields": { + "name": "Elusive", + "desc": "Beginning at 18th level, you are so evasive that attackers rarely gain the upper hand against you. No attack roll has advantage against you while you aren't incapacitated.", + "document": "srd", + "parent": "srd_rogue" + } + }, + { + "model": "api_v2.classfeature", + "pk": "empowered-evocation", + "fields": { + "name": "Empowered Evocation", + "desc": "Beginning at 10th level, you can add your Intelligence modifier to one damage roll of any wizard evocation spell you cast.", + "document": "srd", + "parent": "srd_school-of-evocation" + } + }, + { + "model": "api_v2.classfeature", + "pk": "empty-body", + "fields": { + "name": "Empty Body", + "desc": "Beginning at 18th level, you can use your action to spend 4 ki points to become invisible for 1 minute. During that time, you also have resistance to all damage but force damage.\r\n\r\nAdditionally, you can spend 8 ki points to cast the astral projection spell, without needing material components. When you do so, you can't take any other creatures with you.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "evocation-savant", + "fields": { + "name": "Evocation Savant", + "desc": "Beginning when you select this school at 2nd level, the gold and time you must spend to copy an evocation spell into your spellbook is halved.", + "document": "srd", + "parent": "srd_school-of-evocation" + } + }, + { + "model": "api_v2.classfeature", + "pk": "expanded-spell-list", + "fields": { + "name": "Expanded Spell List", + "desc": "The Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\r\n\r\n### Fiend Expanded Spells (table)\r\n| Spell Level | Spells |\r\n| --- | --- |\r\n| 1st | burning hands, command |\r\n| 2nd | blindness/deafness, scorching ray |\r\n| 3rd | fireball, stinking cloud |\r\n| 4th | fire shield, wall of fire |\r\n| 5th | flame strike, hallow |", + "document": "srd", + "parent": "srd_the-fiend" + } + }, + { + "model": "api_v2.classfeature", + "pk": "fast-hands", + "fields": { + "name": "Fast Hands", + "desc": "Starting at 3rd level, you can use the bonus action granted by your Cunning Action to make a Dexterity (Sleight of Hand) check, use your thieves' tools to disarm a trap or open a lock, or take the Use an Object action.", + "document": "srd", + "parent": "srd_thief" + } + }, + { + "model": "api_v2.classfeature", + "pk": "fast-movement", + "fields": { + "name": "Fast Movement", + "desc": "Starting at 5th level, your speed increases by 10 feet while you aren’t wearing heavy armor.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "favored-enemy", + "fields": { + "name": "Favored Enemy", + "desc": "Beginning at 1st level, you have significant experience studying, tracking, hunting, and even talking to a certain type of enemy.\r\n\r\nChoose a type of favored enemy: aberrations, beasts, celestials, constructs, dragons, elementals, fey, fiends, giants, monstrosities, oozes, plants, or undead. Alternatively, you can select two races of humanoid (such as gnolls and orcs) as favored enemies.\r\n\r\nYou have advantage on Wisdom (Survival) checks to track your favored enemies, as well as on Intelligence checks to recall information about them.\r\n\r\nWhen you gain this feature, you also learn one language of your choice that is spoken by your favored enemies, if they speak one at all.\r\n\r\nYou choose one additional favored enemy, as well as an associated language, at 6th and 14th level. As you gain levels, your choices should reflect the types of monsters you have encountered on your adventures.", + "document": "srd", + "parent": "srd_ranger" + } + }, + { + "model": "api_v2.classfeature", + "pk": "feral-instinct", + "fields": { + "name": "Feral Instinct", + "desc": "By 7th level, your instincts are so honed that you have advantage on initiative rolls.\r\n\r\nAdditionally, if you are surprised at the beginning of combat and aren’t incapacitated, you can act normally on your first turn, but only if you enter your rage before doing anything else on that turn.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "feral-senses", + "fields": { + "name": "Feral Senses", + "desc": "At 18th level, you gain preternatural senses that help you fight creatures you can't see. When you attack a creature you can't see, your inability to see it doesn't impose disadvantage on your attack rolls against it.\r\n\r\nYou are also aware of the location of any invisible creature within 30 feet of you, provided that the creature isn't hidden from you and you aren't blinded or deafened.", + "document": "srd", + "parent": "srd_ranger" + } + }, + { + "model": "api_v2.classfeature", + "pk": "fiendish-resilience", + "fields": { + "name": "Fiendish Resilience", + "desc": "Starting at 10th level, you can choose one damage type when you finish a short or long rest. You gain resistance to that damage type until you choose a different one with this feature. Damage from magical weapons or silver weapons ignores this resistance.", + "document": "srd", + "parent": "srd_the-fiend" + } + }, + { + "model": "api_v2.classfeature", + "pk": "fighter-ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 6th, 8th, 12th, 14th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_fighter" + } + }, + { + "model": "api_v2.classfeature", + "pk": "fighter-extra-attack", + "fields": { + "name": "Extra Attack", + "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.\r\n\r\nThe number of attacks increases to three when you reach 11th level in this class and to four when you reach 20th level in this class.", + "document": "srd", + "parent": "srd_fighter" + } + }, + { + "model": "api_v2.classfeature", + "pk": "fighting-style", + "fields": { + "name": "Fighting Style", + "desc": "You adopt a particular style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n###Archery\r\n\r\nYou gain a +2 bonus to attack rolls you make with ranged weapons.\r\n\r\n###Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n###Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n###Great Weapon Fighting\r\n\r\nWhen you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2. The weapon must have the two-handed or versatile property for you to gain this benefit.\r\n\r\n###Protection\r\n\r\nWhen a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.\r\n\r\n###Two-Weapon Fighting\r\n\r\nWhen you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.", + "document": "srd", + "parent": "srd_fighter" + } + }, + { + "model": "api_v2.classfeature", + "pk": "foe-slayer", + "fields": { + "name": "Foe Slayer", + "desc": "At 20th level, you become an unparalleled hunter of your enemies. Once on each of your turns, you can add your Wisdom modifier to the attack roll or the damage roll of an attack you make against one of your favored enemies. You can choose to use this feature before or after the roll, but before any effects of the roll are applied.", + "document": "srd", + "parent": "srd_ranger" + } + }, + { + "model": "api_v2.classfeature", + "pk": "font-of-inspiration", + "fields": { + "name": "Font of Inspiration", + "desc": "Beginning when you reach 5th level, you regain all of your expended uses of Bardic Inspiration when you finish a short or long rest.", + "document": "srd", + "parent": "srd_bard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "font-of-magic", + "fields": { + "name": "Font of Magic", + "desc": "At 2nd level, you tap into a deep wellspring of magic within yourself. This wellspring is represented by sorcery points, which allow you to create a variety of magical effects.\r\n\r\n### Sorcery Points\r\n\r\nYou have 2 sorcery points, and you gain more as you reach higher levels, as shown in the Sorcery Points column of the Sorcerer table. You can never have more sorcery points than shown on the table for your level. You regain all spent sorcery points when you finish a long rest.\r\n\r\n### Flexible Casting\r\n\r\nYou can use your sorcery points to gain additional spell slots, or sacrifice spell slots to gain additional sorcery points. You learn other ways to use your sorcery points as you reach higher levels.\r\n\r\n***Creating Spell Slots.*** You can transform unexpended sorcery points into one spell slot as a bonus action on your turn. The Creating Spell Slots table shows the cost of creating a spell slot of a given level. You can create spell slots no higher in level than 5th.\r\n\r\nAny spell slot you create with this feature vanishes when you finish a long rest.\r\n\r\n### Creating Spell Slots (table)\r\n| Spell Slot Level | Sorcery Point Cost |\r\n| --- | --- |\r\n| 1st | 2 |\r\n| 2nd | 3 |\r\n| 3rd | 5 |\r\n| 4th | 6 |\r\n| 5th | 7|\r\n\r\n***Converting a Spell Slot to Sorcery Points.*** As a bonus action on your turn, you can expend one spell slot and gain a number of sorcery points equal to the slot's level.", + "document": "srd", + "parent": "srd_sorcerer" + } + }, + { + "model": "api_v2.classfeature", + "pk": "frenzy", + "fields": { + "name": "Frenzy", + "desc": "Starting when you choose this path at 3rd level, you can go into a frenzy when you rage. If you do so, for the duration of your rage you can make a single melee weapon attack as a bonus action on each of your turns after this one. When your rage ends, you suffer one level of exhaustion (as described in appendix A).", + "document": "srd", + "parent": "srd_path-of-the-berserker" + } + }, + { + "model": "api_v2.classfeature", + "pk": "hide-in-plain-sight", + "fields": { + "name": "Hide in Plain Sight", + "desc": "Starting at 10th level, you can spend 1 minute creating camouflage for yourself. You must have access to fresh mud, dirt, plants, soot, and other naturally occurring materials with which to create your camouflage.\r\n\r\nOnce you are camouflaged in this way, you can try to hide by pressing yourself up against a solid surface, such as a tree or wall, that is at least as tall and wide as you are. You gain a +10 bonus to Dexterity (Stealth) checks as long as you remain there without moving or taking actions. Once you move or take an action or a reaction, you must camouflage yourself again to gain this benefit.", + "document": "srd", + "parent": "srd_ranger" + } + }, + { + "model": "api_v2.classfeature", + "pk": "holy-nimbus", + "fields": { + "name": "Holy Nimbus", + "desc": "At 20th level, as an action, you can emanate an aura of sunlight. For 1 minute, bright light shines from you in a 30-foot radius, and dim light shines 30 feet beyond that.\r\n\r\nWhenever an enemy creature starts its turn in the bright light, the creature takes 10 radiant damage.\r\n\r\nIn addition, for the duration, you have advantage on saving throws against spells cast by fiends or undead.\r\n\r\nOnce you use this feature, you can't use it again until you finish a long rest.", + "document": "srd", + "parent": "srd_oath-of-devotion" + } + }, + { + "model": "api_v2.classfeature", + "pk": "hunters-prey", + "fields": { + "name": "Hunter's Prey", + "desc": "At 3rd level, you gain one of the following features of your choice.\r\n\r\n***Colossus Slayer.*** Your tenacity can wear down the most potent foes. When you hit a creature with a weapon attack, the creature takes an extra 1d8 damage if it's below its hit point maximum. You can deal this extra damage only once per turn.\r\n\r\n***Giant Killer.*** When a Large or larger creature within 5 feet of you hits or misses you with an attack, you can use your reaction to attack that creature immediately after its attack, provided that you can see the creature.\r\n\r\n***Horde Breaker.*** Once on each of your turns when you make a weapon attack, you can make another attack with the same weapon against a different creature that is within 5 feet of the original target and within range of your weapon.", + "document": "srd", + "parent": "srd_hunter" + } + }, + { + "model": "api_v2.classfeature", + "pk": "hurl-through-hell", + "fields": { + "name": "Hurl Through Hell", + "desc": "Starting at 14th level, when you hit a creature with an attack, you can use this feature to instantly transport the target through the lower planes. The creature disappears and hurtles through a nightmare landscape.\r\n\r\nAt the end of your next turn, the target returns to the space it previously occupied, or the nearest unoccupied space. If the target is not a fiend, it takes 10d10 psychic damage as it reels from its horrific experience.\r\n\r\nOnce you use this feature, you can't use it again until you finish a long rest.", + "document": "srd", + "parent": "srd_the-fiend" + } + }, + { + "model": "api_v2.classfeature", + "pk": "improved-critical", + "fields": { + "name": "Improved Critical", + "desc": "Beginning when you choose this archetype at 3rd level, your weapon attacks score a critical hit on a roll of 19 or 20.", + "document": "srd", + "parent": "srd_champion" + } + }, + { + "model": "api_v2.classfeature", + "pk": "improved-divine-smite", + "fields": { + "name": "Improved Divine Smite", + "desc": "By 11th level, you are so suffused with righteous might that all your melee weapon strikes carry divine power with them. Whenever you hit a creature with a melee weapon, the creature takes an extra 1d8 radiant damage. If you also use your Divine Smite with an attack, you add this damage to the extra damage of your Divine Smite.", + "document": "srd", + "parent": "srd_paladin" + } + }, + { + "model": "api_v2.classfeature", + "pk": "indomitable", + "fields": { + "name": "Indomitable", + "desc": "Beginning at 9th level, you can reroll a saving throw that you fail. If you do so, you must use the new roll, and you can't use this feature again until you finish a long rest.\r\n\r\nYou can use this feature twice between long rests starting at 13th level and three times between long rests starting at 17th level.", + "document": "srd", + "parent": "srd_fighter" + } + }, + { + "model": "api_v2.classfeature", + "pk": "indomitable-might", + "fields": { + "name": "Indomitable Might", + "desc": "Beginning at 18th level, if your total for a Strength check is less than your Strength score, you can use that score in place of the total.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "intimidating-presence", + "fields": { + "name": "Intimidating Presence", + "desc": "Beginning at 10th level, you can use your action to frighten someone with your menacing presence. When you do so, choose one creature that you can see within 30 feet of you. If the creature can see or hear you, it must succeed on a Wisdom saving throw (DC equal to 8 + your proficiency bonus + your Charisma modifier) or be frightened of you until the end of your next turn. On subsequent turns, you can use your action to extend the duration of this effect on the frightened creature until the end of your next turn. This effect ends if the creature ends its turn out of line of sight or more than 60 feet away from you.\r\n\r\nIf the creature succeeds on its saving throw, you can't use this feature on that creature again for 24 hours.", + "document": "srd", + "parent": "srd_path-of-the-berserker" + } + }, + { + "model": "api_v2.classfeature", + "pk": "jack-of-all-trades", + "fields": { + "name": "Jack of All Trades", + "desc": "Starting at 2nd level, you can add half your proficiency bonus, rounded down, to any ability check you make that doesn't already include your proficiency bonus.", + "document": "srd", + "parent": "srd_bard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "ki", + "fields": { + "name": "Ki", + "desc": "Starting at 2nd level, your training allows you to harness the mystic energy of ki. Your access to this energy is represented by a number of ki points. Your monk level determines the number of points you have, as shown in the Ki Points column of the Monk table.\r\n\r\nYou can spend these points to fuel various ki features. You start knowing three such features: Flurry of Blows, Patient Defense, and Step of the Wind. You learn more ki features as you gain levels in this class.\r\n\r\nWhen you spend a ki point, it is unavailable until you finish a short or long rest, at the end of which you draw all of your expended ki back into yourself. You must spend at least 30 minutes of the rest meditating to regain your ki points.\r\n\r\nSome of your ki features require your target to make a saving throw to resist the feature's effects. The saving throw DC is calculated as follows:\r\n\r\n*Ki save DC* = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n### Flurry of Blows\r\n\r\nImmediately after you take the Attack action on your turn, you can spend 1 ki point to make two unarmed strikes as a bonus action. \r\n\r\n### Patient Defense\r\n\r\nYou can spend 1 ki point to take the Dodge action as a bonus action on your turn.\r\n\r\n### Step of the Wind\r\n\r\nYou can spend 1 ki point to take the Disengage or Dash action as a bonus action on your turn, and your jump distance is doubled for the turn.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "ki-empowered-strikes", + "fields": { + "name": "Ki-Empowered Strikes", + "desc": "Starting at 6th level, your unarmed strikes count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "land-circle-spells", + "fields": { + "name": "Circle Spells", + "desc": "Your mystical connection to the land infuses you with the ability to cast certain spells. At 3rd, 5th, 7th, and 9th level you gain access to circle spells connected to the land where you became a druid. Choose that land-arctic, coast, desert, forest, grassland, mountain, or swamp-and consult the associated list of spells. \r\n\r\nOnce you gain access to a circle spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day. If you gain access to a spell that doesn't appear on the druid spell list, the spell is nonetheless a druid spell for you.\r\n\r\n**Arctic (table)**\r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | hold person, spike growth | \r\n| 5th | sleet storm, slow | \r\n| 7th | freedom of movement, ice storm | \r\n| 9th | commune with nature, cone of cold | \r\n \r\n**Coast (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | mirror image, misty step | \r\n| 5th | water breathing, water walk | \r\n| 7th | control water, freedom of movement | \r\n| 9th | conjure elemental, scrying | \r\n \r\n**Desert (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | blur, silence | \r\n| 5th | create food and water, protection from energy | \r\n| 7th | blight, hallucinatory terrain | \r\n| 9th | insect plague, wall of stone | \r\n \r\n**Forest (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | barkskin, spider climb | \r\n| 5th | call lightning, plant growth | \r\n| 7th | divination, freedom of movement | \r\n| 9th | commune with nature, tree stride | \r\n \r\n**Grassland (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | invisibility, pass without trace | \r\n| 5th | daylight, haste | \r\n| 7th | divination, freedom of movement | \r\n| 9th | dream, insect plague | \r\n \r\n**Mountain (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | spider climb, spike growth | \r\n| 5th | lightning bolt, meld into stone | \r\n| 7th | stone shape, stoneskin | \r\n| 9th | passwall, wall of stone | \r\n \r\n**Swamp (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | acid arrow, darkness | \r\n| 5th | water walk, stinking cloud | \r\n| 7th | freedom of movement, locate creature | \r\n| 9th | insect plague, scrying |", + "document": "srd", + "parent": "srd_circle-of-the-land" + } + }, + { + "model": "api_v2.classfeature", + "pk": "lands-stride", + "fields": { + "name": "Land's Stride", + "desc": "Starting at 6th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.\r\n\r\nIn addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the entangle spell.", + "document": "srd", + "parent": "srd_circle-of-the-land" + } + }, + { + "model": "api_v2.classfeature", + "pk": "lay-on-hands", + "fields": { + "name": "Lay on Hands", + "desc": "Your blessed touch can heal wounds. You have a pool of healing power that replenishes when you take a long rest. With that pool, you can restore a total number of hit points equal to your paladin level × 5.\r\n\r\nAs an action, you can touch a creature and draw power from the pool to restore a number of hit points to that creature, up to the maximum amount remaining in your pool.\r\n\r\nAlternatively, you can expend 5 hit points from your pool of healing to cure the target of one disease or neutralize one poison affecting it. You can cure multiple diseases and neutralize multiple poisons with a single use of Lay on Hands, expending hit points separately for each one.\r\n\r\nThis feature has no effect on undead and constructs.", + "document": "srd", + "parent": "srd_paladin" + } + }, + { + "model": "api_v2.classfeature", + "pk": "life-bonus-proficiency", + "fields": { + "name": "Bonus Proficiency", + "desc": "When you choose this domain at 1st level, you gain proficiency with heavy armor.", + "document": "srd", + "parent": "srd_life-domain" + } + }, + { + "model": "api_v2.classfeature", + "pk": "life-domain-spells", + "fields": { + "name": "Life Domain Spells (table)", + "desc": "Cleric Level | Spells |\r\n|---|---|\r\n| 1st | bless, cure wounds | \r\n| 3rd | lesser restoration, spiritual weapon |\r\n| 5th | beacon of hope, revivify |\r\n| 7th | death ward, guardian of faith |\r\n| 9th | mass cure wounds, raise dead |", + "document": "srd", + "parent": "srd_life-domain" + } + }, + { + "model": "api_v2.classfeature", + "pk": "magical-secrets", + "fields": { + "name": "Magical Secrets", + "desc": "By 10th level, you have plundered magical knowledge from a wide spectrum of disciplines. Choose two spells from any class, including this one. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.\r\n\r\nThe chosen spells count as bard spells for you and are included in the number in the Spells Known column of the Bard table.\r\n\r\nYou learn two additional spells from any class at 14th level and again at 18th level.", + "document": "srd", + "parent": "srd_bard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "martial-archetype", + "fields": { + "name": "Martial Archetype", + "desc": "At 3rd level, you choose an archetype that you strive to emulate in your combat styles and techniques, such as Champion. The archetype you choose grants you features at 3rd level and again at 7th, 10th, 15th, and 18th level.", + "document": "srd", + "parent": "srd_fighter" + } + }, + { + "model": "api_v2.classfeature", + "pk": "martial-arts", + "fields": { + "name": "Martial Arts", + "desc": "At 1st level, your practice of martial arts gives you mastery of combat styles that use unarmed strikes and monk weapons, which are shortswords and any simple melee weapons that don't have the two- handed or heavy property.\r\n\r\nYou gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:\r\n\r\n* You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.\r\n* You can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.\r\n* When you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn. \r\n\r\nCertain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "metamagic", + "fields": { + "name": "Metamagic", + "desc": "At 3rd level, you gain the ability to twist your spells to suit your needs. You gain two of the following Metamagic options of your choice. You gain another one at 10th and 17th level.\r\n\r\nYou can use only one Metamagic option on a spell when you cast it, unless otherwise noted.\r\n\r\n### Careful Spell\r\n\r\nWhen you cast a spell that forces other creatures to make a saving throw, you can protect some of those creatures from the spell's full force. To do so, you spend 1 sorcery point and choose a number of those creatures up to your Charisma modifier (minimum of one creature). A chosen creature automatically succeeds on its saving throw against the spell.\r\n\r\n### Distant Spell\r\n\r\nWhen you cast a spell that has a range of 5 feet or greater, you can spend 1 sorcery point to double the range of the spell.\r\n\r\nWhen you cast a spell that has a range of touch, you can spend 1 sorcery point to make the range of the spell 30 feet.\r\n\r\n### Empowered Spell\r\n\r\nWhen you roll damage for a spell, you can spend 1 sorcery point to reroll a number of the damage dice up to your Charisma modifier (minimum of one). You must use the new rolls.\r\n\r\nYou can use Empowered Spell even if you have already used a different Metamagic option during the casting of the spell.\r\n\r\n### Extended Spell\r\n\r\nWhen you cast a spell that has a duration of 1 minute or longer, you can spend 1 sorcery point to double its duration, to a maximum duration of 24 hours.\r\n\r\n### Heightened Spell\r\n\r\nWhen you cast a spell that forces a creature to make a saving throw to resist its effects, you can spend 3 sorcery points to give one target of the spell disadvantage on its first saving throw made against the spell.\r\n\r\n### Quickened Spell\r\n\r\nWhen you cast a spell that has a casting time of 1 action, you can spend 2 sorcery points to change the casting time to 1 bonus action for this casting.\r\n\r\n### Subtle Spell\r\n\r\nWhen you cast a spell, you can spend 1 sorcery point to cast it without any somatic or verbal components.\r\n\r\n### Twinned Spell\r\n\r\nWhen you cast a spell that targets only one creature and doesn't have a range of self, you can spend a number of sorcery points equal to the spell's level to target a second creature in range with the same spell (1 sorcery point if the spell is a cantrip).\r\n\r\nTo be eligible, a spell must be incapable of targeting more than one creature at the spell's current level. For example, magic missile and scorching ray aren't eligible, but ray of frost and chromatic orb are.", + "document": "srd", + "parent": "srd_sorcerer" + } + }, + { + "model": "api_v2.classfeature", + "pk": "mindless-rage", + "fields": { + "name": "Mindless Rage", + "desc": "Beginning at 6th level, you can't be charmed or frightened while raging. If you are charmed or frightened when you enter your rage, the effect is suspended for the duration of the rage.", + "document": "srd", + "parent": "srd_path-of-the-berserker" + } + }, + { + "model": "api_v2.classfeature", + "pk": "monastic-tradition", + "fields": { + "name": "Monastic Tradition", + "desc": "When you reach 3rd level, you commit yourself to a monastic tradition such as the Way of the Open Hand. Your tradition grants you features at 3rd level and again at 6th, 11th, and 17th level.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "monk-ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "monk-evasion", + "fields": { + "name": "Evasion", + "desc": "At 7th level, your instinctive agility lets you dodge out of the way of certain area effects, such as a blue dragon's lightning breath or a fireball spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "monk-extra-attack", + "fields": { + "name": "Extra Attack", + "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "monk-timeless-body", + "fields": { + "name": "Timeless Body", + "desc": "At 15th level, your ki sustains you so that you suffer none of the frailty of old age, and you can't be aged magically. You can still die of old age, however. In addition, you no longer need food or water.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "monk-unarmored-defense", + "fields": { + "name": "Unarmored Defense", + "desc": "Beginning at 1st level, while you are wearing no armor and not wielding a shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "multiattack", + "fields": { + "name": "Multiattack", + "desc": "At 11th level, you gain one of the following features of your choice.\r\n\r\n***Volley.*** You can use your action to make a ranged attack against any number of creatures within 10 feet of a point you can see within your weapon's range. You must have ammunition for each target, as normal, and you make a separate attack roll for each target.\r\n\r\n***Whirlwind Attack.*** You can use your action to make a melee attack against any number of creatures within 5 feet of you, with a separate attack roll for each target.", + "document": "srd", + "parent": "srd_hunter" + } + }, + { + "model": "api_v2.classfeature", + "pk": "mystic-arcanum", + "fields": { + "name": "Mystic Arcanum", + "desc": "At 11th level, your patron bestows upon you a magical secret called an arcanum. Choose one 6th- level spell from the warlock spell list as this arcanum.\r\n\r\nYou can cast your arcanum spell once without expending a spell slot. You must finish a long rest before you can do so again.\r\n\r\nAt higher levels, you gain more warlock spells of your choice that can be cast in this way: one 7th- level spell at 13th level, one 8th-level spell at 15th level, and one 9th-level spell at 17th level. You regain all uses of your Mystic Arcanum when you finish a long rest.", + "document": "srd", + "parent": "srd_warlock" + } + }, + { + "model": "api_v2.classfeature", + "pk": "natural-explorer", + "fields": { + "name": "Natural Explorer", + "desc": "You are particularly familiar with one type of natural environment and are adept at traveling and surviving in such regions. Choose one type of favored terrain: arctic, coast, desert, forest, grassland, mountain, or swamp. When you make an Intelligence or Wisdom check related to your favored terrain, your proficiency bonus is doubled if you are using a skill that you're proficient in.\r\n\r\nWhile traveling for an hour or more in your favored terrain, you gain the following benefits:\r\n\r\n* Difficult terrain doesn't slow your group's travel.\r\n* Your group can't become lost except by magical means.\r\n* Even when you are engaged in another activity while traveling (such as foraging, navigating, or tracking), you remain alert to danger.\r\n* If you are traveling alone, you can move stealthily at a normal pace.\r\n* When you forage, you find twice as much food as you normally would.\r\n* While tracking other creatures, you also learn their exact number, their sizes, and how long ago they passed through the area. \r\n\r\nYou choose additional favored terrain types at 6th and 10th level.", + "document": "srd", + "parent": "srd_ranger" + } + }, + { + "model": "api_v2.classfeature", + "pk": "natural-recovery", + "fields": { + "name": "Natural Recovery", + "desc": "Starting at 2nd level, you can regain some of your magical energy by sitting in meditation and communing with nature. During a short rest, you choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your druid level (rounded up), and none of the slots can be 6th level or higher. You can't use this feature again until you finish a long rest.\r\n\r\nFor example, when you are a 4th-level druid, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level slot or two 1st-level slots.", + "document": "srd", + "parent": "srd_circle-of-the-land" + } + }, + { + "model": "api_v2.classfeature", + "pk": "natures-sanctuary", + "fields": { + "name": "Nature's Sanctuary", + "desc": "When you reach 14th level, creatures of the natural world sense your connection to nature and become hesitant to attack you. When a beast or plant creature attacks you, that creature must make a Wisdom saving throw against your druid spell save DC. On a failed save, the creature must choose a different target, or the attack automatically misses. On a successful save, the creature is immune to this effect for 24 hours.\r\n\r\nThe creature is aware of this effect before it makes its attack against you.", + "document": "srd", + "parent": "srd_circle-of-the-land" + } + }, + { + "model": "api_v2.classfeature", + "pk": "natures-ward", + "fields": { + "name": "Nature's Ward", + "desc": "When you reach 10th level, you can't be charmed or frightened by elementals or fey, and you are immune to poison and disease.", + "document": "srd", + "parent": "srd_circle-of-the-land" + } + }, + { + "model": "api_v2.classfeature", + "pk": "open-hand-technique", + "fields": { + "name": "Open Hand Technique", + "desc": "Starting when you choose this tradition at 3rd level, you can manipulate your enemy's ki when you harness your own. Whenever you hit a creature with one of the attacks granted by your Flurry of Blows, you can impose one of the following effects on that target:\r\n\r\n* It must succeed on a Dexterity saving throw or be knocked prone.\r\n* It must make a Strength saving throw. If it fails, you can push it up to 15 feet away from you.\r\n* It can't take reactions until the end of your next turn.", + "document": "srd", + "parent": "srd_way-of-the-open-hand" + } + }, + { + "model": "api_v2.classfeature", + "pk": "otherworldly-patron", + "fields": { + "name": "Otherworldly Patron", + "desc": "At 1st level, you have struck a bargain with an otherworldly being of your choice: the Archfey, the Fiend, or the Great Old One, each of which is detailed at the end of the class description. Your choice grants you features at 1st level and again at 6th, 10th, and 14th level.", + "document": "srd", + "parent": "srd_warlock" + } + }, + { + "model": "api_v2.classfeature", + "pk": "overchannel", + "fields": { + "name": "Overchannel", + "desc": "Starting at 14th level, you can increase the power of your simpler spells. When you cast a wizard spell of 1st through 5th level that deals damage, you can deal maximum damage with that spell.\r\n\r\nThe first time you do so, you suffer no adverse effect. If you use this feature again before you finish a long rest, you take 2d12 necrotic damage for each level of the spell, immediately after you cast it. Each time you use this feature again before finishing a long rest, the necrotic damage per spell level increases by 1d12. This damage ignores resistance and immunity.", + "document": "srd", + "parent": "srd_school-of-evocation" + } + }, + { + "model": "api_v2.classfeature", + "pk": "pact-boon", + "fields": { + "name": "Pact Boon", + "desc": "At 3rd level, your otherworldly patron bestows a gift upon you for your loyal service. You gain one of the following features of your choice.\r\n\r\n### Pact of the Chain\r\n\r\nYou learn the find familiar spell and can cast it as a ritual. The spell doesn't count against your number of spells known.\r\n\r\nWhen you cast the spell, you can choose one of the normal forms for your familiar or one of the following special forms: imp, pseudodragon, quasit, or sprite.\r\n\r\nAdditionally, when you take the Attack action, you can forgo one of your own attacks to allow your familiar to make one attack of its own with its reaction.\r\n\r\n### Pact of the Blade\r\n\r\nYou can use your action to create a pact weapon in your empty hand. You can choose the form that this melee weapon takes each time you create it. You are proficient with it while you wield it. This weapon counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.\r\n\r\nYour pact weapon disappears if it is more than 5 feet away from you for 1 minute or more. It also disappears if you use this feature again, if you dismiss the weapon (no action required), or if you die.\r\n\r\nYou can transform one magic weapon into your pact weapon by performing a special ritual while you hold the weapon. You perform the ritual over the course of 1 hour, which can be done during a short rest. You can then dismiss the weapon, shunting it into an extradimensional space, and it appears whenever you create your pact weapon thereafter. You can't affect an artifact or a sentient weapon in this way. The weapon ceases being your pact weapon if you die, if you perform the 1-hour ritual on a different weapon, or if you use a 1-hour ritual to break your bond to it. The weapon appears at your feet if it is in the extradimensional space when the bond breaks.\r\n\r\n### Pact of the Tome\r\n\r\nYour patron gives you a grimoire called a Book of Shadows. When you gain this feature, choose three cantrips from any class's spell list (the three needn't be from the same list). While the book is on your person, you can cast those cantrips at will. They don't count against your number of cantrips known. If they don't appear on the warlock spell list, they are nonetheless warlock spells for you.\r\n\r\nIf you lose your Book of Shadows, you can perform a 1-hour ceremony to receive a replacement from your patron. This ceremony can be performed during a short or long rest, and it destroys the previous book. The book turns to ash when you die.", + "document": "srd", + "parent": "srd_warlock" + } + }, + { + "model": "api_v2.classfeature", + "pk": "pact-magic", + "fields": { + "name": "Pact Magic", + "desc": "Your arcane research and the magic bestowed on you by your patron have given you facility with spells.\r\n\r\n### Cantrips\r\n\r\nYou know two cantrips of your choice from the warlock spell list. You learn additional warlock cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Warlock table.\r\nSpell Slots\r\n\r\nThe Warlock table shows how many spell slots you have. The table also shows what the level of those slots is; all of your spell slots are the same level. To cast one of your warlock spells of 1st level or higher, you must expend a spell slot. You regain all expended spell slots when you finish a short or long rest.\r\n\r\nFor example, when you are 5th level, you have two 3rd-level spell slots. To cast the 1st-level spell thunderwave, you must spend one of those slots, and you cast it as a 3rd-level spell.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nAt 1st level, you know two 1st-level spells of your choice from the warlock spell list.\r\n\r\nThe Spells Known column of the Warlock table shows when you learn more warlock spells of your choice of 1st level and higher. A spell you choose must be of a level no higher than what's shown in the table's Slot Level column for your level. When you reach 6th level, for example, you learn a new warlock spell, which can be 1st, 2nd, or 3rd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the warlock spells you know and replace it with another spell from the warlock spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your warlock spells, so you use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a warlock spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\n\r\n### Spellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your warlock spells.", + "document": "srd", + "parent": "srd_warlock" + } + }, + { + "model": "api_v2.classfeature", + "pk": "paladin-ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_paladin" + } + }, + { + "model": "api_v2.classfeature", + "pk": "paladin-extra-attack", + "fields": { + "name": "Extra Attack", + "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", + "document": "srd", + "parent": "srd_paladin" + } + }, + { + "model": "api_v2.classfeature", + "pk": "paladin-fighting-style", + "fields": { + "name": "Fighting Style", + "desc": "At 2nd level, you adopt a style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n### Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n### Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n### Great Weapon Fighting\r\n\r\nWhen you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll. The weapon must have the two-handed or versatile property for you to gain this benefit.\r\n\r\n### Protection\r\n\r\nWhen a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.", + "document": "srd", + "parent": "srd_paladin" + } + }, + { + "model": "api_v2.classfeature", + "pk": "paladin-spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "By 2nd level, you have learned to draw on divine magic through meditation and prayer to cast spells as a cleric does.\r\n\r\n### Preparing and Casting Spells\r\n\r\nThe Paladin table shows how many spell slots you have to cast your spells. To cast one of your paladin spells of 1st level or higher, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of paladin spells that are available for you to cast, choosing from the paladin spell list. When you do so, choose a number of paladin spells equal to your Charisma modifier + half your paladin level, rounded down (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 5th-level paladin, you have four 1st-level and two 2nd-level spell slots. With a Charisma of 14, your list of prepared spells can include four spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or a 2nd- level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of paladin spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your paladin spells, since their power derives from the strength of your convictions. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a paladin spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\nSpellcasting Focus\r\n\r\nYou can use a holy symbol as a spellcasting focus for your paladin spells.", + "document": "srd", + "parent": "srd_paladin" + } + }, + { + "model": "api_v2.classfeature", + "pk": "peerless-skill", + "fields": { + "name": "Peerless Skill", + "desc": "Starting at 14th level, when you make an ability check, you can expend one use of Bardic Inspiration. Roll a Bardic Inspiration die and add the number rolled to your ability check. You can choose to do so after you roll the die for the ability check, but before the GM tells you whether you succeed or fail.", + "document": "srd", + "parent": "srd_college-of-lore" + } + }, + { + "model": "api_v2.classfeature", + "pk": "perfect-self", + "fields": { + "name": "Perfect Self", + "desc": "At 20th level, when you roll for initiative and have no ki points remaining, you regain 4 ki points.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "persistent-rage", + "fields": { + "name": "Persistent Rage", + "desc": "Beginning at 15th level, your rage is so fierce that it ends early only if you fall unconscious or if you choose to end it.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "potent-cantrip", + "fields": { + "name": "Potent Cantrip", + "desc": "Starting at 6th level, your damaging cantrips affect even creatures that avoid the brunt of the effect. When a creature succeeds on a saving throw against your cantrip, the creature takes half the cantrip's damage (if any) but suffers no additional effect from the cantrip.", + "document": "srd", + "parent": "srd_school-of-evocation" + } + }, + { + "model": "api_v2.classfeature", + "pk": "primal-champion", + "fields": { + "name": "Primal Champion", + "desc": "At 20th level, you embody the power of the wilds. Your Strength and Constitution scores increase by 4. Your maximum for those scores is now 24.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "primal-path", + "fields": { + "name": "Primal Path", + "desc": "At 3rd level, you choose a path that shapes the nature of your rage. Choose the Path of the Berserker or the Path of the Totem Warrior, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th, 10th, and 14th levels.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "primeval-awareness", + "fields": { + "name": "Primeval Awareness", + "desc": "Beginning at 3rd level, you can use your action and expend one ranger spell slot to focus your awareness on the region around you. For 1 minute per level of the spell slot you expend, you can sense whether the following types of creatures are present within 1 mile of you (or within up to 6 miles if you are in your favored terrain): aberrations, celestials, dragons, elementals, fey, fiends, and undead. This feature doesn't reveal the creatures' location or number.", + "document": "srd", + "parent": "srd_ranger" + } + }, + { + "model": "api_v2.classfeature", + "pk": "purity-of-body", + "fields": { + "name": "Purity of Body", + "desc": "At 10th level, your mastery of the ki flowing through you makes you immune to disease and poison.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "purity-of-spirit", + "fields": { + "name": "Purity of Spirit", + "desc": "Beginning at 15th level, you are always under the effects of a *protection from evil and good* spell.", + "document": "srd", + "parent": "srd_oath-of-devotion" + } + }, + { + "model": "api_v2.classfeature", + "pk": "quivering-palm", + "fields": { + "name": "Quivering Palm", + "desc": "At 17th level, you gain the ability to set up lethal vibrations in someone's body. When you hit a creature with an unarmed strike, you can spend 3 ki points to start these imperceptible vibrations, which last for a number of days equal to your monk level. The vibrations are harmless unless you use your action to end them. To do so, you and the target must be on the same plane of existence. When you use this action, the creature must make a Constitution saving throw. If it fails, it is reduced to 0 hit points. If it succeeds, it takes 10d10 necrotic damage.\r\n\r\nYou can have only one creature under the effect of this feature at a time. You can choose to end the vibrations harmlessly without using an action.", + "document": "srd", + "parent": "srd_way-of-the-open-hand" + } + }, + { + "model": "api_v2.classfeature", + "pk": "rage", + "fields": { + "name": "Rage", + "desc": "In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action.\r\n\r\nWhile raging, you gain the following benefits if you aren't wearing heavy armor:\r\n\r\n* You have advantage on Strength checks and Strength saving throws.\r\n* When you make a melee weapon attack using Strength, you gain a bonus to the damage roll that increases as you gain levels as a barbarian, as shown in the Rage Damage column of the Barbarian table.\r\n* You have resistance to bludgeoning, piercing, and slashing damage. \r\n\r\nIf you are able to cast spells, you can't cast them or concentrate on them while raging.\r\n\r\nYour rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action.\r\n\r\nOnce you have raged the number of times shown for your barbarian level in the Rages column of the Barbarian table, you must finish a long rest before you can rage again.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "ranger-ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_ranger" + } + }, + { + "model": "api_v2.classfeature", + "pk": "ranger-archetype", + "fields": { + "name": "Ranger Archetype", + "desc": "At 3rd level, you choose an archetype that you strive to emulate: Hunter or Beast Master, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 7th, 11th, and 15th level.", + "document": "srd", + "parent": "srd_ranger" + } + }, + { + "model": "api_v2.classfeature", + "pk": "ranger-extra-attack", + "fields": { + "name": "Extra Attack", + "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", + "document": "srd", + "parent": "srd_ranger" + } + }, + { + "model": "api_v2.classfeature", + "pk": "ranger-fighting-style", + "fields": { + "name": "Fighting Style", + "desc": "At 2nd level, you adopt a particular style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n### Archery\r\n\r\nYou gain a +2 bonus to attack rolls you make with ranged weapons.\r\n\r\n### Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n### Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n### Two-Weapon Fighting\r\n\r\nWhen you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.", + "document": "srd", + "parent": "srd_ranger" + } + }, + { + "model": "api_v2.classfeature", + "pk": "ranger-lands-stride", + "fields": { + "name": "Land's Stride", + "desc": "Starting at 8th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.\r\n\r\nIn addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the entangle spell.", + "document": "srd", + "parent": "srd_ranger" + } + }, + { + "model": "api_v2.classfeature", + "pk": "ranger-spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "By the time you reach 2nd level, you have learned to use the magical essence of nature to cast spells, much as a druid does. See chapter 10 for the general rules of spellcasting and chapter 11 for the ranger spell list.\r\n\r\n### Spell Slots\r\n\r\nThe Ranger table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell animal friendship and have a 1st-level and a 2nd-level spell slot available, you can cast animal friendship using either slot.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nYou know two 1st-level spells of your choice from the ranger spell list.\r\n\r\nThe Spells Known column of the Ranger table shows when you learn more ranger spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 5th level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the ranger spells you know and replace it with another spell from the ranger spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your ranger spells, since your magic draws on your attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a ranger spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier", + "document": "srd", + "parent": "srd_ranger" + } + }, + { + "model": "api_v2.classfeature", + "pk": "reckless-attack", + "fields": { + "name": "Reckless Attack", + "desc": "Starting at 2nd level, you can throw aside all concern for defense to attack with fierce desperation. When you make your first attack on your turn, you can decide to attack recklessly. Doing so gives you advantage on melee weapon attack rolls using Strength during this turn, but attack rolls against you have advantage until your next turn.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "relentless-rage", + "fields": { + "name": "Relentless Rage", + "desc": "Starting at 11th level, your rage can keep you fighting despite grievous wounds. If you drop to 0 hit points while you’re raging and don’t die outright, you can make a DC 10 Constitution saving throw. If you succeed, you drop to 1 hit point instead.\r\n\r\nEach time you use this feature after the first, the DC increases by 5. When you finish a short or long rest, the DC resets to 10.", + "document": "srd", + "parent": "srd_barbarian" + } + }, + { + "model": "api_v2.classfeature", + "pk": "reliable-talent", + "fields": { + "name": "Reliable Talent", + "desc": "By 11th level, you have refined your chosen skills until they approach perfection. Whenever you make an ability check that lets you add your proficiency bonus, you can treat a d20 roll of 9 or lower as a 10.", + "document": "srd", + "parent": "srd_rogue" + } + }, + { + "model": "api_v2.classfeature", + "pk": "remarkable-athlete", + "fields": { + "name": "Remarkable Athlete", + "desc": "Starting at 7th level, you can add half your proficiency bonus (round up) to any Strength, Dexterity, or Constitution check you make that doesn't already use your proficiency bonus.\r\n\r\nIn addition, when you make a running long jump, the distance you can cover increases by a number of feet equal to your Strength modifier.", + "document": "srd", + "parent": "srd_champion" + } + }, + { + "model": "api_v2.classfeature", + "pk": "retaliation", + "fields": { + "name": "Retaliation", + "desc": "Starting at 14th level, when you take damage from a creature that is within 5 feet of you, you can use your reaction to make a melee weapon attack against that creature.", + "document": "srd", + "parent": "srd_path-of-the-berserker" + } + }, + { + "model": "api_v2.classfeature", + "pk": "rogue-ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 10th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_rogue" + } + }, + { + "model": "api_v2.classfeature", + "pk": "rogue-evasion", + "fields": { + "name": "Evasion", + "desc": "Beginning at 7th level, you can nimbly dodge out of the way of certain area effects, such as a red dragon's fiery breath or an ice storm spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.", + "document": "srd", + "parent": "srd_rogue" + } + }, + { + "model": "api_v2.classfeature", + "pk": "rogue-expertise", + "fields": { + "name": "Expertise", + "desc": "At 1st level, choose two of your skill proficiencies, or one of your skill proficiencies and your proficiency with thieves' tools. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.\r\n\r\nAt 6th level, you can choose two more of your proficiencies (in skills or with thieves' tools) to gain this benefit.", + "document": "srd", + "parent": "srd_rogue" + } + }, + { + "model": "api_v2.classfeature", + "pk": "roguish-archetype", + "fields": { + "name": "Roguish Archetype", + "desc": "At 3rd level, you choose an archetype that you emulate in the exercise of your rogue abilities: Thief, Assassin, or Arcane Trickster, all detailed at the end of the class description. Your archetype choice grants you features at 3rd level and then again at 9th, 13th, and 17th level.", + "document": "srd", + "parent": "srd_rogue" + } + }, + { + "model": "api_v2.classfeature", + "pk": "sacred-oath", + "fields": { + "name": "Sacred Oath", + "desc": "When you reach 3rd level, you swear the oath that binds you as a paladin forever. Up to this time you have been in a preparatory stage, committed to the path but not yet sworn to it. Now you choose the Oath of Devotion, the Oath of the Ancients, or the Oath of Vengeance, all detailed at the end of the class description.\r\n\r\nYour choice grants you features at 3rd level and again at 7th, 15th, and 20th level. Those features include oath spells and the Channel Divinity feature.\r\n\r\n### Oath Spells\r\n\r\nEach oath has a list of associated spells. You gain access to these spells at the levels specified in the oath description. Once you gain access to an oath spell, you always have it prepared. Oath spells don't count against the number of spells you can prepare each day.\r\n\r\nIf you gain an oath spell that doesn't appear on the paladin spell list, the spell is nonetheless a paladin spell for you.\r\n\r\n### Channel Divinity\r\n\r\nYour oath allows you to channel divine energy to fuel magical effects. Each Channel Divinity option provided by your oath explains how to use it.\r\n\r\nWhen you use your Channel Divinity, you choose which option to use. You must then finish a short or long rest to use your Channel Divinity again.\r\n\r\nSome Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your paladin spell save DC.", + "document": "srd", + "parent": "srd_paladin" + } + }, + { + "model": "api_v2.classfeature", + "pk": "sculpt-spells", + "fields": { + "name": "Sculpt Spells", + "desc": "Beginning at 2nd level, you can create pockets of relative safety within the effects of your evocation spells. When you cast an evocation spell that affects other creatures that you can see, you can choose a number of them equal to 1 + the spell's level. The chosen creatures automatically succeed on their saving throws against the spell, and they take no damage if they would normally take half damage on a successful save.", + "document": "srd", + "parent": "srd_school-of-evocation" + } + }, + { + "model": "api_v2.classfeature", + "pk": "second-story-work", + "fields": { + "name": "Second-Story Work", + "desc": "When you choose this archetype at 3rd level, you gain the ability to climb faster than normal; climbing no longer costs you extra movement.\r\n\r\nIn addition, when you make a running jump, the distance you cover increases by a number of feet equal to your Dexterity modifier.", + "document": "srd", + "parent": "srd_thief" + } + }, + { + "model": "api_v2.classfeature", + "pk": "second-wind", + "fields": { + "name": "Second Wind", + "desc": "You have a limited well of stamina that you can draw on to protect yourself from harm. On your turn, you can use a bonus action to regain hit points equal to 1d10 + your fighter level. Once you use this feature, you must finish a short or long rest before you can use it again.", + "document": "srd", + "parent": "srd_fighter" + } + }, + { + "model": "api_v2.classfeature", + "pk": "signature-spells", + "fields": { + "name": "Signature Spells", + "desc": "When you reach 20th level, you gain mastery over two powerful spells and can cast them with little effort. Choose two 3rd-level wizard spells in your spellbook as your signature spells. You always have these spells prepared, they don't count against the number of spells you have prepared, and you can cast each of them once at 3rd level without expending a spell slot. When you do so, you can't do so again until you finish a short or long rest.\r\n\r\nIf you want to cast either spell at a higher level, you must expend a spell slot as normal.", + "document": "srd", + "parent": "srd_wizard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "slippery-mind", + "fields": { + "name": "Slippery Mind", + "desc": "By 15th level, you have acquired greater mental strength. You gain proficiency in Wisdom saving throws.", + "document": "srd", + "parent": "srd_rogue" + } + }, + { + "model": "api_v2.classfeature", + "pk": "slow-fall", + "fields": { + "name": "Slow Fall", + "desc": "Beginning at 4th level, you can use your reaction when you fall to reduce any falling damage you take by an amount equal to five times your monk level.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "sneak-attack", + "fields": { + "name": "Sneak Attack", + "desc": "Beginning at 1st level, you know how to strike subtly and exploit a foe's distraction. Once per turn, you can deal an extra 1d6 damage to one creature you hit with an attack if you have advantage on the attack roll. The attack must use a finesse or a ranged weapon.\r\n\r\nYou don't need advantage on the attack roll if another enemy of the target is within 5 feet of it, that enemy isn't incapacitated, and you don't have disadvantage on the attack roll.\r\n\r\nThe amount of the extra damage increases as you gain levels in this class, as shown in the Sneak Attack column of the Rogue table.", + "document": "srd", + "parent": "srd_rogue" + } + }, + { + "model": "api_v2.classfeature", + "pk": "song-of-rest", + "fields": { + "name": "Song of Rest", + "desc": "Beginning at 2nd level, you can use soothing music or oration to help revitalize your wounded allies during a short rest. If you or any friendly creatures who can hear your performance regain hit points at the end of the short rest by spending one or more Hit Dice, each of those creatures regains an extra 1d6 hit points.\r\n\r\nThe extra hit points increase when you reach certain levels in this class: to 1d8 at 9th level, to 1d10 at 13th level, and to 1d12 at 17th level.", + "document": "srd", + "parent": "srd_bard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "sorceror-ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_sorcerer" + } + }, + { + "model": "api_v2.classfeature", + "pk": "sorceror-spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your spells.\r\n\r\n### Cantrips\r\n\r\nAt 1st level, you know four cantrips of your choice from the sorcerer spell list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.\r\n\r\n### Spell Slots\r\n\r\nThe Sorcerer table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these sorcerer spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell burning hands and have a 1st-level and a 2nd-level spell slot available, you can cast burning hands using either slot.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nYou know two 1st-level spells of your choice from the sorcerer spell list.\r\n\r\nThe Spells Known column of the Sorcerer table shows when you learn more sorcerer spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the sorcerer spells you know and replace it with another spell from the sorcerer spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your sorcerer spells, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC = 8** + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\nSpellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your sorcerer spells.", + "document": "srd", + "parent": "srd_sorcerer" + } + }, + { + "model": "api_v2.classfeature", + "pk": "sorcerous-origin", + "fields": { + "name": "Sorcerous Origin", + "desc": "Choose a sorcerous origin, which describes the source of your innate magical power: Draconic Bloodline or Wild Magic, both detailed at the end of the class description.\r\n\r\nYour choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.", + "document": "srd", + "parent": "srd_sorcerer" + } + }, + { + "model": "api_v2.classfeature", + "pk": "sorcerous-restoration", + "fields": { + "name": "Sorcerous Restoration", + "desc": "At 20th level, you regain 4 expended sorcery points whenever you finish a short rest.", + "document": "srd", + "parent": "srd_sorcerer" + } + }, + { + "model": "api_v2.classfeature", + "pk": "spell-mastery", + "fields": { + "name": "Spell Mastery", + "desc": "At 18th level, you have achieved such mastery over certain spells that you can cast them at will. Choose a 1st-level wizard spell and a 2nd-level wizard spell that are in your spellbook. You can cast those spells at their lowest level without expending a spell slot when you have them prepared. If you want to cast either spell at a higher level, you must expend a spell slot as normal.\r\n\r\nBy spending 8 hours in study, you can exchange one or both of the spells you chose for different spells of the same levels.", + "document": "srd", + "parent": "srd_wizard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "stillness-of-mind", + "fields": { + "name": "Stillness of Mind", + "desc": "Starting at 7th level, you can use your action to end one effect on yourself that is causing you to be charmed or frightened.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "stunning-strike", + "fields": { + "name": "Stunning Strike", + "desc": "Starting at 5th level, you can interfere with the flow of ki in an opponent's body. When you hit another creature with a melee weapon attack, you can spend 1 ki point to attempt a stunning strike. The target must succeed on a Constitution saving throw or be stunned until the end of your next turn.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "superior-critical", + "fields": { + "name": "Superior Critical", + "desc": "Starting at 15th level, your weapon attacks score a critical hit on a roll of 18-20.", + "document": "srd", + "parent": "srd_champion" + } + }, + { + "model": "api_v2.classfeature", + "pk": "superior-hunters-defense", + "fields": { + "name": "Superior Hunter's Defense", + "desc": "At 15th level, you gain one of the following features of your choice.\r\n\r\n***Evasion.*** When you are subjected to an effect, such as a red dragon's fiery breath or a lightning bolt spell, that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.\r\n\r\n***Stand Against the Tide.*** When a hostile creature misses you with a melee attack, you can use your reaction to force that creature to repeat the same attack against another creature (other than itself) of your choice.\r\n\r\n***Uncanny Dodge.*** When an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.", + "document": "srd", + "parent": "srd_hunter" + } + }, + { + "model": "api_v2.classfeature", + "pk": "superior-inspiration", + "fields": { + "name": "Superior Inspiration", + "desc": "At 20th level, when you roll initiative and have no uses of Bardic Inspiration left, you regain one use.", + "document": "srd", + "parent": "srd_bard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "supreme-healing", + "fields": { + "name": "Supreme Healing", + "desc": "Starting at 17th level, when you would normally roll one or more dice to restore hit points with a spell, you instead use the highest number possible for each die. For example, instead of restoring 2d6 hit points to a creature, you restore 12.", + "document": "srd", + "parent": "srd_life-domain" + } + }, + { + "model": "api_v2.classfeature", + "pk": "supreme-sneak", + "fields": { + "name": "Supreme Sneak", + "desc": "Starting at 9th level, you have advantage on a Dexterity (Stealth) check if you move no more than half your speed on the same turn.", + "document": "srd", + "parent": "srd_thief" + } + }, + { + "model": "api_v2.classfeature", + "pk": "survivor", + "fields": { + "name": "Survivor", + "desc": "At 18th level, you attain the pinnacle of resilience in battle. At the start of each of your turns, you regain hit points equal to 5 + your Constitution modifier if you have no more than half of your hit points left. You don't gain this benefit if you have 0 hit points.", + "document": "srd", + "parent": "srd_champion" + } + }, + { + "model": "api_v2.classfeature", + "pk": "tenets-of-devotion", + "fields": { + "name": "Tenets of Devotion", + "desc": "Though the exact words and strictures of the Oath of Devotion vary, paladins of this oath share these tenets.\r\n\r\n*Honesty.* Don't lie or cheat. Let your word be your promise.\r\n\r\n*Courage.* Never fear to act, though caution is wise.\r\n\r\n*Compassion.* Aid others, protect the weak, and punish those who threaten them. Show mercy to your foes, but temper it with wisdom.\r\n\r\n*Honor.* Treat others with fairness, and let your honorable deeds be an example to them. Do as much good as possible while causing the least amount of harm.\r\n\r\n*Duty.* Be responsible for your actions and their consequences, protect those entrusted to your care, and obey those who have just authority over you.", + "document": "srd", + "parent": "srd_oath-of-devotion" + } + }, + { + "model": "api_v2.classfeature", + "pk": "thiefs-reflexes", + "fields": { + "name": "Thief's Reflexes", + "desc": "When you reach 17th level, you have become adept at laying ambushes and quickly escaping danger. You can take two turns during the first round of any combat. You take your first turn at your normal initiative and your second turn at your initiative minus 10. You can't use this feature when you are surprised.", + "document": "srd", + "parent": "srd_thief" + } + }, + { + "model": "api_v2.classfeature", + "pk": "thieves-cant", + "fields": { + "name": "Thieves' Cant", + "desc": "During your rogue training you learned thieves' cant, a secret mix of dialect, jargon, and code that allows you to hide messages in seemingly normal conversation. Only another creature that knows thieves' cant understands such messages. It takes four times longer to convey such a message than it does to speak the same idea plainly.\r\n\r\nIn addition, you understand a set of secret signs and symbols used to convey short, simple messages, such as whether an area is dangerous or the territory of a thieves' guild, whether loot is nearby, or whether the people in an area are easy marks or will provide a safe house for thieves on the run.", + "document": "srd", + "parent": "srd_rogue" + } + }, + { + "model": "api_v2.classfeature", + "pk": "tongue-of-the-sun-and-moon", + "fields": { + "name": "Tongue of the Sun and Moon", + "desc": "Starting at 13th level, you learn to touch the ki of other minds so that you understand all spoken languages. Moreover, any creature that can understand a language can understand what you say.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "tranquility", + "fields": { + "name": "Tranquility", + "desc": "Beginning at 11th level, you can enter a special meditation that surrounds you with an aura of peace. At the end of a long rest, you gain the effect of a sanctuary spell that lasts until the start of your next long rest (the spell can end early as normal). The saving throw DC for the spell equals 8 + your Wisdom modifier + your proficiency bonus.", + "document": "srd", + "parent": "srd_way-of-the-open-hand" + } + }, + { + "model": "api_v2.classfeature", + "pk": "unarmored-movement", + "fields": { + "name": "Unarmored Movement", + "desc": "Starting at 2nd level, your speed increases by 10 feet while you are not wearing armor or wielding a shield. This bonus increases when you reach certain monk levels, as shown in the Monk table.\r\n\r\nAt 9th level, you gain the ability to move along vertical surfaces and across liquids on your turn without falling during the move.", + "document": "srd", + "parent": "srd_monk" + } + }, + { + "model": "api_v2.classfeature", + "pk": "uncanny-dodge", + "fields": { + "name": "Uncanny Dodge", + "desc": "Starting at 5th level, when an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.", + "document": "srd", + "parent": "srd_rogue" + } + }, + { + "model": "api_v2.classfeature", + "pk": "use-magic-device", + "fields": { + "name": "Use Magic Device", + "desc": "By 13th level, you have learned enough about the workings of magic that you can improvise the use of items even when they are not intended for you. You ignore all class, race, and level requirements on the use of magic items.", + "document": "srd", + "parent": "srd_thief" + } + }, + { + "model": "api_v2.classfeature", + "pk": "vanish", + "fields": { + "name": "Vanish", + "desc": "Starting at 14th level, you can use the Hide action as a bonus action on your turn. Also, you can't be tracked by nonmagical means, unless you choose to leave a trail.", + "document": "srd", + "parent": "srd_ranger" + } + }, + { + "model": "api_v2.classfeature", + "pk": "warlock-ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_warlock" + } + }, + { + "model": "api_v2.classfeature", + "pk": "wholeness-of-body", + "fields": { + "name": "Wholeness of Body", + "desc": "At 6th level, you gain the ability to heal yourself. As an action, you can regain hit points equal to three times your monk level. You must finish a long rest before you can use this feature again.", + "document": "srd", + "parent": "srd_way-of-the-open-hand" + } + }, + { + "model": "api_v2.classfeature", + "pk": "wild-shape", + "fields": { + "name": "Wild Shape", + "desc": "Starting at 2nd level, you can use your action to magically assume the shape of a beast that you have seen before. You can use this feature twice. You regain expended uses when you finish a short or long rest.\r\n\r\nYour druid level determines the beasts you can transform into, as shown in the Beast Shapes table. At 2nd level, for example, you can transform into any beast that has a challenge rating of 1/4 or lower that doesn't have a flying or swimming speed.\r\n\r\n| Level | Max. CR | Limitations | Example |\r\n| --- | --- | --- | --- |\r\n| 2nd | 1/4 | No flying or swimming speed | Wolf |\r\n| 4th | 1/2 | No flying speed | Crocodile |\r\n| 8th | 1 | - | Giant Eagle |\r\n\r\nYou can stay in a beast shape for a number of hours equal to half your druid level (rounded down). You then revert to your normal form unless you expend another use of this feature. You can revert to your normal form earlier by using a bonus action on your turn. You automatically revert if you fall unconscious, drop to 0 hit points, or die.\r\n\r\nWhile you are transformed, the following rules apply:\r\nYour game statistics are replaced by the statistics of the beast, but you retain your alignment, personality, and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus in its stat block is higher than yours, use the creature's bonus instead of yours. If the creature has any legendary or lair actions, you can't use them.\r\n\r\nWhen you transform, you assume the beast's hit points and Hit Dice. When you revert to your normal form, you return to the number of hit points you had before you transformed. However, if you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. For example, if you take 10 damage in animal form and have only 1 hit point left, you revert and take 9 damage. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious.\r\n\r\nYou can't cast spells, and your ability to speak or take any action that requires hands is limited to the capabilities of your beast form. Transforming doesn't break your concentration on a spell you've already cast, however, or prevent you from taking actions that are part of a spell, such as call lightning, that you've already cast.\r\n\r\nYou retain the benefit of any features from your class, race, or other source and can use them if the new form is physically capable of doing so. However, you can't use any of your special senses, such as darkvision, unless your new form also has that sense.\r\n\r\nYou choose whether your equipment falls to the ground in your space, merges into your new form, or is worn by it. Worn equipment functions as normal, but the GM decides whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change size or shape to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge with it. Equipment that merges with the form has no effect until you leave the form.", + "document": "srd", + "parent": "srd_druid" + } + }, + { + "model": "api_v2.classfeature", + "pk": "wizard-ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_wizard" + } + }, + { + "model": "api_v2.classfeature", + "pk": "wizard-spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "As a student of arcane magic, you have a spellbook containing spells that show the first glimmerings of your true power.\r\n\r\n### Cantrips\r\n\r\nAt 1st level, you know three cantrips of your choice from the wizard spell list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.\r\n\r\n### Spellbook\r\n\r\nAt 1st level, you have a spellbook containing six 1st- level wizard spells of your choice. Your spellbook is the repository of the wizard spells you know, except your cantrips, which are fixed in your mind.\r\n\r\n### Preparing and Casting Spells\r\n\r\nThe Wizard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of wizard spells that are available for you to cast. To do so, choose a number of wizard spells from your spellbook equal to your Intelligence modifier + your wizard level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you're a 3rd-level wizard, you have four 1st-level and two 2nd-level spell slots. With an Intelligence of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination, chosen from your spellbook. If you prepare the 1st-level spell magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of wizard spells requires time spent studying your spellbook and memorizing the incantations and gestures you must make to cast the spell: at least 1 minute per spell level for each spell on your list.\r\n\r\n### Spellcasting Ability\r\n\r\nIntelligence is your spellcasting ability for your wizard spells, since you learn your spells through dedicated study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Intelligence modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Intelligence modifier\r\n\r\n### Ritual Casting\r\n\r\nYou can cast a wizard spell as a ritual if that spell has the ritual tag and you have the spell in your spellbook. You don't need to have the spell prepared.\r\n\r\n### Spellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your wizard spells.\r\n\r\n### Learning Spells of 1st Level and Higher\r\n\r\nEach time you gain a wizard level, you can add two wizard spells of your choice to your spellbook for free. Each of these spells must be of a level for which you have spell slots, as shown on the Wizard table. On your adventures, you might find other spells that you can add to your spellbook (see the “Your Spellbook” sidebar).", + "document": "srd", + "parent": "srd_wizard" + } + } +] \ No newline at end of file diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index f599e214..68d0d0f9 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -76,7 +76,7 @@ def main(): check_keys_are_slugified(objs, f_obj) # CHECK THAT KEYS MATCH THE FORMAT DOC_NAME, SLUGIFIED_NAME - known_keys_doc_name_exceptions = ['CastingOption.json','Capability.json','BackgroundBenefit.json','Trait.json','FeatureItem.json', 'Size.json','CreatureAttack.json'] + known_keys_doc_name_exceptions = ['CastingOption.json','Capability.json','BackgroundBenefit.json','Trait.json','ClassFeatureItem.json', 'Size.json','CreatureAttack.json'] if f_obj['filename'] in known_keys_doc_name_exceptions: logger.debug("Skipping {}: file is known to have non-slugified keys.".format(f_obj['filename'])) else: @@ -122,7 +122,7 @@ def fix_keys_to_doc_name(objs,f): for obj in objs: if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): - if f['filename']=='FeatureItem.json': + if f['filename']=='CharacterClass.json': logger.warning("{} changing to doc_name format".format(f['path'])) pk_value = "{}_{}".format(obj['fields']['document'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) @@ -132,17 +132,18 @@ def fix_keys_to_doc_name(objs,f): objs_fixed.append(obj) - # related_path = "{}/{}/{}/{}/{}/".format(f['root'],f['dir'],f['schema'],f['publisher'],f['doc']) - # related_filenames = ['BackgroundBenefit.json'] + related_path = "{}/{}/{}/{}/{}/".format(f['root'],f['dir'],f['schema'],f['publisher'],f['doc']) + related_filenames = ['ClassFeature.json'] for obj in objs_fixed: for related_file in related_filenames: + logger.warning("CHANGING RELATED PK IN {} TO {}".format(related_file,pk_value)) refactor_relations(related_path+related_file,"parent",obj['former_pk'], obj['pk']) obj.pop('former_pk') - #if f['filename']=='CharacterClass.json': - # with open(f['path'],'w',encoding='utf-8') as wf: - # json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) + if f['filename']=='CharacterClass.json': + with open(f['path'],'w',encoding='utf-8') as wf: + json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) From 1142ae109ddec5123d651f2f4c4e5c8b6169c3db Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 25 May 2024 07:18:14 -0500 Subject: [PATCH 28/84] Refactored to a key. --- api_v2/models/characterclass.py | 4 +- .../srd/ClassFeatureItem.json | 4434 ++++++++--------- .../data_manipulation/data_v2_format_check.py | 42 +- 3 files changed, 2253 insertions(+), 2227 deletions(-) diff --git a/api_v2/models/characterclass.py b/api_v2/models/characterclass.py index 1ef61af6..1d9cfe07 100644 --- a/api_v2/models/characterclass.py +++ b/api_v2/models/characterclass.py @@ -11,12 +11,11 @@ class ClassFeatureItem(models.Model): """This is the class for an individual class feature item, a subset of a class feature. The name field is unused.""" - #key = key_field() + key = key_field() # Somewhere in here is where you'd define a field that would eventually display as "Rage Damage +2" # Also spell slots...? - #TODO refactor to parent parent = models.ForeignKey('ClassFeature', on_delete=models.CASCADE) level = models.IntegerField(validators=[MinValueValidator(0),MaxValueValidator(20)]) @@ -31,7 +30,6 @@ class ClassFeature(HasName, HasDescription, FromDocument): """This class represents an individual class feature, such as Rage, or Extra Attack.""" - #TODO refactor to parent parent = models.ForeignKey('CharacterClass', on_delete=models.CASCADE) diff --git a/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json b/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json index f06c082e..385becdc 100644 --- a/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json +++ b/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json @@ -1,2218 +1,2218 @@ [ -{ - "model": "api_v2.classfeatureitem", - "pk": 1, - "fields": { - "parent": "rage", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 2, - "fields": { - "parent": "barbarian-unarmored-defense", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 3, - "fields": { - "parent": "reckless-attack", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 4, - "fields": { - "parent": "danger-sense", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 5, - "fields": { - "parent": "primal-path", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 6, - "fields": { - "parent": "barbarian-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 7, - "fields": { - "parent": "barbarian-extra-attack", - "level": 5 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 8, - "fields": { - "parent": "fast-movement", - "level": 5 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 9, - "fields": { - "parent": "feral-instinct", - "level": 7 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 10, - "fields": { - "parent": "barbarian-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 11, - "fields": { - "parent": "brutal-critical", - "level": 9 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 12, - "fields": { - "parent": "relentless-rage", - "level": 11 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 13, - "fields": { - "parent": "barbarian-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 14, - "fields": { - "parent": "brutal-critical", - "level": 13 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 15, - "fields": { - "parent": "persistent-rage", - "level": 15 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 16, - "fields": { - "parent": "barbarian-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 17, - "fields": { - "parent": "brutal-critical", - "level": 17 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 18, - "fields": { - "parent": "indomitable-might", - "level": 18 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 19, - "fields": { - "parent": "barbarian-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 20, - "fields": { - "parent": "primal-champion", - "level": 20 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 21, - "fields": { - "parent": "frenzy", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 22, - "fields": { - "parent": "mindless-rage", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 23, - "fields": { - "parent": "intimidating-presence", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 24, - "fields": { - "parent": "retaliation", - "level": 14 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 25, - "fields": { - "parent": "bard-spellcasting", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 26, - "fields": { - "parent": "bardic-inspiration", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 27, - "fields": { - "parent": "jack-of-all-trades", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 28, - "fields": { - "parent": "song-of-rest", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 29, - "fields": { - "parent": "bard-college", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 30, - "fields": { - "parent": "bard-expertise", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 31, - "fields": { - "parent": "bard-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 32, - "fields": { - "parent": "bardic-inspiration", - "level": 5 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 33, - "fields": { - "parent": "font-of-inspiration", - "level": 5 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 34, - "fields": { - "parent": "countercharm", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 35, - "fields": { - "parent": "bard-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 36, - "fields": { - "parent": "song-of-rest", - "level": 9 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 37, - "fields": { - "parent": "bardic-inspiration", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 38, - "fields": { - "parent": "bard-expertise", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 39, - "fields": { - "parent": "magical-secrets", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 40, - "fields": { - "parent": "bard-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 41, - "fields": { - "parent": "song-of-rest", - "level": 13 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 42, - "fields": { - "parent": "magical-secrets", - "level": 14 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 43, - "fields": { - "parent": "bardic-inspiration", - "level": 15 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 44, - "fields": { - "parent": "bard-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 45, - "fields": { - "parent": "song-of-rest", - "level": 17 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 46, - "fields": { - "parent": "magical-secrets", - "level": 18 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 47, - "fields": { - "parent": "bard-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 48, - "fields": { - "parent": "superior-inspiration", - "level": 20 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 49, - "fields": { - "parent": "bonus-proficiencies", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 50, - "fields": { - "parent": "cutting-words", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 51, - "fields": { - "parent": "additional-magical-secrets", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 52, - "fields": { - "parent": "peerless-skill", - "level": 14 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 53, - "fields": { - "parent": "cleric-spellcasting", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 54, - "fields": { - "parent": "divine-domain", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 55, - "fields": { - "parent": "cleric-channel-divinity", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 56, - "fields": { - "parent": "life-bonus-proficiency", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 57, - "fields": { - "parent": "life-domain-spells", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 58, - "fields": { - "parent": "disciple-of-life", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 59, - "fields": { - "parent": "channel-divinity-preserve-life", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 60, - "fields": { - "parent": "cleric-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 61, - "fields": { - "parent": "destroy-undead", - "level": 5 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 62, - "fields": { - "parent": "cleric-channel-divinity", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 63, - "fields": { - "parent": "blessed-healer", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 64, - "fields": { - "parent": "cleric-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 65, - "fields": { - "parent": "destroy-undead", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 66, - "fields": { - "parent": "divine-strike", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 67, - "fields": { - "parent": "divine-intervention", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 68, - "fields": { - "parent": "destroy-undead", - "level": 14 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 69, - "fields": { - "parent": "cleric-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 70, - "fields": { - "parent": "destroy-undead", - "level": 17 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 71, - "fields": { - "parent": "supreme-healing", - "level": 17 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 72, - "fields": { - "parent": "cleric-channel-divinity", - "level": 18 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 73, - "fields": { - "parent": "cleric-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 74, - "fields": { - "parent": "divine-intervention", - "level": 20 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 75, - "fields": { - "parent": "druidic", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 76, - "fields": { - "parent": "druid-spellcasting", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 77, - "fields": { - "parent": "wild-shape", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 78, - "fields": { - "parent": "druid-circle", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 79, - "fields": { - "parent": "wild-shape", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 80, - "fields": { - "parent": "druid-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 81, - "fields": { - "parent": "wild-shape", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 82, - "fields": { - "parent": "druid-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 83, - "fields": { - "parent": "druid-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 84, - "fields": { - "parent": "druid-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 86, - "fields": { - "parent": "beast-spells", - "level": 18 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 87, - "fields": { - "parent": "druid-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 88, - "fields": { - "parent": "archdruid", - "level": 20 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 89, - "fields": { - "parent": "bonus-cantrip", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 90, - "fields": { - "parent": "natural-recovery", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 91, - "fields": { - "parent": "land-circle-spells", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 92, - "fields": { - "parent": "land-circle-spells", - "level": 5 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 93, - "fields": { - "parent": "land-circle-spells", - "level": 7 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 94, - "fields": { - "parent": "land-circle-spells", - "level": 9 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 95, - "fields": { - "parent": "lands-stride", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 96, - "fields": { - "parent": "natures-ward", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 97, - "fields": { - "parent": "natures-sanctuary", - "level": 14 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 98, - "fields": { - "parent": "fighting-style", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 99, - "fields": { - "parent": "second-wind", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 100, - "fields": { - "parent": "action-surge", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 101, - "fields": { - "parent": "martial-archetype", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 102, - "fields": { - "parent": "fighter-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 103, - "fields": { - "parent": "fighter-extra-attack", - "level": 5 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 104, - "fields": { - "parent": "fighter-ability-score-improvement", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 105, - "fields": { - "parent": "fighter-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 106, - "fields": { - "parent": "indomitable", - "level": 9 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 107, - "fields": { - "parent": "fighter-extra-attack", - "level": 11 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 108, - "fields": { - "parent": "fighter-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 109, - "fields": { - "parent": "indomitable", - "level": 13 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 110, - "fields": { - "parent": "fighter-ability-score-improvement", - "level": 14 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 111, - "fields": { - "parent": "fighter-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 112, - "fields": { - "parent": "action-surge", - "level": 17 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 113, - "fields": { - "parent": "indomitable", - "level": 17 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 114, - "fields": { - "parent": "fighter-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 115, - "fields": { - "parent": "fighter-extra-attack", - "level": 20 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 116, - "fields": { - "parent": "improved-critical", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 117, - "fields": { - "parent": "remarkable-athlete", - "level": 7 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 118, - "fields": { - "parent": "additional-fighting-style", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 119, - "fields": { - "parent": "superior-critical", - "level": 15 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 120, - "fields": { - "parent": "survivor", - "level": 18 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 121, - "fields": { - "parent": "monk-unarmored-defense", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 122, - "fields": { - "parent": "martial-arts", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 123, - "fields": { - "parent": "ki", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 124, - "fields": { - "parent": "unarmored-movement", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 125, - "fields": { - "parent": "monastic-tradition", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 126, - "fields": { - "parent": "deflect-missiles", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 127, - "fields": { - "parent": "monk-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 128, - "fields": { - "parent": "slow-fall", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 129, - "fields": { - "parent": "monk-extra-attack", - "level": 5 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 130, - "fields": { - "parent": "stunning-strike", - "level": 5 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 131, - "fields": { - "parent": "ki-empowered-strikes", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 132, - "fields": { - "parent": "monk-evasion", - "level": 7 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 133, - "fields": { - "parent": "stillness-of-mind", - "level": 7 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 134, - "fields": { - "parent": "monk-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 135, - "fields": { - "parent": "unarmored-movement", - "level": 9 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 136, - "fields": { - "parent": "purity-of-body", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 137, - "fields": { - "parent": "monk-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 138, - "fields": { - "parent": "tongue-of-the-sun-and-moon", - "level": 13 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 139, - "fields": { - "parent": "diamond-soul", - "level": 14 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 140, - "fields": { - "parent": "monk-timeless-body", - "level": 15 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 141, - "fields": { - "parent": "monk-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 142, - "fields": { - "parent": "empty-body", - "level": 18 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 143, - "fields": { - "parent": "monk-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 144, - "fields": { - "parent": "perfect-self", - "level": 20 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 145, - "fields": { - "parent": "open-hand-technique", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 146, - "fields": { - "parent": "wholeness-of-body", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 147, - "fields": { - "parent": "tranquility", - "level": 11 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 148, - "fields": { - "parent": "quivering-palm", - "level": 17 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 149, - "fields": { - "parent": "divine-sense", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 150, - "fields": { - "parent": "lay-on-hands", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 151, - "fields": { - "parent": "paladin-fighting-style", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 152, - "fields": { - "parent": "paladin-spellcasting", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 153, - "fields": { - "parent": "divine-smite", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 154, - "fields": { - "parent": "divine-health", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 155, - "fields": { - "parent": "sacred-oath", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 156, - "fields": { - "parent": "paladin-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 157, - "fields": { - "parent": "paladin-extra-attack", - "level": 5 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 158, - "fields": { - "parent": "Aura of Protection", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 159, - "fields": { - "parent": "paladin-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 160, - "fields": { - "parent": "aura-of-courage", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 161, - "fields": { - "parent": "improved-divine-smite", - "level": 11 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 162, - "fields": { - "parent": "paladin-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 163, - "fields": { - "parent": "cleansing-touch", - "level": 14 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 164, - "fields": { - "parent": "paladin-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 165, - "fields": { - "parent": "Aura of Protection", - "level": 18 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 166, - "fields": { - "parent": "aura-of-courage", - "level": 18 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 167, - "fields": { - "parent": "paladin-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 168, - "fields": { - "parent": "tenets-of-devotion", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 169, - "fields": { - "parent": "devotion-oath-spells", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 170, - "fields": { - "parent": "devotion-oath-spells", - "level": 5 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 171, - "fields": { - "parent": "devotion-oath-spells", - "level": 9 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 172, - "fields": { - "parent": "devotion-oath-spells", - "level": 13 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 173, - "fields": { - "parent": "devotion-oath-spells", - "level": 17 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 174, - "fields": { - "parent": "devotion-channel-divinity", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 175, - "fields": { - "parent": "aura-of-devotion", - "level": 7 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 176, - "fields": { - "parent": "aura-of-devotion", - "level": 18 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 177, - "fields": { - "parent": "purity-of-spirit", - "level": 15 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 178, - "fields": { - "parent": "holy-nimbus", - "level": 20 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 179, - "fields": { - "parent": "favored-enemy", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 180, - "fields": { - "parent": "natural-explorer", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 181, - "fields": { - "parent": "ranger-fighting-style", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 182, - "fields": { - "parent": "ranger-spellcasting", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 183, - "fields": { - "parent": "ranger-archetype", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 184, - "fields": { - "parent": "primeval-awareness", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 185, - "fields": { - "parent": "ranger-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 186, - "fields": { - "parent": "ranger-extra-attack", - "level": 5 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 187, - "fields": { - "parent": "favored-enemy", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 188, - "fields": { - "parent": "natural-explorer", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 189, - "fields": { - "parent": "ranger-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 190, - "fields": { - "parent": "ranger-lands-stride", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 191, - "fields": { - "parent": "natural-explorer", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 192, - "fields": { - "parent": "hide-in-plain-sight", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 193, - "fields": { - "parent": "ranger-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 194, - "fields": { - "parent": "favored-enemy", - "level": 14 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 195, - "fields": { - "parent": "vanish", - "level": 14 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 196, - "fields": { - "parent": "ranger-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 197, - "fields": { - "parent": "feral-senses", - "level": 18 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 198, - "fields": { - "parent": "ranger-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 199, - "fields": { - "parent": "foe-slayer", - "level": 20 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 200, - "fields": { - "parent": "hunters-prey", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 201, - "fields": { - "parent": "defensive-tactics", - "level": 7 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 202, - "fields": { - "parent": "multiattack", - "level": 11 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 203, - "fields": { - "parent": "superior-hunters-defense", - "level": 15 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 204, - "fields": { - "parent": "rogue-expertise", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 205, - "fields": { - "parent": "sneak-attack", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 206, - "fields": { - "parent": "thieves-cant", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 207, - "fields": { - "parent": "cunning-action", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 208, - "fields": { - "parent": "roguish-archetype", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 209, - "fields": { - "parent": "rogue-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 210, - "fields": { - "parent": "uncanny-dodge", - "level": 5 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 211, - "fields": { - "parent": "rogue-expertise", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 212, - "fields": { - "parent": "rogue-evasion", - "level": 7 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 213, - "fields": { - "parent": "rogue-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 214, - "fields": { - "parent": "rogue-ability-score-improvement", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 215, - "fields": { - "parent": "reliable-talent", - "level": 11 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 216, - "fields": { - "parent": "rogue-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 217, - "fields": { - "parent": "blindsense", - "level": 14 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 218, - "fields": { - "parent": "slippery-mind", - "level": 15 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 219, - "fields": { - "parent": "rogue-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 220, - "fields": { - "parent": "elusive", - "level": 18 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 221, - "fields": { - "parent": "rogue-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 222, - "fields": { - "parent": "Stroke of Luck", - "level": 20 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 223, - "fields": { - "parent": "fast-hands", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 224, - "fields": { - "parent": "second-story-work", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 225, - "fields": { - "parent": "supreme-sneak", - "level": 9 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 226, - "fields": { - "parent": "use-magic-device", - "level": 13 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 227, - "fields": { - "parent": "thiefs-reflexes", - "level": 17 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 228, - "fields": { - "parent": "sorceror-spellcasting", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 229, - "fields": { - "parent": "sorcerous-origin", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 230, - "fields": { - "parent": "font-of-magic", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 231, - "fields": { - "parent": "metamagic", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 232, - "fields": { - "parent": "sorceror-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 233, - "fields": { - "parent": "sorceror-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 234, - "fields": { - "parent": "metamagic", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 235, - "fields": { - "parent": "sorceror-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 236, - "fields": { - "parent": "sorceror-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 237, - "fields": { - "parent": "metamagic", - "level": 17 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 238, - "fields": { - "parent": "sorceror-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 239, - "fields": { - "parent": "sorcerous-restoration", - "level": 20 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 240, - "fields": { - "parent": "dragon-ancestor", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 241, - "fields": { - "parent": "draconic-resilience", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 242, - "fields": { - "parent": "elemental-affinity", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 243, - "fields": { - "parent": "dragon-wings", - "level": 14 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 244, - "fields": { - "parent": "draconic-presence", - "level": 18 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 245, - "fields": { - "parent": "otherworldly-patron", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 246, - "fields": { - "parent": "pact-magic", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 247, - "fields": { - "parent": "eldritch-invocations", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 248, - "fields": { - "parent": "pact-boon", - "level": 3 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 249, - "fields": { - "parent": "warlock-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 250, - "fields": { - "parent": "warlock-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 251, - "fields": { - "parent": "mystic-arcanum", - "level": 11 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 252, - "fields": { - "parent": "warlock-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 253, - "fields": { - "parent": "mystic-arcanum", - "level": 13 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 254, - "fields": { - "parent": "mystic-arcanum", - "level": 15 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 255, - "fields": { - "parent": "mystic-arcanum", - "level": 17 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 256, - "fields": { - "parent": "warlock-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 257, - "fields": { - "parent": "eldritch-master", - "level": 20 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 258, - "fields": { - "parent": "eldritch-invocation-list", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 259, - "fields": { - "parent": "expanded-spell-list", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 260, - "fields": { - "parent": "dark-ones-blessing", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 261, - "fields": { - "parent": "dark-ones-own-luck", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 262, - "fields": { - "parent": "fiendish-resilience", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 263, - "fields": { - "parent": "hurl-through-hell", - "level": 14 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 264, - "fields": { - "parent": "wizard-spellcasting", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 265, - "fields": { - "parent": "arcane-recovery", - "level": 1 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 266, - "fields": { - "parent": "arcane-tradition", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 267, - "fields": { - "parent": "wizard-ability-score-improvement", - "level": 4 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 268, - "fields": { - "parent": "wizard-ability-score-improvement", - "level": 8 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 269, - "fields": { - "parent": "wizard-ability-score-improvement", - "level": 12 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 270, - "fields": { - "parent": "wizard-ability-score-improvement", - "level": 16 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 271, - "fields": { - "parent": "spell-mastery", - "level": 18 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 272, - "fields": { - "parent": "wizard-ability-score-improvement", - "level": 19 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 273, - "fields": { - "parent": "signature-spells", - "level": 20 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 274, - "fields": { - "parent": "evocation-savant", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 275, - "fields": { - "parent": "sculpt-spells", - "level": 2 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 276, - "fields": { - "parent": "potent-cantrip", - "level": 6 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 277, - "fields": { - "parent": "empowered-evocation", - "level": 10 - } -}, -{ - "model": "api_v2.classfeatureitem", - "pk": 278, - "fields": { - "parent": "overchannel", - "level": 14 - } -} -] + { + "model": "api_v2.classfeatureitem", + "pk": "rage_1", + "fields": { + "parent": "rage", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "barbarian-unarmored-defense_1", + "fields": { + "parent": "barbarian-unarmored-defense", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "reckless-attack_2", + "fields": { + "parent": "reckless-attack", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "danger-sense_2", + "fields": { + "parent": "danger-sense", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "primal-path_3", + "fields": { + "parent": "primal-path", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "barbarian-ability-score-improvement_4", + "fields": { + "parent": "barbarian-ability-score-improvement", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "barbarian-extra-attack_5", + "fields": { + "parent": "barbarian-extra-attack", + "level": 5 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fast-movement_5", + "fields": { + "parent": "fast-movement", + "level": 5 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "feral-instinct_7", + "fields": { + "parent": "feral-instinct", + "level": 7 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "barbarian-ability-score-improvement_8", + "fields": { + "parent": "barbarian-ability-score-improvement", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "brutal-critical_9", + "fields": { + "parent": "brutal-critical", + "level": 9 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "relentless-rage_11", + "fields": { + "parent": "relentless-rage", + "level": 11 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "barbarian-ability-score-improvement_12", + "fields": { + "parent": "barbarian-ability-score-improvement", + "level": 12 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "brutal-critical_13", + "fields": { + "parent": "brutal-critical", + "level": 13 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "persistent-rage_15", + "fields": { + "parent": "persistent-rage", + "level": 15 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "barbarian-ability-score-improvement_16", + "fields": { + "parent": "barbarian-ability-score-improvement", + "level": 16 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "brutal-critical_17", + "fields": { + "parent": "brutal-critical", + "level": 17 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "indomitable-might_18", + "fields": { + "parent": "indomitable-might", + "level": 18 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "barbarian-ability-score-improvement_19", + "fields": { + "parent": "barbarian-ability-score-improvement", + "level": 19 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "primal-champion_20", + "fields": { + "parent": "primal-champion", + "level": 20 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "frenzy_3", + "fields": { + "parent": "frenzy", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "mindless-rage_6", + "fields": { + "parent": "mindless-rage", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "intimidating-presence_10", + "fields": { + "parent": "intimidating-presence", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "retaliation_14", + "fields": { + "parent": "retaliation", + "level": 14 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bard-spellcasting_1", + "fields": { + "parent": "bard-spellcasting", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bardic-inspiration_1", + "fields": { + "parent": "bardic-inspiration", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "jack-of-all-trades_2", + "fields": { + "parent": "jack-of-all-trades", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "song-of-rest_2", + "fields": { + "parent": "song-of-rest", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bard-college_3", + "fields": { + "parent": "bard-college", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bard-expertise_3", + "fields": { + "parent": "bard-expertise", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bard-ability-score-improvement_4", + "fields": { + "parent": "bard-ability-score-improvement", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bardic-inspiration_5", + "fields": { + "parent": "bardic-inspiration", + "level": 5 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "font-of-inspiration_5", + "fields": { + "parent": "font-of-inspiration", + "level": 5 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "countercharm_6", + "fields": { + "parent": "countercharm", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bard-ability-score-improvement_8", + "fields": { + "parent": "bard-ability-score-improvement", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "song-of-rest_9", + "fields": { + "parent": "song-of-rest", + "level": 9 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bardic-inspiration_10", + "fields": { + "parent": "bardic-inspiration", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bard-expertise_10", + "fields": { + "parent": "bard-expertise", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "magical-secrets_10", + "fields": { + "parent": "magical-secrets", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bard-ability-score-improvement_12", + "fields": { + "parent": "bard-ability-score-improvement", + "level": 12 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "song-of-rest_13", + "fields": { + "parent": "song-of-rest", + "level": 13 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "magical-secrets_14", + "fields": { + "parent": "magical-secrets", + "level": 14 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bardic-inspiration_15", + "fields": { + "parent": "bardic-inspiration", + "level": 15 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bard-ability-score-improvement_16", + "fields": { + "parent": "bard-ability-score-improvement", + "level": 16 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "song-of-rest_17", + "fields": { + "parent": "song-of-rest", + "level": 17 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "magical-secrets_18", + "fields": { + "parent": "magical-secrets", + "level": 18 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bard-ability-score-improvement_19", + "fields": { + "parent": "bard-ability-score-improvement", + "level": 19 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "superior-inspiration_20", + "fields": { + "parent": "superior-inspiration", + "level": 20 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bonus-proficiencies_3", + "fields": { + "parent": "bonus-proficiencies", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "cutting-words_3", + "fields": { + "parent": "cutting-words", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "additional-magical-secrets_6", + "fields": { + "parent": "additional-magical-secrets", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "peerless-skill_14", + "fields": { + "parent": "peerless-skill", + "level": 14 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "cleric-spellcasting_1", + "fields": { + "parent": "cleric-spellcasting", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "divine-domain_1", + "fields": { + "parent": "divine-domain", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "cleric-channel-divinity_2", + "fields": { + "parent": "cleric-channel-divinity", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "life-bonus-proficiency_1", + "fields": { + "parent": "life-bonus-proficiency", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "life-domain-spells_1", + "fields": { + "parent": "life-domain-spells", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "disciple-of-life_1", + "fields": { + "parent": "disciple-of-life", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "channel-divinity-preserve-life_2", + "fields": { + "parent": "channel-divinity-preserve-life", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "cleric-ability-score-improvement_4", + "fields": { + "parent": "cleric-ability-score-improvement", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "destroy-undead_5", + "fields": { + "parent": "destroy-undead", + "level": 5 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "cleric-channel-divinity_6", + "fields": { + "parent": "cleric-channel-divinity", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "blessed-healer_6", + "fields": { + "parent": "blessed-healer", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "cleric-ability-score-improvement_8", + "fields": { + "parent": "cleric-ability-score-improvement", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "destroy-undead_8", + "fields": { + "parent": "destroy-undead", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "divine-strike_8", + "fields": { + "parent": "divine-strike", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "divine-intervention_10", + "fields": { + "parent": "divine-intervention", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "destroy-undead_14", + "fields": { + "parent": "destroy-undead", + "level": 14 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "cleric-ability-score-improvement_16", + "fields": { + "parent": "cleric-ability-score-improvement", + "level": 16 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "destroy-undead_17", + "fields": { + "parent": "destroy-undead", + "level": 17 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "supreme-healing_17", + "fields": { + "parent": "supreme-healing", + "level": 17 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "cleric-channel-divinity_18", + "fields": { + "parent": "cleric-channel-divinity", + "level": 18 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "cleric-ability-score-improvement_19", + "fields": { + "parent": "cleric-ability-score-improvement", + "level": 19 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "divine-intervention_20", + "fields": { + "parent": "divine-intervention", + "level": 20 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "druidic_1", + "fields": { + "parent": "druidic", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "druid-spellcasting_1", + "fields": { + "parent": "druid-spellcasting", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "wild-shape_2", + "fields": { + "parent": "wild-shape", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "druid-circle_2", + "fields": { + "parent": "druid-circle", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "wild-shape_4", + "fields": { + "parent": "wild-shape", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "druid-ability-score-improvement_4", + "fields": { + "parent": "druid-ability-score-improvement", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "wild-shape_8", + "fields": { + "parent": "wild-shape", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "druid-ability-score-improvement_8", + "fields": { + "parent": "druid-ability-score-improvement", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "druid-ability-score-improvement_12", + "fields": { + "parent": "druid-ability-score-improvement", + "level": 12 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "druid-ability-score-improvement_16", + "fields": { + "parent": "druid-ability-score-improvement", + "level": 16 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "beast-spells_18", + "fields": { + "parent": "beast-spells", + "level": 18 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "druid-ability-score-improvement_19", + "fields": { + "parent": "druid-ability-score-improvement", + "level": 19 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "archdruid_20", + "fields": { + "parent": "archdruid", + "level": 20 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "bonus-cantrip_2", + "fields": { + "parent": "bonus-cantrip", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "natural-recovery_2", + "fields": { + "parent": "natural-recovery", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "land-circle-spells_3", + "fields": { + "parent": "land-circle-spells", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "land-circle-spells_5", + "fields": { + "parent": "land-circle-spells", + "level": 5 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "land-circle-spells_7", + "fields": { + "parent": "land-circle-spells", + "level": 7 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "land-circle-spells_9", + "fields": { + "parent": "land-circle-spells", + "level": 9 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "lands-stride_6", + "fields": { + "parent": "lands-stride", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "natures-ward_10", + "fields": { + "parent": "natures-ward", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "natures-sanctuary_14", + "fields": { + "parent": "natures-sanctuary", + "level": 14 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fighting-style_1", + "fields": { + "parent": "fighting-style", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "second-wind_1", + "fields": { + "parent": "second-wind", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "action-surge_2", + "fields": { + "parent": "action-surge", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "martial-archetype_3", + "fields": { + "parent": "martial-archetype", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fighter-ability-score-improvement_4", + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fighter-extra-attack_5", + "fields": { + "parent": "fighter-extra-attack", + "level": 5 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fighter-ability-score-improvement_6", + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fighter-ability-score-improvement_8", + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "indomitable_9", + "fields": { + "parent": "indomitable", + "level": 9 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fighter-extra-attack_11", + "fields": { + "parent": "fighter-extra-attack", + "level": 11 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fighter-ability-score-improvement_12", + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 12 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "indomitable_13", + "fields": { + "parent": "indomitable", + "level": 13 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fighter-ability-score-improvement_14", + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 14 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fighter-ability-score-improvement_16", + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 16 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "action-surge_17", + "fields": { + "parent": "action-surge", + "level": 17 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "indomitable_17", + "fields": { + "parent": "indomitable", + "level": 17 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fighter-ability-score-improvement_19", + "fields": { + "parent": "fighter-ability-score-improvement", + "level": 19 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fighter-extra-attack_20", + "fields": { + "parent": "fighter-extra-attack", + "level": 20 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "improved-critical_3", + "fields": { + "parent": "improved-critical", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "remarkable-athlete_7", + "fields": { + "parent": "remarkable-athlete", + "level": 7 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "additional-fighting-style_10", + "fields": { + "parent": "additional-fighting-style", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "superior-critical_15", + "fields": { + "parent": "superior-critical", + "level": 15 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "survivor_18", + "fields": { + "parent": "survivor", + "level": 18 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "monk-unarmored-defense_1", + "fields": { + "parent": "monk-unarmored-defense", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "martial-arts_1", + "fields": { + "parent": "martial-arts", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "ki_2", + "fields": { + "parent": "ki", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "unarmored-movement_2", + "fields": { + "parent": "unarmored-movement", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "monastic-tradition_3", + "fields": { + "parent": "monastic-tradition", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "deflect-missiles_3", + "fields": { + "parent": "deflect-missiles", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "monk-ability-score-improvement_4", + "fields": { + "parent": "monk-ability-score-improvement", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "slow-fall_4", + "fields": { + "parent": "slow-fall", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "monk-extra-attack_5", + "fields": { + "parent": "monk-extra-attack", + "level": 5 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "stunning-strike_5", + "fields": { + "parent": "stunning-strike", + "level": 5 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "ki-empowered-strikes_6", + "fields": { + "parent": "ki-empowered-strikes", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "monk-evasion_7", + "fields": { + "parent": "monk-evasion", + "level": 7 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "stillness-of-mind_7", + "fields": { + "parent": "stillness-of-mind", + "level": 7 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "monk-ability-score-improvement_8", + "fields": { + "parent": "monk-ability-score-improvement", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "unarmored-movement_9", + "fields": { + "parent": "unarmored-movement", + "level": 9 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "purity-of-body_10", + "fields": { + "parent": "purity-of-body", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "monk-ability-score-improvement_12", + "fields": { + "parent": "monk-ability-score-improvement", + "level": 12 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "tongue-of-the-sun-and-moon_13", + "fields": { + "parent": "tongue-of-the-sun-and-moon", + "level": 13 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "diamond-soul_14", + "fields": { + "parent": "diamond-soul", + "level": 14 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "monk-timeless-body_15", + "fields": { + "parent": "monk-timeless-body", + "level": 15 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "monk-ability-score-improvement_16", + "fields": { + "parent": "monk-ability-score-improvement", + "level": 16 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "empty-body_18", + "fields": { + "parent": "empty-body", + "level": 18 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "monk-ability-score-improvement_19", + "fields": { + "parent": "monk-ability-score-improvement", + "level": 19 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "perfect-self_20", + "fields": { + "parent": "perfect-self", + "level": 20 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "open-hand-technique_3", + "fields": { + "parent": "open-hand-technique", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "wholeness-of-body_6", + "fields": { + "parent": "wholeness-of-body", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "tranquility_11", + "fields": { + "parent": "tranquility", + "level": 11 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "quivering-palm_17", + "fields": { + "parent": "quivering-palm", + "level": 17 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "divine-sense_1", + "fields": { + "parent": "divine-sense", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "lay-on-hands_1", + "fields": { + "parent": "lay-on-hands", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "paladin-fighting-style_2", + "fields": { + "parent": "paladin-fighting-style", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "paladin-spellcasting_2", + "fields": { + "parent": "paladin-spellcasting", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "divine-smite_2", + "fields": { + "parent": "divine-smite", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "divine-health_3", + "fields": { + "parent": "divine-health", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "sacred-oath_3", + "fields": { + "parent": "sacred-oath", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "paladin-ability-score-improvement_4", + "fields": { + "parent": "paladin-ability-score-improvement", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "paladin-extra-attack_5", + "fields": { + "parent": "paladin-extra-attack", + "level": 5 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "aura-of-protection_6", + "fields": { + "parent": "Aura of Protection", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "paladin-ability-score-improvement_8", + "fields": { + "parent": "paladin-ability-score-improvement", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "aura-of-courage_10", + "fields": { + "parent": "aura-of-courage", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "improved-divine-smite_11", + "fields": { + "parent": "improved-divine-smite", + "level": 11 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "paladin-ability-score-improvement_12", + "fields": { + "parent": "paladin-ability-score-improvement", + "level": 12 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "cleansing-touch_14", + "fields": { + "parent": "cleansing-touch", + "level": 14 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "paladin-ability-score-improvement_16", + "fields": { + "parent": "paladin-ability-score-improvement", + "level": 16 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "aura-of-protection_18", + "fields": { + "parent": "Aura of Protection", + "level": 18 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "aura-of-courage_18", + "fields": { + "parent": "aura-of-courage", + "level": 18 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "paladin-ability-score-improvement_19", + "fields": { + "parent": "paladin-ability-score-improvement", + "level": 19 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "tenets-of-devotion_3", + "fields": { + "parent": "tenets-of-devotion", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "devotion-oath-spells_3", + "fields": { + "parent": "devotion-oath-spells", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "devotion-oath-spells_5", + "fields": { + "parent": "devotion-oath-spells", + "level": 5 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "devotion-oath-spells_9", + "fields": { + "parent": "devotion-oath-spells", + "level": 9 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "devotion-oath-spells_13", + "fields": { + "parent": "devotion-oath-spells", + "level": 13 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "devotion-oath-spells_17", + "fields": { + "parent": "devotion-oath-spells", + "level": 17 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "devotion-channel-divinity_3", + "fields": { + "parent": "devotion-channel-divinity", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "aura-of-devotion_7", + "fields": { + "parent": "aura-of-devotion", + "level": 7 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "aura-of-devotion_18", + "fields": { + "parent": "aura-of-devotion", + "level": 18 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "purity-of-spirit_15", + "fields": { + "parent": "purity-of-spirit", + "level": 15 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "holy-nimbus_20", + "fields": { + "parent": "holy-nimbus", + "level": 20 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "favored-enemy_1", + "fields": { + "parent": "favored-enemy", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "natural-explorer_1", + "fields": { + "parent": "natural-explorer", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "ranger-fighting-style_2", + "fields": { + "parent": "ranger-fighting-style", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "ranger-spellcasting_2", + "fields": { + "parent": "ranger-spellcasting", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "ranger-archetype_3", + "fields": { + "parent": "ranger-archetype", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "primeval-awareness_3", + "fields": { + "parent": "primeval-awareness", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "ranger-ability-score-improvement_4", + "fields": { + "parent": "ranger-ability-score-improvement", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "ranger-extra-attack_5", + "fields": { + "parent": "ranger-extra-attack", + "level": 5 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "favored-enemy_6", + "fields": { + "parent": "favored-enemy", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "natural-explorer_6", + "fields": { + "parent": "natural-explorer", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "ranger-ability-score-improvement_8", + "fields": { + "parent": "ranger-ability-score-improvement", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "ranger-lands-stride_8", + "fields": { + "parent": "ranger-lands-stride", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "natural-explorer_10", + "fields": { + "parent": "natural-explorer", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "hide-in-plain-sight_10", + "fields": { + "parent": "hide-in-plain-sight", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "ranger-ability-score-improvement_12", + "fields": { + "parent": "ranger-ability-score-improvement", + "level": 12 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "favored-enemy_14", + "fields": { + "parent": "favored-enemy", + "level": 14 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "vanish_14", + "fields": { + "parent": "vanish", + "level": 14 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "ranger-ability-score-improvement_16", + "fields": { + "parent": "ranger-ability-score-improvement", + "level": 16 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "feral-senses_18", + "fields": { + "parent": "feral-senses", + "level": 18 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "ranger-ability-score-improvement_19", + "fields": { + "parent": "ranger-ability-score-improvement", + "level": 19 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "foe-slayer_20", + "fields": { + "parent": "foe-slayer", + "level": 20 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "hunters-prey_3", + "fields": { + "parent": "hunters-prey", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "defensive-tactics_7", + "fields": { + "parent": "defensive-tactics", + "level": 7 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "multiattack_11", + "fields": { + "parent": "multiattack", + "level": 11 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "superior-hunters-defense_15", + "fields": { + "parent": "superior-hunters-defense", + "level": 15 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "rogue-expertise_1", + "fields": { + "parent": "rogue-expertise", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "sneak-attack_1", + "fields": { + "parent": "sneak-attack", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "thieves-cant_1", + "fields": { + "parent": "thieves-cant", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "cunning-action_2", + "fields": { + "parent": "cunning-action", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "roguish-archetype_3", + "fields": { + "parent": "roguish-archetype", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "rogue-ability-score-improvement_4", + "fields": { + "parent": "rogue-ability-score-improvement", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "uncanny-dodge_5", + "fields": { + "parent": "uncanny-dodge", + "level": 5 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "rogue-expertise_6", + "fields": { + "parent": "rogue-expertise", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "rogue-evasion_7", + "fields": { + "parent": "rogue-evasion", + "level": 7 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "rogue-ability-score-improvement_8", + "fields": { + "parent": "rogue-ability-score-improvement", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "rogue-ability-score-improvement_10", + "fields": { + "parent": "rogue-ability-score-improvement", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "reliable-talent_11", + "fields": { + "parent": "reliable-talent", + "level": 11 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "rogue-ability-score-improvement_12", + "fields": { + "parent": "rogue-ability-score-improvement", + "level": 12 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "blindsense_14", + "fields": { + "parent": "blindsense", + "level": 14 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "slippery-mind_15", + "fields": { + "parent": "slippery-mind", + "level": 15 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "rogue-ability-score-improvement_16", + "fields": { + "parent": "rogue-ability-score-improvement", + "level": 16 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "elusive_18", + "fields": { + "parent": "elusive", + "level": 18 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "rogue-ability-score-improvement_19", + "fields": { + "parent": "rogue-ability-score-improvement", + "level": 19 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "stroke-of-luck_20", + "fields": { + "parent": "Stroke of Luck", + "level": 20 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fast-hands_3", + "fields": { + "parent": "fast-hands", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "second-story-work_3", + "fields": { + "parent": "second-story-work", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "supreme-sneak_9", + "fields": { + "parent": "supreme-sneak", + "level": 9 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "use-magic-device_13", + "fields": { + "parent": "use-magic-device", + "level": 13 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "thiefs-reflexes_17", + "fields": { + "parent": "thiefs-reflexes", + "level": 17 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "sorceror-spellcasting_1", + "fields": { + "parent": "sorceror-spellcasting", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "sorcerous-origin_1", + "fields": { + "parent": "sorcerous-origin", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "font-of-magic_2", + "fields": { + "parent": "font-of-magic", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "metamagic_3", + "fields": { + "parent": "metamagic", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "sorceror-ability-score-improvement_4", + "fields": { + "parent": "sorceror-ability-score-improvement", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "sorceror-ability-score-improvement_8", + "fields": { + "parent": "sorceror-ability-score-improvement", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "metamagic_10", + "fields": { + "parent": "metamagic", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "sorceror-ability-score-improvement_12", + "fields": { + "parent": "sorceror-ability-score-improvement", + "level": 12 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "sorceror-ability-score-improvement_16", + "fields": { + "parent": "sorceror-ability-score-improvement", + "level": 16 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "metamagic_17", + "fields": { + "parent": "metamagic", + "level": 17 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "sorceror-ability-score-improvement_19", + "fields": { + "parent": "sorceror-ability-score-improvement", + "level": 19 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "sorcerous-restoration_20", + "fields": { + "parent": "sorcerous-restoration", + "level": 20 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "dragon-ancestor_1", + "fields": { + "parent": "dragon-ancestor", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "draconic-resilience_1", + "fields": { + "parent": "draconic-resilience", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "elemental-affinity_6", + "fields": { + "parent": "elemental-affinity", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "dragon-wings_14", + "fields": { + "parent": "dragon-wings", + "level": 14 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "draconic-presence_18", + "fields": { + "parent": "draconic-presence", + "level": 18 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "otherworldly-patron_1", + "fields": { + "parent": "otherworldly-patron", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "pact-magic_1", + "fields": { + "parent": "pact-magic", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "eldritch-invocations_2", + "fields": { + "parent": "eldritch-invocations", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "pact-boon_3", + "fields": { + "parent": "pact-boon", + "level": 3 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "warlock-ability-score-improvement_4", + "fields": { + "parent": "warlock-ability-score-improvement", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "warlock-ability-score-improvement_8", + "fields": { + "parent": "warlock-ability-score-improvement", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "mystic-arcanum_11", + "fields": { + "parent": "mystic-arcanum", + "level": 11 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "warlock-ability-score-improvement_12", + "fields": { + "parent": "warlock-ability-score-improvement", + "level": 12 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "mystic-arcanum_13", + "fields": { + "parent": "mystic-arcanum", + "level": 13 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "mystic-arcanum_15", + "fields": { + "parent": "mystic-arcanum", + "level": 15 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "mystic-arcanum_17", + "fields": { + "parent": "mystic-arcanum", + "level": 17 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "warlock-ability-score-improvement_19", + "fields": { + "parent": "warlock-ability-score-improvement", + "level": 19 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "eldritch-master_20", + "fields": { + "parent": "eldritch-master", + "level": 20 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "eldritch-invocation-list_2", + "fields": { + "parent": "eldritch-invocation-list", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "expanded-spell-list_1", + "fields": { + "parent": "expanded-spell-list", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "dark-ones-blessing_1", + "fields": { + "parent": "dark-ones-blessing", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "dark-ones-own-luck_6", + "fields": { + "parent": "dark-ones-own-luck", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "fiendish-resilience_10", + "fields": { + "parent": "fiendish-resilience", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "hurl-through-hell_14", + "fields": { + "parent": "hurl-through-hell", + "level": 14 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "wizard-spellcasting_1", + "fields": { + "parent": "wizard-spellcasting", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "arcane-recovery_1", + "fields": { + "parent": "arcane-recovery", + "level": 1 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "arcane-tradition_2", + "fields": { + "parent": "arcane-tradition", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "wizard-ability-score-improvement_4", + "fields": { + "parent": "wizard-ability-score-improvement", + "level": 4 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "wizard-ability-score-improvement_8", + "fields": { + "parent": "wizard-ability-score-improvement", + "level": 8 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "wizard-ability-score-improvement_12", + "fields": { + "parent": "wizard-ability-score-improvement", + "level": 12 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "wizard-ability-score-improvement_16", + "fields": { + "parent": "wizard-ability-score-improvement", + "level": 16 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "spell-mastery_18", + "fields": { + "parent": "spell-mastery", + "level": 18 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "wizard-ability-score-improvement_19", + "fields": { + "parent": "wizard-ability-score-improvement", + "level": 19 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "signature-spells_20", + "fields": { + "parent": "signature-spells", + "level": 20 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "evocation-savant_2", + "fields": { + "parent": "evocation-savant", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "sculpt-spells_2", + "fields": { + "parent": "sculpt-spells", + "level": 2 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "potent-cantrip_6", + "fields": { + "parent": "potent-cantrip", + "level": 6 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "empowered-evocation_10", + "fields": { + "parent": "empowered-evocation", + "level": 10 + } + }, + { + "model": "api_v2.classfeatureitem", + "pk": "overchannel_14", + "fields": { + "parent": "overchannel", + "level": 14 + } + } +] \ No newline at end of file diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index 68d0d0f9..313486bd 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -66,22 +66,22 @@ def main(): logger.debug("Skipping {}: file is known to have numeric keys.".format(f_obj['filename'])) else: check_keys_non_numeric(objs, f_obj) - if args.fix: fix_keys_num_to_parent_name(objs, f_obj) + if args.fix: fix_keys_to_parent_level(objs, f_obj) # CHECK FOR KEYS THAT ARE NOT PROPERLY SLUGIFIED - known_keys_are_slugified_exceptions = ['CastingOption.json','Capability.json','BackgroundBenefit.json','Trait.json','FeatureItem.json'] + known_keys_are_slugified_exceptions = ['CastingOption.json','Capability.json','BackgroundBenefit.json','Trait.json'] if f_obj['filename'] in known_keys_are_slugified_exceptions: logger.debug("Skipping {}: file is known to have non-slugified keys.".format(f_obj['filename'])) else: check_keys_are_slugified(objs, f_obj) # CHECK THAT KEYS MATCH THE FORMAT DOC_NAME, SLUGIFIED_NAME - known_keys_doc_name_exceptions = ['CastingOption.json','Capability.json','BackgroundBenefit.json','Trait.json','ClassFeatureItem.json', 'Size.json','CreatureAttack.json'] + known_keys_doc_name_exceptions = ['CastingOption.json','Capability.json','BackgroundBenefit.json','Trait.json', 'Size.json','CreatureAttack.json'] if f_obj['filename'] in known_keys_doc_name_exceptions: logger.debug("Skipping {}: file is known to have non-slugified keys.".format(f_obj['filename'])) else: check_keys_doc_name(objs, f_obj) - if args.fix: fix_keys_to_doc_name(objs, f_obj) + #if args.fix: fix_keys_to_doc_name(objs, f_obj) def check_keys_non_numeric(objs,f): @@ -113,9 +113,15 @@ def check_keys_are_slugified(objs,f): def check_keys_doc_name(objs,f): for obj in objs: - if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): - logger.warning("{}:{} does not follow the doc-key_slugified-name format.".format(f['path'],obj['pk'])) - break + if f['filename']=='ClassFeatureItem.json': + #Special rules, it doesn't have a name. + if obj['pk'] != "{}_{}".format(slugify(obj['fields']['parent']),slugify(obj['fields']['level'])): + logger.warning("{}:{} does not follow the parent-name_level format.".format(f['path'],obj['pk'])) + break + else: + if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): + logger.warning("{}:{} does not follow the doc-key_slugified-name format.".format(f['path'],obj['pk'])) + break def fix_keys_to_doc_name(objs,f): objs_fixed=[] @@ -145,6 +151,28 @@ def fix_keys_to_doc_name(objs,f): with open(f['path'],'w',encoding='utf-8') as wf: json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) +def fix_keys_to_parent_level(objs,f): + objs_fixed=[] + if f['filename']!='ClassFeatureItem.json': + return + + for obj in objs: + if obj['pk'] != "{}_{}".format(slugify(obj['fields']['parent']),slugify(obj['fields']['level'])): + if f['filename']=='ClassFeatureItem.json': + logger.warning("{} changing to parent_level".format(f['path'])) + pk_value = "{}_{}".format(slugify(obj['fields']['parent']),slugify(obj['fields']['level'])) + logger.warning("CHANGING PK TO {}".format(pk_value)) + + + obj['pk'] = pk_value + objs_fixed.append(obj) + + + if f['filename']=='ClassFeatureItem.json': + with open(f['path'],'w',encoding='utf-8') as wf: + json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) + + def refactor_relations(filename, key, former_pk, new_pk): From 16d4397e702cb62798537edbb8ad9b14fe06a0ba Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 25 May 2024 07:23:30 -0500 Subject: [PATCH 29/84] Final fixes. --- api_v2/migrations/0080_auto_20240525_1218.py | 23 ++++++++++++++++++ api_v2/models/characterclass.py | 2 +- .../srd/CharacterClass.json | 24 +++++++++---------- 3 files changed, 36 insertions(+), 13 deletions(-) create mode 100644 api_v2/migrations/0080_auto_20240525_1218.py diff --git a/api_v2/migrations/0080_auto_20240525_1218.py b/api_v2/migrations/0080_auto_20240525_1218.py new file mode 100644 index 00000000..ab59820f --- /dev/null +++ b/api_v2/migrations/0080_auto_20240525_1218.py @@ -0,0 +1,23 @@ +# Generated by Django 3.2.20 on 2024-05-25 12:18 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0079_auto_20240525_1155'), + ] + + operations = [ + migrations.RemoveField( + model_name='classfeatureitem', + name='id', + ), + migrations.AddField( + model_name='classfeatureitem', + name='key', + field=models.CharField(default=1, help_text='Unique key for the Document.', max_length=100, primary_key=True, serialize=False), + preserve_default=False, + ), + ] diff --git a/api_v2/models/characterclass.py b/api_v2/models/characterclass.py index 1d9cfe07..1687ca1e 100644 --- a/api_v2/models/characterclass.py +++ b/api_v2/models/characterclass.py @@ -107,7 +107,7 @@ def __str__(self): def as_text(self): text = self.name + '\n' - for feature in self.feature_set.all(): + for feature in self.classfeature_set.all(): text+='\n' + feature.as_text() return text diff --git a/data/v2/wizards-of-the-coast/srd/CharacterClass.json b/data/v2/wizards-of-the-coast/srd/CharacterClass.json index 3af0534a..859fd047 100644 --- a/data/v2/wizards-of-the-coast/srd/CharacterClass.json +++ b/data/v2/wizards-of-the-coast/srd/CharacterClass.json @@ -25,7 +25,7 @@ "fields": { "name": "Champion", "document": "srd", - "subclass_of": "fighter", + "subclass_of": "srd_fighter", "hit_dice": null } }, @@ -35,7 +35,7 @@ "fields": { "name": "Circle of the Land", "document": "srd", - "subclass_of": "druid", + "subclass_of": "srd_druid", "hit_dice": null } }, @@ -55,7 +55,7 @@ "fields": { "name": "College of Lore", "document": "srd", - "subclass_of": "bard", + "subclass_of": "srd_bard", "hit_dice": null } }, @@ -65,7 +65,7 @@ "fields": { "name": "Draconic Bloodline", "document": "srd", - "subclass_of": "sorcerer", + "subclass_of": "srd_sorcerer", "hit_dice": null } }, @@ -95,7 +95,7 @@ "fields": { "name": "Hunter", "document": "srd", - "subclass_of": "ranger", + "subclass_of": "srd_ranger", "hit_dice": null } }, @@ -105,7 +105,7 @@ "fields": { "name": "Life Domain", "document": "srd", - "subclass_of": "cleric", + "subclass_of": "srd_cleric", "hit_dice": null } }, @@ -125,7 +125,7 @@ "fields": { "name": "Oath of Devotion", "document": "srd", - "subclass_of": "paladin", + "subclass_of": "srd_paladin", "hit_dice": null } }, @@ -145,7 +145,7 @@ "fields": { "name": "Path of the Berserker", "document": "srd", - "subclass_of": "barbarian", + "subclass_of": "srd_barbarian", "hit_dice": null } }, @@ -175,7 +175,7 @@ "fields": { "name": "School of Evocation", "document": "srd", - "subclass_of": "wizard", + "subclass_of": "srd_wizard", "hit_dice": null } }, @@ -195,7 +195,7 @@ "fields": { "name": "The Fiend", "document": "srd", - "subclass_of": "warlock", + "subclass_of": "srd_warlock", "hit_dice": null } }, @@ -205,7 +205,7 @@ "fields": { "name": "Thief", "document": "srd", - "subclass_of": "rogue", + "subclass_of": "srd_rogue", "hit_dice": null } }, @@ -225,7 +225,7 @@ "fields": { "name": "Way of the Open Hand", "document": "srd", - "subclass_of": "monk", + "subclass_of": "srd_monk", "hit_dice": null } }, From 96044e36c44c9c0c05584d4cbf2a9c0f529726ad Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 25 May 2024 07:39:52 -0500 Subject: [PATCH 30/84] Some bugfix stuff in class related to refactor. --- api_v2/models/characterclass.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/api_v2/models/characterclass.py b/api_v2/models/characterclass.py index 1687ca1e..03919bfa 100644 --- a/api_v2/models/characterclass.py +++ b/api_v2/models/characterclass.py @@ -21,9 +21,9 @@ class ClassFeatureItem(models.Model): def __str__(self): return "{} {} ({})".format( - self.feature.character_class.name, + self.parent.parent.name, str(self.level), - self.feature.name) + self.parent.name) class ClassFeature(HasName, HasDescription, FromDocument): @@ -34,7 +34,7 @@ class ClassFeature(HasName, HasDescription, FromDocument): on_delete=models.CASCADE) def __str__(self): - return "{} ({})".format(self.name,self.character_class.name) + return "{} ({})".format(self.name,self.parent.name) class CharacterClass(HasName, FromDocument): @@ -90,6 +90,7 @@ def levels(self): by_level[str(fl.level)]['features'].append(fl.parent.key) by_level[str(fl.level)]['proficiency-bonus'] = self.proficiency_bonus(player_level=fl.level) + by_level[str(fl.level)]['level'] = fl.level return by_level From c01984e62cc7947eb2b098fc188d16f9c324af1b Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 25 May 2024 08:06:24 -0500 Subject: [PATCH 31/84] There we go, keys are sorted now. --- .../srd/ClassFeature.json | 368 ++++++------ .../srd/ClassFeatureItem.json | 554 +++++++++--------- .../data_manipulation/data_v2_format_check.py | 43 +- 3 files changed, 488 insertions(+), 477 deletions(-) diff --git a/data/v2/wizards-of-the-coast/srd/ClassFeature.json b/data/v2/wizards-of-the-coast/srd/ClassFeature.json index 69bb1f6b..b5d1225b 100644 --- a/data/v2/wizards-of-the-coast/srd/ClassFeature.json +++ b/data/v2/wizards-of-the-coast/srd/ClassFeature.json @@ -1,7 +1,7 @@ [ { "model": "api_v2.classfeature", - "pk": "Aura of Protection", + "pk": "srd_paladin_aura-of-protection", "fields": { "name": "Aura of Protection", "desc": "Starting at 6th level, whenever you or a friendly creature within 10 feet of you must make a saving throw, the creature gains a bonus to the saving throw equal to your Charisma modifier (with a minimum bonus of +1). You must be conscious to grant this bonus.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", @@ -11,7 +11,7 @@ }, { "model": "api_v2.classfeature", - "pk": "Stroke of Luck", + "pk": "srd_rogue_stroke-of-luck", "fields": { "name": "Stroke of Luck", "desc": "At 20th level, you have an uncanny knack for succeeding when you need to. If your attack misses a target within range, you can turn the miss into a hit. Alternatively, if you fail an ability check, you can treat the d20 roll as a 20.\r\n\r\nOnce you use this feature, you can't use it again until you finish a short or long rest.", @@ -21,7 +21,7 @@ }, { "model": "api_v2.classfeature", - "pk": "action-surge", + "pk": "srd_fighter_action-surge", "fields": { "name": "Action Surge", "desc": "Starting at 2nd level, you can push yourself beyond your normal limits for a moment. On your turn, you can take one additional action on top of your regular action and a possible bonus action.\r\n\r\nOnce you use this feature, you must finish a short or long rest before you can use it again. Starting at 17th level, you can use it twice before a rest, but only once on the same turn.", @@ -31,7 +31,7 @@ }, { "model": "api_v2.classfeature", - "pk": "additional-fighting-style", + "pk": "srd_champion_additional-fighting-style", "fields": { "name": "Additional Fighting Style", "desc": "At 10th level, you can choose a second option from the Fighting Style class feature.", @@ -41,7 +41,7 @@ }, { "model": "api_v2.classfeature", - "pk": "additional-magical-secrets", + "pk": "srd_college-of-lore_additional-magical-secrets", "fields": { "name": "Additional Magical Secrets", "desc": "At 6th level, you learn two spells of your choice from any class. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip. The chosen spells count as bard spells for you but don't count against the number of bard spells you know.", @@ -51,7 +51,7 @@ }, { "model": "api_v2.classfeature", - "pk": "arcane-recovery", + "pk": "srd_wizard_arcane-recovery", "fields": { "name": "Arcane Recovery", "desc": "You have learned to regain some of your magical energy by studying your spellbook. Once per day when you finish a short rest, you can choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.\r\n\r\nFor example, if you're a 4th-level wizard, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level spell slot or two 1st-level spell slots.", @@ -61,7 +61,7 @@ }, { "model": "api_v2.classfeature", - "pk": "arcane-tradition", + "pk": "srd_wizard_arcane-tradition", "fields": { "name": "Arcane Tradition", "desc": "When you reach 2nd level, you choose an arcane tradition, shaping your practice of magic through one of eight schools: Abjuration, Conjuration, Divination, Enchantment, Evocation, Illusion, Necromancy, or Transmutation, all detailed at the end of the class description.\r\n\r\nYour choice grants you features at 2nd level and again at 6th, 10th, and 14th level.", @@ -71,7 +71,7 @@ }, { "model": "api_v2.classfeature", - "pk": "archdruid", + "pk": "srd_druid_archdruid", "fields": { "name": "Archdruid", "desc": "At 20th level, you can use your Wild Shape an unlimited number of times.\r\n\r\nAdditionally, you can ignore the verbal and somatic components of your druid spells, as well as any material components that lack a cost and aren't consumed by a spell. You gain this benefit in both your normal shape and your beast shape from Wild Shape.", @@ -81,7 +81,7 @@ }, { "model": "api_v2.classfeature", - "pk": "aura-of-courage", + "pk": "srd_paladin_aura-of-courage", "fields": { "name": "Aura of Courage", "desc": "Starting at 10th level, you and friendly creatures within 10 feet of you can't be frightened while you are conscious.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", @@ -91,7 +91,7 @@ }, { "model": "api_v2.classfeature", - "pk": "aura-of-devotion", + "pk": "srd_oath-of-devotion_aura-of-devotion", "fields": { "name": "Aura of Devotion", "desc": "Starting at 7th level, you and friendly creatures within 10 feet of you can't be charmed while you are conscious.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", @@ -101,7 +101,7 @@ }, { "model": "api_v2.classfeature", - "pk": "barbarian-ability-score-improvement", + "pk": "srd_barbarian_ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can’t increase an ability score above 20 using this feature.", @@ -111,7 +111,7 @@ }, { "model": "api_v2.classfeature", - "pk": "barbarian-extra-attack", + "pk": "srd_barbarian_extra-attack", "fields": { "name": "Extra Attack", "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", @@ -121,7 +121,7 @@ }, { "model": "api_v2.classfeature", - "pk": "barbarian-unarmored-defense", + "pk": "srd_barbarian_unarmored-defense", "fields": { "name": "Unarmored Defense", "desc": "While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.", @@ -131,7 +131,7 @@ }, { "model": "api_v2.classfeature", - "pk": "bard-ability-score-improvement", + "pk": "srd_bard_ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", @@ -141,7 +141,7 @@ }, { "model": "api_v2.classfeature", - "pk": "bard-college", + "pk": "srd_bard_bard-college", "fields": { "name": "Bard College", "desc": "At 3rd level, you delve into the advanced techniques of a bard college of your choice: the College of Lore or the College of Valor, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th and 14th level.", @@ -151,7 +151,7 @@ }, { "model": "api_v2.classfeature", - "pk": "bard-expertise", + "pk": "srd_bard_expertise", "fields": { "name": "Expertise", "desc": "At 3rd level, choose two of your skill proficiencies. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.\r\n\r\nAt 10th level, you can choose another two skill proficiencies to gain this benefit.", @@ -161,7 +161,7 @@ }, { "model": "api_v2.classfeature", - "pk": "bard-spellcasting", + "pk": "srd_bard_spellcasting", "fields": { "name": "Spellcasting", "desc": "You have learned to untangle and reshape the fabric of reality in harmony with your wishes and music.\r\n\r\nYour spells are part of your vast repertoire, magic that you can tune to different situations.\r\n\r\n###Cantrips\r\n\r\nYou know two cantrips of your choice from the bard spell list. You learn additional bard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Bard table.\r\n\r\n###Spell Slots\r\n\r\nThe Bard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell cure wounds and have a 1st-level and a 2nd-level spell slot available, you can cast cure wounds using either slot.\r\n\r\n###Spells Known of 1st Level and Higher\r\n\r\nYou know four 1st-level spells of your choice from the bard spell list.\r\n\r\nThe Spells Known column of the Bard table shows when you learn more bard spells of your choice. Each of these spells must be of a level for which you have spell slots, as shown on the table. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the bard spells you know and replace it with another spell from the bard spell list, which also must be of a level for which you have spell slots.\r\n\r\n###Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your bard spells. Your magic comes from the heart and soul you pour into the performance of your music or oration. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a bard spell you cast and when making an attack roll with one.\r\n\r\n*Spell save DC* = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n*Spell attack modifier* = your proficiency bonus + your Charisma modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast any bard spell you know as a ritual if that spell has the ritual tag.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a musical instrument (see chapter 5, “Equipment”) as a spellcasting focus for your bard spells.", @@ -171,7 +171,7 @@ }, { "model": "api_v2.classfeature", - "pk": "bardic-inspiration", + "pk": "srd_bard_bardic-inspiration", "fields": { "name": "Bardic Inspiration", "desc": "You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6.\r\n\r\nOnce within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time.\r\n\r\nYou can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest.\r\n\r\nYour Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level.", @@ -181,7 +181,7 @@ }, { "model": "api_v2.classfeature", - "pk": "beast-spells", + "pk": "srd_druid_beast-spells", "fields": { "name": "Beast Spells", "desc": "Beginning at 18th level, you can cast many of your druid spells in any shape you assume using Wild Shape. You can perform the somatic and verbal components of a druid spell while in a beast shape, but you aren't able to provide material components.", @@ -191,7 +191,7 @@ }, { "model": "api_v2.classfeature", - "pk": "blessed-healer", + "pk": "srd_life-domain_blessed-healer", "fields": { "name": "Blessed Healer", "desc": "Beginning at 6th level, the healing spells you cast on others heal you as well. When you cast a spell of 1st level or higher that restores hit points to a creature other than you, you regain hit points equal to 2 + the spell's level.", @@ -201,7 +201,7 @@ }, { "model": "api_v2.classfeature", - "pk": "blindsense", + "pk": "srd_rogue_blindsense", "fields": { "name": "Blindsense", "desc": "Starting at 14th level, if you are able to hear, you are aware of the location of any hidden or invisible creature within 10 feet of you.", @@ -211,7 +211,7 @@ }, { "model": "api_v2.classfeature", - "pk": "bonus-cantrip", + "pk": "srd_circle-of-the-land_bonus-cantrip", "fields": { "name": "Bonus Cantrip", "desc": "When you choose this circle at 2nd level, you learn one additional druid cantrip of your choice.", @@ -221,7 +221,7 @@ }, { "model": "api_v2.classfeature", - "pk": "bonus-proficiencies", + "pk": "srd_college-of-lore_bonus-proficiencies", "fields": { "name": "Bonus Proficiencies", "desc": "When you join the College of Lore at 3rd level, you gain proficiency with three skills of your choice.", @@ -231,7 +231,7 @@ }, { "model": "api_v2.classfeature", - "pk": "brutal-critical", + "pk": "srd_barbarian_brutal-critical", "fields": { "name": "Brutal Critical", "desc": "Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack.\r\n\r\nThis increases to two additional dice at 13th level and three additional dice at 17th level.", @@ -241,7 +241,7 @@ }, { "model": "api_v2.classfeature", - "pk": "channel-divinity-preserve-life", + "pk": "srd_life-domain_channel-divinity-preserve-life", "fields": { "name": "Channel Divinity: Preserve Life", "desc": "Starting at 2nd level, you can use your Channel Divinity to heal the badly injured.\r\n\r\nAs an action, you present your holy symbol and evoke healing energy that can restore a number of hit points equal to five times your cleric level. Choose any creatures within 30 feet of you, and divide those hit points among them. This feature can restore a creature to no more than half of its hit point maximum. You can't use this feature on an undead or a construct.", @@ -251,7 +251,7 @@ }, { "model": "api_v2.classfeature", - "pk": "cleansing-touch", + "pk": "srd_paladin_cleansing-touch", "fields": { "name": "Cleansing Touch", "desc": "Beginning at 14th level, you can use your action to end one spell on yourself or on one willing creature that you touch.\r\n\r\nYou can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain expended uses when you finish a long rest.", @@ -261,7 +261,7 @@ }, { "model": "api_v2.classfeature", - "pk": "cleric-ability-score-improvement", + "pk": "srd_cleric_ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", @@ -271,7 +271,7 @@ }, { "model": "api_v2.classfeature", - "pk": "cleric-channel-divinity", + "pk": "srd_cleric_channel-divinity", "fields": { "name": "Channel Divinity", "desc": "At 2nd level, you gain the ability to channel divine energy directly from your deity, using that energy to fuel magical effects. You start with two such effects: Turn Undead and an effect determined by your domain. Some domains grant you additional effects as you advance in levels, as noted in the domain description.\r\n\r\nWhen you use your Channel Divinity, you choose which effect to create. You must then finish a short or long rest to use your Channel Divinity again.\r\n\r\nSome Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your cleric spell save DC.\r\n\r\nBeginning at 6th level, you can use your Channel Divinity twice between rests, and beginning at 18th level, you can use it three times between rests. When you finish a short or long rest, you regain your expended uses.\r\n\r\n### Channel Divinity: Turn Undead\r\n\r\nAs an action, you present your holy symbol and speak a prayer censuring the undead. Each undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes any damage.\r\n\r\nA turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.", @@ -281,7 +281,7 @@ }, { "model": "api_v2.classfeature", - "pk": "cleric-spellcasting", + "pk": "srd_cleric_spellcasting", "fields": { "name": "Spellcasting", "desc": "As a conduit for divine power, you can cast cleric spells.\r\n\r\n###Cantrips\r\n\r\nAt 1st level, you know three cantrips of your choice from the cleric spell list. You learn additional cleric cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Cleric table.\r\nPreparing and Casting Spells\r\n\r\nThe Cleric table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of cleric spells that are available for you to cast, choosing from the cleric spell list. When you do so, choose a number of cleric spells equal to your Wisdom modifier + your cleric level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 3rd-level cleric, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of cleric spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n###Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your cleric spells. The power of your spells comes from your devotion to your deity. You use your Wisdom whenever a cleric spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a cleric spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast a cleric spell as a ritual if that spell has the ritual tag and you have the spell prepared.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a holy symbol (see chapter 5, “Equipment”) as a spellcasting focus for your cleric spells.", @@ -291,7 +291,7 @@ }, { "model": "api_v2.classfeature", - "pk": "countercharm", + "pk": "srd_bard_countercharm", "fields": { "name": "Countercharm", "desc": "At 6th level, you gain the ability to use musical notes or words of power to disrupt mind-influencing effects. As an action, you can start a performance that lasts until the end of your next turn. During that time, you and any friendly creatures within 30 feet of you have advantage on saving throws against being frightened or charmed. A creature must be able to hear you to gain this benefit. The performance ends early if you are incapacitated or silenced or if you voluntarily end it (no action required).", @@ -301,7 +301,7 @@ }, { "model": "api_v2.classfeature", - "pk": "cunning-action", + "pk": "srd_rogue_cunning-action", "fields": { "name": "Cunning Action", "desc": "Starting at 2nd level, your quick thinking and agility allow you to move and act quickly. You can take a bonus action on each of your turns in combat. This action can be used only to take the Dash, Disengage, or Hide action.", @@ -311,7 +311,7 @@ }, { "model": "api_v2.classfeature", - "pk": "cutting-words", + "pk": "srd_college-of-lore_cutting-words", "fields": { "name": "Cutting Words", "desc": "Also at 3rd level, you learn how to use your wit to distract, confuse, and otherwise sap the confidence and competence of others. When a creature that you can see within 60 feet of you makes an attack roll, an ability check, or a damage roll, you can use your reaction to expend one of your uses of Bardic Inspiration, rolling a Bardic Inspiration die and subtracting the number rolled from the creature's roll. You can choose to use this feature after the creature makes its roll, but before the GM determines whether the attack roll or ability check succeeds or fails, or before the creature deals its damage. The creature is immune if it can't hear you or if it's immune to being charmed.", @@ -321,7 +321,7 @@ }, { "model": "api_v2.classfeature", - "pk": "danger-sense", + "pk": "srd_barbarian_danger-sense", "fields": { "name": "Danger Sense", "desc": "At 2nd level, you gain an uncanny sense of when things nearby aren’t as they should be, giving you an edge when you dodge away from danger.\r\n\r\nYou have advantage on Dexterity saving throws against effects that you can see, such as traps and spells. To gain this benefit, you can’t be blinded, deafened, or incapacitated.", @@ -331,7 +331,7 @@ }, { "model": "api_v2.classfeature", - "pk": "dark-ones-blessing", + "pk": "srd_the-fiend_dark-ones-blessing", "fields": { "name": "Dark One's Blessing", "desc": "Starting at 1st level, when you reduce a hostile creature to 0 hit points, you gain temporary hit points equal to your Charisma modifier + your warlock level (minimum of 1).", @@ -341,7 +341,7 @@ }, { "model": "api_v2.classfeature", - "pk": "dark-ones-own-luck", + "pk": "srd_the-fiend_dark-ones-own-luck", "fields": { "name": "Dark One's Own Luck", "desc": "Starting at 6th level, you can call on your patron to alter fate in your favor. When you make an ability check or a saving throw, you can use this feature to add a d10 to your roll. You can do so after seeing the initial roll but before any of the roll's effects occur.\r\n\r\nOnce you use this feature, you can't use it again until you finish a short or long rest.", @@ -351,7 +351,7 @@ }, { "model": "api_v2.classfeature", - "pk": "defensive-tactics", + "pk": "srd_hunter_defensive-tactics", "fields": { "name": "Defensive Tactics", "desc": "At 7th level, you gain one of the following features of your choice.\r\n\r\n***Escape the Horde.*** Opportunity attacks against you are made with disadvantage.\r\n\r\n***Multiattack Defense.*** When a creature hits you with an attack, you gain a +4 bonus to AC against all subsequent attacks made by that creature for the rest of the turn.\r\n\r\n***Steel Will.*** You have advantage on saving throws against being frightened.", @@ -361,7 +361,7 @@ }, { "model": "api_v2.classfeature", - "pk": "deflect-missiles", + "pk": "srd_monk_deflect-missiles", "fields": { "name": "Deflect Missiles", "desc": "Starting at 3rd level, you can use your reaction to deflect or catch the missile when you are hit by a ranged weapon attack. When you do so, the damage you take from the attack is reduced by 1d10 + your Dexterity modifier + your monk level.\r\n\r\nIf you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in one hand and you have at least one hand free. If you catch a missile in this way, you can spend 1 ki point to make a ranged attack with the weapon or piece of ammunition you just caught, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and the missile counts as a monk weapon for the attack, which has a normal range of 20 feet and a long range of 60 feet.", @@ -371,7 +371,7 @@ }, { "model": "api_v2.classfeature", - "pk": "destroy-undead", + "pk": "srd_cleric_destroy-undead", "fields": { "name": "Destroy Undead", "desc": "Starting at 5th level, when an undead fails its saving throw against your Turn Undead feature, the creature is instantly destroyed if its challenge rating is at or below a certain threshold, as shown in the Destroy Undead table. \r\n\r\n### Destroy Undead (table)\r\n\r\n| Cleric Level | Destroys Undead of CR... | \r\n|---|---|\r\n| 5th | 1/2 or lower |\r\n| 8th | 1 or lower |\r\n| 11th | 2 or lower |\r\n| 14th | 3 or lower | \r\n| 17th | 4 or lower |", @@ -381,7 +381,7 @@ }, { "model": "api_v2.classfeature", - "pk": "devotion-channel-divinity", + "pk": "srd_oath-of-devotion_channel-divinity", "fields": { "name": "Channel Divinity", "desc": "When you take this oath at 3rd level, you gain the following two Channel Divinity options.\r\n\r\n**Sacred Weapon.** As an action, you can imbue one weapon that you are holding with positive energy, using your Channel Divinity. For 1 minute, you add your Charisma modifier to attack rolls made with that weapon (with a minimum bonus of +1). The weapon also emits bright light in a 20-foot radius and dim light 20 feet beyond that. If the weapon is not already magical, it becomes magical for the duration.\r\n\r\nYou can end this effect on your turn as part of any other action. If you are no longer holding or carrying this weapon, or if you fall unconscious, this effect ends.\r\n\r\n**Turn the Unholy.** As an action, you present your holy symbol and speak a prayer censuring fiends and undead, using your Channel Divinity. Each fiend or undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes damage.\r\n\r\nA turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.", @@ -391,7 +391,7 @@ }, { "model": "api_v2.classfeature", - "pk": "devotion-oath-spells", + "pk": "srd_oath-of-devotion_oath-spells", "fields": { "name": "Oath Spells", "desc": "You gain oath spells at the paladin levels listed.\r\n\r\n### Oath of Devotion Spells\r\n| Paladin Level | Spells |\r\n| --- | --- |\r\n| 3rd | protection from evil and good, sanctuary |\r\n| 5th | lesser restoration, zone of truth |\r\n| 9th | beacon of hope, dispel magic |\r\n| 13th | freedom of movement, guardian of faith |\r\n| 17th | commune, flame strike |", @@ -401,7 +401,7 @@ }, { "model": "api_v2.classfeature", - "pk": "diamond-soul", + "pk": "srd_monk_diamond-soul", "fields": { "name": "Diamond Soul", "desc": "Beginning at 14th level, your mastery of ki grants you proficiency in all saving throws.\r\n\r\nAdditionally, whenever you make a saving throw and fail, you can spend 1 ki point to reroll it and take the second result.", @@ -411,7 +411,7 @@ }, { "model": "api_v2.classfeature", - "pk": "disciple-of-life", + "pk": "srd_life-domain_disciple-of-life", "fields": { "name": "Disciple of Life", "desc": "Also starting at 1st level, your healing spells are more effective. Whenever you use a spell of 1st level or higher to restore hit points to a creature, the creature regains additional hit points equal to 2 + the spell's level.", @@ -421,7 +421,7 @@ }, { "model": "api_v2.classfeature", - "pk": "divine-domain", + "pk": "srd_cleric_divine-domain", "fields": { "name": "Divine Domain", "desc": "Choose one domain related to your deity, such as Life. Each domain is detailed at the end of the class description, and each one provides examples of gods associated with it. Your choice grants you domain spells and other features when you choose it at 1st level. It also grants you additional ways to use Channel Divinity when you gain that feature at 2nd level, and additional benefits at 6th, 8th, and 17th levels.\r\n\r\n### Domain Spells\r\nEach domain has a list of spells—its domain spells—that you gain at the cleric levels noted in the domain description. Once you gain a domain spell, you always have it prepared, and it doesn’t count against the number of spells you can prepare each day. \r\nIf you have a domain spell that doesn’t appear on the cleric spell list, the spell is nonetheless a cleric spell for you.", @@ -431,7 +431,7 @@ }, { "model": "api_v2.classfeature", - "pk": "divine-health", + "pk": "srd_paladin_divine-health", "fields": { "name": "Divine Health", "desc": "By 3rd level, the divine magic flowing through you makes you immune to disease.", @@ -441,7 +441,7 @@ }, { "model": "api_v2.classfeature", - "pk": "divine-intervention", + "pk": "srd_cleric_divine-intervention", "fields": { "name": "Divine Intervention", "desc": "Beginning at 10th level, you can call on your deity to intervene on your behalf when your need is great.\r\n\r\nImploring your deity's aid requires you to use your action. Describe the assistance you seek, and roll percentile dice. If you roll a number equal to or lower than your cleric level, your deity intervenes. The GM chooses the nature of the intervention; the effect of any cleric spell or cleric domain spell would be appropriate.\r\n\r\nIf your deity intervenes, you can't use this feature again for 7 days. Otherwise, you can use it again after you finish a long rest.\r\n\r\nAt 20th level, your call for intervention succeeds automatically, no roll required.", @@ -451,7 +451,7 @@ }, { "model": "api_v2.classfeature", - "pk": "divine-sense", + "pk": "srd_paladin_divine-sense", "fields": { "name": "Divine Sense", "desc": "The presence of strong evil registers on your senses like a noxious odor, and powerful good rings like heavenly music in your ears. As an action, you can open your awareness to detect such forces. Until the end of your next turn, you know the location of any celestial, fiend, or undead within 60 feet of you that is not behind total cover. You know the type (celestial, fiend, or undead) of any being whose presence you sense, but not its identity (the vampire Count Strahd von Zarovich, for instance). Within the same radius, you also detect the presence of any place or object that has been consecrated or desecrated, as with the hallow spell.\r\n\r\nYou can use this feature a number of times equal to 1 + your Charisma modifier. When you finish a long rest, you regain all expended uses.", @@ -461,7 +461,7 @@ }, { "model": "api_v2.classfeature", - "pk": "divine-smite", + "pk": "srd_paladin_divine-smite", "fields": { "name": "Divine Smite", "desc": "Starting at 2nd level, when you hit a creature with a melee weapon attack, you can expend one spell slot to deal radiant damage to the target, in addition to the weapon's damage. The extra damage is 2d8 for a 1st-level spell slot, plus 1d8 for each spell level higher than 1st, to a maximum of 5d8. The damage increases by 1d8 if the target is an undead or a fiend.", @@ -471,7 +471,7 @@ }, { "model": "api_v2.classfeature", - "pk": "divine-strike", + "pk": "srd_life-domain_divine-strike", "fields": { "name": "Divine Strike", "desc": "At 8th level, you gain the ability to infuse your weapon strikes with divine energy. Once on each of your turns when you hit a creature with a weapon attack, you can cause the attack to deal an extra 1d8 radiant damage to the target. When you reach 14th level, the extra damage increases to 2d8.", @@ -481,7 +481,7 @@ }, { "model": "api_v2.classfeature", - "pk": "draconic-presence", + "pk": "srd_draconic-bloodline_draconic-presence", "fields": { "name": "Draconic Presence", "desc": "Beginning at 18th level, you can channel the dread presence of your dragon ancestor, causing those around you to become awestruck or frightened. As an action, you can spend 5 sorcery points to draw on this power and exude an aura of awe or fear (your choice) to a distance of 60 feet. For 1 minute or until you lose your concentration (as if you were casting a concentration spell), each hostile creature that starts its turn in this aura must succeed on a Wisdom saving throw or be charmed (if you chose awe) or frightened (if you chose fear) until the aura ends. A creature that succeeds on this saving throw is immune to your aura for 24 hours.", @@ -491,7 +491,7 @@ }, { "model": "api_v2.classfeature", - "pk": "draconic-resilience", + "pk": "srd_draconic-bloodline_draconic-resilience", "fields": { "name": "Draconic Resilience", "desc": "As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class.\r\n\r\nAdditionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.", @@ -501,7 +501,7 @@ }, { "model": "api_v2.classfeature", - "pk": "dragon-ancestor", + "pk": "srd_draconic-bloodline_dragon-ancestor", "fields": { "name": "Dragon Ancestor", "desc": "At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.\r\n\r\n### Draconic Ancestry (table)\r\n| Dragon | Damage Type |\r\n| --- | --- |\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |\r\n\r\nYou can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.", @@ -511,7 +511,7 @@ }, { "model": "api_v2.classfeature", - "pk": "dragon-wings", + "pk": "srd_draconic-bloodline_dragon-wings", "fields": { "name": "Dragon Wings", "desc": "At 14th level, you gain the ability to sprout a pair of dragon wings from your back, gaining a flying speed equal to your current speed. You can create these wings as a bonus action on your turn. They last until you dismiss them as a bonus action on your turn.\r\n\r\nYou can't manifest your wings while wearing armor unless the armor is made to accommodate them, and clothing not made to accommodate your wings might be destroyed when you manifest them.", @@ -521,7 +521,7 @@ }, { "model": "api_v2.classfeature", - "pk": "druid-ability-score-improvement", + "pk": "srd_druid_ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", @@ -531,7 +531,7 @@ }, { "model": "api_v2.classfeature", - "pk": "druid-circle", + "pk": "srd_druid_druid-circle", "fields": { "name": "Druid Circle", "desc": "At 2nd level, you choose to identify with a circle of druids such as the Circle of the Land. Your choice grants you features at 2nd level and again at 6th, 10th, and 14th level.", @@ -541,7 +541,7 @@ }, { "model": "api_v2.classfeature", - "pk": "druid-spellcasting", + "pk": "srd_druid_spellcasting", "fields": { "name": "Spellcasting", "desc": "Drawing on the divine essence of nature itself, you can cast spells to shape that essence to your will.\r\n\r\n###Cantrips\r\n\r\nAt 1st level, you know two cantrips of your choice from the druid spell list. You learn additional druid cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Druid table.\r\n\r\n###Preparing and Casting Spells\r\n\r\nThe Druid table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these druid spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of druid spells that are available for you to cast, choosing from the druid spell list. When you do so, choose a number of druid spells equal to your Wisdom modifier + your druid level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 3rd-level druid, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can also change your list of prepared spells when you finish a long rest. Preparing a new list of druid spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n###Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your druid spells, since your magic draws upon your devotion and attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a druid spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast a druid spell as a ritual if that spell has the ritual tag and you have the spell prepared.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a druidic focus (see chapter 5, “Equipment”) as a spellcasting focus for your druid spells.", @@ -551,7 +551,7 @@ }, { "model": "api_v2.classfeature", - "pk": "druid-timeless-body", + "pk": "srd_druid_timeless-body", "fields": { "name": "Timeless Body", "desc": "Starting at 18th level, the primal magic that you wield causes you to age more slowly. For every 10 years that pass, your body ages only 1 year.", @@ -561,7 +561,7 @@ }, { "model": "api_v2.classfeature", - "pk": "druidic", + "pk": "srd_druid_druidic", "fields": { "name": "Druidic", "desc": "You know Druidic, the secret language of druids. You can speak the language and use it to leave hidden messages. You and others who know this language automatically spot such a message. Others spot the message's presence with a successful DC 15 Wisdom (Perception) check but can't decipher it without magic.", @@ -571,7 +571,7 @@ }, { "model": "api_v2.classfeature", - "pk": "eldritch-invocation-list", + "pk": "srd_warlock_eldritch-invocation-list", "fields": { "name": "Eldritch Invocation List", "desc": "If an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.\r\n\r\n### Agonizing Blast\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you cast eldritch blast, add your Charisma modifier to the damage it deals on a hit.\r\nArmor of Shadows\r\n\r\nYou can cast mage armor on yourself at will, without expending a spell slot or material components.\r\n\r\n### Ascendant Step\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast levitate on yourself at will, without expending a spell slot or material components.\r\n\r\n### Beast Speech\r\n\r\nYou can cast speak with animals at will, without expending a spell slot.\r\n\r\n### Beguiling Influence\r\n\r\nYou gain proficiency in the Deception and Persuasion skills.\r\n\r\n### Bewitching Whispers\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast compulsion once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Book of Ancient Secrets\r\n\r\nPrerequisite: Pact of the Tome feature\r\n\r\nYou can now inscribe magical rituals in your Book of Shadows. Choose two 1st-level spells that have the ritual tag from any class's spell list (the two needn't be from the same list). The spells appear in the book and don't count against the number of spells you know. With your Book of Shadows in hand, you can cast the chosen spells as rituals. You can't cast the spells except as rituals, unless you've learned them by some other means. You can also cast a warlock spell you know as a ritual if it has the ritual tag.\r\n\r\nOn your adventures, you can add other ritual spells to your Book of Shadows. When you find such a spell, you can add it to the book if the spell's level is equal to or less than half your warlock level (rounded up) and if you can spare the time to transcribe the spell. For each level of the spell, the transcription process takes 2 hours and costs 50 gp for the rare inks needed to inscribe it.\r\n\r\n### Chains of Carceri\r\n\r\nPrerequisite: 15th level, Pact of the Chain feature\r\n\r\nYou can cast hold monster at will-targeting a celestial, fiend, or elemental-without expending a spell slot or material components. You must finish a long rest before you can use this invocation on the same creature again.\r\n\r\n### Devil's Sight\r\n\r\nYou can see normally in darkness, both magical and nonmagical, to a distance of 120 feet.\r\n\r\n### Dreadful Word\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast confusion once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Eldritch Sight\r\n\r\nYou can cast detect magic at will, without expending a spell slot.\r\n\r\n### Eldritch Spear\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you cast eldritch blast, its range is 300 feet.\r\n\r\n### Eyes of the Rune Keeper\r\n\r\nYou can read all writing.\r\n\r\n### Fiendish Vigor\r\n\r\nYou can cast false life on yourself at will as a 1st-level spell, without expending a spell slot or material components.\r\n\r\n### Gaze of Two Minds\r\n\r\nYou can use your action to touch a willing humanoid and perceive through its senses until the end of your next turn. As long as the creature is on the same plane of existence as you, you can use your action on subsequent turns to maintain this connection, extending the duration until the end of your next turn. While perceiving through the other creature's senses, you benefit from any special senses possessed by that creature, and you are blinded and deafened to your own surroundings.\r\n\r\n### Lifedrinker\r\n\r\nPrerequisite: 12th level, Pact of the Blade feature\r\n\r\nWhen you hit a creature with your pact weapon, the creature takes extra necrotic damage equal to your Charisma modifier (minimum 1).\r\n\r\n### Mask of Many Faces\r\n\r\nYou can cast disguise self at will, without expending a spell slot.\r\n\r\n### Master of Myriad Forms\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can cast alter self at will, without expending a spell slot.\r\n\r\n### Minions of Chaos\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast conjure elemental once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Mire the Mind\r\n\r\nPrerequisite: 5th level\r\n\r\nYou can cast slow once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Misty Visions\r\n\r\nYou can cast silent image at will, without expending a spell slot or material components.\r\n\r\n### One with Shadows\r\n\r\nPrerequisite: 5th level\r\n\r\nWhen you are in an area of dim light or darkness, you can use your action to become invisible until you move or take an action or a reaction.\r\n\r\n### Otherworldly Leap\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast jump on yourself at will, without expending a spell slot or material components.\r\n\r\n### Repelling Blast\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you hit a creature with eldritch blast, you can push the creature up to 10 feet away from you in a straight line.\r\n\r\n### Sculptor of Flesh\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast polymorph once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Sign of Ill Omen\r\n\r\nPrerequisite: 5th level\r\n\r\nYou can cast bestow curse once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Thief of Five Fates\r\n\r\nYou can cast bane once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Thirsting Blade\r\n\r\nPrerequisite: 5th level, Pact of the Blade feature\r\n\r\nYou can attack with your pact weapon twice, instead of once, whenever you take the Attack action on your turn.\r\n\r\n### Visions of Distant Realms\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can cast arcane eye at will, without expending a spell slot.\r\n\r\n### Voice of the Chain Master\r\n\r\nPrerequisite: Pact of the Chain feature\r\n\r\nYou can communicate telepathically with your familiar and perceive through your familiar's senses as long as you are on the same plane of existence. Additionally, while perceiving through your familiar's senses, you can also speak through your familiar in your own voice, even if your familiar is normally incapable of speech.\r\n\r\n### Whispers of the Grave\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast speak with dead at will, without expending a spell slot.\r\n\r\n### Witch Sight\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can see the true form of any shapechanger or creature concealed by illusion or transmutation magic while the creature is within 30 feet of you and within line of sight.", @@ -581,7 +581,7 @@ }, { "model": "api_v2.classfeature", - "pk": "eldritch-invocations", + "pk": "srd_warlock_eldritch-invocations", "fields": { "name": "Eldritch Invocations", "desc": "In your study of occult lore, you have unearthed eldritch invocations, fragments of forbidden knowledge that imbue you with an abiding magical ability.\r\n\r\nAt 2nd level, you gain two eldritch invocations of your choice. Your invocation options are detailed at the end of the class description. When you gain certain warlock levels, you gain additional invocations of your choice, as shown in the Invocations Known column of the Warlock table.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the invocations you know and replace it with another invocation that you could learn at that level.", @@ -591,7 +591,7 @@ }, { "model": "api_v2.classfeature", - "pk": "eldritch-master", + "pk": "srd_warlock_eldritch-master", "fields": { "name": "Eldritch Master", "desc": "At 20th level, you can draw on your inner reserve of mystical power while entreating your patron to regain expended spell slots. You can spend 1 minute entreating your patron for aid to regain all your expended spell slots from your Pact Magic feature. Once you regain spell slots with this feature, you must finish a long rest before you can do so again.", @@ -601,7 +601,7 @@ }, { "model": "api_v2.classfeature", - "pk": "elemental-affinity", + "pk": "srd_draconic-bloodline_elemental-affinity", "fields": { "name": "Elemental Affinity", "desc": "Starting at 6th level, when you cast a spell that deals damage of the type associated with your draconic ancestry, you can add your Charisma modifier to one damage roll of that spell. At the same time, you can spend 1 sorcery point to gain resistance to that damage type for 1 hour.", @@ -611,7 +611,7 @@ }, { "model": "api_v2.classfeature", - "pk": "elusive", + "pk": "srd_rogue_elusive", "fields": { "name": "Elusive", "desc": "Beginning at 18th level, you are so evasive that attackers rarely gain the upper hand against you. No attack roll has advantage against you while you aren't incapacitated.", @@ -621,7 +621,7 @@ }, { "model": "api_v2.classfeature", - "pk": "empowered-evocation", + "pk": "srd_school-of-evocation_empowered-evocation", "fields": { "name": "Empowered Evocation", "desc": "Beginning at 10th level, you can add your Intelligence modifier to one damage roll of any wizard evocation spell you cast.", @@ -631,7 +631,7 @@ }, { "model": "api_v2.classfeature", - "pk": "empty-body", + "pk": "srd_monk_empty-body", "fields": { "name": "Empty Body", "desc": "Beginning at 18th level, you can use your action to spend 4 ki points to become invisible for 1 minute. During that time, you also have resistance to all damage but force damage.\r\n\r\nAdditionally, you can spend 8 ki points to cast the astral projection spell, without needing material components. When you do so, you can't take any other creatures with you.", @@ -641,7 +641,7 @@ }, { "model": "api_v2.classfeature", - "pk": "evocation-savant", + "pk": "srd_school-of-evocation_evocation-savant", "fields": { "name": "Evocation Savant", "desc": "Beginning when you select this school at 2nd level, the gold and time you must spend to copy an evocation spell into your spellbook is halved.", @@ -651,7 +651,7 @@ }, { "model": "api_v2.classfeature", - "pk": "expanded-spell-list", + "pk": "srd_the-fiend_expanded-spell-list", "fields": { "name": "Expanded Spell List", "desc": "The Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\r\n\r\n### Fiend Expanded Spells (table)\r\n| Spell Level | Spells |\r\n| --- | --- |\r\n| 1st | burning hands, command |\r\n| 2nd | blindness/deafness, scorching ray |\r\n| 3rd | fireball, stinking cloud |\r\n| 4th | fire shield, wall of fire |\r\n| 5th | flame strike, hallow |", @@ -661,7 +661,7 @@ }, { "model": "api_v2.classfeature", - "pk": "fast-hands", + "pk": "srd_thief_fast-hands", "fields": { "name": "Fast Hands", "desc": "Starting at 3rd level, you can use the bonus action granted by your Cunning Action to make a Dexterity (Sleight of Hand) check, use your thieves' tools to disarm a trap or open a lock, or take the Use an Object action.", @@ -671,7 +671,7 @@ }, { "model": "api_v2.classfeature", - "pk": "fast-movement", + "pk": "srd_barbarian_fast-movement", "fields": { "name": "Fast Movement", "desc": "Starting at 5th level, your speed increases by 10 feet while you aren’t wearing heavy armor.", @@ -681,7 +681,7 @@ }, { "model": "api_v2.classfeature", - "pk": "favored-enemy", + "pk": "srd_ranger_favored-enemy", "fields": { "name": "Favored Enemy", "desc": "Beginning at 1st level, you have significant experience studying, tracking, hunting, and even talking to a certain type of enemy.\r\n\r\nChoose a type of favored enemy: aberrations, beasts, celestials, constructs, dragons, elementals, fey, fiends, giants, monstrosities, oozes, plants, or undead. Alternatively, you can select two races of humanoid (such as gnolls and orcs) as favored enemies.\r\n\r\nYou have advantage on Wisdom (Survival) checks to track your favored enemies, as well as on Intelligence checks to recall information about them.\r\n\r\nWhen you gain this feature, you also learn one language of your choice that is spoken by your favored enemies, if they speak one at all.\r\n\r\nYou choose one additional favored enemy, as well as an associated language, at 6th and 14th level. As you gain levels, your choices should reflect the types of monsters you have encountered on your adventures.", @@ -691,7 +691,7 @@ }, { "model": "api_v2.classfeature", - "pk": "feral-instinct", + "pk": "srd_barbarian_feral-instinct", "fields": { "name": "Feral Instinct", "desc": "By 7th level, your instincts are so honed that you have advantage on initiative rolls.\r\n\r\nAdditionally, if you are surprised at the beginning of combat and aren’t incapacitated, you can act normally on your first turn, but only if you enter your rage before doing anything else on that turn.", @@ -701,7 +701,7 @@ }, { "model": "api_v2.classfeature", - "pk": "feral-senses", + "pk": "srd_ranger_feral-senses", "fields": { "name": "Feral Senses", "desc": "At 18th level, you gain preternatural senses that help you fight creatures you can't see. When you attack a creature you can't see, your inability to see it doesn't impose disadvantage on your attack rolls against it.\r\n\r\nYou are also aware of the location of any invisible creature within 30 feet of you, provided that the creature isn't hidden from you and you aren't blinded or deafened.", @@ -711,7 +711,7 @@ }, { "model": "api_v2.classfeature", - "pk": "fiendish-resilience", + "pk": "srd_the-fiend_fiendish-resilience", "fields": { "name": "Fiendish Resilience", "desc": "Starting at 10th level, you can choose one damage type when you finish a short or long rest. You gain resistance to that damage type until you choose a different one with this feature. Damage from magical weapons or silver weapons ignores this resistance.", @@ -721,7 +721,7 @@ }, { "model": "api_v2.classfeature", - "pk": "fighter-ability-score-improvement", + "pk": "srd_fighter_ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 6th, 8th, 12th, 14th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", @@ -731,7 +731,7 @@ }, { "model": "api_v2.classfeature", - "pk": "fighter-extra-attack", + "pk": "srd_fighter_extra-attack", "fields": { "name": "Extra Attack", "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.\r\n\r\nThe number of attacks increases to three when you reach 11th level in this class and to four when you reach 20th level in this class.", @@ -741,7 +741,7 @@ }, { "model": "api_v2.classfeature", - "pk": "fighting-style", + "pk": "srd_fighter_fighting-style", "fields": { "name": "Fighting Style", "desc": "You adopt a particular style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n###Archery\r\n\r\nYou gain a +2 bonus to attack rolls you make with ranged weapons.\r\n\r\n###Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n###Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n###Great Weapon Fighting\r\n\r\nWhen you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2. The weapon must have the two-handed or versatile property for you to gain this benefit.\r\n\r\n###Protection\r\n\r\nWhen a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.\r\n\r\n###Two-Weapon Fighting\r\n\r\nWhen you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.", @@ -751,7 +751,7 @@ }, { "model": "api_v2.classfeature", - "pk": "foe-slayer", + "pk": "srd_ranger_foe-slayer", "fields": { "name": "Foe Slayer", "desc": "At 20th level, you become an unparalleled hunter of your enemies. Once on each of your turns, you can add your Wisdom modifier to the attack roll or the damage roll of an attack you make against one of your favored enemies. You can choose to use this feature before or after the roll, but before any effects of the roll are applied.", @@ -761,7 +761,7 @@ }, { "model": "api_v2.classfeature", - "pk": "font-of-inspiration", + "pk": "srd_bard_font-of-inspiration", "fields": { "name": "Font of Inspiration", "desc": "Beginning when you reach 5th level, you regain all of your expended uses of Bardic Inspiration when you finish a short or long rest.", @@ -771,7 +771,7 @@ }, { "model": "api_v2.classfeature", - "pk": "font-of-magic", + "pk": "srd_sorcerer_font-of-magic", "fields": { "name": "Font of Magic", "desc": "At 2nd level, you tap into a deep wellspring of magic within yourself. This wellspring is represented by sorcery points, which allow you to create a variety of magical effects.\r\n\r\n### Sorcery Points\r\n\r\nYou have 2 sorcery points, and you gain more as you reach higher levels, as shown in the Sorcery Points column of the Sorcerer table. You can never have more sorcery points than shown on the table for your level. You regain all spent sorcery points when you finish a long rest.\r\n\r\n### Flexible Casting\r\n\r\nYou can use your sorcery points to gain additional spell slots, or sacrifice spell slots to gain additional sorcery points. You learn other ways to use your sorcery points as you reach higher levels.\r\n\r\n***Creating Spell Slots.*** You can transform unexpended sorcery points into one spell slot as a bonus action on your turn. The Creating Spell Slots table shows the cost of creating a spell slot of a given level. You can create spell slots no higher in level than 5th.\r\n\r\nAny spell slot you create with this feature vanishes when you finish a long rest.\r\n\r\n### Creating Spell Slots (table)\r\n| Spell Slot Level | Sorcery Point Cost |\r\n| --- | --- |\r\n| 1st | 2 |\r\n| 2nd | 3 |\r\n| 3rd | 5 |\r\n| 4th | 6 |\r\n| 5th | 7|\r\n\r\n***Converting a Spell Slot to Sorcery Points.*** As a bonus action on your turn, you can expend one spell slot and gain a number of sorcery points equal to the slot's level.", @@ -781,7 +781,7 @@ }, { "model": "api_v2.classfeature", - "pk": "frenzy", + "pk": "srd_path-of-the-berserker_frenzy", "fields": { "name": "Frenzy", "desc": "Starting when you choose this path at 3rd level, you can go into a frenzy when you rage. If you do so, for the duration of your rage you can make a single melee weapon attack as a bonus action on each of your turns after this one. When your rage ends, you suffer one level of exhaustion (as described in appendix A).", @@ -791,7 +791,7 @@ }, { "model": "api_v2.classfeature", - "pk": "hide-in-plain-sight", + "pk": "srd_ranger_hide-in-plain-sight", "fields": { "name": "Hide in Plain Sight", "desc": "Starting at 10th level, you can spend 1 minute creating camouflage for yourself. You must have access to fresh mud, dirt, plants, soot, and other naturally occurring materials with which to create your camouflage.\r\n\r\nOnce you are camouflaged in this way, you can try to hide by pressing yourself up against a solid surface, such as a tree or wall, that is at least as tall and wide as you are. You gain a +10 bonus to Dexterity (Stealth) checks as long as you remain there without moving or taking actions. Once you move or take an action or a reaction, you must camouflage yourself again to gain this benefit.", @@ -801,7 +801,7 @@ }, { "model": "api_v2.classfeature", - "pk": "holy-nimbus", + "pk": "srd_oath-of-devotion_holy-nimbus", "fields": { "name": "Holy Nimbus", "desc": "At 20th level, as an action, you can emanate an aura of sunlight. For 1 minute, bright light shines from you in a 30-foot radius, and dim light shines 30 feet beyond that.\r\n\r\nWhenever an enemy creature starts its turn in the bright light, the creature takes 10 radiant damage.\r\n\r\nIn addition, for the duration, you have advantage on saving throws against spells cast by fiends or undead.\r\n\r\nOnce you use this feature, you can't use it again until you finish a long rest.", @@ -811,7 +811,7 @@ }, { "model": "api_v2.classfeature", - "pk": "hunters-prey", + "pk": "srd_hunter_hunters-prey", "fields": { "name": "Hunter's Prey", "desc": "At 3rd level, you gain one of the following features of your choice.\r\n\r\n***Colossus Slayer.*** Your tenacity can wear down the most potent foes. When you hit a creature with a weapon attack, the creature takes an extra 1d8 damage if it's below its hit point maximum. You can deal this extra damage only once per turn.\r\n\r\n***Giant Killer.*** When a Large or larger creature within 5 feet of you hits or misses you with an attack, you can use your reaction to attack that creature immediately after its attack, provided that you can see the creature.\r\n\r\n***Horde Breaker.*** Once on each of your turns when you make a weapon attack, you can make another attack with the same weapon against a different creature that is within 5 feet of the original target and within range of your weapon.", @@ -821,7 +821,7 @@ }, { "model": "api_v2.classfeature", - "pk": "hurl-through-hell", + "pk": "srd_the-fiend_hurl-through-hell", "fields": { "name": "Hurl Through Hell", "desc": "Starting at 14th level, when you hit a creature with an attack, you can use this feature to instantly transport the target through the lower planes. The creature disappears and hurtles through a nightmare landscape.\r\n\r\nAt the end of your next turn, the target returns to the space it previously occupied, or the nearest unoccupied space. If the target is not a fiend, it takes 10d10 psychic damage as it reels from its horrific experience.\r\n\r\nOnce you use this feature, you can't use it again until you finish a long rest.", @@ -831,7 +831,7 @@ }, { "model": "api_v2.classfeature", - "pk": "improved-critical", + "pk": "srd_champion_improved-critical", "fields": { "name": "Improved Critical", "desc": "Beginning when you choose this archetype at 3rd level, your weapon attacks score a critical hit on a roll of 19 or 20.", @@ -841,7 +841,7 @@ }, { "model": "api_v2.classfeature", - "pk": "improved-divine-smite", + "pk": "srd_paladin_improved-divine-smite", "fields": { "name": "Improved Divine Smite", "desc": "By 11th level, you are so suffused with righteous might that all your melee weapon strikes carry divine power with them. Whenever you hit a creature with a melee weapon, the creature takes an extra 1d8 radiant damage. If you also use your Divine Smite with an attack, you add this damage to the extra damage of your Divine Smite.", @@ -851,7 +851,7 @@ }, { "model": "api_v2.classfeature", - "pk": "indomitable", + "pk": "srd_fighter_indomitable", "fields": { "name": "Indomitable", "desc": "Beginning at 9th level, you can reroll a saving throw that you fail. If you do so, you must use the new roll, and you can't use this feature again until you finish a long rest.\r\n\r\nYou can use this feature twice between long rests starting at 13th level and three times between long rests starting at 17th level.", @@ -861,7 +861,7 @@ }, { "model": "api_v2.classfeature", - "pk": "indomitable-might", + "pk": "srd_barbarian_indomitable-might", "fields": { "name": "Indomitable Might", "desc": "Beginning at 18th level, if your total for a Strength check is less than your Strength score, you can use that score in place of the total.", @@ -871,7 +871,7 @@ }, { "model": "api_v2.classfeature", - "pk": "intimidating-presence", + "pk": "srd_path-of-the-berserker_intimidating-presence", "fields": { "name": "Intimidating Presence", "desc": "Beginning at 10th level, you can use your action to frighten someone with your menacing presence. When you do so, choose one creature that you can see within 30 feet of you. If the creature can see or hear you, it must succeed on a Wisdom saving throw (DC equal to 8 + your proficiency bonus + your Charisma modifier) or be frightened of you until the end of your next turn. On subsequent turns, you can use your action to extend the duration of this effect on the frightened creature until the end of your next turn. This effect ends if the creature ends its turn out of line of sight or more than 60 feet away from you.\r\n\r\nIf the creature succeeds on its saving throw, you can't use this feature on that creature again for 24 hours.", @@ -881,7 +881,7 @@ }, { "model": "api_v2.classfeature", - "pk": "jack-of-all-trades", + "pk": "srd_bard_jack-of-all-trades", "fields": { "name": "Jack of All Trades", "desc": "Starting at 2nd level, you can add half your proficiency bonus, rounded down, to any ability check you make that doesn't already include your proficiency bonus.", @@ -891,7 +891,7 @@ }, { "model": "api_v2.classfeature", - "pk": "ki", + "pk": "srd_monk_ki", "fields": { "name": "Ki", "desc": "Starting at 2nd level, your training allows you to harness the mystic energy of ki. Your access to this energy is represented by a number of ki points. Your monk level determines the number of points you have, as shown in the Ki Points column of the Monk table.\r\n\r\nYou can spend these points to fuel various ki features. You start knowing three such features: Flurry of Blows, Patient Defense, and Step of the Wind. You learn more ki features as you gain levels in this class.\r\n\r\nWhen you spend a ki point, it is unavailable until you finish a short or long rest, at the end of which you draw all of your expended ki back into yourself. You must spend at least 30 minutes of the rest meditating to regain your ki points.\r\n\r\nSome of your ki features require your target to make a saving throw to resist the feature's effects. The saving throw DC is calculated as follows:\r\n\r\n*Ki save DC* = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n### Flurry of Blows\r\n\r\nImmediately after you take the Attack action on your turn, you can spend 1 ki point to make two unarmed strikes as a bonus action. \r\n\r\n### Patient Defense\r\n\r\nYou can spend 1 ki point to take the Dodge action as a bonus action on your turn.\r\n\r\n### Step of the Wind\r\n\r\nYou can spend 1 ki point to take the Disengage or Dash action as a bonus action on your turn, and your jump distance is doubled for the turn.", @@ -901,7 +901,7 @@ }, { "model": "api_v2.classfeature", - "pk": "ki-empowered-strikes", + "pk": "srd_monk_ki-empowered-strikes", "fields": { "name": "Ki-Empowered Strikes", "desc": "Starting at 6th level, your unarmed strikes count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", @@ -911,7 +911,7 @@ }, { "model": "api_v2.classfeature", - "pk": "land-circle-spells", + "pk": "srd_circle-of-the-land_circle-spells", "fields": { "name": "Circle Spells", "desc": "Your mystical connection to the land infuses you with the ability to cast certain spells. At 3rd, 5th, 7th, and 9th level you gain access to circle spells connected to the land where you became a druid. Choose that land-arctic, coast, desert, forest, grassland, mountain, or swamp-and consult the associated list of spells. \r\n\r\nOnce you gain access to a circle spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day. If you gain access to a spell that doesn't appear on the druid spell list, the spell is nonetheless a druid spell for you.\r\n\r\n**Arctic (table)**\r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | hold person, spike growth | \r\n| 5th | sleet storm, slow | \r\n| 7th | freedom of movement, ice storm | \r\n| 9th | commune with nature, cone of cold | \r\n \r\n**Coast (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | mirror image, misty step | \r\n| 5th | water breathing, water walk | \r\n| 7th | control water, freedom of movement | \r\n| 9th | conjure elemental, scrying | \r\n \r\n**Desert (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | blur, silence | \r\n| 5th | create food and water, protection from energy | \r\n| 7th | blight, hallucinatory terrain | \r\n| 9th | insect plague, wall of stone | \r\n \r\n**Forest (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | barkskin, spider climb | \r\n| 5th | call lightning, plant growth | \r\n| 7th | divination, freedom of movement | \r\n| 9th | commune with nature, tree stride | \r\n \r\n**Grassland (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | invisibility, pass without trace | \r\n| 5th | daylight, haste | \r\n| 7th | divination, freedom of movement | \r\n| 9th | dream, insect plague | \r\n \r\n**Mountain (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | spider climb, spike growth | \r\n| 5th | lightning bolt, meld into stone | \r\n| 7th | stone shape, stoneskin | \r\n| 9th | passwall, wall of stone | \r\n \r\n**Swamp (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | acid arrow, darkness | \r\n| 5th | water walk, stinking cloud | \r\n| 7th | freedom of movement, locate creature | \r\n| 9th | insect plague, scrying |", @@ -921,7 +921,7 @@ }, { "model": "api_v2.classfeature", - "pk": "lands-stride", + "pk": "srd_circle-of-the-land_lands-stride", "fields": { "name": "Land's Stride", "desc": "Starting at 6th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.\r\n\r\nIn addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the entangle spell.", @@ -931,7 +931,7 @@ }, { "model": "api_v2.classfeature", - "pk": "lay-on-hands", + "pk": "srd_paladin_lay-on-hands", "fields": { "name": "Lay on Hands", "desc": "Your blessed touch can heal wounds. You have a pool of healing power that replenishes when you take a long rest. With that pool, you can restore a total number of hit points equal to your paladin level × 5.\r\n\r\nAs an action, you can touch a creature and draw power from the pool to restore a number of hit points to that creature, up to the maximum amount remaining in your pool.\r\n\r\nAlternatively, you can expend 5 hit points from your pool of healing to cure the target of one disease or neutralize one poison affecting it. You can cure multiple diseases and neutralize multiple poisons with a single use of Lay on Hands, expending hit points separately for each one.\r\n\r\nThis feature has no effect on undead and constructs.", @@ -941,7 +941,7 @@ }, { "model": "api_v2.classfeature", - "pk": "life-bonus-proficiency", + "pk": "srd_life-domain_bonus-proficiency", "fields": { "name": "Bonus Proficiency", "desc": "When you choose this domain at 1st level, you gain proficiency with heavy armor.", @@ -951,7 +951,7 @@ }, { "model": "api_v2.classfeature", - "pk": "life-domain-spells", + "pk": "srd_life-domain_life-domain-spells-table", "fields": { "name": "Life Domain Spells (table)", "desc": "Cleric Level | Spells |\r\n|---|---|\r\n| 1st | bless, cure wounds | \r\n| 3rd | lesser restoration, spiritual weapon |\r\n| 5th | beacon of hope, revivify |\r\n| 7th | death ward, guardian of faith |\r\n| 9th | mass cure wounds, raise dead |", @@ -961,7 +961,7 @@ }, { "model": "api_v2.classfeature", - "pk": "magical-secrets", + "pk": "srd_bard_magical-secrets", "fields": { "name": "Magical Secrets", "desc": "By 10th level, you have plundered magical knowledge from a wide spectrum of disciplines. Choose two spells from any class, including this one. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.\r\n\r\nThe chosen spells count as bard spells for you and are included in the number in the Spells Known column of the Bard table.\r\n\r\nYou learn two additional spells from any class at 14th level and again at 18th level.", @@ -971,7 +971,7 @@ }, { "model": "api_v2.classfeature", - "pk": "martial-archetype", + "pk": "srd_fighter_martial-archetype", "fields": { "name": "Martial Archetype", "desc": "At 3rd level, you choose an archetype that you strive to emulate in your combat styles and techniques, such as Champion. The archetype you choose grants you features at 3rd level and again at 7th, 10th, 15th, and 18th level.", @@ -981,7 +981,7 @@ }, { "model": "api_v2.classfeature", - "pk": "martial-arts", + "pk": "srd_monk_martial-arts", "fields": { "name": "Martial Arts", "desc": "At 1st level, your practice of martial arts gives you mastery of combat styles that use unarmed strikes and monk weapons, which are shortswords and any simple melee weapons that don't have the two- handed or heavy property.\r\n\r\nYou gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:\r\n\r\n* You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.\r\n* You can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.\r\n* When you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn. \r\n\r\nCertain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.", @@ -991,7 +991,7 @@ }, { "model": "api_v2.classfeature", - "pk": "metamagic", + "pk": "srd_sorcerer_metamagic", "fields": { "name": "Metamagic", "desc": "At 3rd level, you gain the ability to twist your spells to suit your needs. You gain two of the following Metamagic options of your choice. You gain another one at 10th and 17th level.\r\n\r\nYou can use only one Metamagic option on a spell when you cast it, unless otherwise noted.\r\n\r\n### Careful Spell\r\n\r\nWhen you cast a spell that forces other creatures to make a saving throw, you can protect some of those creatures from the spell's full force. To do so, you spend 1 sorcery point and choose a number of those creatures up to your Charisma modifier (minimum of one creature). A chosen creature automatically succeeds on its saving throw against the spell.\r\n\r\n### Distant Spell\r\n\r\nWhen you cast a spell that has a range of 5 feet or greater, you can spend 1 sorcery point to double the range of the spell.\r\n\r\nWhen you cast a spell that has a range of touch, you can spend 1 sorcery point to make the range of the spell 30 feet.\r\n\r\n### Empowered Spell\r\n\r\nWhen you roll damage for a spell, you can spend 1 sorcery point to reroll a number of the damage dice up to your Charisma modifier (minimum of one). You must use the new rolls.\r\n\r\nYou can use Empowered Spell even if you have already used a different Metamagic option during the casting of the spell.\r\n\r\n### Extended Spell\r\n\r\nWhen you cast a spell that has a duration of 1 minute or longer, you can spend 1 sorcery point to double its duration, to a maximum duration of 24 hours.\r\n\r\n### Heightened Spell\r\n\r\nWhen you cast a spell that forces a creature to make a saving throw to resist its effects, you can spend 3 sorcery points to give one target of the spell disadvantage on its first saving throw made against the spell.\r\n\r\n### Quickened Spell\r\n\r\nWhen you cast a spell that has a casting time of 1 action, you can spend 2 sorcery points to change the casting time to 1 bonus action for this casting.\r\n\r\n### Subtle Spell\r\n\r\nWhen you cast a spell, you can spend 1 sorcery point to cast it without any somatic or verbal components.\r\n\r\n### Twinned Spell\r\n\r\nWhen you cast a spell that targets only one creature and doesn't have a range of self, you can spend a number of sorcery points equal to the spell's level to target a second creature in range with the same spell (1 sorcery point if the spell is a cantrip).\r\n\r\nTo be eligible, a spell must be incapable of targeting more than one creature at the spell's current level. For example, magic missile and scorching ray aren't eligible, but ray of frost and chromatic orb are.", @@ -1001,7 +1001,7 @@ }, { "model": "api_v2.classfeature", - "pk": "mindless-rage", + "pk": "srd_path-of-the-berserker_mindless-rage", "fields": { "name": "Mindless Rage", "desc": "Beginning at 6th level, you can't be charmed or frightened while raging. If you are charmed or frightened when you enter your rage, the effect is suspended for the duration of the rage.", @@ -1011,7 +1011,7 @@ }, { "model": "api_v2.classfeature", - "pk": "monastic-tradition", + "pk": "srd_monk_monastic-tradition", "fields": { "name": "Monastic Tradition", "desc": "When you reach 3rd level, you commit yourself to a monastic tradition such as the Way of the Open Hand. Your tradition grants you features at 3rd level and again at 6th, 11th, and 17th level.", @@ -1021,7 +1021,7 @@ }, { "model": "api_v2.classfeature", - "pk": "monk-ability-score-improvement", + "pk": "srd_monk_ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", @@ -1031,7 +1031,7 @@ }, { "model": "api_v2.classfeature", - "pk": "monk-evasion", + "pk": "srd_monk_evasion", "fields": { "name": "Evasion", "desc": "At 7th level, your instinctive agility lets you dodge out of the way of certain area effects, such as a blue dragon's lightning breath or a fireball spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.", @@ -1041,7 +1041,7 @@ }, { "model": "api_v2.classfeature", - "pk": "monk-extra-attack", + "pk": "srd_monk_extra-attack", "fields": { "name": "Extra Attack", "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", @@ -1051,7 +1051,7 @@ }, { "model": "api_v2.classfeature", - "pk": "monk-timeless-body", + "pk": "srd_monk_timeless-body", "fields": { "name": "Timeless Body", "desc": "At 15th level, your ki sustains you so that you suffer none of the frailty of old age, and you can't be aged magically. You can still die of old age, however. In addition, you no longer need food or water.", @@ -1061,7 +1061,7 @@ }, { "model": "api_v2.classfeature", - "pk": "monk-unarmored-defense", + "pk": "srd_monk_unarmored-defense", "fields": { "name": "Unarmored Defense", "desc": "Beginning at 1st level, while you are wearing no armor and not wielding a shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.", @@ -1071,7 +1071,7 @@ }, { "model": "api_v2.classfeature", - "pk": "multiattack", + "pk": "srd_hunter_multiattack", "fields": { "name": "Multiattack", "desc": "At 11th level, you gain one of the following features of your choice.\r\n\r\n***Volley.*** You can use your action to make a ranged attack against any number of creatures within 10 feet of a point you can see within your weapon's range. You must have ammunition for each target, as normal, and you make a separate attack roll for each target.\r\n\r\n***Whirlwind Attack.*** You can use your action to make a melee attack against any number of creatures within 5 feet of you, with a separate attack roll for each target.", @@ -1081,7 +1081,7 @@ }, { "model": "api_v2.classfeature", - "pk": "mystic-arcanum", + "pk": "srd_warlock_mystic-arcanum", "fields": { "name": "Mystic Arcanum", "desc": "At 11th level, your patron bestows upon you a magical secret called an arcanum. Choose one 6th- level spell from the warlock spell list as this arcanum.\r\n\r\nYou can cast your arcanum spell once without expending a spell slot. You must finish a long rest before you can do so again.\r\n\r\nAt higher levels, you gain more warlock spells of your choice that can be cast in this way: one 7th- level spell at 13th level, one 8th-level spell at 15th level, and one 9th-level spell at 17th level. You regain all uses of your Mystic Arcanum when you finish a long rest.", @@ -1091,7 +1091,7 @@ }, { "model": "api_v2.classfeature", - "pk": "natural-explorer", + "pk": "srd_ranger_natural-explorer", "fields": { "name": "Natural Explorer", "desc": "You are particularly familiar with one type of natural environment and are adept at traveling and surviving in such regions. Choose one type of favored terrain: arctic, coast, desert, forest, grassland, mountain, or swamp. When you make an Intelligence or Wisdom check related to your favored terrain, your proficiency bonus is doubled if you are using a skill that you're proficient in.\r\n\r\nWhile traveling for an hour or more in your favored terrain, you gain the following benefits:\r\n\r\n* Difficult terrain doesn't slow your group's travel.\r\n* Your group can't become lost except by magical means.\r\n* Even when you are engaged in another activity while traveling (such as foraging, navigating, or tracking), you remain alert to danger.\r\n* If you are traveling alone, you can move stealthily at a normal pace.\r\n* When you forage, you find twice as much food as you normally would.\r\n* While tracking other creatures, you also learn their exact number, their sizes, and how long ago they passed through the area. \r\n\r\nYou choose additional favored terrain types at 6th and 10th level.", @@ -1101,7 +1101,7 @@ }, { "model": "api_v2.classfeature", - "pk": "natural-recovery", + "pk": "srd_circle-of-the-land_natural-recovery", "fields": { "name": "Natural Recovery", "desc": "Starting at 2nd level, you can regain some of your magical energy by sitting in meditation and communing with nature. During a short rest, you choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your druid level (rounded up), and none of the slots can be 6th level or higher. You can't use this feature again until you finish a long rest.\r\n\r\nFor example, when you are a 4th-level druid, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level slot or two 1st-level slots.", @@ -1111,7 +1111,7 @@ }, { "model": "api_v2.classfeature", - "pk": "natures-sanctuary", + "pk": "srd_circle-of-the-land_natures-sanctuary", "fields": { "name": "Nature's Sanctuary", "desc": "When you reach 14th level, creatures of the natural world sense your connection to nature and become hesitant to attack you. When a beast or plant creature attacks you, that creature must make a Wisdom saving throw against your druid spell save DC. On a failed save, the creature must choose a different target, or the attack automatically misses. On a successful save, the creature is immune to this effect for 24 hours.\r\n\r\nThe creature is aware of this effect before it makes its attack against you.", @@ -1121,7 +1121,7 @@ }, { "model": "api_v2.classfeature", - "pk": "natures-ward", + "pk": "srd_circle-of-the-land_natures-ward", "fields": { "name": "Nature's Ward", "desc": "When you reach 10th level, you can't be charmed or frightened by elementals or fey, and you are immune to poison and disease.", @@ -1131,7 +1131,7 @@ }, { "model": "api_v2.classfeature", - "pk": "open-hand-technique", + "pk": "srd_way-of-the-open-hand_open-hand-technique", "fields": { "name": "Open Hand Technique", "desc": "Starting when you choose this tradition at 3rd level, you can manipulate your enemy's ki when you harness your own. Whenever you hit a creature with one of the attacks granted by your Flurry of Blows, you can impose one of the following effects on that target:\r\n\r\n* It must succeed on a Dexterity saving throw or be knocked prone.\r\n* It must make a Strength saving throw. If it fails, you can push it up to 15 feet away from you.\r\n* It can't take reactions until the end of your next turn.", @@ -1141,7 +1141,7 @@ }, { "model": "api_v2.classfeature", - "pk": "otherworldly-patron", + "pk": "srd_warlock_otherworldly-patron", "fields": { "name": "Otherworldly Patron", "desc": "At 1st level, you have struck a bargain with an otherworldly being of your choice: the Archfey, the Fiend, or the Great Old One, each of which is detailed at the end of the class description. Your choice grants you features at 1st level and again at 6th, 10th, and 14th level.", @@ -1151,7 +1151,7 @@ }, { "model": "api_v2.classfeature", - "pk": "overchannel", + "pk": "srd_school-of-evocation_overchannel", "fields": { "name": "Overchannel", "desc": "Starting at 14th level, you can increase the power of your simpler spells. When you cast a wizard spell of 1st through 5th level that deals damage, you can deal maximum damage with that spell.\r\n\r\nThe first time you do so, you suffer no adverse effect. If you use this feature again before you finish a long rest, you take 2d12 necrotic damage for each level of the spell, immediately after you cast it. Each time you use this feature again before finishing a long rest, the necrotic damage per spell level increases by 1d12. This damage ignores resistance and immunity.", @@ -1161,7 +1161,7 @@ }, { "model": "api_v2.classfeature", - "pk": "pact-boon", + "pk": "srd_warlock_pact-boon", "fields": { "name": "Pact Boon", "desc": "At 3rd level, your otherworldly patron bestows a gift upon you for your loyal service. You gain one of the following features of your choice.\r\n\r\n### Pact of the Chain\r\n\r\nYou learn the find familiar spell and can cast it as a ritual. The spell doesn't count against your number of spells known.\r\n\r\nWhen you cast the spell, you can choose one of the normal forms for your familiar or one of the following special forms: imp, pseudodragon, quasit, or sprite.\r\n\r\nAdditionally, when you take the Attack action, you can forgo one of your own attacks to allow your familiar to make one attack of its own with its reaction.\r\n\r\n### Pact of the Blade\r\n\r\nYou can use your action to create a pact weapon in your empty hand. You can choose the form that this melee weapon takes each time you create it. You are proficient with it while you wield it. This weapon counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.\r\n\r\nYour pact weapon disappears if it is more than 5 feet away from you for 1 minute or more. It also disappears if you use this feature again, if you dismiss the weapon (no action required), or if you die.\r\n\r\nYou can transform one magic weapon into your pact weapon by performing a special ritual while you hold the weapon. You perform the ritual over the course of 1 hour, which can be done during a short rest. You can then dismiss the weapon, shunting it into an extradimensional space, and it appears whenever you create your pact weapon thereafter. You can't affect an artifact or a sentient weapon in this way. The weapon ceases being your pact weapon if you die, if you perform the 1-hour ritual on a different weapon, or if you use a 1-hour ritual to break your bond to it. The weapon appears at your feet if it is in the extradimensional space when the bond breaks.\r\n\r\n### Pact of the Tome\r\n\r\nYour patron gives you a grimoire called a Book of Shadows. When you gain this feature, choose three cantrips from any class's spell list (the three needn't be from the same list). While the book is on your person, you can cast those cantrips at will. They don't count against your number of cantrips known. If they don't appear on the warlock spell list, they are nonetheless warlock spells for you.\r\n\r\nIf you lose your Book of Shadows, you can perform a 1-hour ceremony to receive a replacement from your patron. This ceremony can be performed during a short or long rest, and it destroys the previous book. The book turns to ash when you die.", @@ -1171,7 +1171,7 @@ }, { "model": "api_v2.classfeature", - "pk": "pact-magic", + "pk": "srd_warlock_pact-magic", "fields": { "name": "Pact Magic", "desc": "Your arcane research and the magic bestowed on you by your patron have given you facility with spells.\r\n\r\n### Cantrips\r\n\r\nYou know two cantrips of your choice from the warlock spell list. You learn additional warlock cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Warlock table.\r\nSpell Slots\r\n\r\nThe Warlock table shows how many spell slots you have. The table also shows what the level of those slots is; all of your spell slots are the same level. To cast one of your warlock spells of 1st level or higher, you must expend a spell slot. You regain all expended spell slots when you finish a short or long rest.\r\n\r\nFor example, when you are 5th level, you have two 3rd-level spell slots. To cast the 1st-level spell thunderwave, you must spend one of those slots, and you cast it as a 3rd-level spell.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nAt 1st level, you know two 1st-level spells of your choice from the warlock spell list.\r\n\r\nThe Spells Known column of the Warlock table shows when you learn more warlock spells of your choice of 1st level and higher. A spell you choose must be of a level no higher than what's shown in the table's Slot Level column for your level. When you reach 6th level, for example, you learn a new warlock spell, which can be 1st, 2nd, or 3rd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the warlock spells you know and replace it with another spell from the warlock spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your warlock spells, so you use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a warlock spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\n\r\n### Spellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your warlock spells.", @@ -1181,7 +1181,7 @@ }, { "model": "api_v2.classfeature", - "pk": "paladin-ability-score-improvement", + "pk": "srd_paladin_ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", @@ -1191,7 +1191,7 @@ }, { "model": "api_v2.classfeature", - "pk": "paladin-extra-attack", + "pk": "srd_paladin_extra-attack", "fields": { "name": "Extra Attack", "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", @@ -1201,7 +1201,7 @@ }, { "model": "api_v2.classfeature", - "pk": "paladin-fighting-style", + "pk": "srd_paladin_fighting-style", "fields": { "name": "Fighting Style", "desc": "At 2nd level, you adopt a style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n### Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n### Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n### Great Weapon Fighting\r\n\r\nWhen you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll. The weapon must have the two-handed or versatile property for you to gain this benefit.\r\n\r\n### Protection\r\n\r\nWhen a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.", @@ -1211,7 +1211,7 @@ }, { "model": "api_v2.classfeature", - "pk": "paladin-spellcasting", + "pk": "srd_paladin_spellcasting", "fields": { "name": "Spellcasting", "desc": "By 2nd level, you have learned to draw on divine magic through meditation and prayer to cast spells as a cleric does.\r\n\r\n### Preparing and Casting Spells\r\n\r\nThe Paladin table shows how many spell slots you have to cast your spells. To cast one of your paladin spells of 1st level or higher, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of paladin spells that are available for you to cast, choosing from the paladin spell list. When you do so, choose a number of paladin spells equal to your Charisma modifier + half your paladin level, rounded down (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 5th-level paladin, you have four 1st-level and two 2nd-level spell slots. With a Charisma of 14, your list of prepared spells can include four spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or a 2nd- level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of paladin spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your paladin spells, since their power derives from the strength of your convictions. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a paladin spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\nSpellcasting Focus\r\n\r\nYou can use a holy symbol as a spellcasting focus for your paladin spells.", @@ -1221,7 +1221,7 @@ }, { "model": "api_v2.classfeature", - "pk": "peerless-skill", + "pk": "srd_college-of-lore_peerless-skill", "fields": { "name": "Peerless Skill", "desc": "Starting at 14th level, when you make an ability check, you can expend one use of Bardic Inspiration. Roll a Bardic Inspiration die and add the number rolled to your ability check. You can choose to do so after you roll the die for the ability check, but before the GM tells you whether you succeed or fail.", @@ -1231,7 +1231,7 @@ }, { "model": "api_v2.classfeature", - "pk": "perfect-self", + "pk": "srd_monk_perfect-self", "fields": { "name": "Perfect Self", "desc": "At 20th level, when you roll for initiative and have no ki points remaining, you regain 4 ki points.", @@ -1241,7 +1241,7 @@ }, { "model": "api_v2.classfeature", - "pk": "persistent-rage", + "pk": "srd_barbarian_persistent-rage", "fields": { "name": "Persistent Rage", "desc": "Beginning at 15th level, your rage is so fierce that it ends early only if you fall unconscious or if you choose to end it.", @@ -1251,7 +1251,7 @@ }, { "model": "api_v2.classfeature", - "pk": "potent-cantrip", + "pk": "srd_school-of-evocation_potent-cantrip", "fields": { "name": "Potent Cantrip", "desc": "Starting at 6th level, your damaging cantrips affect even creatures that avoid the brunt of the effect. When a creature succeeds on a saving throw against your cantrip, the creature takes half the cantrip's damage (if any) but suffers no additional effect from the cantrip.", @@ -1261,7 +1261,7 @@ }, { "model": "api_v2.classfeature", - "pk": "primal-champion", + "pk": "srd_barbarian_primal-champion", "fields": { "name": "Primal Champion", "desc": "At 20th level, you embody the power of the wilds. Your Strength and Constitution scores increase by 4. Your maximum for those scores is now 24.", @@ -1271,7 +1271,7 @@ }, { "model": "api_v2.classfeature", - "pk": "primal-path", + "pk": "srd_barbarian_primal-path", "fields": { "name": "Primal Path", "desc": "At 3rd level, you choose a path that shapes the nature of your rage. Choose the Path of the Berserker or the Path of the Totem Warrior, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th, 10th, and 14th levels.", @@ -1281,7 +1281,7 @@ }, { "model": "api_v2.classfeature", - "pk": "primeval-awareness", + "pk": "srd_ranger_primeval-awareness", "fields": { "name": "Primeval Awareness", "desc": "Beginning at 3rd level, you can use your action and expend one ranger spell slot to focus your awareness on the region around you. For 1 minute per level of the spell slot you expend, you can sense whether the following types of creatures are present within 1 mile of you (or within up to 6 miles if you are in your favored terrain): aberrations, celestials, dragons, elementals, fey, fiends, and undead. This feature doesn't reveal the creatures' location or number.", @@ -1291,7 +1291,7 @@ }, { "model": "api_v2.classfeature", - "pk": "purity-of-body", + "pk": "srd_monk_purity-of-body", "fields": { "name": "Purity of Body", "desc": "At 10th level, your mastery of the ki flowing through you makes you immune to disease and poison.", @@ -1301,7 +1301,7 @@ }, { "model": "api_v2.classfeature", - "pk": "purity-of-spirit", + "pk": "srd_oath-of-devotion_purity-of-spirit", "fields": { "name": "Purity of Spirit", "desc": "Beginning at 15th level, you are always under the effects of a *protection from evil and good* spell.", @@ -1311,7 +1311,7 @@ }, { "model": "api_v2.classfeature", - "pk": "quivering-palm", + "pk": "srd_way-of-the-open-hand_quivering-palm", "fields": { "name": "Quivering Palm", "desc": "At 17th level, you gain the ability to set up lethal vibrations in someone's body. When you hit a creature with an unarmed strike, you can spend 3 ki points to start these imperceptible vibrations, which last for a number of days equal to your monk level. The vibrations are harmless unless you use your action to end them. To do so, you and the target must be on the same plane of existence. When you use this action, the creature must make a Constitution saving throw. If it fails, it is reduced to 0 hit points. If it succeeds, it takes 10d10 necrotic damage.\r\n\r\nYou can have only one creature under the effect of this feature at a time. You can choose to end the vibrations harmlessly without using an action.", @@ -1321,7 +1321,7 @@ }, { "model": "api_v2.classfeature", - "pk": "rage", + "pk": "srd_barbarian_rage", "fields": { "name": "Rage", "desc": "In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action.\r\n\r\nWhile raging, you gain the following benefits if you aren't wearing heavy armor:\r\n\r\n* You have advantage on Strength checks and Strength saving throws.\r\n* When you make a melee weapon attack using Strength, you gain a bonus to the damage roll that increases as you gain levels as a barbarian, as shown in the Rage Damage column of the Barbarian table.\r\n* You have resistance to bludgeoning, piercing, and slashing damage. \r\n\r\nIf you are able to cast spells, you can't cast them or concentrate on them while raging.\r\n\r\nYour rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action.\r\n\r\nOnce you have raged the number of times shown for your barbarian level in the Rages column of the Barbarian table, you must finish a long rest before you can rage again.", @@ -1331,7 +1331,7 @@ }, { "model": "api_v2.classfeature", - "pk": "ranger-ability-score-improvement", + "pk": "srd_ranger_ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", @@ -1341,7 +1341,7 @@ }, { "model": "api_v2.classfeature", - "pk": "ranger-archetype", + "pk": "srd_ranger_ranger-archetype", "fields": { "name": "Ranger Archetype", "desc": "At 3rd level, you choose an archetype that you strive to emulate: Hunter or Beast Master, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 7th, 11th, and 15th level.", @@ -1351,7 +1351,7 @@ }, { "model": "api_v2.classfeature", - "pk": "ranger-extra-attack", + "pk": "srd_ranger_extra-attack", "fields": { "name": "Extra Attack", "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", @@ -1361,7 +1361,7 @@ }, { "model": "api_v2.classfeature", - "pk": "ranger-fighting-style", + "pk": "srd_ranger_fighting-style", "fields": { "name": "Fighting Style", "desc": "At 2nd level, you adopt a particular style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n### Archery\r\n\r\nYou gain a +2 bonus to attack rolls you make with ranged weapons.\r\n\r\n### Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n### Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n### Two-Weapon Fighting\r\n\r\nWhen you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.", @@ -1371,7 +1371,7 @@ }, { "model": "api_v2.classfeature", - "pk": "ranger-lands-stride", + "pk": "srd_ranger_lands-stride", "fields": { "name": "Land's Stride", "desc": "Starting at 8th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.\r\n\r\nIn addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the entangle spell.", @@ -1381,7 +1381,7 @@ }, { "model": "api_v2.classfeature", - "pk": "ranger-spellcasting", + "pk": "srd_ranger_spellcasting", "fields": { "name": "Spellcasting", "desc": "By the time you reach 2nd level, you have learned to use the magical essence of nature to cast spells, much as a druid does. See chapter 10 for the general rules of spellcasting and chapter 11 for the ranger spell list.\r\n\r\n### Spell Slots\r\n\r\nThe Ranger table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell animal friendship and have a 1st-level and a 2nd-level spell slot available, you can cast animal friendship using either slot.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nYou know two 1st-level spells of your choice from the ranger spell list.\r\n\r\nThe Spells Known column of the Ranger table shows when you learn more ranger spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 5th level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the ranger spells you know and replace it with another spell from the ranger spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your ranger spells, since your magic draws on your attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a ranger spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier", @@ -1391,7 +1391,7 @@ }, { "model": "api_v2.classfeature", - "pk": "reckless-attack", + "pk": "srd_barbarian_reckless-attack", "fields": { "name": "Reckless Attack", "desc": "Starting at 2nd level, you can throw aside all concern for defense to attack with fierce desperation. When you make your first attack on your turn, you can decide to attack recklessly. Doing so gives you advantage on melee weapon attack rolls using Strength during this turn, but attack rolls against you have advantage until your next turn.", @@ -1401,7 +1401,7 @@ }, { "model": "api_v2.classfeature", - "pk": "relentless-rage", + "pk": "srd_barbarian_relentless-rage", "fields": { "name": "Relentless Rage", "desc": "Starting at 11th level, your rage can keep you fighting despite grievous wounds. If you drop to 0 hit points while you’re raging and don’t die outright, you can make a DC 10 Constitution saving throw. If you succeed, you drop to 1 hit point instead.\r\n\r\nEach time you use this feature after the first, the DC increases by 5. When you finish a short or long rest, the DC resets to 10.", @@ -1411,7 +1411,7 @@ }, { "model": "api_v2.classfeature", - "pk": "reliable-talent", + "pk": "srd_rogue_reliable-talent", "fields": { "name": "Reliable Talent", "desc": "By 11th level, you have refined your chosen skills until they approach perfection. Whenever you make an ability check that lets you add your proficiency bonus, you can treat a d20 roll of 9 or lower as a 10.", @@ -1421,7 +1421,7 @@ }, { "model": "api_v2.classfeature", - "pk": "remarkable-athlete", + "pk": "srd_champion_remarkable-athlete", "fields": { "name": "Remarkable Athlete", "desc": "Starting at 7th level, you can add half your proficiency bonus (round up) to any Strength, Dexterity, or Constitution check you make that doesn't already use your proficiency bonus.\r\n\r\nIn addition, when you make a running long jump, the distance you can cover increases by a number of feet equal to your Strength modifier.", @@ -1431,7 +1431,7 @@ }, { "model": "api_v2.classfeature", - "pk": "retaliation", + "pk": "srd_path-of-the-berserker_retaliation", "fields": { "name": "Retaliation", "desc": "Starting at 14th level, when you take damage from a creature that is within 5 feet of you, you can use your reaction to make a melee weapon attack against that creature.", @@ -1441,7 +1441,7 @@ }, { "model": "api_v2.classfeature", - "pk": "rogue-ability-score-improvement", + "pk": "srd_rogue_ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 10th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", @@ -1451,7 +1451,7 @@ }, { "model": "api_v2.classfeature", - "pk": "rogue-evasion", + "pk": "srd_rogue_evasion", "fields": { "name": "Evasion", "desc": "Beginning at 7th level, you can nimbly dodge out of the way of certain area effects, such as a red dragon's fiery breath or an ice storm spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.", @@ -1461,7 +1461,7 @@ }, { "model": "api_v2.classfeature", - "pk": "rogue-expertise", + "pk": "srd_rogue_expertise", "fields": { "name": "Expertise", "desc": "At 1st level, choose two of your skill proficiencies, or one of your skill proficiencies and your proficiency with thieves' tools. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.\r\n\r\nAt 6th level, you can choose two more of your proficiencies (in skills or with thieves' tools) to gain this benefit.", @@ -1471,7 +1471,7 @@ }, { "model": "api_v2.classfeature", - "pk": "roguish-archetype", + "pk": "srd_rogue_roguish-archetype", "fields": { "name": "Roguish Archetype", "desc": "At 3rd level, you choose an archetype that you emulate in the exercise of your rogue abilities: Thief, Assassin, or Arcane Trickster, all detailed at the end of the class description. Your archetype choice grants you features at 3rd level and then again at 9th, 13th, and 17th level.", @@ -1481,7 +1481,7 @@ }, { "model": "api_v2.classfeature", - "pk": "sacred-oath", + "pk": "srd_paladin_sacred-oath", "fields": { "name": "Sacred Oath", "desc": "When you reach 3rd level, you swear the oath that binds you as a paladin forever. Up to this time you have been in a preparatory stage, committed to the path but not yet sworn to it. Now you choose the Oath of Devotion, the Oath of the Ancients, or the Oath of Vengeance, all detailed at the end of the class description.\r\n\r\nYour choice grants you features at 3rd level and again at 7th, 15th, and 20th level. Those features include oath spells and the Channel Divinity feature.\r\n\r\n### Oath Spells\r\n\r\nEach oath has a list of associated spells. You gain access to these spells at the levels specified in the oath description. Once you gain access to an oath spell, you always have it prepared. Oath spells don't count against the number of spells you can prepare each day.\r\n\r\nIf you gain an oath spell that doesn't appear on the paladin spell list, the spell is nonetheless a paladin spell for you.\r\n\r\n### Channel Divinity\r\n\r\nYour oath allows you to channel divine energy to fuel magical effects. Each Channel Divinity option provided by your oath explains how to use it.\r\n\r\nWhen you use your Channel Divinity, you choose which option to use. You must then finish a short or long rest to use your Channel Divinity again.\r\n\r\nSome Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your paladin spell save DC.", @@ -1491,7 +1491,7 @@ }, { "model": "api_v2.classfeature", - "pk": "sculpt-spells", + "pk": "srd_school-of-evocation_sculpt-spells", "fields": { "name": "Sculpt Spells", "desc": "Beginning at 2nd level, you can create pockets of relative safety within the effects of your evocation spells. When you cast an evocation spell that affects other creatures that you can see, you can choose a number of them equal to 1 + the spell's level. The chosen creatures automatically succeed on their saving throws against the spell, and they take no damage if they would normally take half damage on a successful save.", @@ -1501,7 +1501,7 @@ }, { "model": "api_v2.classfeature", - "pk": "second-story-work", + "pk": "srd_thief_second-story-work", "fields": { "name": "Second-Story Work", "desc": "When you choose this archetype at 3rd level, you gain the ability to climb faster than normal; climbing no longer costs you extra movement.\r\n\r\nIn addition, when you make a running jump, the distance you cover increases by a number of feet equal to your Dexterity modifier.", @@ -1511,7 +1511,7 @@ }, { "model": "api_v2.classfeature", - "pk": "second-wind", + "pk": "srd_fighter_second-wind", "fields": { "name": "Second Wind", "desc": "You have a limited well of stamina that you can draw on to protect yourself from harm. On your turn, you can use a bonus action to regain hit points equal to 1d10 + your fighter level. Once you use this feature, you must finish a short or long rest before you can use it again.", @@ -1521,7 +1521,7 @@ }, { "model": "api_v2.classfeature", - "pk": "signature-spells", + "pk": "srd_wizard_signature-spells", "fields": { "name": "Signature Spells", "desc": "When you reach 20th level, you gain mastery over two powerful spells and can cast them with little effort. Choose two 3rd-level wizard spells in your spellbook as your signature spells. You always have these spells prepared, they don't count against the number of spells you have prepared, and you can cast each of them once at 3rd level without expending a spell slot. When you do so, you can't do so again until you finish a short or long rest.\r\n\r\nIf you want to cast either spell at a higher level, you must expend a spell slot as normal.", @@ -1531,7 +1531,7 @@ }, { "model": "api_v2.classfeature", - "pk": "slippery-mind", + "pk": "srd_rogue_slippery-mind", "fields": { "name": "Slippery Mind", "desc": "By 15th level, you have acquired greater mental strength. You gain proficiency in Wisdom saving throws.", @@ -1541,7 +1541,7 @@ }, { "model": "api_v2.classfeature", - "pk": "slow-fall", + "pk": "srd_monk_slow-fall", "fields": { "name": "Slow Fall", "desc": "Beginning at 4th level, you can use your reaction when you fall to reduce any falling damage you take by an amount equal to five times your monk level.", @@ -1551,7 +1551,7 @@ }, { "model": "api_v2.classfeature", - "pk": "sneak-attack", + "pk": "srd_rogue_sneak-attack", "fields": { "name": "Sneak Attack", "desc": "Beginning at 1st level, you know how to strike subtly and exploit a foe's distraction. Once per turn, you can deal an extra 1d6 damage to one creature you hit with an attack if you have advantage on the attack roll. The attack must use a finesse or a ranged weapon.\r\n\r\nYou don't need advantage on the attack roll if another enemy of the target is within 5 feet of it, that enemy isn't incapacitated, and you don't have disadvantage on the attack roll.\r\n\r\nThe amount of the extra damage increases as you gain levels in this class, as shown in the Sneak Attack column of the Rogue table.", @@ -1561,7 +1561,7 @@ }, { "model": "api_v2.classfeature", - "pk": "song-of-rest", + "pk": "srd_bard_song-of-rest", "fields": { "name": "Song of Rest", "desc": "Beginning at 2nd level, you can use soothing music or oration to help revitalize your wounded allies during a short rest. If you or any friendly creatures who can hear your performance regain hit points at the end of the short rest by spending one or more Hit Dice, each of those creatures regains an extra 1d6 hit points.\r\n\r\nThe extra hit points increase when you reach certain levels in this class: to 1d8 at 9th level, to 1d10 at 13th level, and to 1d12 at 17th level.", @@ -1571,7 +1571,7 @@ }, { "model": "api_v2.classfeature", - "pk": "sorceror-ability-score-improvement", + "pk": "srd_sorcerer_ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", @@ -1581,7 +1581,7 @@ }, { "model": "api_v2.classfeature", - "pk": "sorceror-spellcasting", + "pk": "srd_sorcerer_spellcasting", "fields": { "name": "Spellcasting", "desc": "An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your spells.\r\n\r\n### Cantrips\r\n\r\nAt 1st level, you know four cantrips of your choice from the sorcerer spell list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.\r\n\r\n### Spell Slots\r\n\r\nThe Sorcerer table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these sorcerer spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell burning hands and have a 1st-level and a 2nd-level spell slot available, you can cast burning hands using either slot.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nYou know two 1st-level spells of your choice from the sorcerer spell list.\r\n\r\nThe Spells Known column of the Sorcerer table shows when you learn more sorcerer spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the sorcerer spells you know and replace it with another spell from the sorcerer spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your sorcerer spells, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC = 8** + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\nSpellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your sorcerer spells.", @@ -1591,7 +1591,7 @@ }, { "model": "api_v2.classfeature", - "pk": "sorcerous-origin", + "pk": "srd_sorcerer_sorcerous-origin", "fields": { "name": "Sorcerous Origin", "desc": "Choose a sorcerous origin, which describes the source of your innate magical power: Draconic Bloodline or Wild Magic, both detailed at the end of the class description.\r\n\r\nYour choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.", @@ -1601,7 +1601,7 @@ }, { "model": "api_v2.classfeature", - "pk": "sorcerous-restoration", + "pk": "srd_sorcerer_sorcerous-restoration", "fields": { "name": "Sorcerous Restoration", "desc": "At 20th level, you regain 4 expended sorcery points whenever you finish a short rest.", @@ -1611,7 +1611,7 @@ }, { "model": "api_v2.classfeature", - "pk": "spell-mastery", + "pk": "srd_wizard_spell-mastery", "fields": { "name": "Spell Mastery", "desc": "At 18th level, you have achieved such mastery over certain spells that you can cast them at will. Choose a 1st-level wizard spell and a 2nd-level wizard spell that are in your spellbook. You can cast those spells at their lowest level without expending a spell slot when you have them prepared. If you want to cast either spell at a higher level, you must expend a spell slot as normal.\r\n\r\nBy spending 8 hours in study, you can exchange one or both of the spells you chose for different spells of the same levels.", @@ -1621,7 +1621,7 @@ }, { "model": "api_v2.classfeature", - "pk": "stillness-of-mind", + "pk": "srd_monk_stillness-of-mind", "fields": { "name": "Stillness of Mind", "desc": "Starting at 7th level, you can use your action to end one effect on yourself that is causing you to be charmed or frightened.", @@ -1631,7 +1631,7 @@ }, { "model": "api_v2.classfeature", - "pk": "stunning-strike", + "pk": "srd_monk_stunning-strike", "fields": { "name": "Stunning Strike", "desc": "Starting at 5th level, you can interfere with the flow of ki in an opponent's body. When you hit another creature with a melee weapon attack, you can spend 1 ki point to attempt a stunning strike. The target must succeed on a Constitution saving throw or be stunned until the end of your next turn.", @@ -1641,7 +1641,7 @@ }, { "model": "api_v2.classfeature", - "pk": "superior-critical", + "pk": "srd_champion_superior-critical", "fields": { "name": "Superior Critical", "desc": "Starting at 15th level, your weapon attacks score a critical hit on a roll of 18-20.", @@ -1651,7 +1651,7 @@ }, { "model": "api_v2.classfeature", - "pk": "superior-hunters-defense", + "pk": "srd_hunter_superior-hunters-defense", "fields": { "name": "Superior Hunter's Defense", "desc": "At 15th level, you gain one of the following features of your choice.\r\n\r\n***Evasion.*** When you are subjected to an effect, such as a red dragon's fiery breath or a lightning bolt spell, that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.\r\n\r\n***Stand Against the Tide.*** When a hostile creature misses you with a melee attack, you can use your reaction to force that creature to repeat the same attack against another creature (other than itself) of your choice.\r\n\r\n***Uncanny Dodge.*** When an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.", @@ -1661,7 +1661,7 @@ }, { "model": "api_v2.classfeature", - "pk": "superior-inspiration", + "pk": "srd_bard_superior-inspiration", "fields": { "name": "Superior Inspiration", "desc": "At 20th level, when you roll initiative and have no uses of Bardic Inspiration left, you regain one use.", @@ -1671,7 +1671,7 @@ }, { "model": "api_v2.classfeature", - "pk": "supreme-healing", + "pk": "srd_life-domain_supreme-healing", "fields": { "name": "Supreme Healing", "desc": "Starting at 17th level, when you would normally roll one or more dice to restore hit points with a spell, you instead use the highest number possible for each die. For example, instead of restoring 2d6 hit points to a creature, you restore 12.", @@ -1681,7 +1681,7 @@ }, { "model": "api_v2.classfeature", - "pk": "supreme-sneak", + "pk": "srd_thief_supreme-sneak", "fields": { "name": "Supreme Sneak", "desc": "Starting at 9th level, you have advantage on a Dexterity (Stealth) check if you move no more than half your speed on the same turn.", @@ -1691,7 +1691,7 @@ }, { "model": "api_v2.classfeature", - "pk": "survivor", + "pk": "srd_champion_survivor", "fields": { "name": "Survivor", "desc": "At 18th level, you attain the pinnacle of resilience in battle. At the start of each of your turns, you regain hit points equal to 5 + your Constitution modifier if you have no more than half of your hit points left. You don't gain this benefit if you have 0 hit points.", @@ -1701,7 +1701,7 @@ }, { "model": "api_v2.classfeature", - "pk": "tenets-of-devotion", + "pk": "srd_oath-of-devotion_tenets-of-devotion", "fields": { "name": "Tenets of Devotion", "desc": "Though the exact words and strictures of the Oath of Devotion vary, paladins of this oath share these tenets.\r\n\r\n*Honesty.* Don't lie or cheat. Let your word be your promise.\r\n\r\n*Courage.* Never fear to act, though caution is wise.\r\n\r\n*Compassion.* Aid others, protect the weak, and punish those who threaten them. Show mercy to your foes, but temper it with wisdom.\r\n\r\n*Honor.* Treat others with fairness, and let your honorable deeds be an example to them. Do as much good as possible while causing the least amount of harm.\r\n\r\n*Duty.* Be responsible for your actions and their consequences, protect those entrusted to your care, and obey those who have just authority over you.", @@ -1711,7 +1711,7 @@ }, { "model": "api_v2.classfeature", - "pk": "thiefs-reflexes", + "pk": "srd_thief_thiefs-reflexes", "fields": { "name": "Thief's Reflexes", "desc": "When you reach 17th level, you have become adept at laying ambushes and quickly escaping danger. You can take two turns during the first round of any combat. You take your first turn at your normal initiative and your second turn at your initiative minus 10. You can't use this feature when you are surprised.", @@ -1721,7 +1721,7 @@ }, { "model": "api_v2.classfeature", - "pk": "thieves-cant", + "pk": "srd_rogue_thieves-cant", "fields": { "name": "Thieves' Cant", "desc": "During your rogue training you learned thieves' cant, a secret mix of dialect, jargon, and code that allows you to hide messages in seemingly normal conversation. Only another creature that knows thieves' cant understands such messages. It takes four times longer to convey such a message than it does to speak the same idea plainly.\r\n\r\nIn addition, you understand a set of secret signs and symbols used to convey short, simple messages, such as whether an area is dangerous or the territory of a thieves' guild, whether loot is nearby, or whether the people in an area are easy marks or will provide a safe house for thieves on the run.", @@ -1731,7 +1731,7 @@ }, { "model": "api_v2.classfeature", - "pk": "tongue-of-the-sun-and-moon", + "pk": "srd_monk_tongue-of-the-sun-and-moon", "fields": { "name": "Tongue of the Sun and Moon", "desc": "Starting at 13th level, you learn to touch the ki of other minds so that you understand all spoken languages. Moreover, any creature that can understand a language can understand what you say.", @@ -1741,7 +1741,7 @@ }, { "model": "api_v2.classfeature", - "pk": "tranquility", + "pk": "srd_way-of-the-open-hand_tranquility", "fields": { "name": "Tranquility", "desc": "Beginning at 11th level, you can enter a special meditation that surrounds you with an aura of peace. At the end of a long rest, you gain the effect of a sanctuary spell that lasts until the start of your next long rest (the spell can end early as normal). The saving throw DC for the spell equals 8 + your Wisdom modifier + your proficiency bonus.", @@ -1751,7 +1751,7 @@ }, { "model": "api_v2.classfeature", - "pk": "unarmored-movement", + "pk": "srd_monk_unarmored-movement", "fields": { "name": "Unarmored Movement", "desc": "Starting at 2nd level, your speed increases by 10 feet while you are not wearing armor or wielding a shield. This bonus increases when you reach certain monk levels, as shown in the Monk table.\r\n\r\nAt 9th level, you gain the ability to move along vertical surfaces and across liquids on your turn without falling during the move.", @@ -1761,7 +1761,7 @@ }, { "model": "api_v2.classfeature", - "pk": "uncanny-dodge", + "pk": "srd_rogue_uncanny-dodge", "fields": { "name": "Uncanny Dodge", "desc": "Starting at 5th level, when an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.", @@ -1771,7 +1771,7 @@ }, { "model": "api_v2.classfeature", - "pk": "use-magic-device", + "pk": "srd_thief_use-magic-device", "fields": { "name": "Use Magic Device", "desc": "By 13th level, you have learned enough about the workings of magic that you can improvise the use of items even when they are not intended for you. You ignore all class, race, and level requirements on the use of magic items.", @@ -1781,7 +1781,7 @@ }, { "model": "api_v2.classfeature", - "pk": "vanish", + "pk": "srd_ranger_vanish", "fields": { "name": "Vanish", "desc": "Starting at 14th level, you can use the Hide action as a bonus action on your turn. Also, you can't be tracked by nonmagical means, unless you choose to leave a trail.", @@ -1791,7 +1791,7 @@ }, { "model": "api_v2.classfeature", - "pk": "warlock-ability-score-improvement", + "pk": "srd_warlock_ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", @@ -1801,7 +1801,7 @@ }, { "model": "api_v2.classfeature", - "pk": "wholeness-of-body", + "pk": "srd_way-of-the-open-hand_wholeness-of-body", "fields": { "name": "Wholeness of Body", "desc": "At 6th level, you gain the ability to heal yourself. As an action, you can regain hit points equal to three times your monk level. You must finish a long rest before you can use this feature again.", @@ -1811,7 +1811,7 @@ }, { "model": "api_v2.classfeature", - "pk": "wild-shape", + "pk": "srd_druid_wild-shape", "fields": { "name": "Wild Shape", "desc": "Starting at 2nd level, you can use your action to magically assume the shape of a beast that you have seen before. You can use this feature twice. You regain expended uses when you finish a short or long rest.\r\n\r\nYour druid level determines the beasts you can transform into, as shown in the Beast Shapes table. At 2nd level, for example, you can transform into any beast that has a challenge rating of 1/4 or lower that doesn't have a flying or swimming speed.\r\n\r\n| Level | Max. CR | Limitations | Example |\r\n| --- | --- | --- | --- |\r\n| 2nd | 1/4 | No flying or swimming speed | Wolf |\r\n| 4th | 1/2 | No flying speed | Crocodile |\r\n| 8th | 1 | - | Giant Eagle |\r\n\r\nYou can stay in a beast shape for a number of hours equal to half your druid level (rounded down). You then revert to your normal form unless you expend another use of this feature. You can revert to your normal form earlier by using a bonus action on your turn. You automatically revert if you fall unconscious, drop to 0 hit points, or die.\r\n\r\nWhile you are transformed, the following rules apply:\r\nYour game statistics are replaced by the statistics of the beast, but you retain your alignment, personality, and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus in its stat block is higher than yours, use the creature's bonus instead of yours. If the creature has any legendary or lair actions, you can't use them.\r\n\r\nWhen you transform, you assume the beast's hit points and Hit Dice. When you revert to your normal form, you return to the number of hit points you had before you transformed. However, if you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. For example, if you take 10 damage in animal form and have only 1 hit point left, you revert and take 9 damage. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious.\r\n\r\nYou can't cast spells, and your ability to speak or take any action that requires hands is limited to the capabilities of your beast form. Transforming doesn't break your concentration on a spell you've already cast, however, or prevent you from taking actions that are part of a spell, such as call lightning, that you've already cast.\r\n\r\nYou retain the benefit of any features from your class, race, or other source and can use them if the new form is physically capable of doing so. However, you can't use any of your special senses, such as darkvision, unless your new form also has that sense.\r\n\r\nYou choose whether your equipment falls to the ground in your space, merges into your new form, or is worn by it. Worn equipment functions as normal, but the GM decides whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change size or shape to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge with it. Equipment that merges with the form has no effect until you leave the form.", @@ -1821,7 +1821,7 @@ }, { "model": "api_v2.classfeature", - "pk": "wizard-ability-score-improvement", + "pk": "srd_wizard_ability-score-improvement", "fields": { "name": "Ability Score Improvement", "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", @@ -1831,7 +1831,7 @@ }, { "model": "api_v2.classfeature", - "pk": "wizard-spellcasting", + "pk": "srd_wizard_spellcasting", "fields": { "name": "Spellcasting", "desc": "As a student of arcane magic, you have a spellbook containing spells that show the first glimmerings of your true power.\r\n\r\n### Cantrips\r\n\r\nAt 1st level, you know three cantrips of your choice from the wizard spell list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.\r\n\r\n### Spellbook\r\n\r\nAt 1st level, you have a spellbook containing six 1st- level wizard spells of your choice. Your spellbook is the repository of the wizard spells you know, except your cantrips, which are fixed in your mind.\r\n\r\n### Preparing and Casting Spells\r\n\r\nThe Wizard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of wizard spells that are available for you to cast. To do so, choose a number of wizard spells from your spellbook equal to your Intelligence modifier + your wizard level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you're a 3rd-level wizard, you have four 1st-level and two 2nd-level spell slots. With an Intelligence of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination, chosen from your spellbook. If you prepare the 1st-level spell magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of wizard spells requires time spent studying your spellbook and memorizing the incantations and gestures you must make to cast the spell: at least 1 minute per spell level for each spell on your list.\r\n\r\n### Spellcasting Ability\r\n\r\nIntelligence is your spellcasting ability for your wizard spells, since you learn your spells through dedicated study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Intelligence modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Intelligence modifier\r\n\r\n### Ritual Casting\r\n\r\nYou can cast a wizard spell as a ritual if that spell has the ritual tag and you have the spell in your spellbook. You don't need to have the spell prepared.\r\n\r\n### Spellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your wizard spells.\r\n\r\n### Learning Spells of 1st Level and Higher\r\n\r\nEach time you gain a wizard level, you can add two wizard spells of your choice to your spellbook for free. Each of these spells must be of a level for which you have spell slots, as shown on the Wizard table. On your adventures, you might find other spells that you can add to your spellbook (see the “Your Spellbook” sidebar).", diff --git a/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json b/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json index 385becdc..3583c1d0 100644 --- a/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json +++ b/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json @@ -3,7 +3,7 @@ "model": "api_v2.classfeatureitem", "pk": "rage_1", "fields": { - "parent": "rage", + "parent": "srd_barbarian_rage", "level": 1 } }, @@ -11,7 +11,7 @@ "model": "api_v2.classfeatureitem", "pk": "barbarian-unarmored-defense_1", "fields": { - "parent": "barbarian-unarmored-defense", + "parent": "srd_barbarian_unarmored-defense", "level": 1 } }, @@ -19,7 +19,7 @@ "model": "api_v2.classfeatureitem", "pk": "reckless-attack_2", "fields": { - "parent": "reckless-attack", + "parent": "srd_barbarian_reckless-attack", "level": 2 } }, @@ -27,7 +27,7 @@ "model": "api_v2.classfeatureitem", "pk": "danger-sense_2", "fields": { - "parent": "danger-sense", + "parent": "srd_barbarian_danger-sense", "level": 2 } }, @@ -35,7 +35,7 @@ "model": "api_v2.classfeatureitem", "pk": "primal-path_3", "fields": { - "parent": "primal-path", + "parent": "srd_barbarian_primal-path", "level": 3 } }, @@ -43,7 +43,7 @@ "model": "api_v2.classfeatureitem", "pk": "barbarian-ability-score-improvement_4", "fields": { - "parent": "barbarian-ability-score-improvement", + "parent": "srd_barbarian_ability-score-improvement", "level": 4 } }, @@ -51,7 +51,7 @@ "model": "api_v2.classfeatureitem", "pk": "barbarian-extra-attack_5", "fields": { - "parent": "barbarian-extra-attack", + "parent": "srd_barbarian_extra-attack", "level": 5 } }, @@ -59,7 +59,7 @@ "model": "api_v2.classfeatureitem", "pk": "fast-movement_5", "fields": { - "parent": "fast-movement", + "parent": "srd_barbarian_fast-movement", "level": 5 } }, @@ -67,7 +67,7 @@ "model": "api_v2.classfeatureitem", "pk": "feral-instinct_7", "fields": { - "parent": "feral-instinct", + "parent": "srd_barbarian_feral-instinct", "level": 7 } }, @@ -75,7 +75,7 @@ "model": "api_v2.classfeatureitem", "pk": "barbarian-ability-score-improvement_8", "fields": { - "parent": "barbarian-ability-score-improvement", + "parent": "srd_barbarian_ability-score-improvement", "level": 8 } }, @@ -83,7 +83,7 @@ "model": "api_v2.classfeatureitem", "pk": "brutal-critical_9", "fields": { - "parent": "brutal-critical", + "parent": "srd_barbarian_brutal-critical", "level": 9 } }, @@ -91,7 +91,7 @@ "model": "api_v2.classfeatureitem", "pk": "relentless-rage_11", "fields": { - "parent": "relentless-rage", + "parent": "srd_barbarian_relentless-rage", "level": 11 } }, @@ -99,7 +99,7 @@ "model": "api_v2.classfeatureitem", "pk": "barbarian-ability-score-improvement_12", "fields": { - "parent": "barbarian-ability-score-improvement", + "parent": "srd_barbarian_ability-score-improvement", "level": 12 } }, @@ -107,7 +107,7 @@ "model": "api_v2.classfeatureitem", "pk": "brutal-critical_13", "fields": { - "parent": "brutal-critical", + "parent": "srd_barbarian_brutal-critical", "level": 13 } }, @@ -115,7 +115,7 @@ "model": "api_v2.classfeatureitem", "pk": "persistent-rage_15", "fields": { - "parent": "persistent-rage", + "parent": "srd_barbarian_persistent-rage", "level": 15 } }, @@ -123,7 +123,7 @@ "model": "api_v2.classfeatureitem", "pk": "barbarian-ability-score-improvement_16", "fields": { - "parent": "barbarian-ability-score-improvement", + "parent": "srd_barbarian_ability-score-improvement", "level": 16 } }, @@ -131,7 +131,7 @@ "model": "api_v2.classfeatureitem", "pk": "brutal-critical_17", "fields": { - "parent": "brutal-critical", + "parent": "srd_barbarian_brutal-critical", "level": 17 } }, @@ -139,7 +139,7 @@ "model": "api_v2.classfeatureitem", "pk": "indomitable-might_18", "fields": { - "parent": "indomitable-might", + "parent": "srd_barbarian_indomitable-might", "level": 18 } }, @@ -147,7 +147,7 @@ "model": "api_v2.classfeatureitem", "pk": "barbarian-ability-score-improvement_19", "fields": { - "parent": "barbarian-ability-score-improvement", + "parent": "srd_barbarian_ability-score-improvement", "level": 19 } }, @@ -155,7 +155,7 @@ "model": "api_v2.classfeatureitem", "pk": "primal-champion_20", "fields": { - "parent": "primal-champion", + "parent": "srd_barbarian_primal-champion", "level": 20 } }, @@ -163,7 +163,7 @@ "model": "api_v2.classfeatureitem", "pk": "frenzy_3", "fields": { - "parent": "frenzy", + "parent": "srd_path-of-the-berserker_frenzy", "level": 3 } }, @@ -171,7 +171,7 @@ "model": "api_v2.classfeatureitem", "pk": "mindless-rage_6", "fields": { - "parent": "mindless-rage", + "parent": "srd_path-of-the-berserker_mindless-rage", "level": 6 } }, @@ -179,7 +179,7 @@ "model": "api_v2.classfeatureitem", "pk": "intimidating-presence_10", "fields": { - "parent": "intimidating-presence", + "parent": "srd_path-of-the-berserker_intimidating-presence", "level": 10 } }, @@ -187,7 +187,7 @@ "model": "api_v2.classfeatureitem", "pk": "retaliation_14", "fields": { - "parent": "retaliation", + "parent": "srd_path-of-the-berserker_retaliation", "level": 14 } }, @@ -195,7 +195,7 @@ "model": "api_v2.classfeatureitem", "pk": "bard-spellcasting_1", "fields": { - "parent": "bard-spellcasting", + "parent": "srd_bard_spellcasting", "level": 1 } }, @@ -203,7 +203,7 @@ "model": "api_v2.classfeatureitem", "pk": "bardic-inspiration_1", "fields": { - "parent": "bardic-inspiration", + "parent": "srd_bard_bardic-inspiration", "level": 1 } }, @@ -211,7 +211,7 @@ "model": "api_v2.classfeatureitem", "pk": "jack-of-all-trades_2", "fields": { - "parent": "jack-of-all-trades", + "parent": "srd_bard_jack-of-all-trades", "level": 2 } }, @@ -219,7 +219,7 @@ "model": "api_v2.classfeatureitem", "pk": "song-of-rest_2", "fields": { - "parent": "song-of-rest", + "parent": "srd_bard_song-of-rest", "level": 2 } }, @@ -227,7 +227,7 @@ "model": "api_v2.classfeatureitem", "pk": "bard-college_3", "fields": { - "parent": "bard-college", + "parent": "srd_bard_bard-college", "level": 3 } }, @@ -235,7 +235,7 @@ "model": "api_v2.classfeatureitem", "pk": "bard-expertise_3", "fields": { - "parent": "bard-expertise", + "parent": "srd_bard_expertise", "level": 3 } }, @@ -243,7 +243,7 @@ "model": "api_v2.classfeatureitem", "pk": "bard-ability-score-improvement_4", "fields": { - "parent": "bard-ability-score-improvement", + "parent": "srd_bard_ability-score-improvement", "level": 4 } }, @@ -251,7 +251,7 @@ "model": "api_v2.classfeatureitem", "pk": "bardic-inspiration_5", "fields": { - "parent": "bardic-inspiration", + "parent": "srd_bard_bardic-inspiration", "level": 5 } }, @@ -259,7 +259,7 @@ "model": "api_v2.classfeatureitem", "pk": "font-of-inspiration_5", "fields": { - "parent": "font-of-inspiration", + "parent": "srd_bard_font-of-inspiration", "level": 5 } }, @@ -267,7 +267,7 @@ "model": "api_v2.classfeatureitem", "pk": "countercharm_6", "fields": { - "parent": "countercharm", + "parent": "srd_bard_countercharm", "level": 6 } }, @@ -275,7 +275,7 @@ "model": "api_v2.classfeatureitem", "pk": "bard-ability-score-improvement_8", "fields": { - "parent": "bard-ability-score-improvement", + "parent": "srd_bard_ability-score-improvement", "level": 8 } }, @@ -283,7 +283,7 @@ "model": "api_v2.classfeatureitem", "pk": "song-of-rest_9", "fields": { - "parent": "song-of-rest", + "parent": "srd_bard_song-of-rest", "level": 9 } }, @@ -291,7 +291,7 @@ "model": "api_v2.classfeatureitem", "pk": "bardic-inspiration_10", "fields": { - "parent": "bardic-inspiration", + "parent": "srd_bard_bardic-inspiration", "level": 10 } }, @@ -299,7 +299,7 @@ "model": "api_v2.classfeatureitem", "pk": "bard-expertise_10", "fields": { - "parent": "bard-expertise", + "parent": "srd_bard_expertise", "level": 10 } }, @@ -307,7 +307,7 @@ "model": "api_v2.classfeatureitem", "pk": "magical-secrets_10", "fields": { - "parent": "magical-secrets", + "parent": "srd_bard_magical-secrets", "level": 10 } }, @@ -315,7 +315,7 @@ "model": "api_v2.classfeatureitem", "pk": "bard-ability-score-improvement_12", "fields": { - "parent": "bard-ability-score-improvement", + "parent": "srd_bard_ability-score-improvement", "level": 12 } }, @@ -323,7 +323,7 @@ "model": "api_v2.classfeatureitem", "pk": "song-of-rest_13", "fields": { - "parent": "song-of-rest", + "parent": "srd_bard_song-of-rest", "level": 13 } }, @@ -331,7 +331,7 @@ "model": "api_v2.classfeatureitem", "pk": "magical-secrets_14", "fields": { - "parent": "magical-secrets", + "parent": "srd_bard_magical-secrets", "level": 14 } }, @@ -339,7 +339,7 @@ "model": "api_v2.classfeatureitem", "pk": "bardic-inspiration_15", "fields": { - "parent": "bardic-inspiration", + "parent": "srd_bard_bardic-inspiration", "level": 15 } }, @@ -347,7 +347,7 @@ "model": "api_v2.classfeatureitem", "pk": "bard-ability-score-improvement_16", "fields": { - "parent": "bard-ability-score-improvement", + "parent": "srd_bard_ability-score-improvement", "level": 16 } }, @@ -355,7 +355,7 @@ "model": "api_v2.classfeatureitem", "pk": "song-of-rest_17", "fields": { - "parent": "song-of-rest", + "parent": "srd_bard_song-of-rest", "level": 17 } }, @@ -363,7 +363,7 @@ "model": "api_v2.classfeatureitem", "pk": "magical-secrets_18", "fields": { - "parent": "magical-secrets", + "parent": "srd_bard_magical-secrets", "level": 18 } }, @@ -371,7 +371,7 @@ "model": "api_v2.classfeatureitem", "pk": "bard-ability-score-improvement_19", "fields": { - "parent": "bard-ability-score-improvement", + "parent": "srd_bard_ability-score-improvement", "level": 19 } }, @@ -379,7 +379,7 @@ "model": "api_v2.classfeatureitem", "pk": "superior-inspiration_20", "fields": { - "parent": "superior-inspiration", + "parent": "srd_bard_superior-inspiration", "level": 20 } }, @@ -387,7 +387,7 @@ "model": "api_v2.classfeatureitem", "pk": "bonus-proficiencies_3", "fields": { - "parent": "bonus-proficiencies", + "parent": "srd_college-of-lore_bonus-proficiencies", "level": 3 } }, @@ -395,7 +395,7 @@ "model": "api_v2.classfeatureitem", "pk": "cutting-words_3", "fields": { - "parent": "cutting-words", + "parent": "srd_college-of-lore_cutting-words", "level": 3 } }, @@ -403,7 +403,7 @@ "model": "api_v2.classfeatureitem", "pk": "additional-magical-secrets_6", "fields": { - "parent": "additional-magical-secrets", + "parent": "srd_college-of-lore_additional-magical-secrets", "level": 6 } }, @@ -411,7 +411,7 @@ "model": "api_v2.classfeatureitem", "pk": "peerless-skill_14", "fields": { - "parent": "peerless-skill", + "parent": "srd_college-of-lore_peerless-skill", "level": 14 } }, @@ -419,7 +419,7 @@ "model": "api_v2.classfeatureitem", "pk": "cleric-spellcasting_1", "fields": { - "parent": "cleric-spellcasting", + "parent": "srd_cleric_spellcasting", "level": 1 } }, @@ -427,7 +427,7 @@ "model": "api_v2.classfeatureitem", "pk": "divine-domain_1", "fields": { - "parent": "divine-domain", + "parent": "srd_cleric_divine-domain", "level": 1 } }, @@ -435,7 +435,7 @@ "model": "api_v2.classfeatureitem", "pk": "cleric-channel-divinity_2", "fields": { - "parent": "cleric-channel-divinity", + "parent": "srd_cleric_channel-divinity", "level": 2 } }, @@ -443,7 +443,7 @@ "model": "api_v2.classfeatureitem", "pk": "life-bonus-proficiency_1", "fields": { - "parent": "life-bonus-proficiency", + "parent": "srd_life-domain_bonus-proficiency", "level": 1 } }, @@ -451,7 +451,7 @@ "model": "api_v2.classfeatureitem", "pk": "life-domain-spells_1", "fields": { - "parent": "life-domain-spells", + "parent": "srd_life-domain_life-domain-spells-table", "level": 1 } }, @@ -459,7 +459,7 @@ "model": "api_v2.classfeatureitem", "pk": "disciple-of-life_1", "fields": { - "parent": "disciple-of-life", + "parent": "srd_life-domain_disciple-of-life", "level": 1 } }, @@ -467,7 +467,7 @@ "model": "api_v2.classfeatureitem", "pk": "channel-divinity-preserve-life_2", "fields": { - "parent": "channel-divinity-preserve-life", + "parent": "srd_life-domain_channel-divinity-preserve-life", "level": 2 } }, @@ -475,7 +475,7 @@ "model": "api_v2.classfeatureitem", "pk": "cleric-ability-score-improvement_4", "fields": { - "parent": "cleric-ability-score-improvement", + "parent": "srd_cleric_ability-score-improvement", "level": 4 } }, @@ -483,7 +483,7 @@ "model": "api_v2.classfeatureitem", "pk": "destroy-undead_5", "fields": { - "parent": "destroy-undead", + "parent": "srd_cleric_destroy-undead", "level": 5 } }, @@ -491,7 +491,7 @@ "model": "api_v2.classfeatureitem", "pk": "cleric-channel-divinity_6", "fields": { - "parent": "cleric-channel-divinity", + "parent": "srd_cleric_channel-divinity", "level": 6 } }, @@ -499,7 +499,7 @@ "model": "api_v2.classfeatureitem", "pk": "blessed-healer_6", "fields": { - "parent": "blessed-healer", + "parent": "srd_life-domain_blessed-healer", "level": 6 } }, @@ -507,7 +507,7 @@ "model": "api_v2.classfeatureitem", "pk": "cleric-ability-score-improvement_8", "fields": { - "parent": "cleric-ability-score-improvement", + "parent": "srd_cleric_ability-score-improvement", "level": 8 } }, @@ -515,7 +515,7 @@ "model": "api_v2.classfeatureitem", "pk": "destroy-undead_8", "fields": { - "parent": "destroy-undead", + "parent": "srd_cleric_destroy-undead", "level": 8 } }, @@ -523,7 +523,7 @@ "model": "api_v2.classfeatureitem", "pk": "divine-strike_8", "fields": { - "parent": "divine-strike", + "parent": "srd_life-domain_divine-strike", "level": 8 } }, @@ -531,7 +531,7 @@ "model": "api_v2.classfeatureitem", "pk": "divine-intervention_10", "fields": { - "parent": "divine-intervention", + "parent": "srd_cleric_divine-intervention", "level": 10 } }, @@ -539,7 +539,7 @@ "model": "api_v2.classfeatureitem", "pk": "destroy-undead_14", "fields": { - "parent": "destroy-undead", + "parent": "srd_cleric_destroy-undead", "level": 14 } }, @@ -547,7 +547,7 @@ "model": "api_v2.classfeatureitem", "pk": "cleric-ability-score-improvement_16", "fields": { - "parent": "cleric-ability-score-improvement", + "parent": "srd_cleric_ability-score-improvement", "level": 16 } }, @@ -555,7 +555,7 @@ "model": "api_v2.classfeatureitem", "pk": "destroy-undead_17", "fields": { - "parent": "destroy-undead", + "parent": "srd_cleric_destroy-undead", "level": 17 } }, @@ -563,7 +563,7 @@ "model": "api_v2.classfeatureitem", "pk": "supreme-healing_17", "fields": { - "parent": "supreme-healing", + "parent": "srd_life-domain_supreme-healing", "level": 17 } }, @@ -571,7 +571,7 @@ "model": "api_v2.classfeatureitem", "pk": "cleric-channel-divinity_18", "fields": { - "parent": "cleric-channel-divinity", + "parent": "srd_cleric_channel-divinity", "level": 18 } }, @@ -579,7 +579,7 @@ "model": "api_v2.classfeatureitem", "pk": "cleric-ability-score-improvement_19", "fields": { - "parent": "cleric-ability-score-improvement", + "parent": "srd_cleric_ability-score-improvement", "level": 19 } }, @@ -587,7 +587,7 @@ "model": "api_v2.classfeatureitem", "pk": "divine-intervention_20", "fields": { - "parent": "divine-intervention", + "parent": "srd_cleric_divine-intervention", "level": 20 } }, @@ -595,7 +595,7 @@ "model": "api_v2.classfeatureitem", "pk": "druidic_1", "fields": { - "parent": "druidic", + "parent": "srd_druid_druidic", "level": 1 } }, @@ -603,7 +603,7 @@ "model": "api_v2.classfeatureitem", "pk": "druid-spellcasting_1", "fields": { - "parent": "druid-spellcasting", + "parent": "srd_druid_spellcasting", "level": 1 } }, @@ -611,7 +611,7 @@ "model": "api_v2.classfeatureitem", "pk": "wild-shape_2", "fields": { - "parent": "wild-shape", + "parent": "srd_druid_wild-shape", "level": 2 } }, @@ -619,7 +619,7 @@ "model": "api_v2.classfeatureitem", "pk": "druid-circle_2", "fields": { - "parent": "druid-circle", + "parent": "srd_druid_druid-circle", "level": 2 } }, @@ -627,7 +627,7 @@ "model": "api_v2.classfeatureitem", "pk": "wild-shape_4", "fields": { - "parent": "wild-shape", + "parent": "srd_druid_wild-shape", "level": 4 } }, @@ -635,7 +635,7 @@ "model": "api_v2.classfeatureitem", "pk": "druid-ability-score-improvement_4", "fields": { - "parent": "druid-ability-score-improvement", + "parent": "srd_druid_ability-score-improvement", "level": 4 } }, @@ -643,7 +643,7 @@ "model": "api_v2.classfeatureitem", "pk": "wild-shape_8", "fields": { - "parent": "wild-shape", + "parent": "srd_druid_wild-shape", "level": 8 } }, @@ -651,7 +651,7 @@ "model": "api_v2.classfeatureitem", "pk": "druid-ability-score-improvement_8", "fields": { - "parent": "druid-ability-score-improvement", + "parent": "srd_druid_ability-score-improvement", "level": 8 } }, @@ -659,7 +659,7 @@ "model": "api_v2.classfeatureitem", "pk": "druid-ability-score-improvement_12", "fields": { - "parent": "druid-ability-score-improvement", + "parent": "srd_druid_ability-score-improvement", "level": 12 } }, @@ -667,7 +667,7 @@ "model": "api_v2.classfeatureitem", "pk": "druid-ability-score-improvement_16", "fields": { - "parent": "druid-ability-score-improvement", + "parent": "srd_druid_ability-score-improvement", "level": 16 } }, @@ -675,7 +675,7 @@ "model": "api_v2.classfeatureitem", "pk": "beast-spells_18", "fields": { - "parent": "beast-spells", + "parent": "srd_druid_beast-spells", "level": 18 } }, @@ -683,7 +683,7 @@ "model": "api_v2.classfeatureitem", "pk": "druid-ability-score-improvement_19", "fields": { - "parent": "druid-ability-score-improvement", + "parent": "srd_druid_ability-score-improvement", "level": 19 } }, @@ -691,7 +691,7 @@ "model": "api_v2.classfeatureitem", "pk": "archdruid_20", "fields": { - "parent": "archdruid", + "parent": "srd_druid_archdruid", "level": 20 } }, @@ -699,7 +699,7 @@ "model": "api_v2.classfeatureitem", "pk": "bonus-cantrip_2", "fields": { - "parent": "bonus-cantrip", + "parent": "srd_circle-of-the-land_bonus-cantrip", "level": 2 } }, @@ -707,7 +707,7 @@ "model": "api_v2.classfeatureitem", "pk": "natural-recovery_2", "fields": { - "parent": "natural-recovery", + "parent": "srd_circle-of-the-land_natural-recovery", "level": 2 } }, @@ -715,7 +715,7 @@ "model": "api_v2.classfeatureitem", "pk": "land-circle-spells_3", "fields": { - "parent": "land-circle-spells", + "parent": "srd_circle-of-the-land_circle-spells", "level": 3 } }, @@ -723,7 +723,7 @@ "model": "api_v2.classfeatureitem", "pk": "land-circle-spells_5", "fields": { - "parent": "land-circle-spells", + "parent": "srd_circle-of-the-land_circle-spells", "level": 5 } }, @@ -731,7 +731,7 @@ "model": "api_v2.classfeatureitem", "pk": "land-circle-spells_7", "fields": { - "parent": "land-circle-spells", + "parent": "srd_circle-of-the-land_circle-spells", "level": 7 } }, @@ -739,7 +739,7 @@ "model": "api_v2.classfeatureitem", "pk": "land-circle-spells_9", "fields": { - "parent": "land-circle-spells", + "parent": "srd_circle-of-the-land_circle-spells", "level": 9 } }, @@ -747,7 +747,7 @@ "model": "api_v2.classfeatureitem", "pk": "lands-stride_6", "fields": { - "parent": "lands-stride", + "parent": "srd_circle-of-the-land_lands-stride", "level": 6 } }, @@ -755,7 +755,7 @@ "model": "api_v2.classfeatureitem", "pk": "natures-ward_10", "fields": { - "parent": "natures-ward", + "parent": "srd_circle-of-the-land_natures-ward", "level": 10 } }, @@ -763,7 +763,7 @@ "model": "api_v2.classfeatureitem", "pk": "natures-sanctuary_14", "fields": { - "parent": "natures-sanctuary", + "parent": "srd_circle-of-the-land_natures-sanctuary", "level": 14 } }, @@ -771,7 +771,7 @@ "model": "api_v2.classfeatureitem", "pk": "fighting-style_1", "fields": { - "parent": "fighting-style", + "parent": "srd_fighter_fighting-style", "level": 1 } }, @@ -779,7 +779,7 @@ "model": "api_v2.classfeatureitem", "pk": "second-wind_1", "fields": { - "parent": "second-wind", + "parent": "srd_fighter_second-wind", "level": 1 } }, @@ -787,7 +787,7 @@ "model": "api_v2.classfeatureitem", "pk": "action-surge_2", "fields": { - "parent": "action-surge", + "parent": "srd_fighter_action-surge", "level": 2 } }, @@ -795,7 +795,7 @@ "model": "api_v2.classfeatureitem", "pk": "martial-archetype_3", "fields": { - "parent": "martial-archetype", + "parent": "srd_fighter_martial-archetype", "level": 3 } }, @@ -803,7 +803,7 @@ "model": "api_v2.classfeatureitem", "pk": "fighter-ability-score-improvement_4", "fields": { - "parent": "fighter-ability-score-improvement", + "parent": "srd_fighter_ability-score-improvement", "level": 4 } }, @@ -811,7 +811,7 @@ "model": "api_v2.classfeatureitem", "pk": "fighter-extra-attack_5", "fields": { - "parent": "fighter-extra-attack", + "parent": "srd_fighter_extra-attack", "level": 5 } }, @@ -819,7 +819,7 @@ "model": "api_v2.classfeatureitem", "pk": "fighter-ability-score-improvement_6", "fields": { - "parent": "fighter-ability-score-improvement", + "parent": "srd_fighter_ability-score-improvement", "level": 6 } }, @@ -827,7 +827,7 @@ "model": "api_v2.classfeatureitem", "pk": "fighter-ability-score-improvement_8", "fields": { - "parent": "fighter-ability-score-improvement", + "parent": "srd_fighter_ability-score-improvement", "level": 8 } }, @@ -835,7 +835,7 @@ "model": "api_v2.classfeatureitem", "pk": "indomitable_9", "fields": { - "parent": "indomitable", + "parent": "srd_fighter_indomitable", "level": 9 } }, @@ -843,7 +843,7 @@ "model": "api_v2.classfeatureitem", "pk": "fighter-extra-attack_11", "fields": { - "parent": "fighter-extra-attack", + "parent": "srd_fighter_extra-attack", "level": 11 } }, @@ -851,7 +851,7 @@ "model": "api_v2.classfeatureitem", "pk": "fighter-ability-score-improvement_12", "fields": { - "parent": "fighter-ability-score-improvement", + "parent": "srd_fighter_ability-score-improvement", "level": 12 } }, @@ -859,7 +859,7 @@ "model": "api_v2.classfeatureitem", "pk": "indomitable_13", "fields": { - "parent": "indomitable", + "parent": "srd_fighter_indomitable", "level": 13 } }, @@ -867,7 +867,7 @@ "model": "api_v2.classfeatureitem", "pk": "fighter-ability-score-improvement_14", "fields": { - "parent": "fighter-ability-score-improvement", + "parent": "srd_fighter_ability-score-improvement", "level": 14 } }, @@ -875,7 +875,7 @@ "model": "api_v2.classfeatureitem", "pk": "fighter-ability-score-improvement_16", "fields": { - "parent": "fighter-ability-score-improvement", + "parent": "srd_fighter_ability-score-improvement", "level": 16 } }, @@ -883,7 +883,7 @@ "model": "api_v2.classfeatureitem", "pk": "action-surge_17", "fields": { - "parent": "action-surge", + "parent": "srd_fighter_action-surge", "level": 17 } }, @@ -891,7 +891,7 @@ "model": "api_v2.classfeatureitem", "pk": "indomitable_17", "fields": { - "parent": "indomitable", + "parent": "srd_fighter_indomitable", "level": 17 } }, @@ -899,7 +899,7 @@ "model": "api_v2.classfeatureitem", "pk": "fighter-ability-score-improvement_19", "fields": { - "parent": "fighter-ability-score-improvement", + "parent": "srd_fighter_ability-score-improvement", "level": 19 } }, @@ -907,7 +907,7 @@ "model": "api_v2.classfeatureitem", "pk": "fighter-extra-attack_20", "fields": { - "parent": "fighter-extra-attack", + "parent": "srd_fighter_extra-attack", "level": 20 } }, @@ -915,7 +915,7 @@ "model": "api_v2.classfeatureitem", "pk": "improved-critical_3", "fields": { - "parent": "improved-critical", + "parent": "srd_champion_improved-critical", "level": 3 } }, @@ -923,7 +923,7 @@ "model": "api_v2.classfeatureitem", "pk": "remarkable-athlete_7", "fields": { - "parent": "remarkable-athlete", + "parent": "srd_champion_remarkable-athlete", "level": 7 } }, @@ -931,7 +931,7 @@ "model": "api_v2.classfeatureitem", "pk": "additional-fighting-style_10", "fields": { - "parent": "additional-fighting-style", + "parent": "srd_champion_additional-fighting-style", "level": 10 } }, @@ -939,7 +939,7 @@ "model": "api_v2.classfeatureitem", "pk": "superior-critical_15", "fields": { - "parent": "superior-critical", + "parent": "srd_champion_superior-critical", "level": 15 } }, @@ -947,7 +947,7 @@ "model": "api_v2.classfeatureitem", "pk": "survivor_18", "fields": { - "parent": "survivor", + "parent": "srd_champion_survivor", "level": 18 } }, @@ -955,7 +955,7 @@ "model": "api_v2.classfeatureitem", "pk": "monk-unarmored-defense_1", "fields": { - "parent": "monk-unarmored-defense", + "parent": "srd_monk_unarmored-defense", "level": 1 } }, @@ -963,7 +963,7 @@ "model": "api_v2.classfeatureitem", "pk": "martial-arts_1", "fields": { - "parent": "martial-arts", + "parent": "srd_monk_martial-arts", "level": 1 } }, @@ -971,7 +971,7 @@ "model": "api_v2.classfeatureitem", "pk": "ki_2", "fields": { - "parent": "ki", + "parent": "srd_monk_ki", "level": 2 } }, @@ -979,7 +979,7 @@ "model": "api_v2.classfeatureitem", "pk": "unarmored-movement_2", "fields": { - "parent": "unarmored-movement", + "parent": "srd_monk_unarmored-movement", "level": 2 } }, @@ -987,7 +987,7 @@ "model": "api_v2.classfeatureitem", "pk": "monastic-tradition_3", "fields": { - "parent": "monastic-tradition", + "parent": "srd_monk_monastic-tradition", "level": 3 } }, @@ -995,7 +995,7 @@ "model": "api_v2.classfeatureitem", "pk": "deflect-missiles_3", "fields": { - "parent": "deflect-missiles", + "parent": "srd_monk_deflect-missiles", "level": 3 } }, @@ -1003,7 +1003,7 @@ "model": "api_v2.classfeatureitem", "pk": "monk-ability-score-improvement_4", "fields": { - "parent": "monk-ability-score-improvement", + "parent": "srd_monk_ability-score-improvement", "level": 4 } }, @@ -1011,7 +1011,7 @@ "model": "api_v2.classfeatureitem", "pk": "slow-fall_4", "fields": { - "parent": "slow-fall", + "parent": "srd_monk_slow-fall", "level": 4 } }, @@ -1019,7 +1019,7 @@ "model": "api_v2.classfeatureitem", "pk": "monk-extra-attack_5", "fields": { - "parent": "monk-extra-attack", + "parent": "srd_monk_extra-attack", "level": 5 } }, @@ -1027,7 +1027,7 @@ "model": "api_v2.classfeatureitem", "pk": "stunning-strike_5", "fields": { - "parent": "stunning-strike", + "parent": "srd_monk_stunning-strike", "level": 5 } }, @@ -1035,7 +1035,7 @@ "model": "api_v2.classfeatureitem", "pk": "ki-empowered-strikes_6", "fields": { - "parent": "ki-empowered-strikes", + "parent": "srd_monk_ki-empowered-strikes", "level": 6 } }, @@ -1043,7 +1043,7 @@ "model": "api_v2.classfeatureitem", "pk": "monk-evasion_7", "fields": { - "parent": "monk-evasion", + "parent": "srd_monk_evasion", "level": 7 } }, @@ -1051,7 +1051,7 @@ "model": "api_v2.classfeatureitem", "pk": "stillness-of-mind_7", "fields": { - "parent": "stillness-of-mind", + "parent": "srd_monk_stillness-of-mind", "level": 7 } }, @@ -1059,7 +1059,7 @@ "model": "api_v2.classfeatureitem", "pk": "monk-ability-score-improvement_8", "fields": { - "parent": "monk-ability-score-improvement", + "parent": "srd_monk_ability-score-improvement", "level": 8 } }, @@ -1067,7 +1067,7 @@ "model": "api_v2.classfeatureitem", "pk": "unarmored-movement_9", "fields": { - "parent": "unarmored-movement", + "parent": "srd_monk_unarmored-movement", "level": 9 } }, @@ -1075,7 +1075,7 @@ "model": "api_v2.classfeatureitem", "pk": "purity-of-body_10", "fields": { - "parent": "purity-of-body", + "parent": "srd_monk_purity-of-body", "level": 10 } }, @@ -1083,7 +1083,7 @@ "model": "api_v2.classfeatureitem", "pk": "monk-ability-score-improvement_12", "fields": { - "parent": "monk-ability-score-improvement", + "parent": "srd_monk_ability-score-improvement", "level": 12 } }, @@ -1091,7 +1091,7 @@ "model": "api_v2.classfeatureitem", "pk": "tongue-of-the-sun-and-moon_13", "fields": { - "parent": "tongue-of-the-sun-and-moon", + "parent": "srd_monk_tongue-of-the-sun-and-moon", "level": 13 } }, @@ -1099,7 +1099,7 @@ "model": "api_v2.classfeatureitem", "pk": "diamond-soul_14", "fields": { - "parent": "diamond-soul", + "parent": "srd_monk_diamond-soul", "level": 14 } }, @@ -1107,7 +1107,7 @@ "model": "api_v2.classfeatureitem", "pk": "monk-timeless-body_15", "fields": { - "parent": "monk-timeless-body", + "parent": "srd_monk_timeless-body", "level": 15 } }, @@ -1115,7 +1115,7 @@ "model": "api_v2.classfeatureitem", "pk": "monk-ability-score-improvement_16", "fields": { - "parent": "monk-ability-score-improvement", + "parent": "srd_monk_ability-score-improvement", "level": 16 } }, @@ -1123,7 +1123,7 @@ "model": "api_v2.classfeatureitem", "pk": "empty-body_18", "fields": { - "parent": "empty-body", + "parent": "srd_monk_empty-body", "level": 18 } }, @@ -1131,7 +1131,7 @@ "model": "api_v2.classfeatureitem", "pk": "monk-ability-score-improvement_19", "fields": { - "parent": "monk-ability-score-improvement", + "parent": "srd_monk_ability-score-improvement", "level": 19 } }, @@ -1139,7 +1139,7 @@ "model": "api_v2.classfeatureitem", "pk": "perfect-self_20", "fields": { - "parent": "perfect-self", + "parent": "srd_monk_perfect-self", "level": 20 } }, @@ -1147,7 +1147,7 @@ "model": "api_v2.classfeatureitem", "pk": "open-hand-technique_3", "fields": { - "parent": "open-hand-technique", + "parent": "srd_way-of-the-open-hand_open-hand-technique", "level": 3 } }, @@ -1155,7 +1155,7 @@ "model": "api_v2.classfeatureitem", "pk": "wholeness-of-body_6", "fields": { - "parent": "wholeness-of-body", + "parent": "srd_way-of-the-open-hand_wholeness-of-body", "level": 6 } }, @@ -1163,7 +1163,7 @@ "model": "api_v2.classfeatureitem", "pk": "tranquility_11", "fields": { - "parent": "tranquility", + "parent": "srd_way-of-the-open-hand_tranquility", "level": 11 } }, @@ -1171,7 +1171,7 @@ "model": "api_v2.classfeatureitem", "pk": "quivering-palm_17", "fields": { - "parent": "quivering-palm", + "parent": "srd_way-of-the-open-hand_quivering-palm", "level": 17 } }, @@ -1179,7 +1179,7 @@ "model": "api_v2.classfeatureitem", "pk": "divine-sense_1", "fields": { - "parent": "divine-sense", + "parent": "srd_paladin_divine-sense", "level": 1 } }, @@ -1187,7 +1187,7 @@ "model": "api_v2.classfeatureitem", "pk": "lay-on-hands_1", "fields": { - "parent": "lay-on-hands", + "parent": "srd_paladin_lay-on-hands", "level": 1 } }, @@ -1195,7 +1195,7 @@ "model": "api_v2.classfeatureitem", "pk": "paladin-fighting-style_2", "fields": { - "parent": "paladin-fighting-style", + "parent": "srd_paladin_fighting-style", "level": 2 } }, @@ -1203,7 +1203,7 @@ "model": "api_v2.classfeatureitem", "pk": "paladin-spellcasting_2", "fields": { - "parent": "paladin-spellcasting", + "parent": "srd_paladin_spellcasting", "level": 2 } }, @@ -1211,7 +1211,7 @@ "model": "api_v2.classfeatureitem", "pk": "divine-smite_2", "fields": { - "parent": "divine-smite", + "parent": "srd_paladin_divine-smite", "level": 2 } }, @@ -1219,7 +1219,7 @@ "model": "api_v2.classfeatureitem", "pk": "divine-health_3", "fields": { - "parent": "divine-health", + "parent": "srd_paladin_divine-health", "level": 3 } }, @@ -1227,7 +1227,7 @@ "model": "api_v2.classfeatureitem", "pk": "sacred-oath_3", "fields": { - "parent": "sacred-oath", + "parent": "srd_paladin_sacred-oath", "level": 3 } }, @@ -1235,7 +1235,7 @@ "model": "api_v2.classfeatureitem", "pk": "paladin-ability-score-improvement_4", "fields": { - "parent": "paladin-ability-score-improvement", + "parent": "srd_paladin_ability-score-improvement", "level": 4 } }, @@ -1243,7 +1243,7 @@ "model": "api_v2.classfeatureitem", "pk": "paladin-extra-attack_5", "fields": { - "parent": "paladin-extra-attack", + "parent": "srd_paladin_extra-attack", "level": 5 } }, @@ -1251,7 +1251,7 @@ "model": "api_v2.classfeatureitem", "pk": "aura-of-protection_6", "fields": { - "parent": "Aura of Protection", + "parent": "srd_paladin_aura-of-protection", "level": 6 } }, @@ -1259,7 +1259,7 @@ "model": "api_v2.classfeatureitem", "pk": "paladin-ability-score-improvement_8", "fields": { - "parent": "paladin-ability-score-improvement", + "parent": "srd_paladin_ability-score-improvement", "level": 8 } }, @@ -1267,7 +1267,7 @@ "model": "api_v2.classfeatureitem", "pk": "aura-of-courage_10", "fields": { - "parent": "aura-of-courage", + "parent": "srd_paladin_aura-of-courage", "level": 10 } }, @@ -1275,7 +1275,7 @@ "model": "api_v2.classfeatureitem", "pk": "improved-divine-smite_11", "fields": { - "parent": "improved-divine-smite", + "parent": "srd_paladin_improved-divine-smite", "level": 11 } }, @@ -1283,7 +1283,7 @@ "model": "api_v2.classfeatureitem", "pk": "paladin-ability-score-improvement_12", "fields": { - "parent": "paladin-ability-score-improvement", + "parent": "srd_paladin_ability-score-improvement", "level": 12 } }, @@ -1291,7 +1291,7 @@ "model": "api_v2.classfeatureitem", "pk": "cleansing-touch_14", "fields": { - "parent": "cleansing-touch", + "parent": "srd_paladin_cleansing-touch", "level": 14 } }, @@ -1299,7 +1299,7 @@ "model": "api_v2.classfeatureitem", "pk": "paladin-ability-score-improvement_16", "fields": { - "parent": "paladin-ability-score-improvement", + "parent": "srd_paladin_ability-score-improvement", "level": 16 } }, @@ -1307,7 +1307,7 @@ "model": "api_v2.classfeatureitem", "pk": "aura-of-protection_18", "fields": { - "parent": "Aura of Protection", + "parent": "srd_paladin_aura-of-protection", "level": 18 } }, @@ -1315,7 +1315,7 @@ "model": "api_v2.classfeatureitem", "pk": "aura-of-courage_18", "fields": { - "parent": "aura-of-courage", + "parent": "srd_paladin_aura-of-courage", "level": 18 } }, @@ -1323,7 +1323,7 @@ "model": "api_v2.classfeatureitem", "pk": "paladin-ability-score-improvement_19", "fields": { - "parent": "paladin-ability-score-improvement", + "parent": "srd_paladin_ability-score-improvement", "level": 19 } }, @@ -1331,7 +1331,7 @@ "model": "api_v2.classfeatureitem", "pk": "tenets-of-devotion_3", "fields": { - "parent": "tenets-of-devotion", + "parent": "srd_oath-of-devotion_tenets-of-devotion", "level": 3 } }, @@ -1339,7 +1339,7 @@ "model": "api_v2.classfeatureitem", "pk": "devotion-oath-spells_3", "fields": { - "parent": "devotion-oath-spells", + "parent": "srd_oath-of-devotion_oath-spells", "level": 3 } }, @@ -1347,7 +1347,7 @@ "model": "api_v2.classfeatureitem", "pk": "devotion-oath-spells_5", "fields": { - "parent": "devotion-oath-spells", + "parent": "srd_oath-of-devotion_oath-spells", "level": 5 } }, @@ -1355,7 +1355,7 @@ "model": "api_v2.classfeatureitem", "pk": "devotion-oath-spells_9", "fields": { - "parent": "devotion-oath-spells", + "parent": "srd_oath-of-devotion_oath-spells", "level": 9 } }, @@ -1363,7 +1363,7 @@ "model": "api_v2.classfeatureitem", "pk": "devotion-oath-spells_13", "fields": { - "parent": "devotion-oath-spells", + "parent": "srd_oath-of-devotion_oath-spells", "level": 13 } }, @@ -1371,7 +1371,7 @@ "model": "api_v2.classfeatureitem", "pk": "devotion-oath-spells_17", "fields": { - "parent": "devotion-oath-spells", + "parent": "srd_oath-of-devotion_oath-spells", "level": 17 } }, @@ -1379,7 +1379,7 @@ "model": "api_v2.classfeatureitem", "pk": "devotion-channel-divinity_3", "fields": { - "parent": "devotion-channel-divinity", + "parent": "srd_oath-of-devotion_channel-divinity", "level": 3 } }, @@ -1387,7 +1387,7 @@ "model": "api_v2.classfeatureitem", "pk": "aura-of-devotion_7", "fields": { - "parent": "aura-of-devotion", + "parent": "srd_oath-of-devotion_aura-of-devotion", "level": 7 } }, @@ -1395,7 +1395,7 @@ "model": "api_v2.classfeatureitem", "pk": "aura-of-devotion_18", "fields": { - "parent": "aura-of-devotion", + "parent": "srd_oath-of-devotion_aura-of-devotion", "level": 18 } }, @@ -1403,7 +1403,7 @@ "model": "api_v2.classfeatureitem", "pk": "purity-of-spirit_15", "fields": { - "parent": "purity-of-spirit", + "parent": "srd_oath-of-devotion_purity-of-spirit", "level": 15 } }, @@ -1411,7 +1411,7 @@ "model": "api_v2.classfeatureitem", "pk": "holy-nimbus_20", "fields": { - "parent": "holy-nimbus", + "parent": "srd_oath-of-devotion_holy-nimbus", "level": 20 } }, @@ -1419,7 +1419,7 @@ "model": "api_v2.classfeatureitem", "pk": "favored-enemy_1", "fields": { - "parent": "favored-enemy", + "parent": "srd_ranger_favored-enemy", "level": 1 } }, @@ -1427,7 +1427,7 @@ "model": "api_v2.classfeatureitem", "pk": "natural-explorer_1", "fields": { - "parent": "natural-explorer", + "parent": "srd_ranger_natural-explorer", "level": 1 } }, @@ -1435,7 +1435,7 @@ "model": "api_v2.classfeatureitem", "pk": "ranger-fighting-style_2", "fields": { - "parent": "ranger-fighting-style", + "parent": "srd_ranger_fighting-style", "level": 2 } }, @@ -1443,7 +1443,7 @@ "model": "api_v2.classfeatureitem", "pk": "ranger-spellcasting_2", "fields": { - "parent": "ranger-spellcasting", + "parent": "srd_ranger_spellcasting", "level": 2 } }, @@ -1451,7 +1451,7 @@ "model": "api_v2.classfeatureitem", "pk": "ranger-archetype_3", "fields": { - "parent": "ranger-archetype", + "parent": "srd_ranger_ranger-archetype", "level": 3 } }, @@ -1459,7 +1459,7 @@ "model": "api_v2.classfeatureitem", "pk": "primeval-awareness_3", "fields": { - "parent": "primeval-awareness", + "parent": "srd_ranger_primeval-awareness", "level": 3 } }, @@ -1467,7 +1467,7 @@ "model": "api_v2.classfeatureitem", "pk": "ranger-ability-score-improvement_4", "fields": { - "parent": "ranger-ability-score-improvement", + "parent": "srd_ranger_ability-score-improvement", "level": 4 } }, @@ -1475,7 +1475,7 @@ "model": "api_v2.classfeatureitem", "pk": "ranger-extra-attack_5", "fields": { - "parent": "ranger-extra-attack", + "parent": "srd_ranger_extra-attack", "level": 5 } }, @@ -1483,7 +1483,7 @@ "model": "api_v2.classfeatureitem", "pk": "favored-enemy_6", "fields": { - "parent": "favored-enemy", + "parent": "srd_ranger_favored-enemy", "level": 6 } }, @@ -1491,7 +1491,7 @@ "model": "api_v2.classfeatureitem", "pk": "natural-explorer_6", "fields": { - "parent": "natural-explorer", + "parent": "srd_ranger_natural-explorer", "level": 6 } }, @@ -1499,7 +1499,7 @@ "model": "api_v2.classfeatureitem", "pk": "ranger-ability-score-improvement_8", "fields": { - "parent": "ranger-ability-score-improvement", + "parent": "srd_ranger_ability-score-improvement", "level": 8 } }, @@ -1507,7 +1507,7 @@ "model": "api_v2.classfeatureitem", "pk": "ranger-lands-stride_8", "fields": { - "parent": "ranger-lands-stride", + "parent": "srd_ranger_lands-stride", "level": 8 } }, @@ -1515,7 +1515,7 @@ "model": "api_v2.classfeatureitem", "pk": "natural-explorer_10", "fields": { - "parent": "natural-explorer", + "parent": "srd_ranger_natural-explorer", "level": 10 } }, @@ -1523,7 +1523,7 @@ "model": "api_v2.classfeatureitem", "pk": "hide-in-plain-sight_10", "fields": { - "parent": "hide-in-plain-sight", + "parent": "srd_ranger_hide-in-plain-sight", "level": 10 } }, @@ -1531,7 +1531,7 @@ "model": "api_v2.classfeatureitem", "pk": "ranger-ability-score-improvement_12", "fields": { - "parent": "ranger-ability-score-improvement", + "parent": "srd_ranger_ability-score-improvement", "level": 12 } }, @@ -1539,7 +1539,7 @@ "model": "api_v2.classfeatureitem", "pk": "favored-enemy_14", "fields": { - "parent": "favored-enemy", + "parent": "srd_ranger_favored-enemy", "level": 14 } }, @@ -1547,7 +1547,7 @@ "model": "api_v2.classfeatureitem", "pk": "vanish_14", "fields": { - "parent": "vanish", + "parent": "srd_ranger_vanish", "level": 14 } }, @@ -1555,7 +1555,7 @@ "model": "api_v2.classfeatureitem", "pk": "ranger-ability-score-improvement_16", "fields": { - "parent": "ranger-ability-score-improvement", + "parent": "srd_ranger_ability-score-improvement", "level": 16 } }, @@ -1563,7 +1563,7 @@ "model": "api_v2.classfeatureitem", "pk": "feral-senses_18", "fields": { - "parent": "feral-senses", + "parent": "srd_ranger_feral-senses", "level": 18 } }, @@ -1571,7 +1571,7 @@ "model": "api_v2.classfeatureitem", "pk": "ranger-ability-score-improvement_19", "fields": { - "parent": "ranger-ability-score-improvement", + "parent": "srd_ranger_ability-score-improvement", "level": 19 } }, @@ -1579,7 +1579,7 @@ "model": "api_v2.classfeatureitem", "pk": "foe-slayer_20", "fields": { - "parent": "foe-slayer", + "parent": "srd_ranger_foe-slayer", "level": 20 } }, @@ -1587,7 +1587,7 @@ "model": "api_v2.classfeatureitem", "pk": "hunters-prey_3", "fields": { - "parent": "hunters-prey", + "parent": "srd_hunter_hunters-prey", "level": 3 } }, @@ -1595,7 +1595,7 @@ "model": "api_v2.classfeatureitem", "pk": "defensive-tactics_7", "fields": { - "parent": "defensive-tactics", + "parent": "srd_hunter_defensive-tactics", "level": 7 } }, @@ -1603,7 +1603,7 @@ "model": "api_v2.classfeatureitem", "pk": "multiattack_11", "fields": { - "parent": "multiattack", + "parent": "srd_hunter_multiattack", "level": 11 } }, @@ -1611,7 +1611,7 @@ "model": "api_v2.classfeatureitem", "pk": "superior-hunters-defense_15", "fields": { - "parent": "superior-hunters-defense", + "parent": "srd_hunter_superior-hunters-defense", "level": 15 } }, @@ -1619,7 +1619,7 @@ "model": "api_v2.classfeatureitem", "pk": "rogue-expertise_1", "fields": { - "parent": "rogue-expertise", + "parent": "srd_rogue_expertise", "level": 1 } }, @@ -1627,7 +1627,7 @@ "model": "api_v2.classfeatureitem", "pk": "sneak-attack_1", "fields": { - "parent": "sneak-attack", + "parent": "srd_rogue_sneak-attack", "level": 1 } }, @@ -1635,7 +1635,7 @@ "model": "api_v2.classfeatureitem", "pk": "thieves-cant_1", "fields": { - "parent": "thieves-cant", + "parent": "srd_rogue_thieves-cant", "level": 1 } }, @@ -1643,7 +1643,7 @@ "model": "api_v2.classfeatureitem", "pk": "cunning-action_2", "fields": { - "parent": "cunning-action", + "parent": "srd_rogue_cunning-action", "level": 2 } }, @@ -1651,7 +1651,7 @@ "model": "api_v2.classfeatureitem", "pk": "roguish-archetype_3", "fields": { - "parent": "roguish-archetype", + "parent": "srd_rogue_roguish-archetype", "level": 3 } }, @@ -1659,7 +1659,7 @@ "model": "api_v2.classfeatureitem", "pk": "rogue-ability-score-improvement_4", "fields": { - "parent": "rogue-ability-score-improvement", + "parent": "srd_rogue_ability-score-improvement", "level": 4 } }, @@ -1667,7 +1667,7 @@ "model": "api_v2.classfeatureitem", "pk": "uncanny-dodge_5", "fields": { - "parent": "uncanny-dodge", + "parent": "srd_rogue_uncanny-dodge", "level": 5 } }, @@ -1675,7 +1675,7 @@ "model": "api_v2.classfeatureitem", "pk": "rogue-expertise_6", "fields": { - "parent": "rogue-expertise", + "parent": "srd_rogue_expertise", "level": 6 } }, @@ -1683,7 +1683,7 @@ "model": "api_v2.classfeatureitem", "pk": "rogue-evasion_7", "fields": { - "parent": "rogue-evasion", + "parent": "srd_rogue_evasion", "level": 7 } }, @@ -1691,7 +1691,7 @@ "model": "api_v2.classfeatureitem", "pk": "rogue-ability-score-improvement_8", "fields": { - "parent": "rogue-ability-score-improvement", + "parent": "srd_rogue_ability-score-improvement", "level": 8 } }, @@ -1699,7 +1699,7 @@ "model": "api_v2.classfeatureitem", "pk": "rogue-ability-score-improvement_10", "fields": { - "parent": "rogue-ability-score-improvement", + "parent": "srd_rogue_ability-score-improvement", "level": 10 } }, @@ -1707,7 +1707,7 @@ "model": "api_v2.classfeatureitem", "pk": "reliable-talent_11", "fields": { - "parent": "reliable-talent", + "parent": "srd_rogue_reliable-talent", "level": 11 } }, @@ -1715,7 +1715,7 @@ "model": "api_v2.classfeatureitem", "pk": "rogue-ability-score-improvement_12", "fields": { - "parent": "rogue-ability-score-improvement", + "parent": "srd_rogue_ability-score-improvement", "level": 12 } }, @@ -1723,7 +1723,7 @@ "model": "api_v2.classfeatureitem", "pk": "blindsense_14", "fields": { - "parent": "blindsense", + "parent": "srd_rogue_blindsense", "level": 14 } }, @@ -1731,7 +1731,7 @@ "model": "api_v2.classfeatureitem", "pk": "slippery-mind_15", "fields": { - "parent": "slippery-mind", + "parent": "srd_rogue_slippery-mind", "level": 15 } }, @@ -1739,7 +1739,7 @@ "model": "api_v2.classfeatureitem", "pk": "rogue-ability-score-improvement_16", "fields": { - "parent": "rogue-ability-score-improvement", + "parent": "srd_rogue_ability-score-improvement", "level": 16 } }, @@ -1747,7 +1747,7 @@ "model": "api_v2.classfeatureitem", "pk": "elusive_18", "fields": { - "parent": "elusive", + "parent": "srd_rogue_elusive", "level": 18 } }, @@ -1755,7 +1755,7 @@ "model": "api_v2.classfeatureitem", "pk": "rogue-ability-score-improvement_19", "fields": { - "parent": "rogue-ability-score-improvement", + "parent": "srd_rogue_ability-score-improvement", "level": 19 } }, @@ -1763,7 +1763,7 @@ "model": "api_v2.classfeatureitem", "pk": "stroke-of-luck_20", "fields": { - "parent": "Stroke of Luck", + "parent": "srd_rogue_stroke-of-luck", "level": 20 } }, @@ -1771,7 +1771,7 @@ "model": "api_v2.classfeatureitem", "pk": "fast-hands_3", "fields": { - "parent": "fast-hands", + "parent": "srd_thief_fast-hands", "level": 3 } }, @@ -1779,7 +1779,7 @@ "model": "api_v2.classfeatureitem", "pk": "second-story-work_3", "fields": { - "parent": "second-story-work", + "parent": "srd_thief_second-story-work", "level": 3 } }, @@ -1787,7 +1787,7 @@ "model": "api_v2.classfeatureitem", "pk": "supreme-sneak_9", "fields": { - "parent": "supreme-sneak", + "parent": "srd_thief_supreme-sneak", "level": 9 } }, @@ -1795,7 +1795,7 @@ "model": "api_v2.classfeatureitem", "pk": "use-magic-device_13", "fields": { - "parent": "use-magic-device", + "parent": "srd_thief_use-magic-device", "level": 13 } }, @@ -1803,7 +1803,7 @@ "model": "api_v2.classfeatureitem", "pk": "thiefs-reflexes_17", "fields": { - "parent": "thiefs-reflexes", + "parent": "srd_thief_thiefs-reflexes", "level": 17 } }, @@ -1811,7 +1811,7 @@ "model": "api_v2.classfeatureitem", "pk": "sorceror-spellcasting_1", "fields": { - "parent": "sorceror-spellcasting", + "parent": "srd_sorcerer_spellcasting", "level": 1 } }, @@ -1819,7 +1819,7 @@ "model": "api_v2.classfeatureitem", "pk": "sorcerous-origin_1", "fields": { - "parent": "sorcerous-origin", + "parent": "srd_sorcerer_sorcerous-origin", "level": 1 } }, @@ -1827,7 +1827,7 @@ "model": "api_v2.classfeatureitem", "pk": "font-of-magic_2", "fields": { - "parent": "font-of-magic", + "parent": "srd_sorcerer_font-of-magic", "level": 2 } }, @@ -1835,7 +1835,7 @@ "model": "api_v2.classfeatureitem", "pk": "metamagic_3", "fields": { - "parent": "metamagic", + "parent": "srd_sorcerer_metamagic", "level": 3 } }, @@ -1843,7 +1843,7 @@ "model": "api_v2.classfeatureitem", "pk": "sorceror-ability-score-improvement_4", "fields": { - "parent": "sorceror-ability-score-improvement", + "parent": "srd_sorcerer_ability-score-improvement", "level": 4 } }, @@ -1851,7 +1851,7 @@ "model": "api_v2.classfeatureitem", "pk": "sorceror-ability-score-improvement_8", "fields": { - "parent": "sorceror-ability-score-improvement", + "parent": "srd_sorcerer_ability-score-improvement", "level": 8 } }, @@ -1859,7 +1859,7 @@ "model": "api_v2.classfeatureitem", "pk": "metamagic_10", "fields": { - "parent": "metamagic", + "parent": "srd_sorcerer_metamagic", "level": 10 } }, @@ -1867,7 +1867,7 @@ "model": "api_v2.classfeatureitem", "pk": "sorceror-ability-score-improvement_12", "fields": { - "parent": "sorceror-ability-score-improvement", + "parent": "srd_sorcerer_ability-score-improvement", "level": 12 } }, @@ -1875,7 +1875,7 @@ "model": "api_v2.classfeatureitem", "pk": "sorceror-ability-score-improvement_16", "fields": { - "parent": "sorceror-ability-score-improvement", + "parent": "srd_sorcerer_ability-score-improvement", "level": 16 } }, @@ -1883,7 +1883,7 @@ "model": "api_v2.classfeatureitem", "pk": "metamagic_17", "fields": { - "parent": "metamagic", + "parent": "srd_sorcerer_metamagic", "level": 17 } }, @@ -1891,7 +1891,7 @@ "model": "api_v2.classfeatureitem", "pk": "sorceror-ability-score-improvement_19", "fields": { - "parent": "sorceror-ability-score-improvement", + "parent": "srd_sorcerer_ability-score-improvement", "level": 19 } }, @@ -1899,7 +1899,7 @@ "model": "api_v2.classfeatureitem", "pk": "sorcerous-restoration_20", "fields": { - "parent": "sorcerous-restoration", + "parent": "srd_sorcerer_sorcerous-restoration", "level": 20 } }, @@ -1907,7 +1907,7 @@ "model": "api_v2.classfeatureitem", "pk": "dragon-ancestor_1", "fields": { - "parent": "dragon-ancestor", + "parent": "srd_draconic-bloodline_dragon-ancestor", "level": 1 } }, @@ -1915,7 +1915,7 @@ "model": "api_v2.classfeatureitem", "pk": "draconic-resilience_1", "fields": { - "parent": "draconic-resilience", + "parent": "srd_draconic-bloodline_draconic-resilience", "level": 1 } }, @@ -1923,7 +1923,7 @@ "model": "api_v2.classfeatureitem", "pk": "elemental-affinity_6", "fields": { - "parent": "elemental-affinity", + "parent": "srd_draconic-bloodline_elemental-affinity", "level": 6 } }, @@ -1931,7 +1931,7 @@ "model": "api_v2.classfeatureitem", "pk": "dragon-wings_14", "fields": { - "parent": "dragon-wings", + "parent": "srd_draconic-bloodline_dragon-wings", "level": 14 } }, @@ -1939,7 +1939,7 @@ "model": "api_v2.classfeatureitem", "pk": "draconic-presence_18", "fields": { - "parent": "draconic-presence", + "parent": "srd_draconic-bloodline_draconic-presence", "level": 18 } }, @@ -1947,7 +1947,7 @@ "model": "api_v2.classfeatureitem", "pk": "otherworldly-patron_1", "fields": { - "parent": "otherworldly-patron", + "parent": "srd_warlock_otherworldly-patron", "level": 1 } }, @@ -1955,7 +1955,7 @@ "model": "api_v2.classfeatureitem", "pk": "pact-magic_1", "fields": { - "parent": "pact-magic", + "parent": "srd_warlock_pact-magic", "level": 1 } }, @@ -1963,7 +1963,7 @@ "model": "api_v2.classfeatureitem", "pk": "eldritch-invocations_2", "fields": { - "parent": "eldritch-invocations", + "parent": "srd_warlock_eldritch-invocations", "level": 2 } }, @@ -1971,7 +1971,7 @@ "model": "api_v2.classfeatureitem", "pk": "pact-boon_3", "fields": { - "parent": "pact-boon", + "parent": "srd_warlock_pact-boon", "level": 3 } }, @@ -1979,7 +1979,7 @@ "model": "api_v2.classfeatureitem", "pk": "warlock-ability-score-improvement_4", "fields": { - "parent": "warlock-ability-score-improvement", + "parent": "srd_warlock_ability-score-improvement", "level": 4 } }, @@ -1987,7 +1987,7 @@ "model": "api_v2.classfeatureitem", "pk": "warlock-ability-score-improvement_8", "fields": { - "parent": "warlock-ability-score-improvement", + "parent": "srd_warlock_ability-score-improvement", "level": 8 } }, @@ -1995,7 +1995,7 @@ "model": "api_v2.classfeatureitem", "pk": "mystic-arcanum_11", "fields": { - "parent": "mystic-arcanum", + "parent": "srd_warlock_mystic-arcanum", "level": 11 } }, @@ -2003,7 +2003,7 @@ "model": "api_v2.classfeatureitem", "pk": "warlock-ability-score-improvement_12", "fields": { - "parent": "warlock-ability-score-improvement", + "parent": "srd_warlock_ability-score-improvement", "level": 12 } }, @@ -2011,7 +2011,7 @@ "model": "api_v2.classfeatureitem", "pk": "mystic-arcanum_13", "fields": { - "parent": "mystic-arcanum", + "parent": "srd_warlock_mystic-arcanum", "level": 13 } }, @@ -2019,7 +2019,7 @@ "model": "api_v2.classfeatureitem", "pk": "mystic-arcanum_15", "fields": { - "parent": "mystic-arcanum", + "parent": "srd_warlock_mystic-arcanum", "level": 15 } }, @@ -2027,7 +2027,7 @@ "model": "api_v2.classfeatureitem", "pk": "mystic-arcanum_17", "fields": { - "parent": "mystic-arcanum", + "parent": "srd_warlock_mystic-arcanum", "level": 17 } }, @@ -2035,7 +2035,7 @@ "model": "api_v2.classfeatureitem", "pk": "warlock-ability-score-improvement_19", "fields": { - "parent": "warlock-ability-score-improvement", + "parent": "srd_warlock_ability-score-improvement", "level": 19 } }, @@ -2043,7 +2043,7 @@ "model": "api_v2.classfeatureitem", "pk": "eldritch-master_20", "fields": { - "parent": "eldritch-master", + "parent": "srd_warlock_eldritch-master", "level": 20 } }, @@ -2051,7 +2051,7 @@ "model": "api_v2.classfeatureitem", "pk": "eldritch-invocation-list_2", "fields": { - "parent": "eldritch-invocation-list", + "parent": "srd_warlock_eldritch-invocation-list", "level": 2 } }, @@ -2059,7 +2059,7 @@ "model": "api_v2.classfeatureitem", "pk": "expanded-spell-list_1", "fields": { - "parent": "expanded-spell-list", + "parent": "srd_the-fiend_expanded-spell-list", "level": 1 } }, @@ -2067,7 +2067,7 @@ "model": "api_v2.classfeatureitem", "pk": "dark-ones-blessing_1", "fields": { - "parent": "dark-ones-blessing", + "parent": "srd_the-fiend_dark-ones-blessing", "level": 1 } }, @@ -2075,7 +2075,7 @@ "model": "api_v2.classfeatureitem", "pk": "dark-ones-own-luck_6", "fields": { - "parent": "dark-ones-own-luck", + "parent": "srd_the-fiend_dark-ones-own-luck", "level": 6 } }, @@ -2083,7 +2083,7 @@ "model": "api_v2.classfeatureitem", "pk": "fiendish-resilience_10", "fields": { - "parent": "fiendish-resilience", + "parent": "srd_the-fiend_fiendish-resilience", "level": 10 } }, @@ -2091,7 +2091,7 @@ "model": "api_v2.classfeatureitem", "pk": "hurl-through-hell_14", "fields": { - "parent": "hurl-through-hell", + "parent": "srd_the-fiend_hurl-through-hell", "level": 14 } }, @@ -2099,7 +2099,7 @@ "model": "api_v2.classfeatureitem", "pk": "wizard-spellcasting_1", "fields": { - "parent": "wizard-spellcasting", + "parent": "srd_wizard_spellcasting", "level": 1 } }, @@ -2107,7 +2107,7 @@ "model": "api_v2.classfeatureitem", "pk": "arcane-recovery_1", "fields": { - "parent": "arcane-recovery", + "parent": "srd_wizard_arcane-recovery", "level": 1 } }, @@ -2115,7 +2115,7 @@ "model": "api_v2.classfeatureitem", "pk": "arcane-tradition_2", "fields": { - "parent": "arcane-tradition", + "parent": "srd_wizard_arcane-tradition", "level": 2 } }, @@ -2123,7 +2123,7 @@ "model": "api_v2.classfeatureitem", "pk": "wizard-ability-score-improvement_4", "fields": { - "parent": "wizard-ability-score-improvement", + "parent": "srd_wizard_ability-score-improvement", "level": 4 } }, @@ -2131,7 +2131,7 @@ "model": "api_v2.classfeatureitem", "pk": "wizard-ability-score-improvement_8", "fields": { - "parent": "wizard-ability-score-improvement", + "parent": "srd_wizard_ability-score-improvement", "level": 8 } }, @@ -2139,7 +2139,7 @@ "model": "api_v2.classfeatureitem", "pk": "wizard-ability-score-improvement_12", "fields": { - "parent": "wizard-ability-score-improvement", + "parent": "srd_wizard_ability-score-improvement", "level": 12 } }, @@ -2147,7 +2147,7 @@ "model": "api_v2.classfeatureitem", "pk": "wizard-ability-score-improvement_16", "fields": { - "parent": "wizard-ability-score-improvement", + "parent": "srd_wizard_ability-score-improvement", "level": 16 } }, @@ -2155,7 +2155,7 @@ "model": "api_v2.classfeatureitem", "pk": "spell-mastery_18", "fields": { - "parent": "spell-mastery", + "parent": "srd_wizard_spell-mastery", "level": 18 } }, @@ -2163,7 +2163,7 @@ "model": "api_v2.classfeatureitem", "pk": "wizard-ability-score-improvement_19", "fields": { - "parent": "wizard-ability-score-improvement", + "parent": "srd_wizard_ability-score-improvement", "level": 19 } }, @@ -2171,7 +2171,7 @@ "model": "api_v2.classfeatureitem", "pk": "signature-spells_20", "fields": { - "parent": "signature-spells", + "parent": "srd_wizard_signature-spells", "level": 20 } }, @@ -2179,7 +2179,7 @@ "model": "api_v2.classfeatureitem", "pk": "evocation-savant_2", "fields": { - "parent": "evocation-savant", + "parent": "srd_school-of-evocation_evocation-savant", "level": 2 } }, @@ -2187,7 +2187,7 @@ "model": "api_v2.classfeatureitem", "pk": "sculpt-spells_2", "fields": { - "parent": "sculpt-spells", + "parent": "srd_school-of-evocation_sculpt-spells", "level": 2 } }, @@ -2195,7 +2195,7 @@ "model": "api_v2.classfeatureitem", "pk": "potent-cantrip_6", "fields": { - "parent": "potent-cantrip", + "parent": "srd_school-of-evocation_potent-cantrip", "level": 6 } }, @@ -2203,7 +2203,7 @@ "model": "api_v2.classfeatureitem", "pk": "empowered-evocation_10", "fields": { - "parent": "empowered-evocation", + "parent": "srd_school-of-evocation_empowered-evocation", "level": 10 } }, @@ -2211,7 +2211,7 @@ "model": "api_v2.classfeatureitem", "pk": "overchannel_14", "fields": { - "parent": "overchannel", + "parent": "srd_school-of-evocation_overchannel", "level": 14 } } diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index 313486bd..5cb670b4 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -18,8 +18,11 @@ def main(): help='Log level.') parser.add_argument('-f', '--fix', action='store_true', help='If this flag is set, the script will automatically fix what it can.') + + parser.add_argument('-m','--model', + help='Model name to operate on. All others will be skipped.') args = parser.parse_args() - + if args.loglevel == 'INFO': ll=logging.INFO if args.loglevel == 'DEBUG': @@ -57,11 +60,14 @@ def main(): # LOOPING THROUGH ALL IN-SCOPE FILES for f_obj in file_list: + if f_obj['filename'] != args.model: + continue + with open(f_obj['path'],'r',encoding='utf-8') as f_in: objs = json.load(f_in) # CHECK FOR KEYS THAT ARE NUMBERS, WARN IF EXISTS - known_keys_non_numeric_exceptions = ['CastingOption.json','Capability.json','Trait.json'] + known_keys_non_numeric_exceptions = [] if f_obj['filename'] in known_keys_non_numeric_exceptions: logger.debug("Skipping {}: file is known to have numeric keys.".format(f_obj['filename'])) else: @@ -69,19 +75,19 @@ def main(): if args.fix: fix_keys_to_parent_level(objs, f_obj) # CHECK FOR KEYS THAT ARE NOT PROPERLY SLUGIFIED - known_keys_are_slugified_exceptions = ['CastingOption.json','Capability.json','BackgroundBenefit.json','Trait.json'] + known_keys_are_slugified_exceptions = [] if f_obj['filename'] in known_keys_are_slugified_exceptions: logger.debug("Skipping {}: file is known to have non-slugified keys.".format(f_obj['filename'])) else: check_keys_are_slugified(objs, f_obj) # CHECK THAT KEYS MATCH THE FORMAT DOC_NAME, SLUGIFIED_NAME - known_keys_doc_name_exceptions = ['CastingOption.json','Capability.json','BackgroundBenefit.json','Trait.json', 'Size.json','CreatureAttack.json'] + known_keys_doc_name_exceptions = [] if f_obj['filename'] in known_keys_doc_name_exceptions: logger.debug("Skipping {}: file is known to have non-slugified keys.".format(f_obj['filename'])) else: check_keys_doc_name(objs, f_obj) - #if args.fix: fix_keys_to_doc_name(objs, f_obj) + if args.fix: fix_keys_to_doc_name(objs, f_obj) def check_keys_non_numeric(objs,f): @@ -112,25 +118,29 @@ def check_keys_are_slugified(objs,f): def check_keys_doc_name(objs,f): + child_models = ['BackgroundBenefit.json','ClassFeature.json'] for obj in objs: + + if f['filename'] in child_models: + if obj['pk'] != "{}_{}".format(slugify(obj['fields']['parent']),slugify(obj['fields']['name'])): + logger.warning("{}:{} does not follow the parent-name_slugified-name format.".format(f['path'],obj['pk'])) + continue if f['filename']=='ClassFeatureItem.json': - #Special rules, it doesn't have a name. if obj['pk'] != "{}_{}".format(slugify(obj['fields']['parent']),slugify(obj['fields']['level'])): logger.warning("{}:{} does not follow the parent-name_level format.".format(f['path'],obj['pk'])) - break - else: - if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): - logger.warning("{}:{} does not follow the doc-key_slugified-name format.".format(f['path'],obj['pk'])) - break + continue + if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): + logger.warning("{}:{} does not follow the doc-key_slugified-name format.".format(f['path'],obj['pk'])) + continue def fix_keys_to_doc_name(objs,f): objs_fixed=[] for obj in objs: if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): - if f['filename']=='CharacterClass.json': + if f['filename']=='ClassFeature.json': logger.warning("{} changing to doc_name format".format(f['path'])) - pk_value = "{}_{}".format(obj['fields']['document'],slugify(obj['fields']['name'])) + pk_value = "{}_{}".format(obj['fields']['parent'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) obj['former_pk'] = obj['pk'] @@ -139,17 +149,18 @@ def fix_keys_to_doc_name(objs,f): related_path = "{}/{}/{}/{}/{}/".format(f['root'],f['dir'],f['schema'],f['publisher'],f['doc']) - related_filenames = ['ClassFeature.json'] + related_filenames = ['ClassFeatureItem.json'] for obj in objs_fixed: for related_file in related_filenames: - logger.warning("CHANGING RELATED PK IN {} TO {}".format(related_file,pk_value)) + logger.warning("CHANGING RELATED PK IN {} TO {}".format(related_file,obj['pk'])) refactor_relations(related_path+related_file,"parent",obj['former_pk'], obj['pk']) obj.pop('former_pk') - if f['filename']=='CharacterClass.json': + if f['filename']=='ClassFeature.json': with open(f['path'],'w',encoding='utf-8') as wf: json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) + pass def fix_keys_to_parent_level(objs,f): objs_fixed=[] From 0843893638ae0d691e9a7946243ce0ffe66bf430 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 25 May 2024 08:14:31 -0500 Subject: [PATCH 32/84] Keys keys keys. --- .../srd/ClassFeatureItem.json | 554 +++++++++--------- .../data_manipulation/data_v2_format_check.py | 4 +- 2 files changed, 279 insertions(+), 279 deletions(-) diff --git a/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json b/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json index 3583c1d0..11bd0dcc 100644 --- a/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json +++ b/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json @@ -1,7 +1,7 @@ [ { "model": "api_v2.classfeatureitem", - "pk": "rage_1", + "pk": "srd_barbarian_rage_1", "fields": { "parent": "srd_barbarian_rage", "level": 1 @@ -9,7 +9,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "barbarian-unarmored-defense_1", + "pk": "srd_barbarian_unarmored-defense_1", "fields": { "parent": "srd_barbarian_unarmored-defense", "level": 1 @@ -17,7 +17,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "reckless-attack_2", + "pk": "srd_barbarian_reckless-attack_2", "fields": { "parent": "srd_barbarian_reckless-attack", "level": 2 @@ -25,7 +25,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "danger-sense_2", + "pk": "srd_barbarian_danger-sense_2", "fields": { "parent": "srd_barbarian_danger-sense", "level": 2 @@ -33,7 +33,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "primal-path_3", + "pk": "srd_barbarian_primal-path_3", "fields": { "parent": "srd_barbarian_primal-path", "level": 3 @@ -41,7 +41,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "barbarian-ability-score-improvement_4", + "pk": "srd_barbarian_ability-score-improvement_4", "fields": { "parent": "srd_barbarian_ability-score-improvement", "level": 4 @@ -49,7 +49,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "barbarian-extra-attack_5", + "pk": "srd_barbarian_extra-attack_5", "fields": { "parent": "srd_barbarian_extra-attack", "level": 5 @@ -57,7 +57,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fast-movement_5", + "pk": "srd_barbarian_fast-movement_5", "fields": { "parent": "srd_barbarian_fast-movement", "level": 5 @@ -65,7 +65,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "feral-instinct_7", + "pk": "srd_barbarian_feral-instinct_7", "fields": { "parent": "srd_barbarian_feral-instinct", "level": 7 @@ -73,7 +73,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "barbarian-ability-score-improvement_8", + "pk": "srd_barbarian_ability-score-improvement_8", "fields": { "parent": "srd_barbarian_ability-score-improvement", "level": 8 @@ -81,7 +81,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "brutal-critical_9", + "pk": "srd_barbarian_brutal-critical_9", "fields": { "parent": "srd_barbarian_brutal-critical", "level": 9 @@ -89,7 +89,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "relentless-rage_11", + "pk": "srd_barbarian_relentless-rage_11", "fields": { "parent": "srd_barbarian_relentless-rage", "level": 11 @@ -97,7 +97,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "barbarian-ability-score-improvement_12", + "pk": "srd_barbarian_ability-score-improvement_12", "fields": { "parent": "srd_barbarian_ability-score-improvement", "level": 12 @@ -105,7 +105,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "brutal-critical_13", + "pk": "srd_barbarian_brutal-critical_13", "fields": { "parent": "srd_barbarian_brutal-critical", "level": 13 @@ -113,7 +113,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "persistent-rage_15", + "pk": "srd_barbarian_persistent-rage_15", "fields": { "parent": "srd_barbarian_persistent-rage", "level": 15 @@ -121,7 +121,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "barbarian-ability-score-improvement_16", + "pk": "srd_barbarian_ability-score-improvement_16", "fields": { "parent": "srd_barbarian_ability-score-improvement", "level": 16 @@ -129,7 +129,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "brutal-critical_17", + "pk": "srd_barbarian_brutal-critical_17", "fields": { "parent": "srd_barbarian_brutal-critical", "level": 17 @@ -137,7 +137,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "indomitable-might_18", + "pk": "srd_barbarian_indomitable-might_18", "fields": { "parent": "srd_barbarian_indomitable-might", "level": 18 @@ -145,7 +145,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "barbarian-ability-score-improvement_19", + "pk": "srd_barbarian_ability-score-improvement_19", "fields": { "parent": "srd_barbarian_ability-score-improvement", "level": 19 @@ -153,7 +153,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "primal-champion_20", + "pk": "srd_barbarian_primal-champion_20", "fields": { "parent": "srd_barbarian_primal-champion", "level": 20 @@ -161,7 +161,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "frenzy_3", + "pk": "srd_path-of-the-berserker_frenzy_3", "fields": { "parent": "srd_path-of-the-berserker_frenzy", "level": 3 @@ -169,7 +169,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "mindless-rage_6", + "pk": "srd_path-of-the-berserker_mindless-rage_6", "fields": { "parent": "srd_path-of-the-berserker_mindless-rage", "level": 6 @@ -177,7 +177,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "intimidating-presence_10", + "pk": "srd_path-of-the-berserker_intimidating-presence_10", "fields": { "parent": "srd_path-of-the-berserker_intimidating-presence", "level": 10 @@ -185,7 +185,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "retaliation_14", + "pk": "srd_path-of-the-berserker_retaliation_14", "fields": { "parent": "srd_path-of-the-berserker_retaliation", "level": 14 @@ -193,7 +193,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bard-spellcasting_1", + "pk": "srd_bard_spellcasting_1", "fields": { "parent": "srd_bard_spellcasting", "level": 1 @@ -201,7 +201,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bardic-inspiration_1", + "pk": "srd_bard_bardic-inspiration_1", "fields": { "parent": "srd_bard_bardic-inspiration", "level": 1 @@ -209,7 +209,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "jack-of-all-trades_2", + "pk": "srd_bard_jack-of-all-trades_2", "fields": { "parent": "srd_bard_jack-of-all-trades", "level": 2 @@ -217,7 +217,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "song-of-rest_2", + "pk": "srd_bard_song-of-rest_2", "fields": { "parent": "srd_bard_song-of-rest", "level": 2 @@ -225,7 +225,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bard-college_3", + "pk": "srd_bard_bard-college_3", "fields": { "parent": "srd_bard_bard-college", "level": 3 @@ -233,7 +233,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bard-expertise_3", + "pk": "srd_bard_expertise_3", "fields": { "parent": "srd_bard_expertise", "level": 3 @@ -241,7 +241,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bard-ability-score-improvement_4", + "pk": "srd_bard_ability-score-improvement_4", "fields": { "parent": "srd_bard_ability-score-improvement", "level": 4 @@ -249,7 +249,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bardic-inspiration_5", + "pk": "srd_bard_bardic-inspiration_5", "fields": { "parent": "srd_bard_bardic-inspiration", "level": 5 @@ -257,7 +257,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "font-of-inspiration_5", + "pk": "srd_bard_font-of-inspiration_5", "fields": { "parent": "srd_bard_font-of-inspiration", "level": 5 @@ -265,7 +265,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "countercharm_6", + "pk": "srd_bard_countercharm_6", "fields": { "parent": "srd_bard_countercharm", "level": 6 @@ -273,7 +273,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bard-ability-score-improvement_8", + "pk": "srd_bard_ability-score-improvement_8", "fields": { "parent": "srd_bard_ability-score-improvement", "level": 8 @@ -281,7 +281,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "song-of-rest_9", + "pk": "srd_bard_song-of-rest_9", "fields": { "parent": "srd_bard_song-of-rest", "level": 9 @@ -289,7 +289,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bardic-inspiration_10", + "pk": "srd_bard_bardic-inspiration_10", "fields": { "parent": "srd_bard_bardic-inspiration", "level": 10 @@ -297,7 +297,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bard-expertise_10", + "pk": "srd_bard_expertise_10", "fields": { "parent": "srd_bard_expertise", "level": 10 @@ -305,7 +305,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "magical-secrets_10", + "pk": "srd_bard_magical-secrets_10", "fields": { "parent": "srd_bard_magical-secrets", "level": 10 @@ -313,7 +313,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bard-ability-score-improvement_12", + "pk": "srd_bard_ability-score-improvement_12", "fields": { "parent": "srd_bard_ability-score-improvement", "level": 12 @@ -321,7 +321,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "song-of-rest_13", + "pk": "srd_bard_song-of-rest_13", "fields": { "parent": "srd_bard_song-of-rest", "level": 13 @@ -329,7 +329,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "magical-secrets_14", + "pk": "srd_bard_magical-secrets_14", "fields": { "parent": "srd_bard_magical-secrets", "level": 14 @@ -337,7 +337,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bardic-inspiration_15", + "pk": "srd_bard_bardic-inspiration_15", "fields": { "parent": "srd_bard_bardic-inspiration", "level": 15 @@ -345,7 +345,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bard-ability-score-improvement_16", + "pk": "srd_bard_ability-score-improvement_16", "fields": { "parent": "srd_bard_ability-score-improvement", "level": 16 @@ -353,7 +353,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "song-of-rest_17", + "pk": "srd_bard_song-of-rest_17", "fields": { "parent": "srd_bard_song-of-rest", "level": 17 @@ -361,7 +361,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "magical-secrets_18", + "pk": "srd_bard_magical-secrets_18", "fields": { "parent": "srd_bard_magical-secrets", "level": 18 @@ -369,7 +369,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bard-ability-score-improvement_19", + "pk": "srd_bard_ability-score-improvement_19", "fields": { "parent": "srd_bard_ability-score-improvement", "level": 19 @@ -377,7 +377,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "superior-inspiration_20", + "pk": "srd_bard_superior-inspiration_20", "fields": { "parent": "srd_bard_superior-inspiration", "level": 20 @@ -385,7 +385,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bonus-proficiencies_3", + "pk": "srd_college-of-lore_bonus-proficiencies_3", "fields": { "parent": "srd_college-of-lore_bonus-proficiencies", "level": 3 @@ -393,7 +393,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "cutting-words_3", + "pk": "srd_college-of-lore_cutting-words_3", "fields": { "parent": "srd_college-of-lore_cutting-words", "level": 3 @@ -401,7 +401,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "additional-magical-secrets_6", + "pk": "srd_college-of-lore_additional-magical-secrets_6", "fields": { "parent": "srd_college-of-lore_additional-magical-secrets", "level": 6 @@ -409,7 +409,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "peerless-skill_14", + "pk": "srd_college-of-lore_peerless-skill_14", "fields": { "parent": "srd_college-of-lore_peerless-skill", "level": 14 @@ -417,7 +417,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "cleric-spellcasting_1", + "pk": "srd_cleric_spellcasting_1", "fields": { "parent": "srd_cleric_spellcasting", "level": 1 @@ -425,7 +425,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "divine-domain_1", + "pk": "srd_cleric_divine-domain_1", "fields": { "parent": "srd_cleric_divine-domain", "level": 1 @@ -433,7 +433,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "cleric-channel-divinity_2", + "pk": "srd_cleric_channel-divinity_2", "fields": { "parent": "srd_cleric_channel-divinity", "level": 2 @@ -441,7 +441,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "life-bonus-proficiency_1", + "pk": "srd_life-domain_bonus-proficiency_1", "fields": { "parent": "srd_life-domain_bonus-proficiency", "level": 1 @@ -449,7 +449,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "life-domain-spells_1", + "pk": "srd_life-domain_life-domain-spells-table_1", "fields": { "parent": "srd_life-domain_life-domain-spells-table", "level": 1 @@ -457,7 +457,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "disciple-of-life_1", + "pk": "srd_life-domain_disciple-of-life_1", "fields": { "parent": "srd_life-domain_disciple-of-life", "level": 1 @@ -465,7 +465,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "channel-divinity-preserve-life_2", + "pk": "srd_life-domain_channel-divinity-preserve-life_2", "fields": { "parent": "srd_life-domain_channel-divinity-preserve-life", "level": 2 @@ -473,7 +473,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "cleric-ability-score-improvement_4", + "pk": "srd_cleric_ability-score-improvement_4", "fields": { "parent": "srd_cleric_ability-score-improvement", "level": 4 @@ -481,7 +481,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "destroy-undead_5", + "pk": "srd_cleric_destroy-undead_5", "fields": { "parent": "srd_cleric_destroy-undead", "level": 5 @@ -489,7 +489,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "cleric-channel-divinity_6", + "pk": "srd_cleric_channel-divinity_6", "fields": { "parent": "srd_cleric_channel-divinity", "level": 6 @@ -497,7 +497,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "blessed-healer_6", + "pk": "srd_life-domain_blessed-healer_6", "fields": { "parent": "srd_life-domain_blessed-healer", "level": 6 @@ -505,7 +505,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "cleric-ability-score-improvement_8", + "pk": "srd_cleric_ability-score-improvement_8", "fields": { "parent": "srd_cleric_ability-score-improvement", "level": 8 @@ -513,7 +513,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "destroy-undead_8", + "pk": "srd_cleric_destroy-undead_8", "fields": { "parent": "srd_cleric_destroy-undead", "level": 8 @@ -521,7 +521,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "divine-strike_8", + "pk": "srd_life-domain_divine-strike_8", "fields": { "parent": "srd_life-domain_divine-strike", "level": 8 @@ -529,7 +529,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "divine-intervention_10", + "pk": "srd_cleric_divine-intervention_10", "fields": { "parent": "srd_cleric_divine-intervention", "level": 10 @@ -537,7 +537,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "destroy-undead_14", + "pk": "srd_cleric_destroy-undead_14", "fields": { "parent": "srd_cleric_destroy-undead", "level": 14 @@ -545,7 +545,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "cleric-ability-score-improvement_16", + "pk": "srd_cleric_ability-score-improvement_16", "fields": { "parent": "srd_cleric_ability-score-improvement", "level": 16 @@ -553,7 +553,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "destroy-undead_17", + "pk": "srd_cleric_destroy-undead_17", "fields": { "parent": "srd_cleric_destroy-undead", "level": 17 @@ -561,7 +561,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "supreme-healing_17", + "pk": "srd_life-domain_supreme-healing_17", "fields": { "parent": "srd_life-domain_supreme-healing", "level": 17 @@ -569,7 +569,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "cleric-channel-divinity_18", + "pk": "srd_cleric_channel-divinity_18", "fields": { "parent": "srd_cleric_channel-divinity", "level": 18 @@ -577,7 +577,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "cleric-ability-score-improvement_19", + "pk": "srd_cleric_ability-score-improvement_19", "fields": { "parent": "srd_cleric_ability-score-improvement", "level": 19 @@ -585,7 +585,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "divine-intervention_20", + "pk": "srd_cleric_divine-intervention_20", "fields": { "parent": "srd_cleric_divine-intervention", "level": 20 @@ -593,7 +593,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "druidic_1", + "pk": "srd_druid_druidic_1", "fields": { "parent": "srd_druid_druidic", "level": 1 @@ -601,7 +601,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "druid-spellcasting_1", + "pk": "srd_druid_spellcasting_1", "fields": { "parent": "srd_druid_spellcasting", "level": 1 @@ -609,7 +609,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "wild-shape_2", + "pk": "srd_druid_wild-shape_2", "fields": { "parent": "srd_druid_wild-shape", "level": 2 @@ -617,7 +617,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "druid-circle_2", + "pk": "srd_druid_druid-circle_2", "fields": { "parent": "srd_druid_druid-circle", "level": 2 @@ -625,7 +625,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "wild-shape_4", + "pk": "srd_druid_wild-shape_4", "fields": { "parent": "srd_druid_wild-shape", "level": 4 @@ -633,7 +633,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "druid-ability-score-improvement_4", + "pk": "srd_druid_ability-score-improvement_4", "fields": { "parent": "srd_druid_ability-score-improvement", "level": 4 @@ -641,7 +641,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "wild-shape_8", + "pk": "srd_druid_wild-shape_8", "fields": { "parent": "srd_druid_wild-shape", "level": 8 @@ -649,7 +649,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "druid-ability-score-improvement_8", + "pk": "srd_druid_ability-score-improvement_8", "fields": { "parent": "srd_druid_ability-score-improvement", "level": 8 @@ -657,7 +657,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "druid-ability-score-improvement_12", + "pk": "srd_druid_ability-score-improvement_12", "fields": { "parent": "srd_druid_ability-score-improvement", "level": 12 @@ -665,7 +665,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "druid-ability-score-improvement_16", + "pk": "srd_druid_ability-score-improvement_16", "fields": { "parent": "srd_druid_ability-score-improvement", "level": 16 @@ -673,7 +673,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "beast-spells_18", + "pk": "srd_druid_beast-spells_18", "fields": { "parent": "srd_druid_beast-spells", "level": 18 @@ -681,7 +681,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "druid-ability-score-improvement_19", + "pk": "srd_druid_ability-score-improvement_19", "fields": { "parent": "srd_druid_ability-score-improvement", "level": 19 @@ -689,7 +689,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "archdruid_20", + "pk": "srd_druid_archdruid_20", "fields": { "parent": "srd_druid_archdruid", "level": 20 @@ -697,7 +697,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "bonus-cantrip_2", + "pk": "srd_circle-of-the-land_bonus-cantrip_2", "fields": { "parent": "srd_circle-of-the-land_bonus-cantrip", "level": 2 @@ -705,7 +705,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "natural-recovery_2", + "pk": "srd_circle-of-the-land_natural-recovery_2", "fields": { "parent": "srd_circle-of-the-land_natural-recovery", "level": 2 @@ -713,7 +713,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "land-circle-spells_3", + "pk": "srd_circle-of-the-land_circle-spells_3", "fields": { "parent": "srd_circle-of-the-land_circle-spells", "level": 3 @@ -721,7 +721,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "land-circle-spells_5", + "pk": "srd_circle-of-the-land_circle-spells_5", "fields": { "parent": "srd_circle-of-the-land_circle-spells", "level": 5 @@ -729,7 +729,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "land-circle-spells_7", + "pk": "srd_circle-of-the-land_circle-spells_7", "fields": { "parent": "srd_circle-of-the-land_circle-spells", "level": 7 @@ -737,7 +737,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "land-circle-spells_9", + "pk": "srd_circle-of-the-land_circle-spells_9", "fields": { "parent": "srd_circle-of-the-land_circle-spells", "level": 9 @@ -745,7 +745,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "lands-stride_6", + "pk": "srd_circle-of-the-land_lands-stride_6", "fields": { "parent": "srd_circle-of-the-land_lands-stride", "level": 6 @@ -753,7 +753,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "natures-ward_10", + "pk": "srd_circle-of-the-land_natures-ward_10", "fields": { "parent": "srd_circle-of-the-land_natures-ward", "level": 10 @@ -761,7 +761,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "natures-sanctuary_14", + "pk": "srd_circle-of-the-land_natures-sanctuary_14", "fields": { "parent": "srd_circle-of-the-land_natures-sanctuary", "level": 14 @@ -769,7 +769,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fighting-style_1", + "pk": "srd_fighter_fighting-style_1", "fields": { "parent": "srd_fighter_fighting-style", "level": 1 @@ -777,7 +777,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "second-wind_1", + "pk": "srd_fighter_second-wind_1", "fields": { "parent": "srd_fighter_second-wind", "level": 1 @@ -785,7 +785,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "action-surge_2", + "pk": "srd_fighter_action-surge_2", "fields": { "parent": "srd_fighter_action-surge", "level": 2 @@ -793,7 +793,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "martial-archetype_3", + "pk": "srd_fighter_martial-archetype_3", "fields": { "parent": "srd_fighter_martial-archetype", "level": 3 @@ -801,7 +801,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fighter-ability-score-improvement_4", + "pk": "srd_fighter_ability-score-improvement_4", "fields": { "parent": "srd_fighter_ability-score-improvement", "level": 4 @@ -809,7 +809,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fighter-extra-attack_5", + "pk": "srd_fighter_extra-attack_5", "fields": { "parent": "srd_fighter_extra-attack", "level": 5 @@ -817,7 +817,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fighter-ability-score-improvement_6", + "pk": "srd_fighter_ability-score-improvement_6", "fields": { "parent": "srd_fighter_ability-score-improvement", "level": 6 @@ -825,7 +825,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fighter-ability-score-improvement_8", + "pk": "srd_fighter_ability-score-improvement_8", "fields": { "parent": "srd_fighter_ability-score-improvement", "level": 8 @@ -833,7 +833,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "indomitable_9", + "pk": "srd_fighter_indomitable_9", "fields": { "parent": "srd_fighter_indomitable", "level": 9 @@ -841,7 +841,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fighter-extra-attack_11", + "pk": "srd_fighter_extra-attack_11", "fields": { "parent": "srd_fighter_extra-attack", "level": 11 @@ -849,7 +849,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fighter-ability-score-improvement_12", + "pk": "srd_fighter_ability-score-improvement_12", "fields": { "parent": "srd_fighter_ability-score-improvement", "level": 12 @@ -857,7 +857,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "indomitable_13", + "pk": "srd_fighter_indomitable_13", "fields": { "parent": "srd_fighter_indomitable", "level": 13 @@ -865,7 +865,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fighter-ability-score-improvement_14", + "pk": "srd_fighter_ability-score-improvement_14", "fields": { "parent": "srd_fighter_ability-score-improvement", "level": 14 @@ -873,7 +873,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fighter-ability-score-improvement_16", + "pk": "srd_fighter_ability-score-improvement_16", "fields": { "parent": "srd_fighter_ability-score-improvement", "level": 16 @@ -881,7 +881,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "action-surge_17", + "pk": "srd_fighter_action-surge_17", "fields": { "parent": "srd_fighter_action-surge", "level": 17 @@ -889,7 +889,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "indomitable_17", + "pk": "srd_fighter_indomitable_17", "fields": { "parent": "srd_fighter_indomitable", "level": 17 @@ -897,7 +897,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fighter-ability-score-improvement_19", + "pk": "srd_fighter_ability-score-improvement_19", "fields": { "parent": "srd_fighter_ability-score-improvement", "level": 19 @@ -905,7 +905,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fighter-extra-attack_20", + "pk": "srd_fighter_extra-attack_20", "fields": { "parent": "srd_fighter_extra-attack", "level": 20 @@ -913,7 +913,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "improved-critical_3", + "pk": "srd_champion_improved-critical_3", "fields": { "parent": "srd_champion_improved-critical", "level": 3 @@ -921,7 +921,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "remarkable-athlete_7", + "pk": "srd_champion_remarkable-athlete_7", "fields": { "parent": "srd_champion_remarkable-athlete", "level": 7 @@ -929,7 +929,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "additional-fighting-style_10", + "pk": "srd_champion_additional-fighting-style_10", "fields": { "parent": "srd_champion_additional-fighting-style", "level": 10 @@ -937,7 +937,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "superior-critical_15", + "pk": "srd_champion_superior-critical_15", "fields": { "parent": "srd_champion_superior-critical", "level": 15 @@ -945,7 +945,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "survivor_18", + "pk": "srd_champion_survivor_18", "fields": { "parent": "srd_champion_survivor", "level": 18 @@ -953,7 +953,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "monk-unarmored-defense_1", + "pk": "srd_monk_unarmored-defense_1", "fields": { "parent": "srd_monk_unarmored-defense", "level": 1 @@ -961,7 +961,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "martial-arts_1", + "pk": "srd_monk_martial-arts_1", "fields": { "parent": "srd_monk_martial-arts", "level": 1 @@ -969,7 +969,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "ki_2", + "pk": "srd_monk_ki_2", "fields": { "parent": "srd_monk_ki", "level": 2 @@ -977,7 +977,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "unarmored-movement_2", + "pk": "srd_monk_unarmored-movement_2", "fields": { "parent": "srd_monk_unarmored-movement", "level": 2 @@ -985,7 +985,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "monastic-tradition_3", + "pk": "srd_monk_monastic-tradition_3", "fields": { "parent": "srd_monk_monastic-tradition", "level": 3 @@ -993,7 +993,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "deflect-missiles_3", + "pk": "srd_monk_deflect-missiles_3", "fields": { "parent": "srd_monk_deflect-missiles", "level": 3 @@ -1001,7 +1001,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "monk-ability-score-improvement_4", + "pk": "srd_monk_ability-score-improvement_4", "fields": { "parent": "srd_monk_ability-score-improvement", "level": 4 @@ -1009,7 +1009,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "slow-fall_4", + "pk": "srd_monk_slow-fall_4", "fields": { "parent": "srd_monk_slow-fall", "level": 4 @@ -1017,7 +1017,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "monk-extra-attack_5", + "pk": "srd_monk_extra-attack_5", "fields": { "parent": "srd_monk_extra-attack", "level": 5 @@ -1025,7 +1025,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "stunning-strike_5", + "pk": "srd_monk_stunning-strike_5", "fields": { "parent": "srd_monk_stunning-strike", "level": 5 @@ -1033,7 +1033,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "ki-empowered-strikes_6", + "pk": "srd_monk_ki-empowered-strikes_6", "fields": { "parent": "srd_monk_ki-empowered-strikes", "level": 6 @@ -1041,7 +1041,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "monk-evasion_7", + "pk": "srd_monk_evasion_7", "fields": { "parent": "srd_monk_evasion", "level": 7 @@ -1049,7 +1049,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "stillness-of-mind_7", + "pk": "srd_monk_stillness-of-mind_7", "fields": { "parent": "srd_monk_stillness-of-mind", "level": 7 @@ -1057,7 +1057,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "monk-ability-score-improvement_8", + "pk": "srd_monk_ability-score-improvement_8", "fields": { "parent": "srd_monk_ability-score-improvement", "level": 8 @@ -1065,7 +1065,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "unarmored-movement_9", + "pk": "srd_monk_unarmored-movement_9", "fields": { "parent": "srd_monk_unarmored-movement", "level": 9 @@ -1073,7 +1073,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "purity-of-body_10", + "pk": "srd_monk_purity-of-body_10", "fields": { "parent": "srd_monk_purity-of-body", "level": 10 @@ -1081,7 +1081,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "monk-ability-score-improvement_12", + "pk": "srd_monk_ability-score-improvement_12", "fields": { "parent": "srd_monk_ability-score-improvement", "level": 12 @@ -1089,7 +1089,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "tongue-of-the-sun-and-moon_13", + "pk": "srd_monk_tongue-of-the-sun-and-moon_13", "fields": { "parent": "srd_monk_tongue-of-the-sun-and-moon", "level": 13 @@ -1097,7 +1097,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "diamond-soul_14", + "pk": "srd_monk_diamond-soul_14", "fields": { "parent": "srd_monk_diamond-soul", "level": 14 @@ -1105,7 +1105,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "monk-timeless-body_15", + "pk": "srd_monk_timeless-body_15", "fields": { "parent": "srd_monk_timeless-body", "level": 15 @@ -1113,7 +1113,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "monk-ability-score-improvement_16", + "pk": "srd_monk_ability-score-improvement_16", "fields": { "parent": "srd_monk_ability-score-improvement", "level": 16 @@ -1121,7 +1121,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "empty-body_18", + "pk": "srd_monk_empty-body_18", "fields": { "parent": "srd_monk_empty-body", "level": 18 @@ -1129,7 +1129,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "monk-ability-score-improvement_19", + "pk": "srd_monk_ability-score-improvement_19", "fields": { "parent": "srd_monk_ability-score-improvement", "level": 19 @@ -1137,7 +1137,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "perfect-self_20", + "pk": "srd_monk_perfect-self_20", "fields": { "parent": "srd_monk_perfect-self", "level": 20 @@ -1145,7 +1145,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "open-hand-technique_3", + "pk": "srd_way-of-the-open-hand_open-hand-technique_3", "fields": { "parent": "srd_way-of-the-open-hand_open-hand-technique", "level": 3 @@ -1153,7 +1153,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "wholeness-of-body_6", + "pk": "srd_way-of-the-open-hand_wholeness-of-body_6", "fields": { "parent": "srd_way-of-the-open-hand_wholeness-of-body", "level": 6 @@ -1161,7 +1161,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "tranquility_11", + "pk": "srd_way-of-the-open-hand_tranquility_11", "fields": { "parent": "srd_way-of-the-open-hand_tranquility", "level": 11 @@ -1169,7 +1169,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "quivering-palm_17", + "pk": "srd_way-of-the-open-hand_quivering-palm_17", "fields": { "parent": "srd_way-of-the-open-hand_quivering-palm", "level": 17 @@ -1177,7 +1177,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "divine-sense_1", + "pk": "srd_paladin_divine-sense_1", "fields": { "parent": "srd_paladin_divine-sense", "level": 1 @@ -1185,7 +1185,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "lay-on-hands_1", + "pk": "srd_paladin_lay-on-hands_1", "fields": { "parent": "srd_paladin_lay-on-hands", "level": 1 @@ -1193,7 +1193,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "paladin-fighting-style_2", + "pk": "srd_paladin_fighting-style_2", "fields": { "parent": "srd_paladin_fighting-style", "level": 2 @@ -1201,7 +1201,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "paladin-spellcasting_2", + "pk": "srd_paladin_spellcasting_2", "fields": { "parent": "srd_paladin_spellcasting", "level": 2 @@ -1209,7 +1209,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "divine-smite_2", + "pk": "srd_paladin_divine-smite_2", "fields": { "parent": "srd_paladin_divine-smite", "level": 2 @@ -1217,7 +1217,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "divine-health_3", + "pk": "srd_paladin_divine-health_3", "fields": { "parent": "srd_paladin_divine-health", "level": 3 @@ -1225,7 +1225,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "sacred-oath_3", + "pk": "srd_paladin_sacred-oath_3", "fields": { "parent": "srd_paladin_sacred-oath", "level": 3 @@ -1233,7 +1233,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "paladin-ability-score-improvement_4", + "pk": "srd_paladin_ability-score-improvement_4", "fields": { "parent": "srd_paladin_ability-score-improvement", "level": 4 @@ -1241,7 +1241,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "paladin-extra-attack_5", + "pk": "srd_paladin_extra-attack_5", "fields": { "parent": "srd_paladin_extra-attack", "level": 5 @@ -1249,7 +1249,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "aura-of-protection_6", + "pk": "srd_paladin_aura-of-protection_6", "fields": { "parent": "srd_paladin_aura-of-protection", "level": 6 @@ -1257,7 +1257,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "paladin-ability-score-improvement_8", + "pk": "srd_paladin_ability-score-improvement_8", "fields": { "parent": "srd_paladin_ability-score-improvement", "level": 8 @@ -1265,7 +1265,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "aura-of-courage_10", + "pk": "srd_paladin_aura-of-courage_10", "fields": { "parent": "srd_paladin_aura-of-courage", "level": 10 @@ -1273,7 +1273,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "improved-divine-smite_11", + "pk": "srd_paladin_improved-divine-smite_11", "fields": { "parent": "srd_paladin_improved-divine-smite", "level": 11 @@ -1281,7 +1281,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "paladin-ability-score-improvement_12", + "pk": "srd_paladin_ability-score-improvement_12", "fields": { "parent": "srd_paladin_ability-score-improvement", "level": 12 @@ -1289,7 +1289,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "cleansing-touch_14", + "pk": "srd_paladin_cleansing-touch_14", "fields": { "parent": "srd_paladin_cleansing-touch", "level": 14 @@ -1297,7 +1297,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "paladin-ability-score-improvement_16", + "pk": "srd_paladin_ability-score-improvement_16", "fields": { "parent": "srd_paladin_ability-score-improvement", "level": 16 @@ -1305,7 +1305,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "aura-of-protection_18", + "pk": "srd_paladin_aura-of-protection_18", "fields": { "parent": "srd_paladin_aura-of-protection", "level": 18 @@ -1313,7 +1313,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "aura-of-courage_18", + "pk": "srd_paladin_aura-of-courage_18", "fields": { "parent": "srd_paladin_aura-of-courage", "level": 18 @@ -1321,7 +1321,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "paladin-ability-score-improvement_19", + "pk": "srd_paladin_ability-score-improvement_19", "fields": { "parent": "srd_paladin_ability-score-improvement", "level": 19 @@ -1329,7 +1329,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "tenets-of-devotion_3", + "pk": "srd_oath-of-devotion_tenets-of-devotion_3", "fields": { "parent": "srd_oath-of-devotion_tenets-of-devotion", "level": 3 @@ -1337,7 +1337,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "devotion-oath-spells_3", + "pk": "srd_oath-of-devotion_oath-spells_3", "fields": { "parent": "srd_oath-of-devotion_oath-spells", "level": 3 @@ -1345,7 +1345,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "devotion-oath-spells_5", + "pk": "srd_oath-of-devotion_oath-spells_5", "fields": { "parent": "srd_oath-of-devotion_oath-spells", "level": 5 @@ -1353,7 +1353,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "devotion-oath-spells_9", + "pk": "srd_oath-of-devotion_oath-spells_9", "fields": { "parent": "srd_oath-of-devotion_oath-spells", "level": 9 @@ -1361,7 +1361,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "devotion-oath-spells_13", + "pk": "srd_oath-of-devotion_oath-spells_13", "fields": { "parent": "srd_oath-of-devotion_oath-spells", "level": 13 @@ -1369,7 +1369,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "devotion-oath-spells_17", + "pk": "srd_oath-of-devotion_oath-spells_17", "fields": { "parent": "srd_oath-of-devotion_oath-spells", "level": 17 @@ -1377,7 +1377,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "devotion-channel-divinity_3", + "pk": "srd_oath-of-devotion_channel-divinity_3", "fields": { "parent": "srd_oath-of-devotion_channel-divinity", "level": 3 @@ -1385,7 +1385,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "aura-of-devotion_7", + "pk": "srd_oath-of-devotion_aura-of-devotion_7", "fields": { "parent": "srd_oath-of-devotion_aura-of-devotion", "level": 7 @@ -1393,7 +1393,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "aura-of-devotion_18", + "pk": "srd_oath-of-devotion_aura-of-devotion_18", "fields": { "parent": "srd_oath-of-devotion_aura-of-devotion", "level": 18 @@ -1401,7 +1401,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "purity-of-spirit_15", + "pk": "srd_oath-of-devotion_purity-of-spirit_15", "fields": { "parent": "srd_oath-of-devotion_purity-of-spirit", "level": 15 @@ -1409,7 +1409,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "holy-nimbus_20", + "pk": "srd_oath-of-devotion_holy-nimbus_20", "fields": { "parent": "srd_oath-of-devotion_holy-nimbus", "level": 20 @@ -1417,7 +1417,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "favored-enemy_1", + "pk": "srd_ranger_favored-enemy_1", "fields": { "parent": "srd_ranger_favored-enemy", "level": 1 @@ -1425,7 +1425,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "natural-explorer_1", + "pk": "srd_ranger_natural-explorer_1", "fields": { "parent": "srd_ranger_natural-explorer", "level": 1 @@ -1433,7 +1433,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "ranger-fighting-style_2", + "pk": "srd_ranger_fighting-style_2", "fields": { "parent": "srd_ranger_fighting-style", "level": 2 @@ -1441,7 +1441,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "ranger-spellcasting_2", + "pk": "srd_ranger_spellcasting_2", "fields": { "parent": "srd_ranger_spellcasting", "level": 2 @@ -1449,7 +1449,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "ranger-archetype_3", + "pk": "srd_ranger_ranger-archetype_3", "fields": { "parent": "srd_ranger_ranger-archetype", "level": 3 @@ -1457,7 +1457,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "primeval-awareness_3", + "pk": "srd_ranger_primeval-awareness_3", "fields": { "parent": "srd_ranger_primeval-awareness", "level": 3 @@ -1465,7 +1465,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "ranger-ability-score-improvement_4", + "pk": "srd_ranger_ability-score-improvement_4", "fields": { "parent": "srd_ranger_ability-score-improvement", "level": 4 @@ -1473,7 +1473,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "ranger-extra-attack_5", + "pk": "srd_ranger_extra-attack_5", "fields": { "parent": "srd_ranger_extra-attack", "level": 5 @@ -1481,7 +1481,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "favored-enemy_6", + "pk": "srd_ranger_favored-enemy_6", "fields": { "parent": "srd_ranger_favored-enemy", "level": 6 @@ -1489,7 +1489,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "natural-explorer_6", + "pk": "srd_ranger_natural-explorer_6", "fields": { "parent": "srd_ranger_natural-explorer", "level": 6 @@ -1497,7 +1497,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "ranger-ability-score-improvement_8", + "pk": "srd_ranger_ability-score-improvement_8", "fields": { "parent": "srd_ranger_ability-score-improvement", "level": 8 @@ -1505,7 +1505,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "ranger-lands-stride_8", + "pk": "srd_ranger_lands-stride_8", "fields": { "parent": "srd_ranger_lands-stride", "level": 8 @@ -1513,7 +1513,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "natural-explorer_10", + "pk": "srd_ranger_natural-explorer_10", "fields": { "parent": "srd_ranger_natural-explorer", "level": 10 @@ -1521,7 +1521,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "hide-in-plain-sight_10", + "pk": "srd_ranger_hide-in-plain-sight_10", "fields": { "parent": "srd_ranger_hide-in-plain-sight", "level": 10 @@ -1529,7 +1529,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "ranger-ability-score-improvement_12", + "pk": "srd_ranger_ability-score-improvement_12", "fields": { "parent": "srd_ranger_ability-score-improvement", "level": 12 @@ -1537,7 +1537,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "favored-enemy_14", + "pk": "srd_ranger_favored-enemy_14", "fields": { "parent": "srd_ranger_favored-enemy", "level": 14 @@ -1545,7 +1545,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "vanish_14", + "pk": "srd_ranger_vanish_14", "fields": { "parent": "srd_ranger_vanish", "level": 14 @@ -1553,7 +1553,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "ranger-ability-score-improvement_16", + "pk": "srd_ranger_ability-score-improvement_16", "fields": { "parent": "srd_ranger_ability-score-improvement", "level": 16 @@ -1561,7 +1561,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "feral-senses_18", + "pk": "srd_ranger_feral-senses_18", "fields": { "parent": "srd_ranger_feral-senses", "level": 18 @@ -1569,7 +1569,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "ranger-ability-score-improvement_19", + "pk": "srd_ranger_ability-score-improvement_19", "fields": { "parent": "srd_ranger_ability-score-improvement", "level": 19 @@ -1577,7 +1577,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "foe-slayer_20", + "pk": "srd_ranger_foe-slayer_20", "fields": { "parent": "srd_ranger_foe-slayer", "level": 20 @@ -1585,7 +1585,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "hunters-prey_3", + "pk": "srd_hunter_hunters-prey_3", "fields": { "parent": "srd_hunter_hunters-prey", "level": 3 @@ -1593,7 +1593,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "defensive-tactics_7", + "pk": "srd_hunter_defensive-tactics_7", "fields": { "parent": "srd_hunter_defensive-tactics", "level": 7 @@ -1601,7 +1601,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "multiattack_11", + "pk": "srd_hunter_multiattack_11", "fields": { "parent": "srd_hunter_multiattack", "level": 11 @@ -1609,7 +1609,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "superior-hunters-defense_15", + "pk": "srd_hunter_superior-hunters-defense_15", "fields": { "parent": "srd_hunter_superior-hunters-defense", "level": 15 @@ -1617,7 +1617,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "rogue-expertise_1", + "pk": "srd_rogue_expertise_1", "fields": { "parent": "srd_rogue_expertise", "level": 1 @@ -1625,7 +1625,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "sneak-attack_1", + "pk": "srd_rogue_sneak-attack_1", "fields": { "parent": "srd_rogue_sneak-attack", "level": 1 @@ -1633,7 +1633,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "thieves-cant_1", + "pk": "srd_rogue_thieves-cant_1", "fields": { "parent": "srd_rogue_thieves-cant", "level": 1 @@ -1641,7 +1641,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "cunning-action_2", + "pk": "srd_rogue_cunning-action_2", "fields": { "parent": "srd_rogue_cunning-action", "level": 2 @@ -1649,7 +1649,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "roguish-archetype_3", + "pk": "srd_rogue_roguish-archetype_3", "fields": { "parent": "srd_rogue_roguish-archetype", "level": 3 @@ -1657,7 +1657,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "rogue-ability-score-improvement_4", + "pk": "srd_rogue_ability-score-improvement_4", "fields": { "parent": "srd_rogue_ability-score-improvement", "level": 4 @@ -1665,7 +1665,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "uncanny-dodge_5", + "pk": "srd_rogue_uncanny-dodge_5", "fields": { "parent": "srd_rogue_uncanny-dodge", "level": 5 @@ -1673,7 +1673,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "rogue-expertise_6", + "pk": "srd_rogue_expertise_6", "fields": { "parent": "srd_rogue_expertise", "level": 6 @@ -1681,7 +1681,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "rogue-evasion_7", + "pk": "srd_rogue_evasion_7", "fields": { "parent": "srd_rogue_evasion", "level": 7 @@ -1689,7 +1689,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "rogue-ability-score-improvement_8", + "pk": "srd_rogue_ability-score-improvement_8", "fields": { "parent": "srd_rogue_ability-score-improvement", "level": 8 @@ -1697,7 +1697,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "rogue-ability-score-improvement_10", + "pk": "srd_rogue_ability-score-improvement_10", "fields": { "parent": "srd_rogue_ability-score-improvement", "level": 10 @@ -1705,7 +1705,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "reliable-talent_11", + "pk": "srd_rogue_reliable-talent_11", "fields": { "parent": "srd_rogue_reliable-talent", "level": 11 @@ -1713,7 +1713,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "rogue-ability-score-improvement_12", + "pk": "srd_rogue_ability-score-improvement_12", "fields": { "parent": "srd_rogue_ability-score-improvement", "level": 12 @@ -1721,7 +1721,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "blindsense_14", + "pk": "srd_rogue_blindsense_14", "fields": { "parent": "srd_rogue_blindsense", "level": 14 @@ -1729,7 +1729,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "slippery-mind_15", + "pk": "srd_rogue_slippery-mind_15", "fields": { "parent": "srd_rogue_slippery-mind", "level": 15 @@ -1737,7 +1737,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "rogue-ability-score-improvement_16", + "pk": "srd_rogue_ability-score-improvement_16", "fields": { "parent": "srd_rogue_ability-score-improvement", "level": 16 @@ -1745,7 +1745,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "elusive_18", + "pk": "srd_rogue_elusive_18", "fields": { "parent": "srd_rogue_elusive", "level": 18 @@ -1753,7 +1753,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "rogue-ability-score-improvement_19", + "pk": "srd_rogue_ability-score-improvement_19", "fields": { "parent": "srd_rogue_ability-score-improvement", "level": 19 @@ -1761,7 +1761,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "stroke-of-luck_20", + "pk": "srd_rogue_stroke-of-luck_20", "fields": { "parent": "srd_rogue_stroke-of-luck", "level": 20 @@ -1769,7 +1769,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fast-hands_3", + "pk": "srd_thief_fast-hands_3", "fields": { "parent": "srd_thief_fast-hands", "level": 3 @@ -1777,7 +1777,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "second-story-work_3", + "pk": "srd_thief_second-story-work_3", "fields": { "parent": "srd_thief_second-story-work", "level": 3 @@ -1785,7 +1785,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "supreme-sneak_9", + "pk": "srd_thief_supreme-sneak_9", "fields": { "parent": "srd_thief_supreme-sneak", "level": 9 @@ -1793,7 +1793,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "use-magic-device_13", + "pk": "srd_thief_use-magic-device_13", "fields": { "parent": "srd_thief_use-magic-device", "level": 13 @@ -1801,7 +1801,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "thiefs-reflexes_17", + "pk": "srd_thief_thiefs-reflexes_17", "fields": { "parent": "srd_thief_thiefs-reflexes", "level": 17 @@ -1809,7 +1809,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "sorceror-spellcasting_1", + "pk": "srd_sorcerer_spellcasting_1", "fields": { "parent": "srd_sorcerer_spellcasting", "level": 1 @@ -1817,7 +1817,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "sorcerous-origin_1", + "pk": "srd_sorcerer_sorcerous-origin_1", "fields": { "parent": "srd_sorcerer_sorcerous-origin", "level": 1 @@ -1825,7 +1825,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "font-of-magic_2", + "pk": "srd_sorcerer_font-of-magic_2", "fields": { "parent": "srd_sorcerer_font-of-magic", "level": 2 @@ -1833,7 +1833,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "metamagic_3", + "pk": "srd_sorcerer_metamagic_3", "fields": { "parent": "srd_sorcerer_metamagic", "level": 3 @@ -1841,7 +1841,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "sorceror-ability-score-improvement_4", + "pk": "srd_sorcerer_ability-score-improvement_4", "fields": { "parent": "srd_sorcerer_ability-score-improvement", "level": 4 @@ -1849,7 +1849,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "sorceror-ability-score-improvement_8", + "pk": "srd_sorcerer_ability-score-improvement_8", "fields": { "parent": "srd_sorcerer_ability-score-improvement", "level": 8 @@ -1857,7 +1857,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "metamagic_10", + "pk": "srd_sorcerer_metamagic_10", "fields": { "parent": "srd_sorcerer_metamagic", "level": 10 @@ -1865,7 +1865,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "sorceror-ability-score-improvement_12", + "pk": "srd_sorcerer_ability-score-improvement_12", "fields": { "parent": "srd_sorcerer_ability-score-improvement", "level": 12 @@ -1873,7 +1873,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "sorceror-ability-score-improvement_16", + "pk": "srd_sorcerer_ability-score-improvement_16", "fields": { "parent": "srd_sorcerer_ability-score-improvement", "level": 16 @@ -1881,7 +1881,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "metamagic_17", + "pk": "srd_sorcerer_metamagic_17", "fields": { "parent": "srd_sorcerer_metamagic", "level": 17 @@ -1889,7 +1889,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "sorceror-ability-score-improvement_19", + "pk": "srd_sorcerer_ability-score-improvement_19", "fields": { "parent": "srd_sorcerer_ability-score-improvement", "level": 19 @@ -1897,7 +1897,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "sorcerous-restoration_20", + "pk": "srd_sorcerer_sorcerous-restoration_20", "fields": { "parent": "srd_sorcerer_sorcerous-restoration", "level": 20 @@ -1905,7 +1905,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "dragon-ancestor_1", + "pk": "srd_draconic-bloodline_dragon-ancestor_1", "fields": { "parent": "srd_draconic-bloodline_dragon-ancestor", "level": 1 @@ -1913,7 +1913,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "draconic-resilience_1", + "pk": "srd_draconic-bloodline_draconic-resilience_1", "fields": { "parent": "srd_draconic-bloodline_draconic-resilience", "level": 1 @@ -1921,7 +1921,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "elemental-affinity_6", + "pk": "srd_draconic-bloodline_elemental-affinity_6", "fields": { "parent": "srd_draconic-bloodline_elemental-affinity", "level": 6 @@ -1929,7 +1929,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "dragon-wings_14", + "pk": "srd_draconic-bloodline_dragon-wings_14", "fields": { "parent": "srd_draconic-bloodline_dragon-wings", "level": 14 @@ -1937,7 +1937,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "draconic-presence_18", + "pk": "srd_draconic-bloodline_draconic-presence_18", "fields": { "parent": "srd_draconic-bloodline_draconic-presence", "level": 18 @@ -1945,7 +1945,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "otherworldly-patron_1", + "pk": "srd_warlock_otherworldly-patron_1", "fields": { "parent": "srd_warlock_otherworldly-patron", "level": 1 @@ -1953,7 +1953,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "pact-magic_1", + "pk": "srd_warlock_pact-magic_1", "fields": { "parent": "srd_warlock_pact-magic", "level": 1 @@ -1961,7 +1961,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "eldritch-invocations_2", + "pk": "srd_warlock_eldritch-invocations_2", "fields": { "parent": "srd_warlock_eldritch-invocations", "level": 2 @@ -1969,7 +1969,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "pact-boon_3", + "pk": "srd_warlock_pact-boon_3", "fields": { "parent": "srd_warlock_pact-boon", "level": 3 @@ -1977,7 +1977,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "warlock-ability-score-improvement_4", + "pk": "srd_warlock_ability-score-improvement_4", "fields": { "parent": "srd_warlock_ability-score-improvement", "level": 4 @@ -1985,7 +1985,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "warlock-ability-score-improvement_8", + "pk": "srd_warlock_ability-score-improvement_8", "fields": { "parent": "srd_warlock_ability-score-improvement", "level": 8 @@ -1993,7 +1993,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "mystic-arcanum_11", + "pk": "srd_warlock_mystic-arcanum_11", "fields": { "parent": "srd_warlock_mystic-arcanum", "level": 11 @@ -2001,7 +2001,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "warlock-ability-score-improvement_12", + "pk": "srd_warlock_ability-score-improvement_12", "fields": { "parent": "srd_warlock_ability-score-improvement", "level": 12 @@ -2009,7 +2009,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "mystic-arcanum_13", + "pk": "srd_warlock_mystic-arcanum_13", "fields": { "parent": "srd_warlock_mystic-arcanum", "level": 13 @@ -2017,7 +2017,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "mystic-arcanum_15", + "pk": "srd_warlock_mystic-arcanum_15", "fields": { "parent": "srd_warlock_mystic-arcanum", "level": 15 @@ -2025,7 +2025,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "mystic-arcanum_17", + "pk": "srd_warlock_mystic-arcanum_17", "fields": { "parent": "srd_warlock_mystic-arcanum", "level": 17 @@ -2033,7 +2033,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "warlock-ability-score-improvement_19", + "pk": "srd_warlock_ability-score-improvement_19", "fields": { "parent": "srd_warlock_ability-score-improvement", "level": 19 @@ -2041,7 +2041,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "eldritch-master_20", + "pk": "srd_warlock_eldritch-master_20", "fields": { "parent": "srd_warlock_eldritch-master", "level": 20 @@ -2049,7 +2049,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "eldritch-invocation-list_2", + "pk": "srd_warlock_eldritch-invocation-list_2", "fields": { "parent": "srd_warlock_eldritch-invocation-list", "level": 2 @@ -2057,7 +2057,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "expanded-spell-list_1", + "pk": "srd_the-fiend_expanded-spell-list_1", "fields": { "parent": "srd_the-fiend_expanded-spell-list", "level": 1 @@ -2065,7 +2065,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "dark-ones-blessing_1", + "pk": "srd_the-fiend_dark-ones-blessing_1", "fields": { "parent": "srd_the-fiend_dark-ones-blessing", "level": 1 @@ -2073,7 +2073,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "dark-ones-own-luck_6", + "pk": "srd_the-fiend_dark-ones-own-luck_6", "fields": { "parent": "srd_the-fiend_dark-ones-own-luck", "level": 6 @@ -2081,7 +2081,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "fiendish-resilience_10", + "pk": "srd_the-fiend_fiendish-resilience_10", "fields": { "parent": "srd_the-fiend_fiendish-resilience", "level": 10 @@ -2089,7 +2089,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "hurl-through-hell_14", + "pk": "srd_the-fiend_hurl-through-hell_14", "fields": { "parent": "srd_the-fiend_hurl-through-hell", "level": 14 @@ -2097,7 +2097,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "wizard-spellcasting_1", + "pk": "srd_wizard_spellcasting_1", "fields": { "parent": "srd_wizard_spellcasting", "level": 1 @@ -2105,7 +2105,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "arcane-recovery_1", + "pk": "srd_wizard_arcane-recovery_1", "fields": { "parent": "srd_wizard_arcane-recovery", "level": 1 @@ -2113,7 +2113,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "arcane-tradition_2", + "pk": "srd_wizard_arcane-tradition_2", "fields": { "parent": "srd_wizard_arcane-tradition", "level": 2 @@ -2121,7 +2121,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "wizard-ability-score-improvement_4", + "pk": "srd_wizard_ability-score-improvement_4", "fields": { "parent": "srd_wizard_ability-score-improvement", "level": 4 @@ -2129,7 +2129,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "wizard-ability-score-improvement_8", + "pk": "srd_wizard_ability-score-improvement_8", "fields": { "parent": "srd_wizard_ability-score-improvement", "level": 8 @@ -2137,7 +2137,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "wizard-ability-score-improvement_12", + "pk": "srd_wizard_ability-score-improvement_12", "fields": { "parent": "srd_wizard_ability-score-improvement", "level": 12 @@ -2145,7 +2145,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "wizard-ability-score-improvement_16", + "pk": "srd_wizard_ability-score-improvement_16", "fields": { "parent": "srd_wizard_ability-score-improvement", "level": 16 @@ -2153,7 +2153,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "spell-mastery_18", + "pk": "srd_wizard_spell-mastery_18", "fields": { "parent": "srd_wizard_spell-mastery", "level": 18 @@ -2161,7 +2161,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "wizard-ability-score-improvement_19", + "pk": "srd_wizard_ability-score-improvement_19", "fields": { "parent": "srd_wizard_ability-score-improvement", "level": 19 @@ -2169,7 +2169,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "signature-spells_20", + "pk": "srd_wizard_signature-spells_20", "fields": { "parent": "srd_wizard_signature-spells", "level": 20 @@ -2177,7 +2177,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "evocation-savant_2", + "pk": "srd_school-of-evocation_evocation-savant_2", "fields": { "parent": "srd_school-of-evocation_evocation-savant", "level": 2 @@ -2185,7 +2185,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "sculpt-spells_2", + "pk": "srd_school-of-evocation_sculpt-spells_2", "fields": { "parent": "srd_school-of-evocation_sculpt-spells", "level": 2 @@ -2193,7 +2193,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "potent-cantrip_6", + "pk": "srd_school-of-evocation_potent-cantrip_6", "fields": { "parent": "srd_school-of-evocation_potent-cantrip", "level": 6 @@ -2201,7 +2201,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "empowered-evocation_10", + "pk": "srd_school-of-evocation_empowered-evocation_10", "fields": { "parent": "srd_school-of-evocation_empowered-evocation", "level": 10 @@ -2209,7 +2209,7 @@ }, { "model": "api_v2.classfeatureitem", - "pk": "overchannel_14", + "pk": "srd_school-of-evocation_overchannel_14", "fields": { "parent": "srd_school-of-evocation_overchannel", "level": 14 diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index 5cb670b4..4ac9c93a 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -72,7 +72,7 @@ def main(): logger.debug("Skipping {}: file is known to have numeric keys.".format(f_obj['filename'])) else: check_keys_non_numeric(objs, f_obj) - if args.fix: fix_keys_to_parent_level(objs, f_obj) + #if args.fix: fix_keys_to_parent_level(objs, f_obj) # CHECK FOR KEYS THAT ARE NOT PROPERLY SLUGIFIED known_keys_are_slugified_exceptions = [] @@ -87,7 +87,7 @@ def main(): logger.debug("Skipping {}: file is known to have non-slugified keys.".format(f_obj['filename'])) else: check_keys_doc_name(objs, f_obj) - if args.fix: fix_keys_to_doc_name(objs, f_obj) + if args.fix: fix_keys_to_parent_level(objs, f_obj) def check_keys_non_numeric(objs,f): From a8dc02579c55aec78b94f602fa824dd53bf796ed Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 10:59:37 -0500 Subject: [PATCH 33/84] Refactor FB --- api_v2/admin.py | 6 +- .../0081_rename_capability_featbenefit.py | 17 + api_v2/models/__init__.py | 2 +- api_v2/models/feat.py | 4 +- api_v2/serializers/__init__.py | 2 +- api_v2/serializers/feat.py | 6 +- .../{Capability.json => FeatBenefit.json} | 474 +++++++++--------- .../srd/{Capability.json => FeatBenefit.json} | 4 +- 8 files changed, 266 insertions(+), 249 deletions(-) create mode 100644 api_v2/migrations/0081_rename_capability_featbenefit.py rename data/v2/en-publishing/a5e-ag/{Capability.json => FeatBenefit.json} (89%) rename data/v2/wizards-of-the-coast/srd/{Capability.json => FeatBenefit.json} (88%) diff --git a/api_v2/admin.py b/api_v2/admin.py index 568ed866..fd67089a 100644 --- a/api_v2/admin.py +++ b/api_v2/admin.py @@ -23,14 +23,14 @@ class RaceAdmin(admin.ModelAdmin): ] -class CapabilityInline(admin.TabularInline): - model = Capability +class FeatBenefitInline(admin.TabularInline): + model = FeatBenefit exclude = ('name',) class FeatAdmin(admin.ModelAdmin): inlines = [ - CapabilityInline, + FeatBenefitInline ] list_display = ['key', 'name'] diff --git a/api_v2/migrations/0081_rename_capability_featbenefit.py b/api_v2/migrations/0081_rename_capability_featbenefit.py new file mode 100644 index 00000000..60891a75 --- /dev/null +++ b/api_v2/migrations/0081_rename_capability_featbenefit.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2024-05-27 15:57 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0080_auto_20240525_1218'), + ] + + operations = [ + migrations.RenameModel( + old_name='Capability', + new_name='FeatBenefit', + ), + ] diff --git a/api_v2/models/__init__.py b/api_v2/models/__init__.py index 54d1f307..d3e2312c 100644 --- a/api_v2/models/__init__.py +++ b/api_v2/models/__init__.py @@ -14,7 +14,7 @@ from .race import Trait from .race import Race -from .feat import Capability +from .feat import FeatBenefit from .feat import Feat from .background import BackgroundBenefit diff --git a/api_v2/models/feat.py b/api_v2/models/feat.py index 11039fe1..948be7e3 100644 --- a/api_v2/models/feat.py +++ b/api_v2/models/feat.py @@ -3,8 +3,8 @@ from .abstracts import HasName, HasDescription, HasPrerequisite, Modification from .document import FromDocument -#TODO rename to FeatCapability -class Capability(Modification): +#TODO rename to FeatBenefit +class FeatBenefit(Modification): """This is the model for an individual benefit of a feat.""" #TODO refactor to parent diff --git a/api_v2/serializers/__init__.py b/api_v2/serializers/__init__.py index d14ef52e..01aad76a 100644 --- a/api_v2/serializers/__init__.py +++ b/api_v2/serializers/__init__.py @@ -15,7 +15,7 @@ from .document import PublisherSerializer from .document import DocumentSerializer -from .feat import CapabilitySerializer +from .feat import FeatBenefitSerializer from .feat import FeatSerializer from .race import TraitSerializer diff --git a/api_v2/serializers/feat.py b/api_v2/serializers/feat.py index b3877300..5dd2061c 100644 --- a/api_v2/serializers/feat.py +++ b/api_v2/serializers/feat.py @@ -6,15 +6,15 @@ from .abstracts import GameContentSerializer -class CapabilitySerializer(serializers.ModelSerializer): +class FeatBenefitSerializer(serializers.ModelSerializer): class Meta: - model = models.Capability + model = models.FeatBenefit fields = ['desc'] class FeatSerializer(GameContentSerializer): key = serializers.ReadOnlyField() has_prerequisite = serializers.ReadOnlyField() - capabilities = CapabilitySerializer( + capabilities = FeatBenefitSerializer( many=True) class Meta: diff --git a/data/v2/en-publishing/a5e-ag/Capability.json b/data/v2/en-publishing/a5e-ag/FeatBenefit.json similarity index 89% rename from data/v2/en-publishing/a5e-ag/Capability.json rename to data/v2/en-publishing/a5e-ag/FeatBenefit.json index f8f4ef68..86f3ca59 100644 --- a/data/v2/en-publishing/a5e-ag/Capability.json +++ b/data/v2/en-publishing/a5e-ag/FeatBenefit.json @@ -1,6 +1,6 @@ [ { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 1, "fields": { "name": "", @@ -10,7 +10,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 2, "fields": { "name": "", @@ -20,7 +20,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 3, "fields": { "name": "", @@ -30,7 +30,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 4, "fields": { "name": "", @@ -40,7 +40,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 5, "fields": { "name": "", @@ -50,7 +50,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 6, "fields": { "name": "", @@ -60,7 +60,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 7, "fields": { "name": "", @@ -70,7 +70,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 8, "fields": { "name": "", @@ -80,7 +80,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 9, "fields": { "name": "", @@ -90,7 +90,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 10, "fields": { "name": "", @@ -100,7 +100,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 11, "fields": { "name": "", @@ -110,7 +110,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 12, "fields": { "name": "", @@ -120,7 +120,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 13, "fields": { "name": "", @@ -130,7 +130,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 14, "fields": { "name": "", @@ -140,7 +140,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 15, "fields": { "name": "", @@ -150,7 +150,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 16, "fields": { "name": "", @@ -160,7 +160,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 17, "fields": { "name": "", @@ -170,7 +170,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 18, "fields": { "name": "", @@ -180,7 +180,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 19, "fields": { "name": "", @@ -190,7 +190,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 20, "fields": { "name": "", @@ -200,7 +200,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 21, "fields": { "name": "", @@ -210,7 +210,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 22, "fields": { "name": "", @@ -220,7 +220,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 23, "fields": { "name": "", @@ -230,7 +230,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 24, "fields": { "name": "", @@ -240,7 +240,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 25, "fields": { "name": "", @@ -250,7 +250,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 26, "fields": { "name": "", @@ -260,7 +260,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 27, "fields": { "name": "", @@ -270,7 +270,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 28, "fields": { "name": "", @@ -280,7 +280,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 29, "fields": { "name": "", @@ -290,7 +290,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 30, "fields": { "name": "", @@ -300,7 +300,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 31, "fields": { "name": "", @@ -310,7 +310,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 32, "fields": { "name": "", @@ -320,7 +320,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 33, "fields": { "name": "", @@ -330,7 +330,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 34, "fields": { "name": "", @@ -340,7 +340,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 35, "fields": { "name": "", @@ -350,7 +350,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 36, "fields": { "name": "", @@ -360,7 +360,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 37, "fields": { "name": "", @@ -370,7 +370,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 38, "fields": { "name": "", @@ -380,7 +380,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 39, "fields": { "name": "", @@ -390,7 +390,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 40, "fields": { "name": "", @@ -400,7 +400,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 41, "fields": { "name": "", @@ -410,7 +410,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 42, "fields": { "name": "", @@ -420,7 +420,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 43, "fields": { "name": "", @@ -430,7 +430,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 44, "fields": { "name": "", @@ -440,7 +440,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 45, "fields": { "name": "", @@ -450,7 +450,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 46, "fields": { "name": "", @@ -460,7 +460,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 47, "fields": { "name": "", @@ -470,7 +470,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 48, "fields": { "name": "", @@ -480,7 +480,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 49, "fields": { "name": "", @@ -490,7 +490,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 50, "fields": { "name": "", @@ -500,7 +500,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 51, "fields": { "name": "", @@ -510,7 +510,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 52, "fields": { "name": "", @@ -520,7 +520,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 53, "fields": { "name": "", @@ -530,7 +530,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 54, "fields": { "name": "", @@ -540,7 +540,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 55, "fields": { "name": "", @@ -550,7 +550,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 56, "fields": { "name": "", @@ -560,7 +560,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 57, "fields": { "name": "", @@ -570,7 +570,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 58, "fields": { "name": "", @@ -580,7 +580,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 59, "fields": { "name": "", @@ -590,7 +590,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 60, "fields": { "name": "", @@ -600,7 +600,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 61, "fields": { "name": "", @@ -610,7 +610,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 62, "fields": { "name": "", @@ -620,7 +620,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 63, "fields": { "name": "", @@ -630,7 +630,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 64, "fields": { "name": "", @@ -640,7 +640,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 65, "fields": { "name": "", @@ -650,7 +650,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 66, "fields": { "name": "", @@ -660,7 +660,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 67, "fields": { "name": "", @@ -670,7 +670,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 68, "fields": { "name": "", @@ -680,7 +680,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 69, "fields": { "name": "", @@ -690,7 +690,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 70, "fields": { "name": "", @@ -700,7 +700,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 71, "fields": { "name": "", @@ -710,7 +710,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 72, "fields": { "name": "", @@ -720,7 +720,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 73, "fields": { "name": "", @@ -730,7 +730,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 74, "fields": { "name": "", @@ -740,7 +740,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 75, "fields": { "name": "", @@ -750,7 +750,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 76, "fields": { "name": "", @@ -760,7 +760,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 77, "fields": { "name": "", @@ -770,7 +770,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 78, "fields": { "name": "", @@ -780,7 +780,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 79, "fields": { "name": "", @@ -790,7 +790,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 80, "fields": { "name": "", @@ -800,7 +800,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 81, "fields": { "name": "", @@ -810,7 +810,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 82, "fields": { "name": "", @@ -820,7 +820,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 83, "fields": { "name": "", @@ -830,7 +830,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 84, "fields": { "name": "", @@ -840,7 +840,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 85, "fields": { "name": "", @@ -850,7 +850,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 86, "fields": { "name": "", @@ -860,7 +860,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 87, "fields": { "name": "", @@ -870,7 +870,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 88, "fields": { "name": "", @@ -880,7 +880,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 89, "fields": { "name": "", @@ -890,7 +890,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 90, "fields": { "name": "", @@ -900,7 +900,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 91, "fields": { "name": "", @@ -910,7 +910,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 92, "fields": { "name": "", @@ -920,7 +920,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 93, "fields": { "name": "", @@ -930,7 +930,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 94, "fields": { "name": "", @@ -940,7 +940,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 95, "fields": { "name": "", @@ -950,7 +950,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 96, "fields": { "name": "", @@ -960,7 +960,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 97, "fields": { "name": "", @@ -970,7 +970,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 98, "fields": { "name": "", @@ -980,7 +980,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 99, "fields": { "name": "", @@ -990,7 +990,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 100, "fields": { "name": "", @@ -1000,7 +1000,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 101, "fields": { "name": "", @@ -1010,7 +1010,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 102, "fields": { "name": "", @@ -1020,7 +1020,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 103, "fields": { "name": "", @@ -1030,7 +1030,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 104, "fields": { "name": "", @@ -1040,7 +1040,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 105, "fields": { "name": "", @@ -1050,7 +1050,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 106, "fields": { "name": "", @@ -1060,7 +1060,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 107, "fields": { "name": "", @@ -1070,7 +1070,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 108, "fields": { "name": "", @@ -1080,7 +1080,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 109, "fields": { "name": "", @@ -1090,7 +1090,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 110, "fields": { "name": "", @@ -1100,7 +1100,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 111, "fields": { "name": "", @@ -1110,7 +1110,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 112, "fields": { "name": "", @@ -1120,7 +1120,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 113, "fields": { "name": "", @@ -1130,7 +1130,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 114, "fields": { "name": "", @@ -1140,7 +1140,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 115, "fields": { "name": "", @@ -1150,7 +1150,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 116, "fields": { "name": "", @@ -1160,7 +1160,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 117, "fields": { "name": "", @@ -1170,7 +1170,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 118, "fields": { "name": "", @@ -1180,7 +1180,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 119, "fields": { "name": "", @@ -1190,7 +1190,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 120, "fields": { "name": "", @@ -1200,7 +1200,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 121, "fields": { "name": "", @@ -1210,7 +1210,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 122, "fields": { "name": "", @@ -1220,7 +1220,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 123, "fields": { "name": "", @@ -1230,7 +1230,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 124, "fields": { "name": "", @@ -1240,7 +1240,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 125, "fields": { "name": "", @@ -1250,7 +1250,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 126, "fields": { "name": "", @@ -1260,7 +1260,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 127, "fields": { "name": "", @@ -1270,7 +1270,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 128, "fields": { "name": "", @@ -1280,7 +1280,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 129, "fields": { "name": "", @@ -1290,7 +1290,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 130, "fields": { "name": "", @@ -1300,7 +1300,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 131, "fields": { "name": "", @@ -1310,7 +1310,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 132, "fields": { "name": "", @@ -1320,7 +1320,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 133, "fields": { "name": "", @@ -1330,7 +1330,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 134, "fields": { "name": "", @@ -1340,7 +1340,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 135, "fields": { "name": "", @@ -1350,7 +1350,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 136, "fields": { "name": "", @@ -1360,7 +1360,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 137, "fields": { "name": "", @@ -1370,7 +1370,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 138, "fields": { "name": "", @@ -1380,7 +1380,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 139, "fields": { "name": "", @@ -1390,7 +1390,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 140, "fields": { "name": "", @@ -1400,7 +1400,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 141, "fields": { "name": "", @@ -1410,7 +1410,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 142, "fields": { "name": "", @@ -1420,7 +1420,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 143, "fields": { "name": "", @@ -1430,7 +1430,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 144, "fields": { "name": "", @@ -1440,7 +1440,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 145, "fields": { "name": "", @@ -1450,7 +1450,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 146, "fields": { "name": "", @@ -1460,7 +1460,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 147, "fields": { "name": "", @@ -1470,7 +1470,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 148, "fields": { "name": "", @@ -1480,7 +1480,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 149, "fields": { "name": "", @@ -1490,7 +1490,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 150, "fields": { "name": "", @@ -1500,7 +1500,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 151, "fields": { "name": "", @@ -1510,7 +1510,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 152, "fields": { "name": "", @@ -1520,7 +1520,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 153, "fields": { "name": "", @@ -1530,7 +1530,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 154, "fields": { "name": "", @@ -1540,7 +1540,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 155, "fields": { "name": "", @@ -1550,7 +1550,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 156, "fields": { "name": "", @@ -1560,7 +1560,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 157, "fields": { "name": "", @@ -1570,7 +1570,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 158, "fields": { "name": "", @@ -1580,7 +1580,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 159, "fields": { "name": "", @@ -1590,7 +1590,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 160, "fields": { "name": "", @@ -1600,7 +1600,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 161, "fields": { "name": "", @@ -1610,7 +1610,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 162, "fields": { "name": "", @@ -1620,7 +1620,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 163, "fields": { "name": "", @@ -1630,7 +1630,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 164, "fields": { "name": "", @@ -1640,7 +1640,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 165, "fields": { "name": "", @@ -1650,7 +1650,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 166, "fields": { "name": "", @@ -1660,7 +1660,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 167, "fields": { "name": "", @@ -1670,7 +1670,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 168, "fields": { "name": "", @@ -1680,7 +1680,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 169, "fields": { "name": "", @@ -1690,7 +1690,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 170, "fields": { "name": "", @@ -1700,7 +1700,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 171, "fields": { "name": "", @@ -1710,7 +1710,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 172, "fields": { "name": "", @@ -1720,7 +1720,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 173, "fields": { "name": "", @@ -1730,7 +1730,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 174, "fields": { "name": "", @@ -1740,7 +1740,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 177, "fields": { "name": "", @@ -1750,7 +1750,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 178, "fields": { "name": "", @@ -1760,7 +1760,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 179, "fields": { "name": "", @@ -1770,7 +1770,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 180, "fields": { "name": "", @@ -1780,7 +1780,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 181, "fields": { "name": "", @@ -1790,7 +1790,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 182, "fields": { "name": "", @@ -1800,7 +1800,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 183, "fields": { "name": "", @@ -1810,7 +1810,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 184, "fields": { "name": "", @@ -1820,7 +1820,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 185, "fields": { "name": "", @@ -1830,7 +1830,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 186, "fields": { "name": "", @@ -1840,7 +1840,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 187, "fields": { "name": "", @@ -1850,7 +1850,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 188, "fields": { "name": "", @@ -1860,7 +1860,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 189, "fields": { "name": "", @@ -1870,7 +1870,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 190, "fields": { "name": "", @@ -1880,7 +1880,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 191, "fields": { "name": "", @@ -1890,7 +1890,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 192, "fields": { "name": "", @@ -1900,7 +1900,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 193, "fields": { "name": "", @@ -1910,7 +1910,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 194, "fields": { "name": "", @@ -1920,7 +1920,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 195, "fields": { "name": "", @@ -1930,7 +1930,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 196, "fields": { "name": "", @@ -1940,7 +1940,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 197, "fields": { "name": "", @@ -1950,7 +1950,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 198, "fields": { "name": "", @@ -1960,7 +1960,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 199, "fields": { "name": "", @@ -1970,7 +1970,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 200, "fields": { "name": "", @@ -1980,7 +1980,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 201, "fields": { "name": "", @@ -1990,7 +1990,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 202, "fields": { "name": "", @@ -2000,7 +2000,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 203, "fields": { "name": "", @@ -2010,7 +2010,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 204, "fields": { "name": "", @@ -2020,7 +2020,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 205, "fields": { "name": "", @@ -2030,7 +2030,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 206, "fields": { "name": "", @@ -2040,7 +2040,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 207, "fields": { "name": "", @@ -2050,7 +2050,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 208, "fields": { "name": "", @@ -2060,7 +2060,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 209, "fields": { "name": "", @@ -2070,7 +2070,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 210, "fields": { "name": "", @@ -2080,7 +2080,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 211, "fields": { "name": "", @@ -2090,7 +2090,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 212, "fields": { "name": "", @@ -2100,7 +2100,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 213, "fields": { "name": "", @@ -2110,7 +2110,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 214, "fields": { "name": "", @@ -2120,7 +2120,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 215, "fields": { "name": "", @@ -2130,7 +2130,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 216, "fields": { "name": "", @@ -2140,7 +2140,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 217, "fields": { "name": "", @@ -2150,7 +2150,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 218, "fields": { "name": "", @@ -2160,7 +2160,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 219, "fields": { "name": "", @@ -2170,7 +2170,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 220, "fields": { "name": "", @@ -2180,7 +2180,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 221, "fields": { "name": "", @@ -2190,7 +2190,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 222, "fields": { "name": "", @@ -2200,7 +2200,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 223, "fields": { "name": "", @@ -2210,7 +2210,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 224, "fields": { "name": "", @@ -2220,7 +2220,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 225, "fields": { "name": "", @@ -2230,7 +2230,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 226, "fields": { "name": "", @@ -2240,7 +2240,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 227, "fields": { "name": "", @@ -2250,7 +2250,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 228, "fields": { "name": "", @@ -2260,7 +2260,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 229, "fields": { "name": "", @@ -2270,7 +2270,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 230, "fields": { "name": "", @@ -2280,7 +2280,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 231, "fields": { "name": "", @@ -2290,7 +2290,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 232, "fields": { "name": "", @@ -2300,7 +2300,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 233, "fields": { "name": "", @@ -2310,7 +2310,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 234, "fields": { "name": "", @@ -2320,7 +2320,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 235, "fields": { "name": "", @@ -2330,7 +2330,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 236, "fields": { "name": "", @@ -2340,7 +2340,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 237, "fields": { "name": "", @@ -2350,7 +2350,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 238, "fields": { "name": "", @@ -2360,7 +2360,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 239, "fields": { "name": "", diff --git a/data/v2/wizards-of-the-coast/srd/Capability.json b/data/v2/wizards-of-the-coast/srd/FeatBenefit.json similarity index 88% rename from data/v2/wizards-of-the-coast/srd/Capability.json rename to data/v2/wizards-of-the-coast/srd/FeatBenefit.json index c07ca844..423042ed 100644 --- a/data/v2/wizards-of-the-coast/srd/Capability.json +++ b/data/v2/wizards-of-the-coast/srd/FeatBenefit.json @@ -1,6 +1,6 @@ [ { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 175, "fields": { "name": "", @@ -10,7 +10,7 @@ } }, { - "model": "api_v2.capability", + "model": "api_v2.featbenefit", "pk": 176, "fields": { "name": "", From 49d34ee2267b08960eaca10b118c6c79cc040e13 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 11:01:58 -0500 Subject: [PATCH 34/84] fixing presentation --- api_v2/models/feat.py | 4 ++-- api_v2/serializers/feat.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/api_v2/models/feat.py b/api_v2/models/feat.py index 948be7e3..35f4aca7 100644 --- a/api_v2/models/feat.py +++ b/api_v2/models/feat.py @@ -22,9 +22,9 @@ class provides. """ @property - def capabilities(self): + def benefits(self): """Returns the set of benefits that are related to this feat.""" - return self.capability_set + return self.featbenefit_set class Meta: """To assist with the UI layer.""" diff --git a/api_v2/serializers/feat.py b/api_v2/serializers/feat.py index 5dd2061c..1b6c3d9f 100644 --- a/api_v2/serializers/feat.py +++ b/api_v2/serializers/feat.py @@ -14,7 +14,7 @@ class Meta: class FeatSerializer(GameContentSerializer): key = serializers.ReadOnlyField() has_prerequisite = serializers.ReadOnlyField() - capabilities = FeatBenefitSerializer( + benefits = FeatBenefitSerializer( many=True) class Meta: From 1981c75b78b970904c9431e9db0b7ac28c522999 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 11:05:03 -0500 Subject: [PATCH 35/84] Fixing featbenefit export. --- api_v2/management/commands/export.py | 6 +- .../0082_rename_feat_featbenefit_parent.py | 18 + api_v2/models/feat.py | 5 +- data/v2/en-publishing/a5e-ag/FeatBenefit.json | 474 ++++++++--------- .../srd/CharacterClass.json | 482 +++++++++--------- .../wizards-of-the-coast/srd/FeatBenefit.json | 4 +- 6 files changed, 503 insertions(+), 486 deletions(-) create mode 100644 api_v2/migrations/0082_rename_feat_featbenefit_parent.py diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index 015b1960..52bb5a8d 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -109,14 +109,14 @@ def handle(self, *args, **options) -> None: for model in app_models: SKIPPED_MODEL_NAMES = ['Document', 'Ruleset', 'License', 'Publisher','SearchResult'] - CHILD_MODEL_NAMES = ['Trait', 'Capability', 'BackgroundBenefit', 'ClassFeatureItem', 'CastingOption'] + CHILD_MODEL_NAMES = ['Trait', 'FeatBenefit', 'BackgroundBenefit', 'ClassFeatureItem', 'CastingOption'] if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES: if model.__name__ in CHILD_MODEL_NAMES: if model.__name__ == 'Trait': modelq = model.objects.filter(race__document=doc).order_by('pk') - if model.__name__ == 'Capability': - modelq = model.objects.filter(feat__document=doc).order_by('pk') + if model.__name__ == 'FeatBenefit': + modelq = model.objects.filter(parent__document=doc).order_by('pk') if model.__name__ == 'BackgroundBenefit': modelq = model.objects.filter(parent__document=doc).order_by('pk') if model.__name__ == 'CastingOption': diff --git a/api_v2/migrations/0082_rename_feat_featbenefit_parent.py b/api_v2/migrations/0082_rename_feat_featbenefit_parent.py new file mode 100644 index 00000000..8d1d7e94 --- /dev/null +++ b/api_v2/migrations/0082_rename_feat_featbenefit_parent.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-05-27 16:02 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0081_rename_capability_featbenefit'), + ] + + operations = [ + migrations.RenameField( + model_name='featbenefit', + old_name='feat', + new_name='parent', + ), + ] diff --git a/api_v2/models/feat.py b/api_v2/models/feat.py index 35f4aca7..5a644d8c 100644 --- a/api_v2/models/feat.py +++ b/api_v2/models/feat.py @@ -3,12 +3,11 @@ from .abstracts import HasName, HasDescription, HasPrerequisite, Modification from .document import FromDocument -#TODO rename to FeatBenefit class FeatBenefit(Modification): """This is the model for an individual benefit of a feat.""" - #TODO refactor to parent - feat = models.ForeignKey('Feat', on_delete=models.CASCADE) + + parent = models.ForeignKey('Feat', on_delete=models.CASCADE) class Feat(HasName, HasDescription, HasPrerequisite, FromDocument): diff --git a/data/v2/en-publishing/a5e-ag/FeatBenefit.json b/data/v2/en-publishing/a5e-ag/FeatBenefit.json index 86f3ca59..0d4a8836 100644 --- a/data/v2/en-publishing/a5e-ag/FeatBenefit.json +++ b/data/v2/en-publishing/a5e-ag/FeatBenefit.json @@ -6,7 +6,7 @@ "name": "", "desc": "You gain proficiency with the herbalism kit, navigator’s kit, a simple ranged weapon, or a martial ranged weapon.", "type": null, - "feat": "woodcraft-training" + "parent": "woodcraft-training" } }, { @@ -16,7 +16,7 @@ "name": "", "desc": "You gain two exploration knacks of your choice from the ranger class.", "type": null, - "feat": "woodcraft-training" + "parent": "woodcraft-training" } }, { @@ -26,7 +26,7 @@ "name": "", "desc": "While raging, you and any creatures benefiting from your Living Stampede emit 5-foot auras of fury.", "type": null, - "feat": "wild-rioter" + "parent": "wild-rioter" } }, { @@ -36,7 +36,7 @@ "name": "", "desc": "When a creature other than you or your allies enters a fury aura or starts its turn there it makes a Wisdom saving throw against your druid spell save DC. On a failed save, a creature becomes confused, except instead of rolling to determine their actions as normal for the confused condition, they are always considered to have rolled the 7 or 8 result. At the end of each of a confused creature’s turns it repeats the saving throw, ending the effect on itself on a success. Once a creature successfully saves against this effect, it is immune to it for the remainder of your rage.", "type": null, - "feat": "wild-rioter" + "parent": "wild-rioter" } }, { @@ -46,7 +46,7 @@ "name": "", "desc": "You are treated as royalty (or as closely as possible) by most commoners and traders, and as an equal when meeting other authority figures (who make time in their schedule to see you when requested to do so).", "type": null, - "feat": "well-heeled" + "parent": "well-heeled" } }, { @@ -56,7 +56,7 @@ "name": "", "desc": "You have passive investments and income that allow you to maintain a high quality of living. You have a rich lifestyle and do not need to pay for it.", "type": null, - "feat": "well-heeled" + "parent": "well-heeled" } }, { @@ -66,7 +66,7 @@ "name": "", "desc": "You gain a second Prestige Center. This must be an area where you have spent at least a week of time.", "type": null, - "feat": "well-heeled" + "parent": "well-heeled" } }, { @@ -76,7 +76,7 @@ "name": "", "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", "type": null, - "feat": "weapons-specialist" + "parent": "weapons-specialist" } }, { @@ -86,7 +86,7 @@ "name": "", "desc": "You gain proficiency with four weapons of your choice. Three of these must be a simple or a martial weapon. The fourth choice can be a simple, martial, or rare weapon.", "type": null, - "feat": "weapons-specialist" + "parent": "weapons-specialist" } }, { @@ -96,7 +96,7 @@ "name": "", "desc": "Your Wisdom or Dexterity score increases by 1, to a maximum of 20.", "type": null, - "feat": "vigilante" + "parent": "vigilante" } }, { @@ -106,7 +106,7 @@ "name": "", "desc": "You have an alter ego, an identity associated with a costume or disguise. This alter ego can be as complicated as a full outfit with a history or legends surrounding it or a simple mask or cowl. You can assume or remove this alter ego as an action and it can be worn with all types of armor.", "type": null, - "feat": "vigilante" + "parent": "vigilante" } }, { @@ -116,7 +116,7 @@ "name": "", "desc": "You gain a 1d8 expertise die and advantage on Deception checks made regarding your alter ego, Persuasion checks made to dissuade others from connecting you to your alter ego, and on disguise kit checks.", "type": null, - "feat": "vigilante" + "parent": "vigilante" } }, { @@ -126,7 +126,7 @@ "name": "", "desc": "Your alter ego has its own Prestige rating that may increase or decrease as you perform deeds while in your alter ego. In addition, while in your alter ego you gain a 1d8 expertise die on Prestige checks.", "type": null, - "feat": "vigilante" + "parent": "vigilante" } }, { @@ -136,7 +136,7 @@ "name": "", "desc": "While in your alter ego, you may make a Prestige check and use that result in place of any Intimidation or Persuasion check you would otherwise make.", "type": null, - "feat": "vigilante" + "parent": "vigilante" } }, { @@ -146,7 +146,7 @@ "name": "", "desc": "You gain proficiency with shields as weapons.", "type": null, - "feat": "vengeful-protector" + "parent": "vengeful-protector" } }, { @@ -156,7 +156,7 @@ "name": "", "desc": "You gain proficiency with the Double Team maneuver and do not have to spend exertion to activate it.", "type": null, - "feat": "vengeful-protector" + "parent": "vengeful-protector" } }, { @@ -166,7 +166,7 @@ "name": "", "desc": "When a creature reduces a party member (not including animal companions, familiars, or followers) to 0 hit points, you gain an expertise die on attacks made against it until the end of combat.", "type": null, - "feat": "vengeful-protector" + "parent": "vengeful-protector" } }, { @@ -176,7 +176,7 @@ "name": "", "desc": "You gain an expertise die on attack rolls and initiative checks made against creatures that are part of your\r\nvendetta, and when making a saving throw to resist an attack, feature, maneuver, spell, or trait from a creature that is part of your vendetta. Whether or not a creature is part of your vendetta is at the Narrator’s discretion.", "type": null, - "feat": "vendetta" + "parent": "vendetta" } }, { @@ -186,7 +186,7 @@ "name": "", "desc": "Your bite damage increases to 1d8, a creature affected by your Charming Gaze remains charmed for a number of hours equal to your level, and you regain the use of Charming Gaze when you finish any\r\nrest.", "type": null, - "feat": "vampire-spawn" + "parent": "vampire-spawn" } }, { @@ -196,7 +196,7 @@ "name": "", "desc": "You also gain the Spider Climb and Vampiric Regeneration features.\r\n**Spider Climb.** You gain a climb speed equal to your Speed, and you can climb even on difficult surfaces and upside down on ceilings.\r\n**Vampiric Regeneration.** Whenever you start your turn with at least 1 hit point and you haven’t taken radiant damage or entered direct sunlight since the end of your last turn, you gain a number of temporary hit points equal to twice your proficiency bonus. When you end your turn in contact with running water, you take 20 radiant damage.", "type": null, - "feat": "vampire-spawn" + "parent": "vampire-spawn" } }, { @@ -206,7 +206,7 @@ "name": "", "desc": "Your Speed increases by 10 feet.", "type": null, - "feat": "vampire-lord" + "parent": "vampire-lord" } }, { @@ -216,7 +216,7 @@ "name": "", "desc": "You gain an expertise die on Stealth checks.", "type": null, - "feat": "vampire-lord" + "parent": "vampire-lord" } }, { @@ -226,7 +226,7 @@ "name": "", "desc": "The range of your darkvision increases to 120 feet.", "type": null, - "feat": "vampire-lord" + "parent": "vampire-lord" } }, { @@ -236,7 +236,7 @@ "name": "", "desc": "Your bite damage increases to 1d10.", "type": null, - "feat": "vampire-lord" + "parent": "vampire-lord" } }, { @@ -246,7 +246,7 @@ "name": "", "desc": "You can use Charming Gaze twice between rests.", "type": null, - "feat": "vampire-lord" + "parent": "vampire-lord" } }, { @@ -256,7 +256,7 @@ "name": "", "desc": "When using Charming Gaze, a target with at least one level of strife makes its saving throw with disadvantage.", "type": null, - "feat": "vampire-lord" + "parent": "vampire-lord" } }, { @@ -266,7 +266,7 @@ "name": "", "desc": "You also gain the Vampiric Shapechange feature.\r\n\r\n**Vampiric Shapechange.** You can use an action to transform into the shape of a Medium or smaller beast of CR 3 or less, a mist, or back into your true form. While transformed into a beast, you have the beast’s size and movement modes. You can’t use reactions or speak. Otherwise, you use your statistics. Any items you are carrying transform with you. While transformed into a mist, you have a flying speed of 30 feet, can’t speak, can’t take actions or manipulate objects, are immune to nonmagical damage from weapons, and have advantage on saving throws and Stealth checks. You can pass through a space as narrow as 1 inch without squeezing but can’t pass through water. Any items you are carrying transform with you.", "type": null, - "feat": "vampire-lord" + "parent": "vampire-lord" } }, { @@ -276,7 +276,7 @@ "name": "", "desc": "Additionally, you gain the undead type in addition to being a humanoid, and you take 20 radiant damage when you end your turn in contact with sunlight.", "type": null, - "feat": "vampire-lord" + "parent": "vampire-lord" } }, { @@ -286,7 +286,7 @@ "name": "", "desc": "Your Strength or Wisdom score increases by 1, to a maximum of 20.", "type": null, - "feat": "untamed" + "parent": "untamed" } }, { @@ -296,7 +296,7 @@ "name": "", "desc": "You may enter a rage and assume a wild shape using the same bonus action.", "type": null, - "feat": "untamed" + "parent": "untamed" } }, { @@ -306,7 +306,7 @@ "name": "", "desc": "While using a wild shape, you can use Furious Critical with attacks made using natural weapons.", "type": null, - "feat": "untamed" + "parent": "untamed" } }, { @@ -316,7 +316,7 @@ "name": "", "desc": "Any temporary hit points you gain from assuming a wild shape while raging become rage hit points instead.", "type": null, - "feat": "untamed" + "parent": "untamed" } }, { @@ -326,7 +326,7 @@ "name": "", "desc": "You may cast and concentrate on druid spells with a range of Self or Touch while raging.", "type": null, - "feat": "untamed" + "parent": "untamed" } }, { @@ -336,7 +336,7 @@ "name": "", "desc": "You cannot be charmed, fatigued, frightened, paralyzed, or stunned.", "type": null, - "feat": "true-revenant" + "parent": "true-revenant" } }, { @@ -346,7 +346,7 @@ "name": "", "desc": "You have advantage on saving throws against spells and other magical effects.", "type": null, - "feat": "true-revenant" + "parent": "true-revenant" } }, { @@ -356,7 +356,7 @@ "name": "", "desc": "You regain all of your hit points after you do not take any damage for 1 minute.", "type": null, - "feat": "true-revenant" + "parent": "true-revenant" } }, { @@ -366,7 +366,7 @@ "name": "", "desc": "In addition, you also gain the Fearsome Pursuit and Burning Hatred features. \r\n**Fearsome Pursuit.** You can spend 1 minute focusing on a creature that is part of your vendetta. If the creature is dead or on another plane of existence, you learn that. Otherwise, after focusing, you know the distance and direction to that creature, and so long as you’re moving in pursuit of that creature, you and anyone traveling with you ignore difficult terrain. This effect ends if you take damage or end your turn without moving for any reason.\r\n**Burning Hatred.** You can use an action to target the focus of your Fearsome Pursuit if it is within 30 feet. The creature makes a Wisdom saving throw (DC 8 + your proficiency bonus + your highest mental ability score modifier). On a failure, it takes psychic damage equal to 1d6 × your proficiency bonus and is stunned until the end of its next turn. On a success, it takes half damage and is rattled until the end of its\r\nnext turn. Once you have used this feature a number of times equal to your proficiency bonus, you can’t use it again until you finish a long rest.", "type": null, - "feat": "true-revenant" + "parent": "true-revenant" } }, { @@ -376,7 +376,7 @@ "name": "", "desc": "Your Charisma score increases by 1, to a maximum of 20.", "type": null, - "feat": "thespian" + "parent": "thespian" } }, { @@ -386,7 +386,7 @@ "name": "", "desc": "You have advantage on Deception and Performance checks made when attempting to mimic another creature’s looks, mannerisms, or speech.", "type": null, - "feat": "thespian" + "parent": "thespian" } }, { @@ -396,7 +396,7 @@ "name": "", "desc": "You have a natural talent for perfectly mimicking the sounds of other creatures you’ve heard make sound for at least 1 minute. A suspicious listener can see through your perfect mimicry by succeeding on a Wisdom (Insight) check opposed by your Charisma (Deception) check.", "type": null, - "feat": "thespian" + "parent": "thespian" } }, { @@ -406,7 +406,7 @@ "name": "", "desc": "Choose one ability score. The chosen ability score increases by 1, to a maximum of 20, and you gain proficiency in saving throws using it.", "type": null, - "feat": "tenacious" + "parent": "tenacious" } }, { @@ -416,7 +416,7 @@ "name": "", "desc": "When using the Help action to aid an ally in attacking a creature, the targeted creature can be up to 30 feet away instead of 5 feet.", "type": null, - "feat": "tactical-support" + "parent": "tactical-support" } }, { @@ -426,7 +426,7 @@ "name": "", "desc": "If an ally benefiting from your Help action scores a critical hit on the targeted creature, you can use your reaction to make a single weapon attack against that creature. Your attack scores a critical hit on a roll of 19–20. If you already have a feature that increases the range of your critical hits, your critical hit range\r\nfor that attack is increased by 1 (maximum 17–20).", "type": null, - "feat": "tactical-support" + "parent": "tactical-support" } }, { @@ -436,7 +436,7 @@ "name": "", "desc": "When a creature is damaged by an attack that was aided by the use of your Help action, you don’t provoke opportunity attacks from that creature until the end of your next turn.", "type": null, - "feat": "tactical-support" + "parent": "tactical-support" } }, { @@ -446,7 +446,7 @@ "name": "", "desc": "Your Speed increases by 5 feet.", "type": null, - "feat": "swift-combatant" + "parent": "swift-combatant" } }, { @@ -456,7 +456,7 @@ "name": "", "desc": "You gain proficiency with the Charge, Rapid Drink, and Swift Stance maneuvers, and do not have to spend exertion to activate them.", "type": null, - "feat": "swift-combatant" + "parent": "swift-combatant" } }, { @@ -466,7 +466,7 @@ "name": "", "desc": "When you are reduced to 0 or fewer hit points, you can use your reaction to move up to your Speed before falling unconscious. Moving in this way doesn’t provoke opportunity attacks.", "type": null, - "feat": "survivor" + "parent": "survivor" } }, { @@ -476,7 +476,7 @@ "name": "", "desc": "On the first turn that you start with 0 hit points and must make a death saving throw, you make that saving throw with advantage.", "type": null, - "feat": "survivor" + "parent": "survivor" } }, { @@ -486,7 +486,7 @@ "name": "", "desc": "When you take massive damage that would kill you instantly, you can use your reaction to make a death saving throw. If the saving throw succeeds, you instead fall unconscious and are dying.", "type": null, - "feat": "survivor" + "parent": "survivor" } }, { @@ -496,7 +496,7 @@ "name": "", "desc": "Medicine checks made to stabilize you have advantage.", "type": null, - "feat": "survivor" + "parent": "survivor" } }, { @@ -506,7 +506,7 @@ "name": "", "desc": "Once between long rests, when a creature successfully stabilizes you, at the start of your next turn you regain 1 hit point.", "type": null, - "feat": "survivor" + "parent": "survivor" } }, { @@ -516,7 +516,7 @@ "name": "", "desc": "You gain proficiency with the Dangerous Strikes maneuver and do not have to spend exertion to activate it.", "type": null, - "feat": "surgical-combatant" + "parent": "surgical-combatant" } }, { @@ -526,7 +526,7 @@ "name": "", "desc": "You gain proficiency in Medicine. If you are already proficient, you instead gain an expertise die.", "type": null, - "feat": "surgical-combatant" + "parent": "surgical-combatant" } }, { @@ -536,7 +536,7 @@ "name": "", "desc": "You gain an expertise die on Medicine checks made to diagnose the cause of or treat wounds.", "type": null, - "feat": "surgical-combatant" + "parent": "surgical-combatant" } }, { @@ -546,7 +546,7 @@ "name": "", "desc": "You can add your martial arts die as a bonus to Acrobatics, Culture, Deception, Engineering, Intimidation, Investigation, Sleight of Hand, Stealth, Perception, Performance, and Persuasion checks.", "type": null, - "feat": "subtly-skilled" + "parent": "subtly-skilled" } }, { @@ -556,7 +556,7 @@ "name": "", "desc": "Your Strength or Constitution score increases by 1, to a maximum of 20.", "type": null, - "feat": "street-fighter" + "parent": "street-fighter" } }, { @@ -566,7 +566,7 @@ "name": "", "desc": "You can roll 1d4 in place of your normal damage for unarmed strikes.", "type": null, - "feat": "street-fighter" + "parent": "street-fighter" } }, { @@ -576,7 +576,7 @@ "name": "", "desc": "You are proficient with improvised weapons.", "type": null, - "feat": "street-fighter" + "parent": "street-fighter" } }, { @@ -586,7 +586,7 @@ "name": "", "desc": "You can use a bonus action to make a Grapple maneuver against a target you hit with an unarmed strike or improvised weapon on your turn.", "type": null, - "feat": "street-fighter" + "parent": "street-fighter" } }, { @@ -596,7 +596,7 @@ "name": "", "desc": "You can try to hide from a creature even while you are only lightly obscured from that creature.", "type": null, - "feat": "stealth-expert" + "parent": "stealth-expert" } }, { @@ -606,7 +606,7 @@ "name": "", "desc": "Your position isn’t revealed when you miss with a ranged weapon attack against a creature you are hidden from.", "type": null, - "feat": "stealth-expert" + "parent": "stealth-expert" } }, { @@ -616,7 +616,7 @@ "name": "", "desc": "Dim light does not impose disadvantage when you make Perception checks.", "type": null, - "feat": "stealth-expert" + "parent": "stealth-expert" } }, { @@ -626,7 +626,7 @@ "name": "", "desc": "Your Constitution score increases by 1, to a maximum of 20.", "type": null, - "feat": "stalwart" + "parent": "stalwart" } }, { @@ -636,7 +636,7 @@ "name": "", "desc": "You regain an additional number of hit points equal to double your Constitution modifier (minimum 2) whenever you roll a hit die to regain hit points.", "type": null, - "feat": "stalwart" + "parent": "stalwart" } }, { @@ -646,7 +646,7 @@ "name": "", "desc": "You gain proficiency with the Purge Magic maneuver and do not have to spend exertion to activate it.", "type": null, - "feat": "spellbreaker" + "parent": "spellbreaker" } }, { @@ -656,7 +656,7 @@ "name": "", "desc": "When a creature concentrating on a spell is damaged by you, it has disadvantage on its concentration check to maintain the spell it is concentrating on.", "type": null, - "feat": "spellbreaker" + "parent": "spellbreaker" } }, { @@ -666,7 +666,7 @@ "name": "", "desc": "You have advantage on saving throws made against spells cast within 30 feet of you.", "type": null, - "feat": "spellbreaker" + "parent": "spellbreaker" } }, { @@ -676,7 +676,7 @@ "name": "", "desc": "Your Speed increases by 10 feet.", "type": null, - "feat": "skirmisher" + "parent": "skirmisher" } }, { @@ -686,7 +686,7 @@ "name": "", "desc": "You can Dash through difficult terrain without requiring additional movement.", "type": null, - "feat": "skirmisher" + "parent": "skirmisher" } }, { @@ -696,7 +696,7 @@ "name": "", "desc": "Whenever you attack a creature, for the rest of your turn you don’t provoke opportunity attacks from that creature.", "type": null, - "feat": "skirmisher" + "parent": "skirmisher" } }, { @@ -706,7 +706,7 @@ "name": "", "desc": "Choose three skills, tools, languages, or any combination of these. You gain proficiency with each of your three choices. If you already have proficiency in a chosen skill, you instead gain a skill specialty with that skill.", "type": null, - "feat": "skillful" + "parent": "skillful" } }, { @@ -716,7 +716,7 @@ "name": "", "desc": "When you take the Attack action on your turn, as a bonus action you can make a Shove maneuver against a creature within 5 feet of you.", "type": null, - "feat": "shield-focus" + "parent": "shield-focus" } }, { @@ -726,7 +726,7 @@ "name": "", "desc": "When you make a Dexterity saving throw against a spell or harmful effect that only targets you, if you aren’t incapacitated you gain a bonus equal to your shield’s Armor Class bonus.", "type": null, - "feat": "shield-focus" + "parent": "shield-focus" } }, { @@ -736,7 +736,7 @@ "name": "", "desc": "When you succeed on a Dexterity saving throw against an effect that deals half damage on a success, you can use your reaction to take no damage by protecting yourself with your shield.", "type": null, - "feat": "shield-focus" + "parent": "shield-focus" } }, { @@ -746,7 +746,7 @@ "name": "", "desc": "You regain 1 spell point whenever you cast a spell from the shadow school.", "type": null, - "feat": "shadowmancer" + "parent": "shadowmancer" } }, { @@ -756,7 +756,7 @@ "name": "", "desc": "You gain a Stealth skill specialty for hiding while in areas of darkness or dim light, and you have advantage on Dexterity (Stealth) checks made to hide while in areas of darkness or dim light.", "type": null, - "feat": "shadowmancer" + "parent": "shadowmancer" } }, { @@ -766,7 +766,7 @@ "name": "", "desc": "Whenever you use your Shadowdancer ability to teleport, after teleporting you can use your reaction to take the Dodge action.", "type": null, - "feat": "shadowmancer" + "parent": "shadowmancer" } }, { @@ -776,7 +776,7 @@ "name": "", "desc": "You gain darkvision to a range of 60 feet. Unlike other forms of darkvision you can see color in this way as if you were seeing normally. If you already had darkvision or would gain it later from another feature, its range increases by 30 feet.", "type": null, - "feat": "shadowdancer" + "parent": "shadowdancer" } }, { @@ -786,7 +786,7 @@ "name": "", "desc": "You can use a bonus action and spend 1 spell point to teleport up to 30 feet to an unoccupied area of darkness or dim light you can see. You must currently be in an area of darkness or dim light to teleport in this way. You can bring along objects if their weight doesn’t exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn’t carrying gear beyond its carrying capacity and is within 5 feet. You can increase the range of this teleport by 30 additional feet per each additional spell point you spend.", "type": null, - "feat": "shadowdancer" + "parent": "shadowdancer" } }, { @@ -796,7 +796,7 @@ "name": "", "desc": "While you are hidden from a target and are in an area of darkness or dim light, you can apply your Sneak Attack damage to an eldritch blast.", "type": null, - "feat": "shadow-assassin" + "parent": "shadow-assassin" } }, { @@ -806,7 +806,7 @@ "name": "", "desc": "You gain a ritual book containing spells that you can cast as rituals while holding it.", "type": null, - "feat": "rite-master" + "parent": "rite-master" } }, { @@ -816,7 +816,7 @@ "name": "", "desc": "Choose one of the following classes: bard, cleric, druid, herald, sorcerer, warlock, or wizard. When you acquire this feat, you create a ritual book holding two 1st-level spells of your choice from that class’ spell\r\nlist. These spells must have the ritual tag. The class you choose determines your spellcasting ability for these spells: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or\r\nsorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", "type": null, - "feat": "rite-master" + "parent": "rite-master" } }, { @@ -826,7 +826,7 @@ "name": "", "desc": "If you come across a written spell with the ritual tag (like on a spell scroll or in a wizard’s spellbook), you can add it to your ritual book if the spell is on the spell list for the class you chose and its level is no higher than half your level (rounded up). Copying the spell into your ritual book costs 50 gold and 2 hours per level of the spell.", "type": null, - "feat": "rite-master" + "parent": "rite-master" } }, { @@ -836,7 +836,7 @@ "name": "", "desc": "Your destiny changes to Revenge.", "type": null, - "feat": "revenant" + "parent": "revenant" } }, { @@ -846,7 +846,7 @@ "name": "", "desc": "You gain resistance to necrotic and psychic damage.", "type": null, - "feat": "revenant" + "parent": "revenant" } }, { @@ -856,7 +856,7 @@ "name": "", "desc": "You gain darkvision to a range of 60 feet (or if you already have it, its range increases by 30 feet).", "type": null, - "feat": "revenant" + "parent": "revenant" } }, { @@ -866,7 +866,7 @@ "name": "", "desc": "You become immune to poison damage and the poisoned condition.", "type": null, - "feat": "revenant" + "parent": "revenant" } }, { @@ -876,7 +876,7 @@ "name": "", "desc": "If your vendetta has not ended, you regain all of your hit points when you finish a short rest or 1 hour after you are reduced to 0 hit points.", "type": null, - "feat": "revenant" + "parent": "revenant" } }, { @@ -886,7 +886,7 @@ "name": "", "desc": "You gain an expertise die on saving throws made against spells and other magical effects, and on saving throws made to resist being charmed, fatigued, frightened, paralyzed, or stunned.", "type": null, - "feat": "revenant" + "parent": "revenant" } }, { @@ -896,7 +896,7 @@ "name": "", "desc": "You gain an expertise die on ability checks made to find or track a creature that is part of your vendetta.", "type": null, - "feat": "revenant" + "parent": "revenant" } }, { @@ -906,7 +906,7 @@ "name": "", "desc": "If the resonant item requires attunement and you meet the prerequisites to do so, you become attuned to the item. If you don’t meet the prerequisites, both the attunement and resonance with the item fails. \r\n\r\nThis attunement doesn’t count toward the maximum number of items you can be attuned to. Unlike other\r\nattuned items, your attunement to this item doesn’t end from being more than 100 feet away from it for 24 hours.", "type": null, - "feat": "resonant-bond" + "parent": "resonant-bond" } }, { @@ -916,7 +916,7 @@ "name": "", "desc": "Once per rest, as a bonus action, you can summon a resonant item, which appears instantly in your hand so long as it is located on the same plane of existence. You must have a free hand to use this feature and be able to hold the item.", "type": null, - "feat": "resonant-bond" + "parent": "resonant-bond" } }, { @@ -926,7 +926,7 @@ "name": "", "desc": "If the resonant item is sentient, you have advantage on Charisma checks and saving throws made when resolving a conflict with the item.", "type": null, - "feat": "resonant-bond" + "parent": "resonant-bond" } }, { @@ -936,7 +936,7 @@ "name": "", "desc": "If the resonant item is an artifact, you can ignore the effects of one minor detrimental property.", "type": null, - "feat": "resonant-bond" + "parent": "resonant-bond" } }, { @@ -946,7 +946,7 @@ "name": "", "desc": "You lose resonance with an item if another creature attunes to it or gains resonance with it. You can also voluntarily end the resonance by focusing on the item during a short rest, or during a long rest if the item is not in your possession.", "type": null, - "feat": "resonant-bond" + "parent": "resonant-bond" } }, { @@ -956,7 +956,7 @@ "name": "", "desc": "When you spend 10 minutes speaking inspirationally, you can choose up to 6 friendly creatures (including yourself) within 30 feet that can hear and understand you. Each creature gains temporary hit points equal to your level + your Charisma modifier. A creature can’t gain temporary hit points from this feat again until it has finished a rest.", "type": null, - "feat": "rallying-speaker" + "parent": "rallying-speaker" } }, { @@ -966,7 +966,7 @@ "name": "", "desc": "**Divine (Radiant).** When you cast a spell that deals radiant damage, you can spend 1 sorcery point and choose one creature you can see within 60 feet. That creature regains a number of hit points equal to 1d8 × the spell’s level.", "type": null, - "feat": "pure-arcanist" + "parent": "pure-arcanist" } }, { @@ -976,7 +976,7 @@ "name": "", "desc": "**Pure Arcanum (Force).** When you cast a spell that deals force damage, you can spend 2 sorcery points and choose one creature you can see. After the spell’s damage is resolved, if the creature was damaged by the spell it makes an Intelligence saving throw or becomes stunned until the end of its next turn.", "type": null, - "feat": "pure-arcanist" + "parent": "pure-arcanist" } }, { @@ -986,7 +986,7 @@ "name": "", "desc": "Whenever the Narrator calls for you to roll for initiative, you may activate a use of your Divine Sense feature to warn yourself and up to a number of creatures equal to your Charisma modifier within 30 feet, granting advantage on the initiative check.", "type": null, - "feat": "proclaimer" + "parent": "proclaimer" } }, { @@ -996,7 +996,7 @@ "name": "", "desc": "You can use your voice Art Specialty to cast herald spells.", "type": null, - "feat": "proclaimer" + "parent": "proclaimer" } }, { @@ -1006,7 +1006,7 @@ "name": "", "desc": "You can spend exertion to cast spells from the divination school that you know at a cost of 1 exertion per spell level.", "type": null, - "feat": "proclaimer" + "parent": "proclaimer" } }, { @@ -1016,7 +1016,7 @@ "name": "", "desc": "When you gain this feat, you gain one of the following alignment traits: Chaotic, Evil, Good, or Lawful. Once chosen your alignment trait cannot be changed, but you can gain a second alignment trait that is not opposed.", "type": null, - "feat": "proclaimer" + "parent": "proclaimer" } }, { @@ -1026,7 +1026,7 @@ "name": "", "desc": "Upon gaining this feat, choose one of the following damage types: acid, cold, fire, lightning, or thunder.\r\n\r\nWhen you cast a spell that deals damage, your spell’s damage ignores damage resistance to the chosen type.", "type": null, - "feat": "primordial-caster" + "parent": "primordial-caster" } }, { @@ -1036,7 +1036,7 @@ "name": "", "desc": "When you cast a spell that deals damage of the chosen type, you deal 1 additional damage for every damage die with a result of 1.", "type": null, - "feat": "primordial-caster" + "parent": "primordial-caster" } }, { @@ -1046,7 +1046,7 @@ "name": "", "desc": "This feat can be selected multiple times, choosing a different damage type each time.", "type": null, - "feat": "primordial-caster" + "parent": "primordial-caster" } }, { @@ -1056,7 +1056,7 @@ "name": "", "desc": "You gain proficiency with the Cleaving Swing maneuver and do not have to spend exertion to activate it. In addition, you can use Cleaving Swing with a versatile weapon wielded with two hands.", "type": null, - "feat": "powerful-attacker" + "parent": "powerful-attacker" } }, { @@ -1066,7 +1066,7 @@ "name": "", "desc": "Before you make a melee attack with a two-handed weapon or versatile weapon wielded with two hands, if you are proficient with the weapon and do not have disadvantage you can declare a powerful attack. A\r\npowerful attack has disadvantage, but on a hit deals 10 extra damage.", "type": null, - "feat": "powerful-attacker" + "parent": "powerful-attacker" } }, { @@ -1076,7 +1076,7 @@ "name": "", "desc": "The range is doubled for any spell you cast that requires a spell attack roll.", "type": null, - "feat": "power-caster" + "parent": "power-caster" } }, { @@ -1086,7 +1086,7 @@ "name": "", "desc": "You ignore half cover and three-quarters cover when making a ranged spell attack.", "type": null, - "feat": "power-caster" + "parent": "power-caster" } }, { @@ -1096,7 +1096,7 @@ "name": "", "desc": "Choose one cantrip that requires an attack roll. The cantrip must be from the bard, cleric, druid, herald, sorcerer, warlock, or wizard spell list. You learn this cantrip and your spellcasting ability for it depends\r\non the spell list you chose from: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", "type": null, - "feat": "power-caster" + "parent": "power-caster" } }, { @@ -1106,7 +1106,7 @@ "name": "", "desc": "When you attack with a glaive, halberd, quarterstaff, or spear and no other weapon using the Attack action, as a bonus action you can make a melee attack with the weapon’s opposite end. This attack uses the same ability modifier as the primary attack, dealing 1d4 bludgeoning damage on a hit.", "type": null, - "feat": "polearm-savant" + "parent": "polearm-savant" } }, { @@ -1116,7 +1116,7 @@ "name": "", "desc": "While you are wielding a glaive, halberd, pike, quarterstaff, or spear, a creature that enters your reach provokes an opportunity attack from you. A creature can use its reaction to avoid provoking an opportunity attack from you in this way.", "type": null, - "feat": "polearm-savant" + "parent": "polearm-savant" } }, { @@ -1126,7 +1126,7 @@ "name": "", "desc": "When you use a healer’s satchel to stabilize a dying creature, it regains a number of\r\nhit points equal to your Wisdom modifier.", "type": null, - "feat": "physician" + "parent": "physician" } }, { @@ -1136,7 +1136,7 @@ "name": "", "desc": "You can spend an action and one use of a healer’s satchel to tend to a creature. The creature regains 1d6 + 4 hit points, plus one hit point for each of its hit dice. The creature can’t regain hit points from this feat again until it finishes a rest.", "type": null, - "feat": "physician" + "parent": "physician" } }, { @@ -1146,7 +1146,7 @@ "name": "", "desc": "Your Dexterity or Wisdom score increases by 1, to a maximum of 20.", "type": null, - "feat": "nightstalker" + "parent": "nightstalker" } }, { @@ -1156,7 +1156,7 @@ "name": "", "desc": "You can deal Sneak Attack damage when making attacks using unarmed strikes or adept weapons.", "type": null, - "feat": "nightstalker" + "parent": "nightstalker" } }, { @@ -1166,7 +1166,7 @@ "name": "", "desc": "You gain a bonus equal to your Wisdom modifier on Acrobatics, Deception, and Stealth checks.", "type": null, - "feat": "nightstalker" + "parent": "nightstalker" } }, { @@ -1176,7 +1176,7 @@ "name": "", "desc": "In addition, you gain the following special focus feature:\r\n**Twilight Vanish.** On your turn you can use a reaction and spend 2 exertion to move up to 30 feet with such incredible speed that you seem to disappear: after moving this way you may immediately take the Hide action.", "type": null, - "feat": "nightstalker" + "parent": "nightstalker" } }, { @@ -1186,7 +1186,7 @@ "name": "", "desc": "You can spend exertion to cast any spells from the air, earth, fear, fire, movement, obscurement, plants, poison, senses, shadow, transformation, unarmed, or water schools at the cost of 2 exertion per spell level. You use your focus save DC for spells cast this way, and your spell attack modifier is equal to your proficiency bonus + your Wisdom modifier.", "type": null, - "feat": "night-master" + "parent": "night-master" } }, { @@ -1196,7 +1196,7 @@ "name": "", "desc": "You gain resistance to necrotic damage (or if you already have it, immunity to necrotic damage) and darkvision to a range of 30 feet (or if you already have it, the range of your darkvision increases by 30 feet).", "type": null, - "feat": "newblood" + "parent": "newblood" } }, { @@ -1206,7 +1206,7 @@ "name": "", "desc": "You also gain a bite natural weapon and the Charming Gaze feature.\r\n\r\n**Bite.** You gain a bite natural weapon you are proficient with. You are only able to bite grappled, incapacitated, restrained, or willing creatures. You can use Dexterity instead of Strength for the attack rolls of your bite. On a hit your bite deals piercing damage equal to 1d6 plus your Strength modifier or Dexterity modifier (whichever is highest). In addition, once per turn you can choose for your bite to also deal 1d6\r\nnecrotic damage × your proficiency bonus. You regain hit points equal to the amount of necrotic damage dealt to your target. This necrotic damage can only be increased by a critical hit.\r\n**Charming Gaze.** Once between long rests, you magically target a creature within 30 feet, forcing it to make a Wisdom saving throw (DC 8 + your proficiency bonus + your Charisma modifier). On a failure, the target is charmed by you for a number of hours equal to your proficiency bonus. While charmed it regards you as a trusted friend and is a willing target for your bite. The target repeats the saving throw each time it takes damage, ending the effect on itself on a success. If the target’s saving throw is successful or the effect ends for it, it is immune to your charm for 24 hours.", "type": null, - "feat": "newblood" + "parent": "newblood" } }, { @@ -1216,7 +1216,7 @@ "name": "", "desc": "Additionally, you have disadvantage on attack rolls and on Perception checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight. In addition, you cannot use your Charming Gaze while you are in direct sunlight.", "type": null, - "feat": "newblood" + "parent": "newblood" } }, { @@ -1226,7 +1226,7 @@ "name": "", "desc": "Your Speed increases by 5 feet.", "type": null, - "feat": "natural-warrior" + "parent": "natural-warrior" } }, { @@ -1236,7 +1236,7 @@ "name": "", "desc": "When making an Acrobatics or Athletics check during combat, you can choose to use your Strength or Dexterity modifier for either skill.", "type": null, - "feat": "natural-warrior" + "parent": "natural-warrior" } }, { @@ -1246,7 +1246,7 @@ "name": "", "desc": "You gain proficiency with the Bounding Strike maneuver and do not have to spend exertion to activate it.", "type": null, - "feat": "natural-warrior" + "parent": "natural-warrior" } }, { @@ -1256,7 +1256,7 @@ "name": "", "desc": "You can roll 1d4 in place of your normal damage for unarmed strikes. When rolling damage for your unarmed strikes, you can choose to deal bludgeoning, piercing, or slashing damage.", "type": null, - "feat": "natural-warrior" + "parent": "natural-warrior" } }, { @@ -1266,7 +1266,7 @@ "name": "", "desc": "You learn two cantrips of your choice from the class’s spell list.", "type": null, - "feat": "mystical-talent" + "parent": "mystical-talent" } }, { @@ -1276,7 +1276,7 @@ "name": "", "desc": "Choose a 1st-level spell to learn from that spell list. Once between long rests, you can cast this spell without expending a spell slot. You can also cast this spell using a spell slot of the appropriate level (or the appropriate number of spell points if you have warlock levels).\r\n\r\nYour spellcasting ability for these spells is Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", "type": null, - "feat": "mystical-talent" + "parent": "mystical-talent" } }, { @@ -1286,7 +1286,7 @@ "name": "", "desc": "Your Wisdom or Charisma score increases by 1, to a maximum of 20.", "type": null, - "feat": "mystic-arcanist" + "parent": "mystic-arcanist" } }, { @@ -1296,7 +1296,7 @@ "name": "", "desc": "When you cast a spell that restores hit points, you restore an additional number of hit points equal to your Charisma modifier.", "type": null, - "feat": "mystic-arcanist" + "parent": "mystic-arcanist" } }, { @@ -1306,7 +1306,7 @@ "name": "", "desc": "You can spend sorcery points to temporarily gain a spell from the cleric or sorcerer spell lists. Gaining a spell in this way costs a number of sorcery points equal to the spell’s level. You cannot gain a spell that has a level higher than your highest level spell slot. When you gain a cleric spell in this way, it is considered prepared for the day. When you gain a sorcerer spell in this way, it is considered a spell you know for the day. You lose all spells gained in this way whenever you finish a long rest.", "type": null, - "feat": "mystic-arcanist" + "parent": "mystic-arcanist" } }, { @@ -1316,7 +1316,7 @@ "name": "", "desc": "You gain proficiency with the Lancer Strike maneuver and do not have to spend exertion to activate it.", "type": null, - "feat": "mounted-warrior" + "parent": "mounted-warrior" } }, { @@ -1326,7 +1326,7 @@ "name": "", "desc": "When your mount is targeted by an attack, you can instead make yourself the attack’s target.", "type": null, - "feat": "mounted-warrior" + "parent": "mounted-warrior" } }, { @@ -1336,7 +1336,7 @@ "name": "", "desc": "When your mount makes a Dexterity saving throw against an effect that deals half damage on a success, it takes no damage on a success and half damage on a failure.", "type": null, - "feat": "mounted-warrior" + "parent": "mounted-warrior" } }, { @@ -1346,7 +1346,7 @@ "name": "", "desc": "You gain an expertise die on checks made to learn legends and lore about a creature you can see.", "type": null, - "feat": "monster-hunter" + "parent": "monster-hunter" } }, { @@ -1356,7 +1356,7 @@ "name": "", "desc": "You learn the altered strike cantrip.", "type": null, - "feat": "monster-hunter" + "parent": "monster-hunter" } }, { @@ -1366,7 +1366,7 @@ "name": "", "desc": "You gain proficiency with the Douse maneuver and do not have to spend exertion to activate it.", "type": null, - "feat": "monster-hunter" + "parent": "monster-hunter" } }, { @@ -1376,7 +1376,7 @@ "name": "", "desc": "You gain the tracking skill specialty in Survival.", "type": null, - "feat": "monster-hunter" + "parent": "monster-hunter" } }, { @@ -1386,7 +1386,7 @@ "name": "", "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", "type": null, - "feat": "moderately-outfitted" + "parent": "moderately-outfitted" } }, { @@ -1396,7 +1396,7 @@ "name": "", "desc": "You gain proficiency with medium armor and shields.", "type": null, - "feat": "moderately-outfitted" + "parent": "moderately-outfitted" } }, { @@ -1406,7 +1406,7 @@ "name": "", "desc": "Medium armor doesn’t impose disadvantage on your Dexterity (Stealth) checks.", "type": null, - "feat": "medium-armor-expert" + "parent": "medium-armor-expert" } }, { @@ -1416,7 +1416,7 @@ "name": "", "desc": "When you are wearing medium armor, the maximum Dexterity modifier you can add to your Armor Class increases to 3.", "type": null, - "feat": "medium-armor-expert" + "parent": "medium-armor-expert" } }, { @@ -1426,7 +1426,7 @@ "name": "", "desc": "You gain proficiency in a combat tradition of your choice.", "type": null, - "feat": "martial-scholar" + "parent": "martial-scholar" } }, { @@ -1436,7 +1436,7 @@ "name": "", "desc": "You learn two combat maneuvers from a combat tradition you know. If you don’t already know any combat maneuvers, both must be 1st degree. Combat maneuvers gained from this feat do not count toward the maximum number of combat maneuvers you know.", "type": null, - "feat": "martial-scholar" + "parent": "martial-scholar" } }, { @@ -1446,7 +1446,7 @@ "name": "", "desc": "Your exertion pool increases by 3. If you do not have an exertion pool, you gain an exertion pool with 3 exertion, regaining your exertion whenever you finish a rest.", "type": null, - "feat": "martial-scholar" + "parent": "martial-scholar" } }, { @@ -1456,7 +1456,7 @@ "name": "", "desc": "Whenever you enter a rage you may choose up to a number of creatures equal to your Wisdom modifier within 60 feet that are beasts, fey, or plants. These chosen creatures gain the following benefits for as long as you rage, but are unable to take the Fall Back reaction:\r\n* Advantage on Strength checks and Strength saving throws.\r\n* Resistance to bludgeoning, piercing, and slashing damage.\r\n* Temporary hit points equal to your level.\r\n* A bonus to damage rolls equal to your proficiency bonus.", "type": null, - "feat": "living-stampede" + "parent": "living-stampede" } }, { @@ -1466,7 +1466,7 @@ "name": "", "desc": "Your Intelligence score increases by 1, to a maximum of 20.", "type": null, - "feat": "linguistics-expert" + "parent": "linguistics-expert" } }, { @@ -1476,7 +1476,7 @@ "name": "", "desc": "You learn three languages of your choice.", "type": null, - "feat": "linguistics-expert" + "parent": "linguistics-expert" } }, { @@ -1486,7 +1486,7 @@ "name": "", "desc": "You can invent ciphers and are able to teach a cipher you create to others. Anyone who knows the cipher can encode and read hidden messages made with it; the apparent text must be at least four times longer than the hidden message. A creature can detect the cipher’s presence if it spends a minute examining it and succeeds on an Investigation check against a DC of 8+ your proficiency bonus + your Intelligence modifier. If the check succeeds by 5 or more, they can read the hidden message.", "type": null, - "feat": "linguistics-expert" + "parent": "linguistics-expert" } }, { @@ -1496,7 +1496,7 @@ "name": "", "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", "type": null, - "feat": "lightly-outfitted" + "parent": "lightly-outfitted" } }, { @@ -1506,7 +1506,7 @@ "name": "", "desc": "You gain proficiency with light armor.", "type": null, - "feat": "lightly-outfitted" + "parent": "lightly-outfitted" } }, { @@ -1516,7 +1516,7 @@ "name": "", "desc": "Your Intelligence score increases by 1, to a maximum of 20.", "type": null, - "feat": "keen-intellect" + "parent": "keen-intellect" } }, { @@ -1526,7 +1526,7 @@ "name": "", "desc": "You can recall anything you’ve seen or heard within a number of weeks equal to your Intelligence modifier.", "type": null, - "feat": "keen-intellect" + "parent": "keen-intellect" } }, { @@ -1536,7 +1536,7 @@ "name": "", "desc": "You know how long it will be before the next sunset or sunrise.", "type": null, - "feat": "keen-intellect" + "parent": "keen-intellect" } }, { @@ -1546,7 +1546,7 @@ "name": "", "desc": "You know which way is north.", "type": null, - "feat": "keen-intellect" + "parent": "keen-intellect" } }, { @@ -1556,7 +1556,7 @@ "name": "", "desc": "Your Intelligence or Wisdom score increases by 1, to a maximum of 20.", "type": null, - "feat": "intuitive" + "parent": "intuitive" } }, { @@ -1566,7 +1566,7 @@ "name": "", "desc": "Your passive Perception and passive Investigation scores increase by 5.", "type": null, - "feat": "intuitive" + "parent": "intuitive" } }, { @@ -1576,7 +1576,7 @@ "name": "", "desc": "If you can see a creature’s mouth while it is speaking a language you know, you can read its lips.", "type": null, - "feat": "intuitive" + "parent": "intuitive" } }, { @@ -1586,7 +1586,7 @@ "name": "", "desc": "Any stronghold you have or buy that is of frugal quality is automatically upgraded to average quality at no additional cost.", "type": null, - "feat": "idealistic-leader" + "parent": "idealistic-leader" } }, { @@ -1596,7 +1596,7 @@ "name": "", "desc": "You gain a new follower for every 50 staff you have in your stronghold, rather than every 100 staff.", "type": null, - "feat": "idealistic-leader" + "parent": "idealistic-leader" } }, { @@ -1606,7 +1606,7 @@ "name": "", "desc": "When you fulfill your destiny, choose a number of followers equal to your proficiency bonus. Each is upgraded to their most expensive version.", "type": null, - "feat": "idealistic-leader" + "parent": "idealistic-leader" } }, { @@ -1616,7 +1616,7 @@ "name": "", "desc": "You gain proficiency in your choice of one martial weapon, one rare weapon, or shields.", "type": null, - "feat": "heraldic-training" + "parent": "heraldic-training" } }, { @@ -1626,7 +1626,7 @@ "name": "", "desc": "You gain two divine lessons of your choice from the herald class.", "type": null, - "feat": "heraldic-training" + "parent": "heraldic-training" } }, { @@ -1636,7 +1636,7 @@ "name": "", "desc": "Your Strength score increases by 1, to a maximum of 20.", "type": null, - "feat": "heavy-armor-expertise" + "parent": "heavy-armor-expertise" } }, { @@ -1646,7 +1646,7 @@ "name": "", "desc": "While wearing heavy armor, you reduce all bludgeoning, piercing, and slashing damage from nonmagical weapons by 3.", "type": null, - "feat": "heavy-armor-expertise" + "parent": "heavy-armor-expertise" } }, { @@ -1656,7 +1656,7 @@ "name": "", "desc": "Your Strength score increases by 1, to a maximum of 20.", "type": null, - "feat": "heavily-outfitted" + "parent": "heavily-outfitted" } }, { @@ -1666,7 +1666,7 @@ "name": "", "desc": "You gain proficiency with heavy armor.", "type": null, - "feat": "heavily-outfitted" + "parent": "heavily-outfitted" } }, { @@ -1676,7 +1676,7 @@ "name": "", "desc": "When you take this feat, you gain a number of hit points equal to twice your level.", "type": null, - "feat": "hardy-adventurer" + "parent": "hardy-adventurer" } }, { @@ -1686,7 +1686,7 @@ "name": "", "desc": "Whenever you gain a new level, you gain an additional 2 hit points to your hit point maximum.", "type": null, - "feat": "hardy-adventurer" + "parent": "hardy-adventurer" } }, { @@ -1696,7 +1696,7 @@ "name": "", "desc": "During a short rest, you regain 1 additional hit point per hit die spent to heal.", "type": null, - "feat": "hardy-adventurer" + "parent": "hardy-adventurer" } }, { @@ -1706,7 +1706,7 @@ "name": "", "desc": "You learn the Preach Despair and Preach Hope battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Preach Despair.** A hostile creature within 60 feet of you suffers a level of strife. Creatures with an opposite alignment from yours or that worship a greater entity that has an opposite alignment suffer two levels of strife instead. A creature cannot suffer more than two levels of strife from Preach Despair in the same 24 hours.\r\n**Preach Hope.** Creatures of your choice within 60 feet of you gain advantage on saving throws. When the battle hymn ends, allies within 30 feet of you remove one level of strife. An ally that shares your alignment or worships a greater entity removes two levels of strife instead.", "type": null, - "feat": "harbinger-of-things-to-come" + "parent": "harbinger-of-things-to-come" } }, { @@ -1716,7 +1716,7 @@ "name": "", "desc": "A creature that takes the Disengage action still provokes opportunity attacks from you.", "type": null, - "feat": "guarded-warrior" + "parent": "guarded-warrior" } }, { @@ -1726,7 +1726,7 @@ "name": "", "desc": "You gain proficiency with the Warning Strike maneuver and do not have to spend exertion to activate it.", "type": null, - "feat": "guarded-warrior" + "parent": "guarded-warrior" } }, { @@ -1736,7 +1736,7 @@ "name": "", "desc": "You can use your reaction to make a melee weapon attack against a creature within 5 feet that makes an attack against a target other than you if the target does not also have this feat.", "type": null, - "feat": "guarded-warrior" + "parent": "guarded-warrior" } }, { @@ -1746,7 +1746,7 @@ "name": "", "desc": "You gain 3 fate points.", "type": null, - "feat": "fortunate" + "parent": "fortunate" } }, { @@ -1756,7 +1756,7 @@ "name": "", "desc": "Whenever you make an attack roll, ability check, or saving throw and do not have disadvantage, you can spend a fate point to roll an additional d20 and choose whichever result you wish. \r\nYou may do this after the initial roll has occurred, but before the outcome is known. If you have disadvantage, you may instead spend a fate point to choose one of the d20 rolls and reroll it.", "type": null, - "feat": "fortunate" + "parent": "fortunate" } }, { @@ -1766,7 +1766,7 @@ "name": "", "desc": "Alternatively, when you are attacked, you can choose to spend a fate point to force the attacking creature to reroll the attack. The creature resolves the attack with the result you choose.", "type": null, - "feat": "fortunate" + "parent": "fortunate" } }, { @@ -1776,7 +1776,7 @@ "name": "", "desc": "You regain all expended fate points when you finish a long rest.", "type": null, - "feat": "fortunate" + "parent": "fortunate" } }, { @@ -1786,7 +1786,7 @@ "name": "", "desc": "You gain proficiency with the Victory Pose maneuver and do not have to spend exertion to activate it. In addition, you may use this maneuver with up to three different weapons you select instead of just one, and\r\naffect allies within 60 feet.", "type": null, - "feat": "fear-breaker" + "parent": "fear-breaker" } }, { @@ -1796,7 +1796,7 @@ "name": "", "desc": "An ally affected by your Victory Pose gains an expertise die on their next saving throw against fear, and if they are rattled the condition ends for them.", "type": null, - "feat": "fear-breaker" + "parent": "fear-breaker" } }, { @@ -1806,7 +1806,7 @@ "name": "", "desc": "You gain proficiency with all types of artisan’s tools and miscellaneous tools. If you already have proficiency with any of these tools, you instead gain an expertise die with those tools.", "type": null, - "feat": "equipped-for-justice" + "parent": "equipped-for-justice" } }, { @@ -1816,7 +1816,7 @@ "name": "", "desc": "You gain proficiency with Engineering and a 1d8 expertise die on Engineering checks. In addition, you build a nonmagical grappling gun that only functions in your hands. Replacing your grappling gun requires 3 days of crafting and 500 gp.", "type": null, - "feat": "equipped-for-justice" + "parent": "equipped-for-justice" } }, { @@ -1826,7 +1826,7 @@ "name": "", "desc": "You may add your Wisdom modifier to the DC of any saving throws used for miscellaneous adventuring gear items and to attack rolls made using miscellaneous adventuring gear items.", "type": null, - "feat": "equipped-for-justice" + "parent": "equipped-for-justice" } }, { @@ -1836,7 +1836,7 @@ "name": "", "desc": "Your Wisdom or Charisma score increases by 1.", "type": null, - "feat": "empathic" + "parent": "empathic" } }, { @@ -1846,7 +1846,7 @@ "name": "", "desc": "You gain an expertise die on Insight checks made against other creatures.", "type": null, - "feat": "empathic" + "parent": "empathic" } }, { @@ -1856,7 +1856,7 @@ "name": "", "desc": "When using a social skill and making a Charisma check another creature, you score a critical success on a roll of 19–20.", "type": null, - "feat": "empathic" + "parent": "empathic" } }, { @@ -1866,7 +1866,7 @@ "name": "", "desc": "Whenever you cast a spell with a Cone area, you may additionally make ranged weapon attacks with a ranged weapon you are wielding against targets within that conical area. You may make up to a number of attacks equal to the level of the spell cast, each against a different target. Ranged attacks made in this way ignore the loading quality of weapons and use your conjured magical ammunition.", "type": null, - "feat": "eldritch-volley-master" + "parent": "eldritch-volley-master" } }, { @@ -1876,7 +1876,7 @@ "name": "", "desc": "Whenever you make a ranged weapon attack you can choose to conjure magical ammunition and select one of the following damage types: acid, cold, fire, or lightning. Your ranged weapon attacks using this conjured ammunition deal the chosen damage type instead of whatever damage type they would normally deal, and are considered magical for the purpose of overcoming resistance and immunity. Ammunition conjured in this way disappears at the end of the turn it was fired.", "type": null, - "feat": "eldritch-archer" + "parent": "eldritch-archer" } }, { @@ -1886,7 +1886,7 @@ "name": "", "desc": "When you hit a target with a ranged weapon attack, you can use your reaction and choose a spell of 1st-level or higher, casting it through your ammunition. The spell must have a casting time of 1 action, and target a single creature or have a range of Touch. If a spell cast in this way requires an attack roll and targets the same target as the triggering ranged weapon attack, it also hits as part of that attack. You may\r\nchoose not to deal damage with a ranged weapon attack used to cast a spell.", "type": null, - "feat": "eldritch-archer" + "parent": "eldritch-archer" } }, { @@ -1896,7 +1896,7 @@ "name": "", "desc": "You have advantage on Investigation and Perception checks made to detect secret doors.", "type": null, - "feat": "dungeoneer" + "parent": "dungeoneer" } }, { @@ -1906,7 +1906,7 @@ "name": "", "desc": "You have advantage on saving throws made against traps.", "type": null, - "feat": "dungeoneer" + "parent": "dungeoneer" } }, { @@ -1916,7 +1916,7 @@ "name": "", "desc": "You have resistance to damage dealt by traps.", "type": null, - "feat": "dungeoneer" + "parent": "dungeoneer" } }, { @@ -1926,7 +1926,7 @@ "name": "", "desc": "You don’t take a −5 penalty on your passive Perception score from traveling at a fast pace.", "type": null, - "feat": "dungeoneer" + "parent": "dungeoneer" } }, { @@ -1936,7 +1936,7 @@ "name": "", "desc": "While wielding a separate melee weapon in each hand, you gain a +1 bonus to Armor Class.", "type": null, - "feat": "dual-wielding-expert" + "parent": "dual-wielding-expert" } }, { @@ -1946,7 +1946,7 @@ "name": "", "desc": "You can use two-weapon fighting with any two one-handed melee weapons so long as neither has the heavy property.", "type": null, - "feat": "dual-wielding-expert" + "parent": "dual-wielding-expert" } }, { @@ -1956,7 +1956,7 @@ "name": "", "desc": "When you would normally draw or sheathe a one-handed weapon, you can instead draw or sheathe two one-handed weapons.", "type": null, - "feat": "dual-wielding-expert" + "parent": "dual-wielding-expert" } }, { @@ -1966,7 +1966,7 @@ "name": "", "desc": "You learn the Divine Inspiration and Persuasive Speech battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Divine Inspiration.** When an ally within 15 feet hits a creature with a melee weapon attack, your ally can deliver a Divine Smite just as if you had delivered it yourself using your Divine Smite feature expending one of your uses). If you are able to empower your smites, you may choose to empower it as normal.\r\n**Persuasive Speech.** Hostile creatures within 60 feet take a –1d4 penalty on attack rolls. You can sustain this battle hymn for up to 3 rounds without expending additional uses of Bardic Inspiration. When a hostile creature begins its third consecutive turn within range of this battle hymn it becomes charmed by you and will not attack you or your allies. If this causes combat to end early, the creatures remain charmed\r\nby you for up to 1 minute afterward or until one of them is damaged by you or an ally. For the next 24 hours after the battle hymn ends, you gain an expertise die on Charisma checks made against creatures that were charmed in this way. A creature that either shares your alignment or worships a deity that has\r\nyour alignment becomes charmed on its second consecutive turn instead. Creatures that have an opposite alignment or worship a greater entity that has an opposite alignment cannot be charmed in this way.", "type": null, - "feat": "divine-orator" + "parent": "divine-orator" } }, { @@ -1976,7 +1976,7 @@ "name": "", "desc": "An ability score of your choice increases by 1.", "type": null, - "feat": "destinys-call" + "parent": "destinys-call" } }, { @@ -1986,7 +1986,7 @@ "name": "", "desc": "When you gain inspiration through your destiny’s source of inspiration, you can choose one party member within 30 feet of you. That party member gains inspiration if they don’t have it already. Once you inspire a party member in this way, you can’t use this feature again on that party member until you finish a long rest.", "type": null, - "feat": "destinys-call" + "parent": "destinys-call" } }, { @@ -1996,7 +1996,7 @@ "name": "", "desc": "When you are wielding a finesse weapon with which you are proficient and would be hit by a melee attack, you can use your reaction to add your proficiency bonus to your Armor Class against that attack.", "type": null, - "feat": "deflector" + "parent": "deflector" } }, { @@ -2006,7 +2006,7 @@ "name": "", "desc": "You gain proficiency with the Farshot Stance and Ricochet maneuvers, and do not have to spend exertion to activate them.", "type": null, - "feat": "deadeye" + "parent": "deadeye" } }, { @@ -2016,7 +2016,7 @@ "name": "", "desc": "Before you make an attack with a ranged weapon you are proficient with, you can choose to take a penalty on the attack roll equal to your proficiency bonus. If the attack hits, you deal extra damage equal to double your proficiency bonus. This extra damage does not double on a critical hit.", "type": null, - "feat": "deadeye" + "parent": "deadeye" } }, { @@ -2026,7 +2026,7 @@ "name": "", "desc": "You ignore half cover and three-quarters cover when making a ranged weapon attack.", "type": null, - "feat": "deadeye" + "parent": "deadeye" } }, { @@ -2036,7 +2036,7 @@ "name": "", "desc": "If proficient with a crossbow, you ignore its loading property.", "type": null, - "feat": "crossbow-expertise" + "parent": "crossbow-expertise" } }, { @@ -2046,7 +2046,7 @@ "name": "", "desc": "You do not have disadvantage on ranged attack rolls from being within 5 feet of a hostile creature.", "type": null, - "feat": "crossbow-expertise" + "parent": "crossbow-expertise" } }, { @@ -2056,7 +2056,7 @@ "name": "", "desc": "When you attack with a one-handed weapon using the Attack action, you can use a bonus action to \r\nattack with a hand crossbow wielded in your off-hand.", "type": null, - "feat": "crossbow-expertise" + "parent": "crossbow-expertise" } }, { @@ -2066,7 +2066,7 @@ "name": "", "desc": "Choose one of the following types of crafted item: armor, engineered items, potions, rings and rods, staves and wands, weapons, wondrous items.\r\n\r\nThis feat can be selected multiple times, choosing a different type of crafted item each time.", "type": null, - "feat": "crafting-expert" + "parent": "crafting-expert" } }, { @@ -2076,7 +2076,7 @@ "name": "", "desc": "You gain advantage on checks made to craft, maintain, and repair that type of item.", "type": null, - "feat": "crafting-expert" + "parent": "crafting-expert" } }, { @@ -2086,7 +2086,7 @@ "name": "", "desc": "You gain an expertise die on checks made to craft, maintain, and repair items.", "type": null, - "feat": "crafting-expert" + "parent": "crafting-expert" } }, { @@ -2096,7 +2096,7 @@ "name": "", "desc": "You gain proficiency with two tools of your choice.", "type": null, - "feat": "crafting-expert" + "parent": "crafting-expert" } }, { @@ -2106,7 +2106,7 @@ "name": "", "desc": "You gain proficiency with thieves' tools, the poisoner's kit, or a rare weapon with the stealthy property.", "type": null, - "feat": "covert-training" + "parent": "covert-training" } }, { @@ -2116,7 +2116,7 @@ "name": "", "desc": "You gain two skill tricks of your choice from the rogue class.", "type": null, - "feat": "covert-training" + "parent": "covert-training" } }, { @@ -2126,7 +2126,7 @@ "name": "", "desc": "You gain proficiency with the Deceptive Stance and Painful Pickpocket maneuvers, and do not have to spend exertion to activate them.", "type": null, - "feat": "combat-thievery" + "parent": "combat-thievery" } }, { @@ -2136,7 +2136,7 @@ "name": "", "desc": "You gain an expertise die on Sleight of Hand checks.", "type": null, - "feat": "combat-thievery" + "parent": "combat-thievery" } }, { @@ -2146,7 +2146,7 @@ "name": "", "desc": "After dashing (with the Dash Action) at least ten feet towards a foe, you may perform a bonus action to select one of the following options.\r\n**Attack.** Make one melee weapon attack, dealing an extra 5 damage on a hit. \r\n**Shove.** Use the Shove maneuver, pushing the target 10 feet directly away on a success.", "type": null, - "feat": "bull-rush" + "parent": "bull-rush" } }, { @@ -2156,7 +2156,7 @@ "name": "", "desc": "After making a melee attack, you may reroll any weapon damage and choose the better result. This feat can be used no more than once per turn.", "type": null, - "feat": "brutal-attack" + "parent": "brutal-attack" } }, { @@ -2166,7 +2166,7 @@ "name": "", "desc": "You gain a 1d6 expertise die on concentration checks to maintain spells you have cast.", "type": null, - "feat": "battle-caster" + "parent": "battle-caster" } }, { @@ -2176,7 +2176,7 @@ "name": "", "desc": "While wielding weapons and shields, you may cast spells with a seen component.", "type": null, - "feat": "battle-caster" + "parent": "battle-caster" } }, { @@ -2186,7 +2186,7 @@ "name": "", "desc": "Instead of making an opportunity attack with a weapon, you may use your reaction to cast a spell with a casting time of 1 action. The spell must be one that only targets that creature.", "type": null, - "feat": "battle-caster" + "parent": "battle-caster" } }, { @@ -2196,7 +2196,7 @@ "name": "", "desc": "When rolling initiative you gain a +5 bonus.", "type": null, - "feat": "attentive" + "parent": "attentive" } }, { @@ -2206,7 +2206,7 @@ "name": "", "desc": "You can only be surprised if you are unconscious. A creature attacking you does not gain advantage from being hidden from you or unseen by you.", "type": null, - "feat": "attentive" + "parent": "attentive" } }, { @@ -2216,7 +2216,7 @@ "name": "", "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", "type": null, - "feat": "athletic" + "parent": "athletic" } }, { @@ -2226,7 +2226,7 @@ "name": "", "desc": "When you are prone, standing up uses only 5 feet of your movement (instead of half).", "type": null, - "feat": "athletic" + "parent": "athletic" } }, { @@ -2236,7 +2236,7 @@ "name": "", "desc": "Your speed is not halved from climbing.", "type": null, - "feat": "athletic" + "parent": "athletic" } }, { @@ -2246,7 +2246,7 @@ "name": "", "desc": "You can make a running long jump or a running high jump after moving 5 feet on foot (instead of 10 feet).", "type": null, - "feat": "athletic" + "parent": "athletic" } }, { @@ -2256,7 +2256,7 @@ "name": "", "desc": "Whenever you make a ranged weapon attack, you can choose to expend a 1st-level or higher spell slot to enhance the attack to be empowered or unerring. You cannot enhance more than one attack in a\r\nturn in this way. \r\n**Empowered.** The shot deals an additional 2d6 force damage, and an additional 1d6 force damage for each spell slot level above 1st. \r\n**Unerring.** The shot gains a +2 bonus to the attack roll, and an additional +2 bonus for each spell slot level above 1st.", "type": null, - "feat": "arrow-enchanter" + "parent": "arrow-enchanter" } }, { @@ -2266,7 +2266,7 @@ "name": "", "desc": "Whenever you cast a spell that deals damage, you may choose the type of damage that spell deals and the appearance of the spell’s effects.", "type": null, - "feat": "arcanum-master" + "parent": "arcanum-master" } }, { @@ -2276,7 +2276,7 @@ "name": "", "desc": "You gain an expertise die on ability checks made to drive or pilot a vehicle.", "type": null, - "feat": "ace-driver" + "parent": "ace-driver" } }, { @@ -2286,7 +2286,7 @@ "name": "", "desc": "While piloting a vehicle, you can use your reaction to take the Brake or Maneuver vehicle actions.", "type": null, - "feat": "ace-driver" + "parent": "ace-driver" } }, { @@ -2296,7 +2296,7 @@ "name": "", "desc": "A vehicle you load can carry 25% more cargo than normal.", "type": null, - "feat": "ace-driver" + "parent": "ace-driver" } }, { @@ -2306,7 +2306,7 @@ "name": "", "desc": "Vehicles you are piloting only suffer a malfunction when reduced to 25% of their hit points, not 50%. In addition, when the vehicle does suffer a malfunction, you roll twice on the maneuver table and choose which die to use for the result.", "type": null, - "feat": "ace-driver" + "parent": "ace-driver" } }, { @@ -2316,7 +2316,7 @@ "name": "", "desc": "Vehicles you are piloting gain a bonus to their Armor Class equal to half your proficiency bonus.", "type": null, - "feat": "ace-driver" + "parent": "ace-driver" } }, { @@ -2326,7 +2326,7 @@ "name": "", "desc": "When you Brake, you can choose to immediately stop the vehicle without traveling half of its movement speed directly forward.", "type": null, - "feat": "ace-driver" + "parent": "ace-driver" } }, { @@ -2336,7 +2336,7 @@ "name": "", "desc": "You gain advantage on attack rolls against a creature you are grappling.", "type": null, - "feat": "a5e-grappler" + "parent": "a5e-grappler" } }, { @@ -2346,7 +2346,7 @@ "name": "", "desc": "You can use your action to try to pin a creature you are grappling. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", "type": null, - "feat": "a5e-grappler" + "parent": "a5e-grappler" } }, { @@ -2356,7 +2356,7 @@ "name": "", "desc": "Creatures with a CR lower than your alter ego’s Prestige rating are frightened of you while you are in your alter ego.", "type": null, - "feat": "a-symbol-that-strikes-fear" + "parent": "a-symbol-that-strikes-fear" } }, { @@ -2366,7 +2366,7 @@ "name": "", "desc": "In addition, you become particularly adept at subduing your enemies rather than outright killing them. Whenever you begin a turn grappling a creature, you can attempt to non-lethally subdue it. The grappled creature makes a Constitution saving throw against your maneuver DC. On a failed saving throw, a creature is knocked unconscious for the next hour. A creature with more than 25% of its maximum hit points automatically succeeds on this saving throw.", "type": null, - "feat": "a-symbol-that-strikes-fear" + "parent": "a-symbol-that-strikes-fear" } } ] diff --git a/data/v2/wizards-of-the-coast/srd/CharacterClass.json b/data/v2/wizards-of-the-coast/srd/CharacterClass.json index 859fd047..d9422600 100644 --- a/data/v2/wizards-of-the-coast/srd/CharacterClass.json +++ b/data/v2/wizards-of-the-coast/srd/CharacterClass.json @@ -1,242 +1,242 @@ [ - { - "model": "api_v2.characterclass", - "pk": "srd_barbarian", - "fields": { - "name": "Barbarian", - "document": "srd", - "subclass_of": null, - "hit_dice": "d12" - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_bard", - "fields": { - "name": "Bard", - "document": "srd", - "subclass_of": null, - "hit_dice": "d8" - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_champion", - "fields": { - "name": "Champion", - "document": "srd", - "subclass_of": "srd_fighter", - "hit_dice": null - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_circle-of-the-land", - "fields": { - "name": "Circle of the Land", - "document": "srd", - "subclass_of": "srd_druid", - "hit_dice": null - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_cleric", - "fields": { - "name": "Cleric", - "document": "srd", - "subclass_of": null, - "hit_dice": "d8" - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_college-of-lore", - "fields": { - "name": "College of Lore", - "document": "srd", - "subclass_of": "srd_bard", - "hit_dice": null - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_draconic-bloodline", - "fields": { - "name": "Draconic Bloodline", - "document": "srd", - "subclass_of": "srd_sorcerer", - "hit_dice": null - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_druid", - "fields": { - "name": "Druid", - "document": "srd", - "subclass_of": null, - "hit_dice": "d8" - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_fighter", - "fields": { - "name": "Fighter", - "document": "srd", - "subclass_of": null, - "hit_dice": "d10" - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_hunter", - "fields": { - "name": "Hunter", - "document": "srd", - "subclass_of": "srd_ranger", - "hit_dice": null - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_life-domain", - "fields": { - "name": "Life Domain", - "document": "srd", - "subclass_of": "srd_cleric", - "hit_dice": null - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_monk", - "fields": { - "name": "Monk", - "document": "srd", - "subclass_of": null, - "hit_dice": "d8" - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_oath-of-devotion", - "fields": { - "name": "Oath of Devotion", - "document": "srd", - "subclass_of": "srd_paladin", - "hit_dice": null - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_paladin", - "fields": { - "name": "Paladin", - "document": "srd", - "subclass_of": null, - "hit_dice": "d10" - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_path-of-the-berserker", - "fields": { - "name": "Path of the Berserker", - "document": "srd", - "subclass_of": "srd_barbarian", - "hit_dice": null - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_ranger", - "fields": { - "name": "Ranger", - "document": "srd", - "subclass_of": null, - "hit_dice": "d10" - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_rogue", - "fields": { - "name": "Rogue", - "document": "srd", - "subclass_of": null, - "hit_dice": "d8" - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_school-of-evocation", - "fields": { - "name": "School of Evocation", - "document": "srd", - "subclass_of": "srd_wizard", - "hit_dice": null - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_sorcerer", - "fields": { - "name": "Sorcerer", - "document": "srd", - "subclass_of": null, - "hit_dice": "d6" - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_the-fiend", - "fields": { - "name": "The Fiend", - "document": "srd", - "subclass_of": "srd_warlock", - "hit_dice": null - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_thief", - "fields": { - "name": "Thief", - "document": "srd", - "subclass_of": "srd_rogue", - "hit_dice": null - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_warlock", - "fields": { - "name": "Warlock", - "document": "srd", - "subclass_of": null, - "hit_dice": "d8" - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_way-of-the-open-hand", - "fields": { - "name": "Way of the Open Hand", - "document": "srd", - "subclass_of": "srd_monk", - "hit_dice": null - } - }, - { - "model": "api_v2.characterclass", - "pk": "srd_wizard", - "fields": { - "name": "Wizard", - "document": "srd", - "subclass_of": null, - "hit_dice": "d6" - } - } -] \ No newline at end of file +{ + "model": "api_v2.characterclass", + "pk": "srd_barbarian", + "fields": { + "name": "Barbarian", + "document": "srd", + "subclass_of": null, + "hit_dice": "d12" + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_bard", + "fields": { + "name": "Bard", + "document": "srd", + "subclass_of": null, + "hit_dice": "d8" + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_champion", + "fields": { + "name": "Champion", + "document": "srd", + "subclass_of": "srd_fighter", + "hit_dice": null + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_circle-of-the-land", + "fields": { + "name": "Circle of the Land", + "document": "srd", + "subclass_of": "srd_druid", + "hit_dice": null + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_cleric", + "fields": { + "name": "Cleric", + "document": "srd", + "subclass_of": null, + "hit_dice": "d8" + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_college-of-lore", + "fields": { + "name": "College of Lore", + "document": "srd", + "subclass_of": "srd_bard", + "hit_dice": null + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_draconic-bloodline", + "fields": { + "name": "Draconic Bloodline", + "document": "srd", + "subclass_of": "srd_sorcerer", + "hit_dice": null + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_druid", + "fields": { + "name": "Druid", + "document": "srd", + "subclass_of": null, + "hit_dice": "d8" + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_fighter", + "fields": { + "name": "Fighter", + "document": "srd", + "subclass_of": null, + "hit_dice": "d10" + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_hunter", + "fields": { + "name": "Hunter", + "document": "srd", + "subclass_of": "srd_ranger", + "hit_dice": null + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_life-domain", + "fields": { + "name": "Life Domain", + "document": "srd", + "subclass_of": "srd_cleric", + "hit_dice": null + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_monk", + "fields": { + "name": "Monk", + "document": "srd", + "subclass_of": null, + "hit_dice": "d8" + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_oath-of-devotion", + "fields": { + "name": "Oath of Devotion", + "document": "srd", + "subclass_of": "srd_paladin", + "hit_dice": null + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_paladin", + "fields": { + "name": "Paladin", + "document": "srd", + "subclass_of": null, + "hit_dice": "d10" + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_path-of-the-berserker", + "fields": { + "name": "Path of the Berserker", + "document": "srd", + "subclass_of": "srd_barbarian", + "hit_dice": null + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_ranger", + "fields": { + "name": "Ranger", + "document": "srd", + "subclass_of": null, + "hit_dice": "d10" + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_rogue", + "fields": { + "name": "Rogue", + "document": "srd", + "subclass_of": null, + "hit_dice": "d8" + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_school-of-evocation", + "fields": { + "name": "School of Evocation", + "document": "srd", + "subclass_of": "srd_wizard", + "hit_dice": null + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_sorcerer", + "fields": { + "name": "Sorcerer", + "document": "srd", + "subclass_of": null, + "hit_dice": "d6" + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_the-fiend", + "fields": { + "name": "The Fiend", + "document": "srd", + "subclass_of": "srd_warlock", + "hit_dice": null + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_thief", + "fields": { + "name": "Thief", + "document": "srd", + "subclass_of": "srd_rogue", + "hit_dice": null + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_warlock", + "fields": { + "name": "Warlock", + "document": "srd", + "subclass_of": null, + "hit_dice": "d8" + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_way-of-the-open-hand", + "fields": { + "name": "Way of the Open Hand", + "document": "srd", + "subclass_of": "srd_monk", + "hit_dice": null + } +}, +{ + "model": "api_v2.characterclass", + "pk": "srd_wizard", + "fields": { + "name": "Wizard", + "document": "srd", + "subclass_of": null, + "hit_dice": "d6" + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/FeatBenefit.json b/data/v2/wizards-of-the-coast/srd/FeatBenefit.json index 423042ed..c7134daa 100644 --- a/data/v2/wizards-of-the-coast/srd/FeatBenefit.json +++ b/data/v2/wizards-of-the-coast/srd/FeatBenefit.json @@ -6,7 +6,7 @@ "name": "", "desc": "You have advantage on attack rolls against a creature you are grappling.", "type": null, - "feat": "grappler" + "parent": "grappler" } }, { @@ -16,7 +16,7 @@ "name": "", "desc": "You can use your action to try to pin a creature grappled by you. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", "type": null, - "feat": "grappler" + "parent": "grappler" } } ] From a019c96871eb9cbebb3879f406237370eed518e8 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 11:06:26 -0500 Subject: [PATCH 36/84] whitespace. --- api_v2/models/feat.py | 1 - 1 file changed, 1 deletion(-) diff --git a/api_v2/models/feat.py b/api_v2/models/feat.py index 5a644d8c..12331d76 100644 --- a/api_v2/models/feat.py +++ b/api_v2/models/feat.py @@ -6,7 +6,6 @@ class FeatBenefit(Modification): """This is the model for an individual benefit of a feat.""" - parent = models.ForeignKey('Feat', on_delete=models.CASCADE) From 1271cb44101f134779b4d67cdf7884e6294ce711 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 11:13:52 -0500 Subject: [PATCH 37/84] Fixing keys. --- data/v2/en-publishing/a5e-ag/Feat.json | 1762 +++--- data/v2/en-publishing/a5e-ag/FeatBenefit.json | 4742 ++++++++--------- .../srd/ClassFeature.json | 3682 ++++++------- data/v2/wizards-of-the-coast/srd/Feat.json | 20 +- .../wizards-of-the-coast/srd/FeatBenefit.json | 40 +- 5 files changed, 5123 insertions(+), 5123 deletions(-) diff --git a/data/v2/en-publishing/a5e-ag/Feat.json b/data/v2/en-publishing/a5e-ag/Feat.json index 84cc9405..72093a28 100644 --- a/data/v2/en-publishing/a5e-ag/Feat.json +++ b/data/v2/en-publishing/a5e-ag/Feat.json @@ -1,882 +1,882 @@ [ -{ - "model": "api_v2.feat", - "pk": "a-symbol-that-strikes-fear", - "fields": { - "name": "A Symbol That Strikes Fear", - "desc": "Creatures with a CR lower than your alter ego’s Prestige rating are frightened of you while you are in your alter ego. In addition, you become particularly adept at subduing your enemies rather than outright killing them. Whenever you begin a turn grappling a creature, you can attempt to non-lethally subdue it. The grappled creature makes a Constitution saving throw against your maneuver DC. On a failed saving throw, a creature is knocked unconscious for the next hour. A creature with more than 25% of its maximum hit points automatically succeeds on this saving throw.", - "prerequisite": "Equipped for Justice feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "a5e-grappler", - "fields": { - "name": "Grappler", - "desc": "* You gain advantage on attack rolls against a creature you are grappling.\r\n* You can use your action to try to pin a creature you are grappling. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", - "prerequisite": "Strength 13 or higher", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "ace-driver", - "fields": { - "name": "Ace Driver", - "desc": "You are a virtuoso of driving and piloting vehicles, able to push them beyond their normal limits and maneuver them with fluid grace through hazardous situations. You gain the following benefits:\r\n* You gain an expertise die on ability checks made to drive or pilot a vehicle.\r\n* While piloting a vehicle, you can use your reaction to take the Brake or Maneuver vehicle actions.\r\n* A vehicle you load can carry 25% more cargo than normal.\r\n* Vehicles you are piloting only suffer a malfunction when reduced to 25% of their hit points, not 50%. In addition, when the vehicle does suffer a malfunction, you roll twice on the maneuver table and choose which die to use for the result.\r\n* Vehicles you are piloting gain a bonus to their Armor Class equal to half your proficiency bonus.\r\n* When you Brake, you can choose to immediately stop the vehicle without traveling half of its movement speed directly forward.", - "prerequisite": "Proficiency with a type of vehicle", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "arcanum-master", - "fields": { - "name": "Arcanum Master", - "desc": "Whenever you cast a spell that deals damage, you may choose the type of damage that spell deals and the appearance of the spell’s effects.", - "prerequisite": "Pure Arcanist feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "arrow-enchanter", - "fields": { - "name": "Arrow Enchanter", - "desc": "Whenever you make a ranged weapon attack, you can choose to expend a 1st-level or higher spell slot to enhance the attack to be empowered or unerring. You cannot enhance more than one attack in a\r\nturn in this way. \r\n**Empowered.** The shot deals an additional 2d6 force damage, and an additional 1d6 force damage for each spell slot level above 1st. \r\n**Unerring.** The shot gains a +2 bonus to the attack roll, and an additional +2 bonus for each spell slot level above 1st.", - "prerequisite": "Eldritch Archer feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "athletic", - "fields": { - "name": "Athletic", - "desc": "Your enhanced physical training grants you the following benefits:\r\n\r\n* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* When you are prone, standing up uses only 5 feet of your movement (instead of half).\r\n* Your speed is not halved from climbing.\r\n* You can make a running long jump or a running high jump after moving 5 feet on foot (instead of 10 feet).", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "attentive", - "fields": { - "name": "Attentive", - "desc": "Always aware of your surroundings, you gain the following benefits:\r\n\r\n* When rolling initiative you gain a +5 bonus.\r\n* You can only be surprised if you are unconscious. A creature attacking you does not gain advantage from being hidden from you or unseen by you.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "battle-caster", - "fields": { - "name": "Battle Caster", - "desc": "You're comfortable casting, even in the chaos of battle.\r\n\r\n* You gain a 1d6 expertise die on concentration checks to maintain spells you have cast.\r\n* While wielding weapons and shields, you may cast spells with a seen component.\r\n* Instead of making an opportunity attack with a weapon, you may use your reaction to cast a spell with a casting time of 1 action. The spell must be one that only targets that creature.", - "prerequisite": "Requires the ability to cast at least one spell of 1st-level or higher", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "brutal-attack", - "fields": { - "name": "Brutal Attack", - "desc": "After making a melee attack, you may reroll any weapon damage and choose the better result. This feat can be used no more than once per turn.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "bull-rush", - "fields": { - "name": "Bull Rush", - "desc": "Your headlong rush devastates your foes. After dashing (with the Dash Action) at least ten feet towards a foe, you may perform a bonus action to select one of the following options.\r\n**Attack.** Make one melee weapon attack, dealing an extra 5 damage on a hit. \r\n**Shove.** Use the Shove maneuver, pushing the target 10 feet directly away on a success.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "combat-thievery", - "fields": { - "name": "Combat Thievery", - "desc": "You know how to trade blows for more than inflicting harm.\r\n\r\n* You gain proficiency with the Deceptive Stance and Painful Pickpocket maneuvers, and do not have to spend exertion to activate them.\r\n* You gain an expertise die on Sleight of Hand checks.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "covert-training", - "fields": { - "name": "Covert Training", - "desc": "You have absorbed some of the lessons of the world of spies, criminals, and others who operate in the shadows. You gain the following benefits:\r\n\r\n* You gain proficiency with thieves' tools, the poisoner's kit, or a rare weapon with the stealthy property.\r\n* You gain two skill tricks of your choice from the rogue class.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "crafting-expert", - "fields": { - "name": "Crafting Expert", - "desc": "You have devoted time to studying and practicing the art of crafting, gaining the following benefits: This feat can be selected multiple times, choosing a different type of crafted item each time.\r\n\r\n* Choose one of the following types of crafted item: armor, engineered items, potions, rings and rods, staves and wands, weapons, wondrous items. You gain advantage on checks made to craft, maintain, and repair that type of item.\r\n* You gain an expertise die on checks made to craft, maintain, and repair items.\r\n* You gain proficiency with two tools of your choice.\r\n\r\nThis feat can be selected multiple times, choosing a different type of crafted item each time.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "crossbow-expertise", - "fields": { - "name": "Crossbow Expertise", - "desc": "* If proficient with a crossbow, you ignore its loading property.\r\n* You do not have disadvantage on ranged attack rolls from being within 5 feet of a hostile creature.\r\n* When you attack with a one-handed weapon using the Attack action, you can use a bonus action to \r\nattack with a hand crossbow wielded in your off-hand.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "deadeye", - "fields": { - "name": "Deadeye", - "desc": "Your natural talent or skill makes you lethal with a ranged weapon.\r\n\r\n* You gain proficiency with the Farshot Stance and Ricochet maneuvers, and do not have to spend exertion to activate them. \r\n* Before you make an attack with a ranged weapon you are proficient with, you can choose to take a penalty on the attack roll equal to your proficiency bonus. If the attack hits, you deal extra damage equal to double your proficiency bonus. This extra damage does not double on a critical hit.\r\n* You ignore half cover and three-quarters cover when making a ranged weapon attack.", - "prerequisite": "8th level or higher", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "deflector", - "fields": { - "name": "Deflector", - "desc": "When you are wielding a finesse weapon with which you are proficient and would be hit by a melee attack, you can use your reaction to add your proficiency bonus to your Armor Class against that attack.", - "prerequisite": "Dexterity 13 or higher", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "destinys-call", - "fields": { - "name": "Destiny’s Call", - "desc": "* An ability score of your choice increases by 1.\r\n* When you gain inspiration through your destiny’s source of inspiration, you can choose one party member within 30 feet of you. That party member gains inspiration if they don’t have it already. Once you inspire a party member in this way, you can’t use this feature again on that party member until you finish a long rest.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "divine-orator", - "fields": { - "name": "Divine Orator", - "desc": "You learn the Divine Inspiration and Persuasive Speech battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Divine Inspiration.** When an ally within 15 feet hits a creature with a melee weapon attack, your ally can deliver a Divine Smite just as if you had delivered it yourself using your Divine Smite feature expending one of your uses). If you are able to empower your smites, you may choose to empower it as normal.\r\n**Persuasive Speech.** Hostile creatures within 60 feet take a –1d4 penalty on attack rolls. You can sustain this battle hymn for up to 3 rounds without expending additional uses of Bardic Inspiration. When a hostile creature begins its third consecutive turn within range of this battle hymn it becomes charmed by you and will not attack you or your allies. If this causes combat to end early, the creatures remain charmed\r\nby you for up to 1 minute afterward or until one of them is damaged by you or an ally. For the next 24 hours after the battle hymn ends, you gain an expertise die on Charisma checks made against creatures that were charmed in this way. A creature that either shares your alignment or worships a deity that has\r\nyour alignment becomes charmed on its second consecutive turn instead. Creatures that have an opposite alignment or worship a greater entity that has an opposite alignment cannot be charmed in this way.", - "prerequisite": "Proclaimer feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "dual-wielding-expert", - "fields": { - "name": "Dual-Wielding Expert", - "desc": "* While wielding a separate melee weapon in each hand, you gain a +1 bonus to Armor Class.\r\n* You can use two-weapon fighting with any two one-handed melee weapons so long as neither has the heavy property.\r\n* When you would normally draw or sheathe a one-handed weapon, you can instead draw or sheathe two one-handed weapons.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "dungeoneer", - "fields": { - "name": "Dungeoneer", - "desc": "* You have advantage on Investigation and Perception checks made to detect secret doors.\r\n* You have advantage on saving throws made against traps.\r\n* You have resistance to damage dealt by traps.\r\n* You don’t take a −5 penalty on your passive Perception score from traveling at a fast pace.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "eldritch-archer", - "fields": { - "name": "Eldritch Archer", - "desc": "* Whenever you make a ranged weapon attack you can choose to conjure magical ammunition and select one of the following damage types: acid, cold, fire, or lightning. Your ranged weapon attacks using this conjured ammunition deal the chosen damage type instead of whatever damage type they would normally deal, and are considered magical for the purpose of overcoming resistance and immunity. Ammunition conjured in this way disappears at the end of the turn it was fired.\r\n* When you hit a target with a ranged weapon attack, you can use your reaction and choose a spell of 1st-level or higher, casting it through your ammunition. The spell must have a casting time of 1 action, and target a single creature or have a range of Touch. If a spell cast in this way requires an attack roll and targets the same target as the triggering ranged weapon attack, it also hits as part of that attack. You may\r\nchoose not to deal damage with a ranged weapon attack used to cast a spell.", - "prerequisite": "3 levels in fighter, 3 levels in wizard, Fighting Style (Archery)", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "eldritch-volley-master", - "fields": { - "name": "Eldritch Volley Master", - "desc": "Whenever you cast a spell with a Cone area, you may additionally make ranged weapon attacks with a ranged weapon you are wielding against targets within that conical area. You may make up to a number of attacks equal to the level of the spell cast, each against a different target. Ranged attacks made in this way ignore the loading quality of weapons and use your conjured magical ammunition.", - "prerequisite": "Arrow Enchanter feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "empathic", - "fields": { - "name": "Empathic", - "desc": "* Your Wisdom or Charisma score increases by 1.\r\n* You gain an expertise die on Insight checks made against other creatures.\r\n* When using a social skill and making a Charisma check another creature, you score a critical success on a roll of 19–20.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "equipped-for-justice", - "fields": { - "name": "Equipped for Justice", - "desc": "* You gain proficiency with all types of artisan’s tools and miscellaneous tools. If you already have proficiency with any of these tools, you instead gain an expertise die with those tools.\r\n* You gain proficiency with Engineering and a 1d8 expertise die on Engineering checks. In addition, you build a nonmagical grappling gun that only functions in your hands. Replacing your grappling gun requires 3 days of crafting and 500 gp.\r\n* You may add your Wisdom modifier to the DC of any saving throws used for miscellaneous adventuring gear items and to attack rolls made using miscellaneous adventuring gear items.", - "prerequisite": "Vigilante feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "fear-breaker", - "fields": { - "name": "Fear Breaker", - "desc": "* You gain proficiency with the Victory Pose maneuver and do not have to spend exertion to activate it. In addition, you may use this maneuver with up to three different weapons you select instead of just one, and\r\naffect allies within 60 feet. \r\n* An ally affected by your Victory Pose gains an expertise die on their next saving throw against fear, and if they are rattled the condition ends for them.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "fortunate", - "fields": { - "name": "Fortunate", - "desc": "You gain 3 fate points. Whenever you make an attack roll, ability check, or saving throw and do not have disadvantage, you can spend a fate point to roll an additional d20 and choose whichever result you wish. \r\nYou may do this after the initial roll has occurred, but before the outcome is known. If you have disadvantage, you may instead spend a fate point to choose one of the d20 rolls and reroll it.\r\nAlternatively, when you are attacked, you can choose to spend a fate point to force the attacking creature to reroll the attack. The creature resolves the attack with the result you choose. You regain all expended fate points when you finish a long rest.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "guarded-warrior", - "fields": { - "name": "Guarded Warrior", - "desc": "* A creature that takes the Disengage action still provokes opportunity attacks from you. \r\n* You gain proficiency with the Warning Strike maneuver and do not have to spend exertion to activate it.\r\n* You can use your reaction to make a melee weapon attack against a creature within 5 feet that makes an attack against a target other than you if the target does not also have this feat.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "harbinger-of-things-to-come", - "fields": { - "name": "Harbinger of Things to Come", - "desc": "You learn the Preach Despair and Preach Hope battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Preach Despair.** A hostile creature within 60 feet of you suffers a level of strife. Creatures with an opposite alignment from yours or that worship a greater entity that has an opposite alignment suffer two levels of strife instead. A creature cannot suffer more than two levels of strife from Preach Despair in the same 24 hours.\r\n**Preach Hope.** Creatures of your choice within 60 feet of you gain advantage on saving throws. When the battle hymn ends, allies within 30 feet of you remove one level of strife. An ally that shares your alignment or worships a greater entity removes two levels of strife instead.", - "prerequisite": "Divine Orator feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "hardy-adventurer", - "fields": { - "name": "Hardy Adventurer", - "desc": "* When you take this feat, you gain a number of hit points equal to twice your level. \r\n* Whenever you gain a new level, you gain an additional 2 hit points to your hit point maximum.\r\n* During a short rest, you regain 1 additional hit point per hit die spent to heal.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "heavily-outfitted", - "fields": { - "name": "Heavily Outfitted", - "desc": "* Your Strength score increases by 1, to a maximum of 20.\r\n* You gain proficiency with heavy armor.", - "prerequisite": "Proficiency with medium armor", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "heavy-armor-expertise", - "fields": { - "name": "Heavy Armor Expertise", - "desc": "* Your Strength score increases by 1, to a maximum of 20.\r\n* While wearing heavy armor, you reduce all bludgeoning, piercing, and slashing damage from nonmagical weapons by 3.", - "prerequisite": "Proficiency with heavy armor", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "heraldic-training", - "fields": { - "name": "Heraldic Training", - "desc": "* You gain proficiency in your choice of one martial weapon, one rare weapon, or shields.\r\n* You gain two divine lessons of your choice from the herald class.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "idealistic-leader", - "fields": { - "name": "Idealistic Leader", - "desc": "* Any stronghold you have or buy that is of frugal quality is automatically upgraded to average quality at no additional cost.\r\n* You gain a new follower for every 50 staff you have in your stronghold, rather than every 100 staff.\r\n* When you fulfill your destiny, choose a number of followers equal to your proficiency bonus. Each is upgraded to their most expensive version.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "intuitive", - "fields": { - "name": "Intuitive", - "desc": "* Your Intelligence or Wisdom score increases by 1, to a maximum of 20. \r\n* Your passive Perception and passive Investigation scores increase by 5.\r\n* If you can see a creature’s mouth while it is speaking a language you know, you can read its lips.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "keen-intellect", - "fields": { - "name": "Keen Intellect", - "desc": "* Your Intelligence score increases by 1, to a maximum of 20.\r\n* You can recall anything you’ve seen or heard within a number of weeks equal to your Intelligence modifier.\r\n* You know how long it will be before the next sunset or sunrise.\r\n* You know which way is north.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "lightly-outfitted", - "fields": { - "name": "Lightly Outfitted", - "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with light armor.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "linguistics-expert", - "fields": { - "name": "Linguistics Expert", - "desc": "* Your Intelligence score increases by 1, to a maximum of 20.\r\n* You learn three languages of your choice.\r\n* You can invent ciphers and are able to teach a cipher you create to others. Anyone who knows the cipher can encode and read hidden messages made with it; the apparent text must be at least four times longer than the hidden message. A creature can detect the cipher’s presence if it spends a minute examining it and succeeds on an Investigation check against a DC of 8+ your proficiency bonus + your Intelligence modifier. If the check succeeds by 5 or more, they can read the hidden message.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "living-stampede", - "fields": { - "name": "Living Stampede", - "desc": "Whenever you enter a rage you may choose up to a number of creatures equal to your Wisdom modifier within 60 feet that are beasts, fey, or plants. These chosen creatures gain the following benefits for as long as you rage, but are unable to take the Fall Back reaction:\r\n* Advantage on Strength checks and Strength saving throws.\r\n* Resistance to bludgeoning, piercing, and slashing damage.\r\n* Temporary hit points equal to your level.\r\n* A bonus to damage rolls equal to your proficiency bonus.", - "prerequisite": "Untamed feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "martial-scholar", - "fields": { - "name": "Martial Scholar", - "desc": "* You gain proficiency in a combat tradition of your choice. \r\n* You learn two combat maneuvers from a combat tradition you know. If you don’t already know any combat maneuvers, both must be 1st degree. Combat maneuvers gained from this feat do not count toward the maximum number of combat maneuvers you know.\r\n* Your exertion pool increases by 3. If you do not have an exertion pool, you gain an exertion pool with 3 exertion, regaining your exertion whenever you finish a rest.", - "prerequisite": "Proficiency with at least one martial weapon", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "medium-armor-expert", - "fields": { - "name": "Medium Armor Expert", - "desc": "* Medium armor doesn’t impose disadvantage on your Dexterity (Stealth) checks.\r\n* When you are wearing medium armor, the maximum Dexterity modifier you can add to your Armor Class increases to 3.", - "prerequisite": "Proficiency with medium armor", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "moderately-outfitted", - "fields": { - "name": "Moderately Outfitted", - "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with medium armor and shields.", - "prerequisite": "Proficiency with light armor", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "monster-hunter", - "fields": { - "name": "Monster Hunter", - "desc": "* You gain an expertise die on checks made to learn legends and lore about a creature you can see.\r\n* You learn the altered strike cantrip.\r\n* You gain proficiency with the Douse maneuver and do not have to spend exertion to activate it.\r\n* You gain the tracking skill specialty in Survival.", - "prerequisite": "Proficiency with Survival, 8th level or higher", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "mounted-warrior", - "fields": { - "name": "Mounted Warrior", - "desc": "* You gain proficiency with the Lancer Strike maneuver and do not have to spend exertion to activate it.\r\n* When your mount is targeted by an attack, you can instead make yourself the attack’s target.\r\n* When your mount makes a Dexterity saving throw against an effect that deals half damage on a success, it takes no damage on a success and half damage on a failure.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "mystic-arcanist", - "fields": { - "name": "Mystic Arcanist", - "desc": "* Your Wisdom or Charisma score increases by 1, to a maximum of 20. \r\n* When you cast a spell that restores hit points, you restore an additional number of hit points equal to your Charisma modifier.\r\n* You can spend sorcery points to temporarily gain a spell from the cleric or sorcerer spell lists. Gaining a spell in this way costs a number of sorcery points equal to the spell’s level. You cannot gain a spell that has a level higher than your highest level spell slot. When you gain a cleric spell in this way, it is considered prepared for the day. When you gain a sorcerer spell in this way, it is considered a spell you know for the day. You lose all spells gained in this way whenever you finish a long rest.", - "prerequisite": "3 levels in cleric, 3 levels in sorcerer", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "mystical-talent", - "fields": { - "name": "Mystical Talent", - "desc": "Choose a class: bard, cleric, druid, herald, sorcerer, warlock, or wizard.\r\n\r\n* You learn two cantrips of your choice from the class’s spell list. \r\n* Choose a 1st-level spell to learn from that spell list. Once between long rests, you can cast this spell without expending a spell slot. You can also cast this spell using a spell slot of the appropriate level (or the appropriate number of spell points if you have warlock levels).\r\n\r\nYour spellcasting ability for these spells is Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "natural-warrior", - "fields": { - "name": "Natural Warrior", - "desc": "* Your Speed increases by 5 feet.\r\n* When making an Acrobatics or Athletics check during combat, you can choose to use your Strength or Dexterity modifier for either skill.\r\n* You gain proficiency with the Bounding Strike maneuver and do not have to spend exertion to activate it.\r\n* You can roll 1d4 in place of your normal damage for unarmed strikes. When rolling damage for your unarmed strikes, you can choose to deal bludgeoning, piercing, or slashing damage.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "newblood", - "fields": { - "name": "Newblood", - "desc": "You gain resistance to necrotic damage (or if you already have it, immunity to necrotic damage) and darkvision to a range of 30 feet (or if you already have it, the range of your darkvision increases by 30 feet). You also gain a bite natural weapon and the Charming Gaze feature.\r\n\r\n**Bite.** You gain a bite natural weapon you are proficient with. You are only able to bite grappled, incapacitated, restrained, or willing creatures. You can use Dexterity instead of Strength for the attack rolls of your bite. On a hit your bite deals piercing damage equal to 1d6 plus your Strength modifier or Dexterity modifier (whichever is highest). In addition, once per turn you can choose for your bite to also deal 1d6\r\nnecrotic damage × your proficiency bonus. You regain hit points equal to the amount of necrotic damage dealt to your target. This necrotic damage can only be increased by a critical hit.\r\n**Charming Gaze.** Once between long rests, you magically target a creature within 30 feet, forcing it to make a Wisdom saving throw (DC 8 + your proficiency bonus + your Charisma modifier). On a failure, the target is charmed by you for a number of hours equal to your proficiency bonus. While charmed it regards you as a trusted friend and is a willing target for your bite. The target repeats the saving throw each time it takes damage, ending the effect on itself on a success. If the target’s saving throw is successful or the effect ends for it, it is immune to your charm for 24 hours.\r\n\r\nAdditionally, you have disadvantage on attack rolls and on Perception checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight. In addition, you cannot use your Charming Gaze while you are in direct sunlight.", - "prerequisite": "Must have been bitten by a vampire or taken necrotic damage equal to quadruple your level from a single attack or spell", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "night-master", - "fields": { - "name": "Night Master", - "desc": "You can spend exertion to cast any spells from the air, earth, fear, fire, movement, obscurement, plants, poison, senses, shadow, transformation, unarmed, or water schools at the cost of 2 exertion per spell level. You use your focus save DC for spells cast this way, and your spell attack modifier is equal to your proficiency bonus + your Wisdom modifier.", - "prerequisite": "Subtly Skilled feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "nightstalker", - "fields": { - "name": "Nightstalker", - "desc": "* Your Dexterity or Wisdom score increases by 1, to a maximum of 20.\r\n* You can deal Sneak Attack damage when making attacks using unarmed strikes or adept weapons.\r\n* You gain a bonus equal to your Wisdom modifier on Acrobatics, Deception, and Stealth checks.\r\n\r\nIn addition, you gain the following special focus feature:\r\n**Twilight Vanish.** On your turn you can use a reaction and spend 2 exertion to move up to 30 feet with such incredible speed that you seem to disappear: after moving this way you may immediately take the Hide action.", - "prerequisite": "3 levels in adept, 3 levels in rogue", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "physician", - "fields": { - "name": "Physician", - "desc": "* When you use a healer’s satchel to stabilize a dying creature, it regains a number of\r\nhit points equal to your Wisdom modifier.\r\n* You can spend an action and one use of a healer’s satchel to tend to a creature. The creature regains 1d6 + 4 hit points, plus one hit point for each of its hit dice. The creature can’t regain hit points from this feat again until it finishes a rest.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "polearm-savant", - "fields": { - "name": "Polearm Savant", - "desc": "* When you attack with a glaive, halberd, quarterstaff, or spear and no other weapon using the Attack action, as a bonus action you can make a melee attack with the weapon’s opposite end. This attack uses the same ability modifier as the primary attack, dealing 1d4 bludgeoning damage on a hit.\r\n* While you are wielding a glaive, halberd, pike, quarterstaff, or spear, a creature that enters your reach provokes an opportunity attack from you. A creature can use its reaction to avoid provoking an opportunity attack from you in this way.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "power-caster", - "fields": { - "name": "Power Caster", - "desc": "* The range is doubled for any spell you cast that requires a spell attack roll.\r\n* You ignore half cover and three-quarters cover when making a ranged spell attack.\r\n* Choose one cantrip that requires an attack roll. The cantrip must be from the bard, cleric, druid, herald, sorcerer, warlock, or wizard spell list. You learn this cantrip and your spellcasting ability for it depends\r\non the spell list you chose from: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", - "prerequisite": "The ability to cast at least one spell", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "powerful-attacker", - "fields": { - "name": "Powerful Attacker", - "desc": "* You gain proficiency with the Cleaving Swing maneuver and do not have to spend exertion to activate it. In addition, you can use Cleaving Swing with a versatile weapon wielded with two hands.\r\n* Before you make a melee attack with a two-handed weapon or versatile weapon wielded with two hands, if you are proficient with the weapon and do not have disadvantage you can declare a powerful attack. A\r\npowerful attack has disadvantage, but on a hit deals 10 extra damage.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "primordial-caster", - "fields": { - "name": "Primordial Caster", - "desc": "Upon gaining this feat, choose one of the following damage types: acid, cold, fire, lightning, or thunder.\r\n* When you cast a spell that deals damage, your spell’s damage ignores damage resistance to the chosen type.\r\n* When you cast a spell that deals damage of the chosen type, you deal 1 additional damage for every damage die with a result of 1.\r\nThis feat can be selected multiple times, choosing a different damage type each time.", - "prerequisite": "The ability to cast at least one spell", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "proclaimer", - "fields": { - "name": "Proclaimer", - "desc": "* Whenever the Narrator calls for you to roll for initiative, you may activate a use of your Divine Sense feature to warn yourself and up to a number of creatures equal to your Charisma modifier within 30 feet, granting advantage on the initiative check.\r\n* You can use your voice Art Specialty to cast herald spells.\r\n* You can spend exertion to cast spells from the divination school that you know at a cost of 1 exertion per spell level.\r\n* When you gain this feat, you gain one of the following alignment traits: Chaotic, Evil, Good, or Lawful. Once chosen your alignment trait cannot be changed, but you can gain a second alignment trait that is not opposed.", - "prerequisite": "3 levels in bard, 3 levels in herald", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "pure-arcanist", - "fields": { - "name": "Pure Arcanist", - "desc": "You gain the following manifestations:\r\n**Divine (Radiant).** When you cast a spell that deals radiant damage, you can spend 1 sorcery point and choose one creature you can see within 60 feet. That creature regains a number of hit points equal to 1d8 × the spell’s level. \r\n**Pure Arcanum (Force).** When you cast a spell that deals force damage, you can spend 2 sorcery points and choose one creature you can see. After the spell’s damage is resolved, if the creature was damaged by the spell it makes an Intelligence saving throw or becomes stunned until the end of its next turn.", - "prerequisite": "Mystic Arcanist feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "rallying-speaker", - "fields": { - "name": "Rallying Speaker", - "desc": "When you spend 10 minutes speaking inspirationally, you can choose up to 6 friendly creatures (including yourself) within 30 feet that can hear and understand you. Each creature gains temporary hit points equal to your level + your Charisma modifier. A creature can’t gain temporary hit points from this feat again until it has finished a rest.", - "prerequisite": "Charisma 13 or higher", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "resonant-bond", - "fields": { - "name": "Resonant Bond", - "desc": "You’re able to form a greater bond with magic items. During a short rest, you can focus on a non-consumable magic item and create a unique bond with it called resonance. You can have resonance with\r\nonly one item at a time. Attempting to resonate with another item fails until you end the resonance with your current item. When you resonate with an item, you gain the following benefits.\r\n\r\n* If the resonant item requires attunement and you meet the prerequisites to do so, you become attuned to the item. If you don’t meet the prerequisites, both the attunement and resonance with the item fails. This attunement doesn’t count toward the maximum number of items you can be attuned to. Unlike other\r\nattuned items, your attunement to this item doesn’t end from being more than 100 feet away from it for 24 hours.\r\n* Once per rest, as a bonus action, you can summon a resonant item, which appears instantly in your hand so long as it is located on the same plane of existence. You must have a free hand to use this feature and be able to hold the item. \r\n* If the resonant item is sentient, you have advantage on Charisma checks and saving throws made when resolving a conflict with the item.\r\n* If the resonant item is an artifact, you can ignore the effects of one minor detrimental property.\r\n\r\nYou lose resonance with an item if another creature attunes to it or gains resonance with it. You can also voluntarily end the resonance by focusing on the item during a short rest, or during a long rest if the item is not in your possession.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "revenant", - "fields": { - "name": "Revenant", - "desc": "You may choose to select this feat when you die, replacing your most recently chosen feat other than Vendetta or reducing your ability scores to reverse your last Ability Score Improvement. The next midnight your corpse rises and your soul returns to it. You gain the undead type in addition to being a humanoid, as well as the following benefits:\r\n* Your destiny changes to Revenge.\r\n* You gain resistance to necrotic and psychic damage.\r\n* You gain darkvision to a range of 60 feet (or if you already have it, its range increases by 30 feet).\r\n* You become immune to poison damage and the poisoned condition.\r\n* If your vendetta has not ended, you regain all of your hit points when you finish a short rest or 1 hour after you are reduced to 0 hit points.\r\n* You gain an expertise die on saving throws made against spells and other magical effects, and on saving throws made to resist being charmed, fatigued, frightened, paralyzed, or stunned.\r\n* You gain an expertise die on ability checks made to find or track a creature that is part of your vendetta.", - "prerequisite": "Vendetta, one other feat or previous Ability Score Improvement, dead", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "rite-master", - "fields": { - "name": "Rite Master", - "desc": "You gain a ritual book containing spells that you can cast as rituals while holding it.\r\nChoose one of the following classes: bard, cleric, druid, herald, sorcerer, warlock, or wizard. When you acquire this feat, you create a ritual book holding two 1st-level spells of your choice from that class’ spell\r\nlist. These spells must have the ritual tag. The class you choose determines your spellcasting ability for these spells: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or\r\nsorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.\r\nIf you come across a written spell with the ritual tag (like on a spell scroll or in a wizard’s spellbook), you can add it to your ritual book if the spell is on the spell list for the class you chose and its level is no higher than half your level (rounded up). Copying the spell into your ritual book costs 50 gold and 2 hours per level of the spell.", - "prerequisite": "Intelligence or Wisdom 13 or higher", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "shadow-assassin", - "fields": { - "name": "Shadow Assassin", - "desc": "While you are hidden from a target and are in an area of darkness or dim light, you can apply your Sneak Attack damage to an eldritch blast.", - "prerequisite": "Shadowmancer feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "shadowdancer", - "fields": { - "name": "Shadowdancer", - "desc": "* You gain darkvision to a range of 60 feet. Unlike other forms of darkvision you can see color in this way as if you were seeing normally. If you already had darkvision or would gain it later from another feature, its range increases by 30 feet. \r\n* You can use a bonus action and spend 1 spell point to teleport up to 30 feet to an unoccupied area of darkness or dim light you can see. You must currently be in an area of darkness or dim light to teleport in this way. You can bring along objects if their weight doesn’t exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn’t carrying gear beyond its carrying capacity and is within 5 feet. You can increase the range of this teleport by 30 additional feet per each additional spell point you spend.", - "prerequisite": "3 levels in rogue, 3 levels in warlock", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "shadowmancer", - "fields": { - "name": "Shadowmancer", - "desc": "You gain the following benefits.\r\n* You regain 1 spell point whenever you cast a spell from the shadow school.\r\n* You gain a Stealth skill specialty for hiding while in areas of darkness or dim light, and you have advantage on Dexterity (Stealth) checks made to hide while in areas of darkness or dim light.\r\n* Whenever you use your Shadowdancer ability to teleport, after teleporting you can use your reaction to take the Dodge action.", - "prerequisite": "Shadowdancer feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "shield-focus", - "fields": { - "name": "Shield Focus", - "desc": "You gain the following benefits while wielding a shield:\r\n* When you take the Attack action on your turn, as a bonus action you can make a Shove maneuver against a creature within 5 feet of you.\r\n* When you make a Dexterity saving throw against a spell or harmful effect that only targets you, if you aren’t incapacitated you gain a bonus equal to your shield’s Armor Class bonus.\r\n* When you succeed on a Dexterity saving throw against an effect that deals half damage on a success, you can use your reaction to take no damage by protecting yourself with your shield.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "skillful", - "fields": { - "name": "Skillful", - "desc": "Choose three skills, tools, languages, or any combination of these. You gain proficiency with each of your three choices. If you already have proficiency in a chosen skill, you instead gain a skill specialty with that skill.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "skirmisher", - "fields": { - "name": "Skirmisher", - "desc": "* Your Speed increases by 10 feet.\r\n* You can Dash through difficult terrain without requiring additional movement.\r\n* Whenever you attack a creature, for the rest of your turn you don’t provoke opportunity attacks from that creature.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "spellbreaker", - "fields": { - "name": "Spellbreaker", - "desc": "*You gain proficiency with the Purge Magic maneuver and do not have to spend exertion to activate it.\r\n* When a creature concentrating on a spell is damaged by you, it has disadvantage on its concentration check to maintain the spell it is concentrating on.\r\n* You have advantage on saving throws made against spells cast within 30 feet of you.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "stalwart", - "fields": { - "name": "Stalwart", - "desc": "* Your Constitution score increases by 1, to a maximum of 20.\r\n* You regain an additional number of hit points equal to double your Constitution modifier (minimum 2) whenever you roll a hit die to regain hit points.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "stealth-expert", - "fields": { - "name": "Stealth Expert", - "desc": "* You can try to hide from a creature even while you are only lightly obscured from that creature.\r\n* Your position isn’t revealed when you miss with a ranged weapon attack against a creature you are hidden from.\r\n* Dim light does not impose disadvantage when you make Perception checks.", - "prerequisite": "Dexterity 13 or higher", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "street-fighter", - "fields": { - "name": "Street Fighter", - "desc": "* Your Strength or Constitution score increases by 1, to a maximum of 20.\r\n* You can roll 1d4 in place of your normal damage for unarmed strikes.\r\n* You are proficient with improvised weapons.\r\n* You can use a bonus action to make a Grapple maneuver against a target you hit with an unarmed strike or improvised weapon on your turn.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "subtly-skilled", - "fields": { - "name": "Subtly Skilled", - "desc": "You can add your martial arts die as a bonus to Acrobatics, Culture, Deception, Engineering, Intimidation, Investigation, Sleight of Hand, Stealth, Perception, Performance, and Persuasion checks.", - "prerequisite": "Nightstalker feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "surgical-combatant", - "fields": { - "name": "Surgical Combatant", - "desc": "* You gain proficiency with the Dangerous Strikes maneuver and do not have to spend exertion to activate it.\r\n* You gain proficiency in Medicine. If you are already proficient, you instead gain an expertise die.\r\n* You gain an expertise die on Medicine checks made to diagnose the cause of or treat wounds.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "survivor", - "fields": { - "name": "Survivor", - "desc": "* When you are reduced to 0 or fewer hit points, you can use your reaction to move up to your Speed before falling unconscious. Moving in this way doesn’t provoke opportunity attacks.\r\n* On the first turn that you start with 0 hit points and must make a death saving throw, you make that saving throw with advantage.\r\n* When you take massive damage that would kill you instantly, you can use your reaction to make a death saving throw. If the saving throw succeeds, you instead fall unconscious and are dying. \r\n* Medicine checks made to stabilize you have advantage. \r\n* Once between long rests, when a creature successfully stabilizes you, at the start of your next turn you regain 1 hit point.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "swift-combatant", - "fields": { - "name": "Swift Combatant", - "desc": "* Your Speed increases by 5 feet. \r\n* You gain proficiency with the Charge, Rapid Drink, and Swift Stance maneuvers, and do not have to spend exertion to activate them.", - "prerequisite": "8th level or higher", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "tactical-support", - "fields": { - "name": "Tactical Support", - "desc": "* When using the Help action to aid an ally in attacking a creature, the targeted creature can be up to 30 feet away instead of 5 feet.\r\n* If an ally benefiting from your Help action scores a critical hit on the targeted creature, you can use your reaction to make a single weapon attack against that creature. Your attack scores a critical hit on a roll of 19–20. If you already have a feature that increases the range of your critical hits, your critical hit range\r\nfor that attack is increased by 1 (maximum 17–20). \r\n* When a creature is damaged by an attack that was aided by the use of your Help action, you don’t provoke opportunity attacks from that creature until the end of your next turn.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "tenacious", - "fields": { - "name": "Tenacious", - "desc": "Choose one ability score. The chosen ability score increases by 1, to a maximum of 20, and you gain proficiency in saving throws using it.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "thespian", - "fields": { - "name": "Thespian", - "desc": "* Your Charisma score increases by 1, to a maximum of 20. \r\n* You have advantage on Deception and Performance checks made when attempting to mimic another creature’s looks, mannerisms, or speech.\r\n* You have a natural talent for perfectly mimicking the sounds of other creatures you’ve heard make sound for at least 1 minute. A suspicious listener can see through your perfect mimicry by succeeding on a Wisdom (Insight) check opposed by your Charisma (Deception) check.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "true-revenant", - "fields": { - "name": "True Revenant", - "desc": "One year and one day after you select this feat or when your vendetta has ended, you are doomed. Until then, you gain the following benefits.\r\n* You cannot be charmed, fatigued, frightened, paralyzed, or stunned.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* You regain all of your hit points after you do not take any damage for 1 minute.\r\nIn addition, you also gain the Fearsome Pursuit and Burning Hatred features. \r\n**Fearsome Pursuit.** You can spend 1 minute focusing on a creature that is part of your vendetta. If the creature is dead or on another plane of existence, you learn that. Otherwise, after focusing, you know the distance and direction to that creature, and so long as you’re moving in pursuit of that creature, you and anyone traveling with you ignore difficult terrain. This effect ends if you take damage or end your turn without moving for any reason.\r\n**Burning Hatred.** You can use an action to target the focus of your Fearsome Pursuit if it is within 30 feet. The creature makes a Wisdom saving throw (DC 8 + your proficiency bonus + your highest mental ability score modifier). On a failure, it takes psychic damage equal to 1d6 × your proficiency bonus and is stunned until the end of its next turn. On a success, it takes half damage and is rattled until the end of its\r\nnext turn. Once you have used this feature a number of times equal to your proficiency bonus, you can’t use it again until you finish a long rest.", - "prerequisite": "Revenant feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "untamed", - "fields": { - "name": "Untamed", - "desc": "* Your Strength or Wisdom score increases by 1, to a maximum of 20.\r\n* You may enter a rage and assume a wild shape using the same bonus action.\r\n* While using a wild shape, you can use Furious Critical with attacks made using natural weapons.\r\n* Any temporary hit points you gain from assuming a wild shape while raging become rage hit points instead.\r\n* You may cast and concentrate on druid spells with a range of Self or Touch while raging.", - "prerequisite": "Prerequisites: 3 levels in berserker, 3 levels in druid (Skinchanger archetype)", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "vampire-lord", - "fields": { - "name": "Vampire Lord", - "desc": "You gain the following benefits.\r\n* Your Speed increases by 10 feet.\r\n* You gain an expertise die on Stealth checks.\r\n* The range of your darkvision increases to 120 feet.\r\n* Your bite damage increases to 1d10.\r\n* You can use Charming Gaze twice between rests.\r\n* When using Charming Gaze, a target with at least one level of strife makes its saving throw with disadvantage.\r\n\r\nYou also gain the Vampiric Shapechange feature.\r\n\r\n**Vampiric Shapechange.** You can use an action to transform into the shape of a Medium or smaller beast of CR 3 or less, a mist, or back into your true form. While transformed into a beast, you have the beast’s size and movement modes. You can’t use reactions or speak. Otherwise, you use your statistics. Any items you are carrying transform with you. While transformed into a mist, you have a flying speed of 30 feet, can’t speak, can’t take actions or manipulate objects, are immune to nonmagical damage from weapons, and have advantage on saving throws and Stealth checks. You can pass through a space as narrow as 1 inch without squeezing but can’t pass through water. Any items you are carrying transform with you.\r\n\r\nAdditionally, you gain the undead type in addition to being a humanoid, and you take 20 radiant damage when you end your turn in contact with sunlight.", - "prerequisite": "Vampire Spawn", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "vampire-spawn", - "fields": { - "name": "Vampire Spawn", - "desc": "Your bite damage increases to 1d8, a creature affected by your Charming Gaze remains charmed for a number of hours equal to your level, and you regain the use of Charming Gaze when you finish any\r\nrest. You also gain the Spider Climb and Vampiric Regeneration features.\r\n\r\n**Spider Climb.** You gain a climb speed equal to your Speed, and you can climb even on difficult surfaces and upside down on ceilings.\r\n**Vampiric Regeneration.** Whenever you start your turn with at least 1 hit point and you haven’t taken radiant damage or entered direct sunlight since the end of your last turn, you gain a number of temporary hit points equal to twice your proficiency bonus. When you end your turn in contact with running water, you take 20 radiant damage.", - "prerequisite": "Newblood", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "vendetta", - "fields": { - "name": "Vendetta", - "desc": "Something or someone has had a profound impact on your life—and earned your unending rancor. You gain an expertise die on attack rolls and initiative checks made against creatures that are part of your\r\nvendetta, and when making a saving throw to resist an attack, feature, maneuver, spell, or trait from a creature that is part of your vendetta. Whether or not a creature is part of your vendetta is at the Narrator’s discretion.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "vengeful-protector", - "fields": { - "name": "Vengeful Protector", - "desc": "* You gain proficiency with shields as weapons.\r\n* You gain proficiency with the Double Team maneuver and do not have to spend exertion to activate it.\r\n* When a creature reduces a party member (not including animal companions, familiars, or followers) to 0 hit points, you gain an expertise die on attacks made against it until the end of combat.", - "prerequisite": "Proficiency with shields", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "vigilante", - "fields": { - "name": "Vigilante", - "desc": "* Your Wisdom or Dexterity score increases by 1, to a maximum of 20.\r\n* You have an alter ego, an identity associated with a costume or disguise. This alter ego can be as complicated as a full outfit with a history or legends surrounding it or a simple mask or cowl. You can assume or remove this alter ego as an action and it can be worn with all types of armor. \r\n* You gain a 1d8 expertise die and advantage on Deception checks made regarding your alter ego, Persuasion checks made to dissuade others from connecting you to your alter ego, and on disguise kit checks.\r\n* Your alter ego has its own Prestige rating that may increase or decrease as you perform deeds while in your alter ego. In addition, while in your alter ego you gain a 1d8 expertise die on Prestige checks.\r\n* While in your alter ego, you may make a Prestige check and use that result in place of any Intimidation or Persuasion check you would otherwise make.", - "prerequisite": "3 levels in adept, 3 levels in ranger", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "weapons-specialist", - "fields": { - "name": "Weapons Specialist", - "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with four weapons of your choice. Three of these must be a simple or a martial weapon. The fourth choice can be a simple, martial, or rare weapon.", - "prerequisite": "", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "well-heeled", - "fields": { - "name": "Well-Heeled", - "desc": "* You are treated as royalty (or as closely as possible) by most commoners and traders, and as an equal when meeting other authority figures (who make time in their schedule to see you when requested to do so).\r\n* You have passive investments and income that allow you to maintain a high quality of living. You have a rich lifestyle and do not need to pay for it.\r\n* You gain a second Prestige Center. This must be an area where you have spent at least a week of time.", - "prerequisite": "Prestige rating of 2 or higher", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "wild-rioter", - "fields": { - "name": "Wild Rioter", - "desc": "While raging, you and any creatures benefiting from your Living Stampede emit 5-foot auras of fury. When a creature other than you or your allies enters a fury aura or starts its turn there it makes a Wisdom saving throw against your druid spell save DC. On a failed save, a creature becomes confused, except instead of rolling to determine their actions as normal for the confused condition, they are always considered to have rolled the 7 or 8 result. At the end of each of a confused creature’s turns it repeats the saving throw, ending the effect on itself on a success. Once a creature successfully saves against this effect, it is immune to it for the remainder of your rage.", - "prerequisite": "Living Stampede feat", - "document": "a5e-ag" - } -}, -{ - "model": "api_v2.feat", - "pk": "woodcraft-training", - "fields": { - "name": "Woodcraft Training", - "desc": "* You gain proficiency with the herbalism kit, navigator’s kit, a simple ranged weapon, or a martial ranged weapon.\r\n* You gain two exploration knacks of your choice from the ranger class.", - "prerequisite": "", - "document": "a5e-ag" - } -} -] + { + "model": "api_v2.feat", + "pk": "a5e-ag_a-symbol-that-strikes-fear", + "fields": { + "name": "A Symbol That Strikes Fear", + "desc": "Creatures with a CR lower than your alter ego’s Prestige rating are frightened of you while you are in your alter ego. In addition, you become particularly adept at subduing your enemies rather than outright killing them. Whenever you begin a turn grappling a creature, you can attempt to non-lethally subdue it. The grappled creature makes a Constitution saving throw against your maneuver DC. On a failed saving throw, a creature is knocked unconscious for the next hour. A creature with more than 25% of its maximum hit points automatically succeeds on this saving throw.", + "prerequisite": "Equipped for Justice feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_grappler", + "fields": { + "name": "Grappler", + "desc": "* You gain advantage on attack rolls against a creature you are grappling.\r\n* You can use your action to try to pin a creature you are grappling. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", + "prerequisite": "Strength 13 or higher", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_ace-driver", + "fields": { + "name": "Ace Driver", + "desc": "You are a virtuoso of driving and piloting vehicles, able to push them beyond their normal limits and maneuver them with fluid grace through hazardous situations. You gain the following benefits:\r\n* You gain an expertise die on ability checks made to drive or pilot a vehicle.\r\n* While piloting a vehicle, you can use your reaction to take the Brake or Maneuver vehicle actions.\r\n* A vehicle you load can carry 25% more cargo than normal.\r\n* Vehicles you are piloting only suffer a malfunction when reduced to 25% of their hit points, not 50%. In addition, when the vehicle does suffer a malfunction, you roll twice on the maneuver table and choose which die to use for the result.\r\n* Vehicles you are piloting gain a bonus to their Armor Class equal to half your proficiency bonus.\r\n* When you Brake, you can choose to immediately stop the vehicle without traveling half of its movement speed directly forward.", + "prerequisite": "Proficiency with a type of vehicle", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_arcanum-master", + "fields": { + "name": "Arcanum Master", + "desc": "Whenever you cast a spell that deals damage, you may choose the type of damage that spell deals and the appearance of the spell’s effects.", + "prerequisite": "Pure Arcanist feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_arrow-enchanter", + "fields": { + "name": "Arrow Enchanter", + "desc": "Whenever you make a ranged weapon attack, you can choose to expend a 1st-level or higher spell slot to enhance the attack to be empowered or unerring. You cannot enhance more than one attack in a\r\nturn in this way. \r\n**Empowered.** The shot deals an additional 2d6 force damage, and an additional 1d6 force damage for each spell slot level above 1st. \r\n**Unerring.** The shot gains a +2 bonus to the attack roll, and an additional +2 bonus for each spell slot level above 1st.", + "prerequisite": "Eldritch Archer feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_athletic", + "fields": { + "name": "Athletic", + "desc": "Your enhanced physical training grants you the following benefits:\r\n\r\n* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* When you are prone, standing up uses only 5 feet of your movement (instead of half).\r\n* Your speed is not halved from climbing.\r\n* You can make a running long jump or a running high jump after moving 5 feet on foot (instead of 10 feet).", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_attentive", + "fields": { + "name": "Attentive", + "desc": "Always aware of your surroundings, you gain the following benefits:\r\n\r\n* When rolling initiative you gain a +5 bonus.\r\n* You can only be surprised if you are unconscious. A creature attacking you does not gain advantage from being hidden from you or unseen by you.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_battle-caster", + "fields": { + "name": "Battle Caster", + "desc": "You're comfortable casting, even in the chaos of battle.\r\n\r\n* You gain a 1d6 expertise die on concentration checks to maintain spells you have cast.\r\n* While wielding weapons and shields, you may cast spells with a seen component.\r\n* Instead of making an opportunity attack with a weapon, you may use your reaction to cast a spell with a casting time of 1 action. The spell must be one that only targets that creature.", + "prerequisite": "Requires the ability to cast at least one spell of 1st-level or higher", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_brutal-attack", + "fields": { + "name": "Brutal Attack", + "desc": "After making a melee attack, you may reroll any weapon damage and choose the better result. This feat can be used no more than once per turn.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_bull-rush", + "fields": { + "name": "Bull Rush", + "desc": "Your headlong rush devastates your foes. After dashing (with the Dash Action) at least ten feet towards a foe, you may perform a bonus action to select one of the following options.\r\n**Attack.** Make one melee weapon attack, dealing an extra 5 damage on a hit. \r\n**Shove.** Use the Shove maneuver, pushing the target 10 feet directly away on a success.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_combat-thievery", + "fields": { + "name": "Combat Thievery", + "desc": "You know how to trade blows for more than inflicting harm.\r\n\r\n* You gain proficiency with the Deceptive Stance and Painful Pickpocket maneuvers, and do not have to spend exertion to activate them.\r\n* You gain an expertise die on Sleight of Hand checks.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_covert-training", + "fields": { + "name": "Covert Training", + "desc": "You have absorbed some of the lessons of the world of spies, criminals, and others who operate in the shadows. You gain the following benefits:\r\n\r\n* You gain proficiency with thieves' tools, the poisoner's kit, or a rare weapon with the stealthy property.\r\n* You gain two skill tricks of your choice from the rogue class.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_crafting-expert", + "fields": { + "name": "Crafting Expert", + "desc": "You have devoted time to studying and practicing the art of crafting, gaining the following benefits: This feat can be selected multiple times, choosing a different type of crafted item each time.\r\n\r\n* Choose one of the following types of crafted item: armor, engineered items, potions, rings and rods, staves and wands, weapons, wondrous items. You gain advantage on checks made to craft, maintain, and repair that type of item.\r\n* You gain an expertise die on checks made to craft, maintain, and repair items.\r\n* You gain proficiency with two tools of your choice.\r\n\r\nThis feat can be selected multiple times, choosing a different type of crafted item each time.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_crossbow-expertise", + "fields": { + "name": "Crossbow Expertise", + "desc": "* If proficient with a crossbow, you ignore its loading property.\r\n* You do not have disadvantage on ranged attack rolls from being within 5 feet of a hostile creature.\r\n* When you attack with a one-handed weapon using the Attack action, you can use a bonus action to \r\nattack with a hand crossbow wielded in your off-hand.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_deadeye", + "fields": { + "name": "Deadeye", + "desc": "Your natural talent or skill makes you lethal with a ranged weapon.\r\n\r\n* You gain proficiency with the Farshot Stance and Ricochet maneuvers, and do not have to spend exertion to activate them. \r\n* Before you make an attack with a ranged weapon you are proficient with, you can choose to take a penalty on the attack roll equal to your proficiency bonus. If the attack hits, you deal extra damage equal to double your proficiency bonus. This extra damage does not double on a critical hit.\r\n* You ignore half cover and three-quarters cover when making a ranged weapon attack.", + "prerequisite": "8th level or higher", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_deflector", + "fields": { + "name": "Deflector", + "desc": "When you are wielding a finesse weapon with which you are proficient and would be hit by a melee attack, you can use your reaction to add your proficiency bonus to your Armor Class against that attack.", + "prerequisite": "Dexterity 13 or higher", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_destinys-call", + "fields": { + "name": "Destiny’s Call", + "desc": "* An ability score of your choice increases by 1.\r\n* When you gain inspiration through your destiny’s source of inspiration, you can choose one party member within 30 feet of you. That party member gains inspiration if they don’t have it already. Once you inspire a party member in this way, you can’t use this feature again on that party member until you finish a long rest.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_divine-orator", + "fields": { + "name": "Divine Orator", + "desc": "You learn the Divine Inspiration and Persuasive Speech battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Divine Inspiration.** When an ally within 15 feet hits a creature with a melee weapon attack, your ally can deliver a Divine Smite just as if you had delivered it yourself using your Divine Smite feature expending one of your uses). If you are able to empower your smites, you may choose to empower it as normal.\r\n**Persuasive Speech.** Hostile creatures within 60 feet take a –1d4 penalty on attack rolls. You can sustain this battle hymn for up to 3 rounds without expending additional uses of Bardic Inspiration. When a hostile creature begins its third consecutive turn within range of this battle hymn it becomes charmed by you and will not attack you or your allies. If this causes combat to end early, the creatures remain charmed\r\nby you for up to 1 minute afterward or until one of them is damaged by you or an ally. For the next 24 hours after the battle hymn ends, you gain an expertise die on Charisma checks made against creatures that were charmed in this way. A creature that either shares your alignment or worships a deity that has\r\nyour alignment becomes charmed on its second consecutive turn instead. Creatures that have an opposite alignment or worship a greater entity that has an opposite alignment cannot be charmed in this way.", + "prerequisite": "Proclaimer feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_dual-wielding-expert", + "fields": { + "name": "Dual-Wielding Expert", + "desc": "* While wielding a separate melee weapon in each hand, you gain a +1 bonus to Armor Class.\r\n* You can use two-weapon fighting with any two one-handed melee weapons so long as neither has the heavy property.\r\n* When you would normally draw or sheathe a one-handed weapon, you can instead draw or sheathe two one-handed weapons.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_dungeoneer", + "fields": { + "name": "Dungeoneer", + "desc": "* You have advantage on Investigation and Perception checks made to detect secret doors.\r\n* You have advantage on saving throws made against traps.\r\n* You have resistance to damage dealt by traps.\r\n* You don’t take a −5 penalty on your passive Perception score from traveling at a fast pace.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_eldritch-archer", + "fields": { + "name": "Eldritch Archer", + "desc": "* Whenever you make a ranged weapon attack you can choose to conjure magical ammunition and select one of the following damage types: acid, cold, fire, or lightning. Your ranged weapon attacks using this conjured ammunition deal the chosen damage type instead of whatever damage type they would normally deal, and are considered magical for the purpose of overcoming resistance and immunity. Ammunition conjured in this way disappears at the end of the turn it was fired.\r\n* When you hit a target with a ranged weapon attack, you can use your reaction and choose a spell of 1st-level or higher, casting it through your ammunition. The spell must have a casting time of 1 action, and target a single creature or have a range of Touch. If a spell cast in this way requires an attack roll and targets the same target as the triggering ranged weapon attack, it also hits as part of that attack. You may\r\nchoose not to deal damage with a ranged weapon attack used to cast a spell.", + "prerequisite": "3 levels in fighter, 3 levels in wizard, Fighting Style (Archery)", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_eldritch-volley-master", + "fields": { + "name": "Eldritch Volley Master", + "desc": "Whenever you cast a spell with a Cone area, you may additionally make ranged weapon attacks with a ranged weapon you are wielding against targets within that conical area. You may make up to a number of attacks equal to the level of the spell cast, each against a different target. Ranged attacks made in this way ignore the loading quality of weapons and use your conjured magical ammunition.", + "prerequisite": "Arrow Enchanter feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_empathic", + "fields": { + "name": "Empathic", + "desc": "* Your Wisdom or Charisma score increases by 1.\r\n* You gain an expertise die on Insight checks made against other creatures.\r\n* When using a social skill and making a Charisma check another creature, you score a critical success on a roll of 19–20.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_equipped-for-justice", + "fields": { + "name": "Equipped for Justice", + "desc": "* You gain proficiency with all types of artisan’s tools and miscellaneous tools. If you already have proficiency with any of these tools, you instead gain an expertise die with those tools.\r\n* You gain proficiency with Engineering and a 1d8 expertise die on Engineering checks. In addition, you build a nonmagical grappling gun that only functions in your hands. Replacing your grappling gun requires 3 days of crafting and 500 gp.\r\n* You may add your Wisdom modifier to the DC of any saving throws used for miscellaneous adventuring gear items and to attack rolls made using miscellaneous adventuring gear items.", + "prerequisite": "Vigilante feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_fear-breaker", + "fields": { + "name": "Fear Breaker", + "desc": "* You gain proficiency with the Victory Pose maneuver and do not have to spend exertion to activate it. In addition, you may use this maneuver with up to three different weapons you select instead of just one, and\r\naffect allies within 60 feet. \r\n* An ally affected by your Victory Pose gains an expertise die on their next saving throw against fear, and if they are rattled the condition ends for them.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_fortunate", + "fields": { + "name": "Fortunate", + "desc": "You gain 3 fate points. Whenever you make an attack roll, ability check, or saving throw and do not have disadvantage, you can spend a fate point to roll an additional d20 and choose whichever result you wish. \r\nYou may do this after the initial roll has occurred, but before the outcome is known. If you have disadvantage, you may instead spend a fate point to choose one of the d20 rolls and reroll it.\r\nAlternatively, when you are attacked, you can choose to spend a fate point to force the attacking creature to reroll the attack. The creature resolves the attack with the result you choose. You regain all expended fate points when you finish a long rest.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_guarded-warrior", + "fields": { + "name": "Guarded Warrior", + "desc": "* A creature that takes the Disengage action still provokes opportunity attacks from you. \r\n* You gain proficiency with the Warning Strike maneuver and do not have to spend exertion to activate it.\r\n* You can use your reaction to make a melee weapon attack against a creature within 5 feet that makes an attack against a target other than you if the target does not also have this feat.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_harbinger-of-things-to-come", + "fields": { + "name": "Harbinger of Things to Come", + "desc": "You learn the Preach Despair and Preach Hope battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Preach Despair.** A hostile creature within 60 feet of you suffers a level of strife. Creatures with an opposite alignment from yours or that worship a greater entity that has an opposite alignment suffer two levels of strife instead. A creature cannot suffer more than two levels of strife from Preach Despair in the same 24 hours.\r\n**Preach Hope.** Creatures of your choice within 60 feet of you gain advantage on saving throws. When the battle hymn ends, allies within 30 feet of you remove one level of strife. An ally that shares your alignment or worships a greater entity removes two levels of strife instead.", + "prerequisite": "Divine Orator feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_hardy-adventurer", + "fields": { + "name": "Hardy Adventurer", + "desc": "* When you take this feat, you gain a number of hit points equal to twice your level. \r\n* Whenever you gain a new level, you gain an additional 2 hit points to your hit point maximum.\r\n* During a short rest, you regain 1 additional hit point per hit die spent to heal.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_heavily-outfitted", + "fields": { + "name": "Heavily Outfitted", + "desc": "* Your Strength score increases by 1, to a maximum of 20.\r\n* You gain proficiency with heavy armor.", + "prerequisite": "Proficiency with medium armor", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_heavy-armor-expertise", + "fields": { + "name": "Heavy Armor Expertise", + "desc": "* Your Strength score increases by 1, to a maximum of 20.\r\n* While wearing heavy armor, you reduce all bludgeoning, piercing, and slashing damage from nonmagical weapons by 3.", + "prerequisite": "Proficiency with heavy armor", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_heraldic-training", + "fields": { + "name": "Heraldic Training", + "desc": "* You gain proficiency in your choice of one martial weapon, one rare weapon, or shields.\r\n* You gain two divine lessons of your choice from the herald class.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_idealistic-leader", + "fields": { + "name": "Idealistic Leader", + "desc": "* Any stronghold you have or buy that is of frugal quality is automatically upgraded to average quality at no additional cost.\r\n* You gain a new follower for every 50 staff you have in your stronghold, rather than every 100 staff.\r\n* When you fulfill your destiny, choose a number of followers equal to your proficiency bonus. Each is upgraded to their most expensive version.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_intuitive", + "fields": { + "name": "Intuitive", + "desc": "* Your Intelligence or Wisdom score increases by 1, to a maximum of 20. \r\n* Your passive Perception and passive Investigation scores increase by 5.\r\n* If you can see a creature’s mouth while it is speaking a language you know, you can read its lips.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_keen-intellect", + "fields": { + "name": "Keen Intellect", + "desc": "* Your Intelligence score increases by 1, to a maximum of 20.\r\n* You can recall anything you’ve seen or heard within a number of weeks equal to your Intelligence modifier.\r\n* You know how long it will be before the next sunset or sunrise.\r\n* You know which way is north.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_lightly-outfitted", + "fields": { + "name": "Lightly Outfitted", + "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with light armor.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_linguistics-expert", + "fields": { + "name": "Linguistics Expert", + "desc": "* Your Intelligence score increases by 1, to a maximum of 20.\r\n* You learn three languages of your choice.\r\n* You can invent ciphers and are able to teach a cipher you create to others. Anyone who knows the cipher can encode and read hidden messages made with it; the apparent text must be at least four times longer than the hidden message. A creature can detect the cipher’s presence if it spends a minute examining it and succeeds on an Investigation check against a DC of 8+ your proficiency bonus + your Intelligence modifier. If the check succeeds by 5 or more, they can read the hidden message.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_living-stampede", + "fields": { + "name": "Living Stampede", + "desc": "Whenever you enter a rage you may choose up to a number of creatures equal to your Wisdom modifier within 60 feet that are beasts, fey, or plants. These chosen creatures gain the following benefits for as long as you rage, but are unable to take the Fall Back reaction:\r\n* Advantage on Strength checks and Strength saving throws.\r\n* Resistance to bludgeoning, piercing, and slashing damage.\r\n* Temporary hit points equal to your level.\r\n* A bonus to damage rolls equal to your proficiency bonus.", + "prerequisite": "Untamed feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_martial-scholar", + "fields": { + "name": "Martial Scholar", + "desc": "* You gain proficiency in a combat tradition of your choice. \r\n* You learn two combat maneuvers from a combat tradition you know. If you don’t already know any combat maneuvers, both must be 1st degree. Combat maneuvers gained from this feat do not count toward the maximum number of combat maneuvers you know.\r\n* Your exertion pool increases by 3. If you do not have an exertion pool, you gain an exertion pool with 3 exertion, regaining your exertion whenever you finish a rest.", + "prerequisite": "Proficiency with at least one martial weapon", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_medium-armor-expert", + "fields": { + "name": "Medium Armor Expert", + "desc": "* Medium armor doesn’t impose disadvantage on your Dexterity (Stealth) checks.\r\n* When you are wearing medium armor, the maximum Dexterity modifier you can add to your Armor Class increases to 3.", + "prerequisite": "Proficiency with medium armor", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_moderately-outfitted", + "fields": { + "name": "Moderately Outfitted", + "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with medium armor and shields.", + "prerequisite": "Proficiency with light armor", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_monster-hunter", + "fields": { + "name": "Monster Hunter", + "desc": "* You gain an expertise die on checks made to learn legends and lore about a creature you can see.\r\n* You learn the altered strike cantrip.\r\n* You gain proficiency with the Douse maneuver and do not have to spend exertion to activate it.\r\n* You gain the tracking skill specialty in Survival.", + "prerequisite": "Proficiency with Survival, 8th level or higher", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_mounted-warrior", + "fields": { + "name": "Mounted Warrior", + "desc": "* You gain proficiency with the Lancer Strike maneuver and do not have to spend exertion to activate it.\r\n* When your mount is targeted by an attack, you can instead make yourself the attack’s target.\r\n* When your mount makes a Dexterity saving throw against an effect that deals half damage on a success, it takes no damage on a success and half damage on a failure.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_mystic-arcanist", + "fields": { + "name": "Mystic Arcanist", + "desc": "* Your Wisdom or Charisma score increases by 1, to a maximum of 20. \r\n* When you cast a spell that restores hit points, you restore an additional number of hit points equal to your Charisma modifier.\r\n* You can spend sorcery points to temporarily gain a spell from the cleric or sorcerer spell lists. Gaining a spell in this way costs a number of sorcery points equal to the spell’s level. You cannot gain a spell that has a level higher than your highest level spell slot. When you gain a cleric spell in this way, it is considered prepared for the day. When you gain a sorcerer spell in this way, it is considered a spell you know for the day. You lose all spells gained in this way whenever you finish a long rest.", + "prerequisite": "3 levels in cleric, 3 levels in sorcerer", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_mystical-talent", + "fields": { + "name": "Mystical Talent", + "desc": "Choose a class: bard, cleric, druid, herald, sorcerer, warlock, or wizard.\r\n\r\n* You learn two cantrips of your choice from the class’s spell list. \r\n* Choose a 1st-level spell to learn from that spell list. Once between long rests, you can cast this spell without expending a spell slot. You can also cast this spell using a spell slot of the appropriate level (or the appropriate number of spell points if you have warlock levels).\r\n\r\nYour spellcasting ability for these spells is Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_natural-warrior", + "fields": { + "name": "Natural Warrior", + "desc": "* Your Speed increases by 5 feet.\r\n* When making an Acrobatics or Athletics check during combat, you can choose to use your Strength or Dexterity modifier for either skill.\r\n* You gain proficiency with the Bounding Strike maneuver and do not have to spend exertion to activate it.\r\n* You can roll 1d4 in place of your normal damage for unarmed strikes. When rolling damage for your unarmed strikes, you can choose to deal bludgeoning, piercing, or slashing damage.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_newblood", + "fields": { + "name": "Newblood", + "desc": "You gain resistance to necrotic damage (or if you already have it, immunity to necrotic damage) and darkvision to a range of 30 feet (or if you already have it, the range of your darkvision increases by 30 feet). You also gain a bite natural weapon and the Charming Gaze feature.\r\n\r\n**Bite.** You gain a bite natural weapon you are proficient with. You are only able to bite grappled, incapacitated, restrained, or willing creatures. You can use Dexterity instead of Strength for the attack rolls of your bite. On a hit your bite deals piercing damage equal to 1d6 plus your Strength modifier or Dexterity modifier (whichever is highest). In addition, once per turn you can choose for your bite to also deal 1d6\r\nnecrotic damage × your proficiency bonus. You regain hit points equal to the amount of necrotic damage dealt to your target. This necrotic damage can only be increased by a critical hit.\r\n**Charming Gaze.** Once between long rests, you magically target a creature within 30 feet, forcing it to make a Wisdom saving throw (DC 8 + your proficiency bonus + your Charisma modifier). On a failure, the target is charmed by you for a number of hours equal to your proficiency bonus. While charmed it regards you as a trusted friend and is a willing target for your bite. The target repeats the saving throw each time it takes damage, ending the effect on itself on a success. If the target’s saving throw is successful or the effect ends for it, it is immune to your charm for 24 hours.\r\n\r\nAdditionally, you have disadvantage on attack rolls and on Perception checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight. In addition, you cannot use your Charming Gaze while you are in direct sunlight.", + "prerequisite": "Must have been bitten by a vampire or taken necrotic damage equal to quadruple your level from a single attack or spell", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_night-master", + "fields": { + "name": "Night Master", + "desc": "You can spend exertion to cast any spells from the air, earth, fear, fire, movement, obscurement, plants, poison, senses, shadow, transformation, unarmed, or water schools at the cost of 2 exertion per spell level. You use your focus save DC for spells cast this way, and your spell attack modifier is equal to your proficiency bonus + your Wisdom modifier.", + "prerequisite": "Subtly Skilled feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_nightstalker", + "fields": { + "name": "Nightstalker", + "desc": "* Your Dexterity or Wisdom score increases by 1, to a maximum of 20.\r\n* You can deal Sneak Attack damage when making attacks using unarmed strikes or adept weapons.\r\n* You gain a bonus equal to your Wisdom modifier on Acrobatics, Deception, and Stealth checks.\r\n\r\nIn addition, you gain the following special focus feature:\r\n**Twilight Vanish.** On your turn you can use a reaction and spend 2 exertion to move up to 30 feet with such incredible speed that you seem to disappear: after moving this way you may immediately take the Hide action.", + "prerequisite": "3 levels in adept, 3 levels in rogue", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_physician", + "fields": { + "name": "Physician", + "desc": "* When you use a healer’s satchel to stabilize a dying creature, it regains a number of\r\nhit points equal to your Wisdom modifier.\r\n* You can spend an action and one use of a healer’s satchel to tend to a creature. The creature regains 1d6 + 4 hit points, plus one hit point for each of its hit dice. The creature can’t regain hit points from this feat again until it finishes a rest.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_polearm-savant", + "fields": { + "name": "Polearm Savant", + "desc": "* When you attack with a glaive, halberd, quarterstaff, or spear and no other weapon using the Attack action, as a bonus action you can make a melee attack with the weapon’s opposite end. This attack uses the same ability modifier as the primary attack, dealing 1d4 bludgeoning damage on a hit.\r\n* While you are wielding a glaive, halberd, pike, quarterstaff, or spear, a creature that enters your reach provokes an opportunity attack from you. A creature can use its reaction to avoid provoking an opportunity attack from you in this way.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_power-caster", + "fields": { + "name": "Power Caster", + "desc": "* The range is doubled for any spell you cast that requires a spell attack roll.\r\n* You ignore half cover and three-quarters cover when making a ranged spell attack.\r\n* Choose one cantrip that requires an attack roll. The cantrip must be from the bard, cleric, druid, herald, sorcerer, warlock, or wizard spell list. You learn this cantrip and your spellcasting ability for it depends\r\non the spell list you chose from: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", + "prerequisite": "The ability to cast at least one spell", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_powerful-attacker", + "fields": { + "name": "Powerful Attacker", + "desc": "* You gain proficiency with the Cleaving Swing maneuver and do not have to spend exertion to activate it. In addition, you can use Cleaving Swing with a versatile weapon wielded with two hands.\r\n* Before you make a melee attack with a two-handed weapon or versatile weapon wielded with two hands, if you are proficient with the weapon and do not have disadvantage you can declare a powerful attack. A\r\npowerful attack has disadvantage, but on a hit deals 10 extra damage.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_primordial-caster", + "fields": { + "name": "Primordial Caster", + "desc": "Upon gaining this feat, choose one of the following damage types: acid, cold, fire, lightning, or thunder.\r\n* When you cast a spell that deals damage, your spell’s damage ignores damage resistance to the chosen type.\r\n* When you cast a spell that deals damage of the chosen type, you deal 1 additional damage for every damage die with a result of 1.\r\nThis feat can be selected multiple times, choosing a different damage type each time.", + "prerequisite": "The ability to cast at least one spell", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_proclaimer", + "fields": { + "name": "Proclaimer", + "desc": "* Whenever the Narrator calls for you to roll for initiative, you may activate a use of your Divine Sense feature to warn yourself and up to a number of creatures equal to your Charisma modifier within 30 feet, granting advantage on the initiative check.\r\n* You can use your voice Art Specialty to cast herald spells.\r\n* You can spend exertion to cast spells from the divination school that you know at a cost of 1 exertion per spell level.\r\n* When you gain this feat, you gain one of the following alignment traits: Chaotic, Evil, Good, or Lawful. Once chosen your alignment trait cannot be changed, but you can gain a second alignment trait that is not opposed.", + "prerequisite": "3 levels in bard, 3 levels in herald", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_pure-arcanist", + "fields": { + "name": "Pure Arcanist", + "desc": "You gain the following manifestations:\r\n**Divine (Radiant).** When you cast a spell that deals radiant damage, you can spend 1 sorcery point and choose one creature you can see within 60 feet. That creature regains a number of hit points equal to 1d8 × the spell’s level. \r\n**Pure Arcanum (Force).** When you cast a spell that deals force damage, you can spend 2 sorcery points and choose one creature you can see. After the spell’s damage is resolved, if the creature was damaged by the spell it makes an Intelligence saving throw or becomes stunned until the end of its next turn.", + "prerequisite": "Mystic Arcanist feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_rallying-speaker", + "fields": { + "name": "Rallying Speaker", + "desc": "When you spend 10 minutes speaking inspirationally, you can choose up to 6 friendly creatures (including yourself) within 30 feet that can hear and understand you. Each creature gains temporary hit points equal to your level + your Charisma modifier. A creature can’t gain temporary hit points from this feat again until it has finished a rest.", + "prerequisite": "Charisma 13 or higher", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_resonant-bond", + "fields": { + "name": "Resonant Bond", + "desc": "You’re able to form a greater bond with magic items. During a short rest, you can focus on a non-consumable magic item and create a unique bond with it called resonance. You can have resonance with\r\nonly one item at a time. Attempting to resonate with another item fails until you end the resonance with your current item. When you resonate with an item, you gain the following benefits.\r\n\r\n* If the resonant item requires attunement and you meet the prerequisites to do so, you become attuned to the item. If you don’t meet the prerequisites, both the attunement and resonance with the item fails. This attunement doesn’t count toward the maximum number of items you can be attuned to. Unlike other\r\nattuned items, your attunement to this item doesn’t end from being more than 100 feet away from it for 24 hours.\r\n* Once per rest, as a bonus action, you can summon a resonant item, which appears instantly in your hand so long as it is located on the same plane of existence. You must have a free hand to use this feature and be able to hold the item. \r\n* If the resonant item is sentient, you have advantage on Charisma checks and saving throws made when resolving a conflict with the item.\r\n* If the resonant item is an artifact, you can ignore the effects of one minor detrimental property.\r\n\r\nYou lose resonance with an item if another creature attunes to it or gains resonance with it. You can also voluntarily end the resonance by focusing on the item during a short rest, or during a long rest if the item is not in your possession.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_revenant", + "fields": { + "name": "Revenant", + "desc": "You may choose to select this feat when you die, replacing your most recently chosen feat other than Vendetta or reducing your ability scores to reverse your last Ability Score Improvement. The next midnight your corpse rises and your soul returns to it. You gain the undead type in addition to being a humanoid, as well as the following benefits:\r\n* Your destiny changes to Revenge.\r\n* You gain resistance to necrotic and psychic damage.\r\n* You gain darkvision to a range of 60 feet (or if you already have it, its range increases by 30 feet).\r\n* You become immune to poison damage and the poisoned condition.\r\n* If your vendetta has not ended, you regain all of your hit points when you finish a short rest or 1 hour after you are reduced to 0 hit points.\r\n* You gain an expertise die on saving throws made against spells and other magical effects, and on saving throws made to resist being charmed, fatigued, frightened, paralyzed, or stunned.\r\n* You gain an expertise die on ability checks made to find or track a creature that is part of your vendetta.", + "prerequisite": "Vendetta, one other feat or previous Ability Score Improvement, dead", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_rite-master", + "fields": { + "name": "Rite Master", + "desc": "You gain a ritual book containing spells that you can cast as rituals while holding it.\r\nChoose one of the following classes: bard, cleric, druid, herald, sorcerer, warlock, or wizard. When you acquire this feat, you create a ritual book holding two 1st-level spells of your choice from that class’ spell\r\nlist. These spells must have the ritual tag. The class you choose determines your spellcasting ability for these spells: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or\r\nsorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.\r\nIf you come across a written spell with the ritual tag (like on a spell scroll or in a wizard’s spellbook), you can add it to your ritual book if the spell is on the spell list for the class you chose and its level is no higher than half your level (rounded up). Copying the spell into your ritual book costs 50 gold and 2 hours per level of the spell.", + "prerequisite": "Intelligence or Wisdom 13 or higher", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_shadow-assassin", + "fields": { + "name": "Shadow Assassin", + "desc": "While you are hidden from a target and are in an area of darkness or dim light, you can apply your Sneak Attack damage to an eldritch blast.", + "prerequisite": "Shadowmancer feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_shadowdancer", + "fields": { + "name": "Shadowdancer", + "desc": "* You gain darkvision to a range of 60 feet. Unlike other forms of darkvision you can see color in this way as if you were seeing normally. If you already had darkvision or would gain it later from another feature, its range increases by 30 feet. \r\n* You can use a bonus action and spend 1 spell point to teleport up to 30 feet to an unoccupied area of darkness or dim light you can see. You must currently be in an area of darkness or dim light to teleport in this way. You can bring along objects if their weight doesn’t exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn’t carrying gear beyond its carrying capacity and is within 5 feet. You can increase the range of this teleport by 30 additional feet per each additional spell point you spend.", + "prerequisite": "3 levels in rogue, 3 levels in warlock", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_shadowmancer", + "fields": { + "name": "Shadowmancer", + "desc": "You gain the following benefits.\r\n* You regain 1 spell point whenever you cast a spell from the shadow school.\r\n* You gain a Stealth skill specialty for hiding while in areas of darkness or dim light, and you have advantage on Dexterity (Stealth) checks made to hide while in areas of darkness or dim light.\r\n* Whenever you use your Shadowdancer ability to teleport, after teleporting you can use your reaction to take the Dodge action.", + "prerequisite": "Shadowdancer feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_shield-focus", + "fields": { + "name": "Shield Focus", + "desc": "You gain the following benefits while wielding a shield:\r\n* When you take the Attack action on your turn, as a bonus action you can make a Shove maneuver against a creature within 5 feet of you.\r\n* When you make a Dexterity saving throw against a spell or harmful effect that only targets you, if you aren’t incapacitated you gain a bonus equal to your shield’s Armor Class bonus.\r\n* When you succeed on a Dexterity saving throw against an effect that deals half damage on a success, you can use your reaction to take no damage by protecting yourself with your shield.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_skillful", + "fields": { + "name": "Skillful", + "desc": "Choose three skills, tools, languages, or any combination of these. You gain proficiency with each of your three choices. If you already have proficiency in a chosen skill, you instead gain a skill specialty with that skill.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_skirmisher", + "fields": { + "name": "Skirmisher", + "desc": "* Your Speed increases by 10 feet.\r\n* You can Dash through difficult terrain without requiring additional movement.\r\n* Whenever you attack a creature, for the rest of your turn you don’t provoke opportunity attacks from that creature.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_spellbreaker", + "fields": { + "name": "Spellbreaker", + "desc": "*You gain proficiency with the Purge Magic maneuver and do not have to spend exertion to activate it.\r\n* When a creature concentrating on a spell is damaged by you, it has disadvantage on its concentration check to maintain the spell it is concentrating on.\r\n* You have advantage on saving throws made against spells cast within 30 feet of you.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_stalwart", + "fields": { + "name": "Stalwart", + "desc": "* Your Constitution score increases by 1, to a maximum of 20.\r\n* You regain an additional number of hit points equal to double your Constitution modifier (minimum 2) whenever you roll a hit die to regain hit points.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_stealth-expert", + "fields": { + "name": "Stealth Expert", + "desc": "* You can try to hide from a creature even while you are only lightly obscured from that creature.\r\n* Your position isn’t revealed when you miss with a ranged weapon attack against a creature you are hidden from.\r\n* Dim light does not impose disadvantage when you make Perception checks.", + "prerequisite": "Dexterity 13 or higher", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_street-fighter", + "fields": { + "name": "Street Fighter", + "desc": "* Your Strength or Constitution score increases by 1, to a maximum of 20.\r\n* You can roll 1d4 in place of your normal damage for unarmed strikes.\r\n* You are proficient with improvised weapons.\r\n* You can use a bonus action to make a Grapple maneuver against a target you hit with an unarmed strike or improvised weapon on your turn.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_subtly-skilled", + "fields": { + "name": "Subtly Skilled", + "desc": "You can add your martial arts die as a bonus to Acrobatics, Culture, Deception, Engineering, Intimidation, Investigation, Sleight of Hand, Stealth, Perception, Performance, and Persuasion checks.", + "prerequisite": "Nightstalker feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_surgical-combatant", + "fields": { + "name": "Surgical Combatant", + "desc": "* You gain proficiency with the Dangerous Strikes maneuver and do not have to spend exertion to activate it.\r\n* You gain proficiency in Medicine. If you are already proficient, you instead gain an expertise die.\r\n* You gain an expertise die on Medicine checks made to diagnose the cause of or treat wounds.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_survivor", + "fields": { + "name": "Survivor", + "desc": "* When you are reduced to 0 or fewer hit points, you can use your reaction to move up to your Speed before falling unconscious. Moving in this way doesn’t provoke opportunity attacks.\r\n* On the first turn that you start with 0 hit points and must make a death saving throw, you make that saving throw with advantage.\r\n* When you take massive damage that would kill you instantly, you can use your reaction to make a death saving throw. If the saving throw succeeds, you instead fall unconscious and are dying. \r\n* Medicine checks made to stabilize you have advantage. \r\n* Once between long rests, when a creature successfully stabilizes you, at the start of your next turn you regain 1 hit point.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_swift-combatant", + "fields": { + "name": "Swift Combatant", + "desc": "* Your Speed increases by 5 feet. \r\n* You gain proficiency with the Charge, Rapid Drink, and Swift Stance maneuvers, and do not have to spend exertion to activate them.", + "prerequisite": "8th level or higher", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_tactical-support", + "fields": { + "name": "Tactical Support", + "desc": "* When using the Help action to aid an ally in attacking a creature, the targeted creature can be up to 30 feet away instead of 5 feet.\r\n* If an ally benefiting from your Help action scores a critical hit on the targeted creature, you can use your reaction to make a single weapon attack against that creature. Your attack scores a critical hit on a roll of 19–20. If you already have a feature that increases the range of your critical hits, your critical hit range\r\nfor that attack is increased by 1 (maximum 17–20). \r\n* When a creature is damaged by an attack that was aided by the use of your Help action, you don’t provoke opportunity attacks from that creature until the end of your next turn.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_tenacious", + "fields": { + "name": "Tenacious", + "desc": "Choose one ability score. The chosen ability score increases by 1, to a maximum of 20, and you gain proficiency in saving throws using it.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_thespian", + "fields": { + "name": "Thespian", + "desc": "* Your Charisma score increases by 1, to a maximum of 20. \r\n* You have advantage on Deception and Performance checks made when attempting to mimic another creature’s looks, mannerisms, or speech.\r\n* You have a natural talent for perfectly mimicking the sounds of other creatures you’ve heard make sound for at least 1 minute. A suspicious listener can see through your perfect mimicry by succeeding on a Wisdom (Insight) check opposed by your Charisma (Deception) check.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_true-revenant", + "fields": { + "name": "True Revenant", + "desc": "One year and one day after you select this feat or when your vendetta has ended, you are doomed. Until then, you gain the following benefits.\r\n* You cannot be charmed, fatigued, frightened, paralyzed, or stunned.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* You regain all of your hit points after you do not take any damage for 1 minute.\r\nIn addition, you also gain the Fearsome Pursuit and Burning Hatred features. \r\n**Fearsome Pursuit.** You can spend 1 minute focusing on a creature that is part of your vendetta. If the creature is dead or on another plane of existence, you learn that. Otherwise, after focusing, you know the distance and direction to that creature, and so long as you’re moving in pursuit of that creature, you and anyone traveling with you ignore difficult terrain. This effect ends if you take damage or end your turn without moving for any reason.\r\n**Burning Hatred.** You can use an action to target the focus of your Fearsome Pursuit if it is within 30 feet. The creature makes a Wisdom saving throw (DC 8 + your proficiency bonus + your highest mental ability score modifier). On a failure, it takes psychic damage equal to 1d6 × your proficiency bonus and is stunned until the end of its next turn. On a success, it takes half damage and is rattled until the end of its\r\nnext turn. Once you have used this feature a number of times equal to your proficiency bonus, you can’t use it again until you finish a long rest.", + "prerequisite": "Revenant feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_untamed", + "fields": { + "name": "Untamed", + "desc": "* Your Strength or Wisdom score increases by 1, to a maximum of 20.\r\n* You may enter a rage and assume a wild shape using the same bonus action.\r\n* While using a wild shape, you can use Furious Critical with attacks made using natural weapons.\r\n* Any temporary hit points you gain from assuming a wild shape while raging become rage hit points instead.\r\n* You may cast and concentrate on druid spells with a range of Self or Touch while raging.", + "prerequisite": "Prerequisites: 3 levels in berserker, 3 levels in druid (Skinchanger archetype)", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_vampire-lord", + "fields": { + "name": "Vampire Lord", + "desc": "You gain the following benefits.\r\n* Your Speed increases by 10 feet.\r\n* You gain an expertise die on Stealth checks.\r\n* The range of your darkvision increases to 120 feet.\r\n* Your bite damage increases to 1d10.\r\n* You can use Charming Gaze twice between rests.\r\n* When using Charming Gaze, a target with at least one level of strife makes its saving throw with disadvantage.\r\n\r\nYou also gain the Vampiric Shapechange feature.\r\n\r\n**Vampiric Shapechange.** You can use an action to transform into the shape of a Medium or smaller beast of CR 3 or less, a mist, or back into your true form. While transformed into a beast, you have the beast’s size and movement modes. You can’t use reactions or speak. Otherwise, you use your statistics. Any items you are carrying transform with you. While transformed into a mist, you have a flying speed of 30 feet, can’t speak, can’t take actions or manipulate objects, are immune to nonmagical damage from weapons, and have advantage on saving throws and Stealth checks. You can pass through a space as narrow as 1 inch without squeezing but can’t pass through water. Any items you are carrying transform with you.\r\n\r\nAdditionally, you gain the undead type in addition to being a humanoid, and you take 20 radiant damage when you end your turn in contact with sunlight.", + "prerequisite": "Vampire Spawn", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_vampire-spawn", + "fields": { + "name": "Vampire Spawn", + "desc": "Your bite damage increases to 1d8, a creature affected by your Charming Gaze remains charmed for a number of hours equal to your level, and you regain the use of Charming Gaze when you finish any\r\nrest. You also gain the Spider Climb and Vampiric Regeneration features.\r\n\r\n**Spider Climb.** You gain a climb speed equal to your Speed, and you can climb even on difficult surfaces and upside down on ceilings.\r\n**Vampiric Regeneration.** Whenever you start your turn with at least 1 hit point and you haven’t taken radiant damage or entered direct sunlight since the end of your last turn, you gain a number of temporary hit points equal to twice your proficiency bonus. When you end your turn in contact with running water, you take 20 radiant damage.", + "prerequisite": "Newblood", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_vendetta", + "fields": { + "name": "Vendetta", + "desc": "Something or someone has had a profound impact on your life—and earned your unending rancor. You gain an expertise die on attack rolls and initiative checks made against creatures that are part of your\r\nvendetta, and when making a saving throw to resist an attack, feature, maneuver, spell, or trait from a creature that is part of your vendetta. Whether or not a creature is part of your vendetta is at the Narrator’s discretion.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_vengeful-protector", + "fields": { + "name": "Vengeful Protector", + "desc": "* You gain proficiency with shields as weapons.\r\n* You gain proficiency with the Double Team maneuver and do not have to spend exertion to activate it.\r\n* When a creature reduces a party member (not including animal companions, familiars, or followers) to 0 hit points, you gain an expertise die on attacks made against it until the end of combat.", + "prerequisite": "Proficiency with shields", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_vigilante", + "fields": { + "name": "Vigilante", + "desc": "* Your Wisdom or Dexterity score increases by 1, to a maximum of 20.\r\n* You have an alter ego, an identity associated with a costume or disguise. This alter ego can be as complicated as a full outfit with a history or legends surrounding it or a simple mask or cowl. You can assume or remove this alter ego as an action and it can be worn with all types of armor. \r\n* You gain a 1d8 expertise die and advantage on Deception checks made regarding your alter ego, Persuasion checks made to dissuade others from connecting you to your alter ego, and on disguise kit checks.\r\n* Your alter ego has its own Prestige rating that may increase or decrease as you perform deeds while in your alter ego. In addition, while in your alter ego you gain a 1d8 expertise die on Prestige checks.\r\n* While in your alter ego, you may make a Prestige check and use that result in place of any Intimidation or Persuasion check you would otherwise make.", + "prerequisite": "3 levels in adept, 3 levels in ranger", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_weapons-specialist", + "fields": { + "name": "Weapons Specialist", + "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with four weapons of your choice. Three of these must be a simple or a martial weapon. The fourth choice can be a simple, martial, or rare weapon.", + "prerequisite": "", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_well-heeled", + "fields": { + "name": "Well-Heeled", + "desc": "* You are treated as royalty (or as closely as possible) by most commoners and traders, and as an equal when meeting other authority figures (who make time in their schedule to see you when requested to do so).\r\n* You have passive investments and income that allow you to maintain a high quality of living. You have a rich lifestyle and do not need to pay for it.\r\n* You gain a second Prestige Center. This must be an area where you have spent at least a week of time.", + "prerequisite": "Prestige rating of 2 or higher", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_wild-rioter", + "fields": { + "name": "Wild Rioter", + "desc": "While raging, you and any creatures benefiting from your Living Stampede emit 5-foot auras of fury. When a creature other than you or your allies enters a fury aura or starts its turn there it makes a Wisdom saving throw against your druid spell save DC. On a failed save, a creature becomes confused, except instead of rolling to determine their actions as normal for the confused condition, they are always considered to have rolled the 7 or 8 result. At the end of each of a confused creature’s turns it repeats the saving throw, ending the effect on itself on a success. Once a creature successfully saves against this effect, it is immune to it for the remainder of your rage.", + "prerequisite": "Living Stampede feat", + "document": "a5e-ag" + } + }, + { + "model": "api_v2.feat", + "pk": "a5e-ag_woodcraft-training", + "fields": { + "name": "Woodcraft Training", + "desc": "* You gain proficiency with the herbalism kit, navigator’s kit, a simple ranged weapon, or a martial ranged weapon.\r\n* You gain two exploration knacks of your choice from the ranger class.", + "prerequisite": "", + "document": "a5e-ag" + } + } +] \ No newline at end of file diff --git a/data/v2/en-publishing/a5e-ag/FeatBenefit.json b/data/v2/en-publishing/a5e-ag/FeatBenefit.json index 0d4a8836..d7d0f405 100644 --- a/data/v2/en-publishing/a5e-ag/FeatBenefit.json +++ b/data/v2/en-publishing/a5e-ag/FeatBenefit.json @@ -1,2372 +1,2372 @@ [ -{ - "model": "api_v2.featbenefit", - "pk": 1, - "fields": { - "name": "", - "desc": "You gain proficiency with the herbalism kit, navigator’s kit, a simple ranged weapon, or a martial ranged weapon.", - "type": null, - "parent": "woodcraft-training" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 2, - "fields": { - "name": "", - "desc": "You gain two exploration knacks of your choice from the ranger class.", - "type": null, - "parent": "woodcraft-training" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 3, - "fields": { - "name": "", - "desc": "While raging, you and any creatures benefiting from your Living Stampede emit 5-foot auras of fury.", - "type": null, - "parent": "wild-rioter" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 4, - "fields": { - "name": "", - "desc": "When a creature other than you or your allies enters a fury aura or starts its turn there it makes a Wisdom saving throw against your druid spell save DC. On a failed save, a creature becomes confused, except instead of rolling to determine their actions as normal for the confused condition, they are always considered to have rolled the 7 or 8 result. At the end of each of a confused creature’s turns it repeats the saving throw, ending the effect on itself on a success. Once a creature successfully saves against this effect, it is immune to it for the remainder of your rage.", - "type": null, - "parent": "wild-rioter" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 5, - "fields": { - "name": "", - "desc": "You are treated as royalty (or as closely as possible) by most commoners and traders, and as an equal when meeting other authority figures (who make time in their schedule to see you when requested to do so).", - "type": null, - "parent": "well-heeled" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 6, - "fields": { - "name": "", - "desc": "You have passive investments and income that allow you to maintain a high quality of living. You have a rich lifestyle and do not need to pay for it.", - "type": null, - "parent": "well-heeled" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 7, - "fields": { - "name": "", - "desc": "You gain a second Prestige Center. This must be an area where you have spent at least a week of time.", - "type": null, - "parent": "well-heeled" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 8, - "fields": { - "name": "", - "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", - "type": null, - "parent": "weapons-specialist" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 9, - "fields": { - "name": "", - "desc": "You gain proficiency with four weapons of your choice. Three of these must be a simple or a martial weapon. The fourth choice can be a simple, martial, or rare weapon.", - "type": null, - "parent": "weapons-specialist" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 10, - "fields": { - "name": "", - "desc": "Your Wisdom or Dexterity score increases by 1, to a maximum of 20.", - "type": null, - "parent": "vigilante" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 11, - "fields": { - "name": "", - "desc": "You have an alter ego, an identity associated with a costume or disguise. This alter ego can be as complicated as a full outfit with a history or legends surrounding it or a simple mask or cowl. You can assume or remove this alter ego as an action and it can be worn with all types of armor.", - "type": null, - "parent": "vigilante" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 12, - "fields": { - "name": "", - "desc": "You gain a 1d8 expertise die and advantage on Deception checks made regarding your alter ego, Persuasion checks made to dissuade others from connecting you to your alter ego, and on disguise kit checks.", - "type": null, - "parent": "vigilante" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 13, - "fields": { - "name": "", - "desc": "Your alter ego has its own Prestige rating that may increase or decrease as you perform deeds while in your alter ego. In addition, while in your alter ego you gain a 1d8 expertise die on Prestige checks.", - "type": null, - "parent": "vigilante" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 14, - "fields": { - "name": "", - "desc": "While in your alter ego, you may make a Prestige check and use that result in place of any Intimidation or Persuasion check you would otherwise make.", - "type": null, - "parent": "vigilante" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 15, - "fields": { - "name": "", - "desc": "You gain proficiency with shields as weapons.", - "type": null, - "parent": "vengeful-protector" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 16, - "fields": { - "name": "", - "desc": "You gain proficiency with the Double Team maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "vengeful-protector" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 17, - "fields": { - "name": "", - "desc": "When a creature reduces a party member (not including animal companions, familiars, or followers) to 0 hit points, you gain an expertise die on attacks made against it until the end of combat.", - "type": null, - "parent": "vengeful-protector" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 18, - "fields": { - "name": "", - "desc": "You gain an expertise die on attack rolls and initiative checks made against creatures that are part of your\r\nvendetta, and when making a saving throw to resist an attack, feature, maneuver, spell, or trait from a creature that is part of your vendetta. Whether or not a creature is part of your vendetta is at the Narrator’s discretion.", - "type": null, - "parent": "vendetta" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 19, - "fields": { - "name": "", - "desc": "Your bite damage increases to 1d8, a creature affected by your Charming Gaze remains charmed for a number of hours equal to your level, and you regain the use of Charming Gaze when you finish any\r\nrest.", - "type": null, - "parent": "vampire-spawn" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 20, - "fields": { - "name": "", - "desc": "You also gain the Spider Climb and Vampiric Regeneration features.\r\n**Spider Climb.** You gain a climb speed equal to your Speed, and you can climb even on difficult surfaces and upside down on ceilings.\r\n**Vampiric Regeneration.** Whenever you start your turn with at least 1 hit point and you haven’t taken radiant damage or entered direct sunlight since the end of your last turn, you gain a number of temporary hit points equal to twice your proficiency bonus. When you end your turn in contact with running water, you take 20 radiant damage.", - "type": null, - "parent": "vampire-spawn" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 21, - "fields": { - "name": "", - "desc": "Your Speed increases by 10 feet.", - "type": null, - "parent": "vampire-lord" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 22, - "fields": { - "name": "", - "desc": "You gain an expertise die on Stealth checks.", - "type": null, - "parent": "vampire-lord" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 23, - "fields": { - "name": "", - "desc": "The range of your darkvision increases to 120 feet.", - "type": null, - "parent": "vampire-lord" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 24, - "fields": { - "name": "", - "desc": "Your bite damage increases to 1d10.", - "type": null, - "parent": "vampire-lord" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 25, - "fields": { - "name": "", - "desc": "You can use Charming Gaze twice between rests.", - "type": null, - "parent": "vampire-lord" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 26, - "fields": { - "name": "", - "desc": "When using Charming Gaze, a target with at least one level of strife makes its saving throw with disadvantage.", - "type": null, - "parent": "vampire-lord" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 27, - "fields": { - "name": "", - "desc": "You also gain the Vampiric Shapechange feature.\r\n\r\n**Vampiric Shapechange.** You can use an action to transform into the shape of a Medium or smaller beast of CR 3 or less, a mist, or back into your true form. While transformed into a beast, you have the beast’s size and movement modes. You can’t use reactions or speak. Otherwise, you use your statistics. Any items you are carrying transform with you. While transformed into a mist, you have a flying speed of 30 feet, can’t speak, can’t take actions or manipulate objects, are immune to nonmagical damage from weapons, and have advantage on saving throws and Stealth checks. You can pass through a space as narrow as 1 inch without squeezing but can’t pass through water. Any items you are carrying transform with you.", - "type": null, - "parent": "vampire-lord" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 28, - "fields": { - "name": "", - "desc": "Additionally, you gain the undead type in addition to being a humanoid, and you take 20 radiant damage when you end your turn in contact with sunlight.", - "type": null, - "parent": "vampire-lord" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 29, - "fields": { - "name": "", - "desc": "Your Strength or Wisdom score increases by 1, to a maximum of 20.", - "type": null, - "parent": "untamed" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 30, - "fields": { - "name": "", - "desc": "You may enter a rage and assume a wild shape using the same bonus action.", - "type": null, - "parent": "untamed" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 31, - "fields": { - "name": "", - "desc": "While using a wild shape, you can use Furious Critical with attacks made using natural weapons.", - "type": null, - "parent": "untamed" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 32, - "fields": { - "name": "", - "desc": "Any temporary hit points you gain from assuming a wild shape while raging become rage hit points instead.", - "type": null, - "parent": "untamed" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 33, - "fields": { - "name": "", - "desc": "You may cast and concentrate on druid spells with a range of Self or Touch while raging.", - "type": null, - "parent": "untamed" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 34, - "fields": { - "name": "", - "desc": "You cannot be charmed, fatigued, frightened, paralyzed, or stunned.", - "type": null, - "parent": "true-revenant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 35, - "fields": { - "name": "", - "desc": "You have advantage on saving throws against spells and other magical effects.", - "type": null, - "parent": "true-revenant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 36, - "fields": { - "name": "", - "desc": "You regain all of your hit points after you do not take any damage for 1 minute.", - "type": null, - "parent": "true-revenant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 37, - "fields": { - "name": "", - "desc": "In addition, you also gain the Fearsome Pursuit and Burning Hatred features. \r\n**Fearsome Pursuit.** You can spend 1 minute focusing on a creature that is part of your vendetta. If the creature is dead or on another plane of existence, you learn that. Otherwise, after focusing, you know the distance and direction to that creature, and so long as you’re moving in pursuit of that creature, you and anyone traveling with you ignore difficult terrain. This effect ends if you take damage or end your turn without moving for any reason.\r\n**Burning Hatred.** You can use an action to target the focus of your Fearsome Pursuit if it is within 30 feet. The creature makes a Wisdom saving throw (DC 8 + your proficiency bonus + your highest mental ability score modifier). On a failure, it takes psychic damage equal to 1d6 × your proficiency bonus and is stunned until the end of its next turn. On a success, it takes half damage and is rattled until the end of its\r\nnext turn. Once you have used this feature a number of times equal to your proficiency bonus, you can’t use it again until you finish a long rest.", - "type": null, - "parent": "true-revenant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 38, - "fields": { - "name": "", - "desc": "Your Charisma score increases by 1, to a maximum of 20.", - "type": null, - "parent": "thespian" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 39, - "fields": { - "name": "", - "desc": "You have advantage on Deception and Performance checks made when attempting to mimic another creature’s looks, mannerisms, or speech.", - "type": null, - "parent": "thespian" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 40, - "fields": { - "name": "", - "desc": "You have a natural talent for perfectly mimicking the sounds of other creatures you’ve heard make sound for at least 1 minute. A suspicious listener can see through your perfect mimicry by succeeding on a Wisdom (Insight) check opposed by your Charisma (Deception) check.", - "type": null, - "parent": "thespian" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 41, - "fields": { - "name": "", - "desc": "Choose one ability score. The chosen ability score increases by 1, to a maximum of 20, and you gain proficiency in saving throws using it.", - "type": null, - "parent": "tenacious" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 42, - "fields": { - "name": "", - "desc": "When using the Help action to aid an ally in attacking a creature, the targeted creature can be up to 30 feet away instead of 5 feet.", - "type": null, - "parent": "tactical-support" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 43, - "fields": { - "name": "", - "desc": "If an ally benefiting from your Help action scores a critical hit on the targeted creature, you can use your reaction to make a single weapon attack against that creature. Your attack scores a critical hit on a roll of 19–20. If you already have a feature that increases the range of your critical hits, your critical hit range\r\nfor that attack is increased by 1 (maximum 17–20).", - "type": null, - "parent": "tactical-support" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 44, - "fields": { - "name": "", - "desc": "When a creature is damaged by an attack that was aided by the use of your Help action, you don’t provoke opportunity attacks from that creature until the end of your next turn.", - "type": null, - "parent": "tactical-support" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 45, - "fields": { - "name": "", - "desc": "Your Speed increases by 5 feet.", - "type": null, - "parent": "swift-combatant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 46, - "fields": { - "name": "", - "desc": "You gain proficiency with the Charge, Rapid Drink, and Swift Stance maneuvers, and do not have to spend exertion to activate them.", - "type": null, - "parent": "swift-combatant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 47, - "fields": { - "name": "", - "desc": "When you are reduced to 0 or fewer hit points, you can use your reaction to move up to your Speed before falling unconscious. Moving in this way doesn’t provoke opportunity attacks.", - "type": null, - "parent": "survivor" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 48, - "fields": { - "name": "", - "desc": "On the first turn that you start with 0 hit points and must make a death saving throw, you make that saving throw with advantage.", - "type": null, - "parent": "survivor" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 49, - "fields": { - "name": "", - "desc": "When you take massive damage that would kill you instantly, you can use your reaction to make a death saving throw. If the saving throw succeeds, you instead fall unconscious and are dying.", - "type": null, - "parent": "survivor" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 50, - "fields": { - "name": "", - "desc": "Medicine checks made to stabilize you have advantage.", - "type": null, - "parent": "survivor" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 51, - "fields": { - "name": "", - "desc": "Once between long rests, when a creature successfully stabilizes you, at the start of your next turn you regain 1 hit point.", - "type": null, - "parent": "survivor" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 52, - "fields": { - "name": "", - "desc": "You gain proficiency with the Dangerous Strikes maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "surgical-combatant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 53, - "fields": { - "name": "", - "desc": "You gain proficiency in Medicine. If you are already proficient, you instead gain an expertise die.", - "type": null, - "parent": "surgical-combatant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 54, - "fields": { - "name": "", - "desc": "You gain an expertise die on Medicine checks made to diagnose the cause of or treat wounds.", - "type": null, - "parent": "surgical-combatant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 55, - "fields": { - "name": "", - "desc": "You can add your martial arts die as a bonus to Acrobatics, Culture, Deception, Engineering, Intimidation, Investigation, Sleight of Hand, Stealth, Perception, Performance, and Persuasion checks.", - "type": null, - "parent": "subtly-skilled" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 56, - "fields": { - "name": "", - "desc": "Your Strength or Constitution score increases by 1, to a maximum of 20.", - "type": null, - "parent": "street-fighter" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 57, - "fields": { - "name": "", - "desc": "You can roll 1d4 in place of your normal damage for unarmed strikes.", - "type": null, - "parent": "street-fighter" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 58, - "fields": { - "name": "", - "desc": "You are proficient with improvised weapons.", - "type": null, - "parent": "street-fighter" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 59, - "fields": { - "name": "", - "desc": "You can use a bonus action to make a Grapple maneuver against a target you hit with an unarmed strike or improvised weapon on your turn.", - "type": null, - "parent": "street-fighter" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 60, - "fields": { - "name": "", - "desc": "You can try to hide from a creature even while you are only lightly obscured from that creature.", - "type": null, - "parent": "stealth-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 61, - "fields": { - "name": "", - "desc": "Your position isn’t revealed when you miss with a ranged weapon attack against a creature you are hidden from.", - "type": null, - "parent": "stealth-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 62, - "fields": { - "name": "", - "desc": "Dim light does not impose disadvantage when you make Perception checks.", - "type": null, - "parent": "stealth-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 63, - "fields": { - "name": "", - "desc": "Your Constitution score increases by 1, to a maximum of 20.", - "type": null, - "parent": "stalwart" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 64, - "fields": { - "name": "", - "desc": "You regain an additional number of hit points equal to double your Constitution modifier (minimum 2) whenever you roll a hit die to regain hit points.", - "type": null, - "parent": "stalwart" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 65, - "fields": { - "name": "", - "desc": "You gain proficiency with the Purge Magic maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "spellbreaker" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 66, - "fields": { - "name": "", - "desc": "When a creature concentrating on a spell is damaged by you, it has disadvantage on its concentration check to maintain the spell it is concentrating on.", - "type": null, - "parent": "spellbreaker" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 67, - "fields": { - "name": "", - "desc": "You have advantage on saving throws made against spells cast within 30 feet of you.", - "type": null, - "parent": "spellbreaker" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 68, - "fields": { - "name": "", - "desc": "Your Speed increases by 10 feet.", - "type": null, - "parent": "skirmisher" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 69, - "fields": { - "name": "", - "desc": "You can Dash through difficult terrain without requiring additional movement.", - "type": null, - "parent": "skirmisher" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 70, - "fields": { - "name": "", - "desc": "Whenever you attack a creature, for the rest of your turn you don’t provoke opportunity attacks from that creature.", - "type": null, - "parent": "skirmisher" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 71, - "fields": { - "name": "", - "desc": "Choose three skills, tools, languages, or any combination of these. You gain proficiency with each of your three choices. If you already have proficiency in a chosen skill, you instead gain a skill specialty with that skill.", - "type": null, - "parent": "skillful" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 72, - "fields": { - "name": "", - "desc": "When you take the Attack action on your turn, as a bonus action you can make a Shove maneuver against a creature within 5 feet of you.", - "type": null, - "parent": "shield-focus" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 73, - "fields": { - "name": "", - "desc": "When you make a Dexterity saving throw against a spell or harmful effect that only targets you, if you aren’t incapacitated you gain a bonus equal to your shield’s Armor Class bonus.", - "type": null, - "parent": "shield-focus" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 74, - "fields": { - "name": "", - "desc": "When you succeed on a Dexterity saving throw against an effect that deals half damage on a success, you can use your reaction to take no damage by protecting yourself with your shield.", - "type": null, - "parent": "shield-focus" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 75, - "fields": { - "name": "", - "desc": "You regain 1 spell point whenever you cast a spell from the shadow school.", - "type": null, - "parent": "shadowmancer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 76, - "fields": { - "name": "", - "desc": "You gain a Stealth skill specialty for hiding while in areas of darkness or dim light, and you have advantage on Dexterity (Stealth) checks made to hide while in areas of darkness or dim light.", - "type": null, - "parent": "shadowmancer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 77, - "fields": { - "name": "", - "desc": "Whenever you use your Shadowdancer ability to teleport, after teleporting you can use your reaction to take the Dodge action.", - "type": null, - "parent": "shadowmancer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 78, - "fields": { - "name": "", - "desc": "You gain darkvision to a range of 60 feet. Unlike other forms of darkvision you can see color in this way as if you were seeing normally. If you already had darkvision or would gain it later from another feature, its range increases by 30 feet.", - "type": null, - "parent": "shadowdancer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 79, - "fields": { - "name": "", - "desc": "You can use a bonus action and spend 1 spell point to teleport up to 30 feet to an unoccupied area of darkness or dim light you can see. You must currently be in an area of darkness or dim light to teleport in this way. You can bring along objects if their weight doesn’t exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn’t carrying gear beyond its carrying capacity and is within 5 feet. You can increase the range of this teleport by 30 additional feet per each additional spell point you spend.", - "type": null, - "parent": "shadowdancer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 80, - "fields": { - "name": "", - "desc": "While you are hidden from a target and are in an area of darkness or dim light, you can apply your Sneak Attack damage to an eldritch blast.", - "type": null, - "parent": "shadow-assassin" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 81, - "fields": { - "name": "", - "desc": "You gain a ritual book containing spells that you can cast as rituals while holding it.", - "type": null, - "parent": "rite-master" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 82, - "fields": { - "name": "", - "desc": "Choose one of the following classes: bard, cleric, druid, herald, sorcerer, warlock, or wizard. When you acquire this feat, you create a ritual book holding two 1st-level spells of your choice from that class’ spell\r\nlist. These spells must have the ritual tag. The class you choose determines your spellcasting ability for these spells: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or\r\nsorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", - "type": null, - "parent": "rite-master" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 83, - "fields": { - "name": "", - "desc": "If you come across a written spell with the ritual tag (like on a spell scroll or in a wizard’s spellbook), you can add it to your ritual book if the spell is on the spell list for the class you chose and its level is no higher than half your level (rounded up). Copying the spell into your ritual book costs 50 gold and 2 hours per level of the spell.", - "type": null, - "parent": "rite-master" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 84, - "fields": { - "name": "", - "desc": "Your destiny changes to Revenge.", - "type": null, - "parent": "revenant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 85, - "fields": { - "name": "", - "desc": "You gain resistance to necrotic and psychic damage.", - "type": null, - "parent": "revenant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 86, - "fields": { - "name": "", - "desc": "You gain darkvision to a range of 60 feet (or if you already have it, its range increases by 30 feet).", - "type": null, - "parent": "revenant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 87, - "fields": { - "name": "", - "desc": "You become immune to poison damage and the poisoned condition.", - "type": null, - "parent": "revenant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 88, - "fields": { - "name": "", - "desc": "If your vendetta has not ended, you regain all of your hit points when you finish a short rest or 1 hour after you are reduced to 0 hit points.", - "type": null, - "parent": "revenant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 89, - "fields": { - "name": "", - "desc": "You gain an expertise die on saving throws made against spells and other magical effects, and on saving throws made to resist being charmed, fatigued, frightened, paralyzed, or stunned.", - "type": null, - "parent": "revenant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 90, - "fields": { - "name": "", - "desc": "You gain an expertise die on ability checks made to find or track a creature that is part of your vendetta.", - "type": null, - "parent": "revenant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 91, - "fields": { - "name": "", - "desc": "If the resonant item requires attunement and you meet the prerequisites to do so, you become attuned to the item. If you don’t meet the prerequisites, both the attunement and resonance with the item fails. \r\n\r\nThis attunement doesn’t count toward the maximum number of items you can be attuned to. Unlike other\r\nattuned items, your attunement to this item doesn’t end from being more than 100 feet away from it for 24 hours.", - "type": null, - "parent": "resonant-bond" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 92, - "fields": { - "name": "", - "desc": "Once per rest, as a bonus action, you can summon a resonant item, which appears instantly in your hand so long as it is located on the same plane of existence. You must have a free hand to use this feature and be able to hold the item.", - "type": null, - "parent": "resonant-bond" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 93, - "fields": { - "name": "", - "desc": "If the resonant item is sentient, you have advantage on Charisma checks and saving throws made when resolving a conflict with the item.", - "type": null, - "parent": "resonant-bond" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 94, - "fields": { - "name": "", - "desc": "If the resonant item is an artifact, you can ignore the effects of one minor detrimental property.", - "type": null, - "parent": "resonant-bond" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 95, - "fields": { - "name": "", - "desc": "You lose resonance with an item if another creature attunes to it or gains resonance with it. You can also voluntarily end the resonance by focusing on the item during a short rest, or during a long rest if the item is not in your possession.", - "type": null, - "parent": "resonant-bond" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 96, - "fields": { - "name": "", - "desc": "When you spend 10 minutes speaking inspirationally, you can choose up to 6 friendly creatures (including yourself) within 30 feet that can hear and understand you. Each creature gains temporary hit points equal to your level + your Charisma modifier. A creature can’t gain temporary hit points from this feat again until it has finished a rest.", - "type": null, - "parent": "rallying-speaker" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 97, - "fields": { - "name": "", - "desc": "**Divine (Radiant).** When you cast a spell that deals radiant damage, you can spend 1 sorcery point and choose one creature you can see within 60 feet. That creature regains a number of hit points equal to 1d8 × the spell’s level.", - "type": null, - "parent": "pure-arcanist" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 98, - "fields": { - "name": "", - "desc": "**Pure Arcanum (Force).** When you cast a spell that deals force damage, you can spend 2 sorcery points and choose one creature you can see. After the spell’s damage is resolved, if the creature was damaged by the spell it makes an Intelligence saving throw or becomes stunned until the end of its next turn.", - "type": null, - "parent": "pure-arcanist" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 99, - "fields": { - "name": "", - "desc": "Whenever the Narrator calls for you to roll for initiative, you may activate a use of your Divine Sense feature to warn yourself and up to a number of creatures equal to your Charisma modifier within 30 feet, granting advantage on the initiative check.", - "type": null, - "parent": "proclaimer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 100, - "fields": { - "name": "", - "desc": "You can use your voice Art Specialty to cast herald spells.", - "type": null, - "parent": "proclaimer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 101, - "fields": { - "name": "", - "desc": "You can spend exertion to cast spells from the divination school that you know at a cost of 1 exertion per spell level.", - "type": null, - "parent": "proclaimer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 102, - "fields": { - "name": "", - "desc": "When you gain this feat, you gain one of the following alignment traits: Chaotic, Evil, Good, or Lawful. Once chosen your alignment trait cannot be changed, but you can gain a second alignment trait that is not opposed.", - "type": null, - "parent": "proclaimer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 103, - "fields": { - "name": "", - "desc": "Upon gaining this feat, choose one of the following damage types: acid, cold, fire, lightning, or thunder.\r\n\r\nWhen you cast a spell that deals damage, your spell’s damage ignores damage resistance to the chosen type.", - "type": null, - "parent": "primordial-caster" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 104, - "fields": { - "name": "", - "desc": "When you cast a spell that deals damage of the chosen type, you deal 1 additional damage for every damage die with a result of 1.", - "type": null, - "parent": "primordial-caster" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 105, - "fields": { - "name": "", - "desc": "This feat can be selected multiple times, choosing a different damage type each time.", - "type": null, - "parent": "primordial-caster" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 106, - "fields": { - "name": "", - "desc": "You gain proficiency with the Cleaving Swing maneuver and do not have to spend exertion to activate it. In addition, you can use Cleaving Swing with a versatile weapon wielded with two hands.", - "type": null, - "parent": "powerful-attacker" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 107, - "fields": { - "name": "", - "desc": "Before you make a melee attack with a two-handed weapon or versatile weapon wielded with two hands, if you are proficient with the weapon and do not have disadvantage you can declare a powerful attack. A\r\npowerful attack has disadvantage, but on a hit deals 10 extra damage.", - "type": null, - "parent": "powerful-attacker" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 108, - "fields": { - "name": "", - "desc": "The range is doubled for any spell you cast that requires a spell attack roll.", - "type": null, - "parent": "power-caster" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 109, - "fields": { - "name": "", - "desc": "You ignore half cover and three-quarters cover when making a ranged spell attack.", - "type": null, - "parent": "power-caster" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 110, - "fields": { - "name": "", - "desc": "Choose one cantrip that requires an attack roll. The cantrip must be from the bard, cleric, druid, herald, sorcerer, warlock, or wizard spell list. You learn this cantrip and your spellcasting ability for it depends\r\non the spell list you chose from: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", - "type": null, - "parent": "power-caster" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 111, - "fields": { - "name": "", - "desc": "When you attack with a glaive, halberd, quarterstaff, or spear and no other weapon using the Attack action, as a bonus action you can make a melee attack with the weapon’s opposite end. This attack uses the same ability modifier as the primary attack, dealing 1d4 bludgeoning damage on a hit.", - "type": null, - "parent": "polearm-savant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 112, - "fields": { - "name": "", - "desc": "While you are wielding a glaive, halberd, pike, quarterstaff, or spear, a creature that enters your reach provokes an opportunity attack from you. A creature can use its reaction to avoid provoking an opportunity attack from you in this way.", - "type": null, - "parent": "polearm-savant" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 113, - "fields": { - "name": "", - "desc": "When you use a healer’s satchel to stabilize a dying creature, it regains a number of\r\nhit points equal to your Wisdom modifier.", - "type": null, - "parent": "physician" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 114, - "fields": { - "name": "", - "desc": "You can spend an action and one use of a healer’s satchel to tend to a creature. The creature regains 1d6 + 4 hit points, plus one hit point for each of its hit dice. The creature can’t regain hit points from this feat again until it finishes a rest.", - "type": null, - "parent": "physician" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 115, - "fields": { - "name": "", - "desc": "Your Dexterity or Wisdom score increases by 1, to a maximum of 20.", - "type": null, - "parent": "nightstalker" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 116, - "fields": { - "name": "", - "desc": "You can deal Sneak Attack damage when making attacks using unarmed strikes or adept weapons.", - "type": null, - "parent": "nightstalker" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 117, - "fields": { - "name": "", - "desc": "You gain a bonus equal to your Wisdom modifier on Acrobatics, Deception, and Stealth checks.", - "type": null, - "parent": "nightstalker" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 118, - "fields": { - "name": "", - "desc": "In addition, you gain the following special focus feature:\r\n**Twilight Vanish.** On your turn you can use a reaction and spend 2 exertion to move up to 30 feet with such incredible speed that you seem to disappear: after moving this way you may immediately take the Hide action.", - "type": null, - "parent": "nightstalker" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 119, - "fields": { - "name": "", - "desc": "You can spend exertion to cast any spells from the air, earth, fear, fire, movement, obscurement, plants, poison, senses, shadow, transformation, unarmed, or water schools at the cost of 2 exertion per spell level. You use your focus save DC for spells cast this way, and your spell attack modifier is equal to your proficiency bonus + your Wisdom modifier.", - "type": null, - "parent": "night-master" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 120, - "fields": { - "name": "", - "desc": "You gain resistance to necrotic damage (or if you already have it, immunity to necrotic damage) and darkvision to a range of 30 feet (or if you already have it, the range of your darkvision increases by 30 feet).", - "type": null, - "parent": "newblood" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 121, - "fields": { - "name": "", - "desc": "You also gain a bite natural weapon and the Charming Gaze feature.\r\n\r\n**Bite.** You gain a bite natural weapon you are proficient with. You are only able to bite grappled, incapacitated, restrained, or willing creatures. You can use Dexterity instead of Strength for the attack rolls of your bite. On a hit your bite deals piercing damage equal to 1d6 plus your Strength modifier or Dexterity modifier (whichever is highest). In addition, once per turn you can choose for your bite to also deal 1d6\r\nnecrotic damage × your proficiency bonus. You regain hit points equal to the amount of necrotic damage dealt to your target. This necrotic damage can only be increased by a critical hit.\r\n**Charming Gaze.** Once between long rests, you magically target a creature within 30 feet, forcing it to make a Wisdom saving throw (DC 8 + your proficiency bonus + your Charisma modifier). On a failure, the target is charmed by you for a number of hours equal to your proficiency bonus. While charmed it regards you as a trusted friend and is a willing target for your bite. The target repeats the saving throw each time it takes damage, ending the effect on itself on a success. If the target’s saving throw is successful or the effect ends for it, it is immune to your charm for 24 hours.", - "type": null, - "parent": "newblood" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 122, - "fields": { - "name": "", - "desc": "Additionally, you have disadvantage on attack rolls and on Perception checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight. In addition, you cannot use your Charming Gaze while you are in direct sunlight.", - "type": null, - "parent": "newblood" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 123, - "fields": { - "name": "", - "desc": "Your Speed increases by 5 feet.", - "type": null, - "parent": "natural-warrior" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 124, - "fields": { - "name": "", - "desc": "When making an Acrobatics or Athletics check during combat, you can choose to use your Strength or Dexterity modifier for either skill.", - "type": null, - "parent": "natural-warrior" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 125, - "fields": { - "name": "", - "desc": "You gain proficiency with the Bounding Strike maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "natural-warrior" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 126, - "fields": { - "name": "", - "desc": "You can roll 1d4 in place of your normal damage for unarmed strikes. When rolling damage for your unarmed strikes, you can choose to deal bludgeoning, piercing, or slashing damage.", - "type": null, - "parent": "natural-warrior" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 127, - "fields": { - "name": "", - "desc": "You learn two cantrips of your choice from the class’s spell list.", - "type": null, - "parent": "mystical-talent" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 128, - "fields": { - "name": "", - "desc": "Choose a 1st-level spell to learn from that spell list. Once between long rests, you can cast this spell without expending a spell slot. You can also cast this spell using a spell slot of the appropriate level (or the appropriate number of spell points if you have warlock levels).\r\n\r\nYour spellcasting ability for these spells is Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", - "type": null, - "parent": "mystical-talent" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 129, - "fields": { - "name": "", - "desc": "Your Wisdom or Charisma score increases by 1, to a maximum of 20.", - "type": null, - "parent": "mystic-arcanist" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 130, - "fields": { - "name": "", - "desc": "When you cast a spell that restores hit points, you restore an additional number of hit points equal to your Charisma modifier.", - "type": null, - "parent": "mystic-arcanist" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 131, - "fields": { - "name": "", - "desc": "You can spend sorcery points to temporarily gain a spell from the cleric or sorcerer spell lists. Gaining a spell in this way costs a number of sorcery points equal to the spell’s level. You cannot gain a spell that has a level higher than your highest level spell slot. When you gain a cleric spell in this way, it is considered prepared for the day. When you gain a sorcerer spell in this way, it is considered a spell you know for the day. You lose all spells gained in this way whenever you finish a long rest.", - "type": null, - "parent": "mystic-arcanist" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 132, - "fields": { - "name": "", - "desc": "You gain proficiency with the Lancer Strike maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "mounted-warrior" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 133, - "fields": { - "name": "", - "desc": "When your mount is targeted by an attack, you can instead make yourself the attack’s target.", - "type": null, - "parent": "mounted-warrior" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 134, - "fields": { - "name": "", - "desc": "When your mount makes a Dexterity saving throw against an effect that deals half damage on a success, it takes no damage on a success and half damage on a failure.", - "type": null, - "parent": "mounted-warrior" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 135, - "fields": { - "name": "", - "desc": "You gain an expertise die on checks made to learn legends and lore about a creature you can see.", - "type": null, - "parent": "monster-hunter" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 136, - "fields": { - "name": "", - "desc": "You learn the altered strike cantrip.", - "type": null, - "parent": "monster-hunter" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 137, - "fields": { - "name": "", - "desc": "You gain proficiency with the Douse maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "monster-hunter" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 138, - "fields": { - "name": "", - "desc": "You gain the tracking skill specialty in Survival.", - "type": null, - "parent": "monster-hunter" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 139, - "fields": { - "name": "", - "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", - "type": null, - "parent": "moderately-outfitted" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 140, - "fields": { - "name": "", - "desc": "You gain proficiency with medium armor and shields.", - "type": null, - "parent": "moderately-outfitted" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 141, - "fields": { - "name": "", - "desc": "Medium armor doesn’t impose disadvantage on your Dexterity (Stealth) checks.", - "type": null, - "parent": "medium-armor-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 142, - "fields": { - "name": "", - "desc": "When you are wearing medium armor, the maximum Dexterity modifier you can add to your Armor Class increases to 3.", - "type": null, - "parent": "medium-armor-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 143, - "fields": { - "name": "", - "desc": "You gain proficiency in a combat tradition of your choice.", - "type": null, - "parent": "martial-scholar" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 144, - "fields": { - "name": "", - "desc": "You learn two combat maneuvers from a combat tradition you know. If you don’t already know any combat maneuvers, both must be 1st degree. Combat maneuvers gained from this feat do not count toward the maximum number of combat maneuvers you know.", - "type": null, - "parent": "martial-scholar" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 145, - "fields": { - "name": "", - "desc": "Your exertion pool increases by 3. If you do not have an exertion pool, you gain an exertion pool with 3 exertion, regaining your exertion whenever you finish a rest.", - "type": null, - "parent": "martial-scholar" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 146, - "fields": { - "name": "", - "desc": "Whenever you enter a rage you may choose up to a number of creatures equal to your Wisdom modifier within 60 feet that are beasts, fey, or plants. These chosen creatures gain the following benefits for as long as you rage, but are unable to take the Fall Back reaction:\r\n* Advantage on Strength checks and Strength saving throws.\r\n* Resistance to bludgeoning, piercing, and slashing damage.\r\n* Temporary hit points equal to your level.\r\n* A bonus to damage rolls equal to your proficiency bonus.", - "type": null, - "parent": "living-stampede" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 147, - "fields": { - "name": "", - "desc": "Your Intelligence score increases by 1, to a maximum of 20.", - "type": null, - "parent": "linguistics-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 148, - "fields": { - "name": "", - "desc": "You learn three languages of your choice.", - "type": null, - "parent": "linguistics-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 149, - "fields": { - "name": "", - "desc": "You can invent ciphers and are able to teach a cipher you create to others. Anyone who knows the cipher can encode and read hidden messages made with it; the apparent text must be at least four times longer than the hidden message. A creature can detect the cipher’s presence if it spends a minute examining it and succeeds on an Investigation check against a DC of 8+ your proficiency bonus + your Intelligence modifier. If the check succeeds by 5 or more, they can read the hidden message.", - "type": null, - "parent": "linguistics-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 150, - "fields": { - "name": "", - "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", - "type": null, - "parent": "lightly-outfitted" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 151, - "fields": { - "name": "", - "desc": "You gain proficiency with light armor.", - "type": null, - "parent": "lightly-outfitted" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 152, - "fields": { - "name": "", - "desc": "Your Intelligence score increases by 1, to a maximum of 20.", - "type": null, - "parent": "keen-intellect" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 153, - "fields": { - "name": "", - "desc": "You can recall anything you’ve seen or heard within a number of weeks equal to your Intelligence modifier.", - "type": null, - "parent": "keen-intellect" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 154, - "fields": { - "name": "", - "desc": "You know how long it will be before the next sunset or sunrise.", - "type": null, - "parent": "keen-intellect" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 155, - "fields": { - "name": "", - "desc": "You know which way is north.", - "type": null, - "parent": "keen-intellect" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 156, - "fields": { - "name": "", - "desc": "Your Intelligence or Wisdom score increases by 1, to a maximum of 20.", - "type": null, - "parent": "intuitive" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 157, - "fields": { - "name": "", - "desc": "Your passive Perception and passive Investigation scores increase by 5.", - "type": null, - "parent": "intuitive" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 158, - "fields": { - "name": "", - "desc": "If you can see a creature’s mouth while it is speaking a language you know, you can read its lips.", - "type": null, - "parent": "intuitive" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 159, - "fields": { - "name": "", - "desc": "Any stronghold you have or buy that is of frugal quality is automatically upgraded to average quality at no additional cost.", - "type": null, - "parent": "idealistic-leader" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 160, - "fields": { - "name": "", - "desc": "You gain a new follower for every 50 staff you have in your stronghold, rather than every 100 staff.", - "type": null, - "parent": "idealistic-leader" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 161, - "fields": { - "name": "", - "desc": "When you fulfill your destiny, choose a number of followers equal to your proficiency bonus. Each is upgraded to their most expensive version.", - "type": null, - "parent": "idealistic-leader" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 162, - "fields": { - "name": "", - "desc": "You gain proficiency in your choice of one martial weapon, one rare weapon, or shields.", - "type": null, - "parent": "heraldic-training" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 163, - "fields": { - "name": "", - "desc": "You gain two divine lessons of your choice from the herald class.", - "type": null, - "parent": "heraldic-training" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 164, - "fields": { - "name": "", - "desc": "Your Strength score increases by 1, to a maximum of 20.", - "type": null, - "parent": "heavy-armor-expertise" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 165, - "fields": { - "name": "", - "desc": "While wearing heavy armor, you reduce all bludgeoning, piercing, and slashing damage from nonmagical weapons by 3.", - "type": null, - "parent": "heavy-armor-expertise" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 166, - "fields": { - "name": "", - "desc": "Your Strength score increases by 1, to a maximum of 20.", - "type": null, - "parent": "heavily-outfitted" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 167, - "fields": { - "name": "", - "desc": "You gain proficiency with heavy armor.", - "type": null, - "parent": "heavily-outfitted" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 168, - "fields": { - "name": "", - "desc": "When you take this feat, you gain a number of hit points equal to twice your level.", - "type": null, - "parent": "hardy-adventurer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 169, - "fields": { - "name": "", - "desc": "Whenever you gain a new level, you gain an additional 2 hit points to your hit point maximum.", - "type": null, - "parent": "hardy-adventurer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 170, - "fields": { - "name": "", - "desc": "During a short rest, you regain 1 additional hit point per hit die spent to heal.", - "type": null, - "parent": "hardy-adventurer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 171, - "fields": { - "name": "", - "desc": "You learn the Preach Despair and Preach Hope battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Preach Despair.** A hostile creature within 60 feet of you suffers a level of strife. Creatures with an opposite alignment from yours or that worship a greater entity that has an opposite alignment suffer two levels of strife instead. A creature cannot suffer more than two levels of strife from Preach Despair in the same 24 hours.\r\n**Preach Hope.** Creatures of your choice within 60 feet of you gain advantage on saving throws. When the battle hymn ends, allies within 30 feet of you remove one level of strife. An ally that shares your alignment or worships a greater entity removes two levels of strife instead.", - "type": null, - "parent": "harbinger-of-things-to-come" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 172, - "fields": { - "name": "", - "desc": "A creature that takes the Disengage action still provokes opportunity attacks from you.", - "type": null, - "parent": "guarded-warrior" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 173, - "fields": { - "name": "", - "desc": "You gain proficiency with the Warning Strike maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "guarded-warrior" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 174, - "fields": { - "name": "", - "desc": "You can use your reaction to make a melee weapon attack against a creature within 5 feet that makes an attack against a target other than you if the target does not also have this feat.", - "type": null, - "parent": "guarded-warrior" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 177, - "fields": { - "name": "", - "desc": "You gain 3 fate points.", - "type": null, - "parent": "fortunate" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 178, - "fields": { - "name": "", - "desc": "Whenever you make an attack roll, ability check, or saving throw and do not have disadvantage, you can spend a fate point to roll an additional d20 and choose whichever result you wish. \r\nYou may do this after the initial roll has occurred, but before the outcome is known. If you have disadvantage, you may instead spend a fate point to choose one of the d20 rolls and reroll it.", - "type": null, - "parent": "fortunate" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 179, - "fields": { - "name": "", - "desc": "Alternatively, when you are attacked, you can choose to spend a fate point to force the attacking creature to reroll the attack. The creature resolves the attack with the result you choose.", - "type": null, - "parent": "fortunate" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 180, - "fields": { - "name": "", - "desc": "You regain all expended fate points when you finish a long rest.", - "type": null, - "parent": "fortunate" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 181, - "fields": { - "name": "", - "desc": "You gain proficiency with the Victory Pose maneuver and do not have to spend exertion to activate it. In addition, you may use this maneuver with up to three different weapons you select instead of just one, and\r\naffect allies within 60 feet.", - "type": null, - "parent": "fear-breaker" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 182, - "fields": { - "name": "", - "desc": "An ally affected by your Victory Pose gains an expertise die on their next saving throw against fear, and if they are rattled the condition ends for them.", - "type": null, - "parent": "fear-breaker" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 183, - "fields": { - "name": "", - "desc": "You gain proficiency with all types of artisan’s tools and miscellaneous tools. If you already have proficiency with any of these tools, you instead gain an expertise die with those tools.", - "type": null, - "parent": "equipped-for-justice" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 184, - "fields": { - "name": "", - "desc": "You gain proficiency with Engineering and a 1d8 expertise die on Engineering checks. In addition, you build a nonmagical grappling gun that only functions in your hands. Replacing your grappling gun requires 3 days of crafting and 500 gp.", - "type": null, - "parent": "equipped-for-justice" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 185, - "fields": { - "name": "", - "desc": "You may add your Wisdom modifier to the DC of any saving throws used for miscellaneous adventuring gear items and to attack rolls made using miscellaneous adventuring gear items.", - "type": null, - "parent": "equipped-for-justice" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 186, - "fields": { - "name": "", - "desc": "Your Wisdom or Charisma score increases by 1.", - "type": null, - "parent": "empathic" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 187, - "fields": { - "name": "", - "desc": "You gain an expertise die on Insight checks made against other creatures.", - "type": null, - "parent": "empathic" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 188, - "fields": { - "name": "", - "desc": "When using a social skill and making a Charisma check another creature, you score a critical success on a roll of 19–20.", - "type": null, - "parent": "empathic" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 189, - "fields": { - "name": "", - "desc": "Whenever you cast a spell with a Cone area, you may additionally make ranged weapon attacks with a ranged weapon you are wielding against targets within that conical area. You may make up to a number of attacks equal to the level of the spell cast, each against a different target. Ranged attacks made in this way ignore the loading quality of weapons and use your conjured magical ammunition.", - "type": null, - "parent": "eldritch-volley-master" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 190, - "fields": { - "name": "", - "desc": "Whenever you make a ranged weapon attack you can choose to conjure magical ammunition and select one of the following damage types: acid, cold, fire, or lightning. Your ranged weapon attacks using this conjured ammunition deal the chosen damage type instead of whatever damage type they would normally deal, and are considered magical for the purpose of overcoming resistance and immunity. Ammunition conjured in this way disappears at the end of the turn it was fired.", - "type": null, - "parent": "eldritch-archer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 191, - "fields": { - "name": "", - "desc": "When you hit a target with a ranged weapon attack, you can use your reaction and choose a spell of 1st-level or higher, casting it through your ammunition. The spell must have a casting time of 1 action, and target a single creature or have a range of Touch. If a spell cast in this way requires an attack roll and targets the same target as the triggering ranged weapon attack, it also hits as part of that attack. You may\r\nchoose not to deal damage with a ranged weapon attack used to cast a spell.", - "type": null, - "parent": "eldritch-archer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 192, - "fields": { - "name": "", - "desc": "You have advantage on Investigation and Perception checks made to detect secret doors.", - "type": null, - "parent": "dungeoneer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 193, - "fields": { - "name": "", - "desc": "You have advantage on saving throws made against traps.", - "type": null, - "parent": "dungeoneer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 194, - "fields": { - "name": "", - "desc": "You have resistance to damage dealt by traps.", - "type": null, - "parent": "dungeoneer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 195, - "fields": { - "name": "", - "desc": "You don’t take a −5 penalty on your passive Perception score from traveling at a fast pace.", - "type": null, - "parent": "dungeoneer" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 196, - "fields": { - "name": "", - "desc": "While wielding a separate melee weapon in each hand, you gain a +1 bonus to Armor Class.", - "type": null, - "parent": "dual-wielding-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 197, - "fields": { - "name": "", - "desc": "You can use two-weapon fighting with any two one-handed melee weapons so long as neither has the heavy property.", - "type": null, - "parent": "dual-wielding-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 198, - "fields": { - "name": "", - "desc": "When you would normally draw or sheathe a one-handed weapon, you can instead draw or sheathe two one-handed weapons.", - "type": null, - "parent": "dual-wielding-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 199, - "fields": { - "name": "", - "desc": "You learn the Divine Inspiration and Persuasive Speech battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Divine Inspiration.** When an ally within 15 feet hits a creature with a melee weapon attack, your ally can deliver a Divine Smite just as if you had delivered it yourself using your Divine Smite feature expending one of your uses). If you are able to empower your smites, you may choose to empower it as normal.\r\n**Persuasive Speech.** Hostile creatures within 60 feet take a –1d4 penalty on attack rolls. You can sustain this battle hymn for up to 3 rounds without expending additional uses of Bardic Inspiration. When a hostile creature begins its third consecutive turn within range of this battle hymn it becomes charmed by you and will not attack you or your allies. If this causes combat to end early, the creatures remain charmed\r\nby you for up to 1 minute afterward or until one of them is damaged by you or an ally. For the next 24 hours after the battle hymn ends, you gain an expertise die on Charisma checks made against creatures that were charmed in this way. A creature that either shares your alignment or worships a deity that has\r\nyour alignment becomes charmed on its second consecutive turn instead. Creatures that have an opposite alignment or worship a greater entity that has an opposite alignment cannot be charmed in this way.", - "type": null, - "parent": "divine-orator" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 200, - "fields": { - "name": "", - "desc": "An ability score of your choice increases by 1.", - "type": null, - "parent": "destinys-call" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 201, - "fields": { - "name": "", - "desc": "When you gain inspiration through your destiny’s source of inspiration, you can choose one party member within 30 feet of you. That party member gains inspiration if they don’t have it already. Once you inspire a party member in this way, you can’t use this feature again on that party member until you finish a long rest.", - "type": null, - "parent": "destinys-call" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 202, - "fields": { - "name": "", - "desc": "When you are wielding a finesse weapon with which you are proficient and would be hit by a melee attack, you can use your reaction to add your proficiency bonus to your Armor Class against that attack.", - "type": null, - "parent": "deflector" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 203, - "fields": { - "name": "", - "desc": "You gain proficiency with the Farshot Stance and Ricochet maneuvers, and do not have to spend exertion to activate them.", - "type": null, - "parent": "deadeye" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 204, - "fields": { - "name": "", - "desc": "Before you make an attack with a ranged weapon you are proficient with, you can choose to take a penalty on the attack roll equal to your proficiency bonus. If the attack hits, you deal extra damage equal to double your proficiency bonus. This extra damage does not double on a critical hit.", - "type": null, - "parent": "deadeye" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 205, - "fields": { - "name": "", - "desc": "You ignore half cover and three-quarters cover when making a ranged weapon attack.", - "type": null, - "parent": "deadeye" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 206, - "fields": { - "name": "", - "desc": "If proficient with a crossbow, you ignore its loading property.", - "type": null, - "parent": "crossbow-expertise" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 207, - "fields": { - "name": "", - "desc": "You do not have disadvantage on ranged attack rolls from being within 5 feet of a hostile creature.", - "type": null, - "parent": "crossbow-expertise" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 208, - "fields": { - "name": "", - "desc": "When you attack with a one-handed weapon using the Attack action, you can use a bonus action to \r\nattack with a hand crossbow wielded in your off-hand.", - "type": null, - "parent": "crossbow-expertise" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 209, - "fields": { - "name": "", - "desc": "Choose one of the following types of crafted item: armor, engineered items, potions, rings and rods, staves and wands, weapons, wondrous items.\r\n\r\nThis feat can be selected multiple times, choosing a different type of crafted item each time.", - "type": null, - "parent": "crafting-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 210, - "fields": { - "name": "", - "desc": "You gain advantage on checks made to craft, maintain, and repair that type of item.", - "type": null, - "parent": "crafting-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 211, - "fields": { - "name": "", - "desc": "You gain an expertise die on checks made to craft, maintain, and repair items.", - "type": null, - "parent": "crafting-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 212, - "fields": { - "name": "", - "desc": "You gain proficiency with two tools of your choice.", - "type": null, - "parent": "crafting-expert" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 213, - "fields": { - "name": "", - "desc": "You gain proficiency with thieves' tools, the poisoner's kit, or a rare weapon with the stealthy property.", - "type": null, - "parent": "covert-training" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 214, - "fields": { - "name": "", - "desc": "You gain two skill tricks of your choice from the rogue class.", - "type": null, - "parent": "covert-training" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 215, - "fields": { - "name": "", - "desc": "You gain proficiency with the Deceptive Stance and Painful Pickpocket maneuvers, and do not have to spend exertion to activate them.", - "type": null, - "parent": "combat-thievery" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 216, - "fields": { - "name": "", - "desc": "You gain an expertise die on Sleight of Hand checks.", - "type": null, - "parent": "combat-thievery" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 217, - "fields": { - "name": "", - "desc": "After dashing (with the Dash Action) at least ten feet towards a foe, you may perform a bonus action to select one of the following options.\r\n**Attack.** Make one melee weapon attack, dealing an extra 5 damage on a hit. \r\n**Shove.** Use the Shove maneuver, pushing the target 10 feet directly away on a success.", - "type": null, - "parent": "bull-rush" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 218, - "fields": { - "name": "", - "desc": "After making a melee attack, you may reroll any weapon damage and choose the better result. This feat can be used no more than once per turn.", - "type": null, - "parent": "brutal-attack" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 219, - "fields": { - "name": "", - "desc": "You gain a 1d6 expertise die on concentration checks to maintain spells you have cast.", - "type": null, - "parent": "battle-caster" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 220, - "fields": { - "name": "", - "desc": "While wielding weapons and shields, you may cast spells with a seen component.", - "type": null, - "parent": "battle-caster" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 221, - "fields": { - "name": "", - "desc": "Instead of making an opportunity attack with a weapon, you may use your reaction to cast a spell with a casting time of 1 action. The spell must be one that only targets that creature.", - "type": null, - "parent": "battle-caster" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 222, - "fields": { - "name": "", - "desc": "When rolling initiative you gain a +5 bonus.", - "type": null, - "parent": "attentive" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 223, - "fields": { - "name": "", - "desc": "You can only be surprised if you are unconscious. A creature attacking you does not gain advantage from being hidden from you or unseen by you.", - "type": null, - "parent": "attentive" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 224, - "fields": { - "name": "", - "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", - "type": null, - "parent": "athletic" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 225, - "fields": { - "name": "", - "desc": "When you are prone, standing up uses only 5 feet of your movement (instead of half).", - "type": null, - "parent": "athletic" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 226, - "fields": { - "name": "", - "desc": "Your speed is not halved from climbing.", - "type": null, - "parent": "athletic" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 227, - "fields": { - "name": "", - "desc": "You can make a running long jump or a running high jump after moving 5 feet on foot (instead of 10 feet).", - "type": null, - "parent": "athletic" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 228, - "fields": { - "name": "", - "desc": "Whenever you make a ranged weapon attack, you can choose to expend a 1st-level or higher spell slot to enhance the attack to be empowered or unerring. You cannot enhance more than one attack in a\r\nturn in this way. \r\n**Empowered.** The shot deals an additional 2d6 force damage, and an additional 1d6 force damage for each spell slot level above 1st. \r\n**Unerring.** The shot gains a +2 bonus to the attack roll, and an additional +2 bonus for each spell slot level above 1st.", - "type": null, - "parent": "arrow-enchanter" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 229, - "fields": { - "name": "", - "desc": "Whenever you cast a spell that deals damage, you may choose the type of damage that spell deals and the appearance of the spell’s effects.", - "type": null, - "parent": "arcanum-master" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 230, - "fields": { - "name": "", - "desc": "You gain an expertise die on ability checks made to drive or pilot a vehicle.", - "type": null, - "parent": "ace-driver" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 231, - "fields": { - "name": "", - "desc": "While piloting a vehicle, you can use your reaction to take the Brake or Maneuver vehicle actions.", - "type": null, - "parent": "ace-driver" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 232, - "fields": { - "name": "", - "desc": "A vehicle you load can carry 25% more cargo than normal.", - "type": null, - "parent": "ace-driver" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 233, - "fields": { - "name": "", - "desc": "Vehicles you are piloting only suffer a malfunction when reduced to 25% of their hit points, not 50%. In addition, when the vehicle does suffer a malfunction, you roll twice on the maneuver table and choose which die to use for the result.", - "type": null, - "parent": "ace-driver" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 234, - "fields": { - "name": "", - "desc": "Vehicles you are piloting gain a bonus to their Armor Class equal to half your proficiency bonus.", - "type": null, - "parent": "ace-driver" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 235, - "fields": { - "name": "", - "desc": "When you Brake, you can choose to immediately stop the vehicle without traveling half of its movement speed directly forward.", - "type": null, - "parent": "ace-driver" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 236, - "fields": { - "name": "", - "desc": "You gain advantage on attack rolls against a creature you are grappling.", - "type": null, - "parent": "a5e-grappler" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 237, - "fields": { - "name": "", - "desc": "You can use your action to try to pin a creature you are grappling. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", - "type": null, - "parent": "a5e-grappler" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 238, - "fields": { - "name": "", - "desc": "Creatures with a CR lower than your alter ego’s Prestige rating are frightened of you while you are in your alter ego.", - "type": null, - "parent": "a-symbol-that-strikes-fear" - } -}, -{ - "model": "api_v2.featbenefit", - "pk": 239, - "fields": { - "name": "", - "desc": "In addition, you become particularly adept at subduing your enemies rather than outright killing them. Whenever you begin a turn grappling a creature, you can attempt to non-lethally subdue it. The grappled creature makes a Constitution saving throw against your maneuver DC. On a failed saving throw, a creature is knocked unconscious for the next hour. A creature with more than 25% of its maximum hit points automatically succeeds on this saving throw.", - "type": null, - "parent": "a-symbol-that-strikes-fear" - } -} -] + { + "model": "api_v2.featbenefit", + "pk": 1, + "fields": { + "name": "", + "desc": "You gain proficiency with the herbalism kit, navigator’s kit, a simple ranged weapon, or a martial ranged weapon.", + "type": null, + "parent": "a5e-ag_woodcraft-training" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 2, + "fields": { + "name": "", + "desc": "You gain two exploration knacks of your choice from the ranger class.", + "type": null, + "parent": "a5e-ag_woodcraft-training" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 3, + "fields": { + "name": "", + "desc": "While raging, you and any creatures benefiting from your Living Stampede emit 5-foot auras of fury.", + "type": null, + "parent": "a5e-ag_wild-rioter" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 4, + "fields": { + "name": "", + "desc": "When a creature other than you or your allies enters a fury aura or starts its turn there it makes a Wisdom saving throw against your druid spell save DC. On a failed save, a creature becomes confused, except instead of rolling to determine their actions as normal for the confused condition, they are always considered to have rolled the 7 or 8 result. At the end of each of a confused creature’s turns it repeats the saving throw, ending the effect on itself on a success. Once a creature successfully saves against this effect, it is immune to it for the remainder of your rage.", + "type": null, + "parent": "a5e-ag_wild-rioter" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 5, + "fields": { + "name": "", + "desc": "You are treated as royalty (or as closely as possible) by most commoners and traders, and as an equal when meeting other authority figures (who make time in their schedule to see you when requested to do so).", + "type": null, + "parent": "a5e-ag_well-heeled" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 6, + "fields": { + "name": "", + "desc": "You have passive investments and income that allow you to maintain a high quality of living. You have a rich lifestyle and do not need to pay for it.", + "type": null, + "parent": "a5e-ag_well-heeled" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 7, + "fields": { + "name": "", + "desc": "You gain a second Prestige Center. This must be an area where you have spent at least a week of time.", + "type": null, + "parent": "a5e-ag_well-heeled" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 8, + "fields": { + "name": "", + "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_weapons-specialist" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 9, + "fields": { + "name": "", + "desc": "You gain proficiency with four weapons of your choice. Three of these must be a simple or a martial weapon. The fourth choice can be a simple, martial, or rare weapon.", + "type": null, + "parent": "a5e-ag_weapons-specialist" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 10, + "fields": { + "name": "", + "desc": "Your Wisdom or Dexterity score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_vigilante" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 11, + "fields": { + "name": "", + "desc": "You have an alter ego, an identity associated with a costume or disguise. This alter ego can be as complicated as a full outfit with a history or legends surrounding it or a simple mask or cowl. You can assume or remove this alter ego as an action and it can be worn with all types of armor.", + "type": null, + "parent": "a5e-ag_vigilante" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 12, + "fields": { + "name": "", + "desc": "You gain a 1d8 expertise die and advantage on Deception checks made regarding your alter ego, Persuasion checks made to dissuade others from connecting you to your alter ego, and on disguise kit checks.", + "type": null, + "parent": "a5e-ag_vigilante" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 13, + "fields": { + "name": "", + "desc": "Your alter ego has its own Prestige rating that may increase or decrease as you perform deeds while in your alter ego. In addition, while in your alter ego you gain a 1d8 expertise die on Prestige checks.", + "type": null, + "parent": "a5e-ag_vigilante" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 14, + "fields": { + "name": "", + "desc": "While in your alter ego, you may make a Prestige check and use that result in place of any Intimidation or Persuasion check you would otherwise make.", + "type": null, + "parent": "a5e-ag_vigilante" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 15, + "fields": { + "name": "", + "desc": "You gain proficiency with shields as weapons.", + "type": null, + "parent": "a5e-ag_vengeful-protector" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 16, + "fields": { + "name": "", + "desc": "You gain proficiency with the Double Team maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_vengeful-protector" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 17, + "fields": { + "name": "", + "desc": "When a creature reduces a party member (not including animal companions, familiars, or followers) to 0 hit points, you gain an expertise die on attacks made against it until the end of combat.", + "type": null, + "parent": "a5e-ag_vengeful-protector" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 18, + "fields": { + "name": "", + "desc": "You gain an expertise die on attack rolls and initiative checks made against creatures that are part of your\r\nvendetta, and when making a saving throw to resist an attack, feature, maneuver, spell, or trait from a creature that is part of your vendetta. Whether or not a creature is part of your vendetta is at the Narrator’s discretion.", + "type": null, + "parent": "a5e-ag_vendetta" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 19, + "fields": { + "name": "", + "desc": "Your bite damage increases to 1d8, a creature affected by your Charming Gaze remains charmed for a number of hours equal to your level, and you regain the use of Charming Gaze when you finish any\r\nrest.", + "type": null, + "parent": "a5e-ag_vampire-spawn" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 20, + "fields": { + "name": "", + "desc": "You also gain the Spider Climb and Vampiric Regeneration features.\r\n**Spider Climb.** You gain a climb speed equal to your Speed, and you can climb even on difficult surfaces and upside down on ceilings.\r\n**Vampiric Regeneration.** Whenever you start your turn with at least 1 hit point and you haven’t taken radiant damage or entered direct sunlight since the end of your last turn, you gain a number of temporary hit points equal to twice your proficiency bonus. When you end your turn in contact with running water, you take 20 radiant damage.", + "type": null, + "parent": "a5e-ag_vampire-spawn" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 21, + "fields": { + "name": "", + "desc": "Your Speed increases by 10 feet.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 22, + "fields": { + "name": "", + "desc": "You gain an expertise die on Stealth checks.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 23, + "fields": { + "name": "", + "desc": "The range of your darkvision increases to 120 feet.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 24, + "fields": { + "name": "", + "desc": "Your bite damage increases to 1d10.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 25, + "fields": { + "name": "", + "desc": "You can use Charming Gaze twice between rests.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 26, + "fields": { + "name": "", + "desc": "When using Charming Gaze, a target with at least one level of strife makes its saving throw with disadvantage.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 27, + "fields": { + "name": "", + "desc": "You also gain the Vampiric Shapechange feature.\r\n\r\n**Vampiric Shapechange.** You can use an action to transform into the shape of a Medium or smaller beast of CR 3 or less, a mist, or back into your true form. While transformed into a beast, you have the beast’s size and movement modes. You can’t use reactions or speak. Otherwise, you use your statistics. Any items you are carrying transform with you. While transformed into a mist, you have a flying speed of 30 feet, can’t speak, can’t take actions or manipulate objects, are immune to nonmagical damage from weapons, and have advantage on saving throws and Stealth checks. You can pass through a space as narrow as 1 inch without squeezing but can’t pass through water. Any items you are carrying transform with you.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 28, + "fields": { + "name": "", + "desc": "Additionally, you gain the undead type in addition to being a humanoid, and you take 20 radiant damage when you end your turn in contact with sunlight.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 29, + "fields": { + "name": "", + "desc": "Your Strength or Wisdom score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_untamed" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 30, + "fields": { + "name": "", + "desc": "You may enter a rage and assume a wild shape using the same bonus action.", + "type": null, + "parent": "a5e-ag_untamed" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 31, + "fields": { + "name": "", + "desc": "While using a wild shape, you can use Furious Critical with attacks made using natural weapons.", + "type": null, + "parent": "a5e-ag_untamed" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 32, + "fields": { + "name": "", + "desc": "Any temporary hit points you gain from assuming a wild shape while raging become rage hit points instead.", + "type": null, + "parent": "a5e-ag_untamed" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 33, + "fields": { + "name": "", + "desc": "You may cast and concentrate on druid spells with a range of Self or Touch while raging.", + "type": null, + "parent": "a5e-ag_untamed" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 34, + "fields": { + "name": "", + "desc": "You cannot be charmed, fatigued, frightened, paralyzed, or stunned.", + "type": null, + "parent": "a5e-ag_true-revenant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 35, + "fields": { + "name": "", + "desc": "You have advantage on saving throws against spells and other magical effects.", + "type": null, + "parent": "a5e-ag_true-revenant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 36, + "fields": { + "name": "", + "desc": "You regain all of your hit points after you do not take any damage for 1 minute.", + "type": null, + "parent": "a5e-ag_true-revenant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 37, + "fields": { + "name": "", + "desc": "In addition, you also gain the Fearsome Pursuit and Burning Hatred features. \r\n**Fearsome Pursuit.** You can spend 1 minute focusing on a creature that is part of your vendetta. If the creature is dead or on another plane of existence, you learn that. Otherwise, after focusing, you know the distance and direction to that creature, and so long as you’re moving in pursuit of that creature, you and anyone traveling with you ignore difficult terrain. This effect ends if you take damage or end your turn without moving for any reason.\r\n**Burning Hatred.** You can use an action to target the focus of your Fearsome Pursuit if it is within 30 feet. The creature makes a Wisdom saving throw (DC 8 + your proficiency bonus + your highest mental ability score modifier). On a failure, it takes psychic damage equal to 1d6 × your proficiency bonus and is stunned until the end of its next turn. On a success, it takes half damage and is rattled until the end of its\r\nnext turn. Once you have used this feature a number of times equal to your proficiency bonus, you can’t use it again until you finish a long rest.", + "type": null, + "parent": "a5e-ag_true-revenant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 38, + "fields": { + "name": "", + "desc": "Your Charisma score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_thespian" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 39, + "fields": { + "name": "", + "desc": "You have advantage on Deception and Performance checks made when attempting to mimic another creature’s looks, mannerisms, or speech.", + "type": null, + "parent": "a5e-ag_thespian" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 40, + "fields": { + "name": "", + "desc": "You have a natural talent for perfectly mimicking the sounds of other creatures you’ve heard make sound for at least 1 minute. A suspicious listener can see through your perfect mimicry by succeeding on a Wisdom (Insight) check opposed by your Charisma (Deception) check.", + "type": null, + "parent": "a5e-ag_thespian" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 41, + "fields": { + "name": "", + "desc": "Choose one ability score. The chosen ability score increases by 1, to a maximum of 20, and you gain proficiency in saving throws using it.", + "type": null, + "parent": "a5e-ag_tenacious" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 42, + "fields": { + "name": "", + "desc": "When using the Help action to aid an ally in attacking a creature, the targeted creature can be up to 30 feet away instead of 5 feet.", + "type": null, + "parent": "a5e-ag_tactical-support" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 43, + "fields": { + "name": "", + "desc": "If an ally benefiting from your Help action scores a critical hit on the targeted creature, you can use your reaction to make a single weapon attack against that creature. Your attack scores a critical hit on a roll of 19–20. If you already have a feature that increases the range of your critical hits, your critical hit range\r\nfor that attack is increased by 1 (maximum 17–20).", + "type": null, + "parent": "a5e-ag_tactical-support" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 44, + "fields": { + "name": "", + "desc": "When a creature is damaged by an attack that was aided by the use of your Help action, you don’t provoke opportunity attacks from that creature until the end of your next turn.", + "type": null, + "parent": "a5e-ag_tactical-support" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 45, + "fields": { + "name": "", + "desc": "Your Speed increases by 5 feet.", + "type": null, + "parent": "a5e-ag_swift-combatant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 46, + "fields": { + "name": "", + "desc": "You gain proficiency with the Charge, Rapid Drink, and Swift Stance maneuvers, and do not have to spend exertion to activate them.", + "type": null, + "parent": "a5e-ag_swift-combatant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 47, + "fields": { + "name": "", + "desc": "When you are reduced to 0 or fewer hit points, you can use your reaction to move up to your Speed before falling unconscious. Moving in this way doesn’t provoke opportunity attacks.", + "type": null, + "parent": "a5e-ag_survivor" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 48, + "fields": { + "name": "", + "desc": "On the first turn that you start with 0 hit points and must make a death saving throw, you make that saving throw with advantage.", + "type": null, + "parent": "a5e-ag_survivor" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 49, + "fields": { + "name": "", + "desc": "When you take massive damage that would kill you instantly, you can use your reaction to make a death saving throw. If the saving throw succeeds, you instead fall unconscious and are dying.", + "type": null, + "parent": "a5e-ag_survivor" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 50, + "fields": { + "name": "", + "desc": "Medicine checks made to stabilize you have advantage.", + "type": null, + "parent": "a5e-ag_survivor" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 51, + "fields": { + "name": "", + "desc": "Once between long rests, when a creature successfully stabilizes you, at the start of your next turn you regain 1 hit point.", + "type": null, + "parent": "a5e-ag_survivor" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 52, + "fields": { + "name": "", + "desc": "You gain proficiency with the Dangerous Strikes maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_surgical-combatant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 53, + "fields": { + "name": "", + "desc": "You gain proficiency in Medicine. If you are already proficient, you instead gain an expertise die.", + "type": null, + "parent": "a5e-ag_surgical-combatant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 54, + "fields": { + "name": "", + "desc": "You gain an expertise die on Medicine checks made to diagnose the cause of or treat wounds.", + "type": null, + "parent": "a5e-ag_surgical-combatant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 55, + "fields": { + "name": "", + "desc": "You can add your martial arts die as a bonus to Acrobatics, Culture, Deception, Engineering, Intimidation, Investigation, Sleight of Hand, Stealth, Perception, Performance, and Persuasion checks.", + "type": null, + "parent": "a5e-ag_subtly-skilled" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 56, + "fields": { + "name": "", + "desc": "Your Strength or Constitution score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_street-fighter" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 57, + "fields": { + "name": "", + "desc": "You can roll 1d4 in place of your normal damage for unarmed strikes.", + "type": null, + "parent": "a5e-ag_street-fighter" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 58, + "fields": { + "name": "", + "desc": "You are proficient with improvised weapons.", + "type": null, + "parent": "a5e-ag_street-fighter" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 59, + "fields": { + "name": "", + "desc": "You can use a bonus action to make a Grapple maneuver against a target you hit with an unarmed strike or improvised weapon on your turn.", + "type": null, + "parent": "a5e-ag_street-fighter" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 60, + "fields": { + "name": "", + "desc": "You can try to hide from a creature even while you are only lightly obscured from that creature.", + "type": null, + "parent": "a5e-ag_stealth-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 61, + "fields": { + "name": "", + "desc": "Your position isn’t revealed when you miss with a ranged weapon attack against a creature you are hidden from.", + "type": null, + "parent": "a5e-ag_stealth-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 62, + "fields": { + "name": "", + "desc": "Dim light does not impose disadvantage when you make Perception checks.", + "type": null, + "parent": "a5e-ag_stealth-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 63, + "fields": { + "name": "", + "desc": "Your Constitution score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_stalwart" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 64, + "fields": { + "name": "", + "desc": "You regain an additional number of hit points equal to double your Constitution modifier (minimum 2) whenever you roll a hit die to regain hit points.", + "type": null, + "parent": "a5e-ag_stalwart" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 65, + "fields": { + "name": "", + "desc": "You gain proficiency with the Purge Magic maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_spellbreaker" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 66, + "fields": { + "name": "", + "desc": "When a creature concentrating on a spell is damaged by you, it has disadvantage on its concentration check to maintain the spell it is concentrating on.", + "type": null, + "parent": "a5e-ag_spellbreaker" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 67, + "fields": { + "name": "", + "desc": "You have advantage on saving throws made against spells cast within 30 feet of you.", + "type": null, + "parent": "a5e-ag_spellbreaker" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 68, + "fields": { + "name": "", + "desc": "Your Speed increases by 10 feet.", + "type": null, + "parent": "a5e-ag_skirmisher" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 69, + "fields": { + "name": "", + "desc": "You can Dash through difficult terrain without requiring additional movement.", + "type": null, + "parent": "a5e-ag_skirmisher" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 70, + "fields": { + "name": "", + "desc": "Whenever you attack a creature, for the rest of your turn you don’t provoke opportunity attacks from that creature.", + "type": null, + "parent": "a5e-ag_skirmisher" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 71, + "fields": { + "name": "", + "desc": "Choose three skills, tools, languages, or any combination of these. You gain proficiency with each of your three choices. If you already have proficiency in a chosen skill, you instead gain a skill specialty with that skill.", + "type": null, + "parent": "a5e-ag_skillful" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 72, + "fields": { + "name": "", + "desc": "When you take the Attack action on your turn, as a bonus action you can make a Shove maneuver against a creature within 5 feet of you.", + "type": null, + "parent": "a5e-ag_shield-focus" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 73, + "fields": { + "name": "", + "desc": "When you make a Dexterity saving throw against a spell or harmful effect that only targets you, if you aren’t incapacitated you gain a bonus equal to your shield’s Armor Class bonus.", + "type": null, + "parent": "a5e-ag_shield-focus" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 74, + "fields": { + "name": "", + "desc": "When you succeed on a Dexterity saving throw against an effect that deals half damage on a success, you can use your reaction to take no damage by protecting yourself with your shield.", + "type": null, + "parent": "a5e-ag_shield-focus" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 75, + "fields": { + "name": "", + "desc": "You regain 1 spell point whenever you cast a spell from the shadow school.", + "type": null, + "parent": "a5e-ag_shadowmancer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 76, + "fields": { + "name": "", + "desc": "You gain a Stealth skill specialty for hiding while in areas of darkness or dim light, and you have advantage on Dexterity (Stealth) checks made to hide while in areas of darkness or dim light.", + "type": null, + "parent": "a5e-ag_shadowmancer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 77, + "fields": { + "name": "", + "desc": "Whenever you use your Shadowdancer ability to teleport, after teleporting you can use your reaction to take the Dodge action.", + "type": null, + "parent": "a5e-ag_shadowmancer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 78, + "fields": { + "name": "", + "desc": "You gain darkvision to a range of 60 feet. Unlike other forms of darkvision you can see color in this way as if you were seeing normally. If you already had darkvision or would gain it later from another feature, its range increases by 30 feet.", + "type": null, + "parent": "a5e-ag_shadowdancer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 79, + "fields": { + "name": "", + "desc": "You can use a bonus action and spend 1 spell point to teleport up to 30 feet to an unoccupied area of darkness or dim light you can see. You must currently be in an area of darkness or dim light to teleport in this way. You can bring along objects if their weight doesn’t exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn’t carrying gear beyond its carrying capacity and is within 5 feet. You can increase the range of this teleport by 30 additional feet per each additional spell point you spend.", + "type": null, + "parent": "a5e-ag_shadowdancer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 80, + "fields": { + "name": "", + "desc": "While you are hidden from a target and are in an area of darkness or dim light, you can apply your Sneak Attack damage to an eldritch blast.", + "type": null, + "parent": "a5e-ag_shadow-assassin" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 81, + "fields": { + "name": "", + "desc": "You gain a ritual book containing spells that you can cast as rituals while holding it.", + "type": null, + "parent": "a5e-ag_rite-master" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 82, + "fields": { + "name": "", + "desc": "Choose one of the following classes: bard, cleric, druid, herald, sorcerer, warlock, or wizard. When you acquire this feat, you create a ritual book holding two 1st-level spells of your choice from that class’ spell\r\nlist. These spells must have the ritual tag. The class you choose determines your spellcasting ability for these spells: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or\r\nsorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", + "type": null, + "parent": "a5e-ag_rite-master" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 83, + "fields": { + "name": "", + "desc": "If you come across a written spell with the ritual tag (like on a spell scroll or in a wizard’s spellbook), you can add it to your ritual book if the spell is on the spell list for the class you chose and its level is no higher than half your level (rounded up). Copying the spell into your ritual book costs 50 gold and 2 hours per level of the spell.", + "type": null, + "parent": "a5e-ag_rite-master" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 84, + "fields": { + "name": "", + "desc": "Your destiny changes to Revenge.", + "type": null, + "parent": "a5e-ag_revenant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 85, + "fields": { + "name": "", + "desc": "You gain resistance to necrotic and psychic damage.", + "type": null, + "parent": "a5e-ag_revenant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 86, + "fields": { + "name": "", + "desc": "You gain darkvision to a range of 60 feet (or if you already have it, its range increases by 30 feet).", + "type": null, + "parent": "a5e-ag_revenant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 87, + "fields": { + "name": "", + "desc": "You become immune to poison damage and the poisoned condition.", + "type": null, + "parent": "a5e-ag_revenant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 88, + "fields": { + "name": "", + "desc": "If your vendetta has not ended, you regain all of your hit points when you finish a short rest or 1 hour after you are reduced to 0 hit points.", + "type": null, + "parent": "a5e-ag_revenant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 89, + "fields": { + "name": "", + "desc": "You gain an expertise die on saving throws made against spells and other magical effects, and on saving throws made to resist being charmed, fatigued, frightened, paralyzed, or stunned.", + "type": null, + "parent": "a5e-ag_revenant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 90, + "fields": { + "name": "", + "desc": "You gain an expertise die on ability checks made to find or track a creature that is part of your vendetta.", + "type": null, + "parent": "a5e-ag_revenant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 91, + "fields": { + "name": "", + "desc": "If the resonant item requires attunement and you meet the prerequisites to do so, you become attuned to the item. If you don’t meet the prerequisites, both the attunement and resonance with the item fails. \r\n\r\nThis attunement doesn’t count toward the maximum number of items you can be attuned to. Unlike other\r\nattuned items, your attunement to this item doesn’t end from being more than 100 feet away from it for 24 hours.", + "type": null, + "parent": "a5e-ag_resonant-bond" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 92, + "fields": { + "name": "", + "desc": "Once per rest, as a bonus action, you can summon a resonant item, which appears instantly in your hand so long as it is located on the same plane of existence. You must have a free hand to use this feature and be able to hold the item.", + "type": null, + "parent": "a5e-ag_resonant-bond" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 93, + "fields": { + "name": "", + "desc": "If the resonant item is sentient, you have advantage on Charisma checks and saving throws made when resolving a conflict with the item.", + "type": null, + "parent": "a5e-ag_resonant-bond" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 94, + "fields": { + "name": "", + "desc": "If the resonant item is an artifact, you can ignore the effects of one minor detrimental property.", + "type": null, + "parent": "a5e-ag_resonant-bond" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 95, + "fields": { + "name": "", + "desc": "You lose resonance with an item if another creature attunes to it or gains resonance with it. You can also voluntarily end the resonance by focusing on the item during a short rest, or during a long rest if the item is not in your possession.", + "type": null, + "parent": "a5e-ag_resonant-bond" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 96, + "fields": { + "name": "", + "desc": "When you spend 10 minutes speaking inspirationally, you can choose up to 6 friendly creatures (including yourself) within 30 feet that can hear and understand you. Each creature gains temporary hit points equal to your level + your Charisma modifier. A creature can’t gain temporary hit points from this feat again until it has finished a rest.", + "type": null, + "parent": "a5e-ag_rallying-speaker" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 97, + "fields": { + "name": "", + "desc": "**Divine (Radiant).** When you cast a spell that deals radiant damage, you can spend 1 sorcery point and choose one creature you can see within 60 feet. That creature regains a number of hit points equal to 1d8 × the spell’s level.", + "type": null, + "parent": "a5e-ag_pure-arcanist" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 98, + "fields": { + "name": "", + "desc": "**Pure Arcanum (Force).** When you cast a spell that deals force damage, you can spend 2 sorcery points and choose one creature you can see. After the spell’s damage is resolved, if the creature was damaged by the spell it makes an Intelligence saving throw or becomes stunned until the end of its next turn.", + "type": null, + "parent": "a5e-ag_pure-arcanist" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 99, + "fields": { + "name": "", + "desc": "Whenever the Narrator calls for you to roll for initiative, you may activate a use of your Divine Sense feature to warn yourself and up to a number of creatures equal to your Charisma modifier within 30 feet, granting advantage on the initiative check.", + "type": null, + "parent": "a5e-ag_proclaimer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 100, + "fields": { + "name": "", + "desc": "You can use your voice Art Specialty to cast herald spells.", + "type": null, + "parent": "a5e-ag_proclaimer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 101, + "fields": { + "name": "", + "desc": "You can spend exertion to cast spells from the divination school that you know at a cost of 1 exertion per spell level.", + "type": null, + "parent": "a5e-ag_proclaimer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 102, + "fields": { + "name": "", + "desc": "When you gain this feat, you gain one of the following alignment traits: Chaotic, Evil, Good, or Lawful. Once chosen your alignment trait cannot be changed, but you can gain a second alignment trait that is not opposed.", + "type": null, + "parent": "a5e-ag_proclaimer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 103, + "fields": { + "name": "", + "desc": "Upon gaining this feat, choose one of the following damage types: acid, cold, fire, lightning, or thunder.\r\n\r\nWhen you cast a spell that deals damage, your spell’s damage ignores damage resistance to the chosen type.", + "type": null, + "parent": "a5e-ag_primordial-caster" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 104, + "fields": { + "name": "", + "desc": "When you cast a spell that deals damage of the chosen type, you deal 1 additional damage for every damage die with a result of 1.", + "type": null, + "parent": "a5e-ag_primordial-caster" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 105, + "fields": { + "name": "", + "desc": "This feat can be selected multiple times, choosing a different damage type each time.", + "type": null, + "parent": "a5e-ag_primordial-caster" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 106, + "fields": { + "name": "", + "desc": "You gain proficiency with the Cleaving Swing maneuver and do not have to spend exertion to activate it. In addition, you can use Cleaving Swing with a versatile weapon wielded with two hands.", + "type": null, + "parent": "a5e-ag_powerful-attacker" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 107, + "fields": { + "name": "", + "desc": "Before you make a melee attack with a two-handed weapon or versatile weapon wielded with two hands, if you are proficient with the weapon and do not have disadvantage you can declare a powerful attack. A\r\npowerful attack has disadvantage, but on a hit deals 10 extra damage.", + "type": null, + "parent": "a5e-ag_powerful-attacker" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 108, + "fields": { + "name": "", + "desc": "The range is doubled for any spell you cast that requires a spell attack roll.", + "type": null, + "parent": "a5e-ag_power-caster" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 109, + "fields": { + "name": "", + "desc": "You ignore half cover and three-quarters cover when making a ranged spell attack.", + "type": null, + "parent": "a5e-ag_power-caster" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 110, + "fields": { + "name": "", + "desc": "Choose one cantrip that requires an attack roll. The cantrip must be from the bard, cleric, druid, herald, sorcerer, warlock, or wizard spell list. You learn this cantrip and your spellcasting ability for it depends\r\non the spell list you chose from: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", + "type": null, + "parent": "a5e-ag_power-caster" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 111, + "fields": { + "name": "", + "desc": "When you attack with a glaive, halberd, quarterstaff, or spear and no other weapon using the Attack action, as a bonus action you can make a melee attack with the weapon’s opposite end. This attack uses the same ability modifier as the primary attack, dealing 1d4 bludgeoning damage on a hit.", + "type": null, + "parent": "a5e-ag_polearm-savant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 112, + "fields": { + "name": "", + "desc": "While you are wielding a glaive, halberd, pike, quarterstaff, or spear, a creature that enters your reach provokes an opportunity attack from you. A creature can use its reaction to avoid provoking an opportunity attack from you in this way.", + "type": null, + "parent": "a5e-ag_polearm-savant" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 113, + "fields": { + "name": "", + "desc": "When you use a healer’s satchel to stabilize a dying creature, it regains a number of\r\nhit points equal to your Wisdom modifier.", + "type": null, + "parent": "a5e-ag_physician" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 114, + "fields": { + "name": "", + "desc": "You can spend an action and one use of a healer’s satchel to tend to a creature. The creature regains 1d6 + 4 hit points, plus one hit point for each of its hit dice. The creature can’t regain hit points from this feat again until it finishes a rest.", + "type": null, + "parent": "a5e-ag_physician" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 115, + "fields": { + "name": "", + "desc": "Your Dexterity or Wisdom score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_nightstalker" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 116, + "fields": { + "name": "", + "desc": "You can deal Sneak Attack damage when making attacks using unarmed strikes or adept weapons.", + "type": null, + "parent": "a5e-ag_nightstalker" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 117, + "fields": { + "name": "", + "desc": "You gain a bonus equal to your Wisdom modifier on Acrobatics, Deception, and Stealth checks.", + "type": null, + "parent": "a5e-ag_nightstalker" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 118, + "fields": { + "name": "", + "desc": "In addition, you gain the following special focus feature:\r\n**Twilight Vanish.** On your turn you can use a reaction and spend 2 exertion to move up to 30 feet with such incredible speed that you seem to disappear: after moving this way you may immediately take the Hide action.", + "type": null, + "parent": "a5e-ag_nightstalker" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 119, + "fields": { + "name": "", + "desc": "You can spend exertion to cast any spells from the air, earth, fear, fire, movement, obscurement, plants, poison, senses, shadow, transformation, unarmed, or water schools at the cost of 2 exertion per spell level. You use your focus save DC for spells cast this way, and your spell attack modifier is equal to your proficiency bonus + your Wisdom modifier.", + "type": null, + "parent": "a5e-ag_night-master" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 120, + "fields": { + "name": "", + "desc": "You gain resistance to necrotic damage (or if you already have it, immunity to necrotic damage) and darkvision to a range of 30 feet (or if you already have it, the range of your darkvision increases by 30 feet).", + "type": null, + "parent": "a5e-ag_newblood" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 121, + "fields": { + "name": "", + "desc": "You also gain a bite natural weapon and the Charming Gaze feature.\r\n\r\n**Bite.** You gain a bite natural weapon you are proficient with. You are only able to bite grappled, incapacitated, restrained, or willing creatures. You can use Dexterity instead of Strength for the attack rolls of your bite. On a hit your bite deals piercing damage equal to 1d6 plus your Strength modifier or Dexterity modifier (whichever is highest). In addition, once per turn you can choose for your bite to also deal 1d6\r\nnecrotic damage × your proficiency bonus. You regain hit points equal to the amount of necrotic damage dealt to your target. This necrotic damage can only be increased by a critical hit.\r\n**Charming Gaze.** Once between long rests, you magically target a creature within 30 feet, forcing it to make a Wisdom saving throw (DC 8 + your proficiency bonus + your Charisma modifier). On a failure, the target is charmed by you for a number of hours equal to your proficiency bonus. While charmed it regards you as a trusted friend and is a willing target for your bite. The target repeats the saving throw each time it takes damage, ending the effect on itself on a success. If the target’s saving throw is successful or the effect ends for it, it is immune to your charm for 24 hours.", + "type": null, + "parent": "a5e-ag_newblood" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 122, + "fields": { + "name": "", + "desc": "Additionally, you have disadvantage on attack rolls and on Perception checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight. In addition, you cannot use your Charming Gaze while you are in direct sunlight.", + "type": null, + "parent": "a5e-ag_newblood" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 123, + "fields": { + "name": "", + "desc": "Your Speed increases by 5 feet.", + "type": null, + "parent": "a5e-ag_natural-warrior" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 124, + "fields": { + "name": "", + "desc": "When making an Acrobatics or Athletics check during combat, you can choose to use your Strength or Dexterity modifier for either skill.", + "type": null, + "parent": "a5e-ag_natural-warrior" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 125, + "fields": { + "name": "", + "desc": "You gain proficiency with the Bounding Strike maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_natural-warrior" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 126, + "fields": { + "name": "", + "desc": "You can roll 1d4 in place of your normal damage for unarmed strikes. When rolling damage for your unarmed strikes, you can choose to deal bludgeoning, piercing, or slashing damage.", + "type": null, + "parent": "a5e-ag_natural-warrior" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 127, + "fields": { + "name": "", + "desc": "You learn two cantrips of your choice from the class’s spell list.", + "type": null, + "parent": "a5e-ag_mystical-talent" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 128, + "fields": { + "name": "", + "desc": "Choose a 1st-level spell to learn from that spell list. Once between long rests, you can cast this spell without expending a spell slot. You can also cast this spell using a spell slot of the appropriate level (or the appropriate number of spell points if you have warlock levels).\r\n\r\nYour spellcasting ability for these spells is Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", + "type": null, + "parent": "a5e-ag_mystical-talent" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 129, + "fields": { + "name": "", + "desc": "Your Wisdom or Charisma score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_mystic-arcanist" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 130, + "fields": { + "name": "", + "desc": "When you cast a spell that restores hit points, you restore an additional number of hit points equal to your Charisma modifier.", + "type": null, + "parent": "a5e-ag_mystic-arcanist" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 131, + "fields": { + "name": "", + "desc": "You can spend sorcery points to temporarily gain a spell from the cleric or sorcerer spell lists. Gaining a spell in this way costs a number of sorcery points equal to the spell’s level. You cannot gain a spell that has a level higher than your highest level spell slot. When you gain a cleric spell in this way, it is considered prepared for the day. When you gain a sorcerer spell in this way, it is considered a spell you know for the day. You lose all spells gained in this way whenever you finish a long rest.", + "type": null, + "parent": "a5e-ag_mystic-arcanist" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 132, + "fields": { + "name": "", + "desc": "You gain proficiency with the Lancer Strike maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_mounted-warrior" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 133, + "fields": { + "name": "", + "desc": "When your mount is targeted by an attack, you can instead make yourself the attack’s target.", + "type": null, + "parent": "a5e-ag_mounted-warrior" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 134, + "fields": { + "name": "", + "desc": "When your mount makes a Dexterity saving throw against an effect that deals half damage on a success, it takes no damage on a success and half damage on a failure.", + "type": null, + "parent": "a5e-ag_mounted-warrior" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 135, + "fields": { + "name": "", + "desc": "You gain an expertise die on checks made to learn legends and lore about a creature you can see.", + "type": null, + "parent": "a5e-ag_monster-hunter" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 136, + "fields": { + "name": "", + "desc": "You learn the altered strike cantrip.", + "type": null, + "parent": "a5e-ag_monster-hunter" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 137, + "fields": { + "name": "", + "desc": "You gain proficiency with the Douse maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_monster-hunter" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 138, + "fields": { + "name": "", + "desc": "You gain the tracking skill specialty in Survival.", + "type": null, + "parent": "a5e-ag_monster-hunter" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 139, + "fields": { + "name": "", + "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_moderately-outfitted" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 140, + "fields": { + "name": "", + "desc": "You gain proficiency with medium armor and shields.", + "type": null, + "parent": "a5e-ag_moderately-outfitted" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 141, + "fields": { + "name": "", + "desc": "Medium armor doesn’t impose disadvantage on your Dexterity (Stealth) checks.", + "type": null, + "parent": "a5e-ag_medium-armor-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 142, + "fields": { + "name": "", + "desc": "When you are wearing medium armor, the maximum Dexterity modifier you can add to your Armor Class increases to 3.", + "type": null, + "parent": "a5e-ag_medium-armor-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 143, + "fields": { + "name": "", + "desc": "You gain proficiency in a combat tradition of your choice.", + "type": null, + "parent": "a5e-ag_martial-scholar" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 144, + "fields": { + "name": "", + "desc": "You learn two combat maneuvers from a combat tradition you know. If you don’t already know any combat maneuvers, both must be 1st degree. Combat maneuvers gained from this feat do not count toward the maximum number of combat maneuvers you know.", + "type": null, + "parent": "a5e-ag_martial-scholar" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 145, + "fields": { + "name": "", + "desc": "Your exertion pool increases by 3. If you do not have an exertion pool, you gain an exertion pool with 3 exertion, regaining your exertion whenever you finish a rest.", + "type": null, + "parent": "a5e-ag_martial-scholar" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 146, + "fields": { + "name": "", + "desc": "Whenever you enter a rage you may choose up to a number of creatures equal to your Wisdom modifier within 60 feet that are beasts, fey, or plants. These chosen creatures gain the following benefits for as long as you rage, but are unable to take the Fall Back reaction:\r\n* Advantage on Strength checks and Strength saving throws.\r\n* Resistance to bludgeoning, piercing, and slashing damage.\r\n* Temporary hit points equal to your level.\r\n* A bonus to damage rolls equal to your proficiency bonus.", + "type": null, + "parent": "a5e-ag_living-stampede" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 147, + "fields": { + "name": "", + "desc": "Your Intelligence score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_linguistics-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 148, + "fields": { + "name": "", + "desc": "You learn three languages of your choice.", + "type": null, + "parent": "a5e-ag_linguistics-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 149, + "fields": { + "name": "", + "desc": "You can invent ciphers and are able to teach a cipher you create to others. Anyone who knows the cipher can encode and read hidden messages made with it; the apparent text must be at least four times longer than the hidden message. A creature can detect the cipher’s presence if it spends a minute examining it and succeeds on an Investigation check against a DC of 8+ your proficiency bonus + your Intelligence modifier. If the check succeeds by 5 or more, they can read the hidden message.", + "type": null, + "parent": "a5e-ag_linguistics-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 150, + "fields": { + "name": "", + "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_lightly-outfitted" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 151, + "fields": { + "name": "", + "desc": "You gain proficiency with light armor.", + "type": null, + "parent": "a5e-ag_lightly-outfitted" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 152, + "fields": { + "name": "", + "desc": "Your Intelligence score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_keen-intellect" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 153, + "fields": { + "name": "", + "desc": "You can recall anything you’ve seen or heard within a number of weeks equal to your Intelligence modifier.", + "type": null, + "parent": "a5e-ag_keen-intellect" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 154, + "fields": { + "name": "", + "desc": "You know how long it will be before the next sunset or sunrise.", + "type": null, + "parent": "a5e-ag_keen-intellect" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 155, + "fields": { + "name": "", + "desc": "You know which way is north.", + "type": null, + "parent": "a5e-ag_keen-intellect" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 156, + "fields": { + "name": "", + "desc": "Your Intelligence or Wisdom score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_intuitive" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 157, + "fields": { + "name": "", + "desc": "Your passive Perception and passive Investigation scores increase by 5.", + "type": null, + "parent": "a5e-ag_intuitive" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 158, + "fields": { + "name": "", + "desc": "If you can see a creature’s mouth while it is speaking a language you know, you can read its lips.", + "type": null, + "parent": "a5e-ag_intuitive" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 159, + "fields": { + "name": "", + "desc": "Any stronghold you have or buy that is of frugal quality is automatically upgraded to average quality at no additional cost.", + "type": null, + "parent": "a5e-ag_idealistic-leader" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 160, + "fields": { + "name": "", + "desc": "You gain a new follower for every 50 staff you have in your stronghold, rather than every 100 staff.", + "type": null, + "parent": "a5e-ag_idealistic-leader" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 161, + "fields": { + "name": "", + "desc": "When you fulfill your destiny, choose a number of followers equal to your proficiency bonus. Each is upgraded to their most expensive version.", + "type": null, + "parent": "a5e-ag_idealistic-leader" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 162, + "fields": { + "name": "", + "desc": "You gain proficiency in your choice of one martial weapon, one rare weapon, or shields.", + "type": null, + "parent": "a5e-ag_heraldic-training" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 163, + "fields": { + "name": "", + "desc": "You gain two divine lessons of your choice from the herald class.", + "type": null, + "parent": "a5e-ag_heraldic-training" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 164, + "fields": { + "name": "", + "desc": "Your Strength score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_heavy-armor-expertise" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 165, + "fields": { + "name": "", + "desc": "While wearing heavy armor, you reduce all bludgeoning, piercing, and slashing damage from nonmagical weapons by 3.", + "type": null, + "parent": "a5e-ag_heavy-armor-expertise" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 166, + "fields": { + "name": "", + "desc": "Your Strength score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_heavily-outfitted" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 167, + "fields": { + "name": "", + "desc": "You gain proficiency with heavy armor.", + "type": null, + "parent": "a5e-ag_heavily-outfitted" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 168, + "fields": { + "name": "", + "desc": "When you take this feat, you gain a number of hit points equal to twice your level.", + "type": null, + "parent": "a5e-ag_hardy-adventurer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 169, + "fields": { + "name": "", + "desc": "Whenever you gain a new level, you gain an additional 2 hit points to your hit point maximum.", + "type": null, + "parent": "a5e-ag_hardy-adventurer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 170, + "fields": { + "name": "", + "desc": "During a short rest, you regain 1 additional hit point per hit die spent to heal.", + "type": null, + "parent": "a5e-ag_hardy-adventurer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 171, + "fields": { + "name": "", + "desc": "You learn the Preach Despair and Preach Hope battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Preach Despair.** A hostile creature within 60 feet of you suffers a level of strife. Creatures with an opposite alignment from yours or that worship a greater entity that has an opposite alignment suffer two levels of strife instead. A creature cannot suffer more than two levels of strife from Preach Despair in the same 24 hours.\r\n**Preach Hope.** Creatures of your choice within 60 feet of you gain advantage on saving throws. When the battle hymn ends, allies within 30 feet of you remove one level of strife. An ally that shares your alignment or worships a greater entity removes two levels of strife instead.", + "type": null, + "parent": "a5e-ag_harbinger-of-things-to-come" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 172, + "fields": { + "name": "", + "desc": "A creature that takes the Disengage action still provokes opportunity attacks from you.", + "type": null, + "parent": "a5e-ag_guarded-warrior" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 173, + "fields": { + "name": "", + "desc": "You gain proficiency with the Warning Strike maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_guarded-warrior" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 174, + "fields": { + "name": "", + "desc": "You can use your reaction to make a melee weapon attack against a creature within 5 feet that makes an attack against a target other than you if the target does not also have this feat.", + "type": null, + "parent": "a5e-ag_guarded-warrior" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 177, + "fields": { + "name": "", + "desc": "You gain 3 fate points.", + "type": null, + "parent": "a5e-ag_fortunate" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 178, + "fields": { + "name": "", + "desc": "Whenever you make an attack roll, ability check, or saving throw and do not have disadvantage, you can spend a fate point to roll an additional d20 and choose whichever result you wish. \r\nYou may do this after the initial roll has occurred, but before the outcome is known. If you have disadvantage, you may instead spend a fate point to choose one of the d20 rolls and reroll it.", + "type": null, + "parent": "a5e-ag_fortunate" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 179, + "fields": { + "name": "", + "desc": "Alternatively, when you are attacked, you can choose to spend a fate point to force the attacking creature to reroll the attack. The creature resolves the attack with the result you choose.", + "type": null, + "parent": "a5e-ag_fortunate" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 180, + "fields": { + "name": "", + "desc": "You regain all expended fate points when you finish a long rest.", + "type": null, + "parent": "a5e-ag_fortunate" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 181, + "fields": { + "name": "", + "desc": "You gain proficiency with the Victory Pose maneuver and do not have to spend exertion to activate it. In addition, you may use this maneuver with up to three different weapons you select instead of just one, and\r\naffect allies within 60 feet.", + "type": null, + "parent": "a5e-ag_fear-breaker" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 182, + "fields": { + "name": "", + "desc": "An ally affected by your Victory Pose gains an expertise die on their next saving throw against fear, and if they are rattled the condition ends for them.", + "type": null, + "parent": "a5e-ag_fear-breaker" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 183, + "fields": { + "name": "", + "desc": "You gain proficiency with all types of artisan’s tools and miscellaneous tools. If you already have proficiency with any of these tools, you instead gain an expertise die with those tools.", + "type": null, + "parent": "a5e-ag_equipped-for-justice" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 184, + "fields": { + "name": "", + "desc": "You gain proficiency with Engineering and a 1d8 expertise die on Engineering checks. In addition, you build a nonmagical grappling gun that only functions in your hands. Replacing your grappling gun requires 3 days of crafting and 500 gp.", + "type": null, + "parent": "a5e-ag_equipped-for-justice" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 185, + "fields": { + "name": "", + "desc": "You may add your Wisdom modifier to the DC of any saving throws used for miscellaneous adventuring gear items and to attack rolls made using miscellaneous adventuring gear items.", + "type": null, + "parent": "a5e-ag_equipped-for-justice" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 186, + "fields": { + "name": "", + "desc": "Your Wisdom or Charisma score increases by 1.", + "type": null, + "parent": "a5e-ag_empathic" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 187, + "fields": { + "name": "", + "desc": "You gain an expertise die on Insight checks made against other creatures.", + "type": null, + "parent": "a5e-ag_empathic" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 188, + "fields": { + "name": "", + "desc": "When using a social skill and making a Charisma check another creature, you score a critical success on a roll of 19–20.", + "type": null, + "parent": "a5e-ag_empathic" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 189, + "fields": { + "name": "", + "desc": "Whenever you cast a spell with a Cone area, you may additionally make ranged weapon attacks with a ranged weapon you are wielding against targets within that conical area. You may make up to a number of attacks equal to the level of the spell cast, each against a different target. Ranged attacks made in this way ignore the loading quality of weapons and use your conjured magical ammunition.", + "type": null, + "parent": "a5e-ag_eldritch-volley-master" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 190, + "fields": { + "name": "", + "desc": "Whenever you make a ranged weapon attack you can choose to conjure magical ammunition and select one of the following damage types: acid, cold, fire, or lightning. Your ranged weapon attacks using this conjured ammunition deal the chosen damage type instead of whatever damage type they would normally deal, and are considered magical for the purpose of overcoming resistance and immunity. Ammunition conjured in this way disappears at the end of the turn it was fired.", + "type": null, + "parent": "a5e-ag_eldritch-archer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 191, + "fields": { + "name": "", + "desc": "When you hit a target with a ranged weapon attack, you can use your reaction and choose a spell of 1st-level or higher, casting it through your ammunition. The spell must have a casting time of 1 action, and target a single creature or have a range of Touch. If a spell cast in this way requires an attack roll and targets the same target as the triggering ranged weapon attack, it also hits as part of that attack. You may\r\nchoose not to deal damage with a ranged weapon attack used to cast a spell.", + "type": null, + "parent": "a5e-ag_eldritch-archer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 192, + "fields": { + "name": "", + "desc": "You have advantage on Investigation and Perception checks made to detect secret doors.", + "type": null, + "parent": "a5e-ag_dungeoneer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 193, + "fields": { + "name": "", + "desc": "You have advantage on saving throws made against traps.", + "type": null, + "parent": "a5e-ag_dungeoneer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 194, + "fields": { + "name": "", + "desc": "You have resistance to damage dealt by traps.", + "type": null, + "parent": "a5e-ag_dungeoneer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 195, + "fields": { + "name": "", + "desc": "You don’t take a −5 penalty on your passive Perception score from traveling at a fast pace.", + "type": null, + "parent": "a5e-ag_dungeoneer" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 196, + "fields": { + "name": "", + "desc": "While wielding a separate melee weapon in each hand, you gain a +1 bonus to Armor Class.", + "type": null, + "parent": "a5e-ag_dual-wielding-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 197, + "fields": { + "name": "", + "desc": "You can use two-weapon fighting with any two one-handed melee weapons so long as neither has the heavy property.", + "type": null, + "parent": "a5e-ag_dual-wielding-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 198, + "fields": { + "name": "", + "desc": "When you would normally draw or sheathe a one-handed weapon, you can instead draw or sheathe two one-handed weapons.", + "type": null, + "parent": "a5e-ag_dual-wielding-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 199, + "fields": { + "name": "", + "desc": "You learn the Divine Inspiration and Persuasive Speech battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Divine Inspiration.** When an ally within 15 feet hits a creature with a melee weapon attack, your ally can deliver a Divine Smite just as if you had delivered it yourself using your Divine Smite feature expending one of your uses). If you are able to empower your smites, you may choose to empower it as normal.\r\n**Persuasive Speech.** Hostile creatures within 60 feet take a –1d4 penalty on attack rolls. You can sustain this battle hymn for up to 3 rounds without expending additional uses of Bardic Inspiration. When a hostile creature begins its third consecutive turn within range of this battle hymn it becomes charmed by you and will not attack you or your allies. If this causes combat to end early, the creatures remain charmed\r\nby you for up to 1 minute afterward or until one of them is damaged by you or an ally. For the next 24 hours after the battle hymn ends, you gain an expertise die on Charisma checks made against creatures that were charmed in this way. A creature that either shares your alignment or worships a deity that has\r\nyour alignment becomes charmed on its second consecutive turn instead. Creatures that have an opposite alignment or worship a greater entity that has an opposite alignment cannot be charmed in this way.", + "type": null, + "parent": "a5e-ag_divine-orator" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 200, + "fields": { + "name": "", + "desc": "An ability score of your choice increases by 1.", + "type": null, + "parent": "a5e-ag_destinys-call" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 201, + "fields": { + "name": "", + "desc": "When you gain inspiration through your destiny’s source of inspiration, you can choose one party member within 30 feet of you. That party member gains inspiration if they don’t have it already. Once you inspire a party member in this way, you can’t use this feature again on that party member until you finish a long rest.", + "type": null, + "parent": "a5e-ag_destinys-call" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 202, + "fields": { + "name": "", + "desc": "When you are wielding a finesse weapon with which you are proficient and would be hit by a melee attack, you can use your reaction to add your proficiency bonus to your Armor Class against that attack.", + "type": null, + "parent": "a5e-ag_deflector" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 203, + "fields": { + "name": "", + "desc": "You gain proficiency with the Farshot Stance and Ricochet maneuvers, and do not have to spend exertion to activate them.", + "type": null, + "parent": "a5e-ag_deadeye" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 204, + "fields": { + "name": "", + "desc": "Before you make an attack with a ranged weapon you are proficient with, you can choose to take a penalty on the attack roll equal to your proficiency bonus. If the attack hits, you deal extra damage equal to double your proficiency bonus. This extra damage does not double on a critical hit.", + "type": null, + "parent": "a5e-ag_deadeye" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 205, + "fields": { + "name": "", + "desc": "You ignore half cover and three-quarters cover when making a ranged weapon attack.", + "type": null, + "parent": "a5e-ag_deadeye" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 206, + "fields": { + "name": "", + "desc": "If proficient with a crossbow, you ignore its loading property.", + "type": null, + "parent": "a5e-ag_crossbow-expertise" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 207, + "fields": { + "name": "", + "desc": "You do not have disadvantage on ranged attack rolls from being within 5 feet of a hostile creature.", + "type": null, + "parent": "a5e-ag_crossbow-expertise" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 208, + "fields": { + "name": "", + "desc": "When you attack with a one-handed weapon using the Attack action, you can use a bonus action to \r\nattack with a hand crossbow wielded in your off-hand.", + "type": null, + "parent": "a5e-ag_crossbow-expertise" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 209, + "fields": { + "name": "", + "desc": "Choose one of the following types of crafted item: armor, engineered items, potions, rings and rods, staves and wands, weapons, wondrous items.\r\n\r\nThis feat can be selected multiple times, choosing a different type of crafted item each time.", + "type": null, + "parent": "a5e-ag_crafting-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 210, + "fields": { + "name": "", + "desc": "You gain advantage on checks made to craft, maintain, and repair that type of item.", + "type": null, + "parent": "a5e-ag_crafting-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 211, + "fields": { + "name": "", + "desc": "You gain an expertise die on checks made to craft, maintain, and repair items.", + "type": null, + "parent": "a5e-ag_crafting-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 212, + "fields": { + "name": "", + "desc": "You gain proficiency with two tools of your choice.", + "type": null, + "parent": "a5e-ag_crafting-expert" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 213, + "fields": { + "name": "", + "desc": "You gain proficiency with thieves' tools, the poisoner's kit, or a rare weapon with the stealthy property.", + "type": null, + "parent": "a5e-ag_covert-training" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 214, + "fields": { + "name": "", + "desc": "You gain two skill tricks of your choice from the rogue class.", + "type": null, + "parent": "a5e-ag_covert-training" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 215, + "fields": { + "name": "", + "desc": "You gain proficiency with the Deceptive Stance and Painful Pickpocket maneuvers, and do not have to spend exertion to activate them.", + "type": null, + "parent": "a5e-ag_combat-thievery" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 216, + "fields": { + "name": "", + "desc": "You gain an expertise die on Sleight of Hand checks.", + "type": null, + "parent": "a5e-ag_combat-thievery" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 217, + "fields": { + "name": "", + "desc": "After dashing (with the Dash Action) at least ten feet towards a foe, you may perform a bonus action to select one of the following options.\r\n**Attack.** Make one melee weapon attack, dealing an extra 5 damage on a hit. \r\n**Shove.** Use the Shove maneuver, pushing the target 10 feet directly away on a success.", + "type": null, + "parent": "a5e-ag_bull-rush" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 218, + "fields": { + "name": "", + "desc": "After making a melee attack, you may reroll any weapon damage and choose the better result. This feat can be used no more than once per turn.", + "type": null, + "parent": "a5e-ag_brutal-attack" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 219, + "fields": { + "name": "", + "desc": "You gain a 1d6 expertise die on concentration checks to maintain spells you have cast.", + "type": null, + "parent": "a5e-ag_battle-caster" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 220, + "fields": { + "name": "", + "desc": "While wielding weapons and shields, you may cast spells with a seen component.", + "type": null, + "parent": "a5e-ag_battle-caster" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 221, + "fields": { + "name": "", + "desc": "Instead of making an opportunity attack with a weapon, you may use your reaction to cast a spell with a casting time of 1 action. The spell must be one that only targets that creature.", + "type": null, + "parent": "a5e-ag_battle-caster" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 222, + "fields": { + "name": "", + "desc": "When rolling initiative you gain a +5 bonus.", + "type": null, + "parent": "a5e-ag_attentive" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 223, + "fields": { + "name": "", + "desc": "You can only be surprised if you are unconscious. A creature attacking you does not gain advantage from being hidden from you or unseen by you.", + "type": null, + "parent": "a5e-ag_attentive" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 224, + "fields": { + "name": "", + "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_athletic" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 225, + "fields": { + "name": "", + "desc": "When you are prone, standing up uses only 5 feet of your movement (instead of half).", + "type": null, + "parent": "a5e-ag_athletic" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 226, + "fields": { + "name": "", + "desc": "Your speed is not halved from climbing.", + "type": null, + "parent": "a5e-ag_athletic" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 227, + "fields": { + "name": "", + "desc": "You can make a running long jump or a running high jump after moving 5 feet on foot (instead of 10 feet).", + "type": null, + "parent": "a5e-ag_athletic" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 228, + "fields": { + "name": "", + "desc": "Whenever you make a ranged weapon attack, you can choose to expend a 1st-level or higher spell slot to enhance the attack to be empowered or unerring. You cannot enhance more than one attack in a\r\nturn in this way. \r\n**Empowered.** The shot deals an additional 2d6 force damage, and an additional 1d6 force damage for each spell slot level above 1st. \r\n**Unerring.** The shot gains a +2 bonus to the attack roll, and an additional +2 bonus for each spell slot level above 1st.", + "type": null, + "parent": "a5e-ag_arrow-enchanter" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 229, + "fields": { + "name": "", + "desc": "Whenever you cast a spell that deals damage, you may choose the type of damage that spell deals and the appearance of the spell’s effects.", + "type": null, + "parent": "a5e-ag_arcanum-master" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 230, + "fields": { + "name": "", + "desc": "You gain an expertise die on ability checks made to drive or pilot a vehicle.", + "type": null, + "parent": "a5e-ag_ace-driver" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 231, + "fields": { + "name": "", + "desc": "While piloting a vehicle, you can use your reaction to take the Brake or Maneuver vehicle actions.", + "type": null, + "parent": "a5e-ag_ace-driver" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 232, + "fields": { + "name": "", + "desc": "A vehicle you load can carry 25% more cargo than normal.", + "type": null, + "parent": "a5e-ag_ace-driver" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 233, + "fields": { + "name": "", + "desc": "Vehicles you are piloting only suffer a malfunction when reduced to 25% of their hit points, not 50%. In addition, when the vehicle does suffer a malfunction, you roll twice on the maneuver table and choose which die to use for the result.", + "type": null, + "parent": "a5e-ag_ace-driver" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 234, + "fields": { + "name": "", + "desc": "Vehicles you are piloting gain a bonus to their Armor Class equal to half your proficiency bonus.", + "type": null, + "parent": "a5e-ag_ace-driver" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 235, + "fields": { + "name": "", + "desc": "When you Brake, you can choose to immediately stop the vehicle without traveling half of its movement speed directly forward.", + "type": null, + "parent": "a5e-ag_ace-driver" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 236, + "fields": { + "name": "", + "desc": "You gain advantage on attack rolls against a creature you are grappling.", + "type": null, + "parent": "a5e-ag_grappler" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 237, + "fields": { + "name": "", + "desc": "You can use your action to try to pin a creature you are grappling. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", + "type": null, + "parent": "a5e-ag_grappler" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 238, + "fields": { + "name": "", + "desc": "Creatures with a CR lower than your alter ego’s Prestige rating are frightened of you while you are in your alter ego.", + "type": null, + "parent": "a5e-ag_a-symbol-that-strikes-fear" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 239, + "fields": { + "name": "", + "desc": "In addition, you become particularly adept at subduing your enemies rather than outright killing them. Whenever you begin a turn grappling a creature, you can attempt to non-lethally subdue it. The grappled creature makes a Constitution saving throw against your maneuver DC. On a failed saving throw, a creature is knocked unconscious for the next hour. A creature with more than 25% of its maximum hit points automatically succeeds on this saving throw.", + "type": null, + "parent": "a5e-ag_a-symbol-that-strikes-fear" + } + } +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/ClassFeature.json b/data/v2/wizards-of-the-coast/srd/ClassFeature.json index b5d1225b..0314aadd 100644 --- a/data/v2/wizards-of-the-coast/srd/ClassFeature.json +++ b/data/v2/wizards-of-the-coast/srd/ClassFeature.json @@ -1,1842 +1,1842 @@ [ - { - "model": "api_v2.classfeature", - "pk": "srd_paladin_aura-of-protection", - "fields": { - "name": "Aura of Protection", - "desc": "Starting at 6th level, whenever you or a friendly creature within 10 feet of you must make a saving throw, the creature gains a bonus to the saving throw equal to your Charisma modifier (with a minimum bonus of +1). You must be conscious to grant this bonus.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", - "document": "srd", - "parent": "srd_paladin" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_rogue_stroke-of-luck", - "fields": { - "name": "Stroke of Luck", - "desc": "At 20th level, you have an uncanny knack for succeeding when you need to. If your attack misses a target within range, you can turn the miss into a hit. Alternatively, if you fail an ability check, you can treat the d20 roll as a 20.\r\n\r\nOnce you use this feature, you can't use it again until you finish a short or long rest.", - "document": "srd", - "parent": "srd_rogue" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_fighter_action-surge", - "fields": { - "name": "Action Surge", - "desc": "Starting at 2nd level, you can push yourself beyond your normal limits for a moment. On your turn, you can take one additional action on top of your regular action and a possible bonus action.\r\n\r\nOnce you use this feature, you must finish a short or long rest before you can use it again. Starting at 17th level, you can use it twice before a rest, but only once on the same turn.", - "document": "srd", - "parent": "srd_fighter" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_champion_additional-fighting-style", - "fields": { - "name": "Additional Fighting Style", - "desc": "At 10th level, you can choose a second option from the Fighting Style class feature.", - "document": "srd", - "parent": "srd_champion" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_college-of-lore_additional-magical-secrets", - "fields": { - "name": "Additional Magical Secrets", - "desc": "At 6th level, you learn two spells of your choice from any class. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip. The chosen spells count as bard spells for you but don't count against the number of bard spells you know.", - "document": "srd", - "parent": "srd_college-of-lore" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_wizard_arcane-recovery", - "fields": { - "name": "Arcane Recovery", - "desc": "You have learned to regain some of your magical energy by studying your spellbook. Once per day when you finish a short rest, you can choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.\r\n\r\nFor example, if you're a 4th-level wizard, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level spell slot or two 1st-level spell slots.", - "document": "srd", - "parent": "srd_wizard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_wizard_arcane-tradition", - "fields": { - "name": "Arcane Tradition", - "desc": "When you reach 2nd level, you choose an arcane tradition, shaping your practice of magic through one of eight schools: Abjuration, Conjuration, Divination, Enchantment, Evocation, Illusion, Necromancy, or Transmutation, all detailed at the end of the class description.\r\n\r\nYour choice grants you features at 2nd level and again at 6th, 10th, and 14th level.", - "document": "srd", - "parent": "srd_wizard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_druid_archdruid", - "fields": { - "name": "Archdruid", - "desc": "At 20th level, you can use your Wild Shape an unlimited number of times.\r\n\r\nAdditionally, you can ignore the verbal and somatic components of your druid spells, as well as any material components that lack a cost and aren't consumed by a spell. You gain this benefit in both your normal shape and your beast shape from Wild Shape.", - "document": "srd", - "parent": "srd_druid" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_paladin_aura-of-courage", - "fields": { - "name": "Aura of Courage", - "desc": "Starting at 10th level, you and friendly creatures within 10 feet of you can't be frightened while you are conscious.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", - "document": "srd", - "parent": "srd_paladin" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_oath-of-devotion_aura-of-devotion", - "fields": { - "name": "Aura of Devotion", - "desc": "Starting at 7th level, you and friendly creatures within 10 feet of you can't be charmed while you are conscious.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", - "document": "srd", - "parent": "srd_oath-of-devotion" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can’t increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_extra-attack", - "fields": { - "name": "Extra Attack", - "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_unarmored-defense", - "fields": { - "name": "Unarmored Defense", - "desc": "While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_bard_ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "srd_bard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_bard_bard-college", - "fields": { - "name": "Bard College", - "desc": "At 3rd level, you delve into the advanced techniques of a bard college of your choice: the College of Lore or the College of Valor, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th and 14th level.", - "document": "srd", - "parent": "srd_bard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_bard_expertise", - "fields": { - "name": "Expertise", - "desc": "At 3rd level, choose two of your skill proficiencies. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.\r\n\r\nAt 10th level, you can choose another two skill proficiencies to gain this benefit.", - "document": "srd", - "parent": "srd_bard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_bard_spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "You have learned to untangle and reshape the fabric of reality in harmony with your wishes and music.\r\n\r\nYour spells are part of your vast repertoire, magic that you can tune to different situations.\r\n\r\n###Cantrips\r\n\r\nYou know two cantrips of your choice from the bard spell list. You learn additional bard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Bard table.\r\n\r\n###Spell Slots\r\n\r\nThe Bard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell cure wounds and have a 1st-level and a 2nd-level spell slot available, you can cast cure wounds using either slot.\r\n\r\n###Spells Known of 1st Level and Higher\r\n\r\nYou know four 1st-level spells of your choice from the bard spell list.\r\n\r\nThe Spells Known column of the Bard table shows when you learn more bard spells of your choice. Each of these spells must be of a level for which you have spell slots, as shown on the table. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the bard spells you know and replace it with another spell from the bard spell list, which also must be of a level for which you have spell slots.\r\n\r\n###Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your bard spells. Your magic comes from the heart and soul you pour into the performance of your music or oration. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a bard spell you cast and when making an attack roll with one.\r\n\r\n*Spell save DC* = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n*Spell attack modifier* = your proficiency bonus + your Charisma modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast any bard spell you know as a ritual if that spell has the ritual tag.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a musical instrument (see chapter 5, “Equipment”) as a spellcasting focus for your bard spells.", - "document": "srd", - "parent": "srd_bard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_bard_bardic-inspiration", - "fields": { - "name": "Bardic Inspiration", - "desc": "You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6.\r\n\r\nOnce within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time.\r\n\r\nYou can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest.\r\n\r\nYour Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level.", - "document": "srd", - "parent": "srd_bard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_druid_beast-spells", - "fields": { - "name": "Beast Spells", - "desc": "Beginning at 18th level, you can cast many of your druid spells in any shape you assume using Wild Shape. You can perform the somatic and verbal components of a druid spell while in a beast shape, but you aren't able to provide material components.", - "document": "srd", - "parent": "srd_druid" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_life-domain_blessed-healer", - "fields": { - "name": "Blessed Healer", - "desc": "Beginning at 6th level, the healing spells you cast on others heal you as well. When you cast a spell of 1st level or higher that restores hit points to a creature other than you, you regain hit points equal to 2 + the spell's level.", - "document": "srd", - "parent": "srd_life-domain" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_rogue_blindsense", - "fields": { - "name": "Blindsense", - "desc": "Starting at 14th level, if you are able to hear, you are aware of the location of any hidden or invisible creature within 10 feet of you.", - "document": "srd", - "parent": "srd_rogue" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_circle-of-the-land_bonus-cantrip", - "fields": { - "name": "Bonus Cantrip", - "desc": "When you choose this circle at 2nd level, you learn one additional druid cantrip of your choice.", - "document": "srd", - "parent": "srd_circle-of-the-land" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_college-of-lore_bonus-proficiencies", - "fields": { - "name": "Bonus Proficiencies", - "desc": "When you join the College of Lore at 3rd level, you gain proficiency with three skills of your choice.", - "document": "srd", - "parent": "srd_college-of-lore" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_brutal-critical", - "fields": { - "name": "Brutal Critical", - "desc": "Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack.\r\n\r\nThis increases to two additional dice at 13th level and three additional dice at 17th level.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_life-domain_channel-divinity-preserve-life", - "fields": { - "name": "Channel Divinity: Preserve Life", - "desc": "Starting at 2nd level, you can use your Channel Divinity to heal the badly injured.\r\n\r\nAs an action, you present your holy symbol and evoke healing energy that can restore a number of hit points equal to five times your cleric level. Choose any creatures within 30 feet of you, and divide those hit points among them. This feature can restore a creature to no more than half of its hit point maximum. You can't use this feature on an undead or a construct.", - "document": "srd", - "parent": "srd_life-domain" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_paladin_cleansing-touch", - "fields": { - "name": "Cleansing Touch", - "desc": "Beginning at 14th level, you can use your action to end one spell on yourself or on one willing creature that you touch.\r\n\r\nYou can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain expended uses when you finish a long rest.", - "document": "srd", - "parent": "srd_paladin" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_cleric_ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "srd_cleric" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_cleric_channel-divinity", - "fields": { - "name": "Channel Divinity", - "desc": "At 2nd level, you gain the ability to channel divine energy directly from your deity, using that energy to fuel magical effects. You start with two such effects: Turn Undead and an effect determined by your domain. Some domains grant you additional effects as you advance in levels, as noted in the domain description.\r\n\r\nWhen you use your Channel Divinity, you choose which effect to create. You must then finish a short or long rest to use your Channel Divinity again.\r\n\r\nSome Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your cleric spell save DC.\r\n\r\nBeginning at 6th level, you can use your Channel Divinity twice between rests, and beginning at 18th level, you can use it three times between rests. When you finish a short or long rest, you regain your expended uses.\r\n\r\n### Channel Divinity: Turn Undead\r\n\r\nAs an action, you present your holy symbol and speak a prayer censuring the undead. Each undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes any damage.\r\n\r\nA turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.", - "document": "srd", - "parent": "srd_cleric" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_cleric_spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "As a conduit for divine power, you can cast cleric spells.\r\n\r\n###Cantrips\r\n\r\nAt 1st level, you know three cantrips of your choice from the cleric spell list. You learn additional cleric cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Cleric table.\r\nPreparing and Casting Spells\r\n\r\nThe Cleric table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of cleric spells that are available for you to cast, choosing from the cleric spell list. When you do so, choose a number of cleric spells equal to your Wisdom modifier + your cleric level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 3rd-level cleric, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of cleric spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n###Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your cleric spells. The power of your spells comes from your devotion to your deity. You use your Wisdom whenever a cleric spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a cleric spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast a cleric spell as a ritual if that spell has the ritual tag and you have the spell prepared.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a holy symbol (see chapter 5, “Equipment”) as a spellcasting focus for your cleric spells.", - "document": "srd", - "parent": "srd_cleric" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_bard_countercharm", - "fields": { - "name": "Countercharm", - "desc": "At 6th level, you gain the ability to use musical notes or words of power to disrupt mind-influencing effects. As an action, you can start a performance that lasts until the end of your next turn. During that time, you and any friendly creatures within 30 feet of you have advantage on saving throws against being frightened or charmed. A creature must be able to hear you to gain this benefit. The performance ends early if you are incapacitated or silenced or if you voluntarily end it (no action required).", - "document": "srd", - "parent": "srd_bard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_rogue_cunning-action", - "fields": { - "name": "Cunning Action", - "desc": "Starting at 2nd level, your quick thinking and agility allow you to move and act quickly. You can take a bonus action on each of your turns in combat. This action can be used only to take the Dash, Disengage, or Hide action.", - "document": "srd", - "parent": "srd_rogue" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_college-of-lore_cutting-words", - "fields": { - "name": "Cutting Words", - "desc": "Also at 3rd level, you learn how to use your wit to distract, confuse, and otherwise sap the confidence and competence of others. When a creature that you can see within 60 feet of you makes an attack roll, an ability check, or a damage roll, you can use your reaction to expend one of your uses of Bardic Inspiration, rolling a Bardic Inspiration die and subtracting the number rolled from the creature's roll. You can choose to use this feature after the creature makes its roll, but before the GM determines whether the attack roll or ability check succeeds or fails, or before the creature deals its damage. The creature is immune if it can't hear you or if it's immune to being charmed.", - "document": "srd", - "parent": "srd_college-of-lore" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_danger-sense", - "fields": { - "name": "Danger Sense", - "desc": "At 2nd level, you gain an uncanny sense of when things nearby aren’t as they should be, giving you an edge when you dodge away from danger.\r\n\r\nYou have advantage on Dexterity saving throws against effects that you can see, such as traps and spells. To gain this benefit, you can’t be blinded, deafened, or incapacitated.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_the-fiend_dark-ones-blessing", - "fields": { - "name": "Dark One's Blessing", - "desc": "Starting at 1st level, when you reduce a hostile creature to 0 hit points, you gain temporary hit points equal to your Charisma modifier + your warlock level (minimum of 1).", - "document": "srd", - "parent": "srd_the-fiend" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_the-fiend_dark-ones-own-luck", - "fields": { - "name": "Dark One's Own Luck", - "desc": "Starting at 6th level, you can call on your patron to alter fate in your favor. When you make an ability check or a saving throw, you can use this feature to add a d10 to your roll. You can do so after seeing the initial roll but before any of the roll's effects occur.\r\n\r\nOnce you use this feature, you can't use it again until you finish a short or long rest.", - "document": "srd", - "parent": "srd_the-fiend" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_hunter_defensive-tactics", - "fields": { - "name": "Defensive Tactics", - "desc": "At 7th level, you gain one of the following features of your choice.\r\n\r\n***Escape the Horde.*** Opportunity attacks against you are made with disadvantage.\r\n\r\n***Multiattack Defense.*** When a creature hits you with an attack, you gain a +4 bonus to AC against all subsequent attacks made by that creature for the rest of the turn.\r\n\r\n***Steel Will.*** You have advantage on saving throws against being frightened.", - "document": "srd", - "parent": "srd_hunter" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_deflect-missiles", - "fields": { - "name": "Deflect Missiles", - "desc": "Starting at 3rd level, you can use your reaction to deflect or catch the missile when you are hit by a ranged weapon attack. When you do so, the damage you take from the attack is reduced by 1d10 + your Dexterity modifier + your monk level.\r\n\r\nIf you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in one hand and you have at least one hand free. If you catch a missile in this way, you can spend 1 ki point to make a ranged attack with the weapon or piece of ammunition you just caught, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and the missile counts as a monk weapon for the attack, which has a normal range of 20 feet and a long range of 60 feet.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_cleric_destroy-undead", - "fields": { - "name": "Destroy Undead", - "desc": "Starting at 5th level, when an undead fails its saving throw against your Turn Undead feature, the creature is instantly destroyed if its challenge rating is at or below a certain threshold, as shown in the Destroy Undead table. \r\n\r\n### Destroy Undead (table)\r\n\r\n| Cleric Level | Destroys Undead of CR... | \r\n|---|---|\r\n| 5th | 1/2 or lower |\r\n| 8th | 1 or lower |\r\n| 11th | 2 or lower |\r\n| 14th | 3 or lower | \r\n| 17th | 4 or lower |", - "document": "srd", - "parent": "srd_cleric" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_oath-of-devotion_channel-divinity", - "fields": { - "name": "Channel Divinity", - "desc": "When you take this oath at 3rd level, you gain the following two Channel Divinity options.\r\n\r\n**Sacred Weapon.** As an action, you can imbue one weapon that you are holding with positive energy, using your Channel Divinity. For 1 minute, you add your Charisma modifier to attack rolls made with that weapon (with a minimum bonus of +1). The weapon also emits bright light in a 20-foot radius and dim light 20 feet beyond that. If the weapon is not already magical, it becomes magical for the duration.\r\n\r\nYou can end this effect on your turn as part of any other action. If you are no longer holding or carrying this weapon, or if you fall unconscious, this effect ends.\r\n\r\n**Turn the Unholy.** As an action, you present your holy symbol and speak a prayer censuring fiends and undead, using your Channel Divinity. Each fiend or undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes damage.\r\n\r\nA turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.", - "document": "srd", - "parent": "srd_oath-of-devotion" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_oath-of-devotion_oath-spells", - "fields": { - "name": "Oath Spells", - "desc": "You gain oath spells at the paladin levels listed.\r\n\r\n### Oath of Devotion Spells\r\n| Paladin Level | Spells |\r\n| --- | --- |\r\n| 3rd | protection from evil and good, sanctuary |\r\n| 5th | lesser restoration, zone of truth |\r\n| 9th | beacon of hope, dispel magic |\r\n| 13th | freedom of movement, guardian of faith |\r\n| 17th | commune, flame strike |", - "document": "srd", - "parent": "srd_oath-of-devotion" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_diamond-soul", - "fields": { - "name": "Diamond Soul", - "desc": "Beginning at 14th level, your mastery of ki grants you proficiency in all saving throws.\r\n\r\nAdditionally, whenever you make a saving throw and fail, you can spend 1 ki point to reroll it and take the second result.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_life-domain_disciple-of-life", - "fields": { - "name": "Disciple of Life", - "desc": "Also starting at 1st level, your healing spells are more effective. Whenever you use a spell of 1st level or higher to restore hit points to a creature, the creature regains additional hit points equal to 2 + the spell's level.", - "document": "srd", - "parent": "srd_life-domain" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_cleric_divine-domain", - "fields": { - "name": "Divine Domain", - "desc": "Choose one domain related to your deity, such as Life. Each domain is detailed at the end of the class description, and each one provides examples of gods associated with it. Your choice grants you domain spells and other features when you choose it at 1st level. It also grants you additional ways to use Channel Divinity when you gain that feature at 2nd level, and additional benefits at 6th, 8th, and 17th levels.\r\n\r\n### Domain Spells\r\nEach domain has a list of spells—its domain spells—that you gain at the cleric levels noted in the domain description. Once you gain a domain spell, you always have it prepared, and it doesn’t count against the number of spells you can prepare each day. \r\nIf you have a domain spell that doesn’t appear on the cleric spell list, the spell is nonetheless a cleric spell for you.", - "document": "srd", - "parent": "srd_cleric" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_paladin_divine-health", - "fields": { - "name": "Divine Health", - "desc": "By 3rd level, the divine magic flowing through you makes you immune to disease.", - "document": "srd", - "parent": "srd_paladin" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_cleric_divine-intervention", - "fields": { - "name": "Divine Intervention", - "desc": "Beginning at 10th level, you can call on your deity to intervene on your behalf when your need is great.\r\n\r\nImploring your deity's aid requires you to use your action. Describe the assistance you seek, and roll percentile dice. If you roll a number equal to or lower than your cleric level, your deity intervenes. The GM chooses the nature of the intervention; the effect of any cleric spell or cleric domain spell would be appropriate.\r\n\r\nIf your deity intervenes, you can't use this feature again for 7 days. Otherwise, you can use it again after you finish a long rest.\r\n\r\nAt 20th level, your call for intervention succeeds automatically, no roll required.", - "document": "srd", - "parent": "srd_cleric" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_paladin_divine-sense", - "fields": { - "name": "Divine Sense", - "desc": "The presence of strong evil registers on your senses like a noxious odor, and powerful good rings like heavenly music in your ears. As an action, you can open your awareness to detect such forces. Until the end of your next turn, you know the location of any celestial, fiend, or undead within 60 feet of you that is not behind total cover. You know the type (celestial, fiend, or undead) of any being whose presence you sense, but not its identity (the vampire Count Strahd von Zarovich, for instance). Within the same radius, you also detect the presence of any place or object that has been consecrated or desecrated, as with the hallow spell.\r\n\r\nYou can use this feature a number of times equal to 1 + your Charisma modifier. When you finish a long rest, you regain all expended uses.", - "document": "srd", - "parent": "srd_paladin" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_paladin_divine-smite", - "fields": { - "name": "Divine Smite", - "desc": "Starting at 2nd level, when you hit a creature with a melee weapon attack, you can expend one spell slot to deal radiant damage to the target, in addition to the weapon's damage. The extra damage is 2d8 for a 1st-level spell slot, plus 1d8 for each spell level higher than 1st, to a maximum of 5d8. The damage increases by 1d8 if the target is an undead or a fiend.", - "document": "srd", - "parent": "srd_paladin" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_life-domain_divine-strike", - "fields": { - "name": "Divine Strike", - "desc": "At 8th level, you gain the ability to infuse your weapon strikes with divine energy. Once on each of your turns when you hit a creature with a weapon attack, you can cause the attack to deal an extra 1d8 radiant damage to the target. When you reach 14th level, the extra damage increases to 2d8.", - "document": "srd", - "parent": "srd_life-domain" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_draconic-bloodline_draconic-presence", - "fields": { - "name": "Draconic Presence", - "desc": "Beginning at 18th level, you can channel the dread presence of your dragon ancestor, causing those around you to become awestruck or frightened. As an action, you can spend 5 sorcery points to draw on this power and exude an aura of awe or fear (your choice) to a distance of 60 feet. For 1 minute or until you lose your concentration (as if you were casting a concentration spell), each hostile creature that starts its turn in this aura must succeed on a Wisdom saving throw or be charmed (if you chose awe) or frightened (if you chose fear) until the aura ends. A creature that succeeds on this saving throw is immune to your aura for 24 hours.", - "document": "srd", - "parent": "srd_draconic-bloodline" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_draconic-bloodline_draconic-resilience", - "fields": { - "name": "Draconic Resilience", - "desc": "As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class.\r\n\r\nAdditionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.", - "document": "srd", - "parent": "srd_draconic-bloodline" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_draconic-bloodline_dragon-ancestor", - "fields": { - "name": "Dragon Ancestor", - "desc": "At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.\r\n\r\n### Draconic Ancestry (table)\r\n| Dragon | Damage Type |\r\n| --- | --- |\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |\r\n\r\nYou can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.", - "document": "srd", - "parent": "srd_draconic-bloodline" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_draconic-bloodline_dragon-wings", - "fields": { - "name": "Dragon Wings", - "desc": "At 14th level, you gain the ability to sprout a pair of dragon wings from your back, gaining a flying speed equal to your current speed. You can create these wings as a bonus action on your turn. They last until you dismiss them as a bonus action on your turn.\r\n\r\nYou can't manifest your wings while wearing armor unless the armor is made to accommodate them, and clothing not made to accommodate your wings might be destroyed when you manifest them.", - "document": "srd", - "parent": "srd_draconic-bloodline" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_druid_ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "srd_druid" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_druid_druid-circle", - "fields": { - "name": "Druid Circle", - "desc": "At 2nd level, you choose to identify with a circle of druids such as the Circle of the Land. Your choice grants you features at 2nd level and again at 6th, 10th, and 14th level.", - "document": "srd", - "parent": "srd_druid" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_druid_spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "Drawing on the divine essence of nature itself, you can cast spells to shape that essence to your will.\r\n\r\n###Cantrips\r\n\r\nAt 1st level, you know two cantrips of your choice from the druid spell list. You learn additional druid cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Druid table.\r\n\r\n###Preparing and Casting Spells\r\n\r\nThe Druid table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these druid spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of druid spells that are available for you to cast, choosing from the druid spell list. When you do so, choose a number of druid spells equal to your Wisdom modifier + your druid level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 3rd-level druid, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can also change your list of prepared spells when you finish a long rest. Preparing a new list of druid spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n###Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your druid spells, since your magic draws upon your devotion and attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a druid spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast a druid spell as a ritual if that spell has the ritual tag and you have the spell prepared.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a druidic focus (see chapter 5, “Equipment”) as a spellcasting focus for your druid spells.", - "document": "srd", - "parent": "srd_druid" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_druid_timeless-body", - "fields": { - "name": "Timeless Body", - "desc": "Starting at 18th level, the primal magic that you wield causes you to age more slowly. For every 10 years that pass, your body ages only 1 year.", - "document": "srd", - "parent": "srd_druid" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_druid_druidic", - "fields": { - "name": "Druidic", - "desc": "You know Druidic, the secret language of druids. You can speak the language and use it to leave hidden messages. You and others who know this language automatically spot such a message. Others spot the message's presence with a successful DC 15 Wisdom (Perception) check but can't decipher it without magic.", - "document": "srd", - "parent": "srd_druid" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_warlock_eldritch-invocation-list", - "fields": { - "name": "Eldritch Invocation List", - "desc": "If an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.\r\n\r\n### Agonizing Blast\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you cast eldritch blast, add your Charisma modifier to the damage it deals on a hit.\r\nArmor of Shadows\r\n\r\nYou can cast mage armor on yourself at will, without expending a spell slot or material components.\r\n\r\n### Ascendant Step\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast levitate on yourself at will, without expending a spell slot or material components.\r\n\r\n### Beast Speech\r\n\r\nYou can cast speak with animals at will, without expending a spell slot.\r\n\r\n### Beguiling Influence\r\n\r\nYou gain proficiency in the Deception and Persuasion skills.\r\n\r\n### Bewitching Whispers\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast compulsion once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Book of Ancient Secrets\r\n\r\nPrerequisite: Pact of the Tome feature\r\n\r\nYou can now inscribe magical rituals in your Book of Shadows. Choose two 1st-level spells that have the ritual tag from any class's spell list (the two needn't be from the same list). The spells appear in the book and don't count against the number of spells you know. With your Book of Shadows in hand, you can cast the chosen spells as rituals. You can't cast the spells except as rituals, unless you've learned them by some other means. You can also cast a warlock spell you know as a ritual if it has the ritual tag.\r\n\r\nOn your adventures, you can add other ritual spells to your Book of Shadows. When you find such a spell, you can add it to the book if the spell's level is equal to or less than half your warlock level (rounded up) and if you can spare the time to transcribe the spell. For each level of the spell, the transcription process takes 2 hours and costs 50 gp for the rare inks needed to inscribe it.\r\n\r\n### Chains of Carceri\r\n\r\nPrerequisite: 15th level, Pact of the Chain feature\r\n\r\nYou can cast hold monster at will-targeting a celestial, fiend, or elemental-without expending a spell slot or material components. You must finish a long rest before you can use this invocation on the same creature again.\r\n\r\n### Devil's Sight\r\n\r\nYou can see normally in darkness, both magical and nonmagical, to a distance of 120 feet.\r\n\r\n### Dreadful Word\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast confusion once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Eldritch Sight\r\n\r\nYou can cast detect magic at will, without expending a spell slot.\r\n\r\n### Eldritch Spear\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you cast eldritch blast, its range is 300 feet.\r\n\r\n### Eyes of the Rune Keeper\r\n\r\nYou can read all writing.\r\n\r\n### Fiendish Vigor\r\n\r\nYou can cast false life on yourself at will as a 1st-level spell, without expending a spell slot or material components.\r\n\r\n### Gaze of Two Minds\r\n\r\nYou can use your action to touch a willing humanoid and perceive through its senses until the end of your next turn. As long as the creature is on the same plane of existence as you, you can use your action on subsequent turns to maintain this connection, extending the duration until the end of your next turn. While perceiving through the other creature's senses, you benefit from any special senses possessed by that creature, and you are blinded and deafened to your own surroundings.\r\n\r\n### Lifedrinker\r\n\r\nPrerequisite: 12th level, Pact of the Blade feature\r\n\r\nWhen you hit a creature with your pact weapon, the creature takes extra necrotic damage equal to your Charisma modifier (minimum 1).\r\n\r\n### Mask of Many Faces\r\n\r\nYou can cast disguise self at will, without expending a spell slot.\r\n\r\n### Master of Myriad Forms\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can cast alter self at will, without expending a spell slot.\r\n\r\n### Minions of Chaos\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast conjure elemental once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Mire the Mind\r\n\r\nPrerequisite: 5th level\r\n\r\nYou can cast slow once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Misty Visions\r\n\r\nYou can cast silent image at will, without expending a spell slot or material components.\r\n\r\n### One with Shadows\r\n\r\nPrerequisite: 5th level\r\n\r\nWhen you are in an area of dim light or darkness, you can use your action to become invisible until you move or take an action or a reaction.\r\n\r\n### Otherworldly Leap\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast jump on yourself at will, without expending a spell slot or material components.\r\n\r\n### Repelling Blast\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you hit a creature with eldritch blast, you can push the creature up to 10 feet away from you in a straight line.\r\n\r\n### Sculptor of Flesh\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast polymorph once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Sign of Ill Omen\r\n\r\nPrerequisite: 5th level\r\n\r\nYou can cast bestow curse once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Thief of Five Fates\r\n\r\nYou can cast bane once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Thirsting Blade\r\n\r\nPrerequisite: 5th level, Pact of the Blade feature\r\n\r\nYou can attack with your pact weapon twice, instead of once, whenever you take the Attack action on your turn.\r\n\r\n### Visions of Distant Realms\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can cast arcane eye at will, without expending a spell slot.\r\n\r\n### Voice of the Chain Master\r\n\r\nPrerequisite: Pact of the Chain feature\r\n\r\nYou can communicate telepathically with your familiar and perceive through your familiar's senses as long as you are on the same plane of existence. Additionally, while perceiving through your familiar's senses, you can also speak through your familiar in your own voice, even if your familiar is normally incapable of speech.\r\n\r\n### Whispers of the Grave\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast speak with dead at will, without expending a spell slot.\r\n\r\n### Witch Sight\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can see the true form of any shapechanger or creature concealed by illusion or transmutation magic while the creature is within 30 feet of you and within line of sight.", - "document": "srd", - "parent": "srd_warlock" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_warlock_eldritch-invocations", - "fields": { - "name": "Eldritch Invocations", - "desc": "In your study of occult lore, you have unearthed eldritch invocations, fragments of forbidden knowledge that imbue you with an abiding magical ability.\r\n\r\nAt 2nd level, you gain two eldritch invocations of your choice. Your invocation options are detailed at the end of the class description. When you gain certain warlock levels, you gain additional invocations of your choice, as shown in the Invocations Known column of the Warlock table.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the invocations you know and replace it with another invocation that you could learn at that level.", - "document": "srd", - "parent": "srd_warlock" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_warlock_eldritch-master", - "fields": { - "name": "Eldritch Master", - "desc": "At 20th level, you can draw on your inner reserve of mystical power while entreating your patron to regain expended spell slots. You can spend 1 minute entreating your patron for aid to regain all your expended spell slots from your Pact Magic feature. Once you regain spell slots with this feature, you must finish a long rest before you can do so again.", - "document": "srd", - "parent": "srd_warlock" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_draconic-bloodline_elemental-affinity", - "fields": { - "name": "Elemental Affinity", - "desc": "Starting at 6th level, when you cast a spell that deals damage of the type associated with your draconic ancestry, you can add your Charisma modifier to one damage roll of that spell. At the same time, you can spend 1 sorcery point to gain resistance to that damage type for 1 hour.", - "document": "srd", - "parent": "srd_draconic-bloodline" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_rogue_elusive", - "fields": { - "name": "Elusive", - "desc": "Beginning at 18th level, you are so evasive that attackers rarely gain the upper hand against you. No attack roll has advantage against you while you aren't incapacitated.", - "document": "srd", - "parent": "srd_rogue" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_school-of-evocation_empowered-evocation", - "fields": { - "name": "Empowered Evocation", - "desc": "Beginning at 10th level, you can add your Intelligence modifier to one damage roll of any wizard evocation spell you cast.", - "document": "srd", - "parent": "srd_school-of-evocation" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_empty-body", - "fields": { - "name": "Empty Body", - "desc": "Beginning at 18th level, you can use your action to spend 4 ki points to become invisible for 1 minute. During that time, you also have resistance to all damage but force damage.\r\n\r\nAdditionally, you can spend 8 ki points to cast the astral projection spell, without needing material components. When you do so, you can't take any other creatures with you.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_school-of-evocation_evocation-savant", - "fields": { - "name": "Evocation Savant", - "desc": "Beginning when you select this school at 2nd level, the gold and time you must spend to copy an evocation spell into your spellbook is halved.", - "document": "srd", - "parent": "srd_school-of-evocation" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_the-fiend_expanded-spell-list", - "fields": { - "name": "Expanded Spell List", - "desc": "The Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\r\n\r\n### Fiend Expanded Spells (table)\r\n| Spell Level | Spells |\r\n| --- | --- |\r\n| 1st | burning hands, command |\r\n| 2nd | blindness/deafness, scorching ray |\r\n| 3rd | fireball, stinking cloud |\r\n| 4th | fire shield, wall of fire |\r\n| 5th | flame strike, hallow |", - "document": "srd", - "parent": "srd_the-fiend" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_thief_fast-hands", - "fields": { - "name": "Fast Hands", - "desc": "Starting at 3rd level, you can use the bonus action granted by your Cunning Action to make a Dexterity (Sleight of Hand) check, use your thieves' tools to disarm a trap or open a lock, or take the Use an Object action.", - "document": "srd", - "parent": "srd_thief" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_fast-movement", - "fields": { - "name": "Fast Movement", - "desc": "Starting at 5th level, your speed increases by 10 feet while you aren’t wearing heavy armor.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_ranger_favored-enemy", - "fields": { - "name": "Favored Enemy", - "desc": "Beginning at 1st level, you have significant experience studying, tracking, hunting, and even talking to a certain type of enemy.\r\n\r\nChoose a type of favored enemy: aberrations, beasts, celestials, constructs, dragons, elementals, fey, fiends, giants, monstrosities, oozes, plants, or undead. Alternatively, you can select two races of humanoid (such as gnolls and orcs) as favored enemies.\r\n\r\nYou have advantage on Wisdom (Survival) checks to track your favored enemies, as well as on Intelligence checks to recall information about them.\r\n\r\nWhen you gain this feature, you also learn one language of your choice that is spoken by your favored enemies, if they speak one at all.\r\n\r\nYou choose one additional favored enemy, as well as an associated language, at 6th and 14th level. As you gain levels, your choices should reflect the types of monsters you have encountered on your adventures.", - "document": "srd", - "parent": "srd_ranger" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_feral-instinct", - "fields": { - "name": "Feral Instinct", - "desc": "By 7th level, your instincts are so honed that you have advantage on initiative rolls.\r\n\r\nAdditionally, if you are surprised at the beginning of combat and aren’t incapacitated, you can act normally on your first turn, but only if you enter your rage before doing anything else on that turn.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_ranger_feral-senses", - "fields": { - "name": "Feral Senses", - "desc": "At 18th level, you gain preternatural senses that help you fight creatures you can't see. When you attack a creature you can't see, your inability to see it doesn't impose disadvantage on your attack rolls against it.\r\n\r\nYou are also aware of the location of any invisible creature within 30 feet of you, provided that the creature isn't hidden from you and you aren't blinded or deafened.", - "document": "srd", - "parent": "srd_ranger" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_the-fiend_fiendish-resilience", - "fields": { - "name": "Fiendish Resilience", - "desc": "Starting at 10th level, you can choose one damage type when you finish a short or long rest. You gain resistance to that damage type until you choose a different one with this feature. Damage from magical weapons or silver weapons ignores this resistance.", - "document": "srd", - "parent": "srd_the-fiend" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_fighter_ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 6th, 8th, 12th, 14th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "srd_fighter" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_fighter_extra-attack", - "fields": { - "name": "Extra Attack", - "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.\r\n\r\nThe number of attacks increases to three when you reach 11th level in this class and to four when you reach 20th level in this class.", - "document": "srd", - "parent": "srd_fighter" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_fighter_fighting-style", - "fields": { - "name": "Fighting Style", - "desc": "You adopt a particular style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n###Archery\r\n\r\nYou gain a +2 bonus to attack rolls you make with ranged weapons.\r\n\r\n###Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n###Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n###Great Weapon Fighting\r\n\r\nWhen you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2. The weapon must have the two-handed or versatile property for you to gain this benefit.\r\n\r\n###Protection\r\n\r\nWhen a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.\r\n\r\n###Two-Weapon Fighting\r\n\r\nWhen you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.", - "document": "srd", - "parent": "srd_fighter" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_ranger_foe-slayer", - "fields": { - "name": "Foe Slayer", - "desc": "At 20th level, you become an unparalleled hunter of your enemies. Once on each of your turns, you can add your Wisdom modifier to the attack roll or the damage roll of an attack you make against one of your favored enemies. You can choose to use this feature before or after the roll, but before any effects of the roll are applied.", - "document": "srd", - "parent": "srd_ranger" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_bard_font-of-inspiration", - "fields": { - "name": "Font of Inspiration", - "desc": "Beginning when you reach 5th level, you regain all of your expended uses of Bardic Inspiration when you finish a short or long rest.", - "document": "srd", - "parent": "srd_bard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_sorcerer_font-of-magic", - "fields": { - "name": "Font of Magic", - "desc": "At 2nd level, you tap into a deep wellspring of magic within yourself. This wellspring is represented by sorcery points, which allow you to create a variety of magical effects.\r\n\r\n### Sorcery Points\r\n\r\nYou have 2 sorcery points, and you gain more as you reach higher levels, as shown in the Sorcery Points column of the Sorcerer table. You can never have more sorcery points than shown on the table for your level. You regain all spent sorcery points when you finish a long rest.\r\n\r\n### Flexible Casting\r\n\r\nYou can use your sorcery points to gain additional spell slots, or sacrifice spell slots to gain additional sorcery points. You learn other ways to use your sorcery points as you reach higher levels.\r\n\r\n***Creating Spell Slots.*** You can transform unexpended sorcery points into one spell slot as a bonus action on your turn. The Creating Spell Slots table shows the cost of creating a spell slot of a given level. You can create spell slots no higher in level than 5th.\r\n\r\nAny spell slot you create with this feature vanishes when you finish a long rest.\r\n\r\n### Creating Spell Slots (table)\r\n| Spell Slot Level | Sorcery Point Cost |\r\n| --- | --- |\r\n| 1st | 2 |\r\n| 2nd | 3 |\r\n| 3rd | 5 |\r\n| 4th | 6 |\r\n| 5th | 7|\r\n\r\n***Converting a Spell Slot to Sorcery Points.*** As a bonus action on your turn, you can expend one spell slot and gain a number of sorcery points equal to the slot's level.", - "document": "srd", - "parent": "srd_sorcerer" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_path-of-the-berserker_frenzy", - "fields": { - "name": "Frenzy", - "desc": "Starting when you choose this path at 3rd level, you can go into a frenzy when you rage. If you do so, for the duration of your rage you can make a single melee weapon attack as a bonus action on each of your turns after this one. When your rage ends, you suffer one level of exhaustion (as described in appendix A).", - "document": "srd", - "parent": "srd_path-of-the-berserker" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_ranger_hide-in-plain-sight", - "fields": { - "name": "Hide in Plain Sight", - "desc": "Starting at 10th level, you can spend 1 minute creating camouflage for yourself. You must have access to fresh mud, dirt, plants, soot, and other naturally occurring materials with which to create your camouflage.\r\n\r\nOnce you are camouflaged in this way, you can try to hide by pressing yourself up against a solid surface, such as a tree or wall, that is at least as tall and wide as you are. You gain a +10 bonus to Dexterity (Stealth) checks as long as you remain there without moving or taking actions. Once you move or take an action or a reaction, you must camouflage yourself again to gain this benefit.", - "document": "srd", - "parent": "srd_ranger" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_oath-of-devotion_holy-nimbus", - "fields": { - "name": "Holy Nimbus", - "desc": "At 20th level, as an action, you can emanate an aura of sunlight. For 1 minute, bright light shines from you in a 30-foot radius, and dim light shines 30 feet beyond that.\r\n\r\nWhenever an enemy creature starts its turn in the bright light, the creature takes 10 radiant damage.\r\n\r\nIn addition, for the duration, you have advantage on saving throws against spells cast by fiends or undead.\r\n\r\nOnce you use this feature, you can't use it again until you finish a long rest.", - "document": "srd", - "parent": "srd_oath-of-devotion" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_hunter_hunters-prey", - "fields": { - "name": "Hunter's Prey", - "desc": "At 3rd level, you gain one of the following features of your choice.\r\n\r\n***Colossus Slayer.*** Your tenacity can wear down the most potent foes. When you hit a creature with a weapon attack, the creature takes an extra 1d8 damage if it's below its hit point maximum. You can deal this extra damage only once per turn.\r\n\r\n***Giant Killer.*** When a Large or larger creature within 5 feet of you hits or misses you with an attack, you can use your reaction to attack that creature immediately after its attack, provided that you can see the creature.\r\n\r\n***Horde Breaker.*** Once on each of your turns when you make a weapon attack, you can make another attack with the same weapon against a different creature that is within 5 feet of the original target and within range of your weapon.", - "document": "srd", - "parent": "srd_hunter" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_the-fiend_hurl-through-hell", - "fields": { - "name": "Hurl Through Hell", - "desc": "Starting at 14th level, when you hit a creature with an attack, you can use this feature to instantly transport the target through the lower planes. The creature disappears and hurtles through a nightmare landscape.\r\n\r\nAt the end of your next turn, the target returns to the space it previously occupied, or the nearest unoccupied space. If the target is not a fiend, it takes 10d10 psychic damage as it reels from its horrific experience.\r\n\r\nOnce you use this feature, you can't use it again until you finish a long rest.", - "document": "srd", - "parent": "srd_the-fiend" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_champion_improved-critical", - "fields": { - "name": "Improved Critical", - "desc": "Beginning when you choose this archetype at 3rd level, your weapon attacks score a critical hit on a roll of 19 or 20.", - "document": "srd", - "parent": "srd_champion" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_paladin_improved-divine-smite", - "fields": { - "name": "Improved Divine Smite", - "desc": "By 11th level, you are so suffused with righteous might that all your melee weapon strikes carry divine power with them. Whenever you hit a creature with a melee weapon, the creature takes an extra 1d8 radiant damage. If you also use your Divine Smite with an attack, you add this damage to the extra damage of your Divine Smite.", - "document": "srd", - "parent": "srd_paladin" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_fighter_indomitable", - "fields": { - "name": "Indomitable", - "desc": "Beginning at 9th level, you can reroll a saving throw that you fail. If you do so, you must use the new roll, and you can't use this feature again until you finish a long rest.\r\n\r\nYou can use this feature twice between long rests starting at 13th level and three times between long rests starting at 17th level.", - "document": "srd", - "parent": "srd_fighter" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_indomitable-might", - "fields": { - "name": "Indomitable Might", - "desc": "Beginning at 18th level, if your total for a Strength check is less than your Strength score, you can use that score in place of the total.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_path-of-the-berserker_intimidating-presence", - "fields": { - "name": "Intimidating Presence", - "desc": "Beginning at 10th level, you can use your action to frighten someone with your menacing presence. When you do so, choose one creature that you can see within 30 feet of you. If the creature can see or hear you, it must succeed on a Wisdom saving throw (DC equal to 8 + your proficiency bonus + your Charisma modifier) or be frightened of you until the end of your next turn. On subsequent turns, you can use your action to extend the duration of this effect on the frightened creature until the end of your next turn. This effect ends if the creature ends its turn out of line of sight or more than 60 feet away from you.\r\n\r\nIf the creature succeeds on its saving throw, you can't use this feature on that creature again for 24 hours.", - "document": "srd", - "parent": "srd_path-of-the-berserker" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_bard_jack-of-all-trades", - "fields": { - "name": "Jack of All Trades", - "desc": "Starting at 2nd level, you can add half your proficiency bonus, rounded down, to any ability check you make that doesn't already include your proficiency bonus.", - "document": "srd", - "parent": "srd_bard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_ki", - "fields": { - "name": "Ki", - "desc": "Starting at 2nd level, your training allows you to harness the mystic energy of ki. Your access to this energy is represented by a number of ki points. Your monk level determines the number of points you have, as shown in the Ki Points column of the Monk table.\r\n\r\nYou can spend these points to fuel various ki features. You start knowing three such features: Flurry of Blows, Patient Defense, and Step of the Wind. You learn more ki features as you gain levels in this class.\r\n\r\nWhen you spend a ki point, it is unavailable until you finish a short or long rest, at the end of which you draw all of your expended ki back into yourself. You must spend at least 30 minutes of the rest meditating to regain your ki points.\r\n\r\nSome of your ki features require your target to make a saving throw to resist the feature's effects. The saving throw DC is calculated as follows:\r\n\r\n*Ki save DC* = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n### Flurry of Blows\r\n\r\nImmediately after you take the Attack action on your turn, you can spend 1 ki point to make two unarmed strikes as a bonus action. \r\n\r\n### Patient Defense\r\n\r\nYou can spend 1 ki point to take the Dodge action as a bonus action on your turn.\r\n\r\n### Step of the Wind\r\n\r\nYou can spend 1 ki point to take the Disengage or Dash action as a bonus action on your turn, and your jump distance is doubled for the turn.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_ki-empowered-strikes", - "fields": { - "name": "Ki-Empowered Strikes", - "desc": "Starting at 6th level, your unarmed strikes count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_circle-of-the-land_circle-spells", - "fields": { - "name": "Circle Spells", - "desc": "Your mystical connection to the land infuses you with the ability to cast certain spells. At 3rd, 5th, 7th, and 9th level you gain access to circle spells connected to the land where you became a druid. Choose that land-arctic, coast, desert, forest, grassland, mountain, or swamp-and consult the associated list of spells. \r\n\r\nOnce you gain access to a circle spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day. If you gain access to a spell that doesn't appear on the druid spell list, the spell is nonetheless a druid spell for you.\r\n\r\n**Arctic (table)**\r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | hold person, spike growth | \r\n| 5th | sleet storm, slow | \r\n| 7th | freedom of movement, ice storm | \r\n| 9th | commune with nature, cone of cold | \r\n \r\n**Coast (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | mirror image, misty step | \r\n| 5th | water breathing, water walk | \r\n| 7th | control water, freedom of movement | \r\n| 9th | conjure elemental, scrying | \r\n \r\n**Desert (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | blur, silence | \r\n| 5th | create food and water, protection from energy | \r\n| 7th | blight, hallucinatory terrain | \r\n| 9th | insect plague, wall of stone | \r\n \r\n**Forest (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | barkskin, spider climb | \r\n| 5th | call lightning, plant growth | \r\n| 7th | divination, freedom of movement | \r\n| 9th | commune with nature, tree stride | \r\n \r\n**Grassland (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | invisibility, pass without trace | \r\n| 5th | daylight, haste | \r\n| 7th | divination, freedom of movement | \r\n| 9th | dream, insect plague | \r\n \r\n**Mountain (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | spider climb, spike growth | \r\n| 5th | lightning bolt, meld into stone | \r\n| 7th | stone shape, stoneskin | \r\n| 9th | passwall, wall of stone | \r\n \r\n**Swamp (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | acid arrow, darkness | \r\n| 5th | water walk, stinking cloud | \r\n| 7th | freedom of movement, locate creature | \r\n| 9th | insect plague, scrying |", - "document": "srd", - "parent": "srd_circle-of-the-land" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_circle-of-the-land_lands-stride", - "fields": { - "name": "Land's Stride", - "desc": "Starting at 6th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.\r\n\r\nIn addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the entangle spell.", - "document": "srd", - "parent": "srd_circle-of-the-land" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_paladin_lay-on-hands", - "fields": { - "name": "Lay on Hands", - "desc": "Your blessed touch can heal wounds. You have a pool of healing power that replenishes when you take a long rest. With that pool, you can restore a total number of hit points equal to your paladin level × 5.\r\n\r\nAs an action, you can touch a creature and draw power from the pool to restore a number of hit points to that creature, up to the maximum amount remaining in your pool.\r\n\r\nAlternatively, you can expend 5 hit points from your pool of healing to cure the target of one disease or neutralize one poison affecting it. You can cure multiple diseases and neutralize multiple poisons with a single use of Lay on Hands, expending hit points separately for each one.\r\n\r\nThis feature has no effect on undead and constructs.", - "document": "srd", - "parent": "srd_paladin" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_life-domain_bonus-proficiency", - "fields": { - "name": "Bonus Proficiency", - "desc": "When you choose this domain at 1st level, you gain proficiency with heavy armor.", - "document": "srd", - "parent": "srd_life-domain" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_life-domain_life-domain-spells-table", - "fields": { - "name": "Life Domain Spells (table)", - "desc": "Cleric Level | Spells |\r\n|---|---|\r\n| 1st | bless, cure wounds | \r\n| 3rd | lesser restoration, spiritual weapon |\r\n| 5th | beacon of hope, revivify |\r\n| 7th | death ward, guardian of faith |\r\n| 9th | mass cure wounds, raise dead |", - "document": "srd", - "parent": "srd_life-domain" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_bard_magical-secrets", - "fields": { - "name": "Magical Secrets", - "desc": "By 10th level, you have plundered magical knowledge from a wide spectrum of disciplines. Choose two spells from any class, including this one. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.\r\n\r\nThe chosen spells count as bard spells for you and are included in the number in the Spells Known column of the Bard table.\r\n\r\nYou learn two additional spells from any class at 14th level and again at 18th level.", - "document": "srd", - "parent": "srd_bard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_fighter_martial-archetype", - "fields": { - "name": "Martial Archetype", - "desc": "At 3rd level, you choose an archetype that you strive to emulate in your combat styles and techniques, such as Champion. The archetype you choose grants you features at 3rd level and again at 7th, 10th, 15th, and 18th level.", - "document": "srd", - "parent": "srd_fighter" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_martial-arts", - "fields": { - "name": "Martial Arts", - "desc": "At 1st level, your practice of martial arts gives you mastery of combat styles that use unarmed strikes and monk weapons, which are shortswords and any simple melee weapons that don't have the two- handed or heavy property.\r\n\r\nYou gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:\r\n\r\n* You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.\r\n* You can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.\r\n* When you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn. \r\n\r\nCertain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_sorcerer_metamagic", - "fields": { - "name": "Metamagic", - "desc": "At 3rd level, you gain the ability to twist your spells to suit your needs. You gain two of the following Metamagic options of your choice. You gain another one at 10th and 17th level.\r\n\r\nYou can use only one Metamagic option on a spell when you cast it, unless otherwise noted.\r\n\r\n### Careful Spell\r\n\r\nWhen you cast a spell that forces other creatures to make a saving throw, you can protect some of those creatures from the spell's full force. To do so, you spend 1 sorcery point and choose a number of those creatures up to your Charisma modifier (minimum of one creature). A chosen creature automatically succeeds on its saving throw against the spell.\r\n\r\n### Distant Spell\r\n\r\nWhen you cast a spell that has a range of 5 feet or greater, you can spend 1 sorcery point to double the range of the spell.\r\n\r\nWhen you cast a spell that has a range of touch, you can spend 1 sorcery point to make the range of the spell 30 feet.\r\n\r\n### Empowered Spell\r\n\r\nWhen you roll damage for a spell, you can spend 1 sorcery point to reroll a number of the damage dice up to your Charisma modifier (minimum of one). You must use the new rolls.\r\n\r\nYou can use Empowered Spell even if you have already used a different Metamagic option during the casting of the spell.\r\n\r\n### Extended Spell\r\n\r\nWhen you cast a spell that has a duration of 1 minute or longer, you can spend 1 sorcery point to double its duration, to a maximum duration of 24 hours.\r\n\r\n### Heightened Spell\r\n\r\nWhen you cast a spell that forces a creature to make a saving throw to resist its effects, you can spend 3 sorcery points to give one target of the spell disadvantage on its first saving throw made against the spell.\r\n\r\n### Quickened Spell\r\n\r\nWhen you cast a spell that has a casting time of 1 action, you can spend 2 sorcery points to change the casting time to 1 bonus action for this casting.\r\n\r\n### Subtle Spell\r\n\r\nWhen you cast a spell, you can spend 1 sorcery point to cast it without any somatic or verbal components.\r\n\r\n### Twinned Spell\r\n\r\nWhen you cast a spell that targets only one creature and doesn't have a range of self, you can spend a number of sorcery points equal to the spell's level to target a second creature in range with the same spell (1 sorcery point if the spell is a cantrip).\r\n\r\nTo be eligible, a spell must be incapable of targeting more than one creature at the spell's current level. For example, magic missile and scorching ray aren't eligible, but ray of frost and chromatic orb are.", - "document": "srd", - "parent": "srd_sorcerer" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_path-of-the-berserker_mindless-rage", - "fields": { - "name": "Mindless Rage", - "desc": "Beginning at 6th level, you can't be charmed or frightened while raging. If you are charmed or frightened when you enter your rage, the effect is suspended for the duration of the rage.", - "document": "srd", - "parent": "srd_path-of-the-berserker" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_monastic-tradition", - "fields": { - "name": "Monastic Tradition", - "desc": "When you reach 3rd level, you commit yourself to a monastic tradition such as the Way of the Open Hand. Your tradition grants you features at 3rd level and again at 6th, 11th, and 17th level.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_evasion", - "fields": { - "name": "Evasion", - "desc": "At 7th level, your instinctive agility lets you dodge out of the way of certain area effects, such as a blue dragon's lightning breath or a fireball spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_extra-attack", - "fields": { - "name": "Extra Attack", - "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_timeless-body", - "fields": { - "name": "Timeless Body", - "desc": "At 15th level, your ki sustains you so that you suffer none of the frailty of old age, and you can't be aged magically. You can still die of old age, however. In addition, you no longer need food or water.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_unarmored-defense", - "fields": { - "name": "Unarmored Defense", - "desc": "Beginning at 1st level, while you are wearing no armor and not wielding a shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_hunter_multiattack", - "fields": { - "name": "Multiattack", - "desc": "At 11th level, you gain one of the following features of your choice.\r\n\r\n***Volley.*** You can use your action to make a ranged attack against any number of creatures within 10 feet of a point you can see within your weapon's range. You must have ammunition for each target, as normal, and you make a separate attack roll for each target.\r\n\r\n***Whirlwind Attack.*** You can use your action to make a melee attack against any number of creatures within 5 feet of you, with a separate attack roll for each target.", - "document": "srd", - "parent": "srd_hunter" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_warlock_mystic-arcanum", - "fields": { - "name": "Mystic Arcanum", - "desc": "At 11th level, your patron bestows upon you a magical secret called an arcanum. Choose one 6th- level spell from the warlock spell list as this arcanum.\r\n\r\nYou can cast your arcanum spell once without expending a spell slot. You must finish a long rest before you can do so again.\r\n\r\nAt higher levels, you gain more warlock spells of your choice that can be cast in this way: one 7th- level spell at 13th level, one 8th-level spell at 15th level, and one 9th-level spell at 17th level. You regain all uses of your Mystic Arcanum when you finish a long rest.", - "document": "srd", - "parent": "srd_warlock" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_ranger_natural-explorer", - "fields": { - "name": "Natural Explorer", - "desc": "You are particularly familiar with one type of natural environment and are adept at traveling and surviving in such regions. Choose one type of favored terrain: arctic, coast, desert, forest, grassland, mountain, or swamp. When you make an Intelligence or Wisdom check related to your favored terrain, your proficiency bonus is doubled if you are using a skill that you're proficient in.\r\n\r\nWhile traveling for an hour or more in your favored terrain, you gain the following benefits:\r\n\r\n* Difficult terrain doesn't slow your group's travel.\r\n* Your group can't become lost except by magical means.\r\n* Even when you are engaged in another activity while traveling (such as foraging, navigating, or tracking), you remain alert to danger.\r\n* If you are traveling alone, you can move stealthily at a normal pace.\r\n* When you forage, you find twice as much food as you normally would.\r\n* While tracking other creatures, you also learn their exact number, their sizes, and how long ago they passed through the area. \r\n\r\nYou choose additional favored terrain types at 6th and 10th level.", - "document": "srd", - "parent": "srd_ranger" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_circle-of-the-land_natural-recovery", - "fields": { - "name": "Natural Recovery", - "desc": "Starting at 2nd level, you can regain some of your magical energy by sitting in meditation and communing with nature. During a short rest, you choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your druid level (rounded up), and none of the slots can be 6th level or higher. You can't use this feature again until you finish a long rest.\r\n\r\nFor example, when you are a 4th-level druid, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level slot or two 1st-level slots.", - "document": "srd", - "parent": "srd_circle-of-the-land" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_circle-of-the-land_natures-sanctuary", - "fields": { - "name": "Nature's Sanctuary", - "desc": "When you reach 14th level, creatures of the natural world sense your connection to nature and become hesitant to attack you. When a beast or plant creature attacks you, that creature must make a Wisdom saving throw against your druid spell save DC. On a failed save, the creature must choose a different target, or the attack automatically misses. On a successful save, the creature is immune to this effect for 24 hours.\r\n\r\nThe creature is aware of this effect before it makes its attack against you.", - "document": "srd", - "parent": "srd_circle-of-the-land" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_circle-of-the-land_natures-ward", - "fields": { - "name": "Nature's Ward", - "desc": "When you reach 10th level, you can't be charmed or frightened by elementals or fey, and you are immune to poison and disease.", - "document": "srd", - "parent": "srd_circle-of-the-land" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_way-of-the-open-hand_open-hand-technique", - "fields": { - "name": "Open Hand Technique", - "desc": "Starting when you choose this tradition at 3rd level, you can manipulate your enemy's ki when you harness your own. Whenever you hit a creature with one of the attacks granted by your Flurry of Blows, you can impose one of the following effects on that target:\r\n\r\n* It must succeed on a Dexterity saving throw or be knocked prone.\r\n* It must make a Strength saving throw. If it fails, you can push it up to 15 feet away from you.\r\n* It can't take reactions until the end of your next turn.", - "document": "srd", - "parent": "srd_way-of-the-open-hand" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_warlock_otherworldly-patron", - "fields": { - "name": "Otherworldly Patron", - "desc": "At 1st level, you have struck a bargain with an otherworldly being of your choice: the Archfey, the Fiend, or the Great Old One, each of which is detailed at the end of the class description. Your choice grants you features at 1st level and again at 6th, 10th, and 14th level.", - "document": "srd", - "parent": "srd_warlock" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_school-of-evocation_overchannel", - "fields": { - "name": "Overchannel", - "desc": "Starting at 14th level, you can increase the power of your simpler spells. When you cast a wizard spell of 1st through 5th level that deals damage, you can deal maximum damage with that spell.\r\n\r\nThe first time you do so, you suffer no adverse effect. If you use this feature again before you finish a long rest, you take 2d12 necrotic damage for each level of the spell, immediately after you cast it. Each time you use this feature again before finishing a long rest, the necrotic damage per spell level increases by 1d12. This damage ignores resistance and immunity.", - "document": "srd", - "parent": "srd_school-of-evocation" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_warlock_pact-boon", - "fields": { - "name": "Pact Boon", - "desc": "At 3rd level, your otherworldly patron bestows a gift upon you for your loyal service. You gain one of the following features of your choice.\r\n\r\n### Pact of the Chain\r\n\r\nYou learn the find familiar spell and can cast it as a ritual. The spell doesn't count against your number of spells known.\r\n\r\nWhen you cast the spell, you can choose one of the normal forms for your familiar or one of the following special forms: imp, pseudodragon, quasit, or sprite.\r\n\r\nAdditionally, when you take the Attack action, you can forgo one of your own attacks to allow your familiar to make one attack of its own with its reaction.\r\n\r\n### Pact of the Blade\r\n\r\nYou can use your action to create a pact weapon in your empty hand. You can choose the form that this melee weapon takes each time you create it. You are proficient with it while you wield it. This weapon counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.\r\n\r\nYour pact weapon disappears if it is more than 5 feet away from you for 1 minute or more. It also disappears if you use this feature again, if you dismiss the weapon (no action required), or if you die.\r\n\r\nYou can transform one magic weapon into your pact weapon by performing a special ritual while you hold the weapon. You perform the ritual over the course of 1 hour, which can be done during a short rest. You can then dismiss the weapon, shunting it into an extradimensional space, and it appears whenever you create your pact weapon thereafter. You can't affect an artifact or a sentient weapon in this way. The weapon ceases being your pact weapon if you die, if you perform the 1-hour ritual on a different weapon, or if you use a 1-hour ritual to break your bond to it. The weapon appears at your feet if it is in the extradimensional space when the bond breaks.\r\n\r\n### Pact of the Tome\r\n\r\nYour patron gives you a grimoire called a Book of Shadows. When you gain this feature, choose three cantrips from any class's spell list (the three needn't be from the same list). While the book is on your person, you can cast those cantrips at will. They don't count against your number of cantrips known. If they don't appear on the warlock spell list, they are nonetheless warlock spells for you.\r\n\r\nIf you lose your Book of Shadows, you can perform a 1-hour ceremony to receive a replacement from your patron. This ceremony can be performed during a short or long rest, and it destroys the previous book. The book turns to ash when you die.", - "document": "srd", - "parent": "srd_warlock" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_warlock_pact-magic", - "fields": { - "name": "Pact Magic", - "desc": "Your arcane research and the magic bestowed on you by your patron have given you facility with spells.\r\n\r\n### Cantrips\r\n\r\nYou know two cantrips of your choice from the warlock spell list. You learn additional warlock cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Warlock table.\r\nSpell Slots\r\n\r\nThe Warlock table shows how many spell slots you have. The table also shows what the level of those slots is; all of your spell slots are the same level. To cast one of your warlock spells of 1st level or higher, you must expend a spell slot. You regain all expended spell slots when you finish a short or long rest.\r\n\r\nFor example, when you are 5th level, you have two 3rd-level spell slots. To cast the 1st-level spell thunderwave, you must spend one of those slots, and you cast it as a 3rd-level spell.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nAt 1st level, you know two 1st-level spells of your choice from the warlock spell list.\r\n\r\nThe Spells Known column of the Warlock table shows when you learn more warlock spells of your choice of 1st level and higher. A spell you choose must be of a level no higher than what's shown in the table's Slot Level column for your level. When you reach 6th level, for example, you learn a new warlock spell, which can be 1st, 2nd, or 3rd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the warlock spells you know and replace it with another spell from the warlock spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your warlock spells, so you use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a warlock spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\n\r\n### Spellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your warlock spells.", - "document": "srd", - "parent": "srd_warlock" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_paladin_ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "srd_paladin" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_paladin_extra-attack", - "fields": { - "name": "Extra Attack", - "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", - "document": "srd", - "parent": "srd_paladin" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_paladin_fighting-style", - "fields": { - "name": "Fighting Style", - "desc": "At 2nd level, you adopt a style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n### Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n### Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n### Great Weapon Fighting\r\n\r\nWhen you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll. The weapon must have the two-handed or versatile property for you to gain this benefit.\r\n\r\n### Protection\r\n\r\nWhen a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.", - "document": "srd", - "parent": "srd_paladin" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_paladin_spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "By 2nd level, you have learned to draw on divine magic through meditation and prayer to cast spells as a cleric does.\r\n\r\n### Preparing and Casting Spells\r\n\r\nThe Paladin table shows how many spell slots you have to cast your spells. To cast one of your paladin spells of 1st level or higher, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of paladin spells that are available for you to cast, choosing from the paladin spell list. When you do so, choose a number of paladin spells equal to your Charisma modifier + half your paladin level, rounded down (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 5th-level paladin, you have four 1st-level and two 2nd-level spell slots. With a Charisma of 14, your list of prepared spells can include four spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or a 2nd- level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of paladin spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your paladin spells, since their power derives from the strength of your convictions. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a paladin spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\nSpellcasting Focus\r\n\r\nYou can use a holy symbol as a spellcasting focus for your paladin spells.", - "document": "srd", - "parent": "srd_paladin" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_college-of-lore_peerless-skill", - "fields": { - "name": "Peerless Skill", - "desc": "Starting at 14th level, when you make an ability check, you can expend one use of Bardic Inspiration. Roll a Bardic Inspiration die and add the number rolled to your ability check. You can choose to do so after you roll the die for the ability check, but before the GM tells you whether you succeed or fail.", - "document": "srd", - "parent": "srd_college-of-lore" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_perfect-self", - "fields": { - "name": "Perfect Self", - "desc": "At 20th level, when you roll for initiative and have no ki points remaining, you regain 4 ki points.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_persistent-rage", - "fields": { - "name": "Persistent Rage", - "desc": "Beginning at 15th level, your rage is so fierce that it ends early only if you fall unconscious or if you choose to end it.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_school-of-evocation_potent-cantrip", - "fields": { - "name": "Potent Cantrip", - "desc": "Starting at 6th level, your damaging cantrips affect even creatures that avoid the brunt of the effect. When a creature succeeds on a saving throw against your cantrip, the creature takes half the cantrip's damage (if any) but suffers no additional effect from the cantrip.", - "document": "srd", - "parent": "srd_school-of-evocation" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_primal-champion", - "fields": { - "name": "Primal Champion", - "desc": "At 20th level, you embody the power of the wilds. Your Strength and Constitution scores increase by 4. Your maximum for those scores is now 24.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_primal-path", - "fields": { - "name": "Primal Path", - "desc": "At 3rd level, you choose a path that shapes the nature of your rage. Choose the Path of the Berserker or the Path of the Totem Warrior, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th, 10th, and 14th levels.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_ranger_primeval-awareness", - "fields": { - "name": "Primeval Awareness", - "desc": "Beginning at 3rd level, you can use your action and expend one ranger spell slot to focus your awareness on the region around you. For 1 minute per level of the spell slot you expend, you can sense whether the following types of creatures are present within 1 mile of you (or within up to 6 miles if you are in your favored terrain): aberrations, celestials, dragons, elementals, fey, fiends, and undead. This feature doesn't reveal the creatures' location or number.", - "document": "srd", - "parent": "srd_ranger" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_purity-of-body", - "fields": { - "name": "Purity of Body", - "desc": "At 10th level, your mastery of the ki flowing through you makes you immune to disease and poison.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_oath-of-devotion_purity-of-spirit", - "fields": { - "name": "Purity of Spirit", - "desc": "Beginning at 15th level, you are always under the effects of a *protection from evil and good* spell.", - "document": "srd", - "parent": "srd_oath-of-devotion" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_way-of-the-open-hand_quivering-palm", - "fields": { - "name": "Quivering Palm", - "desc": "At 17th level, you gain the ability to set up lethal vibrations in someone's body. When you hit a creature with an unarmed strike, you can spend 3 ki points to start these imperceptible vibrations, which last for a number of days equal to your monk level. The vibrations are harmless unless you use your action to end them. To do so, you and the target must be on the same plane of existence. When you use this action, the creature must make a Constitution saving throw. If it fails, it is reduced to 0 hit points. If it succeeds, it takes 10d10 necrotic damage.\r\n\r\nYou can have only one creature under the effect of this feature at a time. You can choose to end the vibrations harmlessly without using an action.", - "document": "srd", - "parent": "srd_way-of-the-open-hand" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_rage", - "fields": { - "name": "Rage", - "desc": "In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action.\r\n\r\nWhile raging, you gain the following benefits if you aren't wearing heavy armor:\r\n\r\n* You have advantage on Strength checks and Strength saving throws.\r\n* When you make a melee weapon attack using Strength, you gain a bonus to the damage roll that increases as you gain levels as a barbarian, as shown in the Rage Damage column of the Barbarian table.\r\n* You have resistance to bludgeoning, piercing, and slashing damage. \r\n\r\nIf you are able to cast spells, you can't cast them or concentrate on them while raging.\r\n\r\nYour rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action.\r\n\r\nOnce you have raged the number of times shown for your barbarian level in the Rages column of the Barbarian table, you must finish a long rest before you can rage again.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_ranger_ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "srd_ranger" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_ranger_ranger-archetype", - "fields": { - "name": "Ranger Archetype", - "desc": "At 3rd level, you choose an archetype that you strive to emulate: Hunter or Beast Master, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 7th, 11th, and 15th level.", - "document": "srd", - "parent": "srd_ranger" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_ranger_extra-attack", - "fields": { - "name": "Extra Attack", - "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", - "document": "srd", - "parent": "srd_ranger" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_ranger_fighting-style", - "fields": { - "name": "Fighting Style", - "desc": "At 2nd level, you adopt a particular style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n### Archery\r\n\r\nYou gain a +2 bonus to attack rolls you make with ranged weapons.\r\n\r\n### Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n### Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n### Two-Weapon Fighting\r\n\r\nWhen you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.", - "document": "srd", - "parent": "srd_ranger" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_ranger_lands-stride", - "fields": { - "name": "Land's Stride", - "desc": "Starting at 8th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.\r\n\r\nIn addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the entangle spell.", - "document": "srd", - "parent": "srd_ranger" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_ranger_spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "By the time you reach 2nd level, you have learned to use the magical essence of nature to cast spells, much as a druid does. See chapter 10 for the general rules of spellcasting and chapter 11 for the ranger spell list.\r\n\r\n### Spell Slots\r\n\r\nThe Ranger table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell animal friendship and have a 1st-level and a 2nd-level spell slot available, you can cast animal friendship using either slot.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nYou know two 1st-level spells of your choice from the ranger spell list.\r\n\r\nThe Spells Known column of the Ranger table shows when you learn more ranger spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 5th level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the ranger spells you know and replace it with another spell from the ranger spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your ranger spells, since your magic draws on your attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a ranger spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier", - "document": "srd", - "parent": "srd_ranger" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_reckless-attack", - "fields": { - "name": "Reckless Attack", - "desc": "Starting at 2nd level, you can throw aside all concern for defense to attack with fierce desperation. When you make your first attack on your turn, you can decide to attack recklessly. Doing so gives you advantage on melee weapon attack rolls using Strength during this turn, but attack rolls against you have advantage until your next turn.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_barbarian_relentless-rage", - "fields": { - "name": "Relentless Rage", - "desc": "Starting at 11th level, your rage can keep you fighting despite grievous wounds. If you drop to 0 hit points while you’re raging and don’t die outright, you can make a DC 10 Constitution saving throw. If you succeed, you drop to 1 hit point instead.\r\n\r\nEach time you use this feature after the first, the DC increases by 5. When you finish a short or long rest, the DC resets to 10.", - "document": "srd", - "parent": "srd_barbarian" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_rogue_reliable-talent", - "fields": { - "name": "Reliable Talent", - "desc": "By 11th level, you have refined your chosen skills until they approach perfection. Whenever you make an ability check that lets you add your proficiency bonus, you can treat a d20 roll of 9 or lower as a 10.", - "document": "srd", - "parent": "srd_rogue" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_champion_remarkable-athlete", - "fields": { - "name": "Remarkable Athlete", - "desc": "Starting at 7th level, you can add half your proficiency bonus (round up) to any Strength, Dexterity, or Constitution check you make that doesn't already use your proficiency bonus.\r\n\r\nIn addition, when you make a running long jump, the distance you can cover increases by a number of feet equal to your Strength modifier.", - "document": "srd", - "parent": "srd_champion" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_path-of-the-berserker_retaliation", - "fields": { - "name": "Retaliation", - "desc": "Starting at 14th level, when you take damage from a creature that is within 5 feet of you, you can use your reaction to make a melee weapon attack against that creature.", - "document": "srd", - "parent": "srd_path-of-the-berserker" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_rogue_ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 10th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "srd_rogue" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_rogue_evasion", - "fields": { - "name": "Evasion", - "desc": "Beginning at 7th level, you can nimbly dodge out of the way of certain area effects, such as a red dragon's fiery breath or an ice storm spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.", - "document": "srd", - "parent": "srd_rogue" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_rogue_expertise", - "fields": { - "name": "Expertise", - "desc": "At 1st level, choose two of your skill proficiencies, or one of your skill proficiencies and your proficiency with thieves' tools. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.\r\n\r\nAt 6th level, you can choose two more of your proficiencies (in skills or with thieves' tools) to gain this benefit.", - "document": "srd", - "parent": "srd_rogue" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_rogue_roguish-archetype", - "fields": { - "name": "Roguish Archetype", - "desc": "At 3rd level, you choose an archetype that you emulate in the exercise of your rogue abilities: Thief, Assassin, or Arcane Trickster, all detailed at the end of the class description. Your archetype choice grants you features at 3rd level and then again at 9th, 13th, and 17th level.", - "document": "srd", - "parent": "srd_rogue" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_paladin_sacred-oath", - "fields": { - "name": "Sacred Oath", - "desc": "When you reach 3rd level, you swear the oath that binds you as a paladin forever. Up to this time you have been in a preparatory stage, committed to the path but not yet sworn to it. Now you choose the Oath of Devotion, the Oath of the Ancients, or the Oath of Vengeance, all detailed at the end of the class description.\r\n\r\nYour choice grants you features at 3rd level and again at 7th, 15th, and 20th level. Those features include oath spells and the Channel Divinity feature.\r\n\r\n### Oath Spells\r\n\r\nEach oath has a list of associated spells. You gain access to these spells at the levels specified in the oath description. Once you gain access to an oath spell, you always have it prepared. Oath spells don't count against the number of spells you can prepare each day.\r\n\r\nIf you gain an oath spell that doesn't appear on the paladin spell list, the spell is nonetheless a paladin spell for you.\r\n\r\n### Channel Divinity\r\n\r\nYour oath allows you to channel divine energy to fuel magical effects. Each Channel Divinity option provided by your oath explains how to use it.\r\n\r\nWhen you use your Channel Divinity, you choose which option to use. You must then finish a short or long rest to use your Channel Divinity again.\r\n\r\nSome Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your paladin spell save DC.", - "document": "srd", - "parent": "srd_paladin" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_school-of-evocation_sculpt-spells", - "fields": { - "name": "Sculpt Spells", - "desc": "Beginning at 2nd level, you can create pockets of relative safety within the effects of your evocation spells. When you cast an evocation spell that affects other creatures that you can see, you can choose a number of them equal to 1 + the spell's level. The chosen creatures automatically succeed on their saving throws against the spell, and they take no damage if they would normally take half damage on a successful save.", - "document": "srd", - "parent": "srd_school-of-evocation" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_thief_second-story-work", - "fields": { - "name": "Second-Story Work", - "desc": "When you choose this archetype at 3rd level, you gain the ability to climb faster than normal; climbing no longer costs you extra movement.\r\n\r\nIn addition, when you make a running jump, the distance you cover increases by a number of feet equal to your Dexterity modifier.", - "document": "srd", - "parent": "srd_thief" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_fighter_second-wind", - "fields": { - "name": "Second Wind", - "desc": "You have a limited well of stamina that you can draw on to protect yourself from harm. On your turn, you can use a bonus action to regain hit points equal to 1d10 + your fighter level. Once you use this feature, you must finish a short or long rest before you can use it again.", - "document": "srd", - "parent": "srd_fighter" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_wizard_signature-spells", - "fields": { - "name": "Signature Spells", - "desc": "When you reach 20th level, you gain mastery over two powerful spells and can cast them with little effort. Choose two 3rd-level wizard spells in your spellbook as your signature spells. You always have these spells prepared, they don't count against the number of spells you have prepared, and you can cast each of them once at 3rd level without expending a spell slot. When you do so, you can't do so again until you finish a short or long rest.\r\n\r\nIf you want to cast either spell at a higher level, you must expend a spell slot as normal.", - "document": "srd", - "parent": "srd_wizard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_rogue_slippery-mind", - "fields": { - "name": "Slippery Mind", - "desc": "By 15th level, you have acquired greater mental strength. You gain proficiency in Wisdom saving throws.", - "document": "srd", - "parent": "srd_rogue" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_slow-fall", - "fields": { - "name": "Slow Fall", - "desc": "Beginning at 4th level, you can use your reaction when you fall to reduce any falling damage you take by an amount equal to five times your monk level.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_rogue_sneak-attack", - "fields": { - "name": "Sneak Attack", - "desc": "Beginning at 1st level, you know how to strike subtly and exploit a foe's distraction. Once per turn, you can deal an extra 1d6 damage to one creature you hit with an attack if you have advantage on the attack roll. The attack must use a finesse or a ranged weapon.\r\n\r\nYou don't need advantage on the attack roll if another enemy of the target is within 5 feet of it, that enemy isn't incapacitated, and you don't have disadvantage on the attack roll.\r\n\r\nThe amount of the extra damage increases as you gain levels in this class, as shown in the Sneak Attack column of the Rogue table.", - "document": "srd", - "parent": "srd_rogue" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_bard_song-of-rest", - "fields": { - "name": "Song of Rest", - "desc": "Beginning at 2nd level, you can use soothing music or oration to help revitalize your wounded allies during a short rest. If you or any friendly creatures who can hear your performance regain hit points at the end of the short rest by spending one or more Hit Dice, each of those creatures regains an extra 1d6 hit points.\r\n\r\nThe extra hit points increase when you reach certain levels in this class: to 1d8 at 9th level, to 1d10 at 13th level, and to 1d12 at 17th level.", - "document": "srd", - "parent": "srd_bard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_sorcerer_ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "srd_sorcerer" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_sorcerer_spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your spells.\r\n\r\n### Cantrips\r\n\r\nAt 1st level, you know four cantrips of your choice from the sorcerer spell list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.\r\n\r\n### Spell Slots\r\n\r\nThe Sorcerer table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these sorcerer spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell burning hands and have a 1st-level and a 2nd-level spell slot available, you can cast burning hands using either slot.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nYou know two 1st-level spells of your choice from the sorcerer spell list.\r\n\r\nThe Spells Known column of the Sorcerer table shows when you learn more sorcerer spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the sorcerer spells you know and replace it with another spell from the sorcerer spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your sorcerer spells, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC = 8** + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\nSpellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your sorcerer spells.", - "document": "srd", - "parent": "srd_sorcerer" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_sorcerer_sorcerous-origin", - "fields": { - "name": "Sorcerous Origin", - "desc": "Choose a sorcerous origin, which describes the source of your innate magical power: Draconic Bloodline or Wild Magic, both detailed at the end of the class description.\r\n\r\nYour choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.", - "document": "srd", - "parent": "srd_sorcerer" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_sorcerer_sorcerous-restoration", - "fields": { - "name": "Sorcerous Restoration", - "desc": "At 20th level, you regain 4 expended sorcery points whenever you finish a short rest.", - "document": "srd", - "parent": "srd_sorcerer" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_wizard_spell-mastery", - "fields": { - "name": "Spell Mastery", - "desc": "At 18th level, you have achieved such mastery over certain spells that you can cast them at will. Choose a 1st-level wizard spell and a 2nd-level wizard spell that are in your spellbook. You can cast those spells at their lowest level without expending a spell slot when you have them prepared. If you want to cast either spell at a higher level, you must expend a spell slot as normal.\r\n\r\nBy spending 8 hours in study, you can exchange one or both of the spells you chose for different spells of the same levels.", - "document": "srd", - "parent": "srd_wizard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_stillness-of-mind", - "fields": { - "name": "Stillness of Mind", - "desc": "Starting at 7th level, you can use your action to end one effect on yourself that is causing you to be charmed or frightened.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_stunning-strike", - "fields": { - "name": "Stunning Strike", - "desc": "Starting at 5th level, you can interfere with the flow of ki in an opponent's body. When you hit another creature with a melee weapon attack, you can spend 1 ki point to attempt a stunning strike. The target must succeed on a Constitution saving throw or be stunned until the end of your next turn.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_champion_superior-critical", - "fields": { - "name": "Superior Critical", - "desc": "Starting at 15th level, your weapon attacks score a critical hit on a roll of 18-20.", - "document": "srd", - "parent": "srd_champion" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_hunter_superior-hunters-defense", - "fields": { - "name": "Superior Hunter's Defense", - "desc": "At 15th level, you gain one of the following features of your choice.\r\n\r\n***Evasion.*** When you are subjected to an effect, such as a red dragon's fiery breath or a lightning bolt spell, that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.\r\n\r\n***Stand Against the Tide.*** When a hostile creature misses you with a melee attack, you can use your reaction to force that creature to repeat the same attack against another creature (other than itself) of your choice.\r\n\r\n***Uncanny Dodge.*** When an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.", - "document": "srd", - "parent": "srd_hunter" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_bard_superior-inspiration", - "fields": { - "name": "Superior Inspiration", - "desc": "At 20th level, when you roll initiative and have no uses of Bardic Inspiration left, you regain one use.", - "document": "srd", - "parent": "srd_bard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_life-domain_supreme-healing", - "fields": { - "name": "Supreme Healing", - "desc": "Starting at 17th level, when you would normally roll one or more dice to restore hit points with a spell, you instead use the highest number possible for each die. For example, instead of restoring 2d6 hit points to a creature, you restore 12.", - "document": "srd", - "parent": "srd_life-domain" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_thief_supreme-sneak", - "fields": { - "name": "Supreme Sneak", - "desc": "Starting at 9th level, you have advantage on a Dexterity (Stealth) check if you move no more than half your speed on the same turn.", - "document": "srd", - "parent": "srd_thief" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_champion_survivor", - "fields": { - "name": "Survivor", - "desc": "At 18th level, you attain the pinnacle of resilience in battle. At the start of each of your turns, you regain hit points equal to 5 + your Constitution modifier if you have no more than half of your hit points left. You don't gain this benefit if you have 0 hit points.", - "document": "srd", - "parent": "srd_champion" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_oath-of-devotion_tenets-of-devotion", - "fields": { - "name": "Tenets of Devotion", - "desc": "Though the exact words and strictures of the Oath of Devotion vary, paladins of this oath share these tenets.\r\n\r\n*Honesty.* Don't lie or cheat. Let your word be your promise.\r\n\r\n*Courage.* Never fear to act, though caution is wise.\r\n\r\n*Compassion.* Aid others, protect the weak, and punish those who threaten them. Show mercy to your foes, but temper it with wisdom.\r\n\r\n*Honor.* Treat others with fairness, and let your honorable deeds be an example to them. Do as much good as possible while causing the least amount of harm.\r\n\r\n*Duty.* Be responsible for your actions and their consequences, protect those entrusted to your care, and obey those who have just authority over you.", - "document": "srd", - "parent": "srd_oath-of-devotion" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_thief_thiefs-reflexes", - "fields": { - "name": "Thief's Reflexes", - "desc": "When you reach 17th level, you have become adept at laying ambushes and quickly escaping danger. You can take two turns during the first round of any combat. You take your first turn at your normal initiative and your second turn at your initiative minus 10. You can't use this feature when you are surprised.", - "document": "srd", - "parent": "srd_thief" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_rogue_thieves-cant", - "fields": { - "name": "Thieves' Cant", - "desc": "During your rogue training you learned thieves' cant, a secret mix of dialect, jargon, and code that allows you to hide messages in seemingly normal conversation. Only another creature that knows thieves' cant understands such messages. It takes four times longer to convey such a message than it does to speak the same idea plainly.\r\n\r\nIn addition, you understand a set of secret signs and symbols used to convey short, simple messages, such as whether an area is dangerous or the territory of a thieves' guild, whether loot is nearby, or whether the people in an area are easy marks or will provide a safe house for thieves on the run.", - "document": "srd", - "parent": "srd_rogue" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_tongue-of-the-sun-and-moon", - "fields": { - "name": "Tongue of the Sun and Moon", - "desc": "Starting at 13th level, you learn to touch the ki of other minds so that you understand all spoken languages. Moreover, any creature that can understand a language can understand what you say.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_way-of-the-open-hand_tranquility", - "fields": { - "name": "Tranquility", - "desc": "Beginning at 11th level, you can enter a special meditation that surrounds you with an aura of peace. At the end of a long rest, you gain the effect of a sanctuary spell that lasts until the start of your next long rest (the spell can end early as normal). The saving throw DC for the spell equals 8 + your Wisdom modifier + your proficiency bonus.", - "document": "srd", - "parent": "srd_way-of-the-open-hand" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_monk_unarmored-movement", - "fields": { - "name": "Unarmored Movement", - "desc": "Starting at 2nd level, your speed increases by 10 feet while you are not wearing armor or wielding a shield. This bonus increases when you reach certain monk levels, as shown in the Monk table.\r\n\r\nAt 9th level, you gain the ability to move along vertical surfaces and across liquids on your turn without falling during the move.", - "document": "srd", - "parent": "srd_monk" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_rogue_uncanny-dodge", - "fields": { - "name": "Uncanny Dodge", - "desc": "Starting at 5th level, when an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.", - "document": "srd", - "parent": "srd_rogue" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_thief_use-magic-device", - "fields": { - "name": "Use Magic Device", - "desc": "By 13th level, you have learned enough about the workings of magic that you can improvise the use of items even when they are not intended for you. You ignore all class, race, and level requirements on the use of magic items.", - "document": "srd", - "parent": "srd_thief" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_ranger_vanish", - "fields": { - "name": "Vanish", - "desc": "Starting at 14th level, you can use the Hide action as a bonus action on your turn. Also, you can't be tracked by nonmagical means, unless you choose to leave a trail.", - "document": "srd", - "parent": "srd_ranger" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_warlock_ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "srd_warlock" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_way-of-the-open-hand_wholeness-of-body", - "fields": { - "name": "Wholeness of Body", - "desc": "At 6th level, you gain the ability to heal yourself. As an action, you can regain hit points equal to three times your monk level. You must finish a long rest before you can use this feature again.", - "document": "srd", - "parent": "srd_way-of-the-open-hand" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_druid_wild-shape", - "fields": { - "name": "Wild Shape", - "desc": "Starting at 2nd level, you can use your action to magically assume the shape of a beast that you have seen before. You can use this feature twice. You regain expended uses when you finish a short or long rest.\r\n\r\nYour druid level determines the beasts you can transform into, as shown in the Beast Shapes table. At 2nd level, for example, you can transform into any beast that has a challenge rating of 1/4 or lower that doesn't have a flying or swimming speed.\r\n\r\n| Level | Max. CR | Limitations | Example |\r\n| --- | --- | --- | --- |\r\n| 2nd | 1/4 | No flying or swimming speed | Wolf |\r\n| 4th | 1/2 | No flying speed | Crocodile |\r\n| 8th | 1 | - | Giant Eagle |\r\n\r\nYou can stay in a beast shape for a number of hours equal to half your druid level (rounded down). You then revert to your normal form unless you expend another use of this feature. You can revert to your normal form earlier by using a bonus action on your turn. You automatically revert if you fall unconscious, drop to 0 hit points, or die.\r\n\r\nWhile you are transformed, the following rules apply:\r\nYour game statistics are replaced by the statistics of the beast, but you retain your alignment, personality, and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus in its stat block is higher than yours, use the creature's bonus instead of yours. If the creature has any legendary or lair actions, you can't use them.\r\n\r\nWhen you transform, you assume the beast's hit points and Hit Dice. When you revert to your normal form, you return to the number of hit points you had before you transformed. However, if you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. For example, if you take 10 damage in animal form and have only 1 hit point left, you revert and take 9 damage. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious.\r\n\r\nYou can't cast spells, and your ability to speak or take any action that requires hands is limited to the capabilities of your beast form. Transforming doesn't break your concentration on a spell you've already cast, however, or prevent you from taking actions that are part of a spell, such as call lightning, that you've already cast.\r\n\r\nYou retain the benefit of any features from your class, race, or other source and can use them if the new form is physically capable of doing so. However, you can't use any of your special senses, such as darkvision, unless your new form also has that sense.\r\n\r\nYou choose whether your equipment falls to the ground in your space, merges into your new form, or is worn by it. Worn equipment functions as normal, but the GM decides whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change size or shape to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge with it. Equipment that merges with the form has no effect until you leave the form.", - "document": "srd", - "parent": "srd_druid" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_wizard_ability-score-improvement", - "fields": { - "name": "Ability Score Improvement", - "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", - "document": "srd", - "parent": "srd_wizard" - } - }, - { - "model": "api_v2.classfeature", - "pk": "srd_wizard_spellcasting", - "fields": { - "name": "Spellcasting", - "desc": "As a student of arcane magic, you have a spellbook containing spells that show the first glimmerings of your true power.\r\n\r\n### Cantrips\r\n\r\nAt 1st level, you know three cantrips of your choice from the wizard spell list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.\r\n\r\n### Spellbook\r\n\r\nAt 1st level, you have a spellbook containing six 1st- level wizard spells of your choice. Your spellbook is the repository of the wizard spells you know, except your cantrips, which are fixed in your mind.\r\n\r\n### Preparing and Casting Spells\r\n\r\nThe Wizard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of wizard spells that are available for you to cast. To do so, choose a number of wizard spells from your spellbook equal to your Intelligence modifier + your wizard level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you're a 3rd-level wizard, you have four 1st-level and two 2nd-level spell slots. With an Intelligence of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination, chosen from your spellbook. If you prepare the 1st-level spell magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of wizard spells requires time spent studying your spellbook and memorizing the incantations and gestures you must make to cast the spell: at least 1 minute per spell level for each spell on your list.\r\n\r\n### Spellcasting Ability\r\n\r\nIntelligence is your spellcasting ability for your wizard spells, since you learn your spells through dedicated study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Intelligence modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Intelligence modifier\r\n\r\n### Ritual Casting\r\n\r\nYou can cast a wizard spell as a ritual if that spell has the ritual tag and you have the spell in your spellbook. You don't need to have the spell prepared.\r\n\r\n### Spellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your wizard spells.\r\n\r\n### Learning Spells of 1st Level and Higher\r\n\r\nEach time you gain a wizard level, you can add two wizard spells of your choice to your spellbook for free. Each of these spells must be of a level for which you have spell slots, as shown on the Wizard table. On your adventures, you might find other spells that you can add to your spellbook (see the “Your Spellbook” sidebar).", - "document": "srd", - "parent": "srd_wizard" - } - } -] \ No newline at end of file +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can’t increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_brutal-critical", + "fields": { + "name": "Brutal Critical", + "desc": "Beginning at 9th level, you can roll one additional weapon damage die when determining the extra damage for a critical hit with a melee attack.\r\n\r\nThis increases to two additional dice at 13th level and three additional dice at 17th level.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_danger-sense", + "fields": { + "name": "Danger Sense", + "desc": "At 2nd level, you gain an uncanny sense of when things nearby aren’t as they should be, giving you an edge when you dodge away from danger.\r\n\r\nYou have advantage on Dexterity saving throws against effects that you can see, such as traps and spells. To gain this benefit, you can’t be blinded, deafened, or incapacitated.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_extra-attack", + "fields": { + "name": "Extra Attack", + "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_fast-movement", + "fields": { + "name": "Fast Movement", + "desc": "Starting at 5th level, your speed increases by 10 feet while you aren’t wearing heavy armor.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_feral-instinct", + "fields": { + "name": "Feral Instinct", + "desc": "By 7th level, your instincts are so honed that you have advantage on initiative rolls.\r\n\r\nAdditionally, if you are surprised at the beginning of combat and aren’t incapacitated, you can act normally on your first turn, but only if you enter your rage before doing anything else on that turn.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_indomitable-might", + "fields": { + "name": "Indomitable Might", + "desc": "Beginning at 18th level, if your total for a Strength check is less than your Strength score, you can use that score in place of the total.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_persistent-rage", + "fields": { + "name": "Persistent Rage", + "desc": "Beginning at 15th level, your rage is so fierce that it ends early only if you fall unconscious or if you choose to end it.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_primal-champion", + "fields": { + "name": "Primal Champion", + "desc": "At 20th level, you embody the power of the wilds. Your Strength and Constitution scores increase by 4. Your maximum for those scores is now 24.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_primal-path", + "fields": { + "name": "Primal Path", + "desc": "At 3rd level, you choose a path that shapes the nature of your rage. Choose the Path of the Berserker or the Path of the Totem Warrior, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th, 10th, and 14th levels.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_rage", + "fields": { + "name": "Rage", + "desc": "In battle, you fight with primal ferocity. On your turn, you can enter a rage as a bonus action.\r\n\r\nWhile raging, you gain the following benefits if you aren't wearing heavy armor:\r\n\r\n* You have advantage on Strength checks and Strength saving throws.\r\n* When you make a melee weapon attack using Strength, you gain a bonus to the damage roll that increases as you gain levels as a barbarian, as shown in the Rage Damage column of the Barbarian table.\r\n* You have resistance to bludgeoning, piercing, and slashing damage. \r\n\r\nIf you are able to cast spells, you can't cast them or concentrate on them while raging.\r\n\r\nYour rage lasts for 1 minute. It ends early if you are knocked unconscious or if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end your rage on your turn as a bonus action.\r\n\r\nOnce you have raged the number of times shown for your barbarian level in the Rages column of the Barbarian table, you must finish a long rest before you can rage again.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_reckless-attack", + "fields": { + "name": "Reckless Attack", + "desc": "Starting at 2nd level, you can throw aside all concern for defense to attack with fierce desperation. When you make your first attack on your turn, you can decide to attack recklessly. Doing so gives you advantage on melee weapon attack rolls using Strength during this turn, but attack rolls against you have advantage until your next turn.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_relentless-rage", + "fields": { + "name": "Relentless Rage", + "desc": "Starting at 11th level, your rage can keep you fighting despite grievous wounds. If you drop to 0 hit points while you’re raging and don’t die outright, you can make a DC 10 Constitution saving throw. If you succeed, you drop to 1 hit point instead.\r\n\r\nEach time you use this feature after the first, the DC increases by 5. When you finish a short or long rest, the DC resets to 10.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_barbarian_unarmored-defense", + "fields": { + "name": "Unarmored Defense", + "desc": "While you are not wearing any armor, your Armor Class equals 10 + your Dexterity modifier + your Constitution modifier. You can use a shield and still gain this benefit.", + "document": "srd", + "parent": "srd_barbarian" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_bard_ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_bard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_bard_bard-college", + "fields": { + "name": "Bard College", + "desc": "At 3rd level, you delve into the advanced techniques of a bard college of your choice: the College of Lore or the College of Valor, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 6th and 14th level.", + "document": "srd", + "parent": "srd_bard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_bard_bardic-inspiration", + "fields": { + "name": "Bardic Inspiration", + "desc": "You can inspire others through stirring words or music. To do so, you use a bonus action on your turn to choose one creature other than yourself within 60 feet of you who can hear you. That creature gains one Bardic Inspiration die, a d6.\r\n\r\nOnce within the next 10 minutes, the creature can roll the die and add the number rolled to one ability check, attack roll, or saving throw it makes. The creature can wait until after it rolls the d20 before deciding to use the Bardic Inspiration die, but must decide before the GM says whether the roll succeeds or fails. Once the Bardic Inspiration die is rolled, it is lost. A creature can have only one Bardic Inspiration die at a time.\r\n\r\nYou can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest.\r\n\r\nYour Bardic Inspiration die changes when you reach certain levels in this class. The die becomes a d8 at 5th level, a d10 at 10th level, and a d12 at 15th level.", + "document": "srd", + "parent": "srd_bard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_bard_countercharm", + "fields": { + "name": "Countercharm", + "desc": "At 6th level, you gain the ability to use musical notes or words of power to disrupt mind-influencing effects. As an action, you can start a performance that lasts until the end of your next turn. During that time, you and any friendly creatures within 30 feet of you have advantage on saving throws against being frightened or charmed. A creature must be able to hear you to gain this benefit. The performance ends early if you are incapacitated or silenced or if you voluntarily end it (no action required).", + "document": "srd", + "parent": "srd_bard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_bard_expertise", + "fields": { + "name": "Expertise", + "desc": "At 3rd level, choose two of your skill proficiencies. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.\r\n\r\nAt 10th level, you can choose another two skill proficiencies to gain this benefit.", + "document": "srd", + "parent": "srd_bard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_bard_font-of-inspiration", + "fields": { + "name": "Font of Inspiration", + "desc": "Beginning when you reach 5th level, you regain all of your expended uses of Bardic Inspiration when you finish a short or long rest.", + "document": "srd", + "parent": "srd_bard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_bard_jack-of-all-trades", + "fields": { + "name": "Jack of All Trades", + "desc": "Starting at 2nd level, you can add half your proficiency bonus, rounded down, to any ability check you make that doesn't already include your proficiency bonus.", + "document": "srd", + "parent": "srd_bard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_bard_magical-secrets", + "fields": { + "name": "Magical Secrets", + "desc": "By 10th level, you have plundered magical knowledge from a wide spectrum of disciplines. Choose two spells from any class, including this one. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip.\r\n\r\nThe chosen spells count as bard spells for you and are included in the number in the Spells Known column of the Bard table.\r\n\r\nYou learn two additional spells from any class at 14th level and again at 18th level.", + "document": "srd", + "parent": "srd_bard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_bard_song-of-rest", + "fields": { + "name": "Song of Rest", + "desc": "Beginning at 2nd level, you can use soothing music or oration to help revitalize your wounded allies during a short rest. If you or any friendly creatures who can hear your performance regain hit points at the end of the short rest by spending one or more Hit Dice, each of those creatures regains an extra 1d6 hit points.\r\n\r\nThe extra hit points increase when you reach certain levels in this class: to 1d8 at 9th level, to 1d10 at 13th level, and to 1d12 at 17th level.", + "document": "srd", + "parent": "srd_bard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_bard_spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "You have learned to untangle and reshape the fabric of reality in harmony with your wishes and music.\r\n\r\nYour spells are part of your vast repertoire, magic that you can tune to different situations.\r\n\r\n###Cantrips\r\n\r\nYou know two cantrips of your choice from the bard spell list. You learn additional bard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Bard table.\r\n\r\n###Spell Slots\r\n\r\nThe Bard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell cure wounds and have a 1st-level and a 2nd-level spell slot available, you can cast cure wounds using either slot.\r\n\r\n###Spells Known of 1st Level and Higher\r\n\r\nYou know four 1st-level spells of your choice from the bard spell list.\r\n\r\nThe Spells Known column of the Bard table shows when you learn more bard spells of your choice. Each of these spells must be of a level for which you have spell slots, as shown on the table. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the bard spells you know and replace it with another spell from the bard spell list, which also must be of a level for which you have spell slots.\r\n\r\n###Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your bard spells. Your magic comes from the heart and soul you pour into the performance of your music or oration. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a bard spell you cast and when making an attack roll with one.\r\n\r\n*Spell save DC* = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n*Spell attack modifier* = your proficiency bonus + your Charisma modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast any bard spell you know as a ritual if that spell has the ritual tag.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a musical instrument (see chapter 5, “Equipment”) as a spellcasting focus for your bard spells.", + "document": "srd", + "parent": "srd_bard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_bard_superior-inspiration", + "fields": { + "name": "Superior Inspiration", + "desc": "At 20th level, when you roll initiative and have no uses of Bardic Inspiration left, you regain one use.", + "document": "srd", + "parent": "srd_bard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_champion_additional-fighting-style", + "fields": { + "name": "Additional Fighting Style", + "desc": "At 10th level, you can choose a second option from the Fighting Style class feature.", + "document": "srd", + "parent": "srd_champion" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_champion_improved-critical", + "fields": { + "name": "Improved Critical", + "desc": "Beginning when you choose this archetype at 3rd level, your weapon attacks score a critical hit on a roll of 19 or 20.", + "document": "srd", + "parent": "srd_champion" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_champion_remarkable-athlete", + "fields": { + "name": "Remarkable Athlete", + "desc": "Starting at 7th level, you can add half your proficiency bonus (round up) to any Strength, Dexterity, or Constitution check you make that doesn't already use your proficiency bonus.\r\n\r\nIn addition, when you make a running long jump, the distance you can cover increases by a number of feet equal to your Strength modifier.", + "document": "srd", + "parent": "srd_champion" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_champion_superior-critical", + "fields": { + "name": "Superior Critical", + "desc": "Starting at 15th level, your weapon attacks score a critical hit on a roll of 18-20.", + "document": "srd", + "parent": "srd_champion" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_champion_survivor", + "fields": { + "name": "Survivor", + "desc": "At 18th level, you attain the pinnacle of resilience in battle. At the start of each of your turns, you regain hit points equal to 5 + your Constitution modifier if you have no more than half of your hit points left. You don't gain this benefit if you have 0 hit points.", + "document": "srd", + "parent": "srd_champion" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_circle-of-the-land_bonus-cantrip", + "fields": { + "name": "Bonus Cantrip", + "desc": "When you choose this circle at 2nd level, you learn one additional druid cantrip of your choice.", + "document": "srd", + "parent": "srd_circle-of-the-land" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_circle-of-the-land_circle-spells", + "fields": { + "name": "Circle Spells", + "desc": "Your mystical connection to the land infuses you with the ability to cast certain spells. At 3rd, 5th, 7th, and 9th level you gain access to circle spells connected to the land where you became a druid. Choose that land-arctic, coast, desert, forest, grassland, mountain, or swamp-and consult the associated list of spells. \r\n\r\nOnce you gain access to a circle spell, you always have it prepared, and it doesn't count against the number of spells you can prepare each day. If you gain access to a spell that doesn't appear on the druid spell list, the spell is nonetheless a druid spell for you.\r\n\r\n**Arctic (table)**\r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | hold person, spike growth | \r\n| 5th | sleet storm, slow | \r\n| 7th | freedom of movement, ice storm | \r\n| 9th | commune with nature, cone of cold | \r\n \r\n**Coast (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | mirror image, misty step | \r\n| 5th | water breathing, water walk | \r\n| 7th | control water, freedom of movement | \r\n| 9th | conjure elemental, scrying | \r\n \r\n**Desert (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | blur, silence | \r\n| 5th | create food and water, protection from energy | \r\n| 7th | blight, hallucinatory terrain | \r\n| 9th | insect plague, wall of stone | \r\n \r\n**Forest (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | barkskin, spider climb | \r\n| 5th | call lightning, plant growth | \r\n| 7th | divination, freedom of movement | \r\n| 9th | commune with nature, tree stride | \r\n \r\n**Grassland (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | invisibility, pass without trace | \r\n| 5th | daylight, haste | \r\n| 7th | divination, freedom of movement | \r\n| 9th | dream, insect plague | \r\n \r\n**Mountain (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | spider climb, spike growth | \r\n| 5th | lightning bolt, meld into stone | \r\n| 7th | stone shape, stoneskin | \r\n| 9th | passwall, wall of stone | \r\n \r\n**Swamp (table)** \r\n \r\n| Druid Level | Circle Spells | \r\n|---|---| \r\n| 3rd | acid arrow, darkness | \r\n| 5th | water walk, stinking cloud | \r\n| 7th | freedom of movement, locate creature | \r\n| 9th | insect plague, scrying |", + "document": "srd", + "parent": "srd_circle-of-the-land" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_circle-of-the-land_lands-stride", + "fields": { + "name": "Land's Stride", + "desc": "Starting at 6th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.\r\n\r\nIn addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the entangle spell.", + "document": "srd", + "parent": "srd_circle-of-the-land" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_circle-of-the-land_natural-recovery", + "fields": { + "name": "Natural Recovery", + "desc": "Starting at 2nd level, you can regain some of your magical energy by sitting in meditation and communing with nature. During a short rest, you choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your druid level (rounded up), and none of the slots can be 6th level or higher. You can't use this feature again until you finish a long rest.\r\n\r\nFor example, when you are a 4th-level druid, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level slot or two 1st-level slots.", + "document": "srd", + "parent": "srd_circle-of-the-land" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_circle-of-the-land_natures-sanctuary", + "fields": { + "name": "Nature's Sanctuary", + "desc": "When you reach 14th level, creatures of the natural world sense your connection to nature and become hesitant to attack you. When a beast or plant creature attacks you, that creature must make a Wisdom saving throw against your druid spell save DC. On a failed save, the creature must choose a different target, or the attack automatically misses. On a successful save, the creature is immune to this effect for 24 hours.\r\n\r\nThe creature is aware of this effect before it makes its attack against you.", + "document": "srd", + "parent": "srd_circle-of-the-land" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_circle-of-the-land_natures-ward", + "fields": { + "name": "Nature's Ward", + "desc": "When you reach 10th level, you can't be charmed or frightened by elementals or fey, and you are immune to poison and disease.", + "document": "srd", + "parent": "srd_circle-of-the-land" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_cleric_ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_cleric" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_cleric_channel-divinity", + "fields": { + "name": "Channel Divinity", + "desc": "At 2nd level, you gain the ability to channel divine energy directly from your deity, using that energy to fuel magical effects. You start with two such effects: Turn Undead and an effect determined by your domain. Some domains grant you additional effects as you advance in levels, as noted in the domain description.\r\n\r\nWhen you use your Channel Divinity, you choose which effect to create. You must then finish a short or long rest to use your Channel Divinity again.\r\n\r\nSome Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your cleric spell save DC.\r\n\r\nBeginning at 6th level, you can use your Channel Divinity twice between rests, and beginning at 18th level, you can use it three times between rests. When you finish a short or long rest, you regain your expended uses.\r\n\r\n### Channel Divinity: Turn Undead\r\n\r\nAs an action, you present your holy symbol and speak a prayer censuring the undead. Each undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes any damage.\r\n\r\nA turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.", + "document": "srd", + "parent": "srd_cleric" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_cleric_destroy-undead", + "fields": { + "name": "Destroy Undead", + "desc": "Starting at 5th level, when an undead fails its saving throw against your Turn Undead feature, the creature is instantly destroyed if its challenge rating is at or below a certain threshold, as shown in the Destroy Undead table. \r\n\r\n### Destroy Undead (table)\r\n\r\n| Cleric Level | Destroys Undead of CR... | \r\n|---|---|\r\n| 5th | 1/2 or lower |\r\n| 8th | 1 or lower |\r\n| 11th | 2 or lower |\r\n| 14th | 3 or lower | \r\n| 17th | 4 or lower |", + "document": "srd", + "parent": "srd_cleric" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_cleric_divine-domain", + "fields": { + "name": "Divine Domain", + "desc": "Choose one domain related to your deity, such as Life. Each domain is detailed at the end of the class description, and each one provides examples of gods associated with it. Your choice grants you domain spells and other features when you choose it at 1st level. It also grants you additional ways to use Channel Divinity when you gain that feature at 2nd level, and additional benefits at 6th, 8th, and 17th levels.\r\n\r\n### Domain Spells\r\nEach domain has a list of spells—its domain spells—that you gain at the cleric levels noted in the domain description. Once you gain a domain spell, you always have it prepared, and it doesn’t count against the number of spells you can prepare each day. \r\nIf you have a domain spell that doesn’t appear on the cleric spell list, the spell is nonetheless a cleric spell for you.", + "document": "srd", + "parent": "srd_cleric" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_cleric_divine-intervention", + "fields": { + "name": "Divine Intervention", + "desc": "Beginning at 10th level, you can call on your deity to intervene on your behalf when your need is great.\r\n\r\nImploring your deity's aid requires you to use your action. Describe the assistance you seek, and roll percentile dice. If you roll a number equal to or lower than your cleric level, your deity intervenes. The GM chooses the nature of the intervention; the effect of any cleric spell or cleric domain spell would be appropriate.\r\n\r\nIf your deity intervenes, you can't use this feature again for 7 days. Otherwise, you can use it again after you finish a long rest.\r\n\r\nAt 20th level, your call for intervention succeeds automatically, no roll required.", + "document": "srd", + "parent": "srd_cleric" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_cleric_spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "As a conduit for divine power, you can cast cleric spells.\r\n\r\n###Cantrips\r\n\r\nAt 1st level, you know three cantrips of your choice from the cleric spell list. You learn additional cleric cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Cleric table.\r\nPreparing and Casting Spells\r\n\r\nThe Cleric table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of cleric spells that are available for you to cast, choosing from the cleric spell list. When you do so, choose a number of cleric spells equal to your Wisdom modifier + your cleric level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 3rd-level cleric, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of cleric spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n###Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your cleric spells. The power of your spells comes from your devotion to your deity. You use your Wisdom whenever a cleric spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a cleric spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast a cleric spell as a ritual if that spell has the ritual tag and you have the spell prepared.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a holy symbol (see chapter 5, “Equipment”) as a spellcasting focus for your cleric spells.", + "document": "srd", + "parent": "srd_cleric" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_college-of-lore_additional-magical-secrets", + "fields": { + "name": "Additional Magical Secrets", + "desc": "At 6th level, you learn two spells of your choice from any class. A spell you choose must be of a level you can cast, as shown on the Bard table, or a cantrip. The chosen spells count as bard spells for you but don't count against the number of bard spells you know.", + "document": "srd", + "parent": "srd_college-of-lore" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_college-of-lore_bonus-proficiencies", + "fields": { + "name": "Bonus Proficiencies", + "desc": "When you join the College of Lore at 3rd level, you gain proficiency with three skills of your choice.", + "document": "srd", + "parent": "srd_college-of-lore" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_college-of-lore_cutting-words", + "fields": { + "name": "Cutting Words", + "desc": "Also at 3rd level, you learn how to use your wit to distract, confuse, and otherwise sap the confidence and competence of others. When a creature that you can see within 60 feet of you makes an attack roll, an ability check, or a damage roll, you can use your reaction to expend one of your uses of Bardic Inspiration, rolling a Bardic Inspiration die and subtracting the number rolled from the creature's roll. You can choose to use this feature after the creature makes its roll, but before the GM determines whether the attack roll or ability check succeeds or fails, or before the creature deals its damage. The creature is immune if it can't hear you or if it's immune to being charmed.", + "document": "srd", + "parent": "srd_college-of-lore" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_college-of-lore_peerless-skill", + "fields": { + "name": "Peerless Skill", + "desc": "Starting at 14th level, when you make an ability check, you can expend one use of Bardic Inspiration. Roll a Bardic Inspiration die and add the number rolled to your ability check. You can choose to do so after you roll the die for the ability check, but before the GM tells you whether you succeed or fail.", + "document": "srd", + "parent": "srd_college-of-lore" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_draconic-bloodline_draconic-presence", + "fields": { + "name": "Draconic Presence", + "desc": "Beginning at 18th level, you can channel the dread presence of your dragon ancestor, causing those around you to become awestruck or frightened. As an action, you can spend 5 sorcery points to draw on this power and exude an aura of awe or fear (your choice) to a distance of 60 feet. For 1 minute or until you lose your concentration (as if you were casting a concentration spell), each hostile creature that starts its turn in this aura must succeed on a Wisdom saving throw or be charmed (if you chose awe) or frightened (if you chose fear) until the aura ends. A creature that succeeds on this saving throw is immune to your aura for 24 hours.", + "document": "srd", + "parent": "srd_draconic-bloodline" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_draconic-bloodline_draconic-resilience", + "fields": { + "name": "Draconic Resilience", + "desc": "As magic flows through your body, it causes physical traits of your dragon ancestors to emerge. At 1st level, your hit point maximum increases by 1 and increases by 1 again whenever you gain a level in this class.\r\n\r\nAdditionally, parts of your skin are covered by a thin sheen of dragon-like scales. When you aren't wearing armor, your AC equals 13 + your Dexterity modifier.", + "document": "srd", + "parent": "srd_draconic-bloodline" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_draconic-bloodline_dragon-ancestor", + "fields": { + "name": "Dragon Ancestor", + "desc": "At 1st level, you choose one type of dragon as your ancestor. The damage type associated with each dragon is used by features you gain later.\r\n\r\n### Draconic Ancestry (table)\r\n| Dragon | Damage Type |\r\n| --- | --- |\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |\r\n\r\nYou can speak, read, and write Draconic. Additionally, whenever you make a Charisma check when interacting with dragons, your proficiency bonus is doubled if it applies to the check.", + "document": "srd", + "parent": "srd_draconic-bloodline" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_draconic-bloodline_dragon-wings", + "fields": { + "name": "Dragon Wings", + "desc": "At 14th level, you gain the ability to sprout a pair of dragon wings from your back, gaining a flying speed equal to your current speed. You can create these wings as a bonus action on your turn. They last until you dismiss them as a bonus action on your turn.\r\n\r\nYou can't manifest your wings while wearing armor unless the armor is made to accommodate them, and clothing not made to accommodate your wings might be destroyed when you manifest them.", + "document": "srd", + "parent": "srd_draconic-bloodline" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_draconic-bloodline_elemental-affinity", + "fields": { + "name": "Elemental Affinity", + "desc": "Starting at 6th level, when you cast a spell that deals damage of the type associated with your draconic ancestry, you can add your Charisma modifier to one damage roll of that spell. At the same time, you can spend 1 sorcery point to gain resistance to that damage type for 1 hour.", + "document": "srd", + "parent": "srd_draconic-bloodline" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_druid_ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_druid" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_druid_archdruid", + "fields": { + "name": "Archdruid", + "desc": "At 20th level, you can use your Wild Shape an unlimited number of times.\r\n\r\nAdditionally, you can ignore the verbal and somatic components of your druid spells, as well as any material components that lack a cost and aren't consumed by a spell. You gain this benefit in both your normal shape and your beast shape from Wild Shape.", + "document": "srd", + "parent": "srd_druid" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_druid_beast-spells", + "fields": { + "name": "Beast Spells", + "desc": "Beginning at 18th level, you can cast many of your druid spells in any shape you assume using Wild Shape. You can perform the somatic and verbal components of a druid spell while in a beast shape, but you aren't able to provide material components.", + "document": "srd", + "parent": "srd_druid" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_druid_druid-circle", + "fields": { + "name": "Druid Circle", + "desc": "At 2nd level, you choose to identify with a circle of druids such as the Circle of the Land. Your choice grants you features at 2nd level and again at 6th, 10th, and 14th level.", + "document": "srd", + "parent": "srd_druid" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_druid_druidic", + "fields": { + "name": "Druidic", + "desc": "You know Druidic, the secret language of druids. You can speak the language and use it to leave hidden messages. You and others who know this language automatically spot such a message. Others spot the message's presence with a successful DC 15 Wisdom (Perception) check but can't decipher it without magic.", + "document": "srd", + "parent": "srd_druid" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_druid_spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "Drawing on the divine essence of nature itself, you can cast spells to shape that essence to your will.\r\n\r\n###Cantrips\r\n\r\nAt 1st level, you know two cantrips of your choice from the druid spell list. You learn additional druid cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Druid table.\r\n\r\n###Preparing and Casting Spells\r\n\r\nThe Druid table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these druid spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of druid spells that are available for you to cast, choosing from the druid spell list. When you do so, choose a number of druid spells equal to your Wisdom modifier + your druid level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 3rd-level druid, you have four 1st-level and two 2nd-level spell slots. With a Wisdom of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can also change your list of prepared spells when you finish a long rest. Preparing a new list of druid spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n###Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your druid spells, since your magic draws upon your devotion and attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a druid spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier\r\n\r\n###Ritual Casting\r\n\r\nYou can cast a druid spell as a ritual if that spell has the ritual tag and you have the spell prepared.\r\n\r\n###Spellcasting Focus\r\n\r\nYou can use a druidic focus (see chapter 5, “Equipment”) as a spellcasting focus for your druid spells.", + "document": "srd", + "parent": "srd_druid" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_druid_timeless-body", + "fields": { + "name": "Timeless Body", + "desc": "Starting at 18th level, the primal magic that you wield causes you to age more slowly. For every 10 years that pass, your body ages only 1 year.", + "document": "srd", + "parent": "srd_druid" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_druid_wild-shape", + "fields": { + "name": "Wild Shape", + "desc": "Starting at 2nd level, you can use your action to magically assume the shape of a beast that you have seen before. You can use this feature twice. You regain expended uses when you finish a short or long rest.\r\n\r\nYour druid level determines the beasts you can transform into, as shown in the Beast Shapes table. At 2nd level, for example, you can transform into any beast that has a challenge rating of 1/4 or lower that doesn't have a flying or swimming speed.\r\n\r\n| Level | Max. CR | Limitations | Example |\r\n| --- | --- | --- | --- |\r\n| 2nd | 1/4 | No flying or swimming speed | Wolf |\r\n| 4th | 1/2 | No flying speed | Crocodile |\r\n| 8th | 1 | - | Giant Eagle |\r\n\r\nYou can stay in a beast shape for a number of hours equal to half your druid level (rounded down). You then revert to your normal form unless you expend another use of this feature. You can revert to your normal form earlier by using a bonus action on your turn. You automatically revert if you fall unconscious, drop to 0 hit points, or die.\r\n\r\nWhile you are transformed, the following rules apply:\r\nYour game statistics are replaced by the statistics of the beast, but you retain your alignment, personality, and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus in its stat block is higher than yours, use the creature's bonus instead of yours. If the creature has any legendary or lair actions, you can't use them.\r\n\r\nWhen you transform, you assume the beast's hit points and Hit Dice. When you revert to your normal form, you return to the number of hit points you had before you transformed. However, if you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. For example, if you take 10 damage in animal form and have only 1 hit point left, you revert and take 9 damage. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious.\r\n\r\nYou can't cast spells, and your ability to speak or take any action that requires hands is limited to the capabilities of your beast form. Transforming doesn't break your concentration on a spell you've already cast, however, or prevent you from taking actions that are part of a spell, such as call lightning, that you've already cast.\r\n\r\nYou retain the benefit of any features from your class, race, or other source and can use them if the new form is physically capable of doing so. However, you can't use any of your special senses, such as darkvision, unless your new form also has that sense.\r\n\r\nYou choose whether your equipment falls to the ground in your space, merges into your new form, or is worn by it. Worn equipment functions as normal, but the GM decides whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change size or shape to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge with it. Equipment that merges with the form has no effect until you leave the form.", + "document": "srd", + "parent": "srd_druid" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_fighter_ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 6th, 8th, 12th, 14th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_fighter" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_fighter_action-surge", + "fields": { + "name": "Action Surge", + "desc": "Starting at 2nd level, you can push yourself beyond your normal limits for a moment. On your turn, you can take one additional action on top of your regular action and a possible bonus action.\r\n\r\nOnce you use this feature, you must finish a short or long rest before you can use it again. Starting at 17th level, you can use it twice before a rest, but only once on the same turn.", + "document": "srd", + "parent": "srd_fighter" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_fighter_extra-attack", + "fields": { + "name": "Extra Attack", + "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.\r\n\r\nThe number of attacks increases to three when you reach 11th level in this class and to four when you reach 20th level in this class.", + "document": "srd", + "parent": "srd_fighter" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_fighter_fighting-style", + "fields": { + "name": "Fighting Style", + "desc": "You adopt a particular style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n###Archery\r\n\r\nYou gain a +2 bonus to attack rolls you make with ranged weapons.\r\n\r\n###Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n###Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n###Great Weapon Fighting\r\n\r\nWhen you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll, even if the new roll is a 1 or a 2. The weapon must have the two-handed or versatile property for you to gain this benefit.\r\n\r\n###Protection\r\n\r\nWhen a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.\r\n\r\n###Two-Weapon Fighting\r\n\r\nWhen you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.", + "document": "srd", + "parent": "srd_fighter" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_fighter_indomitable", + "fields": { + "name": "Indomitable", + "desc": "Beginning at 9th level, you can reroll a saving throw that you fail. If you do so, you must use the new roll, and you can't use this feature again until you finish a long rest.\r\n\r\nYou can use this feature twice between long rests starting at 13th level and three times between long rests starting at 17th level.", + "document": "srd", + "parent": "srd_fighter" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_fighter_martial-archetype", + "fields": { + "name": "Martial Archetype", + "desc": "At 3rd level, you choose an archetype that you strive to emulate in your combat styles and techniques, such as Champion. The archetype you choose grants you features at 3rd level and again at 7th, 10th, 15th, and 18th level.", + "document": "srd", + "parent": "srd_fighter" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_fighter_second-wind", + "fields": { + "name": "Second Wind", + "desc": "You have a limited well of stamina that you can draw on to protect yourself from harm. On your turn, you can use a bonus action to regain hit points equal to 1d10 + your fighter level. Once you use this feature, you must finish a short or long rest before you can use it again.", + "document": "srd", + "parent": "srd_fighter" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_hunter_defensive-tactics", + "fields": { + "name": "Defensive Tactics", + "desc": "At 7th level, you gain one of the following features of your choice.\r\n\r\n***Escape the Horde.*** Opportunity attacks against you are made with disadvantage.\r\n\r\n***Multiattack Defense.*** When a creature hits you with an attack, you gain a +4 bonus to AC against all subsequent attacks made by that creature for the rest of the turn.\r\n\r\n***Steel Will.*** You have advantage on saving throws against being frightened.", + "document": "srd", + "parent": "srd_hunter" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_hunter_hunters-prey", + "fields": { + "name": "Hunter's Prey", + "desc": "At 3rd level, you gain one of the following features of your choice.\r\n\r\n***Colossus Slayer.*** Your tenacity can wear down the most potent foes. When you hit a creature with a weapon attack, the creature takes an extra 1d8 damage if it's below its hit point maximum. You can deal this extra damage only once per turn.\r\n\r\n***Giant Killer.*** When a Large or larger creature within 5 feet of you hits or misses you with an attack, you can use your reaction to attack that creature immediately after its attack, provided that you can see the creature.\r\n\r\n***Horde Breaker.*** Once on each of your turns when you make a weapon attack, you can make another attack with the same weapon against a different creature that is within 5 feet of the original target and within range of your weapon.", + "document": "srd", + "parent": "srd_hunter" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_hunter_multiattack", + "fields": { + "name": "Multiattack", + "desc": "At 11th level, you gain one of the following features of your choice.\r\n\r\n***Volley.*** You can use your action to make a ranged attack against any number of creatures within 10 feet of a point you can see within your weapon's range. You must have ammunition for each target, as normal, and you make a separate attack roll for each target.\r\n\r\n***Whirlwind Attack.*** You can use your action to make a melee attack against any number of creatures within 5 feet of you, with a separate attack roll for each target.", + "document": "srd", + "parent": "srd_hunter" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_hunter_superior-hunters-defense", + "fields": { + "name": "Superior Hunter's Defense", + "desc": "At 15th level, you gain one of the following features of your choice.\r\n\r\n***Evasion.*** When you are subjected to an effect, such as a red dragon's fiery breath or a lightning bolt spell, that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.\r\n\r\n***Stand Against the Tide.*** When a hostile creature misses you with a melee attack, you can use your reaction to force that creature to repeat the same attack against another creature (other than itself) of your choice.\r\n\r\n***Uncanny Dodge.*** When an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.", + "document": "srd", + "parent": "srd_hunter" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_life-domain_blessed-healer", + "fields": { + "name": "Blessed Healer", + "desc": "Beginning at 6th level, the healing spells you cast on others heal you as well. When you cast a spell of 1st level or higher that restores hit points to a creature other than you, you regain hit points equal to 2 + the spell's level.", + "document": "srd", + "parent": "srd_life-domain" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_life-domain_bonus-proficiency", + "fields": { + "name": "Bonus Proficiency", + "desc": "When you choose this domain at 1st level, you gain proficiency with heavy armor.", + "document": "srd", + "parent": "srd_life-domain" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_life-domain_channel-divinity-preserve-life", + "fields": { + "name": "Channel Divinity: Preserve Life", + "desc": "Starting at 2nd level, you can use your Channel Divinity to heal the badly injured.\r\n\r\nAs an action, you present your holy symbol and evoke healing energy that can restore a number of hit points equal to five times your cleric level. Choose any creatures within 30 feet of you, and divide those hit points among them. This feature can restore a creature to no more than half of its hit point maximum. You can't use this feature on an undead or a construct.", + "document": "srd", + "parent": "srd_life-domain" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_life-domain_disciple-of-life", + "fields": { + "name": "Disciple of Life", + "desc": "Also starting at 1st level, your healing spells are more effective. Whenever you use a spell of 1st level or higher to restore hit points to a creature, the creature regains additional hit points equal to 2 + the spell's level.", + "document": "srd", + "parent": "srd_life-domain" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_life-domain_divine-strike", + "fields": { + "name": "Divine Strike", + "desc": "At 8th level, you gain the ability to infuse your weapon strikes with divine energy. Once on each of your turns when you hit a creature with a weapon attack, you can cause the attack to deal an extra 1d8 radiant damage to the target. When you reach 14th level, the extra damage increases to 2d8.", + "document": "srd", + "parent": "srd_life-domain" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_life-domain_life-domain-spells-table", + "fields": { + "name": "Life Domain Spells (table)", + "desc": "Cleric Level | Spells |\r\n|---|---|\r\n| 1st | bless, cure wounds | \r\n| 3rd | lesser restoration, spiritual weapon |\r\n| 5th | beacon of hope, revivify |\r\n| 7th | death ward, guardian of faith |\r\n| 9th | mass cure wounds, raise dead |", + "document": "srd", + "parent": "srd_life-domain" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_life-domain_supreme-healing", + "fields": { + "name": "Supreme Healing", + "desc": "Starting at 17th level, when you would normally roll one or more dice to restore hit points with a spell, you instead use the highest number possible for each die. For example, instead of restoring 2d6 hit points to a creature, you restore 12.", + "document": "srd", + "parent": "srd_life-domain" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_deflect-missiles", + "fields": { + "name": "Deflect Missiles", + "desc": "Starting at 3rd level, you can use your reaction to deflect or catch the missile when you are hit by a ranged weapon attack. When you do so, the damage you take from the attack is reduced by 1d10 + your Dexterity modifier + your monk level.\r\n\r\nIf you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in one hand and you have at least one hand free. If you catch a missile in this way, you can spend 1 ki point to make a ranged attack with the weapon or piece of ammunition you just caught, as part of the same reaction. You make this attack with proficiency, regardless of your weapon proficiencies, and the missile counts as a monk weapon for the attack, which has a normal range of 20 feet and a long range of 60 feet.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_diamond-soul", + "fields": { + "name": "Diamond Soul", + "desc": "Beginning at 14th level, your mastery of ki grants you proficiency in all saving throws.\r\n\r\nAdditionally, whenever you make a saving throw and fail, you can spend 1 ki point to reroll it and take the second result.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_empty-body", + "fields": { + "name": "Empty Body", + "desc": "Beginning at 18th level, you can use your action to spend 4 ki points to become invisible for 1 minute. During that time, you also have resistance to all damage but force damage.\r\n\r\nAdditionally, you can spend 8 ki points to cast the astral projection spell, without needing material components. When you do so, you can't take any other creatures with you.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_evasion", + "fields": { + "name": "Evasion", + "desc": "At 7th level, your instinctive agility lets you dodge out of the way of certain area effects, such as a blue dragon's lightning breath or a fireball spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_extra-attack", + "fields": { + "name": "Extra Attack", + "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_ki", + "fields": { + "name": "Ki", + "desc": "Starting at 2nd level, your training allows you to harness the mystic energy of ki. Your access to this energy is represented by a number of ki points. Your monk level determines the number of points you have, as shown in the Ki Points column of the Monk table.\r\n\r\nYou can spend these points to fuel various ki features. You start knowing three such features: Flurry of Blows, Patient Defense, and Step of the Wind. You learn more ki features as you gain levels in this class.\r\n\r\nWhen you spend a ki point, it is unavailable until you finish a short or long rest, at the end of which you draw all of your expended ki back into yourself. You must spend at least 30 minutes of the rest meditating to regain your ki points.\r\n\r\nSome of your ki features require your target to make a saving throw to resist the feature's effects. The saving throw DC is calculated as follows:\r\n\r\n*Ki save DC* = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n### Flurry of Blows\r\n\r\nImmediately after you take the Attack action on your turn, you can spend 1 ki point to make two unarmed strikes as a bonus action. \r\n\r\n### Patient Defense\r\n\r\nYou can spend 1 ki point to take the Dodge action as a bonus action on your turn.\r\n\r\n### Step of the Wind\r\n\r\nYou can spend 1 ki point to take the Disengage or Dash action as a bonus action on your turn, and your jump distance is doubled for the turn.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_ki-empowered-strikes", + "fields": { + "name": "Ki-Empowered Strikes", + "desc": "Starting at 6th level, your unarmed strikes count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_martial-arts", + "fields": { + "name": "Martial Arts", + "desc": "At 1st level, your practice of martial arts gives you mastery of combat styles that use unarmed strikes and monk weapons, which are shortswords and any simple melee weapons that don't have the two- handed or heavy property.\r\n\r\nYou gain the following benefits while you are unarmed or wielding only monk weapons and you aren't wearing armor or wielding a shield:\r\n\r\n* You can use Dexterity instead of Strength for the attack and damage rolls of your unarmed strikes and monk weapons.\r\n* You can roll a d4 in place of the normal damage of your unarmed strike or monk weapon. This die changes as you gain monk levels, as shown in the Martial Arts column of the Monk table.\r\n* When you use the Attack action with an unarmed strike or a monk weapon on your turn, you can make one unarmed strike as a bonus action. For example, if you take the Attack action and attack with a quarterstaff, you can also make an unarmed strike as a bonus action, assuming you haven't already taken a bonus action this turn. \r\n\r\nCertain monasteries use specialized forms of the monk weapons. For example, you might use a club that is two lengths of wood connected by a short chain (called a nunchaku) or a sickle with a shorter, straighter blade (called a kama). Whatever name you use for a monk weapon, you can use the game statistics provided for the weapon.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_monastic-tradition", + "fields": { + "name": "Monastic Tradition", + "desc": "When you reach 3rd level, you commit yourself to a monastic tradition such as the Way of the Open Hand. Your tradition grants you features at 3rd level and again at 6th, 11th, and 17th level.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_perfect-self", + "fields": { + "name": "Perfect Self", + "desc": "At 20th level, when you roll for initiative and have no ki points remaining, you regain 4 ki points.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_purity-of-body", + "fields": { + "name": "Purity of Body", + "desc": "At 10th level, your mastery of the ki flowing through you makes you immune to disease and poison.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_slow-fall", + "fields": { + "name": "Slow Fall", + "desc": "Beginning at 4th level, you can use your reaction when you fall to reduce any falling damage you take by an amount equal to five times your monk level.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_stillness-of-mind", + "fields": { + "name": "Stillness of Mind", + "desc": "Starting at 7th level, you can use your action to end one effect on yourself that is causing you to be charmed or frightened.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_stunning-strike", + "fields": { + "name": "Stunning Strike", + "desc": "Starting at 5th level, you can interfere with the flow of ki in an opponent's body. When you hit another creature with a melee weapon attack, you can spend 1 ki point to attempt a stunning strike. The target must succeed on a Constitution saving throw or be stunned until the end of your next turn.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_timeless-body", + "fields": { + "name": "Timeless Body", + "desc": "At 15th level, your ki sustains you so that you suffer none of the frailty of old age, and you can't be aged magically. You can still die of old age, however. In addition, you no longer need food or water.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_tongue-of-the-sun-and-moon", + "fields": { + "name": "Tongue of the Sun and Moon", + "desc": "Starting at 13th level, you learn to touch the ki of other minds so that you understand all spoken languages. Moreover, any creature that can understand a language can understand what you say.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_unarmored-defense", + "fields": { + "name": "Unarmored Defense", + "desc": "Beginning at 1st level, while you are wearing no armor and not wielding a shield, your AC equals 10 + your Dexterity modifier + your Wisdom modifier.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_monk_unarmored-movement", + "fields": { + "name": "Unarmored Movement", + "desc": "Starting at 2nd level, your speed increases by 10 feet while you are not wearing armor or wielding a shield. This bonus increases when you reach certain monk levels, as shown in the Monk table.\r\n\r\nAt 9th level, you gain the ability to move along vertical surfaces and across liquids on your turn without falling during the move.", + "document": "srd", + "parent": "srd_monk" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_oath-of-devotion_aura-of-devotion", + "fields": { + "name": "Aura of Devotion", + "desc": "Starting at 7th level, you and friendly creatures within 10 feet of you can't be charmed while you are conscious.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", + "document": "srd", + "parent": "srd_oath-of-devotion" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_oath-of-devotion_channel-divinity", + "fields": { + "name": "Channel Divinity", + "desc": "When you take this oath at 3rd level, you gain the following two Channel Divinity options.\r\n\r\n**Sacred Weapon.** As an action, you can imbue one weapon that you are holding with positive energy, using your Channel Divinity. For 1 minute, you add your Charisma modifier to attack rolls made with that weapon (with a minimum bonus of +1). The weapon also emits bright light in a 20-foot radius and dim light 20 feet beyond that. If the weapon is not already magical, it becomes magical for the duration.\r\n\r\nYou can end this effect on your turn as part of any other action. If you are no longer holding or carrying this weapon, or if you fall unconscious, this effect ends.\r\n\r\n**Turn the Unholy.** As an action, you present your holy symbol and speak a prayer censuring fiends and undead, using your Channel Divinity. Each fiend or undead that can see or hear you within 30 feet of you must make a Wisdom saving throw. If the creature fails its saving throw, it is turned for 1 minute or until it takes damage.\r\n\r\nA turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action.", + "document": "srd", + "parent": "srd_oath-of-devotion" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_oath-of-devotion_holy-nimbus", + "fields": { + "name": "Holy Nimbus", + "desc": "At 20th level, as an action, you can emanate an aura of sunlight. For 1 minute, bright light shines from you in a 30-foot radius, and dim light shines 30 feet beyond that.\r\n\r\nWhenever an enemy creature starts its turn in the bright light, the creature takes 10 radiant damage.\r\n\r\nIn addition, for the duration, you have advantage on saving throws against spells cast by fiends or undead.\r\n\r\nOnce you use this feature, you can't use it again until you finish a long rest.", + "document": "srd", + "parent": "srd_oath-of-devotion" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_oath-of-devotion_oath-spells", + "fields": { + "name": "Oath Spells", + "desc": "You gain oath spells at the paladin levels listed.\r\n\r\n### Oath of Devotion Spells\r\n| Paladin Level | Spells |\r\n| --- | --- |\r\n| 3rd | protection from evil and good, sanctuary |\r\n| 5th | lesser restoration, zone of truth |\r\n| 9th | beacon of hope, dispel magic |\r\n| 13th | freedom of movement, guardian of faith |\r\n| 17th | commune, flame strike |", + "document": "srd", + "parent": "srd_oath-of-devotion" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_oath-of-devotion_purity-of-spirit", + "fields": { + "name": "Purity of Spirit", + "desc": "Beginning at 15th level, you are always under the effects of a *protection from evil and good* spell.", + "document": "srd", + "parent": "srd_oath-of-devotion" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_oath-of-devotion_tenets-of-devotion", + "fields": { + "name": "Tenets of Devotion", + "desc": "Though the exact words and strictures of the Oath of Devotion vary, paladins of this oath share these tenets.\r\n\r\n*Honesty.* Don't lie or cheat. Let your word be your promise.\r\n\r\n*Courage.* Never fear to act, though caution is wise.\r\n\r\n*Compassion.* Aid others, protect the weak, and punish those who threaten them. Show mercy to your foes, but temper it with wisdom.\r\n\r\n*Honor.* Treat others with fairness, and let your honorable deeds be an example to them. Do as much good as possible while causing the least amount of harm.\r\n\r\n*Duty.* Be responsible for your actions and their consequences, protect those entrusted to your care, and obey those who have just authority over you.", + "document": "srd", + "parent": "srd_oath-of-devotion" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_paladin_ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_paladin" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_paladin_aura-of-courage", + "fields": { + "name": "Aura of Courage", + "desc": "Starting at 10th level, you and friendly creatures within 10 feet of you can't be frightened while you are conscious.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", + "document": "srd", + "parent": "srd_paladin" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_paladin_aura-of-protection", + "fields": { + "name": "Aura of Protection", + "desc": "Starting at 6th level, whenever you or a friendly creature within 10 feet of you must make a saving throw, the creature gains a bonus to the saving throw equal to your Charisma modifier (with a minimum bonus of +1). You must be conscious to grant this bonus.\r\n\r\nAt 18th level, the range of this aura increases to 30 feet.", + "document": "srd", + "parent": "srd_paladin" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_paladin_cleansing-touch", + "fields": { + "name": "Cleansing Touch", + "desc": "Beginning at 14th level, you can use your action to end one spell on yourself or on one willing creature that you touch.\r\n\r\nYou can use this feature a number of times equal to your Charisma modifier (a minimum of once). You regain expended uses when you finish a long rest.", + "document": "srd", + "parent": "srd_paladin" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_paladin_divine-health", + "fields": { + "name": "Divine Health", + "desc": "By 3rd level, the divine magic flowing through you makes you immune to disease.", + "document": "srd", + "parent": "srd_paladin" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_paladin_divine-sense", + "fields": { + "name": "Divine Sense", + "desc": "The presence of strong evil registers on your senses like a noxious odor, and powerful good rings like heavenly music in your ears. As an action, you can open your awareness to detect such forces. Until the end of your next turn, you know the location of any celestial, fiend, or undead within 60 feet of you that is not behind total cover. You know the type (celestial, fiend, or undead) of any being whose presence you sense, but not its identity (the vampire Count Strahd von Zarovich, for instance). Within the same radius, you also detect the presence of any place or object that has been consecrated or desecrated, as with the hallow spell.\r\n\r\nYou can use this feature a number of times equal to 1 + your Charisma modifier. When you finish a long rest, you regain all expended uses.", + "document": "srd", + "parent": "srd_paladin" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_paladin_divine-smite", + "fields": { + "name": "Divine Smite", + "desc": "Starting at 2nd level, when you hit a creature with a melee weapon attack, you can expend one spell slot to deal radiant damage to the target, in addition to the weapon's damage. The extra damage is 2d8 for a 1st-level spell slot, plus 1d8 for each spell level higher than 1st, to a maximum of 5d8. The damage increases by 1d8 if the target is an undead or a fiend.", + "document": "srd", + "parent": "srd_paladin" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_paladin_extra-attack", + "fields": { + "name": "Extra Attack", + "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", + "document": "srd", + "parent": "srd_paladin" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_paladin_fighting-style", + "fields": { + "name": "Fighting Style", + "desc": "At 2nd level, you adopt a style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n### Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n### Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n### Great Weapon Fighting\r\n\r\nWhen you roll a 1 or 2 on a damage die for an attack you make with a melee weapon that you are wielding with two hands, you can reroll the die and must use the new roll. The weapon must have the two-handed or versatile property for you to gain this benefit.\r\n\r\n### Protection\r\n\r\nWhen a creature you can see attacks a target other than you that is within 5 feet of you, you can use your reaction to impose disadvantage on the attack roll. You must be wielding a shield.", + "document": "srd", + "parent": "srd_paladin" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_paladin_improved-divine-smite", + "fields": { + "name": "Improved Divine Smite", + "desc": "By 11th level, you are so suffused with righteous might that all your melee weapon strikes carry divine power with them. Whenever you hit a creature with a melee weapon, the creature takes an extra 1d8 radiant damage. If you also use your Divine Smite with an attack, you add this damage to the extra damage of your Divine Smite.", + "document": "srd", + "parent": "srd_paladin" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_paladin_lay-on-hands", + "fields": { + "name": "Lay on Hands", + "desc": "Your blessed touch can heal wounds. You have a pool of healing power that replenishes when you take a long rest. With that pool, you can restore a total number of hit points equal to your paladin level × 5.\r\n\r\nAs an action, you can touch a creature and draw power from the pool to restore a number of hit points to that creature, up to the maximum amount remaining in your pool.\r\n\r\nAlternatively, you can expend 5 hit points from your pool of healing to cure the target of one disease or neutralize one poison affecting it. You can cure multiple diseases and neutralize multiple poisons with a single use of Lay on Hands, expending hit points separately for each one.\r\n\r\nThis feature has no effect on undead and constructs.", + "document": "srd", + "parent": "srd_paladin" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_paladin_sacred-oath", + "fields": { + "name": "Sacred Oath", + "desc": "When you reach 3rd level, you swear the oath that binds you as a paladin forever. Up to this time you have been in a preparatory stage, committed to the path but not yet sworn to it. Now you choose the Oath of Devotion, the Oath of the Ancients, or the Oath of Vengeance, all detailed at the end of the class description.\r\n\r\nYour choice grants you features at 3rd level and again at 7th, 15th, and 20th level. Those features include oath spells and the Channel Divinity feature.\r\n\r\n### Oath Spells\r\n\r\nEach oath has a list of associated spells. You gain access to these spells at the levels specified in the oath description. Once you gain access to an oath spell, you always have it prepared. Oath spells don't count against the number of spells you can prepare each day.\r\n\r\nIf you gain an oath spell that doesn't appear on the paladin spell list, the spell is nonetheless a paladin spell for you.\r\n\r\n### Channel Divinity\r\n\r\nYour oath allows you to channel divine energy to fuel magical effects. Each Channel Divinity option provided by your oath explains how to use it.\r\n\r\nWhen you use your Channel Divinity, you choose which option to use. You must then finish a short or long rest to use your Channel Divinity again.\r\n\r\nSome Channel Divinity effects require saving throws. When you use such an effect from this class, the DC equals your paladin spell save DC.", + "document": "srd", + "parent": "srd_paladin" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_paladin_spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "By 2nd level, you have learned to draw on divine magic through meditation and prayer to cast spells as a cleric does.\r\n\r\n### Preparing and Casting Spells\r\n\r\nThe Paladin table shows how many spell slots you have to cast your spells. To cast one of your paladin spells of 1st level or higher, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of paladin spells that are available for you to cast, choosing from the paladin spell list. When you do so, choose a number of paladin spells equal to your Charisma modifier + half your paladin level, rounded down (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you are a 5th-level paladin, you have four 1st-level and two 2nd-level spell slots. With a Charisma of 14, your list of prepared spells can include four spells of 1st or 2nd level, in any combination. If you prepare the 1st-level spell cure wounds, you can cast it using a 1st-level or a 2nd- level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of paladin spells requires time spent in prayer and meditation: at least 1 minute per spell level for each spell on your list.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your paladin spells, since their power derives from the strength of your convictions. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a paladin spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\nSpellcasting Focus\r\n\r\nYou can use a holy symbol as a spellcasting focus for your paladin spells.", + "document": "srd", + "parent": "srd_paladin" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_path-of-the-berserker_frenzy", + "fields": { + "name": "Frenzy", + "desc": "Starting when you choose this path at 3rd level, you can go into a frenzy when you rage. If you do so, for the duration of your rage you can make a single melee weapon attack as a bonus action on each of your turns after this one. When your rage ends, you suffer one level of exhaustion (as described in appendix A).", + "document": "srd", + "parent": "srd_path-of-the-berserker" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_path-of-the-berserker_intimidating-presence", + "fields": { + "name": "Intimidating Presence", + "desc": "Beginning at 10th level, you can use your action to frighten someone with your menacing presence. When you do so, choose one creature that you can see within 30 feet of you. If the creature can see or hear you, it must succeed on a Wisdom saving throw (DC equal to 8 + your proficiency bonus + your Charisma modifier) or be frightened of you until the end of your next turn. On subsequent turns, you can use your action to extend the duration of this effect on the frightened creature until the end of your next turn. This effect ends if the creature ends its turn out of line of sight or more than 60 feet away from you.\r\n\r\nIf the creature succeeds on its saving throw, you can't use this feature on that creature again for 24 hours.", + "document": "srd", + "parent": "srd_path-of-the-berserker" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_path-of-the-berserker_mindless-rage", + "fields": { + "name": "Mindless Rage", + "desc": "Beginning at 6th level, you can't be charmed or frightened while raging. If you are charmed or frightened when you enter your rage, the effect is suspended for the duration of the rage.", + "document": "srd", + "parent": "srd_path-of-the-berserker" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_path-of-the-berserker_retaliation", + "fields": { + "name": "Retaliation", + "desc": "Starting at 14th level, when you take damage from a creature that is within 5 feet of you, you can use your reaction to make a melee weapon attack against that creature.", + "document": "srd", + "parent": "srd_path-of-the-berserker" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_ranger_ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_ranger" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_ranger_extra-attack", + "fields": { + "name": "Extra Attack", + "desc": "Beginning at 5th level, you can attack twice, instead of once, whenever you take the Attack action on your turn.", + "document": "srd", + "parent": "srd_ranger" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_ranger_favored-enemy", + "fields": { + "name": "Favored Enemy", + "desc": "Beginning at 1st level, you have significant experience studying, tracking, hunting, and even talking to a certain type of enemy.\r\n\r\nChoose a type of favored enemy: aberrations, beasts, celestials, constructs, dragons, elementals, fey, fiends, giants, monstrosities, oozes, plants, or undead. Alternatively, you can select two races of humanoid (such as gnolls and orcs) as favored enemies.\r\n\r\nYou have advantage on Wisdom (Survival) checks to track your favored enemies, as well as on Intelligence checks to recall information about them.\r\n\r\nWhen you gain this feature, you also learn one language of your choice that is spoken by your favored enemies, if they speak one at all.\r\n\r\nYou choose one additional favored enemy, as well as an associated language, at 6th and 14th level. As you gain levels, your choices should reflect the types of monsters you have encountered on your adventures.", + "document": "srd", + "parent": "srd_ranger" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_ranger_feral-senses", + "fields": { + "name": "Feral Senses", + "desc": "At 18th level, you gain preternatural senses that help you fight creatures you can't see. When you attack a creature you can't see, your inability to see it doesn't impose disadvantage on your attack rolls against it.\r\n\r\nYou are also aware of the location of any invisible creature within 30 feet of you, provided that the creature isn't hidden from you and you aren't blinded or deafened.", + "document": "srd", + "parent": "srd_ranger" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_ranger_fighting-style", + "fields": { + "name": "Fighting Style", + "desc": "At 2nd level, you adopt a particular style of fighting as your specialty. Choose one of the following options. You can't take a Fighting Style option more than once, even if you later get to choose again.\r\n\r\n### Archery\r\n\r\nYou gain a +2 bonus to attack rolls you make with ranged weapons.\r\n\r\n### Defense\r\n\r\nWhile you are wearing armor, you gain a +1 bonus to AC.\r\n\r\n### Dueling\r\n\r\nWhen you are wielding a melee weapon in one hand and no other weapons, you gain a +2 bonus to damage rolls with that weapon.\r\n\r\n### Two-Weapon Fighting\r\n\r\nWhen you engage in two-weapon fighting, you can add your ability modifier to the damage of the second attack.", + "document": "srd", + "parent": "srd_ranger" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_ranger_foe-slayer", + "fields": { + "name": "Foe Slayer", + "desc": "At 20th level, you become an unparalleled hunter of your enemies. Once on each of your turns, you can add your Wisdom modifier to the attack roll or the damage roll of an attack you make against one of your favored enemies. You can choose to use this feature before or after the roll, but before any effects of the roll are applied.", + "document": "srd", + "parent": "srd_ranger" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_ranger_hide-in-plain-sight", + "fields": { + "name": "Hide in Plain Sight", + "desc": "Starting at 10th level, you can spend 1 minute creating camouflage for yourself. You must have access to fresh mud, dirt, plants, soot, and other naturally occurring materials with which to create your camouflage.\r\n\r\nOnce you are camouflaged in this way, you can try to hide by pressing yourself up against a solid surface, such as a tree or wall, that is at least as tall and wide as you are. You gain a +10 bonus to Dexterity (Stealth) checks as long as you remain there without moving or taking actions. Once you move or take an action or a reaction, you must camouflage yourself again to gain this benefit.", + "document": "srd", + "parent": "srd_ranger" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_ranger_lands-stride", + "fields": { + "name": "Land's Stride", + "desc": "Starting at 8th level, moving through nonmagical difficult terrain costs you no extra movement. You can also pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard.\r\n\r\nIn addition, you have advantage on saving throws against plants that are magically created or manipulated to impede movement, such those created by the entangle spell.", + "document": "srd", + "parent": "srd_ranger" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_ranger_natural-explorer", + "fields": { + "name": "Natural Explorer", + "desc": "You are particularly familiar with one type of natural environment and are adept at traveling and surviving in such regions. Choose one type of favored terrain: arctic, coast, desert, forest, grassland, mountain, or swamp. When you make an Intelligence or Wisdom check related to your favored terrain, your proficiency bonus is doubled if you are using a skill that you're proficient in.\r\n\r\nWhile traveling for an hour or more in your favored terrain, you gain the following benefits:\r\n\r\n* Difficult terrain doesn't slow your group's travel.\r\n* Your group can't become lost except by magical means.\r\n* Even when you are engaged in another activity while traveling (such as foraging, navigating, or tracking), you remain alert to danger.\r\n* If you are traveling alone, you can move stealthily at a normal pace.\r\n* When you forage, you find twice as much food as you normally would.\r\n* While tracking other creatures, you also learn their exact number, their sizes, and how long ago they passed through the area. \r\n\r\nYou choose additional favored terrain types at 6th and 10th level.", + "document": "srd", + "parent": "srd_ranger" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_ranger_primeval-awareness", + "fields": { + "name": "Primeval Awareness", + "desc": "Beginning at 3rd level, you can use your action and expend one ranger spell slot to focus your awareness on the region around you. For 1 minute per level of the spell slot you expend, you can sense whether the following types of creatures are present within 1 mile of you (or within up to 6 miles if you are in your favored terrain): aberrations, celestials, dragons, elementals, fey, fiends, and undead. This feature doesn't reveal the creatures' location or number.", + "document": "srd", + "parent": "srd_ranger" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_ranger_ranger-archetype", + "fields": { + "name": "Ranger Archetype", + "desc": "At 3rd level, you choose an archetype that you strive to emulate: Hunter or Beast Master, both detailed at the end of the class description. Your choice grants you features at 3rd level and again at 7th, 11th, and 15th level.", + "document": "srd", + "parent": "srd_ranger" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_ranger_spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "By the time you reach 2nd level, you have learned to use the magical essence of nature to cast spells, much as a druid does. See chapter 10 for the general rules of spellcasting and chapter 11 for the ranger spell list.\r\n\r\n### Spell Slots\r\n\r\nThe Ranger table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell animal friendship and have a 1st-level and a 2nd-level spell slot available, you can cast animal friendship using either slot.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nYou know two 1st-level spells of your choice from the ranger spell list.\r\n\r\nThe Spells Known column of the Ranger table shows when you learn more ranger spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 5th level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the ranger spells you know and replace it with another spell from the ranger spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nWisdom is your spellcasting ability for your ranger spells, since your magic draws on your attunement to nature. You use your Wisdom whenever a spell refers to your spellcasting ability. In addition, you use your Wisdom modifier when setting the saving throw DC for a ranger spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Wisdom modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Wisdom modifier", + "document": "srd", + "parent": "srd_ranger" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_ranger_vanish", + "fields": { + "name": "Vanish", + "desc": "Starting at 14th level, you can use the Hide action as a bonus action on your turn. Also, you can't be tracked by nonmagical means, unless you choose to leave a trail.", + "document": "srd", + "parent": "srd_ranger" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_rogue_ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 10th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_rogue" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_rogue_blindsense", + "fields": { + "name": "Blindsense", + "desc": "Starting at 14th level, if you are able to hear, you are aware of the location of any hidden or invisible creature within 10 feet of you.", + "document": "srd", + "parent": "srd_rogue" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_rogue_cunning-action", + "fields": { + "name": "Cunning Action", + "desc": "Starting at 2nd level, your quick thinking and agility allow you to move and act quickly. You can take a bonus action on each of your turns in combat. This action can be used only to take the Dash, Disengage, or Hide action.", + "document": "srd", + "parent": "srd_rogue" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_rogue_elusive", + "fields": { + "name": "Elusive", + "desc": "Beginning at 18th level, you are so evasive that attackers rarely gain the upper hand against you. No attack roll has advantage against you while you aren't incapacitated.", + "document": "srd", + "parent": "srd_rogue" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_rogue_evasion", + "fields": { + "name": "Evasion", + "desc": "Beginning at 7th level, you can nimbly dodge out of the way of certain area effects, such as a red dragon's fiery breath or an ice storm spell. When you are subjected to an effect that allows you to make a Dexterity saving throw to take only half damage, you instead take no damage if you succeed on the saving throw, and only half damage if you fail.", + "document": "srd", + "parent": "srd_rogue" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_rogue_expertise", + "fields": { + "name": "Expertise", + "desc": "At 1st level, choose two of your skill proficiencies, or one of your skill proficiencies and your proficiency with thieves' tools. Your proficiency bonus is doubled for any ability check you make that uses either of the chosen proficiencies.\r\n\r\nAt 6th level, you can choose two more of your proficiencies (in skills or with thieves' tools) to gain this benefit.", + "document": "srd", + "parent": "srd_rogue" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_rogue_reliable-talent", + "fields": { + "name": "Reliable Talent", + "desc": "By 11th level, you have refined your chosen skills until they approach perfection. Whenever you make an ability check that lets you add your proficiency bonus, you can treat a d20 roll of 9 or lower as a 10.", + "document": "srd", + "parent": "srd_rogue" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_rogue_roguish-archetype", + "fields": { + "name": "Roguish Archetype", + "desc": "At 3rd level, you choose an archetype that you emulate in the exercise of your rogue abilities: Thief, Assassin, or Arcane Trickster, all detailed at the end of the class description. Your archetype choice grants you features at 3rd level and then again at 9th, 13th, and 17th level.", + "document": "srd", + "parent": "srd_rogue" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_rogue_slippery-mind", + "fields": { + "name": "Slippery Mind", + "desc": "By 15th level, you have acquired greater mental strength. You gain proficiency in Wisdom saving throws.", + "document": "srd", + "parent": "srd_rogue" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_rogue_sneak-attack", + "fields": { + "name": "Sneak Attack", + "desc": "Beginning at 1st level, you know how to strike subtly and exploit a foe's distraction. Once per turn, you can deal an extra 1d6 damage to one creature you hit with an attack if you have advantage on the attack roll. The attack must use a finesse or a ranged weapon.\r\n\r\nYou don't need advantage on the attack roll if another enemy of the target is within 5 feet of it, that enemy isn't incapacitated, and you don't have disadvantage on the attack roll.\r\n\r\nThe amount of the extra damage increases as you gain levels in this class, as shown in the Sneak Attack column of the Rogue table.", + "document": "srd", + "parent": "srd_rogue" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_rogue_stroke-of-luck", + "fields": { + "name": "Stroke of Luck", + "desc": "At 20th level, you have an uncanny knack for succeeding when you need to. If your attack misses a target within range, you can turn the miss into a hit. Alternatively, if you fail an ability check, you can treat the d20 roll as a 20.\r\n\r\nOnce you use this feature, you can't use it again until you finish a short or long rest.", + "document": "srd", + "parent": "srd_rogue" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_rogue_thieves-cant", + "fields": { + "name": "Thieves' Cant", + "desc": "During your rogue training you learned thieves' cant, a secret mix of dialect, jargon, and code that allows you to hide messages in seemingly normal conversation. Only another creature that knows thieves' cant understands such messages. It takes four times longer to convey such a message than it does to speak the same idea plainly.\r\n\r\nIn addition, you understand a set of secret signs and symbols used to convey short, simple messages, such as whether an area is dangerous or the territory of a thieves' guild, whether loot is nearby, or whether the people in an area are easy marks or will provide a safe house for thieves on the run.", + "document": "srd", + "parent": "srd_rogue" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_rogue_uncanny-dodge", + "fields": { + "name": "Uncanny Dodge", + "desc": "Starting at 5th level, when an attacker that you can see hits you with an attack, you can use your reaction to halve the attack's damage against you.", + "document": "srd", + "parent": "srd_rogue" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_school-of-evocation_empowered-evocation", + "fields": { + "name": "Empowered Evocation", + "desc": "Beginning at 10th level, you can add your Intelligence modifier to one damage roll of any wizard evocation spell you cast.", + "document": "srd", + "parent": "srd_school-of-evocation" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_school-of-evocation_evocation-savant", + "fields": { + "name": "Evocation Savant", + "desc": "Beginning when you select this school at 2nd level, the gold and time you must spend to copy an evocation spell into your spellbook is halved.", + "document": "srd", + "parent": "srd_school-of-evocation" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_school-of-evocation_overchannel", + "fields": { + "name": "Overchannel", + "desc": "Starting at 14th level, you can increase the power of your simpler spells. When you cast a wizard spell of 1st through 5th level that deals damage, you can deal maximum damage with that spell.\r\n\r\nThe first time you do so, you suffer no adverse effect. If you use this feature again before you finish a long rest, you take 2d12 necrotic damage for each level of the spell, immediately after you cast it. Each time you use this feature again before finishing a long rest, the necrotic damage per spell level increases by 1d12. This damage ignores resistance and immunity.", + "document": "srd", + "parent": "srd_school-of-evocation" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_school-of-evocation_potent-cantrip", + "fields": { + "name": "Potent Cantrip", + "desc": "Starting at 6th level, your damaging cantrips affect even creatures that avoid the brunt of the effect. When a creature succeeds on a saving throw against your cantrip, the creature takes half the cantrip's damage (if any) but suffers no additional effect from the cantrip.", + "document": "srd", + "parent": "srd_school-of-evocation" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_school-of-evocation_sculpt-spells", + "fields": { + "name": "Sculpt Spells", + "desc": "Beginning at 2nd level, you can create pockets of relative safety within the effects of your evocation spells. When you cast an evocation spell that affects other creatures that you can see, you can choose a number of them equal to 1 + the spell's level. The chosen creatures automatically succeed on their saving throws against the spell, and they take no damage if they would normally take half damage on a successful save.", + "document": "srd", + "parent": "srd_school-of-evocation" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_sorcerer_ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_sorcerer" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_sorcerer_font-of-magic", + "fields": { + "name": "Font of Magic", + "desc": "At 2nd level, you tap into a deep wellspring of magic within yourself. This wellspring is represented by sorcery points, which allow you to create a variety of magical effects.\r\n\r\n### Sorcery Points\r\n\r\nYou have 2 sorcery points, and you gain more as you reach higher levels, as shown in the Sorcery Points column of the Sorcerer table. You can never have more sorcery points than shown on the table for your level. You regain all spent sorcery points when you finish a long rest.\r\n\r\n### Flexible Casting\r\n\r\nYou can use your sorcery points to gain additional spell slots, or sacrifice spell slots to gain additional sorcery points. You learn other ways to use your sorcery points as you reach higher levels.\r\n\r\n***Creating Spell Slots.*** You can transform unexpended sorcery points into one spell slot as a bonus action on your turn. The Creating Spell Slots table shows the cost of creating a spell slot of a given level. You can create spell slots no higher in level than 5th.\r\n\r\nAny spell slot you create with this feature vanishes when you finish a long rest.\r\n\r\n### Creating Spell Slots (table)\r\n| Spell Slot Level | Sorcery Point Cost |\r\n| --- | --- |\r\n| 1st | 2 |\r\n| 2nd | 3 |\r\n| 3rd | 5 |\r\n| 4th | 6 |\r\n| 5th | 7|\r\n\r\n***Converting a Spell Slot to Sorcery Points.*** As a bonus action on your turn, you can expend one spell slot and gain a number of sorcery points equal to the slot's level.", + "document": "srd", + "parent": "srd_sorcerer" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_sorcerer_metamagic", + "fields": { + "name": "Metamagic", + "desc": "At 3rd level, you gain the ability to twist your spells to suit your needs. You gain two of the following Metamagic options of your choice. You gain another one at 10th and 17th level.\r\n\r\nYou can use only one Metamagic option on a spell when you cast it, unless otherwise noted.\r\n\r\n### Careful Spell\r\n\r\nWhen you cast a spell that forces other creatures to make a saving throw, you can protect some of those creatures from the spell's full force. To do so, you spend 1 sorcery point and choose a number of those creatures up to your Charisma modifier (minimum of one creature). A chosen creature automatically succeeds on its saving throw against the spell.\r\n\r\n### Distant Spell\r\n\r\nWhen you cast a spell that has a range of 5 feet or greater, you can spend 1 sorcery point to double the range of the spell.\r\n\r\nWhen you cast a spell that has a range of touch, you can spend 1 sorcery point to make the range of the spell 30 feet.\r\n\r\n### Empowered Spell\r\n\r\nWhen you roll damage for a spell, you can spend 1 sorcery point to reroll a number of the damage dice up to your Charisma modifier (minimum of one). You must use the new rolls.\r\n\r\nYou can use Empowered Spell even if you have already used a different Metamagic option during the casting of the spell.\r\n\r\n### Extended Spell\r\n\r\nWhen you cast a spell that has a duration of 1 minute or longer, you can spend 1 sorcery point to double its duration, to a maximum duration of 24 hours.\r\n\r\n### Heightened Spell\r\n\r\nWhen you cast a spell that forces a creature to make a saving throw to resist its effects, you can spend 3 sorcery points to give one target of the spell disadvantage on its first saving throw made against the spell.\r\n\r\n### Quickened Spell\r\n\r\nWhen you cast a spell that has a casting time of 1 action, you can spend 2 sorcery points to change the casting time to 1 bonus action for this casting.\r\n\r\n### Subtle Spell\r\n\r\nWhen you cast a spell, you can spend 1 sorcery point to cast it without any somatic or verbal components.\r\n\r\n### Twinned Spell\r\n\r\nWhen you cast a spell that targets only one creature and doesn't have a range of self, you can spend a number of sorcery points equal to the spell's level to target a second creature in range with the same spell (1 sorcery point if the spell is a cantrip).\r\n\r\nTo be eligible, a spell must be incapable of targeting more than one creature at the spell's current level. For example, magic missile and scorching ray aren't eligible, but ray of frost and chromatic orb are.", + "document": "srd", + "parent": "srd_sorcerer" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_sorcerer_sorcerous-origin", + "fields": { + "name": "Sorcerous Origin", + "desc": "Choose a sorcerous origin, which describes the source of your innate magical power: Draconic Bloodline or Wild Magic, both detailed at the end of the class description.\r\n\r\nYour choice grants you features when you choose it at 1st level and again at 6th, 14th, and 18th level.", + "document": "srd", + "parent": "srd_sorcerer" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_sorcerer_sorcerous-restoration", + "fields": { + "name": "Sorcerous Restoration", + "desc": "At 20th level, you regain 4 expended sorcery points whenever you finish a short rest.", + "document": "srd", + "parent": "srd_sorcerer" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_sorcerer_spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "An event in your past, or in the life of a parent or ancestor, left an indelible mark on you, infusing you with arcane magic. This font of magic, whatever its origin, fuels your spells.\r\n\r\n### Cantrips\r\n\r\nAt 1st level, you know four cantrips of your choice from the sorcerer spell list. You learn additional sorcerer cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Sorcerer table.\r\n\r\n### Spell Slots\r\n\r\nThe Sorcerer table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these sorcerer spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nFor example, if you know the 1st-level spell burning hands and have a 1st-level and a 2nd-level spell slot available, you can cast burning hands using either slot.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nYou know two 1st-level spells of your choice from the sorcerer spell list.\r\n\r\nThe Spells Known column of the Sorcerer table shows when you learn more sorcerer spells of your choice. Each of these spells must be of a level for which you have spell slots. For instance, when you reach 3rd level in this class, you can learn one new spell of 1st or 2nd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the sorcerer spells you know and replace it with another spell from the sorcerer spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your sorcerer spells, since the power of your magic relies on your ability to project your will into the world. You use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a sorcerer spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC = 8** + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\nSpellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your sorcerer spells.", + "document": "srd", + "parent": "srd_sorcerer" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_the-fiend_dark-ones-blessing", + "fields": { + "name": "Dark One's Blessing", + "desc": "Starting at 1st level, when you reduce a hostile creature to 0 hit points, you gain temporary hit points equal to your Charisma modifier + your warlock level (minimum of 1).", + "document": "srd", + "parent": "srd_the-fiend" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_the-fiend_dark-ones-own-luck", + "fields": { + "name": "Dark One's Own Luck", + "desc": "Starting at 6th level, you can call on your patron to alter fate in your favor. When you make an ability check or a saving throw, you can use this feature to add a d10 to your roll. You can do so after seeing the initial roll but before any of the roll's effects occur.\r\n\r\nOnce you use this feature, you can't use it again until you finish a short or long rest.", + "document": "srd", + "parent": "srd_the-fiend" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_the-fiend_expanded-spell-list", + "fields": { + "name": "Expanded Spell List", + "desc": "The Fiend lets you choose from an expanded list of spells when you learn a warlock spell. The following spells are added to the warlock spell list for you.\r\n\r\n### Fiend Expanded Spells (table)\r\n| Spell Level | Spells |\r\n| --- | --- |\r\n| 1st | burning hands, command |\r\n| 2nd | blindness/deafness, scorching ray |\r\n| 3rd | fireball, stinking cloud |\r\n| 4th | fire shield, wall of fire |\r\n| 5th | flame strike, hallow |", + "document": "srd", + "parent": "srd_the-fiend" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_the-fiend_fiendish-resilience", + "fields": { + "name": "Fiendish Resilience", + "desc": "Starting at 10th level, you can choose one damage type when you finish a short or long rest. You gain resistance to that damage type until you choose a different one with this feature. Damage from magical weapons or silver weapons ignores this resistance.", + "document": "srd", + "parent": "srd_the-fiend" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_the-fiend_hurl-through-hell", + "fields": { + "name": "Hurl Through Hell", + "desc": "Starting at 14th level, when you hit a creature with an attack, you can use this feature to instantly transport the target through the lower planes. The creature disappears and hurtles through a nightmare landscape.\r\n\r\nAt the end of your next turn, the target returns to the space it previously occupied, or the nearest unoccupied space. If the target is not a fiend, it takes 10d10 psychic damage as it reels from its horrific experience.\r\n\r\nOnce you use this feature, you can't use it again until you finish a long rest.", + "document": "srd", + "parent": "srd_the-fiend" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_thief_fast-hands", + "fields": { + "name": "Fast Hands", + "desc": "Starting at 3rd level, you can use the bonus action granted by your Cunning Action to make a Dexterity (Sleight of Hand) check, use your thieves' tools to disarm a trap or open a lock, or take the Use an Object action.", + "document": "srd", + "parent": "srd_thief" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_thief_second-story-work", + "fields": { + "name": "Second-Story Work", + "desc": "When you choose this archetype at 3rd level, you gain the ability to climb faster than normal; climbing no longer costs you extra movement.\r\n\r\nIn addition, when you make a running jump, the distance you cover increases by a number of feet equal to your Dexterity modifier.", + "document": "srd", + "parent": "srd_thief" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_thief_supreme-sneak", + "fields": { + "name": "Supreme Sneak", + "desc": "Starting at 9th level, you have advantage on a Dexterity (Stealth) check if you move no more than half your speed on the same turn.", + "document": "srd", + "parent": "srd_thief" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_thief_thiefs-reflexes", + "fields": { + "name": "Thief's Reflexes", + "desc": "When you reach 17th level, you have become adept at laying ambushes and quickly escaping danger. You can take two turns during the first round of any combat. You take your first turn at your normal initiative and your second turn at your initiative minus 10. You can't use this feature when you are surprised.", + "document": "srd", + "parent": "srd_thief" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_thief_use-magic-device", + "fields": { + "name": "Use Magic Device", + "desc": "By 13th level, you have learned enough about the workings of magic that you can improvise the use of items even when they are not intended for you. You ignore all class, race, and level requirements on the use of magic items.", + "document": "srd", + "parent": "srd_thief" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_warlock_ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_warlock" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_warlock_eldritch-invocation-list", + "fields": { + "name": "Eldritch Invocation List", + "desc": "If an eldritch invocation has prerequisites, you must meet them to learn it. You can learn the invocation at the same time that you meet its prerequisites. A level prerequisite refers to your level in this class.\r\n\r\n### Agonizing Blast\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you cast eldritch blast, add your Charisma modifier to the damage it deals on a hit.\r\nArmor of Shadows\r\n\r\nYou can cast mage armor on yourself at will, without expending a spell slot or material components.\r\n\r\n### Ascendant Step\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast levitate on yourself at will, without expending a spell slot or material components.\r\n\r\n### Beast Speech\r\n\r\nYou can cast speak with animals at will, without expending a spell slot.\r\n\r\n### Beguiling Influence\r\n\r\nYou gain proficiency in the Deception and Persuasion skills.\r\n\r\n### Bewitching Whispers\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast compulsion once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Book of Ancient Secrets\r\n\r\nPrerequisite: Pact of the Tome feature\r\n\r\nYou can now inscribe magical rituals in your Book of Shadows. Choose two 1st-level spells that have the ritual tag from any class's spell list (the two needn't be from the same list). The spells appear in the book and don't count against the number of spells you know. With your Book of Shadows in hand, you can cast the chosen spells as rituals. You can't cast the spells except as rituals, unless you've learned them by some other means. You can also cast a warlock spell you know as a ritual if it has the ritual tag.\r\n\r\nOn your adventures, you can add other ritual spells to your Book of Shadows. When you find such a spell, you can add it to the book if the spell's level is equal to or less than half your warlock level (rounded up) and if you can spare the time to transcribe the spell. For each level of the spell, the transcription process takes 2 hours and costs 50 gp for the rare inks needed to inscribe it.\r\n\r\n### Chains of Carceri\r\n\r\nPrerequisite: 15th level, Pact of the Chain feature\r\n\r\nYou can cast hold monster at will-targeting a celestial, fiend, or elemental-without expending a spell slot or material components. You must finish a long rest before you can use this invocation on the same creature again.\r\n\r\n### Devil's Sight\r\n\r\nYou can see normally in darkness, both magical and nonmagical, to a distance of 120 feet.\r\n\r\n### Dreadful Word\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast confusion once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Eldritch Sight\r\n\r\nYou can cast detect magic at will, without expending a spell slot.\r\n\r\n### Eldritch Spear\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you cast eldritch blast, its range is 300 feet.\r\n\r\n### Eyes of the Rune Keeper\r\n\r\nYou can read all writing.\r\n\r\n### Fiendish Vigor\r\n\r\nYou can cast false life on yourself at will as a 1st-level spell, without expending a spell slot or material components.\r\n\r\n### Gaze of Two Minds\r\n\r\nYou can use your action to touch a willing humanoid and perceive through its senses until the end of your next turn. As long as the creature is on the same plane of existence as you, you can use your action on subsequent turns to maintain this connection, extending the duration until the end of your next turn. While perceiving through the other creature's senses, you benefit from any special senses possessed by that creature, and you are blinded and deafened to your own surroundings.\r\n\r\n### Lifedrinker\r\n\r\nPrerequisite: 12th level, Pact of the Blade feature\r\n\r\nWhen you hit a creature with your pact weapon, the creature takes extra necrotic damage equal to your Charisma modifier (minimum 1).\r\n\r\n### Mask of Many Faces\r\n\r\nYou can cast disguise self at will, without expending a spell slot.\r\n\r\n### Master of Myriad Forms\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can cast alter self at will, without expending a spell slot.\r\n\r\n### Minions of Chaos\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast conjure elemental once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Mire the Mind\r\n\r\nPrerequisite: 5th level\r\n\r\nYou can cast slow once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Misty Visions\r\n\r\nYou can cast silent image at will, without expending a spell slot or material components.\r\n\r\n### One with Shadows\r\n\r\nPrerequisite: 5th level\r\n\r\nWhen you are in an area of dim light or darkness, you can use your action to become invisible until you move or take an action or a reaction.\r\n\r\n### Otherworldly Leap\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast jump on yourself at will, without expending a spell slot or material components.\r\n\r\n### Repelling Blast\r\n\r\nPrerequisite: eldritch blast cantrip\r\n\r\nWhen you hit a creature with eldritch blast, you can push the creature up to 10 feet away from you in a straight line.\r\n\r\n### Sculptor of Flesh\r\n\r\nPrerequisite: 7th level\r\n\r\nYou can cast polymorph once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Sign of Ill Omen\r\n\r\nPrerequisite: 5th level\r\n\r\nYou can cast bestow curse once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Thief of Five Fates\r\n\r\nYou can cast bane once using a warlock spell slot. You can't do so again until you finish a long rest.\r\n\r\n### Thirsting Blade\r\n\r\nPrerequisite: 5th level, Pact of the Blade feature\r\n\r\nYou can attack with your pact weapon twice, instead of once, whenever you take the Attack action on your turn.\r\n\r\n### Visions of Distant Realms\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can cast arcane eye at will, without expending a spell slot.\r\n\r\n### Voice of the Chain Master\r\n\r\nPrerequisite: Pact of the Chain feature\r\n\r\nYou can communicate telepathically with your familiar and perceive through your familiar's senses as long as you are on the same plane of existence. Additionally, while perceiving through your familiar's senses, you can also speak through your familiar in your own voice, even if your familiar is normally incapable of speech.\r\n\r\n### Whispers of the Grave\r\n\r\nPrerequisite: 9th level\r\n\r\nYou can cast speak with dead at will, without expending a spell slot.\r\n\r\n### Witch Sight\r\n\r\nPrerequisite: 15th level\r\n\r\nYou can see the true form of any shapechanger or creature concealed by illusion or transmutation magic while the creature is within 30 feet of you and within line of sight.", + "document": "srd", + "parent": "srd_warlock" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_warlock_eldritch-invocations", + "fields": { + "name": "Eldritch Invocations", + "desc": "In your study of occult lore, you have unearthed eldritch invocations, fragments of forbidden knowledge that imbue you with an abiding magical ability.\r\n\r\nAt 2nd level, you gain two eldritch invocations of your choice. Your invocation options are detailed at the end of the class description. When you gain certain warlock levels, you gain additional invocations of your choice, as shown in the Invocations Known column of the Warlock table.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the invocations you know and replace it with another invocation that you could learn at that level.", + "document": "srd", + "parent": "srd_warlock" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_warlock_eldritch-master", + "fields": { + "name": "Eldritch Master", + "desc": "At 20th level, you can draw on your inner reserve of mystical power while entreating your patron to regain expended spell slots. You can spend 1 minute entreating your patron for aid to regain all your expended spell slots from your Pact Magic feature. Once you regain spell slots with this feature, you must finish a long rest before you can do so again.", + "document": "srd", + "parent": "srd_warlock" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_warlock_mystic-arcanum", + "fields": { + "name": "Mystic Arcanum", + "desc": "At 11th level, your patron bestows upon you a magical secret called an arcanum. Choose one 6th- level spell from the warlock spell list as this arcanum.\r\n\r\nYou can cast your arcanum spell once without expending a spell slot. You must finish a long rest before you can do so again.\r\n\r\nAt higher levels, you gain more warlock spells of your choice that can be cast in this way: one 7th- level spell at 13th level, one 8th-level spell at 15th level, and one 9th-level spell at 17th level. You regain all uses of your Mystic Arcanum when you finish a long rest.", + "document": "srd", + "parent": "srd_warlock" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_warlock_otherworldly-patron", + "fields": { + "name": "Otherworldly Patron", + "desc": "At 1st level, you have struck a bargain with an otherworldly being of your choice: the Archfey, the Fiend, or the Great Old One, each of which is detailed at the end of the class description. Your choice grants you features at 1st level and again at 6th, 10th, and 14th level.", + "document": "srd", + "parent": "srd_warlock" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_warlock_pact-boon", + "fields": { + "name": "Pact Boon", + "desc": "At 3rd level, your otherworldly patron bestows a gift upon you for your loyal service. You gain one of the following features of your choice.\r\n\r\n### Pact of the Chain\r\n\r\nYou learn the find familiar spell and can cast it as a ritual. The spell doesn't count against your number of spells known.\r\n\r\nWhen you cast the spell, you can choose one of the normal forms for your familiar or one of the following special forms: imp, pseudodragon, quasit, or sprite.\r\n\r\nAdditionally, when you take the Attack action, you can forgo one of your own attacks to allow your familiar to make one attack of its own with its reaction.\r\n\r\n### Pact of the Blade\r\n\r\nYou can use your action to create a pact weapon in your empty hand. You can choose the form that this melee weapon takes each time you create it. You are proficient with it while you wield it. This weapon counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.\r\n\r\nYour pact weapon disappears if it is more than 5 feet away from you for 1 minute or more. It also disappears if you use this feature again, if you dismiss the weapon (no action required), or if you die.\r\n\r\nYou can transform one magic weapon into your pact weapon by performing a special ritual while you hold the weapon. You perform the ritual over the course of 1 hour, which can be done during a short rest. You can then dismiss the weapon, shunting it into an extradimensional space, and it appears whenever you create your pact weapon thereafter. You can't affect an artifact or a sentient weapon in this way. The weapon ceases being your pact weapon if you die, if you perform the 1-hour ritual on a different weapon, or if you use a 1-hour ritual to break your bond to it. The weapon appears at your feet if it is in the extradimensional space when the bond breaks.\r\n\r\n### Pact of the Tome\r\n\r\nYour patron gives you a grimoire called a Book of Shadows. When you gain this feature, choose three cantrips from any class's spell list (the three needn't be from the same list). While the book is on your person, you can cast those cantrips at will. They don't count against your number of cantrips known. If they don't appear on the warlock spell list, they are nonetheless warlock spells for you.\r\n\r\nIf you lose your Book of Shadows, you can perform a 1-hour ceremony to receive a replacement from your patron. This ceremony can be performed during a short or long rest, and it destroys the previous book. The book turns to ash when you die.", + "document": "srd", + "parent": "srd_warlock" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_warlock_pact-magic", + "fields": { + "name": "Pact Magic", + "desc": "Your arcane research and the magic bestowed on you by your patron have given you facility with spells.\r\n\r\n### Cantrips\r\n\r\nYou know two cantrips of your choice from the warlock spell list. You learn additional warlock cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Warlock table.\r\nSpell Slots\r\n\r\nThe Warlock table shows how many spell slots you have. The table also shows what the level of those slots is; all of your spell slots are the same level. To cast one of your warlock spells of 1st level or higher, you must expend a spell slot. You regain all expended spell slots when you finish a short or long rest.\r\n\r\nFor example, when you are 5th level, you have two 3rd-level spell slots. To cast the 1st-level spell thunderwave, you must spend one of those slots, and you cast it as a 3rd-level spell.\r\n\r\n### Spells Known of 1st Level and Higher\r\n\r\nAt 1st level, you know two 1st-level spells of your choice from the warlock spell list.\r\n\r\nThe Spells Known column of the Warlock table shows when you learn more warlock spells of your choice of 1st level and higher. A spell you choose must be of a level no higher than what's shown in the table's Slot Level column for your level. When you reach 6th level, for example, you learn a new warlock spell, which can be 1st, 2nd, or 3rd level.\r\n\r\nAdditionally, when you gain a level in this class, you can choose one of the warlock spells you know and replace it with another spell from the warlock spell list, which also must be of a level for which you have spell slots.\r\n\r\n### Spellcasting Ability\r\n\r\nCharisma is your spellcasting ability for your warlock spells, so you use your Charisma whenever a spell refers to your spellcasting ability. In addition, you use your Charisma modifier when setting the saving throw DC for a warlock spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Charisma modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Charisma modifier\r\n\r\n### Spellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your warlock spells.", + "document": "srd", + "parent": "srd_warlock" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_way-of-the-open-hand_open-hand-technique", + "fields": { + "name": "Open Hand Technique", + "desc": "Starting when you choose this tradition at 3rd level, you can manipulate your enemy's ki when you harness your own. Whenever you hit a creature with one of the attacks granted by your Flurry of Blows, you can impose one of the following effects on that target:\r\n\r\n* It must succeed on a Dexterity saving throw or be knocked prone.\r\n* It must make a Strength saving throw. If it fails, you can push it up to 15 feet away from you.\r\n* It can't take reactions until the end of your next turn.", + "document": "srd", + "parent": "srd_way-of-the-open-hand" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_way-of-the-open-hand_quivering-palm", + "fields": { + "name": "Quivering Palm", + "desc": "At 17th level, you gain the ability to set up lethal vibrations in someone's body. When you hit a creature with an unarmed strike, you can spend 3 ki points to start these imperceptible vibrations, which last for a number of days equal to your monk level. The vibrations are harmless unless you use your action to end them. To do so, you and the target must be on the same plane of existence. When you use this action, the creature must make a Constitution saving throw. If it fails, it is reduced to 0 hit points. If it succeeds, it takes 10d10 necrotic damage.\r\n\r\nYou can have only one creature under the effect of this feature at a time. You can choose to end the vibrations harmlessly without using an action.", + "document": "srd", + "parent": "srd_way-of-the-open-hand" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_way-of-the-open-hand_tranquility", + "fields": { + "name": "Tranquility", + "desc": "Beginning at 11th level, you can enter a special meditation that surrounds you with an aura of peace. At the end of a long rest, you gain the effect of a sanctuary spell that lasts until the start of your next long rest (the spell can end early as normal). The saving throw DC for the spell equals 8 + your Wisdom modifier + your proficiency bonus.", + "document": "srd", + "parent": "srd_way-of-the-open-hand" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_way-of-the-open-hand_wholeness-of-body", + "fields": { + "name": "Wholeness of Body", + "desc": "At 6th level, you gain the ability to heal yourself. As an action, you can regain hit points equal to three times your monk level. You must finish a long rest before you can use this feature again.", + "document": "srd", + "parent": "srd_way-of-the-open-hand" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_wizard_ability-score-improvement", + "fields": { + "name": "Ability Score Improvement", + "desc": "When you reach 4th level, and again at 8th, 12th, 16th, and 19th level, you can increase one ability score of your choice by 2, or you can increase two ability scores of your choice by 1. As normal, you can't increase an ability score above 20 using this feature.", + "document": "srd", + "parent": "srd_wizard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_wizard_arcane-recovery", + "fields": { + "name": "Arcane Recovery", + "desc": "You have learned to regain some of your magical energy by studying your spellbook. Once per day when you finish a short rest, you can choose expended spell slots to recover. The spell slots can have a combined level that is equal to or less than half your wizard level (rounded up), and none of the slots can be 6th level or higher.\r\n\r\nFor example, if you're a 4th-level wizard, you can recover up to two levels worth of spell slots. You can recover either a 2nd-level spell slot or two 1st-level spell slots.", + "document": "srd", + "parent": "srd_wizard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_wizard_arcane-tradition", + "fields": { + "name": "Arcane Tradition", + "desc": "When you reach 2nd level, you choose an arcane tradition, shaping your practice of magic through one of eight schools: Abjuration, Conjuration, Divination, Enchantment, Evocation, Illusion, Necromancy, or Transmutation, all detailed at the end of the class description.\r\n\r\nYour choice grants you features at 2nd level and again at 6th, 10th, and 14th level.", + "document": "srd", + "parent": "srd_wizard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_wizard_signature-spells", + "fields": { + "name": "Signature Spells", + "desc": "When you reach 20th level, you gain mastery over two powerful spells and can cast them with little effort. Choose two 3rd-level wizard spells in your spellbook as your signature spells. You always have these spells prepared, they don't count against the number of spells you have prepared, and you can cast each of them once at 3rd level without expending a spell slot. When you do so, you can't do so again until you finish a short or long rest.\r\n\r\nIf you want to cast either spell at a higher level, you must expend a spell slot as normal.", + "document": "srd", + "parent": "srd_wizard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_wizard_spell-mastery", + "fields": { + "name": "Spell Mastery", + "desc": "At 18th level, you have achieved such mastery over certain spells that you can cast them at will. Choose a 1st-level wizard spell and a 2nd-level wizard spell that are in your spellbook. You can cast those spells at their lowest level without expending a spell slot when you have them prepared. If you want to cast either spell at a higher level, you must expend a spell slot as normal.\r\n\r\nBy spending 8 hours in study, you can exchange one or both of the spells you chose for different spells of the same levels.", + "document": "srd", + "parent": "srd_wizard" + } +}, +{ + "model": "api_v2.classfeature", + "pk": "srd_wizard_spellcasting", + "fields": { + "name": "Spellcasting", + "desc": "As a student of arcane magic, you have a spellbook containing spells that show the first glimmerings of your true power.\r\n\r\n### Cantrips\r\n\r\nAt 1st level, you know three cantrips of your choice from the wizard spell list. You learn additional wizard cantrips of your choice at higher levels, as shown in the Cantrips Known column of the Wizard table.\r\n\r\n### Spellbook\r\n\r\nAt 1st level, you have a spellbook containing six 1st- level wizard spells of your choice. Your spellbook is the repository of the wizard spells you know, except your cantrips, which are fixed in your mind.\r\n\r\n### Preparing and Casting Spells\r\n\r\nThe Wizard table shows how many spell slots you have to cast your spells of 1st level and higher. To cast one of these spells, you must expend a slot of the spell's level or higher. You regain all expended spell slots when you finish a long rest.\r\n\r\nYou prepare the list of wizard spells that are available for you to cast. To do so, choose a number of wizard spells from your spellbook equal to your Intelligence modifier + your wizard level (minimum of one spell). The spells must be of a level for which you have spell slots.\r\n\r\nFor example, if you're a 3rd-level wizard, you have four 1st-level and two 2nd-level spell slots. With an Intelligence of 16, your list of prepared spells can include six spells of 1st or 2nd level, in any combination, chosen from your spellbook. If you prepare the 1st-level spell magic missile, you can cast it using a 1st-level or a 2nd-level slot. Casting the spell doesn't remove it from your list of prepared spells.\r\n\r\nYou can change your list of prepared spells when you finish a long rest. Preparing a new list of wizard spells requires time spent studying your spellbook and memorizing the incantations and gestures you must make to cast the spell: at least 1 minute per spell level for each spell on your list.\r\n\r\n### Spellcasting Ability\r\n\r\nIntelligence is your spellcasting ability for your wizard spells, since you learn your spells through dedicated study and memorization. You use your Intelligence whenever a spell refers to your spellcasting ability. In addition, you use your Intelligence modifier when setting the saving throw DC for a wizard spell you cast and when making an attack roll with one.\r\n\r\n**Spell save DC** = 8 + your proficiency bonus + your Intelligence modifier\r\n\r\n**Spell attack modifier** = your proficiency bonus + your Intelligence modifier\r\n\r\n### Ritual Casting\r\n\r\nYou can cast a wizard spell as a ritual if that spell has the ritual tag and you have the spell in your spellbook. You don't need to have the spell prepared.\r\n\r\n### Spellcasting Focus\r\n\r\nYou can use an arcane focus as a spellcasting focus for your wizard spells.\r\n\r\n### Learning Spells of 1st Level and Higher\r\n\r\nEach time you gain a wizard level, you can add two wizard spells of your choice to your spellbook for free. Each of these spells must be of a level for which you have spell slots, as shown on the Wizard table. On your adventures, you might find other spells that you can add to your spellbook (see the “Your Spellbook” sidebar).", + "document": "srd", + "parent": "srd_wizard" + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/Feat.json b/data/v2/wizards-of-the-coast/srd/Feat.json index 350ab1ae..df2846c4 100644 --- a/data/v2/wizards-of-the-coast/srd/Feat.json +++ b/data/v2/wizards-of-the-coast/srd/Feat.json @@ -1,12 +1,12 @@ [ -{ - "model": "api_v2.feat", - "pk": "grappler", - "fields": { - "name": "Grappler", - "desc": "You've developed the skills necessary to hold your own in close-quarters grappling. You gain the following benefits:\r\n* You have advantage on attack rolls against a creature you are grappling.\r\n* You can use your action to try to pin a creature grappled by you. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", - "prerequisite": "Strength 13 or higher", - "document": "srd" + { + "model": "api_v2.feat", + "pk": "srd_grappler", + "fields": { + "name": "Grappler", + "desc": "You've developed the skills necessary to hold your own in close-quarters grappling. You gain the following benefits:\r\n* You have advantage on attack rolls against a creature you are grappling.\r\n* You can use your action to try to pin a creature grappled by you. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", + "prerequisite": "Strength 13 or higher", + "document": "srd" + } } -} -] +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/FeatBenefit.json b/data/v2/wizards-of-the-coast/srd/FeatBenefit.json index c7134daa..6f575627 100644 --- a/data/v2/wizards-of-the-coast/srd/FeatBenefit.json +++ b/data/v2/wizards-of-the-coast/srd/FeatBenefit.json @@ -1,22 +1,22 @@ [ -{ - "model": "api_v2.featbenefit", - "pk": 175, - "fields": { - "name": "", - "desc": "You have advantage on attack rolls against a creature you are grappling.", - "type": null, - "parent": "grappler" + { + "model": "api_v2.featbenefit", + "pk": 175, + "fields": { + "name": "", + "desc": "You have advantage on attack rolls against a creature you are grappling.", + "type": null, + "parent": "srd_grappler" + } + }, + { + "model": "api_v2.featbenefit", + "pk": 176, + "fields": { + "name": "", + "desc": "You can use your action to try to pin a creature grappled by you. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", + "type": null, + "parent": "srd_grappler" + } } -}, -{ - "model": "api_v2.featbenefit", - "pk": 176, - "fields": { - "name": "", - "desc": "You can use your action to try to pin a creature grappled by you. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", - "type": null, - "parent": "grappler" - } -} -] +] \ No newline at end of file From 19d1017b90588be5541a9bbdf91f6389abf54599 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 11:13:55 -0500 Subject: [PATCH 38/84] Adjusted script. --- scripts/data_manipulation/data_v2_format_check.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index 4ac9c93a..443b6972 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -87,7 +87,7 @@ def main(): logger.debug("Skipping {}: file is known to have non-slugified keys.".format(f_obj['filename'])) else: check_keys_doc_name(objs, f_obj) - if args.fix: fix_keys_to_parent_level(objs, f_obj) + if args.fix: fix_keys_to_doc_name(objs, f_obj) def check_keys_non_numeric(objs,f): @@ -138,9 +138,9 @@ def fix_keys_to_doc_name(objs,f): for obj in objs: if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): - if f['filename']=='ClassFeature.json': + if f['filename']=='Feat.json': logger.warning("{} changing to doc_name format".format(f['path'])) - pk_value = "{}_{}".format(obj['fields']['parent'],slugify(obj['fields']['name'])) + pk_value = "{}_{}".format(obj['fields']['document'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) obj['former_pk'] = obj['pk'] @@ -149,7 +149,7 @@ def fix_keys_to_doc_name(objs,f): related_path = "{}/{}/{}/{}/{}/".format(f['root'],f['dir'],f['schema'],f['publisher'],f['doc']) - related_filenames = ['ClassFeatureItem.json'] + related_filenames = ['FeatBenefit.json'] for obj in objs_fixed: for related_file in related_filenames: @@ -157,7 +157,7 @@ def fix_keys_to_doc_name(objs,f): refactor_relations(related_path+related_file,"parent",obj['former_pk'], obj['pk']) obj.pop('former_pk') - if f['filename']=='ClassFeature.json': + if f['filename']=='Feat.json': with open(f['path'],'w',encoding='utf-8') as wf: json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) pass From 0db4e0705cbf4be6a34cc3d7630f05155cf7e198 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 11:32:44 -0500 Subject: [PATCH 39/84] Presentation layer issues. --- api_v2/models/document.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/api_v2/models/document.py b/api_v2/models/document.py index e9c25bc5..35345140 100644 --- a/api_v2/models/document.py +++ b/api_v2/models/document.py @@ -56,9 +56,9 @@ def stats(self): CHILD_MODEL_NAMES = [ 'Trait', - 'FeatureItem', - 'Capability', - 'Benefit', + 'ClassFeatureItem', + 'FeatBenefit', + 'BackgroundBenefit', 'CreatureAction', 'CreatureAttack', 'CastingOption', From 5f70a7c62698c7aa88efc18cd0b71b4f300a276e Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 11:38:53 -0500 Subject: [PATCH 40/84] Refactoring to racetrait. --- api_v2/admin.py | 16 +- api_v2/management/commands/export.py | 4 +- .../migrations/0083_rename_trait_racetrait.py | 17 + api_v2/models/__init__.py | 2 +- api_v2/models/race.py | 9 +- api_v2/serializers/__init__.py | 3 +- api_v2/serializers/race.py | 14 +- data/v2/kobold-press/toh/RaceTrait.json | 1842 +++++++++++++++++ .../wizards-of-the-coast/srd/FeatBenefit.json | 40 +- .../wizards-of-the-coast/srd/RaceTrait.json | 932 +++++++++ 10 files changed, 2823 insertions(+), 56 deletions(-) create mode 100644 api_v2/migrations/0083_rename_trait_racetrait.py create mode 100644 data/v2/kobold-press/toh/RaceTrait.json create mode 100644 data/v2/wizards-of-the-coast/srd/RaceTrait.json diff --git a/api_v2/admin.py b/api_v2/admin.py index fd67089a..89ed7c2b 100644 --- a/api_v2/admin.py +++ b/api_v2/admin.py @@ -13,16 +13,6 @@ class ItemModelAdmin(admin.ModelAdmin): list_display = ['key', 'name'] -class TraitInline(admin.TabularInline): - model = Trait - - -class RaceAdmin(admin.ModelAdmin): - inlines = [ - TraitInline, - ] - - class FeatBenefitInline(admin.TabularInline): model = FeatBenefit exclude = ('name',) @@ -35,13 +25,13 @@ class FeatAdmin(admin.ModelAdmin): list_display = ['key', 'name'] -class TraitInline(admin.TabularInline): - model = Trait +class RaceTraitInline(admin.TabularInline): + model = RaceTrait class RaceAdmin(admin.ModelAdmin): inlines = [ - TraitInline, + RaceTraitInline, ] diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index 52bb5a8d..cd8ede64 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -109,11 +109,11 @@ def handle(self, *args, **options) -> None: for model in app_models: SKIPPED_MODEL_NAMES = ['Document', 'Ruleset', 'License', 'Publisher','SearchResult'] - CHILD_MODEL_NAMES = ['Trait', 'FeatBenefit', 'BackgroundBenefit', 'ClassFeatureItem', 'CastingOption'] + CHILD_MODEL_NAMES = ['RaceTrait', 'FeatBenefit', 'BackgroundBenefit', 'ClassFeatureItem', 'CastingOption'] if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES: if model.__name__ in CHILD_MODEL_NAMES: - if model.__name__ == 'Trait': + if model.__name__ == 'RaceTrait': modelq = model.objects.filter(race__document=doc).order_by('pk') if model.__name__ == 'FeatBenefit': modelq = model.objects.filter(parent__document=doc).order_by('pk') diff --git a/api_v2/migrations/0083_rename_trait_racetrait.py b/api_v2/migrations/0083_rename_trait_racetrait.py new file mode 100644 index 00000000..98b6141a --- /dev/null +++ b/api_v2/migrations/0083_rename_trait_racetrait.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2024-05-27 16:36 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0082_rename_feat_featbenefit_parent'), + ] + + operations = [ + migrations.RenameModel( + old_name='Trait', + new_name='RaceTrait', + ), + ] diff --git a/api_v2/models/__init__.py b/api_v2/models/__init__.py index d3e2312c..170e00b1 100644 --- a/api_v2/models/__init__.py +++ b/api_v2/models/__init__.py @@ -11,7 +11,7 @@ from .weapon import Weapon -from .race import Trait +from .race import RaceTrait from .race import Race from .feat import FeatBenefit diff --git a/api_v2/models/race.py b/api_v2/models/race.py index 1a6a313a..76758775 100644 --- a/api_v2/models/race.py +++ b/api_v2/models/race.py @@ -6,7 +6,7 @@ from .document import FromDocument #TODO rename to RaceTrait -class Trait(Modification): +class RaceTrait(Modification): """This is the model for a race or subrace trait. It inherits from modification, which is an abstract concept. @@ -30,11 +30,6 @@ class Race(HasName, HasDescription, FromDocument): null=True, on_delete=models.CASCADE) - @property - def subraces(self): - """Returns the set of subraces that are related to this race.""" - return self.race_set.all() - @property def is_subrace(self): """Returns whether the object is a subrace.""" @@ -43,7 +38,7 @@ def is_subrace(self): @property def traits(self): """Returns the set of traits that are related to this race.""" - return self.trait_set + return self.racetrait_set class Meta: """To assist with the UI layer.""" diff --git a/api_v2/serializers/__init__.py b/api_v2/serializers/__init__.py index 01aad76a..07e0b6e1 100644 --- a/api_v2/serializers/__init__.py +++ b/api_v2/serializers/__init__.py @@ -18,8 +18,7 @@ from .feat import FeatBenefitSerializer from .feat import FeatSerializer -from .race import TraitSerializer -from .race import SubraceSerializer +from .race import RaceTraitSerializer from .race import RaceSerializer from .creature import CreatureSerializer diff --git a/api_v2/serializers/race.py b/api_v2/serializers/race.py index c525d368..b5e063a5 100644 --- a/api_v2/serializers/race.py +++ b/api_v2/serializers/race.py @@ -7,26 +7,18 @@ from .abstracts import GameContentSerializer -class TraitSerializer(serializers.ModelSerializer): +class RaceTraitSerializer(serializers.ModelSerializer): class Meta: - model = models.Trait + model = models.RaceTrait fields = ['name', 'desc'] -class SubraceSerializer(GameContentSerializer): - key = serializers.ReadOnlyField() - traits = TraitSerializer( - many=True) - class Meta: - model = models.Race - fields = '__all__' class RaceSerializer(GameContentSerializer): key = serializers.ReadOnlyField() is_subrace = serializers.ReadOnlyField() - subraces = SubraceSerializer(many=True, context={'request': {}}) - traits = TraitSerializer( + traits = RaceTraitSerializer( many=True) class Meta: diff --git a/data/v2/kobold-press/toh/RaceTrait.json b/data/v2/kobold-press/toh/RaceTrait.json new file mode 100644 index 00000000..9728ab1b --- /dev/null +++ b/data/v2/kobold-press/toh/RaceTrait.json @@ -0,0 +1,1842 @@ +[ +{ + "model": "api_v2.racetrait", + "pk": 98, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2, and your Wisdom score increases by 1.", + "type": null, + "race": "alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 99, + "fields": { + "name": "Speed", + "desc": "Alseid are fast for their size, with a base walking speed of 40 feet.", + "type": null, + "race": "alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 100, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to the limited light beneath the forest canopy, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 101, + "fields": { + "name": "Age", + "desc": "Alseid reach maturity by the age of 20. They can live well beyond 100 years, but it is unknown just how old they can become.", + "type": null, + "race": "alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 102, + "fields": { + "name": "Alignment", + "desc": "Alseid are generally chaotic, flowing with the unpredictable whims of nature, though variations are common, particularly among those rare few who leave their people.", + "type": null, + "race": "alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 103, + "fields": { + "name": "Size", + "desc": "Alseid stand over 6 feet tall and weigh around 300 pounds. Your size is Medium.", + "type": null, + "race": "alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 104, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Elvish.", + "type": null, + "race": "alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 105, + "fields": { + "name": "Alseid Weapon Training", + "desc": "You have proficiency with spears and shortbows.", + "type": null, + "race": "alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 106, + "fields": { + "name": "Light Hooves", + "desc": "You have proficiency in the Stealth skill.", + "type": null, + "race": "alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 107, + "fields": { + "name": "Quadruped", + "desc": "The mundane details of the structures of humanoids can present considerable obstacles for you. You have to squeeze when moving through trapdoors, manholes, and similar structures even when a Medium humanoid wouldn't have to squeeze. In addition, ladders, stairs, and similar structures are difficult terrain for you.", + "type": null, + "race": "alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 108, + "fields": { + "name": "Woodfriend", + "desc": "When in a forest, you leave no tracks and can automatically discern true north.", + "type": null, + "race": "alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 109, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "race": "catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 110, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "race": "catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 111, + "fields": { + "name": "Darkvision", + "desc": "You have a cat's keen senses, especially in the dark. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 112, + "fields": { + "name": "Age", + "desc": "Catfolk mature at the same rate as humans and can live just past a century.", + "type": null, + "race": "catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 113, + "fields": { + "name": "Alignment", + "desc": "Catfolk tend toward two extremes. Some are free-spirited and chaotic, letting impulse and fancy guide their decisions. Others are devoted to duty and personal honor. Typically, catfolk deem concepts such as good and evil as less important than freedom or their oaths.", + "type": null, + "race": "catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 114, + "fields": { + "name": "Size", + "desc": "Catfolk have a similar stature to humans but are generally leaner and more muscular. Your size is Medium", + "type": null, + "race": "catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 115, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common.", + "type": null, + "race": "catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 116, + "fields": { + "name": "Cat's Claws", + "desc": "Your sharp claws can cut with ease. Your claws are natural melee weapons, which you can use to make unarmed strikes. When you hit with a claw, your claw deals slashing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", + "type": null, + "race": "catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 117, + "fields": { + "name": "Hunter's Senses", + "desc": "You have proficiency in the Perception and Stealth skills.", + "type": null, + "race": "catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 118, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 1.", + "type": null, + "race": "malkin" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 119, + "fields": { + "name": "Curiously Clever", + "desc": "You have proficiency in the Investigation skill.", + "type": null, + "race": "malkin" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 120, + "fields": { + "name": "Charmed Curiosity", + "desc": "When you roll a 1 on the d20 for a Dexterity check or saving throw, you can reroll the die and must use the new roll.", + "type": null, + "race": "malkin" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 121, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 1.", + "type": null, + "race": "pantheran" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 122, + "fields": { + "name": "Hunter's Charge", + "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a melee weapon attack in the same turn, you can use a bonus action to attack that creature with your Cat's Claws. You can use this trait a number of times per day equal to your proficiency bonus, and you regain all expended uses when you finish a long rest.", + "type": null, + "race": "pantheran" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 123, + "fields": { + "name": "One With the Wilds", + "desc": "You have proficiency in one of the following skills of your choice: Insight, Medicine, Nature, or Survival.", + "type": null, + "race": "pantheran" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 124, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "race": "derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 125, + "fields": { + "name": "Speed", + "desc": "Derro are fast for their size. Your base walking speed is 30 feet.", + "type": null, + "race": "derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 126, + "fields": { + "name": "Superior Darkvision", + "desc": "Accustomed to life underground, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 127, + "fields": { + "name": "Age", + "desc": "Derro reach maturity by the age of 15 and live to be around 75.", + "type": null, + "race": "derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 128, + "fields": { + "name": "Alignment", + "desc": "The derro's naturally unhinged minds are nearly always chaotic, and many, but not all, are evil.", + "type": null, + "race": "derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 129, + "fields": { + "name": "Size", + "desc": "Derro stand between 3 and 4 feet tall with slender limbs and wide shoulders. Your size is Small.", + "type": null, + "race": "derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 130, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Dwarvish and your choice of Common or Undercommon.", + "type": null, + "race": "derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 131, + "fields": { + "name": "Eldritch Resilience", + "desc": "You have advantage on Constitution saving throws against spells.", + "type": null, + "race": "derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 132, + "fields": { + "name": "Sunlight Sensitivity", + "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", + "type": null, + "race": "derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 133, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "race": "far-touched" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 134, + "fields": { + "name": "Insanity", + "desc": "You have advantage on saving throws against being charmed or frightened. In addition, you can read and understand Void Speech, but you can speak only a few words of the dangerous and maddening language—the words necessary for using the spells in your Mad Fervor trait.", + "type": null, + "race": "far-touched" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 135, + "fields": { + "name": "Mad Fervor", + "desc": "The driving force behind your insanity has blessed you with a measure of its power. You know the vicious mockery cantrip. When you reach 3rd level, you can cast the enthrall spell with this trait, and starting at 5th level, you can cast the fear spell with it. Once you cast a non-cantrip spell with this trait, you can't do so again until you finish a long rest. Charisma is your spellcasting ability for these spells. If you are using Deep Magic for 5th Edition, these spells are instead crushing curse, maddening whispers, and alone, respectively.", + "type": null, + "race": "far-touched" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 136, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 1.", + "type": null, + "race": "mutated" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 137, + "fields": { + "name": "Athletic Training", + "desc": "You have proficiency in the Athletics skill, and you are proficient with two martial weapons of your choice.", + "type": null, + "race": "mutated" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 138, + "fields": { + "name": "Otherworldly Influence", + "desc": "Your close connection to the strange powers that your people worship has mutated your form. Choose one of the following:\r\n\r\n**Alien Appendage.** You have a tentacle-like growth on your body. This tentacle is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your tentacle deals bludgeoning damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. This tentacle has a reach of 5 feet and can lift a number of pounds equal to double your Strength score. The tentacle can't wield weapons or shields or perform tasks that require manual precision, such as performing the somatic components of a spell, but it can perform simple tasks, such as opening an unlocked door or container, stowing or retrieving an object, or pouring the contents out of a vial.\r\n**Tainted Blood.** Your blood is tainted by your connection with otherworldly entities. When you take piercing or slashing damage, you can use your reaction to force your blood to spray out of the wound. You and each creature within 5 feet of you take necrotic damage equal to your level. Once you use this trait, you can't use it again until you finish a short or long rest.\r\n**Tenebrous Flesh.** Your skin is rubbery and tenebrous, granting you a +1 bonus to your Armor Class.", + "type": null, + "race": "mutated" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 139, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 1.", + "type": null, + "race": "uncorrupted" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 140, + "fields": { + "name": "Psychic Barrier", + "desc": "Your time among your less sane brethren has inured you to their madness. You have resistance to psychic damage, and you have advantage on ability checks and saving throws made against effects that inflict insanity, such as spells like contact other plane and symbol, and effects that cause short-term, long-term, or indefinite madness.", + "type": null, + "race": "uncorrupted" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 141, + "fields": { + "name": "Studied Insight", + "desc": "You are skilled at discerning other creature's motives and intentions. You have proficiency in the Insight skill, and, if you study a creature for at least 1 minute, you have advantage on any initiative checks in combat against that creature for the next hour.", + "type": null, + "race": "uncorrupted" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 142, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "race": "drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 143, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "race": "drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 144, + "fields": { + "name": "Superior Darkvision", + "desc": "Accustomed to life in the darkest depths of the world, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 145, + "fields": { + "name": "Age", + "desc": "Drow physically mature at the same rate as humans, but they aren't considered adults until they reach the age of 50. They typically live to be around 500.", + "type": null, + "race": "drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 146, + "fields": { + "name": "Alignment", + "desc": "Drow believe in reason and rationality, which leads them to favor lawful activities. However, their current dire situation makes them more prone than their ancestors to chaotic behavior. Their vicious fight for survival makes them capable of doing great evil in the name of self-preservation, although they are not, by nature, prone to evil in other circumstances.", + "type": null, + "race": "drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 147, + "fields": { + "name": "Size", + "desc": "Drow are slightly shorter and slimmer than humans. Your size is Medium.", + "type": null, + "race": "drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 148, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Elvish and your choice of Common or Undercommon.", + "type": null, + "race": "drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 149, + "fields": { + "name": "Fey Ancestry", + "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", + "type": null, + "race": "drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 150, + "fields": { + "name": "Mind of Steel", + "desc": "You understand the complexities of minds, as well as the magic that can affect them. You have advantage on Wisdom, Intelligence, and Charisma saving throws against spells.", + "type": null, + "race": "drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 151, + "fields": { + "name": "Sunlight Sensitivity", + "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", + "type": null, + "race": "drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 152, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength or Dexterity score increases by 1.", + "type": null, + "race": "delver" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 153, + "fields": { + "name": "Rapport with Insects", + "desc": "Your caste's years of working alongside the giant spiders and beetles that your people utilized in building and defending cities has left your caste with an innate affinity with the creatures. You can communicate simple ideas with insect-like beasts with an Intelligence of 3 or lower, such as spiders, beetles, wasps, scorpions, and centipedes. You can understand them in return, though this understanding is often limited to knowing the creature's current or most recent state, such as “hungry,” “content,” or “in danger.” Delver drow often keep such creatures as pets, mounts, or beasts of burden.", + "type": null, + "race": "delver" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 154, + "fields": { + "name": "Specialized Training", + "desc": "You are proficient in one skill and one tool of your choice.", + "type": null, + "race": "delver" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 155, + "fields": { + "name": "Martial Excellence", + "desc": "You are proficient with one martial weapon of your choice and with light armor.", + "type": null, + "race": "delver" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 156, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 1.", + "type": null, + "race": "fever-bit" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 157, + "fields": { + "name": "Deathly Resilience", + "desc": "Your long exposure to the life-sapping energies of darakhul fever has made you more resilient. You have resistance to necrotic damage, and advantage on death saving throws.", + "type": null, + "race": "fever-bit" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 158, + "fields": { + "name": "Iron Constitution", + "desc": "You are immune to disease.", + "type": null, + "race": "fever-bit" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 159, + "fields": { + "name": "Near-Death Experience", + "desc": "Your brush with death has made you more stalwart in the face of danger. You have advantage on saving throws against being frightened.", + "type": null, + "race": "fever-bit" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 160, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "race": "purified" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 161, + "fields": { + "name": "Innate Spellcasting", + "desc": "You know the poison spray cantrip. When you reach 3rd level, you can cast suggestion once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the tongues spell once and regain the ability to do so when you finish a long rest. Intelligence is your spellcasting ability for these spells.", + "type": null, + "race": "purified" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 162, + "fields": { + "name": "Born Leader", + "desc": "You gain proficiency with two of the following skills of your choice: History, Insight, Performance, and Persuasion.", + "type": null, + "race": "purified" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 163, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2, and you can choose to increase either your Wisdom or Charisma score by 1.", + "type": null, + "race": "erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 164, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 25 feet.", + "type": null, + "race": "erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 165, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to life in the dark burrows of your people, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 166, + "fields": { + "name": "Age", + "desc": "Erina reach maturity around 15 years and can live up to 60 years, though some erina burrow elders have memories of events which suggest erina can live much longer.", + "type": null, + "race": "erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 167, + "fields": { + "name": "Alignment", + "desc": "Erina are good-hearted and extremely social creatures who have a difficult time adapting to the laws of other species.", + "type": null, + "race": "erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 168, + "fields": { + "name": "Size", + "desc": "Erina average about 3 feet tall and weigh about 50 pounds. Your size is Small.", + "type": null, + "race": "erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 169, + "fields": { + "name": "Languages", + "desc": "You can speak Erina and either Common or Sylvan.", + "type": null, + "race": "erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 170, + "fields": { + "name": "Hardy", + "desc": "The erina diet of snakes and venomous insects has made them hardy. You have advantage on saving throws against poison, and you have resistance against poison damage.", + "type": null, + "race": "erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 171, + "fields": { + "name": "Spines", + "desc": "Erina grow needle-sharp spines in small clusters atop their heads and along their backs. While you are grappling a creature or while a creature is grappling you, the creature takes 1d4 piercing damage at the start of your turn.", + "type": null, + "race": "erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 172, + "fields": { + "name": "Keen Senses", + "desc": "You have proficiency in the Perception skill.", + "type": null, + "race": "erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 173, + "fields": { + "name": "Digger", + "desc": "You have a burrowing speed of 20 feet, but you can use it to move through only earth and sand, not mud, ice, or rock.", + "type": null, + "race": "erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 174, + "fields": { + "name": "Ability Score Increase", + "desc": "Two different ability scores of your choice increase by 1.", + "type": null, + "race": "gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 175, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is determined by your Race Chassis.", + "type": null, + "race": "gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 176, + "fields": { + "name": "Age", + "desc": "The soul inhabiting a gearforged can be any age. As long as its new body is kept in good repair, there is no known limit to how long it can function.", + "type": null, + "race": "gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 177, + "fields": { + "name": "Alignment", + "desc": "No single alignment typifies gearforged, but most gearforged maintain the alignment they had before becoming gearforged.", + "type": null, + "race": "gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 178, + "fields": { + "name": "Size", + "desc": "Your size is determined by your Race Chassis.", + "type": null, + "race": "gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 179, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common, Machine Speech (a whistling, clicking language that's incomprehensible to non-gearforged), and a language associated with your Race Chassis.", + "type": null, + "race": "gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 180, + "fields": { + "name": "Construct Resilience", + "desc": "Your body is constructed, which frees you from some of the limits of fleshand- blood creatures. You have resistance to poison damage, you are immune to disease, and you have advantage on saving throws against being poisoned.", + "type": null, + "race": "gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 181, + "fields": { + "name": "Construct Vitality", + "desc": "You don't need to eat, drink, or breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state where you resemble a statue and remain semiconscious for 6 hours a day. During this time, the magic in your soul gem and everwound springs slowly repairs the day's damage to your mechanical body. While in this dormant state, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", + "type": null, + "race": "gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 182, + "fields": { + "name": "Living Construct", + "desc": "Your consciousness and soul reside within a soul gem to animate your mechanical body. As such, you are a living creature with some of the benefits and drawbacks of a construct. Though you can regain hit points from spells like cure wounds, you can also be affected by game effects that specifically target constructs, such as the shatter spell. As long as your soul gem remains intact, game effects that raise a creature from the dead work on you as normal, repairing the damaged pieces of your mechanical body (restoring lost sections only if the spell normally restores lost limbs) and returning you to life as a gearforged. Alternatively, if your body is destroyed but your soul gem and memory gears are intact, they can be installed into a new body with a ritual that takes one day and 10,000 gp worth of materials. If your soul gem is destroyed, only a wish spell can restore you to life, and you return as a fully living member of your original race.", + "type": null, + "race": "gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 183, + "fields": { + "name": "Race Chassis", + "desc": "Four races are known to create unique gearforged, building mechanical bodies similar in size and shape to their people: dwarf, gnome, human, and kobold. Choose one of these forms.", + "type": null, + "race": "gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 184, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 1.", + "type": null, + "race": "dwarf-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 185, + "fields": { + "name": "Always Armed", + "desc": "Every dwarf knows that it's better to leave home without pants than without your weapon. Choose a weapon with which you are proficient and that doesn't have the two-handed property. You can integrate this weapon into one of your arms. While the weapon is integrated, you can't be disarmed of it by any means, though you can use an action to remove the weapon. You can draw or sheathe the weapon as normal, the weapon folding into or springing from your arm instead of a sheath. While the integrated weapon is drawn in this way, it is considered held in that arm's hand, which can't be used for other actions such as casting spells. You can integrate a new weapon or replace an integrated weapon as part of a short or long rest. You can have up to two weapons integrated at a time, one per arm. You have advantage on Dexterity (Sleight of Hand) checks to conceal an integrated weapon.", + "type": null, + "race": "dwarf-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 186, + "fields": { + "name": "Remembered Training", + "desc": "You remember some of your combat training from your previous life. You have proficiency with two martial weapons of your choice and with light and medium armor.", + "type": null, + "race": "dwarf-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 187, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 1.", + "type": null, + "race": "gnome-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 188, + "fields": { + "name": "Mental Fortitude", + "desc": "When creating their first gearforged, gnome engineers put their efforts toward ensuring that the gnomish mind remained a mental fortress, though they were unable to fully replicate the gnomish mind's resilience once transferred to a soul gem. Choose Intelligence, Wisdom, or Charisma. You have advantage on saving throws made with that ability score against magic.", + "type": null, + "race": "gnome-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 189, + "fields": { + "name": "Quick Fix", + "desc": "When you are below half your hit point maximum, you can use a bonus action to apply a quick patch up to your damaged body. You gain temporary hit points equal to your proficiency bonus. You can't use this trait again until you finish a short or long rest.", + "type": null, + "race": "gnome-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 190, + "fields": { + "name": "Ability Score Increase", + "desc": "One ability score of your choice increases by 1.", + "type": null, + "race": "human-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 191, + "fields": { + "name": "Adaptable Acumen", + "desc": "You gain proficiency in two skills or tools of your choice. Choose one of those skills or tools or another skill or tool proficiency you have. Your proficiency bonus is doubled for any ability check you make that uses the chosen skill or tool.", + "type": null, + "race": "human-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 192, + "fields": { + "name": "Inspired Ingenuity", + "desc": "When you roll a 9 or lower on the d20 for an ability check, you can use a reaction to change the roll to a 10. You can't use this trait again until you finish a short or long rest.", + "type": null, + "race": "human-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 193, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 1.", + "type": null, + "race": "kobold-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 194, + "fields": { + "name": "Clutch Aide", + "desc": "Kobolds spend their lives alongside their clutchmates, both those hatched around the same time as them and those they choose later in life, and you retain much of this group-oriented intuition. You can take the Help action as a bonus action.", + "type": null, + "race": "kobold-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 195, + "fields": { + "name": "Resourceful", + "desc": "If you have at least one set of tools, you can cobble together one set of makeshift tools of a different type with 1 minute of work. For example, if you have cook's utensils, you can use them to create a temporary set of thieves' tools. The makeshift tools last for 10 minutes then collapse into their component parts, returning your tools to their normal forms. While the makeshift tools exist, you can't use the set of tools you used to create the makeshift tools. At the GM's discretion, you might not be able to replicate some tools, such as an alchemist's alembic or a disguise kit's cosmetics. A creature other than you that uses the makeshift tools has disadvantage on the check.", + "type": null, + "race": "kobold-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 196, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", + "type": null, + "race": "minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 197, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "race": "minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 198, + "fields": { + "name": "Darkvision", + "desc": "You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 199, + "fields": { + "name": "Age", + "desc": "Minotaurs age at roughly the same rate as humans but mature 3 years earlier. Childhood ends around the age of 10 and adulthood is celebrated at 15.", + "type": null, + "race": "minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 200, + "fields": { + "name": "Alignment", + "desc": "Minotaurs possess a wide range of alignments, just as humans do. Mixing a love for personal freedom and respect for history and tradition, the majority of minotaurs fall into neutral alignments.", + "type": null, + "race": "minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 201, + "fields": { + "name": "Size", + "desc": "Adult males can reach a height of 7 feet, with females averaging 3 inches shorter. Your size is Medium.", + "type": null, + "race": "minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 202, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Minotaur.", + "type": null, + "race": "minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 203, + "fields": { + "name": "Natural Attacks", + "desc": "Your horns are sturdy and sharp. Your horns are a natural melee weapon, which you can use to make unarmed strikes. When you hit with your horns, they deal piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", + "type": null, + "race": "minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 204, + "fields": { + "name": "Charge", + "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a horn attack in the same turn, you deal an extra 1d6 piercing damage and you can shove the target up to 5 feet as a bonus action. At 11th level, when you shove a creature with Charge, you can push it up to 10 feet instead. You can use this trait a number of times per day equal to your Constitution modifier (minimum of once), and you regain all expended uses when you finish a long rest.", + "type": null, + "race": "minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 205, + "fields": { + "name": "Labyrinth Sense", + "desc": "You can retrace without error any path you have previously taken, with no ability check.", + "type": null, + "race": "minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 210, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 2, and your Strength score increases by 1.", + "type": null, + "race": "bhain-kwai" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 211, + "fields": { + "name": "Strong Back", + "desc": "Your carrying capacity is your Strength score multiplied by 20, instead of by 15.", + "type": null, + "race": "bhain-kwai" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 212, + "fields": { + "name": "Wetland Dweller", + "desc": "You are adapted to your home terrain. Difficult terrain composed of mud or from wading through water up to waist deep doesn't cost you extra movement. You have a swimming speed of 25 feet.", + "type": null, + "race": "bhain-kwai" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 213, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 2, and your Constitution score increases by 1.", + "type": null, + "race": "boghaid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 214, + "fields": { + "name": "Highlander", + "desc": "You are adapted to life at high altitudes, and you suffer no ill effects or penalties from elevations above 8,000 feet.", + "type": null, + "race": "boghaid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 215, + "fields": { + "name": "Storied Culture", + "desc": "You have proficiency in the Performance skill, and you gain proficiency with one of the following musical instruments: bagpipes, drum, horn, or shawm.", + "type": null, + "race": "boghaid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 216, + "fields": { + "name": "Wooly", + "desc": "Your thick, wooly coat of hair keeps you warm, allowing you to function in cold weather without special clothing or gear. You have advantage on saving throws against spells and other effects that deal cold damage.", + "type": null, + "race": "boghaid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 217, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 2.", + "type": null, + "race": "mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 218, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "race": "mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 219, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to life underground, you can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 220, + "fields": { + "name": "Age", + "desc": "Mushroomfolk reach maturity by the age of 5 and rarely live longer than 50 years.", + "type": null, + "race": "mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 221, + "fields": { + "name": "Alignment", + "desc": "The limited interaction mushroomfolk have with other creatures leaves them with a fairly neutral view of the world in terms of good and evil, while their societal structure makes them more prone to law than chaos.", + "type": null, + "race": "mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 222, + "fields": { + "name": "Size", + "desc": "A mushroomfolk's size is determined by its subrace.", + "type": null, + "race": "mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 223, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Mushroomfolk and your choice of Common or Undercommon.", + "type": null, + "race": "mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 224, + "fields": { + "name": "Fungoid Form", + "desc": "You are a humanoid, though the fungal nature of your body and your unique diet of decayed vegetable and animal matter marks you with some plant-like characteristics. You have advantage on saving throws against poison, and you have resistance to poison damage. In addition, you are immune to disease.", + "type": null, + "race": "mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 225, + "fields": { + "name": "Hardy Survivor", + "desc": "Your upbringing in mushroomfolk society has taught you how to defend yourself and find food. You have proficiency in the Survival skill.", + "type": null, + "race": "mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 226, + "fields": { + "name": "Subrace", + "desc": "Three subraces of mushroomfolk are known to wander the world: acid cap, favored, and morel. Choose one of these subraces.", + "type": null, + "race": "mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 227, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 1.", + "type": null, + "race": "acid-cap" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 228, + "fields": { + "name": "Acid Cap Resistance", + "desc": "You have resistance to acid damage.", + "type": null, + "race": "acid-cap" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 229, + "fields": { + "name": "Acid Spores", + "desc": "When you are hit by a melee weapon attack within 5 feet of you, you can use your reaction to emit acidic spores. If you do, the attacker takes acid damage equal to half your level (rounded up). You can use your acid spores a number of times equal to your Constitution modifier (a minimum of once). You regain any expended uses when you finish a long rest.", + "type": null, + "race": "acid-cap" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 230, + "fields": { + "name": "Clan Athlete", + "desc": "You have proficiency in the Athletics skill.", + "type": null, + "race": "acid-cap" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 231, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "race": "favored" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 232, + "fields": { + "name": "Blessed Help", + "desc": "Your intuition and connection to your allies allows you to assist and protect them. You know the spare the dying cantrip. When you reach 3rd level, you can cast the bless spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", + "type": null, + "race": "favored" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 233, + "fields": { + "name": "Clan Leader", + "desc": "You have proficiency in the Persuasion skill.", + "type": null, + "race": "favored" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 234, + "fields": { + "name": "Restful Spores", + "desc": "If you or any friendly creatures within 30 feet of you regain hit points at the end of a short rest by spending one or more Hit Dice, each of those creatures regains additional hit points equal to your proficiency bonus. Once a creature benefits from your restful spores, it can't do so again until it finishes a long rest.", + "type": null, + "race": "favored" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 235, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 1.", + "type": null, + "race": "morel" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 236, + "fields": { + "name": "Adaptable Camouflage", + "desc": "If you spend at least 1 minute in an environment with ample naturally occurring plants or fungi, such as a grassland, a forest, or an underground fungal cavern, you can adjust your natural coloration to blend in with the local plant life. If you do so, you have advantage on Dexterity (Stealth) checks for the next 24 hours while in that environment.", + "type": null, + "race": "morel" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 237, + "fields": { + "name": "Clan Scout", + "desc": "You have proficiency in the Stealth skill.", + "type": null, + "race": "morel" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 238, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 2, and your Intelligence score increases by 1.", + "type": null, + "race": "satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 239, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "race": "satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 240, + "fields": { + "name": "Darkvision", + "desc": "Thanks to your dark planar parentage, you have superior vision in darkness. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 241, + "fields": { + "name": "Age", + "desc": "Satarre grow quickly, walking soon after hatching and reaching the development of a 15-year-old human by age 6. They maintain the same appearance until about 50, then begin a rapid decline. Satarre often die violently, but those who live longer survive to no more than 65 years of age.", + "type": null, + "race": "satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 242, + "fields": { + "name": "Alignment", + "desc": "Satarre are born with a tendency toward evil akin to that of rapacious dragons, and, when raised among other satarre or darakhul, they are usually evil. Those raised among other cultures tend toward the norm for those cultures.", + "type": null, + "race": "satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 243, + "fields": { + "name": "Size", + "desc": "Satarre are tall but thin, from 6 to 7 feet tall with peculiar, segmented limbs. Your size is Medium.", + "type": null, + "race": "satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 244, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and one of the following: Abyssal, Infernal, or Void Speech. Void Speech is a language of dark gods and ancient blasphemies, and the mere sound of its sibilant tones makes many other creatures quite uncomfortable.", + "type": null, + "race": "satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 245, + "fields": { + "name": "A Friend to Death", + "desc": "You have resistance to necrotic damage.", + "type": null, + "race": "satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 246, + "fields": { + "name": "Keeper of Secrets", + "desc": "You have proficiency in the Arcana skill, and you have advantage on Intelligence (Arcana) checks related to the planes and planar travel. In addition, you have proficiency in one of the following skills of your choice: History, Insight, and Religion.", + "type": null, + "race": "satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 247, + "fields": { + "name": "Carrier of Rot", + "desc": "You can use your action to inflict rot on a creature you can see within 10 feet of you. The creature must make a Constitution saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 1d4 necrotic damage on a failed save, and half as much damage on a successful one. A creature that fails the saving throw also rots for 1 minute. A rotting creature takes 1d4 necrotic damage at the end of each of its turns. The target or a creature within 5 feet of it can use an action to excise the rot with a successful Wisdom (Medicine) check. The DC for the check equals the rot's Constitution saving throw DC. The rot also disappears if the target receives magical healing. The damage for the initial action and the rotting increases to 2d4 at 6th level, 3d4 at 11th level, and 4d4 at 16th level. After you use your Carrier of Rot trait, you can't use it again until you complete a short or long rest.", + "type": null, + "race": "satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 248, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 1.", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 249, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is determined by your Heritage Subrace.", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 250, + "fields": { + "name": "Darkvision", + "desc": "You can see in dim light within 60 feet as though it were bright light and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 251, + "fields": { + "name": "Age", + "desc": "An upper limit of darakhul age has never been discovered; most darakhul die violently.", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 252, + "fields": { + "name": "Alignment", + "desc": "Your alignment does not change when you become a darakhul, but most darakhul have a strong draw toward evil.", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 253, + "fields": { + "name": "Size", + "desc": "Your size is determined by your Heritage Subrace.", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 254, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common, Darakhul, and a language associated with your Heritage Subrace.", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 255, + "fields": { + "name": "Hunger for Flesh", + "desc": "You must consume 1 pound of raw meat each day or suffer the effects of starvation. If you go 24 hours without such a meal, you gain one level of exhaustion. While you have any levels of exhaustion from this trait, you can't regain hit points or remove levels of exhaustion until you spend at least 1 hour consuming 10 pounds of raw meat.", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 256, + "fields": { + "name": "Imperfect Undeath", + "desc": "You transitioned into undeath, but your transition was imperfect. Though you are a humanoid, you are susceptible to effects that target undead. You can regain hit points from spells like cure wounds, but you can also be affected by game effects that specifically target undead, such as a cleric's Turn Undead feature. Game effects that raise a creature from the dead work on you as normal, but they return you to life as a darakhul. A true resurrection or wish spell can restore you to life as a fully living member of your original race.", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 257, + "fields": { + "name": "Powerful Jaw", + "desc": "Your heavy jaw is powerful enough to crush bones to powder. Your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 258, + "fields": { + "name": "Sunlight Sensitivity", + "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 259, + "fields": { + "name": "Undead Resilience", + "desc": "You are infused with the dark energy of undeath, which frees you from some frailties that plague most creatures. You have resistance to necrotic damage and poison damage, you are immune to disease, and you have advantage on saving throws against being charmed or poisoned. When you finish a short rest, you can reduce your exhaustion level by 1, provided you have ingested at least 1 pound of raw meat in the last 24 hours (see Hunger for Flesh).", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 260, + "fields": { + "name": "Undead Vitality", + "desc": "You don't need to breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state that resembles death, remaining semiconscious, for 6 hours a day. While dormant, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 261, + "fields": { + "name": "Heritage Subrace", + "desc": "You were something else before you became a darakhul. This heritage determines some of your traits. Choose one Heritage Subrace below and apply the listed traits.", + "type": null, + "race": "darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 262, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 2.", + "type": null, + "race": "derro-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 263, + "fields": { + "name": "Calculating Insanity", + "desc": "The insanity of your race was compressed into a cold, hard brilliance when you took on your darakhul form. These flashes of brilliance come to you at unexpected moments. You know the true strike cantrip. Charisma is your spellcasting ability for it. You can cast true strike as a bonus action a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest.", + "type": null, + "race": "derro-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 264, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2.", + "type": null, + "race": "dragonborn-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 265, + "fields": { + "name": "Corrupted Bite", + "desc": "The inherent breath weapon of your draconic heritage is corrupted by the necrotic energy of your new darakhul form. Instead of forming a line or cone, your breath weapon now oozes out of your ghoulish maw. As a bonus action, you breathe necrotic energy onto your fangs and make one bite attack. If the attack hits, it deals extra necrotic damage equal to your level. You can't use this trait again until you finish a long rest.", + "type": null, + "race": "dragonborn-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 266, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "race": "drow-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 267, + "fields": { + "name": "Poison Bite", + "desc": "When you hit with your bite attack, you can release venom into your foe. If you do, your bite deals an extra 1d6 poison damage. The damage increases to 3d6 at 11th level. After you release this venom into a creature, you can't do so again until you finish a short or long rest.", + "type": null, + "race": "drow-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 268, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdon score increases by 2.", + "type": null, + "race": "dwarf-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 269, + "fields": { + "name": "Dwarven Stoutness", + "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", + "type": null, + "race": "dwarf-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 270, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "race": "elf-shadow-fey-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 271, + "fields": { + "name": "Supernatural Senses", + "desc": "Your keen elven senses are honed even more by the power of undeath and the hunger within you. You can now smell when blood is in the air. You have proficiency in the Perception skill, and you have advantage on Wisdom (Perception) checks to notice or find a creature within 30 feet of you that doesn't have all of its hit points.", + "type": null, + "race": "elf-shadow-fey-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 272, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "race": "gnome-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 273, + "fields": { + "name": "Magical Hunger", + "desc": "When a creature you can see within 30 feet of you casts a spell, you can use your reaction to consume the spell's residual magic. Your consumption doesn't counter or otherwise affect the spell or the spellcaster. When you consume this residual magic, you gain temporary hit points (minimum of 1) equal to your Constitution modifier, and you can't use this trait again until you finish a short or long rest.", + "type": null, + "race": "gnome-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 274, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "race": "halfling-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 275, + "fields": { + "name": "Ill Fortune", + "desc": "Your uncanny halfling luck has taken a dark turn since your conversion to an undead creature. When a creature rolls a 20 on the d20 for an attack roll against you, the creature must reroll the attack and use the new roll. If the second attack roll misses you, the attacking creature takes necrotic damage equal to twice your Constitution modifier (minimum of 2).", + "type": null, + "race": "halfling-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 276, + "fields": { + "name": "Ability Score Increase", + "desc": "One ability score of your choice, other than Constitution, increases by 2.", + "type": null, + "race": "human-half-elf-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 277, + "fields": { + "name": "Versatility", + "desc": "The training and experience of your early years was not lost when you became a darakhul. You have proficiency in two skills and one tool of your choice.", + "type": null, + "race": "human-half-elf-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 278, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "race": "kobold-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 279, + "fields": { + "name": "Devious Bite", + "desc": "When you hit a creature with your bite attack and you have advantage on the attack roll, your bite deals an extra 1d4 piercing damage.", + "type": null, + "race": "kobold-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 280, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "race": "ravenfolk-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 281, + "fields": { + "name": "Sudden Bite and Flight", + "desc": "If you surprise a creature during the first round of combat, you can make a bite attack as a bonus action. If it hits, you can immediately take the Dodge action as a reaction.", + "type": null, + "race": "ravenfolk-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 282, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "race": "tiefling-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 283, + "fields": { + "name": "Necrotic Rebuke", + "desc": "When you are hit by a weapon attack, you can use a reaction to envelop the attacker in shadowy flames. The attacker takes necrotic damage equal to your Charisma modifier (minimum of 1), and it has disadvantage on attack rolls until the end of its next turn. You must finish a long rest before you can use this feature again.", + "type": null, + "race": "tiefling-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 284, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2.", + "type": null, + "race": "trollkin-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 285, + "fields": { + "name": "Regenerative Bite", + "desc": "The regenerative powers of your trollkin heritage are less potent than they were in life and need a little help. As an action, you can make a bite attack against a creature that isn't undead or a construct. On a hit, you regain hit points (minimum of 1) equal to half the amount of damage dealt. Once you use this trait, you can't use it again until you finish a long rest.", + "type": null, + "race": "trollkin-heritage" + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/FeatBenefit.json b/data/v2/wizards-of-the-coast/srd/FeatBenefit.json index 6f575627..ac95b517 100644 --- a/data/v2/wizards-of-the-coast/srd/FeatBenefit.json +++ b/data/v2/wizards-of-the-coast/srd/FeatBenefit.json @@ -1,22 +1,22 @@ [ - { - "model": "api_v2.featbenefit", - "pk": 175, - "fields": { - "name": "", - "desc": "You have advantage on attack rolls against a creature you are grappling.", - "type": null, - "parent": "srd_grappler" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 176, - "fields": { - "name": "", - "desc": "You can use your action to try to pin a creature grappled by you. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", - "type": null, - "parent": "srd_grappler" - } +{ + "model": "api_v2.featbenefit", + "pk": 175, + "fields": { + "name": "", + "desc": "You have advantage on attack rolls against a creature you are grappling.", + "type": null, + "parent": "srd_grappler" } -] \ No newline at end of file +}, +{ + "model": "api_v2.featbenefit", + "pk": 176, + "fields": { + "name": "", + "desc": "You can use your action to try to pin a creature grappled by you. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", + "type": null, + "parent": "srd_grappler" + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/RaceTrait.json b/data/v2/wizards-of-the-coast/srd/RaceTrait.json new file mode 100644 index 00000000..c45871bc --- /dev/null +++ b/data/v2/wizards-of-the-coast/srd/RaceTrait.json @@ -0,0 +1,932 @@ +[ +{ + "model": "api_v2.racetrait", + "pk": 5, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", + "type": null, + "race": "half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 6, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "race": "half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 7, + "fields": { + "name": "Darkvision", + "desc": "Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 8, + "fields": { + "name": "Age", + "desc": "Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.", + "type": null, + "race": "half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 9, + "fields": { + "name": "Alignment", + "desc": "Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.", + "type": null, + "race": "half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 10, + "fields": { + "name": "Size", + "desc": "Half-orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.", + "type": null, + "race": "half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 11, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.", + "type": null, + "race": "half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 12, + "fields": { + "name": "Menacing", + "desc": "You gain proficiency in the Intimidation skill.", + "type": null, + "race": "half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 13, + "fields": { + "name": "Relentless Endurance", + "desc": "When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.", + "type": null, + "race": "half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 14, + "fields": { + "name": "Savage Attacks", + "desc": "When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.", + "type": null, + "race": "half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 15, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 1, and your Charisma score increases by 2.", + "type": null, + "race": "tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 16, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "race": "tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 17, + "fields": { + "name": "Darkvision", + "desc": "Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 18, + "fields": { + "name": "Age", + "desc": "Tieflings mature at the same rate as humans but live a few years longer.", + "type": null, + "race": "tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 19, + "fields": { + "name": "Alignment", + "desc": "Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.", + "type": null, + "race": "tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 20, + "fields": { + "name": "Size", + "desc": "Tieflings are about the same size and build as humans. Your size is Medium.", + "type": null, + "race": "tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 21, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Infernal.", + "type": null, + "race": "tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 22, + "fields": { + "name": "Hellish Resistance", + "desc": "You have resistance to fire damage.", + "type": null, + "race": "tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 23, + "fields": { + "name": "Infernal Legacy", + "desc": "You know the thaumaturgy cantrip. When you reach 3rd level, you can cast the hellish rebuke spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the darkness spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", + "type": null, + "race": "tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 24, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.", + "type": null, + "race": "half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 25, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "race": "half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 26, + "fields": { + "name": "Darkvision", + "desc": "Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 27, + "fields": { + "name": "Age", + "desc": "Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.", + "type": null, + "race": "half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 28, + "fields": { + "name": "Alignment", + "desc": "Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.", + "type": null, + "race": "half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 29, + "fields": { + "name": "Size", + "desc": "Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.", + "type": null, + "race": "half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 30, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common, Elvish, and one extra language of your choice.", + "type": null, + "race": "half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 31, + "fields": { + "name": "Fey Ancestry", + "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", + "type": null, + "race": "half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 32, + "fields": { + "name": "Skill Versatility", + "desc": "You gain proficiency in two skills of your choice.", + "type": null, + "race": "half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 33, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "race": "gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 34, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 25 feet.", + "type": null, + "race": "gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 35, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 36, + "fields": { + "name": "Age", + "desc": "Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.", + "type": null, + "race": "gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 37, + "fields": { + "name": "Alignment", + "desc": "Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good-hearted, and even the tricksters among them are more playful than vicious.", + "type": null, + "race": "gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 38, + "fields": { + "name": "Size", + "desc": "Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.", + "type": null, + "race": "gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 39, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.", + "type": null, + "race": "gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 40, + "fields": { + "name": "Gnome Cunning", + "desc": "You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.", + "type": null, + "race": "gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 41, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 1.", + "type": null, + "race": "rock-gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 42, + "fields": { + "name": "Artificer's Lore", + "desc": "Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.", + "type": null, + "race": "rock-gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 43, + "fields": { + "name": "Tinker", + "desc": "You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.\r\n\r\nWhen you create a device, choose one of the following options:\r\n* _Clockwork Toy._ This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.\r\n* _Fire Starter._ The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.\r\n* _Music Box._ When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.", + "type": null, + "race": "rock-gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 44, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2, and your Charisma score increases by 1.", + "type": null, + "race": "dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 45, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "race": "dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 46, + "fields": { + "name": "Age", + "desc": "Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.", + "type": null, + "race": "dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 47, + "fields": { + "name": "Alignment", + "desc": "Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.", + "type": null, + "race": "dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 48, + "fields": { + "name": "Size", + "desc": "Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.", + "type": null, + "race": "dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 49, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.", + "type": null, + "race": "dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 50, + "fields": { + "name": "Draconic Ancestry table", + "desc": "| Dragon | Damage Type | Breath Weapon |\r\n|--------------|-------------------|------------------------------|\r\n| Black | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Blue | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Brass | Fire | 5 by 30 ft. line (Dex. save) |\r\n| Bronze | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Copper | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Gold | Fire | 15 ft. cone (Dex. save) |\r\n| Green | Poison | 15 ft. cone (Con. save) |\r\n| Red | Fire | 15 ft. cone (Dex. save) |\r\n| Silver | Cold | 15 ft. cone (Con. save) |\r\n| White | Cold | 15 ft. cone (Con. save) |", + "type": null, + "race": "dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 51, + "fields": { + "name": "Draconic Ancestry", + "desc": "You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.", + "type": null, + "race": "dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 52, + "fields": { + "name": "Breath Weapon", + "desc": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.\r\nWhen you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.", + "type": null, + "race": "dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 53, + "fields": { + "name": "Damage Resistance", + "desc": "You have resistance to the damage type associated with your draconic ancestry.", + "type": null, + "race": "dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 54, + "fields": { + "name": "Ability Score Increase", + "desc": "Your ability scores each increase by 1.", + "type": null, + "race": "human" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 55, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "race": "human" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 56, + "fields": { + "name": "Age", + "desc": "Humans reach adulthood in their late teens and live less than a century.", + "type": null, + "race": "human" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 57, + "fields": { + "name": "Alignment", + "desc": "Humans tend toward no particular alignment. The best and the worst are found among them.", + "type": null, + "race": "human" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 58, + "fields": { + "name": "Size", + "desc": "Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.", + "type": null, + "race": "human" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 59, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.", + "type": null, + "race": "human" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 60, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "race": "halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 61, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 25 feet.", + "type": null, + "race": "halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 62, + "fields": { + "name": "Age", + "desc": "A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.", + "type": null, + "race": "halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 63, + "fields": { + "name": "Alignment", + "desc": "Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.", + "type": null, + "race": "halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 64, + "fields": { + "name": "Size", + "desc": "Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.", + "type": null, + "race": "halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 65, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.", + "type": null, + "race": "halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 66, + "fields": { + "name": "Lucky", + "desc": "When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.", + "type": null, + "race": "halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 67, + "fields": { + "name": "Brave", + "desc": "You have advantage on saving throws against being frightened.", + "type": null, + "race": "halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 68, + "fields": { + "name": "Halfling Nimbleness", + "desc": "You can move through the space of any creature that is of a size larger than yours.", + "type": null, + "race": "halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 69, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "race": "lightfoot" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 70, + "fields": { + "name": "Naturally Stealthy", + "desc": "You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", + "type": null, + "race": "lightfoot" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 71, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "race": "elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 72, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "race": "elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 73, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 74, + "fields": { + "name": "Age", + "desc": "Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.", + "type": null, + "race": "elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 75, + "fields": { + "name": "Alignment", + "desc": "Elves love freedom, variety, and self-­expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others’ freedom as well as their own, and they are more often good than not.", + "type": null, + "race": "elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 76, + "fields": { + "name": "Size", + "desc": "Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.", + "type": null, + "race": "elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 77, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.", + "type": null, + "race": "elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 78, + "fields": { + "name": "Keen Senses", + "desc": "You have proficiency in the Perception skill.", + "type": null, + "race": "elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 79, + "fields": { + "name": "Fey Ancestry", + "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", + "type": null, + "race": "elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 80, + "fields": { + "name": "Trance", + "desc": "Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is “trance.”) While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", + "type": null, + "race": "elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 81, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 1.", + "type": null, + "race": "high-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 82, + "fields": { + "name": "Elf Weapon Training", + "desc": "You have proficiency with the longsword, shortsword, shortbow, and longbow.", + "type": null, + "race": "high-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 83, + "fields": { + "name": "Cantrip", + "desc": "You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.", + "type": null, + "race": "high-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 84, + "fields": { + "name": "Extra Language", + "desc": "You can speak, read, and write one extra language of your choice.", + "type": null, + "race": "high-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 85, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 2.", + "type": null, + "race": "dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 86, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.", + "type": null, + "race": "dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 87, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "race": "dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 88, + "fields": { + "name": "Age", + "desc": "Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.", + "type": null, + "race": "dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 89, + "fields": { + "name": "Alignment", + "desc": "Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.", + "type": null, + "race": "dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 90, + "fields": { + "name": "Size", + "desc": "Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.", + "type": null, + "race": "dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 91, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.", + "type": null, + "race": "dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 92, + "fields": { + "name": "Dwarven Resilience", + "desc": "You have advantage on saving throws against poison, and you have resistance against poison damage.", + "type": null, + "race": "dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 93, + "fields": { + "name": "Dwarven Combat Training", + "desc": "You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.", + "type": null, + "race": "dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 94, + "fields": { + "name": "Tool Proficiency", + "desc": "You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.", + "type": null, + "race": "dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 95, + "fields": { + "name": "Stonecunning", + "desc": "Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.", + "type": null, + "race": "dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 96, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 1.", + "type": null, + "race": "hill-dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 97, + "fields": { + "name": "Dwarven Toughness", + "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", + "type": null, + "race": "hill-dwarf" + } +} +] From 05c6d1266a22a08cc4277ef47f2d209236064ee6 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 11:42:08 -0500 Subject: [PATCH 41/84] rename a field --- api_v2/management/commands/export.py | 2 +- .../0084_rename_race_racetrait_parent.py | 18 + api_v2/models/race.py | 5 +- data/v2/kobold-press/toh/RaceTrait.json | 368 +++++++++--------- .../wizards-of-the-coast/srd/RaceTrait.json | 186 ++++----- .../data_manipulation/data_v2_format_check.py | 6 +- 6 files changed, 301 insertions(+), 284 deletions(-) create mode 100644 api_v2/migrations/0084_rename_race_racetrait_parent.py diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index cd8ede64..bf8311fb 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -114,7 +114,7 @@ def handle(self, *args, **options) -> None: if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES: if model.__name__ in CHILD_MODEL_NAMES: if model.__name__ == 'RaceTrait': - modelq = model.objects.filter(race__document=doc).order_by('pk') + modelq = model.objects.filter(parent__document=doc).order_by('pk') if model.__name__ == 'FeatBenefit': modelq = model.objects.filter(parent__document=doc).order_by('pk') if model.__name__ == 'BackgroundBenefit': diff --git a/api_v2/migrations/0084_rename_race_racetrait_parent.py b/api_v2/migrations/0084_rename_race_racetrait_parent.py new file mode 100644 index 00000000..b7311f0d --- /dev/null +++ b/api_v2/migrations/0084_rename_race_racetrait_parent.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-05-27 16:40 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0083_rename_trait_racetrait'), + ] + + operations = [ + migrations.RenameField( + model_name='racetrait', + old_name='race', + new_name='parent', + ), + ] diff --git a/api_v2/models/race.py b/api_v2/models/race.py index 76758775..94f19136 100644 --- a/api_v2/models/race.py +++ b/api_v2/models/race.py @@ -5,15 +5,14 @@ from .abstracts import Modification from .document import FromDocument -#TODO rename to RaceTrait + class RaceTrait(Modification): """This is the model for a race or subrace trait. It inherits from modification, which is an abstract concept. """ - #TODO refactor to parent - race = models.ForeignKey('Race', on_delete=models.CASCADE) + parent = models.ForeignKey('Race', on_delete=models.CASCADE) class Race(HasName, HasDescription, FromDocument): diff --git a/data/v2/kobold-press/toh/RaceTrait.json b/data/v2/kobold-press/toh/RaceTrait.json index 9728ab1b..456f9780 100644 --- a/data/v2/kobold-press/toh/RaceTrait.json +++ b/data/v2/kobold-press/toh/RaceTrait.json @@ -6,7 +6,7 @@ "name": "Ability Score Increase", "desc": "Your Dexterity score increases by 2, and your Wisdom score increases by 1.", "type": null, - "race": "alseid" + "parent": "alseid" } }, { @@ -16,7 +16,7 @@ "name": "Speed", "desc": "Alseid are fast for their size, with a base walking speed of 40 feet.", "type": null, - "race": "alseid" + "parent": "alseid" } }, { @@ -26,7 +26,7 @@ "name": "Darkvision", "desc": "Accustomed to the limited light beneath the forest canopy, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "alseid" + "parent": "alseid" } }, { @@ -36,7 +36,7 @@ "name": "Age", "desc": "Alseid reach maturity by the age of 20. They can live well beyond 100 years, but it is unknown just how old they can become.", "type": null, - "race": "alseid" + "parent": "alseid" } }, { @@ -46,7 +46,7 @@ "name": "Alignment", "desc": "Alseid are generally chaotic, flowing with the unpredictable whims of nature, though variations are common, particularly among those rare few who leave their people.", "type": null, - "race": "alseid" + "parent": "alseid" } }, { @@ -56,7 +56,7 @@ "name": "Size", "desc": "Alseid stand over 6 feet tall and weigh around 300 pounds. Your size is Medium.", "type": null, - "race": "alseid" + "parent": "alseid" } }, { @@ -66,7 +66,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common and Elvish.", "type": null, - "race": "alseid" + "parent": "alseid" } }, { @@ -76,7 +76,7 @@ "name": "Alseid Weapon Training", "desc": "You have proficiency with spears and shortbows.", "type": null, - "race": "alseid" + "parent": "alseid" } }, { @@ -86,7 +86,7 @@ "name": "Light Hooves", "desc": "You have proficiency in the Stealth skill.", "type": null, - "race": "alseid" + "parent": "alseid" } }, { @@ -96,7 +96,7 @@ "name": "Quadruped", "desc": "The mundane details of the structures of humanoids can present considerable obstacles for you. You have to squeeze when moving through trapdoors, manholes, and similar structures even when a Medium humanoid wouldn't have to squeeze. In addition, ladders, stairs, and similar structures are difficult terrain for you.", "type": null, - "race": "alseid" + "parent": "alseid" } }, { @@ -106,7 +106,7 @@ "name": "Woodfriend", "desc": "When in a forest, you leave no tracks and can automatically discern true north.", "type": null, - "race": "alseid" + "parent": "alseid" } }, { @@ -116,7 +116,7 @@ "name": "Ability Score Increase", "desc": "Your Dexterity score increases by 2.", "type": null, - "race": "catfolk" + "parent": "catfolk" } }, { @@ -126,7 +126,7 @@ "name": "Speed", "desc": "Your base walking speed is 30 feet.", "type": null, - "race": "catfolk" + "parent": "catfolk" } }, { @@ -136,7 +136,7 @@ "name": "Darkvision", "desc": "You have a cat's keen senses, especially in the dark. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "catfolk" + "parent": "catfolk" } }, { @@ -146,7 +146,7 @@ "name": "Age", "desc": "Catfolk mature at the same rate as humans and can live just past a century.", "type": null, - "race": "catfolk" + "parent": "catfolk" } }, { @@ -156,7 +156,7 @@ "name": "Alignment", "desc": "Catfolk tend toward two extremes. Some are free-spirited and chaotic, letting impulse and fancy guide their decisions. Others are devoted to duty and personal honor. Typically, catfolk deem concepts such as good and evil as less important than freedom or their oaths.", "type": null, - "race": "catfolk" + "parent": "catfolk" } }, { @@ -166,7 +166,7 @@ "name": "Size", "desc": "Catfolk have a similar stature to humans but are generally leaner and more muscular. Your size is Medium", "type": null, - "race": "catfolk" + "parent": "catfolk" } }, { @@ -176,7 +176,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common.", "type": null, - "race": "catfolk" + "parent": "catfolk" } }, { @@ -186,7 +186,7 @@ "name": "Cat's Claws", "desc": "Your sharp claws can cut with ease. Your claws are natural melee weapons, which you can use to make unarmed strikes. When you hit with a claw, your claw deals slashing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", "type": null, - "race": "catfolk" + "parent": "catfolk" } }, { @@ -196,7 +196,7 @@ "name": "Hunter's Senses", "desc": "You have proficiency in the Perception and Stealth skills.", "type": null, - "race": "catfolk" + "parent": "catfolk" } }, { @@ -206,7 +206,7 @@ "name": "Ability Score Increase", "desc": "Your Intelligence score increases by 1.", "type": null, - "race": "malkin" + "parent": "malkin" } }, { @@ -216,7 +216,7 @@ "name": "Curiously Clever", "desc": "You have proficiency in the Investigation skill.", "type": null, - "race": "malkin" + "parent": "malkin" } }, { @@ -226,7 +226,7 @@ "name": "Charmed Curiosity", "desc": "When you roll a 1 on the d20 for a Dexterity check or saving throw, you can reroll the die and must use the new roll.", "type": null, - "race": "malkin" + "parent": "malkin" } }, { @@ -236,7 +236,7 @@ "name": "Ability Score Increase", "desc": "Your Wisdom score increases by 1.", "type": null, - "race": "pantheran" + "parent": "pantheran" } }, { @@ -246,7 +246,7 @@ "name": "Hunter's Charge", "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a melee weapon attack in the same turn, you can use a bonus action to attack that creature with your Cat's Claws. You can use this trait a number of times per day equal to your proficiency bonus, and you regain all expended uses when you finish a long rest.", "type": null, - "race": "pantheran" + "parent": "pantheran" } }, { @@ -256,7 +256,7 @@ "name": "One With the Wilds", "desc": "You have proficiency in one of the following skills of your choice: Insight, Medicine, Nature, or Survival.", "type": null, - "race": "pantheran" + "parent": "pantheran" } }, { @@ -266,7 +266,7 @@ "name": "Ability Score Increase", "desc": "Your Dexterity score increases by 2.", "type": null, - "race": "derro" + "parent": "derro" } }, { @@ -276,7 +276,7 @@ "name": "Speed", "desc": "Derro are fast for their size. Your base walking speed is 30 feet.", "type": null, - "race": "derro" + "parent": "derro" } }, { @@ -286,7 +286,7 @@ "name": "Superior Darkvision", "desc": "Accustomed to life underground, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "derro" + "parent": "derro" } }, { @@ -296,7 +296,7 @@ "name": "Age", "desc": "Derro reach maturity by the age of 15 and live to be around 75.", "type": null, - "race": "derro" + "parent": "derro" } }, { @@ -306,7 +306,7 @@ "name": "Alignment", "desc": "The derro's naturally unhinged minds are nearly always chaotic, and many, but not all, are evil.", "type": null, - "race": "derro" + "parent": "derro" } }, { @@ -316,7 +316,7 @@ "name": "Size", "desc": "Derro stand between 3 and 4 feet tall with slender limbs and wide shoulders. Your size is Small.", "type": null, - "race": "derro" + "parent": "derro" } }, { @@ -326,7 +326,7 @@ "name": "Languages", "desc": "You can speak, read, and write Dwarvish and your choice of Common or Undercommon.", "type": null, - "race": "derro" + "parent": "derro" } }, { @@ -336,7 +336,7 @@ "name": "Eldritch Resilience", "desc": "You have advantage on Constitution saving throws against spells.", "type": null, - "race": "derro" + "parent": "derro" } }, { @@ -346,7 +346,7 @@ "name": "Sunlight Sensitivity", "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", "type": null, - "race": "derro" + "parent": "derro" } }, { @@ -356,7 +356,7 @@ "name": "Ability Score Increase", "desc": "Your Charisma score increases by 1.", "type": null, - "race": "far-touched" + "parent": "far-touched" } }, { @@ -366,7 +366,7 @@ "name": "Insanity", "desc": "You have advantage on saving throws against being charmed or frightened. In addition, you can read and understand Void Speech, but you can speak only a few words of the dangerous and maddening language—the words necessary for using the spells in your Mad Fervor trait.", "type": null, - "race": "far-touched" + "parent": "far-touched" } }, { @@ -376,7 +376,7 @@ "name": "Mad Fervor", "desc": "The driving force behind your insanity has blessed you with a measure of its power. You know the vicious mockery cantrip. When you reach 3rd level, you can cast the enthrall spell with this trait, and starting at 5th level, you can cast the fear spell with it. Once you cast a non-cantrip spell with this trait, you can't do so again until you finish a long rest. Charisma is your spellcasting ability for these spells. If you are using Deep Magic for 5th Edition, these spells are instead crushing curse, maddening whispers, and alone, respectively.", "type": null, - "race": "far-touched" + "parent": "far-touched" } }, { @@ -386,7 +386,7 @@ "name": "Ability Score Increase", "desc": "Your Strength score increases by 1.", "type": null, - "race": "mutated" + "parent": "mutated" } }, { @@ -396,7 +396,7 @@ "name": "Athletic Training", "desc": "You have proficiency in the Athletics skill, and you are proficient with two martial weapons of your choice.", "type": null, - "race": "mutated" + "parent": "mutated" } }, { @@ -406,7 +406,7 @@ "name": "Otherworldly Influence", "desc": "Your close connection to the strange powers that your people worship has mutated your form. Choose one of the following:\r\n\r\n**Alien Appendage.** You have a tentacle-like growth on your body. This tentacle is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your tentacle deals bludgeoning damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. This tentacle has a reach of 5 feet and can lift a number of pounds equal to double your Strength score. The tentacle can't wield weapons or shields or perform tasks that require manual precision, such as performing the somatic components of a spell, but it can perform simple tasks, such as opening an unlocked door or container, stowing or retrieving an object, or pouring the contents out of a vial.\r\n**Tainted Blood.** Your blood is tainted by your connection with otherworldly entities. When you take piercing or slashing damage, you can use your reaction to force your blood to spray out of the wound. You and each creature within 5 feet of you take necrotic damage equal to your level. Once you use this trait, you can't use it again until you finish a short or long rest.\r\n**Tenebrous Flesh.** Your skin is rubbery and tenebrous, granting you a +1 bonus to your Armor Class.", "type": null, - "race": "mutated" + "parent": "mutated" } }, { @@ -416,7 +416,7 @@ "name": "Ability Score Increase", "desc": "Your Wisdom score increases by 1.", "type": null, - "race": "uncorrupted" + "parent": "uncorrupted" } }, { @@ -426,7 +426,7 @@ "name": "Psychic Barrier", "desc": "Your time among your less sane brethren has inured you to their madness. You have resistance to psychic damage, and you have advantage on ability checks and saving throws made against effects that inflict insanity, such as spells like contact other plane and symbol, and effects that cause short-term, long-term, or indefinite madness.", "type": null, - "race": "uncorrupted" + "parent": "uncorrupted" } }, { @@ -436,7 +436,7 @@ "name": "Studied Insight", "desc": "You are skilled at discerning other creature's motives and intentions. You have proficiency in the Insight skill, and, if you study a creature for at least 1 minute, you have advantage on any initiative checks in combat against that creature for the next hour.", "type": null, - "race": "uncorrupted" + "parent": "uncorrupted" } }, { @@ -446,7 +446,7 @@ "name": "Ability Score Increase", "desc": "Your Intelligence score increases by 2.", "type": null, - "race": "drow" + "parent": "drow" } }, { @@ -456,7 +456,7 @@ "name": "Speed", "desc": "Your base walking speed is 30 feet.", "type": null, - "race": "drow" + "parent": "drow" } }, { @@ -466,7 +466,7 @@ "name": "Superior Darkvision", "desc": "Accustomed to life in the darkest depths of the world, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "drow" + "parent": "drow" } }, { @@ -476,7 +476,7 @@ "name": "Age", "desc": "Drow physically mature at the same rate as humans, but they aren't considered adults until they reach the age of 50. They typically live to be around 500.", "type": null, - "race": "drow" + "parent": "drow" } }, { @@ -486,7 +486,7 @@ "name": "Alignment", "desc": "Drow believe in reason and rationality, which leads them to favor lawful activities. However, their current dire situation makes them more prone than their ancestors to chaotic behavior. Their vicious fight for survival makes them capable of doing great evil in the name of self-preservation, although they are not, by nature, prone to evil in other circumstances.", "type": null, - "race": "drow" + "parent": "drow" } }, { @@ -496,7 +496,7 @@ "name": "Size", "desc": "Drow are slightly shorter and slimmer than humans. Your size is Medium.", "type": null, - "race": "drow" + "parent": "drow" } }, { @@ -506,7 +506,7 @@ "name": "Languages", "desc": "You can speak, read, and write Elvish and your choice of Common or Undercommon.", "type": null, - "race": "drow" + "parent": "drow" } }, { @@ -516,7 +516,7 @@ "name": "Fey Ancestry", "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", "type": null, - "race": "drow" + "parent": "drow" } }, { @@ -526,7 +526,7 @@ "name": "Mind of Steel", "desc": "You understand the complexities of minds, as well as the magic that can affect them. You have advantage on Wisdom, Intelligence, and Charisma saving throws against spells.", "type": null, - "race": "drow" + "parent": "drow" } }, { @@ -536,7 +536,7 @@ "name": "Sunlight Sensitivity", "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", "type": null, - "race": "drow" + "parent": "drow" } }, { @@ -546,7 +546,7 @@ "name": "Ability Score Increase", "desc": "Your Strength or Dexterity score increases by 1.", "type": null, - "race": "delver" + "parent": "delver" } }, { @@ -556,7 +556,7 @@ "name": "Rapport with Insects", "desc": "Your caste's years of working alongside the giant spiders and beetles that your people utilized in building and defending cities has left your caste with an innate affinity with the creatures. You can communicate simple ideas with insect-like beasts with an Intelligence of 3 or lower, such as spiders, beetles, wasps, scorpions, and centipedes. You can understand them in return, though this understanding is often limited to knowing the creature's current or most recent state, such as “hungry,” “content,” or “in danger.” Delver drow often keep such creatures as pets, mounts, or beasts of burden.", "type": null, - "race": "delver" + "parent": "delver" } }, { @@ -566,7 +566,7 @@ "name": "Specialized Training", "desc": "You are proficient in one skill and one tool of your choice.", "type": null, - "race": "delver" + "parent": "delver" } }, { @@ -576,7 +576,7 @@ "name": "Martial Excellence", "desc": "You are proficient with one martial weapon of your choice and with light armor.", "type": null, - "race": "delver" + "parent": "delver" } }, { @@ -586,7 +586,7 @@ "name": "Ability Score Increase", "desc": "Your Constitution score increases by 1.", "type": null, - "race": "fever-bit" + "parent": "fever-bit" } }, { @@ -596,7 +596,7 @@ "name": "Deathly Resilience", "desc": "Your long exposure to the life-sapping energies of darakhul fever has made you more resilient. You have resistance to necrotic damage, and advantage on death saving throws.", "type": null, - "race": "fever-bit" + "parent": "fever-bit" } }, { @@ -606,7 +606,7 @@ "name": "Iron Constitution", "desc": "You are immune to disease.", "type": null, - "race": "fever-bit" + "parent": "fever-bit" } }, { @@ -616,7 +616,7 @@ "name": "Near-Death Experience", "desc": "Your brush with death has made you more stalwart in the face of danger. You have advantage on saving throws against being frightened.", "type": null, - "race": "fever-bit" + "parent": "fever-bit" } }, { @@ -626,7 +626,7 @@ "name": "Ability Score Increase", "desc": "Your Charisma score increases by 1.", "type": null, - "race": "purified" + "parent": "purified" } }, { @@ -636,7 +636,7 @@ "name": "Innate Spellcasting", "desc": "You know the poison spray cantrip. When you reach 3rd level, you can cast suggestion once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the tongues spell once and regain the ability to do so when you finish a long rest. Intelligence is your spellcasting ability for these spells.", "type": null, - "race": "purified" + "parent": "purified" } }, { @@ -646,7 +646,7 @@ "name": "Born Leader", "desc": "You gain proficiency with two of the following skills of your choice: History, Insight, Performance, and Persuasion.", "type": null, - "race": "purified" + "parent": "purified" } }, { @@ -656,7 +656,7 @@ "name": "Ability Score Increase", "desc": "Your Dexterity score increases by 2, and you can choose to increase either your Wisdom or Charisma score by 1.", "type": null, - "race": "erina" + "parent": "erina" } }, { @@ -666,7 +666,7 @@ "name": "Speed", "desc": "Your base walking speed is 25 feet.", "type": null, - "race": "erina" + "parent": "erina" } }, { @@ -676,7 +676,7 @@ "name": "Darkvision", "desc": "Accustomed to life in the dark burrows of your people, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "erina" + "parent": "erina" } }, { @@ -686,7 +686,7 @@ "name": "Age", "desc": "Erina reach maturity around 15 years and can live up to 60 years, though some erina burrow elders have memories of events which suggest erina can live much longer.", "type": null, - "race": "erina" + "parent": "erina" } }, { @@ -696,7 +696,7 @@ "name": "Alignment", "desc": "Erina are good-hearted and extremely social creatures who have a difficult time adapting to the laws of other species.", "type": null, - "race": "erina" + "parent": "erina" } }, { @@ -706,7 +706,7 @@ "name": "Size", "desc": "Erina average about 3 feet tall and weigh about 50 pounds. Your size is Small.", "type": null, - "race": "erina" + "parent": "erina" } }, { @@ -716,7 +716,7 @@ "name": "Languages", "desc": "You can speak Erina and either Common or Sylvan.", "type": null, - "race": "erina" + "parent": "erina" } }, { @@ -726,7 +726,7 @@ "name": "Hardy", "desc": "The erina diet of snakes and venomous insects has made them hardy. You have advantage on saving throws against poison, and you have resistance against poison damage.", "type": null, - "race": "erina" + "parent": "erina" } }, { @@ -736,7 +736,7 @@ "name": "Spines", "desc": "Erina grow needle-sharp spines in small clusters atop their heads and along their backs. While you are grappling a creature or while a creature is grappling you, the creature takes 1d4 piercing damage at the start of your turn.", "type": null, - "race": "erina" + "parent": "erina" } }, { @@ -746,7 +746,7 @@ "name": "Keen Senses", "desc": "You have proficiency in the Perception skill.", "type": null, - "race": "erina" + "parent": "erina" } }, { @@ -756,7 +756,7 @@ "name": "Digger", "desc": "You have a burrowing speed of 20 feet, but you can use it to move through only earth and sand, not mud, ice, or rock.", "type": null, - "race": "erina" + "parent": "erina" } }, { @@ -766,7 +766,7 @@ "name": "Ability Score Increase", "desc": "Two different ability scores of your choice increase by 1.", "type": null, - "race": "gearforged" + "parent": "gearforged" } }, { @@ -776,7 +776,7 @@ "name": "Speed", "desc": "Your base walking speed is determined by your Race Chassis.", "type": null, - "race": "gearforged" + "parent": "gearforged" } }, { @@ -786,7 +786,7 @@ "name": "Age", "desc": "The soul inhabiting a gearforged can be any age. As long as its new body is kept in good repair, there is no known limit to how long it can function.", "type": null, - "race": "gearforged" + "parent": "gearforged" } }, { @@ -796,7 +796,7 @@ "name": "Alignment", "desc": "No single alignment typifies gearforged, but most gearforged maintain the alignment they had before becoming gearforged.", "type": null, - "race": "gearforged" + "parent": "gearforged" } }, { @@ -806,7 +806,7 @@ "name": "Size", "desc": "Your size is determined by your Race Chassis.", "type": null, - "race": "gearforged" + "parent": "gearforged" } }, { @@ -816,7 +816,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common, Machine Speech (a whistling, clicking language that's incomprehensible to non-gearforged), and a language associated with your Race Chassis.", "type": null, - "race": "gearforged" + "parent": "gearforged" } }, { @@ -826,7 +826,7 @@ "name": "Construct Resilience", "desc": "Your body is constructed, which frees you from some of the limits of fleshand- blood creatures. You have resistance to poison damage, you are immune to disease, and you have advantage on saving throws against being poisoned.", "type": null, - "race": "gearforged" + "parent": "gearforged" } }, { @@ -836,7 +836,7 @@ "name": "Construct Vitality", "desc": "You don't need to eat, drink, or breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state where you resemble a statue and remain semiconscious for 6 hours a day. During this time, the magic in your soul gem and everwound springs slowly repairs the day's damage to your mechanical body. While in this dormant state, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", "type": null, - "race": "gearforged" + "parent": "gearforged" } }, { @@ -846,7 +846,7 @@ "name": "Living Construct", "desc": "Your consciousness and soul reside within a soul gem to animate your mechanical body. As such, you are a living creature with some of the benefits and drawbacks of a construct. Though you can regain hit points from spells like cure wounds, you can also be affected by game effects that specifically target constructs, such as the shatter spell. As long as your soul gem remains intact, game effects that raise a creature from the dead work on you as normal, repairing the damaged pieces of your mechanical body (restoring lost sections only if the spell normally restores lost limbs) and returning you to life as a gearforged. Alternatively, if your body is destroyed but your soul gem and memory gears are intact, they can be installed into a new body with a ritual that takes one day and 10,000 gp worth of materials. If your soul gem is destroyed, only a wish spell can restore you to life, and you return as a fully living member of your original race.", "type": null, - "race": "gearforged" + "parent": "gearforged" } }, { @@ -856,7 +856,7 @@ "name": "Race Chassis", "desc": "Four races are known to create unique gearforged, building mechanical bodies similar in size and shape to their people: dwarf, gnome, human, and kobold. Choose one of these forms.", "type": null, - "race": "gearforged" + "parent": "gearforged" } }, { @@ -866,7 +866,7 @@ "name": "Ability Score Increase", "desc": "Your Constitution score increases by 1.", "type": null, - "race": "dwarf-chassis" + "parent": "dwarf-chassis" } }, { @@ -876,7 +876,7 @@ "name": "Always Armed", "desc": "Every dwarf knows that it's better to leave home without pants than without your weapon. Choose a weapon with which you are proficient and that doesn't have the two-handed property. You can integrate this weapon into one of your arms. While the weapon is integrated, you can't be disarmed of it by any means, though you can use an action to remove the weapon. You can draw or sheathe the weapon as normal, the weapon folding into or springing from your arm instead of a sheath. While the integrated weapon is drawn in this way, it is considered held in that arm's hand, which can't be used for other actions such as casting spells. You can integrate a new weapon or replace an integrated weapon as part of a short or long rest. You can have up to two weapons integrated at a time, one per arm. You have advantage on Dexterity (Sleight of Hand) checks to conceal an integrated weapon.", "type": null, - "race": "dwarf-chassis" + "parent": "dwarf-chassis" } }, { @@ -886,7 +886,7 @@ "name": "Remembered Training", "desc": "You remember some of your combat training from your previous life. You have proficiency with two martial weapons of your choice and with light and medium armor.", "type": null, - "race": "dwarf-chassis" + "parent": "dwarf-chassis" } }, { @@ -896,7 +896,7 @@ "name": "Ability Score Increase", "desc": "Your Intelligence score increases by 1.", "type": null, - "race": "gnome-chassis" + "parent": "gnome-chassis" } }, { @@ -906,7 +906,7 @@ "name": "Mental Fortitude", "desc": "When creating their first gearforged, gnome engineers put their efforts toward ensuring that the gnomish mind remained a mental fortress, though they were unable to fully replicate the gnomish mind's resilience once transferred to a soul gem. Choose Intelligence, Wisdom, or Charisma. You have advantage on saving throws made with that ability score against magic.", "type": null, - "race": "gnome-chassis" + "parent": "gnome-chassis" } }, { @@ -916,7 +916,7 @@ "name": "Quick Fix", "desc": "When you are below half your hit point maximum, you can use a bonus action to apply a quick patch up to your damaged body. You gain temporary hit points equal to your proficiency bonus. You can't use this trait again until you finish a short or long rest.", "type": null, - "race": "gnome-chassis" + "parent": "gnome-chassis" } }, { @@ -926,7 +926,7 @@ "name": "Ability Score Increase", "desc": "One ability score of your choice increases by 1.", "type": null, - "race": "human-chassis" + "parent": "human-chassis" } }, { @@ -936,7 +936,7 @@ "name": "Adaptable Acumen", "desc": "You gain proficiency in two skills or tools of your choice. Choose one of those skills or tools or another skill or tool proficiency you have. Your proficiency bonus is doubled for any ability check you make that uses the chosen skill or tool.", "type": null, - "race": "human-chassis" + "parent": "human-chassis" } }, { @@ -946,7 +946,7 @@ "name": "Inspired Ingenuity", "desc": "When you roll a 9 or lower on the d20 for an ability check, you can use a reaction to change the roll to a 10. You can't use this trait again until you finish a short or long rest.", "type": null, - "race": "human-chassis" + "parent": "human-chassis" } }, { @@ -956,7 +956,7 @@ "name": "Ability Score Increase", "desc": "Your Dexterity score increases by 1.", "type": null, - "race": "kobold-chassis" + "parent": "kobold-chassis" } }, { @@ -966,7 +966,7 @@ "name": "Clutch Aide", "desc": "Kobolds spend their lives alongside their clutchmates, both those hatched around the same time as them and those they choose later in life, and you retain much of this group-oriented intuition. You can take the Help action as a bonus action.", "type": null, - "race": "kobold-chassis" + "parent": "kobold-chassis" } }, { @@ -976,7 +976,7 @@ "name": "Resourceful", "desc": "If you have at least one set of tools, you can cobble together one set of makeshift tools of a different type with 1 minute of work. For example, if you have cook's utensils, you can use them to create a temporary set of thieves' tools. The makeshift tools last for 10 minutes then collapse into their component parts, returning your tools to their normal forms. While the makeshift tools exist, you can't use the set of tools you used to create the makeshift tools. At the GM's discretion, you might not be able to replicate some tools, such as an alchemist's alembic or a disguise kit's cosmetics. A creature other than you that uses the makeshift tools has disadvantage on the check.", "type": null, - "race": "kobold-chassis" + "parent": "kobold-chassis" } }, { @@ -986,7 +986,7 @@ "name": "Ability Score Increase", "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", "type": null, - "race": "minotaur" + "parent": "minotaur" } }, { @@ -996,7 +996,7 @@ "name": "Speed", "desc": "Your base walking speed is 30 feet.", "type": null, - "race": "minotaur" + "parent": "minotaur" } }, { @@ -1006,7 +1006,7 @@ "name": "Darkvision", "desc": "You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "minotaur" + "parent": "minotaur" } }, { @@ -1016,7 +1016,7 @@ "name": "Age", "desc": "Minotaurs age at roughly the same rate as humans but mature 3 years earlier. Childhood ends around the age of 10 and adulthood is celebrated at 15.", "type": null, - "race": "minotaur" + "parent": "minotaur" } }, { @@ -1026,7 +1026,7 @@ "name": "Alignment", "desc": "Minotaurs possess a wide range of alignments, just as humans do. Mixing a love for personal freedom and respect for history and tradition, the majority of minotaurs fall into neutral alignments.", "type": null, - "race": "minotaur" + "parent": "minotaur" } }, { @@ -1036,7 +1036,7 @@ "name": "Size", "desc": "Adult males can reach a height of 7 feet, with females averaging 3 inches shorter. Your size is Medium.", "type": null, - "race": "minotaur" + "parent": "minotaur" } }, { @@ -1046,7 +1046,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common and Minotaur.", "type": null, - "race": "minotaur" + "parent": "minotaur" } }, { @@ -1056,7 +1056,7 @@ "name": "Natural Attacks", "desc": "Your horns are sturdy and sharp. Your horns are a natural melee weapon, which you can use to make unarmed strikes. When you hit with your horns, they deal piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", "type": null, - "race": "minotaur" + "parent": "minotaur" } }, { @@ -1066,7 +1066,7 @@ "name": "Charge", "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a horn attack in the same turn, you deal an extra 1d6 piercing damage and you can shove the target up to 5 feet as a bonus action. At 11th level, when you shove a creature with Charge, you can push it up to 10 feet instead. You can use this trait a number of times per day equal to your Constitution modifier (minimum of once), and you regain all expended uses when you finish a long rest.", "type": null, - "race": "minotaur" + "parent": "minotaur" } }, { @@ -1076,7 +1076,7 @@ "name": "Labyrinth Sense", "desc": "You can retrace without error any path you have previously taken, with no ability check.", "type": null, - "race": "minotaur" + "parent": "minotaur" } }, { @@ -1086,7 +1086,7 @@ "name": "Ability Score Increase", "desc": "Your Constitution score increases by 2, and your Strength score increases by 1.", "type": null, - "race": "bhain-kwai" + "parent": "bhain-kwai" } }, { @@ -1096,7 +1096,7 @@ "name": "Strong Back", "desc": "Your carrying capacity is your Strength score multiplied by 20, instead of by 15.", "type": null, - "race": "bhain-kwai" + "parent": "bhain-kwai" } }, { @@ -1106,7 +1106,7 @@ "name": "Wetland Dweller", "desc": "You are adapted to your home terrain. Difficult terrain composed of mud or from wading through water up to waist deep doesn't cost you extra movement. You have a swimming speed of 25 feet.", "type": null, - "race": "bhain-kwai" + "parent": "bhain-kwai" } }, { @@ -1116,7 +1116,7 @@ "name": "Ability Score Increase", "desc": "Your Wisdom score increases by 2, and your Constitution score increases by 1.", "type": null, - "race": "boghaid" + "parent": "boghaid" } }, { @@ -1126,7 +1126,7 @@ "name": "Highlander", "desc": "You are adapted to life at high altitudes, and you suffer no ill effects or penalties from elevations above 8,000 feet.", "type": null, - "race": "boghaid" + "parent": "boghaid" } }, { @@ -1136,7 +1136,7 @@ "name": "Storied Culture", "desc": "You have proficiency in the Performance skill, and you gain proficiency with one of the following musical instruments: bagpipes, drum, horn, or shawm.", "type": null, - "race": "boghaid" + "parent": "boghaid" } }, { @@ -1146,7 +1146,7 @@ "name": "Wooly", "desc": "Your thick, wooly coat of hair keeps you warm, allowing you to function in cold weather without special clothing or gear. You have advantage on saving throws against spells and other effects that deal cold damage.", "type": null, - "race": "boghaid" + "parent": "boghaid" } }, { @@ -1156,7 +1156,7 @@ "name": "Ability Score Increase", "desc": "Your Wisdom score increases by 2.", "type": null, - "race": "mushroomfolk" + "parent": "mushroomfolk" } }, { @@ -1166,7 +1166,7 @@ "name": "Speed", "desc": "Your base walking speed is 30 feet.", "type": null, - "race": "mushroomfolk" + "parent": "mushroomfolk" } }, { @@ -1176,7 +1176,7 @@ "name": "Darkvision", "desc": "Accustomed to life underground, you can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "mushroomfolk" + "parent": "mushroomfolk" } }, { @@ -1186,7 +1186,7 @@ "name": "Age", "desc": "Mushroomfolk reach maturity by the age of 5 and rarely live longer than 50 years.", "type": null, - "race": "mushroomfolk" + "parent": "mushroomfolk" } }, { @@ -1196,7 +1196,7 @@ "name": "Alignment", "desc": "The limited interaction mushroomfolk have with other creatures leaves them with a fairly neutral view of the world in terms of good and evil, while their societal structure makes them more prone to law than chaos.", "type": null, - "race": "mushroomfolk" + "parent": "mushroomfolk" } }, { @@ -1206,7 +1206,7 @@ "name": "Size", "desc": "A mushroomfolk's size is determined by its subrace.", "type": null, - "race": "mushroomfolk" + "parent": "mushroomfolk" } }, { @@ -1216,7 +1216,7 @@ "name": "Languages", "desc": "You can speak, read, and write Mushroomfolk and your choice of Common or Undercommon.", "type": null, - "race": "mushroomfolk" + "parent": "mushroomfolk" } }, { @@ -1226,7 +1226,7 @@ "name": "Fungoid Form", "desc": "You are a humanoid, though the fungal nature of your body and your unique diet of decayed vegetable and animal matter marks you with some plant-like characteristics. You have advantage on saving throws against poison, and you have resistance to poison damage. In addition, you are immune to disease.", "type": null, - "race": "mushroomfolk" + "parent": "mushroomfolk" } }, { @@ -1236,7 +1236,7 @@ "name": "Hardy Survivor", "desc": "Your upbringing in mushroomfolk society has taught you how to defend yourself and find food. You have proficiency in the Survival skill.", "type": null, - "race": "mushroomfolk" + "parent": "mushroomfolk" } }, { @@ -1246,7 +1246,7 @@ "name": "Subrace", "desc": "Three subraces of mushroomfolk are known to wander the world: acid cap, favored, and morel. Choose one of these subraces.", "type": null, - "race": "mushroomfolk" + "parent": "mushroomfolk" } }, { @@ -1256,7 +1256,7 @@ "name": "Ability Score Increase", "desc": "Your Strength score increases by 1.", "type": null, - "race": "acid-cap" + "parent": "acid-cap" } }, { @@ -1266,7 +1266,7 @@ "name": "Acid Cap Resistance", "desc": "You have resistance to acid damage.", "type": null, - "race": "acid-cap" + "parent": "acid-cap" } }, { @@ -1276,7 +1276,7 @@ "name": "Acid Spores", "desc": "When you are hit by a melee weapon attack within 5 feet of you, you can use your reaction to emit acidic spores. If you do, the attacker takes acid damage equal to half your level (rounded up). You can use your acid spores a number of times equal to your Constitution modifier (a minimum of once). You regain any expended uses when you finish a long rest.", "type": null, - "race": "acid-cap" + "parent": "acid-cap" } }, { @@ -1286,7 +1286,7 @@ "name": "Clan Athlete", "desc": "You have proficiency in the Athletics skill.", "type": null, - "race": "acid-cap" + "parent": "acid-cap" } }, { @@ -1296,7 +1296,7 @@ "name": "Ability Score Increase", "desc": "Your Charisma score increases by 1.", "type": null, - "race": "favored" + "parent": "favored" } }, { @@ -1306,7 +1306,7 @@ "name": "Blessed Help", "desc": "Your intuition and connection to your allies allows you to assist and protect them. You know the spare the dying cantrip. When you reach 3rd level, you can cast the bless spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", "type": null, - "race": "favored" + "parent": "favored" } }, { @@ -1316,7 +1316,7 @@ "name": "Clan Leader", "desc": "You have proficiency in the Persuasion skill.", "type": null, - "race": "favored" + "parent": "favored" } }, { @@ -1326,7 +1326,7 @@ "name": "Restful Spores", "desc": "If you or any friendly creatures within 30 feet of you regain hit points at the end of a short rest by spending one or more Hit Dice, each of those creatures regains additional hit points equal to your proficiency bonus. Once a creature benefits from your restful spores, it can't do so again until it finishes a long rest.", "type": null, - "race": "favored" + "parent": "favored" } }, { @@ -1336,7 +1336,7 @@ "name": "Ability Score Increase", "desc": "Your Dexterity score increases by 1.", "type": null, - "race": "morel" + "parent": "morel" } }, { @@ -1346,7 +1346,7 @@ "name": "Adaptable Camouflage", "desc": "If you spend at least 1 minute in an environment with ample naturally occurring plants or fungi, such as a grassland, a forest, or an underground fungal cavern, you can adjust your natural coloration to blend in with the local plant life. If you do so, you have advantage on Dexterity (Stealth) checks for the next 24 hours while in that environment.", "type": null, - "race": "morel" + "parent": "morel" } }, { @@ -1356,7 +1356,7 @@ "name": "Clan Scout", "desc": "You have proficiency in the Stealth skill.", "type": null, - "race": "morel" + "parent": "morel" } }, { @@ -1366,7 +1366,7 @@ "name": "Ability Score Increase", "desc": "Your Constitution score increases by 2, and your Intelligence score increases by 1.", "type": null, - "race": "satarre" + "parent": "satarre" } }, { @@ -1376,7 +1376,7 @@ "name": "Speed", "desc": "Your base walking speed is 30 feet.", "type": null, - "race": "satarre" + "parent": "satarre" } }, { @@ -1386,7 +1386,7 @@ "name": "Darkvision", "desc": "Thanks to your dark planar parentage, you have superior vision in darkness. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "satarre" + "parent": "satarre" } }, { @@ -1396,7 +1396,7 @@ "name": "Age", "desc": "Satarre grow quickly, walking soon after hatching and reaching the development of a 15-year-old human by age 6. They maintain the same appearance until about 50, then begin a rapid decline. Satarre often die violently, but those who live longer survive to no more than 65 years of age.", "type": null, - "race": "satarre" + "parent": "satarre" } }, { @@ -1406,7 +1406,7 @@ "name": "Alignment", "desc": "Satarre are born with a tendency toward evil akin to that of rapacious dragons, and, when raised among other satarre or darakhul, they are usually evil. Those raised among other cultures tend toward the norm for those cultures.", "type": null, - "race": "satarre" + "parent": "satarre" } }, { @@ -1416,7 +1416,7 @@ "name": "Size", "desc": "Satarre are tall but thin, from 6 to 7 feet tall with peculiar, segmented limbs. Your size is Medium.", "type": null, - "race": "satarre" + "parent": "satarre" } }, { @@ -1426,7 +1426,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common and one of the following: Abyssal, Infernal, or Void Speech. Void Speech is a language of dark gods and ancient blasphemies, and the mere sound of its sibilant tones makes many other creatures quite uncomfortable.", "type": null, - "race": "satarre" + "parent": "satarre" } }, { @@ -1436,7 +1436,7 @@ "name": "A Friend to Death", "desc": "You have resistance to necrotic damage.", "type": null, - "race": "satarre" + "parent": "satarre" } }, { @@ -1446,7 +1446,7 @@ "name": "Keeper of Secrets", "desc": "You have proficiency in the Arcana skill, and you have advantage on Intelligence (Arcana) checks related to the planes and planar travel. In addition, you have proficiency in one of the following skills of your choice: History, Insight, and Religion.", "type": null, - "race": "satarre" + "parent": "satarre" } }, { @@ -1456,7 +1456,7 @@ "name": "Carrier of Rot", "desc": "You can use your action to inflict rot on a creature you can see within 10 feet of you. The creature must make a Constitution saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 1d4 necrotic damage on a failed save, and half as much damage on a successful one. A creature that fails the saving throw also rots for 1 minute. A rotting creature takes 1d4 necrotic damage at the end of each of its turns. The target or a creature within 5 feet of it can use an action to excise the rot with a successful Wisdom (Medicine) check. The DC for the check equals the rot's Constitution saving throw DC. The rot also disappears if the target receives magical healing. The damage for the initial action and the rotting increases to 2d4 at 6th level, 3d4 at 11th level, and 4d4 at 16th level. After you use your Carrier of Rot trait, you can't use it again until you complete a short or long rest.", "type": null, - "race": "satarre" + "parent": "satarre" } }, { @@ -1466,7 +1466,7 @@ "name": "Ability Score Increase", "desc": "Your Constitution score increases by 1.", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1476,7 +1476,7 @@ "name": "Speed", "desc": "Your base walking speed is determined by your Heritage Subrace.", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1486,7 +1486,7 @@ "name": "Darkvision", "desc": "You can see in dim light within 60 feet as though it were bright light and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1496,7 +1496,7 @@ "name": "Age", "desc": "An upper limit of darakhul age has never been discovered; most darakhul die violently.", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1506,7 +1506,7 @@ "name": "Alignment", "desc": "Your alignment does not change when you become a darakhul, but most darakhul have a strong draw toward evil.", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1516,7 +1516,7 @@ "name": "Size", "desc": "Your size is determined by your Heritage Subrace.", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1526,7 +1526,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common, Darakhul, and a language associated with your Heritage Subrace.", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1536,7 +1536,7 @@ "name": "Hunger for Flesh", "desc": "You must consume 1 pound of raw meat each day or suffer the effects of starvation. If you go 24 hours without such a meal, you gain one level of exhaustion. While you have any levels of exhaustion from this trait, you can't regain hit points or remove levels of exhaustion until you spend at least 1 hour consuming 10 pounds of raw meat.", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1546,7 +1546,7 @@ "name": "Imperfect Undeath", "desc": "You transitioned into undeath, but your transition was imperfect. Though you are a humanoid, you are susceptible to effects that target undead. You can regain hit points from spells like cure wounds, but you can also be affected by game effects that specifically target undead, such as a cleric's Turn Undead feature. Game effects that raise a creature from the dead work on you as normal, but they return you to life as a darakhul. A true resurrection or wish spell can restore you to life as a fully living member of your original race.", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1556,7 +1556,7 @@ "name": "Powerful Jaw", "desc": "Your heavy jaw is powerful enough to crush bones to powder. Your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1566,7 +1566,7 @@ "name": "Sunlight Sensitivity", "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1576,7 +1576,7 @@ "name": "Undead Resilience", "desc": "You are infused with the dark energy of undeath, which frees you from some frailties that plague most creatures. You have resistance to necrotic damage and poison damage, you are immune to disease, and you have advantage on saving throws against being charmed or poisoned. When you finish a short rest, you can reduce your exhaustion level by 1, provided you have ingested at least 1 pound of raw meat in the last 24 hours (see Hunger for Flesh).", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1586,7 +1586,7 @@ "name": "Undead Vitality", "desc": "You don't need to breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state that resembles death, remaining semiconscious, for 6 hours a day. While dormant, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1596,7 +1596,7 @@ "name": "Heritage Subrace", "desc": "You were something else before you became a darakhul. This heritage determines some of your traits. Choose one Heritage Subrace below and apply the listed traits.", "type": null, - "race": "darakhul" + "parent": "darakhul" } }, { @@ -1606,7 +1606,7 @@ "name": "Ability Score Increase", "desc": "Your Charisma score increases by 2.", "type": null, - "race": "derro-heritage" + "parent": "derro-heritage" } }, { @@ -1616,7 +1616,7 @@ "name": "Calculating Insanity", "desc": "The insanity of your race was compressed into a cold, hard brilliance when you took on your darakhul form. These flashes of brilliance come to you at unexpected moments. You know the true strike cantrip. Charisma is your spellcasting ability for it. You can cast true strike as a bonus action a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest.", "type": null, - "race": "derro-heritage" + "parent": "derro-heritage" } }, { @@ -1626,7 +1626,7 @@ "name": "Ability Score Increase", "desc": "Your Strength score increases by 2.", "type": null, - "race": "dragonborn-heritage" + "parent": "dragonborn-heritage" } }, { @@ -1636,7 +1636,7 @@ "name": "Corrupted Bite", "desc": "The inherent breath weapon of your draconic heritage is corrupted by the necrotic energy of your new darakhul form. Instead of forming a line or cone, your breath weapon now oozes out of your ghoulish maw. As a bonus action, you breathe necrotic energy onto your fangs and make one bite attack. If the attack hits, it deals extra necrotic damage equal to your level. You can't use this trait again until you finish a long rest.", "type": null, - "race": "dragonborn-heritage" + "parent": "dragonborn-heritage" } }, { @@ -1646,7 +1646,7 @@ "name": "Ability Score Increase", "desc": "Your Intelligence score increases by 2.", "type": null, - "race": "drow-heritage" + "parent": "drow-heritage" } }, { @@ -1656,7 +1656,7 @@ "name": "Poison Bite", "desc": "When you hit with your bite attack, you can release venom into your foe. If you do, your bite deals an extra 1d6 poison damage. The damage increases to 3d6 at 11th level. After you release this venom into a creature, you can't do so again until you finish a short or long rest.", "type": null, - "race": "drow-heritage" + "parent": "drow-heritage" } }, { @@ -1666,7 +1666,7 @@ "name": "Ability Score Increase", "desc": "Your Wisdon score increases by 2.", "type": null, - "race": "dwarf-heritage" + "parent": "dwarf-heritage" } }, { @@ -1676,7 +1676,7 @@ "name": "Dwarven Stoutness", "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", "type": null, - "race": "dwarf-heritage" + "parent": "dwarf-heritage" } }, { @@ -1686,7 +1686,7 @@ "name": "Ability Score Increase", "desc": "Your Dexterity score increases by 2.", "type": null, - "race": "elf-shadow-fey-heritage" + "parent": "elf-shadow-fey-heritage" } }, { @@ -1696,7 +1696,7 @@ "name": "Supernatural Senses", "desc": "Your keen elven senses are honed even more by the power of undeath and the hunger within you. You can now smell when blood is in the air. You have proficiency in the Perception skill, and you have advantage on Wisdom (Perception) checks to notice or find a creature within 30 feet of you that doesn't have all of its hit points.", "type": null, - "race": "elf-shadow-fey-heritage" + "parent": "elf-shadow-fey-heritage" } }, { @@ -1706,7 +1706,7 @@ "name": "Ability Score Increase", "desc": "Your Intelligence score increases by 2.", "type": null, - "race": "gnome-heritage" + "parent": "gnome-heritage" } }, { @@ -1716,7 +1716,7 @@ "name": "Magical Hunger", "desc": "When a creature you can see within 30 feet of you casts a spell, you can use your reaction to consume the spell's residual magic. Your consumption doesn't counter or otherwise affect the spell or the spellcaster. When you consume this residual magic, you gain temporary hit points (minimum of 1) equal to your Constitution modifier, and you can't use this trait again until you finish a short or long rest.", "type": null, - "race": "gnome-heritage" + "parent": "gnome-heritage" } }, { @@ -1726,7 +1726,7 @@ "name": "Ability Score Increase", "desc": "Your Dexterity score increases by 2.", "type": null, - "race": "halfling-heritage" + "parent": "halfling-heritage" } }, { @@ -1736,7 +1736,7 @@ "name": "Ill Fortune", "desc": "Your uncanny halfling luck has taken a dark turn since your conversion to an undead creature. When a creature rolls a 20 on the d20 for an attack roll against you, the creature must reroll the attack and use the new roll. If the second attack roll misses you, the attacking creature takes necrotic damage equal to twice your Constitution modifier (minimum of 2).", "type": null, - "race": "halfling-heritage" + "parent": "halfling-heritage" } }, { @@ -1746,7 +1746,7 @@ "name": "Ability Score Increase", "desc": "One ability score of your choice, other than Constitution, increases by 2.", "type": null, - "race": "human-half-elf-heritage" + "parent": "human-half-elf-heritage" } }, { @@ -1756,7 +1756,7 @@ "name": "Versatility", "desc": "The training and experience of your early years was not lost when you became a darakhul. You have proficiency in two skills and one tool of your choice.", "type": null, - "race": "human-half-elf-heritage" + "parent": "human-half-elf-heritage" } }, { @@ -1766,7 +1766,7 @@ "name": "Ability Score Increase", "desc": "Your Intelligence score increases by 2.", "type": null, - "race": "kobold-heritage" + "parent": "kobold-heritage" } }, { @@ -1776,7 +1776,7 @@ "name": "Devious Bite", "desc": "When you hit a creature with your bite attack and you have advantage on the attack roll, your bite deals an extra 1d4 piercing damage.", "type": null, - "race": "kobold-heritage" + "parent": "kobold-heritage" } }, { @@ -1786,7 +1786,7 @@ "name": "Ability Score Increase", "desc": "Your Dexterity score increases by 2.", "type": null, - "race": "ravenfolk-heritage" + "parent": "ravenfolk-heritage" } }, { @@ -1796,7 +1796,7 @@ "name": "Sudden Bite and Flight", "desc": "If you surprise a creature during the first round of combat, you can make a bite attack as a bonus action. If it hits, you can immediately take the Dodge action as a reaction.", "type": null, - "race": "ravenfolk-heritage" + "parent": "ravenfolk-heritage" } }, { @@ -1806,7 +1806,7 @@ "name": "Ability Score Increase", "desc": "Your Charisma score increases by 1.", "type": null, - "race": "tiefling-heritage" + "parent": "tiefling-heritage" } }, { @@ -1816,7 +1816,7 @@ "name": "Necrotic Rebuke", "desc": "When you are hit by a weapon attack, you can use a reaction to envelop the attacker in shadowy flames. The attacker takes necrotic damage equal to your Charisma modifier (minimum of 1), and it has disadvantage on attack rolls until the end of its next turn. You must finish a long rest before you can use this feature again.", "type": null, - "race": "tiefling-heritage" + "parent": "tiefling-heritage" } }, { @@ -1826,7 +1826,7 @@ "name": "Ability Score Increase", "desc": "Your Strength score increases by 2.", "type": null, - "race": "trollkin-heritage" + "parent": "trollkin-heritage" } }, { @@ -1836,7 +1836,7 @@ "name": "Regenerative Bite", "desc": "The regenerative powers of your trollkin heritage are less potent than they were in life and need a little help. As an action, you can make a bite attack against a creature that isn't undead or a construct. On a hit, you regain hit points (minimum of 1) equal to half the amount of damage dealt. Once you use this trait, you can't use it again until you finish a long rest.", "type": null, - "race": "trollkin-heritage" + "parent": "trollkin-heritage" } } ] diff --git a/data/v2/wizards-of-the-coast/srd/RaceTrait.json b/data/v2/wizards-of-the-coast/srd/RaceTrait.json index c45871bc..76370973 100644 --- a/data/v2/wizards-of-the-coast/srd/RaceTrait.json +++ b/data/v2/wizards-of-the-coast/srd/RaceTrait.json @@ -6,7 +6,7 @@ "name": "Ability Score Increase", "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", "type": null, - "race": "half-orc" + "parent": "half-orc" } }, { @@ -16,7 +16,7 @@ "name": "Speed", "desc": "Your base walking speed is 30 feet.", "type": null, - "race": "half-orc" + "parent": "half-orc" } }, { @@ -26,7 +26,7 @@ "name": "Darkvision", "desc": "Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "half-orc" + "parent": "half-orc" } }, { @@ -36,7 +36,7 @@ "name": "Age", "desc": "Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.", "type": null, - "race": "half-orc" + "parent": "half-orc" } }, { @@ -46,7 +46,7 @@ "name": "Alignment", "desc": "Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.", "type": null, - "race": "half-orc" + "parent": "half-orc" } }, { @@ -56,7 +56,7 @@ "name": "Size", "desc": "Half-orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.", "type": null, - "race": "half-orc" + "parent": "half-orc" } }, { @@ -66,7 +66,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.", "type": null, - "race": "half-orc" + "parent": "half-orc" } }, { @@ -76,7 +76,7 @@ "name": "Menacing", "desc": "You gain proficiency in the Intimidation skill.", "type": null, - "race": "half-orc" + "parent": "half-orc" } }, { @@ -86,7 +86,7 @@ "name": "Relentless Endurance", "desc": "When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.", "type": null, - "race": "half-orc" + "parent": "half-orc" } }, { @@ -96,7 +96,7 @@ "name": "Savage Attacks", "desc": "When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.", "type": null, - "race": "half-orc" + "parent": "half-orc" } }, { @@ -106,7 +106,7 @@ "name": "Ability Score Increase", "desc": "Your Intelligence score increases by 1, and your Charisma score increases by 2.", "type": null, - "race": "tiefling" + "parent": "tiefling" } }, { @@ -116,7 +116,7 @@ "name": "Speed", "desc": "Your base walking speed is 30 feet.", "type": null, - "race": "tiefling" + "parent": "tiefling" } }, { @@ -126,7 +126,7 @@ "name": "Darkvision", "desc": "Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "tiefling" + "parent": "tiefling" } }, { @@ -136,7 +136,7 @@ "name": "Age", "desc": "Tieflings mature at the same rate as humans but live a few years longer.", "type": null, - "race": "tiefling" + "parent": "tiefling" } }, { @@ -146,7 +146,7 @@ "name": "Alignment", "desc": "Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.", "type": null, - "race": "tiefling" + "parent": "tiefling" } }, { @@ -156,7 +156,7 @@ "name": "Size", "desc": "Tieflings are about the same size and build as humans. Your size is Medium.", "type": null, - "race": "tiefling" + "parent": "tiefling" } }, { @@ -166,7 +166,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common and Infernal.", "type": null, - "race": "tiefling" + "parent": "tiefling" } }, { @@ -176,7 +176,7 @@ "name": "Hellish Resistance", "desc": "You have resistance to fire damage.", "type": null, - "race": "tiefling" + "parent": "tiefling" } }, { @@ -186,7 +186,7 @@ "name": "Infernal Legacy", "desc": "You know the thaumaturgy cantrip. When you reach 3rd level, you can cast the hellish rebuke spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the darkness spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", "type": null, - "race": "tiefling" + "parent": "tiefling" } }, { @@ -196,7 +196,7 @@ "name": "Ability Score Increase", "desc": "Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.", "type": null, - "race": "half-elf" + "parent": "half-elf" } }, { @@ -206,7 +206,7 @@ "name": "Speed", "desc": "Your base walking speed is 30 feet.", "type": null, - "race": "half-elf" + "parent": "half-elf" } }, { @@ -216,7 +216,7 @@ "name": "Darkvision", "desc": "Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "half-elf" + "parent": "half-elf" } }, { @@ -226,7 +226,7 @@ "name": "Age", "desc": "Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.", "type": null, - "race": "half-elf" + "parent": "half-elf" } }, { @@ -236,7 +236,7 @@ "name": "Alignment", "desc": "Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.", "type": null, - "race": "half-elf" + "parent": "half-elf" } }, { @@ -246,7 +246,7 @@ "name": "Size", "desc": "Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.", "type": null, - "race": "half-elf" + "parent": "half-elf" } }, { @@ -256,7 +256,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common, Elvish, and one extra language of your choice.", "type": null, - "race": "half-elf" + "parent": "half-elf" } }, { @@ -266,7 +266,7 @@ "name": "Fey Ancestry", "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", "type": null, - "race": "half-elf" + "parent": "half-elf" } }, { @@ -276,7 +276,7 @@ "name": "Skill Versatility", "desc": "You gain proficiency in two skills of your choice.", "type": null, - "race": "half-elf" + "parent": "half-elf" } }, { @@ -286,7 +286,7 @@ "name": "Ability Score Increase", "desc": "Your Intelligence score increases by 2.", "type": null, - "race": "gnome" + "parent": "gnome" } }, { @@ -296,7 +296,7 @@ "name": "Speed", "desc": "Your base walking speed is 25 feet.", "type": null, - "race": "gnome" + "parent": "gnome" } }, { @@ -306,7 +306,7 @@ "name": "Darkvision", "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "gnome" + "parent": "gnome" } }, { @@ -316,7 +316,7 @@ "name": "Age", "desc": "Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.", "type": null, - "race": "gnome" + "parent": "gnome" } }, { @@ -326,7 +326,7 @@ "name": "Alignment", "desc": "Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good-hearted, and even the tricksters among them are more playful than vicious.", "type": null, - "race": "gnome" + "parent": "gnome" } }, { @@ -336,7 +336,7 @@ "name": "Size", "desc": "Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.", "type": null, - "race": "gnome" + "parent": "gnome" } }, { @@ -346,7 +346,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.", "type": null, - "race": "gnome" + "parent": "gnome" } }, { @@ -356,7 +356,7 @@ "name": "Gnome Cunning", "desc": "You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.", "type": null, - "race": "gnome" + "parent": "gnome" } }, { @@ -366,7 +366,7 @@ "name": "Ability Score Increase", "desc": "Your Constitution score increases by 1.", "type": null, - "race": "rock-gnome" + "parent": "rock-gnome" } }, { @@ -376,7 +376,7 @@ "name": "Artificer's Lore", "desc": "Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.", "type": null, - "race": "rock-gnome" + "parent": "rock-gnome" } }, { @@ -386,7 +386,7 @@ "name": "Tinker", "desc": "You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.\r\n\r\nWhen you create a device, choose one of the following options:\r\n* _Clockwork Toy._ This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.\r\n* _Fire Starter._ The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.\r\n* _Music Box._ When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.", "type": null, - "race": "rock-gnome" + "parent": "rock-gnome" } }, { @@ -396,7 +396,7 @@ "name": "Ability Score Increase", "desc": "Your Strength score increases by 2, and your Charisma score increases by 1.", "type": null, - "race": "dragonborn" + "parent": "dragonborn" } }, { @@ -406,7 +406,7 @@ "name": "Speed", "desc": "Your base walking speed is 30 feet.", "type": null, - "race": "dragonborn" + "parent": "dragonborn" } }, { @@ -416,7 +416,7 @@ "name": "Age", "desc": "Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.", "type": null, - "race": "dragonborn" + "parent": "dragonborn" } }, { @@ -426,7 +426,7 @@ "name": "Alignment", "desc": "Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.", "type": null, - "race": "dragonborn" + "parent": "dragonborn" } }, { @@ -436,7 +436,7 @@ "name": "Size", "desc": "Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.", "type": null, - "race": "dragonborn" + "parent": "dragonborn" } }, { @@ -446,7 +446,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.", "type": null, - "race": "dragonborn" + "parent": "dragonborn" } }, { @@ -456,7 +456,7 @@ "name": "Draconic Ancestry table", "desc": "| Dragon | Damage Type | Breath Weapon |\r\n|--------------|-------------------|------------------------------|\r\n| Black | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Blue | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Brass | Fire | 5 by 30 ft. line (Dex. save) |\r\n| Bronze | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Copper | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Gold | Fire | 15 ft. cone (Dex. save) |\r\n| Green | Poison | 15 ft. cone (Con. save) |\r\n| Red | Fire | 15 ft. cone (Dex. save) |\r\n| Silver | Cold | 15 ft. cone (Con. save) |\r\n| White | Cold | 15 ft. cone (Con. save) |", "type": null, - "race": "dragonborn" + "parent": "dragonborn" } }, { @@ -466,7 +466,7 @@ "name": "Draconic Ancestry", "desc": "You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.", "type": null, - "race": "dragonborn" + "parent": "dragonborn" } }, { @@ -476,7 +476,7 @@ "name": "Breath Weapon", "desc": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.\r\nWhen you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.", "type": null, - "race": "dragonborn" + "parent": "dragonborn" } }, { @@ -486,7 +486,7 @@ "name": "Damage Resistance", "desc": "You have resistance to the damage type associated with your draconic ancestry.", "type": null, - "race": "dragonborn" + "parent": "dragonborn" } }, { @@ -496,7 +496,7 @@ "name": "Ability Score Increase", "desc": "Your ability scores each increase by 1.", "type": null, - "race": "human" + "parent": "human" } }, { @@ -506,7 +506,7 @@ "name": "Speed", "desc": "Your base walking speed is 30 feet.", "type": null, - "race": "human" + "parent": "human" } }, { @@ -516,7 +516,7 @@ "name": "Age", "desc": "Humans reach adulthood in their late teens and live less than a century.", "type": null, - "race": "human" + "parent": "human" } }, { @@ -526,7 +526,7 @@ "name": "Alignment", "desc": "Humans tend toward no particular alignment. The best and the worst are found among them.", "type": null, - "race": "human" + "parent": "human" } }, { @@ -536,7 +536,7 @@ "name": "Size", "desc": "Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.", "type": null, - "race": "human" + "parent": "human" } }, { @@ -546,7 +546,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.", "type": null, - "race": "human" + "parent": "human" } }, { @@ -556,7 +556,7 @@ "name": "Ability Score Increase", "desc": "Your Dexterity score increases by 2.", "type": null, - "race": "halfling" + "parent": "halfling" } }, { @@ -566,7 +566,7 @@ "name": "Speed", "desc": "Your base walking speed is 25 feet.", "type": null, - "race": "halfling" + "parent": "halfling" } }, { @@ -576,7 +576,7 @@ "name": "Age", "desc": "A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.", "type": null, - "race": "halfling" + "parent": "halfling" } }, { @@ -586,7 +586,7 @@ "name": "Alignment", "desc": "Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.", "type": null, - "race": "halfling" + "parent": "halfling" } }, { @@ -596,7 +596,7 @@ "name": "Size", "desc": "Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.", "type": null, - "race": "halfling" + "parent": "halfling" } }, { @@ -606,7 +606,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.", "type": null, - "race": "halfling" + "parent": "halfling" } }, { @@ -616,7 +616,7 @@ "name": "Lucky", "desc": "When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.", "type": null, - "race": "halfling" + "parent": "halfling" } }, { @@ -626,7 +626,7 @@ "name": "Brave", "desc": "You have advantage on saving throws against being frightened.", "type": null, - "race": "halfling" + "parent": "halfling" } }, { @@ -636,7 +636,7 @@ "name": "Halfling Nimbleness", "desc": "You can move through the space of any creature that is of a size larger than yours.", "type": null, - "race": "halfling" + "parent": "halfling" } }, { @@ -646,7 +646,7 @@ "name": "Ability Score Increase", "desc": "Your Charisma score increases by 1.", "type": null, - "race": "lightfoot" + "parent": "lightfoot" } }, { @@ -656,7 +656,7 @@ "name": "Naturally Stealthy", "desc": "You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", "type": null, - "race": "lightfoot" + "parent": "lightfoot" } }, { @@ -666,7 +666,7 @@ "name": "Ability Score Increase", "desc": "Your Dexterity score increases by 2.", "type": null, - "race": "elf" + "parent": "elf" } }, { @@ -676,7 +676,7 @@ "name": "Speed", "desc": "Your base walking speed is 30 feet.", "type": null, - "race": "elf" + "parent": "elf" } }, { @@ -686,7 +686,7 @@ "name": "Darkvision", "desc": "Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "elf" + "parent": "elf" } }, { @@ -696,7 +696,7 @@ "name": "Age", "desc": "Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.", "type": null, - "race": "elf" + "parent": "elf" } }, { @@ -706,7 +706,7 @@ "name": "Alignment", "desc": "Elves love freedom, variety, and self-­expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others’ freedom as well as their own, and they are more often good than not.", "type": null, - "race": "elf" + "parent": "elf" } }, { @@ -716,7 +716,7 @@ "name": "Size", "desc": "Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.", "type": null, - "race": "elf" + "parent": "elf" } }, { @@ -726,7 +726,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.", "type": null, - "race": "elf" + "parent": "elf" } }, { @@ -736,7 +736,7 @@ "name": "Keen Senses", "desc": "You have proficiency in the Perception skill.", "type": null, - "race": "elf" + "parent": "elf" } }, { @@ -746,7 +746,7 @@ "name": "Fey Ancestry", "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", "type": null, - "race": "elf" + "parent": "elf" } }, { @@ -756,7 +756,7 @@ "name": "Trance", "desc": "Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is “trance.”) While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", "type": null, - "race": "elf" + "parent": "elf" } }, { @@ -766,7 +766,7 @@ "name": "Ability Score Increase", "desc": "Your Intelligence score increases by 1.", "type": null, - "race": "high-elf" + "parent": "high-elf" } }, { @@ -776,7 +776,7 @@ "name": "Elf Weapon Training", "desc": "You have proficiency with the longsword, shortsword, shortbow, and longbow.", "type": null, - "race": "high-elf" + "parent": "high-elf" } }, { @@ -786,7 +786,7 @@ "name": "Cantrip", "desc": "You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.", "type": null, - "race": "high-elf" + "parent": "high-elf" } }, { @@ -796,7 +796,7 @@ "name": "Extra Language", "desc": "You can speak, read, and write one extra language of your choice.", "type": null, - "race": "high-elf" + "parent": "high-elf" } }, { @@ -806,7 +806,7 @@ "name": "Ability Score Increase", "desc": "Your Constitution score increases by 2.", "type": null, - "race": "dwarf" + "parent": "dwarf" } }, { @@ -816,7 +816,7 @@ "name": "Speed", "desc": "Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.", "type": null, - "race": "dwarf" + "parent": "dwarf" } }, { @@ -826,7 +826,7 @@ "name": "Darkvision", "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", "type": null, - "race": "dwarf" + "parent": "dwarf" } }, { @@ -836,7 +836,7 @@ "name": "Age", "desc": "Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.", "type": null, - "race": "dwarf" + "parent": "dwarf" } }, { @@ -846,7 +846,7 @@ "name": "Alignment", "desc": "Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.", "type": null, - "race": "dwarf" + "parent": "dwarf" } }, { @@ -856,7 +856,7 @@ "name": "Size", "desc": "Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.", "type": null, - "race": "dwarf" + "parent": "dwarf" } }, { @@ -866,7 +866,7 @@ "name": "Languages", "desc": "You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.", "type": null, - "race": "dwarf" + "parent": "dwarf" } }, { @@ -876,7 +876,7 @@ "name": "Dwarven Resilience", "desc": "You have advantage on saving throws against poison, and you have resistance against poison damage.", "type": null, - "race": "dwarf" + "parent": "dwarf" } }, { @@ -886,7 +886,7 @@ "name": "Dwarven Combat Training", "desc": "You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.", "type": null, - "race": "dwarf" + "parent": "dwarf" } }, { @@ -896,7 +896,7 @@ "name": "Tool Proficiency", "desc": "You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.", "type": null, - "race": "dwarf" + "parent": "dwarf" } }, { @@ -906,7 +906,7 @@ "name": "Stonecunning", "desc": "Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.", "type": null, - "race": "dwarf" + "parent": "dwarf" } }, { @@ -916,7 +916,7 @@ "name": "Ability Score Increase", "desc": "Your Wisdom score increases by 1.", "type": null, - "race": "hill-dwarf" + "parent": "hill-dwarf" } }, { @@ -926,7 +926,7 @@ "name": "Dwarven Toughness", "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", "type": null, - "race": "hill-dwarf" + "parent": "hill-dwarf" } } ] diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index 443b6972..fcc7e69d 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -138,7 +138,7 @@ def fix_keys_to_doc_name(objs,f): for obj in objs: if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): - if f['filename']=='Feat.json': + if f['filename']=='Race.json': logger.warning("{} changing to doc_name format".format(f['path'])) pk_value = "{}_{}".format(obj['fields']['document'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) @@ -149,7 +149,7 @@ def fix_keys_to_doc_name(objs,f): related_path = "{}/{}/{}/{}/{}/".format(f['root'],f['dir'],f['schema'],f['publisher'],f['doc']) - related_filenames = ['FeatBenefit.json'] + related_filenames = ['RaceTrait.json'] for obj in objs_fixed: for related_file in related_filenames: @@ -157,7 +157,7 @@ def fix_keys_to_doc_name(objs,f): refactor_relations(related_path+related_file,"parent",obj['former_pk'], obj['pk']) obj.pop('former_pk') - if f['filename']=='Feat.json': + if f['filename']=='Race.json': with open(f['path'],'w',encoding='utf-8') as wf: json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) pass From 80bff27ccdfa42ce630029d7537d758e85437038 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 11:43:12 -0500 Subject: [PATCH 42/84] Refactoring the fields. --- data/v2/kobold-press/toh/Race.json | 782 ++-- data/v2/kobold-press/toh/RaceTrait.json | 3682 ++++++++--------- data/v2/wizards-of-the-coast/srd/Race.json | 260 +- .../wizards-of-the-coast/srd/RaceTrait.json | 1862 ++++----- 4 files changed, 3293 insertions(+), 3293 deletions(-) diff --git a/data/v2/kobold-press/toh/Race.json b/data/v2/kobold-press/toh/Race.json index d5dbeabb..c9a22fd8 100644 --- a/data/v2/kobold-press/toh/Race.json +++ b/data/v2/kobold-press/toh/Race.json @@ -1,392 +1,392 @@ [ -{ - "model": "api_v2.race", - "pk": "acid-cap", - "fields": { - "name": "Acid Cap", - "desc": "You were one of the warriors and guardians of your clan, using your strength and acid spores to protect your clanmates and your territory.", - "document": "toh", - "subrace_of": "mushroomfolk" - } -}, -{ - "model": "api_v2.race", - "pk": "alseid", - "fields": { - "name": "Alseid", - "desc": "Your alseid character has certain characteristics in common with all other alseid.", - "document": "toh", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "bhain-kwai", - "fields": { - "name": "Bhain Kwai", - "desc": "You are a minotaur adapted to life in the bogs and wetlands of the world.", - "document": "toh", - "subrace_of": "minotaur" - } -}, -{ - "model": "api_v2.race", - "pk": "boghaid", - "fields": { - "name": "Boghaid", - "desc": "You are a minotaur adapted to life in cold climates and high altitudes.", - "document": "toh", - "subrace_of": "minotaur" - } -}, -{ - "model": "api_v2.race", - "pk": "catfolk", - "fields": { - "name": "Catfolk", - "desc": "Your catfolk character has the following traits.", - "document": "toh", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "darakhul", - "fields": { - "name": "Darakhul", - "desc": "Your darakhul character has certain characteristics in common with all other darakhul.", - "document": "toh", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "delver", - "fields": { - "name": "Delver", - "desc": "You are one of the workers whose labors prop up most of drow society. You were trained from birth to follow orders and serve the collective. You learned your trade well, whether it was building or fighting or erecting the traps that protected passages to your population centers.", - "document": "toh", - "subrace_of": "drow" - } -}, -{ - "model": "api_v2.race", - "pk": "derro", - "fields": { - "name": "Derro", - "desc": "Your derro character has certain characteristics in common with all other derro.", - "document": "toh", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "derro-heritage", - "fields": { - "name": "Derro Heritage", - "desc": "Your darakhul character was a derro before transforming into a darakhul. For you, the quieting of the otherworldly voices did not bring peace and tranquility. The impulses simply became more focused, and the desire to feast on flesh overwhelmed other urges. The darkness is still there; it just has a new, clearer form.", - "document": "toh", - "subrace_of": "darakhul" - } -}, -{ - "model": "api_v2.race", - "pk": "dragonborn-heritage", - "fields": { - "name": "Dragonborn Heritage", - "desc": "Your darakhul character was a dragonborn before transforming into a darakhul. The dark power of undeath overwhelmed your elemental nature, replacing it with the foul energy and strength of the undead. Occasionally, your draconic heritage echoes a peal of raw power through your form, but it is quickly converted into necrotic waves.", - "document": "toh", - "subrace_of": "darakhul" - } -}, -{ - "model": "api_v2.race", - "pk": "drow", - "fields": { - "name": "Drow", - "desc": "Your drow character has certain characteristics in common with all other drow.", - "document": "toh", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "drow-heritage", - "fields": { - "name": "Drow Heritage", - "desc": "Your darakhul character was a drow before transforming into a darakhul. Your place within the highly regimented drow society doesn't feel that much different from your new place in the darakhul empires. But an uncertainty buzzes in your mind, and a hunger gnaws at your gut. You are now what you once hated and feared. Does it feel right, or is it something you fight against?", - "document": "toh", - "subrace_of": "darakhul" - } -}, -{ - "model": "api_v2.race", - "pk": "dwarf-chassis", - "fields": { - "name": "Dwarf Chassis", - "desc": "The original dwarven gearforged engineers valued function over form, eschewing aesthetics in favor of instilling their chassis with toughness and strength. The chassis' metal face is clearly crafted to look dwarven, but its countenance is entirely unactuated and forged of a dark metal—often brass—sometimes with a lighter-colored mane of hair and a braided beard and mustaches made of fine metal strands. The gearforged's eyes glow a dark turquoise, staring dispassionately with a seemingly blank expression. Armor and helms worn by the gearforged are often styled to appear as if they were integrated into its chassis, making it all-but-impossible to tell where the armor ends and the gearforged begins.", - "document": "toh", - "subrace_of": "gearforged" - } -}, -{ - "model": "api_v2.race", - "pk": "dwarf-heritage", - "fields": { - "name": "Dwarf Heritage", - "desc": "Your darakhul character was a dwarf before transforming into a darakhul. The hum of the earth, the tranquility of the stone and the dust, drained from you as the darakhul fever overwhelmed your once-resilient body. The stone is still there, but its touch has gone from a welcome embrace to a cold grip of death. But it's all the same to you now.", - "document": "toh", - "subrace_of": "darakhul" - } -}, -{ - "model": "api_v2.race", - "pk": "elf-shadow-fey-heritage", - "fields": { - "name": "Elf/Shadow Fey Heritage", - "desc": "Your darakhul character was an elf or shadow fey (see Midgard Heroes Handbook) before transforming into a darakhul. The deathly power coursing through you reminds you of the lithe beauty and magic of your former body. If you just use your imagination, the blood tastes like wine once did. The smell of rotting flesh has the bouquet of wildflowers. The moss beneath the surface feels like the leaves of the forest.", - "document": "toh", - "subrace_of": "darakhul" - } -}, -{ - "model": "api_v2.race", - "pk": "erina", - "fields": { - "name": "Erina", - "desc": "Your erina character has traits which complement its curiosity, sociability, and fierce nature.", - "document": "toh", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "far-touched", - "fields": { - "name": "Far-Touched", - "desc": "You grew up firmly ensconced in the mad traditions of the derro, your mind touched by the raw majesty and power of your society's otherworldly deities. Your abilities in other areas have made you more than a typical derro, of course. But no matter how well-trained and skilled you get in other magical or martial arts, the voices of your gods forever reverberate in your ears, driving you forward to do great or terrible things.", - "document": "toh", - "subrace_of": "derro" - } -}, -{ - "model": "api_v2.race", - "pk": "favored", - "fields": { - "name": "Favored", - "desc": "A few special mushroomfolk grow to become shamans, generals, and other types of leaders. Your spores invite cooperation, peace, and healing among your allies. Others look to you for guidance and succor in the harsh underground environs.", - "document": "toh", - "subrace_of": "mushroomfolk" - } -}, -{ - "model": "api_v2.race", - "pk": "fever-bit", - "fields": { - "name": "Fever-Bit", - "desc": "You were once a typical drow, then you fell victim to the ravaging claws and teeth of a darakhul. The deadly darakhul fever almost took your life, but, when you were on the verge of succumbing, you rallied and survived. You were changed, however, in ways that even the greatest healers of your people can't fathom. But now that you are immune to darakhul fever, your commanders have a job for you.", - "document": "toh", - "subrace_of": "drow" - } -}, -{ - "model": "api_v2.race", - "pk": "gearforged", - "fields": { - "name": "Gearforged", - "desc": "The range of gearforged anatomy in all its variants is remarkable, but all gearforged share some common parts.", - "document": "toh", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "gnome-chassis", - "fields": { - "name": "Gnome Chassis", - "desc": "Crafted for both exceptional functionality and aesthetic beauty, a gnome chassis' skin is clearly metallic but is meticulously colored to closely match gnomish skin tones, except at the joints, where gears and darker steel pistons are visible. Gnome chassis are almost always bald, with elaborate artistic patterns painted or etched on the face and skull in lieu of hair. Their eyes are vivid and lifelike, as is the chassis' gnomish face, which has a sculpted metal nose and articulated mouth and jaw. The gnome artisans who pioneered the first gearforged chassis saw it as an opportunity to not merely build a better body but to make it a work of art.", - "document": "toh", - "subrace_of": "gearforged" - } -}, -{ - "model": "api_v2.race", - "pk": "gnome-heritage", - "fields": { - "name": "Gnome Heritage", - "desc": "Your darakhul character was a gnome before transforming into a darakhul. The spark of magic that drove you before your transformation still burns inside of you, but now it is a constant ache instead of a source of creation and inspiration. This ache is twisted by your hunger, making you hunger for magic itself.", - "document": "toh", - "subrace_of": "darakhul" - } -}, -{ - "model": "api_v2.race", - "pk": "halfling-heritage", - "fields": { - "name": "Halfling Heritage", - "desc": "Your darakhul character was a halfling before transforming into a darakhul. Everything you loved as a halfling—food, drink, exploration, adventure— still drives you in your undead form; it is simply a more ghoulish form of those pleasures now: raw flesh instead of stew, warm blood instead of cold mead. You still want to explore the dark corners of the world, but now you seek something different.", - "document": "toh", - "subrace_of": "darakhul" - } -}, -{ - "model": "api_v2.race", - "pk": "human-chassis", - "fields": { - "name": "Human Chassis", - "desc": "As humans invented the first gearforged, it should be no surprise that the human chassis remains the one that is most frequently encountered. However, it would be a mistake to assume that simply because the original chassis is more commonplace that there is anything common about them. While dwarves, gnomes, and kobolds have made clever additions and changes to the base model, the human chassis remains extremely versatile and is battle-proven.", - "document": "toh", - "subrace_of": "gearforged" - } -}, -{ - "model": "api_v2.race", - "pk": "human-half-elf-heritage", - "fields": { - "name": "Human/Half-Elf Heritage", - "desc": "Your darakhul character was a human or half-elf before transforming into a darakhul. Where there was once light there is now darkness. Where there was once love there is now hunger. You know if the darkness and hunger become all-consuming, you are truly lost. But the powers of your new form are strangely comfortable. How much of your old self is still there, and what can this new form give you that your old one couldn't?", - "document": "toh", - "subrace_of": "darakhul" - } -}, -{ - "model": "api_v2.race", - "pk": "kobold-chassis", - "fields": { - "name": "Kobold Chassis", - "desc": "Kobolds are naturally curious tinkerers, constantly modifying their devices and tools. As such, kobolds, in spite of what many dwarf or gnome engineers might say, were the second race to master the nuances of gearforged creation after studying human gearforged. However, most of these early kobold gearforged no longer exist, as the more draconic forms (homages to the kobolds' draconic masters) proved too alien to the kobold soul gems to maintain stable, long-term connections with the bodies. Kobold engineers have since resolved that problem, and kobold gearforged can be found among many kobold communities, aiding its members and tinkering right alongside their scale-and-blood brethren.", - "document": "toh", - "subrace_of": "gearforged" - } -}, -{ - "model": "api_v2.race", - "pk": "kobold-heritage", - "fields": { - "name": "Kobold Heritage", - "desc": "Your darakhul character was a kobold before transforming into a darakhul. The dark, although it was often your home, generally held terrors that you needed to survive. Now you are the dark, and its pull on your soul is strong. You fight to keep a grip on the intellect and cunning that sustained you in your past life. Sometimes it is easy, but often the driving hunger inside you makes it hard to think as clearly as you once did.", - "document": "toh", - "subrace_of": "darakhul" - } -}, -{ - "model": "api_v2.race", - "pk": "malkin", - "fields": { - "name": "Malkin", - "desc": "It's often said curiosity killed the cat, and this applies with equal frequency to catfolk. As a malkin catfolk you are adept at finding clever solutions to escape difficult situations, even (or perhaps especially) situations of your own making. Your diminutive size also gives you an uncanny nimbleness that helps you avoid the worst consequences of your intense inquisitiveness. Most often found in densely populated regions, these catfolk are as curious about the comings and goings of other humanoids as they are about natural or magical phenomena and artifacts. While malkins are sometimes referred to as \"housecats\" by other humanoids and even by other catfolk, doing so in a malkin's hearing is a surefire way to get a face full of claws…", - "document": "toh", - "subrace_of": "catfolk" - } -}, -{ - "model": "api_v2.race", - "pk": "minotaur", - "fields": { - "name": "Minotaur", - "desc": "Your minotaur character has certain characteristics in common with all other minotaurs.", - "document": "toh", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "morel", - "fields": { - "name": "Morel", - "desc": "Your specialty for your clan was acting as a scout and a wayfinder. Your abilities to avoid problems and locate new sources of food for your clan was instrumental in their survival, and your interactions with other clans helped keep your people alive and well.", - "document": "toh", - "subrace_of": "mushroomfolk" - } -}, -{ - "model": "api_v2.race", - "pk": "mushroomfolk", - "fields": { - "name": "Mushroomfolk", - "desc": "Your mushroomfolk character has characteristics in common with all other mushroomfolk.", - "document": "toh", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "mutated", - "fields": { - "name": "Mutated", - "desc": "Most derro go through the process of indoctrination into their society and come out of it with visions and delusion, paranoia and mania. You, on the other hand, were not affected as much mentally as you were physically. The connection to the dark deities of your people made you stronger and gave you a physical manifestation of their gift that other derro look upon with envy and awe.", - "document": "toh", - "subrace_of": "derro" - } -}, -{ - "model": "api_v2.race", - "pk": "pantheran", - "fields": { - "name": "Pantheran", - "desc": "Pantheran catfolk are a wise, observant, and patient people who pride themselves on being resourceful and self-sufficient. Less social than many others of their kind, these catfolk typically dwell in small, close-knit family groups in the forests, jungles, and grasslands of the world, away from larger population centers or cities. Their family clans teach the importance of living off of and protecting the natural world, and pantherans act swiftly and mercilessly when their forest homes are threatened by outside forces. Conversely, pantherans can be the most fierce and loyal of neighbors to villages who respect nature and who take from the land and forest no more than they need. As a pantheran, you value nature and kinship, and your allies know they can count on your wisdom and, when necessary, your claws.", - "document": "toh", - "subrace_of": "catfolk" - } -}, -{ - "model": "api_v2.race", - "pk": "purified", - "fields": { - "name": "Purified", - "desc": "You were born into the caste that produces the leaders and planners, the priests and wizards, the generals and officers of drow society. Your people, it is believed, were tested by the beneficent powers you worship, and you passed those tests to become something more. Your innate magic proves your superiority over your fellows.", - "document": "toh", - "subrace_of": "drow" - } -}, -{ - "model": "api_v2.race", - "pk": "ravenfolk-heritage", - "fields": { - "name": "Ravenfolk", - "desc": "Your darakhul character was a ravenfolk (see Midgard Heroes Handbook) before transforming into a darakhul. Your new form feels different. It is more powerful and less fidgety, and your beak has become razor sharp. There is still room for trickery, of course. But with your new life comes a disconnection from the All Father. Does this loss gnaw at you like your new hunger or do you feel freed from the destiny of your people?", - "document": "toh", - "subrace_of": "darakhul" - } -}, -{ - "model": "api_v2.race", - "pk": "satarre", - "fields": { - "name": "Satarre", - "desc": "Your satarre heritage is apparent in a variety of traits you share with other satarre.", - "document": "toh", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "tiefling-heritage", - "fields": { - "name": "Tiefling Heritage", - "desc": "Your darakhul character was a tiefling before transforming into a darakhul. You are no stranger to the pull of powerful forces raging through your blood. You have traded one dark pull for another, and this one seems much stronger. Is that a good feeling, or do you miss your old one?", - "document": "toh", - "subrace_of": "darakhul" - } -}, -{ - "model": "api_v2.race", - "pk": "trollkin-heritage", - "fields": { - "name": "Trollkin Heritage", - "desc": "Your darakhul character was a trollkin (see Midgard Heroes Handbook) before transforming into a darakhul. Others saw you as a monster because of your ancestry. You became inured to the fearful looks and hurried exits of those around you. If only they could see you now. Does your new state make you seek revenge on them, or are you able to maintain your self-control despite the new urges you feel?", - "document": "toh", - "subrace_of": "darakhul" - } -}, -{ - "model": "api_v2.race", - "pk": "uncorrupted", - "fields": { - "name": "Uncorrupted", - "desc": "Someone in your past failed to do their job of driving you to the brink of insanity. It might have been a doting parent that decided to buck tradition. It might have been a touched seer who had visions of your future without the connections to the mad gods your people serve. It might have been a whole outcast community of derro rebels who refused to serve the madness of your ancestors. Whatever happened in your past, you are quite sane—or at least quite sane for a derro.", - "document": "toh", - "subrace_of": "derro" - } -} -] + { + "model": "api_v2.race", + "pk": "toh_acid-cap", + "fields": { + "name": "Acid Cap", + "desc": "You were one of the warriors and guardians of your clan, using your strength and acid spores to protect your clanmates and your territory.", + "document": "toh", + "subrace_of": "mushroomfolk" + } + }, + { + "model": "api_v2.race", + "pk": "toh_alseid", + "fields": { + "name": "Alseid", + "desc": "Your alseid character has certain characteristics in common with all other alseid.", + "document": "toh", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "toh_bhain-kwai", + "fields": { + "name": "Bhain Kwai", + "desc": "You are a minotaur adapted to life in the bogs and wetlands of the world.", + "document": "toh", + "subrace_of": "minotaur" + } + }, + { + "model": "api_v2.race", + "pk": "toh_boghaid", + "fields": { + "name": "Boghaid", + "desc": "You are a minotaur adapted to life in cold climates and high altitudes.", + "document": "toh", + "subrace_of": "minotaur" + } + }, + { + "model": "api_v2.race", + "pk": "toh_catfolk", + "fields": { + "name": "Catfolk", + "desc": "Your catfolk character has the following traits.", + "document": "toh", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "toh_darakhul", + "fields": { + "name": "Darakhul", + "desc": "Your darakhul character has certain characteristics in common with all other darakhul.", + "document": "toh", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "toh_delver", + "fields": { + "name": "Delver", + "desc": "You are one of the workers whose labors prop up most of drow society. You were trained from birth to follow orders and serve the collective. You learned your trade well, whether it was building or fighting or erecting the traps that protected passages to your population centers.", + "document": "toh", + "subrace_of": "drow" + } + }, + { + "model": "api_v2.race", + "pk": "toh_derro", + "fields": { + "name": "Derro", + "desc": "Your derro character has certain characteristics in common with all other derro.", + "document": "toh", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "toh_derro-heritage", + "fields": { + "name": "Derro Heritage", + "desc": "Your darakhul character was a derro before transforming into a darakhul. For you, the quieting of the otherworldly voices did not bring peace and tranquility. The impulses simply became more focused, and the desire to feast on flesh overwhelmed other urges. The darkness is still there; it just has a new, clearer form.", + "document": "toh", + "subrace_of": "darakhul" + } + }, + { + "model": "api_v2.race", + "pk": "toh_dragonborn-heritage", + "fields": { + "name": "Dragonborn Heritage", + "desc": "Your darakhul character was a dragonborn before transforming into a darakhul. The dark power of undeath overwhelmed your elemental nature, replacing it with the foul energy and strength of the undead. Occasionally, your draconic heritage echoes a peal of raw power through your form, but it is quickly converted into necrotic waves.", + "document": "toh", + "subrace_of": "darakhul" + } + }, + { + "model": "api_v2.race", + "pk": "toh_drow", + "fields": { + "name": "Drow", + "desc": "Your drow character has certain characteristics in common with all other drow.", + "document": "toh", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "toh_drow-heritage", + "fields": { + "name": "Drow Heritage", + "desc": "Your darakhul character was a drow before transforming into a darakhul. Your place within the highly regimented drow society doesn't feel that much different from your new place in the darakhul empires. But an uncertainty buzzes in your mind, and a hunger gnaws at your gut. You are now what you once hated and feared. Does it feel right, or is it something you fight against?", + "document": "toh", + "subrace_of": "darakhul" + } + }, + { + "model": "api_v2.race", + "pk": "toh_dwarf-chassis", + "fields": { + "name": "Dwarf Chassis", + "desc": "The original dwarven gearforged engineers valued function over form, eschewing aesthetics in favor of instilling their chassis with toughness and strength. The chassis' metal face is clearly crafted to look dwarven, but its countenance is entirely unactuated and forged of a dark metal—often brass—sometimes with a lighter-colored mane of hair and a braided beard and mustaches made of fine metal strands. The gearforged's eyes glow a dark turquoise, staring dispassionately with a seemingly blank expression. Armor and helms worn by the gearforged are often styled to appear as if they were integrated into its chassis, making it all-but-impossible to tell where the armor ends and the gearforged begins.", + "document": "toh", + "subrace_of": "gearforged" + } + }, + { + "model": "api_v2.race", + "pk": "toh_dwarf-heritage", + "fields": { + "name": "Dwarf Heritage", + "desc": "Your darakhul character was a dwarf before transforming into a darakhul. The hum of the earth, the tranquility of the stone and the dust, drained from you as the darakhul fever overwhelmed your once-resilient body. The stone is still there, but its touch has gone from a welcome embrace to a cold grip of death. But it's all the same to you now.", + "document": "toh", + "subrace_of": "darakhul" + } + }, + { + "model": "api_v2.race", + "pk": "toh_elfshadow-fey-heritage", + "fields": { + "name": "Elf/Shadow Fey Heritage", + "desc": "Your darakhul character was an elf or shadow fey (see Midgard Heroes Handbook) before transforming into a darakhul. The deathly power coursing through you reminds you of the lithe beauty and magic of your former body. If you just use your imagination, the blood tastes like wine once did. The smell of rotting flesh has the bouquet of wildflowers. The moss beneath the surface feels like the leaves of the forest.", + "document": "toh", + "subrace_of": "darakhul" + } + }, + { + "model": "api_v2.race", + "pk": "toh_erina", + "fields": { + "name": "Erina", + "desc": "Your erina character has traits which complement its curiosity, sociability, and fierce nature.", + "document": "toh", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "toh_far-touched", + "fields": { + "name": "Far-Touched", + "desc": "You grew up firmly ensconced in the mad traditions of the derro, your mind touched by the raw majesty and power of your society's otherworldly deities. Your abilities in other areas have made you more than a typical derro, of course. But no matter how well-trained and skilled you get in other magical or martial arts, the voices of your gods forever reverberate in your ears, driving you forward to do great or terrible things.", + "document": "toh", + "subrace_of": "derro" + } + }, + { + "model": "api_v2.race", + "pk": "toh_favored", + "fields": { + "name": "Favored", + "desc": "A few special mushroomfolk grow to become shamans, generals, and other types of leaders. Your spores invite cooperation, peace, and healing among your allies. Others look to you for guidance and succor in the harsh underground environs.", + "document": "toh", + "subrace_of": "mushroomfolk" + } + }, + { + "model": "api_v2.race", + "pk": "toh_fever-bit", + "fields": { + "name": "Fever-Bit", + "desc": "You were once a typical drow, then you fell victim to the ravaging claws and teeth of a darakhul. The deadly darakhul fever almost took your life, but, when you were on the verge of succumbing, you rallied and survived. You were changed, however, in ways that even the greatest healers of your people can't fathom. But now that you are immune to darakhul fever, your commanders have a job for you.", + "document": "toh", + "subrace_of": "drow" + } + }, + { + "model": "api_v2.race", + "pk": "toh_gearforged", + "fields": { + "name": "Gearforged", + "desc": "The range of gearforged anatomy in all its variants is remarkable, but all gearforged share some common parts.", + "document": "toh", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "toh_gnome-chassis", + "fields": { + "name": "Gnome Chassis", + "desc": "Crafted for both exceptional functionality and aesthetic beauty, a gnome chassis' skin is clearly metallic but is meticulously colored to closely match gnomish skin tones, except at the joints, where gears and darker steel pistons are visible. Gnome chassis are almost always bald, with elaborate artistic patterns painted or etched on the face and skull in lieu of hair. Their eyes are vivid and lifelike, as is the chassis' gnomish face, which has a sculpted metal nose and articulated mouth and jaw. The gnome artisans who pioneered the first gearforged chassis saw it as an opportunity to not merely build a better body but to make it a work of art.", + "document": "toh", + "subrace_of": "gearforged" + } + }, + { + "model": "api_v2.race", + "pk": "toh_gnome-heritage", + "fields": { + "name": "Gnome Heritage", + "desc": "Your darakhul character was a gnome before transforming into a darakhul. The spark of magic that drove you before your transformation still burns inside of you, but now it is a constant ache instead of a source of creation and inspiration. This ache is twisted by your hunger, making you hunger for magic itself.", + "document": "toh", + "subrace_of": "darakhul" + } + }, + { + "model": "api_v2.race", + "pk": "toh_halfling-heritage", + "fields": { + "name": "Halfling Heritage", + "desc": "Your darakhul character was a halfling before transforming into a darakhul. Everything you loved as a halfling—food, drink, exploration, adventure— still drives you in your undead form; it is simply a more ghoulish form of those pleasures now: raw flesh instead of stew, warm blood instead of cold mead. You still want to explore the dark corners of the world, but now you seek something different.", + "document": "toh", + "subrace_of": "darakhul" + } + }, + { + "model": "api_v2.race", + "pk": "toh_human-chassis", + "fields": { + "name": "Human Chassis", + "desc": "As humans invented the first gearforged, it should be no surprise that the human chassis remains the one that is most frequently encountered. However, it would be a mistake to assume that simply because the original chassis is more commonplace that there is anything common about them. While dwarves, gnomes, and kobolds have made clever additions and changes to the base model, the human chassis remains extremely versatile and is battle-proven.", + "document": "toh", + "subrace_of": "gearforged" + } + }, + { + "model": "api_v2.race", + "pk": "toh_humanhalf-elf-heritage", + "fields": { + "name": "Human/Half-Elf Heritage", + "desc": "Your darakhul character was a human or half-elf before transforming into a darakhul. Where there was once light there is now darkness. Where there was once love there is now hunger. You know if the darkness and hunger become all-consuming, you are truly lost. But the powers of your new form are strangely comfortable. How much of your old self is still there, and what can this new form give you that your old one couldn't?", + "document": "toh", + "subrace_of": "darakhul" + } + }, + { + "model": "api_v2.race", + "pk": "toh_kobold-chassis", + "fields": { + "name": "Kobold Chassis", + "desc": "Kobolds are naturally curious tinkerers, constantly modifying their devices and tools. As such, kobolds, in spite of what many dwarf or gnome engineers might say, were the second race to master the nuances of gearforged creation after studying human gearforged. However, most of these early kobold gearforged no longer exist, as the more draconic forms (homages to the kobolds' draconic masters) proved too alien to the kobold soul gems to maintain stable, long-term connections with the bodies. Kobold engineers have since resolved that problem, and kobold gearforged can be found among many kobold communities, aiding its members and tinkering right alongside their scale-and-blood brethren.", + "document": "toh", + "subrace_of": "gearforged" + } + }, + { + "model": "api_v2.race", + "pk": "toh_kobold-heritage", + "fields": { + "name": "Kobold Heritage", + "desc": "Your darakhul character was a kobold before transforming into a darakhul. The dark, although it was often your home, generally held terrors that you needed to survive. Now you are the dark, and its pull on your soul is strong. You fight to keep a grip on the intellect and cunning that sustained you in your past life. Sometimes it is easy, but often the driving hunger inside you makes it hard to think as clearly as you once did.", + "document": "toh", + "subrace_of": "darakhul" + } + }, + { + "model": "api_v2.race", + "pk": "toh_malkin", + "fields": { + "name": "Malkin", + "desc": "It's often said curiosity killed the cat, and this applies with equal frequency to catfolk. As a malkin catfolk you are adept at finding clever solutions to escape difficult situations, even (or perhaps especially) situations of your own making. Your diminutive size also gives you an uncanny nimbleness that helps you avoid the worst consequences of your intense inquisitiveness. Most often found in densely populated regions, these catfolk are as curious about the comings and goings of other humanoids as they are about natural or magical phenomena and artifacts. While malkins are sometimes referred to as \"housecats\" by other humanoids and even by other catfolk, doing so in a malkin's hearing is a surefire way to get a face full of claws…", + "document": "toh", + "subrace_of": "catfolk" + } + }, + { + "model": "api_v2.race", + "pk": "toh_minotaur", + "fields": { + "name": "Minotaur", + "desc": "Your minotaur character has certain characteristics in common with all other minotaurs.", + "document": "toh", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "toh_morel", + "fields": { + "name": "Morel", + "desc": "Your specialty for your clan was acting as a scout and a wayfinder. Your abilities to avoid problems and locate new sources of food for your clan was instrumental in their survival, and your interactions with other clans helped keep your people alive and well.", + "document": "toh", + "subrace_of": "mushroomfolk" + } + }, + { + "model": "api_v2.race", + "pk": "toh_mushroomfolk", + "fields": { + "name": "Mushroomfolk", + "desc": "Your mushroomfolk character has characteristics in common with all other mushroomfolk.", + "document": "toh", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "toh_mutated", + "fields": { + "name": "Mutated", + "desc": "Most derro go through the process of indoctrination into their society and come out of it with visions and delusion, paranoia and mania. You, on the other hand, were not affected as much mentally as you were physically. The connection to the dark deities of your people made you stronger and gave you a physical manifestation of their gift that other derro look upon with envy and awe.", + "document": "toh", + "subrace_of": "derro" + } + }, + { + "model": "api_v2.race", + "pk": "toh_pantheran", + "fields": { + "name": "Pantheran", + "desc": "Pantheran catfolk are a wise, observant, and patient people who pride themselves on being resourceful and self-sufficient. Less social than many others of their kind, these catfolk typically dwell in small, close-knit family groups in the forests, jungles, and grasslands of the world, away from larger population centers or cities. Their family clans teach the importance of living off of and protecting the natural world, and pantherans act swiftly and mercilessly when their forest homes are threatened by outside forces. Conversely, pantherans can be the most fierce and loyal of neighbors to villages who respect nature and who take from the land and forest no more than they need. As a pantheran, you value nature and kinship, and your allies know they can count on your wisdom and, when necessary, your claws.", + "document": "toh", + "subrace_of": "catfolk" + } + }, + { + "model": "api_v2.race", + "pk": "toh_purified", + "fields": { + "name": "Purified", + "desc": "You were born into the caste that produces the leaders and planners, the priests and wizards, the generals and officers of drow society. Your people, it is believed, were tested by the beneficent powers you worship, and you passed those tests to become something more. Your innate magic proves your superiority over your fellows.", + "document": "toh", + "subrace_of": "drow" + } + }, + { + "model": "api_v2.race", + "pk": "toh_ravenfolk", + "fields": { + "name": "Ravenfolk", + "desc": "Your darakhul character was a ravenfolk (see Midgard Heroes Handbook) before transforming into a darakhul. Your new form feels different. It is more powerful and less fidgety, and your beak has become razor sharp. There is still room for trickery, of course. But with your new life comes a disconnection from the All Father. Does this loss gnaw at you like your new hunger or do you feel freed from the destiny of your people?", + "document": "toh", + "subrace_of": "darakhul" + } + }, + { + "model": "api_v2.race", + "pk": "toh_satarre", + "fields": { + "name": "Satarre", + "desc": "Your satarre heritage is apparent in a variety of traits you share with other satarre.", + "document": "toh", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "toh_tiefling-heritage", + "fields": { + "name": "Tiefling Heritage", + "desc": "Your darakhul character was a tiefling before transforming into a darakhul. You are no stranger to the pull of powerful forces raging through your blood. You have traded one dark pull for another, and this one seems much stronger. Is that a good feeling, or do you miss your old one?", + "document": "toh", + "subrace_of": "darakhul" + } + }, + { + "model": "api_v2.race", + "pk": "toh_trollkin-heritage", + "fields": { + "name": "Trollkin Heritage", + "desc": "Your darakhul character was a trollkin (see Midgard Heroes Handbook) before transforming into a darakhul. Others saw you as a monster because of your ancestry. You became inured to the fearful looks and hurried exits of those around you. If only they could see you now. Does your new state make you seek revenge on them, or are you able to maintain your self-control despite the new urges you feel?", + "document": "toh", + "subrace_of": "darakhul" + } + }, + { + "model": "api_v2.race", + "pk": "toh_uncorrupted", + "fields": { + "name": "Uncorrupted", + "desc": "Someone in your past failed to do their job of driving you to the brink of insanity. It might have been a doting parent that decided to buck tradition. It might have been a touched seer who had visions of your future without the connections to the mad gods your people serve. It might have been a whole outcast community of derro rebels who refused to serve the madness of your ancestors. Whatever happened in your past, you are quite sane—or at least quite sane for a derro.", + "document": "toh", + "subrace_of": "derro" + } + } +] \ No newline at end of file diff --git a/data/v2/kobold-press/toh/RaceTrait.json b/data/v2/kobold-press/toh/RaceTrait.json index 456f9780..2aaf8f86 100644 --- a/data/v2/kobold-press/toh/RaceTrait.json +++ b/data/v2/kobold-press/toh/RaceTrait.json @@ -1,1842 +1,1842 @@ [ -{ - "model": "api_v2.racetrait", - "pk": 98, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2, and your Wisdom score increases by 1.", - "type": null, - "parent": "alseid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 99, - "fields": { - "name": "Speed", - "desc": "Alseid are fast for their size, with a base walking speed of 40 feet.", - "type": null, - "parent": "alseid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 100, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to the limited light beneath the forest canopy, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "alseid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 101, - "fields": { - "name": "Age", - "desc": "Alseid reach maturity by the age of 20. They can live well beyond 100 years, but it is unknown just how old they can become.", - "type": null, - "parent": "alseid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 102, - "fields": { - "name": "Alignment", - "desc": "Alseid are generally chaotic, flowing with the unpredictable whims of nature, though variations are common, particularly among those rare few who leave their people.", - "type": null, - "parent": "alseid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 103, - "fields": { - "name": "Size", - "desc": "Alseid stand over 6 feet tall and weigh around 300 pounds. Your size is Medium.", - "type": null, - "parent": "alseid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 104, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Elvish.", - "type": null, - "parent": "alseid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 105, - "fields": { - "name": "Alseid Weapon Training", - "desc": "You have proficiency with spears and shortbows.", - "type": null, - "parent": "alseid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 106, - "fields": { - "name": "Light Hooves", - "desc": "You have proficiency in the Stealth skill.", - "type": null, - "parent": "alseid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 107, - "fields": { - "name": "Quadruped", - "desc": "The mundane details of the structures of humanoids can present considerable obstacles for you. You have to squeeze when moving through trapdoors, manholes, and similar structures even when a Medium humanoid wouldn't have to squeeze. In addition, ladders, stairs, and similar structures are difficult terrain for you.", - "type": null, - "parent": "alseid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 108, - "fields": { - "name": "Woodfriend", - "desc": "When in a forest, you leave no tracks and can automatically discern true north.", - "type": null, - "parent": "alseid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 109, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "catfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 110, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "catfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 111, - "fields": { - "name": "Darkvision", - "desc": "You have a cat's keen senses, especially in the dark. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "catfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 112, - "fields": { - "name": "Age", - "desc": "Catfolk mature at the same rate as humans and can live just past a century.", - "type": null, - "parent": "catfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 113, - "fields": { - "name": "Alignment", - "desc": "Catfolk tend toward two extremes. Some are free-spirited and chaotic, letting impulse and fancy guide their decisions. Others are devoted to duty and personal honor. Typically, catfolk deem concepts such as good and evil as less important than freedom or their oaths.", - "type": null, - "parent": "catfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 114, - "fields": { - "name": "Size", - "desc": "Catfolk have a similar stature to humans but are generally leaner and more muscular. Your size is Medium", - "type": null, - "parent": "catfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 115, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common.", - "type": null, - "parent": "catfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 116, - "fields": { - "name": "Cat's Claws", - "desc": "Your sharp claws can cut with ease. Your claws are natural melee weapons, which you can use to make unarmed strikes. When you hit with a claw, your claw deals slashing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", - "type": null, - "parent": "catfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 117, - "fields": { - "name": "Hunter's Senses", - "desc": "You have proficiency in the Perception and Stealth skills.", - "type": null, - "parent": "catfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 118, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 1.", - "type": null, - "parent": "malkin" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 119, - "fields": { - "name": "Curiously Clever", - "desc": "You have proficiency in the Investigation skill.", - "type": null, - "parent": "malkin" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 120, - "fields": { - "name": "Charmed Curiosity", - "desc": "When you roll a 1 on the d20 for a Dexterity check or saving throw, you can reroll the die and must use the new roll.", - "type": null, - "parent": "malkin" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 121, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 1.", - "type": null, - "parent": "pantheran" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 122, - "fields": { - "name": "Hunter's Charge", - "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a melee weapon attack in the same turn, you can use a bonus action to attack that creature with your Cat's Claws. You can use this trait a number of times per day equal to your proficiency bonus, and you regain all expended uses when you finish a long rest.", - "type": null, - "parent": "pantheran" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 123, - "fields": { - "name": "One With the Wilds", - "desc": "You have proficiency in one of the following skills of your choice: Insight, Medicine, Nature, or Survival.", - "type": null, - "parent": "pantheran" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 124, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "derro" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 125, - "fields": { - "name": "Speed", - "desc": "Derro are fast for their size. Your base walking speed is 30 feet.", - "type": null, - "parent": "derro" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 126, - "fields": { - "name": "Superior Darkvision", - "desc": "Accustomed to life underground, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "derro" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 127, - "fields": { - "name": "Age", - "desc": "Derro reach maturity by the age of 15 and live to be around 75.", - "type": null, - "parent": "derro" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 128, - "fields": { - "name": "Alignment", - "desc": "The derro's naturally unhinged minds are nearly always chaotic, and many, but not all, are evil.", - "type": null, - "parent": "derro" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 129, - "fields": { - "name": "Size", - "desc": "Derro stand between 3 and 4 feet tall with slender limbs and wide shoulders. Your size is Small.", - "type": null, - "parent": "derro" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 130, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Dwarvish and your choice of Common or Undercommon.", - "type": null, - "parent": "derro" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 131, - "fields": { - "name": "Eldritch Resilience", - "desc": "You have advantage on Constitution saving throws against spells.", - "type": null, - "parent": "derro" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 132, - "fields": { - "name": "Sunlight Sensitivity", - "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", - "type": null, - "parent": "derro" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 133, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "parent": "far-touched" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 134, - "fields": { - "name": "Insanity", - "desc": "You have advantage on saving throws against being charmed or frightened. In addition, you can read and understand Void Speech, but you can speak only a few words of the dangerous and maddening language—the words necessary for using the spells in your Mad Fervor trait.", - "type": null, - "parent": "far-touched" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 135, - "fields": { - "name": "Mad Fervor", - "desc": "The driving force behind your insanity has blessed you with a measure of its power. You know the vicious mockery cantrip. When you reach 3rd level, you can cast the enthrall spell with this trait, and starting at 5th level, you can cast the fear spell with it. Once you cast a non-cantrip spell with this trait, you can't do so again until you finish a long rest. Charisma is your spellcasting ability for these spells. If you are using Deep Magic for 5th Edition, these spells are instead crushing curse, maddening whispers, and alone, respectively.", - "type": null, - "parent": "far-touched" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 136, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 1.", - "type": null, - "parent": "mutated" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 137, - "fields": { - "name": "Athletic Training", - "desc": "You have proficiency in the Athletics skill, and you are proficient with two martial weapons of your choice.", - "type": null, - "parent": "mutated" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 138, - "fields": { - "name": "Otherworldly Influence", - "desc": "Your close connection to the strange powers that your people worship has mutated your form. Choose one of the following:\r\n\r\n**Alien Appendage.** You have a tentacle-like growth on your body. This tentacle is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your tentacle deals bludgeoning damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. This tentacle has a reach of 5 feet and can lift a number of pounds equal to double your Strength score. The tentacle can't wield weapons or shields or perform tasks that require manual precision, such as performing the somatic components of a spell, but it can perform simple tasks, such as opening an unlocked door or container, stowing or retrieving an object, or pouring the contents out of a vial.\r\n**Tainted Blood.** Your blood is tainted by your connection with otherworldly entities. When you take piercing or slashing damage, you can use your reaction to force your blood to spray out of the wound. You and each creature within 5 feet of you take necrotic damage equal to your level. Once you use this trait, you can't use it again until you finish a short or long rest.\r\n**Tenebrous Flesh.** Your skin is rubbery and tenebrous, granting you a +1 bonus to your Armor Class.", - "type": null, - "parent": "mutated" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 139, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 1.", - "type": null, - "parent": "uncorrupted" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 140, - "fields": { - "name": "Psychic Barrier", - "desc": "Your time among your less sane brethren has inured you to their madness. You have resistance to psychic damage, and you have advantage on ability checks and saving throws made against effects that inflict insanity, such as spells like contact other plane and symbol, and effects that cause short-term, long-term, or indefinite madness.", - "type": null, - "parent": "uncorrupted" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 141, - "fields": { - "name": "Studied Insight", - "desc": "You are skilled at discerning other creature's motives and intentions. You have proficiency in the Insight skill, and, if you study a creature for at least 1 minute, you have advantage on any initiative checks in combat against that creature for the next hour.", - "type": null, - "parent": "uncorrupted" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 142, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "parent": "drow" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 143, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "drow" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 144, - "fields": { - "name": "Superior Darkvision", - "desc": "Accustomed to life in the darkest depths of the world, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "drow" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 145, - "fields": { - "name": "Age", - "desc": "Drow physically mature at the same rate as humans, but they aren't considered adults until they reach the age of 50. They typically live to be around 500.", - "type": null, - "parent": "drow" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 146, - "fields": { - "name": "Alignment", - "desc": "Drow believe in reason and rationality, which leads them to favor lawful activities. However, their current dire situation makes them more prone than their ancestors to chaotic behavior. Their vicious fight for survival makes them capable of doing great evil in the name of self-preservation, although they are not, by nature, prone to evil in other circumstances.", - "type": null, - "parent": "drow" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 147, - "fields": { - "name": "Size", - "desc": "Drow are slightly shorter and slimmer than humans. Your size is Medium.", - "type": null, - "parent": "drow" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 148, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Elvish and your choice of Common or Undercommon.", - "type": null, - "parent": "drow" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 149, - "fields": { - "name": "Fey Ancestry", - "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", - "type": null, - "parent": "drow" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 150, - "fields": { - "name": "Mind of Steel", - "desc": "You understand the complexities of minds, as well as the magic that can affect them. You have advantage on Wisdom, Intelligence, and Charisma saving throws against spells.", - "type": null, - "parent": "drow" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 151, - "fields": { - "name": "Sunlight Sensitivity", - "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", - "type": null, - "parent": "drow" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 152, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength or Dexterity score increases by 1.", - "type": null, - "parent": "delver" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 153, - "fields": { - "name": "Rapport with Insects", - "desc": "Your caste's years of working alongside the giant spiders and beetles that your people utilized in building and defending cities has left your caste with an innate affinity with the creatures. You can communicate simple ideas with insect-like beasts with an Intelligence of 3 or lower, such as spiders, beetles, wasps, scorpions, and centipedes. You can understand them in return, though this understanding is often limited to knowing the creature's current or most recent state, such as “hungry,” “content,” or “in danger.” Delver drow often keep such creatures as pets, mounts, or beasts of burden.", - "type": null, - "parent": "delver" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 154, - "fields": { - "name": "Specialized Training", - "desc": "You are proficient in one skill and one tool of your choice.", - "type": null, - "parent": "delver" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 155, - "fields": { - "name": "Martial Excellence", - "desc": "You are proficient with one martial weapon of your choice and with light armor.", - "type": null, - "parent": "delver" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 156, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 1.", - "type": null, - "parent": "fever-bit" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 157, - "fields": { - "name": "Deathly Resilience", - "desc": "Your long exposure to the life-sapping energies of darakhul fever has made you more resilient. You have resistance to necrotic damage, and advantage on death saving throws.", - "type": null, - "parent": "fever-bit" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 158, - "fields": { - "name": "Iron Constitution", - "desc": "You are immune to disease.", - "type": null, - "parent": "fever-bit" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 159, - "fields": { - "name": "Near-Death Experience", - "desc": "Your brush with death has made you more stalwart in the face of danger. You have advantage on saving throws against being frightened.", - "type": null, - "parent": "fever-bit" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 160, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "parent": "purified" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 161, - "fields": { - "name": "Innate Spellcasting", - "desc": "You know the poison spray cantrip. When you reach 3rd level, you can cast suggestion once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the tongues spell once and regain the ability to do so when you finish a long rest. Intelligence is your spellcasting ability for these spells.", - "type": null, - "parent": "purified" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 162, - "fields": { - "name": "Born Leader", - "desc": "You gain proficiency with two of the following skills of your choice: History, Insight, Performance, and Persuasion.", - "type": null, - "parent": "purified" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 163, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2, and you can choose to increase either your Wisdom or Charisma score by 1.", - "type": null, - "parent": "erina" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 164, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 25 feet.", - "type": null, - "parent": "erina" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 165, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to life in the dark burrows of your people, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "erina" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 166, - "fields": { - "name": "Age", - "desc": "Erina reach maturity around 15 years and can live up to 60 years, though some erina burrow elders have memories of events which suggest erina can live much longer.", - "type": null, - "parent": "erina" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 167, - "fields": { - "name": "Alignment", - "desc": "Erina are good-hearted and extremely social creatures who have a difficult time adapting to the laws of other species.", - "type": null, - "parent": "erina" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 168, - "fields": { - "name": "Size", - "desc": "Erina average about 3 feet tall and weigh about 50 pounds. Your size is Small.", - "type": null, - "parent": "erina" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 169, - "fields": { - "name": "Languages", - "desc": "You can speak Erina and either Common or Sylvan.", - "type": null, - "parent": "erina" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 170, - "fields": { - "name": "Hardy", - "desc": "The erina diet of snakes and venomous insects has made them hardy. You have advantage on saving throws against poison, and you have resistance against poison damage.", - "type": null, - "parent": "erina" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 171, - "fields": { - "name": "Spines", - "desc": "Erina grow needle-sharp spines in small clusters atop their heads and along their backs. While you are grappling a creature or while a creature is grappling you, the creature takes 1d4 piercing damage at the start of your turn.", - "type": null, - "parent": "erina" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 172, - "fields": { - "name": "Keen Senses", - "desc": "You have proficiency in the Perception skill.", - "type": null, - "parent": "erina" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 173, - "fields": { - "name": "Digger", - "desc": "You have a burrowing speed of 20 feet, but you can use it to move through only earth and sand, not mud, ice, or rock.", - "type": null, - "parent": "erina" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 174, - "fields": { - "name": "Ability Score Increase", - "desc": "Two different ability scores of your choice increase by 1.", - "type": null, - "parent": "gearforged" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 175, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is determined by your Race Chassis.", - "type": null, - "parent": "gearforged" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 176, - "fields": { - "name": "Age", - "desc": "The soul inhabiting a gearforged can be any age. As long as its new body is kept in good repair, there is no known limit to how long it can function.", - "type": null, - "parent": "gearforged" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 177, - "fields": { - "name": "Alignment", - "desc": "No single alignment typifies gearforged, but most gearforged maintain the alignment they had before becoming gearforged.", - "type": null, - "parent": "gearforged" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 178, - "fields": { - "name": "Size", - "desc": "Your size is determined by your Race Chassis.", - "type": null, - "parent": "gearforged" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 179, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common, Machine Speech (a whistling, clicking language that's incomprehensible to non-gearforged), and a language associated with your Race Chassis.", - "type": null, - "parent": "gearforged" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 180, - "fields": { - "name": "Construct Resilience", - "desc": "Your body is constructed, which frees you from some of the limits of fleshand- blood creatures. You have resistance to poison damage, you are immune to disease, and you have advantage on saving throws against being poisoned.", - "type": null, - "parent": "gearforged" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 181, - "fields": { - "name": "Construct Vitality", - "desc": "You don't need to eat, drink, or breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state where you resemble a statue and remain semiconscious for 6 hours a day. During this time, the magic in your soul gem and everwound springs slowly repairs the day's damage to your mechanical body. While in this dormant state, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", - "type": null, - "parent": "gearforged" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 182, - "fields": { - "name": "Living Construct", - "desc": "Your consciousness and soul reside within a soul gem to animate your mechanical body. As such, you are a living creature with some of the benefits and drawbacks of a construct. Though you can regain hit points from spells like cure wounds, you can also be affected by game effects that specifically target constructs, such as the shatter spell. As long as your soul gem remains intact, game effects that raise a creature from the dead work on you as normal, repairing the damaged pieces of your mechanical body (restoring lost sections only if the spell normally restores lost limbs) and returning you to life as a gearforged. Alternatively, if your body is destroyed but your soul gem and memory gears are intact, they can be installed into a new body with a ritual that takes one day and 10,000 gp worth of materials. If your soul gem is destroyed, only a wish spell can restore you to life, and you return as a fully living member of your original race.", - "type": null, - "parent": "gearforged" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 183, - "fields": { - "name": "Race Chassis", - "desc": "Four races are known to create unique gearforged, building mechanical bodies similar in size and shape to their people: dwarf, gnome, human, and kobold. Choose one of these forms.", - "type": null, - "parent": "gearforged" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 184, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 1.", - "type": null, - "parent": "dwarf-chassis" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 185, - "fields": { - "name": "Always Armed", - "desc": "Every dwarf knows that it's better to leave home without pants than without your weapon. Choose a weapon with which you are proficient and that doesn't have the two-handed property. You can integrate this weapon into one of your arms. While the weapon is integrated, you can't be disarmed of it by any means, though you can use an action to remove the weapon. You can draw or sheathe the weapon as normal, the weapon folding into or springing from your arm instead of a sheath. While the integrated weapon is drawn in this way, it is considered held in that arm's hand, which can't be used for other actions such as casting spells. You can integrate a new weapon or replace an integrated weapon as part of a short or long rest. You can have up to two weapons integrated at a time, one per arm. You have advantage on Dexterity (Sleight of Hand) checks to conceal an integrated weapon.", - "type": null, - "parent": "dwarf-chassis" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 186, - "fields": { - "name": "Remembered Training", - "desc": "You remember some of your combat training from your previous life. You have proficiency with two martial weapons of your choice and with light and medium armor.", - "type": null, - "parent": "dwarf-chassis" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 187, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 1.", - "type": null, - "parent": "gnome-chassis" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 188, - "fields": { - "name": "Mental Fortitude", - "desc": "When creating their first gearforged, gnome engineers put their efforts toward ensuring that the gnomish mind remained a mental fortress, though they were unable to fully replicate the gnomish mind's resilience once transferred to a soul gem. Choose Intelligence, Wisdom, or Charisma. You have advantage on saving throws made with that ability score against magic.", - "type": null, - "parent": "gnome-chassis" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 189, - "fields": { - "name": "Quick Fix", - "desc": "When you are below half your hit point maximum, you can use a bonus action to apply a quick patch up to your damaged body. You gain temporary hit points equal to your proficiency bonus. You can't use this trait again until you finish a short or long rest.", - "type": null, - "parent": "gnome-chassis" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 190, - "fields": { - "name": "Ability Score Increase", - "desc": "One ability score of your choice increases by 1.", - "type": null, - "parent": "human-chassis" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 191, - "fields": { - "name": "Adaptable Acumen", - "desc": "You gain proficiency in two skills or tools of your choice. Choose one of those skills or tools or another skill or tool proficiency you have. Your proficiency bonus is doubled for any ability check you make that uses the chosen skill or tool.", - "type": null, - "parent": "human-chassis" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 192, - "fields": { - "name": "Inspired Ingenuity", - "desc": "When you roll a 9 or lower on the d20 for an ability check, you can use a reaction to change the roll to a 10. You can't use this trait again until you finish a short or long rest.", - "type": null, - "parent": "human-chassis" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 193, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 1.", - "type": null, - "parent": "kobold-chassis" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 194, - "fields": { - "name": "Clutch Aide", - "desc": "Kobolds spend their lives alongside their clutchmates, both those hatched around the same time as them and those they choose later in life, and you retain much of this group-oriented intuition. You can take the Help action as a bonus action.", - "type": null, - "parent": "kobold-chassis" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 195, - "fields": { - "name": "Resourceful", - "desc": "If you have at least one set of tools, you can cobble together one set of makeshift tools of a different type with 1 minute of work. For example, if you have cook's utensils, you can use them to create a temporary set of thieves' tools. The makeshift tools last for 10 minutes then collapse into their component parts, returning your tools to their normal forms. While the makeshift tools exist, you can't use the set of tools you used to create the makeshift tools. At the GM's discretion, you might not be able to replicate some tools, such as an alchemist's alembic or a disguise kit's cosmetics. A creature other than you that uses the makeshift tools has disadvantage on the check.", - "type": null, - "parent": "kobold-chassis" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 196, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", - "type": null, - "parent": "minotaur" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 197, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "minotaur" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 198, - "fields": { - "name": "Darkvision", - "desc": "You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "minotaur" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 199, - "fields": { - "name": "Age", - "desc": "Minotaurs age at roughly the same rate as humans but mature 3 years earlier. Childhood ends around the age of 10 and adulthood is celebrated at 15.", - "type": null, - "parent": "minotaur" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 200, - "fields": { - "name": "Alignment", - "desc": "Minotaurs possess a wide range of alignments, just as humans do. Mixing a love for personal freedom and respect for history and tradition, the majority of minotaurs fall into neutral alignments.", - "type": null, - "parent": "minotaur" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 201, - "fields": { - "name": "Size", - "desc": "Adult males can reach a height of 7 feet, with females averaging 3 inches shorter. Your size is Medium.", - "type": null, - "parent": "minotaur" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 202, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Minotaur.", - "type": null, - "parent": "minotaur" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 203, - "fields": { - "name": "Natural Attacks", - "desc": "Your horns are sturdy and sharp. Your horns are a natural melee weapon, which you can use to make unarmed strikes. When you hit with your horns, they deal piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", - "type": null, - "parent": "minotaur" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 204, - "fields": { - "name": "Charge", - "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a horn attack in the same turn, you deal an extra 1d6 piercing damage and you can shove the target up to 5 feet as a bonus action. At 11th level, when you shove a creature with Charge, you can push it up to 10 feet instead. You can use this trait a number of times per day equal to your Constitution modifier (minimum of once), and you regain all expended uses when you finish a long rest.", - "type": null, - "parent": "minotaur" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 205, - "fields": { - "name": "Labyrinth Sense", - "desc": "You can retrace without error any path you have previously taken, with no ability check.", - "type": null, - "parent": "minotaur" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 210, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 2, and your Strength score increases by 1.", - "type": null, - "parent": "bhain-kwai" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 211, - "fields": { - "name": "Strong Back", - "desc": "Your carrying capacity is your Strength score multiplied by 20, instead of by 15.", - "type": null, - "parent": "bhain-kwai" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 212, - "fields": { - "name": "Wetland Dweller", - "desc": "You are adapted to your home terrain. Difficult terrain composed of mud or from wading through water up to waist deep doesn't cost you extra movement. You have a swimming speed of 25 feet.", - "type": null, - "parent": "bhain-kwai" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 213, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 2, and your Constitution score increases by 1.", - "type": null, - "parent": "boghaid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 214, - "fields": { - "name": "Highlander", - "desc": "You are adapted to life at high altitudes, and you suffer no ill effects or penalties from elevations above 8,000 feet.", - "type": null, - "parent": "boghaid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 215, - "fields": { - "name": "Storied Culture", - "desc": "You have proficiency in the Performance skill, and you gain proficiency with one of the following musical instruments: bagpipes, drum, horn, or shawm.", - "type": null, - "parent": "boghaid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 216, - "fields": { - "name": "Wooly", - "desc": "Your thick, wooly coat of hair keeps you warm, allowing you to function in cold weather without special clothing or gear. You have advantage on saving throws against spells and other effects that deal cold damage.", - "type": null, - "parent": "boghaid" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 217, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 2.", - "type": null, - "parent": "mushroomfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 218, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "mushroomfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 219, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to life underground, you can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "mushroomfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 220, - "fields": { - "name": "Age", - "desc": "Mushroomfolk reach maturity by the age of 5 and rarely live longer than 50 years.", - "type": null, - "parent": "mushroomfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 221, - "fields": { - "name": "Alignment", - "desc": "The limited interaction mushroomfolk have with other creatures leaves them with a fairly neutral view of the world in terms of good and evil, while their societal structure makes them more prone to law than chaos.", - "type": null, - "parent": "mushroomfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 222, - "fields": { - "name": "Size", - "desc": "A mushroomfolk's size is determined by its subrace.", - "type": null, - "parent": "mushroomfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 223, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Mushroomfolk and your choice of Common or Undercommon.", - "type": null, - "parent": "mushroomfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 224, - "fields": { - "name": "Fungoid Form", - "desc": "You are a humanoid, though the fungal nature of your body and your unique diet of decayed vegetable and animal matter marks you with some plant-like characteristics. You have advantage on saving throws against poison, and you have resistance to poison damage. In addition, you are immune to disease.", - "type": null, - "parent": "mushroomfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 225, - "fields": { - "name": "Hardy Survivor", - "desc": "Your upbringing in mushroomfolk society has taught you how to defend yourself and find food. You have proficiency in the Survival skill.", - "type": null, - "parent": "mushroomfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 226, - "fields": { - "name": "Subrace", - "desc": "Three subraces of mushroomfolk are known to wander the world: acid cap, favored, and morel. Choose one of these subraces.", - "type": null, - "parent": "mushroomfolk" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 227, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 1.", - "type": null, - "parent": "acid-cap" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 228, - "fields": { - "name": "Acid Cap Resistance", - "desc": "You have resistance to acid damage.", - "type": null, - "parent": "acid-cap" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 229, - "fields": { - "name": "Acid Spores", - "desc": "When you are hit by a melee weapon attack within 5 feet of you, you can use your reaction to emit acidic spores. If you do, the attacker takes acid damage equal to half your level (rounded up). You can use your acid spores a number of times equal to your Constitution modifier (a minimum of once). You regain any expended uses when you finish a long rest.", - "type": null, - "parent": "acid-cap" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 230, - "fields": { - "name": "Clan Athlete", - "desc": "You have proficiency in the Athletics skill.", - "type": null, - "parent": "acid-cap" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 231, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "parent": "favored" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 232, - "fields": { - "name": "Blessed Help", - "desc": "Your intuition and connection to your allies allows you to assist and protect them. You know the spare the dying cantrip. When you reach 3rd level, you can cast the bless spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", - "type": null, - "parent": "favored" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 233, - "fields": { - "name": "Clan Leader", - "desc": "You have proficiency in the Persuasion skill.", - "type": null, - "parent": "favored" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 234, - "fields": { - "name": "Restful Spores", - "desc": "If you or any friendly creatures within 30 feet of you regain hit points at the end of a short rest by spending one or more Hit Dice, each of those creatures regains additional hit points equal to your proficiency bonus. Once a creature benefits from your restful spores, it can't do so again until it finishes a long rest.", - "type": null, - "parent": "favored" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 235, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 1.", - "type": null, - "parent": "morel" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 236, - "fields": { - "name": "Adaptable Camouflage", - "desc": "If you spend at least 1 minute in an environment with ample naturally occurring plants or fungi, such as a grassland, a forest, or an underground fungal cavern, you can adjust your natural coloration to blend in with the local plant life. If you do so, you have advantage on Dexterity (Stealth) checks for the next 24 hours while in that environment.", - "type": null, - "parent": "morel" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 237, - "fields": { - "name": "Clan Scout", - "desc": "You have proficiency in the Stealth skill.", - "type": null, - "parent": "morel" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 238, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 2, and your Intelligence score increases by 1.", - "type": null, - "parent": "satarre" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 239, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "satarre" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 240, - "fields": { - "name": "Darkvision", - "desc": "Thanks to your dark planar parentage, you have superior vision in darkness. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "satarre" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 241, - "fields": { - "name": "Age", - "desc": "Satarre grow quickly, walking soon after hatching and reaching the development of a 15-year-old human by age 6. They maintain the same appearance until about 50, then begin a rapid decline. Satarre often die violently, but those who live longer survive to no more than 65 years of age.", - "type": null, - "parent": "satarre" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 242, - "fields": { - "name": "Alignment", - "desc": "Satarre are born with a tendency toward evil akin to that of rapacious dragons, and, when raised among other satarre or darakhul, they are usually evil. Those raised among other cultures tend toward the norm for those cultures.", - "type": null, - "parent": "satarre" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 243, - "fields": { - "name": "Size", - "desc": "Satarre are tall but thin, from 6 to 7 feet tall with peculiar, segmented limbs. Your size is Medium.", - "type": null, - "parent": "satarre" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 244, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and one of the following: Abyssal, Infernal, or Void Speech. Void Speech is a language of dark gods and ancient blasphemies, and the mere sound of its sibilant tones makes many other creatures quite uncomfortable.", - "type": null, - "parent": "satarre" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 245, - "fields": { - "name": "A Friend to Death", - "desc": "You have resistance to necrotic damage.", - "type": null, - "parent": "satarre" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 246, - "fields": { - "name": "Keeper of Secrets", - "desc": "You have proficiency in the Arcana skill, and you have advantage on Intelligence (Arcana) checks related to the planes and planar travel. In addition, you have proficiency in one of the following skills of your choice: History, Insight, and Religion.", - "type": null, - "parent": "satarre" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 247, - "fields": { - "name": "Carrier of Rot", - "desc": "You can use your action to inflict rot on a creature you can see within 10 feet of you. The creature must make a Constitution saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 1d4 necrotic damage on a failed save, and half as much damage on a successful one. A creature that fails the saving throw also rots for 1 minute. A rotting creature takes 1d4 necrotic damage at the end of each of its turns. The target or a creature within 5 feet of it can use an action to excise the rot with a successful Wisdom (Medicine) check. The DC for the check equals the rot's Constitution saving throw DC. The rot also disappears if the target receives magical healing. The damage for the initial action and the rotting increases to 2d4 at 6th level, 3d4 at 11th level, and 4d4 at 16th level. After you use your Carrier of Rot trait, you can't use it again until you complete a short or long rest.", - "type": null, - "parent": "satarre" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 248, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 1.", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 249, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is determined by your Heritage Subrace.", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 250, - "fields": { - "name": "Darkvision", - "desc": "You can see in dim light within 60 feet as though it were bright light and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 251, - "fields": { - "name": "Age", - "desc": "An upper limit of darakhul age has never been discovered; most darakhul die violently.", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 252, - "fields": { - "name": "Alignment", - "desc": "Your alignment does not change when you become a darakhul, but most darakhul have a strong draw toward evil.", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 253, - "fields": { - "name": "Size", - "desc": "Your size is determined by your Heritage Subrace.", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 254, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common, Darakhul, and a language associated with your Heritage Subrace.", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 255, - "fields": { - "name": "Hunger for Flesh", - "desc": "You must consume 1 pound of raw meat each day or suffer the effects of starvation. If you go 24 hours without such a meal, you gain one level of exhaustion. While you have any levels of exhaustion from this trait, you can't regain hit points or remove levels of exhaustion until you spend at least 1 hour consuming 10 pounds of raw meat.", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 256, - "fields": { - "name": "Imperfect Undeath", - "desc": "You transitioned into undeath, but your transition was imperfect. Though you are a humanoid, you are susceptible to effects that target undead. You can regain hit points from spells like cure wounds, but you can also be affected by game effects that specifically target undead, such as a cleric's Turn Undead feature. Game effects that raise a creature from the dead work on you as normal, but they return you to life as a darakhul. A true resurrection or wish spell can restore you to life as a fully living member of your original race.", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 257, - "fields": { - "name": "Powerful Jaw", - "desc": "Your heavy jaw is powerful enough to crush bones to powder. Your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 258, - "fields": { - "name": "Sunlight Sensitivity", - "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 259, - "fields": { - "name": "Undead Resilience", - "desc": "You are infused with the dark energy of undeath, which frees you from some frailties that plague most creatures. You have resistance to necrotic damage and poison damage, you are immune to disease, and you have advantage on saving throws against being charmed or poisoned. When you finish a short rest, you can reduce your exhaustion level by 1, provided you have ingested at least 1 pound of raw meat in the last 24 hours (see Hunger for Flesh).", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 260, - "fields": { - "name": "Undead Vitality", - "desc": "You don't need to breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state that resembles death, remaining semiconscious, for 6 hours a day. While dormant, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 261, - "fields": { - "name": "Heritage Subrace", - "desc": "You were something else before you became a darakhul. This heritage determines some of your traits. Choose one Heritage Subrace below and apply the listed traits.", - "type": null, - "parent": "darakhul" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 262, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 2.", - "type": null, - "parent": "derro-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 263, - "fields": { - "name": "Calculating Insanity", - "desc": "The insanity of your race was compressed into a cold, hard brilliance when you took on your darakhul form. These flashes of brilliance come to you at unexpected moments. You know the true strike cantrip. Charisma is your spellcasting ability for it. You can cast true strike as a bonus action a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest.", - "type": null, - "parent": "derro-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 264, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2.", - "type": null, - "parent": "dragonborn-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 265, - "fields": { - "name": "Corrupted Bite", - "desc": "The inherent breath weapon of your draconic heritage is corrupted by the necrotic energy of your new darakhul form. Instead of forming a line or cone, your breath weapon now oozes out of your ghoulish maw. As a bonus action, you breathe necrotic energy onto your fangs and make one bite attack. If the attack hits, it deals extra necrotic damage equal to your level. You can't use this trait again until you finish a long rest.", - "type": null, - "parent": "dragonborn-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 266, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "parent": "drow-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 267, - "fields": { - "name": "Poison Bite", - "desc": "When you hit with your bite attack, you can release venom into your foe. If you do, your bite deals an extra 1d6 poison damage. The damage increases to 3d6 at 11th level. After you release this venom into a creature, you can't do so again until you finish a short or long rest.", - "type": null, - "parent": "drow-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 268, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdon score increases by 2.", - "type": null, - "parent": "dwarf-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 269, - "fields": { - "name": "Dwarven Stoutness", - "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", - "type": null, - "parent": "dwarf-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 270, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "elf-shadow-fey-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 271, - "fields": { - "name": "Supernatural Senses", - "desc": "Your keen elven senses are honed even more by the power of undeath and the hunger within you. You can now smell when blood is in the air. You have proficiency in the Perception skill, and you have advantage on Wisdom (Perception) checks to notice or find a creature within 30 feet of you that doesn't have all of its hit points.", - "type": null, - "parent": "elf-shadow-fey-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 272, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "parent": "gnome-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 273, - "fields": { - "name": "Magical Hunger", - "desc": "When a creature you can see within 30 feet of you casts a spell, you can use your reaction to consume the spell's residual magic. Your consumption doesn't counter or otherwise affect the spell or the spellcaster. When you consume this residual magic, you gain temporary hit points (minimum of 1) equal to your Constitution modifier, and you can't use this trait again until you finish a short or long rest.", - "type": null, - "parent": "gnome-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 274, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "halfling-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 275, - "fields": { - "name": "Ill Fortune", - "desc": "Your uncanny halfling luck has taken a dark turn since your conversion to an undead creature. When a creature rolls a 20 on the d20 for an attack roll against you, the creature must reroll the attack and use the new roll. If the second attack roll misses you, the attacking creature takes necrotic damage equal to twice your Constitution modifier (minimum of 2).", - "type": null, - "parent": "halfling-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 276, - "fields": { - "name": "Ability Score Increase", - "desc": "One ability score of your choice, other than Constitution, increases by 2.", - "type": null, - "parent": "human-half-elf-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 277, - "fields": { - "name": "Versatility", - "desc": "The training and experience of your early years was not lost when you became a darakhul. You have proficiency in two skills and one tool of your choice.", - "type": null, - "parent": "human-half-elf-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 278, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "parent": "kobold-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 279, - "fields": { - "name": "Devious Bite", - "desc": "When you hit a creature with your bite attack and you have advantage on the attack roll, your bite deals an extra 1d4 piercing damage.", - "type": null, - "parent": "kobold-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 280, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "ravenfolk-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 281, - "fields": { - "name": "Sudden Bite and Flight", - "desc": "If you surprise a creature during the first round of combat, you can make a bite attack as a bonus action. If it hits, you can immediately take the Dodge action as a reaction.", - "type": null, - "parent": "ravenfolk-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 282, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "parent": "tiefling-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 283, - "fields": { - "name": "Necrotic Rebuke", - "desc": "When you are hit by a weapon attack, you can use a reaction to envelop the attacker in shadowy flames. The attacker takes necrotic damage equal to your Charisma modifier (minimum of 1), and it has disadvantage on attack rolls until the end of its next turn. You must finish a long rest before you can use this feature again.", - "type": null, - "parent": "tiefling-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 284, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2.", - "type": null, - "parent": "trollkin-heritage" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 285, - "fields": { - "name": "Regenerative Bite", - "desc": "The regenerative powers of your trollkin heritage are less potent than they were in life and need a little help. As an action, you can make a bite attack against a creature that isn't undead or a construct. On a hit, you regain hit points (minimum of 1) equal to half the amount of damage dealt. Once you use this trait, you can't use it again until you finish a long rest.", - "type": null, - "parent": "trollkin-heritage" - } -} -] + { + "model": "api_v2.racetrait", + "pk": 98, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2, and your Wisdom score increases by 1.", + "type": null, + "parent": "toh_alseid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 99, + "fields": { + "name": "Speed", + "desc": "Alseid are fast for their size, with a base walking speed of 40 feet.", + "type": null, + "parent": "toh_alseid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 100, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to the limited light beneath the forest canopy, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_alseid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 101, + "fields": { + "name": "Age", + "desc": "Alseid reach maturity by the age of 20. They can live well beyond 100 years, but it is unknown just how old they can become.", + "type": null, + "parent": "toh_alseid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 102, + "fields": { + "name": "Alignment", + "desc": "Alseid are generally chaotic, flowing with the unpredictable whims of nature, though variations are common, particularly among those rare few who leave their people.", + "type": null, + "parent": "toh_alseid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 103, + "fields": { + "name": "Size", + "desc": "Alseid stand over 6 feet tall and weigh around 300 pounds. Your size is Medium.", + "type": null, + "parent": "toh_alseid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 104, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Elvish.", + "type": null, + "parent": "toh_alseid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 105, + "fields": { + "name": "Alseid Weapon Training", + "desc": "You have proficiency with spears and shortbows.", + "type": null, + "parent": "toh_alseid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 106, + "fields": { + "name": "Light Hooves", + "desc": "You have proficiency in the Stealth skill.", + "type": null, + "parent": "toh_alseid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 107, + "fields": { + "name": "Quadruped", + "desc": "The mundane details of the structures of humanoids can present considerable obstacles for you. You have to squeeze when moving through trapdoors, manholes, and similar structures even when a Medium humanoid wouldn't have to squeeze. In addition, ladders, stairs, and similar structures are difficult terrain for you.", + "type": null, + "parent": "toh_alseid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 108, + "fields": { + "name": "Woodfriend", + "desc": "When in a forest, you leave no tracks and can automatically discern true north.", + "type": null, + "parent": "toh_alseid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 109, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "toh_catfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 110, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "toh_catfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 111, + "fields": { + "name": "Darkvision", + "desc": "You have a cat's keen senses, especially in the dark. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_catfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 112, + "fields": { + "name": "Age", + "desc": "Catfolk mature at the same rate as humans and can live just past a century.", + "type": null, + "parent": "toh_catfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 113, + "fields": { + "name": "Alignment", + "desc": "Catfolk tend toward two extremes. Some are free-spirited and chaotic, letting impulse and fancy guide their decisions. Others are devoted to duty and personal honor. Typically, catfolk deem concepts such as good and evil as less important than freedom or their oaths.", + "type": null, + "parent": "toh_catfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 114, + "fields": { + "name": "Size", + "desc": "Catfolk have a similar stature to humans but are generally leaner and more muscular. Your size is Medium", + "type": null, + "parent": "toh_catfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 115, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common.", + "type": null, + "parent": "toh_catfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 116, + "fields": { + "name": "Cat's Claws", + "desc": "Your sharp claws can cut with ease. Your claws are natural melee weapons, which you can use to make unarmed strikes. When you hit with a claw, your claw deals slashing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", + "type": null, + "parent": "toh_catfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 117, + "fields": { + "name": "Hunter's Senses", + "desc": "You have proficiency in the Perception and Stealth skills.", + "type": null, + "parent": "toh_catfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 118, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 1.", + "type": null, + "parent": "toh_malkin" + } + }, + { + "model": "api_v2.racetrait", + "pk": 119, + "fields": { + "name": "Curiously Clever", + "desc": "You have proficiency in the Investigation skill.", + "type": null, + "parent": "toh_malkin" + } + }, + { + "model": "api_v2.racetrait", + "pk": 120, + "fields": { + "name": "Charmed Curiosity", + "desc": "When you roll a 1 on the d20 for a Dexterity check or saving throw, you can reroll the die and must use the new roll.", + "type": null, + "parent": "toh_malkin" + } + }, + { + "model": "api_v2.racetrait", + "pk": 121, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 1.", + "type": null, + "parent": "toh_pantheran" + } + }, + { + "model": "api_v2.racetrait", + "pk": 122, + "fields": { + "name": "Hunter's Charge", + "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a melee weapon attack in the same turn, you can use a bonus action to attack that creature with your Cat's Claws. You can use this trait a number of times per day equal to your proficiency bonus, and you regain all expended uses when you finish a long rest.", + "type": null, + "parent": "toh_pantheran" + } + }, + { + "model": "api_v2.racetrait", + "pk": 123, + "fields": { + "name": "One With the Wilds", + "desc": "You have proficiency in one of the following skills of your choice: Insight, Medicine, Nature, or Survival.", + "type": null, + "parent": "toh_pantheran" + } + }, + { + "model": "api_v2.racetrait", + "pk": 124, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "toh_derro" + } + }, + { + "model": "api_v2.racetrait", + "pk": 125, + "fields": { + "name": "Speed", + "desc": "Derro are fast for their size. Your base walking speed is 30 feet.", + "type": null, + "parent": "toh_derro" + } + }, + { + "model": "api_v2.racetrait", + "pk": 126, + "fields": { + "name": "Superior Darkvision", + "desc": "Accustomed to life underground, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_derro" + } + }, + { + "model": "api_v2.racetrait", + "pk": 127, + "fields": { + "name": "Age", + "desc": "Derro reach maturity by the age of 15 and live to be around 75.", + "type": null, + "parent": "toh_derro" + } + }, + { + "model": "api_v2.racetrait", + "pk": 128, + "fields": { + "name": "Alignment", + "desc": "The derro's naturally unhinged minds are nearly always chaotic, and many, but not all, are evil.", + "type": null, + "parent": "toh_derro" + } + }, + { + "model": "api_v2.racetrait", + "pk": 129, + "fields": { + "name": "Size", + "desc": "Derro stand between 3 and 4 feet tall with slender limbs and wide shoulders. Your size is Small.", + "type": null, + "parent": "toh_derro" + } + }, + { + "model": "api_v2.racetrait", + "pk": 130, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Dwarvish and your choice of Common or Undercommon.", + "type": null, + "parent": "toh_derro" + } + }, + { + "model": "api_v2.racetrait", + "pk": 131, + "fields": { + "name": "Eldritch Resilience", + "desc": "You have advantage on Constitution saving throws against spells.", + "type": null, + "parent": "toh_derro" + } + }, + { + "model": "api_v2.racetrait", + "pk": 132, + "fields": { + "name": "Sunlight Sensitivity", + "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", + "type": null, + "parent": "toh_derro" + } + }, + { + "model": "api_v2.racetrait", + "pk": 133, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "parent": "toh_far-touched" + } + }, + { + "model": "api_v2.racetrait", + "pk": 134, + "fields": { + "name": "Insanity", + "desc": "You have advantage on saving throws against being charmed or frightened. In addition, you can read and understand Void Speech, but you can speak only a few words of the dangerous and maddening language—the words necessary for using the spells in your Mad Fervor trait.", + "type": null, + "parent": "toh_far-touched" + } + }, + { + "model": "api_v2.racetrait", + "pk": 135, + "fields": { + "name": "Mad Fervor", + "desc": "The driving force behind your insanity has blessed you with a measure of its power. You know the vicious mockery cantrip. When you reach 3rd level, you can cast the enthrall spell with this trait, and starting at 5th level, you can cast the fear spell with it. Once you cast a non-cantrip spell with this trait, you can't do so again until you finish a long rest. Charisma is your spellcasting ability for these spells. If you are using Deep Magic for 5th Edition, these spells are instead crushing curse, maddening whispers, and alone, respectively.", + "type": null, + "parent": "toh_far-touched" + } + }, + { + "model": "api_v2.racetrait", + "pk": 136, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 1.", + "type": null, + "parent": "toh_mutated" + } + }, + { + "model": "api_v2.racetrait", + "pk": 137, + "fields": { + "name": "Athletic Training", + "desc": "You have proficiency in the Athletics skill, and you are proficient with two martial weapons of your choice.", + "type": null, + "parent": "toh_mutated" + } + }, + { + "model": "api_v2.racetrait", + "pk": 138, + "fields": { + "name": "Otherworldly Influence", + "desc": "Your close connection to the strange powers that your people worship has mutated your form. Choose one of the following:\r\n\r\n**Alien Appendage.** You have a tentacle-like growth on your body. This tentacle is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your tentacle deals bludgeoning damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. This tentacle has a reach of 5 feet and can lift a number of pounds equal to double your Strength score. The tentacle can't wield weapons or shields or perform tasks that require manual precision, such as performing the somatic components of a spell, but it can perform simple tasks, such as opening an unlocked door or container, stowing or retrieving an object, or pouring the contents out of a vial.\r\n**Tainted Blood.** Your blood is tainted by your connection with otherworldly entities. When you take piercing or slashing damage, you can use your reaction to force your blood to spray out of the wound. You and each creature within 5 feet of you take necrotic damage equal to your level. Once you use this trait, you can't use it again until you finish a short or long rest.\r\n**Tenebrous Flesh.** Your skin is rubbery and tenebrous, granting you a +1 bonus to your Armor Class.", + "type": null, + "parent": "toh_mutated" + } + }, + { + "model": "api_v2.racetrait", + "pk": 139, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 1.", + "type": null, + "parent": "toh_uncorrupted" + } + }, + { + "model": "api_v2.racetrait", + "pk": 140, + "fields": { + "name": "Psychic Barrier", + "desc": "Your time among your less sane brethren has inured you to their madness. You have resistance to psychic damage, and you have advantage on ability checks and saving throws made against effects that inflict insanity, such as spells like contact other plane and symbol, and effects that cause short-term, long-term, or indefinite madness.", + "type": null, + "parent": "toh_uncorrupted" + } + }, + { + "model": "api_v2.racetrait", + "pk": 141, + "fields": { + "name": "Studied Insight", + "desc": "You are skilled at discerning other creature's motives and intentions. You have proficiency in the Insight skill, and, if you study a creature for at least 1 minute, you have advantage on any initiative checks in combat against that creature for the next hour.", + "type": null, + "parent": "toh_uncorrupted" + } + }, + { + "model": "api_v2.racetrait", + "pk": 142, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "parent": "toh_drow" + } + }, + { + "model": "api_v2.racetrait", + "pk": 143, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "toh_drow" + } + }, + { + "model": "api_v2.racetrait", + "pk": 144, + "fields": { + "name": "Superior Darkvision", + "desc": "Accustomed to life in the darkest depths of the world, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_drow" + } + }, + { + "model": "api_v2.racetrait", + "pk": 145, + "fields": { + "name": "Age", + "desc": "Drow physically mature at the same rate as humans, but they aren't considered adults until they reach the age of 50. They typically live to be around 500.", + "type": null, + "parent": "toh_drow" + } + }, + { + "model": "api_v2.racetrait", + "pk": 146, + "fields": { + "name": "Alignment", + "desc": "Drow believe in reason and rationality, which leads them to favor lawful activities. However, their current dire situation makes them more prone than their ancestors to chaotic behavior. Their vicious fight for survival makes them capable of doing great evil in the name of self-preservation, although they are not, by nature, prone to evil in other circumstances.", + "type": null, + "parent": "toh_drow" + } + }, + { + "model": "api_v2.racetrait", + "pk": 147, + "fields": { + "name": "Size", + "desc": "Drow are slightly shorter and slimmer than humans. Your size is Medium.", + "type": null, + "parent": "toh_drow" + } + }, + { + "model": "api_v2.racetrait", + "pk": 148, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Elvish and your choice of Common or Undercommon.", + "type": null, + "parent": "toh_drow" + } + }, + { + "model": "api_v2.racetrait", + "pk": 149, + "fields": { + "name": "Fey Ancestry", + "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", + "type": null, + "parent": "toh_drow" + } + }, + { + "model": "api_v2.racetrait", + "pk": 150, + "fields": { + "name": "Mind of Steel", + "desc": "You understand the complexities of minds, as well as the magic that can affect them. You have advantage on Wisdom, Intelligence, and Charisma saving throws against spells.", + "type": null, + "parent": "toh_drow" + } + }, + { + "model": "api_v2.racetrait", + "pk": 151, + "fields": { + "name": "Sunlight Sensitivity", + "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", + "type": null, + "parent": "toh_drow" + } + }, + { + "model": "api_v2.racetrait", + "pk": 152, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength or Dexterity score increases by 1.", + "type": null, + "parent": "toh_delver" + } + }, + { + "model": "api_v2.racetrait", + "pk": 153, + "fields": { + "name": "Rapport with Insects", + "desc": "Your caste's years of working alongside the giant spiders and beetles that your people utilized in building and defending cities has left your caste with an innate affinity with the creatures. You can communicate simple ideas with insect-like beasts with an Intelligence of 3 or lower, such as spiders, beetles, wasps, scorpions, and centipedes. You can understand them in return, though this understanding is often limited to knowing the creature's current or most recent state, such as “hungry,” “content,” or “in danger.” Delver drow often keep such creatures as pets, mounts, or beasts of burden.", + "type": null, + "parent": "toh_delver" + } + }, + { + "model": "api_v2.racetrait", + "pk": 154, + "fields": { + "name": "Specialized Training", + "desc": "You are proficient in one skill and one tool of your choice.", + "type": null, + "parent": "toh_delver" + } + }, + { + "model": "api_v2.racetrait", + "pk": 155, + "fields": { + "name": "Martial Excellence", + "desc": "You are proficient with one martial weapon of your choice and with light armor.", + "type": null, + "parent": "toh_delver" + } + }, + { + "model": "api_v2.racetrait", + "pk": 156, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 1.", + "type": null, + "parent": "toh_fever-bit" + } + }, + { + "model": "api_v2.racetrait", + "pk": 157, + "fields": { + "name": "Deathly Resilience", + "desc": "Your long exposure to the life-sapping energies of darakhul fever has made you more resilient. You have resistance to necrotic damage, and advantage on death saving throws.", + "type": null, + "parent": "toh_fever-bit" + } + }, + { + "model": "api_v2.racetrait", + "pk": 158, + "fields": { + "name": "Iron Constitution", + "desc": "You are immune to disease.", + "type": null, + "parent": "toh_fever-bit" + } + }, + { + "model": "api_v2.racetrait", + "pk": 159, + "fields": { + "name": "Near-Death Experience", + "desc": "Your brush with death has made you more stalwart in the face of danger. You have advantage on saving throws against being frightened.", + "type": null, + "parent": "toh_fever-bit" + } + }, + { + "model": "api_v2.racetrait", + "pk": 160, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "parent": "toh_purified" + } + }, + { + "model": "api_v2.racetrait", + "pk": 161, + "fields": { + "name": "Innate Spellcasting", + "desc": "You know the poison spray cantrip. When you reach 3rd level, you can cast suggestion once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the tongues spell once and regain the ability to do so when you finish a long rest. Intelligence is your spellcasting ability for these spells.", + "type": null, + "parent": "toh_purified" + } + }, + { + "model": "api_v2.racetrait", + "pk": 162, + "fields": { + "name": "Born Leader", + "desc": "You gain proficiency with two of the following skills of your choice: History, Insight, Performance, and Persuasion.", + "type": null, + "parent": "toh_purified" + } + }, + { + "model": "api_v2.racetrait", + "pk": 163, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2, and you can choose to increase either your Wisdom or Charisma score by 1.", + "type": null, + "parent": "toh_erina" + } + }, + { + "model": "api_v2.racetrait", + "pk": 164, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 25 feet.", + "type": null, + "parent": "toh_erina" + } + }, + { + "model": "api_v2.racetrait", + "pk": 165, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to life in the dark burrows of your people, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_erina" + } + }, + { + "model": "api_v2.racetrait", + "pk": 166, + "fields": { + "name": "Age", + "desc": "Erina reach maturity around 15 years and can live up to 60 years, though some erina burrow elders have memories of events which suggest erina can live much longer.", + "type": null, + "parent": "toh_erina" + } + }, + { + "model": "api_v2.racetrait", + "pk": 167, + "fields": { + "name": "Alignment", + "desc": "Erina are good-hearted and extremely social creatures who have a difficult time adapting to the laws of other species.", + "type": null, + "parent": "toh_erina" + } + }, + { + "model": "api_v2.racetrait", + "pk": 168, + "fields": { + "name": "Size", + "desc": "Erina average about 3 feet tall and weigh about 50 pounds. Your size is Small.", + "type": null, + "parent": "toh_erina" + } + }, + { + "model": "api_v2.racetrait", + "pk": 169, + "fields": { + "name": "Languages", + "desc": "You can speak Erina and either Common or Sylvan.", + "type": null, + "parent": "toh_erina" + } + }, + { + "model": "api_v2.racetrait", + "pk": 170, + "fields": { + "name": "Hardy", + "desc": "The erina diet of snakes and venomous insects has made them hardy. You have advantage on saving throws against poison, and you have resistance against poison damage.", + "type": null, + "parent": "toh_erina" + } + }, + { + "model": "api_v2.racetrait", + "pk": 171, + "fields": { + "name": "Spines", + "desc": "Erina grow needle-sharp spines in small clusters atop their heads and along their backs. While you are grappling a creature or while a creature is grappling you, the creature takes 1d4 piercing damage at the start of your turn.", + "type": null, + "parent": "toh_erina" + } + }, + { + "model": "api_v2.racetrait", + "pk": 172, + "fields": { + "name": "Keen Senses", + "desc": "You have proficiency in the Perception skill.", + "type": null, + "parent": "toh_erina" + } + }, + { + "model": "api_v2.racetrait", + "pk": 173, + "fields": { + "name": "Digger", + "desc": "You have a burrowing speed of 20 feet, but you can use it to move through only earth and sand, not mud, ice, or rock.", + "type": null, + "parent": "toh_erina" + } + }, + { + "model": "api_v2.racetrait", + "pk": 174, + "fields": { + "name": "Ability Score Increase", + "desc": "Two different ability scores of your choice increase by 1.", + "type": null, + "parent": "toh_gearforged" + } + }, + { + "model": "api_v2.racetrait", + "pk": 175, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is determined by your Race Chassis.", + "type": null, + "parent": "toh_gearforged" + } + }, + { + "model": "api_v2.racetrait", + "pk": 176, + "fields": { + "name": "Age", + "desc": "The soul inhabiting a gearforged can be any age. As long as its new body is kept in good repair, there is no known limit to how long it can function.", + "type": null, + "parent": "toh_gearforged" + } + }, + { + "model": "api_v2.racetrait", + "pk": 177, + "fields": { + "name": "Alignment", + "desc": "No single alignment typifies gearforged, but most gearforged maintain the alignment they had before becoming gearforged.", + "type": null, + "parent": "toh_gearforged" + } + }, + { + "model": "api_v2.racetrait", + "pk": 178, + "fields": { + "name": "Size", + "desc": "Your size is determined by your Race Chassis.", + "type": null, + "parent": "toh_gearforged" + } + }, + { + "model": "api_v2.racetrait", + "pk": 179, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common, Machine Speech (a whistling, clicking language that's incomprehensible to non-gearforged), and a language associated with your Race Chassis.", + "type": null, + "parent": "toh_gearforged" + } + }, + { + "model": "api_v2.racetrait", + "pk": 180, + "fields": { + "name": "Construct Resilience", + "desc": "Your body is constructed, which frees you from some of the limits of fleshand- blood creatures. You have resistance to poison damage, you are immune to disease, and you have advantage on saving throws against being poisoned.", + "type": null, + "parent": "toh_gearforged" + } + }, + { + "model": "api_v2.racetrait", + "pk": 181, + "fields": { + "name": "Construct Vitality", + "desc": "You don't need to eat, drink, or breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state where you resemble a statue and remain semiconscious for 6 hours a day. During this time, the magic in your soul gem and everwound springs slowly repairs the day's damage to your mechanical body. While in this dormant state, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", + "type": null, + "parent": "toh_gearforged" + } + }, + { + "model": "api_v2.racetrait", + "pk": 182, + "fields": { + "name": "Living Construct", + "desc": "Your consciousness and soul reside within a soul gem to animate your mechanical body. As such, you are a living creature with some of the benefits and drawbacks of a construct. Though you can regain hit points from spells like cure wounds, you can also be affected by game effects that specifically target constructs, such as the shatter spell. As long as your soul gem remains intact, game effects that raise a creature from the dead work on you as normal, repairing the damaged pieces of your mechanical body (restoring lost sections only if the spell normally restores lost limbs) and returning you to life as a gearforged. Alternatively, if your body is destroyed but your soul gem and memory gears are intact, they can be installed into a new body with a ritual that takes one day and 10,000 gp worth of materials. If your soul gem is destroyed, only a wish spell can restore you to life, and you return as a fully living member of your original race.", + "type": null, + "parent": "toh_gearforged" + } + }, + { + "model": "api_v2.racetrait", + "pk": 183, + "fields": { + "name": "Race Chassis", + "desc": "Four races are known to create unique gearforged, building mechanical bodies similar in size and shape to their people: dwarf, gnome, human, and kobold. Choose one of these forms.", + "type": null, + "parent": "toh_gearforged" + } + }, + { + "model": "api_v2.racetrait", + "pk": 184, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 1.", + "type": null, + "parent": "toh_dwarf-chassis" + } + }, + { + "model": "api_v2.racetrait", + "pk": 185, + "fields": { + "name": "Always Armed", + "desc": "Every dwarf knows that it's better to leave home without pants than without your weapon. Choose a weapon with which you are proficient and that doesn't have the two-handed property. You can integrate this weapon into one of your arms. While the weapon is integrated, you can't be disarmed of it by any means, though you can use an action to remove the weapon. You can draw or sheathe the weapon as normal, the weapon folding into or springing from your arm instead of a sheath. While the integrated weapon is drawn in this way, it is considered held in that arm's hand, which can't be used for other actions such as casting spells. You can integrate a new weapon or replace an integrated weapon as part of a short or long rest. You can have up to two weapons integrated at a time, one per arm. You have advantage on Dexterity (Sleight of Hand) checks to conceal an integrated weapon.", + "type": null, + "parent": "toh_dwarf-chassis" + } + }, + { + "model": "api_v2.racetrait", + "pk": 186, + "fields": { + "name": "Remembered Training", + "desc": "You remember some of your combat training from your previous life. You have proficiency with two martial weapons of your choice and with light and medium armor.", + "type": null, + "parent": "toh_dwarf-chassis" + } + }, + { + "model": "api_v2.racetrait", + "pk": 187, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 1.", + "type": null, + "parent": "toh_gnome-chassis" + } + }, + { + "model": "api_v2.racetrait", + "pk": 188, + "fields": { + "name": "Mental Fortitude", + "desc": "When creating their first gearforged, gnome engineers put their efforts toward ensuring that the gnomish mind remained a mental fortress, though they were unable to fully replicate the gnomish mind's resilience once transferred to a soul gem. Choose Intelligence, Wisdom, or Charisma. You have advantage on saving throws made with that ability score against magic.", + "type": null, + "parent": "toh_gnome-chassis" + } + }, + { + "model": "api_v2.racetrait", + "pk": 189, + "fields": { + "name": "Quick Fix", + "desc": "When you are below half your hit point maximum, you can use a bonus action to apply a quick patch up to your damaged body. You gain temporary hit points equal to your proficiency bonus. You can't use this trait again until you finish a short or long rest.", + "type": null, + "parent": "toh_gnome-chassis" + } + }, + { + "model": "api_v2.racetrait", + "pk": 190, + "fields": { + "name": "Ability Score Increase", + "desc": "One ability score of your choice increases by 1.", + "type": null, + "parent": "toh_human-chassis" + } + }, + { + "model": "api_v2.racetrait", + "pk": 191, + "fields": { + "name": "Adaptable Acumen", + "desc": "You gain proficiency in two skills or tools of your choice. Choose one of those skills or tools or another skill or tool proficiency you have. Your proficiency bonus is doubled for any ability check you make that uses the chosen skill or tool.", + "type": null, + "parent": "toh_human-chassis" + } + }, + { + "model": "api_v2.racetrait", + "pk": 192, + "fields": { + "name": "Inspired Ingenuity", + "desc": "When you roll a 9 or lower on the d20 for an ability check, you can use a reaction to change the roll to a 10. You can't use this trait again until you finish a short or long rest.", + "type": null, + "parent": "toh_human-chassis" + } + }, + { + "model": "api_v2.racetrait", + "pk": 193, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 1.", + "type": null, + "parent": "toh_kobold-chassis" + } + }, + { + "model": "api_v2.racetrait", + "pk": 194, + "fields": { + "name": "Clutch Aide", + "desc": "Kobolds spend their lives alongside their clutchmates, both those hatched around the same time as them and those they choose later in life, and you retain much of this group-oriented intuition. You can take the Help action as a bonus action.", + "type": null, + "parent": "toh_kobold-chassis" + } + }, + { + "model": "api_v2.racetrait", + "pk": 195, + "fields": { + "name": "Resourceful", + "desc": "If you have at least one set of tools, you can cobble together one set of makeshift tools of a different type with 1 minute of work. For example, if you have cook's utensils, you can use them to create a temporary set of thieves' tools. The makeshift tools last for 10 minutes then collapse into their component parts, returning your tools to their normal forms. While the makeshift tools exist, you can't use the set of tools you used to create the makeshift tools. At the GM's discretion, you might not be able to replicate some tools, such as an alchemist's alembic or a disguise kit's cosmetics. A creature other than you that uses the makeshift tools has disadvantage on the check.", + "type": null, + "parent": "toh_kobold-chassis" + } + }, + { + "model": "api_v2.racetrait", + "pk": 196, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", + "type": null, + "parent": "toh_minotaur" + } + }, + { + "model": "api_v2.racetrait", + "pk": 197, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "toh_minotaur" + } + }, + { + "model": "api_v2.racetrait", + "pk": 198, + "fields": { + "name": "Darkvision", + "desc": "You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_minotaur" + } + }, + { + "model": "api_v2.racetrait", + "pk": 199, + "fields": { + "name": "Age", + "desc": "Minotaurs age at roughly the same rate as humans but mature 3 years earlier. Childhood ends around the age of 10 and adulthood is celebrated at 15.", + "type": null, + "parent": "toh_minotaur" + } + }, + { + "model": "api_v2.racetrait", + "pk": 200, + "fields": { + "name": "Alignment", + "desc": "Minotaurs possess a wide range of alignments, just as humans do. Mixing a love for personal freedom and respect for history and tradition, the majority of minotaurs fall into neutral alignments.", + "type": null, + "parent": "toh_minotaur" + } + }, + { + "model": "api_v2.racetrait", + "pk": 201, + "fields": { + "name": "Size", + "desc": "Adult males can reach a height of 7 feet, with females averaging 3 inches shorter. Your size is Medium.", + "type": null, + "parent": "toh_minotaur" + } + }, + { + "model": "api_v2.racetrait", + "pk": 202, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Minotaur.", + "type": null, + "parent": "toh_minotaur" + } + }, + { + "model": "api_v2.racetrait", + "pk": 203, + "fields": { + "name": "Natural Attacks", + "desc": "Your horns are sturdy and sharp. Your horns are a natural melee weapon, which you can use to make unarmed strikes. When you hit with your horns, they deal piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", + "type": null, + "parent": "toh_minotaur" + } + }, + { + "model": "api_v2.racetrait", + "pk": 204, + "fields": { + "name": "Charge", + "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a horn attack in the same turn, you deal an extra 1d6 piercing damage and you can shove the target up to 5 feet as a bonus action. At 11th level, when you shove a creature with Charge, you can push it up to 10 feet instead. You can use this trait a number of times per day equal to your Constitution modifier (minimum of once), and you regain all expended uses when you finish a long rest.", + "type": null, + "parent": "toh_minotaur" + } + }, + { + "model": "api_v2.racetrait", + "pk": 205, + "fields": { + "name": "Labyrinth Sense", + "desc": "You can retrace without error any path you have previously taken, with no ability check.", + "type": null, + "parent": "toh_minotaur" + } + }, + { + "model": "api_v2.racetrait", + "pk": 210, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 2, and your Strength score increases by 1.", + "type": null, + "parent": "toh_bhain-kwai" + } + }, + { + "model": "api_v2.racetrait", + "pk": 211, + "fields": { + "name": "Strong Back", + "desc": "Your carrying capacity is your Strength score multiplied by 20, instead of by 15.", + "type": null, + "parent": "toh_bhain-kwai" + } + }, + { + "model": "api_v2.racetrait", + "pk": 212, + "fields": { + "name": "Wetland Dweller", + "desc": "You are adapted to your home terrain. Difficult terrain composed of mud or from wading through water up to waist deep doesn't cost you extra movement. You have a swimming speed of 25 feet.", + "type": null, + "parent": "toh_bhain-kwai" + } + }, + { + "model": "api_v2.racetrait", + "pk": 213, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 2, and your Constitution score increases by 1.", + "type": null, + "parent": "toh_boghaid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 214, + "fields": { + "name": "Highlander", + "desc": "You are adapted to life at high altitudes, and you suffer no ill effects or penalties from elevations above 8,000 feet.", + "type": null, + "parent": "toh_boghaid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 215, + "fields": { + "name": "Storied Culture", + "desc": "You have proficiency in the Performance skill, and you gain proficiency with one of the following musical instruments: bagpipes, drum, horn, or shawm.", + "type": null, + "parent": "toh_boghaid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 216, + "fields": { + "name": "Wooly", + "desc": "Your thick, wooly coat of hair keeps you warm, allowing you to function in cold weather without special clothing or gear. You have advantage on saving throws against spells and other effects that deal cold damage.", + "type": null, + "parent": "toh_boghaid" + } + }, + { + "model": "api_v2.racetrait", + "pk": 217, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 2.", + "type": null, + "parent": "toh_mushroomfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 218, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "toh_mushroomfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 219, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to life underground, you can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_mushroomfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 220, + "fields": { + "name": "Age", + "desc": "Mushroomfolk reach maturity by the age of 5 and rarely live longer than 50 years.", + "type": null, + "parent": "toh_mushroomfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 221, + "fields": { + "name": "Alignment", + "desc": "The limited interaction mushroomfolk have with other creatures leaves them with a fairly neutral view of the world in terms of good and evil, while their societal structure makes them more prone to law than chaos.", + "type": null, + "parent": "toh_mushroomfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 222, + "fields": { + "name": "Size", + "desc": "A mushroomfolk's size is determined by its subrace.", + "type": null, + "parent": "toh_mushroomfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 223, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Mushroomfolk and your choice of Common or Undercommon.", + "type": null, + "parent": "toh_mushroomfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 224, + "fields": { + "name": "Fungoid Form", + "desc": "You are a humanoid, though the fungal nature of your body and your unique diet of decayed vegetable and animal matter marks you with some plant-like characteristics. You have advantage on saving throws against poison, and you have resistance to poison damage. In addition, you are immune to disease.", + "type": null, + "parent": "toh_mushroomfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 225, + "fields": { + "name": "Hardy Survivor", + "desc": "Your upbringing in mushroomfolk society has taught you how to defend yourself and find food. You have proficiency in the Survival skill.", + "type": null, + "parent": "toh_mushroomfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 226, + "fields": { + "name": "Subrace", + "desc": "Three subraces of mushroomfolk are known to wander the world: acid cap, favored, and morel. Choose one of these subraces.", + "type": null, + "parent": "toh_mushroomfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 227, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 1.", + "type": null, + "parent": "toh_acid-cap" + } + }, + { + "model": "api_v2.racetrait", + "pk": 228, + "fields": { + "name": "Acid Cap Resistance", + "desc": "You have resistance to acid damage.", + "type": null, + "parent": "toh_acid-cap" + } + }, + { + "model": "api_v2.racetrait", + "pk": 229, + "fields": { + "name": "Acid Spores", + "desc": "When you are hit by a melee weapon attack within 5 feet of you, you can use your reaction to emit acidic spores. If you do, the attacker takes acid damage equal to half your level (rounded up). You can use your acid spores a number of times equal to your Constitution modifier (a minimum of once). You regain any expended uses when you finish a long rest.", + "type": null, + "parent": "toh_acid-cap" + } + }, + { + "model": "api_v2.racetrait", + "pk": 230, + "fields": { + "name": "Clan Athlete", + "desc": "You have proficiency in the Athletics skill.", + "type": null, + "parent": "toh_acid-cap" + } + }, + { + "model": "api_v2.racetrait", + "pk": 231, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "parent": "toh_favored" + } + }, + { + "model": "api_v2.racetrait", + "pk": 232, + "fields": { + "name": "Blessed Help", + "desc": "Your intuition and connection to your allies allows you to assist and protect them. You know the spare the dying cantrip. When you reach 3rd level, you can cast the bless spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", + "type": null, + "parent": "toh_favored" + } + }, + { + "model": "api_v2.racetrait", + "pk": 233, + "fields": { + "name": "Clan Leader", + "desc": "You have proficiency in the Persuasion skill.", + "type": null, + "parent": "toh_favored" + } + }, + { + "model": "api_v2.racetrait", + "pk": 234, + "fields": { + "name": "Restful Spores", + "desc": "If you or any friendly creatures within 30 feet of you regain hit points at the end of a short rest by spending one or more Hit Dice, each of those creatures regains additional hit points equal to your proficiency bonus. Once a creature benefits from your restful spores, it can't do so again until it finishes a long rest.", + "type": null, + "parent": "toh_favored" + } + }, + { + "model": "api_v2.racetrait", + "pk": 235, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 1.", + "type": null, + "parent": "toh_morel" + } + }, + { + "model": "api_v2.racetrait", + "pk": 236, + "fields": { + "name": "Adaptable Camouflage", + "desc": "If you spend at least 1 minute in an environment with ample naturally occurring plants or fungi, such as a grassland, a forest, or an underground fungal cavern, you can adjust your natural coloration to blend in with the local plant life. If you do so, you have advantage on Dexterity (Stealth) checks for the next 24 hours while in that environment.", + "type": null, + "parent": "toh_morel" + } + }, + { + "model": "api_v2.racetrait", + "pk": 237, + "fields": { + "name": "Clan Scout", + "desc": "You have proficiency in the Stealth skill.", + "type": null, + "parent": "toh_morel" + } + }, + { + "model": "api_v2.racetrait", + "pk": 238, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 2, and your Intelligence score increases by 1.", + "type": null, + "parent": "toh_satarre" + } + }, + { + "model": "api_v2.racetrait", + "pk": 239, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "toh_satarre" + } + }, + { + "model": "api_v2.racetrait", + "pk": 240, + "fields": { + "name": "Darkvision", + "desc": "Thanks to your dark planar parentage, you have superior vision in darkness. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_satarre" + } + }, + { + "model": "api_v2.racetrait", + "pk": 241, + "fields": { + "name": "Age", + "desc": "Satarre grow quickly, walking soon after hatching and reaching the development of a 15-year-old human by age 6. They maintain the same appearance until about 50, then begin a rapid decline. Satarre often die violently, but those who live longer survive to no more than 65 years of age.", + "type": null, + "parent": "toh_satarre" + } + }, + { + "model": "api_v2.racetrait", + "pk": 242, + "fields": { + "name": "Alignment", + "desc": "Satarre are born with a tendency toward evil akin to that of rapacious dragons, and, when raised among other satarre or darakhul, they are usually evil. Those raised among other cultures tend toward the norm for those cultures.", + "type": null, + "parent": "toh_satarre" + } + }, + { + "model": "api_v2.racetrait", + "pk": 243, + "fields": { + "name": "Size", + "desc": "Satarre are tall but thin, from 6 to 7 feet tall with peculiar, segmented limbs. Your size is Medium.", + "type": null, + "parent": "toh_satarre" + } + }, + { + "model": "api_v2.racetrait", + "pk": 244, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and one of the following: Abyssal, Infernal, or Void Speech. Void Speech is a language of dark gods and ancient blasphemies, and the mere sound of its sibilant tones makes many other creatures quite uncomfortable.", + "type": null, + "parent": "toh_satarre" + } + }, + { + "model": "api_v2.racetrait", + "pk": 245, + "fields": { + "name": "A Friend to Death", + "desc": "You have resistance to necrotic damage.", + "type": null, + "parent": "toh_satarre" + } + }, + { + "model": "api_v2.racetrait", + "pk": 246, + "fields": { + "name": "Keeper of Secrets", + "desc": "You have proficiency in the Arcana skill, and you have advantage on Intelligence (Arcana) checks related to the planes and planar travel. In addition, you have proficiency in one of the following skills of your choice: History, Insight, and Religion.", + "type": null, + "parent": "toh_satarre" + } + }, + { + "model": "api_v2.racetrait", + "pk": 247, + "fields": { + "name": "Carrier of Rot", + "desc": "You can use your action to inflict rot on a creature you can see within 10 feet of you. The creature must make a Constitution saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 1d4 necrotic damage on a failed save, and half as much damage on a successful one. A creature that fails the saving throw also rots for 1 minute. A rotting creature takes 1d4 necrotic damage at the end of each of its turns. The target or a creature within 5 feet of it can use an action to excise the rot with a successful Wisdom (Medicine) check. The DC for the check equals the rot's Constitution saving throw DC. The rot also disappears if the target receives magical healing. The damage for the initial action and the rotting increases to 2d4 at 6th level, 3d4 at 11th level, and 4d4 at 16th level. After you use your Carrier of Rot trait, you can't use it again until you complete a short or long rest.", + "type": null, + "parent": "toh_satarre" + } + }, + { + "model": "api_v2.racetrait", + "pk": 248, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 1.", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 249, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is determined by your Heritage Subrace.", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 250, + "fields": { + "name": "Darkvision", + "desc": "You can see in dim light within 60 feet as though it were bright light and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 251, + "fields": { + "name": "Age", + "desc": "An upper limit of darakhul age has never been discovered; most darakhul die violently.", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 252, + "fields": { + "name": "Alignment", + "desc": "Your alignment does not change when you become a darakhul, but most darakhul have a strong draw toward evil.", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 253, + "fields": { + "name": "Size", + "desc": "Your size is determined by your Heritage Subrace.", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 254, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common, Darakhul, and a language associated with your Heritage Subrace.", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 255, + "fields": { + "name": "Hunger for Flesh", + "desc": "You must consume 1 pound of raw meat each day or suffer the effects of starvation. If you go 24 hours without such a meal, you gain one level of exhaustion. While you have any levels of exhaustion from this trait, you can't regain hit points or remove levels of exhaustion until you spend at least 1 hour consuming 10 pounds of raw meat.", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 256, + "fields": { + "name": "Imperfect Undeath", + "desc": "You transitioned into undeath, but your transition was imperfect. Though you are a humanoid, you are susceptible to effects that target undead. You can regain hit points from spells like cure wounds, but you can also be affected by game effects that specifically target undead, such as a cleric's Turn Undead feature. Game effects that raise a creature from the dead work on you as normal, but they return you to life as a darakhul. A true resurrection or wish spell can restore you to life as a fully living member of your original race.", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 257, + "fields": { + "name": "Powerful Jaw", + "desc": "Your heavy jaw is powerful enough to crush bones to powder. Your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 258, + "fields": { + "name": "Sunlight Sensitivity", + "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 259, + "fields": { + "name": "Undead Resilience", + "desc": "You are infused with the dark energy of undeath, which frees you from some frailties that plague most creatures. You have resistance to necrotic damage and poison damage, you are immune to disease, and you have advantage on saving throws against being charmed or poisoned. When you finish a short rest, you can reduce your exhaustion level by 1, provided you have ingested at least 1 pound of raw meat in the last 24 hours (see Hunger for Flesh).", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 260, + "fields": { + "name": "Undead Vitality", + "desc": "You don't need to breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state that resembles death, remaining semiconscious, for 6 hours a day. While dormant, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 261, + "fields": { + "name": "Heritage Subrace", + "desc": "You were something else before you became a darakhul. This heritage determines some of your traits. Choose one Heritage Subrace below and apply the listed traits.", + "type": null, + "parent": "toh_darakhul" + } + }, + { + "model": "api_v2.racetrait", + "pk": 262, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 2.", + "type": null, + "parent": "toh_derro-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 263, + "fields": { + "name": "Calculating Insanity", + "desc": "The insanity of your race was compressed into a cold, hard brilliance when you took on your darakhul form. These flashes of brilliance come to you at unexpected moments. You know the true strike cantrip. Charisma is your spellcasting ability for it. You can cast true strike as a bonus action a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest.", + "type": null, + "parent": "toh_derro-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 264, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2.", + "type": null, + "parent": "toh_dragonborn-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 265, + "fields": { + "name": "Corrupted Bite", + "desc": "The inherent breath weapon of your draconic heritage is corrupted by the necrotic energy of your new darakhul form. Instead of forming a line or cone, your breath weapon now oozes out of your ghoulish maw. As a bonus action, you breathe necrotic energy onto your fangs and make one bite attack. If the attack hits, it deals extra necrotic damage equal to your level. You can't use this trait again until you finish a long rest.", + "type": null, + "parent": "toh_dragonborn-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 266, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "parent": "toh_drow-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 267, + "fields": { + "name": "Poison Bite", + "desc": "When you hit with your bite attack, you can release venom into your foe. If you do, your bite deals an extra 1d6 poison damage. The damage increases to 3d6 at 11th level. After you release this venom into a creature, you can't do so again until you finish a short or long rest.", + "type": null, + "parent": "toh_drow-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 268, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdon score increases by 2.", + "type": null, + "parent": "toh_dwarf-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 269, + "fields": { + "name": "Dwarven Stoutness", + "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", + "type": null, + "parent": "toh_dwarf-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 270, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "toh_elfshadow-fey-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 271, + "fields": { + "name": "Supernatural Senses", + "desc": "Your keen elven senses are honed even more by the power of undeath and the hunger within you. You can now smell when blood is in the air. You have proficiency in the Perception skill, and you have advantage on Wisdom (Perception) checks to notice or find a creature within 30 feet of you that doesn't have all of its hit points.", + "type": null, + "parent": "toh_elfshadow-fey-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 272, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "parent": "toh_gnome-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 273, + "fields": { + "name": "Magical Hunger", + "desc": "When a creature you can see within 30 feet of you casts a spell, you can use your reaction to consume the spell's residual magic. Your consumption doesn't counter or otherwise affect the spell or the spellcaster. When you consume this residual magic, you gain temporary hit points (minimum of 1) equal to your Constitution modifier, and you can't use this trait again until you finish a short or long rest.", + "type": null, + "parent": "toh_gnome-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 274, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "toh_halfling-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 275, + "fields": { + "name": "Ill Fortune", + "desc": "Your uncanny halfling luck has taken a dark turn since your conversion to an undead creature. When a creature rolls a 20 on the d20 for an attack roll against you, the creature must reroll the attack and use the new roll. If the second attack roll misses you, the attacking creature takes necrotic damage equal to twice your Constitution modifier (minimum of 2).", + "type": null, + "parent": "toh_halfling-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 276, + "fields": { + "name": "Ability Score Increase", + "desc": "One ability score of your choice, other than Constitution, increases by 2.", + "type": null, + "parent": "toh_humanhalf-elf-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 277, + "fields": { + "name": "Versatility", + "desc": "The training and experience of your early years was not lost when you became a darakhul. You have proficiency in two skills and one tool of your choice.", + "type": null, + "parent": "toh_humanhalf-elf-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 278, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "parent": "toh_kobold-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 279, + "fields": { + "name": "Devious Bite", + "desc": "When you hit a creature with your bite attack and you have advantage on the attack roll, your bite deals an extra 1d4 piercing damage.", + "type": null, + "parent": "toh_kobold-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 280, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "toh_ravenfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 281, + "fields": { + "name": "Sudden Bite and Flight", + "desc": "If you surprise a creature during the first round of combat, you can make a bite attack as a bonus action. If it hits, you can immediately take the Dodge action as a reaction.", + "type": null, + "parent": "toh_ravenfolk" + } + }, + { + "model": "api_v2.racetrait", + "pk": 282, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "parent": "toh_tiefling-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 283, + "fields": { + "name": "Necrotic Rebuke", + "desc": "When you are hit by a weapon attack, you can use a reaction to envelop the attacker in shadowy flames. The attacker takes necrotic damage equal to your Charisma modifier (minimum of 1), and it has disadvantage on attack rolls until the end of its next turn. You must finish a long rest before you can use this feature again.", + "type": null, + "parent": "toh_tiefling-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 284, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2.", + "type": null, + "parent": "toh_trollkin-heritage" + } + }, + { + "model": "api_v2.racetrait", + "pk": 285, + "fields": { + "name": "Regenerative Bite", + "desc": "The regenerative powers of your trollkin heritage are less potent than they were in life and need a little help. As an action, you can make a bite attack against a creature that isn't undead or a construct. On a hit, you regain hit points (minimum of 1) equal to half the amount of damage dealt. Once you use this trait, you can't use it again until you finish a long rest.", + "type": null, + "parent": "toh_trollkin-heritage" + } + } +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/Race.json b/data/v2/wizards-of-the-coast/srd/Race.json index c4bdca5a..24dd418f 100644 --- a/data/v2/wizards-of-the-coast/srd/Race.json +++ b/data/v2/wizards-of-the-coast/srd/Race.json @@ -1,132 +1,132 @@ [ -{ - "model": "api_v2.race", - "pk": "dragonborn", - "fields": { - "name": "Dragonborn", - "desc": "Your draconic heritage manifests in a variety of traits you share with other dragonborn.", - "document": "srd", - "subrace_of": null + { + "model": "api_v2.race", + "pk": "srd_dragonborn", + "fields": { + "name": "Dragonborn", + "desc": "Your draconic heritage manifests in a variety of traits you share with other dragonborn.", + "document": "srd", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "srd_dwarf", + "fields": { + "name": "Dwarf", + "desc": "Your dwarf character has an assortment of inborn abilities, part and parcel of dwarven nature.", + "document": "srd", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "srd_elf", + "fields": { + "name": "Elf", + "desc": "Your elf character has a variety of natural abilities, the result of thousands of years of elven refinement.", + "document": "srd", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "srd_gnome", + "fields": { + "name": "Gnome", + "desc": "Your gnome character has certain characteristics in common with all other gnomes.", + "document": "srd", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "srd_half-elf", + "fields": { + "name": "Half-Elf", + "desc": "Your half-elf character has some qualities in common with elves and some that are unique to half-elves.", + "document": "srd", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "srd_half-orc", + "fields": { + "name": "Half-Orc", + "desc": "Your half-orc character has certain traits deriving from your orc ancestry.", + "document": "srd", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "srd_halfling", + "fields": { + "name": "Halfling", + "desc": "Your halfling character has a number of traits in common with all other halflings.", + "document": "srd", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "srd_high-elf", + "fields": { + "name": "High Elf", + "desc": "As a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races.", + "document": "srd", + "subrace_of": "elf" + } + }, + { + "model": "api_v2.race", + "pk": "srd_hill-dwarf", + "fields": { + "name": "Hill Dwarf", + "desc": "As a hill dwarf, you have keen senses, deep intuition, and remarkable resilience.", + "document": "srd", + "subrace_of": "dwarf" + } + }, + { + "model": "api_v2.race", + "pk": "srd_human", + "fields": { + "name": "Human", + "desc": "It’s hard to make generalizations about humans, but your human character has these traits.", + "document": "srd", + "subrace_of": null + } + }, + { + "model": "api_v2.race", + "pk": "srd_lightfoot", + "fields": { + "name": "Lightfoot", + "desc": "As a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others. Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.", + "document": "srd", + "subrace_of": "halfling" + } + }, + { + "model": "api_v2.race", + "pk": "srd_rock-gnome", + "fields": { + "name": "Rock Gnome", + "desc": "As a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.", + "document": "srd", + "subrace_of": "gnome" + } + }, + { + "model": "api_v2.race", + "pk": "srd_tiefling", + "fields": { + "name": "Tiefling", + "desc": "Tieflings share certain racial traits as a result of their infernal descent.", + "document": "srd", + "subrace_of": null + } } -}, -{ - "model": "api_v2.race", - "pk": "dwarf", - "fields": { - "name": "Dwarf", - "desc": "Your dwarf character has an assortment of inborn abilities, part and parcel of dwarven nature.", - "document": "srd", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "elf", - "fields": { - "name": "Elf", - "desc": "Your elf character has a variety of natural abilities, the result of thousands of years of elven refinement.", - "document": "srd", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "gnome", - "fields": { - "name": "Gnome", - "desc": "Your gnome character has certain characteristics in common with all other gnomes.", - "document": "srd", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "half-elf", - "fields": { - "name": "Half-Elf", - "desc": "Your half-elf character has some qualities in common with elves and some that are unique to half-elves.", - "document": "srd", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "half-orc", - "fields": { - "name": "Half-Orc", - "desc": "Your half-orc character has certain traits deriving from your orc ancestry.", - "document": "srd", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "halfling", - "fields": { - "name": "Halfling", - "desc": "Your halfling character has a number of traits in common with all other halflings.", - "document": "srd", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "high-elf", - "fields": { - "name": "High Elf", - "desc": "As a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races.", - "document": "srd", - "subrace_of": "elf" - } -}, -{ - "model": "api_v2.race", - "pk": "hill-dwarf", - "fields": { - "name": "Hill Dwarf", - "desc": "As a hill dwarf, you have keen senses, deep intuition, and remarkable resilience.", - "document": "srd", - "subrace_of": "dwarf" - } -}, -{ - "model": "api_v2.race", - "pk": "human", - "fields": { - "name": "Human", - "desc": "It’s hard to make generalizations about humans, but your human character has these traits.", - "document": "srd", - "subrace_of": null - } -}, -{ - "model": "api_v2.race", - "pk": "lightfoot", - "fields": { - "name": "Lightfoot", - "desc": "As a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others. Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.", - "document": "srd", - "subrace_of": "halfling" - } -}, -{ - "model": "api_v2.race", - "pk": "rock-gnome", - "fields": { - "name": "Rock Gnome", - "desc": "As a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.", - "document": "srd", - "subrace_of": "gnome" - } -}, -{ - "model": "api_v2.race", - "pk": "tiefling", - "fields": { - "name": "Tiefling", - "desc": "Tieflings share certain racial traits as a result of their infernal descent.", - "document": "srd", - "subrace_of": null - } -} -] +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/RaceTrait.json b/data/v2/wizards-of-the-coast/srd/RaceTrait.json index 76370973..1c6faf74 100644 --- a/data/v2/wizards-of-the-coast/srd/RaceTrait.json +++ b/data/v2/wizards-of-the-coast/srd/RaceTrait.json @@ -1,932 +1,932 @@ [ -{ - "model": "api_v2.racetrait", - "pk": 5, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", - "type": null, - "parent": "half-orc" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 6, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "half-orc" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 7, - "fields": { - "name": "Darkvision", - "desc": "Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "half-orc" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 8, - "fields": { - "name": "Age", - "desc": "Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.", - "type": null, - "parent": "half-orc" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 9, - "fields": { - "name": "Alignment", - "desc": "Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.", - "type": null, - "parent": "half-orc" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 10, - "fields": { - "name": "Size", - "desc": "Half-orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.", - "type": null, - "parent": "half-orc" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 11, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.", - "type": null, - "parent": "half-orc" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 12, - "fields": { - "name": "Menacing", - "desc": "You gain proficiency in the Intimidation skill.", - "type": null, - "parent": "half-orc" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 13, - "fields": { - "name": "Relentless Endurance", - "desc": "When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.", - "type": null, - "parent": "half-orc" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 14, - "fields": { - "name": "Savage Attacks", - "desc": "When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.", - "type": null, - "parent": "half-orc" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 15, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 1, and your Charisma score increases by 2.", - "type": null, - "parent": "tiefling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 16, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "tiefling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 17, - "fields": { - "name": "Darkvision", - "desc": "Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "tiefling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 18, - "fields": { - "name": "Age", - "desc": "Tieflings mature at the same rate as humans but live a few years longer.", - "type": null, - "parent": "tiefling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 19, - "fields": { - "name": "Alignment", - "desc": "Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.", - "type": null, - "parent": "tiefling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 20, - "fields": { - "name": "Size", - "desc": "Tieflings are about the same size and build as humans. Your size is Medium.", - "type": null, - "parent": "tiefling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 21, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Infernal.", - "type": null, - "parent": "tiefling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 22, - "fields": { - "name": "Hellish Resistance", - "desc": "You have resistance to fire damage.", - "type": null, - "parent": "tiefling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 23, - "fields": { - "name": "Infernal Legacy", - "desc": "You know the thaumaturgy cantrip. When you reach 3rd level, you can cast the hellish rebuke spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the darkness spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", - "type": null, - "parent": "tiefling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 24, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.", - "type": null, - "parent": "half-elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 25, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "half-elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 26, - "fields": { - "name": "Darkvision", - "desc": "Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "half-elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 27, - "fields": { - "name": "Age", - "desc": "Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.", - "type": null, - "parent": "half-elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 28, - "fields": { - "name": "Alignment", - "desc": "Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.", - "type": null, - "parent": "half-elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 29, - "fields": { - "name": "Size", - "desc": "Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.", - "type": null, - "parent": "half-elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 30, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common, Elvish, and one extra language of your choice.", - "type": null, - "parent": "half-elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 31, - "fields": { - "name": "Fey Ancestry", - "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", - "type": null, - "parent": "half-elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 32, - "fields": { - "name": "Skill Versatility", - "desc": "You gain proficiency in two skills of your choice.", - "type": null, - "parent": "half-elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 33, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "parent": "gnome" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 34, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 25 feet.", - "type": null, - "parent": "gnome" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 35, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "gnome" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 36, - "fields": { - "name": "Age", - "desc": "Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.", - "type": null, - "parent": "gnome" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 37, - "fields": { - "name": "Alignment", - "desc": "Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good-hearted, and even the tricksters among them are more playful than vicious.", - "type": null, - "parent": "gnome" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 38, - "fields": { - "name": "Size", - "desc": "Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.", - "type": null, - "parent": "gnome" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 39, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.", - "type": null, - "parent": "gnome" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 40, - "fields": { - "name": "Gnome Cunning", - "desc": "You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.", - "type": null, - "parent": "gnome" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 41, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 1.", - "type": null, - "parent": "rock-gnome" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 42, - "fields": { - "name": "Artificer's Lore", - "desc": "Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.", - "type": null, - "parent": "rock-gnome" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 43, - "fields": { - "name": "Tinker", - "desc": "You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.\r\n\r\nWhen you create a device, choose one of the following options:\r\n* _Clockwork Toy._ This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.\r\n* _Fire Starter._ The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.\r\n* _Music Box._ When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.", - "type": null, - "parent": "rock-gnome" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 44, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2, and your Charisma score increases by 1.", - "type": null, - "parent": "dragonborn" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 45, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "dragonborn" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 46, - "fields": { - "name": "Age", - "desc": "Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.", - "type": null, - "parent": "dragonborn" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 47, - "fields": { - "name": "Alignment", - "desc": "Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.", - "type": null, - "parent": "dragonborn" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 48, - "fields": { - "name": "Size", - "desc": "Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.", - "type": null, - "parent": "dragonborn" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 49, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.", - "type": null, - "parent": "dragonborn" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 50, - "fields": { - "name": "Draconic Ancestry table", - "desc": "| Dragon | Damage Type | Breath Weapon |\r\n|--------------|-------------------|------------------------------|\r\n| Black | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Blue | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Brass | Fire | 5 by 30 ft. line (Dex. save) |\r\n| Bronze | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Copper | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Gold | Fire | 15 ft. cone (Dex. save) |\r\n| Green | Poison | 15 ft. cone (Con. save) |\r\n| Red | Fire | 15 ft. cone (Dex. save) |\r\n| Silver | Cold | 15 ft. cone (Con. save) |\r\n| White | Cold | 15 ft. cone (Con. save) |", - "type": null, - "parent": "dragonborn" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 51, - "fields": { - "name": "Draconic Ancestry", - "desc": "You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.", - "type": null, - "parent": "dragonborn" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 52, - "fields": { - "name": "Breath Weapon", - "desc": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.\r\nWhen you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.", - "type": null, - "parent": "dragonborn" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 53, - "fields": { - "name": "Damage Resistance", - "desc": "You have resistance to the damage type associated with your draconic ancestry.", - "type": null, - "parent": "dragonborn" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 54, - "fields": { - "name": "Ability Score Increase", - "desc": "Your ability scores each increase by 1.", - "type": null, - "parent": "human" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 55, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "human" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 56, - "fields": { - "name": "Age", - "desc": "Humans reach adulthood in their late teens and live less than a century.", - "type": null, - "parent": "human" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 57, - "fields": { - "name": "Alignment", - "desc": "Humans tend toward no particular alignment. The best and the worst are found among them.", - "type": null, - "parent": "human" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 58, - "fields": { - "name": "Size", - "desc": "Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.", - "type": null, - "parent": "human" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 59, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.", - "type": null, - "parent": "human" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 60, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "halfling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 61, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 25 feet.", - "type": null, - "parent": "halfling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 62, - "fields": { - "name": "Age", - "desc": "A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.", - "type": null, - "parent": "halfling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 63, - "fields": { - "name": "Alignment", - "desc": "Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.", - "type": null, - "parent": "halfling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 64, - "fields": { - "name": "Size", - "desc": "Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.", - "type": null, - "parent": "halfling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 65, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.", - "type": null, - "parent": "halfling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 66, - "fields": { - "name": "Lucky", - "desc": "When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.", - "type": null, - "parent": "halfling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 67, - "fields": { - "name": "Brave", - "desc": "You have advantage on saving throws against being frightened.", - "type": null, - "parent": "halfling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 68, - "fields": { - "name": "Halfling Nimbleness", - "desc": "You can move through the space of any creature that is of a size larger than yours.", - "type": null, - "parent": "halfling" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 69, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "parent": "lightfoot" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 70, - "fields": { - "name": "Naturally Stealthy", - "desc": "You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", - "type": null, - "parent": "lightfoot" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 71, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 72, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 73, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 74, - "fields": { - "name": "Age", - "desc": "Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.", - "type": null, - "parent": "elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 75, - "fields": { - "name": "Alignment", - "desc": "Elves love freedom, variety, and self-­expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others’ freedom as well as their own, and they are more often good than not.", - "type": null, - "parent": "elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 76, - "fields": { - "name": "Size", - "desc": "Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.", - "type": null, - "parent": "elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 77, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.", - "type": null, - "parent": "elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 78, - "fields": { - "name": "Keen Senses", - "desc": "You have proficiency in the Perception skill.", - "type": null, - "parent": "elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 79, - "fields": { - "name": "Fey Ancestry", - "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", - "type": null, - "parent": "elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 80, - "fields": { - "name": "Trance", - "desc": "Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is “trance.”) While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", - "type": null, - "parent": "elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 81, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 1.", - "type": null, - "parent": "high-elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 82, - "fields": { - "name": "Elf Weapon Training", - "desc": "You have proficiency with the longsword, shortsword, shortbow, and longbow.", - "type": null, - "parent": "high-elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 83, - "fields": { - "name": "Cantrip", - "desc": "You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.", - "type": null, - "parent": "high-elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 84, - "fields": { - "name": "Extra Language", - "desc": "You can speak, read, and write one extra language of your choice.", - "type": null, - "parent": "high-elf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 85, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 2.", - "type": null, - "parent": "dwarf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 86, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.", - "type": null, - "parent": "dwarf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 87, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "dwarf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 88, - "fields": { - "name": "Age", - "desc": "Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.", - "type": null, - "parent": "dwarf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 89, - "fields": { - "name": "Alignment", - "desc": "Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.", - "type": null, - "parent": "dwarf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 90, - "fields": { - "name": "Size", - "desc": "Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.", - "type": null, - "parent": "dwarf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 91, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.", - "type": null, - "parent": "dwarf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 92, - "fields": { - "name": "Dwarven Resilience", - "desc": "You have advantage on saving throws against poison, and you have resistance against poison damage.", - "type": null, - "parent": "dwarf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 93, - "fields": { - "name": "Dwarven Combat Training", - "desc": "You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.", - "type": null, - "parent": "dwarf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 94, - "fields": { - "name": "Tool Proficiency", - "desc": "You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.", - "type": null, - "parent": "dwarf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 95, - "fields": { - "name": "Stonecunning", - "desc": "Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.", - "type": null, - "parent": "dwarf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 96, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 1.", - "type": null, - "parent": "hill-dwarf" - } -}, -{ - "model": "api_v2.racetrait", - "pk": 97, - "fields": { - "name": "Dwarven Toughness", - "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", - "type": null, - "parent": "hill-dwarf" - } -} -] + { + "model": "api_v2.racetrait", + "pk": 5, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", + "type": null, + "parent": "srd_half-orc" + } + }, + { + "model": "api_v2.racetrait", + "pk": 6, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "srd_half-orc" + } + }, + { + "model": "api_v2.racetrait", + "pk": 7, + "fields": { + "name": "Darkvision", + "desc": "Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "srd_half-orc" + } + }, + { + "model": "api_v2.racetrait", + "pk": 8, + "fields": { + "name": "Age", + "desc": "Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.", + "type": null, + "parent": "srd_half-orc" + } + }, + { + "model": "api_v2.racetrait", + "pk": 9, + "fields": { + "name": "Alignment", + "desc": "Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.", + "type": null, + "parent": "srd_half-orc" + } + }, + { + "model": "api_v2.racetrait", + "pk": 10, + "fields": { + "name": "Size", + "desc": "Half-orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.", + "type": null, + "parent": "srd_half-orc" + } + }, + { + "model": "api_v2.racetrait", + "pk": 11, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.", + "type": null, + "parent": "srd_half-orc" + } + }, + { + "model": "api_v2.racetrait", + "pk": 12, + "fields": { + "name": "Menacing", + "desc": "You gain proficiency in the Intimidation skill.", + "type": null, + "parent": "srd_half-orc" + } + }, + { + "model": "api_v2.racetrait", + "pk": 13, + "fields": { + "name": "Relentless Endurance", + "desc": "When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.", + "type": null, + "parent": "srd_half-orc" + } + }, + { + "model": "api_v2.racetrait", + "pk": 14, + "fields": { + "name": "Savage Attacks", + "desc": "When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.", + "type": null, + "parent": "srd_half-orc" + } + }, + { + "model": "api_v2.racetrait", + "pk": 15, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 1, and your Charisma score increases by 2.", + "type": null, + "parent": "srd_tiefling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 16, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "srd_tiefling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 17, + "fields": { + "name": "Darkvision", + "desc": "Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "srd_tiefling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 18, + "fields": { + "name": "Age", + "desc": "Tieflings mature at the same rate as humans but live a few years longer.", + "type": null, + "parent": "srd_tiefling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 19, + "fields": { + "name": "Alignment", + "desc": "Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.", + "type": null, + "parent": "srd_tiefling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 20, + "fields": { + "name": "Size", + "desc": "Tieflings are about the same size and build as humans. Your size is Medium.", + "type": null, + "parent": "srd_tiefling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 21, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Infernal.", + "type": null, + "parent": "srd_tiefling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 22, + "fields": { + "name": "Hellish Resistance", + "desc": "You have resistance to fire damage.", + "type": null, + "parent": "srd_tiefling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 23, + "fields": { + "name": "Infernal Legacy", + "desc": "You know the thaumaturgy cantrip. When you reach 3rd level, you can cast the hellish rebuke spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the darkness spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", + "type": null, + "parent": "srd_tiefling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 24, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.", + "type": null, + "parent": "srd_half-elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 25, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "srd_half-elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 26, + "fields": { + "name": "Darkvision", + "desc": "Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "srd_half-elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 27, + "fields": { + "name": "Age", + "desc": "Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.", + "type": null, + "parent": "srd_half-elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 28, + "fields": { + "name": "Alignment", + "desc": "Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.", + "type": null, + "parent": "srd_half-elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 29, + "fields": { + "name": "Size", + "desc": "Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.", + "type": null, + "parent": "srd_half-elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 30, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common, Elvish, and one extra language of your choice.", + "type": null, + "parent": "srd_half-elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 31, + "fields": { + "name": "Fey Ancestry", + "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", + "type": null, + "parent": "srd_half-elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 32, + "fields": { + "name": "Skill Versatility", + "desc": "You gain proficiency in two skills of your choice.", + "type": null, + "parent": "srd_half-elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 33, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "parent": "srd_gnome" + } + }, + { + "model": "api_v2.racetrait", + "pk": 34, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 25 feet.", + "type": null, + "parent": "srd_gnome" + } + }, + { + "model": "api_v2.racetrait", + "pk": 35, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "srd_gnome" + } + }, + { + "model": "api_v2.racetrait", + "pk": 36, + "fields": { + "name": "Age", + "desc": "Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.", + "type": null, + "parent": "srd_gnome" + } + }, + { + "model": "api_v2.racetrait", + "pk": 37, + "fields": { + "name": "Alignment", + "desc": "Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good-hearted, and even the tricksters among them are more playful than vicious.", + "type": null, + "parent": "srd_gnome" + } + }, + { + "model": "api_v2.racetrait", + "pk": 38, + "fields": { + "name": "Size", + "desc": "Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.", + "type": null, + "parent": "srd_gnome" + } + }, + { + "model": "api_v2.racetrait", + "pk": 39, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.", + "type": null, + "parent": "srd_gnome" + } + }, + { + "model": "api_v2.racetrait", + "pk": 40, + "fields": { + "name": "Gnome Cunning", + "desc": "You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.", + "type": null, + "parent": "srd_gnome" + } + }, + { + "model": "api_v2.racetrait", + "pk": 41, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 1.", + "type": null, + "parent": "srd_rock-gnome" + } + }, + { + "model": "api_v2.racetrait", + "pk": 42, + "fields": { + "name": "Artificer's Lore", + "desc": "Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.", + "type": null, + "parent": "srd_rock-gnome" + } + }, + { + "model": "api_v2.racetrait", + "pk": 43, + "fields": { + "name": "Tinker", + "desc": "You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.\r\n\r\nWhen you create a device, choose one of the following options:\r\n* _Clockwork Toy._ This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.\r\n* _Fire Starter._ The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.\r\n* _Music Box._ When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.", + "type": null, + "parent": "srd_rock-gnome" + } + }, + { + "model": "api_v2.racetrait", + "pk": 44, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2, and your Charisma score increases by 1.", + "type": null, + "parent": "srd_dragonborn" + } + }, + { + "model": "api_v2.racetrait", + "pk": 45, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "srd_dragonborn" + } + }, + { + "model": "api_v2.racetrait", + "pk": 46, + "fields": { + "name": "Age", + "desc": "Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.", + "type": null, + "parent": "srd_dragonborn" + } + }, + { + "model": "api_v2.racetrait", + "pk": 47, + "fields": { + "name": "Alignment", + "desc": "Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.", + "type": null, + "parent": "srd_dragonborn" + } + }, + { + "model": "api_v2.racetrait", + "pk": 48, + "fields": { + "name": "Size", + "desc": "Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.", + "type": null, + "parent": "srd_dragonborn" + } + }, + { + "model": "api_v2.racetrait", + "pk": 49, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.", + "type": null, + "parent": "srd_dragonborn" + } + }, + { + "model": "api_v2.racetrait", + "pk": 50, + "fields": { + "name": "Draconic Ancestry table", + "desc": "| Dragon | Damage Type | Breath Weapon |\r\n|--------------|-------------------|------------------------------|\r\n| Black | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Blue | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Brass | Fire | 5 by 30 ft. line (Dex. save) |\r\n| Bronze | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Copper | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Gold | Fire | 15 ft. cone (Dex. save) |\r\n| Green | Poison | 15 ft. cone (Con. save) |\r\n| Red | Fire | 15 ft. cone (Dex. save) |\r\n| Silver | Cold | 15 ft. cone (Con. save) |\r\n| White | Cold | 15 ft. cone (Con. save) |", + "type": null, + "parent": "srd_dragonborn" + } + }, + { + "model": "api_v2.racetrait", + "pk": 51, + "fields": { + "name": "Draconic Ancestry", + "desc": "You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.", + "type": null, + "parent": "srd_dragonborn" + } + }, + { + "model": "api_v2.racetrait", + "pk": 52, + "fields": { + "name": "Breath Weapon", + "desc": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.\r\nWhen you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.", + "type": null, + "parent": "srd_dragonborn" + } + }, + { + "model": "api_v2.racetrait", + "pk": 53, + "fields": { + "name": "Damage Resistance", + "desc": "You have resistance to the damage type associated with your draconic ancestry.", + "type": null, + "parent": "srd_dragonborn" + } + }, + { + "model": "api_v2.racetrait", + "pk": 54, + "fields": { + "name": "Ability Score Increase", + "desc": "Your ability scores each increase by 1.", + "type": null, + "parent": "srd_human" + } + }, + { + "model": "api_v2.racetrait", + "pk": 55, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "srd_human" + } + }, + { + "model": "api_v2.racetrait", + "pk": 56, + "fields": { + "name": "Age", + "desc": "Humans reach adulthood in their late teens and live less than a century.", + "type": null, + "parent": "srd_human" + } + }, + { + "model": "api_v2.racetrait", + "pk": 57, + "fields": { + "name": "Alignment", + "desc": "Humans tend toward no particular alignment. The best and the worst are found among them.", + "type": null, + "parent": "srd_human" + } + }, + { + "model": "api_v2.racetrait", + "pk": 58, + "fields": { + "name": "Size", + "desc": "Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.", + "type": null, + "parent": "srd_human" + } + }, + { + "model": "api_v2.racetrait", + "pk": 59, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.", + "type": null, + "parent": "srd_human" + } + }, + { + "model": "api_v2.racetrait", + "pk": 60, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "srd_halfling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 61, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 25 feet.", + "type": null, + "parent": "srd_halfling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 62, + "fields": { + "name": "Age", + "desc": "A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.", + "type": null, + "parent": "srd_halfling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 63, + "fields": { + "name": "Alignment", + "desc": "Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.", + "type": null, + "parent": "srd_halfling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 64, + "fields": { + "name": "Size", + "desc": "Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.", + "type": null, + "parent": "srd_halfling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 65, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.", + "type": null, + "parent": "srd_halfling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 66, + "fields": { + "name": "Lucky", + "desc": "When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.", + "type": null, + "parent": "srd_halfling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 67, + "fields": { + "name": "Brave", + "desc": "You have advantage on saving throws against being frightened.", + "type": null, + "parent": "srd_halfling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 68, + "fields": { + "name": "Halfling Nimbleness", + "desc": "You can move through the space of any creature that is of a size larger than yours.", + "type": null, + "parent": "srd_halfling" + } + }, + { + "model": "api_v2.racetrait", + "pk": 69, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "parent": "srd_lightfoot" + } + }, + { + "model": "api_v2.racetrait", + "pk": 70, + "fields": { + "name": "Naturally Stealthy", + "desc": "You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", + "type": null, + "parent": "srd_lightfoot" + } + }, + { + "model": "api_v2.racetrait", + "pk": 71, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "srd_elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 72, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "srd_elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 73, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "srd_elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 74, + "fields": { + "name": "Age", + "desc": "Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.", + "type": null, + "parent": "srd_elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 75, + "fields": { + "name": "Alignment", + "desc": "Elves love freedom, variety, and self-­expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others’ freedom as well as their own, and they are more often good than not.", + "type": null, + "parent": "srd_elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 76, + "fields": { + "name": "Size", + "desc": "Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.", + "type": null, + "parent": "srd_elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 77, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.", + "type": null, + "parent": "srd_elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 78, + "fields": { + "name": "Keen Senses", + "desc": "You have proficiency in the Perception skill.", + "type": null, + "parent": "srd_elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 79, + "fields": { + "name": "Fey Ancestry", + "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", + "type": null, + "parent": "srd_elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 80, + "fields": { + "name": "Trance", + "desc": "Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is “trance.”) While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", + "type": null, + "parent": "srd_elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 81, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 1.", + "type": null, + "parent": "srd_high-elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 82, + "fields": { + "name": "Elf Weapon Training", + "desc": "You have proficiency with the longsword, shortsword, shortbow, and longbow.", + "type": null, + "parent": "srd_high-elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 83, + "fields": { + "name": "Cantrip", + "desc": "You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.", + "type": null, + "parent": "srd_high-elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 84, + "fields": { + "name": "Extra Language", + "desc": "You can speak, read, and write one extra language of your choice.", + "type": null, + "parent": "srd_high-elf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 85, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 2.", + "type": null, + "parent": "srd_dwarf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 86, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.", + "type": null, + "parent": "srd_dwarf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 87, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "srd_dwarf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 88, + "fields": { + "name": "Age", + "desc": "Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.", + "type": null, + "parent": "srd_dwarf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 89, + "fields": { + "name": "Alignment", + "desc": "Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.", + "type": null, + "parent": "srd_dwarf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 90, + "fields": { + "name": "Size", + "desc": "Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.", + "type": null, + "parent": "srd_dwarf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 91, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.", + "type": null, + "parent": "srd_dwarf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 92, + "fields": { + "name": "Dwarven Resilience", + "desc": "You have advantage on saving throws against poison, and you have resistance against poison damage.", + "type": null, + "parent": "srd_dwarf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 93, + "fields": { + "name": "Dwarven Combat Training", + "desc": "You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.", + "type": null, + "parent": "srd_dwarf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 94, + "fields": { + "name": "Tool Proficiency", + "desc": "You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.", + "type": null, + "parent": "srd_dwarf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 95, + "fields": { + "name": "Stonecunning", + "desc": "Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.", + "type": null, + "parent": "srd_dwarf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 96, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 1.", + "type": null, + "parent": "srd_hill-dwarf" + } + }, + { + "model": "api_v2.racetrait", + "pk": 97, + "fields": { + "name": "Dwarven Toughness", + "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", + "type": null, + "parent": "srd_hill-dwarf" + } + } +] \ No newline at end of file From d3266ac5888d38dd2a7c4e123c201d6a3ff67a97 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 11:44:55 -0500 Subject: [PATCH 43/84] Removing deprecated models. --- data/v2/kobold-press/toh/Trait.json | 1842 ------------------- data/v2/wizards-of-the-coast/srd/Trait.json | 932 ---------- 2 files changed, 2774 deletions(-) delete mode 100644 data/v2/kobold-press/toh/Trait.json delete mode 100644 data/v2/wizards-of-the-coast/srd/Trait.json diff --git a/data/v2/kobold-press/toh/Trait.json b/data/v2/kobold-press/toh/Trait.json deleted file mode 100644 index e690d749..00000000 --- a/data/v2/kobold-press/toh/Trait.json +++ /dev/null @@ -1,1842 +0,0 @@ -[ -{ - "model": "api_v2.trait", - "pk": 98, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2, and your Wisdom score increases by 1.", - "type": null, - "race": "alseid" - } -}, -{ - "model": "api_v2.trait", - "pk": 99, - "fields": { - "name": "Speed", - "desc": "Alseid are fast for their size, with a base walking speed of 40 feet.", - "type": null, - "race": "alseid" - } -}, -{ - "model": "api_v2.trait", - "pk": 100, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to the limited light beneath the forest canopy, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "alseid" - } -}, -{ - "model": "api_v2.trait", - "pk": 101, - "fields": { - "name": "Age", - "desc": "Alseid reach maturity by the age of 20. They can live well beyond 100 years, but it is unknown just how old they can become.", - "type": null, - "race": "alseid" - } -}, -{ - "model": "api_v2.trait", - "pk": 102, - "fields": { - "name": "Alignment", - "desc": "Alseid are generally chaotic, flowing with the unpredictable whims of nature, though variations are common, particularly among those rare few who leave their people.", - "type": null, - "race": "alseid" - } -}, -{ - "model": "api_v2.trait", - "pk": 103, - "fields": { - "name": "Size", - "desc": "Alseid stand over 6 feet tall and weigh around 300 pounds. Your size is Medium.", - "type": null, - "race": "alseid" - } -}, -{ - "model": "api_v2.trait", - "pk": 104, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Elvish.", - "type": null, - "race": "alseid" - } -}, -{ - "model": "api_v2.trait", - "pk": 105, - "fields": { - "name": "Alseid Weapon Training", - "desc": "You have proficiency with spears and shortbows.", - "type": null, - "race": "alseid" - } -}, -{ - "model": "api_v2.trait", - "pk": 106, - "fields": { - "name": "Light Hooves", - "desc": "You have proficiency in the Stealth skill.", - "type": null, - "race": "alseid" - } -}, -{ - "model": "api_v2.trait", - "pk": 107, - "fields": { - "name": "Quadruped", - "desc": "The mundane details of the structures of humanoids can present considerable obstacles for you. You have to squeeze when moving through trapdoors, manholes, and similar structures even when a Medium humanoid wouldn't have to squeeze. In addition, ladders, stairs, and similar structures are difficult terrain for you.", - "type": null, - "race": "alseid" - } -}, -{ - "model": "api_v2.trait", - "pk": 108, - "fields": { - "name": "Woodfriend", - "desc": "When in a forest, you leave no tracks and can automatically discern true north.", - "type": null, - "race": "alseid" - } -}, -{ - "model": "api_v2.trait", - "pk": 109, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "race": "catfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 110, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "race": "catfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 111, - "fields": { - "name": "Darkvision", - "desc": "You have a cat's keen senses, especially in the dark. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "catfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 112, - "fields": { - "name": "Age", - "desc": "Catfolk mature at the same rate as humans and can live just past a century.", - "type": null, - "race": "catfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 113, - "fields": { - "name": "Alignment", - "desc": "Catfolk tend toward two extremes. Some are free-spirited and chaotic, letting impulse and fancy guide their decisions. Others are devoted to duty and personal honor. Typically, catfolk deem concepts such as good and evil as less important than freedom or their oaths.", - "type": null, - "race": "catfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 114, - "fields": { - "name": "Size", - "desc": "Catfolk have a similar stature to humans but are generally leaner and more muscular. Your size is Medium", - "type": null, - "race": "catfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 115, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common.", - "type": null, - "race": "catfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 116, - "fields": { - "name": "Cat's Claws", - "desc": "Your sharp claws can cut with ease. Your claws are natural melee weapons, which you can use to make unarmed strikes. When you hit with a claw, your claw deals slashing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", - "type": null, - "race": "catfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 117, - "fields": { - "name": "Hunter's Senses", - "desc": "You have proficiency in the Perception and Stealth skills.", - "type": null, - "race": "catfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 118, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 1.", - "type": null, - "race": "malkin" - } -}, -{ - "model": "api_v2.trait", - "pk": 119, - "fields": { - "name": "Curiously Clever", - "desc": "You have proficiency in the Investigation skill.", - "type": null, - "race": "malkin" - } -}, -{ - "model": "api_v2.trait", - "pk": 120, - "fields": { - "name": "Charmed Curiosity", - "desc": "When you roll a 1 on the d20 for a Dexterity check or saving throw, you can reroll the die and must use the new roll.", - "type": null, - "race": "malkin" - } -}, -{ - "model": "api_v2.trait", - "pk": 121, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 1.", - "type": null, - "race": "pantheran" - } -}, -{ - "model": "api_v2.trait", - "pk": 122, - "fields": { - "name": "Hunter's Charge", - "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a melee weapon attack in the same turn, you can use a bonus action to attack that creature with your Cat's Claws. You can use this trait a number of times per day equal to your proficiency bonus, and you regain all expended uses when you finish a long rest.", - "type": null, - "race": "pantheran" - } -}, -{ - "model": "api_v2.trait", - "pk": 123, - "fields": { - "name": "One With the Wilds", - "desc": "You have proficiency in one of the following skills of your choice: Insight, Medicine, Nature, or Survival.", - "type": null, - "race": "pantheran" - } -}, -{ - "model": "api_v2.trait", - "pk": 124, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "race": "derro" - } -}, -{ - "model": "api_v2.trait", - "pk": 125, - "fields": { - "name": "Speed", - "desc": "Derro are fast for their size. Your base walking speed is 30 feet.", - "type": null, - "race": "derro" - } -}, -{ - "model": "api_v2.trait", - "pk": 126, - "fields": { - "name": "Superior Darkvision", - "desc": "Accustomed to life underground, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "derro" - } -}, -{ - "model": "api_v2.trait", - "pk": 127, - "fields": { - "name": "Age", - "desc": "Derro reach maturity by the age of 15 and live to be around 75.", - "type": null, - "race": "derro" - } -}, -{ - "model": "api_v2.trait", - "pk": 128, - "fields": { - "name": "Alignment", - "desc": "The derro's naturally unhinged minds are nearly always chaotic, and many, but not all, are evil.", - "type": null, - "race": "derro" - } -}, -{ - "model": "api_v2.trait", - "pk": 129, - "fields": { - "name": "Size", - "desc": "Derro stand between 3 and 4 feet tall with slender limbs and wide shoulders. Your size is Small.", - "type": null, - "race": "derro" - } -}, -{ - "model": "api_v2.trait", - "pk": 130, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Dwarvish and your choice of Common or Undercommon.", - "type": null, - "race": "derro" - } -}, -{ - "model": "api_v2.trait", - "pk": 131, - "fields": { - "name": "Eldritch Resilience", - "desc": "You have advantage on Constitution saving throws against spells.", - "type": null, - "race": "derro" - } -}, -{ - "model": "api_v2.trait", - "pk": 132, - "fields": { - "name": "Sunlight Sensitivity", - "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", - "type": null, - "race": "derro" - } -}, -{ - "model": "api_v2.trait", - "pk": 133, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "race": "far-touched" - } -}, -{ - "model": "api_v2.trait", - "pk": 134, - "fields": { - "name": "Insanity", - "desc": "You have advantage on saving throws against being charmed or frightened. In addition, you can read and understand Void Speech, but you can speak only a few words of the dangerous and maddening language—the words necessary for using the spells in your Mad Fervor trait.", - "type": null, - "race": "far-touched" - } -}, -{ - "model": "api_v2.trait", - "pk": 135, - "fields": { - "name": "Mad Fervor", - "desc": "The driving force behind your insanity has blessed you with a measure of its power. You know the vicious mockery cantrip. When you reach 3rd level, you can cast the enthrall spell with this trait, and starting at 5th level, you can cast the fear spell with it. Once you cast a non-cantrip spell with this trait, you can't do so again until you finish a long rest. Charisma is your spellcasting ability for these spells. If you are using Deep Magic for 5th Edition, these spells are instead crushing curse, maddening whispers, and alone, respectively.", - "type": null, - "race": "far-touched" - } -}, -{ - "model": "api_v2.trait", - "pk": 136, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 1.", - "type": null, - "race": "mutated" - } -}, -{ - "model": "api_v2.trait", - "pk": 137, - "fields": { - "name": "Athletic Training", - "desc": "You have proficiency in the Athletics skill, and you are proficient with two martial weapons of your choice.", - "type": null, - "race": "mutated" - } -}, -{ - "model": "api_v2.trait", - "pk": 138, - "fields": { - "name": "Otherworldly Influence", - "desc": "Your close connection to the strange powers that your people worship has mutated your form. Choose one of the following:\r\n\r\n**Alien Appendage.** You have a tentacle-like growth on your body. This tentacle is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your tentacle deals bludgeoning damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. This tentacle has a reach of 5 feet and can lift a number of pounds equal to double your Strength score. The tentacle can't wield weapons or shields or perform tasks that require manual precision, such as performing the somatic components of a spell, but it can perform simple tasks, such as opening an unlocked door or container, stowing or retrieving an object, or pouring the contents out of a vial.\r\n**Tainted Blood.** Your blood is tainted by your connection with otherworldly entities. When you take piercing or slashing damage, you can use your reaction to force your blood to spray out of the wound. You and each creature within 5 feet of you take necrotic damage equal to your level. Once you use this trait, you can't use it again until you finish a short or long rest.\r\n**Tenebrous Flesh.** Your skin is rubbery and tenebrous, granting you a +1 bonus to your Armor Class.", - "type": null, - "race": "mutated" - } -}, -{ - "model": "api_v2.trait", - "pk": 139, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 1.", - "type": null, - "race": "uncorrupted" - } -}, -{ - "model": "api_v2.trait", - "pk": 140, - "fields": { - "name": "Psychic Barrier", - "desc": "Your time among your less sane brethren has inured you to their madness. You have resistance to psychic damage, and you have advantage on ability checks and saving throws made against effects that inflict insanity, such as spells like contact other plane and symbol, and effects that cause short-term, long-term, or indefinite madness.", - "type": null, - "race": "uncorrupted" - } -}, -{ - "model": "api_v2.trait", - "pk": 141, - "fields": { - "name": "Studied Insight", - "desc": "You are skilled at discerning other creature's motives and intentions. You have proficiency in the Insight skill, and, if you study a creature for at least 1 minute, you have advantage on any initiative checks in combat against that creature for the next hour.", - "type": null, - "race": "uncorrupted" - } -}, -{ - "model": "api_v2.trait", - "pk": 142, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "race": "drow" - } -}, -{ - "model": "api_v2.trait", - "pk": 143, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "race": "drow" - } -}, -{ - "model": "api_v2.trait", - "pk": 144, - "fields": { - "name": "Superior Darkvision", - "desc": "Accustomed to life in the darkest depths of the world, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "drow" - } -}, -{ - "model": "api_v2.trait", - "pk": 145, - "fields": { - "name": "Age", - "desc": "Drow physically mature at the same rate as humans, but they aren't considered adults until they reach the age of 50. They typically live to be around 500.", - "type": null, - "race": "drow" - } -}, -{ - "model": "api_v2.trait", - "pk": 146, - "fields": { - "name": "Alignment", - "desc": "Drow believe in reason and rationality, which leads them to favor lawful activities. However, their current dire situation makes them more prone than their ancestors to chaotic behavior. Their vicious fight for survival makes them capable of doing great evil in the name of self-preservation, although they are not, by nature, prone to evil in other circumstances.", - "type": null, - "race": "drow" - } -}, -{ - "model": "api_v2.trait", - "pk": 147, - "fields": { - "name": "Size", - "desc": "Drow are slightly shorter and slimmer than humans. Your size is Medium.", - "type": null, - "race": "drow" - } -}, -{ - "model": "api_v2.trait", - "pk": 148, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Elvish and your choice of Common or Undercommon.", - "type": null, - "race": "drow" - } -}, -{ - "model": "api_v2.trait", - "pk": 149, - "fields": { - "name": "Fey Ancestry", - "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", - "type": null, - "race": "drow" - } -}, -{ - "model": "api_v2.trait", - "pk": 150, - "fields": { - "name": "Mind of Steel", - "desc": "You understand the complexities of minds, as well as the magic that can affect them. You have advantage on Wisdom, Intelligence, and Charisma saving throws against spells.", - "type": null, - "race": "drow" - } -}, -{ - "model": "api_v2.trait", - "pk": 151, - "fields": { - "name": "Sunlight Sensitivity", - "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", - "type": null, - "race": "drow" - } -}, -{ - "model": "api_v2.trait", - "pk": 152, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength or Dexterity score increases by 1.", - "type": null, - "race": "delver" - } -}, -{ - "model": "api_v2.trait", - "pk": 153, - "fields": { - "name": "Rapport with Insects", - "desc": "Your caste's years of working alongside the giant spiders and beetles that your people utilized in building and defending cities has left your caste with an innate affinity with the creatures. You can communicate simple ideas with insect-like beasts with an Intelligence of 3 or lower, such as spiders, beetles, wasps, scorpions, and centipedes. You can understand them in return, though this understanding is often limited to knowing the creature's current or most recent state, such as “hungry,” “content,” or “in danger.” Delver drow often keep such creatures as pets, mounts, or beasts of burden.", - "type": null, - "race": "delver" - } -}, -{ - "model": "api_v2.trait", - "pk": 154, - "fields": { - "name": "Specialized Training", - "desc": "You are proficient in one skill and one tool of your choice.", - "type": null, - "race": "delver" - } -}, -{ - "model": "api_v2.trait", - "pk": 155, - "fields": { - "name": "Martial Excellence", - "desc": "You are proficient with one martial weapon of your choice and with light armor.", - "type": null, - "race": "delver" - } -}, -{ - "model": "api_v2.trait", - "pk": 156, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 1.", - "type": null, - "race": "fever-bit" - } -}, -{ - "model": "api_v2.trait", - "pk": 157, - "fields": { - "name": "Deathly Resilience", - "desc": "Your long exposure to the life-sapping energies of darakhul fever has made you more resilient. You have resistance to necrotic damage, and advantage on death saving throws.", - "type": null, - "race": "fever-bit" - } -}, -{ - "model": "api_v2.trait", - "pk": 158, - "fields": { - "name": "Iron Constitution", - "desc": "You are immune to disease.", - "type": null, - "race": "fever-bit" - } -}, -{ - "model": "api_v2.trait", - "pk": 159, - "fields": { - "name": "Near-Death Experience", - "desc": "Your brush with death has made you more stalwart in the face of danger. You have advantage on saving throws against being frightened.", - "type": null, - "race": "fever-bit" - } -}, -{ - "model": "api_v2.trait", - "pk": 160, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "race": "purified" - } -}, -{ - "model": "api_v2.trait", - "pk": 161, - "fields": { - "name": "Innate Spellcasting", - "desc": "You know the poison spray cantrip. When you reach 3rd level, you can cast suggestion once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the tongues spell once and regain the ability to do so when you finish a long rest. Intelligence is your spellcasting ability for these spells.", - "type": null, - "race": "purified" - } -}, -{ - "model": "api_v2.trait", - "pk": 162, - "fields": { - "name": "Born Leader", - "desc": "You gain proficiency with two of the following skills of your choice: History, Insight, Performance, and Persuasion.", - "type": null, - "race": "purified" - } -}, -{ - "model": "api_v2.trait", - "pk": 163, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2, and you can choose to increase either your Wisdom or Charisma score by 1.", - "type": null, - "race": "erina" - } -}, -{ - "model": "api_v2.trait", - "pk": 164, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 25 feet.", - "type": null, - "race": "erina" - } -}, -{ - "model": "api_v2.trait", - "pk": 165, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to life in the dark burrows of your people, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "erina" - } -}, -{ - "model": "api_v2.trait", - "pk": 166, - "fields": { - "name": "Age", - "desc": "Erina reach maturity around 15 years and can live up to 60 years, though some erina burrow elders have memories of events which suggest erina can live much longer.", - "type": null, - "race": "erina" - } -}, -{ - "model": "api_v2.trait", - "pk": 167, - "fields": { - "name": "Alignment", - "desc": "Erina are good-hearted and extremely social creatures who have a difficult time adapting to the laws of other species.", - "type": null, - "race": "erina" - } -}, -{ - "model": "api_v2.trait", - "pk": 168, - "fields": { - "name": "Size", - "desc": "Erina average about 3 feet tall and weigh about 50 pounds. Your size is Small.", - "type": null, - "race": "erina" - } -}, -{ - "model": "api_v2.trait", - "pk": 169, - "fields": { - "name": "Languages", - "desc": "You can speak Erina and either Common or Sylvan.", - "type": null, - "race": "erina" - } -}, -{ - "model": "api_v2.trait", - "pk": 170, - "fields": { - "name": "Hardy", - "desc": "The erina diet of snakes and venomous insects has made them hardy. You have advantage on saving throws against poison, and you have resistance against poison damage.", - "type": null, - "race": "erina" - } -}, -{ - "model": "api_v2.trait", - "pk": 171, - "fields": { - "name": "Spines", - "desc": "Erina grow needle-sharp spines in small clusters atop their heads and along their backs. While you are grappling a creature or while a creature is grappling you, the creature takes 1d4 piercing damage at the start of your turn.", - "type": null, - "race": "erina" - } -}, -{ - "model": "api_v2.trait", - "pk": 172, - "fields": { - "name": "Keen Senses", - "desc": "You have proficiency in the Perception skill.", - "type": null, - "race": "erina" - } -}, -{ - "model": "api_v2.trait", - "pk": 173, - "fields": { - "name": "Digger", - "desc": "You have a burrowing speed of 20 feet, but you can use it to move through only earth and sand, not mud, ice, or rock.", - "type": null, - "race": "erina" - } -}, -{ - "model": "api_v2.trait", - "pk": 174, - "fields": { - "name": "Ability Score Increase", - "desc": "Two different ability scores of your choice increase by 1.", - "type": null, - "race": "gearforged" - } -}, -{ - "model": "api_v2.trait", - "pk": 175, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is determined by your Race Chassis.", - "type": null, - "race": "gearforged" - } -}, -{ - "model": "api_v2.trait", - "pk": 176, - "fields": { - "name": "Age", - "desc": "The soul inhabiting a gearforged can be any age. As long as its new body is kept in good repair, there is no known limit to how long it can function.", - "type": null, - "race": "gearforged" - } -}, -{ - "model": "api_v2.trait", - "pk": 177, - "fields": { - "name": "Alignment", - "desc": "No single alignment typifies gearforged, but most gearforged maintain the alignment they had before becoming gearforged.", - "type": null, - "race": "gearforged" - } -}, -{ - "model": "api_v2.trait", - "pk": 178, - "fields": { - "name": "Size", - "desc": "Your size is determined by your Race Chassis.", - "type": null, - "race": "gearforged" - } -}, -{ - "model": "api_v2.trait", - "pk": 179, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common, Machine Speech (a whistling, clicking language that's incomprehensible to non-gearforged), and a language associated with your Race Chassis.", - "type": null, - "race": "gearforged" - } -}, -{ - "model": "api_v2.trait", - "pk": 180, - "fields": { - "name": "Construct Resilience", - "desc": "Your body is constructed, which frees you from some of the limits of fleshand- blood creatures. You have resistance to poison damage, you are immune to disease, and you have advantage on saving throws against being poisoned.", - "type": null, - "race": "gearforged" - } -}, -{ - "model": "api_v2.trait", - "pk": 181, - "fields": { - "name": "Construct Vitality", - "desc": "You don't need to eat, drink, or breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state where you resemble a statue and remain semiconscious for 6 hours a day. During this time, the magic in your soul gem and everwound springs slowly repairs the day's damage to your mechanical body. While in this dormant state, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", - "type": null, - "race": "gearforged" - } -}, -{ - "model": "api_v2.trait", - "pk": 182, - "fields": { - "name": "Living Construct", - "desc": "Your consciousness and soul reside within a soul gem to animate your mechanical body. As such, you are a living creature with some of the benefits and drawbacks of a construct. Though you can regain hit points from spells like cure wounds, you can also be affected by game effects that specifically target constructs, such as the shatter spell. As long as your soul gem remains intact, game effects that raise a creature from the dead work on you as normal, repairing the damaged pieces of your mechanical body (restoring lost sections only if the spell normally restores lost limbs) and returning you to life as a gearforged. Alternatively, if your body is destroyed but your soul gem and memory gears are intact, they can be installed into a new body with a ritual that takes one day and 10,000 gp worth of materials. If your soul gem is destroyed, only a wish spell can restore you to life, and you return as a fully living member of your original race.", - "type": null, - "race": "gearforged" - } -}, -{ - "model": "api_v2.trait", - "pk": 183, - "fields": { - "name": "Race Chassis", - "desc": "Four races are known to create unique gearforged, building mechanical bodies similar in size and shape to their people: dwarf, gnome, human, and kobold. Choose one of these forms.", - "type": null, - "race": "gearforged" - } -}, -{ - "model": "api_v2.trait", - "pk": 184, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 1.", - "type": null, - "race": "dwarf-chassis" - } -}, -{ - "model": "api_v2.trait", - "pk": 185, - "fields": { - "name": "Always Armed", - "desc": "Every dwarf knows that it's better to leave home without pants than without your weapon. Choose a weapon with which you are proficient and that doesn't have the two-handed property. You can integrate this weapon into one of your arms. While the weapon is integrated, you can't be disarmed of it by any means, though you can use an action to remove the weapon. You can draw or sheathe the weapon as normal, the weapon folding into or springing from your arm instead of a sheath. While the integrated weapon is drawn in this way, it is considered held in that arm's hand, which can't be used for other actions such as casting spells. You can integrate a new weapon or replace an integrated weapon as part of a short or long rest. You can have up to two weapons integrated at a time, one per arm. You have advantage on Dexterity (Sleight of Hand) checks to conceal an integrated weapon.", - "type": null, - "race": "dwarf-chassis" - } -}, -{ - "model": "api_v2.trait", - "pk": 186, - "fields": { - "name": "Remembered Training", - "desc": "You remember some of your combat training from your previous life. You have proficiency with two martial weapons of your choice and with light and medium armor.", - "type": null, - "race": "dwarf-chassis" - } -}, -{ - "model": "api_v2.trait", - "pk": 187, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 1.", - "type": null, - "race": "gnome-chassis" - } -}, -{ - "model": "api_v2.trait", - "pk": 188, - "fields": { - "name": "Mental Fortitude", - "desc": "When creating their first gearforged, gnome engineers put their efforts toward ensuring that the gnomish mind remained a mental fortress, though they were unable to fully replicate the gnomish mind's resilience once transferred to a soul gem. Choose Intelligence, Wisdom, or Charisma. You have advantage on saving throws made with that ability score against magic.", - "type": null, - "race": "gnome-chassis" - } -}, -{ - "model": "api_v2.trait", - "pk": 189, - "fields": { - "name": "Quick Fix", - "desc": "When you are below half your hit point maximum, you can use a bonus action to apply a quick patch up to your damaged body. You gain temporary hit points equal to your proficiency bonus. You can't use this trait again until you finish a short or long rest.", - "type": null, - "race": "gnome-chassis" - } -}, -{ - "model": "api_v2.trait", - "pk": 190, - "fields": { - "name": "Ability Score Increase", - "desc": "One ability score of your choice increases by 1.", - "type": null, - "race": "human-chassis" - } -}, -{ - "model": "api_v2.trait", - "pk": 191, - "fields": { - "name": "Adaptable Acumen", - "desc": "You gain proficiency in two skills or tools of your choice. Choose one of those skills or tools or another skill or tool proficiency you have. Your proficiency bonus is doubled for any ability check you make that uses the chosen skill or tool.", - "type": null, - "race": "human-chassis" - } -}, -{ - "model": "api_v2.trait", - "pk": 192, - "fields": { - "name": "Inspired Ingenuity", - "desc": "When you roll a 9 or lower on the d20 for an ability check, you can use a reaction to change the roll to a 10. You can't use this trait again until you finish a short or long rest.", - "type": null, - "race": "human-chassis" - } -}, -{ - "model": "api_v2.trait", - "pk": 193, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 1.", - "type": null, - "race": "kobold-chassis" - } -}, -{ - "model": "api_v2.trait", - "pk": 194, - "fields": { - "name": "Clutch Aide", - "desc": "Kobolds spend their lives alongside their clutchmates, both those hatched around the same time as them and those they choose later in life, and you retain much of this group-oriented intuition. You can take the Help action as a bonus action.", - "type": null, - "race": "kobold-chassis" - } -}, -{ - "model": "api_v2.trait", - "pk": 195, - "fields": { - "name": "Resourceful", - "desc": "If you have at least one set of tools, you can cobble together one set of makeshift tools of a different type with 1 minute of work. For example, if you have cook's utensils, you can use them to create a temporary set of thieves' tools. The makeshift tools last for 10 minutes then collapse into their component parts, returning your tools to their normal forms. While the makeshift tools exist, you can't use the set of tools you used to create the makeshift tools. At the GM's discretion, you might not be able to replicate some tools, such as an alchemist's alembic or a disguise kit's cosmetics. A creature other than you that uses the makeshift tools has disadvantage on the check.", - "type": null, - "race": "kobold-chassis" - } -}, -{ - "model": "api_v2.trait", - "pk": 196, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", - "type": null, - "race": "minotaur" - } -}, -{ - "model": "api_v2.trait", - "pk": 197, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "race": "minotaur" - } -}, -{ - "model": "api_v2.trait", - "pk": 198, - "fields": { - "name": "Darkvision", - "desc": "You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "minotaur" - } -}, -{ - "model": "api_v2.trait", - "pk": 199, - "fields": { - "name": "Age", - "desc": "Minotaurs age at roughly the same rate as humans but mature 3 years earlier. Childhood ends around the age of 10 and adulthood is celebrated at 15.", - "type": null, - "race": "minotaur" - } -}, -{ - "model": "api_v2.trait", - "pk": 200, - "fields": { - "name": "Alignment", - "desc": "Minotaurs possess a wide range of alignments, just as humans do. Mixing a love for personal freedom and respect for history and tradition, the majority of minotaurs fall into neutral alignments.", - "type": null, - "race": "minotaur" - } -}, -{ - "model": "api_v2.trait", - "pk": 201, - "fields": { - "name": "Size", - "desc": "Adult males can reach a height of 7 feet, with females averaging 3 inches shorter. Your size is Medium.", - "type": null, - "race": "minotaur" - } -}, -{ - "model": "api_v2.trait", - "pk": 202, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Minotaur.", - "type": null, - "race": "minotaur" - } -}, -{ - "model": "api_v2.trait", - "pk": 203, - "fields": { - "name": "Natural Attacks", - "desc": "Your horns are sturdy and sharp. Your horns are a natural melee weapon, which you can use to make unarmed strikes. When you hit with your horns, they deal piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", - "type": null, - "race": "minotaur" - } -}, -{ - "model": "api_v2.trait", - "pk": 204, - "fields": { - "name": "Charge", - "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a horn attack in the same turn, you deal an extra 1d6 piercing damage and you can shove the target up to 5 feet as a bonus action. At 11th level, when you shove a creature with Charge, you can push it up to 10 feet instead. You can use this trait a number of times per day equal to your Constitution modifier (minimum of once), and you regain all expended uses when you finish a long rest.", - "type": null, - "race": "minotaur" - } -}, -{ - "model": "api_v2.trait", - "pk": 205, - "fields": { - "name": "Labyrinth Sense", - "desc": "You can retrace without error any path you have previously taken, with no ability check.", - "type": null, - "race": "minotaur" - } -}, -{ - "model": "api_v2.trait", - "pk": 210, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 2, and your Strength score increases by 1.", - "type": null, - "race": "bhain-kwai" - } -}, -{ - "model": "api_v2.trait", - "pk": 211, - "fields": { - "name": "Strong Back", - "desc": "Your carrying capacity is your Strength score multiplied by 20, instead of by 15.", - "type": null, - "race": "bhain-kwai" - } -}, -{ - "model": "api_v2.trait", - "pk": 212, - "fields": { - "name": "Wetland Dweller", - "desc": "You are adapted to your home terrain. Difficult terrain composed of mud or from wading through water up to waist deep doesn't cost you extra movement. You have a swimming speed of 25 feet.", - "type": null, - "race": "bhain-kwai" - } -}, -{ - "model": "api_v2.trait", - "pk": 213, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 2, and your Constitution score increases by 1.", - "type": null, - "race": "boghaid" - } -}, -{ - "model": "api_v2.trait", - "pk": 214, - "fields": { - "name": "Highlander", - "desc": "You are adapted to life at high altitudes, and you suffer no ill effects or penalties from elevations above 8,000 feet.", - "type": null, - "race": "boghaid" - } -}, -{ - "model": "api_v2.trait", - "pk": 215, - "fields": { - "name": "Storied Culture", - "desc": "You have proficiency in the Performance skill, and you gain proficiency with one of the following musical instruments: bagpipes, drum, horn, or shawm.", - "type": null, - "race": "boghaid" - } -}, -{ - "model": "api_v2.trait", - "pk": 216, - "fields": { - "name": "Wooly", - "desc": "Your thick, wooly coat of hair keeps you warm, allowing you to function in cold weather without special clothing or gear. You have advantage on saving throws against spells and other effects that deal cold damage.", - "type": null, - "race": "boghaid" - } -}, -{ - "model": "api_v2.trait", - "pk": 217, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 2.", - "type": null, - "race": "mushroomfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 218, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "race": "mushroomfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 219, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to life underground, you can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "mushroomfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 220, - "fields": { - "name": "Age", - "desc": "Mushroomfolk reach maturity by the age of 5 and rarely live longer than 50 years.", - "type": null, - "race": "mushroomfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 221, - "fields": { - "name": "Alignment", - "desc": "The limited interaction mushroomfolk have with other creatures leaves them with a fairly neutral view of the world in terms of good and evil, while their societal structure makes them more prone to law than chaos.", - "type": null, - "race": "mushroomfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 222, - "fields": { - "name": "Size", - "desc": "A mushroomfolk's size is determined by its subrace.", - "type": null, - "race": "mushroomfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 223, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Mushroomfolk and your choice of Common or Undercommon.", - "type": null, - "race": "mushroomfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 224, - "fields": { - "name": "Fungoid Form", - "desc": "You are a humanoid, though the fungal nature of your body and your unique diet of decayed vegetable and animal matter marks you with some plant-like characteristics. You have advantage on saving throws against poison, and you have resistance to poison damage. In addition, you are immune to disease.", - "type": null, - "race": "mushroomfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 225, - "fields": { - "name": "Hardy Survivor", - "desc": "Your upbringing in mushroomfolk society has taught you how to defend yourself and find food. You have proficiency in the Survival skill.", - "type": null, - "race": "mushroomfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 226, - "fields": { - "name": "Subrace", - "desc": "Three subraces of mushroomfolk are known to wander the world: acid cap, favored, and morel. Choose one of these subraces.", - "type": null, - "race": "mushroomfolk" - } -}, -{ - "model": "api_v2.trait", - "pk": 227, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 1.", - "type": null, - "race": "acid-cap" - } -}, -{ - "model": "api_v2.trait", - "pk": 228, - "fields": { - "name": "Acid Cap Resistance", - "desc": "You have resistance to acid damage.", - "type": null, - "race": "acid-cap" - } -}, -{ - "model": "api_v2.trait", - "pk": 229, - "fields": { - "name": "Acid Spores", - "desc": "When you are hit by a melee weapon attack within 5 feet of you, you can use your reaction to emit acidic spores. If you do, the attacker takes acid damage equal to half your level (rounded up). You can use your acid spores a number of times equal to your Constitution modifier (a minimum of once). You regain any expended uses when you finish a long rest.", - "type": null, - "race": "acid-cap" - } -}, -{ - "model": "api_v2.trait", - "pk": 230, - "fields": { - "name": "Clan Athlete", - "desc": "You have proficiency in the Athletics skill.", - "type": null, - "race": "acid-cap" - } -}, -{ - "model": "api_v2.trait", - "pk": 231, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "race": "favored" - } -}, -{ - "model": "api_v2.trait", - "pk": 232, - "fields": { - "name": "Blessed Help", - "desc": "Your intuition and connection to your allies allows you to assist and protect them. You know the spare the dying cantrip. When you reach 3rd level, you can cast the bless spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", - "type": null, - "race": "favored" - } -}, -{ - "model": "api_v2.trait", - "pk": 233, - "fields": { - "name": "Clan Leader", - "desc": "You have proficiency in the Persuasion skill.", - "type": null, - "race": "favored" - } -}, -{ - "model": "api_v2.trait", - "pk": 234, - "fields": { - "name": "Restful Spores", - "desc": "If you or any friendly creatures within 30 feet of you regain hit points at the end of a short rest by spending one or more Hit Dice, each of those creatures regains additional hit points equal to your proficiency bonus. Once a creature benefits from your restful spores, it can't do so again until it finishes a long rest.", - "type": null, - "race": "favored" - } -}, -{ - "model": "api_v2.trait", - "pk": 235, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 1.", - "type": null, - "race": "morel" - } -}, -{ - "model": "api_v2.trait", - "pk": 236, - "fields": { - "name": "Adaptable Camouflage", - "desc": "If you spend at least 1 minute in an environment with ample naturally occurring plants or fungi, such as a grassland, a forest, or an underground fungal cavern, you can adjust your natural coloration to blend in with the local plant life. If you do so, you have advantage on Dexterity (Stealth) checks for the next 24 hours while in that environment.", - "type": null, - "race": "morel" - } -}, -{ - "model": "api_v2.trait", - "pk": 237, - "fields": { - "name": "Clan Scout", - "desc": "You have proficiency in the Stealth skill.", - "type": null, - "race": "morel" - } -}, -{ - "model": "api_v2.trait", - "pk": 238, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 2, and your Intelligence score increases by 1.", - "type": null, - "race": "satarre" - } -}, -{ - "model": "api_v2.trait", - "pk": 239, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "race": "satarre" - } -}, -{ - "model": "api_v2.trait", - "pk": 240, - "fields": { - "name": "Darkvision", - "desc": "Thanks to your dark planar parentage, you have superior vision in darkness. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "satarre" - } -}, -{ - "model": "api_v2.trait", - "pk": 241, - "fields": { - "name": "Age", - "desc": "Satarre grow quickly, walking soon after hatching and reaching the development of a 15-year-old human by age 6. They maintain the same appearance until about 50, then begin a rapid decline. Satarre often die violently, but those who live longer survive to no more than 65 years of age.", - "type": null, - "race": "satarre" - } -}, -{ - "model": "api_v2.trait", - "pk": 242, - "fields": { - "name": "Alignment", - "desc": "Satarre are born with a tendency toward evil akin to that of rapacious dragons, and, when raised among other satarre or darakhul, they are usually evil. Those raised among other cultures tend toward the norm for those cultures.", - "type": null, - "race": "satarre" - } -}, -{ - "model": "api_v2.trait", - "pk": 243, - "fields": { - "name": "Size", - "desc": "Satarre are tall but thin, from 6 to 7 feet tall with peculiar, segmented limbs. Your size is Medium.", - "type": null, - "race": "satarre" - } -}, -{ - "model": "api_v2.trait", - "pk": 244, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and one of the following: Abyssal, Infernal, or Void Speech. Void Speech is a language of dark gods and ancient blasphemies, and the mere sound of its sibilant tones makes many other creatures quite uncomfortable.", - "type": null, - "race": "satarre" - } -}, -{ - "model": "api_v2.trait", - "pk": 245, - "fields": { - "name": "A Friend to Death", - "desc": "You have resistance to necrotic damage.", - "type": null, - "race": "satarre" - } -}, -{ - "model": "api_v2.trait", - "pk": 246, - "fields": { - "name": "Keeper of Secrets", - "desc": "You have proficiency in the Arcana skill, and you have advantage on Intelligence (Arcana) checks related to the planes and planar travel. In addition, you have proficiency in one of the following skills of your choice: History, Insight, and Religion.", - "type": null, - "race": "satarre" - } -}, -{ - "model": "api_v2.trait", - "pk": 247, - "fields": { - "name": "Carrier of Rot", - "desc": "You can use your action to inflict rot on a creature you can see within 10 feet of you. The creature must make a Constitution saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 1d4 necrotic damage on a failed save, and half as much damage on a successful one. A creature that fails the saving throw also rots for 1 minute. A rotting creature takes 1d4 necrotic damage at the end of each of its turns. The target or a creature within 5 feet of it can use an action to excise the rot with a successful Wisdom (Medicine) check. The DC for the check equals the rot's Constitution saving throw DC. The rot also disappears if the target receives magical healing. The damage for the initial action and the rotting increases to 2d4 at 6th level, 3d4 at 11th level, and 4d4 at 16th level. After you use your Carrier of Rot trait, you can't use it again until you complete a short or long rest.", - "type": null, - "race": "satarre" - } -}, -{ - "model": "api_v2.trait", - "pk": 248, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 1.", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 249, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is determined by your Heritage Subrace.", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 250, - "fields": { - "name": "Darkvision", - "desc": "You can see in dim light within 60 feet as though it were bright light and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 251, - "fields": { - "name": "Age", - "desc": "An upper limit of darakhul age has never been discovered; most darakhul die violently.", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 252, - "fields": { - "name": "Alignment", - "desc": "Your alignment does not change when you become a darakhul, but most darakhul have a strong draw toward evil.", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 253, - "fields": { - "name": "Size", - "desc": "Your size is determined by your Heritage Subrace.", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 254, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common, Darakhul, and a language associated with your Heritage Subrace.", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 255, - "fields": { - "name": "Hunger for Flesh", - "desc": "You must consume 1 pound of raw meat each day or suffer the effects of starvation. If you go 24 hours without such a meal, you gain one level of exhaustion. While you have any levels of exhaustion from this trait, you can't regain hit points or remove levels of exhaustion until you spend at least 1 hour consuming 10 pounds of raw meat.", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 256, - "fields": { - "name": "Imperfect Undeath", - "desc": "You transitioned into undeath, but your transition was imperfect. Though you are a humanoid, you are susceptible to effects that target undead. You can regain hit points from spells like cure wounds, but you can also be affected by game effects that specifically target undead, such as a cleric's Turn Undead feature. Game effects that raise a creature from the dead work on you as normal, but they return you to life as a darakhul. A true resurrection or wish spell can restore you to life as a fully living member of your original race.", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 257, - "fields": { - "name": "Powerful Jaw", - "desc": "Your heavy jaw is powerful enough to crush bones to powder. Your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 258, - "fields": { - "name": "Sunlight Sensitivity", - "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 259, - "fields": { - "name": "Undead Resilience", - "desc": "You are infused with the dark energy of undeath, which frees you from some frailties that plague most creatures. You have resistance to necrotic damage and poison damage, you are immune to disease, and you have advantage on saving throws against being charmed or poisoned. When you finish a short rest, you can reduce your exhaustion level by 1, provided you have ingested at least 1 pound of raw meat in the last 24 hours (see Hunger for Flesh).", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 260, - "fields": { - "name": "Undead Vitality", - "desc": "You don't need to breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state that resembles death, remaining semiconscious, for 6 hours a day. While dormant, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 261, - "fields": { - "name": "Heritage Subrace", - "desc": "You were something else before you became a darakhul. This heritage determines some of your traits. Choose one Heritage Subrace below and apply the listed traits.", - "type": null, - "race": "darakhul" - } -}, -{ - "model": "api_v2.trait", - "pk": 262, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 2.", - "type": null, - "race": "derro-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 263, - "fields": { - "name": "Calculating Insanity", - "desc": "The insanity of your race was compressed into a cold, hard brilliance when you took on your darakhul form. These flashes of brilliance come to you at unexpected moments. You know the true strike cantrip. Charisma is your spellcasting ability for it. You can cast true strike as a bonus action a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest.", - "type": null, - "race": "derro-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 264, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2.", - "type": null, - "race": "dragonborn-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 265, - "fields": { - "name": "Corrupted Bite", - "desc": "The inherent breath weapon of your draconic heritage is corrupted by the necrotic energy of your new darakhul form. Instead of forming a line or cone, your breath weapon now oozes out of your ghoulish maw. As a bonus action, you breathe necrotic energy onto your fangs and make one bite attack. If the attack hits, it deals extra necrotic damage equal to your level. You can't use this trait again until you finish a long rest.", - "type": null, - "race": "dragonborn-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 266, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "race": "drow-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 267, - "fields": { - "name": "Poison Bite", - "desc": "When you hit with your bite attack, you can release venom into your foe. If you do, your bite deals an extra 1d6 poison damage. The damage increases to 3d6 at 11th level. After you release this venom into a creature, you can't do so again until you finish a short or long rest.", - "type": null, - "race": "drow-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 268, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdon score increases by 2.", - "type": null, - "race": "dwarf-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 269, - "fields": { - "name": "Dwarven Stoutness", - "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", - "type": null, - "race": "dwarf-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 270, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "race": "elf-shadow-fey-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 271, - "fields": { - "name": "Supernatural Senses", - "desc": "Your keen elven senses are honed even more by the power of undeath and the hunger within you. You can now smell when blood is in the air. You have proficiency in the Perception skill, and you have advantage on Wisdom (Perception) checks to notice or find a creature within 30 feet of you that doesn't have all of its hit points.", - "type": null, - "race": "elf-shadow-fey-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 272, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "race": "gnome-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 273, - "fields": { - "name": "Magical Hunger", - "desc": "When a creature you can see within 30 feet of you casts a spell, you can use your reaction to consume the spell's residual magic. Your consumption doesn't counter or otherwise affect the spell or the spellcaster. When you consume this residual magic, you gain temporary hit points (minimum of 1) equal to your Constitution modifier, and you can't use this trait again until you finish a short or long rest.", - "type": null, - "race": "gnome-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 274, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "race": "halfling-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 275, - "fields": { - "name": "Ill Fortune", - "desc": "Your uncanny halfling luck has taken a dark turn since your conversion to an undead creature. When a creature rolls a 20 on the d20 for an attack roll against you, the creature must reroll the attack and use the new roll. If the second attack roll misses you, the attacking creature takes necrotic damage equal to twice your Constitution modifier (minimum of 2).", - "type": null, - "race": "halfling-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 276, - "fields": { - "name": "Ability Score Increase", - "desc": "One ability score of your choice, other than Constitution, increases by 2.", - "type": null, - "race": "human-half-elf-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 277, - "fields": { - "name": "Versatility", - "desc": "The training and experience of your early years was not lost when you became a darakhul. You have proficiency in two skills and one tool of your choice.", - "type": null, - "race": "human-half-elf-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 278, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "race": "kobold-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 279, - "fields": { - "name": "Devious Bite", - "desc": "When you hit a creature with your bite attack and you have advantage on the attack roll, your bite deals an extra 1d4 piercing damage.", - "type": null, - "race": "kobold-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 280, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "race": "ravenfolk-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 281, - "fields": { - "name": "Sudden Bite and Flight", - "desc": "If you surprise a creature during the first round of combat, you can make a bite attack as a bonus action. If it hits, you can immediately take the Dodge action as a reaction.", - "type": null, - "race": "ravenfolk-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 282, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "race": "tiefling-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 283, - "fields": { - "name": "Necrotic Rebuke", - "desc": "When you are hit by a weapon attack, you can use a reaction to envelop the attacker in shadowy flames. The attacker takes necrotic damage equal to your Charisma modifier (minimum of 1), and it has disadvantage on attack rolls until the end of its next turn. You must finish a long rest before you can use this feature again.", - "type": null, - "race": "tiefling-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 284, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2.", - "type": null, - "race": "trollkin-heritage" - } -}, -{ - "model": "api_v2.trait", - "pk": 285, - "fields": { - "name": "Regenerative Bite", - "desc": "The regenerative powers of your trollkin heritage are less potent than they were in life and need a little help. As an action, you can make a bite attack against a creature that isn't undead or a construct. On a hit, you regain hit points (minimum of 1) equal to half the amount of damage dealt. Once you use this trait, you can't use it again until you finish a long rest.", - "type": null, - "race": "trollkin-heritage" - } -} -] diff --git a/data/v2/wizards-of-the-coast/srd/Trait.json b/data/v2/wizards-of-the-coast/srd/Trait.json deleted file mode 100644 index cdb5127d..00000000 --- a/data/v2/wizards-of-the-coast/srd/Trait.json +++ /dev/null @@ -1,932 +0,0 @@ -[ -{ - "model": "api_v2.trait", - "pk": 5, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", - "type": null, - "race": "half-orc" - } -}, -{ - "model": "api_v2.trait", - "pk": 6, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "race": "half-orc" - } -}, -{ - "model": "api_v2.trait", - "pk": 7, - "fields": { - "name": "Darkvision", - "desc": "Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "half-orc" - } -}, -{ - "model": "api_v2.trait", - "pk": 8, - "fields": { - "name": "Age", - "desc": "Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.", - "type": null, - "race": "half-orc" - } -}, -{ - "model": "api_v2.trait", - "pk": 9, - "fields": { - "name": "Alignment", - "desc": "Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.", - "type": null, - "race": "half-orc" - } -}, -{ - "model": "api_v2.trait", - "pk": 10, - "fields": { - "name": "Size", - "desc": "Half-orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.", - "type": null, - "race": "half-orc" - } -}, -{ - "model": "api_v2.trait", - "pk": 11, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.", - "type": null, - "race": "half-orc" - } -}, -{ - "model": "api_v2.trait", - "pk": 12, - "fields": { - "name": "Menacing", - "desc": "You gain proficiency in the Intimidation skill.", - "type": null, - "race": "half-orc" - } -}, -{ - "model": "api_v2.trait", - "pk": 13, - "fields": { - "name": "Relentless Endurance", - "desc": "When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.", - "type": null, - "race": "half-orc" - } -}, -{ - "model": "api_v2.trait", - "pk": 14, - "fields": { - "name": "Savage Attacks", - "desc": "When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.", - "type": null, - "race": "half-orc" - } -}, -{ - "model": "api_v2.trait", - "pk": 15, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 1, and your Charisma score increases by 2.", - "type": null, - "race": "tiefling" - } -}, -{ - "model": "api_v2.trait", - "pk": 16, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "race": "tiefling" - } -}, -{ - "model": "api_v2.trait", - "pk": 17, - "fields": { - "name": "Darkvision", - "desc": "Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "tiefling" - } -}, -{ - "model": "api_v2.trait", - "pk": 18, - "fields": { - "name": "Age", - "desc": "Tieflings mature at the same rate as humans but live a few years longer.", - "type": null, - "race": "tiefling" - } -}, -{ - "model": "api_v2.trait", - "pk": 19, - "fields": { - "name": "Alignment", - "desc": "Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.", - "type": null, - "race": "tiefling" - } -}, -{ - "model": "api_v2.trait", - "pk": 20, - "fields": { - "name": "Size", - "desc": "Tieflings are about the same size and build as humans. Your size is Medium.", - "type": null, - "race": "tiefling" - } -}, -{ - "model": "api_v2.trait", - "pk": 21, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Infernal.", - "type": null, - "race": "tiefling" - } -}, -{ - "model": "api_v2.trait", - "pk": 22, - "fields": { - "name": "Hellish Resistance", - "desc": "You have resistance to fire damage.", - "type": null, - "race": "tiefling" - } -}, -{ - "model": "api_v2.trait", - "pk": 23, - "fields": { - "name": "Infernal Legacy", - "desc": "You know the thaumaturgy cantrip. When you reach 3rd level, you can cast the hellish rebuke spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the darkness spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", - "type": null, - "race": "tiefling" - } -}, -{ - "model": "api_v2.trait", - "pk": 24, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.", - "type": null, - "race": "half-elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 25, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "race": "half-elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 26, - "fields": { - "name": "Darkvision", - "desc": "Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "half-elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 27, - "fields": { - "name": "Age", - "desc": "Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.", - "type": null, - "race": "half-elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 28, - "fields": { - "name": "Alignment", - "desc": "Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.", - "type": null, - "race": "half-elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 29, - "fields": { - "name": "Size", - "desc": "Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.", - "type": null, - "race": "half-elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 30, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common, Elvish, and one extra language of your choice.", - "type": null, - "race": "half-elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 31, - "fields": { - "name": "Fey Ancestry", - "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", - "type": null, - "race": "half-elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 32, - "fields": { - "name": "Skill Versatility", - "desc": "You gain proficiency in two skills of your choice.", - "type": null, - "race": "half-elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 33, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "race": "gnome" - } -}, -{ - "model": "api_v2.trait", - "pk": 34, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 25 feet.", - "type": null, - "race": "gnome" - } -}, -{ - "model": "api_v2.trait", - "pk": 35, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "gnome" - } -}, -{ - "model": "api_v2.trait", - "pk": 36, - "fields": { - "name": "Age", - "desc": "Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.", - "type": null, - "race": "gnome" - } -}, -{ - "model": "api_v2.trait", - "pk": 37, - "fields": { - "name": "Alignment", - "desc": "Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good-hearted, and even the tricksters among them are more playful than vicious.", - "type": null, - "race": "gnome" - } -}, -{ - "model": "api_v2.trait", - "pk": 38, - "fields": { - "name": "Size", - "desc": "Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.", - "type": null, - "race": "gnome" - } -}, -{ - "model": "api_v2.trait", - "pk": 39, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.", - "type": null, - "race": "gnome" - } -}, -{ - "model": "api_v2.trait", - "pk": 40, - "fields": { - "name": "Gnome Cunning", - "desc": "You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.", - "type": null, - "race": "gnome" - } -}, -{ - "model": "api_v2.trait", - "pk": 41, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 1.", - "type": null, - "race": "rock-gnome" - } -}, -{ - "model": "api_v2.trait", - "pk": 42, - "fields": { - "name": "Artificer's Lore", - "desc": "Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.", - "type": null, - "race": "rock-gnome" - } -}, -{ - "model": "api_v2.trait", - "pk": 43, - "fields": { - "name": "Tinker", - "desc": "You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.\r\n\r\nWhen you create a device, choose one of the following options:\r\n* _Clockwork Toy._ This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.\r\n* _Fire Starter._ The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.\r\n* _Music Box._ When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.", - "type": null, - "race": "rock-gnome" - } -}, -{ - "model": "api_v2.trait", - "pk": 44, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2, and your Charisma score increases by 1.", - "type": null, - "race": "dragonborn" - } -}, -{ - "model": "api_v2.trait", - "pk": 45, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "race": "dragonborn" - } -}, -{ - "model": "api_v2.trait", - "pk": 46, - "fields": { - "name": "Age", - "desc": "Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.", - "type": null, - "race": "dragonborn" - } -}, -{ - "model": "api_v2.trait", - "pk": 47, - "fields": { - "name": "Alignment", - "desc": "Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.", - "type": null, - "race": "dragonborn" - } -}, -{ - "model": "api_v2.trait", - "pk": 48, - "fields": { - "name": "Size", - "desc": "Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.", - "type": null, - "race": "dragonborn" - } -}, -{ - "model": "api_v2.trait", - "pk": 49, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.", - "type": null, - "race": "dragonborn" - } -}, -{ - "model": "api_v2.trait", - "pk": 50, - "fields": { - "name": "Draconic Ancestry table", - "desc": "| Dragon | Damage Type | Breath Weapon |\r\n|--------------|-------------------|------------------------------|\r\n| Black | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Blue | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Brass | Fire | 5 by 30 ft. line (Dex. save) |\r\n| Bronze | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Copper | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Gold | Fire | 15 ft. cone (Dex. save) |\r\n| Green | Poison | 15 ft. cone (Con. save) |\r\n| Red | Fire | 15 ft. cone (Dex. save) |\r\n| Silver | Cold | 15 ft. cone (Con. save) |\r\n| White | Cold | 15 ft. cone (Con. save) |", - "type": null, - "race": "dragonborn" - } -}, -{ - "model": "api_v2.trait", - "pk": 51, - "fields": { - "name": "Draconic Ancestry", - "desc": "You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.", - "type": null, - "race": "dragonborn" - } -}, -{ - "model": "api_v2.trait", - "pk": 52, - "fields": { - "name": "Breath Weapon", - "desc": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.\r\nWhen you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.", - "type": null, - "race": "dragonborn" - } -}, -{ - "model": "api_v2.trait", - "pk": 53, - "fields": { - "name": "Damage Resistance", - "desc": "You have resistance to the damage type associated with your draconic ancestry.", - "type": null, - "race": "dragonborn" - } -}, -{ - "model": "api_v2.trait", - "pk": 54, - "fields": { - "name": "Ability Score Increase", - "desc": "Your ability scores each increase by 1.", - "type": null, - "race": "human" - } -}, -{ - "model": "api_v2.trait", - "pk": 55, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "race": "human" - } -}, -{ - "model": "api_v2.trait", - "pk": 56, - "fields": { - "name": "Age", - "desc": "Humans reach adulthood in their late teens and live less than a century.", - "type": null, - "race": "human" - } -}, -{ - "model": "api_v2.trait", - "pk": 57, - "fields": { - "name": "Alignment", - "desc": "Humans tend toward no particular alignment. The best and the worst are found among them.", - "type": null, - "race": "human" - } -}, -{ - "model": "api_v2.trait", - "pk": 58, - "fields": { - "name": "Size", - "desc": "Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.", - "type": null, - "race": "human" - } -}, -{ - "model": "api_v2.trait", - "pk": 59, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.", - "type": null, - "race": "human" - } -}, -{ - "model": "api_v2.trait", - "pk": 60, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "race": "halfling" - } -}, -{ - "model": "api_v2.trait", - "pk": 61, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 25 feet.", - "type": null, - "race": "halfling" - } -}, -{ - "model": "api_v2.trait", - "pk": 62, - "fields": { - "name": "Age", - "desc": "A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.", - "type": null, - "race": "halfling" - } -}, -{ - "model": "api_v2.trait", - "pk": 63, - "fields": { - "name": "Alignment", - "desc": "Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.", - "type": null, - "race": "halfling" - } -}, -{ - "model": "api_v2.trait", - "pk": 64, - "fields": { - "name": "Size", - "desc": "Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.", - "type": null, - "race": "halfling" - } -}, -{ - "model": "api_v2.trait", - "pk": 65, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.", - "type": null, - "race": "halfling" - } -}, -{ - "model": "api_v2.trait", - "pk": 66, - "fields": { - "name": "Lucky", - "desc": "When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.", - "type": null, - "race": "halfling" - } -}, -{ - "model": "api_v2.trait", - "pk": 67, - "fields": { - "name": "Brave", - "desc": "You have advantage on saving throws against being frightened.", - "type": null, - "race": "halfling" - } -}, -{ - "model": "api_v2.trait", - "pk": 68, - "fields": { - "name": "Halfling Nimbleness", - "desc": "You can move through the space of any creature that is of a size larger than yours.", - "type": null, - "race": "halfling" - } -}, -{ - "model": "api_v2.trait", - "pk": 69, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "race": "lightfoot" - } -}, -{ - "model": "api_v2.trait", - "pk": 70, - "fields": { - "name": "Naturally Stealthy", - "desc": "You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", - "type": null, - "race": "lightfoot" - } -}, -{ - "model": "api_v2.trait", - "pk": 71, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "race": "elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 72, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "race": "elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 73, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 74, - "fields": { - "name": "Age", - "desc": "Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.", - "type": null, - "race": "elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 75, - "fields": { - "name": "Alignment", - "desc": "Elves love freedom, variety, and self-­expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others’ freedom as well as their own, and they are more often good than not.", - "type": null, - "race": "elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 76, - "fields": { - "name": "Size", - "desc": "Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.", - "type": null, - "race": "elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 77, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.", - "type": null, - "race": "elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 78, - "fields": { - "name": "Keen Senses", - "desc": "You have proficiency in the Perception skill.", - "type": null, - "race": "elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 79, - "fields": { - "name": "Fey Ancestry", - "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", - "type": null, - "race": "elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 80, - "fields": { - "name": "Trance", - "desc": "Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is “trance.”) While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", - "type": null, - "race": "elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 81, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 1.", - "type": null, - "race": "high-elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 82, - "fields": { - "name": "Elf Weapon Training", - "desc": "You have proficiency with the longsword, shortsword, shortbow, and longbow.", - "type": null, - "race": "high-elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 83, - "fields": { - "name": "Cantrip", - "desc": "You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.", - "type": null, - "race": "high-elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 84, - "fields": { - "name": "Extra Language", - "desc": "You can speak, read, and write one extra language of your choice.", - "type": null, - "race": "high-elf" - } -}, -{ - "model": "api_v2.trait", - "pk": 85, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 2.", - "type": null, - "race": "dwarf" - } -}, -{ - "model": "api_v2.trait", - "pk": 86, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.", - "type": null, - "race": "dwarf" - } -}, -{ - "model": "api_v2.trait", - "pk": 87, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "race": "dwarf" - } -}, -{ - "model": "api_v2.trait", - "pk": 88, - "fields": { - "name": "Age", - "desc": "Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.", - "type": null, - "race": "dwarf" - } -}, -{ - "model": "api_v2.trait", - "pk": 89, - "fields": { - "name": "Alignment", - "desc": "Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.", - "type": null, - "race": "dwarf" - } -}, -{ - "model": "api_v2.trait", - "pk": 90, - "fields": { - "name": "Size", - "desc": "Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.", - "type": null, - "race": "dwarf" - } -}, -{ - "model": "api_v2.trait", - "pk": 91, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.", - "type": null, - "race": "dwarf" - } -}, -{ - "model": "api_v2.trait", - "pk": 92, - "fields": { - "name": "Dwarven Resilience", - "desc": "You have advantage on saving throws against poison, and you have resistance against poison damage.", - "type": null, - "race": "dwarf" - } -}, -{ - "model": "api_v2.trait", - "pk": 93, - "fields": { - "name": "Dwarven Combat Training", - "desc": "You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.", - "type": null, - "race": "dwarf" - } -}, -{ - "model": "api_v2.trait", - "pk": 94, - "fields": { - "name": "Tool Proficiency", - "desc": "You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.", - "type": null, - "race": "dwarf" - } -}, -{ - "model": "api_v2.trait", - "pk": 95, - "fields": { - "name": "Stonecunning", - "desc": "Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.", - "type": null, - "race": "dwarf" - } -}, -{ - "model": "api_v2.trait", - "pk": 96, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 1.", - "type": null, - "race": "hill-dwarf" - } -}, -{ - "model": "api_v2.trait", - "pk": 97, - "fields": { - "name": "Dwarven Toughness", - "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", - "type": null, - "race": "hill-dwarf" - } -} -] From 250da465010bcac0759205981d2270593a13e857 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 11:51:17 -0500 Subject: [PATCH 44/84] Fixing internal references. --- data/v2/kobold-press/toh/Race.json | 58 +++++++++++----------- data/v2/wizards-of-the-coast/srd/Race.json | 8 +-- 2 files changed, 33 insertions(+), 33 deletions(-) diff --git a/data/v2/kobold-press/toh/Race.json b/data/v2/kobold-press/toh/Race.json index c9a22fd8..c17eb201 100644 --- a/data/v2/kobold-press/toh/Race.json +++ b/data/v2/kobold-press/toh/Race.json @@ -6,7 +6,7 @@ "name": "Acid Cap", "desc": "You were one of the warriors and guardians of your clan, using your strength and acid spores to protect your clanmates and your territory.", "document": "toh", - "subrace_of": "mushroomfolk" + "subrace_of": "toh_mushroomfolk" } }, { @@ -26,7 +26,7 @@ "name": "Bhain Kwai", "desc": "You are a minotaur adapted to life in the bogs and wetlands of the world.", "document": "toh", - "subrace_of": "minotaur" + "subrace_of": "toh_minotaur" } }, { @@ -36,7 +36,7 @@ "name": "Boghaid", "desc": "You are a minotaur adapted to life in cold climates and high altitudes.", "document": "toh", - "subrace_of": "minotaur" + "subrace_of": "toh_minotaur" } }, { @@ -66,7 +66,7 @@ "name": "Delver", "desc": "You are one of the workers whose labors prop up most of drow society. You were trained from birth to follow orders and serve the collective. You learned your trade well, whether it was building or fighting or erecting the traps that protected passages to your population centers.", "document": "toh", - "subrace_of": "drow" + "subrace_of": "toh_drow" } }, { @@ -86,7 +86,7 @@ "name": "Derro Heritage", "desc": "Your darakhul character was a derro before transforming into a darakhul. For you, the quieting of the otherworldly voices did not bring peace and tranquility. The impulses simply became more focused, and the desire to feast on flesh overwhelmed other urges. The darkness is still there; it just has a new, clearer form.", "document": "toh", - "subrace_of": "darakhul" + "subrace_of": "toh_darakhul" } }, { @@ -96,7 +96,7 @@ "name": "Dragonborn Heritage", "desc": "Your darakhul character was a dragonborn before transforming into a darakhul. The dark power of undeath overwhelmed your elemental nature, replacing it with the foul energy and strength of the undead. Occasionally, your draconic heritage echoes a peal of raw power through your form, but it is quickly converted into necrotic waves.", "document": "toh", - "subrace_of": "darakhul" + "subrace_of": "toh_darakhul" } }, { @@ -116,7 +116,7 @@ "name": "Drow Heritage", "desc": "Your darakhul character was a drow before transforming into a darakhul. Your place within the highly regimented drow society doesn't feel that much different from your new place in the darakhul empires. But an uncertainty buzzes in your mind, and a hunger gnaws at your gut. You are now what you once hated and feared. Does it feel right, or is it something you fight against?", "document": "toh", - "subrace_of": "darakhul" + "subrace_of": "toh_darakhul" } }, { @@ -126,7 +126,7 @@ "name": "Dwarf Chassis", "desc": "The original dwarven gearforged engineers valued function over form, eschewing aesthetics in favor of instilling their chassis with toughness and strength. The chassis' metal face is clearly crafted to look dwarven, but its countenance is entirely unactuated and forged of a dark metal—often brass—sometimes with a lighter-colored mane of hair and a braided beard and mustaches made of fine metal strands. The gearforged's eyes glow a dark turquoise, staring dispassionately with a seemingly blank expression. Armor and helms worn by the gearforged are often styled to appear as if they were integrated into its chassis, making it all-but-impossible to tell where the armor ends and the gearforged begins.", "document": "toh", - "subrace_of": "gearforged" + "subrace_of": "toh_gearforged" } }, { @@ -136,7 +136,7 @@ "name": "Dwarf Heritage", "desc": "Your darakhul character was a dwarf before transforming into a darakhul. The hum of the earth, the tranquility of the stone and the dust, drained from you as the darakhul fever overwhelmed your once-resilient body. The stone is still there, but its touch has gone from a welcome embrace to a cold grip of death. But it's all the same to you now.", "document": "toh", - "subrace_of": "darakhul" + "subrace_of": "toh_darakhul" } }, { @@ -146,7 +146,7 @@ "name": "Elf/Shadow Fey Heritage", "desc": "Your darakhul character was an elf or shadow fey (see Midgard Heroes Handbook) before transforming into a darakhul. The deathly power coursing through you reminds you of the lithe beauty and magic of your former body. If you just use your imagination, the blood tastes like wine once did. The smell of rotting flesh has the bouquet of wildflowers. The moss beneath the surface feels like the leaves of the forest.", "document": "toh", - "subrace_of": "darakhul" + "subrace_of": "toh_darakhul" } }, { @@ -166,7 +166,7 @@ "name": "Far-Touched", "desc": "You grew up firmly ensconced in the mad traditions of the derro, your mind touched by the raw majesty and power of your society's otherworldly deities. Your abilities in other areas have made you more than a typical derro, of course. But no matter how well-trained and skilled you get in other magical or martial arts, the voices of your gods forever reverberate in your ears, driving you forward to do great or terrible things.", "document": "toh", - "subrace_of": "derro" + "subrace_of": "toh_derro" } }, { @@ -176,7 +176,7 @@ "name": "Favored", "desc": "A few special mushroomfolk grow to become shamans, generals, and other types of leaders. Your spores invite cooperation, peace, and healing among your allies. Others look to you for guidance and succor in the harsh underground environs.", "document": "toh", - "subrace_of": "mushroomfolk" + "subrace_of": "toh_mushroomfolk" } }, { @@ -186,7 +186,7 @@ "name": "Fever-Bit", "desc": "You were once a typical drow, then you fell victim to the ravaging claws and teeth of a darakhul. The deadly darakhul fever almost took your life, but, when you were on the verge of succumbing, you rallied and survived. You were changed, however, in ways that even the greatest healers of your people can't fathom. But now that you are immune to darakhul fever, your commanders have a job for you.", "document": "toh", - "subrace_of": "drow" + "subrace_of": "toh_drow" } }, { @@ -206,7 +206,7 @@ "name": "Gnome Chassis", "desc": "Crafted for both exceptional functionality and aesthetic beauty, a gnome chassis' skin is clearly metallic but is meticulously colored to closely match gnomish skin tones, except at the joints, where gears and darker steel pistons are visible. Gnome chassis are almost always bald, with elaborate artistic patterns painted or etched on the face and skull in lieu of hair. Their eyes are vivid and lifelike, as is the chassis' gnomish face, which has a sculpted metal nose and articulated mouth and jaw. The gnome artisans who pioneered the first gearforged chassis saw it as an opportunity to not merely build a better body but to make it a work of art.", "document": "toh", - "subrace_of": "gearforged" + "subrace_of": "toh_gearforged" } }, { @@ -216,7 +216,7 @@ "name": "Gnome Heritage", "desc": "Your darakhul character was a gnome before transforming into a darakhul. The spark of magic that drove you before your transformation still burns inside of you, but now it is a constant ache instead of a source of creation and inspiration. This ache is twisted by your hunger, making you hunger for magic itself.", "document": "toh", - "subrace_of": "darakhul" + "subrace_of": "toh_darakhul" } }, { @@ -226,7 +226,7 @@ "name": "Halfling Heritage", "desc": "Your darakhul character was a halfling before transforming into a darakhul. Everything you loved as a halfling—food, drink, exploration, adventure— still drives you in your undead form; it is simply a more ghoulish form of those pleasures now: raw flesh instead of stew, warm blood instead of cold mead. You still want to explore the dark corners of the world, but now you seek something different.", "document": "toh", - "subrace_of": "darakhul" + "subrace_of": "toh_darakhul" } }, { @@ -236,7 +236,7 @@ "name": "Human Chassis", "desc": "As humans invented the first gearforged, it should be no surprise that the human chassis remains the one that is most frequently encountered. However, it would be a mistake to assume that simply because the original chassis is more commonplace that there is anything common about them. While dwarves, gnomes, and kobolds have made clever additions and changes to the base model, the human chassis remains extremely versatile and is battle-proven.", "document": "toh", - "subrace_of": "gearforged" + "subrace_of": "toh_gearforged" } }, { @@ -246,7 +246,7 @@ "name": "Human/Half-Elf Heritage", "desc": "Your darakhul character was a human or half-elf before transforming into a darakhul. Where there was once light there is now darkness. Where there was once love there is now hunger. You know if the darkness and hunger become all-consuming, you are truly lost. But the powers of your new form are strangely comfortable. How much of your old self is still there, and what can this new form give you that your old one couldn't?", "document": "toh", - "subrace_of": "darakhul" + "subrace_of": "toh_darakhul" } }, { @@ -256,7 +256,7 @@ "name": "Kobold Chassis", "desc": "Kobolds are naturally curious tinkerers, constantly modifying their devices and tools. As such, kobolds, in spite of what many dwarf or gnome engineers might say, were the second race to master the nuances of gearforged creation after studying human gearforged. However, most of these early kobold gearforged no longer exist, as the more draconic forms (homages to the kobolds' draconic masters) proved too alien to the kobold soul gems to maintain stable, long-term connections with the bodies. Kobold engineers have since resolved that problem, and kobold gearforged can be found among many kobold communities, aiding its members and tinkering right alongside their scale-and-blood brethren.", "document": "toh", - "subrace_of": "gearforged" + "subrace_of": "toh_gearforged" } }, { @@ -266,7 +266,7 @@ "name": "Kobold Heritage", "desc": "Your darakhul character was a kobold before transforming into a darakhul. The dark, although it was often your home, generally held terrors that you needed to survive. Now you are the dark, and its pull on your soul is strong. You fight to keep a grip on the intellect and cunning that sustained you in your past life. Sometimes it is easy, but often the driving hunger inside you makes it hard to think as clearly as you once did.", "document": "toh", - "subrace_of": "darakhul" + "subrace_of": "toh_darakhul" } }, { @@ -276,7 +276,7 @@ "name": "Malkin", "desc": "It's often said curiosity killed the cat, and this applies with equal frequency to catfolk. As a malkin catfolk you are adept at finding clever solutions to escape difficult situations, even (or perhaps especially) situations of your own making. Your diminutive size also gives you an uncanny nimbleness that helps you avoid the worst consequences of your intense inquisitiveness. Most often found in densely populated regions, these catfolk are as curious about the comings and goings of other humanoids as they are about natural or magical phenomena and artifacts. While malkins are sometimes referred to as \"housecats\" by other humanoids and even by other catfolk, doing so in a malkin's hearing is a surefire way to get a face full of claws…", "document": "toh", - "subrace_of": "catfolk" + "subrace_of": "toh_catfolk" } }, { @@ -296,7 +296,7 @@ "name": "Morel", "desc": "Your specialty for your clan was acting as a scout and a wayfinder. Your abilities to avoid problems and locate new sources of food for your clan was instrumental in their survival, and your interactions with other clans helped keep your people alive and well.", "document": "toh", - "subrace_of": "mushroomfolk" + "subrace_of": "toh_mushroomfolk" } }, { @@ -316,7 +316,7 @@ "name": "Mutated", "desc": "Most derro go through the process of indoctrination into their society and come out of it with visions and delusion, paranoia and mania. You, on the other hand, were not affected as much mentally as you were physically. The connection to the dark deities of your people made you stronger and gave you a physical manifestation of their gift that other derro look upon with envy and awe.", "document": "toh", - "subrace_of": "derro" + "subrace_of": "toh_derro" } }, { @@ -326,7 +326,7 @@ "name": "Pantheran", "desc": "Pantheran catfolk are a wise, observant, and patient people who pride themselves on being resourceful and self-sufficient. Less social than many others of their kind, these catfolk typically dwell in small, close-knit family groups in the forests, jungles, and grasslands of the world, away from larger population centers or cities. Their family clans teach the importance of living off of and protecting the natural world, and pantherans act swiftly and mercilessly when their forest homes are threatened by outside forces. Conversely, pantherans can be the most fierce and loyal of neighbors to villages who respect nature and who take from the land and forest no more than they need. As a pantheran, you value nature and kinship, and your allies know they can count on your wisdom and, when necessary, your claws.", "document": "toh", - "subrace_of": "catfolk" + "subrace_of": "toh_catfolk" } }, { @@ -336,7 +336,7 @@ "name": "Purified", "desc": "You were born into the caste that produces the leaders and planners, the priests and wizards, the generals and officers of drow society. Your people, it is believed, were tested by the beneficent powers you worship, and you passed those tests to become something more. Your innate magic proves your superiority over your fellows.", "document": "toh", - "subrace_of": "drow" + "subrace_of": "toh_drow" } }, { @@ -346,7 +346,7 @@ "name": "Ravenfolk", "desc": "Your darakhul character was a ravenfolk (see Midgard Heroes Handbook) before transforming into a darakhul. Your new form feels different. It is more powerful and less fidgety, and your beak has become razor sharp. There is still room for trickery, of course. But with your new life comes a disconnection from the All Father. Does this loss gnaw at you like your new hunger or do you feel freed from the destiny of your people?", "document": "toh", - "subrace_of": "darakhul" + "subrace_of": "toh_darakhul" } }, { @@ -366,7 +366,7 @@ "name": "Tiefling Heritage", "desc": "Your darakhul character was a tiefling before transforming into a darakhul. You are no stranger to the pull of powerful forces raging through your blood. You have traded one dark pull for another, and this one seems much stronger. Is that a good feeling, or do you miss your old one?", "document": "toh", - "subrace_of": "darakhul" + "subrace_of": "toh_darakhul" } }, { @@ -376,7 +376,7 @@ "name": "Trollkin Heritage", "desc": "Your darakhul character was a trollkin (see Midgard Heroes Handbook) before transforming into a darakhul. Others saw you as a monster because of your ancestry. You became inured to the fearful looks and hurried exits of those around you. If only they could see you now. Does your new state make you seek revenge on them, or are you able to maintain your self-control despite the new urges you feel?", "document": "toh", - "subrace_of": "darakhul" + "subrace_of": "toh_darakhul" } }, { @@ -386,7 +386,7 @@ "name": "Uncorrupted", "desc": "Someone in your past failed to do their job of driving you to the brink of insanity. It might have been a doting parent that decided to buck tradition. It might have been a touched seer who had visions of your future without the connections to the mad gods your people serve. It might have been a whole outcast community of derro rebels who refused to serve the madness of your ancestors. Whatever happened in your past, you are quite sane—or at least quite sane for a derro.", "document": "toh", - "subrace_of": "derro" + "subrace_of": "toh_derro" } } ] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/Race.json b/data/v2/wizards-of-the-coast/srd/Race.json index 24dd418f..2874b65a 100644 --- a/data/v2/wizards-of-the-coast/srd/Race.json +++ b/data/v2/wizards-of-the-coast/srd/Race.json @@ -76,7 +76,7 @@ "name": "High Elf", "desc": "As a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races.", "document": "srd", - "subrace_of": "elf" + "subrace_of": "srd_elf" } }, { @@ -86,7 +86,7 @@ "name": "Hill Dwarf", "desc": "As a hill dwarf, you have keen senses, deep intuition, and remarkable resilience.", "document": "srd", - "subrace_of": "dwarf" + "subrace_of": "srd_dwarf" } }, { @@ -106,7 +106,7 @@ "name": "Lightfoot", "desc": "As a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others. Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.", "document": "srd", - "subrace_of": "halfling" + "subrace_of": "srd_halfling" } }, { @@ -116,7 +116,7 @@ "name": "Rock Gnome", "desc": "As a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.", "document": "srd", - "subrace_of": "gnome" + "subrace_of": "srd_gnome" } }, { From d79f849fb1555c85d3817bc29bbf179928f1a46a Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 11:52:49 -0500 Subject: [PATCH 45/84] whitespace and ordering issues. --- data/v2/en-publishing/a5e-ag/Feat.json | 1762 +++--- data/v2/en-publishing/a5e-ag/FeatBenefit.json | 4742 ++++++++--------- data/v2/kobold-press/toh/Race.json | 782 +-- data/v2/kobold-press/toh/RaceTrait.json | 3682 ++++++------- .../srd/ClassFeatureItem.json | 4434 +++++++-------- data/v2/wizards-of-the-coast/srd/Feat.json | 20 +- data/v2/wizards-of-the-coast/srd/Race.json | 260 +- .../wizards-of-the-coast/srd/RaceTrait.json | 1862 +++---- 8 files changed, 8772 insertions(+), 8772 deletions(-) diff --git a/data/v2/en-publishing/a5e-ag/Feat.json b/data/v2/en-publishing/a5e-ag/Feat.json index 72093a28..5775aa94 100644 --- a/data/v2/en-publishing/a5e-ag/Feat.json +++ b/data/v2/en-publishing/a5e-ag/Feat.json @@ -1,882 +1,882 @@ [ - { - "model": "api_v2.feat", - "pk": "a5e-ag_a-symbol-that-strikes-fear", - "fields": { - "name": "A Symbol That Strikes Fear", - "desc": "Creatures with a CR lower than your alter ego’s Prestige rating are frightened of you while you are in your alter ego. In addition, you become particularly adept at subduing your enemies rather than outright killing them. Whenever you begin a turn grappling a creature, you can attempt to non-lethally subdue it. The grappled creature makes a Constitution saving throw against your maneuver DC. On a failed saving throw, a creature is knocked unconscious for the next hour. A creature with more than 25% of its maximum hit points automatically succeeds on this saving throw.", - "prerequisite": "Equipped for Justice feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_grappler", - "fields": { - "name": "Grappler", - "desc": "* You gain advantage on attack rolls against a creature you are grappling.\r\n* You can use your action to try to pin a creature you are grappling. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", - "prerequisite": "Strength 13 or higher", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_ace-driver", - "fields": { - "name": "Ace Driver", - "desc": "You are a virtuoso of driving and piloting vehicles, able to push them beyond their normal limits and maneuver them with fluid grace through hazardous situations. You gain the following benefits:\r\n* You gain an expertise die on ability checks made to drive or pilot a vehicle.\r\n* While piloting a vehicle, you can use your reaction to take the Brake or Maneuver vehicle actions.\r\n* A vehicle you load can carry 25% more cargo than normal.\r\n* Vehicles you are piloting only suffer a malfunction when reduced to 25% of their hit points, not 50%. In addition, when the vehicle does suffer a malfunction, you roll twice on the maneuver table and choose which die to use for the result.\r\n* Vehicles you are piloting gain a bonus to their Armor Class equal to half your proficiency bonus.\r\n* When you Brake, you can choose to immediately stop the vehicle without traveling half of its movement speed directly forward.", - "prerequisite": "Proficiency with a type of vehicle", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_arcanum-master", - "fields": { - "name": "Arcanum Master", - "desc": "Whenever you cast a spell that deals damage, you may choose the type of damage that spell deals and the appearance of the spell’s effects.", - "prerequisite": "Pure Arcanist feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_arrow-enchanter", - "fields": { - "name": "Arrow Enchanter", - "desc": "Whenever you make a ranged weapon attack, you can choose to expend a 1st-level or higher spell slot to enhance the attack to be empowered or unerring. You cannot enhance more than one attack in a\r\nturn in this way. \r\n**Empowered.** The shot deals an additional 2d6 force damage, and an additional 1d6 force damage for each spell slot level above 1st. \r\n**Unerring.** The shot gains a +2 bonus to the attack roll, and an additional +2 bonus for each spell slot level above 1st.", - "prerequisite": "Eldritch Archer feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_athletic", - "fields": { - "name": "Athletic", - "desc": "Your enhanced physical training grants you the following benefits:\r\n\r\n* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* When you are prone, standing up uses only 5 feet of your movement (instead of half).\r\n* Your speed is not halved from climbing.\r\n* You can make a running long jump or a running high jump after moving 5 feet on foot (instead of 10 feet).", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_attentive", - "fields": { - "name": "Attentive", - "desc": "Always aware of your surroundings, you gain the following benefits:\r\n\r\n* When rolling initiative you gain a +5 bonus.\r\n* You can only be surprised if you are unconscious. A creature attacking you does not gain advantage from being hidden from you or unseen by you.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_battle-caster", - "fields": { - "name": "Battle Caster", - "desc": "You're comfortable casting, even in the chaos of battle.\r\n\r\n* You gain a 1d6 expertise die on concentration checks to maintain spells you have cast.\r\n* While wielding weapons and shields, you may cast spells with a seen component.\r\n* Instead of making an opportunity attack with a weapon, you may use your reaction to cast a spell with a casting time of 1 action. The spell must be one that only targets that creature.", - "prerequisite": "Requires the ability to cast at least one spell of 1st-level or higher", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_brutal-attack", - "fields": { - "name": "Brutal Attack", - "desc": "After making a melee attack, you may reroll any weapon damage and choose the better result. This feat can be used no more than once per turn.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_bull-rush", - "fields": { - "name": "Bull Rush", - "desc": "Your headlong rush devastates your foes. After dashing (with the Dash Action) at least ten feet towards a foe, you may perform a bonus action to select one of the following options.\r\n**Attack.** Make one melee weapon attack, dealing an extra 5 damage on a hit. \r\n**Shove.** Use the Shove maneuver, pushing the target 10 feet directly away on a success.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_combat-thievery", - "fields": { - "name": "Combat Thievery", - "desc": "You know how to trade blows for more than inflicting harm.\r\n\r\n* You gain proficiency with the Deceptive Stance and Painful Pickpocket maneuvers, and do not have to spend exertion to activate them.\r\n* You gain an expertise die on Sleight of Hand checks.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_covert-training", - "fields": { - "name": "Covert Training", - "desc": "You have absorbed some of the lessons of the world of spies, criminals, and others who operate in the shadows. You gain the following benefits:\r\n\r\n* You gain proficiency with thieves' tools, the poisoner's kit, or a rare weapon with the stealthy property.\r\n* You gain two skill tricks of your choice from the rogue class.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_crafting-expert", - "fields": { - "name": "Crafting Expert", - "desc": "You have devoted time to studying and practicing the art of crafting, gaining the following benefits: This feat can be selected multiple times, choosing a different type of crafted item each time.\r\n\r\n* Choose one of the following types of crafted item: armor, engineered items, potions, rings and rods, staves and wands, weapons, wondrous items. You gain advantage on checks made to craft, maintain, and repair that type of item.\r\n* You gain an expertise die on checks made to craft, maintain, and repair items.\r\n* You gain proficiency with two tools of your choice.\r\n\r\nThis feat can be selected multiple times, choosing a different type of crafted item each time.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_crossbow-expertise", - "fields": { - "name": "Crossbow Expertise", - "desc": "* If proficient with a crossbow, you ignore its loading property.\r\n* You do not have disadvantage on ranged attack rolls from being within 5 feet of a hostile creature.\r\n* When you attack with a one-handed weapon using the Attack action, you can use a bonus action to \r\nattack with a hand crossbow wielded in your off-hand.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_deadeye", - "fields": { - "name": "Deadeye", - "desc": "Your natural talent or skill makes you lethal with a ranged weapon.\r\n\r\n* You gain proficiency with the Farshot Stance and Ricochet maneuvers, and do not have to spend exertion to activate them. \r\n* Before you make an attack with a ranged weapon you are proficient with, you can choose to take a penalty on the attack roll equal to your proficiency bonus. If the attack hits, you deal extra damage equal to double your proficiency bonus. This extra damage does not double on a critical hit.\r\n* You ignore half cover and three-quarters cover when making a ranged weapon attack.", - "prerequisite": "8th level or higher", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_deflector", - "fields": { - "name": "Deflector", - "desc": "When you are wielding a finesse weapon with which you are proficient and would be hit by a melee attack, you can use your reaction to add your proficiency bonus to your Armor Class against that attack.", - "prerequisite": "Dexterity 13 or higher", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_destinys-call", - "fields": { - "name": "Destiny’s Call", - "desc": "* An ability score of your choice increases by 1.\r\n* When you gain inspiration through your destiny’s source of inspiration, you can choose one party member within 30 feet of you. That party member gains inspiration if they don’t have it already. Once you inspire a party member in this way, you can’t use this feature again on that party member until you finish a long rest.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_divine-orator", - "fields": { - "name": "Divine Orator", - "desc": "You learn the Divine Inspiration and Persuasive Speech battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Divine Inspiration.** When an ally within 15 feet hits a creature with a melee weapon attack, your ally can deliver a Divine Smite just as if you had delivered it yourself using your Divine Smite feature expending one of your uses). If you are able to empower your smites, you may choose to empower it as normal.\r\n**Persuasive Speech.** Hostile creatures within 60 feet take a –1d4 penalty on attack rolls. You can sustain this battle hymn for up to 3 rounds without expending additional uses of Bardic Inspiration. When a hostile creature begins its third consecutive turn within range of this battle hymn it becomes charmed by you and will not attack you or your allies. If this causes combat to end early, the creatures remain charmed\r\nby you for up to 1 minute afterward or until one of them is damaged by you or an ally. For the next 24 hours after the battle hymn ends, you gain an expertise die on Charisma checks made against creatures that were charmed in this way. A creature that either shares your alignment or worships a deity that has\r\nyour alignment becomes charmed on its second consecutive turn instead. Creatures that have an opposite alignment or worship a greater entity that has an opposite alignment cannot be charmed in this way.", - "prerequisite": "Proclaimer feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_dual-wielding-expert", - "fields": { - "name": "Dual-Wielding Expert", - "desc": "* While wielding a separate melee weapon in each hand, you gain a +1 bonus to Armor Class.\r\n* You can use two-weapon fighting with any two one-handed melee weapons so long as neither has the heavy property.\r\n* When you would normally draw or sheathe a one-handed weapon, you can instead draw or sheathe two one-handed weapons.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_dungeoneer", - "fields": { - "name": "Dungeoneer", - "desc": "* You have advantage on Investigation and Perception checks made to detect secret doors.\r\n* You have advantage on saving throws made against traps.\r\n* You have resistance to damage dealt by traps.\r\n* You don’t take a −5 penalty on your passive Perception score from traveling at a fast pace.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_eldritch-archer", - "fields": { - "name": "Eldritch Archer", - "desc": "* Whenever you make a ranged weapon attack you can choose to conjure magical ammunition and select one of the following damage types: acid, cold, fire, or lightning. Your ranged weapon attacks using this conjured ammunition deal the chosen damage type instead of whatever damage type they would normally deal, and are considered magical for the purpose of overcoming resistance and immunity. Ammunition conjured in this way disappears at the end of the turn it was fired.\r\n* When you hit a target with a ranged weapon attack, you can use your reaction and choose a spell of 1st-level or higher, casting it through your ammunition. The spell must have a casting time of 1 action, and target a single creature or have a range of Touch. If a spell cast in this way requires an attack roll and targets the same target as the triggering ranged weapon attack, it also hits as part of that attack. You may\r\nchoose not to deal damage with a ranged weapon attack used to cast a spell.", - "prerequisite": "3 levels in fighter, 3 levels in wizard, Fighting Style (Archery)", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_eldritch-volley-master", - "fields": { - "name": "Eldritch Volley Master", - "desc": "Whenever you cast a spell with a Cone area, you may additionally make ranged weapon attacks with a ranged weapon you are wielding against targets within that conical area. You may make up to a number of attacks equal to the level of the spell cast, each against a different target. Ranged attacks made in this way ignore the loading quality of weapons and use your conjured magical ammunition.", - "prerequisite": "Arrow Enchanter feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_empathic", - "fields": { - "name": "Empathic", - "desc": "* Your Wisdom or Charisma score increases by 1.\r\n* You gain an expertise die on Insight checks made against other creatures.\r\n* When using a social skill and making a Charisma check another creature, you score a critical success on a roll of 19–20.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_equipped-for-justice", - "fields": { - "name": "Equipped for Justice", - "desc": "* You gain proficiency with all types of artisan’s tools and miscellaneous tools. If you already have proficiency with any of these tools, you instead gain an expertise die with those tools.\r\n* You gain proficiency with Engineering and a 1d8 expertise die on Engineering checks. In addition, you build a nonmagical grappling gun that only functions in your hands. Replacing your grappling gun requires 3 days of crafting and 500 gp.\r\n* You may add your Wisdom modifier to the DC of any saving throws used for miscellaneous adventuring gear items and to attack rolls made using miscellaneous adventuring gear items.", - "prerequisite": "Vigilante feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_fear-breaker", - "fields": { - "name": "Fear Breaker", - "desc": "* You gain proficiency with the Victory Pose maneuver and do not have to spend exertion to activate it. In addition, you may use this maneuver with up to three different weapons you select instead of just one, and\r\naffect allies within 60 feet. \r\n* An ally affected by your Victory Pose gains an expertise die on their next saving throw against fear, and if they are rattled the condition ends for them.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_fortunate", - "fields": { - "name": "Fortunate", - "desc": "You gain 3 fate points. Whenever you make an attack roll, ability check, or saving throw and do not have disadvantage, you can spend a fate point to roll an additional d20 and choose whichever result you wish. \r\nYou may do this after the initial roll has occurred, but before the outcome is known. If you have disadvantage, you may instead spend a fate point to choose one of the d20 rolls and reroll it.\r\nAlternatively, when you are attacked, you can choose to spend a fate point to force the attacking creature to reroll the attack. The creature resolves the attack with the result you choose. You regain all expended fate points when you finish a long rest.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_guarded-warrior", - "fields": { - "name": "Guarded Warrior", - "desc": "* A creature that takes the Disengage action still provokes opportunity attacks from you. \r\n* You gain proficiency with the Warning Strike maneuver and do not have to spend exertion to activate it.\r\n* You can use your reaction to make a melee weapon attack against a creature within 5 feet that makes an attack against a target other than you if the target does not also have this feat.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_harbinger-of-things-to-come", - "fields": { - "name": "Harbinger of Things to Come", - "desc": "You learn the Preach Despair and Preach Hope battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Preach Despair.** A hostile creature within 60 feet of you suffers a level of strife. Creatures with an opposite alignment from yours or that worship a greater entity that has an opposite alignment suffer two levels of strife instead. A creature cannot suffer more than two levels of strife from Preach Despair in the same 24 hours.\r\n**Preach Hope.** Creatures of your choice within 60 feet of you gain advantage on saving throws. When the battle hymn ends, allies within 30 feet of you remove one level of strife. An ally that shares your alignment or worships a greater entity removes two levels of strife instead.", - "prerequisite": "Divine Orator feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_hardy-adventurer", - "fields": { - "name": "Hardy Adventurer", - "desc": "* When you take this feat, you gain a number of hit points equal to twice your level. \r\n* Whenever you gain a new level, you gain an additional 2 hit points to your hit point maximum.\r\n* During a short rest, you regain 1 additional hit point per hit die spent to heal.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_heavily-outfitted", - "fields": { - "name": "Heavily Outfitted", - "desc": "* Your Strength score increases by 1, to a maximum of 20.\r\n* You gain proficiency with heavy armor.", - "prerequisite": "Proficiency with medium armor", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_heavy-armor-expertise", - "fields": { - "name": "Heavy Armor Expertise", - "desc": "* Your Strength score increases by 1, to a maximum of 20.\r\n* While wearing heavy armor, you reduce all bludgeoning, piercing, and slashing damage from nonmagical weapons by 3.", - "prerequisite": "Proficiency with heavy armor", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_heraldic-training", - "fields": { - "name": "Heraldic Training", - "desc": "* You gain proficiency in your choice of one martial weapon, one rare weapon, or shields.\r\n* You gain two divine lessons of your choice from the herald class.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_idealistic-leader", - "fields": { - "name": "Idealistic Leader", - "desc": "* Any stronghold you have or buy that is of frugal quality is automatically upgraded to average quality at no additional cost.\r\n* You gain a new follower for every 50 staff you have in your stronghold, rather than every 100 staff.\r\n* When you fulfill your destiny, choose a number of followers equal to your proficiency bonus. Each is upgraded to their most expensive version.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_intuitive", - "fields": { - "name": "Intuitive", - "desc": "* Your Intelligence or Wisdom score increases by 1, to a maximum of 20. \r\n* Your passive Perception and passive Investigation scores increase by 5.\r\n* If you can see a creature’s mouth while it is speaking a language you know, you can read its lips.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_keen-intellect", - "fields": { - "name": "Keen Intellect", - "desc": "* Your Intelligence score increases by 1, to a maximum of 20.\r\n* You can recall anything you’ve seen or heard within a number of weeks equal to your Intelligence modifier.\r\n* You know how long it will be before the next sunset or sunrise.\r\n* You know which way is north.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_lightly-outfitted", - "fields": { - "name": "Lightly Outfitted", - "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with light armor.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_linguistics-expert", - "fields": { - "name": "Linguistics Expert", - "desc": "* Your Intelligence score increases by 1, to a maximum of 20.\r\n* You learn three languages of your choice.\r\n* You can invent ciphers and are able to teach a cipher you create to others. Anyone who knows the cipher can encode and read hidden messages made with it; the apparent text must be at least four times longer than the hidden message. A creature can detect the cipher’s presence if it spends a minute examining it and succeeds on an Investigation check against a DC of 8+ your proficiency bonus + your Intelligence modifier. If the check succeeds by 5 or more, they can read the hidden message.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_living-stampede", - "fields": { - "name": "Living Stampede", - "desc": "Whenever you enter a rage you may choose up to a number of creatures equal to your Wisdom modifier within 60 feet that are beasts, fey, or plants. These chosen creatures gain the following benefits for as long as you rage, but are unable to take the Fall Back reaction:\r\n* Advantage on Strength checks and Strength saving throws.\r\n* Resistance to bludgeoning, piercing, and slashing damage.\r\n* Temporary hit points equal to your level.\r\n* A bonus to damage rolls equal to your proficiency bonus.", - "prerequisite": "Untamed feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_martial-scholar", - "fields": { - "name": "Martial Scholar", - "desc": "* You gain proficiency in a combat tradition of your choice. \r\n* You learn two combat maneuvers from a combat tradition you know. If you don’t already know any combat maneuvers, both must be 1st degree. Combat maneuvers gained from this feat do not count toward the maximum number of combat maneuvers you know.\r\n* Your exertion pool increases by 3. If you do not have an exertion pool, you gain an exertion pool with 3 exertion, regaining your exertion whenever you finish a rest.", - "prerequisite": "Proficiency with at least one martial weapon", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_medium-armor-expert", - "fields": { - "name": "Medium Armor Expert", - "desc": "* Medium armor doesn’t impose disadvantage on your Dexterity (Stealth) checks.\r\n* When you are wearing medium armor, the maximum Dexterity modifier you can add to your Armor Class increases to 3.", - "prerequisite": "Proficiency with medium armor", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_moderately-outfitted", - "fields": { - "name": "Moderately Outfitted", - "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with medium armor and shields.", - "prerequisite": "Proficiency with light armor", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_monster-hunter", - "fields": { - "name": "Monster Hunter", - "desc": "* You gain an expertise die on checks made to learn legends and lore about a creature you can see.\r\n* You learn the altered strike cantrip.\r\n* You gain proficiency with the Douse maneuver and do not have to spend exertion to activate it.\r\n* You gain the tracking skill specialty in Survival.", - "prerequisite": "Proficiency with Survival, 8th level or higher", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_mounted-warrior", - "fields": { - "name": "Mounted Warrior", - "desc": "* You gain proficiency with the Lancer Strike maneuver and do not have to spend exertion to activate it.\r\n* When your mount is targeted by an attack, you can instead make yourself the attack’s target.\r\n* When your mount makes a Dexterity saving throw against an effect that deals half damage on a success, it takes no damage on a success and half damage on a failure.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_mystic-arcanist", - "fields": { - "name": "Mystic Arcanist", - "desc": "* Your Wisdom or Charisma score increases by 1, to a maximum of 20. \r\n* When you cast a spell that restores hit points, you restore an additional number of hit points equal to your Charisma modifier.\r\n* You can spend sorcery points to temporarily gain a spell from the cleric or sorcerer spell lists. Gaining a spell in this way costs a number of sorcery points equal to the spell’s level. You cannot gain a spell that has a level higher than your highest level spell slot. When you gain a cleric spell in this way, it is considered prepared for the day. When you gain a sorcerer spell in this way, it is considered a spell you know for the day. You lose all spells gained in this way whenever you finish a long rest.", - "prerequisite": "3 levels in cleric, 3 levels in sorcerer", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_mystical-talent", - "fields": { - "name": "Mystical Talent", - "desc": "Choose a class: bard, cleric, druid, herald, sorcerer, warlock, or wizard.\r\n\r\n* You learn two cantrips of your choice from the class’s spell list. \r\n* Choose a 1st-level spell to learn from that spell list. Once between long rests, you can cast this spell without expending a spell slot. You can also cast this spell using a spell slot of the appropriate level (or the appropriate number of spell points if you have warlock levels).\r\n\r\nYour spellcasting ability for these spells is Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_natural-warrior", - "fields": { - "name": "Natural Warrior", - "desc": "* Your Speed increases by 5 feet.\r\n* When making an Acrobatics or Athletics check during combat, you can choose to use your Strength or Dexterity modifier for either skill.\r\n* You gain proficiency with the Bounding Strike maneuver and do not have to spend exertion to activate it.\r\n* You can roll 1d4 in place of your normal damage for unarmed strikes. When rolling damage for your unarmed strikes, you can choose to deal bludgeoning, piercing, or slashing damage.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_newblood", - "fields": { - "name": "Newblood", - "desc": "You gain resistance to necrotic damage (or if you already have it, immunity to necrotic damage) and darkvision to a range of 30 feet (or if you already have it, the range of your darkvision increases by 30 feet). You also gain a bite natural weapon and the Charming Gaze feature.\r\n\r\n**Bite.** You gain a bite natural weapon you are proficient with. You are only able to bite grappled, incapacitated, restrained, or willing creatures. You can use Dexterity instead of Strength for the attack rolls of your bite. On a hit your bite deals piercing damage equal to 1d6 plus your Strength modifier or Dexterity modifier (whichever is highest). In addition, once per turn you can choose for your bite to also deal 1d6\r\nnecrotic damage × your proficiency bonus. You regain hit points equal to the amount of necrotic damage dealt to your target. This necrotic damage can only be increased by a critical hit.\r\n**Charming Gaze.** Once between long rests, you magically target a creature within 30 feet, forcing it to make a Wisdom saving throw (DC 8 + your proficiency bonus + your Charisma modifier). On a failure, the target is charmed by you for a number of hours equal to your proficiency bonus. While charmed it regards you as a trusted friend and is a willing target for your bite. The target repeats the saving throw each time it takes damage, ending the effect on itself on a success. If the target’s saving throw is successful or the effect ends for it, it is immune to your charm for 24 hours.\r\n\r\nAdditionally, you have disadvantage on attack rolls and on Perception checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight. In addition, you cannot use your Charming Gaze while you are in direct sunlight.", - "prerequisite": "Must have been bitten by a vampire or taken necrotic damage equal to quadruple your level from a single attack or spell", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_night-master", - "fields": { - "name": "Night Master", - "desc": "You can spend exertion to cast any spells from the air, earth, fear, fire, movement, obscurement, plants, poison, senses, shadow, transformation, unarmed, or water schools at the cost of 2 exertion per spell level. You use your focus save DC for spells cast this way, and your spell attack modifier is equal to your proficiency bonus + your Wisdom modifier.", - "prerequisite": "Subtly Skilled feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_nightstalker", - "fields": { - "name": "Nightstalker", - "desc": "* Your Dexterity or Wisdom score increases by 1, to a maximum of 20.\r\n* You can deal Sneak Attack damage when making attacks using unarmed strikes or adept weapons.\r\n* You gain a bonus equal to your Wisdom modifier on Acrobatics, Deception, and Stealth checks.\r\n\r\nIn addition, you gain the following special focus feature:\r\n**Twilight Vanish.** On your turn you can use a reaction and spend 2 exertion to move up to 30 feet with such incredible speed that you seem to disappear: after moving this way you may immediately take the Hide action.", - "prerequisite": "3 levels in adept, 3 levels in rogue", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_physician", - "fields": { - "name": "Physician", - "desc": "* When you use a healer’s satchel to stabilize a dying creature, it regains a number of\r\nhit points equal to your Wisdom modifier.\r\n* You can spend an action and one use of a healer’s satchel to tend to a creature. The creature regains 1d6 + 4 hit points, plus one hit point for each of its hit dice. The creature can’t regain hit points from this feat again until it finishes a rest.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_polearm-savant", - "fields": { - "name": "Polearm Savant", - "desc": "* When you attack with a glaive, halberd, quarterstaff, or spear and no other weapon using the Attack action, as a bonus action you can make a melee attack with the weapon’s opposite end. This attack uses the same ability modifier as the primary attack, dealing 1d4 bludgeoning damage on a hit.\r\n* While you are wielding a glaive, halberd, pike, quarterstaff, or spear, a creature that enters your reach provokes an opportunity attack from you. A creature can use its reaction to avoid provoking an opportunity attack from you in this way.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_power-caster", - "fields": { - "name": "Power Caster", - "desc": "* The range is doubled for any spell you cast that requires a spell attack roll.\r\n* You ignore half cover and three-quarters cover when making a ranged spell attack.\r\n* Choose one cantrip that requires an attack roll. The cantrip must be from the bard, cleric, druid, herald, sorcerer, warlock, or wizard spell list. You learn this cantrip and your spellcasting ability for it depends\r\non the spell list you chose from: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", - "prerequisite": "The ability to cast at least one spell", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_powerful-attacker", - "fields": { - "name": "Powerful Attacker", - "desc": "* You gain proficiency with the Cleaving Swing maneuver and do not have to spend exertion to activate it. In addition, you can use Cleaving Swing with a versatile weapon wielded with two hands.\r\n* Before you make a melee attack with a two-handed weapon or versatile weapon wielded with two hands, if you are proficient with the weapon and do not have disadvantage you can declare a powerful attack. A\r\npowerful attack has disadvantage, but on a hit deals 10 extra damage.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_primordial-caster", - "fields": { - "name": "Primordial Caster", - "desc": "Upon gaining this feat, choose one of the following damage types: acid, cold, fire, lightning, or thunder.\r\n* When you cast a spell that deals damage, your spell’s damage ignores damage resistance to the chosen type.\r\n* When you cast a spell that deals damage of the chosen type, you deal 1 additional damage for every damage die with a result of 1.\r\nThis feat can be selected multiple times, choosing a different damage type each time.", - "prerequisite": "The ability to cast at least one spell", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_proclaimer", - "fields": { - "name": "Proclaimer", - "desc": "* Whenever the Narrator calls for you to roll for initiative, you may activate a use of your Divine Sense feature to warn yourself and up to a number of creatures equal to your Charisma modifier within 30 feet, granting advantage on the initiative check.\r\n* You can use your voice Art Specialty to cast herald spells.\r\n* You can spend exertion to cast spells from the divination school that you know at a cost of 1 exertion per spell level.\r\n* When you gain this feat, you gain one of the following alignment traits: Chaotic, Evil, Good, or Lawful. Once chosen your alignment trait cannot be changed, but you can gain a second alignment trait that is not opposed.", - "prerequisite": "3 levels in bard, 3 levels in herald", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_pure-arcanist", - "fields": { - "name": "Pure Arcanist", - "desc": "You gain the following manifestations:\r\n**Divine (Radiant).** When you cast a spell that deals radiant damage, you can spend 1 sorcery point and choose one creature you can see within 60 feet. That creature regains a number of hit points equal to 1d8 × the spell’s level. \r\n**Pure Arcanum (Force).** When you cast a spell that deals force damage, you can spend 2 sorcery points and choose one creature you can see. After the spell’s damage is resolved, if the creature was damaged by the spell it makes an Intelligence saving throw or becomes stunned until the end of its next turn.", - "prerequisite": "Mystic Arcanist feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_rallying-speaker", - "fields": { - "name": "Rallying Speaker", - "desc": "When you spend 10 minutes speaking inspirationally, you can choose up to 6 friendly creatures (including yourself) within 30 feet that can hear and understand you. Each creature gains temporary hit points equal to your level + your Charisma modifier. A creature can’t gain temporary hit points from this feat again until it has finished a rest.", - "prerequisite": "Charisma 13 or higher", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_resonant-bond", - "fields": { - "name": "Resonant Bond", - "desc": "You’re able to form a greater bond with magic items. During a short rest, you can focus on a non-consumable magic item and create a unique bond with it called resonance. You can have resonance with\r\nonly one item at a time. Attempting to resonate with another item fails until you end the resonance with your current item. When you resonate with an item, you gain the following benefits.\r\n\r\n* If the resonant item requires attunement and you meet the prerequisites to do so, you become attuned to the item. If you don’t meet the prerequisites, both the attunement and resonance with the item fails. This attunement doesn’t count toward the maximum number of items you can be attuned to. Unlike other\r\nattuned items, your attunement to this item doesn’t end from being more than 100 feet away from it for 24 hours.\r\n* Once per rest, as a bonus action, you can summon a resonant item, which appears instantly in your hand so long as it is located on the same plane of existence. You must have a free hand to use this feature and be able to hold the item. \r\n* If the resonant item is sentient, you have advantage on Charisma checks and saving throws made when resolving a conflict with the item.\r\n* If the resonant item is an artifact, you can ignore the effects of one minor detrimental property.\r\n\r\nYou lose resonance with an item if another creature attunes to it or gains resonance with it. You can also voluntarily end the resonance by focusing on the item during a short rest, or during a long rest if the item is not in your possession.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_revenant", - "fields": { - "name": "Revenant", - "desc": "You may choose to select this feat when you die, replacing your most recently chosen feat other than Vendetta or reducing your ability scores to reverse your last Ability Score Improvement. The next midnight your corpse rises and your soul returns to it. You gain the undead type in addition to being a humanoid, as well as the following benefits:\r\n* Your destiny changes to Revenge.\r\n* You gain resistance to necrotic and psychic damage.\r\n* You gain darkvision to a range of 60 feet (or if you already have it, its range increases by 30 feet).\r\n* You become immune to poison damage and the poisoned condition.\r\n* If your vendetta has not ended, you regain all of your hit points when you finish a short rest or 1 hour after you are reduced to 0 hit points.\r\n* You gain an expertise die on saving throws made against spells and other magical effects, and on saving throws made to resist being charmed, fatigued, frightened, paralyzed, or stunned.\r\n* You gain an expertise die on ability checks made to find or track a creature that is part of your vendetta.", - "prerequisite": "Vendetta, one other feat or previous Ability Score Improvement, dead", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_rite-master", - "fields": { - "name": "Rite Master", - "desc": "You gain a ritual book containing spells that you can cast as rituals while holding it.\r\nChoose one of the following classes: bard, cleric, druid, herald, sorcerer, warlock, or wizard. When you acquire this feat, you create a ritual book holding two 1st-level spells of your choice from that class’ spell\r\nlist. These spells must have the ritual tag. The class you choose determines your spellcasting ability for these spells: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or\r\nsorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.\r\nIf you come across a written spell with the ritual tag (like on a spell scroll or in a wizard’s spellbook), you can add it to your ritual book if the spell is on the spell list for the class you chose and its level is no higher than half your level (rounded up). Copying the spell into your ritual book costs 50 gold and 2 hours per level of the spell.", - "prerequisite": "Intelligence or Wisdom 13 or higher", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_shadow-assassin", - "fields": { - "name": "Shadow Assassin", - "desc": "While you are hidden from a target and are in an area of darkness or dim light, you can apply your Sneak Attack damage to an eldritch blast.", - "prerequisite": "Shadowmancer feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_shadowdancer", - "fields": { - "name": "Shadowdancer", - "desc": "* You gain darkvision to a range of 60 feet. Unlike other forms of darkvision you can see color in this way as if you were seeing normally. If you already had darkvision or would gain it later from another feature, its range increases by 30 feet. \r\n* You can use a bonus action and spend 1 spell point to teleport up to 30 feet to an unoccupied area of darkness or dim light you can see. You must currently be in an area of darkness or dim light to teleport in this way. You can bring along objects if their weight doesn’t exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn’t carrying gear beyond its carrying capacity and is within 5 feet. You can increase the range of this teleport by 30 additional feet per each additional spell point you spend.", - "prerequisite": "3 levels in rogue, 3 levels in warlock", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_shadowmancer", - "fields": { - "name": "Shadowmancer", - "desc": "You gain the following benefits.\r\n* You regain 1 spell point whenever you cast a spell from the shadow school.\r\n* You gain a Stealth skill specialty for hiding while in areas of darkness or dim light, and you have advantage on Dexterity (Stealth) checks made to hide while in areas of darkness or dim light.\r\n* Whenever you use your Shadowdancer ability to teleport, after teleporting you can use your reaction to take the Dodge action.", - "prerequisite": "Shadowdancer feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_shield-focus", - "fields": { - "name": "Shield Focus", - "desc": "You gain the following benefits while wielding a shield:\r\n* When you take the Attack action on your turn, as a bonus action you can make a Shove maneuver against a creature within 5 feet of you.\r\n* When you make a Dexterity saving throw against a spell or harmful effect that only targets you, if you aren’t incapacitated you gain a bonus equal to your shield’s Armor Class bonus.\r\n* When you succeed on a Dexterity saving throw against an effect that deals half damage on a success, you can use your reaction to take no damage by protecting yourself with your shield.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_skillful", - "fields": { - "name": "Skillful", - "desc": "Choose three skills, tools, languages, or any combination of these. You gain proficiency with each of your three choices. If you already have proficiency in a chosen skill, you instead gain a skill specialty with that skill.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_skirmisher", - "fields": { - "name": "Skirmisher", - "desc": "* Your Speed increases by 10 feet.\r\n* You can Dash through difficult terrain without requiring additional movement.\r\n* Whenever you attack a creature, for the rest of your turn you don’t provoke opportunity attacks from that creature.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_spellbreaker", - "fields": { - "name": "Spellbreaker", - "desc": "*You gain proficiency with the Purge Magic maneuver and do not have to spend exertion to activate it.\r\n* When a creature concentrating on a spell is damaged by you, it has disadvantage on its concentration check to maintain the spell it is concentrating on.\r\n* You have advantage on saving throws made against spells cast within 30 feet of you.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_stalwart", - "fields": { - "name": "Stalwart", - "desc": "* Your Constitution score increases by 1, to a maximum of 20.\r\n* You regain an additional number of hit points equal to double your Constitution modifier (minimum 2) whenever you roll a hit die to regain hit points.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_stealth-expert", - "fields": { - "name": "Stealth Expert", - "desc": "* You can try to hide from a creature even while you are only lightly obscured from that creature.\r\n* Your position isn’t revealed when you miss with a ranged weapon attack against a creature you are hidden from.\r\n* Dim light does not impose disadvantage when you make Perception checks.", - "prerequisite": "Dexterity 13 or higher", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_street-fighter", - "fields": { - "name": "Street Fighter", - "desc": "* Your Strength or Constitution score increases by 1, to a maximum of 20.\r\n* You can roll 1d4 in place of your normal damage for unarmed strikes.\r\n* You are proficient with improvised weapons.\r\n* You can use a bonus action to make a Grapple maneuver against a target you hit with an unarmed strike or improvised weapon on your turn.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_subtly-skilled", - "fields": { - "name": "Subtly Skilled", - "desc": "You can add your martial arts die as a bonus to Acrobatics, Culture, Deception, Engineering, Intimidation, Investigation, Sleight of Hand, Stealth, Perception, Performance, and Persuasion checks.", - "prerequisite": "Nightstalker feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_surgical-combatant", - "fields": { - "name": "Surgical Combatant", - "desc": "* You gain proficiency with the Dangerous Strikes maneuver and do not have to spend exertion to activate it.\r\n* You gain proficiency in Medicine. If you are already proficient, you instead gain an expertise die.\r\n* You gain an expertise die on Medicine checks made to diagnose the cause of or treat wounds.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_survivor", - "fields": { - "name": "Survivor", - "desc": "* When you are reduced to 0 or fewer hit points, you can use your reaction to move up to your Speed before falling unconscious. Moving in this way doesn’t provoke opportunity attacks.\r\n* On the first turn that you start with 0 hit points and must make a death saving throw, you make that saving throw with advantage.\r\n* When you take massive damage that would kill you instantly, you can use your reaction to make a death saving throw. If the saving throw succeeds, you instead fall unconscious and are dying. \r\n* Medicine checks made to stabilize you have advantage. \r\n* Once between long rests, when a creature successfully stabilizes you, at the start of your next turn you regain 1 hit point.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_swift-combatant", - "fields": { - "name": "Swift Combatant", - "desc": "* Your Speed increases by 5 feet. \r\n* You gain proficiency with the Charge, Rapid Drink, and Swift Stance maneuvers, and do not have to spend exertion to activate them.", - "prerequisite": "8th level or higher", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_tactical-support", - "fields": { - "name": "Tactical Support", - "desc": "* When using the Help action to aid an ally in attacking a creature, the targeted creature can be up to 30 feet away instead of 5 feet.\r\n* If an ally benefiting from your Help action scores a critical hit on the targeted creature, you can use your reaction to make a single weapon attack against that creature. Your attack scores a critical hit on a roll of 19–20. If you already have a feature that increases the range of your critical hits, your critical hit range\r\nfor that attack is increased by 1 (maximum 17–20). \r\n* When a creature is damaged by an attack that was aided by the use of your Help action, you don’t provoke opportunity attacks from that creature until the end of your next turn.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_tenacious", - "fields": { - "name": "Tenacious", - "desc": "Choose one ability score. The chosen ability score increases by 1, to a maximum of 20, and you gain proficiency in saving throws using it.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_thespian", - "fields": { - "name": "Thespian", - "desc": "* Your Charisma score increases by 1, to a maximum of 20. \r\n* You have advantage on Deception and Performance checks made when attempting to mimic another creature’s looks, mannerisms, or speech.\r\n* You have a natural talent for perfectly mimicking the sounds of other creatures you’ve heard make sound for at least 1 minute. A suspicious listener can see through your perfect mimicry by succeeding on a Wisdom (Insight) check opposed by your Charisma (Deception) check.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_true-revenant", - "fields": { - "name": "True Revenant", - "desc": "One year and one day after you select this feat or when your vendetta has ended, you are doomed. Until then, you gain the following benefits.\r\n* You cannot be charmed, fatigued, frightened, paralyzed, or stunned.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* You regain all of your hit points after you do not take any damage for 1 minute.\r\nIn addition, you also gain the Fearsome Pursuit and Burning Hatred features. \r\n**Fearsome Pursuit.** You can spend 1 minute focusing on a creature that is part of your vendetta. If the creature is dead or on another plane of existence, you learn that. Otherwise, after focusing, you know the distance and direction to that creature, and so long as you’re moving in pursuit of that creature, you and anyone traveling with you ignore difficult terrain. This effect ends if you take damage or end your turn without moving for any reason.\r\n**Burning Hatred.** You can use an action to target the focus of your Fearsome Pursuit if it is within 30 feet. The creature makes a Wisdom saving throw (DC 8 + your proficiency bonus + your highest mental ability score modifier). On a failure, it takes psychic damage equal to 1d6 × your proficiency bonus and is stunned until the end of its next turn. On a success, it takes half damage and is rattled until the end of its\r\nnext turn. Once you have used this feature a number of times equal to your proficiency bonus, you can’t use it again until you finish a long rest.", - "prerequisite": "Revenant feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_untamed", - "fields": { - "name": "Untamed", - "desc": "* Your Strength or Wisdom score increases by 1, to a maximum of 20.\r\n* You may enter a rage and assume a wild shape using the same bonus action.\r\n* While using a wild shape, you can use Furious Critical with attacks made using natural weapons.\r\n* Any temporary hit points you gain from assuming a wild shape while raging become rage hit points instead.\r\n* You may cast and concentrate on druid spells with a range of Self or Touch while raging.", - "prerequisite": "Prerequisites: 3 levels in berserker, 3 levels in druid (Skinchanger archetype)", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_vampire-lord", - "fields": { - "name": "Vampire Lord", - "desc": "You gain the following benefits.\r\n* Your Speed increases by 10 feet.\r\n* You gain an expertise die on Stealth checks.\r\n* The range of your darkvision increases to 120 feet.\r\n* Your bite damage increases to 1d10.\r\n* You can use Charming Gaze twice between rests.\r\n* When using Charming Gaze, a target with at least one level of strife makes its saving throw with disadvantage.\r\n\r\nYou also gain the Vampiric Shapechange feature.\r\n\r\n**Vampiric Shapechange.** You can use an action to transform into the shape of a Medium or smaller beast of CR 3 or less, a mist, or back into your true form. While transformed into a beast, you have the beast’s size and movement modes. You can’t use reactions or speak. Otherwise, you use your statistics. Any items you are carrying transform with you. While transformed into a mist, you have a flying speed of 30 feet, can’t speak, can’t take actions or manipulate objects, are immune to nonmagical damage from weapons, and have advantage on saving throws and Stealth checks. You can pass through a space as narrow as 1 inch without squeezing but can’t pass through water. Any items you are carrying transform with you.\r\n\r\nAdditionally, you gain the undead type in addition to being a humanoid, and you take 20 radiant damage when you end your turn in contact with sunlight.", - "prerequisite": "Vampire Spawn", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_vampire-spawn", - "fields": { - "name": "Vampire Spawn", - "desc": "Your bite damage increases to 1d8, a creature affected by your Charming Gaze remains charmed for a number of hours equal to your level, and you regain the use of Charming Gaze when you finish any\r\nrest. You also gain the Spider Climb and Vampiric Regeneration features.\r\n\r\n**Spider Climb.** You gain a climb speed equal to your Speed, and you can climb even on difficult surfaces and upside down on ceilings.\r\n**Vampiric Regeneration.** Whenever you start your turn with at least 1 hit point and you haven’t taken radiant damage or entered direct sunlight since the end of your last turn, you gain a number of temporary hit points equal to twice your proficiency bonus. When you end your turn in contact with running water, you take 20 radiant damage.", - "prerequisite": "Newblood", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_vendetta", - "fields": { - "name": "Vendetta", - "desc": "Something or someone has had a profound impact on your life—and earned your unending rancor. You gain an expertise die on attack rolls and initiative checks made against creatures that are part of your\r\nvendetta, and when making a saving throw to resist an attack, feature, maneuver, spell, or trait from a creature that is part of your vendetta. Whether or not a creature is part of your vendetta is at the Narrator’s discretion.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_vengeful-protector", - "fields": { - "name": "Vengeful Protector", - "desc": "* You gain proficiency with shields as weapons.\r\n* You gain proficiency with the Double Team maneuver and do not have to spend exertion to activate it.\r\n* When a creature reduces a party member (not including animal companions, familiars, or followers) to 0 hit points, you gain an expertise die on attacks made against it until the end of combat.", - "prerequisite": "Proficiency with shields", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_vigilante", - "fields": { - "name": "Vigilante", - "desc": "* Your Wisdom or Dexterity score increases by 1, to a maximum of 20.\r\n* You have an alter ego, an identity associated with a costume or disguise. This alter ego can be as complicated as a full outfit with a history or legends surrounding it or a simple mask or cowl. You can assume or remove this alter ego as an action and it can be worn with all types of armor. \r\n* You gain a 1d8 expertise die and advantage on Deception checks made regarding your alter ego, Persuasion checks made to dissuade others from connecting you to your alter ego, and on disguise kit checks.\r\n* Your alter ego has its own Prestige rating that may increase or decrease as you perform deeds while in your alter ego. In addition, while in your alter ego you gain a 1d8 expertise die on Prestige checks.\r\n* While in your alter ego, you may make a Prestige check and use that result in place of any Intimidation or Persuasion check you would otherwise make.", - "prerequisite": "3 levels in adept, 3 levels in ranger", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_weapons-specialist", - "fields": { - "name": "Weapons Specialist", - "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with four weapons of your choice. Three of these must be a simple or a martial weapon. The fourth choice can be a simple, martial, or rare weapon.", - "prerequisite": "", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_well-heeled", - "fields": { - "name": "Well-Heeled", - "desc": "* You are treated as royalty (or as closely as possible) by most commoners and traders, and as an equal when meeting other authority figures (who make time in their schedule to see you when requested to do so).\r\n* You have passive investments and income that allow you to maintain a high quality of living. You have a rich lifestyle and do not need to pay for it.\r\n* You gain a second Prestige Center. This must be an area where you have spent at least a week of time.", - "prerequisite": "Prestige rating of 2 or higher", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_wild-rioter", - "fields": { - "name": "Wild Rioter", - "desc": "While raging, you and any creatures benefiting from your Living Stampede emit 5-foot auras of fury. When a creature other than you or your allies enters a fury aura or starts its turn there it makes a Wisdom saving throw against your druid spell save DC. On a failed save, a creature becomes confused, except instead of rolling to determine their actions as normal for the confused condition, they are always considered to have rolled the 7 or 8 result. At the end of each of a confused creature’s turns it repeats the saving throw, ending the effect on itself on a success. Once a creature successfully saves against this effect, it is immune to it for the remainder of your rage.", - "prerequisite": "Living Stampede feat", - "document": "a5e-ag" - } - }, - { - "model": "api_v2.feat", - "pk": "a5e-ag_woodcraft-training", - "fields": { - "name": "Woodcraft Training", - "desc": "* You gain proficiency with the herbalism kit, navigator’s kit, a simple ranged weapon, or a martial ranged weapon.\r\n* You gain two exploration knacks of your choice from the ranger class.", - "prerequisite": "", - "document": "a5e-ag" - } - } -] \ No newline at end of file +{ + "model": "api_v2.feat", + "pk": "a5e-ag_a-symbol-that-strikes-fear", + "fields": { + "name": "A Symbol That Strikes Fear", + "desc": "Creatures with a CR lower than your alter ego’s Prestige rating are frightened of you while you are in your alter ego. In addition, you become particularly adept at subduing your enemies rather than outright killing them. Whenever you begin a turn grappling a creature, you can attempt to non-lethally subdue it. The grappled creature makes a Constitution saving throw against your maneuver DC. On a failed saving throw, a creature is knocked unconscious for the next hour. A creature with more than 25% of its maximum hit points automatically succeeds on this saving throw.", + "prerequisite": "Equipped for Justice feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_ace-driver", + "fields": { + "name": "Ace Driver", + "desc": "You are a virtuoso of driving and piloting vehicles, able to push them beyond their normal limits and maneuver them with fluid grace through hazardous situations. You gain the following benefits:\r\n* You gain an expertise die on ability checks made to drive or pilot a vehicle.\r\n* While piloting a vehicle, you can use your reaction to take the Brake or Maneuver vehicle actions.\r\n* A vehicle you load can carry 25% more cargo than normal.\r\n* Vehicles you are piloting only suffer a malfunction when reduced to 25% of their hit points, not 50%. In addition, when the vehicle does suffer a malfunction, you roll twice on the maneuver table and choose which die to use for the result.\r\n* Vehicles you are piloting gain a bonus to their Armor Class equal to half your proficiency bonus.\r\n* When you Brake, you can choose to immediately stop the vehicle without traveling half of its movement speed directly forward.", + "prerequisite": "Proficiency with a type of vehicle", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_arcanum-master", + "fields": { + "name": "Arcanum Master", + "desc": "Whenever you cast a spell that deals damage, you may choose the type of damage that spell deals and the appearance of the spell’s effects.", + "prerequisite": "Pure Arcanist feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_arrow-enchanter", + "fields": { + "name": "Arrow Enchanter", + "desc": "Whenever you make a ranged weapon attack, you can choose to expend a 1st-level or higher spell slot to enhance the attack to be empowered or unerring. You cannot enhance more than one attack in a\r\nturn in this way. \r\n**Empowered.** The shot deals an additional 2d6 force damage, and an additional 1d6 force damage for each spell slot level above 1st. \r\n**Unerring.** The shot gains a +2 bonus to the attack roll, and an additional +2 bonus for each spell slot level above 1st.", + "prerequisite": "Eldritch Archer feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_athletic", + "fields": { + "name": "Athletic", + "desc": "Your enhanced physical training grants you the following benefits:\r\n\r\n* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* When you are prone, standing up uses only 5 feet of your movement (instead of half).\r\n* Your speed is not halved from climbing.\r\n* You can make a running long jump or a running high jump after moving 5 feet on foot (instead of 10 feet).", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_attentive", + "fields": { + "name": "Attentive", + "desc": "Always aware of your surroundings, you gain the following benefits:\r\n\r\n* When rolling initiative you gain a +5 bonus.\r\n* You can only be surprised if you are unconscious. A creature attacking you does not gain advantage from being hidden from you or unseen by you.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_battle-caster", + "fields": { + "name": "Battle Caster", + "desc": "You're comfortable casting, even in the chaos of battle.\r\n\r\n* You gain a 1d6 expertise die on concentration checks to maintain spells you have cast.\r\n* While wielding weapons and shields, you may cast spells with a seen component.\r\n* Instead of making an opportunity attack with a weapon, you may use your reaction to cast a spell with a casting time of 1 action. The spell must be one that only targets that creature.", + "prerequisite": "Requires the ability to cast at least one spell of 1st-level or higher", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_brutal-attack", + "fields": { + "name": "Brutal Attack", + "desc": "After making a melee attack, you may reroll any weapon damage and choose the better result. This feat can be used no more than once per turn.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_bull-rush", + "fields": { + "name": "Bull Rush", + "desc": "Your headlong rush devastates your foes. After dashing (with the Dash Action) at least ten feet towards a foe, you may perform a bonus action to select one of the following options.\r\n**Attack.** Make one melee weapon attack, dealing an extra 5 damage on a hit. \r\n**Shove.** Use the Shove maneuver, pushing the target 10 feet directly away on a success.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_combat-thievery", + "fields": { + "name": "Combat Thievery", + "desc": "You know how to trade blows for more than inflicting harm.\r\n\r\n* You gain proficiency with the Deceptive Stance and Painful Pickpocket maneuvers, and do not have to spend exertion to activate them.\r\n* You gain an expertise die on Sleight of Hand checks.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_covert-training", + "fields": { + "name": "Covert Training", + "desc": "You have absorbed some of the lessons of the world of spies, criminals, and others who operate in the shadows. You gain the following benefits:\r\n\r\n* You gain proficiency with thieves' tools, the poisoner's kit, or a rare weapon with the stealthy property.\r\n* You gain two skill tricks of your choice from the rogue class.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_crafting-expert", + "fields": { + "name": "Crafting Expert", + "desc": "You have devoted time to studying and practicing the art of crafting, gaining the following benefits: This feat can be selected multiple times, choosing a different type of crafted item each time.\r\n\r\n* Choose one of the following types of crafted item: armor, engineered items, potions, rings and rods, staves and wands, weapons, wondrous items. You gain advantage on checks made to craft, maintain, and repair that type of item.\r\n* You gain an expertise die on checks made to craft, maintain, and repair items.\r\n* You gain proficiency with two tools of your choice.\r\n\r\nThis feat can be selected multiple times, choosing a different type of crafted item each time.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_crossbow-expertise", + "fields": { + "name": "Crossbow Expertise", + "desc": "* If proficient with a crossbow, you ignore its loading property.\r\n* You do not have disadvantage on ranged attack rolls from being within 5 feet of a hostile creature.\r\n* When you attack with a one-handed weapon using the Attack action, you can use a bonus action to \r\nattack with a hand crossbow wielded in your off-hand.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_deadeye", + "fields": { + "name": "Deadeye", + "desc": "Your natural talent or skill makes you lethal with a ranged weapon.\r\n\r\n* You gain proficiency with the Farshot Stance and Ricochet maneuvers, and do not have to spend exertion to activate them. \r\n* Before you make an attack with a ranged weapon you are proficient with, you can choose to take a penalty on the attack roll equal to your proficiency bonus. If the attack hits, you deal extra damage equal to double your proficiency bonus. This extra damage does not double on a critical hit.\r\n* You ignore half cover and three-quarters cover when making a ranged weapon attack.", + "prerequisite": "8th level or higher", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_deflector", + "fields": { + "name": "Deflector", + "desc": "When you are wielding a finesse weapon with which you are proficient and would be hit by a melee attack, you can use your reaction to add your proficiency bonus to your Armor Class against that attack.", + "prerequisite": "Dexterity 13 or higher", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_destinys-call", + "fields": { + "name": "Destiny’s Call", + "desc": "* An ability score of your choice increases by 1.\r\n* When you gain inspiration through your destiny’s source of inspiration, you can choose one party member within 30 feet of you. That party member gains inspiration if they don’t have it already. Once you inspire a party member in this way, you can’t use this feature again on that party member until you finish a long rest.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_divine-orator", + "fields": { + "name": "Divine Orator", + "desc": "You learn the Divine Inspiration and Persuasive Speech battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Divine Inspiration.** When an ally within 15 feet hits a creature with a melee weapon attack, your ally can deliver a Divine Smite just as if you had delivered it yourself using your Divine Smite feature expending one of your uses). If you are able to empower your smites, you may choose to empower it as normal.\r\n**Persuasive Speech.** Hostile creatures within 60 feet take a –1d4 penalty on attack rolls. You can sustain this battle hymn for up to 3 rounds without expending additional uses of Bardic Inspiration. When a hostile creature begins its third consecutive turn within range of this battle hymn it becomes charmed by you and will not attack you or your allies. If this causes combat to end early, the creatures remain charmed\r\nby you for up to 1 minute afterward or until one of them is damaged by you or an ally. For the next 24 hours after the battle hymn ends, you gain an expertise die on Charisma checks made against creatures that were charmed in this way. A creature that either shares your alignment or worships a deity that has\r\nyour alignment becomes charmed on its second consecutive turn instead. Creatures that have an opposite alignment or worship a greater entity that has an opposite alignment cannot be charmed in this way.", + "prerequisite": "Proclaimer feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_dual-wielding-expert", + "fields": { + "name": "Dual-Wielding Expert", + "desc": "* While wielding a separate melee weapon in each hand, you gain a +1 bonus to Armor Class.\r\n* You can use two-weapon fighting with any two one-handed melee weapons so long as neither has the heavy property.\r\n* When you would normally draw or sheathe a one-handed weapon, you can instead draw or sheathe two one-handed weapons.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_dungeoneer", + "fields": { + "name": "Dungeoneer", + "desc": "* You have advantage on Investigation and Perception checks made to detect secret doors.\r\n* You have advantage on saving throws made against traps.\r\n* You have resistance to damage dealt by traps.\r\n* You don’t take a −5 penalty on your passive Perception score from traveling at a fast pace.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_eldritch-archer", + "fields": { + "name": "Eldritch Archer", + "desc": "* Whenever you make a ranged weapon attack you can choose to conjure magical ammunition and select one of the following damage types: acid, cold, fire, or lightning. Your ranged weapon attacks using this conjured ammunition deal the chosen damage type instead of whatever damage type they would normally deal, and are considered magical for the purpose of overcoming resistance and immunity. Ammunition conjured in this way disappears at the end of the turn it was fired.\r\n* When you hit a target with a ranged weapon attack, you can use your reaction and choose a spell of 1st-level or higher, casting it through your ammunition. The spell must have a casting time of 1 action, and target a single creature or have a range of Touch. If a spell cast in this way requires an attack roll and targets the same target as the triggering ranged weapon attack, it also hits as part of that attack. You may\r\nchoose not to deal damage with a ranged weapon attack used to cast a spell.", + "prerequisite": "3 levels in fighter, 3 levels in wizard, Fighting Style (Archery)", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_eldritch-volley-master", + "fields": { + "name": "Eldritch Volley Master", + "desc": "Whenever you cast a spell with a Cone area, you may additionally make ranged weapon attacks with a ranged weapon you are wielding against targets within that conical area. You may make up to a number of attacks equal to the level of the spell cast, each against a different target. Ranged attacks made in this way ignore the loading quality of weapons and use your conjured magical ammunition.", + "prerequisite": "Arrow Enchanter feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_empathic", + "fields": { + "name": "Empathic", + "desc": "* Your Wisdom or Charisma score increases by 1.\r\n* You gain an expertise die on Insight checks made against other creatures.\r\n* When using a social skill and making a Charisma check another creature, you score a critical success on a roll of 19–20.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_equipped-for-justice", + "fields": { + "name": "Equipped for Justice", + "desc": "* You gain proficiency with all types of artisan’s tools and miscellaneous tools. If you already have proficiency with any of these tools, you instead gain an expertise die with those tools.\r\n* You gain proficiency with Engineering and a 1d8 expertise die on Engineering checks. In addition, you build a nonmagical grappling gun that only functions in your hands. Replacing your grappling gun requires 3 days of crafting and 500 gp.\r\n* You may add your Wisdom modifier to the DC of any saving throws used for miscellaneous adventuring gear items and to attack rolls made using miscellaneous adventuring gear items.", + "prerequisite": "Vigilante feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_fear-breaker", + "fields": { + "name": "Fear Breaker", + "desc": "* You gain proficiency with the Victory Pose maneuver and do not have to spend exertion to activate it. In addition, you may use this maneuver with up to three different weapons you select instead of just one, and\r\naffect allies within 60 feet. \r\n* An ally affected by your Victory Pose gains an expertise die on their next saving throw against fear, and if they are rattled the condition ends for them.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_fortunate", + "fields": { + "name": "Fortunate", + "desc": "You gain 3 fate points. Whenever you make an attack roll, ability check, or saving throw and do not have disadvantage, you can spend a fate point to roll an additional d20 and choose whichever result you wish. \r\nYou may do this after the initial roll has occurred, but before the outcome is known. If you have disadvantage, you may instead spend a fate point to choose one of the d20 rolls and reroll it.\r\nAlternatively, when you are attacked, you can choose to spend a fate point to force the attacking creature to reroll the attack. The creature resolves the attack with the result you choose. You regain all expended fate points when you finish a long rest.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_grappler", + "fields": { + "name": "Grappler", + "desc": "* You gain advantage on attack rolls against a creature you are grappling.\r\n* You can use your action to try to pin a creature you are grappling. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", + "prerequisite": "Strength 13 or higher", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_guarded-warrior", + "fields": { + "name": "Guarded Warrior", + "desc": "* A creature that takes the Disengage action still provokes opportunity attacks from you. \r\n* You gain proficiency with the Warning Strike maneuver and do not have to spend exertion to activate it.\r\n* You can use your reaction to make a melee weapon attack against a creature within 5 feet that makes an attack against a target other than you if the target does not also have this feat.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_harbinger-of-things-to-come", + "fields": { + "name": "Harbinger of Things to Come", + "desc": "You learn the Preach Despair and Preach Hope battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Preach Despair.** A hostile creature within 60 feet of you suffers a level of strife. Creatures with an opposite alignment from yours or that worship a greater entity that has an opposite alignment suffer two levels of strife instead. A creature cannot suffer more than two levels of strife from Preach Despair in the same 24 hours.\r\n**Preach Hope.** Creatures of your choice within 60 feet of you gain advantage on saving throws. When the battle hymn ends, allies within 30 feet of you remove one level of strife. An ally that shares your alignment or worships a greater entity removes two levels of strife instead.", + "prerequisite": "Divine Orator feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_hardy-adventurer", + "fields": { + "name": "Hardy Adventurer", + "desc": "* When you take this feat, you gain a number of hit points equal to twice your level. \r\n* Whenever you gain a new level, you gain an additional 2 hit points to your hit point maximum.\r\n* During a short rest, you regain 1 additional hit point per hit die spent to heal.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_heavily-outfitted", + "fields": { + "name": "Heavily Outfitted", + "desc": "* Your Strength score increases by 1, to a maximum of 20.\r\n* You gain proficiency with heavy armor.", + "prerequisite": "Proficiency with medium armor", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_heavy-armor-expertise", + "fields": { + "name": "Heavy Armor Expertise", + "desc": "* Your Strength score increases by 1, to a maximum of 20.\r\n* While wearing heavy armor, you reduce all bludgeoning, piercing, and slashing damage from nonmagical weapons by 3.", + "prerequisite": "Proficiency with heavy armor", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_heraldic-training", + "fields": { + "name": "Heraldic Training", + "desc": "* You gain proficiency in your choice of one martial weapon, one rare weapon, or shields.\r\n* You gain two divine lessons of your choice from the herald class.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_idealistic-leader", + "fields": { + "name": "Idealistic Leader", + "desc": "* Any stronghold you have or buy that is of frugal quality is automatically upgraded to average quality at no additional cost.\r\n* You gain a new follower for every 50 staff you have in your stronghold, rather than every 100 staff.\r\n* When you fulfill your destiny, choose a number of followers equal to your proficiency bonus. Each is upgraded to their most expensive version.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_intuitive", + "fields": { + "name": "Intuitive", + "desc": "* Your Intelligence or Wisdom score increases by 1, to a maximum of 20. \r\n* Your passive Perception and passive Investigation scores increase by 5.\r\n* If you can see a creature’s mouth while it is speaking a language you know, you can read its lips.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_keen-intellect", + "fields": { + "name": "Keen Intellect", + "desc": "* Your Intelligence score increases by 1, to a maximum of 20.\r\n* You can recall anything you’ve seen or heard within a number of weeks equal to your Intelligence modifier.\r\n* You know how long it will be before the next sunset or sunrise.\r\n* You know which way is north.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_lightly-outfitted", + "fields": { + "name": "Lightly Outfitted", + "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with light armor.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_linguistics-expert", + "fields": { + "name": "Linguistics Expert", + "desc": "* Your Intelligence score increases by 1, to a maximum of 20.\r\n* You learn three languages of your choice.\r\n* You can invent ciphers and are able to teach a cipher you create to others. Anyone who knows the cipher can encode and read hidden messages made with it; the apparent text must be at least four times longer than the hidden message. A creature can detect the cipher’s presence if it spends a minute examining it and succeeds on an Investigation check against a DC of 8+ your proficiency bonus + your Intelligence modifier. If the check succeeds by 5 or more, they can read the hidden message.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_living-stampede", + "fields": { + "name": "Living Stampede", + "desc": "Whenever you enter a rage you may choose up to a number of creatures equal to your Wisdom modifier within 60 feet that are beasts, fey, or plants. These chosen creatures gain the following benefits for as long as you rage, but are unable to take the Fall Back reaction:\r\n* Advantage on Strength checks and Strength saving throws.\r\n* Resistance to bludgeoning, piercing, and slashing damage.\r\n* Temporary hit points equal to your level.\r\n* A bonus to damage rolls equal to your proficiency bonus.", + "prerequisite": "Untamed feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_martial-scholar", + "fields": { + "name": "Martial Scholar", + "desc": "* You gain proficiency in a combat tradition of your choice. \r\n* You learn two combat maneuvers from a combat tradition you know. If you don’t already know any combat maneuvers, both must be 1st degree. Combat maneuvers gained from this feat do not count toward the maximum number of combat maneuvers you know.\r\n* Your exertion pool increases by 3. If you do not have an exertion pool, you gain an exertion pool with 3 exertion, regaining your exertion whenever you finish a rest.", + "prerequisite": "Proficiency with at least one martial weapon", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_medium-armor-expert", + "fields": { + "name": "Medium Armor Expert", + "desc": "* Medium armor doesn’t impose disadvantage on your Dexterity (Stealth) checks.\r\n* When you are wearing medium armor, the maximum Dexterity modifier you can add to your Armor Class increases to 3.", + "prerequisite": "Proficiency with medium armor", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_moderately-outfitted", + "fields": { + "name": "Moderately Outfitted", + "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with medium armor and shields.", + "prerequisite": "Proficiency with light armor", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_monster-hunter", + "fields": { + "name": "Monster Hunter", + "desc": "* You gain an expertise die on checks made to learn legends and lore about a creature you can see.\r\n* You learn the altered strike cantrip.\r\n* You gain proficiency with the Douse maneuver and do not have to spend exertion to activate it.\r\n* You gain the tracking skill specialty in Survival.", + "prerequisite": "Proficiency with Survival, 8th level or higher", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_mounted-warrior", + "fields": { + "name": "Mounted Warrior", + "desc": "* You gain proficiency with the Lancer Strike maneuver and do not have to spend exertion to activate it.\r\n* When your mount is targeted by an attack, you can instead make yourself the attack’s target.\r\n* When your mount makes a Dexterity saving throw against an effect that deals half damage on a success, it takes no damage on a success and half damage on a failure.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_mystic-arcanist", + "fields": { + "name": "Mystic Arcanist", + "desc": "* Your Wisdom or Charisma score increases by 1, to a maximum of 20. \r\n* When you cast a spell that restores hit points, you restore an additional number of hit points equal to your Charisma modifier.\r\n* You can spend sorcery points to temporarily gain a spell from the cleric or sorcerer spell lists. Gaining a spell in this way costs a number of sorcery points equal to the spell’s level. You cannot gain a spell that has a level higher than your highest level spell slot. When you gain a cleric spell in this way, it is considered prepared for the day. When you gain a sorcerer spell in this way, it is considered a spell you know for the day. You lose all spells gained in this way whenever you finish a long rest.", + "prerequisite": "3 levels in cleric, 3 levels in sorcerer", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_mystical-talent", + "fields": { + "name": "Mystical Talent", + "desc": "Choose a class: bard, cleric, druid, herald, sorcerer, warlock, or wizard.\r\n\r\n* You learn two cantrips of your choice from the class’s spell list. \r\n* Choose a 1st-level spell to learn from that spell list. Once between long rests, you can cast this spell without expending a spell slot. You can also cast this spell using a spell slot of the appropriate level (or the appropriate number of spell points if you have warlock levels).\r\n\r\nYour spellcasting ability for these spells is Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_natural-warrior", + "fields": { + "name": "Natural Warrior", + "desc": "* Your Speed increases by 5 feet.\r\n* When making an Acrobatics or Athletics check during combat, you can choose to use your Strength or Dexterity modifier for either skill.\r\n* You gain proficiency with the Bounding Strike maneuver and do not have to spend exertion to activate it.\r\n* You can roll 1d4 in place of your normal damage for unarmed strikes. When rolling damage for your unarmed strikes, you can choose to deal bludgeoning, piercing, or slashing damage.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_newblood", + "fields": { + "name": "Newblood", + "desc": "You gain resistance to necrotic damage (or if you already have it, immunity to necrotic damage) and darkvision to a range of 30 feet (or if you already have it, the range of your darkvision increases by 30 feet). You also gain a bite natural weapon and the Charming Gaze feature.\r\n\r\n**Bite.** You gain a bite natural weapon you are proficient with. You are only able to bite grappled, incapacitated, restrained, or willing creatures. You can use Dexterity instead of Strength for the attack rolls of your bite. On a hit your bite deals piercing damage equal to 1d6 plus your Strength modifier or Dexterity modifier (whichever is highest). In addition, once per turn you can choose for your bite to also deal 1d6\r\nnecrotic damage × your proficiency bonus. You regain hit points equal to the amount of necrotic damage dealt to your target. This necrotic damage can only be increased by a critical hit.\r\n**Charming Gaze.** Once between long rests, you magically target a creature within 30 feet, forcing it to make a Wisdom saving throw (DC 8 + your proficiency bonus + your Charisma modifier). On a failure, the target is charmed by you for a number of hours equal to your proficiency bonus. While charmed it regards you as a trusted friend and is a willing target for your bite. The target repeats the saving throw each time it takes damage, ending the effect on itself on a success. If the target’s saving throw is successful or the effect ends for it, it is immune to your charm for 24 hours.\r\n\r\nAdditionally, you have disadvantage on attack rolls and on Perception checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight. In addition, you cannot use your Charming Gaze while you are in direct sunlight.", + "prerequisite": "Must have been bitten by a vampire or taken necrotic damage equal to quadruple your level from a single attack or spell", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_night-master", + "fields": { + "name": "Night Master", + "desc": "You can spend exertion to cast any spells from the air, earth, fear, fire, movement, obscurement, plants, poison, senses, shadow, transformation, unarmed, or water schools at the cost of 2 exertion per spell level. You use your focus save DC for spells cast this way, and your spell attack modifier is equal to your proficiency bonus + your Wisdom modifier.", + "prerequisite": "Subtly Skilled feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_nightstalker", + "fields": { + "name": "Nightstalker", + "desc": "* Your Dexterity or Wisdom score increases by 1, to a maximum of 20.\r\n* You can deal Sneak Attack damage when making attacks using unarmed strikes or adept weapons.\r\n* You gain a bonus equal to your Wisdom modifier on Acrobatics, Deception, and Stealth checks.\r\n\r\nIn addition, you gain the following special focus feature:\r\n**Twilight Vanish.** On your turn you can use a reaction and spend 2 exertion to move up to 30 feet with such incredible speed that you seem to disappear: after moving this way you may immediately take the Hide action.", + "prerequisite": "3 levels in adept, 3 levels in rogue", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_physician", + "fields": { + "name": "Physician", + "desc": "* When you use a healer’s satchel to stabilize a dying creature, it regains a number of\r\nhit points equal to your Wisdom modifier.\r\n* You can spend an action and one use of a healer’s satchel to tend to a creature. The creature regains 1d6 + 4 hit points, plus one hit point for each of its hit dice. The creature can’t regain hit points from this feat again until it finishes a rest.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_polearm-savant", + "fields": { + "name": "Polearm Savant", + "desc": "* When you attack with a glaive, halberd, quarterstaff, or spear and no other weapon using the Attack action, as a bonus action you can make a melee attack with the weapon’s opposite end. This attack uses the same ability modifier as the primary attack, dealing 1d4 bludgeoning damage on a hit.\r\n* While you are wielding a glaive, halberd, pike, quarterstaff, or spear, a creature that enters your reach provokes an opportunity attack from you. A creature can use its reaction to avoid provoking an opportunity attack from you in this way.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_power-caster", + "fields": { + "name": "Power Caster", + "desc": "* The range is doubled for any spell you cast that requires a spell attack roll.\r\n* You ignore half cover and three-quarters cover when making a ranged spell attack.\r\n* Choose one cantrip that requires an attack roll. The cantrip must be from the bard, cleric, druid, herald, sorcerer, warlock, or wizard spell list. You learn this cantrip and your spellcasting ability for it depends\r\non the spell list you chose from: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", + "prerequisite": "The ability to cast at least one spell", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_powerful-attacker", + "fields": { + "name": "Powerful Attacker", + "desc": "* You gain proficiency with the Cleaving Swing maneuver and do not have to spend exertion to activate it. In addition, you can use Cleaving Swing with a versatile weapon wielded with two hands.\r\n* Before you make a melee attack with a two-handed weapon or versatile weapon wielded with two hands, if you are proficient with the weapon and do not have disadvantage you can declare a powerful attack. A\r\npowerful attack has disadvantage, but on a hit deals 10 extra damage.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_primordial-caster", + "fields": { + "name": "Primordial Caster", + "desc": "Upon gaining this feat, choose one of the following damage types: acid, cold, fire, lightning, or thunder.\r\n* When you cast a spell that deals damage, your spell’s damage ignores damage resistance to the chosen type.\r\n* When you cast a spell that deals damage of the chosen type, you deal 1 additional damage for every damage die with a result of 1.\r\nThis feat can be selected multiple times, choosing a different damage type each time.", + "prerequisite": "The ability to cast at least one spell", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_proclaimer", + "fields": { + "name": "Proclaimer", + "desc": "* Whenever the Narrator calls for you to roll for initiative, you may activate a use of your Divine Sense feature to warn yourself and up to a number of creatures equal to your Charisma modifier within 30 feet, granting advantage on the initiative check.\r\n* You can use your voice Art Specialty to cast herald spells.\r\n* You can spend exertion to cast spells from the divination school that you know at a cost of 1 exertion per spell level.\r\n* When you gain this feat, you gain one of the following alignment traits: Chaotic, Evil, Good, or Lawful. Once chosen your alignment trait cannot be changed, but you can gain a second alignment trait that is not opposed.", + "prerequisite": "3 levels in bard, 3 levels in herald", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_pure-arcanist", + "fields": { + "name": "Pure Arcanist", + "desc": "You gain the following manifestations:\r\n**Divine (Radiant).** When you cast a spell that deals radiant damage, you can spend 1 sorcery point and choose one creature you can see within 60 feet. That creature regains a number of hit points equal to 1d8 × the spell’s level. \r\n**Pure Arcanum (Force).** When you cast a spell that deals force damage, you can spend 2 sorcery points and choose one creature you can see. After the spell’s damage is resolved, if the creature was damaged by the spell it makes an Intelligence saving throw or becomes stunned until the end of its next turn.", + "prerequisite": "Mystic Arcanist feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_rallying-speaker", + "fields": { + "name": "Rallying Speaker", + "desc": "When you spend 10 minutes speaking inspirationally, you can choose up to 6 friendly creatures (including yourself) within 30 feet that can hear and understand you. Each creature gains temporary hit points equal to your level + your Charisma modifier. A creature can’t gain temporary hit points from this feat again until it has finished a rest.", + "prerequisite": "Charisma 13 or higher", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_resonant-bond", + "fields": { + "name": "Resonant Bond", + "desc": "You’re able to form a greater bond with magic items. During a short rest, you can focus on a non-consumable magic item and create a unique bond with it called resonance. You can have resonance with\r\nonly one item at a time. Attempting to resonate with another item fails until you end the resonance with your current item. When you resonate with an item, you gain the following benefits.\r\n\r\n* If the resonant item requires attunement and you meet the prerequisites to do so, you become attuned to the item. If you don’t meet the prerequisites, both the attunement and resonance with the item fails. This attunement doesn’t count toward the maximum number of items you can be attuned to. Unlike other\r\nattuned items, your attunement to this item doesn’t end from being more than 100 feet away from it for 24 hours.\r\n* Once per rest, as a bonus action, you can summon a resonant item, which appears instantly in your hand so long as it is located on the same plane of existence. You must have a free hand to use this feature and be able to hold the item. \r\n* If the resonant item is sentient, you have advantage on Charisma checks and saving throws made when resolving a conflict with the item.\r\n* If the resonant item is an artifact, you can ignore the effects of one minor detrimental property.\r\n\r\nYou lose resonance with an item if another creature attunes to it or gains resonance with it. You can also voluntarily end the resonance by focusing on the item during a short rest, or during a long rest if the item is not in your possession.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_revenant", + "fields": { + "name": "Revenant", + "desc": "You may choose to select this feat when you die, replacing your most recently chosen feat other than Vendetta or reducing your ability scores to reverse your last Ability Score Improvement. The next midnight your corpse rises and your soul returns to it. You gain the undead type in addition to being a humanoid, as well as the following benefits:\r\n* Your destiny changes to Revenge.\r\n* You gain resistance to necrotic and psychic damage.\r\n* You gain darkvision to a range of 60 feet (or if you already have it, its range increases by 30 feet).\r\n* You become immune to poison damage and the poisoned condition.\r\n* If your vendetta has not ended, you regain all of your hit points when you finish a short rest or 1 hour after you are reduced to 0 hit points.\r\n* You gain an expertise die on saving throws made against spells and other magical effects, and on saving throws made to resist being charmed, fatigued, frightened, paralyzed, or stunned.\r\n* You gain an expertise die on ability checks made to find or track a creature that is part of your vendetta.", + "prerequisite": "Vendetta, one other feat or previous Ability Score Improvement, dead", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_rite-master", + "fields": { + "name": "Rite Master", + "desc": "You gain a ritual book containing spells that you can cast as rituals while holding it.\r\nChoose one of the following classes: bard, cleric, druid, herald, sorcerer, warlock, or wizard. When you acquire this feat, you create a ritual book holding two 1st-level spells of your choice from that class’ spell\r\nlist. These spells must have the ritual tag. The class you choose determines your spellcasting ability for these spells: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or\r\nsorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.\r\nIf you come across a written spell with the ritual tag (like on a spell scroll or in a wizard’s spellbook), you can add it to your ritual book if the spell is on the spell list for the class you chose and its level is no higher than half your level (rounded up). Copying the spell into your ritual book costs 50 gold and 2 hours per level of the spell.", + "prerequisite": "Intelligence or Wisdom 13 or higher", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_shadow-assassin", + "fields": { + "name": "Shadow Assassin", + "desc": "While you are hidden from a target and are in an area of darkness or dim light, you can apply your Sneak Attack damage to an eldritch blast.", + "prerequisite": "Shadowmancer feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_shadowdancer", + "fields": { + "name": "Shadowdancer", + "desc": "* You gain darkvision to a range of 60 feet. Unlike other forms of darkvision you can see color in this way as if you were seeing normally. If you already had darkvision or would gain it later from another feature, its range increases by 30 feet. \r\n* You can use a bonus action and spend 1 spell point to teleport up to 30 feet to an unoccupied area of darkness or dim light you can see. You must currently be in an area of darkness or dim light to teleport in this way. You can bring along objects if their weight doesn’t exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn’t carrying gear beyond its carrying capacity and is within 5 feet. You can increase the range of this teleport by 30 additional feet per each additional spell point you spend.", + "prerequisite": "3 levels in rogue, 3 levels in warlock", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_shadowmancer", + "fields": { + "name": "Shadowmancer", + "desc": "You gain the following benefits.\r\n* You regain 1 spell point whenever you cast a spell from the shadow school.\r\n* You gain a Stealth skill specialty for hiding while in areas of darkness or dim light, and you have advantage on Dexterity (Stealth) checks made to hide while in areas of darkness or dim light.\r\n* Whenever you use your Shadowdancer ability to teleport, after teleporting you can use your reaction to take the Dodge action.", + "prerequisite": "Shadowdancer feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_shield-focus", + "fields": { + "name": "Shield Focus", + "desc": "You gain the following benefits while wielding a shield:\r\n* When you take the Attack action on your turn, as a bonus action you can make a Shove maneuver against a creature within 5 feet of you.\r\n* When you make a Dexterity saving throw against a spell or harmful effect that only targets you, if you aren’t incapacitated you gain a bonus equal to your shield’s Armor Class bonus.\r\n* When you succeed on a Dexterity saving throw against an effect that deals half damage on a success, you can use your reaction to take no damage by protecting yourself with your shield.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_skillful", + "fields": { + "name": "Skillful", + "desc": "Choose three skills, tools, languages, or any combination of these. You gain proficiency with each of your three choices. If you already have proficiency in a chosen skill, you instead gain a skill specialty with that skill.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_skirmisher", + "fields": { + "name": "Skirmisher", + "desc": "* Your Speed increases by 10 feet.\r\n* You can Dash through difficult terrain without requiring additional movement.\r\n* Whenever you attack a creature, for the rest of your turn you don’t provoke opportunity attacks from that creature.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_spellbreaker", + "fields": { + "name": "Spellbreaker", + "desc": "*You gain proficiency with the Purge Magic maneuver and do not have to spend exertion to activate it.\r\n* When a creature concentrating on a spell is damaged by you, it has disadvantage on its concentration check to maintain the spell it is concentrating on.\r\n* You have advantage on saving throws made against spells cast within 30 feet of you.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_stalwart", + "fields": { + "name": "Stalwart", + "desc": "* Your Constitution score increases by 1, to a maximum of 20.\r\n* You regain an additional number of hit points equal to double your Constitution modifier (minimum 2) whenever you roll a hit die to regain hit points.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_stealth-expert", + "fields": { + "name": "Stealth Expert", + "desc": "* You can try to hide from a creature even while you are only lightly obscured from that creature.\r\n* Your position isn’t revealed when you miss with a ranged weapon attack against a creature you are hidden from.\r\n* Dim light does not impose disadvantage when you make Perception checks.", + "prerequisite": "Dexterity 13 or higher", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_street-fighter", + "fields": { + "name": "Street Fighter", + "desc": "* Your Strength or Constitution score increases by 1, to a maximum of 20.\r\n* You can roll 1d4 in place of your normal damage for unarmed strikes.\r\n* You are proficient with improvised weapons.\r\n* You can use a bonus action to make a Grapple maneuver against a target you hit with an unarmed strike or improvised weapon on your turn.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_subtly-skilled", + "fields": { + "name": "Subtly Skilled", + "desc": "You can add your martial arts die as a bonus to Acrobatics, Culture, Deception, Engineering, Intimidation, Investigation, Sleight of Hand, Stealth, Perception, Performance, and Persuasion checks.", + "prerequisite": "Nightstalker feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_surgical-combatant", + "fields": { + "name": "Surgical Combatant", + "desc": "* You gain proficiency with the Dangerous Strikes maneuver and do not have to spend exertion to activate it.\r\n* You gain proficiency in Medicine. If you are already proficient, you instead gain an expertise die.\r\n* You gain an expertise die on Medicine checks made to diagnose the cause of or treat wounds.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_survivor", + "fields": { + "name": "Survivor", + "desc": "* When you are reduced to 0 or fewer hit points, you can use your reaction to move up to your Speed before falling unconscious. Moving in this way doesn’t provoke opportunity attacks.\r\n* On the first turn that you start with 0 hit points and must make a death saving throw, you make that saving throw with advantage.\r\n* When you take massive damage that would kill you instantly, you can use your reaction to make a death saving throw. If the saving throw succeeds, you instead fall unconscious and are dying. \r\n* Medicine checks made to stabilize you have advantage. \r\n* Once between long rests, when a creature successfully stabilizes you, at the start of your next turn you regain 1 hit point.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_swift-combatant", + "fields": { + "name": "Swift Combatant", + "desc": "* Your Speed increases by 5 feet. \r\n* You gain proficiency with the Charge, Rapid Drink, and Swift Stance maneuvers, and do not have to spend exertion to activate them.", + "prerequisite": "8th level or higher", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_tactical-support", + "fields": { + "name": "Tactical Support", + "desc": "* When using the Help action to aid an ally in attacking a creature, the targeted creature can be up to 30 feet away instead of 5 feet.\r\n* If an ally benefiting from your Help action scores a critical hit on the targeted creature, you can use your reaction to make a single weapon attack against that creature. Your attack scores a critical hit on a roll of 19–20. If you already have a feature that increases the range of your critical hits, your critical hit range\r\nfor that attack is increased by 1 (maximum 17–20). \r\n* When a creature is damaged by an attack that was aided by the use of your Help action, you don’t provoke opportunity attacks from that creature until the end of your next turn.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_tenacious", + "fields": { + "name": "Tenacious", + "desc": "Choose one ability score. The chosen ability score increases by 1, to a maximum of 20, and you gain proficiency in saving throws using it.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_thespian", + "fields": { + "name": "Thespian", + "desc": "* Your Charisma score increases by 1, to a maximum of 20. \r\n* You have advantage on Deception and Performance checks made when attempting to mimic another creature’s looks, mannerisms, or speech.\r\n* You have a natural talent for perfectly mimicking the sounds of other creatures you’ve heard make sound for at least 1 minute. A suspicious listener can see through your perfect mimicry by succeeding on a Wisdom (Insight) check opposed by your Charisma (Deception) check.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_true-revenant", + "fields": { + "name": "True Revenant", + "desc": "One year and one day after you select this feat or when your vendetta has ended, you are doomed. Until then, you gain the following benefits.\r\n* You cannot be charmed, fatigued, frightened, paralyzed, or stunned.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* You regain all of your hit points after you do not take any damage for 1 minute.\r\nIn addition, you also gain the Fearsome Pursuit and Burning Hatred features. \r\n**Fearsome Pursuit.** You can spend 1 minute focusing on a creature that is part of your vendetta. If the creature is dead or on another plane of existence, you learn that. Otherwise, after focusing, you know the distance and direction to that creature, and so long as you’re moving in pursuit of that creature, you and anyone traveling with you ignore difficult terrain. This effect ends if you take damage or end your turn without moving for any reason.\r\n**Burning Hatred.** You can use an action to target the focus of your Fearsome Pursuit if it is within 30 feet. The creature makes a Wisdom saving throw (DC 8 + your proficiency bonus + your highest mental ability score modifier). On a failure, it takes psychic damage equal to 1d6 × your proficiency bonus and is stunned until the end of its next turn. On a success, it takes half damage and is rattled until the end of its\r\nnext turn. Once you have used this feature a number of times equal to your proficiency bonus, you can’t use it again until you finish a long rest.", + "prerequisite": "Revenant feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_untamed", + "fields": { + "name": "Untamed", + "desc": "* Your Strength or Wisdom score increases by 1, to a maximum of 20.\r\n* You may enter a rage and assume a wild shape using the same bonus action.\r\n* While using a wild shape, you can use Furious Critical with attacks made using natural weapons.\r\n* Any temporary hit points you gain from assuming a wild shape while raging become rage hit points instead.\r\n* You may cast and concentrate on druid spells with a range of Self or Touch while raging.", + "prerequisite": "Prerequisites: 3 levels in berserker, 3 levels in druid (Skinchanger archetype)", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_vampire-lord", + "fields": { + "name": "Vampire Lord", + "desc": "You gain the following benefits.\r\n* Your Speed increases by 10 feet.\r\n* You gain an expertise die on Stealth checks.\r\n* The range of your darkvision increases to 120 feet.\r\n* Your bite damage increases to 1d10.\r\n* You can use Charming Gaze twice between rests.\r\n* When using Charming Gaze, a target with at least one level of strife makes its saving throw with disadvantage.\r\n\r\nYou also gain the Vampiric Shapechange feature.\r\n\r\n**Vampiric Shapechange.** You can use an action to transform into the shape of a Medium or smaller beast of CR 3 or less, a mist, or back into your true form. While transformed into a beast, you have the beast’s size and movement modes. You can’t use reactions or speak. Otherwise, you use your statistics. Any items you are carrying transform with you. While transformed into a mist, you have a flying speed of 30 feet, can’t speak, can’t take actions or manipulate objects, are immune to nonmagical damage from weapons, and have advantage on saving throws and Stealth checks. You can pass through a space as narrow as 1 inch without squeezing but can’t pass through water. Any items you are carrying transform with you.\r\n\r\nAdditionally, you gain the undead type in addition to being a humanoid, and you take 20 radiant damage when you end your turn in contact with sunlight.", + "prerequisite": "Vampire Spawn", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_vampire-spawn", + "fields": { + "name": "Vampire Spawn", + "desc": "Your bite damage increases to 1d8, a creature affected by your Charming Gaze remains charmed for a number of hours equal to your level, and you regain the use of Charming Gaze when you finish any\r\nrest. You also gain the Spider Climb and Vampiric Regeneration features.\r\n\r\n**Spider Climb.** You gain a climb speed equal to your Speed, and you can climb even on difficult surfaces and upside down on ceilings.\r\n**Vampiric Regeneration.** Whenever you start your turn with at least 1 hit point and you haven’t taken radiant damage or entered direct sunlight since the end of your last turn, you gain a number of temporary hit points equal to twice your proficiency bonus. When you end your turn in contact with running water, you take 20 radiant damage.", + "prerequisite": "Newblood", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_vendetta", + "fields": { + "name": "Vendetta", + "desc": "Something or someone has had a profound impact on your life—and earned your unending rancor. You gain an expertise die on attack rolls and initiative checks made against creatures that are part of your\r\nvendetta, and when making a saving throw to resist an attack, feature, maneuver, spell, or trait from a creature that is part of your vendetta. Whether or not a creature is part of your vendetta is at the Narrator’s discretion.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_vengeful-protector", + "fields": { + "name": "Vengeful Protector", + "desc": "* You gain proficiency with shields as weapons.\r\n* You gain proficiency with the Double Team maneuver and do not have to spend exertion to activate it.\r\n* When a creature reduces a party member (not including animal companions, familiars, or followers) to 0 hit points, you gain an expertise die on attacks made against it until the end of combat.", + "prerequisite": "Proficiency with shields", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_vigilante", + "fields": { + "name": "Vigilante", + "desc": "* Your Wisdom or Dexterity score increases by 1, to a maximum of 20.\r\n* You have an alter ego, an identity associated with a costume or disguise. This alter ego can be as complicated as a full outfit with a history or legends surrounding it or a simple mask or cowl. You can assume or remove this alter ego as an action and it can be worn with all types of armor. \r\n* You gain a 1d8 expertise die and advantage on Deception checks made regarding your alter ego, Persuasion checks made to dissuade others from connecting you to your alter ego, and on disguise kit checks.\r\n* Your alter ego has its own Prestige rating that may increase or decrease as you perform deeds while in your alter ego. In addition, while in your alter ego you gain a 1d8 expertise die on Prestige checks.\r\n* While in your alter ego, you may make a Prestige check and use that result in place of any Intimidation or Persuasion check you would otherwise make.", + "prerequisite": "3 levels in adept, 3 levels in ranger", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_weapons-specialist", + "fields": { + "name": "Weapons Specialist", + "desc": "* Your Strength or Dexterity score increases by 1, to a maximum of 20.\r\n* You gain proficiency with four weapons of your choice. Three of these must be a simple or a martial weapon. The fourth choice can be a simple, martial, or rare weapon.", + "prerequisite": "", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_well-heeled", + "fields": { + "name": "Well-Heeled", + "desc": "* You are treated as royalty (or as closely as possible) by most commoners and traders, and as an equal when meeting other authority figures (who make time in their schedule to see you when requested to do so).\r\n* You have passive investments and income that allow you to maintain a high quality of living. You have a rich lifestyle and do not need to pay for it.\r\n* You gain a second Prestige Center. This must be an area where you have spent at least a week of time.", + "prerequisite": "Prestige rating of 2 or higher", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_wild-rioter", + "fields": { + "name": "Wild Rioter", + "desc": "While raging, you and any creatures benefiting from your Living Stampede emit 5-foot auras of fury. When a creature other than you or your allies enters a fury aura or starts its turn there it makes a Wisdom saving throw against your druid spell save DC. On a failed save, a creature becomes confused, except instead of rolling to determine their actions as normal for the confused condition, they are always considered to have rolled the 7 or 8 result. At the end of each of a confused creature’s turns it repeats the saving throw, ending the effect on itself on a success. Once a creature successfully saves against this effect, it is immune to it for the remainder of your rage.", + "prerequisite": "Living Stampede feat", + "document": "a5e-ag" + } +}, +{ + "model": "api_v2.feat", + "pk": "a5e-ag_woodcraft-training", + "fields": { + "name": "Woodcraft Training", + "desc": "* You gain proficiency with the herbalism kit, navigator’s kit, a simple ranged weapon, or a martial ranged weapon.\r\n* You gain two exploration knacks of your choice from the ranger class.", + "prerequisite": "", + "document": "a5e-ag" + } +} +] diff --git a/data/v2/en-publishing/a5e-ag/FeatBenefit.json b/data/v2/en-publishing/a5e-ag/FeatBenefit.json index d7d0f405..b8b53c01 100644 --- a/data/v2/en-publishing/a5e-ag/FeatBenefit.json +++ b/data/v2/en-publishing/a5e-ag/FeatBenefit.json @@ -1,2372 +1,2372 @@ [ - { - "model": "api_v2.featbenefit", - "pk": 1, - "fields": { - "name": "", - "desc": "You gain proficiency with the herbalism kit, navigator’s kit, a simple ranged weapon, or a martial ranged weapon.", - "type": null, - "parent": "a5e-ag_woodcraft-training" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 2, - "fields": { - "name": "", - "desc": "You gain two exploration knacks of your choice from the ranger class.", - "type": null, - "parent": "a5e-ag_woodcraft-training" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 3, - "fields": { - "name": "", - "desc": "While raging, you and any creatures benefiting from your Living Stampede emit 5-foot auras of fury.", - "type": null, - "parent": "a5e-ag_wild-rioter" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 4, - "fields": { - "name": "", - "desc": "When a creature other than you or your allies enters a fury aura or starts its turn there it makes a Wisdom saving throw against your druid spell save DC. On a failed save, a creature becomes confused, except instead of rolling to determine their actions as normal for the confused condition, they are always considered to have rolled the 7 or 8 result. At the end of each of a confused creature’s turns it repeats the saving throw, ending the effect on itself on a success. Once a creature successfully saves against this effect, it is immune to it for the remainder of your rage.", - "type": null, - "parent": "a5e-ag_wild-rioter" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 5, - "fields": { - "name": "", - "desc": "You are treated as royalty (or as closely as possible) by most commoners and traders, and as an equal when meeting other authority figures (who make time in their schedule to see you when requested to do so).", - "type": null, - "parent": "a5e-ag_well-heeled" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 6, - "fields": { - "name": "", - "desc": "You have passive investments and income that allow you to maintain a high quality of living. You have a rich lifestyle and do not need to pay for it.", - "type": null, - "parent": "a5e-ag_well-heeled" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 7, - "fields": { - "name": "", - "desc": "You gain a second Prestige Center. This must be an area where you have spent at least a week of time.", - "type": null, - "parent": "a5e-ag_well-heeled" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 8, - "fields": { - "name": "", - "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_weapons-specialist" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 9, - "fields": { - "name": "", - "desc": "You gain proficiency with four weapons of your choice. Three of these must be a simple or a martial weapon. The fourth choice can be a simple, martial, or rare weapon.", - "type": null, - "parent": "a5e-ag_weapons-specialist" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 10, - "fields": { - "name": "", - "desc": "Your Wisdom or Dexterity score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_vigilante" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 11, - "fields": { - "name": "", - "desc": "You have an alter ego, an identity associated with a costume or disguise. This alter ego can be as complicated as a full outfit with a history or legends surrounding it or a simple mask or cowl. You can assume or remove this alter ego as an action and it can be worn with all types of armor.", - "type": null, - "parent": "a5e-ag_vigilante" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 12, - "fields": { - "name": "", - "desc": "You gain a 1d8 expertise die and advantage on Deception checks made regarding your alter ego, Persuasion checks made to dissuade others from connecting you to your alter ego, and on disguise kit checks.", - "type": null, - "parent": "a5e-ag_vigilante" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 13, - "fields": { - "name": "", - "desc": "Your alter ego has its own Prestige rating that may increase or decrease as you perform deeds while in your alter ego. In addition, while in your alter ego you gain a 1d8 expertise die on Prestige checks.", - "type": null, - "parent": "a5e-ag_vigilante" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 14, - "fields": { - "name": "", - "desc": "While in your alter ego, you may make a Prestige check and use that result in place of any Intimidation or Persuasion check you would otherwise make.", - "type": null, - "parent": "a5e-ag_vigilante" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 15, - "fields": { - "name": "", - "desc": "You gain proficiency with shields as weapons.", - "type": null, - "parent": "a5e-ag_vengeful-protector" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 16, - "fields": { - "name": "", - "desc": "You gain proficiency with the Double Team maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "a5e-ag_vengeful-protector" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 17, - "fields": { - "name": "", - "desc": "When a creature reduces a party member (not including animal companions, familiars, or followers) to 0 hit points, you gain an expertise die on attacks made against it until the end of combat.", - "type": null, - "parent": "a5e-ag_vengeful-protector" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 18, - "fields": { - "name": "", - "desc": "You gain an expertise die on attack rolls and initiative checks made against creatures that are part of your\r\nvendetta, and when making a saving throw to resist an attack, feature, maneuver, spell, or trait from a creature that is part of your vendetta. Whether or not a creature is part of your vendetta is at the Narrator’s discretion.", - "type": null, - "parent": "a5e-ag_vendetta" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 19, - "fields": { - "name": "", - "desc": "Your bite damage increases to 1d8, a creature affected by your Charming Gaze remains charmed for a number of hours equal to your level, and you regain the use of Charming Gaze when you finish any\r\nrest.", - "type": null, - "parent": "a5e-ag_vampire-spawn" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 20, - "fields": { - "name": "", - "desc": "You also gain the Spider Climb and Vampiric Regeneration features.\r\n**Spider Climb.** You gain a climb speed equal to your Speed, and you can climb even on difficult surfaces and upside down on ceilings.\r\n**Vampiric Regeneration.** Whenever you start your turn with at least 1 hit point and you haven’t taken radiant damage or entered direct sunlight since the end of your last turn, you gain a number of temporary hit points equal to twice your proficiency bonus. When you end your turn in contact with running water, you take 20 radiant damage.", - "type": null, - "parent": "a5e-ag_vampire-spawn" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 21, - "fields": { - "name": "", - "desc": "Your Speed increases by 10 feet.", - "type": null, - "parent": "a5e-ag_vampire-lord" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 22, - "fields": { - "name": "", - "desc": "You gain an expertise die on Stealth checks.", - "type": null, - "parent": "a5e-ag_vampire-lord" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 23, - "fields": { - "name": "", - "desc": "The range of your darkvision increases to 120 feet.", - "type": null, - "parent": "a5e-ag_vampire-lord" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 24, - "fields": { - "name": "", - "desc": "Your bite damage increases to 1d10.", - "type": null, - "parent": "a5e-ag_vampire-lord" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 25, - "fields": { - "name": "", - "desc": "You can use Charming Gaze twice between rests.", - "type": null, - "parent": "a5e-ag_vampire-lord" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 26, - "fields": { - "name": "", - "desc": "When using Charming Gaze, a target with at least one level of strife makes its saving throw with disadvantage.", - "type": null, - "parent": "a5e-ag_vampire-lord" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 27, - "fields": { - "name": "", - "desc": "You also gain the Vampiric Shapechange feature.\r\n\r\n**Vampiric Shapechange.** You can use an action to transform into the shape of a Medium or smaller beast of CR 3 or less, a mist, or back into your true form. While transformed into a beast, you have the beast’s size and movement modes. You can’t use reactions or speak. Otherwise, you use your statistics. Any items you are carrying transform with you. While transformed into a mist, you have a flying speed of 30 feet, can’t speak, can’t take actions or manipulate objects, are immune to nonmagical damage from weapons, and have advantage on saving throws and Stealth checks. You can pass through a space as narrow as 1 inch without squeezing but can’t pass through water. Any items you are carrying transform with you.", - "type": null, - "parent": "a5e-ag_vampire-lord" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 28, - "fields": { - "name": "", - "desc": "Additionally, you gain the undead type in addition to being a humanoid, and you take 20 radiant damage when you end your turn in contact with sunlight.", - "type": null, - "parent": "a5e-ag_vampire-lord" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 29, - "fields": { - "name": "", - "desc": "Your Strength or Wisdom score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_untamed" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 30, - "fields": { - "name": "", - "desc": "You may enter a rage and assume a wild shape using the same bonus action.", - "type": null, - "parent": "a5e-ag_untamed" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 31, - "fields": { - "name": "", - "desc": "While using a wild shape, you can use Furious Critical with attacks made using natural weapons.", - "type": null, - "parent": "a5e-ag_untamed" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 32, - "fields": { - "name": "", - "desc": "Any temporary hit points you gain from assuming a wild shape while raging become rage hit points instead.", - "type": null, - "parent": "a5e-ag_untamed" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 33, - "fields": { - "name": "", - "desc": "You may cast and concentrate on druid spells with a range of Self or Touch while raging.", - "type": null, - "parent": "a5e-ag_untamed" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 34, - "fields": { - "name": "", - "desc": "You cannot be charmed, fatigued, frightened, paralyzed, or stunned.", - "type": null, - "parent": "a5e-ag_true-revenant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 35, - "fields": { - "name": "", - "desc": "You have advantage on saving throws against spells and other magical effects.", - "type": null, - "parent": "a5e-ag_true-revenant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 36, - "fields": { - "name": "", - "desc": "You regain all of your hit points after you do not take any damage for 1 minute.", - "type": null, - "parent": "a5e-ag_true-revenant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 37, - "fields": { - "name": "", - "desc": "In addition, you also gain the Fearsome Pursuit and Burning Hatred features. \r\n**Fearsome Pursuit.** You can spend 1 minute focusing on a creature that is part of your vendetta. If the creature is dead or on another plane of existence, you learn that. Otherwise, after focusing, you know the distance and direction to that creature, and so long as you’re moving in pursuit of that creature, you and anyone traveling with you ignore difficult terrain. This effect ends if you take damage or end your turn without moving for any reason.\r\n**Burning Hatred.** You can use an action to target the focus of your Fearsome Pursuit if it is within 30 feet. The creature makes a Wisdom saving throw (DC 8 + your proficiency bonus + your highest mental ability score modifier). On a failure, it takes psychic damage equal to 1d6 × your proficiency bonus and is stunned until the end of its next turn. On a success, it takes half damage and is rattled until the end of its\r\nnext turn. Once you have used this feature a number of times equal to your proficiency bonus, you can’t use it again until you finish a long rest.", - "type": null, - "parent": "a5e-ag_true-revenant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 38, - "fields": { - "name": "", - "desc": "Your Charisma score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_thespian" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 39, - "fields": { - "name": "", - "desc": "You have advantage on Deception and Performance checks made when attempting to mimic another creature’s looks, mannerisms, or speech.", - "type": null, - "parent": "a5e-ag_thespian" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 40, - "fields": { - "name": "", - "desc": "You have a natural talent for perfectly mimicking the sounds of other creatures you’ve heard make sound for at least 1 minute. A suspicious listener can see through your perfect mimicry by succeeding on a Wisdom (Insight) check opposed by your Charisma (Deception) check.", - "type": null, - "parent": "a5e-ag_thespian" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 41, - "fields": { - "name": "", - "desc": "Choose one ability score. The chosen ability score increases by 1, to a maximum of 20, and you gain proficiency in saving throws using it.", - "type": null, - "parent": "a5e-ag_tenacious" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 42, - "fields": { - "name": "", - "desc": "When using the Help action to aid an ally in attacking a creature, the targeted creature can be up to 30 feet away instead of 5 feet.", - "type": null, - "parent": "a5e-ag_tactical-support" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 43, - "fields": { - "name": "", - "desc": "If an ally benefiting from your Help action scores a critical hit on the targeted creature, you can use your reaction to make a single weapon attack against that creature. Your attack scores a critical hit on a roll of 19–20. If you already have a feature that increases the range of your critical hits, your critical hit range\r\nfor that attack is increased by 1 (maximum 17–20).", - "type": null, - "parent": "a5e-ag_tactical-support" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 44, - "fields": { - "name": "", - "desc": "When a creature is damaged by an attack that was aided by the use of your Help action, you don’t provoke opportunity attacks from that creature until the end of your next turn.", - "type": null, - "parent": "a5e-ag_tactical-support" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 45, - "fields": { - "name": "", - "desc": "Your Speed increases by 5 feet.", - "type": null, - "parent": "a5e-ag_swift-combatant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 46, - "fields": { - "name": "", - "desc": "You gain proficiency with the Charge, Rapid Drink, and Swift Stance maneuvers, and do not have to spend exertion to activate them.", - "type": null, - "parent": "a5e-ag_swift-combatant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 47, - "fields": { - "name": "", - "desc": "When you are reduced to 0 or fewer hit points, you can use your reaction to move up to your Speed before falling unconscious. Moving in this way doesn’t provoke opportunity attacks.", - "type": null, - "parent": "a5e-ag_survivor" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 48, - "fields": { - "name": "", - "desc": "On the first turn that you start with 0 hit points and must make a death saving throw, you make that saving throw with advantage.", - "type": null, - "parent": "a5e-ag_survivor" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 49, - "fields": { - "name": "", - "desc": "When you take massive damage that would kill you instantly, you can use your reaction to make a death saving throw. If the saving throw succeeds, you instead fall unconscious and are dying.", - "type": null, - "parent": "a5e-ag_survivor" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 50, - "fields": { - "name": "", - "desc": "Medicine checks made to stabilize you have advantage.", - "type": null, - "parent": "a5e-ag_survivor" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 51, - "fields": { - "name": "", - "desc": "Once between long rests, when a creature successfully stabilizes you, at the start of your next turn you regain 1 hit point.", - "type": null, - "parent": "a5e-ag_survivor" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 52, - "fields": { - "name": "", - "desc": "You gain proficiency with the Dangerous Strikes maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "a5e-ag_surgical-combatant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 53, - "fields": { - "name": "", - "desc": "You gain proficiency in Medicine. If you are already proficient, you instead gain an expertise die.", - "type": null, - "parent": "a5e-ag_surgical-combatant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 54, - "fields": { - "name": "", - "desc": "You gain an expertise die on Medicine checks made to diagnose the cause of or treat wounds.", - "type": null, - "parent": "a5e-ag_surgical-combatant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 55, - "fields": { - "name": "", - "desc": "You can add your martial arts die as a bonus to Acrobatics, Culture, Deception, Engineering, Intimidation, Investigation, Sleight of Hand, Stealth, Perception, Performance, and Persuasion checks.", - "type": null, - "parent": "a5e-ag_subtly-skilled" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 56, - "fields": { - "name": "", - "desc": "Your Strength or Constitution score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_street-fighter" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 57, - "fields": { - "name": "", - "desc": "You can roll 1d4 in place of your normal damage for unarmed strikes.", - "type": null, - "parent": "a5e-ag_street-fighter" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 58, - "fields": { - "name": "", - "desc": "You are proficient with improvised weapons.", - "type": null, - "parent": "a5e-ag_street-fighter" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 59, - "fields": { - "name": "", - "desc": "You can use a bonus action to make a Grapple maneuver against a target you hit with an unarmed strike or improvised weapon on your turn.", - "type": null, - "parent": "a5e-ag_street-fighter" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 60, - "fields": { - "name": "", - "desc": "You can try to hide from a creature even while you are only lightly obscured from that creature.", - "type": null, - "parent": "a5e-ag_stealth-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 61, - "fields": { - "name": "", - "desc": "Your position isn’t revealed when you miss with a ranged weapon attack against a creature you are hidden from.", - "type": null, - "parent": "a5e-ag_stealth-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 62, - "fields": { - "name": "", - "desc": "Dim light does not impose disadvantage when you make Perception checks.", - "type": null, - "parent": "a5e-ag_stealth-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 63, - "fields": { - "name": "", - "desc": "Your Constitution score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_stalwart" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 64, - "fields": { - "name": "", - "desc": "You regain an additional number of hit points equal to double your Constitution modifier (minimum 2) whenever you roll a hit die to regain hit points.", - "type": null, - "parent": "a5e-ag_stalwart" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 65, - "fields": { - "name": "", - "desc": "You gain proficiency with the Purge Magic maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "a5e-ag_spellbreaker" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 66, - "fields": { - "name": "", - "desc": "When a creature concentrating on a spell is damaged by you, it has disadvantage on its concentration check to maintain the spell it is concentrating on.", - "type": null, - "parent": "a5e-ag_spellbreaker" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 67, - "fields": { - "name": "", - "desc": "You have advantage on saving throws made against spells cast within 30 feet of you.", - "type": null, - "parent": "a5e-ag_spellbreaker" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 68, - "fields": { - "name": "", - "desc": "Your Speed increases by 10 feet.", - "type": null, - "parent": "a5e-ag_skirmisher" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 69, - "fields": { - "name": "", - "desc": "You can Dash through difficult terrain without requiring additional movement.", - "type": null, - "parent": "a5e-ag_skirmisher" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 70, - "fields": { - "name": "", - "desc": "Whenever you attack a creature, for the rest of your turn you don’t provoke opportunity attacks from that creature.", - "type": null, - "parent": "a5e-ag_skirmisher" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 71, - "fields": { - "name": "", - "desc": "Choose three skills, tools, languages, or any combination of these. You gain proficiency with each of your three choices. If you already have proficiency in a chosen skill, you instead gain a skill specialty with that skill.", - "type": null, - "parent": "a5e-ag_skillful" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 72, - "fields": { - "name": "", - "desc": "When you take the Attack action on your turn, as a bonus action you can make a Shove maneuver against a creature within 5 feet of you.", - "type": null, - "parent": "a5e-ag_shield-focus" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 73, - "fields": { - "name": "", - "desc": "When you make a Dexterity saving throw against a spell or harmful effect that only targets you, if you aren’t incapacitated you gain a bonus equal to your shield’s Armor Class bonus.", - "type": null, - "parent": "a5e-ag_shield-focus" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 74, - "fields": { - "name": "", - "desc": "When you succeed on a Dexterity saving throw against an effect that deals half damage on a success, you can use your reaction to take no damage by protecting yourself with your shield.", - "type": null, - "parent": "a5e-ag_shield-focus" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 75, - "fields": { - "name": "", - "desc": "You regain 1 spell point whenever you cast a spell from the shadow school.", - "type": null, - "parent": "a5e-ag_shadowmancer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 76, - "fields": { - "name": "", - "desc": "You gain a Stealth skill specialty for hiding while in areas of darkness or dim light, and you have advantage on Dexterity (Stealth) checks made to hide while in areas of darkness or dim light.", - "type": null, - "parent": "a5e-ag_shadowmancer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 77, - "fields": { - "name": "", - "desc": "Whenever you use your Shadowdancer ability to teleport, after teleporting you can use your reaction to take the Dodge action.", - "type": null, - "parent": "a5e-ag_shadowmancer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 78, - "fields": { - "name": "", - "desc": "You gain darkvision to a range of 60 feet. Unlike other forms of darkvision you can see color in this way as if you were seeing normally. If you already had darkvision or would gain it later from another feature, its range increases by 30 feet.", - "type": null, - "parent": "a5e-ag_shadowdancer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 79, - "fields": { - "name": "", - "desc": "You can use a bonus action and spend 1 spell point to teleport up to 30 feet to an unoccupied area of darkness or dim light you can see. You must currently be in an area of darkness or dim light to teleport in this way. You can bring along objects if their weight doesn’t exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn’t carrying gear beyond its carrying capacity and is within 5 feet. You can increase the range of this teleport by 30 additional feet per each additional spell point you spend.", - "type": null, - "parent": "a5e-ag_shadowdancer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 80, - "fields": { - "name": "", - "desc": "While you are hidden from a target and are in an area of darkness or dim light, you can apply your Sneak Attack damage to an eldritch blast.", - "type": null, - "parent": "a5e-ag_shadow-assassin" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 81, - "fields": { - "name": "", - "desc": "You gain a ritual book containing spells that you can cast as rituals while holding it.", - "type": null, - "parent": "a5e-ag_rite-master" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 82, - "fields": { - "name": "", - "desc": "Choose one of the following classes: bard, cleric, druid, herald, sorcerer, warlock, or wizard. When you acquire this feat, you create a ritual book holding two 1st-level spells of your choice from that class’ spell\r\nlist. These spells must have the ritual tag. The class you choose determines your spellcasting ability for these spells: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or\r\nsorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", - "type": null, - "parent": "a5e-ag_rite-master" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 83, - "fields": { - "name": "", - "desc": "If you come across a written spell with the ritual tag (like on a spell scroll or in a wizard’s spellbook), you can add it to your ritual book if the spell is on the spell list for the class you chose and its level is no higher than half your level (rounded up). Copying the spell into your ritual book costs 50 gold and 2 hours per level of the spell.", - "type": null, - "parent": "a5e-ag_rite-master" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 84, - "fields": { - "name": "", - "desc": "Your destiny changes to Revenge.", - "type": null, - "parent": "a5e-ag_revenant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 85, - "fields": { - "name": "", - "desc": "You gain resistance to necrotic and psychic damage.", - "type": null, - "parent": "a5e-ag_revenant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 86, - "fields": { - "name": "", - "desc": "You gain darkvision to a range of 60 feet (or if you already have it, its range increases by 30 feet).", - "type": null, - "parent": "a5e-ag_revenant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 87, - "fields": { - "name": "", - "desc": "You become immune to poison damage and the poisoned condition.", - "type": null, - "parent": "a5e-ag_revenant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 88, - "fields": { - "name": "", - "desc": "If your vendetta has not ended, you regain all of your hit points when you finish a short rest or 1 hour after you are reduced to 0 hit points.", - "type": null, - "parent": "a5e-ag_revenant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 89, - "fields": { - "name": "", - "desc": "You gain an expertise die on saving throws made against spells and other magical effects, and on saving throws made to resist being charmed, fatigued, frightened, paralyzed, or stunned.", - "type": null, - "parent": "a5e-ag_revenant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 90, - "fields": { - "name": "", - "desc": "You gain an expertise die on ability checks made to find or track a creature that is part of your vendetta.", - "type": null, - "parent": "a5e-ag_revenant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 91, - "fields": { - "name": "", - "desc": "If the resonant item requires attunement and you meet the prerequisites to do so, you become attuned to the item. If you don’t meet the prerequisites, both the attunement and resonance with the item fails. \r\n\r\nThis attunement doesn’t count toward the maximum number of items you can be attuned to. Unlike other\r\nattuned items, your attunement to this item doesn’t end from being more than 100 feet away from it for 24 hours.", - "type": null, - "parent": "a5e-ag_resonant-bond" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 92, - "fields": { - "name": "", - "desc": "Once per rest, as a bonus action, you can summon a resonant item, which appears instantly in your hand so long as it is located on the same plane of existence. You must have a free hand to use this feature and be able to hold the item.", - "type": null, - "parent": "a5e-ag_resonant-bond" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 93, - "fields": { - "name": "", - "desc": "If the resonant item is sentient, you have advantage on Charisma checks and saving throws made when resolving a conflict with the item.", - "type": null, - "parent": "a5e-ag_resonant-bond" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 94, - "fields": { - "name": "", - "desc": "If the resonant item is an artifact, you can ignore the effects of one minor detrimental property.", - "type": null, - "parent": "a5e-ag_resonant-bond" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 95, - "fields": { - "name": "", - "desc": "You lose resonance with an item if another creature attunes to it or gains resonance with it. You can also voluntarily end the resonance by focusing on the item during a short rest, or during a long rest if the item is not in your possession.", - "type": null, - "parent": "a5e-ag_resonant-bond" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 96, - "fields": { - "name": "", - "desc": "When you spend 10 minutes speaking inspirationally, you can choose up to 6 friendly creatures (including yourself) within 30 feet that can hear and understand you. Each creature gains temporary hit points equal to your level + your Charisma modifier. A creature can’t gain temporary hit points from this feat again until it has finished a rest.", - "type": null, - "parent": "a5e-ag_rallying-speaker" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 97, - "fields": { - "name": "", - "desc": "**Divine (Radiant).** When you cast a spell that deals radiant damage, you can spend 1 sorcery point and choose one creature you can see within 60 feet. That creature regains a number of hit points equal to 1d8 × the spell’s level.", - "type": null, - "parent": "a5e-ag_pure-arcanist" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 98, - "fields": { - "name": "", - "desc": "**Pure Arcanum (Force).** When you cast a spell that deals force damage, you can spend 2 sorcery points and choose one creature you can see. After the spell’s damage is resolved, if the creature was damaged by the spell it makes an Intelligence saving throw or becomes stunned until the end of its next turn.", - "type": null, - "parent": "a5e-ag_pure-arcanist" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 99, - "fields": { - "name": "", - "desc": "Whenever the Narrator calls for you to roll for initiative, you may activate a use of your Divine Sense feature to warn yourself and up to a number of creatures equal to your Charisma modifier within 30 feet, granting advantage on the initiative check.", - "type": null, - "parent": "a5e-ag_proclaimer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 100, - "fields": { - "name": "", - "desc": "You can use your voice Art Specialty to cast herald spells.", - "type": null, - "parent": "a5e-ag_proclaimer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 101, - "fields": { - "name": "", - "desc": "You can spend exertion to cast spells from the divination school that you know at a cost of 1 exertion per spell level.", - "type": null, - "parent": "a5e-ag_proclaimer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 102, - "fields": { - "name": "", - "desc": "When you gain this feat, you gain one of the following alignment traits: Chaotic, Evil, Good, or Lawful. Once chosen your alignment trait cannot be changed, but you can gain a second alignment trait that is not opposed.", - "type": null, - "parent": "a5e-ag_proclaimer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 103, - "fields": { - "name": "", - "desc": "Upon gaining this feat, choose one of the following damage types: acid, cold, fire, lightning, or thunder.\r\n\r\nWhen you cast a spell that deals damage, your spell’s damage ignores damage resistance to the chosen type.", - "type": null, - "parent": "a5e-ag_primordial-caster" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 104, - "fields": { - "name": "", - "desc": "When you cast a spell that deals damage of the chosen type, you deal 1 additional damage for every damage die with a result of 1.", - "type": null, - "parent": "a5e-ag_primordial-caster" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 105, - "fields": { - "name": "", - "desc": "This feat can be selected multiple times, choosing a different damage type each time.", - "type": null, - "parent": "a5e-ag_primordial-caster" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 106, - "fields": { - "name": "", - "desc": "You gain proficiency with the Cleaving Swing maneuver and do not have to spend exertion to activate it. In addition, you can use Cleaving Swing with a versatile weapon wielded with two hands.", - "type": null, - "parent": "a5e-ag_powerful-attacker" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 107, - "fields": { - "name": "", - "desc": "Before you make a melee attack with a two-handed weapon or versatile weapon wielded with two hands, if you are proficient with the weapon and do not have disadvantage you can declare a powerful attack. A\r\npowerful attack has disadvantage, but on a hit deals 10 extra damage.", - "type": null, - "parent": "a5e-ag_powerful-attacker" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 108, - "fields": { - "name": "", - "desc": "The range is doubled for any spell you cast that requires a spell attack roll.", - "type": null, - "parent": "a5e-ag_power-caster" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 109, - "fields": { - "name": "", - "desc": "You ignore half cover and three-quarters cover when making a ranged spell attack.", - "type": null, - "parent": "a5e-ag_power-caster" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 110, - "fields": { - "name": "", - "desc": "Choose one cantrip that requires an attack roll. The cantrip must be from the bard, cleric, druid, herald, sorcerer, warlock, or wizard spell list. You learn this cantrip and your spellcasting ability for it depends\r\non the spell list you chose from: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", - "type": null, - "parent": "a5e-ag_power-caster" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 111, - "fields": { - "name": "", - "desc": "When you attack with a glaive, halberd, quarterstaff, or spear and no other weapon using the Attack action, as a bonus action you can make a melee attack with the weapon’s opposite end. This attack uses the same ability modifier as the primary attack, dealing 1d4 bludgeoning damage on a hit.", - "type": null, - "parent": "a5e-ag_polearm-savant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 112, - "fields": { - "name": "", - "desc": "While you are wielding a glaive, halberd, pike, quarterstaff, or spear, a creature that enters your reach provokes an opportunity attack from you. A creature can use its reaction to avoid provoking an opportunity attack from you in this way.", - "type": null, - "parent": "a5e-ag_polearm-savant" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 113, - "fields": { - "name": "", - "desc": "When you use a healer’s satchel to stabilize a dying creature, it regains a number of\r\nhit points equal to your Wisdom modifier.", - "type": null, - "parent": "a5e-ag_physician" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 114, - "fields": { - "name": "", - "desc": "You can spend an action and one use of a healer’s satchel to tend to a creature. The creature regains 1d6 + 4 hit points, plus one hit point for each of its hit dice. The creature can’t regain hit points from this feat again until it finishes a rest.", - "type": null, - "parent": "a5e-ag_physician" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 115, - "fields": { - "name": "", - "desc": "Your Dexterity or Wisdom score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_nightstalker" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 116, - "fields": { - "name": "", - "desc": "You can deal Sneak Attack damage when making attacks using unarmed strikes or adept weapons.", - "type": null, - "parent": "a5e-ag_nightstalker" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 117, - "fields": { - "name": "", - "desc": "You gain a bonus equal to your Wisdom modifier on Acrobatics, Deception, and Stealth checks.", - "type": null, - "parent": "a5e-ag_nightstalker" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 118, - "fields": { - "name": "", - "desc": "In addition, you gain the following special focus feature:\r\n**Twilight Vanish.** On your turn you can use a reaction and spend 2 exertion to move up to 30 feet with such incredible speed that you seem to disappear: after moving this way you may immediately take the Hide action.", - "type": null, - "parent": "a5e-ag_nightstalker" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 119, - "fields": { - "name": "", - "desc": "You can spend exertion to cast any spells from the air, earth, fear, fire, movement, obscurement, plants, poison, senses, shadow, transformation, unarmed, or water schools at the cost of 2 exertion per spell level. You use your focus save DC for spells cast this way, and your spell attack modifier is equal to your proficiency bonus + your Wisdom modifier.", - "type": null, - "parent": "a5e-ag_night-master" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 120, - "fields": { - "name": "", - "desc": "You gain resistance to necrotic damage (or if you already have it, immunity to necrotic damage) and darkvision to a range of 30 feet (or if you already have it, the range of your darkvision increases by 30 feet).", - "type": null, - "parent": "a5e-ag_newblood" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 121, - "fields": { - "name": "", - "desc": "You also gain a bite natural weapon and the Charming Gaze feature.\r\n\r\n**Bite.** You gain a bite natural weapon you are proficient with. You are only able to bite grappled, incapacitated, restrained, or willing creatures. You can use Dexterity instead of Strength for the attack rolls of your bite. On a hit your bite deals piercing damage equal to 1d6 plus your Strength modifier or Dexterity modifier (whichever is highest). In addition, once per turn you can choose for your bite to also deal 1d6\r\nnecrotic damage × your proficiency bonus. You regain hit points equal to the amount of necrotic damage dealt to your target. This necrotic damage can only be increased by a critical hit.\r\n**Charming Gaze.** Once between long rests, you magically target a creature within 30 feet, forcing it to make a Wisdom saving throw (DC 8 + your proficiency bonus + your Charisma modifier). On a failure, the target is charmed by you for a number of hours equal to your proficiency bonus. While charmed it regards you as a trusted friend and is a willing target for your bite. The target repeats the saving throw each time it takes damage, ending the effect on itself on a success. If the target’s saving throw is successful or the effect ends for it, it is immune to your charm for 24 hours.", - "type": null, - "parent": "a5e-ag_newblood" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 122, - "fields": { - "name": "", - "desc": "Additionally, you have disadvantage on attack rolls and on Perception checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight. In addition, you cannot use your Charming Gaze while you are in direct sunlight.", - "type": null, - "parent": "a5e-ag_newblood" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 123, - "fields": { - "name": "", - "desc": "Your Speed increases by 5 feet.", - "type": null, - "parent": "a5e-ag_natural-warrior" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 124, - "fields": { - "name": "", - "desc": "When making an Acrobatics or Athletics check during combat, you can choose to use your Strength or Dexterity modifier for either skill.", - "type": null, - "parent": "a5e-ag_natural-warrior" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 125, - "fields": { - "name": "", - "desc": "You gain proficiency with the Bounding Strike maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "a5e-ag_natural-warrior" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 126, - "fields": { - "name": "", - "desc": "You can roll 1d4 in place of your normal damage for unarmed strikes. When rolling damage for your unarmed strikes, you can choose to deal bludgeoning, piercing, or slashing damage.", - "type": null, - "parent": "a5e-ag_natural-warrior" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 127, - "fields": { - "name": "", - "desc": "You learn two cantrips of your choice from the class’s spell list.", - "type": null, - "parent": "a5e-ag_mystical-talent" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 128, - "fields": { - "name": "", - "desc": "Choose a 1st-level spell to learn from that spell list. Once between long rests, you can cast this spell without expending a spell slot. You can also cast this spell using a spell slot of the appropriate level (or the appropriate number of spell points if you have warlock levels).\r\n\r\nYour spellcasting ability for these spells is Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", - "type": null, - "parent": "a5e-ag_mystical-talent" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 129, - "fields": { - "name": "", - "desc": "Your Wisdom or Charisma score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_mystic-arcanist" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 130, - "fields": { - "name": "", - "desc": "When you cast a spell that restores hit points, you restore an additional number of hit points equal to your Charisma modifier.", - "type": null, - "parent": "a5e-ag_mystic-arcanist" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 131, - "fields": { - "name": "", - "desc": "You can spend sorcery points to temporarily gain a spell from the cleric or sorcerer spell lists. Gaining a spell in this way costs a number of sorcery points equal to the spell’s level. You cannot gain a spell that has a level higher than your highest level spell slot. When you gain a cleric spell in this way, it is considered prepared for the day. When you gain a sorcerer spell in this way, it is considered a spell you know for the day. You lose all spells gained in this way whenever you finish a long rest.", - "type": null, - "parent": "a5e-ag_mystic-arcanist" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 132, - "fields": { - "name": "", - "desc": "You gain proficiency with the Lancer Strike maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "a5e-ag_mounted-warrior" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 133, - "fields": { - "name": "", - "desc": "When your mount is targeted by an attack, you can instead make yourself the attack’s target.", - "type": null, - "parent": "a5e-ag_mounted-warrior" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 134, - "fields": { - "name": "", - "desc": "When your mount makes a Dexterity saving throw against an effect that deals half damage on a success, it takes no damage on a success and half damage on a failure.", - "type": null, - "parent": "a5e-ag_mounted-warrior" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 135, - "fields": { - "name": "", - "desc": "You gain an expertise die on checks made to learn legends and lore about a creature you can see.", - "type": null, - "parent": "a5e-ag_monster-hunter" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 136, - "fields": { - "name": "", - "desc": "You learn the altered strike cantrip.", - "type": null, - "parent": "a5e-ag_monster-hunter" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 137, - "fields": { - "name": "", - "desc": "You gain proficiency with the Douse maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "a5e-ag_monster-hunter" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 138, - "fields": { - "name": "", - "desc": "You gain the tracking skill specialty in Survival.", - "type": null, - "parent": "a5e-ag_monster-hunter" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 139, - "fields": { - "name": "", - "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_moderately-outfitted" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 140, - "fields": { - "name": "", - "desc": "You gain proficiency with medium armor and shields.", - "type": null, - "parent": "a5e-ag_moderately-outfitted" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 141, - "fields": { - "name": "", - "desc": "Medium armor doesn’t impose disadvantage on your Dexterity (Stealth) checks.", - "type": null, - "parent": "a5e-ag_medium-armor-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 142, - "fields": { - "name": "", - "desc": "When you are wearing medium armor, the maximum Dexterity modifier you can add to your Armor Class increases to 3.", - "type": null, - "parent": "a5e-ag_medium-armor-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 143, - "fields": { - "name": "", - "desc": "You gain proficiency in a combat tradition of your choice.", - "type": null, - "parent": "a5e-ag_martial-scholar" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 144, - "fields": { - "name": "", - "desc": "You learn two combat maneuvers from a combat tradition you know. If you don’t already know any combat maneuvers, both must be 1st degree. Combat maneuvers gained from this feat do not count toward the maximum number of combat maneuvers you know.", - "type": null, - "parent": "a5e-ag_martial-scholar" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 145, - "fields": { - "name": "", - "desc": "Your exertion pool increases by 3. If you do not have an exertion pool, you gain an exertion pool with 3 exertion, regaining your exertion whenever you finish a rest.", - "type": null, - "parent": "a5e-ag_martial-scholar" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 146, - "fields": { - "name": "", - "desc": "Whenever you enter a rage you may choose up to a number of creatures equal to your Wisdom modifier within 60 feet that are beasts, fey, or plants. These chosen creatures gain the following benefits for as long as you rage, but are unable to take the Fall Back reaction:\r\n* Advantage on Strength checks and Strength saving throws.\r\n* Resistance to bludgeoning, piercing, and slashing damage.\r\n* Temporary hit points equal to your level.\r\n* A bonus to damage rolls equal to your proficiency bonus.", - "type": null, - "parent": "a5e-ag_living-stampede" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 147, - "fields": { - "name": "", - "desc": "Your Intelligence score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_linguistics-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 148, - "fields": { - "name": "", - "desc": "You learn three languages of your choice.", - "type": null, - "parent": "a5e-ag_linguistics-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 149, - "fields": { - "name": "", - "desc": "You can invent ciphers and are able to teach a cipher you create to others. Anyone who knows the cipher can encode and read hidden messages made with it; the apparent text must be at least four times longer than the hidden message. A creature can detect the cipher’s presence if it spends a minute examining it and succeeds on an Investigation check against a DC of 8+ your proficiency bonus + your Intelligence modifier. If the check succeeds by 5 or more, they can read the hidden message.", - "type": null, - "parent": "a5e-ag_linguistics-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 150, - "fields": { - "name": "", - "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_lightly-outfitted" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 151, - "fields": { - "name": "", - "desc": "You gain proficiency with light armor.", - "type": null, - "parent": "a5e-ag_lightly-outfitted" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 152, - "fields": { - "name": "", - "desc": "Your Intelligence score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_keen-intellect" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 153, - "fields": { - "name": "", - "desc": "You can recall anything you’ve seen or heard within a number of weeks equal to your Intelligence modifier.", - "type": null, - "parent": "a5e-ag_keen-intellect" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 154, - "fields": { - "name": "", - "desc": "You know how long it will be before the next sunset or sunrise.", - "type": null, - "parent": "a5e-ag_keen-intellect" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 155, - "fields": { - "name": "", - "desc": "You know which way is north.", - "type": null, - "parent": "a5e-ag_keen-intellect" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 156, - "fields": { - "name": "", - "desc": "Your Intelligence or Wisdom score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_intuitive" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 157, - "fields": { - "name": "", - "desc": "Your passive Perception and passive Investigation scores increase by 5.", - "type": null, - "parent": "a5e-ag_intuitive" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 158, - "fields": { - "name": "", - "desc": "If you can see a creature’s mouth while it is speaking a language you know, you can read its lips.", - "type": null, - "parent": "a5e-ag_intuitive" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 159, - "fields": { - "name": "", - "desc": "Any stronghold you have or buy that is of frugal quality is automatically upgraded to average quality at no additional cost.", - "type": null, - "parent": "a5e-ag_idealistic-leader" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 160, - "fields": { - "name": "", - "desc": "You gain a new follower for every 50 staff you have in your stronghold, rather than every 100 staff.", - "type": null, - "parent": "a5e-ag_idealistic-leader" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 161, - "fields": { - "name": "", - "desc": "When you fulfill your destiny, choose a number of followers equal to your proficiency bonus. Each is upgraded to their most expensive version.", - "type": null, - "parent": "a5e-ag_idealistic-leader" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 162, - "fields": { - "name": "", - "desc": "You gain proficiency in your choice of one martial weapon, one rare weapon, or shields.", - "type": null, - "parent": "a5e-ag_heraldic-training" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 163, - "fields": { - "name": "", - "desc": "You gain two divine lessons of your choice from the herald class.", - "type": null, - "parent": "a5e-ag_heraldic-training" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 164, - "fields": { - "name": "", - "desc": "Your Strength score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_heavy-armor-expertise" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 165, - "fields": { - "name": "", - "desc": "While wearing heavy armor, you reduce all bludgeoning, piercing, and slashing damage from nonmagical weapons by 3.", - "type": null, - "parent": "a5e-ag_heavy-armor-expertise" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 166, - "fields": { - "name": "", - "desc": "Your Strength score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_heavily-outfitted" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 167, - "fields": { - "name": "", - "desc": "You gain proficiency with heavy armor.", - "type": null, - "parent": "a5e-ag_heavily-outfitted" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 168, - "fields": { - "name": "", - "desc": "When you take this feat, you gain a number of hit points equal to twice your level.", - "type": null, - "parent": "a5e-ag_hardy-adventurer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 169, - "fields": { - "name": "", - "desc": "Whenever you gain a new level, you gain an additional 2 hit points to your hit point maximum.", - "type": null, - "parent": "a5e-ag_hardy-adventurer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 170, - "fields": { - "name": "", - "desc": "During a short rest, you regain 1 additional hit point per hit die spent to heal.", - "type": null, - "parent": "a5e-ag_hardy-adventurer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 171, - "fields": { - "name": "", - "desc": "You learn the Preach Despair and Preach Hope battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Preach Despair.** A hostile creature within 60 feet of you suffers a level of strife. Creatures with an opposite alignment from yours or that worship a greater entity that has an opposite alignment suffer two levels of strife instead. A creature cannot suffer more than two levels of strife from Preach Despair in the same 24 hours.\r\n**Preach Hope.** Creatures of your choice within 60 feet of you gain advantage on saving throws. When the battle hymn ends, allies within 30 feet of you remove one level of strife. An ally that shares your alignment or worships a greater entity removes two levels of strife instead.", - "type": null, - "parent": "a5e-ag_harbinger-of-things-to-come" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 172, - "fields": { - "name": "", - "desc": "A creature that takes the Disengage action still provokes opportunity attacks from you.", - "type": null, - "parent": "a5e-ag_guarded-warrior" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 173, - "fields": { - "name": "", - "desc": "You gain proficiency with the Warning Strike maneuver and do not have to spend exertion to activate it.", - "type": null, - "parent": "a5e-ag_guarded-warrior" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 174, - "fields": { - "name": "", - "desc": "You can use your reaction to make a melee weapon attack against a creature within 5 feet that makes an attack against a target other than you if the target does not also have this feat.", - "type": null, - "parent": "a5e-ag_guarded-warrior" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 177, - "fields": { - "name": "", - "desc": "You gain 3 fate points.", - "type": null, - "parent": "a5e-ag_fortunate" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 178, - "fields": { - "name": "", - "desc": "Whenever you make an attack roll, ability check, or saving throw and do not have disadvantage, you can spend a fate point to roll an additional d20 and choose whichever result you wish. \r\nYou may do this after the initial roll has occurred, but before the outcome is known. If you have disadvantage, you may instead spend a fate point to choose one of the d20 rolls and reroll it.", - "type": null, - "parent": "a5e-ag_fortunate" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 179, - "fields": { - "name": "", - "desc": "Alternatively, when you are attacked, you can choose to spend a fate point to force the attacking creature to reroll the attack. The creature resolves the attack with the result you choose.", - "type": null, - "parent": "a5e-ag_fortunate" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 180, - "fields": { - "name": "", - "desc": "You regain all expended fate points when you finish a long rest.", - "type": null, - "parent": "a5e-ag_fortunate" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 181, - "fields": { - "name": "", - "desc": "You gain proficiency with the Victory Pose maneuver and do not have to spend exertion to activate it. In addition, you may use this maneuver with up to three different weapons you select instead of just one, and\r\naffect allies within 60 feet.", - "type": null, - "parent": "a5e-ag_fear-breaker" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 182, - "fields": { - "name": "", - "desc": "An ally affected by your Victory Pose gains an expertise die on their next saving throw against fear, and if they are rattled the condition ends for them.", - "type": null, - "parent": "a5e-ag_fear-breaker" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 183, - "fields": { - "name": "", - "desc": "You gain proficiency with all types of artisan’s tools and miscellaneous tools. If you already have proficiency with any of these tools, you instead gain an expertise die with those tools.", - "type": null, - "parent": "a5e-ag_equipped-for-justice" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 184, - "fields": { - "name": "", - "desc": "You gain proficiency with Engineering and a 1d8 expertise die on Engineering checks. In addition, you build a nonmagical grappling gun that only functions in your hands. Replacing your grappling gun requires 3 days of crafting and 500 gp.", - "type": null, - "parent": "a5e-ag_equipped-for-justice" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 185, - "fields": { - "name": "", - "desc": "You may add your Wisdom modifier to the DC of any saving throws used for miscellaneous adventuring gear items and to attack rolls made using miscellaneous adventuring gear items.", - "type": null, - "parent": "a5e-ag_equipped-for-justice" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 186, - "fields": { - "name": "", - "desc": "Your Wisdom or Charisma score increases by 1.", - "type": null, - "parent": "a5e-ag_empathic" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 187, - "fields": { - "name": "", - "desc": "You gain an expertise die on Insight checks made against other creatures.", - "type": null, - "parent": "a5e-ag_empathic" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 188, - "fields": { - "name": "", - "desc": "When using a social skill and making a Charisma check another creature, you score a critical success on a roll of 19–20.", - "type": null, - "parent": "a5e-ag_empathic" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 189, - "fields": { - "name": "", - "desc": "Whenever you cast a spell with a Cone area, you may additionally make ranged weapon attacks with a ranged weapon you are wielding against targets within that conical area. You may make up to a number of attacks equal to the level of the spell cast, each against a different target. Ranged attacks made in this way ignore the loading quality of weapons and use your conjured magical ammunition.", - "type": null, - "parent": "a5e-ag_eldritch-volley-master" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 190, - "fields": { - "name": "", - "desc": "Whenever you make a ranged weapon attack you can choose to conjure magical ammunition and select one of the following damage types: acid, cold, fire, or lightning. Your ranged weapon attacks using this conjured ammunition deal the chosen damage type instead of whatever damage type they would normally deal, and are considered magical for the purpose of overcoming resistance and immunity. Ammunition conjured in this way disappears at the end of the turn it was fired.", - "type": null, - "parent": "a5e-ag_eldritch-archer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 191, - "fields": { - "name": "", - "desc": "When you hit a target with a ranged weapon attack, you can use your reaction and choose a spell of 1st-level or higher, casting it through your ammunition. The spell must have a casting time of 1 action, and target a single creature or have a range of Touch. If a spell cast in this way requires an attack roll and targets the same target as the triggering ranged weapon attack, it also hits as part of that attack. You may\r\nchoose not to deal damage with a ranged weapon attack used to cast a spell.", - "type": null, - "parent": "a5e-ag_eldritch-archer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 192, - "fields": { - "name": "", - "desc": "You have advantage on Investigation and Perception checks made to detect secret doors.", - "type": null, - "parent": "a5e-ag_dungeoneer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 193, - "fields": { - "name": "", - "desc": "You have advantage on saving throws made against traps.", - "type": null, - "parent": "a5e-ag_dungeoneer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 194, - "fields": { - "name": "", - "desc": "You have resistance to damage dealt by traps.", - "type": null, - "parent": "a5e-ag_dungeoneer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 195, - "fields": { - "name": "", - "desc": "You don’t take a −5 penalty on your passive Perception score from traveling at a fast pace.", - "type": null, - "parent": "a5e-ag_dungeoneer" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 196, - "fields": { - "name": "", - "desc": "While wielding a separate melee weapon in each hand, you gain a +1 bonus to Armor Class.", - "type": null, - "parent": "a5e-ag_dual-wielding-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 197, - "fields": { - "name": "", - "desc": "You can use two-weapon fighting with any two one-handed melee weapons so long as neither has the heavy property.", - "type": null, - "parent": "a5e-ag_dual-wielding-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 198, - "fields": { - "name": "", - "desc": "When you would normally draw or sheathe a one-handed weapon, you can instead draw or sheathe two one-handed weapons.", - "type": null, - "parent": "a5e-ag_dual-wielding-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 199, - "fields": { - "name": "", - "desc": "You learn the Divine Inspiration and Persuasive Speech battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Divine Inspiration.** When an ally within 15 feet hits a creature with a melee weapon attack, your ally can deliver a Divine Smite just as if you had delivered it yourself using your Divine Smite feature expending one of your uses). If you are able to empower your smites, you may choose to empower it as normal.\r\n**Persuasive Speech.** Hostile creatures within 60 feet take a –1d4 penalty on attack rolls. You can sustain this battle hymn for up to 3 rounds without expending additional uses of Bardic Inspiration. When a hostile creature begins its third consecutive turn within range of this battle hymn it becomes charmed by you and will not attack you or your allies. If this causes combat to end early, the creatures remain charmed\r\nby you for up to 1 minute afterward or until one of them is damaged by you or an ally. For the next 24 hours after the battle hymn ends, you gain an expertise die on Charisma checks made against creatures that were charmed in this way. A creature that either shares your alignment or worships a deity that has\r\nyour alignment becomes charmed on its second consecutive turn instead. Creatures that have an opposite alignment or worship a greater entity that has an opposite alignment cannot be charmed in this way.", - "type": null, - "parent": "a5e-ag_divine-orator" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 200, - "fields": { - "name": "", - "desc": "An ability score of your choice increases by 1.", - "type": null, - "parent": "a5e-ag_destinys-call" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 201, - "fields": { - "name": "", - "desc": "When you gain inspiration through your destiny’s source of inspiration, you can choose one party member within 30 feet of you. That party member gains inspiration if they don’t have it already. Once you inspire a party member in this way, you can’t use this feature again on that party member until you finish a long rest.", - "type": null, - "parent": "a5e-ag_destinys-call" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 202, - "fields": { - "name": "", - "desc": "When you are wielding a finesse weapon with which you are proficient and would be hit by a melee attack, you can use your reaction to add your proficiency bonus to your Armor Class against that attack.", - "type": null, - "parent": "a5e-ag_deflector" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 203, - "fields": { - "name": "", - "desc": "You gain proficiency with the Farshot Stance and Ricochet maneuvers, and do not have to spend exertion to activate them.", - "type": null, - "parent": "a5e-ag_deadeye" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 204, - "fields": { - "name": "", - "desc": "Before you make an attack with a ranged weapon you are proficient with, you can choose to take a penalty on the attack roll equal to your proficiency bonus. If the attack hits, you deal extra damage equal to double your proficiency bonus. This extra damage does not double on a critical hit.", - "type": null, - "parent": "a5e-ag_deadeye" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 205, - "fields": { - "name": "", - "desc": "You ignore half cover and three-quarters cover when making a ranged weapon attack.", - "type": null, - "parent": "a5e-ag_deadeye" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 206, - "fields": { - "name": "", - "desc": "If proficient with a crossbow, you ignore its loading property.", - "type": null, - "parent": "a5e-ag_crossbow-expertise" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 207, - "fields": { - "name": "", - "desc": "You do not have disadvantage on ranged attack rolls from being within 5 feet of a hostile creature.", - "type": null, - "parent": "a5e-ag_crossbow-expertise" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 208, - "fields": { - "name": "", - "desc": "When you attack with a one-handed weapon using the Attack action, you can use a bonus action to \r\nattack with a hand crossbow wielded in your off-hand.", - "type": null, - "parent": "a5e-ag_crossbow-expertise" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 209, - "fields": { - "name": "", - "desc": "Choose one of the following types of crafted item: armor, engineered items, potions, rings and rods, staves and wands, weapons, wondrous items.\r\n\r\nThis feat can be selected multiple times, choosing a different type of crafted item each time.", - "type": null, - "parent": "a5e-ag_crafting-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 210, - "fields": { - "name": "", - "desc": "You gain advantage on checks made to craft, maintain, and repair that type of item.", - "type": null, - "parent": "a5e-ag_crafting-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 211, - "fields": { - "name": "", - "desc": "You gain an expertise die on checks made to craft, maintain, and repair items.", - "type": null, - "parent": "a5e-ag_crafting-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 212, - "fields": { - "name": "", - "desc": "You gain proficiency with two tools of your choice.", - "type": null, - "parent": "a5e-ag_crafting-expert" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 213, - "fields": { - "name": "", - "desc": "You gain proficiency with thieves' tools, the poisoner's kit, or a rare weapon with the stealthy property.", - "type": null, - "parent": "a5e-ag_covert-training" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 214, - "fields": { - "name": "", - "desc": "You gain two skill tricks of your choice from the rogue class.", - "type": null, - "parent": "a5e-ag_covert-training" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 215, - "fields": { - "name": "", - "desc": "You gain proficiency with the Deceptive Stance and Painful Pickpocket maneuvers, and do not have to spend exertion to activate them.", - "type": null, - "parent": "a5e-ag_combat-thievery" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 216, - "fields": { - "name": "", - "desc": "You gain an expertise die on Sleight of Hand checks.", - "type": null, - "parent": "a5e-ag_combat-thievery" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 217, - "fields": { - "name": "", - "desc": "After dashing (with the Dash Action) at least ten feet towards a foe, you may perform a bonus action to select one of the following options.\r\n**Attack.** Make one melee weapon attack, dealing an extra 5 damage on a hit. \r\n**Shove.** Use the Shove maneuver, pushing the target 10 feet directly away on a success.", - "type": null, - "parent": "a5e-ag_bull-rush" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 218, - "fields": { - "name": "", - "desc": "After making a melee attack, you may reroll any weapon damage and choose the better result. This feat can be used no more than once per turn.", - "type": null, - "parent": "a5e-ag_brutal-attack" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 219, - "fields": { - "name": "", - "desc": "You gain a 1d6 expertise die on concentration checks to maintain spells you have cast.", - "type": null, - "parent": "a5e-ag_battle-caster" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 220, - "fields": { - "name": "", - "desc": "While wielding weapons and shields, you may cast spells with a seen component.", - "type": null, - "parent": "a5e-ag_battle-caster" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 221, - "fields": { - "name": "", - "desc": "Instead of making an opportunity attack with a weapon, you may use your reaction to cast a spell with a casting time of 1 action. The spell must be one that only targets that creature.", - "type": null, - "parent": "a5e-ag_battle-caster" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 222, - "fields": { - "name": "", - "desc": "When rolling initiative you gain a +5 bonus.", - "type": null, - "parent": "a5e-ag_attentive" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 223, - "fields": { - "name": "", - "desc": "You can only be surprised if you are unconscious. A creature attacking you does not gain advantage from being hidden from you or unseen by you.", - "type": null, - "parent": "a5e-ag_attentive" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 224, - "fields": { - "name": "", - "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", - "type": null, - "parent": "a5e-ag_athletic" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 225, - "fields": { - "name": "", - "desc": "When you are prone, standing up uses only 5 feet of your movement (instead of half).", - "type": null, - "parent": "a5e-ag_athletic" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 226, - "fields": { - "name": "", - "desc": "Your speed is not halved from climbing.", - "type": null, - "parent": "a5e-ag_athletic" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 227, - "fields": { - "name": "", - "desc": "You can make a running long jump or a running high jump after moving 5 feet on foot (instead of 10 feet).", - "type": null, - "parent": "a5e-ag_athletic" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 228, - "fields": { - "name": "", - "desc": "Whenever you make a ranged weapon attack, you can choose to expend a 1st-level or higher spell slot to enhance the attack to be empowered or unerring. You cannot enhance more than one attack in a\r\nturn in this way. \r\n**Empowered.** The shot deals an additional 2d6 force damage, and an additional 1d6 force damage for each spell slot level above 1st. \r\n**Unerring.** The shot gains a +2 bonus to the attack roll, and an additional +2 bonus for each spell slot level above 1st.", - "type": null, - "parent": "a5e-ag_arrow-enchanter" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 229, - "fields": { - "name": "", - "desc": "Whenever you cast a spell that deals damage, you may choose the type of damage that spell deals and the appearance of the spell’s effects.", - "type": null, - "parent": "a5e-ag_arcanum-master" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 230, - "fields": { - "name": "", - "desc": "You gain an expertise die on ability checks made to drive or pilot a vehicle.", - "type": null, - "parent": "a5e-ag_ace-driver" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 231, - "fields": { - "name": "", - "desc": "While piloting a vehicle, you can use your reaction to take the Brake or Maneuver vehicle actions.", - "type": null, - "parent": "a5e-ag_ace-driver" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 232, - "fields": { - "name": "", - "desc": "A vehicle you load can carry 25% more cargo than normal.", - "type": null, - "parent": "a5e-ag_ace-driver" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 233, - "fields": { - "name": "", - "desc": "Vehicles you are piloting only suffer a malfunction when reduced to 25% of their hit points, not 50%. In addition, when the vehicle does suffer a malfunction, you roll twice on the maneuver table and choose which die to use for the result.", - "type": null, - "parent": "a5e-ag_ace-driver" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 234, - "fields": { - "name": "", - "desc": "Vehicles you are piloting gain a bonus to their Armor Class equal to half your proficiency bonus.", - "type": null, - "parent": "a5e-ag_ace-driver" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 235, - "fields": { - "name": "", - "desc": "When you Brake, you can choose to immediately stop the vehicle without traveling half of its movement speed directly forward.", - "type": null, - "parent": "a5e-ag_ace-driver" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 236, - "fields": { - "name": "", - "desc": "You gain advantage on attack rolls against a creature you are grappling.", - "type": null, - "parent": "a5e-ag_grappler" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 237, - "fields": { - "name": "", - "desc": "You can use your action to try to pin a creature you are grappling. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", - "type": null, - "parent": "a5e-ag_grappler" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 238, - "fields": { - "name": "", - "desc": "Creatures with a CR lower than your alter ego’s Prestige rating are frightened of you while you are in your alter ego.", - "type": null, - "parent": "a5e-ag_a-symbol-that-strikes-fear" - } - }, - { - "model": "api_v2.featbenefit", - "pk": 239, - "fields": { - "name": "", - "desc": "In addition, you become particularly adept at subduing your enemies rather than outright killing them. Whenever you begin a turn grappling a creature, you can attempt to non-lethally subdue it. The grappled creature makes a Constitution saving throw against your maneuver DC. On a failed saving throw, a creature is knocked unconscious for the next hour. A creature with more than 25% of its maximum hit points automatically succeeds on this saving throw.", - "type": null, - "parent": "a5e-ag_a-symbol-that-strikes-fear" - } - } -] \ No newline at end of file +{ + "model": "api_v2.featbenefit", + "pk": 1, + "fields": { + "name": "", + "desc": "You gain proficiency with the herbalism kit, navigator’s kit, a simple ranged weapon, or a martial ranged weapon.", + "type": null, + "parent": "a5e-ag_woodcraft-training" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 2, + "fields": { + "name": "", + "desc": "You gain two exploration knacks of your choice from the ranger class.", + "type": null, + "parent": "a5e-ag_woodcraft-training" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 3, + "fields": { + "name": "", + "desc": "While raging, you and any creatures benefiting from your Living Stampede emit 5-foot auras of fury.", + "type": null, + "parent": "a5e-ag_wild-rioter" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 4, + "fields": { + "name": "", + "desc": "When a creature other than you or your allies enters a fury aura or starts its turn there it makes a Wisdom saving throw against your druid spell save DC. On a failed save, a creature becomes confused, except instead of rolling to determine their actions as normal for the confused condition, they are always considered to have rolled the 7 or 8 result. At the end of each of a confused creature’s turns it repeats the saving throw, ending the effect on itself on a success. Once a creature successfully saves against this effect, it is immune to it for the remainder of your rage.", + "type": null, + "parent": "a5e-ag_wild-rioter" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 5, + "fields": { + "name": "", + "desc": "You are treated as royalty (or as closely as possible) by most commoners and traders, and as an equal when meeting other authority figures (who make time in their schedule to see you when requested to do so).", + "type": null, + "parent": "a5e-ag_well-heeled" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 6, + "fields": { + "name": "", + "desc": "You have passive investments and income that allow you to maintain a high quality of living. You have a rich lifestyle and do not need to pay for it.", + "type": null, + "parent": "a5e-ag_well-heeled" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 7, + "fields": { + "name": "", + "desc": "You gain a second Prestige Center. This must be an area where you have spent at least a week of time.", + "type": null, + "parent": "a5e-ag_well-heeled" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 8, + "fields": { + "name": "", + "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_weapons-specialist" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 9, + "fields": { + "name": "", + "desc": "You gain proficiency with four weapons of your choice. Three of these must be a simple or a martial weapon. The fourth choice can be a simple, martial, or rare weapon.", + "type": null, + "parent": "a5e-ag_weapons-specialist" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 10, + "fields": { + "name": "", + "desc": "Your Wisdom or Dexterity score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_vigilante" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 11, + "fields": { + "name": "", + "desc": "You have an alter ego, an identity associated with a costume or disguise. This alter ego can be as complicated as a full outfit with a history or legends surrounding it or a simple mask or cowl. You can assume or remove this alter ego as an action and it can be worn with all types of armor.", + "type": null, + "parent": "a5e-ag_vigilante" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 12, + "fields": { + "name": "", + "desc": "You gain a 1d8 expertise die and advantage on Deception checks made regarding your alter ego, Persuasion checks made to dissuade others from connecting you to your alter ego, and on disguise kit checks.", + "type": null, + "parent": "a5e-ag_vigilante" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 13, + "fields": { + "name": "", + "desc": "Your alter ego has its own Prestige rating that may increase or decrease as you perform deeds while in your alter ego. In addition, while in your alter ego you gain a 1d8 expertise die on Prestige checks.", + "type": null, + "parent": "a5e-ag_vigilante" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 14, + "fields": { + "name": "", + "desc": "While in your alter ego, you may make a Prestige check and use that result in place of any Intimidation or Persuasion check you would otherwise make.", + "type": null, + "parent": "a5e-ag_vigilante" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 15, + "fields": { + "name": "", + "desc": "You gain proficiency with shields as weapons.", + "type": null, + "parent": "a5e-ag_vengeful-protector" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 16, + "fields": { + "name": "", + "desc": "You gain proficiency with the Double Team maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_vengeful-protector" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 17, + "fields": { + "name": "", + "desc": "When a creature reduces a party member (not including animal companions, familiars, or followers) to 0 hit points, you gain an expertise die on attacks made against it until the end of combat.", + "type": null, + "parent": "a5e-ag_vengeful-protector" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 18, + "fields": { + "name": "", + "desc": "You gain an expertise die on attack rolls and initiative checks made against creatures that are part of your\r\nvendetta, and when making a saving throw to resist an attack, feature, maneuver, spell, or trait from a creature that is part of your vendetta. Whether or not a creature is part of your vendetta is at the Narrator’s discretion.", + "type": null, + "parent": "a5e-ag_vendetta" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 19, + "fields": { + "name": "", + "desc": "Your bite damage increases to 1d8, a creature affected by your Charming Gaze remains charmed for a number of hours equal to your level, and you regain the use of Charming Gaze when you finish any\r\nrest.", + "type": null, + "parent": "a5e-ag_vampire-spawn" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 20, + "fields": { + "name": "", + "desc": "You also gain the Spider Climb and Vampiric Regeneration features.\r\n**Spider Climb.** You gain a climb speed equal to your Speed, and you can climb even on difficult surfaces and upside down on ceilings.\r\n**Vampiric Regeneration.** Whenever you start your turn with at least 1 hit point and you haven’t taken radiant damage or entered direct sunlight since the end of your last turn, you gain a number of temporary hit points equal to twice your proficiency bonus. When you end your turn in contact with running water, you take 20 radiant damage.", + "type": null, + "parent": "a5e-ag_vampire-spawn" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 21, + "fields": { + "name": "", + "desc": "Your Speed increases by 10 feet.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 22, + "fields": { + "name": "", + "desc": "You gain an expertise die on Stealth checks.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 23, + "fields": { + "name": "", + "desc": "The range of your darkvision increases to 120 feet.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 24, + "fields": { + "name": "", + "desc": "Your bite damage increases to 1d10.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 25, + "fields": { + "name": "", + "desc": "You can use Charming Gaze twice between rests.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 26, + "fields": { + "name": "", + "desc": "When using Charming Gaze, a target with at least one level of strife makes its saving throw with disadvantage.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 27, + "fields": { + "name": "", + "desc": "You also gain the Vampiric Shapechange feature.\r\n\r\n**Vampiric Shapechange.** You can use an action to transform into the shape of a Medium or smaller beast of CR 3 or less, a mist, or back into your true form. While transformed into a beast, you have the beast’s size and movement modes. You can’t use reactions or speak. Otherwise, you use your statistics. Any items you are carrying transform with you. While transformed into a mist, you have a flying speed of 30 feet, can’t speak, can’t take actions or manipulate objects, are immune to nonmagical damage from weapons, and have advantage on saving throws and Stealth checks. You can pass through a space as narrow as 1 inch without squeezing but can’t pass through water. Any items you are carrying transform with you.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 28, + "fields": { + "name": "", + "desc": "Additionally, you gain the undead type in addition to being a humanoid, and you take 20 radiant damage when you end your turn in contact with sunlight.", + "type": null, + "parent": "a5e-ag_vampire-lord" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 29, + "fields": { + "name": "", + "desc": "Your Strength or Wisdom score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_untamed" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 30, + "fields": { + "name": "", + "desc": "You may enter a rage and assume a wild shape using the same bonus action.", + "type": null, + "parent": "a5e-ag_untamed" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 31, + "fields": { + "name": "", + "desc": "While using a wild shape, you can use Furious Critical with attacks made using natural weapons.", + "type": null, + "parent": "a5e-ag_untamed" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 32, + "fields": { + "name": "", + "desc": "Any temporary hit points you gain from assuming a wild shape while raging become rage hit points instead.", + "type": null, + "parent": "a5e-ag_untamed" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 33, + "fields": { + "name": "", + "desc": "You may cast and concentrate on druid spells with a range of Self or Touch while raging.", + "type": null, + "parent": "a5e-ag_untamed" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 34, + "fields": { + "name": "", + "desc": "You cannot be charmed, fatigued, frightened, paralyzed, or stunned.", + "type": null, + "parent": "a5e-ag_true-revenant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 35, + "fields": { + "name": "", + "desc": "You have advantage on saving throws against spells and other magical effects.", + "type": null, + "parent": "a5e-ag_true-revenant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 36, + "fields": { + "name": "", + "desc": "You regain all of your hit points after you do not take any damage for 1 minute.", + "type": null, + "parent": "a5e-ag_true-revenant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 37, + "fields": { + "name": "", + "desc": "In addition, you also gain the Fearsome Pursuit and Burning Hatred features. \r\n**Fearsome Pursuit.** You can spend 1 minute focusing on a creature that is part of your vendetta. If the creature is dead or on another plane of existence, you learn that. Otherwise, after focusing, you know the distance and direction to that creature, and so long as you’re moving in pursuit of that creature, you and anyone traveling with you ignore difficult terrain. This effect ends if you take damage or end your turn without moving for any reason.\r\n**Burning Hatred.** You can use an action to target the focus of your Fearsome Pursuit if it is within 30 feet. The creature makes a Wisdom saving throw (DC 8 + your proficiency bonus + your highest mental ability score modifier). On a failure, it takes psychic damage equal to 1d6 × your proficiency bonus and is stunned until the end of its next turn. On a success, it takes half damage and is rattled until the end of its\r\nnext turn. Once you have used this feature a number of times equal to your proficiency bonus, you can’t use it again until you finish a long rest.", + "type": null, + "parent": "a5e-ag_true-revenant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 38, + "fields": { + "name": "", + "desc": "Your Charisma score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_thespian" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 39, + "fields": { + "name": "", + "desc": "You have advantage on Deception and Performance checks made when attempting to mimic another creature’s looks, mannerisms, or speech.", + "type": null, + "parent": "a5e-ag_thespian" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 40, + "fields": { + "name": "", + "desc": "You have a natural talent for perfectly mimicking the sounds of other creatures you’ve heard make sound for at least 1 minute. A suspicious listener can see through your perfect mimicry by succeeding on a Wisdom (Insight) check opposed by your Charisma (Deception) check.", + "type": null, + "parent": "a5e-ag_thespian" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 41, + "fields": { + "name": "", + "desc": "Choose one ability score. The chosen ability score increases by 1, to a maximum of 20, and you gain proficiency in saving throws using it.", + "type": null, + "parent": "a5e-ag_tenacious" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 42, + "fields": { + "name": "", + "desc": "When using the Help action to aid an ally in attacking a creature, the targeted creature can be up to 30 feet away instead of 5 feet.", + "type": null, + "parent": "a5e-ag_tactical-support" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 43, + "fields": { + "name": "", + "desc": "If an ally benefiting from your Help action scores a critical hit on the targeted creature, you can use your reaction to make a single weapon attack against that creature. Your attack scores a critical hit on a roll of 19–20. If you already have a feature that increases the range of your critical hits, your critical hit range\r\nfor that attack is increased by 1 (maximum 17–20).", + "type": null, + "parent": "a5e-ag_tactical-support" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 44, + "fields": { + "name": "", + "desc": "When a creature is damaged by an attack that was aided by the use of your Help action, you don’t provoke opportunity attacks from that creature until the end of your next turn.", + "type": null, + "parent": "a5e-ag_tactical-support" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 45, + "fields": { + "name": "", + "desc": "Your Speed increases by 5 feet.", + "type": null, + "parent": "a5e-ag_swift-combatant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 46, + "fields": { + "name": "", + "desc": "You gain proficiency with the Charge, Rapid Drink, and Swift Stance maneuvers, and do not have to spend exertion to activate them.", + "type": null, + "parent": "a5e-ag_swift-combatant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 47, + "fields": { + "name": "", + "desc": "When you are reduced to 0 or fewer hit points, you can use your reaction to move up to your Speed before falling unconscious. Moving in this way doesn’t provoke opportunity attacks.", + "type": null, + "parent": "a5e-ag_survivor" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 48, + "fields": { + "name": "", + "desc": "On the first turn that you start with 0 hit points and must make a death saving throw, you make that saving throw with advantage.", + "type": null, + "parent": "a5e-ag_survivor" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 49, + "fields": { + "name": "", + "desc": "When you take massive damage that would kill you instantly, you can use your reaction to make a death saving throw. If the saving throw succeeds, you instead fall unconscious and are dying.", + "type": null, + "parent": "a5e-ag_survivor" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 50, + "fields": { + "name": "", + "desc": "Medicine checks made to stabilize you have advantage.", + "type": null, + "parent": "a5e-ag_survivor" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 51, + "fields": { + "name": "", + "desc": "Once between long rests, when a creature successfully stabilizes you, at the start of your next turn you regain 1 hit point.", + "type": null, + "parent": "a5e-ag_survivor" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 52, + "fields": { + "name": "", + "desc": "You gain proficiency with the Dangerous Strikes maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_surgical-combatant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 53, + "fields": { + "name": "", + "desc": "You gain proficiency in Medicine. If you are already proficient, you instead gain an expertise die.", + "type": null, + "parent": "a5e-ag_surgical-combatant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 54, + "fields": { + "name": "", + "desc": "You gain an expertise die on Medicine checks made to diagnose the cause of or treat wounds.", + "type": null, + "parent": "a5e-ag_surgical-combatant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 55, + "fields": { + "name": "", + "desc": "You can add your martial arts die as a bonus to Acrobatics, Culture, Deception, Engineering, Intimidation, Investigation, Sleight of Hand, Stealth, Perception, Performance, and Persuasion checks.", + "type": null, + "parent": "a5e-ag_subtly-skilled" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 56, + "fields": { + "name": "", + "desc": "Your Strength or Constitution score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_street-fighter" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 57, + "fields": { + "name": "", + "desc": "You can roll 1d4 in place of your normal damage for unarmed strikes.", + "type": null, + "parent": "a5e-ag_street-fighter" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 58, + "fields": { + "name": "", + "desc": "You are proficient with improvised weapons.", + "type": null, + "parent": "a5e-ag_street-fighter" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 59, + "fields": { + "name": "", + "desc": "You can use a bonus action to make a Grapple maneuver against a target you hit with an unarmed strike or improvised weapon on your turn.", + "type": null, + "parent": "a5e-ag_street-fighter" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 60, + "fields": { + "name": "", + "desc": "You can try to hide from a creature even while you are only lightly obscured from that creature.", + "type": null, + "parent": "a5e-ag_stealth-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 61, + "fields": { + "name": "", + "desc": "Your position isn’t revealed when you miss with a ranged weapon attack against a creature you are hidden from.", + "type": null, + "parent": "a5e-ag_stealth-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 62, + "fields": { + "name": "", + "desc": "Dim light does not impose disadvantage when you make Perception checks.", + "type": null, + "parent": "a5e-ag_stealth-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 63, + "fields": { + "name": "", + "desc": "Your Constitution score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_stalwart" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 64, + "fields": { + "name": "", + "desc": "You regain an additional number of hit points equal to double your Constitution modifier (minimum 2) whenever you roll a hit die to regain hit points.", + "type": null, + "parent": "a5e-ag_stalwart" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 65, + "fields": { + "name": "", + "desc": "You gain proficiency with the Purge Magic maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_spellbreaker" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 66, + "fields": { + "name": "", + "desc": "When a creature concentrating on a spell is damaged by you, it has disadvantage on its concentration check to maintain the spell it is concentrating on.", + "type": null, + "parent": "a5e-ag_spellbreaker" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 67, + "fields": { + "name": "", + "desc": "You have advantage on saving throws made against spells cast within 30 feet of you.", + "type": null, + "parent": "a5e-ag_spellbreaker" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 68, + "fields": { + "name": "", + "desc": "Your Speed increases by 10 feet.", + "type": null, + "parent": "a5e-ag_skirmisher" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 69, + "fields": { + "name": "", + "desc": "You can Dash through difficult terrain without requiring additional movement.", + "type": null, + "parent": "a5e-ag_skirmisher" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 70, + "fields": { + "name": "", + "desc": "Whenever you attack a creature, for the rest of your turn you don’t provoke opportunity attacks from that creature.", + "type": null, + "parent": "a5e-ag_skirmisher" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 71, + "fields": { + "name": "", + "desc": "Choose three skills, tools, languages, or any combination of these. You gain proficiency with each of your three choices. If you already have proficiency in a chosen skill, you instead gain a skill specialty with that skill.", + "type": null, + "parent": "a5e-ag_skillful" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 72, + "fields": { + "name": "", + "desc": "When you take the Attack action on your turn, as a bonus action you can make a Shove maneuver against a creature within 5 feet of you.", + "type": null, + "parent": "a5e-ag_shield-focus" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 73, + "fields": { + "name": "", + "desc": "When you make a Dexterity saving throw against a spell or harmful effect that only targets you, if you aren’t incapacitated you gain a bonus equal to your shield’s Armor Class bonus.", + "type": null, + "parent": "a5e-ag_shield-focus" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 74, + "fields": { + "name": "", + "desc": "When you succeed on a Dexterity saving throw against an effect that deals half damage on a success, you can use your reaction to take no damage by protecting yourself with your shield.", + "type": null, + "parent": "a5e-ag_shield-focus" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 75, + "fields": { + "name": "", + "desc": "You regain 1 spell point whenever you cast a spell from the shadow school.", + "type": null, + "parent": "a5e-ag_shadowmancer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 76, + "fields": { + "name": "", + "desc": "You gain a Stealth skill specialty for hiding while in areas of darkness or dim light, and you have advantage on Dexterity (Stealth) checks made to hide while in areas of darkness or dim light.", + "type": null, + "parent": "a5e-ag_shadowmancer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 77, + "fields": { + "name": "", + "desc": "Whenever you use your Shadowdancer ability to teleport, after teleporting you can use your reaction to take the Dodge action.", + "type": null, + "parent": "a5e-ag_shadowmancer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 78, + "fields": { + "name": "", + "desc": "You gain darkvision to a range of 60 feet. Unlike other forms of darkvision you can see color in this way as if you were seeing normally. If you already had darkvision or would gain it later from another feature, its range increases by 30 feet.", + "type": null, + "parent": "a5e-ag_shadowdancer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 79, + "fields": { + "name": "", + "desc": "You can use a bonus action and spend 1 spell point to teleport up to 30 feet to an unoccupied area of darkness or dim light you can see. You must currently be in an area of darkness or dim light to teleport in this way. You can bring along objects if their weight doesn’t exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn’t carrying gear beyond its carrying capacity and is within 5 feet. You can increase the range of this teleport by 30 additional feet per each additional spell point you spend.", + "type": null, + "parent": "a5e-ag_shadowdancer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 80, + "fields": { + "name": "", + "desc": "While you are hidden from a target and are in an area of darkness or dim light, you can apply your Sneak Attack damage to an eldritch blast.", + "type": null, + "parent": "a5e-ag_shadow-assassin" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 81, + "fields": { + "name": "", + "desc": "You gain a ritual book containing spells that you can cast as rituals while holding it.", + "type": null, + "parent": "a5e-ag_rite-master" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 82, + "fields": { + "name": "", + "desc": "Choose one of the following classes: bard, cleric, druid, herald, sorcerer, warlock, or wizard. When you acquire this feat, you create a ritual book holding two 1st-level spells of your choice from that class’ spell\r\nlist. These spells must have the ritual tag. The class you choose determines your spellcasting ability for these spells: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or\r\nsorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", + "type": null, + "parent": "a5e-ag_rite-master" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 83, + "fields": { + "name": "", + "desc": "If you come across a written spell with the ritual tag (like on a spell scroll or in a wizard’s spellbook), you can add it to your ritual book if the spell is on the spell list for the class you chose and its level is no higher than half your level (rounded up). Copying the spell into your ritual book costs 50 gold and 2 hours per level of the spell.", + "type": null, + "parent": "a5e-ag_rite-master" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 84, + "fields": { + "name": "", + "desc": "Your destiny changes to Revenge.", + "type": null, + "parent": "a5e-ag_revenant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 85, + "fields": { + "name": "", + "desc": "You gain resistance to necrotic and psychic damage.", + "type": null, + "parent": "a5e-ag_revenant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 86, + "fields": { + "name": "", + "desc": "You gain darkvision to a range of 60 feet (or if you already have it, its range increases by 30 feet).", + "type": null, + "parent": "a5e-ag_revenant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 87, + "fields": { + "name": "", + "desc": "You become immune to poison damage and the poisoned condition.", + "type": null, + "parent": "a5e-ag_revenant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 88, + "fields": { + "name": "", + "desc": "If your vendetta has not ended, you regain all of your hit points when you finish a short rest or 1 hour after you are reduced to 0 hit points.", + "type": null, + "parent": "a5e-ag_revenant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 89, + "fields": { + "name": "", + "desc": "You gain an expertise die on saving throws made against spells and other magical effects, and on saving throws made to resist being charmed, fatigued, frightened, paralyzed, or stunned.", + "type": null, + "parent": "a5e-ag_revenant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 90, + "fields": { + "name": "", + "desc": "You gain an expertise die on ability checks made to find or track a creature that is part of your vendetta.", + "type": null, + "parent": "a5e-ag_revenant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 91, + "fields": { + "name": "", + "desc": "If the resonant item requires attunement and you meet the prerequisites to do so, you become attuned to the item. If you don’t meet the prerequisites, both the attunement and resonance with the item fails. \r\n\r\nThis attunement doesn’t count toward the maximum number of items you can be attuned to. Unlike other\r\nattuned items, your attunement to this item doesn’t end from being more than 100 feet away from it for 24 hours.", + "type": null, + "parent": "a5e-ag_resonant-bond" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 92, + "fields": { + "name": "", + "desc": "Once per rest, as a bonus action, you can summon a resonant item, which appears instantly in your hand so long as it is located on the same plane of existence. You must have a free hand to use this feature and be able to hold the item.", + "type": null, + "parent": "a5e-ag_resonant-bond" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 93, + "fields": { + "name": "", + "desc": "If the resonant item is sentient, you have advantage on Charisma checks and saving throws made when resolving a conflict with the item.", + "type": null, + "parent": "a5e-ag_resonant-bond" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 94, + "fields": { + "name": "", + "desc": "If the resonant item is an artifact, you can ignore the effects of one minor detrimental property.", + "type": null, + "parent": "a5e-ag_resonant-bond" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 95, + "fields": { + "name": "", + "desc": "You lose resonance with an item if another creature attunes to it or gains resonance with it. You can also voluntarily end the resonance by focusing on the item during a short rest, or during a long rest if the item is not in your possession.", + "type": null, + "parent": "a5e-ag_resonant-bond" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 96, + "fields": { + "name": "", + "desc": "When you spend 10 minutes speaking inspirationally, you can choose up to 6 friendly creatures (including yourself) within 30 feet that can hear and understand you. Each creature gains temporary hit points equal to your level + your Charisma modifier. A creature can’t gain temporary hit points from this feat again until it has finished a rest.", + "type": null, + "parent": "a5e-ag_rallying-speaker" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 97, + "fields": { + "name": "", + "desc": "**Divine (Radiant).** When you cast a spell that deals radiant damage, you can spend 1 sorcery point and choose one creature you can see within 60 feet. That creature regains a number of hit points equal to 1d8 × the spell’s level.", + "type": null, + "parent": "a5e-ag_pure-arcanist" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 98, + "fields": { + "name": "", + "desc": "**Pure Arcanum (Force).** When you cast a spell that deals force damage, you can spend 2 sorcery points and choose one creature you can see. After the spell’s damage is resolved, if the creature was damaged by the spell it makes an Intelligence saving throw or becomes stunned until the end of its next turn.", + "type": null, + "parent": "a5e-ag_pure-arcanist" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 99, + "fields": { + "name": "", + "desc": "Whenever the Narrator calls for you to roll for initiative, you may activate a use of your Divine Sense feature to warn yourself and up to a number of creatures equal to your Charisma modifier within 30 feet, granting advantage on the initiative check.", + "type": null, + "parent": "a5e-ag_proclaimer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 100, + "fields": { + "name": "", + "desc": "You can use your voice Art Specialty to cast herald spells.", + "type": null, + "parent": "a5e-ag_proclaimer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 101, + "fields": { + "name": "", + "desc": "You can spend exertion to cast spells from the divination school that you know at a cost of 1 exertion per spell level.", + "type": null, + "parent": "a5e-ag_proclaimer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 102, + "fields": { + "name": "", + "desc": "When you gain this feat, you gain one of the following alignment traits: Chaotic, Evil, Good, or Lawful. Once chosen your alignment trait cannot be changed, but you can gain a second alignment trait that is not opposed.", + "type": null, + "parent": "a5e-ag_proclaimer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 103, + "fields": { + "name": "", + "desc": "Upon gaining this feat, choose one of the following damage types: acid, cold, fire, lightning, or thunder.\r\n\r\nWhen you cast a spell that deals damage, your spell’s damage ignores damage resistance to the chosen type.", + "type": null, + "parent": "a5e-ag_primordial-caster" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 104, + "fields": { + "name": "", + "desc": "When you cast a spell that deals damage of the chosen type, you deal 1 additional damage for every damage die with a result of 1.", + "type": null, + "parent": "a5e-ag_primordial-caster" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 105, + "fields": { + "name": "", + "desc": "This feat can be selected multiple times, choosing a different damage type each time.", + "type": null, + "parent": "a5e-ag_primordial-caster" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 106, + "fields": { + "name": "", + "desc": "You gain proficiency with the Cleaving Swing maneuver and do not have to spend exertion to activate it. In addition, you can use Cleaving Swing with a versatile weapon wielded with two hands.", + "type": null, + "parent": "a5e-ag_powerful-attacker" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 107, + "fields": { + "name": "", + "desc": "Before you make a melee attack with a two-handed weapon or versatile weapon wielded with two hands, if you are proficient with the weapon and do not have disadvantage you can declare a powerful attack. A\r\npowerful attack has disadvantage, but on a hit deals 10 extra damage.", + "type": null, + "parent": "a5e-ag_powerful-attacker" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 108, + "fields": { + "name": "", + "desc": "The range is doubled for any spell you cast that requires a spell attack roll.", + "type": null, + "parent": "a5e-ag_power-caster" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 109, + "fields": { + "name": "", + "desc": "You ignore half cover and three-quarters cover when making a ranged spell attack.", + "type": null, + "parent": "a5e-ag_power-caster" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 110, + "fields": { + "name": "", + "desc": "Choose one cantrip that requires an attack roll. The cantrip must be from the bard, cleric, druid, herald, sorcerer, warlock, or wizard spell list. You learn this cantrip and your spellcasting ability for it depends\r\non the spell list you chose from: Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", + "type": null, + "parent": "a5e-ag_power-caster" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 111, + "fields": { + "name": "", + "desc": "When you attack with a glaive, halberd, quarterstaff, or spear and no other weapon using the Attack action, as a bonus action you can make a melee attack with the weapon’s opposite end. This attack uses the same ability modifier as the primary attack, dealing 1d4 bludgeoning damage on a hit.", + "type": null, + "parent": "a5e-ag_polearm-savant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 112, + "fields": { + "name": "", + "desc": "While you are wielding a glaive, halberd, pike, quarterstaff, or spear, a creature that enters your reach provokes an opportunity attack from you. A creature can use its reaction to avoid provoking an opportunity attack from you in this way.", + "type": null, + "parent": "a5e-ag_polearm-savant" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 113, + "fields": { + "name": "", + "desc": "When you use a healer’s satchel to stabilize a dying creature, it regains a number of\r\nhit points equal to your Wisdom modifier.", + "type": null, + "parent": "a5e-ag_physician" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 114, + "fields": { + "name": "", + "desc": "You can spend an action and one use of a healer’s satchel to tend to a creature. The creature regains 1d6 + 4 hit points, plus one hit point for each of its hit dice. The creature can’t regain hit points from this feat again until it finishes a rest.", + "type": null, + "parent": "a5e-ag_physician" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 115, + "fields": { + "name": "", + "desc": "Your Dexterity or Wisdom score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_nightstalker" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 116, + "fields": { + "name": "", + "desc": "You can deal Sneak Attack damage when making attacks using unarmed strikes or adept weapons.", + "type": null, + "parent": "a5e-ag_nightstalker" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 117, + "fields": { + "name": "", + "desc": "You gain a bonus equal to your Wisdom modifier on Acrobatics, Deception, and Stealth checks.", + "type": null, + "parent": "a5e-ag_nightstalker" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 118, + "fields": { + "name": "", + "desc": "In addition, you gain the following special focus feature:\r\n**Twilight Vanish.** On your turn you can use a reaction and spend 2 exertion to move up to 30 feet with such incredible speed that you seem to disappear: after moving this way you may immediately take the Hide action.", + "type": null, + "parent": "a5e-ag_nightstalker" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 119, + "fields": { + "name": "", + "desc": "You can spend exertion to cast any spells from the air, earth, fear, fire, movement, obscurement, plants, poison, senses, shadow, transformation, unarmed, or water schools at the cost of 2 exertion per spell level. You use your focus save DC for spells cast this way, and your spell attack modifier is equal to your proficiency bonus + your Wisdom modifier.", + "type": null, + "parent": "a5e-ag_night-master" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 120, + "fields": { + "name": "", + "desc": "You gain resistance to necrotic damage (or if you already have it, immunity to necrotic damage) and darkvision to a range of 30 feet (or if you already have it, the range of your darkvision increases by 30 feet).", + "type": null, + "parent": "a5e-ag_newblood" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 121, + "fields": { + "name": "", + "desc": "You also gain a bite natural weapon and the Charming Gaze feature.\r\n\r\n**Bite.** You gain a bite natural weapon you are proficient with. You are only able to bite grappled, incapacitated, restrained, or willing creatures. You can use Dexterity instead of Strength for the attack rolls of your bite. On a hit your bite deals piercing damage equal to 1d6 plus your Strength modifier or Dexterity modifier (whichever is highest). In addition, once per turn you can choose for your bite to also deal 1d6\r\nnecrotic damage × your proficiency bonus. You regain hit points equal to the amount of necrotic damage dealt to your target. This necrotic damage can only be increased by a critical hit.\r\n**Charming Gaze.** Once between long rests, you magically target a creature within 30 feet, forcing it to make a Wisdom saving throw (DC 8 + your proficiency bonus + your Charisma modifier). On a failure, the target is charmed by you for a number of hours equal to your proficiency bonus. While charmed it regards you as a trusted friend and is a willing target for your bite. The target repeats the saving throw each time it takes damage, ending the effect on itself on a success. If the target’s saving throw is successful or the effect ends for it, it is immune to your charm for 24 hours.", + "type": null, + "parent": "a5e-ag_newblood" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 122, + "fields": { + "name": "", + "desc": "Additionally, you have disadvantage on attack rolls and on Perception checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight. In addition, you cannot use your Charming Gaze while you are in direct sunlight.", + "type": null, + "parent": "a5e-ag_newblood" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 123, + "fields": { + "name": "", + "desc": "Your Speed increases by 5 feet.", + "type": null, + "parent": "a5e-ag_natural-warrior" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 124, + "fields": { + "name": "", + "desc": "When making an Acrobatics or Athletics check during combat, you can choose to use your Strength or Dexterity modifier for either skill.", + "type": null, + "parent": "a5e-ag_natural-warrior" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 125, + "fields": { + "name": "", + "desc": "You gain proficiency with the Bounding Strike maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_natural-warrior" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 126, + "fields": { + "name": "", + "desc": "You can roll 1d4 in place of your normal damage for unarmed strikes. When rolling damage for your unarmed strikes, you can choose to deal bludgeoning, piercing, or slashing damage.", + "type": null, + "parent": "a5e-ag_natural-warrior" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 127, + "fields": { + "name": "", + "desc": "You learn two cantrips of your choice from the class’s spell list.", + "type": null, + "parent": "a5e-ag_mystical-talent" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 128, + "fields": { + "name": "", + "desc": "Choose a 1st-level spell to learn from that spell list. Once between long rests, you can cast this spell without expending a spell slot. You can also cast this spell using a spell slot of the appropriate level (or the appropriate number of spell points if you have warlock levels).\r\n\r\nYour spellcasting ability for these spells is Intelligence for wizard, Wisdom for cleric or druid, Charisma for bard, herald, or sorcerer, or your choice of Intelligence, Wisdom, or Charisma for warlock.", + "type": null, + "parent": "a5e-ag_mystical-talent" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 129, + "fields": { + "name": "", + "desc": "Your Wisdom or Charisma score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_mystic-arcanist" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 130, + "fields": { + "name": "", + "desc": "When you cast a spell that restores hit points, you restore an additional number of hit points equal to your Charisma modifier.", + "type": null, + "parent": "a5e-ag_mystic-arcanist" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 131, + "fields": { + "name": "", + "desc": "You can spend sorcery points to temporarily gain a spell from the cleric or sorcerer spell lists. Gaining a spell in this way costs a number of sorcery points equal to the spell’s level. You cannot gain a spell that has a level higher than your highest level spell slot. When you gain a cleric spell in this way, it is considered prepared for the day. When you gain a sorcerer spell in this way, it is considered a spell you know for the day. You lose all spells gained in this way whenever you finish a long rest.", + "type": null, + "parent": "a5e-ag_mystic-arcanist" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 132, + "fields": { + "name": "", + "desc": "You gain proficiency with the Lancer Strike maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_mounted-warrior" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 133, + "fields": { + "name": "", + "desc": "When your mount is targeted by an attack, you can instead make yourself the attack’s target.", + "type": null, + "parent": "a5e-ag_mounted-warrior" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 134, + "fields": { + "name": "", + "desc": "When your mount makes a Dexterity saving throw against an effect that deals half damage on a success, it takes no damage on a success and half damage on a failure.", + "type": null, + "parent": "a5e-ag_mounted-warrior" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 135, + "fields": { + "name": "", + "desc": "You gain an expertise die on checks made to learn legends and lore about a creature you can see.", + "type": null, + "parent": "a5e-ag_monster-hunter" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 136, + "fields": { + "name": "", + "desc": "You learn the altered strike cantrip.", + "type": null, + "parent": "a5e-ag_monster-hunter" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 137, + "fields": { + "name": "", + "desc": "You gain proficiency with the Douse maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_monster-hunter" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 138, + "fields": { + "name": "", + "desc": "You gain the tracking skill specialty in Survival.", + "type": null, + "parent": "a5e-ag_monster-hunter" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 139, + "fields": { + "name": "", + "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_moderately-outfitted" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 140, + "fields": { + "name": "", + "desc": "You gain proficiency with medium armor and shields.", + "type": null, + "parent": "a5e-ag_moderately-outfitted" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 141, + "fields": { + "name": "", + "desc": "Medium armor doesn’t impose disadvantage on your Dexterity (Stealth) checks.", + "type": null, + "parent": "a5e-ag_medium-armor-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 142, + "fields": { + "name": "", + "desc": "When you are wearing medium armor, the maximum Dexterity modifier you can add to your Armor Class increases to 3.", + "type": null, + "parent": "a5e-ag_medium-armor-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 143, + "fields": { + "name": "", + "desc": "You gain proficiency in a combat tradition of your choice.", + "type": null, + "parent": "a5e-ag_martial-scholar" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 144, + "fields": { + "name": "", + "desc": "You learn two combat maneuvers from a combat tradition you know. If you don’t already know any combat maneuvers, both must be 1st degree. Combat maneuvers gained from this feat do not count toward the maximum number of combat maneuvers you know.", + "type": null, + "parent": "a5e-ag_martial-scholar" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 145, + "fields": { + "name": "", + "desc": "Your exertion pool increases by 3. If you do not have an exertion pool, you gain an exertion pool with 3 exertion, regaining your exertion whenever you finish a rest.", + "type": null, + "parent": "a5e-ag_martial-scholar" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 146, + "fields": { + "name": "", + "desc": "Whenever you enter a rage you may choose up to a number of creatures equal to your Wisdom modifier within 60 feet that are beasts, fey, or plants. These chosen creatures gain the following benefits for as long as you rage, but are unable to take the Fall Back reaction:\r\n* Advantage on Strength checks and Strength saving throws.\r\n* Resistance to bludgeoning, piercing, and slashing damage.\r\n* Temporary hit points equal to your level.\r\n* A bonus to damage rolls equal to your proficiency bonus.", + "type": null, + "parent": "a5e-ag_living-stampede" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 147, + "fields": { + "name": "", + "desc": "Your Intelligence score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_linguistics-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 148, + "fields": { + "name": "", + "desc": "You learn three languages of your choice.", + "type": null, + "parent": "a5e-ag_linguistics-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 149, + "fields": { + "name": "", + "desc": "You can invent ciphers and are able to teach a cipher you create to others. Anyone who knows the cipher can encode and read hidden messages made with it; the apparent text must be at least four times longer than the hidden message. A creature can detect the cipher’s presence if it spends a minute examining it and succeeds on an Investigation check against a DC of 8+ your proficiency bonus + your Intelligence modifier. If the check succeeds by 5 or more, they can read the hidden message.", + "type": null, + "parent": "a5e-ag_linguistics-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 150, + "fields": { + "name": "", + "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_lightly-outfitted" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 151, + "fields": { + "name": "", + "desc": "You gain proficiency with light armor.", + "type": null, + "parent": "a5e-ag_lightly-outfitted" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 152, + "fields": { + "name": "", + "desc": "Your Intelligence score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_keen-intellect" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 153, + "fields": { + "name": "", + "desc": "You can recall anything you’ve seen or heard within a number of weeks equal to your Intelligence modifier.", + "type": null, + "parent": "a5e-ag_keen-intellect" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 154, + "fields": { + "name": "", + "desc": "You know how long it will be before the next sunset or sunrise.", + "type": null, + "parent": "a5e-ag_keen-intellect" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 155, + "fields": { + "name": "", + "desc": "You know which way is north.", + "type": null, + "parent": "a5e-ag_keen-intellect" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 156, + "fields": { + "name": "", + "desc": "Your Intelligence or Wisdom score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_intuitive" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 157, + "fields": { + "name": "", + "desc": "Your passive Perception and passive Investigation scores increase by 5.", + "type": null, + "parent": "a5e-ag_intuitive" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 158, + "fields": { + "name": "", + "desc": "If you can see a creature’s mouth while it is speaking a language you know, you can read its lips.", + "type": null, + "parent": "a5e-ag_intuitive" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 159, + "fields": { + "name": "", + "desc": "Any stronghold you have or buy that is of frugal quality is automatically upgraded to average quality at no additional cost.", + "type": null, + "parent": "a5e-ag_idealistic-leader" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 160, + "fields": { + "name": "", + "desc": "You gain a new follower for every 50 staff you have in your stronghold, rather than every 100 staff.", + "type": null, + "parent": "a5e-ag_idealistic-leader" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 161, + "fields": { + "name": "", + "desc": "When you fulfill your destiny, choose a number of followers equal to your proficiency bonus. Each is upgraded to their most expensive version.", + "type": null, + "parent": "a5e-ag_idealistic-leader" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 162, + "fields": { + "name": "", + "desc": "You gain proficiency in your choice of one martial weapon, one rare weapon, or shields.", + "type": null, + "parent": "a5e-ag_heraldic-training" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 163, + "fields": { + "name": "", + "desc": "You gain two divine lessons of your choice from the herald class.", + "type": null, + "parent": "a5e-ag_heraldic-training" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 164, + "fields": { + "name": "", + "desc": "Your Strength score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_heavy-armor-expertise" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 165, + "fields": { + "name": "", + "desc": "While wearing heavy armor, you reduce all bludgeoning, piercing, and slashing damage from nonmagical weapons by 3.", + "type": null, + "parent": "a5e-ag_heavy-armor-expertise" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 166, + "fields": { + "name": "", + "desc": "Your Strength score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_heavily-outfitted" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 167, + "fields": { + "name": "", + "desc": "You gain proficiency with heavy armor.", + "type": null, + "parent": "a5e-ag_heavily-outfitted" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 168, + "fields": { + "name": "", + "desc": "When you take this feat, you gain a number of hit points equal to twice your level.", + "type": null, + "parent": "a5e-ag_hardy-adventurer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 169, + "fields": { + "name": "", + "desc": "Whenever you gain a new level, you gain an additional 2 hit points to your hit point maximum.", + "type": null, + "parent": "a5e-ag_hardy-adventurer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 170, + "fields": { + "name": "", + "desc": "During a short rest, you regain 1 additional hit point per hit die spent to heal.", + "type": null, + "parent": "a5e-ag_hardy-adventurer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 171, + "fields": { + "name": "", + "desc": "You learn the Preach Despair and Preach Hope battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Preach Despair.** A hostile creature within 60 feet of you suffers a level of strife. Creatures with an opposite alignment from yours or that worship a greater entity that has an opposite alignment suffer two levels of strife instead. A creature cannot suffer more than two levels of strife from Preach Despair in the same 24 hours.\r\n**Preach Hope.** Creatures of your choice within 60 feet of you gain advantage on saving throws. When the battle hymn ends, allies within 30 feet of you remove one level of strife. An ally that shares your alignment or worships a greater entity removes two levels of strife instead.", + "type": null, + "parent": "a5e-ag_harbinger-of-things-to-come" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 172, + "fields": { + "name": "", + "desc": "A creature that takes the Disengage action still provokes opportunity attacks from you.", + "type": null, + "parent": "a5e-ag_guarded-warrior" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 173, + "fields": { + "name": "", + "desc": "You gain proficiency with the Warning Strike maneuver and do not have to spend exertion to activate it.", + "type": null, + "parent": "a5e-ag_guarded-warrior" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 174, + "fields": { + "name": "", + "desc": "You can use your reaction to make a melee weapon attack against a creature within 5 feet that makes an attack against a target other than you if the target does not also have this feat.", + "type": null, + "parent": "a5e-ag_guarded-warrior" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 177, + "fields": { + "name": "", + "desc": "You gain 3 fate points.", + "type": null, + "parent": "a5e-ag_fortunate" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 178, + "fields": { + "name": "", + "desc": "Whenever you make an attack roll, ability check, or saving throw and do not have disadvantage, you can spend a fate point to roll an additional d20 and choose whichever result you wish. \r\nYou may do this after the initial roll has occurred, but before the outcome is known. If you have disadvantage, you may instead spend a fate point to choose one of the d20 rolls and reroll it.", + "type": null, + "parent": "a5e-ag_fortunate" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 179, + "fields": { + "name": "", + "desc": "Alternatively, when you are attacked, you can choose to spend a fate point to force the attacking creature to reroll the attack. The creature resolves the attack with the result you choose.", + "type": null, + "parent": "a5e-ag_fortunate" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 180, + "fields": { + "name": "", + "desc": "You regain all expended fate points when you finish a long rest.", + "type": null, + "parent": "a5e-ag_fortunate" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 181, + "fields": { + "name": "", + "desc": "You gain proficiency with the Victory Pose maneuver and do not have to spend exertion to activate it. In addition, you may use this maneuver with up to three different weapons you select instead of just one, and\r\naffect allies within 60 feet.", + "type": null, + "parent": "a5e-ag_fear-breaker" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 182, + "fields": { + "name": "", + "desc": "An ally affected by your Victory Pose gains an expertise die on their next saving throw against fear, and if they are rattled the condition ends for them.", + "type": null, + "parent": "a5e-ag_fear-breaker" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 183, + "fields": { + "name": "", + "desc": "You gain proficiency with all types of artisan’s tools and miscellaneous tools. If you already have proficiency with any of these tools, you instead gain an expertise die with those tools.", + "type": null, + "parent": "a5e-ag_equipped-for-justice" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 184, + "fields": { + "name": "", + "desc": "You gain proficiency with Engineering and a 1d8 expertise die on Engineering checks. In addition, you build a nonmagical grappling gun that only functions in your hands. Replacing your grappling gun requires 3 days of crafting and 500 gp.", + "type": null, + "parent": "a5e-ag_equipped-for-justice" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 185, + "fields": { + "name": "", + "desc": "You may add your Wisdom modifier to the DC of any saving throws used for miscellaneous adventuring gear items and to attack rolls made using miscellaneous adventuring gear items.", + "type": null, + "parent": "a5e-ag_equipped-for-justice" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 186, + "fields": { + "name": "", + "desc": "Your Wisdom or Charisma score increases by 1.", + "type": null, + "parent": "a5e-ag_empathic" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 187, + "fields": { + "name": "", + "desc": "You gain an expertise die on Insight checks made against other creatures.", + "type": null, + "parent": "a5e-ag_empathic" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 188, + "fields": { + "name": "", + "desc": "When using a social skill and making a Charisma check another creature, you score a critical success on a roll of 19–20.", + "type": null, + "parent": "a5e-ag_empathic" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 189, + "fields": { + "name": "", + "desc": "Whenever you cast a spell with a Cone area, you may additionally make ranged weapon attacks with a ranged weapon you are wielding against targets within that conical area. You may make up to a number of attacks equal to the level of the spell cast, each against a different target. Ranged attacks made in this way ignore the loading quality of weapons and use your conjured magical ammunition.", + "type": null, + "parent": "a5e-ag_eldritch-volley-master" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 190, + "fields": { + "name": "", + "desc": "Whenever you make a ranged weapon attack you can choose to conjure magical ammunition and select one of the following damage types: acid, cold, fire, or lightning. Your ranged weapon attacks using this conjured ammunition deal the chosen damage type instead of whatever damage type they would normally deal, and are considered magical for the purpose of overcoming resistance and immunity. Ammunition conjured in this way disappears at the end of the turn it was fired.", + "type": null, + "parent": "a5e-ag_eldritch-archer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 191, + "fields": { + "name": "", + "desc": "When you hit a target with a ranged weapon attack, you can use your reaction and choose a spell of 1st-level or higher, casting it through your ammunition. The spell must have a casting time of 1 action, and target a single creature or have a range of Touch. If a spell cast in this way requires an attack roll and targets the same target as the triggering ranged weapon attack, it also hits as part of that attack. You may\r\nchoose not to deal damage with a ranged weapon attack used to cast a spell.", + "type": null, + "parent": "a5e-ag_eldritch-archer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 192, + "fields": { + "name": "", + "desc": "You have advantage on Investigation and Perception checks made to detect secret doors.", + "type": null, + "parent": "a5e-ag_dungeoneer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 193, + "fields": { + "name": "", + "desc": "You have advantage on saving throws made against traps.", + "type": null, + "parent": "a5e-ag_dungeoneer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 194, + "fields": { + "name": "", + "desc": "You have resistance to damage dealt by traps.", + "type": null, + "parent": "a5e-ag_dungeoneer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 195, + "fields": { + "name": "", + "desc": "You don’t take a −5 penalty on your passive Perception score from traveling at a fast pace.", + "type": null, + "parent": "a5e-ag_dungeoneer" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 196, + "fields": { + "name": "", + "desc": "While wielding a separate melee weapon in each hand, you gain a +1 bonus to Armor Class.", + "type": null, + "parent": "a5e-ag_dual-wielding-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 197, + "fields": { + "name": "", + "desc": "You can use two-weapon fighting with any two one-handed melee weapons so long as neither has the heavy property.", + "type": null, + "parent": "a5e-ag_dual-wielding-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 198, + "fields": { + "name": "", + "desc": "When you would normally draw or sheathe a one-handed weapon, you can instead draw or sheathe two one-handed weapons.", + "type": null, + "parent": "a5e-ag_dual-wielding-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 199, + "fields": { + "name": "", + "desc": "You learn the Divine Inspiration and Persuasive Speech battle hymns. These special battle hymns can only be performed while you are using your voice Art Specialty as a spell focus.\r\n**Divine Inspiration.** When an ally within 15 feet hits a creature with a melee weapon attack, your ally can deliver a Divine Smite just as if you had delivered it yourself using your Divine Smite feature expending one of your uses). If you are able to empower your smites, you may choose to empower it as normal.\r\n**Persuasive Speech.** Hostile creatures within 60 feet take a –1d4 penalty on attack rolls. You can sustain this battle hymn for up to 3 rounds without expending additional uses of Bardic Inspiration. When a hostile creature begins its third consecutive turn within range of this battle hymn it becomes charmed by you and will not attack you or your allies. If this causes combat to end early, the creatures remain charmed\r\nby you for up to 1 minute afterward or until one of them is damaged by you or an ally. For the next 24 hours after the battle hymn ends, you gain an expertise die on Charisma checks made against creatures that were charmed in this way. A creature that either shares your alignment or worships a deity that has\r\nyour alignment becomes charmed on its second consecutive turn instead. Creatures that have an opposite alignment or worship a greater entity that has an opposite alignment cannot be charmed in this way.", + "type": null, + "parent": "a5e-ag_divine-orator" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 200, + "fields": { + "name": "", + "desc": "An ability score of your choice increases by 1.", + "type": null, + "parent": "a5e-ag_destinys-call" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 201, + "fields": { + "name": "", + "desc": "When you gain inspiration through your destiny’s source of inspiration, you can choose one party member within 30 feet of you. That party member gains inspiration if they don’t have it already. Once you inspire a party member in this way, you can’t use this feature again on that party member until you finish a long rest.", + "type": null, + "parent": "a5e-ag_destinys-call" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 202, + "fields": { + "name": "", + "desc": "When you are wielding a finesse weapon with which you are proficient and would be hit by a melee attack, you can use your reaction to add your proficiency bonus to your Armor Class against that attack.", + "type": null, + "parent": "a5e-ag_deflector" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 203, + "fields": { + "name": "", + "desc": "You gain proficiency with the Farshot Stance and Ricochet maneuvers, and do not have to spend exertion to activate them.", + "type": null, + "parent": "a5e-ag_deadeye" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 204, + "fields": { + "name": "", + "desc": "Before you make an attack with a ranged weapon you are proficient with, you can choose to take a penalty on the attack roll equal to your proficiency bonus. If the attack hits, you deal extra damage equal to double your proficiency bonus. This extra damage does not double on a critical hit.", + "type": null, + "parent": "a5e-ag_deadeye" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 205, + "fields": { + "name": "", + "desc": "You ignore half cover and three-quarters cover when making a ranged weapon attack.", + "type": null, + "parent": "a5e-ag_deadeye" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 206, + "fields": { + "name": "", + "desc": "If proficient with a crossbow, you ignore its loading property.", + "type": null, + "parent": "a5e-ag_crossbow-expertise" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 207, + "fields": { + "name": "", + "desc": "You do not have disadvantage on ranged attack rolls from being within 5 feet of a hostile creature.", + "type": null, + "parent": "a5e-ag_crossbow-expertise" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 208, + "fields": { + "name": "", + "desc": "When you attack with a one-handed weapon using the Attack action, you can use a bonus action to \r\nattack with a hand crossbow wielded in your off-hand.", + "type": null, + "parent": "a5e-ag_crossbow-expertise" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 209, + "fields": { + "name": "", + "desc": "Choose one of the following types of crafted item: armor, engineered items, potions, rings and rods, staves and wands, weapons, wondrous items.\r\n\r\nThis feat can be selected multiple times, choosing a different type of crafted item each time.", + "type": null, + "parent": "a5e-ag_crafting-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 210, + "fields": { + "name": "", + "desc": "You gain advantage on checks made to craft, maintain, and repair that type of item.", + "type": null, + "parent": "a5e-ag_crafting-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 211, + "fields": { + "name": "", + "desc": "You gain an expertise die on checks made to craft, maintain, and repair items.", + "type": null, + "parent": "a5e-ag_crafting-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 212, + "fields": { + "name": "", + "desc": "You gain proficiency with two tools of your choice.", + "type": null, + "parent": "a5e-ag_crafting-expert" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 213, + "fields": { + "name": "", + "desc": "You gain proficiency with thieves' tools, the poisoner's kit, or a rare weapon with the stealthy property.", + "type": null, + "parent": "a5e-ag_covert-training" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 214, + "fields": { + "name": "", + "desc": "You gain two skill tricks of your choice from the rogue class.", + "type": null, + "parent": "a5e-ag_covert-training" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 215, + "fields": { + "name": "", + "desc": "You gain proficiency with the Deceptive Stance and Painful Pickpocket maneuvers, and do not have to spend exertion to activate them.", + "type": null, + "parent": "a5e-ag_combat-thievery" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 216, + "fields": { + "name": "", + "desc": "You gain an expertise die on Sleight of Hand checks.", + "type": null, + "parent": "a5e-ag_combat-thievery" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 217, + "fields": { + "name": "", + "desc": "After dashing (with the Dash Action) at least ten feet towards a foe, you may perform a bonus action to select one of the following options.\r\n**Attack.** Make one melee weapon attack, dealing an extra 5 damage on a hit. \r\n**Shove.** Use the Shove maneuver, pushing the target 10 feet directly away on a success.", + "type": null, + "parent": "a5e-ag_bull-rush" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 218, + "fields": { + "name": "", + "desc": "After making a melee attack, you may reroll any weapon damage and choose the better result. This feat can be used no more than once per turn.", + "type": null, + "parent": "a5e-ag_brutal-attack" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 219, + "fields": { + "name": "", + "desc": "You gain a 1d6 expertise die on concentration checks to maintain spells you have cast.", + "type": null, + "parent": "a5e-ag_battle-caster" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 220, + "fields": { + "name": "", + "desc": "While wielding weapons and shields, you may cast spells with a seen component.", + "type": null, + "parent": "a5e-ag_battle-caster" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 221, + "fields": { + "name": "", + "desc": "Instead of making an opportunity attack with a weapon, you may use your reaction to cast a spell with a casting time of 1 action. The spell must be one that only targets that creature.", + "type": null, + "parent": "a5e-ag_battle-caster" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 222, + "fields": { + "name": "", + "desc": "When rolling initiative you gain a +5 bonus.", + "type": null, + "parent": "a5e-ag_attentive" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 223, + "fields": { + "name": "", + "desc": "You can only be surprised if you are unconscious. A creature attacking you does not gain advantage from being hidden from you or unseen by you.", + "type": null, + "parent": "a5e-ag_attentive" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 224, + "fields": { + "name": "", + "desc": "Your Strength or Dexterity score increases by 1, to a maximum of 20.", + "type": null, + "parent": "a5e-ag_athletic" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 225, + "fields": { + "name": "", + "desc": "When you are prone, standing up uses only 5 feet of your movement (instead of half).", + "type": null, + "parent": "a5e-ag_athletic" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 226, + "fields": { + "name": "", + "desc": "Your speed is not halved from climbing.", + "type": null, + "parent": "a5e-ag_athletic" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 227, + "fields": { + "name": "", + "desc": "You can make a running long jump or a running high jump after moving 5 feet on foot (instead of 10 feet).", + "type": null, + "parent": "a5e-ag_athletic" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 228, + "fields": { + "name": "", + "desc": "Whenever you make a ranged weapon attack, you can choose to expend a 1st-level or higher spell slot to enhance the attack to be empowered or unerring. You cannot enhance more than one attack in a\r\nturn in this way. \r\n**Empowered.** The shot deals an additional 2d6 force damage, and an additional 1d6 force damage for each spell slot level above 1st. \r\n**Unerring.** The shot gains a +2 bonus to the attack roll, and an additional +2 bonus for each spell slot level above 1st.", + "type": null, + "parent": "a5e-ag_arrow-enchanter" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 229, + "fields": { + "name": "", + "desc": "Whenever you cast a spell that deals damage, you may choose the type of damage that spell deals and the appearance of the spell’s effects.", + "type": null, + "parent": "a5e-ag_arcanum-master" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 230, + "fields": { + "name": "", + "desc": "You gain an expertise die on ability checks made to drive or pilot a vehicle.", + "type": null, + "parent": "a5e-ag_ace-driver" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 231, + "fields": { + "name": "", + "desc": "While piloting a vehicle, you can use your reaction to take the Brake or Maneuver vehicle actions.", + "type": null, + "parent": "a5e-ag_ace-driver" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 232, + "fields": { + "name": "", + "desc": "A vehicle you load can carry 25% more cargo than normal.", + "type": null, + "parent": "a5e-ag_ace-driver" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 233, + "fields": { + "name": "", + "desc": "Vehicles you are piloting only suffer a malfunction when reduced to 25% of their hit points, not 50%. In addition, when the vehicle does suffer a malfunction, you roll twice on the maneuver table and choose which die to use for the result.", + "type": null, + "parent": "a5e-ag_ace-driver" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 234, + "fields": { + "name": "", + "desc": "Vehicles you are piloting gain a bonus to their Armor Class equal to half your proficiency bonus.", + "type": null, + "parent": "a5e-ag_ace-driver" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 235, + "fields": { + "name": "", + "desc": "When you Brake, you can choose to immediately stop the vehicle without traveling half of its movement speed directly forward.", + "type": null, + "parent": "a5e-ag_ace-driver" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 236, + "fields": { + "name": "", + "desc": "You gain advantage on attack rolls against a creature you are grappling.", + "type": null, + "parent": "a5e-ag_grappler" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 237, + "fields": { + "name": "", + "desc": "You can use your action to try to pin a creature you are grappling. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", + "type": null, + "parent": "a5e-ag_grappler" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 238, + "fields": { + "name": "", + "desc": "Creatures with a CR lower than your alter ego’s Prestige rating are frightened of you while you are in your alter ego.", + "type": null, + "parent": "a5e-ag_a-symbol-that-strikes-fear" + } +}, +{ + "model": "api_v2.featbenefit", + "pk": 239, + "fields": { + "name": "", + "desc": "In addition, you become particularly adept at subduing your enemies rather than outright killing them. Whenever you begin a turn grappling a creature, you can attempt to non-lethally subdue it. The grappled creature makes a Constitution saving throw against your maneuver DC. On a failed saving throw, a creature is knocked unconscious for the next hour. A creature with more than 25% of its maximum hit points automatically succeeds on this saving throw.", + "type": null, + "parent": "a5e-ag_a-symbol-that-strikes-fear" + } +} +] diff --git a/data/v2/kobold-press/toh/Race.json b/data/v2/kobold-press/toh/Race.json index c17eb201..be8faddb 100644 --- a/data/v2/kobold-press/toh/Race.json +++ b/data/v2/kobold-press/toh/Race.json @@ -1,392 +1,392 @@ [ - { - "model": "api_v2.race", - "pk": "toh_acid-cap", - "fields": { - "name": "Acid Cap", - "desc": "You were one of the warriors and guardians of your clan, using your strength and acid spores to protect your clanmates and your territory.", - "document": "toh", - "subrace_of": "toh_mushroomfolk" - } - }, - { - "model": "api_v2.race", - "pk": "toh_alseid", - "fields": { - "name": "Alseid", - "desc": "Your alseid character has certain characteristics in common with all other alseid.", - "document": "toh", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "toh_bhain-kwai", - "fields": { - "name": "Bhain Kwai", - "desc": "You are a minotaur adapted to life in the bogs and wetlands of the world.", - "document": "toh", - "subrace_of": "toh_minotaur" - } - }, - { - "model": "api_v2.race", - "pk": "toh_boghaid", - "fields": { - "name": "Boghaid", - "desc": "You are a minotaur adapted to life in cold climates and high altitudes.", - "document": "toh", - "subrace_of": "toh_minotaur" - } - }, - { - "model": "api_v2.race", - "pk": "toh_catfolk", - "fields": { - "name": "Catfolk", - "desc": "Your catfolk character has the following traits.", - "document": "toh", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "toh_darakhul", - "fields": { - "name": "Darakhul", - "desc": "Your darakhul character has certain characteristics in common with all other darakhul.", - "document": "toh", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "toh_delver", - "fields": { - "name": "Delver", - "desc": "You are one of the workers whose labors prop up most of drow society. You were trained from birth to follow orders and serve the collective. You learned your trade well, whether it was building or fighting or erecting the traps that protected passages to your population centers.", - "document": "toh", - "subrace_of": "toh_drow" - } - }, - { - "model": "api_v2.race", - "pk": "toh_derro", - "fields": { - "name": "Derro", - "desc": "Your derro character has certain characteristics in common with all other derro.", - "document": "toh", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "toh_derro-heritage", - "fields": { - "name": "Derro Heritage", - "desc": "Your darakhul character was a derro before transforming into a darakhul. For you, the quieting of the otherworldly voices did not bring peace and tranquility. The impulses simply became more focused, and the desire to feast on flesh overwhelmed other urges. The darkness is still there; it just has a new, clearer form.", - "document": "toh", - "subrace_of": "toh_darakhul" - } - }, - { - "model": "api_v2.race", - "pk": "toh_dragonborn-heritage", - "fields": { - "name": "Dragonborn Heritage", - "desc": "Your darakhul character was a dragonborn before transforming into a darakhul. The dark power of undeath overwhelmed your elemental nature, replacing it with the foul energy and strength of the undead. Occasionally, your draconic heritage echoes a peal of raw power through your form, but it is quickly converted into necrotic waves.", - "document": "toh", - "subrace_of": "toh_darakhul" - } - }, - { - "model": "api_v2.race", - "pk": "toh_drow", - "fields": { - "name": "Drow", - "desc": "Your drow character has certain characteristics in common with all other drow.", - "document": "toh", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "toh_drow-heritage", - "fields": { - "name": "Drow Heritage", - "desc": "Your darakhul character was a drow before transforming into a darakhul. Your place within the highly regimented drow society doesn't feel that much different from your new place in the darakhul empires. But an uncertainty buzzes in your mind, and a hunger gnaws at your gut. You are now what you once hated and feared. Does it feel right, or is it something you fight against?", - "document": "toh", - "subrace_of": "toh_darakhul" - } - }, - { - "model": "api_v2.race", - "pk": "toh_dwarf-chassis", - "fields": { - "name": "Dwarf Chassis", - "desc": "The original dwarven gearforged engineers valued function over form, eschewing aesthetics in favor of instilling their chassis with toughness and strength. The chassis' metal face is clearly crafted to look dwarven, but its countenance is entirely unactuated and forged of a dark metal—often brass—sometimes with a lighter-colored mane of hair and a braided beard and mustaches made of fine metal strands. The gearforged's eyes glow a dark turquoise, staring dispassionately with a seemingly blank expression. Armor and helms worn by the gearforged are often styled to appear as if they were integrated into its chassis, making it all-but-impossible to tell where the armor ends and the gearforged begins.", - "document": "toh", - "subrace_of": "toh_gearforged" - } - }, - { - "model": "api_v2.race", - "pk": "toh_dwarf-heritage", - "fields": { - "name": "Dwarf Heritage", - "desc": "Your darakhul character was a dwarf before transforming into a darakhul. The hum of the earth, the tranquility of the stone and the dust, drained from you as the darakhul fever overwhelmed your once-resilient body. The stone is still there, but its touch has gone from a welcome embrace to a cold grip of death. But it's all the same to you now.", - "document": "toh", - "subrace_of": "toh_darakhul" - } - }, - { - "model": "api_v2.race", - "pk": "toh_elfshadow-fey-heritage", - "fields": { - "name": "Elf/Shadow Fey Heritage", - "desc": "Your darakhul character was an elf or shadow fey (see Midgard Heroes Handbook) before transforming into a darakhul. The deathly power coursing through you reminds you of the lithe beauty and magic of your former body. If you just use your imagination, the blood tastes like wine once did. The smell of rotting flesh has the bouquet of wildflowers. The moss beneath the surface feels like the leaves of the forest.", - "document": "toh", - "subrace_of": "toh_darakhul" - } - }, - { - "model": "api_v2.race", - "pk": "toh_erina", - "fields": { - "name": "Erina", - "desc": "Your erina character has traits which complement its curiosity, sociability, and fierce nature.", - "document": "toh", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "toh_far-touched", - "fields": { - "name": "Far-Touched", - "desc": "You grew up firmly ensconced in the mad traditions of the derro, your mind touched by the raw majesty and power of your society's otherworldly deities. Your abilities in other areas have made you more than a typical derro, of course. But no matter how well-trained and skilled you get in other magical or martial arts, the voices of your gods forever reverberate in your ears, driving you forward to do great or terrible things.", - "document": "toh", - "subrace_of": "toh_derro" - } - }, - { - "model": "api_v2.race", - "pk": "toh_favored", - "fields": { - "name": "Favored", - "desc": "A few special mushroomfolk grow to become shamans, generals, and other types of leaders. Your spores invite cooperation, peace, and healing among your allies. Others look to you for guidance and succor in the harsh underground environs.", - "document": "toh", - "subrace_of": "toh_mushroomfolk" - } - }, - { - "model": "api_v2.race", - "pk": "toh_fever-bit", - "fields": { - "name": "Fever-Bit", - "desc": "You were once a typical drow, then you fell victim to the ravaging claws and teeth of a darakhul. The deadly darakhul fever almost took your life, but, when you were on the verge of succumbing, you rallied and survived. You were changed, however, in ways that even the greatest healers of your people can't fathom. But now that you are immune to darakhul fever, your commanders have a job for you.", - "document": "toh", - "subrace_of": "toh_drow" - } - }, - { - "model": "api_v2.race", - "pk": "toh_gearforged", - "fields": { - "name": "Gearforged", - "desc": "The range of gearforged anatomy in all its variants is remarkable, but all gearforged share some common parts.", - "document": "toh", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "toh_gnome-chassis", - "fields": { - "name": "Gnome Chassis", - "desc": "Crafted for both exceptional functionality and aesthetic beauty, a gnome chassis' skin is clearly metallic but is meticulously colored to closely match gnomish skin tones, except at the joints, where gears and darker steel pistons are visible. Gnome chassis are almost always bald, with elaborate artistic patterns painted or etched on the face and skull in lieu of hair. Their eyes are vivid and lifelike, as is the chassis' gnomish face, which has a sculpted metal nose and articulated mouth and jaw. The gnome artisans who pioneered the first gearforged chassis saw it as an opportunity to not merely build a better body but to make it a work of art.", - "document": "toh", - "subrace_of": "toh_gearforged" - } - }, - { - "model": "api_v2.race", - "pk": "toh_gnome-heritage", - "fields": { - "name": "Gnome Heritage", - "desc": "Your darakhul character was a gnome before transforming into a darakhul. The spark of magic that drove you before your transformation still burns inside of you, but now it is a constant ache instead of a source of creation and inspiration. This ache is twisted by your hunger, making you hunger for magic itself.", - "document": "toh", - "subrace_of": "toh_darakhul" - } - }, - { - "model": "api_v2.race", - "pk": "toh_halfling-heritage", - "fields": { - "name": "Halfling Heritage", - "desc": "Your darakhul character was a halfling before transforming into a darakhul. Everything you loved as a halfling—food, drink, exploration, adventure— still drives you in your undead form; it is simply a more ghoulish form of those pleasures now: raw flesh instead of stew, warm blood instead of cold mead. You still want to explore the dark corners of the world, but now you seek something different.", - "document": "toh", - "subrace_of": "toh_darakhul" - } - }, - { - "model": "api_v2.race", - "pk": "toh_human-chassis", - "fields": { - "name": "Human Chassis", - "desc": "As humans invented the first gearforged, it should be no surprise that the human chassis remains the one that is most frequently encountered. However, it would be a mistake to assume that simply because the original chassis is more commonplace that there is anything common about them. While dwarves, gnomes, and kobolds have made clever additions and changes to the base model, the human chassis remains extremely versatile and is battle-proven.", - "document": "toh", - "subrace_of": "toh_gearforged" - } - }, - { - "model": "api_v2.race", - "pk": "toh_humanhalf-elf-heritage", - "fields": { - "name": "Human/Half-Elf Heritage", - "desc": "Your darakhul character was a human or half-elf before transforming into a darakhul. Where there was once light there is now darkness. Where there was once love there is now hunger. You know if the darkness and hunger become all-consuming, you are truly lost. But the powers of your new form are strangely comfortable. How much of your old self is still there, and what can this new form give you that your old one couldn't?", - "document": "toh", - "subrace_of": "toh_darakhul" - } - }, - { - "model": "api_v2.race", - "pk": "toh_kobold-chassis", - "fields": { - "name": "Kobold Chassis", - "desc": "Kobolds are naturally curious tinkerers, constantly modifying their devices and tools. As such, kobolds, in spite of what many dwarf or gnome engineers might say, were the second race to master the nuances of gearforged creation after studying human gearforged. However, most of these early kobold gearforged no longer exist, as the more draconic forms (homages to the kobolds' draconic masters) proved too alien to the kobold soul gems to maintain stable, long-term connections with the bodies. Kobold engineers have since resolved that problem, and kobold gearforged can be found among many kobold communities, aiding its members and tinkering right alongside their scale-and-blood brethren.", - "document": "toh", - "subrace_of": "toh_gearforged" - } - }, - { - "model": "api_v2.race", - "pk": "toh_kobold-heritage", - "fields": { - "name": "Kobold Heritage", - "desc": "Your darakhul character was a kobold before transforming into a darakhul. The dark, although it was often your home, generally held terrors that you needed to survive. Now you are the dark, and its pull on your soul is strong. You fight to keep a grip on the intellect and cunning that sustained you in your past life. Sometimes it is easy, but often the driving hunger inside you makes it hard to think as clearly as you once did.", - "document": "toh", - "subrace_of": "toh_darakhul" - } - }, - { - "model": "api_v2.race", - "pk": "toh_malkin", - "fields": { - "name": "Malkin", - "desc": "It's often said curiosity killed the cat, and this applies with equal frequency to catfolk. As a malkin catfolk you are adept at finding clever solutions to escape difficult situations, even (or perhaps especially) situations of your own making. Your diminutive size also gives you an uncanny nimbleness that helps you avoid the worst consequences of your intense inquisitiveness. Most often found in densely populated regions, these catfolk are as curious about the comings and goings of other humanoids as they are about natural or magical phenomena and artifacts. While malkins are sometimes referred to as \"housecats\" by other humanoids and even by other catfolk, doing so in a malkin's hearing is a surefire way to get a face full of claws…", - "document": "toh", - "subrace_of": "toh_catfolk" - } - }, - { - "model": "api_v2.race", - "pk": "toh_minotaur", - "fields": { - "name": "Minotaur", - "desc": "Your minotaur character has certain characteristics in common with all other minotaurs.", - "document": "toh", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "toh_morel", - "fields": { - "name": "Morel", - "desc": "Your specialty for your clan was acting as a scout and a wayfinder. Your abilities to avoid problems and locate new sources of food for your clan was instrumental in their survival, and your interactions with other clans helped keep your people alive and well.", - "document": "toh", - "subrace_of": "toh_mushroomfolk" - } - }, - { - "model": "api_v2.race", - "pk": "toh_mushroomfolk", - "fields": { - "name": "Mushroomfolk", - "desc": "Your mushroomfolk character has characteristics in common with all other mushroomfolk.", - "document": "toh", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "toh_mutated", - "fields": { - "name": "Mutated", - "desc": "Most derro go through the process of indoctrination into their society and come out of it with visions and delusion, paranoia and mania. You, on the other hand, were not affected as much mentally as you were physically. The connection to the dark deities of your people made you stronger and gave you a physical manifestation of their gift that other derro look upon with envy and awe.", - "document": "toh", - "subrace_of": "toh_derro" - } - }, - { - "model": "api_v2.race", - "pk": "toh_pantheran", - "fields": { - "name": "Pantheran", - "desc": "Pantheran catfolk are a wise, observant, and patient people who pride themselves on being resourceful and self-sufficient. Less social than many others of their kind, these catfolk typically dwell in small, close-knit family groups in the forests, jungles, and grasslands of the world, away from larger population centers or cities. Their family clans teach the importance of living off of and protecting the natural world, and pantherans act swiftly and mercilessly when their forest homes are threatened by outside forces. Conversely, pantherans can be the most fierce and loyal of neighbors to villages who respect nature and who take from the land and forest no more than they need. As a pantheran, you value nature and kinship, and your allies know they can count on your wisdom and, when necessary, your claws.", - "document": "toh", - "subrace_of": "toh_catfolk" - } - }, - { - "model": "api_v2.race", - "pk": "toh_purified", - "fields": { - "name": "Purified", - "desc": "You were born into the caste that produces the leaders and planners, the priests and wizards, the generals and officers of drow society. Your people, it is believed, were tested by the beneficent powers you worship, and you passed those tests to become something more. Your innate magic proves your superiority over your fellows.", - "document": "toh", - "subrace_of": "toh_drow" - } - }, - { - "model": "api_v2.race", - "pk": "toh_ravenfolk", - "fields": { - "name": "Ravenfolk", - "desc": "Your darakhul character was a ravenfolk (see Midgard Heroes Handbook) before transforming into a darakhul. Your new form feels different. It is more powerful and less fidgety, and your beak has become razor sharp. There is still room for trickery, of course. But with your new life comes a disconnection from the All Father. Does this loss gnaw at you like your new hunger or do you feel freed from the destiny of your people?", - "document": "toh", - "subrace_of": "toh_darakhul" - } - }, - { - "model": "api_v2.race", - "pk": "toh_satarre", - "fields": { - "name": "Satarre", - "desc": "Your satarre heritage is apparent in a variety of traits you share with other satarre.", - "document": "toh", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "toh_tiefling-heritage", - "fields": { - "name": "Tiefling Heritage", - "desc": "Your darakhul character was a tiefling before transforming into a darakhul. You are no stranger to the pull of powerful forces raging through your blood. You have traded one dark pull for another, and this one seems much stronger. Is that a good feeling, or do you miss your old one?", - "document": "toh", - "subrace_of": "toh_darakhul" - } - }, - { - "model": "api_v2.race", - "pk": "toh_trollkin-heritage", - "fields": { - "name": "Trollkin Heritage", - "desc": "Your darakhul character was a trollkin (see Midgard Heroes Handbook) before transforming into a darakhul. Others saw you as a monster because of your ancestry. You became inured to the fearful looks and hurried exits of those around you. If only they could see you now. Does your new state make you seek revenge on them, or are you able to maintain your self-control despite the new urges you feel?", - "document": "toh", - "subrace_of": "toh_darakhul" - } - }, - { - "model": "api_v2.race", - "pk": "toh_uncorrupted", - "fields": { - "name": "Uncorrupted", - "desc": "Someone in your past failed to do their job of driving you to the brink of insanity. It might have been a doting parent that decided to buck tradition. It might have been a touched seer who had visions of your future without the connections to the mad gods your people serve. It might have been a whole outcast community of derro rebels who refused to serve the madness of your ancestors. Whatever happened in your past, you are quite sane—or at least quite sane for a derro.", - "document": "toh", - "subrace_of": "toh_derro" - } - } -] \ No newline at end of file +{ + "model": "api_v2.race", + "pk": "toh_acid-cap", + "fields": { + "name": "Acid Cap", + "desc": "You were one of the warriors and guardians of your clan, using your strength and acid spores to protect your clanmates and your territory.", + "document": "toh", + "subrace_of": "toh_mushroomfolk" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_alseid", + "fields": { + "name": "Alseid", + "desc": "Your alseid character has certain characteristics in common with all other alseid.", + "document": "toh", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "toh_bhain-kwai", + "fields": { + "name": "Bhain Kwai", + "desc": "You are a minotaur adapted to life in the bogs and wetlands of the world.", + "document": "toh", + "subrace_of": "toh_minotaur" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_boghaid", + "fields": { + "name": "Boghaid", + "desc": "You are a minotaur adapted to life in cold climates and high altitudes.", + "document": "toh", + "subrace_of": "toh_minotaur" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_catfolk", + "fields": { + "name": "Catfolk", + "desc": "Your catfolk character has the following traits.", + "document": "toh", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "toh_darakhul", + "fields": { + "name": "Darakhul", + "desc": "Your darakhul character has certain characteristics in common with all other darakhul.", + "document": "toh", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "toh_delver", + "fields": { + "name": "Delver", + "desc": "You are one of the workers whose labors prop up most of drow society. You were trained from birth to follow orders and serve the collective. You learned your trade well, whether it was building or fighting or erecting the traps that protected passages to your population centers.", + "document": "toh", + "subrace_of": "toh_drow" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_derro", + "fields": { + "name": "Derro", + "desc": "Your derro character has certain characteristics in common with all other derro.", + "document": "toh", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "toh_derro-heritage", + "fields": { + "name": "Derro Heritage", + "desc": "Your darakhul character was a derro before transforming into a darakhul. For you, the quieting of the otherworldly voices did not bring peace and tranquility. The impulses simply became more focused, and the desire to feast on flesh overwhelmed other urges. The darkness is still there; it just has a new, clearer form.", + "document": "toh", + "subrace_of": "toh_darakhul" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_dragonborn-heritage", + "fields": { + "name": "Dragonborn Heritage", + "desc": "Your darakhul character was a dragonborn before transforming into a darakhul. The dark power of undeath overwhelmed your elemental nature, replacing it with the foul energy and strength of the undead. Occasionally, your draconic heritage echoes a peal of raw power through your form, but it is quickly converted into necrotic waves.", + "document": "toh", + "subrace_of": "toh_darakhul" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_drow", + "fields": { + "name": "Drow", + "desc": "Your drow character has certain characteristics in common with all other drow.", + "document": "toh", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "toh_drow-heritage", + "fields": { + "name": "Drow Heritage", + "desc": "Your darakhul character was a drow before transforming into a darakhul. Your place within the highly regimented drow society doesn't feel that much different from your new place in the darakhul empires. But an uncertainty buzzes in your mind, and a hunger gnaws at your gut. You are now what you once hated and feared. Does it feel right, or is it something you fight against?", + "document": "toh", + "subrace_of": "toh_darakhul" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_dwarf-chassis", + "fields": { + "name": "Dwarf Chassis", + "desc": "The original dwarven gearforged engineers valued function over form, eschewing aesthetics in favor of instilling their chassis with toughness and strength. The chassis' metal face is clearly crafted to look dwarven, but its countenance is entirely unactuated and forged of a dark metal—often brass—sometimes with a lighter-colored mane of hair and a braided beard and mustaches made of fine metal strands. The gearforged's eyes glow a dark turquoise, staring dispassionately with a seemingly blank expression. Armor and helms worn by the gearforged are often styled to appear as if they were integrated into its chassis, making it all-but-impossible to tell where the armor ends and the gearforged begins.", + "document": "toh", + "subrace_of": "toh_gearforged" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_dwarf-heritage", + "fields": { + "name": "Dwarf Heritage", + "desc": "Your darakhul character was a dwarf before transforming into a darakhul. The hum of the earth, the tranquility of the stone and the dust, drained from you as the darakhul fever overwhelmed your once-resilient body. The stone is still there, but its touch has gone from a welcome embrace to a cold grip of death. But it's all the same to you now.", + "document": "toh", + "subrace_of": "toh_darakhul" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_elfshadow-fey-heritage", + "fields": { + "name": "Elf/Shadow Fey Heritage", + "desc": "Your darakhul character was an elf or shadow fey (see Midgard Heroes Handbook) before transforming into a darakhul. The deathly power coursing through you reminds you of the lithe beauty and magic of your former body. If you just use your imagination, the blood tastes like wine once did. The smell of rotting flesh has the bouquet of wildflowers. The moss beneath the surface feels like the leaves of the forest.", + "document": "toh", + "subrace_of": "toh_darakhul" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_erina", + "fields": { + "name": "Erina", + "desc": "Your erina character has traits which complement its curiosity, sociability, and fierce nature.", + "document": "toh", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "toh_far-touched", + "fields": { + "name": "Far-Touched", + "desc": "You grew up firmly ensconced in the mad traditions of the derro, your mind touched by the raw majesty and power of your society's otherworldly deities. Your abilities in other areas have made you more than a typical derro, of course. But no matter how well-trained and skilled you get in other magical or martial arts, the voices of your gods forever reverberate in your ears, driving you forward to do great or terrible things.", + "document": "toh", + "subrace_of": "toh_derro" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_favored", + "fields": { + "name": "Favored", + "desc": "A few special mushroomfolk grow to become shamans, generals, and other types of leaders. Your spores invite cooperation, peace, and healing among your allies. Others look to you for guidance and succor in the harsh underground environs.", + "document": "toh", + "subrace_of": "toh_mushroomfolk" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_fever-bit", + "fields": { + "name": "Fever-Bit", + "desc": "You were once a typical drow, then you fell victim to the ravaging claws and teeth of a darakhul. The deadly darakhul fever almost took your life, but, when you were on the verge of succumbing, you rallied and survived. You were changed, however, in ways that even the greatest healers of your people can't fathom. But now that you are immune to darakhul fever, your commanders have a job for you.", + "document": "toh", + "subrace_of": "toh_drow" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_gearforged", + "fields": { + "name": "Gearforged", + "desc": "The range of gearforged anatomy in all its variants is remarkable, but all gearforged share some common parts.", + "document": "toh", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "toh_gnome-chassis", + "fields": { + "name": "Gnome Chassis", + "desc": "Crafted for both exceptional functionality and aesthetic beauty, a gnome chassis' skin is clearly metallic but is meticulously colored to closely match gnomish skin tones, except at the joints, where gears and darker steel pistons are visible. Gnome chassis are almost always bald, with elaborate artistic patterns painted or etched on the face and skull in lieu of hair. Their eyes are vivid and lifelike, as is the chassis' gnomish face, which has a sculpted metal nose and articulated mouth and jaw. The gnome artisans who pioneered the first gearforged chassis saw it as an opportunity to not merely build a better body but to make it a work of art.", + "document": "toh", + "subrace_of": "toh_gearforged" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_gnome-heritage", + "fields": { + "name": "Gnome Heritage", + "desc": "Your darakhul character was a gnome before transforming into a darakhul. The spark of magic that drove you before your transformation still burns inside of you, but now it is a constant ache instead of a source of creation and inspiration. This ache is twisted by your hunger, making you hunger for magic itself.", + "document": "toh", + "subrace_of": "toh_darakhul" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_halfling-heritage", + "fields": { + "name": "Halfling Heritage", + "desc": "Your darakhul character was a halfling before transforming into a darakhul. Everything you loved as a halfling—food, drink, exploration, adventure— still drives you in your undead form; it is simply a more ghoulish form of those pleasures now: raw flesh instead of stew, warm blood instead of cold mead. You still want to explore the dark corners of the world, but now you seek something different.", + "document": "toh", + "subrace_of": "toh_darakhul" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_human-chassis", + "fields": { + "name": "Human Chassis", + "desc": "As humans invented the first gearforged, it should be no surprise that the human chassis remains the one that is most frequently encountered. However, it would be a mistake to assume that simply because the original chassis is more commonplace that there is anything common about them. While dwarves, gnomes, and kobolds have made clever additions and changes to the base model, the human chassis remains extremely versatile and is battle-proven.", + "document": "toh", + "subrace_of": "toh_gearforged" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_humanhalf-elf-heritage", + "fields": { + "name": "Human/Half-Elf Heritage", + "desc": "Your darakhul character was a human or half-elf before transforming into a darakhul. Where there was once light there is now darkness. Where there was once love there is now hunger. You know if the darkness and hunger become all-consuming, you are truly lost. But the powers of your new form are strangely comfortable. How much of your old self is still there, and what can this new form give you that your old one couldn't?", + "document": "toh", + "subrace_of": "toh_darakhul" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_kobold-chassis", + "fields": { + "name": "Kobold Chassis", + "desc": "Kobolds are naturally curious tinkerers, constantly modifying their devices and tools. As such, kobolds, in spite of what many dwarf or gnome engineers might say, were the second race to master the nuances of gearforged creation after studying human gearforged. However, most of these early kobold gearforged no longer exist, as the more draconic forms (homages to the kobolds' draconic masters) proved too alien to the kobold soul gems to maintain stable, long-term connections with the bodies. Kobold engineers have since resolved that problem, and kobold gearforged can be found among many kobold communities, aiding its members and tinkering right alongside their scale-and-blood brethren.", + "document": "toh", + "subrace_of": "toh_gearforged" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_kobold-heritage", + "fields": { + "name": "Kobold Heritage", + "desc": "Your darakhul character was a kobold before transforming into a darakhul. The dark, although it was often your home, generally held terrors that you needed to survive. Now you are the dark, and its pull on your soul is strong. You fight to keep a grip on the intellect and cunning that sustained you in your past life. Sometimes it is easy, but often the driving hunger inside you makes it hard to think as clearly as you once did.", + "document": "toh", + "subrace_of": "toh_darakhul" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_malkin", + "fields": { + "name": "Malkin", + "desc": "It's often said curiosity killed the cat, and this applies with equal frequency to catfolk. As a malkin catfolk you are adept at finding clever solutions to escape difficult situations, even (or perhaps especially) situations of your own making. Your diminutive size also gives you an uncanny nimbleness that helps you avoid the worst consequences of your intense inquisitiveness. Most often found in densely populated regions, these catfolk are as curious about the comings and goings of other humanoids as they are about natural or magical phenomena and artifacts. While malkins are sometimes referred to as \"housecats\" by other humanoids and even by other catfolk, doing so in a malkin's hearing is a surefire way to get a face full of claws…", + "document": "toh", + "subrace_of": "toh_catfolk" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_minotaur", + "fields": { + "name": "Minotaur", + "desc": "Your minotaur character has certain characteristics in common with all other minotaurs.", + "document": "toh", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "toh_morel", + "fields": { + "name": "Morel", + "desc": "Your specialty for your clan was acting as a scout and a wayfinder. Your abilities to avoid problems and locate new sources of food for your clan was instrumental in their survival, and your interactions with other clans helped keep your people alive and well.", + "document": "toh", + "subrace_of": "toh_mushroomfolk" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_mushroomfolk", + "fields": { + "name": "Mushroomfolk", + "desc": "Your mushroomfolk character has characteristics in common with all other mushroomfolk.", + "document": "toh", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "toh_mutated", + "fields": { + "name": "Mutated", + "desc": "Most derro go through the process of indoctrination into their society and come out of it with visions and delusion, paranoia and mania. You, on the other hand, were not affected as much mentally as you were physically. The connection to the dark deities of your people made you stronger and gave you a physical manifestation of their gift that other derro look upon with envy and awe.", + "document": "toh", + "subrace_of": "toh_derro" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_pantheran", + "fields": { + "name": "Pantheran", + "desc": "Pantheran catfolk are a wise, observant, and patient people who pride themselves on being resourceful and self-sufficient. Less social than many others of their kind, these catfolk typically dwell in small, close-knit family groups in the forests, jungles, and grasslands of the world, away from larger population centers or cities. Their family clans teach the importance of living off of and protecting the natural world, and pantherans act swiftly and mercilessly when their forest homes are threatened by outside forces. Conversely, pantherans can be the most fierce and loyal of neighbors to villages who respect nature and who take from the land and forest no more than they need. As a pantheran, you value nature and kinship, and your allies know they can count on your wisdom and, when necessary, your claws.", + "document": "toh", + "subrace_of": "toh_catfolk" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_purified", + "fields": { + "name": "Purified", + "desc": "You were born into the caste that produces the leaders and planners, the priests and wizards, the generals and officers of drow society. Your people, it is believed, were tested by the beneficent powers you worship, and you passed those tests to become something more. Your innate magic proves your superiority over your fellows.", + "document": "toh", + "subrace_of": "toh_drow" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_ravenfolk", + "fields": { + "name": "Ravenfolk", + "desc": "Your darakhul character was a ravenfolk (see Midgard Heroes Handbook) before transforming into a darakhul. Your new form feels different. It is more powerful and less fidgety, and your beak has become razor sharp. There is still room for trickery, of course. But with your new life comes a disconnection from the All Father. Does this loss gnaw at you like your new hunger or do you feel freed from the destiny of your people?", + "document": "toh", + "subrace_of": "toh_darakhul" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_satarre", + "fields": { + "name": "Satarre", + "desc": "Your satarre heritage is apparent in a variety of traits you share with other satarre.", + "document": "toh", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "toh_tiefling-heritage", + "fields": { + "name": "Tiefling Heritage", + "desc": "Your darakhul character was a tiefling before transforming into a darakhul. You are no stranger to the pull of powerful forces raging through your blood. You have traded one dark pull for another, and this one seems much stronger. Is that a good feeling, or do you miss your old one?", + "document": "toh", + "subrace_of": "toh_darakhul" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_trollkin-heritage", + "fields": { + "name": "Trollkin Heritage", + "desc": "Your darakhul character was a trollkin (see Midgard Heroes Handbook) before transforming into a darakhul. Others saw you as a monster because of your ancestry. You became inured to the fearful looks and hurried exits of those around you. If only they could see you now. Does your new state make you seek revenge on them, or are you able to maintain your self-control despite the new urges you feel?", + "document": "toh", + "subrace_of": "toh_darakhul" + } +}, +{ + "model": "api_v2.race", + "pk": "toh_uncorrupted", + "fields": { + "name": "Uncorrupted", + "desc": "Someone in your past failed to do their job of driving you to the brink of insanity. It might have been a doting parent that decided to buck tradition. It might have been a touched seer who had visions of your future without the connections to the mad gods your people serve. It might have been a whole outcast community of derro rebels who refused to serve the madness of your ancestors. Whatever happened in your past, you are quite sane—or at least quite sane for a derro.", + "document": "toh", + "subrace_of": "toh_derro" + } +} +] diff --git a/data/v2/kobold-press/toh/RaceTrait.json b/data/v2/kobold-press/toh/RaceTrait.json index 2aaf8f86..8aa2b4be 100644 --- a/data/v2/kobold-press/toh/RaceTrait.json +++ b/data/v2/kobold-press/toh/RaceTrait.json @@ -1,1842 +1,1842 @@ [ - { - "model": "api_v2.racetrait", - "pk": 98, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2, and your Wisdom score increases by 1.", - "type": null, - "parent": "toh_alseid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 99, - "fields": { - "name": "Speed", - "desc": "Alseid are fast for their size, with a base walking speed of 40 feet.", - "type": null, - "parent": "toh_alseid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 100, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to the limited light beneath the forest canopy, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "toh_alseid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 101, - "fields": { - "name": "Age", - "desc": "Alseid reach maturity by the age of 20. They can live well beyond 100 years, but it is unknown just how old they can become.", - "type": null, - "parent": "toh_alseid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 102, - "fields": { - "name": "Alignment", - "desc": "Alseid are generally chaotic, flowing with the unpredictable whims of nature, though variations are common, particularly among those rare few who leave their people.", - "type": null, - "parent": "toh_alseid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 103, - "fields": { - "name": "Size", - "desc": "Alseid stand over 6 feet tall and weigh around 300 pounds. Your size is Medium.", - "type": null, - "parent": "toh_alseid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 104, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Elvish.", - "type": null, - "parent": "toh_alseid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 105, - "fields": { - "name": "Alseid Weapon Training", - "desc": "You have proficiency with spears and shortbows.", - "type": null, - "parent": "toh_alseid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 106, - "fields": { - "name": "Light Hooves", - "desc": "You have proficiency in the Stealth skill.", - "type": null, - "parent": "toh_alseid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 107, - "fields": { - "name": "Quadruped", - "desc": "The mundane details of the structures of humanoids can present considerable obstacles for you. You have to squeeze when moving through trapdoors, manholes, and similar structures even when a Medium humanoid wouldn't have to squeeze. In addition, ladders, stairs, and similar structures are difficult terrain for you.", - "type": null, - "parent": "toh_alseid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 108, - "fields": { - "name": "Woodfriend", - "desc": "When in a forest, you leave no tracks and can automatically discern true north.", - "type": null, - "parent": "toh_alseid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 109, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "toh_catfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 110, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "toh_catfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 111, - "fields": { - "name": "Darkvision", - "desc": "You have a cat's keen senses, especially in the dark. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "toh_catfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 112, - "fields": { - "name": "Age", - "desc": "Catfolk mature at the same rate as humans and can live just past a century.", - "type": null, - "parent": "toh_catfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 113, - "fields": { - "name": "Alignment", - "desc": "Catfolk tend toward two extremes. Some are free-spirited and chaotic, letting impulse and fancy guide their decisions. Others are devoted to duty and personal honor. Typically, catfolk deem concepts such as good and evil as less important than freedom or their oaths.", - "type": null, - "parent": "toh_catfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 114, - "fields": { - "name": "Size", - "desc": "Catfolk have a similar stature to humans but are generally leaner and more muscular. Your size is Medium", - "type": null, - "parent": "toh_catfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 115, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common.", - "type": null, - "parent": "toh_catfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 116, - "fields": { - "name": "Cat's Claws", - "desc": "Your sharp claws can cut with ease. Your claws are natural melee weapons, which you can use to make unarmed strikes. When you hit with a claw, your claw deals slashing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", - "type": null, - "parent": "toh_catfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 117, - "fields": { - "name": "Hunter's Senses", - "desc": "You have proficiency in the Perception and Stealth skills.", - "type": null, - "parent": "toh_catfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 118, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 1.", - "type": null, - "parent": "toh_malkin" - } - }, - { - "model": "api_v2.racetrait", - "pk": 119, - "fields": { - "name": "Curiously Clever", - "desc": "You have proficiency in the Investigation skill.", - "type": null, - "parent": "toh_malkin" - } - }, - { - "model": "api_v2.racetrait", - "pk": 120, - "fields": { - "name": "Charmed Curiosity", - "desc": "When you roll a 1 on the d20 for a Dexterity check or saving throw, you can reroll the die and must use the new roll.", - "type": null, - "parent": "toh_malkin" - } - }, - { - "model": "api_v2.racetrait", - "pk": 121, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 1.", - "type": null, - "parent": "toh_pantheran" - } - }, - { - "model": "api_v2.racetrait", - "pk": 122, - "fields": { - "name": "Hunter's Charge", - "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a melee weapon attack in the same turn, you can use a bonus action to attack that creature with your Cat's Claws. You can use this trait a number of times per day equal to your proficiency bonus, and you regain all expended uses when you finish a long rest.", - "type": null, - "parent": "toh_pantheran" - } - }, - { - "model": "api_v2.racetrait", - "pk": 123, - "fields": { - "name": "One With the Wilds", - "desc": "You have proficiency in one of the following skills of your choice: Insight, Medicine, Nature, or Survival.", - "type": null, - "parent": "toh_pantheran" - } - }, - { - "model": "api_v2.racetrait", - "pk": 124, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "toh_derro" - } - }, - { - "model": "api_v2.racetrait", - "pk": 125, - "fields": { - "name": "Speed", - "desc": "Derro are fast for their size. Your base walking speed is 30 feet.", - "type": null, - "parent": "toh_derro" - } - }, - { - "model": "api_v2.racetrait", - "pk": 126, - "fields": { - "name": "Superior Darkvision", - "desc": "Accustomed to life underground, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "toh_derro" - } - }, - { - "model": "api_v2.racetrait", - "pk": 127, - "fields": { - "name": "Age", - "desc": "Derro reach maturity by the age of 15 and live to be around 75.", - "type": null, - "parent": "toh_derro" - } - }, - { - "model": "api_v2.racetrait", - "pk": 128, - "fields": { - "name": "Alignment", - "desc": "The derro's naturally unhinged minds are nearly always chaotic, and many, but not all, are evil.", - "type": null, - "parent": "toh_derro" - } - }, - { - "model": "api_v2.racetrait", - "pk": 129, - "fields": { - "name": "Size", - "desc": "Derro stand between 3 and 4 feet tall with slender limbs and wide shoulders. Your size is Small.", - "type": null, - "parent": "toh_derro" - } - }, - { - "model": "api_v2.racetrait", - "pk": 130, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Dwarvish and your choice of Common or Undercommon.", - "type": null, - "parent": "toh_derro" - } - }, - { - "model": "api_v2.racetrait", - "pk": 131, - "fields": { - "name": "Eldritch Resilience", - "desc": "You have advantage on Constitution saving throws against spells.", - "type": null, - "parent": "toh_derro" - } - }, - { - "model": "api_v2.racetrait", - "pk": 132, - "fields": { - "name": "Sunlight Sensitivity", - "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", - "type": null, - "parent": "toh_derro" - } - }, - { - "model": "api_v2.racetrait", - "pk": 133, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "parent": "toh_far-touched" - } - }, - { - "model": "api_v2.racetrait", - "pk": 134, - "fields": { - "name": "Insanity", - "desc": "You have advantage on saving throws against being charmed or frightened. In addition, you can read and understand Void Speech, but you can speak only a few words of the dangerous and maddening language—the words necessary for using the spells in your Mad Fervor trait.", - "type": null, - "parent": "toh_far-touched" - } - }, - { - "model": "api_v2.racetrait", - "pk": 135, - "fields": { - "name": "Mad Fervor", - "desc": "The driving force behind your insanity has blessed you with a measure of its power. You know the vicious mockery cantrip. When you reach 3rd level, you can cast the enthrall spell with this trait, and starting at 5th level, you can cast the fear spell with it. Once you cast a non-cantrip spell with this trait, you can't do so again until you finish a long rest. Charisma is your spellcasting ability for these spells. If you are using Deep Magic for 5th Edition, these spells are instead crushing curse, maddening whispers, and alone, respectively.", - "type": null, - "parent": "toh_far-touched" - } - }, - { - "model": "api_v2.racetrait", - "pk": 136, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 1.", - "type": null, - "parent": "toh_mutated" - } - }, - { - "model": "api_v2.racetrait", - "pk": 137, - "fields": { - "name": "Athletic Training", - "desc": "You have proficiency in the Athletics skill, and you are proficient with two martial weapons of your choice.", - "type": null, - "parent": "toh_mutated" - } - }, - { - "model": "api_v2.racetrait", - "pk": 138, - "fields": { - "name": "Otherworldly Influence", - "desc": "Your close connection to the strange powers that your people worship has mutated your form. Choose one of the following:\r\n\r\n**Alien Appendage.** You have a tentacle-like growth on your body. This tentacle is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your tentacle deals bludgeoning damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. This tentacle has a reach of 5 feet and can lift a number of pounds equal to double your Strength score. The tentacle can't wield weapons or shields or perform tasks that require manual precision, such as performing the somatic components of a spell, but it can perform simple tasks, such as opening an unlocked door or container, stowing or retrieving an object, or pouring the contents out of a vial.\r\n**Tainted Blood.** Your blood is tainted by your connection with otherworldly entities. When you take piercing or slashing damage, you can use your reaction to force your blood to spray out of the wound. You and each creature within 5 feet of you take necrotic damage equal to your level. Once you use this trait, you can't use it again until you finish a short or long rest.\r\n**Tenebrous Flesh.** Your skin is rubbery and tenebrous, granting you a +1 bonus to your Armor Class.", - "type": null, - "parent": "toh_mutated" - } - }, - { - "model": "api_v2.racetrait", - "pk": 139, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 1.", - "type": null, - "parent": "toh_uncorrupted" - } - }, - { - "model": "api_v2.racetrait", - "pk": 140, - "fields": { - "name": "Psychic Barrier", - "desc": "Your time among your less sane brethren has inured you to their madness. You have resistance to psychic damage, and you have advantage on ability checks and saving throws made against effects that inflict insanity, such as spells like contact other plane and symbol, and effects that cause short-term, long-term, or indefinite madness.", - "type": null, - "parent": "toh_uncorrupted" - } - }, - { - "model": "api_v2.racetrait", - "pk": 141, - "fields": { - "name": "Studied Insight", - "desc": "You are skilled at discerning other creature's motives and intentions. You have proficiency in the Insight skill, and, if you study a creature for at least 1 minute, you have advantage on any initiative checks in combat against that creature for the next hour.", - "type": null, - "parent": "toh_uncorrupted" - } - }, - { - "model": "api_v2.racetrait", - "pk": 142, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "parent": "toh_drow" - } - }, - { - "model": "api_v2.racetrait", - "pk": 143, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "toh_drow" - } - }, - { - "model": "api_v2.racetrait", - "pk": 144, - "fields": { - "name": "Superior Darkvision", - "desc": "Accustomed to life in the darkest depths of the world, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "toh_drow" - } - }, - { - "model": "api_v2.racetrait", - "pk": 145, - "fields": { - "name": "Age", - "desc": "Drow physically mature at the same rate as humans, but they aren't considered adults until they reach the age of 50. They typically live to be around 500.", - "type": null, - "parent": "toh_drow" - } - }, - { - "model": "api_v2.racetrait", - "pk": 146, - "fields": { - "name": "Alignment", - "desc": "Drow believe in reason and rationality, which leads them to favor lawful activities. However, their current dire situation makes them more prone than their ancestors to chaotic behavior. Their vicious fight for survival makes them capable of doing great evil in the name of self-preservation, although they are not, by nature, prone to evil in other circumstances.", - "type": null, - "parent": "toh_drow" - } - }, - { - "model": "api_v2.racetrait", - "pk": 147, - "fields": { - "name": "Size", - "desc": "Drow are slightly shorter and slimmer than humans. Your size is Medium.", - "type": null, - "parent": "toh_drow" - } - }, - { - "model": "api_v2.racetrait", - "pk": 148, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Elvish and your choice of Common or Undercommon.", - "type": null, - "parent": "toh_drow" - } - }, - { - "model": "api_v2.racetrait", - "pk": 149, - "fields": { - "name": "Fey Ancestry", - "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", - "type": null, - "parent": "toh_drow" - } - }, - { - "model": "api_v2.racetrait", - "pk": 150, - "fields": { - "name": "Mind of Steel", - "desc": "You understand the complexities of minds, as well as the magic that can affect them. You have advantage on Wisdom, Intelligence, and Charisma saving throws against spells.", - "type": null, - "parent": "toh_drow" - } - }, - { - "model": "api_v2.racetrait", - "pk": 151, - "fields": { - "name": "Sunlight Sensitivity", - "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", - "type": null, - "parent": "toh_drow" - } - }, - { - "model": "api_v2.racetrait", - "pk": 152, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength or Dexterity score increases by 1.", - "type": null, - "parent": "toh_delver" - } - }, - { - "model": "api_v2.racetrait", - "pk": 153, - "fields": { - "name": "Rapport with Insects", - "desc": "Your caste's years of working alongside the giant spiders and beetles that your people utilized in building and defending cities has left your caste with an innate affinity with the creatures. You can communicate simple ideas with insect-like beasts with an Intelligence of 3 or lower, such as spiders, beetles, wasps, scorpions, and centipedes. You can understand them in return, though this understanding is often limited to knowing the creature's current or most recent state, such as “hungry,” “content,” or “in danger.” Delver drow often keep such creatures as pets, mounts, or beasts of burden.", - "type": null, - "parent": "toh_delver" - } - }, - { - "model": "api_v2.racetrait", - "pk": 154, - "fields": { - "name": "Specialized Training", - "desc": "You are proficient in one skill and one tool of your choice.", - "type": null, - "parent": "toh_delver" - } - }, - { - "model": "api_v2.racetrait", - "pk": 155, - "fields": { - "name": "Martial Excellence", - "desc": "You are proficient with one martial weapon of your choice and with light armor.", - "type": null, - "parent": "toh_delver" - } - }, - { - "model": "api_v2.racetrait", - "pk": 156, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 1.", - "type": null, - "parent": "toh_fever-bit" - } - }, - { - "model": "api_v2.racetrait", - "pk": 157, - "fields": { - "name": "Deathly Resilience", - "desc": "Your long exposure to the life-sapping energies of darakhul fever has made you more resilient. You have resistance to necrotic damage, and advantage on death saving throws.", - "type": null, - "parent": "toh_fever-bit" - } - }, - { - "model": "api_v2.racetrait", - "pk": 158, - "fields": { - "name": "Iron Constitution", - "desc": "You are immune to disease.", - "type": null, - "parent": "toh_fever-bit" - } - }, - { - "model": "api_v2.racetrait", - "pk": 159, - "fields": { - "name": "Near-Death Experience", - "desc": "Your brush with death has made you more stalwart in the face of danger. You have advantage on saving throws against being frightened.", - "type": null, - "parent": "toh_fever-bit" - } - }, - { - "model": "api_v2.racetrait", - "pk": 160, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "parent": "toh_purified" - } - }, - { - "model": "api_v2.racetrait", - "pk": 161, - "fields": { - "name": "Innate Spellcasting", - "desc": "You know the poison spray cantrip. When you reach 3rd level, you can cast suggestion once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the tongues spell once and regain the ability to do so when you finish a long rest. Intelligence is your spellcasting ability for these spells.", - "type": null, - "parent": "toh_purified" - } - }, - { - "model": "api_v2.racetrait", - "pk": 162, - "fields": { - "name": "Born Leader", - "desc": "You gain proficiency with two of the following skills of your choice: History, Insight, Performance, and Persuasion.", - "type": null, - "parent": "toh_purified" - } - }, - { - "model": "api_v2.racetrait", - "pk": 163, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2, and you can choose to increase either your Wisdom or Charisma score by 1.", - "type": null, - "parent": "toh_erina" - } - }, - { - "model": "api_v2.racetrait", - "pk": 164, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 25 feet.", - "type": null, - "parent": "toh_erina" - } - }, - { - "model": "api_v2.racetrait", - "pk": 165, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to life in the dark burrows of your people, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "toh_erina" - } - }, - { - "model": "api_v2.racetrait", - "pk": 166, - "fields": { - "name": "Age", - "desc": "Erina reach maturity around 15 years and can live up to 60 years, though some erina burrow elders have memories of events which suggest erina can live much longer.", - "type": null, - "parent": "toh_erina" - } - }, - { - "model": "api_v2.racetrait", - "pk": 167, - "fields": { - "name": "Alignment", - "desc": "Erina are good-hearted and extremely social creatures who have a difficult time adapting to the laws of other species.", - "type": null, - "parent": "toh_erina" - } - }, - { - "model": "api_v2.racetrait", - "pk": 168, - "fields": { - "name": "Size", - "desc": "Erina average about 3 feet tall and weigh about 50 pounds. Your size is Small.", - "type": null, - "parent": "toh_erina" - } - }, - { - "model": "api_v2.racetrait", - "pk": 169, - "fields": { - "name": "Languages", - "desc": "You can speak Erina and either Common or Sylvan.", - "type": null, - "parent": "toh_erina" - } - }, - { - "model": "api_v2.racetrait", - "pk": 170, - "fields": { - "name": "Hardy", - "desc": "The erina diet of snakes and venomous insects has made them hardy. You have advantage on saving throws against poison, and you have resistance against poison damage.", - "type": null, - "parent": "toh_erina" - } - }, - { - "model": "api_v2.racetrait", - "pk": 171, - "fields": { - "name": "Spines", - "desc": "Erina grow needle-sharp spines in small clusters atop their heads and along their backs. While you are grappling a creature or while a creature is grappling you, the creature takes 1d4 piercing damage at the start of your turn.", - "type": null, - "parent": "toh_erina" - } - }, - { - "model": "api_v2.racetrait", - "pk": 172, - "fields": { - "name": "Keen Senses", - "desc": "You have proficiency in the Perception skill.", - "type": null, - "parent": "toh_erina" - } - }, - { - "model": "api_v2.racetrait", - "pk": 173, - "fields": { - "name": "Digger", - "desc": "You have a burrowing speed of 20 feet, but you can use it to move through only earth and sand, not mud, ice, or rock.", - "type": null, - "parent": "toh_erina" - } - }, - { - "model": "api_v2.racetrait", - "pk": 174, - "fields": { - "name": "Ability Score Increase", - "desc": "Two different ability scores of your choice increase by 1.", - "type": null, - "parent": "toh_gearforged" - } - }, - { - "model": "api_v2.racetrait", - "pk": 175, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is determined by your Race Chassis.", - "type": null, - "parent": "toh_gearforged" - } - }, - { - "model": "api_v2.racetrait", - "pk": 176, - "fields": { - "name": "Age", - "desc": "The soul inhabiting a gearforged can be any age. As long as its new body is kept in good repair, there is no known limit to how long it can function.", - "type": null, - "parent": "toh_gearforged" - } - }, - { - "model": "api_v2.racetrait", - "pk": 177, - "fields": { - "name": "Alignment", - "desc": "No single alignment typifies gearforged, but most gearforged maintain the alignment they had before becoming gearforged.", - "type": null, - "parent": "toh_gearforged" - } - }, - { - "model": "api_v2.racetrait", - "pk": 178, - "fields": { - "name": "Size", - "desc": "Your size is determined by your Race Chassis.", - "type": null, - "parent": "toh_gearforged" - } - }, - { - "model": "api_v2.racetrait", - "pk": 179, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common, Machine Speech (a whistling, clicking language that's incomprehensible to non-gearforged), and a language associated with your Race Chassis.", - "type": null, - "parent": "toh_gearforged" - } - }, - { - "model": "api_v2.racetrait", - "pk": 180, - "fields": { - "name": "Construct Resilience", - "desc": "Your body is constructed, which frees you from some of the limits of fleshand- blood creatures. You have resistance to poison damage, you are immune to disease, and you have advantage on saving throws against being poisoned.", - "type": null, - "parent": "toh_gearforged" - } - }, - { - "model": "api_v2.racetrait", - "pk": 181, - "fields": { - "name": "Construct Vitality", - "desc": "You don't need to eat, drink, or breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state where you resemble a statue and remain semiconscious for 6 hours a day. During this time, the magic in your soul gem and everwound springs slowly repairs the day's damage to your mechanical body. While in this dormant state, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", - "type": null, - "parent": "toh_gearforged" - } - }, - { - "model": "api_v2.racetrait", - "pk": 182, - "fields": { - "name": "Living Construct", - "desc": "Your consciousness and soul reside within a soul gem to animate your mechanical body. As such, you are a living creature with some of the benefits and drawbacks of a construct. Though you can regain hit points from spells like cure wounds, you can also be affected by game effects that specifically target constructs, such as the shatter spell. As long as your soul gem remains intact, game effects that raise a creature from the dead work on you as normal, repairing the damaged pieces of your mechanical body (restoring lost sections only if the spell normally restores lost limbs) and returning you to life as a gearforged. Alternatively, if your body is destroyed but your soul gem and memory gears are intact, they can be installed into a new body with a ritual that takes one day and 10,000 gp worth of materials. If your soul gem is destroyed, only a wish spell can restore you to life, and you return as a fully living member of your original race.", - "type": null, - "parent": "toh_gearforged" - } - }, - { - "model": "api_v2.racetrait", - "pk": 183, - "fields": { - "name": "Race Chassis", - "desc": "Four races are known to create unique gearforged, building mechanical bodies similar in size and shape to their people: dwarf, gnome, human, and kobold. Choose one of these forms.", - "type": null, - "parent": "toh_gearforged" - } - }, - { - "model": "api_v2.racetrait", - "pk": 184, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 1.", - "type": null, - "parent": "toh_dwarf-chassis" - } - }, - { - "model": "api_v2.racetrait", - "pk": 185, - "fields": { - "name": "Always Armed", - "desc": "Every dwarf knows that it's better to leave home without pants than without your weapon. Choose a weapon with which you are proficient and that doesn't have the two-handed property. You can integrate this weapon into one of your arms. While the weapon is integrated, you can't be disarmed of it by any means, though you can use an action to remove the weapon. You can draw or sheathe the weapon as normal, the weapon folding into or springing from your arm instead of a sheath. While the integrated weapon is drawn in this way, it is considered held in that arm's hand, which can't be used for other actions such as casting spells. You can integrate a new weapon or replace an integrated weapon as part of a short or long rest. You can have up to two weapons integrated at a time, one per arm. You have advantage on Dexterity (Sleight of Hand) checks to conceal an integrated weapon.", - "type": null, - "parent": "toh_dwarf-chassis" - } - }, - { - "model": "api_v2.racetrait", - "pk": 186, - "fields": { - "name": "Remembered Training", - "desc": "You remember some of your combat training from your previous life. You have proficiency with two martial weapons of your choice and with light and medium armor.", - "type": null, - "parent": "toh_dwarf-chassis" - } - }, - { - "model": "api_v2.racetrait", - "pk": 187, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 1.", - "type": null, - "parent": "toh_gnome-chassis" - } - }, - { - "model": "api_v2.racetrait", - "pk": 188, - "fields": { - "name": "Mental Fortitude", - "desc": "When creating their first gearforged, gnome engineers put their efforts toward ensuring that the gnomish mind remained a mental fortress, though they were unable to fully replicate the gnomish mind's resilience once transferred to a soul gem. Choose Intelligence, Wisdom, or Charisma. You have advantage on saving throws made with that ability score against magic.", - "type": null, - "parent": "toh_gnome-chassis" - } - }, - { - "model": "api_v2.racetrait", - "pk": 189, - "fields": { - "name": "Quick Fix", - "desc": "When you are below half your hit point maximum, you can use a bonus action to apply a quick patch up to your damaged body. You gain temporary hit points equal to your proficiency bonus. You can't use this trait again until you finish a short or long rest.", - "type": null, - "parent": "toh_gnome-chassis" - } - }, - { - "model": "api_v2.racetrait", - "pk": 190, - "fields": { - "name": "Ability Score Increase", - "desc": "One ability score of your choice increases by 1.", - "type": null, - "parent": "toh_human-chassis" - } - }, - { - "model": "api_v2.racetrait", - "pk": 191, - "fields": { - "name": "Adaptable Acumen", - "desc": "You gain proficiency in two skills or tools of your choice. Choose one of those skills or tools or another skill or tool proficiency you have. Your proficiency bonus is doubled for any ability check you make that uses the chosen skill or tool.", - "type": null, - "parent": "toh_human-chassis" - } - }, - { - "model": "api_v2.racetrait", - "pk": 192, - "fields": { - "name": "Inspired Ingenuity", - "desc": "When you roll a 9 or lower on the d20 for an ability check, you can use a reaction to change the roll to a 10. You can't use this trait again until you finish a short or long rest.", - "type": null, - "parent": "toh_human-chassis" - } - }, - { - "model": "api_v2.racetrait", - "pk": 193, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 1.", - "type": null, - "parent": "toh_kobold-chassis" - } - }, - { - "model": "api_v2.racetrait", - "pk": 194, - "fields": { - "name": "Clutch Aide", - "desc": "Kobolds spend their lives alongside their clutchmates, both those hatched around the same time as them and those they choose later in life, and you retain much of this group-oriented intuition. You can take the Help action as a bonus action.", - "type": null, - "parent": "toh_kobold-chassis" - } - }, - { - "model": "api_v2.racetrait", - "pk": 195, - "fields": { - "name": "Resourceful", - "desc": "If you have at least one set of tools, you can cobble together one set of makeshift tools of a different type with 1 minute of work. For example, if you have cook's utensils, you can use them to create a temporary set of thieves' tools. The makeshift tools last for 10 minutes then collapse into their component parts, returning your tools to their normal forms. While the makeshift tools exist, you can't use the set of tools you used to create the makeshift tools. At the GM's discretion, you might not be able to replicate some tools, such as an alchemist's alembic or a disguise kit's cosmetics. A creature other than you that uses the makeshift tools has disadvantage on the check.", - "type": null, - "parent": "toh_kobold-chassis" - } - }, - { - "model": "api_v2.racetrait", - "pk": 196, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", - "type": null, - "parent": "toh_minotaur" - } - }, - { - "model": "api_v2.racetrait", - "pk": 197, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "toh_minotaur" - } - }, - { - "model": "api_v2.racetrait", - "pk": 198, - "fields": { - "name": "Darkvision", - "desc": "You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "toh_minotaur" - } - }, - { - "model": "api_v2.racetrait", - "pk": 199, - "fields": { - "name": "Age", - "desc": "Minotaurs age at roughly the same rate as humans but mature 3 years earlier. Childhood ends around the age of 10 and adulthood is celebrated at 15.", - "type": null, - "parent": "toh_minotaur" - } - }, - { - "model": "api_v2.racetrait", - "pk": 200, - "fields": { - "name": "Alignment", - "desc": "Minotaurs possess a wide range of alignments, just as humans do. Mixing a love for personal freedom and respect for history and tradition, the majority of minotaurs fall into neutral alignments.", - "type": null, - "parent": "toh_minotaur" - } - }, - { - "model": "api_v2.racetrait", - "pk": 201, - "fields": { - "name": "Size", - "desc": "Adult males can reach a height of 7 feet, with females averaging 3 inches shorter. Your size is Medium.", - "type": null, - "parent": "toh_minotaur" - } - }, - { - "model": "api_v2.racetrait", - "pk": 202, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Minotaur.", - "type": null, - "parent": "toh_minotaur" - } - }, - { - "model": "api_v2.racetrait", - "pk": 203, - "fields": { - "name": "Natural Attacks", - "desc": "Your horns are sturdy and sharp. Your horns are a natural melee weapon, which you can use to make unarmed strikes. When you hit with your horns, they deal piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", - "type": null, - "parent": "toh_minotaur" - } - }, - { - "model": "api_v2.racetrait", - "pk": 204, - "fields": { - "name": "Charge", - "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a horn attack in the same turn, you deal an extra 1d6 piercing damage and you can shove the target up to 5 feet as a bonus action. At 11th level, when you shove a creature with Charge, you can push it up to 10 feet instead. You can use this trait a number of times per day equal to your Constitution modifier (minimum of once), and you regain all expended uses when you finish a long rest.", - "type": null, - "parent": "toh_minotaur" - } - }, - { - "model": "api_v2.racetrait", - "pk": 205, - "fields": { - "name": "Labyrinth Sense", - "desc": "You can retrace without error any path you have previously taken, with no ability check.", - "type": null, - "parent": "toh_minotaur" - } - }, - { - "model": "api_v2.racetrait", - "pk": 210, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 2, and your Strength score increases by 1.", - "type": null, - "parent": "toh_bhain-kwai" - } - }, - { - "model": "api_v2.racetrait", - "pk": 211, - "fields": { - "name": "Strong Back", - "desc": "Your carrying capacity is your Strength score multiplied by 20, instead of by 15.", - "type": null, - "parent": "toh_bhain-kwai" - } - }, - { - "model": "api_v2.racetrait", - "pk": 212, - "fields": { - "name": "Wetland Dweller", - "desc": "You are adapted to your home terrain. Difficult terrain composed of mud or from wading through water up to waist deep doesn't cost you extra movement. You have a swimming speed of 25 feet.", - "type": null, - "parent": "toh_bhain-kwai" - } - }, - { - "model": "api_v2.racetrait", - "pk": 213, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 2, and your Constitution score increases by 1.", - "type": null, - "parent": "toh_boghaid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 214, - "fields": { - "name": "Highlander", - "desc": "You are adapted to life at high altitudes, and you suffer no ill effects or penalties from elevations above 8,000 feet.", - "type": null, - "parent": "toh_boghaid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 215, - "fields": { - "name": "Storied Culture", - "desc": "You have proficiency in the Performance skill, and you gain proficiency with one of the following musical instruments: bagpipes, drum, horn, or shawm.", - "type": null, - "parent": "toh_boghaid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 216, - "fields": { - "name": "Wooly", - "desc": "Your thick, wooly coat of hair keeps you warm, allowing you to function in cold weather without special clothing or gear. You have advantage on saving throws against spells and other effects that deal cold damage.", - "type": null, - "parent": "toh_boghaid" - } - }, - { - "model": "api_v2.racetrait", - "pk": 217, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 2.", - "type": null, - "parent": "toh_mushroomfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 218, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "toh_mushroomfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 219, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to life underground, you can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "toh_mushroomfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 220, - "fields": { - "name": "Age", - "desc": "Mushroomfolk reach maturity by the age of 5 and rarely live longer than 50 years.", - "type": null, - "parent": "toh_mushroomfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 221, - "fields": { - "name": "Alignment", - "desc": "The limited interaction mushroomfolk have with other creatures leaves them with a fairly neutral view of the world in terms of good and evil, while their societal structure makes them more prone to law than chaos.", - "type": null, - "parent": "toh_mushroomfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 222, - "fields": { - "name": "Size", - "desc": "A mushroomfolk's size is determined by its subrace.", - "type": null, - "parent": "toh_mushroomfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 223, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Mushroomfolk and your choice of Common or Undercommon.", - "type": null, - "parent": "toh_mushroomfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 224, - "fields": { - "name": "Fungoid Form", - "desc": "You are a humanoid, though the fungal nature of your body and your unique diet of decayed vegetable and animal matter marks you with some plant-like characteristics. You have advantage on saving throws against poison, and you have resistance to poison damage. In addition, you are immune to disease.", - "type": null, - "parent": "toh_mushroomfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 225, - "fields": { - "name": "Hardy Survivor", - "desc": "Your upbringing in mushroomfolk society has taught you how to defend yourself and find food. You have proficiency in the Survival skill.", - "type": null, - "parent": "toh_mushroomfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 226, - "fields": { - "name": "Subrace", - "desc": "Three subraces of mushroomfolk are known to wander the world: acid cap, favored, and morel. Choose one of these subraces.", - "type": null, - "parent": "toh_mushroomfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 227, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 1.", - "type": null, - "parent": "toh_acid-cap" - } - }, - { - "model": "api_v2.racetrait", - "pk": 228, - "fields": { - "name": "Acid Cap Resistance", - "desc": "You have resistance to acid damage.", - "type": null, - "parent": "toh_acid-cap" - } - }, - { - "model": "api_v2.racetrait", - "pk": 229, - "fields": { - "name": "Acid Spores", - "desc": "When you are hit by a melee weapon attack within 5 feet of you, you can use your reaction to emit acidic spores. If you do, the attacker takes acid damage equal to half your level (rounded up). You can use your acid spores a number of times equal to your Constitution modifier (a minimum of once). You regain any expended uses when you finish a long rest.", - "type": null, - "parent": "toh_acid-cap" - } - }, - { - "model": "api_v2.racetrait", - "pk": 230, - "fields": { - "name": "Clan Athlete", - "desc": "You have proficiency in the Athletics skill.", - "type": null, - "parent": "toh_acid-cap" - } - }, - { - "model": "api_v2.racetrait", - "pk": 231, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "parent": "toh_favored" - } - }, - { - "model": "api_v2.racetrait", - "pk": 232, - "fields": { - "name": "Blessed Help", - "desc": "Your intuition and connection to your allies allows you to assist and protect them. You know the spare the dying cantrip. When you reach 3rd level, you can cast the bless spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", - "type": null, - "parent": "toh_favored" - } - }, - { - "model": "api_v2.racetrait", - "pk": 233, - "fields": { - "name": "Clan Leader", - "desc": "You have proficiency in the Persuasion skill.", - "type": null, - "parent": "toh_favored" - } - }, - { - "model": "api_v2.racetrait", - "pk": 234, - "fields": { - "name": "Restful Spores", - "desc": "If you or any friendly creatures within 30 feet of you regain hit points at the end of a short rest by spending one or more Hit Dice, each of those creatures regains additional hit points equal to your proficiency bonus. Once a creature benefits from your restful spores, it can't do so again until it finishes a long rest.", - "type": null, - "parent": "toh_favored" - } - }, - { - "model": "api_v2.racetrait", - "pk": 235, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 1.", - "type": null, - "parent": "toh_morel" - } - }, - { - "model": "api_v2.racetrait", - "pk": 236, - "fields": { - "name": "Adaptable Camouflage", - "desc": "If you spend at least 1 minute in an environment with ample naturally occurring plants or fungi, such as a grassland, a forest, or an underground fungal cavern, you can adjust your natural coloration to blend in with the local plant life. If you do so, you have advantage on Dexterity (Stealth) checks for the next 24 hours while in that environment.", - "type": null, - "parent": "toh_morel" - } - }, - { - "model": "api_v2.racetrait", - "pk": 237, - "fields": { - "name": "Clan Scout", - "desc": "You have proficiency in the Stealth skill.", - "type": null, - "parent": "toh_morel" - } - }, - { - "model": "api_v2.racetrait", - "pk": 238, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 2, and your Intelligence score increases by 1.", - "type": null, - "parent": "toh_satarre" - } - }, - { - "model": "api_v2.racetrait", - "pk": 239, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "toh_satarre" - } - }, - { - "model": "api_v2.racetrait", - "pk": 240, - "fields": { - "name": "Darkvision", - "desc": "Thanks to your dark planar parentage, you have superior vision in darkness. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "toh_satarre" - } - }, - { - "model": "api_v2.racetrait", - "pk": 241, - "fields": { - "name": "Age", - "desc": "Satarre grow quickly, walking soon after hatching and reaching the development of a 15-year-old human by age 6. They maintain the same appearance until about 50, then begin a rapid decline. Satarre often die violently, but those who live longer survive to no more than 65 years of age.", - "type": null, - "parent": "toh_satarre" - } - }, - { - "model": "api_v2.racetrait", - "pk": 242, - "fields": { - "name": "Alignment", - "desc": "Satarre are born with a tendency toward evil akin to that of rapacious dragons, and, when raised among other satarre or darakhul, they are usually evil. Those raised among other cultures tend toward the norm for those cultures.", - "type": null, - "parent": "toh_satarre" - } - }, - { - "model": "api_v2.racetrait", - "pk": 243, - "fields": { - "name": "Size", - "desc": "Satarre are tall but thin, from 6 to 7 feet tall with peculiar, segmented limbs. Your size is Medium.", - "type": null, - "parent": "toh_satarre" - } - }, - { - "model": "api_v2.racetrait", - "pk": 244, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and one of the following: Abyssal, Infernal, or Void Speech. Void Speech is a language of dark gods and ancient blasphemies, and the mere sound of its sibilant tones makes many other creatures quite uncomfortable.", - "type": null, - "parent": "toh_satarre" - } - }, - { - "model": "api_v2.racetrait", - "pk": 245, - "fields": { - "name": "A Friend to Death", - "desc": "You have resistance to necrotic damage.", - "type": null, - "parent": "toh_satarre" - } - }, - { - "model": "api_v2.racetrait", - "pk": 246, - "fields": { - "name": "Keeper of Secrets", - "desc": "You have proficiency in the Arcana skill, and you have advantage on Intelligence (Arcana) checks related to the planes and planar travel. In addition, you have proficiency in one of the following skills of your choice: History, Insight, and Religion.", - "type": null, - "parent": "toh_satarre" - } - }, - { - "model": "api_v2.racetrait", - "pk": 247, - "fields": { - "name": "Carrier of Rot", - "desc": "You can use your action to inflict rot on a creature you can see within 10 feet of you. The creature must make a Constitution saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 1d4 necrotic damage on a failed save, and half as much damage on a successful one. A creature that fails the saving throw also rots for 1 minute. A rotting creature takes 1d4 necrotic damage at the end of each of its turns. The target or a creature within 5 feet of it can use an action to excise the rot with a successful Wisdom (Medicine) check. The DC for the check equals the rot's Constitution saving throw DC. The rot also disappears if the target receives magical healing. The damage for the initial action and the rotting increases to 2d4 at 6th level, 3d4 at 11th level, and 4d4 at 16th level. After you use your Carrier of Rot trait, you can't use it again until you complete a short or long rest.", - "type": null, - "parent": "toh_satarre" - } - }, - { - "model": "api_v2.racetrait", - "pk": 248, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 1.", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 249, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is determined by your Heritage Subrace.", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 250, - "fields": { - "name": "Darkvision", - "desc": "You can see in dim light within 60 feet as though it were bright light and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 251, - "fields": { - "name": "Age", - "desc": "An upper limit of darakhul age has never been discovered; most darakhul die violently.", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 252, - "fields": { - "name": "Alignment", - "desc": "Your alignment does not change when you become a darakhul, but most darakhul have a strong draw toward evil.", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 253, - "fields": { - "name": "Size", - "desc": "Your size is determined by your Heritage Subrace.", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 254, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common, Darakhul, and a language associated with your Heritage Subrace.", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 255, - "fields": { - "name": "Hunger for Flesh", - "desc": "You must consume 1 pound of raw meat each day or suffer the effects of starvation. If you go 24 hours without such a meal, you gain one level of exhaustion. While you have any levels of exhaustion from this trait, you can't regain hit points or remove levels of exhaustion until you spend at least 1 hour consuming 10 pounds of raw meat.", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 256, - "fields": { - "name": "Imperfect Undeath", - "desc": "You transitioned into undeath, but your transition was imperfect. Though you are a humanoid, you are susceptible to effects that target undead. You can regain hit points from spells like cure wounds, but you can also be affected by game effects that specifically target undead, such as a cleric's Turn Undead feature. Game effects that raise a creature from the dead work on you as normal, but they return you to life as a darakhul. A true resurrection or wish spell can restore you to life as a fully living member of your original race.", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 257, - "fields": { - "name": "Powerful Jaw", - "desc": "Your heavy jaw is powerful enough to crush bones to powder. Your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 258, - "fields": { - "name": "Sunlight Sensitivity", - "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 259, - "fields": { - "name": "Undead Resilience", - "desc": "You are infused with the dark energy of undeath, which frees you from some frailties that plague most creatures. You have resistance to necrotic damage and poison damage, you are immune to disease, and you have advantage on saving throws against being charmed or poisoned. When you finish a short rest, you can reduce your exhaustion level by 1, provided you have ingested at least 1 pound of raw meat in the last 24 hours (see Hunger for Flesh).", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 260, - "fields": { - "name": "Undead Vitality", - "desc": "You don't need to breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state that resembles death, remaining semiconscious, for 6 hours a day. While dormant, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 261, - "fields": { - "name": "Heritage Subrace", - "desc": "You were something else before you became a darakhul. This heritage determines some of your traits. Choose one Heritage Subrace below and apply the listed traits.", - "type": null, - "parent": "toh_darakhul" - } - }, - { - "model": "api_v2.racetrait", - "pk": 262, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 2.", - "type": null, - "parent": "toh_derro-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 263, - "fields": { - "name": "Calculating Insanity", - "desc": "The insanity of your race was compressed into a cold, hard brilliance when you took on your darakhul form. These flashes of brilliance come to you at unexpected moments. You know the true strike cantrip. Charisma is your spellcasting ability for it. You can cast true strike as a bonus action a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest.", - "type": null, - "parent": "toh_derro-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 264, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2.", - "type": null, - "parent": "toh_dragonborn-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 265, - "fields": { - "name": "Corrupted Bite", - "desc": "The inherent breath weapon of your draconic heritage is corrupted by the necrotic energy of your new darakhul form. Instead of forming a line or cone, your breath weapon now oozes out of your ghoulish maw. As a bonus action, you breathe necrotic energy onto your fangs and make one bite attack. If the attack hits, it deals extra necrotic damage equal to your level. You can't use this trait again until you finish a long rest.", - "type": null, - "parent": "toh_dragonborn-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 266, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "parent": "toh_drow-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 267, - "fields": { - "name": "Poison Bite", - "desc": "When you hit with your bite attack, you can release venom into your foe. If you do, your bite deals an extra 1d6 poison damage. The damage increases to 3d6 at 11th level. After you release this venom into a creature, you can't do so again until you finish a short or long rest.", - "type": null, - "parent": "toh_drow-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 268, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdon score increases by 2.", - "type": null, - "parent": "toh_dwarf-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 269, - "fields": { - "name": "Dwarven Stoutness", - "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", - "type": null, - "parent": "toh_dwarf-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 270, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "toh_elfshadow-fey-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 271, - "fields": { - "name": "Supernatural Senses", - "desc": "Your keen elven senses are honed even more by the power of undeath and the hunger within you. You can now smell when blood is in the air. You have proficiency in the Perception skill, and you have advantage on Wisdom (Perception) checks to notice or find a creature within 30 feet of you that doesn't have all of its hit points.", - "type": null, - "parent": "toh_elfshadow-fey-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 272, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "parent": "toh_gnome-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 273, - "fields": { - "name": "Magical Hunger", - "desc": "When a creature you can see within 30 feet of you casts a spell, you can use your reaction to consume the spell's residual magic. Your consumption doesn't counter or otherwise affect the spell or the spellcaster. When you consume this residual magic, you gain temporary hit points (minimum of 1) equal to your Constitution modifier, and you can't use this trait again until you finish a short or long rest.", - "type": null, - "parent": "toh_gnome-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 274, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "toh_halfling-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 275, - "fields": { - "name": "Ill Fortune", - "desc": "Your uncanny halfling luck has taken a dark turn since your conversion to an undead creature. When a creature rolls a 20 on the d20 for an attack roll against you, the creature must reroll the attack and use the new roll. If the second attack roll misses you, the attacking creature takes necrotic damage equal to twice your Constitution modifier (minimum of 2).", - "type": null, - "parent": "toh_halfling-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 276, - "fields": { - "name": "Ability Score Increase", - "desc": "One ability score of your choice, other than Constitution, increases by 2.", - "type": null, - "parent": "toh_humanhalf-elf-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 277, - "fields": { - "name": "Versatility", - "desc": "The training and experience of your early years was not lost when you became a darakhul. You have proficiency in two skills and one tool of your choice.", - "type": null, - "parent": "toh_humanhalf-elf-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 278, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "parent": "toh_kobold-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 279, - "fields": { - "name": "Devious Bite", - "desc": "When you hit a creature with your bite attack and you have advantage on the attack roll, your bite deals an extra 1d4 piercing damage.", - "type": null, - "parent": "toh_kobold-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 280, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "toh_ravenfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 281, - "fields": { - "name": "Sudden Bite and Flight", - "desc": "If you surprise a creature during the first round of combat, you can make a bite attack as a bonus action. If it hits, you can immediately take the Dodge action as a reaction.", - "type": null, - "parent": "toh_ravenfolk" - } - }, - { - "model": "api_v2.racetrait", - "pk": 282, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "parent": "toh_tiefling-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 283, - "fields": { - "name": "Necrotic Rebuke", - "desc": "When you are hit by a weapon attack, you can use a reaction to envelop the attacker in shadowy flames. The attacker takes necrotic damage equal to your Charisma modifier (minimum of 1), and it has disadvantage on attack rolls until the end of its next turn. You must finish a long rest before you can use this feature again.", - "type": null, - "parent": "toh_tiefling-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 284, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2.", - "type": null, - "parent": "toh_trollkin-heritage" - } - }, - { - "model": "api_v2.racetrait", - "pk": 285, - "fields": { - "name": "Regenerative Bite", - "desc": "The regenerative powers of your trollkin heritage are less potent than they were in life and need a little help. As an action, you can make a bite attack against a creature that isn't undead or a construct. On a hit, you regain hit points (minimum of 1) equal to half the amount of damage dealt. Once you use this trait, you can't use it again until you finish a long rest.", - "type": null, - "parent": "toh_trollkin-heritage" - } - } -] \ No newline at end of file +{ + "model": "api_v2.racetrait", + "pk": 98, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2, and your Wisdom score increases by 1.", + "type": null, + "parent": "toh_alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 99, + "fields": { + "name": "Speed", + "desc": "Alseid are fast for their size, with a base walking speed of 40 feet.", + "type": null, + "parent": "toh_alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 100, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to the limited light beneath the forest canopy, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 101, + "fields": { + "name": "Age", + "desc": "Alseid reach maturity by the age of 20. They can live well beyond 100 years, but it is unknown just how old they can become.", + "type": null, + "parent": "toh_alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 102, + "fields": { + "name": "Alignment", + "desc": "Alseid are generally chaotic, flowing with the unpredictable whims of nature, though variations are common, particularly among those rare few who leave their people.", + "type": null, + "parent": "toh_alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 103, + "fields": { + "name": "Size", + "desc": "Alseid stand over 6 feet tall and weigh around 300 pounds. Your size is Medium.", + "type": null, + "parent": "toh_alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 104, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Elvish.", + "type": null, + "parent": "toh_alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 105, + "fields": { + "name": "Alseid Weapon Training", + "desc": "You have proficiency with spears and shortbows.", + "type": null, + "parent": "toh_alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 106, + "fields": { + "name": "Light Hooves", + "desc": "You have proficiency in the Stealth skill.", + "type": null, + "parent": "toh_alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 107, + "fields": { + "name": "Quadruped", + "desc": "The mundane details of the structures of humanoids can present considerable obstacles for you. You have to squeeze when moving through trapdoors, manholes, and similar structures even when a Medium humanoid wouldn't have to squeeze. In addition, ladders, stairs, and similar structures are difficult terrain for you.", + "type": null, + "parent": "toh_alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 108, + "fields": { + "name": "Woodfriend", + "desc": "When in a forest, you leave no tracks and can automatically discern true north.", + "type": null, + "parent": "toh_alseid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 109, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "toh_catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 110, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "toh_catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 111, + "fields": { + "name": "Darkvision", + "desc": "You have a cat's keen senses, especially in the dark. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 112, + "fields": { + "name": "Age", + "desc": "Catfolk mature at the same rate as humans and can live just past a century.", + "type": null, + "parent": "toh_catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 113, + "fields": { + "name": "Alignment", + "desc": "Catfolk tend toward two extremes. Some are free-spirited and chaotic, letting impulse and fancy guide their decisions. Others are devoted to duty and personal honor. Typically, catfolk deem concepts such as good and evil as less important than freedom or their oaths.", + "type": null, + "parent": "toh_catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 114, + "fields": { + "name": "Size", + "desc": "Catfolk have a similar stature to humans but are generally leaner and more muscular. Your size is Medium", + "type": null, + "parent": "toh_catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 115, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common.", + "type": null, + "parent": "toh_catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 116, + "fields": { + "name": "Cat's Claws", + "desc": "Your sharp claws can cut with ease. Your claws are natural melee weapons, which you can use to make unarmed strikes. When you hit with a claw, your claw deals slashing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", + "type": null, + "parent": "toh_catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 117, + "fields": { + "name": "Hunter's Senses", + "desc": "You have proficiency in the Perception and Stealth skills.", + "type": null, + "parent": "toh_catfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 118, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 1.", + "type": null, + "parent": "toh_malkin" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 119, + "fields": { + "name": "Curiously Clever", + "desc": "You have proficiency in the Investigation skill.", + "type": null, + "parent": "toh_malkin" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 120, + "fields": { + "name": "Charmed Curiosity", + "desc": "When you roll a 1 on the d20 for a Dexterity check or saving throw, you can reroll the die and must use the new roll.", + "type": null, + "parent": "toh_malkin" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 121, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 1.", + "type": null, + "parent": "toh_pantheran" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 122, + "fields": { + "name": "Hunter's Charge", + "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a melee weapon attack in the same turn, you can use a bonus action to attack that creature with your Cat's Claws. You can use this trait a number of times per day equal to your proficiency bonus, and you regain all expended uses when you finish a long rest.", + "type": null, + "parent": "toh_pantheran" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 123, + "fields": { + "name": "One With the Wilds", + "desc": "You have proficiency in one of the following skills of your choice: Insight, Medicine, Nature, or Survival.", + "type": null, + "parent": "toh_pantheran" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 124, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "toh_derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 125, + "fields": { + "name": "Speed", + "desc": "Derro are fast for their size. Your base walking speed is 30 feet.", + "type": null, + "parent": "toh_derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 126, + "fields": { + "name": "Superior Darkvision", + "desc": "Accustomed to life underground, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 127, + "fields": { + "name": "Age", + "desc": "Derro reach maturity by the age of 15 and live to be around 75.", + "type": null, + "parent": "toh_derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 128, + "fields": { + "name": "Alignment", + "desc": "The derro's naturally unhinged minds are nearly always chaotic, and many, but not all, are evil.", + "type": null, + "parent": "toh_derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 129, + "fields": { + "name": "Size", + "desc": "Derro stand between 3 and 4 feet tall with slender limbs and wide shoulders. Your size is Small.", + "type": null, + "parent": "toh_derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 130, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Dwarvish and your choice of Common or Undercommon.", + "type": null, + "parent": "toh_derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 131, + "fields": { + "name": "Eldritch Resilience", + "desc": "You have advantage on Constitution saving throws against spells.", + "type": null, + "parent": "toh_derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 132, + "fields": { + "name": "Sunlight Sensitivity", + "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", + "type": null, + "parent": "toh_derro" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 133, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "parent": "toh_far-touched" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 134, + "fields": { + "name": "Insanity", + "desc": "You have advantage on saving throws against being charmed or frightened. In addition, you can read and understand Void Speech, but you can speak only a few words of the dangerous and maddening language—the words necessary for using the spells in your Mad Fervor trait.", + "type": null, + "parent": "toh_far-touched" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 135, + "fields": { + "name": "Mad Fervor", + "desc": "The driving force behind your insanity has blessed you with a measure of its power. You know the vicious mockery cantrip. When you reach 3rd level, you can cast the enthrall spell with this trait, and starting at 5th level, you can cast the fear spell with it. Once you cast a non-cantrip spell with this trait, you can't do so again until you finish a long rest. Charisma is your spellcasting ability for these spells. If you are using Deep Magic for 5th Edition, these spells are instead crushing curse, maddening whispers, and alone, respectively.", + "type": null, + "parent": "toh_far-touched" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 136, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 1.", + "type": null, + "parent": "toh_mutated" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 137, + "fields": { + "name": "Athletic Training", + "desc": "You have proficiency in the Athletics skill, and you are proficient with two martial weapons of your choice.", + "type": null, + "parent": "toh_mutated" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 138, + "fields": { + "name": "Otherworldly Influence", + "desc": "Your close connection to the strange powers that your people worship has mutated your form. Choose one of the following:\r\n\r\n**Alien Appendage.** You have a tentacle-like growth on your body. This tentacle is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your tentacle deals bludgeoning damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. This tentacle has a reach of 5 feet and can lift a number of pounds equal to double your Strength score. The tentacle can't wield weapons or shields or perform tasks that require manual precision, such as performing the somatic components of a spell, but it can perform simple tasks, such as opening an unlocked door or container, stowing or retrieving an object, or pouring the contents out of a vial.\r\n**Tainted Blood.** Your blood is tainted by your connection with otherworldly entities. When you take piercing or slashing damage, you can use your reaction to force your blood to spray out of the wound. You and each creature within 5 feet of you take necrotic damage equal to your level. Once you use this trait, you can't use it again until you finish a short or long rest.\r\n**Tenebrous Flesh.** Your skin is rubbery and tenebrous, granting you a +1 bonus to your Armor Class.", + "type": null, + "parent": "toh_mutated" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 139, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 1.", + "type": null, + "parent": "toh_uncorrupted" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 140, + "fields": { + "name": "Psychic Barrier", + "desc": "Your time among your less sane brethren has inured you to their madness. You have resistance to psychic damage, and you have advantage on ability checks and saving throws made against effects that inflict insanity, such as spells like contact other plane and symbol, and effects that cause short-term, long-term, or indefinite madness.", + "type": null, + "parent": "toh_uncorrupted" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 141, + "fields": { + "name": "Studied Insight", + "desc": "You are skilled at discerning other creature's motives and intentions. You have proficiency in the Insight skill, and, if you study a creature for at least 1 minute, you have advantage on any initiative checks in combat against that creature for the next hour.", + "type": null, + "parent": "toh_uncorrupted" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 142, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "parent": "toh_drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 143, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "toh_drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 144, + "fields": { + "name": "Superior Darkvision", + "desc": "Accustomed to life in the darkest depths of the world, you can see in dim light within 120 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 145, + "fields": { + "name": "Age", + "desc": "Drow physically mature at the same rate as humans, but they aren't considered adults until they reach the age of 50. They typically live to be around 500.", + "type": null, + "parent": "toh_drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 146, + "fields": { + "name": "Alignment", + "desc": "Drow believe in reason and rationality, which leads them to favor lawful activities. However, their current dire situation makes them more prone than their ancestors to chaotic behavior. Their vicious fight for survival makes them capable of doing great evil in the name of self-preservation, although they are not, by nature, prone to evil in other circumstances.", + "type": null, + "parent": "toh_drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 147, + "fields": { + "name": "Size", + "desc": "Drow are slightly shorter and slimmer than humans. Your size is Medium.", + "type": null, + "parent": "toh_drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 148, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Elvish and your choice of Common or Undercommon.", + "type": null, + "parent": "toh_drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 149, + "fields": { + "name": "Fey Ancestry", + "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", + "type": null, + "parent": "toh_drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 150, + "fields": { + "name": "Mind of Steel", + "desc": "You understand the complexities of minds, as well as the magic that can affect them. You have advantage on Wisdom, Intelligence, and Charisma saving throws against spells.", + "type": null, + "parent": "toh_drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 151, + "fields": { + "name": "Sunlight Sensitivity", + "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", + "type": null, + "parent": "toh_drow" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 152, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength or Dexterity score increases by 1.", + "type": null, + "parent": "toh_delver" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 153, + "fields": { + "name": "Rapport with Insects", + "desc": "Your caste's years of working alongside the giant spiders and beetles that your people utilized in building and defending cities has left your caste with an innate affinity with the creatures. You can communicate simple ideas with insect-like beasts with an Intelligence of 3 or lower, such as spiders, beetles, wasps, scorpions, and centipedes. You can understand them in return, though this understanding is often limited to knowing the creature's current or most recent state, such as “hungry,” “content,” or “in danger.” Delver drow often keep such creatures as pets, mounts, or beasts of burden.", + "type": null, + "parent": "toh_delver" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 154, + "fields": { + "name": "Specialized Training", + "desc": "You are proficient in one skill and one tool of your choice.", + "type": null, + "parent": "toh_delver" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 155, + "fields": { + "name": "Martial Excellence", + "desc": "You are proficient with one martial weapon of your choice and with light armor.", + "type": null, + "parent": "toh_delver" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 156, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 1.", + "type": null, + "parent": "toh_fever-bit" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 157, + "fields": { + "name": "Deathly Resilience", + "desc": "Your long exposure to the life-sapping energies of darakhul fever has made you more resilient. You have resistance to necrotic damage, and advantage on death saving throws.", + "type": null, + "parent": "toh_fever-bit" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 158, + "fields": { + "name": "Iron Constitution", + "desc": "You are immune to disease.", + "type": null, + "parent": "toh_fever-bit" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 159, + "fields": { + "name": "Near-Death Experience", + "desc": "Your brush with death has made you more stalwart in the face of danger. You have advantage on saving throws against being frightened.", + "type": null, + "parent": "toh_fever-bit" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 160, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "parent": "toh_purified" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 161, + "fields": { + "name": "Innate Spellcasting", + "desc": "You know the poison spray cantrip. When you reach 3rd level, you can cast suggestion once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the tongues spell once and regain the ability to do so when you finish a long rest. Intelligence is your spellcasting ability for these spells.", + "type": null, + "parent": "toh_purified" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 162, + "fields": { + "name": "Born Leader", + "desc": "You gain proficiency with two of the following skills of your choice: History, Insight, Performance, and Persuasion.", + "type": null, + "parent": "toh_purified" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 163, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2, and you can choose to increase either your Wisdom or Charisma score by 1.", + "type": null, + "parent": "toh_erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 164, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 25 feet.", + "type": null, + "parent": "toh_erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 165, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to life in the dark burrows of your people, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 166, + "fields": { + "name": "Age", + "desc": "Erina reach maturity around 15 years and can live up to 60 years, though some erina burrow elders have memories of events which suggest erina can live much longer.", + "type": null, + "parent": "toh_erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 167, + "fields": { + "name": "Alignment", + "desc": "Erina are good-hearted and extremely social creatures who have a difficult time adapting to the laws of other species.", + "type": null, + "parent": "toh_erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 168, + "fields": { + "name": "Size", + "desc": "Erina average about 3 feet tall and weigh about 50 pounds. Your size is Small.", + "type": null, + "parent": "toh_erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 169, + "fields": { + "name": "Languages", + "desc": "You can speak Erina and either Common or Sylvan.", + "type": null, + "parent": "toh_erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 170, + "fields": { + "name": "Hardy", + "desc": "The erina diet of snakes and venomous insects has made them hardy. You have advantage on saving throws against poison, and you have resistance against poison damage.", + "type": null, + "parent": "toh_erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 171, + "fields": { + "name": "Spines", + "desc": "Erina grow needle-sharp spines in small clusters atop their heads and along their backs. While you are grappling a creature or while a creature is grappling you, the creature takes 1d4 piercing damage at the start of your turn.", + "type": null, + "parent": "toh_erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 172, + "fields": { + "name": "Keen Senses", + "desc": "You have proficiency in the Perception skill.", + "type": null, + "parent": "toh_erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 173, + "fields": { + "name": "Digger", + "desc": "You have a burrowing speed of 20 feet, but you can use it to move through only earth and sand, not mud, ice, or rock.", + "type": null, + "parent": "toh_erina" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 174, + "fields": { + "name": "Ability Score Increase", + "desc": "Two different ability scores of your choice increase by 1.", + "type": null, + "parent": "toh_gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 175, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is determined by your Race Chassis.", + "type": null, + "parent": "toh_gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 176, + "fields": { + "name": "Age", + "desc": "The soul inhabiting a gearforged can be any age. As long as its new body is kept in good repair, there is no known limit to how long it can function.", + "type": null, + "parent": "toh_gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 177, + "fields": { + "name": "Alignment", + "desc": "No single alignment typifies gearforged, but most gearforged maintain the alignment they had before becoming gearforged.", + "type": null, + "parent": "toh_gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 178, + "fields": { + "name": "Size", + "desc": "Your size is determined by your Race Chassis.", + "type": null, + "parent": "toh_gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 179, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common, Machine Speech (a whistling, clicking language that's incomprehensible to non-gearforged), and a language associated with your Race Chassis.", + "type": null, + "parent": "toh_gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 180, + "fields": { + "name": "Construct Resilience", + "desc": "Your body is constructed, which frees you from some of the limits of fleshand- blood creatures. You have resistance to poison damage, you are immune to disease, and you have advantage on saving throws against being poisoned.", + "type": null, + "parent": "toh_gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 181, + "fields": { + "name": "Construct Vitality", + "desc": "You don't need to eat, drink, or breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state where you resemble a statue and remain semiconscious for 6 hours a day. During this time, the magic in your soul gem and everwound springs slowly repairs the day's damage to your mechanical body. While in this dormant state, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", + "type": null, + "parent": "toh_gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 182, + "fields": { + "name": "Living Construct", + "desc": "Your consciousness and soul reside within a soul gem to animate your mechanical body. As such, you are a living creature with some of the benefits and drawbacks of a construct. Though you can regain hit points from spells like cure wounds, you can also be affected by game effects that specifically target constructs, such as the shatter spell. As long as your soul gem remains intact, game effects that raise a creature from the dead work on you as normal, repairing the damaged pieces of your mechanical body (restoring lost sections only if the spell normally restores lost limbs) and returning you to life as a gearforged. Alternatively, if your body is destroyed but your soul gem and memory gears are intact, they can be installed into a new body with a ritual that takes one day and 10,000 gp worth of materials. If your soul gem is destroyed, only a wish spell can restore you to life, and you return as a fully living member of your original race.", + "type": null, + "parent": "toh_gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 183, + "fields": { + "name": "Race Chassis", + "desc": "Four races are known to create unique gearforged, building mechanical bodies similar in size and shape to their people: dwarf, gnome, human, and kobold. Choose one of these forms.", + "type": null, + "parent": "toh_gearforged" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 184, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 1.", + "type": null, + "parent": "toh_dwarf-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 185, + "fields": { + "name": "Always Armed", + "desc": "Every dwarf knows that it's better to leave home without pants than without your weapon. Choose a weapon with which you are proficient and that doesn't have the two-handed property. You can integrate this weapon into one of your arms. While the weapon is integrated, you can't be disarmed of it by any means, though you can use an action to remove the weapon. You can draw or sheathe the weapon as normal, the weapon folding into or springing from your arm instead of a sheath. While the integrated weapon is drawn in this way, it is considered held in that arm's hand, which can't be used for other actions such as casting spells. You can integrate a new weapon or replace an integrated weapon as part of a short or long rest. You can have up to two weapons integrated at a time, one per arm. You have advantage on Dexterity (Sleight of Hand) checks to conceal an integrated weapon.", + "type": null, + "parent": "toh_dwarf-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 186, + "fields": { + "name": "Remembered Training", + "desc": "You remember some of your combat training from your previous life. You have proficiency with two martial weapons of your choice and with light and medium armor.", + "type": null, + "parent": "toh_dwarf-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 187, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 1.", + "type": null, + "parent": "toh_gnome-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 188, + "fields": { + "name": "Mental Fortitude", + "desc": "When creating their first gearforged, gnome engineers put their efforts toward ensuring that the gnomish mind remained a mental fortress, though they were unable to fully replicate the gnomish mind's resilience once transferred to a soul gem. Choose Intelligence, Wisdom, or Charisma. You have advantage on saving throws made with that ability score against magic.", + "type": null, + "parent": "toh_gnome-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 189, + "fields": { + "name": "Quick Fix", + "desc": "When you are below half your hit point maximum, you can use a bonus action to apply a quick patch up to your damaged body. You gain temporary hit points equal to your proficiency bonus. You can't use this trait again until you finish a short or long rest.", + "type": null, + "parent": "toh_gnome-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 190, + "fields": { + "name": "Ability Score Increase", + "desc": "One ability score of your choice increases by 1.", + "type": null, + "parent": "toh_human-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 191, + "fields": { + "name": "Adaptable Acumen", + "desc": "You gain proficiency in two skills or tools of your choice. Choose one of those skills or tools or another skill or tool proficiency you have. Your proficiency bonus is doubled for any ability check you make that uses the chosen skill or tool.", + "type": null, + "parent": "toh_human-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 192, + "fields": { + "name": "Inspired Ingenuity", + "desc": "When you roll a 9 or lower on the d20 for an ability check, you can use a reaction to change the roll to a 10. You can't use this trait again until you finish a short or long rest.", + "type": null, + "parent": "toh_human-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 193, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 1.", + "type": null, + "parent": "toh_kobold-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 194, + "fields": { + "name": "Clutch Aide", + "desc": "Kobolds spend their lives alongside their clutchmates, both those hatched around the same time as them and those they choose later in life, and you retain much of this group-oriented intuition. You can take the Help action as a bonus action.", + "type": null, + "parent": "toh_kobold-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 195, + "fields": { + "name": "Resourceful", + "desc": "If you have at least one set of tools, you can cobble together one set of makeshift tools of a different type with 1 minute of work. For example, if you have cook's utensils, you can use them to create a temporary set of thieves' tools. The makeshift tools last for 10 minutes then collapse into their component parts, returning your tools to their normal forms. While the makeshift tools exist, you can't use the set of tools you used to create the makeshift tools. At the GM's discretion, you might not be able to replicate some tools, such as an alchemist's alembic or a disguise kit's cosmetics. A creature other than you that uses the makeshift tools has disadvantage on the check.", + "type": null, + "parent": "toh_kobold-chassis" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 196, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", + "type": null, + "parent": "toh_minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 197, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "toh_minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 198, + "fields": { + "name": "Darkvision", + "desc": "You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 199, + "fields": { + "name": "Age", + "desc": "Minotaurs age at roughly the same rate as humans but mature 3 years earlier. Childhood ends around the age of 10 and adulthood is celebrated at 15.", + "type": null, + "parent": "toh_minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 200, + "fields": { + "name": "Alignment", + "desc": "Minotaurs possess a wide range of alignments, just as humans do. Mixing a love for personal freedom and respect for history and tradition, the majority of minotaurs fall into neutral alignments.", + "type": null, + "parent": "toh_minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 201, + "fields": { + "name": "Size", + "desc": "Adult males can reach a height of 7 feet, with females averaging 3 inches shorter. Your size is Medium.", + "type": null, + "parent": "toh_minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 202, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Minotaur.", + "type": null, + "parent": "toh_minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 203, + "fields": { + "name": "Natural Attacks", + "desc": "Your horns are sturdy and sharp. Your horns are a natural melee weapon, which you can use to make unarmed strikes. When you hit with your horns, they deal piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", + "type": null, + "parent": "toh_minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 204, + "fields": { + "name": "Charge", + "desc": "Once per turn, if you move at least 10 feet toward a target and hit it with a horn attack in the same turn, you deal an extra 1d6 piercing damage and you can shove the target up to 5 feet as a bonus action. At 11th level, when you shove a creature with Charge, you can push it up to 10 feet instead. You can use this trait a number of times per day equal to your Constitution modifier (minimum of once), and you regain all expended uses when you finish a long rest.", + "type": null, + "parent": "toh_minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 205, + "fields": { + "name": "Labyrinth Sense", + "desc": "You can retrace without error any path you have previously taken, with no ability check.", + "type": null, + "parent": "toh_minotaur" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 210, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 2, and your Strength score increases by 1.", + "type": null, + "parent": "toh_bhain-kwai" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 211, + "fields": { + "name": "Strong Back", + "desc": "Your carrying capacity is your Strength score multiplied by 20, instead of by 15.", + "type": null, + "parent": "toh_bhain-kwai" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 212, + "fields": { + "name": "Wetland Dweller", + "desc": "You are adapted to your home terrain. Difficult terrain composed of mud or from wading through water up to waist deep doesn't cost you extra movement. You have a swimming speed of 25 feet.", + "type": null, + "parent": "toh_bhain-kwai" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 213, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 2, and your Constitution score increases by 1.", + "type": null, + "parent": "toh_boghaid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 214, + "fields": { + "name": "Highlander", + "desc": "You are adapted to life at high altitudes, and you suffer no ill effects or penalties from elevations above 8,000 feet.", + "type": null, + "parent": "toh_boghaid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 215, + "fields": { + "name": "Storied Culture", + "desc": "You have proficiency in the Performance skill, and you gain proficiency with one of the following musical instruments: bagpipes, drum, horn, or shawm.", + "type": null, + "parent": "toh_boghaid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 216, + "fields": { + "name": "Wooly", + "desc": "Your thick, wooly coat of hair keeps you warm, allowing you to function in cold weather without special clothing or gear. You have advantage on saving throws against spells and other effects that deal cold damage.", + "type": null, + "parent": "toh_boghaid" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 217, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 2.", + "type": null, + "parent": "toh_mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 218, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "toh_mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 219, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to life underground, you can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 220, + "fields": { + "name": "Age", + "desc": "Mushroomfolk reach maturity by the age of 5 and rarely live longer than 50 years.", + "type": null, + "parent": "toh_mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 221, + "fields": { + "name": "Alignment", + "desc": "The limited interaction mushroomfolk have with other creatures leaves them with a fairly neutral view of the world in terms of good and evil, while their societal structure makes them more prone to law than chaos.", + "type": null, + "parent": "toh_mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 222, + "fields": { + "name": "Size", + "desc": "A mushroomfolk's size is determined by its subrace.", + "type": null, + "parent": "toh_mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 223, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Mushroomfolk and your choice of Common or Undercommon.", + "type": null, + "parent": "toh_mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 224, + "fields": { + "name": "Fungoid Form", + "desc": "You are a humanoid, though the fungal nature of your body and your unique diet of decayed vegetable and animal matter marks you with some plant-like characteristics. You have advantage on saving throws against poison, and you have resistance to poison damage. In addition, you are immune to disease.", + "type": null, + "parent": "toh_mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 225, + "fields": { + "name": "Hardy Survivor", + "desc": "Your upbringing in mushroomfolk society has taught you how to defend yourself and find food. You have proficiency in the Survival skill.", + "type": null, + "parent": "toh_mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 226, + "fields": { + "name": "Subrace", + "desc": "Three subraces of mushroomfolk are known to wander the world: acid cap, favored, and morel. Choose one of these subraces.", + "type": null, + "parent": "toh_mushroomfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 227, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 1.", + "type": null, + "parent": "toh_acid-cap" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 228, + "fields": { + "name": "Acid Cap Resistance", + "desc": "You have resistance to acid damage.", + "type": null, + "parent": "toh_acid-cap" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 229, + "fields": { + "name": "Acid Spores", + "desc": "When you are hit by a melee weapon attack within 5 feet of you, you can use your reaction to emit acidic spores. If you do, the attacker takes acid damage equal to half your level (rounded up). You can use your acid spores a number of times equal to your Constitution modifier (a minimum of once). You regain any expended uses when you finish a long rest.", + "type": null, + "parent": "toh_acid-cap" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 230, + "fields": { + "name": "Clan Athlete", + "desc": "You have proficiency in the Athletics skill.", + "type": null, + "parent": "toh_acid-cap" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 231, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "parent": "toh_favored" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 232, + "fields": { + "name": "Blessed Help", + "desc": "Your intuition and connection to your allies allows you to assist and protect them. You know the spare the dying cantrip. When you reach 3rd level, you can cast the bless spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", + "type": null, + "parent": "toh_favored" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 233, + "fields": { + "name": "Clan Leader", + "desc": "You have proficiency in the Persuasion skill.", + "type": null, + "parent": "toh_favored" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 234, + "fields": { + "name": "Restful Spores", + "desc": "If you or any friendly creatures within 30 feet of you regain hit points at the end of a short rest by spending one or more Hit Dice, each of those creatures regains additional hit points equal to your proficiency bonus. Once a creature benefits from your restful spores, it can't do so again until it finishes a long rest.", + "type": null, + "parent": "toh_favored" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 235, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 1.", + "type": null, + "parent": "toh_morel" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 236, + "fields": { + "name": "Adaptable Camouflage", + "desc": "If you spend at least 1 minute in an environment with ample naturally occurring plants or fungi, such as a grassland, a forest, or an underground fungal cavern, you can adjust your natural coloration to blend in with the local plant life. If you do so, you have advantage on Dexterity (Stealth) checks for the next 24 hours while in that environment.", + "type": null, + "parent": "toh_morel" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 237, + "fields": { + "name": "Clan Scout", + "desc": "You have proficiency in the Stealth skill.", + "type": null, + "parent": "toh_morel" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 238, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 2, and your Intelligence score increases by 1.", + "type": null, + "parent": "toh_satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 239, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "toh_satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 240, + "fields": { + "name": "Darkvision", + "desc": "Thanks to your dark planar parentage, you have superior vision in darkness. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 241, + "fields": { + "name": "Age", + "desc": "Satarre grow quickly, walking soon after hatching and reaching the development of a 15-year-old human by age 6. They maintain the same appearance until about 50, then begin a rapid decline. Satarre often die violently, but those who live longer survive to no more than 65 years of age.", + "type": null, + "parent": "toh_satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 242, + "fields": { + "name": "Alignment", + "desc": "Satarre are born with a tendency toward evil akin to that of rapacious dragons, and, when raised among other satarre or darakhul, they are usually evil. Those raised among other cultures tend toward the norm for those cultures.", + "type": null, + "parent": "toh_satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 243, + "fields": { + "name": "Size", + "desc": "Satarre are tall but thin, from 6 to 7 feet tall with peculiar, segmented limbs. Your size is Medium.", + "type": null, + "parent": "toh_satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 244, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and one of the following: Abyssal, Infernal, or Void Speech. Void Speech is a language of dark gods and ancient blasphemies, and the mere sound of its sibilant tones makes many other creatures quite uncomfortable.", + "type": null, + "parent": "toh_satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 245, + "fields": { + "name": "A Friend to Death", + "desc": "You have resistance to necrotic damage.", + "type": null, + "parent": "toh_satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 246, + "fields": { + "name": "Keeper of Secrets", + "desc": "You have proficiency in the Arcana skill, and you have advantage on Intelligence (Arcana) checks related to the planes and planar travel. In addition, you have proficiency in one of the following skills of your choice: History, Insight, and Religion.", + "type": null, + "parent": "toh_satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 247, + "fields": { + "name": "Carrier of Rot", + "desc": "You can use your action to inflict rot on a creature you can see within 10 feet of you. The creature must make a Constitution saving throw. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 1d4 necrotic damage on a failed save, and half as much damage on a successful one. A creature that fails the saving throw also rots for 1 minute. A rotting creature takes 1d4 necrotic damage at the end of each of its turns. The target or a creature within 5 feet of it can use an action to excise the rot with a successful Wisdom (Medicine) check. The DC for the check equals the rot's Constitution saving throw DC. The rot also disappears if the target receives magical healing. The damage for the initial action and the rotting increases to 2d4 at 6th level, 3d4 at 11th level, and 4d4 at 16th level. After you use your Carrier of Rot trait, you can't use it again until you complete a short or long rest.", + "type": null, + "parent": "toh_satarre" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 248, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 1.", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 249, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is determined by your Heritage Subrace.", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 250, + "fields": { + "name": "Darkvision", + "desc": "You can see in dim light within 60 feet as though it were bright light and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 251, + "fields": { + "name": "Age", + "desc": "An upper limit of darakhul age has never been discovered; most darakhul die violently.", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 252, + "fields": { + "name": "Alignment", + "desc": "Your alignment does not change when you become a darakhul, but most darakhul have a strong draw toward evil.", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 253, + "fields": { + "name": "Size", + "desc": "Your size is determined by your Heritage Subrace.", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 254, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common, Darakhul, and a language associated with your Heritage Subrace.", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 255, + "fields": { + "name": "Hunger for Flesh", + "desc": "You must consume 1 pound of raw meat each day or suffer the effects of starvation. If you go 24 hours without such a meal, you gain one level of exhaustion. While you have any levels of exhaustion from this trait, you can't regain hit points or remove levels of exhaustion until you spend at least 1 hour consuming 10 pounds of raw meat.", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 256, + "fields": { + "name": "Imperfect Undeath", + "desc": "You transitioned into undeath, but your transition was imperfect. Though you are a humanoid, you are susceptible to effects that target undead. You can regain hit points from spells like cure wounds, but you can also be affected by game effects that specifically target undead, such as a cleric's Turn Undead feature. Game effects that raise a creature from the dead work on you as normal, but they return you to life as a darakhul. A true resurrection or wish spell can restore you to life as a fully living member of your original race.", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 257, + "fields": { + "name": "Powerful Jaw", + "desc": "Your heavy jaw is powerful enough to crush bones to powder. Your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike.", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 258, + "fields": { + "name": "Sunlight Sensitivity", + "desc": "You have disadvantage on attack rolls and on Wisdom (Perception) checks that rely on sight when you, the target of your attack, or whatever you are trying to perceive is in direct sunlight.", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 259, + "fields": { + "name": "Undead Resilience", + "desc": "You are infused with the dark energy of undeath, which frees you from some frailties that plague most creatures. You have resistance to necrotic damage and poison damage, you are immune to disease, and you have advantage on saving throws against being charmed or poisoned. When you finish a short rest, you can reduce your exhaustion level by 1, provided you have ingested at least 1 pound of raw meat in the last 24 hours (see Hunger for Flesh).", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 260, + "fields": { + "name": "Undead Vitality", + "desc": "You don't need to breathe, and you don't sleep the way most creatures do. Instead, you enter a dormant state that resembles death, remaining semiconscious, for 6 hours a day. While dormant, you have disadvantage on Wisdom (Perception) checks. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 261, + "fields": { + "name": "Heritage Subrace", + "desc": "You were something else before you became a darakhul. This heritage determines some of your traits. Choose one Heritage Subrace below and apply the listed traits.", + "type": null, + "parent": "toh_darakhul" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 262, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 2.", + "type": null, + "parent": "toh_derro-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 263, + "fields": { + "name": "Calculating Insanity", + "desc": "The insanity of your race was compressed into a cold, hard brilliance when you took on your darakhul form. These flashes of brilliance come to you at unexpected moments. You know the true strike cantrip. Charisma is your spellcasting ability for it. You can cast true strike as a bonus action a number of times equal to your Charisma modifier (a minimum of once). You regain any expended uses when you finish a long rest.", + "type": null, + "parent": "toh_derro-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 264, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2.", + "type": null, + "parent": "toh_dragonborn-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 265, + "fields": { + "name": "Corrupted Bite", + "desc": "The inherent breath weapon of your draconic heritage is corrupted by the necrotic energy of your new darakhul form. Instead of forming a line or cone, your breath weapon now oozes out of your ghoulish maw. As a bonus action, you breathe necrotic energy onto your fangs and make one bite attack. If the attack hits, it deals extra necrotic damage equal to your level. You can't use this trait again until you finish a long rest.", + "type": null, + "parent": "toh_dragonborn-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 266, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "parent": "toh_drow-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 267, + "fields": { + "name": "Poison Bite", + "desc": "When you hit with your bite attack, you can release venom into your foe. If you do, your bite deals an extra 1d6 poison damage. The damage increases to 3d6 at 11th level. After you release this venom into a creature, you can't do so again until you finish a short or long rest.", + "type": null, + "parent": "toh_drow-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 268, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdon score increases by 2.", + "type": null, + "parent": "toh_dwarf-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 269, + "fields": { + "name": "Dwarven Stoutness", + "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", + "type": null, + "parent": "toh_dwarf-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 270, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "toh_elfshadow-fey-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 271, + "fields": { + "name": "Supernatural Senses", + "desc": "Your keen elven senses are honed even more by the power of undeath and the hunger within you. You can now smell when blood is in the air. You have proficiency in the Perception skill, and you have advantage on Wisdom (Perception) checks to notice or find a creature within 30 feet of you that doesn't have all of its hit points.", + "type": null, + "parent": "toh_elfshadow-fey-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 272, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "parent": "toh_gnome-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 273, + "fields": { + "name": "Magical Hunger", + "desc": "When a creature you can see within 30 feet of you casts a spell, you can use your reaction to consume the spell's residual magic. Your consumption doesn't counter or otherwise affect the spell or the spellcaster. When you consume this residual magic, you gain temporary hit points (minimum of 1) equal to your Constitution modifier, and you can't use this trait again until you finish a short or long rest.", + "type": null, + "parent": "toh_gnome-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 274, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "toh_halfling-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 275, + "fields": { + "name": "Ill Fortune", + "desc": "Your uncanny halfling luck has taken a dark turn since your conversion to an undead creature. When a creature rolls a 20 on the d20 for an attack roll against you, the creature must reroll the attack and use the new roll. If the second attack roll misses you, the attacking creature takes necrotic damage equal to twice your Constitution modifier (minimum of 2).", + "type": null, + "parent": "toh_halfling-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 276, + "fields": { + "name": "Ability Score Increase", + "desc": "One ability score of your choice, other than Constitution, increases by 2.", + "type": null, + "parent": "toh_humanhalf-elf-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 277, + "fields": { + "name": "Versatility", + "desc": "The training and experience of your early years was not lost when you became a darakhul. You have proficiency in two skills and one tool of your choice.", + "type": null, + "parent": "toh_humanhalf-elf-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 278, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "parent": "toh_kobold-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 279, + "fields": { + "name": "Devious Bite", + "desc": "When you hit a creature with your bite attack and you have advantage on the attack roll, your bite deals an extra 1d4 piercing damage.", + "type": null, + "parent": "toh_kobold-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 280, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "toh_ravenfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 281, + "fields": { + "name": "Sudden Bite and Flight", + "desc": "If you surprise a creature during the first round of combat, you can make a bite attack as a bonus action. If it hits, you can immediately take the Dodge action as a reaction.", + "type": null, + "parent": "toh_ravenfolk" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 282, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "parent": "toh_tiefling-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 283, + "fields": { + "name": "Necrotic Rebuke", + "desc": "When you are hit by a weapon attack, you can use a reaction to envelop the attacker in shadowy flames. The attacker takes necrotic damage equal to your Charisma modifier (minimum of 1), and it has disadvantage on attack rolls until the end of its next turn. You must finish a long rest before you can use this feature again.", + "type": null, + "parent": "toh_tiefling-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 284, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2.", + "type": null, + "parent": "toh_trollkin-heritage" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 285, + "fields": { + "name": "Regenerative Bite", + "desc": "The regenerative powers of your trollkin heritage are less potent than they were in life and need a little help. As an action, you can make a bite attack against a creature that isn't undead or a construct. On a hit, you regain hit points (minimum of 1) equal to half the amount of damage dealt. Once you use this trait, you can't use it again until you finish a long rest.", + "type": null, + "parent": "toh_trollkin-heritage" + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json b/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json index 11bd0dcc..8355c49d 100644 --- a/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json +++ b/data/v2/wizards-of-the-coast/srd/ClassFeatureItem.json @@ -1,2218 +1,2218 @@ [ - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_rage_1", - "fields": { - "parent": "srd_barbarian_rage", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_unarmored-defense_1", - "fields": { - "parent": "srd_barbarian_unarmored-defense", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_reckless-attack_2", - "fields": { - "parent": "srd_barbarian_reckless-attack", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_danger-sense_2", - "fields": { - "parent": "srd_barbarian_danger-sense", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_primal-path_3", - "fields": { - "parent": "srd_barbarian_primal-path", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_ability-score-improvement_4", - "fields": { - "parent": "srd_barbarian_ability-score-improvement", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_extra-attack_5", - "fields": { - "parent": "srd_barbarian_extra-attack", - "level": 5 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_fast-movement_5", - "fields": { - "parent": "srd_barbarian_fast-movement", - "level": 5 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_feral-instinct_7", - "fields": { - "parent": "srd_barbarian_feral-instinct", - "level": 7 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_ability-score-improvement_8", - "fields": { - "parent": "srd_barbarian_ability-score-improvement", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_brutal-critical_9", - "fields": { - "parent": "srd_barbarian_brutal-critical", - "level": 9 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_relentless-rage_11", - "fields": { - "parent": "srd_barbarian_relentless-rage", - "level": 11 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_ability-score-improvement_12", - "fields": { - "parent": "srd_barbarian_ability-score-improvement", - "level": 12 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_brutal-critical_13", - "fields": { - "parent": "srd_barbarian_brutal-critical", - "level": 13 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_persistent-rage_15", - "fields": { - "parent": "srd_barbarian_persistent-rage", - "level": 15 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_ability-score-improvement_16", - "fields": { - "parent": "srd_barbarian_ability-score-improvement", - "level": 16 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_brutal-critical_17", - "fields": { - "parent": "srd_barbarian_brutal-critical", - "level": 17 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_indomitable-might_18", - "fields": { - "parent": "srd_barbarian_indomitable-might", - "level": 18 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_ability-score-improvement_19", - "fields": { - "parent": "srd_barbarian_ability-score-improvement", - "level": 19 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_barbarian_primal-champion_20", - "fields": { - "parent": "srd_barbarian_primal-champion", - "level": 20 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_path-of-the-berserker_frenzy_3", - "fields": { - "parent": "srd_path-of-the-berserker_frenzy", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_path-of-the-berserker_mindless-rage_6", - "fields": { - "parent": "srd_path-of-the-berserker_mindless-rage", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_path-of-the-berserker_intimidating-presence_10", - "fields": { - "parent": "srd_path-of-the-berserker_intimidating-presence", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_path-of-the-berserker_retaliation_14", - "fields": { - "parent": "srd_path-of-the-berserker_retaliation", - "level": 14 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_spellcasting_1", - "fields": { - "parent": "srd_bard_spellcasting", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_bardic-inspiration_1", - "fields": { - "parent": "srd_bard_bardic-inspiration", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_jack-of-all-trades_2", - "fields": { - "parent": "srd_bard_jack-of-all-trades", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_song-of-rest_2", - "fields": { - "parent": "srd_bard_song-of-rest", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_bard-college_3", - "fields": { - "parent": "srd_bard_bard-college", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_expertise_3", - "fields": { - "parent": "srd_bard_expertise", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_ability-score-improvement_4", - "fields": { - "parent": "srd_bard_ability-score-improvement", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_bardic-inspiration_5", - "fields": { - "parent": "srd_bard_bardic-inspiration", - "level": 5 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_font-of-inspiration_5", - "fields": { - "parent": "srd_bard_font-of-inspiration", - "level": 5 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_countercharm_6", - "fields": { - "parent": "srd_bard_countercharm", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_ability-score-improvement_8", - "fields": { - "parent": "srd_bard_ability-score-improvement", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_song-of-rest_9", - "fields": { - "parent": "srd_bard_song-of-rest", - "level": 9 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_bardic-inspiration_10", - "fields": { - "parent": "srd_bard_bardic-inspiration", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_expertise_10", - "fields": { - "parent": "srd_bard_expertise", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_magical-secrets_10", - "fields": { - "parent": "srd_bard_magical-secrets", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_ability-score-improvement_12", - "fields": { - "parent": "srd_bard_ability-score-improvement", - "level": 12 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_song-of-rest_13", - "fields": { - "parent": "srd_bard_song-of-rest", - "level": 13 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_magical-secrets_14", - "fields": { - "parent": "srd_bard_magical-secrets", - "level": 14 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_bardic-inspiration_15", - "fields": { - "parent": "srd_bard_bardic-inspiration", - "level": 15 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_ability-score-improvement_16", - "fields": { - "parent": "srd_bard_ability-score-improvement", - "level": 16 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_song-of-rest_17", - "fields": { - "parent": "srd_bard_song-of-rest", - "level": 17 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_magical-secrets_18", - "fields": { - "parent": "srd_bard_magical-secrets", - "level": 18 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_ability-score-improvement_19", - "fields": { - "parent": "srd_bard_ability-score-improvement", - "level": 19 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_bard_superior-inspiration_20", - "fields": { - "parent": "srd_bard_superior-inspiration", - "level": 20 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_college-of-lore_bonus-proficiencies_3", - "fields": { - "parent": "srd_college-of-lore_bonus-proficiencies", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_college-of-lore_cutting-words_3", - "fields": { - "parent": "srd_college-of-lore_cutting-words", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_college-of-lore_additional-magical-secrets_6", - "fields": { - "parent": "srd_college-of-lore_additional-magical-secrets", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_college-of-lore_peerless-skill_14", - "fields": { - "parent": "srd_college-of-lore_peerless-skill", - "level": 14 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_spellcasting_1", - "fields": { - "parent": "srd_cleric_spellcasting", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_divine-domain_1", - "fields": { - "parent": "srd_cleric_divine-domain", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_channel-divinity_2", - "fields": { - "parent": "srd_cleric_channel-divinity", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_life-domain_bonus-proficiency_1", - "fields": { - "parent": "srd_life-domain_bonus-proficiency", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_life-domain_life-domain-spells-table_1", - "fields": { - "parent": "srd_life-domain_life-domain-spells-table", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_life-domain_disciple-of-life_1", - "fields": { - "parent": "srd_life-domain_disciple-of-life", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_life-domain_channel-divinity-preserve-life_2", - "fields": { - "parent": "srd_life-domain_channel-divinity-preserve-life", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_ability-score-improvement_4", - "fields": { - "parent": "srd_cleric_ability-score-improvement", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_destroy-undead_5", - "fields": { - "parent": "srd_cleric_destroy-undead", - "level": 5 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_channel-divinity_6", - "fields": { - "parent": "srd_cleric_channel-divinity", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_life-domain_blessed-healer_6", - "fields": { - "parent": "srd_life-domain_blessed-healer", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_ability-score-improvement_8", - "fields": { - "parent": "srd_cleric_ability-score-improvement", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_destroy-undead_8", - "fields": { - "parent": "srd_cleric_destroy-undead", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_life-domain_divine-strike_8", - "fields": { - "parent": "srd_life-domain_divine-strike", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_divine-intervention_10", - "fields": { - "parent": "srd_cleric_divine-intervention", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_destroy-undead_14", - "fields": { - "parent": "srd_cleric_destroy-undead", - "level": 14 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_ability-score-improvement_16", - "fields": { - "parent": "srd_cleric_ability-score-improvement", - "level": 16 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_destroy-undead_17", - "fields": { - "parent": "srd_cleric_destroy-undead", - "level": 17 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_life-domain_supreme-healing_17", - "fields": { - "parent": "srd_life-domain_supreme-healing", - "level": 17 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_channel-divinity_18", - "fields": { - "parent": "srd_cleric_channel-divinity", - "level": 18 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_ability-score-improvement_19", - "fields": { - "parent": "srd_cleric_ability-score-improvement", - "level": 19 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_cleric_divine-intervention_20", - "fields": { - "parent": "srd_cleric_divine-intervention", - "level": 20 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_druid_druidic_1", - "fields": { - "parent": "srd_druid_druidic", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_druid_spellcasting_1", - "fields": { - "parent": "srd_druid_spellcasting", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_druid_wild-shape_2", - "fields": { - "parent": "srd_druid_wild-shape", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_druid_druid-circle_2", - "fields": { - "parent": "srd_druid_druid-circle", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_druid_wild-shape_4", - "fields": { - "parent": "srd_druid_wild-shape", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_druid_ability-score-improvement_4", - "fields": { - "parent": "srd_druid_ability-score-improvement", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_druid_wild-shape_8", - "fields": { - "parent": "srd_druid_wild-shape", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_druid_ability-score-improvement_8", - "fields": { - "parent": "srd_druid_ability-score-improvement", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_druid_ability-score-improvement_12", - "fields": { - "parent": "srd_druid_ability-score-improvement", - "level": 12 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_druid_ability-score-improvement_16", - "fields": { - "parent": "srd_druid_ability-score-improvement", - "level": 16 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_druid_beast-spells_18", - "fields": { - "parent": "srd_druid_beast-spells", - "level": 18 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_druid_ability-score-improvement_19", - "fields": { - "parent": "srd_druid_ability-score-improvement", - "level": 19 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_druid_archdruid_20", - "fields": { - "parent": "srd_druid_archdruid", - "level": 20 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_circle-of-the-land_bonus-cantrip_2", - "fields": { - "parent": "srd_circle-of-the-land_bonus-cantrip", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_circle-of-the-land_natural-recovery_2", - "fields": { - "parent": "srd_circle-of-the-land_natural-recovery", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_circle-of-the-land_circle-spells_3", - "fields": { - "parent": "srd_circle-of-the-land_circle-spells", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_circle-of-the-land_circle-spells_5", - "fields": { - "parent": "srd_circle-of-the-land_circle-spells", - "level": 5 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_circle-of-the-land_circle-spells_7", - "fields": { - "parent": "srd_circle-of-the-land_circle-spells", - "level": 7 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_circle-of-the-land_circle-spells_9", - "fields": { - "parent": "srd_circle-of-the-land_circle-spells", - "level": 9 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_circle-of-the-land_lands-stride_6", - "fields": { - "parent": "srd_circle-of-the-land_lands-stride", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_circle-of-the-land_natures-ward_10", - "fields": { - "parent": "srd_circle-of-the-land_natures-ward", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_circle-of-the-land_natures-sanctuary_14", - "fields": { - "parent": "srd_circle-of-the-land_natures-sanctuary", - "level": 14 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_fighting-style_1", - "fields": { - "parent": "srd_fighter_fighting-style", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_second-wind_1", - "fields": { - "parent": "srd_fighter_second-wind", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_action-surge_2", - "fields": { - "parent": "srd_fighter_action-surge", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_martial-archetype_3", - "fields": { - "parent": "srd_fighter_martial-archetype", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_ability-score-improvement_4", - "fields": { - "parent": "srd_fighter_ability-score-improvement", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_extra-attack_5", - "fields": { - "parent": "srd_fighter_extra-attack", - "level": 5 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_ability-score-improvement_6", - "fields": { - "parent": "srd_fighter_ability-score-improvement", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_ability-score-improvement_8", - "fields": { - "parent": "srd_fighter_ability-score-improvement", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_indomitable_9", - "fields": { - "parent": "srd_fighter_indomitable", - "level": 9 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_extra-attack_11", - "fields": { - "parent": "srd_fighter_extra-attack", - "level": 11 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_ability-score-improvement_12", - "fields": { - "parent": "srd_fighter_ability-score-improvement", - "level": 12 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_indomitable_13", - "fields": { - "parent": "srd_fighter_indomitable", - "level": 13 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_ability-score-improvement_14", - "fields": { - "parent": "srd_fighter_ability-score-improvement", - "level": 14 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_ability-score-improvement_16", - "fields": { - "parent": "srd_fighter_ability-score-improvement", - "level": 16 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_action-surge_17", - "fields": { - "parent": "srd_fighter_action-surge", - "level": 17 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_indomitable_17", - "fields": { - "parent": "srd_fighter_indomitable", - "level": 17 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_ability-score-improvement_19", - "fields": { - "parent": "srd_fighter_ability-score-improvement", - "level": 19 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_fighter_extra-attack_20", - "fields": { - "parent": "srd_fighter_extra-attack", - "level": 20 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_champion_improved-critical_3", - "fields": { - "parent": "srd_champion_improved-critical", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_champion_remarkable-athlete_7", - "fields": { - "parent": "srd_champion_remarkable-athlete", - "level": 7 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_champion_additional-fighting-style_10", - "fields": { - "parent": "srd_champion_additional-fighting-style", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_champion_superior-critical_15", - "fields": { - "parent": "srd_champion_superior-critical", - "level": 15 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_champion_survivor_18", - "fields": { - "parent": "srd_champion_survivor", - "level": 18 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_unarmored-defense_1", - "fields": { - "parent": "srd_monk_unarmored-defense", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_martial-arts_1", - "fields": { - "parent": "srd_monk_martial-arts", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_ki_2", - "fields": { - "parent": "srd_monk_ki", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_unarmored-movement_2", - "fields": { - "parent": "srd_monk_unarmored-movement", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_monastic-tradition_3", - "fields": { - "parent": "srd_monk_monastic-tradition", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_deflect-missiles_3", - "fields": { - "parent": "srd_monk_deflect-missiles", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_ability-score-improvement_4", - "fields": { - "parent": "srd_monk_ability-score-improvement", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_slow-fall_4", - "fields": { - "parent": "srd_monk_slow-fall", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_extra-attack_5", - "fields": { - "parent": "srd_monk_extra-attack", - "level": 5 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_stunning-strike_5", - "fields": { - "parent": "srd_monk_stunning-strike", - "level": 5 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_ki-empowered-strikes_6", - "fields": { - "parent": "srd_monk_ki-empowered-strikes", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_evasion_7", - "fields": { - "parent": "srd_monk_evasion", - "level": 7 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_stillness-of-mind_7", - "fields": { - "parent": "srd_monk_stillness-of-mind", - "level": 7 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_ability-score-improvement_8", - "fields": { - "parent": "srd_monk_ability-score-improvement", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_unarmored-movement_9", - "fields": { - "parent": "srd_monk_unarmored-movement", - "level": 9 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_purity-of-body_10", - "fields": { - "parent": "srd_monk_purity-of-body", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_ability-score-improvement_12", - "fields": { - "parent": "srd_monk_ability-score-improvement", - "level": 12 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_tongue-of-the-sun-and-moon_13", - "fields": { - "parent": "srd_monk_tongue-of-the-sun-and-moon", - "level": 13 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_diamond-soul_14", - "fields": { - "parent": "srd_monk_diamond-soul", - "level": 14 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_timeless-body_15", - "fields": { - "parent": "srd_monk_timeless-body", - "level": 15 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_ability-score-improvement_16", - "fields": { - "parent": "srd_monk_ability-score-improvement", - "level": 16 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_empty-body_18", - "fields": { - "parent": "srd_monk_empty-body", - "level": 18 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_ability-score-improvement_19", - "fields": { - "parent": "srd_monk_ability-score-improvement", - "level": 19 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_monk_perfect-self_20", - "fields": { - "parent": "srd_monk_perfect-self", - "level": 20 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_way-of-the-open-hand_open-hand-technique_3", - "fields": { - "parent": "srd_way-of-the-open-hand_open-hand-technique", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_way-of-the-open-hand_wholeness-of-body_6", - "fields": { - "parent": "srd_way-of-the-open-hand_wholeness-of-body", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_way-of-the-open-hand_tranquility_11", - "fields": { - "parent": "srd_way-of-the-open-hand_tranquility", - "level": 11 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_way-of-the-open-hand_quivering-palm_17", - "fields": { - "parent": "srd_way-of-the-open-hand_quivering-palm", - "level": 17 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_divine-sense_1", - "fields": { - "parent": "srd_paladin_divine-sense", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_lay-on-hands_1", - "fields": { - "parent": "srd_paladin_lay-on-hands", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_fighting-style_2", - "fields": { - "parent": "srd_paladin_fighting-style", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_spellcasting_2", - "fields": { - "parent": "srd_paladin_spellcasting", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_divine-smite_2", - "fields": { - "parent": "srd_paladin_divine-smite", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_divine-health_3", - "fields": { - "parent": "srd_paladin_divine-health", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_sacred-oath_3", - "fields": { - "parent": "srd_paladin_sacred-oath", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_ability-score-improvement_4", - "fields": { - "parent": "srd_paladin_ability-score-improvement", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_extra-attack_5", - "fields": { - "parent": "srd_paladin_extra-attack", - "level": 5 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_aura-of-protection_6", - "fields": { - "parent": "srd_paladin_aura-of-protection", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_ability-score-improvement_8", - "fields": { - "parent": "srd_paladin_ability-score-improvement", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_aura-of-courage_10", - "fields": { - "parent": "srd_paladin_aura-of-courage", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_improved-divine-smite_11", - "fields": { - "parent": "srd_paladin_improved-divine-smite", - "level": 11 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_ability-score-improvement_12", - "fields": { - "parent": "srd_paladin_ability-score-improvement", - "level": 12 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_cleansing-touch_14", - "fields": { - "parent": "srd_paladin_cleansing-touch", - "level": 14 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_ability-score-improvement_16", - "fields": { - "parent": "srd_paladin_ability-score-improvement", - "level": 16 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_aura-of-protection_18", - "fields": { - "parent": "srd_paladin_aura-of-protection", - "level": 18 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_aura-of-courage_18", - "fields": { - "parent": "srd_paladin_aura-of-courage", - "level": 18 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_paladin_ability-score-improvement_19", - "fields": { - "parent": "srd_paladin_ability-score-improvement", - "level": 19 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_oath-of-devotion_tenets-of-devotion_3", - "fields": { - "parent": "srd_oath-of-devotion_tenets-of-devotion", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_oath-of-devotion_oath-spells_3", - "fields": { - "parent": "srd_oath-of-devotion_oath-spells", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_oath-of-devotion_oath-spells_5", - "fields": { - "parent": "srd_oath-of-devotion_oath-spells", - "level": 5 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_oath-of-devotion_oath-spells_9", - "fields": { - "parent": "srd_oath-of-devotion_oath-spells", - "level": 9 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_oath-of-devotion_oath-spells_13", - "fields": { - "parent": "srd_oath-of-devotion_oath-spells", - "level": 13 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_oath-of-devotion_oath-spells_17", - "fields": { - "parent": "srd_oath-of-devotion_oath-spells", - "level": 17 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_oath-of-devotion_channel-divinity_3", - "fields": { - "parent": "srd_oath-of-devotion_channel-divinity", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_oath-of-devotion_aura-of-devotion_7", - "fields": { - "parent": "srd_oath-of-devotion_aura-of-devotion", - "level": 7 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_oath-of-devotion_aura-of-devotion_18", - "fields": { - "parent": "srd_oath-of-devotion_aura-of-devotion", - "level": 18 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_oath-of-devotion_purity-of-spirit_15", - "fields": { - "parent": "srd_oath-of-devotion_purity-of-spirit", - "level": 15 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_oath-of-devotion_holy-nimbus_20", - "fields": { - "parent": "srd_oath-of-devotion_holy-nimbus", - "level": 20 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_favored-enemy_1", - "fields": { - "parent": "srd_ranger_favored-enemy", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_natural-explorer_1", - "fields": { - "parent": "srd_ranger_natural-explorer", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_fighting-style_2", - "fields": { - "parent": "srd_ranger_fighting-style", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_spellcasting_2", - "fields": { - "parent": "srd_ranger_spellcasting", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_ranger-archetype_3", - "fields": { - "parent": "srd_ranger_ranger-archetype", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_primeval-awareness_3", - "fields": { - "parent": "srd_ranger_primeval-awareness", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_ability-score-improvement_4", - "fields": { - "parent": "srd_ranger_ability-score-improvement", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_extra-attack_5", - "fields": { - "parent": "srd_ranger_extra-attack", - "level": 5 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_favored-enemy_6", - "fields": { - "parent": "srd_ranger_favored-enemy", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_natural-explorer_6", - "fields": { - "parent": "srd_ranger_natural-explorer", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_ability-score-improvement_8", - "fields": { - "parent": "srd_ranger_ability-score-improvement", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_lands-stride_8", - "fields": { - "parent": "srd_ranger_lands-stride", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_natural-explorer_10", - "fields": { - "parent": "srd_ranger_natural-explorer", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_hide-in-plain-sight_10", - "fields": { - "parent": "srd_ranger_hide-in-plain-sight", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_ability-score-improvement_12", - "fields": { - "parent": "srd_ranger_ability-score-improvement", - "level": 12 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_favored-enemy_14", - "fields": { - "parent": "srd_ranger_favored-enemy", - "level": 14 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_vanish_14", - "fields": { - "parent": "srd_ranger_vanish", - "level": 14 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_ability-score-improvement_16", - "fields": { - "parent": "srd_ranger_ability-score-improvement", - "level": 16 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_feral-senses_18", - "fields": { - "parent": "srd_ranger_feral-senses", - "level": 18 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_ability-score-improvement_19", - "fields": { - "parent": "srd_ranger_ability-score-improvement", - "level": 19 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_ranger_foe-slayer_20", - "fields": { - "parent": "srd_ranger_foe-slayer", - "level": 20 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_hunter_hunters-prey_3", - "fields": { - "parent": "srd_hunter_hunters-prey", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_hunter_defensive-tactics_7", - "fields": { - "parent": "srd_hunter_defensive-tactics", - "level": 7 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_hunter_multiattack_11", - "fields": { - "parent": "srd_hunter_multiattack", - "level": 11 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_hunter_superior-hunters-defense_15", - "fields": { - "parent": "srd_hunter_superior-hunters-defense", - "level": 15 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_expertise_1", - "fields": { - "parent": "srd_rogue_expertise", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_sneak-attack_1", - "fields": { - "parent": "srd_rogue_sneak-attack", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_thieves-cant_1", - "fields": { - "parent": "srd_rogue_thieves-cant", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_cunning-action_2", - "fields": { - "parent": "srd_rogue_cunning-action", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_roguish-archetype_3", - "fields": { - "parent": "srd_rogue_roguish-archetype", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_ability-score-improvement_4", - "fields": { - "parent": "srd_rogue_ability-score-improvement", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_uncanny-dodge_5", - "fields": { - "parent": "srd_rogue_uncanny-dodge", - "level": 5 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_expertise_6", - "fields": { - "parent": "srd_rogue_expertise", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_evasion_7", - "fields": { - "parent": "srd_rogue_evasion", - "level": 7 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_ability-score-improvement_8", - "fields": { - "parent": "srd_rogue_ability-score-improvement", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_ability-score-improvement_10", - "fields": { - "parent": "srd_rogue_ability-score-improvement", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_reliable-talent_11", - "fields": { - "parent": "srd_rogue_reliable-talent", - "level": 11 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_ability-score-improvement_12", - "fields": { - "parent": "srd_rogue_ability-score-improvement", - "level": 12 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_blindsense_14", - "fields": { - "parent": "srd_rogue_blindsense", - "level": 14 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_slippery-mind_15", - "fields": { - "parent": "srd_rogue_slippery-mind", - "level": 15 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_ability-score-improvement_16", - "fields": { - "parent": "srd_rogue_ability-score-improvement", - "level": 16 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_elusive_18", - "fields": { - "parent": "srd_rogue_elusive", - "level": 18 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_ability-score-improvement_19", - "fields": { - "parent": "srd_rogue_ability-score-improvement", - "level": 19 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_rogue_stroke-of-luck_20", - "fields": { - "parent": "srd_rogue_stroke-of-luck", - "level": 20 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_thief_fast-hands_3", - "fields": { - "parent": "srd_thief_fast-hands", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_thief_second-story-work_3", - "fields": { - "parent": "srd_thief_second-story-work", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_thief_supreme-sneak_9", - "fields": { - "parent": "srd_thief_supreme-sneak", - "level": 9 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_thief_use-magic-device_13", - "fields": { - "parent": "srd_thief_use-magic-device", - "level": 13 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_thief_thiefs-reflexes_17", - "fields": { - "parent": "srd_thief_thiefs-reflexes", - "level": 17 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_sorcerer_spellcasting_1", - "fields": { - "parent": "srd_sorcerer_spellcasting", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_sorcerer_sorcerous-origin_1", - "fields": { - "parent": "srd_sorcerer_sorcerous-origin", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_sorcerer_font-of-magic_2", - "fields": { - "parent": "srd_sorcerer_font-of-magic", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_sorcerer_metamagic_3", - "fields": { - "parent": "srd_sorcerer_metamagic", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_sorcerer_ability-score-improvement_4", - "fields": { - "parent": "srd_sorcerer_ability-score-improvement", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_sorcerer_ability-score-improvement_8", - "fields": { - "parent": "srd_sorcerer_ability-score-improvement", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_sorcerer_metamagic_10", - "fields": { - "parent": "srd_sorcerer_metamagic", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_sorcerer_ability-score-improvement_12", - "fields": { - "parent": "srd_sorcerer_ability-score-improvement", - "level": 12 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_sorcerer_ability-score-improvement_16", - "fields": { - "parent": "srd_sorcerer_ability-score-improvement", - "level": 16 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_sorcerer_metamagic_17", - "fields": { - "parent": "srd_sorcerer_metamagic", - "level": 17 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_sorcerer_ability-score-improvement_19", - "fields": { - "parent": "srd_sorcerer_ability-score-improvement", - "level": 19 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_sorcerer_sorcerous-restoration_20", - "fields": { - "parent": "srd_sorcerer_sorcerous-restoration", - "level": 20 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_draconic-bloodline_dragon-ancestor_1", - "fields": { - "parent": "srd_draconic-bloodline_dragon-ancestor", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_draconic-bloodline_draconic-resilience_1", - "fields": { - "parent": "srd_draconic-bloodline_draconic-resilience", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_draconic-bloodline_elemental-affinity_6", - "fields": { - "parent": "srd_draconic-bloodline_elemental-affinity", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_draconic-bloodline_dragon-wings_14", - "fields": { - "parent": "srd_draconic-bloodline_dragon-wings", - "level": 14 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_draconic-bloodline_draconic-presence_18", - "fields": { - "parent": "srd_draconic-bloodline_draconic-presence", - "level": 18 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_otherworldly-patron_1", - "fields": { - "parent": "srd_warlock_otherworldly-patron", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_pact-magic_1", - "fields": { - "parent": "srd_warlock_pact-magic", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_eldritch-invocations_2", - "fields": { - "parent": "srd_warlock_eldritch-invocations", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_pact-boon_3", - "fields": { - "parent": "srd_warlock_pact-boon", - "level": 3 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_ability-score-improvement_4", - "fields": { - "parent": "srd_warlock_ability-score-improvement", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_ability-score-improvement_8", - "fields": { - "parent": "srd_warlock_ability-score-improvement", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_mystic-arcanum_11", - "fields": { - "parent": "srd_warlock_mystic-arcanum", - "level": 11 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_ability-score-improvement_12", - "fields": { - "parent": "srd_warlock_ability-score-improvement", - "level": 12 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_mystic-arcanum_13", - "fields": { - "parent": "srd_warlock_mystic-arcanum", - "level": 13 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_mystic-arcanum_15", - "fields": { - "parent": "srd_warlock_mystic-arcanum", - "level": 15 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_mystic-arcanum_17", - "fields": { - "parent": "srd_warlock_mystic-arcanum", - "level": 17 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_ability-score-improvement_19", - "fields": { - "parent": "srd_warlock_ability-score-improvement", - "level": 19 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_eldritch-master_20", - "fields": { - "parent": "srd_warlock_eldritch-master", - "level": 20 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_warlock_eldritch-invocation-list_2", - "fields": { - "parent": "srd_warlock_eldritch-invocation-list", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_the-fiend_expanded-spell-list_1", - "fields": { - "parent": "srd_the-fiend_expanded-spell-list", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_the-fiend_dark-ones-blessing_1", - "fields": { - "parent": "srd_the-fiend_dark-ones-blessing", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_the-fiend_dark-ones-own-luck_6", - "fields": { - "parent": "srd_the-fiend_dark-ones-own-luck", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_the-fiend_fiendish-resilience_10", - "fields": { - "parent": "srd_the-fiend_fiendish-resilience", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_the-fiend_hurl-through-hell_14", - "fields": { - "parent": "srd_the-fiend_hurl-through-hell", - "level": 14 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_wizard_spellcasting_1", - "fields": { - "parent": "srd_wizard_spellcasting", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_wizard_arcane-recovery_1", - "fields": { - "parent": "srd_wizard_arcane-recovery", - "level": 1 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_wizard_arcane-tradition_2", - "fields": { - "parent": "srd_wizard_arcane-tradition", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_wizard_ability-score-improvement_4", - "fields": { - "parent": "srd_wizard_ability-score-improvement", - "level": 4 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_wizard_ability-score-improvement_8", - "fields": { - "parent": "srd_wizard_ability-score-improvement", - "level": 8 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_wizard_ability-score-improvement_12", - "fields": { - "parent": "srd_wizard_ability-score-improvement", - "level": 12 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_wizard_ability-score-improvement_16", - "fields": { - "parent": "srd_wizard_ability-score-improvement", - "level": 16 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_wizard_spell-mastery_18", - "fields": { - "parent": "srd_wizard_spell-mastery", - "level": 18 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_wizard_ability-score-improvement_19", - "fields": { - "parent": "srd_wizard_ability-score-improvement", - "level": 19 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_wizard_signature-spells_20", - "fields": { - "parent": "srd_wizard_signature-spells", - "level": 20 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_school-of-evocation_evocation-savant_2", - "fields": { - "parent": "srd_school-of-evocation_evocation-savant", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_school-of-evocation_sculpt-spells_2", - "fields": { - "parent": "srd_school-of-evocation_sculpt-spells", - "level": 2 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_school-of-evocation_potent-cantrip_6", - "fields": { - "parent": "srd_school-of-evocation_potent-cantrip", - "level": 6 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_school-of-evocation_empowered-evocation_10", - "fields": { - "parent": "srd_school-of-evocation_empowered-evocation", - "level": 10 - } - }, - { - "model": "api_v2.classfeatureitem", - "pk": "srd_school-of-evocation_overchannel_14", - "fields": { - "parent": "srd_school-of-evocation_overchannel", - "level": 14 - } - } -] \ No newline at end of file +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_ability-score-improvement_12", + "fields": { + "parent": "srd_barbarian_ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_ability-score-improvement_16", + "fields": { + "parent": "srd_barbarian_ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_ability-score-improvement_19", + "fields": { + "parent": "srd_barbarian_ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_ability-score-improvement_4", + "fields": { + "parent": "srd_barbarian_ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_ability-score-improvement_8", + "fields": { + "parent": "srd_barbarian_ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_brutal-critical_13", + "fields": { + "parent": "srd_barbarian_brutal-critical", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_brutal-critical_17", + "fields": { + "parent": "srd_barbarian_brutal-critical", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_brutal-critical_9", + "fields": { + "parent": "srd_barbarian_brutal-critical", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_danger-sense_2", + "fields": { + "parent": "srd_barbarian_danger-sense", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_extra-attack_5", + "fields": { + "parent": "srd_barbarian_extra-attack", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_fast-movement_5", + "fields": { + "parent": "srd_barbarian_fast-movement", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_feral-instinct_7", + "fields": { + "parent": "srd_barbarian_feral-instinct", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_indomitable-might_18", + "fields": { + "parent": "srd_barbarian_indomitable-might", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_persistent-rage_15", + "fields": { + "parent": "srd_barbarian_persistent-rage", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_primal-champion_20", + "fields": { + "parent": "srd_barbarian_primal-champion", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_primal-path_3", + "fields": { + "parent": "srd_barbarian_primal-path", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_rage_1", + "fields": { + "parent": "srd_barbarian_rage", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_reckless-attack_2", + "fields": { + "parent": "srd_barbarian_reckless-attack", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_relentless-rage_11", + "fields": { + "parent": "srd_barbarian_relentless-rage", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_barbarian_unarmored-defense_1", + "fields": { + "parent": "srd_barbarian_unarmored-defense", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_ability-score-improvement_12", + "fields": { + "parent": "srd_bard_ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_ability-score-improvement_16", + "fields": { + "parent": "srd_bard_ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_ability-score-improvement_19", + "fields": { + "parent": "srd_bard_ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_ability-score-improvement_4", + "fields": { + "parent": "srd_bard_ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_ability-score-improvement_8", + "fields": { + "parent": "srd_bard_ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_bard-college_3", + "fields": { + "parent": "srd_bard_bard-college", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_bardic-inspiration_1", + "fields": { + "parent": "srd_bard_bardic-inspiration", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_bardic-inspiration_10", + "fields": { + "parent": "srd_bard_bardic-inspiration", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_bardic-inspiration_15", + "fields": { + "parent": "srd_bard_bardic-inspiration", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_bardic-inspiration_5", + "fields": { + "parent": "srd_bard_bardic-inspiration", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_countercharm_6", + "fields": { + "parent": "srd_bard_countercharm", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_expertise_10", + "fields": { + "parent": "srd_bard_expertise", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_expertise_3", + "fields": { + "parent": "srd_bard_expertise", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_font-of-inspiration_5", + "fields": { + "parent": "srd_bard_font-of-inspiration", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_jack-of-all-trades_2", + "fields": { + "parent": "srd_bard_jack-of-all-trades", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_magical-secrets_10", + "fields": { + "parent": "srd_bard_magical-secrets", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_magical-secrets_14", + "fields": { + "parent": "srd_bard_magical-secrets", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_magical-secrets_18", + "fields": { + "parent": "srd_bard_magical-secrets", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_song-of-rest_13", + "fields": { + "parent": "srd_bard_song-of-rest", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_song-of-rest_17", + "fields": { + "parent": "srd_bard_song-of-rest", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_song-of-rest_2", + "fields": { + "parent": "srd_bard_song-of-rest", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_song-of-rest_9", + "fields": { + "parent": "srd_bard_song-of-rest", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_spellcasting_1", + "fields": { + "parent": "srd_bard_spellcasting", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_bard_superior-inspiration_20", + "fields": { + "parent": "srd_bard_superior-inspiration", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_champion_additional-fighting-style_10", + "fields": { + "parent": "srd_champion_additional-fighting-style", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_champion_improved-critical_3", + "fields": { + "parent": "srd_champion_improved-critical", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_champion_remarkable-athlete_7", + "fields": { + "parent": "srd_champion_remarkable-athlete", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_champion_superior-critical_15", + "fields": { + "parent": "srd_champion_superior-critical", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_champion_survivor_18", + "fields": { + "parent": "srd_champion_survivor", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_circle-of-the-land_bonus-cantrip_2", + "fields": { + "parent": "srd_circle-of-the-land_bonus-cantrip", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_circle-of-the-land_circle-spells_3", + "fields": { + "parent": "srd_circle-of-the-land_circle-spells", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_circle-of-the-land_circle-spells_5", + "fields": { + "parent": "srd_circle-of-the-land_circle-spells", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_circle-of-the-land_circle-spells_7", + "fields": { + "parent": "srd_circle-of-the-land_circle-spells", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_circle-of-the-land_circle-spells_9", + "fields": { + "parent": "srd_circle-of-the-land_circle-spells", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_circle-of-the-land_lands-stride_6", + "fields": { + "parent": "srd_circle-of-the-land_lands-stride", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_circle-of-the-land_natural-recovery_2", + "fields": { + "parent": "srd_circle-of-the-land_natural-recovery", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_circle-of-the-land_natures-sanctuary_14", + "fields": { + "parent": "srd_circle-of-the-land_natures-sanctuary", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_circle-of-the-land_natures-ward_10", + "fields": { + "parent": "srd_circle-of-the-land_natures-ward", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_ability-score-improvement_16", + "fields": { + "parent": "srd_cleric_ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_ability-score-improvement_19", + "fields": { + "parent": "srd_cleric_ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_ability-score-improvement_4", + "fields": { + "parent": "srd_cleric_ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_ability-score-improvement_8", + "fields": { + "parent": "srd_cleric_ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_channel-divinity_18", + "fields": { + "parent": "srd_cleric_channel-divinity", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_channel-divinity_2", + "fields": { + "parent": "srd_cleric_channel-divinity", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_channel-divinity_6", + "fields": { + "parent": "srd_cleric_channel-divinity", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_destroy-undead_14", + "fields": { + "parent": "srd_cleric_destroy-undead", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_destroy-undead_17", + "fields": { + "parent": "srd_cleric_destroy-undead", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_destroy-undead_5", + "fields": { + "parent": "srd_cleric_destroy-undead", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_destroy-undead_8", + "fields": { + "parent": "srd_cleric_destroy-undead", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_divine-domain_1", + "fields": { + "parent": "srd_cleric_divine-domain", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_divine-intervention_10", + "fields": { + "parent": "srd_cleric_divine-intervention", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_divine-intervention_20", + "fields": { + "parent": "srd_cleric_divine-intervention", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_cleric_spellcasting_1", + "fields": { + "parent": "srd_cleric_spellcasting", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_college-of-lore_additional-magical-secrets_6", + "fields": { + "parent": "srd_college-of-lore_additional-magical-secrets", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_college-of-lore_bonus-proficiencies_3", + "fields": { + "parent": "srd_college-of-lore_bonus-proficiencies", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_college-of-lore_cutting-words_3", + "fields": { + "parent": "srd_college-of-lore_cutting-words", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_college-of-lore_peerless-skill_14", + "fields": { + "parent": "srd_college-of-lore_peerless-skill", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_draconic-bloodline_draconic-presence_18", + "fields": { + "parent": "srd_draconic-bloodline_draconic-presence", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_draconic-bloodline_draconic-resilience_1", + "fields": { + "parent": "srd_draconic-bloodline_draconic-resilience", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_draconic-bloodline_dragon-ancestor_1", + "fields": { + "parent": "srd_draconic-bloodline_dragon-ancestor", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_draconic-bloodline_dragon-wings_14", + "fields": { + "parent": "srd_draconic-bloodline_dragon-wings", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_draconic-bloodline_elemental-affinity_6", + "fields": { + "parent": "srd_draconic-bloodline_elemental-affinity", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_druid_ability-score-improvement_12", + "fields": { + "parent": "srd_druid_ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_druid_ability-score-improvement_16", + "fields": { + "parent": "srd_druid_ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_druid_ability-score-improvement_19", + "fields": { + "parent": "srd_druid_ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_druid_ability-score-improvement_4", + "fields": { + "parent": "srd_druid_ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_druid_ability-score-improvement_8", + "fields": { + "parent": "srd_druid_ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_druid_archdruid_20", + "fields": { + "parent": "srd_druid_archdruid", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_druid_beast-spells_18", + "fields": { + "parent": "srd_druid_beast-spells", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_druid_druid-circle_2", + "fields": { + "parent": "srd_druid_druid-circle", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_druid_druidic_1", + "fields": { + "parent": "srd_druid_druidic", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_druid_spellcasting_1", + "fields": { + "parent": "srd_druid_spellcasting", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_druid_wild-shape_2", + "fields": { + "parent": "srd_druid_wild-shape", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_druid_wild-shape_4", + "fields": { + "parent": "srd_druid_wild-shape", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_druid_wild-shape_8", + "fields": { + "parent": "srd_druid_wild-shape", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_ability-score-improvement_12", + "fields": { + "parent": "srd_fighter_ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_ability-score-improvement_14", + "fields": { + "parent": "srd_fighter_ability-score-improvement", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_ability-score-improvement_16", + "fields": { + "parent": "srd_fighter_ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_ability-score-improvement_19", + "fields": { + "parent": "srd_fighter_ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_ability-score-improvement_4", + "fields": { + "parent": "srd_fighter_ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_ability-score-improvement_6", + "fields": { + "parent": "srd_fighter_ability-score-improvement", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_ability-score-improvement_8", + "fields": { + "parent": "srd_fighter_ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_action-surge_17", + "fields": { + "parent": "srd_fighter_action-surge", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_action-surge_2", + "fields": { + "parent": "srd_fighter_action-surge", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_extra-attack_11", + "fields": { + "parent": "srd_fighter_extra-attack", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_extra-attack_20", + "fields": { + "parent": "srd_fighter_extra-attack", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_extra-attack_5", + "fields": { + "parent": "srd_fighter_extra-attack", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_fighting-style_1", + "fields": { + "parent": "srd_fighter_fighting-style", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_indomitable_13", + "fields": { + "parent": "srd_fighter_indomitable", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_indomitable_17", + "fields": { + "parent": "srd_fighter_indomitable", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_indomitable_9", + "fields": { + "parent": "srd_fighter_indomitable", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_martial-archetype_3", + "fields": { + "parent": "srd_fighter_martial-archetype", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_fighter_second-wind_1", + "fields": { + "parent": "srd_fighter_second-wind", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_hunter_defensive-tactics_7", + "fields": { + "parent": "srd_hunter_defensive-tactics", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_hunter_hunters-prey_3", + "fields": { + "parent": "srd_hunter_hunters-prey", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_hunter_multiattack_11", + "fields": { + "parent": "srd_hunter_multiattack", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_hunter_superior-hunters-defense_15", + "fields": { + "parent": "srd_hunter_superior-hunters-defense", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_life-domain_blessed-healer_6", + "fields": { + "parent": "srd_life-domain_blessed-healer", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_life-domain_bonus-proficiency_1", + "fields": { + "parent": "srd_life-domain_bonus-proficiency", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_life-domain_channel-divinity-preserve-life_2", + "fields": { + "parent": "srd_life-domain_channel-divinity-preserve-life", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_life-domain_disciple-of-life_1", + "fields": { + "parent": "srd_life-domain_disciple-of-life", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_life-domain_divine-strike_8", + "fields": { + "parent": "srd_life-domain_divine-strike", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_life-domain_life-domain-spells-table_1", + "fields": { + "parent": "srd_life-domain_life-domain-spells-table", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_life-domain_supreme-healing_17", + "fields": { + "parent": "srd_life-domain_supreme-healing", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_ability-score-improvement_12", + "fields": { + "parent": "srd_monk_ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_ability-score-improvement_16", + "fields": { + "parent": "srd_monk_ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_ability-score-improvement_19", + "fields": { + "parent": "srd_monk_ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_ability-score-improvement_4", + "fields": { + "parent": "srd_monk_ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_ability-score-improvement_8", + "fields": { + "parent": "srd_monk_ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_deflect-missiles_3", + "fields": { + "parent": "srd_monk_deflect-missiles", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_diamond-soul_14", + "fields": { + "parent": "srd_monk_diamond-soul", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_empty-body_18", + "fields": { + "parent": "srd_monk_empty-body", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_evasion_7", + "fields": { + "parent": "srd_monk_evasion", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_extra-attack_5", + "fields": { + "parent": "srd_monk_extra-attack", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_ki-empowered-strikes_6", + "fields": { + "parent": "srd_monk_ki-empowered-strikes", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_ki_2", + "fields": { + "parent": "srd_monk_ki", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_martial-arts_1", + "fields": { + "parent": "srd_monk_martial-arts", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_monastic-tradition_3", + "fields": { + "parent": "srd_monk_monastic-tradition", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_perfect-self_20", + "fields": { + "parent": "srd_monk_perfect-self", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_purity-of-body_10", + "fields": { + "parent": "srd_monk_purity-of-body", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_slow-fall_4", + "fields": { + "parent": "srd_monk_slow-fall", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_stillness-of-mind_7", + "fields": { + "parent": "srd_monk_stillness-of-mind", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_stunning-strike_5", + "fields": { + "parent": "srd_monk_stunning-strike", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_timeless-body_15", + "fields": { + "parent": "srd_monk_timeless-body", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_tongue-of-the-sun-and-moon_13", + "fields": { + "parent": "srd_monk_tongue-of-the-sun-and-moon", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_unarmored-defense_1", + "fields": { + "parent": "srd_monk_unarmored-defense", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_unarmored-movement_2", + "fields": { + "parent": "srd_monk_unarmored-movement", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_monk_unarmored-movement_9", + "fields": { + "parent": "srd_monk_unarmored-movement", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_oath-of-devotion_aura-of-devotion_18", + "fields": { + "parent": "srd_oath-of-devotion_aura-of-devotion", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_oath-of-devotion_aura-of-devotion_7", + "fields": { + "parent": "srd_oath-of-devotion_aura-of-devotion", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_oath-of-devotion_channel-divinity_3", + "fields": { + "parent": "srd_oath-of-devotion_channel-divinity", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_oath-of-devotion_holy-nimbus_20", + "fields": { + "parent": "srd_oath-of-devotion_holy-nimbus", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_oath-of-devotion_oath-spells_13", + "fields": { + "parent": "srd_oath-of-devotion_oath-spells", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_oath-of-devotion_oath-spells_17", + "fields": { + "parent": "srd_oath-of-devotion_oath-spells", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_oath-of-devotion_oath-spells_3", + "fields": { + "parent": "srd_oath-of-devotion_oath-spells", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_oath-of-devotion_oath-spells_5", + "fields": { + "parent": "srd_oath-of-devotion_oath-spells", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_oath-of-devotion_oath-spells_9", + "fields": { + "parent": "srd_oath-of-devotion_oath-spells", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_oath-of-devotion_purity-of-spirit_15", + "fields": { + "parent": "srd_oath-of-devotion_purity-of-spirit", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_oath-of-devotion_tenets-of-devotion_3", + "fields": { + "parent": "srd_oath-of-devotion_tenets-of-devotion", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_ability-score-improvement_12", + "fields": { + "parent": "srd_paladin_ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_ability-score-improvement_16", + "fields": { + "parent": "srd_paladin_ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_ability-score-improvement_19", + "fields": { + "parent": "srd_paladin_ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_ability-score-improvement_4", + "fields": { + "parent": "srd_paladin_ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_ability-score-improvement_8", + "fields": { + "parent": "srd_paladin_ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_aura-of-courage_10", + "fields": { + "parent": "srd_paladin_aura-of-courage", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_aura-of-courage_18", + "fields": { + "parent": "srd_paladin_aura-of-courage", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_aura-of-protection_18", + "fields": { + "parent": "srd_paladin_aura-of-protection", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_aura-of-protection_6", + "fields": { + "parent": "srd_paladin_aura-of-protection", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_cleansing-touch_14", + "fields": { + "parent": "srd_paladin_cleansing-touch", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_divine-health_3", + "fields": { + "parent": "srd_paladin_divine-health", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_divine-sense_1", + "fields": { + "parent": "srd_paladin_divine-sense", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_divine-smite_2", + "fields": { + "parent": "srd_paladin_divine-smite", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_extra-attack_5", + "fields": { + "parent": "srd_paladin_extra-attack", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_fighting-style_2", + "fields": { + "parent": "srd_paladin_fighting-style", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_improved-divine-smite_11", + "fields": { + "parent": "srd_paladin_improved-divine-smite", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_lay-on-hands_1", + "fields": { + "parent": "srd_paladin_lay-on-hands", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_sacred-oath_3", + "fields": { + "parent": "srd_paladin_sacred-oath", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_paladin_spellcasting_2", + "fields": { + "parent": "srd_paladin_spellcasting", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_path-of-the-berserker_frenzy_3", + "fields": { + "parent": "srd_path-of-the-berserker_frenzy", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_path-of-the-berserker_intimidating-presence_10", + "fields": { + "parent": "srd_path-of-the-berserker_intimidating-presence", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_path-of-the-berserker_mindless-rage_6", + "fields": { + "parent": "srd_path-of-the-berserker_mindless-rage", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_path-of-the-berserker_retaliation_14", + "fields": { + "parent": "srd_path-of-the-berserker_retaliation", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_ability-score-improvement_12", + "fields": { + "parent": "srd_ranger_ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_ability-score-improvement_16", + "fields": { + "parent": "srd_ranger_ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_ability-score-improvement_19", + "fields": { + "parent": "srd_ranger_ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_ability-score-improvement_4", + "fields": { + "parent": "srd_ranger_ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_ability-score-improvement_8", + "fields": { + "parent": "srd_ranger_ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_extra-attack_5", + "fields": { + "parent": "srd_ranger_extra-attack", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_favored-enemy_1", + "fields": { + "parent": "srd_ranger_favored-enemy", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_favored-enemy_14", + "fields": { + "parent": "srd_ranger_favored-enemy", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_favored-enemy_6", + "fields": { + "parent": "srd_ranger_favored-enemy", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_feral-senses_18", + "fields": { + "parent": "srd_ranger_feral-senses", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_fighting-style_2", + "fields": { + "parent": "srd_ranger_fighting-style", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_foe-slayer_20", + "fields": { + "parent": "srd_ranger_foe-slayer", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_hide-in-plain-sight_10", + "fields": { + "parent": "srd_ranger_hide-in-plain-sight", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_lands-stride_8", + "fields": { + "parent": "srd_ranger_lands-stride", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_natural-explorer_1", + "fields": { + "parent": "srd_ranger_natural-explorer", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_natural-explorer_10", + "fields": { + "parent": "srd_ranger_natural-explorer", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_natural-explorer_6", + "fields": { + "parent": "srd_ranger_natural-explorer", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_primeval-awareness_3", + "fields": { + "parent": "srd_ranger_primeval-awareness", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_ranger-archetype_3", + "fields": { + "parent": "srd_ranger_ranger-archetype", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_spellcasting_2", + "fields": { + "parent": "srd_ranger_spellcasting", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_ranger_vanish_14", + "fields": { + "parent": "srd_ranger_vanish", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_ability-score-improvement_10", + "fields": { + "parent": "srd_rogue_ability-score-improvement", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_ability-score-improvement_12", + "fields": { + "parent": "srd_rogue_ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_ability-score-improvement_16", + "fields": { + "parent": "srd_rogue_ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_ability-score-improvement_19", + "fields": { + "parent": "srd_rogue_ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_ability-score-improvement_4", + "fields": { + "parent": "srd_rogue_ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_ability-score-improvement_8", + "fields": { + "parent": "srd_rogue_ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_blindsense_14", + "fields": { + "parent": "srd_rogue_blindsense", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_cunning-action_2", + "fields": { + "parent": "srd_rogue_cunning-action", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_elusive_18", + "fields": { + "parent": "srd_rogue_elusive", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_evasion_7", + "fields": { + "parent": "srd_rogue_evasion", + "level": 7 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_expertise_1", + "fields": { + "parent": "srd_rogue_expertise", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_expertise_6", + "fields": { + "parent": "srd_rogue_expertise", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_reliable-talent_11", + "fields": { + "parent": "srd_rogue_reliable-talent", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_roguish-archetype_3", + "fields": { + "parent": "srd_rogue_roguish-archetype", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_slippery-mind_15", + "fields": { + "parent": "srd_rogue_slippery-mind", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_sneak-attack_1", + "fields": { + "parent": "srd_rogue_sneak-attack", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_stroke-of-luck_20", + "fields": { + "parent": "srd_rogue_stroke-of-luck", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_thieves-cant_1", + "fields": { + "parent": "srd_rogue_thieves-cant", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_rogue_uncanny-dodge_5", + "fields": { + "parent": "srd_rogue_uncanny-dodge", + "level": 5 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_school-of-evocation_empowered-evocation_10", + "fields": { + "parent": "srd_school-of-evocation_empowered-evocation", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_school-of-evocation_evocation-savant_2", + "fields": { + "parent": "srd_school-of-evocation_evocation-savant", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_school-of-evocation_overchannel_14", + "fields": { + "parent": "srd_school-of-evocation_overchannel", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_school-of-evocation_potent-cantrip_6", + "fields": { + "parent": "srd_school-of-evocation_potent-cantrip", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_school-of-evocation_sculpt-spells_2", + "fields": { + "parent": "srd_school-of-evocation_sculpt-spells", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_sorcerer_ability-score-improvement_12", + "fields": { + "parent": "srd_sorcerer_ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_sorcerer_ability-score-improvement_16", + "fields": { + "parent": "srd_sorcerer_ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_sorcerer_ability-score-improvement_19", + "fields": { + "parent": "srd_sorcerer_ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_sorcerer_ability-score-improvement_4", + "fields": { + "parent": "srd_sorcerer_ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_sorcerer_ability-score-improvement_8", + "fields": { + "parent": "srd_sorcerer_ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_sorcerer_font-of-magic_2", + "fields": { + "parent": "srd_sorcerer_font-of-magic", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_sorcerer_metamagic_10", + "fields": { + "parent": "srd_sorcerer_metamagic", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_sorcerer_metamagic_17", + "fields": { + "parent": "srd_sorcerer_metamagic", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_sorcerer_metamagic_3", + "fields": { + "parent": "srd_sorcerer_metamagic", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_sorcerer_sorcerous-origin_1", + "fields": { + "parent": "srd_sorcerer_sorcerous-origin", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_sorcerer_sorcerous-restoration_20", + "fields": { + "parent": "srd_sorcerer_sorcerous-restoration", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_sorcerer_spellcasting_1", + "fields": { + "parent": "srd_sorcerer_spellcasting", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_the-fiend_dark-ones-blessing_1", + "fields": { + "parent": "srd_the-fiend_dark-ones-blessing", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_the-fiend_dark-ones-own-luck_6", + "fields": { + "parent": "srd_the-fiend_dark-ones-own-luck", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_the-fiend_expanded-spell-list_1", + "fields": { + "parent": "srd_the-fiend_expanded-spell-list", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_the-fiend_fiendish-resilience_10", + "fields": { + "parent": "srd_the-fiend_fiendish-resilience", + "level": 10 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_the-fiend_hurl-through-hell_14", + "fields": { + "parent": "srd_the-fiend_hurl-through-hell", + "level": 14 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_thief_fast-hands_3", + "fields": { + "parent": "srd_thief_fast-hands", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_thief_second-story-work_3", + "fields": { + "parent": "srd_thief_second-story-work", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_thief_supreme-sneak_9", + "fields": { + "parent": "srd_thief_supreme-sneak", + "level": 9 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_thief_thiefs-reflexes_17", + "fields": { + "parent": "srd_thief_thiefs-reflexes", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_thief_use-magic-device_13", + "fields": { + "parent": "srd_thief_use-magic-device", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_ability-score-improvement_12", + "fields": { + "parent": "srd_warlock_ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_ability-score-improvement_19", + "fields": { + "parent": "srd_warlock_ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_ability-score-improvement_4", + "fields": { + "parent": "srd_warlock_ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_ability-score-improvement_8", + "fields": { + "parent": "srd_warlock_ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_eldritch-invocation-list_2", + "fields": { + "parent": "srd_warlock_eldritch-invocation-list", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_eldritch-invocations_2", + "fields": { + "parent": "srd_warlock_eldritch-invocations", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_eldritch-master_20", + "fields": { + "parent": "srd_warlock_eldritch-master", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_mystic-arcanum_11", + "fields": { + "parent": "srd_warlock_mystic-arcanum", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_mystic-arcanum_13", + "fields": { + "parent": "srd_warlock_mystic-arcanum", + "level": 13 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_mystic-arcanum_15", + "fields": { + "parent": "srd_warlock_mystic-arcanum", + "level": 15 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_mystic-arcanum_17", + "fields": { + "parent": "srd_warlock_mystic-arcanum", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_otherworldly-patron_1", + "fields": { + "parent": "srd_warlock_otherworldly-patron", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_pact-boon_3", + "fields": { + "parent": "srd_warlock_pact-boon", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_warlock_pact-magic_1", + "fields": { + "parent": "srd_warlock_pact-magic", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_way-of-the-open-hand_open-hand-technique_3", + "fields": { + "parent": "srd_way-of-the-open-hand_open-hand-technique", + "level": 3 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_way-of-the-open-hand_quivering-palm_17", + "fields": { + "parent": "srd_way-of-the-open-hand_quivering-palm", + "level": 17 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_way-of-the-open-hand_tranquility_11", + "fields": { + "parent": "srd_way-of-the-open-hand_tranquility", + "level": 11 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_way-of-the-open-hand_wholeness-of-body_6", + "fields": { + "parent": "srd_way-of-the-open-hand_wholeness-of-body", + "level": 6 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_wizard_ability-score-improvement_12", + "fields": { + "parent": "srd_wizard_ability-score-improvement", + "level": 12 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_wizard_ability-score-improvement_16", + "fields": { + "parent": "srd_wizard_ability-score-improvement", + "level": 16 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_wizard_ability-score-improvement_19", + "fields": { + "parent": "srd_wizard_ability-score-improvement", + "level": 19 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_wizard_ability-score-improvement_4", + "fields": { + "parent": "srd_wizard_ability-score-improvement", + "level": 4 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_wizard_ability-score-improvement_8", + "fields": { + "parent": "srd_wizard_ability-score-improvement", + "level": 8 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_wizard_arcane-recovery_1", + "fields": { + "parent": "srd_wizard_arcane-recovery", + "level": 1 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_wizard_arcane-tradition_2", + "fields": { + "parent": "srd_wizard_arcane-tradition", + "level": 2 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_wizard_signature-spells_20", + "fields": { + "parent": "srd_wizard_signature-spells", + "level": 20 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_wizard_spell-mastery_18", + "fields": { + "parent": "srd_wizard_spell-mastery", + "level": 18 + } +}, +{ + "model": "api_v2.classfeatureitem", + "pk": "srd_wizard_spellcasting_1", + "fields": { + "parent": "srd_wizard_spellcasting", + "level": 1 + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/Feat.json b/data/v2/wizards-of-the-coast/srd/Feat.json index df2846c4..649e786c 100644 --- a/data/v2/wizards-of-the-coast/srd/Feat.json +++ b/data/v2/wizards-of-the-coast/srd/Feat.json @@ -1,12 +1,12 @@ [ - { - "model": "api_v2.feat", - "pk": "srd_grappler", - "fields": { - "name": "Grappler", - "desc": "You've developed the skills necessary to hold your own in close-quarters grappling. You gain the following benefits:\r\n* You have advantage on attack rolls against a creature you are grappling.\r\n* You can use your action to try to pin a creature grappled by you. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", - "prerequisite": "Strength 13 or higher", - "document": "srd" - } +{ + "model": "api_v2.feat", + "pk": "srd_grappler", + "fields": { + "name": "Grappler", + "desc": "You've developed the skills necessary to hold your own in close-quarters grappling. You gain the following benefits:\r\n* You have advantage on attack rolls against a creature you are grappling.\r\n* You can use your action to try to pin a creature grappled by you. The creature makes a Strength or Dexterity saving throw against your maneuver DC. On a failure, you and the creature are both restrained until the grapple ends.", + "prerequisite": "Strength 13 or higher", + "document": "srd" } -] \ No newline at end of file +} +] diff --git a/data/v2/wizards-of-the-coast/srd/Race.json b/data/v2/wizards-of-the-coast/srd/Race.json index 2874b65a..c647a39d 100644 --- a/data/v2/wizards-of-the-coast/srd/Race.json +++ b/data/v2/wizards-of-the-coast/srd/Race.json @@ -1,132 +1,132 @@ [ - { - "model": "api_v2.race", - "pk": "srd_dragonborn", - "fields": { - "name": "Dragonborn", - "desc": "Your draconic heritage manifests in a variety of traits you share with other dragonborn.", - "document": "srd", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "srd_dwarf", - "fields": { - "name": "Dwarf", - "desc": "Your dwarf character has an assortment of inborn abilities, part and parcel of dwarven nature.", - "document": "srd", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "srd_elf", - "fields": { - "name": "Elf", - "desc": "Your elf character has a variety of natural abilities, the result of thousands of years of elven refinement.", - "document": "srd", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "srd_gnome", - "fields": { - "name": "Gnome", - "desc": "Your gnome character has certain characteristics in common with all other gnomes.", - "document": "srd", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "srd_half-elf", - "fields": { - "name": "Half-Elf", - "desc": "Your half-elf character has some qualities in common with elves and some that are unique to half-elves.", - "document": "srd", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "srd_half-orc", - "fields": { - "name": "Half-Orc", - "desc": "Your half-orc character has certain traits deriving from your orc ancestry.", - "document": "srd", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "srd_halfling", - "fields": { - "name": "Halfling", - "desc": "Your halfling character has a number of traits in common with all other halflings.", - "document": "srd", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "srd_high-elf", - "fields": { - "name": "High Elf", - "desc": "As a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races.", - "document": "srd", - "subrace_of": "srd_elf" - } - }, - { - "model": "api_v2.race", - "pk": "srd_hill-dwarf", - "fields": { - "name": "Hill Dwarf", - "desc": "As a hill dwarf, you have keen senses, deep intuition, and remarkable resilience.", - "document": "srd", - "subrace_of": "srd_dwarf" - } - }, - { - "model": "api_v2.race", - "pk": "srd_human", - "fields": { - "name": "Human", - "desc": "It’s hard to make generalizations about humans, but your human character has these traits.", - "document": "srd", - "subrace_of": null - } - }, - { - "model": "api_v2.race", - "pk": "srd_lightfoot", - "fields": { - "name": "Lightfoot", - "desc": "As a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others. Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.", - "document": "srd", - "subrace_of": "srd_halfling" - } - }, - { - "model": "api_v2.race", - "pk": "srd_rock-gnome", - "fields": { - "name": "Rock Gnome", - "desc": "As a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.", - "document": "srd", - "subrace_of": "srd_gnome" - } - }, - { - "model": "api_v2.race", - "pk": "srd_tiefling", - "fields": { - "name": "Tiefling", - "desc": "Tieflings share certain racial traits as a result of their infernal descent.", - "document": "srd", - "subrace_of": null - } +{ + "model": "api_v2.race", + "pk": "srd_dragonborn", + "fields": { + "name": "Dragonborn", + "desc": "Your draconic heritage manifests in a variety of traits you share with other dragonborn.", + "document": "srd", + "subrace_of": null } -] \ No newline at end of file +}, +{ + "model": "api_v2.race", + "pk": "srd_dwarf", + "fields": { + "name": "Dwarf", + "desc": "Your dwarf character has an assortment of inborn abilities, part and parcel of dwarven nature.", + "document": "srd", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "srd_elf", + "fields": { + "name": "Elf", + "desc": "Your elf character has a variety of natural abilities, the result of thousands of years of elven refinement.", + "document": "srd", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "srd_gnome", + "fields": { + "name": "Gnome", + "desc": "Your gnome character has certain characteristics in common with all other gnomes.", + "document": "srd", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "srd_half-elf", + "fields": { + "name": "Half-Elf", + "desc": "Your half-elf character has some qualities in common with elves and some that are unique to half-elves.", + "document": "srd", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "srd_half-orc", + "fields": { + "name": "Half-Orc", + "desc": "Your half-orc character has certain traits deriving from your orc ancestry.", + "document": "srd", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "srd_halfling", + "fields": { + "name": "Halfling", + "desc": "Your halfling character has a number of traits in common with all other halflings.", + "document": "srd", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "srd_high-elf", + "fields": { + "name": "High Elf", + "desc": "As a high elf, you have a keen mind and a mastery of at least the basics of magic. In many fantasy gaming worlds, there are two kinds of high elves. One type is haughty and reclusive, believing themselves to be superior to non-elves and even other elves. The other type is more common and more friendly, and often encountered among humans and other races.", + "document": "srd", + "subrace_of": "srd_elf" + } +}, +{ + "model": "api_v2.race", + "pk": "srd_hill-dwarf", + "fields": { + "name": "Hill Dwarf", + "desc": "As a hill dwarf, you have keen senses, deep intuition, and remarkable resilience.", + "document": "srd", + "subrace_of": "srd_dwarf" + } +}, +{ + "model": "api_v2.race", + "pk": "srd_human", + "fields": { + "name": "Human", + "desc": "It’s hard to make generalizations about humans, but your human character has these traits.", + "document": "srd", + "subrace_of": null + } +}, +{ + "model": "api_v2.race", + "pk": "srd_lightfoot", + "fields": { + "name": "Lightfoot", + "desc": "As a lightfoot halfling, you can easily hide from notice, even using other people as cover. You're inclined to be affable and get along well with others. Lightfoots are more prone to wanderlust than other halflings, and often dwell alongside other races or take up a nomadic life.", + "document": "srd", + "subrace_of": "srd_halfling" + } +}, +{ + "model": "api_v2.race", + "pk": "srd_rock-gnome", + "fields": { + "name": "Rock Gnome", + "desc": "As a rock gnome, you have a natural inventiveness and hardiness beyond that of other gnomes.", + "document": "srd", + "subrace_of": "srd_gnome" + } +}, +{ + "model": "api_v2.race", + "pk": "srd_tiefling", + "fields": { + "name": "Tiefling", + "desc": "Tieflings share certain racial traits as a result of their infernal descent.", + "document": "srd", + "subrace_of": null + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/RaceTrait.json b/data/v2/wizards-of-the-coast/srd/RaceTrait.json index 1c6faf74..3dff8699 100644 --- a/data/v2/wizards-of-the-coast/srd/RaceTrait.json +++ b/data/v2/wizards-of-the-coast/srd/RaceTrait.json @@ -1,932 +1,932 @@ [ - { - "model": "api_v2.racetrait", - "pk": 5, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", - "type": null, - "parent": "srd_half-orc" - } - }, - { - "model": "api_v2.racetrait", - "pk": 6, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "srd_half-orc" - } - }, - { - "model": "api_v2.racetrait", - "pk": 7, - "fields": { - "name": "Darkvision", - "desc": "Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "srd_half-orc" - } - }, - { - "model": "api_v2.racetrait", - "pk": 8, - "fields": { - "name": "Age", - "desc": "Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.", - "type": null, - "parent": "srd_half-orc" - } - }, - { - "model": "api_v2.racetrait", - "pk": 9, - "fields": { - "name": "Alignment", - "desc": "Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.", - "type": null, - "parent": "srd_half-orc" - } - }, - { - "model": "api_v2.racetrait", - "pk": 10, - "fields": { - "name": "Size", - "desc": "Half-orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.", - "type": null, - "parent": "srd_half-orc" - } - }, - { - "model": "api_v2.racetrait", - "pk": 11, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.", - "type": null, - "parent": "srd_half-orc" - } - }, - { - "model": "api_v2.racetrait", - "pk": 12, - "fields": { - "name": "Menacing", - "desc": "You gain proficiency in the Intimidation skill.", - "type": null, - "parent": "srd_half-orc" - } - }, - { - "model": "api_v2.racetrait", - "pk": 13, - "fields": { - "name": "Relentless Endurance", - "desc": "When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.", - "type": null, - "parent": "srd_half-orc" - } - }, - { - "model": "api_v2.racetrait", - "pk": 14, - "fields": { - "name": "Savage Attacks", - "desc": "When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.", - "type": null, - "parent": "srd_half-orc" - } - }, - { - "model": "api_v2.racetrait", - "pk": 15, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 1, and your Charisma score increases by 2.", - "type": null, - "parent": "srd_tiefling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 16, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "srd_tiefling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 17, - "fields": { - "name": "Darkvision", - "desc": "Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "srd_tiefling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 18, - "fields": { - "name": "Age", - "desc": "Tieflings mature at the same rate as humans but live a few years longer.", - "type": null, - "parent": "srd_tiefling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 19, - "fields": { - "name": "Alignment", - "desc": "Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.", - "type": null, - "parent": "srd_tiefling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 20, - "fields": { - "name": "Size", - "desc": "Tieflings are about the same size and build as humans. Your size is Medium.", - "type": null, - "parent": "srd_tiefling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 21, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Infernal.", - "type": null, - "parent": "srd_tiefling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 22, - "fields": { - "name": "Hellish Resistance", - "desc": "You have resistance to fire damage.", - "type": null, - "parent": "srd_tiefling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 23, - "fields": { - "name": "Infernal Legacy", - "desc": "You know the thaumaturgy cantrip. When you reach 3rd level, you can cast the hellish rebuke spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the darkness spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", - "type": null, - "parent": "srd_tiefling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 24, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.", - "type": null, - "parent": "srd_half-elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 25, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "srd_half-elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 26, - "fields": { - "name": "Darkvision", - "desc": "Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "srd_half-elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 27, - "fields": { - "name": "Age", - "desc": "Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.", - "type": null, - "parent": "srd_half-elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 28, - "fields": { - "name": "Alignment", - "desc": "Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.", - "type": null, - "parent": "srd_half-elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 29, - "fields": { - "name": "Size", - "desc": "Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.", - "type": null, - "parent": "srd_half-elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 30, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common, Elvish, and one extra language of your choice.", - "type": null, - "parent": "srd_half-elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 31, - "fields": { - "name": "Fey Ancestry", - "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", - "type": null, - "parent": "srd_half-elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 32, - "fields": { - "name": "Skill Versatility", - "desc": "You gain proficiency in two skills of your choice.", - "type": null, - "parent": "srd_half-elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 33, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 2.", - "type": null, - "parent": "srd_gnome" - } - }, - { - "model": "api_v2.racetrait", - "pk": 34, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 25 feet.", - "type": null, - "parent": "srd_gnome" - } - }, - { - "model": "api_v2.racetrait", - "pk": 35, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "srd_gnome" - } - }, - { - "model": "api_v2.racetrait", - "pk": 36, - "fields": { - "name": "Age", - "desc": "Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.", - "type": null, - "parent": "srd_gnome" - } - }, - { - "model": "api_v2.racetrait", - "pk": 37, - "fields": { - "name": "Alignment", - "desc": "Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good-hearted, and even the tricksters among them are more playful than vicious.", - "type": null, - "parent": "srd_gnome" - } - }, - { - "model": "api_v2.racetrait", - "pk": 38, - "fields": { - "name": "Size", - "desc": "Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.", - "type": null, - "parent": "srd_gnome" - } - }, - { - "model": "api_v2.racetrait", - "pk": 39, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.", - "type": null, - "parent": "srd_gnome" - } - }, - { - "model": "api_v2.racetrait", - "pk": 40, - "fields": { - "name": "Gnome Cunning", - "desc": "You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.", - "type": null, - "parent": "srd_gnome" - } - }, - { - "model": "api_v2.racetrait", - "pk": 41, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 1.", - "type": null, - "parent": "srd_rock-gnome" - } - }, - { - "model": "api_v2.racetrait", - "pk": 42, - "fields": { - "name": "Artificer's Lore", - "desc": "Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.", - "type": null, - "parent": "srd_rock-gnome" - } - }, - { - "model": "api_v2.racetrait", - "pk": 43, - "fields": { - "name": "Tinker", - "desc": "You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.\r\n\r\nWhen you create a device, choose one of the following options:\r\n* _Clockwork Toy._ This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.\r\n* _Fire Starter._ The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.\r\n* _Music Box._ When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.", - "type": null, - "parent": "srd_rock-gnome" - } - }, - { - "model": "api_v2.racetrait", - "pk": 44, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Strength score increases by 2, and your Charisma score increases by 1.", - "type": null, - "parent": "srd_dragonborn" - } - }, - { - "model": "api_v2.racetrait", - "pk": 45, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "srd_dragonborn" - } - }, - { - "model": "api_v2.racetrait", - "pk": 46, - "fields": { - "name": "Age", - "desc": "Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.", - "type": null, - "parent": "srd_dragonborn" - } - }, - { - "model": "api_v2.racetrait", - "pk": 47, - "fields": { - "name": "Alignment", - "desc": "Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.", - "type": null, - "parent": "srd_dragonborn" - } - }, - { - "model": "api_v2.racetrait", - "pk": 48, - "fields": { - "name": "Size", - "desc": "Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.", - "type": null, - "parent": "srd_dragonborn" - } - }, - { - "model": "api_v2.racetrait", - "pk": 49, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.", - "type": null, - "parent": "srd_dragonborn" - } - }, - { - "model": "api_v2.racetrait", - "pk": 50, - "fields": { - "name": "Draconic Ancestry table", - "desc": "| Dragon | Damage Type | Breath Weapon |\r\n|--------------|-------------------|------------------------------|\r\n| Black | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Blue | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Brass | Fire | 5 by 30 ft. line (Dex. save) |\r\n| Bronze | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Copper | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Gold | Fire | 15 ft. cone (Dex. save) |\r\n| Green | Poison | 15 ft. cone (Con. save) |\r\n| Red | Fire | 15 ft. cone (Dex. save) |\r\n| Silver | Cold | 15 ft. cone (Con. save) |\r\n| White | Cold | 15 ft. cone (Con. save) |", - "type": null, - "parent": "srd_dragonborn" - } - }, - { - "model": "api_v2.racetrait", - "pk": 51, - "fields": { - "name": "Draconic Ancestry", - "desc": "You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.", - "type": null, - "parent": "srd_dragonborn" - } - }, - { - "model": "api_v2.racetrait", - "pk": 52, - "fields": { - "name": "Breath Weapon", - "desc": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.\r\nWhen you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.", - "type": null, - "parent": "srd_dragonborn" - } - }, - { - "model": "api_v2.racetrait", - "pk": 53, - "fields": { - "name": "Damage Resistance", - "desc": "You have resistance to the damage type associated with your draconic ancestry.", - "type": null, - "parent": "srd_dragonborn" - } - }, - { - "model": "api_v2.racetrait", - "pk": 54, - "fields": { - "name": "Ability Score Increase", - "desc": "Your ability scores each increase by 1.", - "type": null, - "parent": "srd_human" - } - }, - { - "model": "api_v2.racetrait", - "pk": 55, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "srd_human" - } - }, - { - "model": "api_v2.racetrait", - "pk": 56, - "fields": { - "name": "Age", - "desc": "Humans reach adulthood in their late teens and live less than a century.", - "type": null, - "parent": "srd_human" - } - }, - { - "model": "api_v2.racetrait", - "pk": 57, - "fields": { - "name": "Alignment", - "desc": "Humans tend toward no particular alignment. The best and the worst are found among them.", - "type": null, - "parent": "srd_human" - } - }, - { - "model": "api_v2.racetrait", - "pk": 58, - "fields": { - "name": "Size", - "desc": "Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.", - "type": null, - "parent": "srd_human" - } - }, - { - "model": "api_v2.racetrait", - "pk": 59, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.", - "type": null, - "parent": "srd_human" - } - }, - { - "model": "api_v2.racetrait", - "pk": 60, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "srd_halfling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 61, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 25 feet.", - "type": null, - "parent": "srd_halfling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 62, - "fields": { - "name": "Age", - "desc": "A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.", - "type": null, - "parent": "srd_halfling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 63, - "fields": { - "name": "Alignment", - "desc": "Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.", - "type": null, - "parent": "srd_halfling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 64, - "fields": { - "name": "Size", - "desc": "Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.", - "type": null, - "parent": "srd_halfling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 65, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.", - "type": null, - "parent": "srd_halfling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 66, - "fields": { - "name": "Lucky", - "desc": "When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.", - "type": null, - "parent": "srd_halfling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 67, - "fields": { - "name": "Brave", - "desc": "You have advantage on saving throws against being frightened.", - "type": null, - "parent": "srd_halfling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 68, - "fields": { - "name": "Halfling Nimbleness", - "desc": "You can move through the space of any creature that is of a size larger than yours.", - "type": null, - "parent": "srd_halfling" - } - }, - { - "model": "api_v2.racetrait", - "pk": 69, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Charisma score increases by 1.", - "type": null, - "parent": "srd_lightfoot" - } - }, - { - "model": "api_v2.racetrait", - "pk": 70, - "fields": { - "name": "Naturally Stealthy", - "desc": "You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", - "type": null, - "parent": "srd_lightfoot" - } - }, - { - "model": "api_v2.racetrait", - "pk": 71, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Dexterity score increases by 2.", - "type": null, - "parent": "srd_elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 72, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 30 feet.", - "type": null, - "parent": "srd_elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 73, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "srd_elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 74, - "fields": { - "name": "Age", - "desc": "Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.", - "type": null, - "parent": "srd_elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 75, - "fields": { - "name": "Alignment", - "desc": "Elves love freedom, variety, and self-­expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others’ freedom as well as their own, and they are more often good than not.", - "type": null, - "parent": "srd_elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 76, - "fields": { - "name": "Size", - "desc": "Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.", - "type": null, - "parent": "srd_elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 77, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.", - "type": null, - "parent": "srd_elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 78, - "fields": { - "name": "Keen Senses", - "desc": "You have proficiency in the Perception skill.", - "type": null, - "parent": "srd_elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 79, - "fields": { - "name": "Fey Ancestry", - "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", - "type": null, - "parent": "srd_elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 80, - "fields": { - "name": "Trance", - "desc": "Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is “trance.”) While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", - "type": null, - "parent": "srd_elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 81, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Intelligence score increases by 1.", - "type": null, - "parent": "srd_high-elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 82, - "fields": { - "name": "Elf Weapon Training", - "desc": "You have proficiency with the longsword, shortsword, shortbow, and longbow.", - "type": null, - "parent": "srd_high-elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 83, - "fields": { - "name": "Cantrip", - "desc": "You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.", - "type": null, - "parent": "srd_high-elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 84, - "fields": { - "name": "Extra Language", - "desc": "You can speak, read, and write one extra language of your choice.", - "type": null, - "parent": "srd_high-elf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 85, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Constitution score increases by 2.", - "type": null, - "parent": "srd_dwarf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 86, - "fields": { - "name": "Speed", - "desc": "Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.", - "type": null, - "parent": "srd_dwarf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 87, - "fields": { - "name": "Darkvision", - "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", - "type": null, - "parent": "srd_dwarf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 88, - "fields": { - "name": "Age", - "desc": "Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.", - "type": null, - "parent": "srd_dwarf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 89, - "fields": { - "name": "Alignment", - "desc": "Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.", - "type": null, - "parent": "srd_dwarf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 90, - "fields": { - "name": "Size", - "desc": "Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.", - "type": null, - "parent": "srd_dwarf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 91, - "fields": { - "name": "Languages", - "desc": "You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.", - "type": null, - "parent": "srd_dwarf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 92, - "fields": { - "name": "Dwarven Resilience", - "desc": "You have advantage on saving throws against poison, and you have resistance against poison damage.", - "type": null, - "parent": "srd_dwarf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 93, - "fields": { - "name": "Dwarven Combat Training", - "desc": "You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.", - "type": null, - "parent": "srd_dwarf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 94, - "fields": { - "name": "Tool Proficiency", - "desc": "You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.", - "type": null, - "parent": "srd_dwarf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 95, - "fields": { - "name": "Stonecunning", - "desc": "Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.", - "type": null, - "parent": "srd_dwarf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 96, - "fields": { - "name": "Ability Score Increase", - "desc": "Your Wisdom score increases by 1.", - "type": null, - "parent": "srd_hill-dwarf" - } - }, - { - "model": "api_v2.racetrait", - "pk": 97, - "fields": { - "name": "Dwarven Toughness", - "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", - "type": null, - "parent": "srd_hill-dwarf" - } - } -] \ No newline at end of file +{ + "model": "api_v2.racetrait", + "pk": 5, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2, and your Constitution score increases by 1.", + "type": null, + "parent": "srd_half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 6, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "srd_half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 7, + "fields": { + "name": "Darkvision", + "desc": "Thanks to your orc blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "srd_half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 8, + "fields": { + "name": "Age", + "desc": "Half-orcs mature a little faster than humans, reaching adulthood around age 14. They age noticeably faster and rarely live longer than 75 years.", + "type": null, + "parent": "srd_half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 9, + "fields": { + "name": "Alignment", + "desc": "Half-orcs inherit a tendency toward chaos from their orc parents and are not strongly inclined toward good. Half-orcs raised among orcs and willing to live out their lives among them are usually evil.", + "type": null, + "parent": "srd_half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 10, + "fields": { + "name": "Size", + "desc": "Half-orcs are somewhat larger and bulkier than humans, and they range from 5 to well over 6 feet tall. Your size is Medium.", + "type": null, + "parent": "srd_half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 11, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Orc. Orc is a harsh, grating language with hard consonants. It has no script of its own but is written in the Dwarvish script.", + "type": null, + "parent": "srd_half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 12, + "fields": { + "name": "Menacing", + "desc": "You gain proficiency in the Intimidation skill.", + "type": null, + "parent": "srd_half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 13, + "fields": { + "name": "Relentless Endurance", + "desc": "When you are reduced to 0 hit points but not killed outright, you can drop to 1 hit point instead. You can't use this feature again until you finish a long rest.", + "type": null, + "parent": "srd_half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 14, + "fields": { + "name": "Savage Attacks", + "desc": "When you score a critical hit with a melee weapon attack, you can roll one of the weapon's damage dice one additional time and add it to the extra damage of the critical hit.", + "type": null, + "parent": "srd_half-orc" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 15, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 1, and your Charisma score increases by 2.", + "type": null, + "parent": "srd_tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 16, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "srd_tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 17, + "fields": { + "name": "Darkvision", + "desc": "Thanks to your infernal heritage, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "srd_tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 18, + "fields": { + "name": "Age", + "desc": "Tieflings mature at the same rate as humans but live a few years longer.", + "type": null, + "parent": "srd_tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 19, + "fields": { + "name": "Alignment", + "desc": "Tieflings might not have an innate tendency toward evil, but many of them end up there. Evil or not, an independent nature inclines many tieflings toward a chaotic alignment.", + "type": null, + "parent": "srd_tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 20, + "fields": { + "name": "Size", + "desc": "Tieflings are about the same size and build as humans. Your size is Medium.", + "type": null, + "parent": "srd_tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 21, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Infernal.", + "type": null, + "parent": "srd_tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 22, + "fields": { + "name": "Hellish Resistance", + "desc": "You have resistance to fire damage.", + "type": null, + "parent": "srd_tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 23, + "fields": { + "name": "Infernal Legacy", + "desc": "You know the thaumaturgy cantrip. When you reach 3rd level, you can cast the hellish rebuke spell as a 2nd-level spell once with this trait and regain the ability to do so when you finish a long rest. When you reach 5th level, you can cast the darkness spell once with this trait and regain the ability to do so when you finish a long rest. Charisma is your spellcasting ability for these spells.", + "type": null, + "parent": "srd_tiefling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 24, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 2, and two other ability scores of your choice increase by 1.", + "type": null, + "parent": "srd_half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 25, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "srd_half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 26, + "fields": { + "name": "Darkvision", + "desc": "Thanks to your elf blood, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "srd_half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 27, + "fields": { + "name": "Age", + "desc": "Half-elves mature at the same rate humans do and reach adulthood around the age of 20. They live much longer than humans, however, often exceeding 180 years.", + "type": null, + "parent": "srd_half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 28, + "fields": { + "name": "Alignment", + "desc": "Half-elves share the chaotic bent of their elven heritage. They value both personal freedom and creative expression, demonstrating neither love of leaders nor desire for followers. They chafe at rules, resent others' demands, and sometimes prove unreliable, or at least unpredictable.", + "type": null, + "parent": "srd_half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 29, + "fields": { + "name": "Size", + "desc": "Half-elves are about the same size as humans, ranging from 5 to 6 feet tall. Your size is Medium.", + "type": null, + "parent": "srd_half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 30, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common, Elvish, and one extra language of your choice.", + "type": null, + "parent": "srd_half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 31, + "fields": { + "name": "Fey Ancestry", + "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", + "type": null, + "parent": "srd_half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 32, + "fields": { + "name": "Skill Versatility", + "desc": "You gain proficiency in two skills of your choice.", + "type": null, + "parent": "srd_half-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 33, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 2.", + "type": null, + "parent": "srd_gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 34, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 25 feet.", + "type": null, + "parent": "srd_gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 35, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "srd_gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 36, + "fields": { + "name": "Age", + "desc": "Gnomes mature at the same rate humans do, and most are expected to settle down into an adult life by around age 40. They can live 350 to almost 500 years.", + "type": null, + "parent": "srd_gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 37, + "fields": { + "name": "Alignment", + "desc": "Gnomes are most often good. Those who tend toward law are sages, engineers, researchers, scholars, investigators, or inventors. Those who tend toward chaos are minstrels, tricksters, wanderers, or fanciful jewelers. Gnomes are good-hearted, and even the tricksters among them are more playful than vicious.", + "type": null, + "parent": "srd_gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 38, + "fields": { + "name": "Size", + "desc": "Gnomes are between 3 and 4 feet tall and average about 40 pounds. Your size is Small.", + "type": null, + "parent": "srd_gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 39, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Gnomish. The Gnomish language, which uses the Dwarvish script, is renowned for its technical treatises and its catalogs of knowledge about the natural world.", + "type": null, + "parent": "srd_gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 40, + "fields": { + "name": "Gnome Cunning", + "desc": "You have advantage on all Intelligence, Wisdom, and Charisma saving throws against magic.", + "type": null, + "parent": "srd_gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 41, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 1.", + "type": null, + "parent": "srd_rock-gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 42, + "fields": { + "name": "Artificer's Lore", + "desc": "Whenever you make an Intelligence (History) check related to magic items, alchemical objects, or technological devices, you can add twice your proficiency bonus, instead of any proficiency bonus you normally apply.", + "type": null, + "parent": "srd_rock-gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 43, + "fields": { + "name": "Tinker", + "desc": "You have proficiency with artisan's tools (tinker's tools). Using those tools, you can spend 1 hour and 10 gp worth of materials to construct a Tiny clockwork device (AC 5, 1 hp). The device ceases to function after 24 hours (unless you spend 1 hour repairing it to keep the device functioning), or when you use your action to dismantle it; at that time, you can reclaim the materials used to create it. You can have up to three such devices active at a time.\r\n\r\nWhen you create a device, choose one of the following options:\r\n* _Clockwork Toy._ This toy is a clockwork animal, monster, or person, such as a frog, mouse, bird, dragon, or soldier. When placed on the ground, the toy moves 5 feet across the ground on each of your turns in a random direction. It makes noises as appropriate to the creature it represents.\r\n* _Fire Starter._ The device produces a miniature flame, which you can use to light a candle, torch, or campfire. Using the device requires your action.\r\n* _Music Box._ When opened, this music box plays a single song at a moderate volume. The box stops playing when it reaches the song's end or when it is closed.", + "type": null, + "parent": "srd_rock-gnome" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 44, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Strength score increases by 2, and your Charisma score increases by 1.", + "type": null, + "parent": "srd_dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 45, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "srd_dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 46, + "fields": { + "name": "Age", + "desc": "Young dragonborn grow quickly. They walk hours after hatching, attain the size and development of a 10-year-old human child by the age of 3, and reach adulthood by 15. They live to be around 80.", + "type": null, + "parent": "srd_dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 47, + "fields": { + "name": "Alignment", + "desc": "Dragonborn tend to extremes, making a conscious choice for one side or the other in the cosmic war between good and evil. Most dragonborn are good, but those who side with evil can be terrible villains.", + "type": null, + "parent": "srd_dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 48, + "fields": { + "name": "Size", + "desc": "Dragonborn are taller and heavier than humans, standing well over 6 feet tall and averaging almost 250 pounds. Your size is Medium.", + "type": null, + "parent": "srd_dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 49, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Draconic. Draconic is thought to be one of the oldest languages and is often used in the study of magic. The language sounds harsh to most other creatures and includes numerous hard consonants and sibilants.", + "type": null, + "parent": "srd_dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 50, + "fields": { + "name": "Draconic Ancestry table", + "desc": "| Dragon | Damage Type | Breath Weapon |\r\n|--------------|-------------------|------------------------------|\r\n| Black | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Blue | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Brass | Fire | 5 by 30 ft. line (Dex. save) |\r\n| Bronze | Lightning | 5 by 30 ft. line (Dex. save) |\r\n| Copper | Acid | 5 by 30 ft. line (Dex. save) |\r\n| Gold | Fire | 15 ft. cone (Dex. save) |\r\n| Green | Poison | 15 ft. cone (Con. save) |\r\n| Red | Fire | 15 ft. cone (Dex. save) |\r\n| Silver | Cold | 15 ft. cone (Con. save) |\r\n| White | Cold | 15 ft. cone (Con. save) |", + "type": null, + "parent": "srd_dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 51, + "fields": { + "name": "Draconic Ancestry", + "desc": "You have draconic ancestry. Choose one type of dragon from the Draconic Ancestry table. Your breath weapon and damage resistance are determined by the dragon type, as shown in the table.", + "type": null, + "parent": "srd_dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 52, + "fields": { + "name": "Breath Weapon", + "desc": "You can use your action to exhale destructive energy. Your draconic ancestry determines the size, shape, and damage type of the exhalation.\r\nWhen you use your breath weapon, each creature in the area of the exhalation must make a saving throw, the type of which is determined by your draconic ancestry. The DC for this saving throw equals 8 + your Constitution modifier + your proficiency bonus. A creature takes 2d6 damage on a failed save, and half as much damage on a successful one. The damage increases to 3d6 at 6th level, 4d6 at 11th level, and 5d6 at 16th level.", + "type": null, + "parent": "srd_dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 53, + "fields": { + "name": "Damage Resistance", + "desc": "You have resistance to the damage type associated with your draconic ancestry.", + "type": null, + "parent": "srd_dragonborn" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 54, + "fields": { + "name": "Ability Score Increase", + "desc": "Your ability scores each increase by 1.", + "type": null, + "parent": "srd_human" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 55, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "srd_human" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 56, + "fields": { + "name": "Age", + "desc": "Humans reach adulthood in their late teens and live less than a century.", + "type": null, + "parent": "srd_human" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 57, + "fields": { + "name": "Alignment", + "desc": "Humans tend toward no particular alignment. The best and the worst are found among them.", + "type": null, + "parent": "srd_human" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 58, + "fields": { + "name": "Size", + "desc": "Humans vary widely in height and build, from barely 5 feet to well over 6 feet tall. Regardless of your position in that range, your size is Medium.", + "type": null, + "parent": "srd_human" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 59, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and one extra language of your choice. Humans typically learn the languages of other peoples they deal with, including obscure dialects. They are fond of sprinkling their speech with words borrowed from other tongues: Orc curses, Elvish musical expressions, Dwarvish military phrases, and so on.", + "type": null, + "parent": "srd_human" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 60, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "srd_halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 61, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 25 feet.", + "type": null, + "parent": "srd_halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 62, + "fields": { + "name": "Age", + "desc": "A halfling reaches adulthood at the age of 20 and generally lives into the middle of his or her second century.", + "type": null, + "parent": "srd_halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 63, + "fields": { + "name": "Alignment", + "desc": "Most halflings are lawful good. As a rule, they are good-hearted and kind, hate to see others in pain, and have no tolerance for oppression. They are also very orderly and traditional, leaning heavily on the support of their community and the comfort of their old ways.", + "type": null, + "parent": "srd_halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 64, + "fields": { + "name": "Size", + "desc": "Halflings average about 3 feet tall and weigh about 40 pounds. Your size is Small.", + "type": null, + "parent": "srd_halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 65, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Halfling. The Halfling language isn't secret, but halflings are loath to share it with others. They write very little, so they don't have a rich body of literature. Their oral tradition, however, is very strong. Almost all halflings speak Common to converse with the people in whose lands they dwell or through which they are traveling.", + "type": null, + "parent": "srd_halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 66, + "fields": { + "name": "Lucky", + "desc": "When you roll a 1 on the d20 for an attack roll, ability check, or saving throw, you can reroll the die and must use the new roll.", + "type": null, + "parent": "srd_halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 67, + "fields": { + "name": "Brave", + "desc": "You have advantage on saving throws against being frightened.", + "type": null, + "parent": "srd_halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 68, + "fields": { + "name": "Halfling Nimbleness", + "desc": "You can move through the space of any creature that is of a size larger than yours.", + "type": null, + "parent": "srd_halfling" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 69, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Charisma score increases by 1.", + "type": null, + "parent": "srd_lightfoot" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 70, + "fields": { + "name": "Naturally Stealthy", + "desc": "You can attempt to hide even when you are obscured only by a creature that is at least one size larger than you.", + "type": null, + "parent": "srd_lightfoot" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 71, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Dexterity score increases by 2.", + "type": null, + "parent": "srd_elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 72, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 30 feet.", + "type": null, + "parent": "srd_elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 73, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to twilit forests and the night sky, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "srd_elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 74, + "fields": { + "name": "Age", + "desc": "Although elves reach physical maturity at about the same age as humans, the elven understanding of adulthood goes beyond physical growth to encompass worldly experience. An elf typically claims adulthood and an adult name around the age of 100 and can live to be 750 years old.", + "type": null, + "parent": "srd_elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 75, + "fields": { + "name": "Alignment", + "desc": "Elves love freedom, variety, and self-­expression, so they lean strongly toward the gentler aspects of chaos. They value and protect others’ freedom as well as their own, and they are more often good than not.", + "type": null, + "parent": "srd_elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 76, + "fields": { + "name": "Size", + "desc": "Elves range from under 5 to over 6 feet tall and have slender builds. Your size is Medium.", + "type": null, + "parent": "srd_elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 77, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Elvish. Elvish is fluid, with subtle intonations and intricate grammar. Elven literature is rich and varied, and their songs and poems are famous among other races. Many bards learn their language so they can add Elvish ballads to their repertoires.", + "type": null, + "parent": "srd_elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 78, + "fields": { + "name": "Keen Senses", + "desc": "You have proficiency in the Perception skill.", + "type": null, + "parent": "srd_elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 79, + "fields": { + "name": "Fey Ancestry", + "desc": "You have advantage on saving throws against being charmed, and magic can't put you to sleep.", + "type": null, + "parent": "srd_elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 80, + "fields": { + "name": "Trance", + "desc": "Elves don't need to sleep. Instead, they meditate deeply, remaining semiconscious, for 4 hours a day. (The Common word for such meditation is “trance.”) While meditating, you can dream after a fashion; such dreams are actually mental exercises that have become reflexive through years of practice. After resting in this way, you gain the same benefit that a human does from 8 hours of sleep.", + "type": null, + "parent": "srd_elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 81, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Intelligence score increases by 1.", + "type": null, + "parent": "srd_high-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 82, + "fields": { + "name": "Elf Weapon Training", + "desc": "You have proficiency with the longsword, shortsword, shortbow, and longbow.", + "type": null, + "parent": "srd_high-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 83, + "fields": { + "name": "Cantrip", + "desc": "You know one cantrip of your choice from the wizard spell list. Intelligence is your spellcasting ability for it.", + "type": null, + "parent": "srd_high-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 84, + "fields": { + "name": "Extra Language", + "desc": "You can speak, read, and write one extra language of your choice.", + "type": null, + "parent": "srd_high-elf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 85, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Constitution score increases by 2.", + "type": null, + "parent": "srd_dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 86, + "fields": { + "name": "Speed", + "desc": "Your base walking speed is 25 feet. Your speed is not reduced by wearing heavy armor.", + "type": null, + "parent": "srd_dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 87, + "fields": { + "name": "Darkvision", + "desc": "Accustomed to life underground, you have superior vision in dark and dim conditions. You can see in dim light within 60 feet of you as if it were bright light, and in darkness as if it were dim light. You can't discern color in darkness, only shades of gray.", + "type": null, + "parent": "srd_dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 88, + "fields": { + "name": "Age", + "desc": "Dwarves mature at the same rate as humans, but they're considered young until they reach the age of 50. On average, they live about 350 years.", + "type": null, + "parent": "srd_dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 89, + "fields": { + "name": "Alignment", + "desc": "Most dwarves are lawful, believing firmly in the benefits of a well-ordered society. They tend toward good as well, with a strong sense of fair play and a belief that everyone deserves to share in the benefits of a just order.", + "type": null, + "parent": "srd_dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 90, + "fields": { + "name": "Size", + "desc": "Dwarves stand between 4 and 5 feet tall and average about 150 pounds. Your size is Medium.", + "type": null, + "parent": "srd_dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 91, + "fields": { + "name": "Languages", + "desc": "You can speak, read, and write Common and Dwarvish. Dwarvish is full of hard consonants and guttural sounds, and those characteristics spill over into whatever other language a dwarf might speak.", + "type": null, + "parent": "srd_dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 92, + "fields": { + "name": "Dwarven Resilience", + "desc": "You have advantage on saving throws against poison, and you have resistance against poison damage.", + "type": null, + "parent": "srd_dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 93, + "fields": { + "name": "Dwarven Combat Training", + "desc": "You have proficiency with the battleaxe, handaxe, light hammer, and warhammer.", + "type": null, + "parent": "srd_dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 94, + "fields": { + "name": "Tool Proficiency", + "desc": "You gain proficiency with the artisan's tools of your choice: smith's tools, brewer's supplies, or mason's tools.", + "type": null, + "parent": "srd_dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 95, + "fields": { + "name": "Stonecunning", + "desc": "Whenever you make an Intelligence (History) check related to the origin of stonework, you are considered proficient in the History skill and add double your proficiency bonus to the check, instead of your normal proficiency bonus.", + "type": null, + "parent": "srd_dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 96, + "fields": { + "name": "Ability Score Increase", + "desc": "Your Wisdom score increases by 1.", + "type": null, + "parent": "srd_hill-dwarf" + } +}, +{ + "model": "api_v2.racetrait", + "pk": 97, + "fields": { + "name": "Dwarven Toughness", + "desc": "Your hit point maximum increases by 1, and it increases by 1 every time you gain a level.", + "type": null, + "parent": "srd_hill-dwarf" + } +} +] From baf6971d66df221e813e509cf0763b601a6e33c4 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 11:55:43 -0500 Subject: [PATCH 46/84] Fixing document view. --- api_v2/models/document.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api_v2/models/document.py b/api_v2/models/document.py index 35345140..53f9da39 100644 --- a/api_v2/models/document.py +++ b/api_v2/models/document.py @@ -55,7 +55,7 @@ def stats(self): if model.__name__ in SKIPPED_MODEL_NAMES: continue CHILD_MODEL_NAMES = [ - 'Trait', + 'RaceTrait', 'ClassFeatureItem', 'FeatBenefit', 'BackgroundBenefit', From 3a639429f0f19e1ab7a194de5b3bfcbb02a95199 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 12:02:59 -0500 Subject: [PATCH 47/84] Refactoring casting option. --- api_v2/management/commands/export.py | 4 +- ...rename_castingoption_spellcastingoption.py | 17 + api_v2/models/__init__.py | 3 +- api_v2/models/document.py | 2 +- api_v2/models/spell.py | 6 +- api_v2/serializers/spell.py | 14 +- ...ingOption.json => SpellCastingOption.json} | 3326 ++++++------- ...ingOption.json => SpellCastingOption.json} | 4200 ++++++++--------- .../deepmx/SpellCastingOption.json | 2030 ++++++++ ...ingOption.json => SpellCastingOption.json} | 168 +- ...ingOption.json => SpellCastingOption.json} | 716 +-- ...ingOption.json => SpellCastingOption.json} | 322 +- ...ingOption.json => SpellCastingOption.json} | 20 +- ...ingOption.json => SpellCastingOption.json} | 2086 ++++---- 14 files changed, 7476 insertions(+), 5438 deletions(-) create mode 100644 api_v2/migrations/0085_rename_castingoption_spellcastingoption.py rename data/v2/en-publishing/a5e-ag/{CastingOption.json => SpellCastingOption.json} (82%) rename data/v2/kobold-press/deepm/{CastingOption.json => SpellCastingOption.json} (82%) create mode 100644 data/v2/kobold-press/deepmx/SpellCastingOption.json rename data/v2/kobold-press/kp/{CastingOption.json => SpellCastingOption.json} (82%) rename data/v2/kobold-press/toh/{CastingOption.json => SpellCastingOption.json} (82%) rename data/v2/kobold-press/wz/{CastingOption.json => SpellCastingOption.json} (82%) rename data/v2/open5e/open5e/{CastingOption.json => SpellCastingOption.json} (82%) rename data/v2/wizards-of-the-coast/srd/{CastingOption.json => SpellCastingOption.json} (82%) diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index bf8311fb..bfc50087 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -109,7 +109,7 @@ def handle(self, *args, **options) -> None: for model in app_models: SKIPPED_MODEL_NAMES = ['Document', 'Ruleset', 'License', 'Publisher','SearchResult'] - CHILD_MODEL_NAMES = ['RaceTrait', 'FeatBenefit', 'BackgroundBenefit', 'ClassFeatureItem', 'CastingOption'] + CHILD_MODEL_NAMES = ['RaceTrait', 'FeatBenefit', 'BackgroundBenefit', 'ClassFeatureItem', 'SpellCastingOption'] if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES: if model.__name__ in CHILD_MODEL_NAMES: @@ -119,7 +119,7 @@ def handle(self, *args, **options) -> None: modelq = model.objects.filter(parent__document=doc).order_by('pk') if model.__name__ == 'BackgroundBenefit': modelq = model.objects.filter(parent__document=doc).order_by('pk') - if model.__name__ == 'CastingOption': + if model.__name__ == 'SpellCastingOption': modelq = model.objects.filter(spell__document=doc).order_by('pk') if model.__name__ == 'ClassFeatureItem': modelq = model.objects.filter(parent__document=doc).order_by('pk') diff --git a/api_v2/migrations/0085_rename_castingoption_spellcastingoption.py b/api_v2/migrations/0085_rename_castingoption_spellcastingoption.py new file mode 100644 index 00000000..b9274a09 --- /dev/null +++ b/api_v2/migrations/0085_rename_castingoption_spellcastingoption.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2024-05-27 16:59 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0084_rename_race_racetrait_parent'), + ] + + operations = [ + migrations.RenameModel( + old_name='CastingOption', + new_name='SpellCastingOption', + ), + ] diff --git a/api_v2/models/__init__.py b/api_v2/models/__init__.py index 170e00b1..30216c72 100644 --- a/api_v2/models/__init__.py +++ b/api_v2/models/__init__.py @@ -41,7 +41,7 @@ from .condition import Condition from .spell import Spell -from .spell import CastingOption +from .spell import SpellCastingOption from .spell import SpellSchool from .characterclass import ClassFeatureItem @@ -51,4 +51,3 @@ from .search import SearchResult from .size import Size - diff --git a/api_v2/models/document.py b/api_v2/models/document.py index 53f9da39..eeab4a4b 100644 --- a/api_v2/models/document.py +++ b/api_v2/models/document.py @@ -61,7 +61,7 @@ def stats(self): 'BackgroundBenefit', 'CreatureAction', 'CreatureAttack', - 'CastingOption', + 'SpellCastingOption', 'ItemRarity', 'SpellSchool'] if model.__name__ in CHILD_MODEL_NAMES: continue diff --git a/api_v2/models/spell.py b/api_v2/models/spell.py index c1a5b7e7..53937cc2 100644 --- a/api_v2/models/spell.py +++ b/api_v2/models/spell.py @@ -122,10 +122,10 @@ class Spell(HasName, HasDescription, FromDocument): def casting_options(self): """Options for casting the spell.""" - return self.castingoption_set + return self.spellcastingoption_set -# TODO rename to SpellCastingOption -class CastingOption(models.Model): + +class SpellCastingOption(models.Model): """An object representing an alternative way to cast a spell.""" # TODO rename to parent diff --git a/api_v2/serializers/spell.py b/api_v2/serializers/spell.py index 3e282ad9..5cacf4a6 100644 --- a/api_v2/serializers/spell.py +++ b/api_v2/serializers/spell.py @@ -12,23 +12,15 @@ class Meta: fields='__all__' -class CastingOptionSerializer(serializers.ModelSerializer): -# type=serializers.ReadOnlyField() -# damage_roll = serializers.ReadOnlyField() -# duration = serializers.ReadOnlyField() -# range = serializers.ReadOnlyField() -# target_count = serializers.ReadOnlyField() - +class SpellCastingOptionSerializer(serializers.ModelSerializer): class Meta: - model = models.CastingOption + model = models.SpellCastingOption exclude = ['id','spell'] - # fields = '__all__' - class SpellSerializer(GameContentSerializer): key = serializers.ReadOnlyField() slot_expended=serializers.ReadOnlyField() - casting_options = CastingOptionSerializer(many=True) + casting_options = SpellCastingOptionSerializer(many=True) school = SpellSchoolSerializer() class Meta: diff --git a/data/v2/en-publishing/a5e-ag/CastingOption.json b/data/v2/en-publishing/a5e-ag/SpellCastingOption.json similarity index 82% rename from data/v2/en-publishing/a5e-ag/CastingOption.json rename to data/v2/en-publishing/a5e-ag/SpellCastingOption.json index fccdce6c..4b68f25e 100644 --- a/data/v2/en-publishing/a5e-ag/CastingOption.json +++ b/data/v2/en-publishing/a5e-ag/SpellCastingOption.json @@ -1,6 +1,6 @@ [ { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 403, "fields": { "spell": "accelerando-a5e", @@ -12,7 +12,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 405, "fields": { "spell": "accelerando-a5e", @@ -24,7 +24,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 406, "fields": { "spell": "accelerando-a5e", @@ -36,7 +36,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 407, "fields": { "spell": "accelerando-a5e", @@ -48,7 +48,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 408, "fields": { "spell": "accelerando-a5e", @@ -60,7 +60,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 409, "fields": { "spell": "accelerando-a5e", @@ -72,7 +72,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 410, "fields": { "spell": "acid-arrow-a5e", @@ -84,7 +84,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 412, "fields": { "spell": "acid-arrow-a5e", @@ -96,7 +96,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 413, "fields": { "spell": "acid-arrow-a5e", @@ -108,7 +108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 414, "fields": { "spell": "acid-arrow-a5e", @@ -120,7 +120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 415, "fields": { "spell": "acid-arrow-a5e", @@ -132,7 +132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 416, "fields": { "spell": "acid-arrow-a5e", @@ -144,7 +144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 417, "fields": { "spell": "acid-arrow-a5e", @@ -156,7 +156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 418, "fields": { "spell": "acid-arrow-a5e", @@ -168,7 +168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 419, "fields": { "spell": "acid-splash-a5e", @@ -180,7 +180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 420, "fields": { "spell": "acid-splash-a5e", @@ -192,7 +192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 421, "fields": { "spell": "acid-splash-a5e", @@ -204,7 +204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 422, "fields": { "spell": "acid-splash-a5e", @@ -216,7 +216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 423, "fields": { "spell": "acid-splash-a5e", @@ -228,7 +228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 424, "fields": { "spell": "acid-splash-a5e", @@ -240,7 +240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 425, "fields": { "spell": "acid-splash-a5e", @@ -252,7 +252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 426, "fields": { "spell": "acid-splash-a5e", @@ -264,7 +264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 427, "fields": { "spell": "acid-splash-a5e", @@ -276,7 +276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 428, "fields": { "spell": "acid-splash-a5e", @@ -288,7 +288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 429, "fields": { "spell": "acid-splash-a5e", @@ -300,7 +300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 430, "fields": { "spell": "acid-splash-a5e", @@ -312,7 +312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 431, "fields": { "spell": "acid-splash-a5e", @@ -324,7 +324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 432, "fields": { "spell": "acid-splash-a5e", @@ -336,7 +336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 433, "fields": { "spell": "acid-splash-a5e", @@ -348,7 +348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 434, "fields": { "spell": "acid-splash-a5e", @@ -360,7 +360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 435, "fields": { "spell": "acid-splash-a5e", @@ -372,7 +372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 436, "fields": { "spell": "acid-splash-a5e", @@ -384,7 +384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 437, "fields": { "spell": "acid-splash-a5e", @@ -396,7 +396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 438, "fields": { "spell": "acid-splash-a5e", @@ -408,7 +408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 439, "fields": { "spell": "acid-splash-a5e", @@ -420,7 +420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 440, "fields": { "spell": "aid-a5e", @@ -432,7 +432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 442, "fields": { "spell": "aid-a5e", @@ -444,7 +444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 443, "fields": { "spell": "aid-a5e", @@ -456,7 +456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 444, "fields": { "spell": "aid-a5e", @@ -468,7 +468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 445, "fields": { "spell": "aid-a5e", @@ -480,7 +480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 446, "fields": { "spell": "aid-a5e", @@ -492,7 +492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 447, "fields": { "spell": "aid-a5e", @@ -504,7 +504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 448, "fields": { "spell": "aid-a5e", @@ -516,7 +516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 449, "fields": { "spell": "air-wave-a5e", @@ -528,7 +528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 451, "fields": { "spell": "air-wave-a5e", @@ -540,7 +540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 452, "fields": { "spell": "air-wave-a5e", @@ -552,7 +552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 453, "fields": { "spell": "air-wave-a5e", @@ -564,7 +564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 454, "fields": { "spell": "air-wave-a5e", @@ -576,7 +576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 455, "fields": { "spell": "air-wave-a5e", @@ -588,7 +588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 456, "fields": { "spell": "air-wave-a5e", @@ -600,7 +600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 457, "fields": { "spell": "air-wave-a5e", @@ -612,7 +612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 458, "fields": { "spell": "air-wave-a5e", @@ -624,7 +624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 459, "fields": { "spell": "alarm-a5e", @@ -636,7 +636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 460, "fields": { "spell": "alarm-a5e", @@ -648,7 +648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 462, "fields": { "spell": "alarm-a5e", @@ -660,7 +660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 463, "fields": { "spell": "alarm-a5e", @@ -672,7 +672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 464, "fields": { "spell": "alarm-a5e", @@ -684,7 +684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 465, "fields": { "spell": "alarm-a5e", @@ -696,7 +696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 466, "fields": { "spell": "alarm-a5e", @@ -708,7 +708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 467, "fields": { "spell": "alarm-a5e", @@ -720,7 +720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 468, "fields": { "spell": "alarm-a5e", @@ -732,7 +732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 469, "fields": { "spell": "alarm-a5e", @@ -744,7 +744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 470, "fields": { "spell": "alter-self-a5e", @@ -756,7 +756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 472, "fields": { "spell": "alter-self-a5e", @@ -768,7 +768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 473, "fields": { "spell": "alter-self-a5e", @@ -780,7 +780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 474, "fields": { "spell": "alter-self-a5e", @@ -792,7 +792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 475, "fields": { "spell": "alter-self-a5e", @@ -804,7 +804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 476, "fields": { "spell": "alter-self-a5e", @@ -816,7 +816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 477, "fields": { "spell": "alter-self-a5e", @@ -828,7 +828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 478, "fields": { "spell": "alter-self-a5e", @@ -840,7 +840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 479, "fields": { "spell": "altered-strike-a5e", @@ -852,7 +852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 480, "fields": { "spell": "altered-strike-a5e", @@ -864,7 +864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 481, "fields": { "spell": "altered-strike-a5e", @@ -876,7 +876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 482, "fields": { "spell": "altered-strike-a5e", @@ -888,7 +888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 483, "fields": { "spell": "altered-strike-a5e", @@ -900,7 +900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 484, "fields": { "spell": "altered-strike-a5e", @@ -912,7 +912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 485, "fields": { "spell": "altered-strike-a5e", @@ -924,7 +924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 486, "fields": { "spell": "altered-strike-a5e", @@ -936,7 +936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 487, "fields": { "spell": "altered-strike-a5e", @@ -948,7 +948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 488, "fields": { "spell": "altered-strike-a5e", @@ -960,7 +960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 489, "fields": { "spell": "altered-strike-a5e", @@ -972,7 +972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 490, "fields": { "spell": "altered-strike-a5e", @@ -984,7 +984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 491, "fields": { "spell": "altered-strike-a5e", @@ -996,7 +996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 492, "fields": { "spell": "altered-strike-a5e", @@ -1008,7 +1008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 493, "fields": { "spell": "altered-strike-a5e", @@ -1020,7 +1020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 494, "fields": { "spell": "altered-strike-a5e", @@ -1032,7 +1032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 495, "fields": { "spell": "altered-strike-a5e", @@ -1044,7 +1044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 496, "fields": { "spell": "altered-strike-a5e", @@ -1056,7 +1056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 497, "fields": { "spell": "altered-strike-a5e", @@ -1068,7 +1068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 498, "fields": { "spell": "altered-strike-a5e", @@ -1080,7 +1080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 499, "fields": { "spell": "altered-strike-a5e", @@ -1092,7 +1092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 500, "fields": { "spell": "angel-paradox-a5e", @@ -1104,7 +1104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 502, "fields": { "spell": "angel-paradox-a5e", @@ -1116,7 +1116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 503, "fields": { "spell": "angel-paradox-a5e", @@ -1128,7 +1128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 504, "fields": { "spell": "animal-friendship-a5e", @@ -1140,7 +1140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 506, "fields": { "spell": "animal-friendship-a5e", @@ -1152,7 +1152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 507, "fields": { "spell": "animal-friendship-a5e", @@ -1164,7 +1164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 508, "fields": { "spell": "animal-friendship-a5e", @@ -1176,7 +1176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 509, "fields": { "spell": "animal-friendship-a5e", @@ -1188,7 +1188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 510, "fields": { "spell": "animal-friendship-a5e", @@ -1200,7 +1200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 511, "fields": { "spell": "animal-friendship-a5e", @@ -1212,7 +1212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 512, "fields": { "spell": "animal-friendship-a5e", @@ -1224,7 +1224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 513, "fields": { "spell": "animal-friendship-a5e", @@ -1236,7 +1236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 514, "fields": { "spell": "animal-messenger-a5e", @@ -1248,7 +1248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 515, "fields": { "spell": "animal-messenger-a5e", @@ -1260,7 +1260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 517, "fields": { "spell": "animal-messenger-a5e", @@ -1272,7 +1272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 518, "fields": { "spell": "animal-messenger-a5e", @@ -1284,7 +1284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 519, "fields": { "spell": "animal-messenger-a5e", @@ -1296,7 +1296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 520, "fields": { "spell": "animal-messenger-a5e", @@ -1308,7 +1308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 521, "fields": { "spell": "animal-messenger-a5e", @@ -1320,7 +1320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 522, "fields": { "spell": "animal-messenger-a5e", @@ -1332,7 +1332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 523, "fields": { "spell": "animal-messenger-a5e", @@ -1344,7 +1344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 524, "fields": { "spell": "animal-shapes-a5e", @@ -1356,7 +1356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 525, "fields": { "spell": "animate-dead-a5e", @@ -1368,7 +1368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 527, "fields": { "spell": "animate-dead-a5e", @@ -1380,7 +1380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 528, "fields": { "spell": "animate-dead-a5e", @@ -1392,7 +1392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 529, "fields": { "spell": "animate-dead-a5e", @@ -1404,7 +1404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 530, "fields": { "spell": "animate-dead-a5e", @@ -1416,7 +1416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 531, "fields": { "spell": "animate-dead-a5e", @@ -1428,7 +1428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 532, "fields": { "spell": "animate-dead-a5e", @@ -1440,7 +1440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 533, "fields": { "spell": "animate-objects-a5e", @@ -1452,7 +1452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 535, "fields": { "spell": "animate-objects-a5e", @@ -1464,7 +1464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 536, "fields": { "spell": "animate-objects-a5e", @@ -1476,7 +1476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 537, "fields": { "spell": "animate-objects-a5e", @@ -1488,7 +1488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 538, "fields": { "spell": "animate-objects-a5e", @@ -1500,7 +1500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 539, "fields": { "spell": "antilife-shell-a5e", @@ -1512,7 +1512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 540, "fields": { "spell": "antimagic-field-a5e", @@ -1524,7 +1524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 541, "fields": { "spell": "antipathysympathy-a5e", @@ -1536,7 +1536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 542, "fields": { "spell": "arcane-eye-a5e", @@ -1548,7 +1548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 543, "fields": { "spell": "arcane-hand-a5e", @@ -1560,7 +1560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 545, "fields": { "spell": "arcane-hand-a5e", @@ -1572,7 +1572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 546, "fields": { "spell": "arcane-hand-a5e", @@ -1584,7 +1584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 547, "fields": { "spell": "arcane-hand-a5e", @@ -1596,7 +1596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 548, "fields": { "spell": "arcane-hand-a5e", @@ -1608,7 +1608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 549, "fields": { "spell": "arcane-lock-a5e", @@ -1620,7 +1620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 551, "fields": { "spell": "arcane-lock-a5e", @@ -1632,7 +1632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 552, "fields": { "spell": "arcane-lock-a5e", @@ -1644,7 +1644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 553, "fields": { "spell": "arcane-lock-a5e", @@ -1656,7 +1656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 554, "fields": { "spell": "arcane-lock-a5e", @@ -1668,7 +1668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 555, "fields": { "spell": "arcane-lock-a5e", @@ -1680,7 +1680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 556, "fields": { "spell": "arcane-lock-a5e", @@ -1692,7 +1692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 557, "fields": { "spell": "arcane-lock-a5e", @@ -1704,7 +1704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 558, "fields": { "spell": "arcane-muscles-a5e", @@ -1716,7 +1716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 559, "fields": { "spell": "arcane-riposte-a5e", @@ -1728,7 +1728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 561, "fields": { "spell": "arcane-riposte-a5e", @@ -1740,7 +1740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 562, "fields": { "spell": "arcane-riposte-a5e", @@ -1752,7 +1752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 563, "fields": { "spell": "arcane-riposte-a5e", @@ -1764,7 +1764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 564, "fields": { "spell": "arcane-riposte-a5e", @@ -1776,7 +1776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 565, "fields": { "spell": "arcane-riposte-a5e", @@ -1788,7 +1788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 566, "fields": { "spell": "arcane-riposte-a5e", @@ -1800,7 +1800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 567, "fields": { "spell": "arcane-riposte-a5e", @@ -1812,7 +1812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 568, "fields": { "spell": "arcane-riposte-a5e", @@ -1824,7 +1824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 569, "fields": { "spell": "arcane-sword-a5e", @@ -1836,7 +1836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 570, "fields": { "spell": "arcanists-magic-aura-a5e", @@ -1848,7 +1848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 572, "fields": { "spell": "arcanists-magic-aura-a5e", @@ -1860,7 +1860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 573, "fields": { "spell": "arcanists-magic-aura-a5e", @@ -1872,7 +1872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 574, "fields": { "spell": "arcanists-magic-aura-a5e", @@ -1884,7 +1884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 575, "fields": { "spell": "arcanists-magic-aura-a5e", @@ -1896,7 +1896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 576, "fields": { "spell": "arcanists-magic-aura-a5e", @@ -1908,7 +1908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 577, "fields": { "spell": "arcanists-magic-aura-a5e", @@ -1920,7 +1920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 578, "fields": { "spell": "arcanists-magic-aura-a5e", @@ -1932,7 +1932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 579, "fields": { "spell": "aspect-of-the-moon-a5e", @@ -1944,7 +1944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 580, "fields": { "spell": "astral-projection-a5e", @@ -1956,7 +1956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 581, "fields": { "spell": "augury-a5e", @@ -1968,7 +1968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 582, "fields": { "spell": "awaken-a5e", @@ -1980,7 +1980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 584, "fields": { "spell": "awaken-a5e", @@ -1992,7 +1992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 585, "fields": { "spell": "awaken-a5e", @@ -2004,7 +2004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 586, "fields": { "spell": "awaken-a5e", @@ -2016,7 +2016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 587, "fields": { "spell": "awaken-a5e", @@ -2028,7 +2028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 588, "fields": { "spell": "bane-a5e", @@ -2040,7 +2040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 590, "fields": { "spell": "bane-a5e", @@ -2052,7 +2052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 591, "fields": { "spell": "bane-a5e", @@ -2064,7 +2064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 592, "fields": { "spell": "bane-a5e", @@ -2076,7 +2076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 593, "fields": { "spell": "bane-a5e", @@ -2088,7 +2088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 594, "fields": { "spell": "bane-a5e", @@ -2100,7 +2100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 595, "fields": { "spell": "bane-a5e", @@ -2112,7 +2112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 596, "fields": { "spell": "bane-a5e", @@ -2124,7 +2124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 597, "fields": { "spell": "bane-a5e", @@ -2136,7 +2136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 598, "fields": { "spell": "banishment-a5e", @@ -2148,7 +2148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 600, "fields": { "spell": "banishment-a5e", @@ -2160,7 +2160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 601, "fields": { "spell": "banishment-a5e", @@ -2172,7 +2172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 602, "fields": { "spell": "banishment-a5e", @@ -2184,7 +2184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 603, "fields": { "spell": "banishment-a5e", @@ -2196,7 +2196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 604, "fields": { "spell": "banishment-a5e", @@ -2208,7 +2208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 605, "fields": { "spell": "barkskin-a5e", @@ -2220,7 +2220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 607, "fields": { "spell": "barkskin-a5e", @@ -2232,7 +2232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 608, "fields": { "spell": "barkskin-a5e", @@ -2244,7 +2244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 609, "fields": { "spell": "barkskin-a5e", @@ -2256,7 +2256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 610, "fields": { "spell": "barkskin-a5e", @@ -2268,7 +2268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 611, "fields": { "spell": "barkskin-a5e", @@ -2280,7 +2280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 612, "fields": { "spell": "barkskin-a5e", @@ -2292,7 +2292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 613, "fields": { "spell": "barkskin-a5e", @@ -2304,7 +2304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 614, "fields": { "spell": "battlecry-ballad-a5e", @@ -2316,7 +2316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 616, "fields": { "spell": "battlecry-ballad-a5e", @@ -2328,7 +2328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 617, "fields": { "spell": "battlecry-ballad-a5e", @@ -2340,7 +2340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 618, "fields": { "spell": "battlecry-ballad-a5e", @@ -2352,7 +2352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 619, "fields": { "spell": "battlecry-ballad-a5e", @@ -2364,7 +2364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 620, "fields": { "spell": "battlecry-ballad-a5e", @@ -2376,7 +2376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 621, "fields": { "spell": "battlecry-ballad-a5e", @@ -2388,7 +2388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 622, "fields": { "spell": "beacon-of-hope-a5e", @@ -2400,7 +2400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 623, "fields": { "spell": "bestow-curse-a5e", @@ -2412,7 +2412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 625, "fields": { "spell": "bestow-curse-a5e", @@ -2424,7 +2424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 626, "fields": { "spell": "bestow-curse-a5e", @@ -2436,7 +2436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 627, "fields": { "spell": "bestow-curse-a5e", @@ -2448,7 +2448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 628, "fields": { "spell": "bestow-curse-a5e", @@ -2460,7 +2460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 629, "fields": { "spell": "bestow-curse-a5e", @@ -2472,7 +2472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 630, "fields": { "spell": "bestow-curse-a5e", @@ -2484,7 +2484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 631, "fields": { "spell": "black-tentacles-a5e", @@ -2496,7 +2496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 633, "fields": { "spell": "black-tentacles-a5e", @@ -2508,7 +2508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 634, "fields": { "spell": "black-tentacles-a5e", @@ -2520,7 +2520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 635, "fields": { "spell": "black-tentacles-a5e", @@ -2532,7 +2532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 636, "fields": { "spell": "black-tentacles-a5e", @@ -2544,7 +2544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 637, "fields": { "spell": "black-tentacles-a5e", @@ -2556,7 +2556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 638, "fields": { "spell": "blade-barrier-a5e", @@ -2568,7 +2568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 640, "fields": { "spell": "blade-barrier-a5e", @@ -2580,7 +2580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 641, "fields": { "spell": "blade-barrier-a5e", @@ -2592,7 +2592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 642, "fields": { "spell": "blade-barrier-a5e", @@ -2604,7 +2604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 643, "fields": { "spell": "bless-a5e", @@ -2616,7 +2616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 645, "fields": { "spell": "bless-a5e", @@ -2628,7 +2628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 646, "fields": { "spell": "bless-a5e", @@ -2640,7 +2640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 647, "fields": { "spell": "bless-a5e", @@ -2652,7 +2652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 648, "fields": { "spell": "bless-a5e", @@ -2664,7 +2664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 649, "fields": { "spell": "bless-a5e", @@ -2676,7 +2676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 650, "fields": { "spell": "bless-a5e", @@ -2688,7 +2688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 651, "fields": { "spell": "bless-a5e", @@ -2700,7 +2700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 652, "fields": { "spell": "bless-a5e", @@ -2712,7 +2712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 653, "fields": { "spell": "blight-a5e", @@ -2724,7 +2724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 655, "fields": { "spell": "blight-a5e", @@ -2736,7 +2736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 656, "fields": { "spell": "blight-a5e", @@ -2748,7 +2748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 657, "fields": { "spell": "blight-a5e", @@ -2760,7 +2760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 658, "fields": { "spell": "blight-a5e", @@ -2772,7 +2772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 659, "fields": { "spell": "blight-a5e", @@ -2784,7 +2784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 660, "fields": { "spell": "blindnessdeafness-a5e", @@ -2796,7 +2796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 662, "fields": { "spell": "blindnessdeafness-a5e", @@ -2808,7 +2808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 663, "fields": { "spell": "blindnessdeafness-a5e", @@ -2820,7 +2820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 664, "fields": { "spell": "blindnessdeafness-a5e", @@ -2832,7 +2832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 665, "fields": { "spell": "blindnessdeafness-a5e", @@ -2844,7 +2844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 666, "fields": { "spell": "blindnessdeafness-a5e", @@ -2856,7 +2856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 667, "fields": { "spell": "blindnessdeafness-a5e", @@ -2868,7 +2868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 668, "fields": { "spell": "blindnessdeafness-a5e", @@ -2880,7 +2880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 669, "fields": { "spell": "blink-a5e", @@ -2892,7 +2892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 670, "fields": { "spell": "blood-writ-bargain-a5e", @@ -2904,7 +2904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 671, "fields": { "spell": "blood-writ-bargain-a5e", @@ -2916,7 +2916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 673, "fields": { "spell": "blood-writ-bargain-a5e", @@ -2928,7 +2928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 674, "fields": { "spell": "blood-writ-bargain-a5e", @@ -2940,7 +2940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 675, "fields": { "spell": "blood-writ-bargain-a5e", @@ -2952,7 +2952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 676, "fields": { "spell": "blood-writ-bargain-a5e", @@ -2964,7 +2964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 677, "fields": { "spell": "blood-writ-bargain-a5e", @@ -2976,7 +2976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 678, "fields": { "spell": "blood-writ-bargain-a5e", @@ -2988,7 +2988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 679, "fields": { "spell": "blur-a5e", @@ -3000,7 +3000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 681, "fields": { "spell": "blur-a5e", @@ -3012,7 +3012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 682, "fields": { "spell": "blur-a5e", @@ -3024,7 +3024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 683, "fields": { "spell": "blur-a5e", @@ -3036,7 +3036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 684, "fields": { "spell": "blur-a5e", @@ -3048,7 +3048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 685, "fields": { "spell": "blur-a5e", @@ -3060,7 +3060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 686, "fields": { "spell": "blur-a5e", @@ -3072,7 +3072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 687, "fields": { "spell": "blur-a5e", @@ -3084,7 +3084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 688, "fields": { "spell": "burning-hands-a5e", @@ -3096,7 +3096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 690, "fields": { "spell": "burning-hands-a5e", @@ -3108,7 +3108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 691, "fields": { "spell": "burning-hands-a5e", @@ -3120,7 +3120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 692, "fields": { "spell": "burning-hands-a5e", @@ -3132,7 +3132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 693, "fields": { "spell": "burning-hands-a5e", @@ -3144,7 +3144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 694, "fields": { "spell": "burning-hands-a5e", @@ -3156,7 +3156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 695, "fields": { "spell": "burning-hands-a5e", @@ -3168,7 +3168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 696, "fields": { "spell": "burning-hands-a5e", @@ -3180,7 +3180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 697, "fields": { "spell": "burning-hands-a5e", @@ -3192,7 +3192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 698, "fields": { "spell": "calculate-a5e", @@ -3204,7 +3204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 699, "fields": { "spell": "calculated-retribution-a5e", @@ -3216,7 +3216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 701, "fields": { "spell": "calculated-retribution-a5e", @@ -3228,7 +3228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 702, "fields": { "spell": "calculated-retribution-a5e", @@ -3240,7 +3240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 703, "fields": { "spell": "calculated-retribution-a5e", @@ -3252,7 +3252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 704, "fields": { "spell": "calculated-retribution-a5e", @@ -3264,7 +3264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 705, "fields": { "spell": "calculated-retribution-a5e", @@ -3276,7 +3276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 706, "fields": { "spell": "calculated-retribution-a5e", @@ -3288,7 +3288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 707, "fields": { "spell": "calculated-retribution-a5e", @@ -3300,7 +3300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 708, "fields": { "spell": "calculated-retribution-a5e", @@ -3312,7 +3312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 709, "fields": { "spell": "call-lightning-a5e", @@ -3324,7 +3324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 711, "fields": { "spell": "call-lightning-a5e", @@ -3336,7 +3336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 712, "fields": { "spell": "call-lightning-a5e", @@ -3348,7 +3348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 713, "fields": { "spell": "call-lightning-a5e", @@ -3360,7 +3360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 714, "fields": { "spell": "call-lightning-a5e", @@ -3372,7 +3372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 715, "fields": { "spell": "call-lightning-a5e", @@ -3384,7 +3384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 716, "fields": { "spell": "call-lightning-a5e", @@ -3396,7 +3396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 717, "fields": { "spell": "calm-emotions-a5e", @@ -3408,7 +3408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 719, "fields": { "spell": "calm-emotions-a5e", @@ -3420,7 +3420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 720, "fields": { "spell": "calm-emotions-a5e", @@ -3432,7 +3432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 721, "fields": { "spell": "calm-emotions-a5e", @@ -3444,7 +3444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 722, "fields": { "spell": "calm-emotions-a5e", @@ -3456,7 +3456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 723, "fields": { "spell": "calm-emotions-a5e", @@ -3468,7 +3468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 724, "fields": { "spell": "calm-emotions-a5e", @@ -3480,7 +3480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 725, "fields": { "spell": "calm-emotions-a5e", @@ -3492,7 +3492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 726, "fields": { "spell": "ceremony-a5e", @@ -3504,7 +3504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 727, "fields": { "spell": "ceremony-a5e", @@ -3516,7 +3516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 728, "fields": { "spell": "chain-lightning-a5e", @@ -3528,7 +3528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 730, "fields": { "spell": "chain-lightning-a5e", @@ -3540,7 +3540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 731, "fields": { "spell": "chain-lightning-a5e", @@ -3552,7 +3552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 732, "fields": { "spell": "chain-lightning-a5e", @@ -3564,7 +3564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 733, "fields": { "spell": "charm-monster-a5e", @@ -3576,7 +3576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 735, "fields": { "spell": "charm-monster-a5e", @@ -3588,7 +3588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 736, "fields": { "spell": "charm-monster-a5e", @@ -3600,7 +3600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 737, "fields": { "spell": "charm-monster-a5e", @@ -3612,7 +3612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 738, "fields": { "spell": "charm-monster-a5e", @@ -3624,7 +3624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 739, "fields": { "spell": "charm-monster-a5e", @@ -3636,7 +3636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 740, "fields": { "spell": "charm-person-a5e", @@ -3648,7 +3648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 742, "fields": { "spell": "charm-person-a5e", @@ -3660,7 +3660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 743, "fields": { "spell": "charm-person-a5e", @@ -3672,7 +3672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 744, "fields": { "spell": "charm-person-a5e", @@ -3684,7 +3684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 745, "fields": { "spell": "charm-person-a5e", @@ -3696,7 +3696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 746, "fields": { "spell": "charm-person-a5e", @@ -3708,7 +3708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 747, "fields": { "spell": "charm-person-a5e", @@ -3720,7 +3720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 748, "fields": { "spell": "charm-person-a5e", @@ -3732,7 +3732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 749, "fields": { "spell": "charm-person-a5e", @@ -3744,7 +3744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 750, "fields": { "spell": "chill-touch-a5e", @@ -3756,7 +3756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 751, "fields": { "spell": "chill-touch-a5e", @@ -3768,7 +3768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 752, "fields": { "spell": "chill-touch-a5e", @@ -3780,7 +3780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 753, "fields": { "spell": "chill-touch-a5e", @@ -3792,7 +3792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 754, "fields": { "spell": "chill-touch-a5e", @@ -3804,7 +3804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 755, "fields": { "spell": "chill-touch-a5e", @@ -3816,7 +3816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 756, "fields": { "spell": "chill-touch-a5e", @@ -3828,7 +3828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 757, "fields": { "spell": "chill-touch-a5e", @@ -3840,7 +3840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 758, "fields": { "spell": "chill-touch-a5e", @@ -3852,7 +3852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 759, "fields": { "spell": "chill-touch-a5e", @@ -3864,7 +3864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 760, "fields": { "spell": "chill-touch-a5e", @@ -3876,7 +3876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 761, "fields": { "spell": "chill-touch-a5e", @@ -3888,7 +3888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 762, "fields": { "spell": "chill-touch-a5e", @@ -3900,7 +3900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 763, "fields": { "spell": "chill-touch-a5e", @@ -3912,7 +3912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 764, "fields": { "spell": "chill-touch-a5e", @@ -3924,7 +3924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 765, "fields": { "spell": "chill-touch-a5e", @@ -3936,7 +3936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 766, "fields": { "spell": "chill-touch-a5e", @@ -3948,7 +3948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 767, "fields": { "spell": "chill-touch-a5e", @@ -3960,7 +3960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 768, "fields": { "spell": "chill-touch-a5e", @@ -3972,7 +3972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 769, "fields": { "spell": "chill-touch-a5e", @@ -3984,7 +3984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 770, "fields": { "spell": "chill-touch-a5e", @@ -3996,7 +3996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 771, "fields": { "spell": "circle-of-death-a5e", @@ -4008,7 +4008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 773, "fields": { "spell": "circle-of-death-a5e", @@ -4020,7 +4020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 774, "fields": { "spell": "circle-of-death-a5e", @@ -4032,7 +4032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 775, "fields": { "spell": "circle-of-death-a5e", @@ -4044,7 +4044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 776, "fields": { "spell": "circular-breathing-a5e", @@ -4056,7 +4056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 777, "fields": { "spell": "circular-breathing-a5e", @@ -4068,7 +4068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 778, "fields": { "spell": "circular-breathing-a5e", @@ -4080,7 +4080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 779, "fields": { "spell": "circular-breathing-a5e", @@ -4092,7 +4092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 780, "fields": { "spell": "circular-breathing-a5e", @@ -4104,7 +4104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 781, "fields": { "spell": "circular-breathing-a5e", @@ -4116,7 +4116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 782, "fields": { "spell": "circular-breathing-a5e", @@ -4128,7 +4128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 783, "fields": { "spell": "circular-breathing-a5e", @@ -4140,7 +4140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 784, "fields": { "spell": "circular-breathing-a5e", @@ -4152,7 +4152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 785, "fields": { "spell": "circular-breathing-a5e", @@ -4164,7 +4164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 786, "fields": { "spell": "circular-breathing-a5e", @@ -4176,7 +4176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 787, "fields": { "spell": "circular-breathing-a5e", @@ -4188,7 +4188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 788, "fields": { "spell": "circular-breathing-a5e", @@ -4200,7 +4200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 789, "fields": { "spell": "circular-breathing-a5e", @@ -4212,7 +4212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 790, "fields": { "spell": "circular-breathing-a5e", @@ -4224,7 +4224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 791, "fields": { "spell": "circular-breathing-a5e", @@ -4236,7 +4236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 792, "fields": { "spell": "circular-breathing-a5e", @@ -4248,7 +4248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 793, "fields": { "spell": "circular-breathing-a5e", @@ -4260,7 +4260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 794, "fields": { "spell": "circular-breathing-a5e", @@ -4272,7 +4272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 795, "fields": { "spell": "circular-breathing-a5e", @@ -4284,7 +4284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 796, "fields": { "spell": "circular-breathing-a5e", @@ -4296,7 +4296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 797, "fields": { "spell": "clairvoyance-a5e", @@ -4308,7 +4308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 798, "fields": { "spell": "clone-a5e", @@ -4320,7 +4320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 799, "fields": { "spell": "cloudkill-a5e", @@ -4332,7 +4332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 801, "fields": { "spell": "cloudkill-a5e", @@ -4344,7 +4344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 802, "fields": { "spell": "cloudkill-a5e", @@ -4356,7 +4356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 803, "fields": { "spell": "cloudkill-a5e", @@ -4368,7 +4368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 804, "fields": { "spell": "cloudkill-a5e", @@ -4380,7 +4380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 805, "fields": { "spell": "cobras-spit-a5e", @@ -4392,7 +4392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 807, "fields": { "spell": "cobras-spit-a5e", @@ -4404,7 +4404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 808, "fields": { "spell": "cobras-spit-a5e", @@ -4416,7 +4416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 809, "fields": { "spell": "cobras-spit-a5e", @@ -4428,7 +4428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 810, "fields": { "spell": "cobras-spit-a5e", @@ -4440,7 +4440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 811, "fields": { "spell": "cobras-spit-a5e", @@ -4452,7 +4452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 812, "fields": { "spell": "cobras-spit-a5e", @@ -4464,7 +4464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 813, "fields": { "spell": "color-spray-a5e", @@ -4476,7 +4476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 815, "fields": { "spell": "color-spray-a5e", @@ -4488,7 +4488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 816, "fields": { "spell": "color-spray-a5e", @@ -4500,7 +4500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 817, "fields": { "spell": "color-spray-a5e", @@ -4512,7 +4512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 818, "fields": { "spell": "color-spray-a5e", @@ -4524,7 +4524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 819, "fields": { "spell": "color-spray-a5e", @@ -4536,7 +4536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 820, "fields": { "spell": "color-spray-a5e", @@ -4548,7 +4548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 821, "fields": { "spell": "color-spray-a5e", @@ -4560,7 +4560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 822, "fields": { "spell": "color-spray-a5e", @@ -4572,7 +4572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 823, "fields": { "spell": "command-a5e", @@ -4584,7 +4584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 825, "fields": { "spell": "command-a5e", @@ -4596,7 +4596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 826, "fields": { "spell": "command-a5e", @@ -4608,7 +4608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 827, "fields": { "spell": "command-a5e", @@ -4620,7 +4620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 828, "fields": { "spell": "command-a5e", @@ -4632,7 +4632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 829, "fields": { "spell": "command-a5e", @@ -4644,7 +4644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 830, "fields": { "spell": "command-a5e", @@ -4656,7 +4656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 831, "fields": { "spell": "command-a5e", @@ -4668,7 +4668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 832, "fields": { "spell": "command-a5e", @@ -4680,7 +4680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 833, "fields": { "spell": "commune-a5e", @@ -4692,7 +4692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 834, "fields": { "spell": "commune-a5e", @@ -4704,7 +4704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 835, "fields": { "spell": "commune-with-nature-a5e", @@ -4716,7 +4716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 836, "fields": { "spell": "commune-with-nature-a5e", @@ -4728,7 +4728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 837, "fields": { "spell": "comprehend-languages-a5e", @@ -4740,7 +4740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 838, "fields": { "spell": "comprehend-languages-a5e", @@ -4752,7 +4752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 840, "fields": { "spell": "comprehend-languages-a5e", @@ -4764,7 +4764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 841, "fields": { "spell": "comprehend-languages-a5e", @@ -4776,7 +4776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 842, "fields": { "spell": "comprehend-languages-a5e", @@ -4788,7 +4788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 843, "fields": { "spell": "comprehend-languages-a5e", @@ -4800,7 +4800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 844, "fields": { "spell": "comprehend-languages-a5e", @@ -4812,7 +4812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 845, "fields": { "spell": "comprehend-languages-a5e", @@ -4824,7 +4824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 846, "fields": { "spell": "comprehend-languages-a5e", @@ -4836,7 +4836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 847, "fields": { "spell": "comprehend-languages-a5e", @@ -4848,7 +4848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 848, "fields": { "spell": "cone-of-cold-a5e", @@ -4860,7 +4860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 850, "fields": { "spell": "cone-of-cold-a5e", @@ -4872,7 +4872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 851, "fields": { "spell": "cone-of-cold-a5e", @@ -4884,7 +4884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 852, "fields": { "spell": "cone-of-cold-a5e", @@ -4896,7 +4896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 853, "fields": { "spell": "cone-of-cold-a5e", @@ -4908,7 +4908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 854, "fields": { "spell": "confusion-a5e", @@ -4920,7 +4920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 856, "fields": { "spell": "confusion-a5e", @@ -4932,7 +4932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 857, "fields": { "spell": "confusion-a5e", @@ -4944,7 +4944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 858, "fields": { "spell": "confusion-a5e", @@ -4956,7 +4956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 859, "fields": { "spell": "confusion-a5e", @@ -4968,7 +4968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 860, "fields": { "spell": "confusion-a5e", @@ -4980,7 +4980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 861, "fields": { "spell": "conjure-animals-a5e", @@ -4992,7 +4992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 863, "fields": { "spell": "conjure-animals-a5e", @@ -5004,7 +5004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 864, "fields": { "spell": "conjure-animals-a5e", @@ -5016,7 +5016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 865, "fields": { "spell": "conjure-animals-a5e", @@ -5028,7 +5028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 866, "fields": { "spell": "conjure-animals-a5e", @@ -5040,7 +5040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 867, "fields": { "spell": "conjure-animals-a5e", @@ -5052,7 +5052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 868, "fields": { "spell": "conjure-animals-a5e", @@ -5064,7 +5064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 869, "fields": { "spell": "conjure-celestial-a5e", @@ -5076,7 +5076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 871, "fields": { "spell": "conjure-celestial-a5e", @@ -5088,7 +5088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 872, "fields": { "spell": "conjure-celestial-a5e", @@ -5100,7 +5100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 873, "fields": { "spell": "conjure-elemental-a5e", @@ -5112,7 +5112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 875, "fields": { "spell": "conjure-elemental-a5e", @@ -5124,7 +5124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 876, "fields": { "spell": "conjure-elemental-a5e", @@ -5136,7 +5136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 877, "fields": { "spell": "conjure-elemental-a5e", @@ -5148,7 +5148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 878, "fields": { "spell": "conjure-elemental-a5e", @@ -5160,7 +5160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 879, "fields": { "spell": "conjure-fey-a5e", @@ -5172,7 +5172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 881, "fields": { "spell": "conjure-fey-a5e", @@ -5184,7 +5184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 882, "fields": { "spell": "conjure-fey-a5e", @@ -5196,7 +5196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 883, "fields": { "spell": "conjure-fey-a5e", @@ -5208,7 +5208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 884, "fields": { "spell": "conjure-minor-elementals-a5e", @@ -5220,7 +5220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 886, "fields": { "spell": "conjure-minor-elementals-a5e", @@ -5232,7 +5232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 887, "fields": { "spell": "conjure-minor-elementals-a5e", @@ -5244,7 +5244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 888, "fields": { "spell": "conjure-minor-elementals-a5e", @@ -5256,7 +5256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 889, "fields": { "spell": "conjure-minor-elementals-a5e", @@ -5268,7 +5268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 890, "fields": { "spell": "conjure-minor-elementals-a5e", @@ -5280,7 +5280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 891, "fields": { "spell": "conjure-woodland-beings-a5e", @@ -5292,7 +5292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 893, "fields": { "spell": "conjure-woodland-beings-a5e", @@ -5304,7 +5304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 894, "fields": { "spell": "conjure-woodland-beings-a5e", @@ -5316,7 +5316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 895, "fields": { "spell": "conjure-woodland-beings-a5e", @@ -5328,7 +5328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 896, "fields": { "spell": "conjure-woodland-beings-a5e", @@ -5340,7 +5340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 897, "fields": { "spell": "conjure-woodland-beings-a5e", @@ -5352,7 +5352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 898, "fields": { "spell": "contact-other-plane-a5e", @@ -5364,7 +5364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 899, "fields": { "spell": "contact-other-plane-a5e", @@ -5376,7 +5376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 900, "fields": { "spell": "contagion-a5e", @@ -5388,7 +5388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 901, "fields": { "spell": "contingency-a5e", @@ -5400,7 +5400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 902, "fields": { "spell": "continual-flame-a5e", @@ -5412,7 +5412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 903, "fields": { "spell": "control-water-a5e", @@ -5424,7 +5424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 904, "fields": { "spell": "control-weather-a5e", @@ -5436,7 +5436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 905, "fields": { "spell": "corpse-explosion-a5e", @@ -5448,7 +5448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 907, "fields": { "spell": "corpse-explosion-a5e", @@ -5460,7 +5460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 908, "fields": { "spell": "corpse-explosion-a5e", @@ -5472,7 +5472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 909, "fields": { "spell": "corpse-explosion-a5e", @@ -5484,7 +5484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 910, "fields": { "spell": "corpse-explosion-a5e", @@ -5496,7 +5496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 911, "fields": { "spell": "corpse-explosion-a5e", @@ -5508,7 +5508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 912, "fields": { "spell": "corpse-explosion-a5e", @@ -5520,7 +5520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 913, "fields": { "spell": "corpse-explosion-a5e", @@ -5532,7 +5532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 914, "fields": { "spell": "corpse-explosion-a5e", @@ -5544,7 +5544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 915, "fields": { "spell": "counterspell-a5e", @@ -5556,7 +5556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 917, "fields": { "spell": "counterspell-a5e", @@ -5568,7 +5568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 918, "fields": { "spell": "counterspell-a5e", @@ -5580,7 +5580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 919, "fields": { "spell": "counterspell-a5e", @@ -5592,7 +5592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 920, "fields": { "spell": "counterspell-a5e", @@ -5604,7 +5604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 921, "fields": { "spell": "counterspell-a5e", @@ -5616,7 +5616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 922, "fields": { "spell": "counterspell-a5e", @@ -5628,7 +5628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 923, "fields": { "spell": "create-food-and-water-a5e", @@ -5640,7 +5640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 925, "fields": { "spell": "create-food-and-water-a5e", @@ -5652,7 +5652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 926, "fields": { "spell": "create-food-and-water-a5e", @@ -5664,7 +5664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 927, "fields": { "spell": "create-food-and-water-a5e", @@ -5676,7 +5676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 928, "fields": { "spell": "create-food-and-water-a5e", @@ -5688,7 +5688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 929, "fields": { "spell": "create-food-and-water-a5e", @@ -5700,7 +5700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 930, "fields": { "spell": "create-food-and-water-a5e", @@ -5712,7 +5712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 931, "fields": { "spell": "create-or-destroy-water-a5e", @@ -5724,7 +5724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 933, "fields": { "spell": "create-or-destroy-water-a5e", @@ -5736,7 +5736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 934, "fields": { "spell": "create-or-destroy-water-a5e", @@ -5748,7 +5748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 935, "fields": { "spell": "create-or-destroy-water-a5e", @@ -5760,7 +5760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 936, "fields": { "spell": "create-or-destroy-water-a5e", @@ -5772,7 +5772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 937, "fields": { "spell": "create-or-destroy-water-a5e", @@ -5784,7 +5784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 938, "fields": { "spell": "create-or-destroy-water-a5e", @@ -5796,7 +5796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 939, "fields": { "spell": "create-or-destroy-water-a5e", @@ -5808,7 +5808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 940, "fields": { "spell": "create-or-destroy-water-a5e", @@ -5820,7 +5820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 941, "fields": { "spell": "create-undead-a5e", @@ -5832,7 +5832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 943, "fields": { "spell": "create-undead-a5e", @@ -5844,7 +5844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 944, "fields": { "spell": "create-undead-a5e", @@ -5856,7 +5856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 945, "fields": { "spell": "create-undead-a5e", @@ -5868,7 +5868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 946, "fields": { "spell": "creation-a5e", @@ -5880,7 +5880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 948, "fields": { "spell": "creation-a5e", @@ -5892,7 +5892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 949, "fields": { "spell": "creation-a5e", @@ -5904,7 +5904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 950, "fields": { "spell": "creation-a5e", @@ -5916,7 +5916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 951, "fields": { "spell": "creation-a5e", @@ -5928,7 +5928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 952, "fields": { "spell": "crushing-haymaker-a5e", @@ -5940,7 +5940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 954, "fields": { "spell": "crushing-haymaker-a5e", @@ -5952,7 +5952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 955, "fields": { "spell": "crushing-haymaker-a5e", @@ -5964,7 +5964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 956, "fields": { "spell": "crushing-haymaker-a5e", @@ -5976,7 +5976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 957, "fields": { "spell": "crushing-haymaker-a5e", @@ -5988,7 +5988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 958, "fields": { "spell": "crushing-haymaker-a5e", @@ -6000,7 +6000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 959, "fields": { "spell": "crushing-haymaker-a5e", @@ -6012,7 +6012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 960, "fields": { "spell": "cure-wounds-a5e", @@ -6024,7 +6024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 962, "fields": { "spell": "cure-wounds-a5e", @@ -6036,7 +6036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 963, "fields": { "spell": "cure-wounds-a5e", @@ -6048,7 +6048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 964, "fields": { "spell": "cure-wounds-a5e", @@ -6060,7 +6060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 965, "fields": { "spell": "cure-wounds-a5e", @@ -6072,7 +6072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 966, "fields": { "spell": "cure-wounds-a5e", @@ -6084,7 +6084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 967, "fields": { "spell": "cure-wounds-a5e", @@ -6096,7 +6096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 968, "fields": { "spell": "cure-wounds-a5e", @@ -6108,7 +6108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 969, "fields": { "spell": "cure-wounds-a5e", @@ -6120,7 +6120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 970, "fields": { "spell": "dancing-lights-a5e", @@ -6132,7 +6132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 971, "fields": { "spell": "darklight-a5e", @@ -6144,7 +6144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 972, "fields": { "spell": "darkness-a5e", @@ -6156,7 +6156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 973, "fields": { "spell": "darkvision-a5e", @@ -6168,7 +6168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 975, "fields": { "spell": "darkvision-a5e", @@ -6180,7 +6180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 976, "fields": { "spell": "darkvision-a5e", @@ -6192,7 +6192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 977, "fields": { "spell": "darkvision-a5e", @@ -6204,7 +6204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 978, "fields": { "spell": "darkvision-a5e", @@ -6216,7 +6216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 979, "fields": { "spell": "darkvision-a5e", @@ -6228,7 +6228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 980, "fields": { "spell": "darkvision-a5e", @@ -6240,7 +6240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 981, "fields": { "spell": "darkvision-a5e", @@ -6252,7 +6252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 982, "fields": { "spell": "daylight-a5e", @@ -6264,7 +6264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 983, "fields": { "spell": "deadweight-a5e", @@ -6276,7 +6276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 984, "fields": { "spell": "death-ward-a5e", @@ -6288,7 +6288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 985, "fields": { "spell": "delayed-blast-fireball-a5e", @@ -6300,7 +6300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 987, "fields": { "spell": "delayed-blast-fireball-a5e", @@ -6312,7 +6312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 988, "fields": { "spell": "delayed-blast-fireball-a5e", @@ -6324,7 +6324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 989, "fields": { "spell": "demiplane-a5e", @@ -6336,7 +6336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 990, "fields": { "spell": "detect-evil-and-good-a5e", @@ -6348,7 +6348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 991, "fields": { "spell": "detect-magic-a5e", @@ -6360,7 +6360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 992, "fields": { "spell": "detect-magic-a5e", @@ -6372,7 +6372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 994, "fields": { "spell": "detect-magic-a5e", @@ -6384,7 +6384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 995, "fields": { "spell": "detect-magic-a5e", @@ -6396,7 +6396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 996, "fields": { "spell": "detect-magic-a5e", @@ -6408,7 +6408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 997, "fields": { "spell": "detect-magic-a5e", @@ -6420,7 +6420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 998, "fields": { "spell": "detect-magic-a5e", @@ -6432,7 +6432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 999, "fields": { "spell": "detect-magic-a5e", @@ -6444,7 +6444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1000, "fields": { "spell": "detect-magic-a5e", @@ -6456,7 +6456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1001, "fields": { "spell": "detect-magic-a5e", @@ -6468,7 +6468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1002, "fields": { "spell": "detect-poison-and-disease-a5e", @@ -6480,7 +6480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1003, "fields": { "spell": "detect-poison-and-disease-a5e", @@ -6492,7 +6492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1004, "fields": { "spell": "detect-thoughts-a5e", @@ -6504,7 +6504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1006, "fields": { "spell": "detect-thoughts-a5e", @@ -6516,7 +6516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1007, "fields": { "spell": "detect-thoughts-a5e", @@ -6528,7 +6528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1008, "fields": { "spell": "detect-thoughts-a5e", @@ -6540,7 +6540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1009, "fields": { "spell": "detect-thoughts-a5e", @@ -6552,7 +6552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1010, "fields": { "spell": "detect-thoughts-a5e", @@ -6564,7 +6564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1011, "fields": { "spell": "detect-thoughts-a5e", @@ -6576,7 +6576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1012, "fields": { "spell": "detect-thoughts-a5e", @@ -6588,7 +6588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1013, "fields": { "spell": "dimension-door-a5e", @@ -6600,7 +6600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1014, "fields": { "spell": "disguise-self-a5e", @@ -6612,7 +6612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1016, "fields": { "spell": "disguise-self-a5e", @@ -6624,7 +6624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1017, "fields": { "spell": "disguise-self-a5e", @@ -6636,7 +6636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1018, "fields": { "spell": "disguise-self-a5e", @@ -6648,7 +6648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1019, "fields": { "spell": "disguise-self-a5e", @@ -6660,7 +6660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1020, "fields": { "spell": "disguise-self-a5e", @@ -6672,7 +6672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1021, "fields": { "spell": "disguise-self-a5e", @@ -6684,7 +6684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1022, "fields": { "spell": "disguise-self-a5e", @@ -6696,7 +6696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1023, "fields": { "spell": "disguise-self-a5e", @@ -6708,7 +6708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1024, "fields": { "spell": "disintegrate-a5e", @@ -6720,7 +6720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1026, "fields": { "spell": "disintegrate-a5e", @@ -6732,7 +6732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1027, "fields": { "spell": "disintegrate-a5e", @@ -6744,7 +6744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1028, "fields": { "spell": "disintegrate-a5e", @@ -6756,7 +6756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1029, "fields": { "spell": "dispel-evil-and-good-a5e", @@ -6768,7 +6768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1031, "fields": { "spell": "dispel-evil-and-good-a5e", @@ -6780,7 +6780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1032, "fields": { "spell": "dispel-evil-and-good-a5e", @@ -6792,7 +6792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1033, "fields": { "spell": "dispel-evil-and-good-a5e", @@ -6804,7 +6804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1034, "fields": { "spell": "dispel-evil-and-good-a5e", @@ -6816,7 +6816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1035, "fields": { "spell": "dispel-magic-a5e", @@ -6828,7 +6828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1037, "fields": { "spell": "dispel-magic-a5e", @@ -6840,7 +6840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1038, "fields": { "spell": "dispel-magic-a5e", @@ -6852,7 +6852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1039, "fields": { "spell": "dispel-magic-a5e", @@ -6864,7 +6864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1040, "fields": { "spell": "dispel-magic-a5e", @@ -6876,7 +6876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1041, "fields": { "spell": "dispel-magic-a5e", @@ -6888,7 +6888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1042, "fields": { "spell": "dispel-magic-a5e", @@ -6900,7 +6900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1043, "fields": { "spell": "divination-a5e", @@ -6912,7 +6912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1044, "fields": { "spell": "divination-a5e", @@ -6924,7 +6924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1045, "fields": { "spell": "divine-favor-a5e", @@ -6936,7 +6936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1046, "fields": { "spell": "divine-word-a5e", @@ -6948,7 +6948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1047, "fields": { "spell": "dominate-beast-a5e", @@ -6960,7 +6960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1049, "fields": { "spell": "dominate-beast-a5e", @@ -6972,7 +6972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1050, "fields": { "spell": "dominate-beast-a5e", @@ -6984,7 +6984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1051, "fields": { "spell": "dominate-beast-a5e", @@ -6996,7 +6996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1052, "fields": { "spell": "dominate-beast-a5e", @@ -7008,7 +7008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1053, "fields": { "spell": "dominate-beast-a5e", @@ -7020,7 +7020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1054, "fields": { "spell": "dominate-monster-a5e", @@ -7032,7 +7032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1056, "fields": { "spell": "dominate-monster-a5e", @@ -7044,7 +7044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1057, "fields": { "spell": "dominate-person-a5e", @@ -7056,7 +7056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1059, "fields": { "spell": "dominate-person-a5e", @@ -7068,7 +7068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1060, "fields": { "spell": "dominate-person-a5e", @@ -7080,7 +7080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1061, "fields": { "spell": "dominate-person-a5e", @@ -7092,7 +7092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1062, "fields": { "spell": "dominate-person-a5e", @@ -7104,7 +7104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1063, "fields": { "spell": "dramatic-sting-a5e", @@ -7116,7 +7116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1065, "fields": { "spell": "dramatic-sting-a5e", @@ -7128,7 +7128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1066, "fields": { "spell": "dramatic-sting-a5e", @@ -7140,7 +7140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1067, "fields": { "spell": "dramatic-sting-a5e", @@ -7152,7 +7152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1068, "fields": { "spell": "dramatic-sting-a5e", @@ -7164,7 +7164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1069, "fields": { "spell": "dramatic-sting-a5e", @@ -7176,7 +7176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1070, "fields": { "spell": "dramatic-sting-a5e", @@ -7188,7 +7188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1071, "fields": { "spell": "dramatic-sting-a5e", @@ -7200,7 +7200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1072, "fields": { "spell": "dramatic-sting-a5e", @@ -7212,7 +7212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1073, "fields": { "spell": "dream-a5e", @@ -7224,7 +7224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1074, "fields": { "spell": "druidcraft-a5e", @@ -7236,7 +7236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1075, "fields": { "spell": "earth-barrier-a5e", @@ -7248,7 +7248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1076, "fields": { "spell": "earthquake-a5e", @@ -7260,7 +7260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1077, "fields": { "spell": "eldritch-cube-a5e", @@ -7272,7 +7272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1078, "fields": { "spell": "enhance-ability-a5e", @@ -7284,7 +7284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1080, "fields": { "spell": "enhance-ability-a5e", @@ -7296,7 +7296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1081, "fields": { "spell": "enhance-ability-a5e", @@ -7308,7 +7308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1082, "fields": { "spell": "enhance-ability-a5e", @@ -7320,7 +7320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1083, "fields": { "spell": "enhance-ability-a5e", @@ -7332,7 +7332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1084, "fields": { "spell": "enhance-ability-a5e", @@ -7344,7 +7344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1085, "fields": { "spell": "enhance-ability-a5e", @@ -7356,7 +7356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1086, "fields": { "spell": "enhance-ability-a5e", @@ -7368,7 +7368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1087, "fields": { "spell": "enlargereduce-a5e", @@ -7380,7 +7380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1089, "fields": { "spell": "enlargereduce-a5e", @@ -7392,7 +7392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1090, "fields": { "spell": "enlargereduce-a5e", @@ -7404,7 +7404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1091, "fields": { "spell": "enlargereduce-a5e", @@ -7416,7 +7416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1092, "fields": { "spell": "enlargereduce-a5e", @@ -7428,7 +7428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1093, "fields": { "spell": "enlargereduce-a5e", @@ -7440,7 +7440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1094, "fields": { "spell": "enlargereduce-a5e", @@ -7452,7 +7452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1095, "fields": { "spell": "enlargereduce-a5e", @@ -7464,7 +7464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1096, "fields": { "spell": "enrage-architecture-a5e", @@ -7476,7 +7476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1097, "fields": { "spell": "entangle-a5e", @@ -7488,7 +7488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1098, "fields": { "spell": "enthrall-a5e", @@ -7500,7 +7500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1099, "fields": { "spell": "etherealness-a5e", @@ -7512,7 +7512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1101, "fields": { "spell": "etherealness-a5e", @@ -7524,7 +7524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1102, "fields": { "spell": "etherealness-a5e", @@ -7536,7 +7536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1103, "fields": { "spell": "expeditious-retreat-a5e", @@ -7548,7 +7548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1105, "fields": { "spell": "expeditious-retreat-a5e", @@ -7560,7 +7560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1106, "fields": { "spell": "expeditious-retreat-a5e", @@ -7572,7 +7572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1107, "fields": { "spell": "expeditious-retreat-a5e", @@ -7584,7 +7584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1108, "fields": { "spell": "expeditious-retreat-a5e", @@ -7596,7 +7596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1109, "fields": { "spell": "expeditious-retreat-a5e", @@ -7608,7 +7608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1110, "fields": { "spell": "expeditious-retreat-a5e", @@ -7620,7 +7620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1111, "fields": { "spell": "expeditious-retreat-a5e", @@ -7632,7 +7632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1112, "fields": { "spell": "expeditious-retreat-a5e", @@ -7644,7 +7644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1113, "fields": { "spell": "eyebite-a5e", @@ -7656,7 +7656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1114, "fields": { "spell": "fabricate-a5e", @@ -7668,7 +7668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1115, "fields": { "spell": "faerie-fire-a5e", @@ -7680,7 +7680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1116, "fields": { "spell": "faithful-hound-a5e", @@ -7692,7 +7692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1117, "fields": { "spell": "false-life-a5e", @@ -7704,7 +7704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1119, "fields": { "spell": "false-life-a5e", @@ -7716,7 +7716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1120, "fields": { "spell": "false-life-a5e", @@ -7728,7 +7728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1121, "fields": { "spell": "false-life-a5e", @@ -7740,7 +7740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1122, "fields": { "spell": "false-life-a5e", @@ -7752,7 +7752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1123, "fields": { "spell": "false-life-a5e", @@ -7764,7 +7764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1124, "fields": { "spell": "false-life-a5e", @@ -7776,7 +7776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1125, "fields": { "spell": "false-life-a5e", @@ -7788,7 +7788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1126, "fields": { "spell": "false-life-a5e", @@ -7800,7 +7800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1127, "fields": { "spell": "fear-a5e", @@ -7812,7 +7812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1128, "fields": { "spell": "feather-fall-a5e", @@ -7824,7 +7824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1130, "fields": { "spell": "feather-fall-a5e", @@ -7836,7 +7836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1131, "fields": { "spell": "feather-fall-a5e", @@ -7848,7 +7848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1132, "fields": { "spell": "feather-fall-a5e", @@ -7860,7 +7860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1133, "fields": { "spell": "feather-fall-a5e", @@ -7872,7 +7872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1134, "fields": { "spell": "feather-fall-a5e", @@ -7884,7 +7884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1135, "fields": { "spell": "feather-fall-a5e", @@ -7896,7 +7896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1136, "fields": { "spell": "feather-fall-a5e", @@ -7908,7 +7908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1137, "fields": { "spell": "feather-fall-a5e", @@ -7920,7 +7920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1138, "fields": { "spell": "feeblemind-a5e", @@ -7932,7 +7932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1139, "fields": { "spell": "find-familiar-a5e", @@ -7944,7 +7944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1140, "fields": { "spell": "find-familiar-a5e", @@ -7956,7 +7956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1141, "fields": { "spell": "find-steed-a5e", @@ -7968,7 +7968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1143, "fields": { "spell": "find-steed-a5e", @@ -7980,7 +7980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1144, "fields": { "spell": "find-steed-a5e", @@ -7992,7 +7992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1145, "fields": { "spell": "find-steed-a5e", @@ -8004,7 +8004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1146, "fields": { "spell": "find-steed-a5e", @@ -8016,7 +8016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1147, "fields": { "spell": "find-steed-a5e", @@ -8028,7 +8028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1148, "fields": { "spell": "find-steed-a5e", @@ -8040,7 +8040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1149, "fields": { "spell": "find-steed-a5e", @@ -8052,7 +8052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1150, "fields": { "spell": "find-the-path-a5e", @@ -8064,7 +8064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1151, "fields": { "spell": "find-traps-a5e", @@ -8076,7 +8076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1152, "fields": { "spell": "finger-of-death-a5e", @@ -8088,7 +8088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1154, "fields": { "spell": "finger-of-death-a5e", @@ -8100,7 +8100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1155, "fields": { "spell": "finger-of-death-a5e", @@ -8112,7 +8112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1156, "fields": { "spell": "fire-bolt-a5e", @@ -8124,7 +8124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1157, "fields": { "spell": "fire-bolt-a5e", @@ -8136,7 +8136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1158, "fields": { "spell": "fire-bolt-a5e", @@ -8148,7 +8148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1159, "fields": { "spell": "fire-bolt-a5e", @@ -8160,7 +8160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1160, "fields": { "spell": "fire-bolt-a5e", @@ -8172,7 +8172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1161, "fields": { "spell": "fire-bolt-a5e", @@ -8184,7 +8184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1162, "fields": { "spell": "fire-bolt-a5e", @@ -8196,7 +8196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1163, "fields": { "spell": "fire-bolt-a5e", @@ -8208,7 +8208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1164, "fields": { "spell": "fire-bolt-a5e", @@ -8220,7 +8220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1165, "fields": { "spell": "fire-bolt-a5e", @@ -8232,7 +8232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1166, "fields": { "spell": "fire-bolt-a5e", @@ -8244,7 +8244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1167, "fields": { "spell": "fire-bolt-a5e", @@ -8256,7 +8256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1168, "fields": { "spell": "fire-bolt-a5e", @@ -8268,7 +8268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1169, "fields": { "spell": "fire-bolt-a5e", @@ -8280,7 +8280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1170, "fields": { "spell": "fire-bolt-a5e", @@ -8292,7 +8292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1171, "fields": { "spell": "fire-bolt-a5e", @@ -8304,7 +8304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1172, "fields": { "spell": "fire-bolt-a5e", @@ -8316,7 +8316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1173, "fields": { "spell": "fire-bolt-a5e", @@ -8328,7 +8328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1174, "fields": { "spell": "fire-bolt-a5e", @@ -8340,7 +8340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1175, "fields": { "spell": "fire-bolt-a5e", @@ -8352,7 +8352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1176, "fields": { "spell": "fire-bolt-a5e", @@ -8364,7 +8364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1177, "fields": { "spell": "fire-shield-a5e", @@ -8376,7 +8376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1179, "fields": { "spell": "fire-shield-a5e", @@ -8388,7 +8388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1180, "fields": { "spell": "fire-shield-a5e", @@ -8400,7 +8400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1181, "fields": { "spell": "fire-shield-a5e", @@ -8412,7 +8412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1182, "fields": { "spell": "fire-shield-a5e", @@ -8424,7 +8424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1183, "fields": { "spell": "fire-shield-a5e", @@ -8436,7 +8436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1184, "fields": { "spell": "fire-storm-a5e", @@ -8448,7 +8448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1186, "fields": { "spell": "fire-storm-a5e", @@ -8460,7 +8460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1187, "fields": { "spell": "fire-storm-a5e", @@ -8472,7 +8472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1188, "fields": { "spell": "fireball-a5e", @@ -8484,7 +8484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1190, "fields": { "spell": "fireball-a5e", @@ -8496,7 +8496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1191, "fields": { "spell": "fireball-a5e", @@ -8508,7 +8508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1192, "fields": { "spell": "fireball-a5e", @@ -8520,7 +8520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1193, "fields": { "spell": "fireball-a5e", @@ -8532,7 +8532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1194, "fields": { "spell": "fireball-a5e", @@ -8544,7 +8544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1195, "fields": { "spell": "fireball-a5e", @@ -8556,7 +8556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1196, "fields": { "spell": "flame-blade-a5e", @@ -8568,7 +8568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1198, "fields": { "spell": "flame-blade-a5e", @@ -8580,7 +8580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1199, "fields": { "spell": "flame-blade-a5e", @@ -8592,7 +8592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1200, "fields": { "spell": "flame-blade-a5e", @@ -8604,7 +8604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1201, "fields": { "spell": "flame-blade-a5e", @@ -8616,7 +8616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1202, "fields": { "spell": "flame-blade-a5e", @@ -8628,7 +8628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1203, "fields": { "spell": "flame-blade-a5e", @@ -8640,7 +8640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1204, "fields": { "spell": "flame-blade-a5e", @@ -8652,7 +8652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1205, "fields": { "spell": "flame-strike-a5e", @@ -8664,7 +8664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1207, "fields": { "spell": "flame-strike-a5e", @@ -8676,7 +8676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1208, "fields": { "spell": "flame-strike-a5e", @@ -8688,7 +8688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1209, "fields": { "spell": "flame-strike-a5e", @@ -8700,7 +8700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1210, "fields": { "spell": "flame-strike-a5e", @@ -8712,7 +8712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1211, "fields": { "spell": "flaming-sphere-a5e", @@ -8724,7 +8724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1213, "fields": { "spell": "flaming-sphere-a5e", @@ -8736,7 +8736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1214, "fields": { "spell": "flaming-sphere-a5e", @@ -8748,7 +8748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1215, "fields": { "spell": "flaming-sphere-a5e", @@ -8760,7 +8760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1216, "fields": { "spell": "flaming-sphere-a5e", @@ -8772,7 +8772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1217, "fields": { "spell": "flaming-sphere-a5e", @@ -8784,7 +8784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1218, "fields": { "spell": "flaming-sphere-a5e", @@ -8796,7 +8796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1219, "fields": { "spell": "flaming-sphere-a5e", @@ -8808,7 +8808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1220, "fields": { "spell": "flesh-to-stone-a5e", @@ -8820,7 +8820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1222, "fields": { "spell": "flesh-to-stone-a5e", @@ -8832,7 +8832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1223, "fields": { "spell": "flesh-to-stone-a5e", @@ -8844,7 +8844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1224, "fields": { "spell": "flesh-to-stone-a5e", @@ -8856,7 +8856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1225, "fields": { "spell": "flex-a5e", @@ -8868,7 +8868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1227, "fields": { "spell": "flex-a5e", @@ -8880,7 +8880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1228, "fields": { "spell": "flex-a5e", @@ -8892,7 +8892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1229, "fields": { "spell": "flex-a5e", @@ -8904,7 +8904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1230, "fields": { "spell": "flex-a5e", @@ -8916,7 +8916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1231, "fields": { "spell": "flex-a5e", @@ -8928,7 +8928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1232, "fields": { "spell": "flex-a5e", @@ -8940,7 +8940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1233, "fields": { "spell": "flex-a5e", @@ -8952,7 +8952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1234, "fields": { "spell": "floating-disk-a5e", @@ -8964,7 +8964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1235, "fields": { "spell": "floating-disk-a5e", @@ -8976,7 +8976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1237, "fields": { "spell": "floating-disk-a5e", @@ -8988,7 +8988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1238, "fields": { "spell": "floating-disk-a5e", @@ -9000,7 +9000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1239, "fields": { "spell": "floating-disk-a5e", @@ -9012,7 +9012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1240, "fields": { "spell": "floating-disk-a5e", @@ -9024,7 +9024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1241, "fields": { "spell": "floating-disk-a5e", @@ -9036,7 +9036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1242, "fields": { "spell": "floating-disk-a5e", @@ -9048,7 +9048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1243, "fields": { "spell": "floating-disk-a5e", @@ -9060,7 +9060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1244, "fields": { "spell": "floating-disk-a5e", @@ -9072,7 +9072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1245, "fields": { "spell": "fly-a5e", @@ -9084,7 +9084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1247, "fields": { "spell": "fly-a5e", @@ -9096,7 +9096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1248, "fields": { "spell": "fly-a5e", @@ -9108,7 +9108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1249, "fields": { "spell": "fly-a5e", @@ -9120,7 +9120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1250, "fields": { "spell": "fly-a5e", @@ -9132,7 +9132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1251, "fields": { "spell": "fly-a5e", @@ -9144,7 +9144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1252, "fields": { "spell": "fly-a5e", @@ -9156,7 +9156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1253, "fields": { "spell": "fog-cloud-a5e", @@ -9168,7 +9168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1255, "fields": { "spell": "fog-cloud-a5e", @@ -9180,7 +9180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1256, "fields": { "spell": "fog-cloud-a5e", @@ -9192,7 +9192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1257, "fields": { "spell": "fog-cloud-a5e", @@ -9204,7 +9204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1258, "fields": { "spell": "fog-cloud-a5e", @@ -9216,7 +9216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1259, "fields": { "spell": "fog-cloud-a5e", @@ -9228,7 +9228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1260, "fields": { "spell": "fog-cloud-a5e", @@ -9240,7 +9240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1261, "fields": { "spell": "fog-cloud-a5e", @@ -9252,7 +9252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1262, "fields": { "spell": "fog-cloud-a5e", @@ -9264,7 +9264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1263, "fields": { "spell": "forbiddance-a5e", @@ -9276,7 +9276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1264, "fields": { "spell": "forbiddance-a5e", @@ -9288,7 +9288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1265, "fields": { "spell": "force-of-will-a5e", @@ -9300,7 +9300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1267, "fields": { "spell": "force-of-will-a5e", @@ -9312,7 +9312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1268, "fields": { "spell": "force-of-will-a5e", @@ -9324,7 +9324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1269, "fields": { "spell": "force-of-will-a5e", @@ -9336,7 +9336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1270, "fields": { "spell": "force-of-will-a5e", @@ -9348,7 +9348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1271, "fields": { "spell": "force-of-will-a5e", @@ -9360,7 +9360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1272, "fields": { "spell": "force-of-will-a5e", @@ -9372,7 +9372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1273, "fields": { "spell": "force-of-will-a5e", @@ -9384,7 +9384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1274, "fields": { "spell": "force-punch-a5e", @@ -9396,7 +9396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1276, "fields": { "spell": "force-punch-a5e", @@ -9408,7 +9408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1277, "fields": { "spell": "force-punch-a5e", @@ -9420,7 +9420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1278, "fields": { "spell": "force-punch-a5e", @@ -9432,7 +9432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1279, "fields": { "spell": "force-punch-a5e", @@ -9444,7 +9444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1280, "fields": { "spell": "force-punch-a5e", @@ -9456,7 +9456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1281, "fields": { "spell": "force-punch-a5e", @@ -9468,7 +9468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1282, "fields": { "spell": "force-punch-a5e", @@ -9480,7 +9480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1283, "fields": { "spell": "force-punch-a5e", @@ -9492,7 +9492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1284, "fields": { "spell": "forcecage-a5e", @@ -9504,7 +9504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1286, "fields": { "spell": "forcecage-a5e", @@ -9516,7 +9516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1287, "fields": { "spell": "forcecage-a5e", @@ -9528,7 +9528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1288, "fields": { "spell": "foresight-a5e", @@ -9540,7 +9540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1289, "fields": { "spell": "forest-army-a5e", @@ -9552,7 +9552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1290, "fields": { "spell": "freedom-of-movement-a5e", @@ -9564,7 +9564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1292, "fields": { "spell": "freedom-of-movement-a5e", @@ -9576,7 +9576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1293, "fields": { "spell": "freedom-of-movement-a5e", @@ -9588,7 +9588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1294, "fields": { "spell": "freedom-of-movement-a5e", @@ -9600,7 +9600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1295, "fields": { "spell": "freedom-of-movement-a5e", @@ -9612,7 +9612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1296, "fields": { "spell": "freedom-of-movement-a5e", @@ -9624,7 +9624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1297, "fields": { "spell": "freezing-sphere-a5e", @@ -9636,7 +9636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1299, "fields": { "spell": "freezing-sphere-a5e", @@ -9648,7 +9648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1300, "fields": { "spell": "freezing-sphere-a5e", @@ -9660,7 +9660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1301, "fields": { "spell": "freezing-sphere-a5e", @@ -9672,7 +9672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1302, "fields": { "spell": "friends-a5e", @@ -9684,7 +9684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1303, "fields": { "spell": "gaseous-form-a5e", @@ -9696,7 +9696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1305, "fields": { "spell": "gaseous-form-a5e", @@ -9708,7 +9708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1306, "fields": { "spell": "gaseous-form-a5e", @@ -9720,7 +9720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1307, "fields": { "spell": "gaseous-form-a5e", @@ -9732,7 +9732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1308, "fields": { "spell": "gaseous-form-a5e", @@ -9744,7 +9744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1309, "fields": { "spell": "gaseous-form-a5e", @@ -9756,7 +9756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1310, "fields": { "spell": "gaseous-form-a5e", @@ -9768,7 +9768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1311, "fields": { "spell": "gate-a5e", @@ -9780,7 +9780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1312, "fields": { "spell": "geas-a5e", @@ -9792,7 +9792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1314, "fields": { "spell": "geas-a5e", @@ -9804,7 +9804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1315, "fields": { "spell": "geas-a5e", @@ -9816,7 +9816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1316, "fields": { "spell": "geas-a5e", @@ -9828,7 +9828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1317, "fields": { "spell": "geas-a5e", @@ -9840,7 +9840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1318, "fields": { "spell": "gentle-repose-a5e", @@ -9852,7 +9852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1319, "fields": { "spell": "gentle-repose-a5e", @@ -9864,7 +9864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1321, "fields": { "spell": "gentle-repose-a5e", @@ -9876,7 +9876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1322, "fields": { "spell": "gentle-repose-a5e", @@ -9888,7 +9888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1323, "fields": { "spell": "gentle-repose-a5e", @@ -9900,7 +9900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1324, "fields": { "spell": "gentle-repose-a5e", @@ -9912,7 +9912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1325, "fields": { "spell": "gentle-repose-a5e", @@ -9924,7 +9924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1326, "fields": { "spell": "gentle-repose-a5e", @@ -9936,7 +9936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1327, "fields": { "spell": "gentle-repose-a5e", @@ -9948,7 +9948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1328, "fields": { "spell": "giant-insect-a5e", @@ -9960,7 +9960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1330, "fields": { "spell": "giant-insect-a5e", @@ -9972,7 +9972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1331, "fields": { "spell": "giant-insect-a5e", @@ -9984,7 +9984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1332, "fields": { "spell": "giant-insect-a5e", @@ -9996,7 +9996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1333, "fields": { "spell": "giant-insect-a5e", @@ -10008,7 +10008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1334, "fields": { "spell": "giant-insect-a5e", @@ -10020,7 +10020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1335, "fields": { "spell": "glibness-a5e", @@ -10032,7 +10032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1336, "fields": { "spell": "globe-of-invulnerability-a5e", @@ -10044,7 +10044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1338, "fields": { "spell": "globe-of-invulnerability-a5e", @@ -10056,7 +10056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1339, "fields": { "spell": "globe-of-invulnerability-a5e", @@ -10068,7 +10068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1340, "fields": { "spell": "globe-of-invulnerability-a5e", @@ -10080,7 +10080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1341, "fields": { "spell": "glyph-of-warding-a5e", @@ -10092,7 +10092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1343, "fields": { "spell": "glyph-of-warding-a5e", @@ -10104,7 +10104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1344, "fields": { "spell": "glyph-of-warding-a5e", @@ -10116,7 +10116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1345, "fields": { "spell": "glyph-of-warding-a5e", @@ -10128,7 +10128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1346, "fields": { "spell": "glyph-of-warding-a5e", @@ -10140,7 +10140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1347, "fields": { "spell": "glyph-of-warding-a5e", @@ -10152,7 +10152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1348, "fields": { "spell": "glyph-of-warding-a5e", @@ -10164,7 +10164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1349, "fields": { "spell": "goodberry-a5e", @@ -10176,7 +10176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1351, "fields": { "spell": "goodberry-a5e", @@ -10188,7 +10188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1352, "fields": { "spell": "goodberry-a5e", @@ -10200,7 +10200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1353, "fields": { "spell": "goodberry-a5e", @@ -10212,7 +10212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1354, "fields": { "spell": "goodberry-a5e", @@ -10224,7 +10224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1355, "fields": { "spell": "goodberry-a5e", @@ -10236,7 +10236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1356, "fields": { "spell": "goodberry-a5e", @@ -10248,7 +10248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1357, "fields": { "spell": "goodberry-a5e", @@ -10260,7 +10260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1358, "fields": { "spell": "goodberry-a5e", @@ -10272,7 +10272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1359, "fields": { "spell": "grapevine-a5e", @@ -10284,7 +10284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1360, "fields": { "spell": "grease-a5e", @@ -10296,7 +10296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1361, "fields": { "spell": "greater-invisibility-a5e", @@ -10308,7 +10308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1362, "fields": { "spell": "greater-restoration-a5e", @@ -10320,7 +10320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1363, "fields": { "spell": "guardian-of-faith-a5e", @@ -10332,7 +10332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1364, "fields": { "spell": "guards-and-wards-a5e", @@ -10344,7 +10344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1365, "fields": { "spell": "guidance-a5e", @@ -10356,7 +10356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1366, "fields": { "spell": "guiding-bolt-a5e", @@ -10368,7 +10368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1368, "fields": { "spell": "guiding-bolt-a5e", @@ -10380,7 +10380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1369, "fields": { "spell": "guiding-bolt-a5e", @@ -10392,7 +10392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1370, "fields": { "spell": "guiding-bolt-a5e", @@ -10404,7 +10404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1371, "fields": { "spell": "guiding-bolt-a5e", @@ -10416,7 +10416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1372, "fields": { "spell": "guiding-bolt-a5e", @@ -10428,7 +10428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1373, "fields": { "spell": "guiding-bolt-a5e", @@ -10440,7 +10440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1374, "fields": { "spell": "guiding-bolt-a5e", @@ -10452,7 +10452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1375, "fields": { "spell": "guiding-bolt-a5e", @@ -10464,7 +10464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1376, "fields": { "spell": "gust-of-wind-a5e", @@ -10476,7 +10476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1377, "fields": { "spell": "hallow-a5e", @@ -10488,7 +10488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1378, "fields": { "spell": "hallucinatory-terrain-a5e", @@ -10500,7 +10500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1380, "fields": { "spell": "hallucinatory-terrain-a5e", @@ -10512,7 +10512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1381, "fields": { "spell": "hallucinatory-terrain-a5e", @@ -10524,7 +10524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1382, "fields": { "spell": "hallucinatory-terrain-a5e", @@ -10536,7 +10536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1383, "fields": { "spell": "hallucinatory-terrain-a5e", @@ -10548,7 +10548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1384, "fields": { "spell": "hallucinatory-terrain-a5e", @@ -10560,7 +10560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1385, "fields": { "spell": "harm-a5e", @@ -10572,7 +10572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1387, "fields": { "spell": "harm-a5e", @@ -10584,7 +10584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1388, "fields": { "spell": "harm-a5e", @@ -10596,7 +10596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1389, "fields": { "spell": "harm-a5e", @@ -10608,7 +10608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1390, "fields": { "spell": "harmonic-resonance-a5e", @@ -10620,7 +10620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1391, "fields": { "spell": "haste-a5e", @@ -10632,7 +10632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1393, "fields": { "spell": "haste-a5e", @@ -10644,7 +10644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1394, "fields": { "spell": "haste-a5e", @@ -10656,7 +10656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1395, "fields": { "spell": "haste-a5e", @@ -10668,7 +10668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1396, "fields": { "spell": "haste-a5e", @@ -10680,7 +10680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1397, "fields": { "spell": "haste-a5e", @@ -10692,7 +10692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1398, "fields": { "spell": "haste-a5e", @@ -10704,7 +10704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1399, "fields": { "spell": "heal-a5e", @@ -10716,7 +10716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1401, "fields": { "spell": "heal-a5e", @@ -10728,7 +10728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1402, "fields": { "spell": "heal-a5e", @@ -10740,7 +10740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1403, "fields": { "spell": "heal-a5e", @@ -10752,7 +10752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1404, "fields": { "spell": "healing-word-a5e", @@ -10764,7 +10764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1406, "fields": { "spell": "healing-word-a5e", @@ -10776,7 +10776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1407, "fields": { "spell": "healing-word-a5e", @@ -10788,7 +10788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1408, "fields": { "spell": "healing-word-a5e", @@ -10800,7 +10800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1409, "fields": { "spell": "healing-word-a5e", @@ -10812,7 +10812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1410, "fields": { "spell": "healing-word-a5e", @@ -10824,7 +10824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1411, "fields": { "spell": "healing-word-a5e", @@ -10836,7 +10836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1412, "fields": { "spell": "healing-word-a5e", @@ -10848,7 +10848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1413, "fields": { "spell": "healing-word-a5e", @@ -10860,7 +10860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1414, "fields": { "spell": "heart-of-dis-a5e", @@ -10872,7 +10872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1415, "fields": { "spell": "heat-metal-a5e", @@ -10884,7 +10884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1417, "fields": { "spell": "heat-metal-a5e", @@ -10896,7 +10896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1418, "fields": { "spell": "heat-metal-a5e", @@ -10908,7 +10908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1419, "fields": { "spell": "heat-metal-a5e", @@ -10920,7 +10920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1420, "fields": { "spell": "heat-metal-a5e", @@ -10932,7 +10932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1421, "fields": { "spell": "heat-metal-a5e", @@ -10944,7 +10944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1422, "fields": { "spell": "heat-metal-a5e", @@ -10956,7 +10956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1423, "fields": { "spell": "heat-metal-a5e", @@ -10968,7 +10968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1424, "fields": { "spell": "heroes-feast-a5e", @@ -10980,7 +10980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1425, "fields": { "spell": "heroism-a5e", @@ -10992,7 +10992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1427, "fields": { "spell": "heroism-a5e", @@ -11004,7 +11004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1428, "fields": { "spell": "heroism-a5e", @@ -11016,7 +11016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1429, "fields": { "spell": "heroism-a5e", @@ -11028,7 +11028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1430, "fields": { "spell": "heroism-a5e", @@ -11040,7 +11040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1431, "fields": { "spell": "heroism-a5e", @@ -11052,7 +11052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1432, "fields": { "spell": "heroism-a5e", @@ -11064,7 +11064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1433, "fields": { "spell": "heroism-a5e", @@ -11076,7 +11076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1434, "fields": { "spell": "heroism-a5e", @@ -11088,7 +11088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1435, "fields": { "spell": "hideous-laughter-a5e", @@ -11100,7 +11100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1437, "fields": { "spell": "hideous-laughter-a5e", @@ -11112,7 +11112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1438, "fields": { "spell": "hideous-laughter-a5e", @@ -11124,7 +11124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1439, "fields": { "spell": "hideous-laughter-a5e", @@ -11136,7 +11136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1440, "fields": { "spell": "hideous-laughter-a5e", @@ -11148,7 +11148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1441, "fields": { "spell": "hideous-laughter-a5e", @@ -11160,7 +11160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1442, "fields": { "spell": "hideous-laughter-a5e", @@ -11172,7 +11172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1443, "fields": { "spell": "hideous-laughter-a5e", @@ -11184,7 +11184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1444, "fields": { "spell": "hideous-laughter-a5e", @@ -11196,7 +11196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1445, "fields": { "spell": "hold-monster-a5e", @@ -11208,7 +11208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1447, "fields": { "spell": "hold-monster-a5e", @@ -11220,7 +11220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1448, "fields": { "spell": "hold-monster-a5e", @@ -11232,7 +11232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1449, "fields": { "spell": "hold-monster-a5e", @@ -11244,7 +11244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1450, "fields": { "spell": "hold-monster-a5e", @@ -11256,7 +11256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1451, "fields": { "spell": "hold-person-a5e", @@ -11268,7 +11268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1453, "fields": { "spell": "hold-person-a5e", @@ -11280,7 +11280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1454, "fields": { "spell": "hold-person-a5e", @@ -11292,7 +11292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1455, "fields": { "spell": "hold-person-a5e", @@ -11304,7 +11304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1456, "fields": { "spell": "hold-person-a5e", @@ -11316,7 +11316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1457, "fields": { "spell": "hold-person-a5e", @@ -11328,7 +11328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1458, "fields": { "spell": "hold-person-a5e", @@ -11340,7 +11340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1459, "fields": { "spell": "hold-person-a5e", @@ -11352,7 +11352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1460, "fields": { "spell": "holy-aura-a5e", @@ -11364,7 +11364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1461, "fields": { "spell": "hypnotic-pattern-a5e", @@ -11376,7 +11376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1462, "fields": { "spell": "ice-storm-a5e", @@ -11388,7 +11388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1464, "fields": { "spell": "ice-storm-a5e", @@ -11400,7 +11400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1465, "fields": { "spell": "ice-storm-a5e", @@ -11412,7 +11412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1466, "fields": { "spell": "ice-storm-a5e", @@ -11424,7 +11424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1467, "fields": { "spell": "ice-storm-a5e", @@ -11436,7 +11436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1468, "fields": { "spell": "ice-storm-a5e", @@ -11448,7 +11448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1469, "fields": { "spell": "identify-a5e", @@ -11460,7 +11460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1470, "fields": { "spell": "identify-a5e", @@ -11472,7 +11472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1471, "fields": { "spell": "illusory-script-a5e", @@ -11484,7 +11484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1472, "fields": { "spell": "imprisonment-a5e", @@ -11496,7 +11496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1473, "fields": { "spell": "incendiary-cloud-a5e", @@ -11508,7 +11508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1474, "fields": { "spell": "inescapable-malady-a5e", @@ -11520,7 +11520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1476, "fields": { "spell": "inescapable-malady-a5e", @@ -11532,7 +11532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1477, "fields": { "spell": "inescapable-malady-a5e", @@ -11544,7 +11544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1478, "fields": { "spell": "infernal-weapon-a5e", @@ -11556,7 +11556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1479, "fields": { "spell": "inflict-wounds-a5e", @@ -11568,7 +11568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1481, "fields": { "spell": "inflict-wounds-a5e", @@ -11580,7 +11580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1482, "fields": { "spell": "inflict-wounds-a5e", @@ -11592,7 +11592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1483, "fields": { "spell": "inflict-wounds-a5e", @@ -11604,7 +11604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1484, "fields": { "spell": "inflict-wounds-a5e", @@ -11616,7 +11616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1485, "fields": { "spell": "inflict-wounds-a5e", @@ -11628,7 +11628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1486, "fields": { "spell": "inflict-wounds-a5e", @@ -11640,7 +11640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1487, "fields": { "spell": "inflict-wounds-a5e", @@ -11652,7 +11652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1488, "fields": { "spell": "inflict-wounds-a5e", @@ -11664,7 +11664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1489, "fields": { "spell": "insect-plague-a5e", @@ -11676,7 +11676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1491, "fields": { "spell": "insect-plague-a5e", @@ -11688,7 +11688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1492, "fields": { "spell": "insect-plague-a5e", @@ -11700,7 +11700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1493, "fields": { "spell": "insect-plague-a5e", @@ -11712,7 +11712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1494, "fields": { "spell": "insect-plague-a5e", @@ -11724,7 +11724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1495, "fields": { "spell": "instant-summons-a5e", @@ -11736,7 +11736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1496, "fields": { "spell": "instant-summons-a5e", @@ -11748,7 +11748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1497, "fields": { "spell": "invigorated-strikes-a5e", @@ -11760,7 +11760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1499, "fields": { "spell": "invigorated-strikes-a5e", @@ -11772,7 +11772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1500, "fields": { "spell": "invigorated-strikes-a5e", @@ -11784,7 +11784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1501, "fields": { "spell": "invigorated-strikes-a5e", @@ -11796,7 +11796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1502, "fields": { "spell": "invigorated-strikes-a5e", @@ -11808,7 +11808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1503, "fields": { "spell": "invigorated-strikes-a5e", @@ -11820,7 +11820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1504, "fields": { "spell": "invigorated-strikes-a5e", @@ -11832,7 +11832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1505, "fields": { "spell": "invigorated-strikes-a5e", @@ -11844,7 +11844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1506, "fields": { "spell": "invisibility-a5e", @@ -11856,7 +11856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1508, "fields": { "spell": "invisibility-a5e", @@ -11868,7 +11868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1509, "fields": { "spell": "invisibility-a5e", @@ -11880,7 +11880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1510, "fields": { "spell": "invisibility-a5e", @@ -11892,7 +11892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1511, "fields": { "spell": "invisibility-a5e", @@ -11904,7 +11904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1512, "fields": { "spell": "invisibility-a5e", @@ -11916,7 +11916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1513, "fields": { "spell": "invisibility-a5e", @@ -11928,7 +11928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1514, "fields": { "spell": "invisibility-a5e", @@ -11940,7 +11940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1515, "fields": { "spell": "irresistible-dance-a5e", @@ -11952,7 +11952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1517, "fields": { "spell": "irresistible-dance-a5e", @@ -11964,7 +11964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1518, "fields": { "spell": "irresistible-dance-a5e", @@ -11976,7 +11976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1519, "fields": { "spell": "irresistible-dance-a5e", @@ -11988,7 +11988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1520, "fields": { "spell": "jump-a5e", @@ -12000,7 +12000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1522, "fields": { "spell": "jump-a5e", @@ -12012,7 +12012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1523, "fields": { "spell": "jump-a5e", @@ -12024,7 +12024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1524, "fields": { "spell": "jump-a5e", @@ -12036,7 +12036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1525, "fields": { "spell": "jump-a5e", @@ -12048,7 +12048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1526, "fields": { "spell": "jump-a5e", @@ -12060,7 +12060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1527, "fields": { "spell": "jump-a5e", @@ -12072,7 +12072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1528, "fields": { "spell": "jump-a5e", @@ -12084,7 +12084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1529, "fields": { "spell": "jump-a5e", @@ -12096,7 +12096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1530, "fields": { "spell": "knock-a5e", @@ -12108,7 +12108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1532, "fields": { "spell": "knock-a5e", @@ -12120,7 +12120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1533, "fields": { "spell": "knock-a5e", @@ -12132,7 +12132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1534, "fields": { "spell": "knock-a5e", @@ -12144,7 +12144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1535, "fields": { "spell": "knock-a5e", @@ -12156,7 +12156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1536, "fields": { "spell": "knock-a5e", @@ -12168,7 +12168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1537, "fields": { "spell": "knock-a5e", @@ -12180,7 +12180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1538, "fields": { "spell": "knock-a5e", @@ -12192,7 +12192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1539, "fields": { "spell": "legend-lore-a5e", @@ -12204,7 +12204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1541, "fields": { "spell": "legend-lore-a5e", @@ -12216,7 +12216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1542, "fields": { "spell": "legend-lore-a5e", @@ -12228,7 +12228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1543, "fields": { "spell": "legend-lore-a5e", @@ -12240,7 +12240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1544, "fields": { "spell": "legend-lore-a5e", @@ -12252,7 +12252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1545, "fields": { "spell": "lemure-transformation-a5e", @@ -12264,7 +12264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1546, "fields": { "spell": "lesser-restoration-a5e", @@ -12276,7 +12276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1547, "fields": { "spell": "levitate-a5e", @@ -12288,7 +12288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1549, "fields": { "spell": "levitate-a5e", @@ -12300,7 +12300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1550, "fields": { "spell": "levitate-a5e", @@ -12312,7 +12312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1551, "fields": { "spell": "levitate-a5e", @@ -12324,7 +12324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1552, "fields": { "spell": "levitate-a5e", @@ -12336,7 +12336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1553, "fields": { "spell": "levitate-a5e", @@ -12348,7 +12348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1554, "fields": { "spell": "levitate-a5e", @@ -12360,7 +12360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1555, "fields": { "spell": "levitate-a5e", @@ -12372,7 +12372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1556, "fields": { "spell": "light-a5e", @@ -12384,7 +12384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1557, "fields": { "spell": "lightning-bolt-a5e", @@ -12396,7 +12396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1559, "fields": { "spell": "lightning-bolt-a5e", @@ -12408,7 +12408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1560, "fields": { "spell": "lightning-bolt-a5e", @@ -12420,7 +12420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1561, "fields": { "spell": "lightning-bolt-a5e", @@ -12432,7 +12432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1562, "fields": { "spell": "lightning-bolt-a5e", @@ -12444,7 +12444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1563, "fields": { "spell": "lightning-bolt-a5e", @@ -12456,7 +12456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1564, "fields": { "spell": "lightning-bolt-a5e", @@ -12468,7 +12468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1565, "fields": { "spell": "locate-animals-or-plants-a5e", @@ -12480,7 +12480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1566, "fields": { "spell": "locate-animals-or-plants-a5e", @@ -12492,7 +12492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1567, "fields": { "spell": "locate-creature-a5e", @@ -12504,7 +12504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1568, "fields": { "spell": "locate-object-a5e", @@ -12516,7 +12516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1569, "fields": { "spell": "longstrider-a5e", @@ -12528,7 +12528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1571, "fields": { "spell": "longstrider-a5e", @@ -12540,7 +12540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1572, "fields": { "spell": "longstrider-a5e", @@ -12552,7 +12552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1573, "fields": { "spell": "longstrider-a5e", @@ -12564,7 +12564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1574, "fields": { "spell": "longstrider-a5e", @@ -12576,7 +12576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1575, "fields": { "spell": "longstrider-a5e", @@ -12588,7 +12588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1576, "fields": { "spell": "longstrider-a5e", @@ -12600,7 +12600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1577, "fields": { "spell": "longstrider-a5e", @@ -12612,7 +12612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1578, "fields": { "spell": "longstrider-a5e", @@ -12624,7 +12624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1579, "fields": { "spell": "mage-armor-a5e", @@ -12636,7 +12636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1581, "fields": { "spell": "mage-armor-a5e", @@ -12648,7 +12648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1582, "fields": { "spell": "mage-armor-a5e", @@ -12660,7 +12660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1583, "fields": { "spell": "mage-armor-a5e", @@ -12672,7 +12672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1584, "fields": { "spell": "mage-armor-a5e", @@ -12684,7 +12684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1585, "fields": { "spell": "mage-armor-a5e", @@ -12696,7 +12696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1586, "fields": { "spell": "mage-armor-a5e", @@ -12708,7 +12708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1587, "fields": { "spell": "mage-armor-a5e", @@ -12720,7 +12720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1588, "fields": { "spell": "mage-armor-a5e", @@ -12732,7 +12732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1589, "fields": { "spell": "mage-hand-a5e", @@ -12744,7 +12744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1590, "fields": { "spell": "magic-circle-a5e", @@ -12756,7 +12756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1592, "fields": { "spell": "magic-circle-a5e", @@ -12768,7 +12768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1593, "fields": { "spell": "magic-circle-a5e", @@ -12780,7 +12780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1594, "fields": { "spell": "magic-circle-a5e", @@ -12792,7 +12792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1595, "fields": { "spell": "magic-circle-a5e", @@ -12804,7 +12804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1596, "fields": { "spell": "magic-circle-a5e", @@ -12816,7 +12816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1597, "fields": { "spell": "magic-circle-a5e", @@ -12828,7 +12828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1598, "fields": { "spell": "magic-jar-a5e", @@ -12840,7 +12840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1599, "fields": { "spell": "magic-missile-a5e", @@ -12852,7 +12852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1601, "fields": { "spell": "magic-missile-a5e", @@ -12864,7 +12864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1602, "fields": { "spell": "magic-missile-a5e", @@ -12876,7 +12876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1603, "fields": { "spell": "magic-missile-a5e", @@ -12888,7 +12888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1604, "fields": { "spell": "magic-missile-a5e", @@ -12900,7 +12900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1605, "fields": { "spell": "magic-missile-a5e", @@ -12912,7 +12912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1606, "fields": { "spell": "magic-missile-a5e", @@ -12924,7 +12924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1607, "fields": { "spell": "magic-missile-a5e", @@ -12936,7 +12936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1608, "fields": { "spell": "magic-missile-a5e", @@ -12948,7 +12948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1609, "fields": { "spell": "magic-mouth-a5e", @@ -12960,7 +12960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1610, "fields": { "spell": "magic-mouth-a5e", @@ -12972,7 +12972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1611, "fields": { "spell": "magic-weapon-a5e", @@ -12984,7 +12984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1613, "fields": { "spell": "magic-weapon-a5e", @@ -12996,7 +12996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1614, "fields": { "spell": "magic-weapon-a5e", @@ -13008,7 +13008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1615, "fields": { "spell": "magic-weapon-a5e", @@ -13020,7 +13020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1616, "fields": { "spell": "magic-weapon-a5e", @@ -13032,7 +13032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1617, "fields": { "spell": "magic-weapon-a5e", @@ -13044,7 +13044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1618, "fields": { "spell": "magic-weapon-a5e", @@ -13056,7 +13056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1619, "fields": { "spell": "magic-weapon-a5e", @@ -13068,7 +13068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1620, "fields": { "spell": "magnificent-mansion-a5e", @@ -13080,7 +13080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1621, "fields": { "spell": "major-image-a5e", @@ -13092,7 +13092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1623, "fields": { "spell": "major-image-a5e", @@ -13104,7 +13104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1624, "fields": { "spell": "major-image-a5e", @@ -13116,7 +13116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1625, "fields": { "spell": "major-image-a5e", @@ -13128,7 +13128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1626, "fields": { "spell": "major-image-a5e", @@ -13140,7 +13140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1627, "fields": { "spell": "major-image-a5e", @@ -13152,7 +13152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1628, "fields": { "spell": "major-image-a5e", @@ -13164,7 +13164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1629, "fields": { "spell": "mass-cure-wounds-a5e", @@ -13176,7 +13176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1631, "fields": { "spell": "mass-cure-wounds-a5e", @@ -13188,7 +13188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1632, "fields": { "spell": "mass-cure-wounds-a5e", @@ -13200,7 +13200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1633, "fields": { "spell": "mass-cure-wounds-a5e", @@ -13212,7 +13212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1634, "fields": { "spell": "mass-cure-wounds-a5e", @@ -13224,7 +13224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1635, "fields": { "spell": "mass-heal-a5e", @@ -13236,7 +13236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1636, "fields": { "spell": "mass-healing-word-a5e", @@ -13248,7 +13248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1638, "fields": { "spell": "mass-healing-word-a5e", @@ -13260,7 +13260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1639, "fields": { "spell": "mass-healing-word-a5e", @@ -13272,7 +13272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1640, "fields": { "spell": "mass-healing-word-a5e", @@ -13284,7 +13284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1641, "fields": { "spell": "mass-healing-word-a5e", @@ -13296,7 +13296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1642, "fields": { "spell": "mass-healing-word-a5e", @@ -13308,7 +13308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1643, "fields": { "spell": "mass-healing-word-a5e", @@ -13320,7 +13320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1644, "fields": { "spell": "mass-suggestion-a5e", @@ -13332,7 +13332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1646, "fields": { "spell": "mass-suggestion-a5e", @@ -13344,7 +13344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1647, "fields": { "spell": "mass-suggestion-a5e", @@ -13356,7 +13356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1648, "fields": { "spell": "mass-suggestion-a5e", @@ -13368,7 +13368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1649, "fields": { "spell": "maze-a5e", @@ -13380,7 +13380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1650, "fields": { "spell": "meld-into-stone-a5e", @@ -13392,7 +13392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1652, "fields": { "spell": "meld-into-stone-a5e", @@ -13404,7 +13404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1653, "fields": { "spell": "meld-into-stone-a5e", @@ -13416,7 +13416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1654, "fields": { "spell": "meld-into-stone-a5e", @@ -13428,7 +13428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1655, "fields": { "spell": "meld-into-stone-a5e", @@ -13440,7 +13440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1656, "fields": { "spell": "meld-into-stone-a5e", @@ -13452,7 +13452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1657, "fields": { "spell": "meld-into-stone-a5e", @@ -13464,7 +13464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1658, "fields": { "spell": "mending-a5e", @@ -13476,7 +13476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1659, "fields": { "spell": "mental-grip-a5e", @@ -13488,7 +13488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1660, "fields": { "spell": "message-a5e", @@ -13500,7 +13500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1661, "fields": { "spell": "meteor-swarm-a5e", @@ -13512,7 +13512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1662, "fields": { "spell": "mind-blank-a5e", @@ -13524,7 +13524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1663, "fields": { "spell": "mindshield-a5e", @@ -13536,7 +13536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1664, "fields": { "spell": "minor-illusion-a5e", @@ -13548,7 +13548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1665, "fields": { "spell": "mirage-arcane-a5e", @@ -13560,7 +13560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1666, "fields": { "spell": "mirror-image-a5e", @@ -13572,7 +13572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1668, "fields": { "spell": "mirror-image-a5e", @@ -13584,7 +13584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1669, "fields": { "spell": "mirror-image-a5e", @@ -13596,7 +13596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1670, "fields": { "spell": "mirror-image-a5e", @@ -13608,7 +13608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1671, "fields": { "spell": "mirror-image-a5e", @@ -13620,7 +13620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1672, "fields": { "spell": "mirror-image-a5e", @@ -13632,7 +13632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1673, "fields": { "spell": "mirror-image-a5e", @@ -13644,7 +13644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1674, "fields": { "spell": "mirror-image-a5e", @@ -13656,7 +13656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1675, "fields": { "spell": "mislead-a5e", @@ -13668,7 +13668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1676, "fields": { "spell": "misty-step-a5e", @@ -13680,7 +13680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1677, "fields": { "spell": "modify-memory-a5e", @@ -13692,7 +13692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1679, "fields": { "spell": "modify-memory-a5e", @@ -13704,7 +13704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1680, "fields": { "spell": "modify-memory-a5e", @@ -13716,7 +13716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1681, "fields": { "spell": "modify-memory-a5e", @@ -13728,7 +13728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1682, "fields": { "spell": "modify-memory-a5e", @@ -13740,7 +13740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1683, "fields": { "spell": "moonbeam-a5e", @@ -13752,7 +13752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1685, "fields": { "spell": "moonbeam-a5e", @@ -13764,7 +13764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1686, "fields": { "spell": "moonbeam-a5e", @@ -13776,7 +13776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1687, "fields": { "spell": "moonbeam-a5e", @@ -13788,7 +13788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1688, "fields": { "spell": "moonbeam-a5e", @@ -13800,7 +13800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1689, "fields": { "spell": "moonbeam-a5e", @@ -13812,7 +13812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1690, "fields": { "spell": "moonbeam-a5e", @@ -13824,7 +13824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1691, "fields": { "spell": "moonbeam-a5e", @@ -13836,7 +13836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1692, "fields": { "spell": "move-earth-a5e", @@ -13848,7 +13848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1693, "fields": { "spell": "nondetection-a5e", @@ -13860,7 +13860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1694, "fields": { "spell": "pass-without-trace-a5e", @@ -13872,7 +13872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1695, "fields": { "spell": "passwall-a5e", @@ -13884,7 +13884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1696, "fields": { "spell": "pestilence-a5e", @@ -13896,7 +13896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1697, "fields": { "spell": "pestilence-a5e", @@ -13908,7 +13908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1698, "fields": { "spell": "pestilence-a5e", @@ -13920,7 +13920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1699, "fields": { "spell": "pestilence-a5e", @@ -13932,7 +13932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1700, "fields": { "spell": "pestilence-a5e", @@ -13944,7 +13944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1701, "fields": { "spell": "pestilence-a5e", @@ -13956,7 +13956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1702, "fields": { "spell": "pestilence-a5e", @@ -13968,7 +13968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1703, "fields": { "spell": "pestilence-a5e", @@ -13980,7 +13980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1704, "fields": { "spell": "pestilence-a5e", @@ -13992,7 +13992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1705, "fields": { "spell": "pestilence-a5e", @@ -14004,7 +14004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1706, "fields": { "spell": "pestilence-a5e", @@ -14016,7 +14016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1707, "fields": { "spell": "pestilence-a5e", @@ -14028,7 +14028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1708, "fields": { "spell": "pestilence-a5e", @@ -14040,7 +14040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1709, "fields": { "spell": "pestilence-a5e", @@ -14052,7 +14052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1710, "fields": { "spell": "pestilence-a5e", @@ -14064,7 +14064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1711, "fields": { "spell": "pestilence-a5e", @@ -14076,7 +14076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1712, "fields": { "spell": "pestilence-a5e", @@ -14088,7 +14088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1713, "fields": { "spell": "pestilence-a5e", @@ -14100,7 +14100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1714, "fields": { "spell": "pestilence-a5e", @@ -14112,7 +14112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1715, "fields": { "spell": "pestilence-a5e", @@ -14124,7 +14124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1716, "fields": { "spell": "pestilence-a5e", @@ -14136,7 +14136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1717, "fields": { "spell": "phantasmal-killer-a5e", @@ -14148,7 +14148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1719, "fields": { "spell": "phantasmal-killer-a5e", @@ -14160,7 +14160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1720, "fields": { "spell": "phantasmal-killer-a5e", @@ -14172,7 +14172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1721, "fields": { "spell": "phantasmal-killer-a5e", @@ -14184,7 +14184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1722, "fields": { "spell": "phantasmal-killer-a5e", @@ -14196,7 +14196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1723, "fields": { "spell": "phantasmal-killer-a5e", @@ -14208,7 +14208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1724, "fields": { "spell": "phantasmal-talons-a5e", @@ -14220,7 +14220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1725, "fields": { "spell": "phantom-steed-a5e", @@ -14232,7 +14232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1726, "fields": { "spell": "phantom-steed-a5e", @@ -14244,7 +14244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1727, "fields": { "spell": "planar-ally-a5e", @@ -14256,7 +14256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1728, "fields": { "spell": "planar-binding-a5e", @@ -14268,7 +14268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1730, "fields": { "spell": "planar-binding-a5e", @@ -14280,7 +14280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1731, "fields": { "spell": "planar-binding-a5e", @@ -14292,7 +14292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1732, "fields": { "spell": "planar-binding-a5e", @@ -14304,7 +14304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1733, "fields": { "spell": "planar-binding-a5e", @@ -14316,7 +14316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1734, "fields": { "spell": "plane-shift-a5e", @@ -14328,7 +14328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1735, "fields": { "spell": "plant-growth-a5e", @@ -14340,7 +14340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1736, "fields": { "spell": "poison-skin-a5e", @@ -14352,7 +14352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1738, "fields": { "spell": "poison-skin-a5e", @@ -14364,7 +14364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1739, "fields": { "spell": "poison-skin-a5e", @@ -14376,7 +14376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1740, "fields": { "spell": "poison-skin-a5e", @@ -14388,7 +14388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1741, "fields": { "spell": "poison-skin-a5e", @@ -14400,7 +14400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1742, "fields": { "spell": "poison-skin-a5e", @@ -14412,7 +14412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1743, "fields": { "spell": "poison-skin-a5e", @@ -14424,7 +14424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1744, "fields": { "spell": "polymorph-a5e", @@ -14436,7 +14436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1745, "fields": { "spell": "power-word-kill-a5e", @@ -14448,7 +14448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1746, "fields": { "spell": "power-word-stun-a5e", @@ -14460,7 +14460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1747, "fields": { "spell": "prayer-of-healing-a5e", @@ -14472,7 +14472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1749, "fields": { "spell": "prayer-of-healing-a5e", @@ -14484,7 +14484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1750, "fields": { "spell": "prayer-of-healing-a5e", @@ -14496,7 +14496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1751, "fields": { "spell": "prayer-of-healing-a5e", @@ -14508,7 +14508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1752, "fields": { "spell": "prayer-of-healing-a5e", @@ -14520,7 +14520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1753, "fields": { "spell": "prayer-of-healing-a5e", @@ -14532,7 +14532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1754, "fields": { "spell": "prayer-of-healing-a5e", @@ -14544,7 +14544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1755, "fields": { "spell": "prayer-of-healing-a5e", @@ -14556,7 +14556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1756, "fields": { "spell": "prestidigitation-a5e", @@ -14568,7 +14568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1757, "fields": { "spell": "prismatic-spray-a5e", @@ -14580,7 +14580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1758, "fields": { "spell": "prismatic-wall-a5e", @@ -14592,7 +14592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1759, "fields": { "spell": "private-sanctum-a5e", @@ -14604,7 +14604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1761, "fields": { "spell": "private-sanctum-a5e", @@ -14616,7 +14616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1762, "fields": { "spell": "private-sanctum-a5e", @@ -14628,7 +14628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1763, "fields": { "spell": "private-sanctum-a5e", @@ -14640,7 +14640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1764, "fields": { "spell": "private-sanctum-a5e", @@ -14652,7 +14652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1765, "fields": { "spell": "private-sanctum-a5e", @@ -14664,7 +14664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1766, "fields": { "spell": "produce-flame-a5e", @@ -14676,7 +14676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1767, "fields": { "spell": "produce-flame-a5e", @@ -14688,7 +14688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1768, "fields": { "spell": "produce-flame-a5e", @@ -14700,7 +14700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1769, "fields": { "spell": "produce-flame-a5e", @@ -14712,7 +14712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1770, "fields": { "spell": "produce-flame-a5e", @@ -14724,7 +14724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1771, "fields": { "spell": "produce-flame-a5e", @@ -14736,7 +14736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1772, "fields": { "spell": "produce-flame-a5e", @@ -14748,7 +14748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1773, "fields": { "spell": "produce-flame-a5e", @@ -14760,7 +14760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1774, "fields": { "spell": "produce-flame-a5e", @@ -14772,7 +14772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1775, "fields": { "spell": "produce-flame-a5e", @@ -14784,7 +14784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1776, "fields": { "spell": "produce-flame-a5e", @@ -14796,7 +14796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1777, "fields": { "spell": "produce-flame-a5e", @@ -14808,7 +14808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1778, "fields": { "spell": "produce-flame-a5e", @@ -14820,7 +14820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1779, "fields": { "spell": "produce-flame-a5e", @@ -14832,7 +14832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1780, "fields": { "spell": "produce-flame-a5e", @@ -14844,7 +14844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1781, "fields": { "spell": "produce-flame-a5e", @@ -14856,7 +14856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1782, "fields": { "spell": "produce-flame-a5e", @@ -14868,7 +14868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1783, "fields": { "spell": "produce-flame-a5e", @@ -14880,7 +14880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1784, "fields": { "spell": "produce-flame-a5e", @@ -14892,7 +14892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1785, "fields": { "spell": "produce-flame-a5e", @@ -14904,7 +14904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1786, "fields": { "spell": "produce-flame-a5e", @@ -14916,7 +14916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1787, "fields": { "spell": "programmed-illusion-a5e", @@ -14928,7 +14928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1788, "fields": { "spell": "project-image-a5e", @@ -14940,7 +14940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1789, "fields": { "spell": "protection-from-energy-a5e", @@ -14952,7 +14952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1791, "fields": { "spell": "protection-from-energy-a5e", @@ -14964,7 +14964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1792, "fields": { "spell": "protection-from-energy-a5e", @@ -14976,7 +14976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1793, "fields": { "spell": "protection-from-energy-a5e", @@ -14988,7 +14988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1794, "fields": { "spell": "protection-from-energy-a5e", @@ -15000,7 +15000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1795, "fields": { "spell": "protection-from-energy-a5e", @@ -15012,7 +15012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1796, "fields": { "spell": "protection-from-energy-a5e", @@ -15024,7 +15024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1797, "fields": { "spell": "protection-from-energy-a5e", @@ -15036,7 +15036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1798, "fields": { "spell": "protection-from-evil-and-good-a5e", @@ -15048,7 +15048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1799, "fields": { "spell": "protection-from-poison-a5e", @@ -15060,7 +15060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1800, "fields": { "spell": "purify-food-and-drink-a5e", @@ -15072,7 +15072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1801, "fields": { "spell": "purify-food-and-drink-a5e", @@ -15084,7 +15084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1803, "fields": { "spell": "purify-food-and-drink-a5e", @@ -15096,7 +15096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1804, "fields": { "spell": "purify-food-and-drink-a5e", @@ -15108,7 +15108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1805, "fields": { "spell": "purify-food-and-drink-a5e", @@ -15120,7 +15120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1806, "fields": { "spell": "purify-food-and-drink-a5e", @@ -15132,7 +15132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1807, "fields": { "spell": "purify-food-and-drink-a5e", @@ -15144,7 +15144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1808, "fields": { "spell": "purify-food-and-drink-a5e", @@ -15156,7 +15156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1809, "fields": { "spell": "purify-food-and-drink-a5e", @@ -15168,7 +15168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1810, "fields": { "spell": "purify-food-and-drink-a5e", @@ -15180,7 +15180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1811, "fields": { "spell": "rage-of-the-meek-a5e", @@ -15192,7 +15192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1813, "fields": { "spell": "rage-of-the-meek-a5e", @@ -15204,7 +15204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1814, "fields": { "spell": "rage-of-the-meek-a5e", @@ -15216,7 +15216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1815, "fields": { "spell": "rage-of-the-meek-a5e", @@ -15228,7 +15228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1816, "fields": { "spell": "rage-of-the-meek-a5e", @@ -15240,7 +15240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1817, "fields": { "spell": "rage-of-the-meek-a5e", @@ -15252,7 +15252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1818, "fields": { "spell": "raise-dead-a5e", @@ -15264,7 +15264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1819, "fields": { "spell": "raise-hell-a5e", @@ -15276,7 +15276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1820, "fields": { "spell": "ray-of-enfeeblement-a5e", @@ -15288,7 +15288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1821, "fields": { "spell": "ray-of-frost-a5e", @@ -15300,7 +15300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1822, "fields": { "spell": "ray-of-frost-a5e", @@ -15312,7 +15312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1823, "fields": { "spell": "ray-of-frost-a5e", @@ -15324,7 +15324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1824, "fields": { "spell": "ray-of-frost-a5e", @@ -15336,7 +15336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1825, "fields": { "spell": "ray-of-frost-a5e", @@ -15348,7 +15348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1826, "fields": { "spell": "ray-of-frost-a5e", @@ -15360,7 +15360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1827, "fields": { "spell": "ray-of-frost-a5e", @@ -15372,7 +15372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1828, "fields": { "spell": "ray-of-frost-a5e", @@ -15384,7 +15384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1829, "fields": { "spell": "ray-of-frost-a5e", @@ -15396,7 +15396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1830, "fields": { "spell": "ray-of-frost-a5e", @@ -15408,7 +15408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1831, "fields": { "spell": "ray-of-frost-a5e", @@ -15420,7 +15420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1832, "fields": { "spell": "ray-of-frost-a5e", @@ -15432,7 +15432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1833, "fields": { "spell": "ray-of-frost-a5e", @@ -15444,7 +15444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1834, "fields": { "spell": "ray-of-frost-a5e", @@ -15456,7 +15456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1835, "fields": { "spell": "ray-of-frost-a5e", @@ -15468,7 +15468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1836, "fields": { "spell": "ray-of-frost-a5e", @@ -15480,7 +15480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1837, "fields": { "spell": "ray-of-frost-a5e", @@ -15492,7 +15492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1838, "fields": { "spell": "ray-of-frost-a5e", @@ -15504,7 +15504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1839, "fields": { "spell": "ray-of-frost-a5e", @@ -15516,7 +15516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1840, "fields": { "spell": "ray-of-frost-a5e", @@ -15528,7 +15528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1841, "fields": { "spell": "ray-of-frost-a5e", @@ -15540,7 +15540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1842, "fields": { "spell": "regenerate-a5e", @@ -15552,7 +15552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1843, "fields": { "spell": "reincarnate-a5e", @@ -15564,7 +15564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1844, "fields": { "spell": "remove-curse-a5e", @@ -15576,7 +15576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1846, "fields": { "spell": "remove-curse-a5e", @@ -15588,7 +15588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1847, "fields": { "spell": "remove-curse-a5e", @@ -15600,7 +15600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1848, "fields": { "spell": "remove-curse-a5e", @@ -15612,7 +15612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1849, "fields": { "spell": "remove-curse-a5e", @@ -15624,7 +15624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1850, "fields": { "spell": "remove-curse-a5e", @@ -15636,7 +15636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1851, "fields": { "spell": "remove-curse-a5e", @@ -15648,7 +15648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1852, "fields": { "spell": "resilient-sphere-a5e", @@ -15660,7 +15660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1853, "fields": { "spell": "resistance-a5e", @@ -15672,7 +15672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1854, "fields": { "spell": "resurrection-a5e", @@ -15684,7 +15684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1855, "fields": { "spell": "reverse-gravity-a5e", @@ -15696,7 +15696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1856, "fields": { "spell": "revivify-a5e", @@ -15708,7 +15708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1857, "fields": { "spell": "rope-trick-a5e", @@ -15720,7 +15720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1858, "fields": { "spell": "sacred-flame-a5e", @@ -15732,7 +15732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1859, "fields": { "spell": "sacred-flame-a5e", @@ -15744,7 +15744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1860, "fields": { "spell": "sacred-flame-a5e", @@ -15756,7 +15756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1861, "fields": { "spell": "sacred-flame-a5e", @@ -15768,7 +15768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1862, "fields": { "spell": "sacred-flame-a5e", @@ -15780,7 +15780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1863, "fields": { "spell": "sacred-flame-a5e", @@ -15792,7 +15792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1864, "fields": { "spell": "sacred-flame-a5e", @@ -15804,7 +15804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1865, "fields": { "spell": "sacred-flame-a5e", @@ -15816,7 +15816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1866, "fields": { "spell": "sacred-flame-a5e", @@ -15828,7 +15828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1867, "fields": { "spell": "sacred-flame-a5e", @@ -15840,7 +15840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1868, "fields": { "spell": "sacred-flame-a5e", @@ -15852,7 +15852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1869, "fields": { "spell": "sacred-flame-a5e", @@ -15864,7 +15864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1870, "fields": { "spell": "sacred-flame-a5e", @@ -15876,7 +15876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1871, "fields": { "spell": "sacred-flame-a5e", @@ -15888,7 +15888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1872, "fields": { "spell": "sacred-flame-a5e", @@ -15900,7 +15900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1873, "fields": { "spell": "sacred-flame-a5e", @@ -15912,7 +15912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1874, "fields": { "spell": "sacred-flame-a5e", @@ -15924,7 +15924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1875, "fields": { "spell": "sacred-flame-a5e", @@ -15936,7 +15936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1876, "fields": { "spell": "sacred-flame-a5e", @@ -15948,7 +15948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1877, "fields": { "spell": "sacred-flame-a5e", @@ -15960,7 +15960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1878, "fields": { "spell": "sacred-flame-a5e", @@ -15972,7 +15972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1879, "fields": { "spell": "sanctuary-a5e", @@ -15984,7 +15984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1880, "fields": { "spell": "scorching-ray-a5e", @@ -15996,7 +15996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1882, "fields": { "spell": "scorching-ray-a5e", @@ -16008,7 +16008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1883, "fields": { "spell": "scorching-ray-a5e", @@ -16020,7 +16020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1884, "fields": { "spell": "scorching-ray-a5e", @@ -16032,7 +16032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1885, "fields": { "spell": "scorching-ray-a5e", @@ -16044,7 +16044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1886, "fields": { "spell": "scorching-ray-a5e", @@ -16056,7 +16056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1887, "fields": { "spell": "scorching-ray-a5e", @@ -16068,7 +16068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1888, "fields": { "spell": "scorching-ray-a5e", @@ -16080,7 +16080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1889, "fields": { "spell": "scrying-a5e", @@ -16092,7 +16092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1890, "fields": { "spell": "searing-equation-a5e", @@ -16104,7 +16104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1892, "fields": { "spell": "searing-equation-a5e", @@ -16116,7 +16116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1893, "fields": { "spell": "searing-equation-a5e", @@ -16128,7 +16128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1894, "fields": { "spell": "searing-equation-a5e", @@ -16140,7 +16140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1895, "fields": { "spell": "searing-equation-a5e", @@ -16152,7 +16152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1896, "fields": { "spell": "searing-equation-a5e", @@ -16164,7 +16164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1897, "fields": { "spell": "searing-equation-a5e", @@ -16176,7 +16176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1898, "fields": { "spell": "searing-equation-a5e", @@ -16188,7 +16188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1899, "fields": { "spell": "searing-equation-a5e", @@ -16200,7 +16200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1900, "fields": { "spell": "secret-chest-a5e", @@ -16212,7 +16212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1901, "fields": { "spell": "see-invisibility-a5e", @@ -16224,7 +16224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1902, "fields": { "spell": "seed-bomb-a5e", @@ -16236,7 +16236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1904, "fields": { "spell": "seed-bomb-a5e", @@ -16248,7 +16248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1905, "fields": { "spell": "seed-bomb-a5e", @@ -16260,7 +16260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1906, "fields": { "spell": "seed-bomb-a5e", @@ -16272,7 +16272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1907, "fields": { "spell": "seed-bomb-a5e", @@ -16284,7 +16284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1908, "fields": { "spell": "seed-bomb-a5e", @@ -16296,7 +16296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1909, "fields": { "spell": "seed-bomb-a5e", @@ -16308,7 +16308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1910, "fields": { "spell": "seed-bomb-a5e", @@ -16320,7 +16320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1911, "fields": { "spell": "seeming-a5e", @@ -16332,7 +16332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1912, "fields": { "spell": "sending-a5e", @@ -16344,7 +16344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1913, "fields": { "spell": "sequester-a5e", @@ -16356,7 +16356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1914, "fields": { "spell": "shapechange-a5e", @@ -16368,7 +16368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1915, "fields": { "spell": "shatter-a5e", @@ -16380,7 +16380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1917, "fields": { "spell": "shatter-a5e", @@ -16392,7 +16392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1918, "fields": { "spell": "shatter-a5e", @@ -16404,7 +16404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1919, "fields": { "spell": "shatter-a5e", @@ -16416,7 +16416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1920, "fields": { "spell": "shatter-a5e", @@ -16428,7 +16428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1921, "fields": { "spell": "shatter-a5e", @@ -16440,7 +16440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1922, "fields": { "spell": "shatter-a5e", @@ -16452,7 +16452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1923, "fields": { "spell": "shatter-a5e", @@ -16464,7 +16464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1924, "fields": { "spell": "shattering-barrage-a5e", @@ -16476,7 +16476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1926, "fields": { "spell": "shattering-barrage-a5e", @@ -16488,7 +16488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1927, "fields": { "spell": "shattering-barrage-a5e", @@ -16500,7 +16500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1928, "fields": { "spell": "shattering-barrage-a5e", @@ -16512,7 +16512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1929, "fields": { "spell": "shattering-barrage-a5e", @@ -16524,7 +16524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1930, "fields": { "spell": "shattering-barrage-a5e", @@ -16536,7 +16536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1931, "fields": { "spell": "shattering-barrage-a5e", @@ -16548,7 +16548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1932, "fields": { "spell": "shattering-barrage-a5e", @@ -16560,7 +16560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1933, "fields": { "spell": "shield-a5e", @@ -16572,7 +16572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1934, "fields": { "spell": "shield-of-faith-a5e", @@ -16584,7 +16584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1936, "fields": { "spell": "shield-of-faith-a5e", @@ -16596,7 +16596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1937, "fields": { "spell": "shield-of-faith-a5e", @@ -16608,7 +16608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1938, "fields": { "spell": "shield-of-faith-a5e", @@ -16620,7 +16620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1939, "fields": { "spell": "shield-of-faith-a5e", @@ -16632,7 +16632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1940, "fields": { "spell": "shield-of-faith-a5e", @@ -16644,7 +16644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1941, "fields": { "spell": "shield-of-faith-a5e", @@ -16656,7 +16656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1942, "fields": { "spell": "shield-of-faith-a5e", @@ -16668,7 +16668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1943, "fields": { "spell": "shield-of-faith-a5e", @@ -16680,7 +16680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1944, "fields": { "spell": "shillelagh-a5e", @@ -16692,7 +16692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1945, "fields": { "spell": "shocking-grasp-a5e", @@ -16704,7 +16704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1946, "fields": { "spell": "shocking-grasp-a5e", @@ -16716,7 +16716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1947, "fields": { "spell": "shocking-grasp-a5e", @@ -16728,7 +16728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1948, "fields": { "spell": "shocking-grasp-a5e", @@ -16740,7 +16740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1949, "fields": { "spell": "shocking-grasp-a5e", @@ -16752,7 +16752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1950, "fields": { "spell": "shocking-grasp-a5e", @@ -16764,7 +16764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1951, "fields": { "spell": "shocking-grasp-a5e", @@ -16776,7 +16776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1952, "fields": { "spell": "shocking-grasp-a5e", @@ -16788,7 +16788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1953, "fields": { "spell": "shocking-grasp-a5e", @@ -16800,7 +16800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1954, "fields": { "spell": "shocking-grasp-a5e", @@ -16812,7 +16812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1955, "fields": { "spell": "shocking-grasp-a5e", @@ -16824,7 +16824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1956, "fields": { "spell": "shocking-grasp-a5e", @@ -16836,7 +16836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1957, "fields": { "spell": "shocking-grasp-a5e", @@ -16848,7 +16848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1958, "fields": { "spell": "shocking-grasp-a5e", @@ -16860,7 +16860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1959, "fields": { "spell": "shocking-grasp-a5e", @@ -16872,7 +16872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1960, "fields": { "spell": "shocking-grasp-a5e", @@ -16884,7 +16884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1961, "fields": { "spell": "shocking-grasp-a5e", @@ -16896,7 +16896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1962, "fields": { "spell": "shocking-grasp-a5e", @@ -16908,7 +16908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1963, "fields": { "spell": "shocking-grasp-a5e", @@ -16920,7 +16920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1964, "fields": { "spell": "shocking-grasp-a5e", @@ -16932,7 +16932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1965, "fields": { "spell": "shocking-grasp-a5e", @@ -16944,7 +16944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1966, "fields": { "spell": "silence-a5e", @@ -16956,7 +16956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1967, "fields": { "spell": "silence-a5e", @@ -16968,7 +16968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1968, "fields": { "spell": "silent-image-a5e", @@ -16980,7 +16980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1969, "fields": { "spell": "simulacrum-a5e", @@ -16992,7 +16992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1970, "fields": { "spell": "sleep-a5e", @@ -17004,7 +17004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1972, "fields": { "spell": "sleep-a5e", @@ -17016,7 +17016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1973, "fields": { "spell": "sleep-a5e", @@ -17028,7 +17028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1974, "fields": { "spell": "sleep-a5e", @@ -17040,7 +17040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1975, "fields": { "spell": "sleep-a5e", @@ -17052,7 +17052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1976, "fields": { "spell": "sleep-a5e", @@ -17064,7 +17064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1977, "fields": { "spell": "sleep-a5e", @@ -17076,7 +17076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1978, "fields": { "spell": "sleep-a5e", @@ -17088,7 +17088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1979, "fields": { "spell": "sleep-a5e", @@ -17100,7 +17100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1980, "fields": { "spell": "sleet-storm-a5e", @@ -17112,7 +17112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1981, "fields": { "spell": "slow-a5e", @@ -17124,7 +17124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1982, "fields": { "spell": "soulwrought-fists-a5e", @@ -17136,7 +17136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1983, "fields": { "spell": "spare-the-dying-a5e", @@ -17148,7 +17148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1984, "fields": { "spell": "speak-with-animals-a5e", @@ -17160,7 +17160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1985, "fields": { "spell": "speak-with-animals-a5e", @@ -17172,7 +17172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1986, "fields": { "spell": "speak-with-dead-a5e", @@ -17184,7 +17184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1987, "fields": { "spell": "speak-with-plants-a5e", @@ -17196,7 +17196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1988, "fields": { "spell": "spider-climb-a5e", @@ -17208,7 +17208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1990, "fields": { "spell": "spider-climb-a5e", @@ -17220,7 +17220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1991, "fields": { "spell": "spider-climb-a5e", @@ -17232,7 +17232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1992, "fields": { "spell": "spider-climb-a5e", @@ -17244,7 +17244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1993, "fields": { "spell": "spider-climb-a5e", @@ -17256,7 +17256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1994, "fields": { "spell": "spider-climb-a5e", @@ -17268,7 +17268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1995, "fields": { "spell": "spider-climb-a5e", @@ -17280,7 +17280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1996, "fields": { "spell": "spider-climb-a5e", @@ -17292,7 +17292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1997, "fields": { "spell": "spike-growth-a5e", @@ -17304,7 +17304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1998, "fields": { "spell": "spirit-guardians-a5e", @@ -17316,7 +17316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2000, "fields": { "spell": "spirit-guardians-a5e", @@ -17328,7 +17328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2001, "fields": { "spell": "spirit-guardians-a5e", @@ -17340,7 +17340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2002, "fields": { "spell": "spirit-guardians-a5e", @@ -17352,7 +17352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2003, "fields": { "spell": "spirit-guardians-a5e", @@ -17364,7 +17364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2004, "fields": { "spell": "spirit-guardians-a5e", @@ -17376,7 +17376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2005, "fields": { "spell": "spirit-guardians-a5e", @@ -17388,7 +17388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2006, "fields": { "spell": "spiritual-weapon-a5e", @@ -17400,7 +17400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2008, "fields": { "spell": "spiritual-weapon-a5e", @@ -17412,7 +17412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2009, "fields": { "spell": "spiritual-weapon-a5e", @@ -17424,7 +17424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2010, "fields": { "spell": "spiritual-weapon-a5e", @@ -17436,7 +17436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2011, "fields": { "spell": "spiritual-weapon-a5e", @@ -17448,7 +17448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2012, "fields": { "spell": "spiritual-weapon-a5e", @@ -17460,7 +17460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2013, "fields": { "spell": "spiritual-weapon-a5e", @@ -17472,7 +17472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2014, "fields": { "spell": "spiritual-weapon-a5e", @@ -17484,7 +17484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2015, "fields": { "spell": "sporesight-a5e", @@ -17496,7 +17496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2016, "fields": { "spell": "stinking-cloud-a5e", @@ -17508,7 +17508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2018, "fields": { "spell": "stinking-cloud-a5e", @@ -17520,7 +17520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2019, "fields": { "spell": "stinking-cloud-a5e", @@ -17532,7 +17532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2020, "fields": { "spell": "stinking-cloud-a5e", @@ -17544,7 +17544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2021, "fields": { "spell": "stinking-cloud-a5e", @@ -17556,7 +17556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2022, "fields": { "spell": "stinking-cloud-a5e", @@ -17568,7 +17568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2023, "fields": { "spell": "stinking-cloud-a5e", @@ -17580,7 +17580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2024, "fields": { "spell": "stone-shape-a5e", @@ -17592,7 +17592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2026, "fields": { "spell": "stone-shape-a5e", @@ -17604,7 +17604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2027, "fields": { "spell": "stone-shape-a5e", @@ -17616,7 +17616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2028, "fields": { "spell": "stone-shape-a5e", @@ -17628,7 +17628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2029, "fields": { "spell": "stone-shape-a5e", @@ -17640,7 +17640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2030, "fields": { "spell": "stone-shape-a5e", @@ -17652,7 +17652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2031, "fields": { "spell": "stoneskin-a5e", @@ -17664,7 +17664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2033, "fields": { "spell": "stoneskin-a5e", @@ -17676,7 +17676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2034, "fields": { "spell": "stoneskin-a5e", @@ -17688,7 +17688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2035, "fields": { "spell": "stoneskin-a5e", @@ -17700,7 +17700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2036, "fields": { "spell": "stoneskin-a5e", @@ -17712,7 +17712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2037, "fields": { "spell": "stoneskin-a5e", @@ -17724,7 +17724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2038, "fields": { "spell": "storm-kick-a5e", @@ -17736,7 +17736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2040, "fields": { "spell": "storm-kick-a5e", @@ -17748,7 +17748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2041, "fields": { "spell": "storm-kick-a5e", @@ -17760,7 +17760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2042, "fields": { "spell": "storm-kick-a5e", @@ -17772,7 +17772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2043, "fields": { "spell": "storm-kick-a5e", @@ -17784,7 +17784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2044, "fields": { "spell": "storm-of-vengeance-a5e", @@ -17796,7 +17796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2045, "fields": { "spell": "suggestion-a5e", @@ -17808,7 +17808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2047, "fields": { "spell": "suggestion-a5e", @@ -17820,7 +17820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2048, "fields": { "spell": "suggestion-a5e", @@ -17832,7 +17832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2049, "fields": { "spell": "suggestion-a5e", @@ -17844,7 +17844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2050, "fields": { "spell": "suggestion-a5e", @@ -17856,7 +17856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2051, "fields": { "spell": "suggestion-a5e", @@ -17868,7 +17868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2052, "fields": { "spell": "suggestion-a5e", @@ -17880,7 +17880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2053, "fields": { "spell": "suggestion-a5e", @@ -17892,7 +17892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2054, "fields": { "spell": "sunbeam-a5e", @@ -17904,7 +17904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2056, "fields": { "spell": "sunbeam-a5e", @@ -17916,7 +17916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2057, "fields": { "spell": "sunbeam-a5e", @@ -17928,7 +17928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2058, "fields": { "spell": "sunbeam-a5e", @@ -17940,7 +17940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2059, "fields": { "spell": "sunburst-a5e", @@ -17952,7 +17952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2061, "fields": { "spell": "sunburst-a5e", @@ -17964,7 +17964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2062, "fields": { "spell": "symbol-a5e", @@ -17976,7 +17976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2063, "fields": { "spell": "tearful-sonnet-a5e", @@ -17988,7 +17988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2065, "fields": { "spell": "tearful-sonnet-a5e", @@ -18000,7 +18000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2066, "fields": { "spell": "tearful-sonnet-a5e", @@ -18012,7 +18012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2067, "fields": { "spell": "tearful-sonnet-a5e", @@ -18024,7 +18024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2068, "fields": { "spell": "tearful-sonnet-a5e", @@ -18036,7 +18036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2069, "fields": { "spell": "tearful-sonnet-a5e", @@ -18048,7 +18048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2070, "fields": { "spell": "telekinesis-a5e", @@ -18060,7 +18060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2072, "fields": { "spell": "telekinesis-a5e", @@ -18072,7 +18072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2073, "fields": { "spell": "telekinesis-a5e", @@ -18084,7 +18084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2074, "fields": { "spell": "telekinesis-a5e", @@ -18096,7 +18096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2075, "fields": { "spell": "telekinesis-a5e", @@ -18108,7 +18108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2076, "fields": { "spell": "telepathic-bond-a5e", @@ -18120,7 +18120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2077, "fields": { "spell": "telepathic-bond-a5e", @@ -18132,7 +18132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2079, "fields": { "spell": "telepathic-bond-a5e", @@ -18144,7 +18144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2080, "fields": { "spell": "telepathic-bond-a5e", @@ -18156,7 +18156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2081, "fields": { "spell": "telepathic-bond-a5e", @@ -18168,7 +18168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2082, "fields": { "spell": "telepathic-bond-a5e", @@ -18180,7 +18180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2083, "fields": { "spell": "teleport-a5e", @@ -18192,7 +18192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2084, "fields": { "spell": "teleport-a5e", @@ -18204,7 +18204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2085, "fields": { "spell": "teleportation-circle-a5e", @@ -18216,7 +18216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2086, "fields": { "spell": "thaumaturgy-a5e", @@ -18228,7 +18228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2087, "fields": { "spell": "thunderwave-a5e", @@ -18240,7 +18240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2089, "fields": { "spell": "thunderwave-a5e", @@ -18252,7 +18252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2090, "fields": { "spell": "thunderwave-a5e", @@ -18264,7 +18264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2091, "fields": { "spell": "thunderwave-a5e", @@ -18276,7 +18276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2092, "fields": { "spell": "thunderwave-a5e", @@ -18288,7 +18288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2093, "fields": { "spell": "thunderwave-a5e", @@ -18300,7 +18300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2094, "fields": { "spell": "thunderwave-a5e", @@ -18312,7 +18312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2095, "fields": { "spell": "thunderwave-a5e", @@ -18324,7 +18324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2096, "fields": { "spell": "thunderwave-a5e", @@ -18336,7 +18336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2097, "fields": { "spell": "time-stop-a5e", @@ -18348,7 +18348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2098, "fields": { "spell": "tiny-hut-a5e", @@ -18360,7 +18360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2099, "fields": { "spell": "tiny-hut-a5e", @@ -18372,7 +18372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2100, "fields": { "spell": "tongues-a5e", @@ -18384,7 +18384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2101, "fields": { "spell": "transport-via-plants-a5e", @@ -18396,7 +18396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2102, "fields": { "spell": "travelers-ward-a5e", @@ -18408,7 +18408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2103, "fields": { "spell": "tree-stride-a5e", @@ -18420,7 +18420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2105, "fields": { "spell": "tree-stride-a5e", @@ -18432,7 +18432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2106, "fields": { "spell": "tree-stride-a5e", @@ -18444,7 +18444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2107, "fields": { "spell": "tree-stride-a5e", @@ -18456,7 +18456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2108, "fields": { "spell": "tree-stride-a5e", @@ -18468,7 +18468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2109, "fields": { "spell": "true-polymorph-a5e", @@ -18480,7 +18480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2110, "fields": { "spell": "true-resurrection-a5e", @@ -18492,7 +18492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2111, "fields": { "spell": "true-seeing-a5e", @@ -18504,7 +18504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2112, "fields": { "spell": "true-strike-a5e", @@ -18516,7 +18516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2113, "fields": { "spell": "unholy-star-a5e", @@ -18528,7 +18528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2114, "fields": { "spell": "unseen-servant-a5e", @@ -18540,7 +18540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2115, "fields": { "spell": "unseen-servant-a5e", @@ -18552,7 +18552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2117, "fields": { "spell": "unseen-servant-a5e", @@ -18564,7 +18564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2118, "fields": { "spell": "unseen-servant-a5e", @@ -18576,7 +18576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2119, "fields": { "spell": "unseen-servant-a5e", @@ -18588,7 +18588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2120, "fields": { "spell": "unseen-servant-a5e", @@ -18600,7 +18600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2121, "fields": { "spell": "unseen-servant-a5e", @@ -18612,7 +18612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2122, "fields": { "spell": "unseen-servant-a5e", @@ -18624,7 +18624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2123, "fields": { "spell": "unseen-servant-a5e", @@ -18636,7 +18636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2124, "fields": { "spell": "unseen-servant-a5e", @@ -18648,7 +18648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2125, "fields": { "spell": "vampiric-touch-a5e", @@ -18660,7 +18660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2127, "fields": { "spell": "vampiric-touch-a5e", @@ -18672,7 +18672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2128, "fields": { "spell": "vampiric-touch-a5e", @@ -18684,7 +18684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2129, "fields": { "spell": "vampiric-touch-a5e", @@ -18696,7 +18696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2130, "fields": { "spell": "vampiric-touch-a5e", @@ -18708,7 +18708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2131, "fields": { "spell": "vampiric-touch-a5e", @@ -18720,7 +18720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2132, "fields": { "spell": "vampiric-touch-a5e", @@ -18732,7 +18732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2133, "fields": { "spell": "venomous-succor-a5e", @@ -18744,7 +18744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2135, "fields": { "spell": "venomous-succor-a5e", @@ -18756,7 +18756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2136, "fields": { "spell": "venomous-succor-a5e", @@ -18768,7 +18768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2137, "fields": { "spell": "venomous-succor-a5e", @@ -18780,7 +18780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2138, "fields": { "spell": "venomous-succor-a5e", @@ -18792,7 +18792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2139, "fields": { "spell": "venomous-succor-a5e", @@ -18804,7 +18804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2140, "fields": { "spell": "venomous-succor-a5e", @@ -18816,7 +18816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2141, "fields": { "spell": "vicious-mockery-a5e", @@ -18828,7 +18828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2142, "fields": { "spell": "vicious-mockery-a5e", @@ -18840,7 +18840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2143, "fields": { "spell": "vicious-mockery-a5e", @@ -18852,7 +18852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2144, "fields": { "spell": "vicious-mockery-a5e", @@ -18864,7 +18864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2145, "fields": { "spell": "vicious-mockery-a5e", @@ -18876,7 +18876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2146, "fields": { "spell": "vicious-mockery-a5e", @@ -18888,7 +18888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2147, "fields": { "spell": "vicious-mockery-a5e", @@ -18900,7 +18900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2148, "fields": { "spell": "vicious-mockery-a5e", @@ -18912,7 +18912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2149, "fields": { "spell": "vicious-mockery-a5e", @@ -18924,7 +18924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2150, "fields": { "spell": "vicious-mockery-a5e", @@ -18936,7 +18936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2151, "fields": { "spell": "vicious-mockery-a5e", @@ -18948,7 +18948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2152, "fields": { "spell": "vicious-mockery-a5e", @@ -18960,7 +18960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2153, "fields": { "spell": "vicious-mockery-a5e", @@ -18972,7 +18972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2154, "fields": { "spell": "vicious-mockery-a5e", @@ -18984,7 +18984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2155, "fields": { "spell": "vicious-mockery-a5e", @@ -18996,7 +18996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2156, "fields": { "spell": "vicious-mockery-a5e", @@ -19008,7 +19008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2157, "fields": { "spell": "vicious-mockery-a5e", @@ -19020,7 +19020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2158, "fields": { "spell": "vicious-mockery-a5e", @@ -19032,7 +19032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2159, "fields": { "spell": "vicious-mockery-a5e", @@ -19044,7 +19044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2160, "fields": { "spell": "vicious-mockery-a5e", @@ -19056,7 +19056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2161, "fields": { "spell": "vicious-mockery-a5e", @@ -19068,7 +19068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2162, "fields": { "spell": "wall-of-fire-a5e", @@ -19080,7 +19080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2164, "fields": { "spell": "wall-of-fire-a5e", @@ -19092,7 +19092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2165, "fields": { "spell": "wall-of-fire-a5e", @@ -19104,7 +19104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2166, "fields": { "spell": "wall-of-fire-a5e", @@ -19116,7 +19116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2167, "fields": { "spell": "wall-of-fire-a5e", @@ -19128,7 +19128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2168, "fields": { "spell": "wall-of-fire-a5e", @@ -19140,7 +19140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2169, "fields": { "spell": "wall-of-flesh-a5e", @@ -19152,7 +19152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2171, "fields": { "spell": "wall-of-flesh-a5e", @@ -19164,7 +19164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2172, "fields": { "spell": "wall-of-flesh-a5e", @@ -19176,7 +19176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2173, "fields": { "spell": "wall-of-flesh-a5e", @@ -19188,7 +19188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2174, "fields": { "spell": "wall-of-force-a5e", @@ -19200,7 +19200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2175, "fields": { "spell": "wall-of-ice-a5e", @@ -19212,7 +19212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2177, "fields": { "spell": "wall-of-ice-a5e", @@ -19224,7 +19224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2178, "fields": { "spell": "wall-of-ice-a5e", @@ -19236,7 +19236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2179, "fields": { "spell": "wall-of-ice-a5e", @@ -19248,7 +19248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2180, "fields": { "spell": "wall-of-stone-a5e", @@ -19260,7 +19260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2181, "fields": { "spell": "wall-of-thorns-a5e", @@ -19272,7 +19272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2183, "fields": { "spell": "wall-of-thorns-a5e", @@ -19284,7 +19284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2184, "fields": { "spell": "wall-of-thorns-a5e", @@ -19296,7 +19296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2185, "fields": { "spell": "wall-of-thorns-a5e", @@ -19308,7 +19308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2186, "fields": { "spell": "warding-bond-a5e", @@ -19320,7 +19320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2188, "fields": { "spell": "warding-bond-a5e", @@ -19332,7 +19332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2189, "fields": { "spell": "warding-bond-a5e", @@ -19344,7 +19344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2190, "fields": { "spell": "warding-bond-a5e", @@ -19356,7 +19356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2191, "fields": { "spell": "warding-bond-a5e", @@ -19368,7 +19368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2192, "fields": { "spell": "warding-bond-a5e", @@ -19380,7 +19380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2193, "fields": { "spell": "warding-bond-a5e", @@ -19392,7 +19392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2194, "fields": { "spell": "warding-bond-a5e", @@ -19404,7 +19404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2195, "fields": { "spell": "warriors-instincts-a5e", @@ -19416,7 +19416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2197, "fields": { "spell": "warriors-instincts-a5e", @@ -19428,7 +19428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2198, "fields": { "spell": "warriors-instincts-a5e", @@ -19440,7 +19440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2199, "fields": { "spell": "warriors-instincts-a5e", @@ -19452,7 +19452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2200, "fields": { "spell": "warriors-instincts-a5e", @@ -19464,7 +19464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2201, "fields": { "spell": "water-breathing-a5e", @@ -19476,7 +19476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2202, "fields": { "spell": "water-breathing-a5e", @@ -19488,7 +19488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2203, "fields": { "spell": "water-walk-a5e", @@ -19500,7 +19500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2205, "fields": { "spell": "water-walk-a5e", @@ -19512,7 +19512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2206, "fields": { "spell": "water-walk-a5e", @@ -19524,7 +19524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2207, "fields": { "spell": "water-walk-a5e", @@ -19536,7 +19536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2208, "fields": { "spell": "water-walk-a5e", @@ -19548,7 +19548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2209, "fields": { "spell": "water-walk-a5e", @@ -19560,7 +19560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2210, "fields": { "spell": "water-walk-a5e", @@ -19572,7 +19572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2211, "fields": { "spell": "web-a5e", @@ -19584,7 +19584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2213, "fields": { "spell": "web-a5e", @@ -19596,7 +19596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2214, "fields": { "spell": "web-a5e", @@ -19608,7 +19608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2215, "fields": { "spell": "web-a5e", @@ -19620,7 +19620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2216, "fields": { "spell": "web-a5e", @@ -19632,7 +19632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2217, "fields": { "spell": "web-a5e", @@ -19644,7 +19644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2218, "fields": { "spell": "web-a5e", @@ -19656,7 +19656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2219, "fields": { "spell": "web-a5e", @@ -19668,7 +19668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2220, "fields": { "spell": "weird-a5e", @@ -19680,7 +19680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2221, "fields": { "spell": "whirlwind-kick-a5e", @@ -19692,7 +19692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2223, "fields": { "spell": "whirlwind-kick-a5e", @@ -19704,7 +19704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2224, "fields": { "spell": "whirlwind-kick-a5e", @@ -19716,7 +19716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2225, "fields": { "spell": "whirlwind-kick-a5e", @@ -19728,7 +19728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2226, "fields": { "spell": "whirlwind-kick-a5e", @@ -19740,7 +19740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2227, "fields": { "spell": "whirlwind-kick-a5e", @@ -19752,7 +19752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2228, "fields": { "spell": "whirlwind-kick-a5e", @@ -19764,7 +19764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2229, "fields": { "spell": "wind-up-a5e", @@ -19776,7 +19776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2230, "fields": { "spell": "wind-walk-a5e", @@ -19788,7 +19788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2231, "fields": { "spell": "wind-wall-a5e", @@ -19800,7 +19800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2233, "fields": { "spell": "wind-wall-a5e", @@ -19812,7 +19812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2234, "fields": { "spell": "wind-wall-a5e", @@ -19824,7 +19824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2235, "fields": { "spell": "wind-wall-a5e", @@ -19836,7 +19836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2236, "fields": { "spell": "wind-wall-a5e", @@ -19848,7 +19848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2237, "fields": { "spell": "wind-wall-a5e", @@ -19860,7 +19860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2238, "fields": { "spell": "wind-wall-a5e", @@ -19872,7 +19872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2239, "fields": { "spell": "wish-a5e", @@ -19884,7 +19884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2240, "fields": { "spell": "word-of-recall-a5e", @@ -19896,7 +19896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2241, "fields": { "spell": "wormway-a5e", @@ -19908,7 +19908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2242, "fields": { "spell": "wormway-a5e", @@ -19920,7 +19920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2243, "fields": { "spell": "writhing-transformation-a5e", @@ -19932,7 +19932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2244, "fields": { "spell": "writhing-transformation-a5e", @@ -19944,7 +19944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2245, "fields": { "spell": "zone-of-truth-a5e", diff --git a/data/v2/kobold-press/deepm/CastingOption.json b/data/v2/kobold-press/deepm/SpellCastingOption.json similarity index 82% rename from data/v2/kobold-press/deepm/CastingOption.json rename to data/v2/kobold-press/deepm/SpellCastingOption.json index 5b054a40..23f5b537 100644 --- a/data/v2/kobold-press/deepm/CastingOption.json +++ b/data/v2/kobold-press/deepm/SpellCastingOption.json @@ -1,6 +1,6 @@ [ { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2246, "fields": { "spell": "abhorrent-apparition", @@ -12,7 +12,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2248, "fields": { "spell": "abhorrent-apparition", @@ -24,7 +24,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2249, "fields": { "spell": "abhorrent-apparition", @@ -36,7 +36,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2250, "fields": { "spell": "abhorrent-apparition", @@ -48,7 +48,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2251, "fields": { "spell": "abhorrent-apparition", @@ -60,7 +60,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2252, "fields": { "spell": "abhorrent-apparition", @@ -72,7 +72,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2253, "fields": { "spell": "accelerate", @@ -84,7 +84,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2255, "fields": { "spell": "accelerate", @@ -96,7 +96,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2256, "fields": { "spell": "accelerate", @@ -108,7 +108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2257, "fields": { "spell": "accelerate", @@ -120,7 +120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2258, "fields": { "spell": "accelerate", @@ -132,7 +132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2259, "fields": { "spell": "accelerate", @@ -144,7 +144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2260, "fields": { "spell": "accelerate", @@ -156,7 +156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2261, "fields": { "spell": "acid-gate", @@ -168,7 +168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2263, "fields": { "spell": "acid-gate", @@ -180,7 +180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2264, "fields": { "spell": "acid-gate", @@ -192,7 +192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2265, "fields": { "spell": "acid-rain", @@ -204,7 +204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2267, "fields": { "spell": "acid-rain", @@ -216,7 +216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2268, "fields": { "spell": "acid-rain", @@ -228,7 +228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2269, "fields": { "spell": "acid-rain", @@ -240,7 +240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2270, "fields": { "spell": "acid-rain", @@ -252,7 +252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2271, "fields": { "spell": "adjust-position", @@ -264,7 +264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2273, "fields": { "spell": "adjust-position", @@ -276,7 +276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2274, "fields": { "spell": "adjust-position", @@ -288,7 +288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2275, "fields": { "spell": "adjust-position", @@ -300,7 +300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2276, "fields": { "spell": "adjust-position", @@ -312,7 +312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2277, "fields": { "spell": "adjust-position", @@ -324,7 +324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2278, "fields": { "spell": "adjust-position", @@ -336,7 +336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2279, "fields": { "spell": "adjust-position", @@ -348,7 +348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2280, "fields": { "spell": "adjust-position", @@ -360,7 +360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2281, "fields": { "spell": "afflict-line", @@ -372,7 +372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2282, "fields": { "spell": "afflict-line", @@ -384,7 +384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2283, "fields": { "spell": "agonizing-mark", @@ -396,7 +396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2284, "fields": { "spell": "alchemical-form", @@ -408,7 +408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2285, "fields": { "spell": "ale-dritch-blast", @@ -420,7 +420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2286, "fields": { "spell": "ale-dritch-blast", @@ -432,7 +432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2287, "fields": { "spell": "ale-dritch-blast", @@ -444,7 +444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2288, "fields": { "spell": "ale-dritch-blast", @@ -456,7 +456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2289, "fields": { "spell": "ale-dritch-blast", @@ -468,7 +468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2290, "fields": { "spell": "ale-dritch-blast", @@ -480,7 +480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2291, "fields": { "spell": "ale-dritch-blast", @@ -492,7 +492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2292, "fields": { "spell": "ale-dritch-blast", @@ -504,7 +504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2293, "fields": { "spell": "ale-dritch-blast", @@ -516,7 +516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2294, "fields": { "spell": "ale-dritch-blast", @@ -528,7 +528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2295, "fields": { "spell": "ale-dritch-blast", @@ -540,7 +540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2296, "fields": { "spell": "ale-dritch-blast", @@ -552,7 +552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2297, "fields": { "spell": "ale-dritch-blast", @@ -564,7 +564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2298, "fields": { "spell": "ale-dritch-blast", @@ -576,7 +576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2299, "fields": { "spell": "ale-dritch-blast", @@ -588,7 +588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2300, "fields": { "spell": "ale-dritch-blast", @@ -600,7 +600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2301, "fields": { "spell": "ale-dritch-blast", @@ -612,7 +612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2302, "fields": { "spell": "ale-dritch-blast", @@ -624,7 +624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2303, "fields": { "spell": "ale-dritch-blast", @@ -636,7 +636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2304, "fields": { "spell": "ale-dritch-blast", @@ -648,7 +648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2305, "fields": { "spell": "ale-dritch-blast", @@ -660,7 +660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2306, "fields": { "spell": "ally-aegis", @@ -672,7 +672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2308, "fields": { "spell": "ally-aegis", @@ -684,7 +684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2309, "fields": { "spell": "ally-aegis", @@ -696,7 +696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2310, "fields": { "spell": "ally-aegis", @@ -708,7 +708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2311, "fields": { "spell": "alone", @@ -720,7 +720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2312, "fields": { "spell": "alter-arrows-fortune", @@ -732,7 +732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2313, "fields": { "spell": "altheas-travel-tent", @@ -744,7 +744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2314, "fields": { "spell": "altheas-travel-tent", @@ -756,7 +756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2316, "fields": { "spell": "altheas-travel-tent", @@ -768,7 +768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2317, "fields": { "spell": "altheas-travel-tent", @@ -780,7 +780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2318, "fields": { "spell": "altheas-travel-tent", @@ -792,7 +792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2319, "fields": { "spell": "altheas-travel-tent", @@ -804,7 +804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2320, "fields": { "spell": "altheas-travel-tent", @@ -816,7 +816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2321, "fields": { "spell": "altheas-travel-tent", @@ -828,7 +828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2322, "fields": { "spell": "altheas-travel-tent", @@ -840,7 +840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2323, "fields": { "spell": "amplify-gravity", @@ -852,7 +852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2324, "fields": { "spell": "analyze-device", @@ -864,7 +864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2325, "fields": { "spell": "ancestors-strength", @@ -876,7 +876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2326, "fields": { "spell": "anchoring-rope", @@ -888,7 +888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2328, "fields": { "spell": "anchoring-rope", @@ -900,7 +900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2329, "fields": { "spell": "anchoring-rope", @@ -912,7 +912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2330, "fields": { "spell": "anchoring-rope", @@ -924,7 +924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2331, "fields": { "spell": "anchoring-rope", @@ -936,7 +936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2332, "fields": { "spell": "anchoring-rope", @@ -948,7 +948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2333, "fields": { "spell": "anchoring-rope", @@ -960,7 +960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2334, "fields": { "spell": "anchoring-rope", @@ -972,7 +972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2335, "fields": { "spell": "anchoring-rope", @@ -984,7 +984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2336, "fields": { "spell": "ancient-shade", @@ -996,7 +996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2337, "fields": { "spell": "angelic-guardian", @@ -1008,7 +1008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2338, "fields": { "spell": "animate-ghoul", @@ -1020,7 +1020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2340, "fields": { "spell": "animate-ghoul", @@ -1032,7 +1032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2341, "fields": { "spell": "animate-ghoul", @@ -1044,7 +1044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2342, "fields": { "spell": "animate-ghoul", @@ -1056,7 +1056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2343, "fields": { "spell": "animate-ghoul", @@ -1068,7 +1068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2344, "fields": { "spell": "animate-ghoul", @@ -1080,7 +1080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2345, "fields": { "spell": "animate-ghoul", @@ -1092,7 +1092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2346, "fields": { "spell": "animate-ghoul", @@ -1104,7 +1104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2347, "fields": { "spell": "animate-greater-undead", @@ -1116,7 +1116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2349, "fields": { "spell": "animate-greater-undead", @@ -1128,7 +1128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2350, "fields": { "spell": "animate-greater-undead", @@ -1140,7 +1140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2351, "fields": { "spell": "animate-greater-undead", @@ -1152,7 +1152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2352, "fields": { "spell": "animated-scroll", @@ -1164,7 +1164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2353, "fields": { "spell": "animated-scroll", @@ -1176,7 +1176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2354, "fields": { "spell": "animated-scroll", @@ -1188,7 +1188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2355, "fields": { "spell": "animated-scroll", @@ -1200,7 +1200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2356, "fields": { "spell": "animated-scroll", @@ -1212,7 +1212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2357, "fields": { "spell": "animated-scroll", @@ -1224,7 +1224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2358, "fields": { "spell": "animated-scroll", @@ -1236,7 +1236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2359, "fields": { "spell": "animated-scroll", @@ -1248,7 +1248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2360, "fields": { "spell": "animated-scroll", @@ -1260,7 +1260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2361, "fields": { "spell": "animated-scroll", @@ -1272,7 +1272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2362, "fields": { "spell": "animated-scroll", @@ -1284,7 +1284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2363, "fields": { "spell": "animated-scroll", @@ -1296,7 +1296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2364, "fields": { "spell": "animated-scroll", @@ -1308,7 +1308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2365, "fields": { "spell": "animated-scroll", @@ -1320,7 +1320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2366, "fields": { "spell": "animated-scroll", @@ -1332,7 +1332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2367, "fields": { "spell": "animated-scroll", @@ -1344,7 +1344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2368, "fields": { "spell": "animated-scroll", @@ -1356,7 +1356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2369, "fields": { "spell": "animated-scroll", @@ -1368,7 +1368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2370, "fields": { "spell": "animated-scroll", @@ -1380,7 +1380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2371, "fields": { "spell": "animated-scroll", @@ -1392,7 +1392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2372, "fields": { "spell": "animated-scroll", @@ -1404,7 +1404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2373, "fields": { "spell": "anticipate-arcana", @@ -1416,7 +1416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2374, "fields": { "spell": "anticipate-attack", @@ -1428,7 +1428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2375, "fields": { "spell": "anticipate-weakness", @@ -1440,7 +1440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2376, "fields": { "spell": "arcane-sight", @@ -1452,7 +1452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2377, "fields": { "spell": "as-you-were", @@ -1464,7 +1464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2378, "fields": { "spell": "ashen-memories", @@ -1476,7 +1476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2379, "fields": { "spell": "ashen-memories", @@ -1488,7 +1488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2380, "fields": { "spell": "aspect-of-the-dragon", @@ -1500,7 +1500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2381, "fields": { "spell": "aspect-of-the-serpent", @@ -1512,7 +1512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2383, "fields": { "spell": "aspect-of-the-serpent", @@ -1524,7 +1524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2384, "fields": { "spell": "aspect-of-the-serpent", @@ -1536,7 +1536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2385, "fields": { "spell": "aspect-of-the-serpent", @@ -1548,7 +1548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2386, "fields": { "spell": "aspect-of-the-serpent", @@ -1560,7 +1560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2387, "fields": { "spell": "aspect-of-the-serpent", @@ -1572,7 +1572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2388, "fields": { "spell": "aspect-of-the-serpent", @@ -1584,7 +1584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2389, "fields": { "spell": "aura-of-protection-or-destruction", @@ -1596,7 +1596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2391, "fields": { "spell": "aura-of-protection-or-destruction", @@ -1608,7 +1608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2392, "fields": { "spell": "aura-of-protection-or-destruction", @@ -1620,7 +1620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2393, "fields": { "spell": "aura-of-protection-or-destruction", @@ -1632,7 +1632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2394, "fields": { "spell": "aura-of-protection-or-destruction", @@ -1644,7 +1644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2395, "fields": { "spell": "aura-of-protection-or-destruction", @@ -1656,7 +1656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2396, "fields": { "spell": "aura-of-protection-or-destruction", @@ -1668,7 +1668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2397, "fields": { "spell": "auspicious-warning", @@ -1680,7 +1680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2398, "fields": { "spell": "avoid-grievous-injury", @@ -1692,7 +1692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2399, "fields": { "spell": "avronins-astral-assembly", @@ -1704,7 +1704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2400, "fields": { "spell": "avronins-astral-assembly", @@ -1716,7 +1716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2401, "fields": { "spell": "awaken-object", @@ -1728,7 +1728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2402, "fields": { "spell": "bad-timing", @@ -1740,7 +1740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2403, "fields": { "spell": "batsense", @@ -1752,7 +1752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2404, "fields": { "spell": "become-nightwing", @@ -1764,7 +1764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2405, "fields": { "spell": "beguiling-bet", @@ -1776,7 +1776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2407, "fields": { "spell": "beguiling-bet", @@ -1788,7 +1788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2408, "fields": { "spell": "beguiling-bet", @@ -1800,7 +1800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2409, "fields": { "spell": "beguiling-bet", @@ -1812,7 +1812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2410, "fields": { "spell": "beguiling-bet", @@ -1824,7 +1824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2411, "fields": { "spell": "beguiling-bet", @@ -1836,7 +1836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2412, "fields": { "spell": "beguiling-bet", @@ -1848,7 +1848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2413, "fields": { "spell": "beguiling-bet", @@ -1860,7 +1860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2414, "fields": { "spell": "benediction", @@ -1872,7 +1872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2415, "fields": { "spell": "bestial-fury", @@ -1884,7 +1884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2417, "fields": { "spell": "bestial-fury", @@ -1896,7 +1896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2418, "fields": { "spell": "bestial-fury", @@ -1908,7 +1908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2419, "fields": { "spell": "bestial-fury", @@ -1920,7 +1920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2420, "fields": { "spell": "bestial-fury", @@ -1932,7 +1932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2421, "fields": { "spell": "bestial-fury", @@ -1944,7 +1944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2422, "fields": { "spell": "bestial-fury", @@ -1956,7 +1956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2423, "fields": { "spell": "bestial-fury", @@ -1968,7 +1968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2424, "fields": { "spell": "binding-oath", @@ -1980,7 +1980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2425, "fields": { "spell": "biting-arrow", @@ -1992,7 +1992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2426, "fields": { "spell": "biting-arrow", @@ -2004,7 +2004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2427, "fields": { "spell": "biting-arrow", @@ -2016,7 +2016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2428, "fields": { "spell": "biting-arrow", @@ -2028,7 +2028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2429, "fields": { "spell": "biting-arrow", @@ -2040,7 +2040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2430, "fields": { "spell": "biting-arrow", @@ -2052,7 +2052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2431, "fields": { "spell": "biting-arrow", @@ -2064,7 +2064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2432, "fields": { "spell": "biting-arrow", @@ -2076,7 +2076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2433, "fields": { "spell": "biting-arrow", @@ -2088,7 +2088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2434, "fields": { "spell": "biting-arrow", @@ -2100,7 +2100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2435, "fields": { "spell": "biting-arrow", @@ -2112,7 +2112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2436, "fields": { "spell": "biting-arrow", @@ -2124,7 +2124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2437, "fields": { "spell": "biting-arrow", @@ -2136,7 +2136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2438, "fields": { "spell": "biting-arrow", @@ -2148,7 +2148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2439, "fields": { "spell": "biting-arrow", @@ -2160,7 +2160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2440, "fields": { "spell": "biting-arrow", @@ -2172,7 +2172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2441, "fields": { "spell": "biting-arrow", @@ -2184,7 +2184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2442, "fields": { "spell": "biting-arrow", @@ -2196,7 +2196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2443, "fields": { "spell": "biting-arrow", @@ -2208,7 +2208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2444, "fields": { "spell": "biting-arrow", @@ -2220,7 +2220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2445, "fields": { "spell": "biting-arrow", @@ -2232,7 +2232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2446, "fields": { "spell": "bitter-chains", @@ -2244,7 +2244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2447, "fields": { "spell": "black-goats-blessing", @@ -2256,7 +2256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2448, "fields": { "spell": "black-hand", @@ -2268,7 +2268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2449, "fields": { "spell": "black-ribbons", @@ -2280,7 +2280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2450, "fields": { "spell": "black-sunshine", @@ -2292,7 +2292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2451, "fields": { "spell": "black-swan-storm", @@ -2304,7 +2304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2453, "fields": { "spell": "black-swan-storm", @@ -2316,7 +2316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2454, "fields": { "spell": "black-swan-storm", @@ -2328,7 +2328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2455, "fields": { "spell": "black-swan-storm", @@ -2340,7 +2340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2456, "fields": { "spell": "black-swan-storm", @@ -2352,7 +2352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2457, "fields": { "spell": "black-swan-storm", @@ -2364,7 +2364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2458, "fields": { "spell": "black-swan-storm", @@ -2376,7 +2376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2459, "fields": { "spell": "black-swan-storm", @@ -2388,7 +2388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2460, "fields": { "spell": "black-well", @@ -2400,7 +2400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2462, "fields": { "spell": "black-well", @@ -2412,7 +2412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2463, "fields": { "spell": "black-well", @@ -2424,7 +2424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2464, "fields": { "spell": "black-well", @@ -2436,7 +2436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2465, "fields": { "spell": "blade-of-my-brother", @@ -2448,7 +2448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2466, "fields": { "spell": "blade-of-wrath", @@ -2460,7 +2460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2468, "fields": { "spell": "blade-of-wrath", @@ -2472,7 +2472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2469, "fields": { "spell": "blade-of-wrath", @@ -2484,7 +2484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2470, "fields": { "spell": "blade-of-wrath", @@ -2496,7 +2496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2471, "fields": { "spell": "blade-of-wrath", @@ -2508,7 +2508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2472, "fields": { "spell": "blade-of-wrath", @@ -2520,7 +2520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2473, "fields": { "spell": "blade-of-wrath", @@ -2532,7 +2532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2474, "fields": { "spell": "blazing-chariot", @@ -2544,7 +2544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2475, "fields": { "spell": "bleating-call", @@ -2556,7 +2556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2476, "fields": { "spell": "bleed", @@ -2568,7 +2568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2477, "fields": { "spell": "bless-the-dead", @@ -2580,7 +2580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2478, "fields": { "spell": "blessed-halo", @@ -2592,7 +2592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2480, "fields": { "spell": "blessed-halo", @@ -2604,7 +2604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2481, "fields": { "spell": "blessed-halo", @@ -2616,7 +2616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2482, "fields": { "spell": "blessed-halo", @@ -2628,7 +2628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2483, "fields": { "spell": "blessed-halo", @@ -2640,7 +2640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2484, "fields": { "spell": "blessed-halo", @@ -2652,7 +2652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2485, "fields": { "spell": "blessed-halo", @@ -2664,7 +2664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2486, "fields": { "spell": "blessed-halo", @@ -2676,7 +2676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2487, "fields": { "spell": "blizzard", @@ -2688,7 +2688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2488, "fields": { "spell": "blood-and-steel", @@ -2700,7 +2700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2490, "fields": { "spell": "blood-and-steel", @@ -2712,7 +2712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2491, "fields": { "spell": "blood-and-steel", @@ -2724,7 +2724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2492, "fields": { "spell": "blood-and-steel", @@ -2736,7 +2736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2493, "fields": { "spell": "blood-and-steel", @@ -2748,7 +2748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2494, "fields": { "spell": "blood-and-steel", @@ -2760,7 +2760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2495, "fields": { "spell": "blood-armor", @@ -2772,7 +2772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2496, "fields": { "spell": "blood-lure", @@ -2784,7 +2784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2497, "fields": { "spell": "blood-offering", @@ -2796,7 +2796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2498, "fields": { "spell": "blood-puppet", @@ -2808,7 +2808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2499, "fields": { "spell": "blood-scarab", @@ -2820,7 +2820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2501, "fields": { "spell": "blood-scarab", @@ -2832,7 +2832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2502, "fields": { "spell": "blood-scarab", @@ -2844,7 +2844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2503, "fields": { "spell": "blood-scarab", @@ -2856,7 +2856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2504, "fields": { "spell": "blood-scarab", @@ -2868,7 +2868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2505, "fields": { "spell": "blood-scarab", @@ -2880,7 +2880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2506, "fields": { "spell": "blood-scarab", @@ -2892,7 +2892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2507, "fields": { "spell": "blood-scarab", @@ -2904,7 +2904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2508, "fields": { "spell": "blood-scarab", @@ -2916,7 +2916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2509, "fields": { "spell": "blood-spoor", @@ -2928,7 +2928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2510, "fields": { "spell": "blood-tide", @@ -2940,7 +2940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2511, "fields": { "spell": "blood-tide", @@ -2952,7 +2952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2512, "fields": { "spell": "blood-tide", @@ -2964,7 +2964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2513, "fields": { "spell": "blood-tide", @@ -2976,7 +2976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2514, "fields": { "spell": "blood-tide", @@ -2988,7 +2988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2515, "fields": { "spell": "blood-tide", @@ -3000,7 +3000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2516, "fields": { "spell": "blood-tide", @@ -3012,7 +3012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2517, "fields": { "spell": "blood-tide", @@ -3024,7 +3024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2518, "fields": { "spell": "blood-tide", @@ -3036,7 +3036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2519, "fields": { "spell": "blood-tide", @@ -3048,7 +3048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2520, "fields": { "spell": "blood-tide", @@ -3060,7 +3060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2521, "fields": { "spell": "blood-tide", @@ -3072,7 +3072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2522, "fields": { "spell": "blood-tide", @@ -3084,7 +3084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2523, "fields": { "spell": "blood-tide", @@ -3096,7 +3096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2524, "fields": { "spell": "blood-tide", @@ -3108,7 +3108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2525, "fields": { "spell": "blood-tide", @@ -3120,7 +3120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2526, "fields": { "spell": "blood-tide", @@ -3132,7 +3132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2527, "fields": { "spell": "blood-tide", @@ -3144,7 +3144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2528, "fields": { "spell": "blood-tide", @@ -3156,7 +3156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2529, "fields": { "spell": "blood-tide", @@ -3168,7 +3168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2530, "fields": { "spell": "blood-tide", @@ -3180,7 +3180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2531, "fields": { "spell": "blood-to-acid", @@ -3192,7 +3192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2532, "fields": { "spell": "bloodhound", @@ -3204,7 +3204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2534, "fields": { "spell": "bloodhound", @@ -3216,7 +3216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2535, "fields": { "spell": "bloodhound", @@ -3228,7 +3228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2536, "fields": { "spell": "bloodhound", @@ -3240,7 +3240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2537, "fields": { "spell": "bloodhound", @@ -3252,7 +3252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2538, "fields": { "spell": "bloodhound", @@ -3264,7 +3264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2539, "fields": { "spell": "bloodhound", @@ -3276,7 +3276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2540, "fields": { "spell": "bloodhound", @@ -3288,7 +3288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2541, "fields": { "spell": "bloodhound", @@ -3300,7 +3300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2542, "fields": { "spell": "bloodshot", @@ -3312,7 +3312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2544, "fields": { "spell": "bloodshot", @@ -3324,7 +3324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2545, "fields": { "spell": "bloodshot", @@ -3336,7 +3336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2546, "fields": { "spell": "bloodshot", @@ -3348,7 +3348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2547, "fields": { "spell": "bloodshot", @@ -3360,7 +3360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2548, "fields": { "spell": "bloodshot", @@ -3372,7 +3372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2549, "fields": { "spell": "bloodshot", @@ -3384,7 +3384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2550, "fields": { "spell": "bloodshot", @@ -3396,7 +3396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2551, "fields": { "spell": "bloody-hands", @@ -3408,7 +3408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2552, "fields": { "spell": "bloody-smite", @@ -3420,7 +3420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2553, "fields": { "spell": "bloom", @@ -3432,7 +3432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2554, "fields": { "spell": "bloom", @@ -3444,7 +3444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2555, "fields": { "spell": "boiling-blood", @@ -3456,7 +3456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2557, "fields": { "spell": "boiling-blood", @@ -3468,7 +3468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2558, "fields": { "spell": "boiling-blood", @@ -3480,7 +3480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2559, "fields": { "spell": "boiling-blood", @@ -3492,7 +3492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2560, "fields": { "spell": "boiling-blood", @@ -3504,7 +3504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2561, "fields": { "spell": "boiling-blood", @@ -3516,7 +3516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2562, "fields": { "spell": "boiling-oil", @@ -3528,7 +3528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2564, "fields": { "spell": "boiling-oil", @@ -3540,7 +3540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2565, "fields": { "spell": "boiling-oil", @@ -3552,7 +3552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2566, "fields": { "spell": "boiling-oil", @@ -3564,7 +3564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2567, "fields": { "spell": "boiling-oil", @@ -3576,7 +3576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2568, "fields": { "spell": "boiling-oil", @@ -3588,7 +3588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2569, "fields": { "spell": "boiling-oil", @@ -3600,7 +3600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2570, "fields": { "spell": "boiling-oil", @@ -3612,7 +3612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2571, "fields": { "spell": "bolster-undead", @@ -3624,7 +3624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2573, "fields": { "spell": "bolster-undead", @@ -3636,7 +3636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2574, "fields": { "spell": "bolster-undead", @@ -3648,7 +3648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2575, "fields": { "spell": "bolster-undead", @@ -3660,7 +3660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2576, "fields": { "spell": "bolster-undead", @@ -3672,7 +3672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2577, "fields": { "spell": "bolster-undead", @@ -3684,7 +3684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2578, "fields": { "spell": "bolster-undead", @@ -3696,7 +3696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2579, "fields": { "spell": "bolster-undead", @@ -3708,7 +3708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2580, "fields": { "spell": "bolster-undead", @@ -3720,7 +3720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2581, "fields": { "spell": "booster-shot", @@ -3732,7 +3732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2583, "fields": { "spell": "booster-shot", @@ -3744,7 +3744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2584, "fields": { "spell": "booster-shot", @@ -3756,7 +3756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2585, "fields": { "spell": "booster-shot", @@ -3768,7 +3768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2586, "fields": { "spell": "booster-shot", @@ -3780,7 +3780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2587, "fields": { "spell": "booster-shot", @@ -3792,7 +3792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2588, "fields": { "spell": "booster-shot", @@ -3804,7 +3804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2589, "fields": { "spell": "boreass-breath", @@ -3816,7 +3816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2590, "fields": { "spell": "boreass-breath", @@ -3828,7 +3828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2592, "fields": { "spell": "boreass-breath", @@ -3840,7 +3840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2593, "fields": { "spell": "boreass-breath", @@ -3852,7 +3852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2594, "fields": { "spell": "boreass-breath", @@ -3864,7 +3864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2595, "fields": { "spell": "boreass-breath", @@ -3876,7 +3876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2596, "fields": { "spell": "boreass-breath", @@ -3888,7 +3888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2597, "fields": { "spell": "boreass-breath", @@ -3900,7 +3900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2598, "fields": { "spell": "boreass-breath", @@ -3912,7 +3912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2599, "fields": { "spell": "bottled-arcana", @@ -3924,7 +3924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2601, "fields": { "spell": "bottled-arcana", @@ -3936,7 +3936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2602, "fields": { "spell": "bottled-arcana", @@ -3948,7 +3948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2603, "fields": { "spell": "bottled-arcana", @@ -3960,7 +3960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2604, "fields": { "spell": "bottled-arcana", @@ -3972,7 +3972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2605, "fields": { "spell": "bottomless-stomach", @@ -3984,7 +3984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2606, "fields": { "spell": "breathtaking-wind", @@ -3996,7 +3996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2607, "fields": { "spell": "breeze-compass", @@ -4008,7 +4008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2608, "fields": { "spell": "brimstone-infusion", @@ -4020,7 +4020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2609, "fields": { "spell": "brittling", @@ -4032,7 +4032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2610, "fields": { "spell": "broken-charge", @@ -4044,7 +4044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2612, "fields": { "spell": "broken-charge", @@ -4056,7 +4056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2613, "fields": { "spell": "broken-charge", @@ -4068,7 +4068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2614, "fields": { "spell": "broken-charge", @@ -4080,7 +4080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2615, "fields": { "spell": "broken-charge", @@ -4092,7 +4092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2616, "fields": { "spell": "broken-charge", @@ -4104,7 +4104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2617, "fields": { "spell": "broken-charge", @@ -4116,7 +4116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2618, "fields": { "spell": "broken-charge", @@ -4128,7 +4128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2619, "fields": { "spell": "broken-charge", @@ -4140,7 +4140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2620, "fields": { "spell": "by-the-light-of-the-moon", @@ -4152,7 +4152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2621, "fields": { "spell": "by-the-light-of-the-watchful-moon", @@ -4164,7 +4164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2622, "fields": { "spell": "call-shadow-mastiff", @@ -4176,7 +4176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2623, "fields": { "spell": "calm-of-the-storm", @@ -4188,7 +4188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2625, "fields": { "spell": "calm-of-the-storm", @@ -4200,7 +4200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2626, "fields": { "spell": "calm-of-the-storm", @@ -4212,7 +4212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2627, "fields": { "spell": "calm-of-the-storm", @@ -4224,7 +4224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2628, "fields": { "spell": "calm-of-the-storm", @@ -4236,7 +4236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2629, "fields": { "spell": "calm-of-the-storm", @@ -4248,7 +4248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2630, "fields": { "spell": "calm-of-the-storm", @@ -4260,7 +4260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2631, "fields": { "spell": "candles-insight", @@ -4272,7 +4272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2632, "fields": { "spell": "carmello-voltas-irksome-preserves", @@ -4284,7 +4284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2633, "fields": { "spell": "catapult", @@ -4296,7 +4296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2635, "fields": { "spell": "catapult", @@ -4308,7 +4308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2636, "fields": { "spell": "catapult", @@ -4320,7 +4320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2637, "fields": { "spell": "catapult", @@ -4332,7 +4332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2638, "fields": { "spell": "catch-the-breath", @@ -4344,7 +4344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2640, "fields": { "spell": "catch-the-breath", @@ -4356,7 +4356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2641, "fields": { "spell": "catch-the-breath", @@ -4368,7 +4368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2642, "fields": { "spell": "catch-the-breath", @@ -4380,7 +4380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2643, "fields": { "spell": "catch-the-breath", @@ -4392,7 +4392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2644, "fields": { "spell": "catch-the-breath", @@ -4404,7 +4404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2645, "fields": { "spell": "catch-the-breath", @@ -4416,7 +4416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2646, "fields": { "spell": "caustic-blood", @@ -4428,7 +4428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2648, "fields": { "spell": "caustic-blood", @@ -4440,7 +4440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2649, "fields": { "spell": "caustic-blood", @@ -4452,7 +4452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2650, "fields": { "spell": "caustic-blood", @@ -4464,7 +4464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2651, "fields": { "spell": "caustic-blood", @@ -4476,7 +4476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2652, "fields": { "spell": "caustic-blood", @@ -4488,7 +4488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2653, "fields": { "spell": "caustic-blood", @@ -4500,7 +4500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2654, "fields": { "spell": "caustic-blood", @@ -4512,7 +4512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2655, "fields": { "spell": "caustic-torrent", @@ -4524,7 +4524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2656, "fields": { "spell": "caustic-touch", @@ -4536,7 +4536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2657, "fields": { "spell": "caustic-touch", @@ -4548,7 +4548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2658, "fields": { "spell": "caustic-touch", @@ -4560,7 +4560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2659, "fields": { "spell": "caustic-touch", @@ -4572,7 +4572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2660, "fields": { "spell": "caustic-touch", @@ -4584,7 +4584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2661, "fields": { "spell": "caustic-touch", @@ -4596,7 +4596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2662, "fields": { "spell": "caustic-touch", @@ -4608,7 +4608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2663, "fields": { "spell": "caustic-touch", @@ -4620,7 +4620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2664, "fields": { "spell": "caustic-touch", @@ -4632,7 +4632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2665, "fields": { "spell": "caustic-touch", @@ -4644,7 +4644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2666, "fields": { "spell": "caustic-touch", @@ -4656,7 +4656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2667, "fields": { "spell": "caustic-touch", @@ -4668,7 +4668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2668, "fields": { "spell": "caustic-touch", @@ -4680,7 +4680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2669, "fields": { "spell": "caustic-touch", @@ -4692,7 +4692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2670, "fields": { "spell": "caustic-touch", @@ -4704,7 +4704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2671, "fields": { "spell": "caustic-touch", @@ -4716,7 +4716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2672, "fields": { "spell": "caustic-touch", @@ -4728,7 +4728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2673, "fields": { "spell": "caustic-touch", @@ -4740,7 +4740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2674, "fields": { "spell": "caustic-touch", @@ -4752,7 +4752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2675, "fields": { "spell": "caustic-touch", @@ -4764,7 +4764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2676, "fields": { "spell": "caustic-touch", @@ -4776,7 +4776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2677, "fields": { "spell": "celebration", @@ -4788,7 +4788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2678, "fields": { "spell": "celebration", @@ -4800,7 +4800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2680, "fields": { "spell": "celebration", @@ -4812,7 +4812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2681, "fields": { "spell": "celebration", @@ -4824,7 +4824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2682, "fields": { "spell": "chains-of-the-goddess", @@ -4836,7 +4836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2683, "fields": { "spell": "chains-of-torment", @@ -4848,7 +4848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2685, "fields": { "spell": "chains-of-torment", @@ -4860,7 +4860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2686, "fields": { "spell": "chains-of-torment", @@ -4872,7 +4872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2687, "fields": { "spell": "chains-of-torment", @@ -4884,7 +4884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2688, "fields": { "spell": "chains-of-torment", @@ -4896,7 +4896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2689, "fields": { "spell": "chains-of-torment", @@ -4908,7 +4908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2690, "fields": { "spell": "champions-weapon", @@ -4920,7 +4920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2692, "fields": { "spell": "champions-weapon", @@ -4932,7 +4932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2693, "fields": { "spell": "champions-weapon", @@ -4944,7 +4944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2694, "fields": { "spell": "champions-weapon", @@ -4956,7 +4956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2695, "fields": { "spell": "champions-weapon", @@ -4968,7 +4968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2696, "fields": { "spell": "champions-weapon", @@ -4980,7 +4980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2697, "fields": { "spell": "champions-weapon", @@ -4992,7 +4992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2698, "fields": { "spell": "champions-weapon", @@ -5004,7 +5004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2699, "fields": { "spell": "chaotic-form", @@ -5016,7 +5016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2701, "fields": { "spell": "chaotic-form", @@ -5028,7 +5028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2702, "fields": { "spell": "chaotic-form", @@ -5040,7 +5040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2703, "fields": { "spell": "chaotic-form", @@ -5052,7 +5052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2704, "fields": { "spell": "chaotic-form", @@ -5064,7 +5064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2705, "fields": { "spell": "chaotic-form", @@ -5076,7 +5076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2706, "fields": { "spell": "chaotic-vitality", @@ -5088,7 +5088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2708, "fields": { "spell": "chaotic-vitality", @@ -5100,7 +5100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2709, "fields": { "spell": "chaotic-vitality", @@ -5112,7 +5112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2710, "fields": { "spell": "chaotic-vitality", @@ -5124,7 +5124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2711, "fields": { "spell": "chaotic-vitality", @@ -5136,7 +5136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2712, "fields": { "spell": "chaotic-vitality", @@ -5148,7 +5148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2713, "fields": { "spell": "chaotic-vitality", @@ -5160,7 +5160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2714, "fields": { "spell": "chaotic-vitality", @@ -5172,7 +5172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2715, "fields": { "spell": "chaotic-world", @@ -5184,7 +5184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2716, "fields": { "spell": "chilling-words", @@ -5196,7 +5196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2717, "fields": { "spell": "chronal-lance", @@ -5208,7 +5208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2719, "fields": { "spell": "chronal-lance", @@ -5220,7 +5220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2720, "fields": { "spell": "chronal-lance", @@ -5232,7 +5232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2721, "fields": { "spell": "chronal-lance", @@ -5244,7 +5244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2722, "fields": { "spell": "chronal-lance", @@ -5256,7 +5256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2723, "fields": { "spell": "chronal-lance", @@ -5268,7 +5268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2724, "fields": { "spell": "chronal-lance", @@ -5280,7 +5280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2725, "fields": { "spell": "chronal-lance", @@ -5292,7 +5292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2726, "fields": { "spell": "chronal-lance", @@ -5304,7 +5304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2727, "fields": { "spell": "circle-of-wind", @@ -5316,7 +5316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2728, "fields": { "spell": "clash-of-glaciers", @@ -5328,7 +5328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2730, "fields": { "spell": "clash-of-glaciers", @@ -5340,7 +5340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2731, "fields": { "spell": "clash-of-glaciers", @@ -5352,7 +5352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2732, "fields": { "spell": "clash-of-glaciers", @@ -5364,7 +5364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2733, "fields": { "spell": "clash-of-glaciers", @@ -5376,7 +5376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2734, "fields": { "spell": "claws-of-darkness", @@ -5388,7 +5388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2735, "fields": { "spell": "claws-of-the-earth-dragon", @@ -5400,7 +5400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2737, "fields": { "spell": "claws-of-the-earth-dragon", @@ -5412,7 +5412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2738, "fields": { "spell": "claws-of-the-earth-dragon", @@ -5424,7 +5424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2739, "fields": { "spell": "claws-of-the-earth-dragon", @@ -5436,7 +5436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2740, "fields": { "spell": "claws-of-the-earth-dragon", @@ -5448,7 +5448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2741, "fields": { "spell": "clearing-the-field", @@ -5460,7 +5460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2742, "fields": { "spell": "clearing-the-field", @@ -5472,7 +5472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2744, "fields": { "spell": "clearing-the-field", @@ -5484,7 +5484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2745, "fields": { "spell": "clearing-the-field", @@ -5496,7 +5496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2746, "fields": { "spell": "clearing-the-field", @@ -5508,7 +5508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2747, "fields": { "spell": "clearing-the-field", @@ -5520,7 +5520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2748, "fields": { "spell": "clearing-the-field", @@ -5532,7 +5532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2749, "fields": { "spell": "clearing-the-field", @@ -5544,7 +5544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2750, "fields": { "spell": "clearing-the-field", @@ -5556,7 +5556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2751, "fields": { "spell": "cloak-of-shadow", @@ -5568,7 +5568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2752, "fields": { "spell": "clockwork-bolt", @@ -5580,7 +5580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2753, "fields": { "spell": "clockwork-bolt", @@ -5592,7 +5592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2754, "fields": { "spell": "clockwork-bolt", @@ -5604,7 +5604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2755, "fields": { "spell": "clockwork-bolt", @@ -5616,7 +5616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2756, "fields": { "spell": "clockwork-bolt", @@ -5628,7 +5628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2757, "fields": { "spell": "clockwork-bolt", @@ -5640,7 +5640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2758, "fields": { "spell": "clockwork-bolt", @@ -5652,7 +5652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2759, "fields": { "spell": "clockwork-bolt", @@ -5664,7 +5664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2760, "fields": { "spell": "clockwork-bolt", @@ -5676,7 +5676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2761, "fields": { "spell": "clockwork-bolt", @@ -5688,7 +5688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2762, "fields": { "spell": "clockwork-bolt", @@ -5700,7 +5700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2763, "fields": { "spell": "clockwork-bolt", @@ -5712,7 +5712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2764, "fields": { "spell": "clockwork-bolt", @@ -5724,7 +5724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2765, "fields": { "spell": "clockwork-bolt", @@ -5736,7 +5736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2766, "fields": { "spell": "clockwork-bolt", @@ -5748,7 +5748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2767, "fields": { "spell": "clockwork-bolt", @@ -5760,7 +5760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2768, "fields": { "spell": "clockwork-bolt", @@ -5772,7 +5772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2769, "fields": { "spell": "clockwork-bolt", @@ -5784,7 +5784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2770, "fields": { "spell": "clockwork-bolt", @@ -5796,7 +5796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2771, "fields": { "spell": "clockwork-bolt", @@ -5808,7 +5808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2772, "fields": { "spell": "clockwork-bolt", @@ -5820,7 +5820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2773, "fields": { "spell": "closing-in", @@ -5832,7 +5832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2775, "fields": { "spell": "closing-in", @@ -5844,7 +5844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2776, "fields": { "spell": "closing-in", @@ -5856,7 +5856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2777, "fields": { "spell": "closing-in", @@ -5868,7 +5868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2778, "fields": { "spell": "closing-in", @@ -5880,7 +5880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2779, "fields": { "spell": "closing-in", @@ -5892,7 +5892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2780, "fields": { "spell": "closing-in", @@ -5904,7 +5904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2781, "fields": { "spell": "cobra-fangs", @@ -5916,7 +5916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2783, "fields": { "spell": "cobra-fangs", @@ -5928,7 +5928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2784, "fields": { "spell": "cobra-fangs", @@ -5940,7 +5940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2785, "fields": { "spell": "cobra-fangs", @@ -5952,7 +5952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2786, "fields": { "spell": "cobra-fangs", @@ -5964,7 +5964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2787, "fields": { "spell": "cobra-fangs", @@ -5976,7 +5976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2788, "fields": { "spell": "cobra-fangs", @@ -5988,7 +5988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2789, "fields": { "spell": "cobra-fangs", @@ -6000,7 +6000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2790, "fields": { "spell": "cobra-fangs", @@ -6012,7 +6012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2791, "fields": { "spell": "compelled-movement", @@ -6024,7 +6024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2793, "fields": { "spell": "compelled-movement", @@ -6036,7 +6036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2794, "fields": { "spell": "compelled-movement", @@ -6048,7 +6048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2795, "fields": { "spell": "compelled-movement", @@ -6060,7 +6060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2796, "fields": { "spell": "compelled-movement", @@ -6072,7 +6072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2797, "fields": { "spell": "compelled-movement", @@ -6084,7 +6084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2798, "fields": { "spell": "compelled-movement", @@ -6096,7 +6096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2799, "fields": { "spell": "compelling-fate", @@ -6108,7 +6108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2801, "fields": { "spell": "compelling-fate", @@ -6120,7 +6120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2802, "fields": { "spell": "compelling-fate", @@ -6132,7 +6132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2803, "fields": { "spell": "compelling-fate", @@ -6144,7 +6144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2804, "fields": { "spell": "compelling-fate", @@ -6156,7 +6156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2805, "fields": { "spell": "compelling-fate", @@ -6168,7 +6168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2806, "fields": { "spell": "compelling-fate", @@ -6180,7 +6180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2807, "fields": { "spell": "comprehend-wild-shape", @@ -6192,7 +6192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2809, "fields": { "spell": "comprehend-wild-shape", @@ -6204,7 +6204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2810, "fields": { "spell": "comprehend-wild-shape", @@ -6216,7 +6216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2811, "fields": { "spell": "comprehend-wild-shape", @@ -6228,7 +6228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2812, "fields": { "spell": "comprehend-wild-shape", @@ -6240,7 +6240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2813, "fields": { "spell": "comprehend-wild-shape", @@ -6252,7 +6252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2814, "fields": { "spell": "comprehend-wild-shape", @@ -6264,7 +6264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2815, "fields": { "spell": "comprehend-wild-shape", @@ -6276,7 +6276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2816, "fields": { "spell": "confound-senses", @@ -6288,7 +6288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2817, "fields": { "spell": "conjure-fey-hound", @@ -6300,7 +6300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2819, "fields": { "spell": "conjure-fey-hound", @@ -6312,7 +6312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2820, "fields": { "spell": "conjure-fey-hound", @@ -6324,7 +6324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2821, "fields": { "spell": "conjure-fey-hound", @@ -6336,7 +6336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2822, "fields": { "spell": "conjure-fey-hound", @@ -6348,7 +6348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2823, "fields": { "spell": "conjure-forest-defender", @@ -6360,7 +6360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2825, "fields": { "spell": "conjure-forest-defender", @@ -6372,7 +6372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2826, "fields": { "spell": "conjure-forest-defender", @@ -6384,7 +6384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2827, "fields": { "spell": "conjure-forest-defender", @@ -6396,7 +6396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2828, "fields": { "spell": "conjure-greater-spectral-dead", @@ -6408,7 +6408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2830, "fields": { "spell": "conjure-greater-spectral-dead", @@ -6420,7 +6420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2831, "fields": { "spell": "conjure-greater-spectral-dead", @@ -6432,7 +6432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2832, "fields": { "spell": "conjure-minor-voidborn", @@ -6444,7 +6444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2834, "fields": { "spell": "conjure-minor-voidborn", @@ -6456,7 +6456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2835, "fields": { "spell": "conjure-minor-voidborn", @@ -6468,7 +6468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2836, "fields": { "spell": "conjure-minor-voidborn", @@ -6480,7 +6480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2837, "fields": { "spell": "conjure-minor-voidborn", @@ -6492,7 +6492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2838, "fields": { "spell": "conjure-scarab-swarm", @@ -6504,7 +6504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2839, "fields": { "spell": "conjure-shadow-titan", @@ -6516,7 +6516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2840, "fields": { "spell": "conjure-spectral-dead", @@ -6528,7 +6528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2842, "fields": { "spell": "conjure-spectral-dead", @@ -6540,7 +6540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2843, "fields": { "spell": "conjure-spectral-dead", @@ -6552,7 +6552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2844, "fields": { "spell": "conjure-spectral-dead", @@ -6564,7 +6564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2845, "fields": { "spell": "conjure-spectral-dead", @@ -6576,7 +6576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2846, "fields": { "spell": "conjure-spectral-dead", @@ -6588,7 +6588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2847, "fields": { "spell": "conjure-spectral-dead", @@ -6600,7 +6600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2848, "fields": { "spell": "conjure-spectral-dead", @@ -6612,7 +6612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2849, "fields": { "spell": "conjure-undead", @@ -6624,7 +6624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2851, "fields": { "spell": "conjure-undead", @@ -6636,7 +6636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2852, "fields": { "spell": "conjure-undead", @@ -6648,7 +6648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2853, "fields": { "spell": "conjure-undead", @@ -6660,7 +6660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2854, "fields": { "spell": "conjure-undead", @@ -6672,7 +6672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2855, "fields": { "spell": "conjure-undead", @@ -6684,7 +6684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2856, "fields": { "spell": "conjure-undead", @@ -6696,7 +6696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2857, "fields": { "spell": "conjure-voidborn", @@ -6708,7 +6708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2859, "fields": { "spell": "conjure-voidborn", @@ -6720,7 +6720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2860, "fields": { "spell": "conjure-voidborn", @@ -6732,7 +6732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2861, "fields": { "spell": "consult-the-storm", @@ -6744,7 +6744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2863, "fields": { "spell": "consult-the-storm", @@ -6756,7 +6756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2864, "fields": { "spell": "consult-the-storm", @@ -6768,7 +6768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2865, "fields": { "spell": "consult-the-storm", @@ -6780,7 +6780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2866, "fields": { "spell": "consult-the-storm", @@ -6792,7 +6792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2867, "fields": { "spell": "consult-the-storm", @@ -6804,7 +6804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2868, "fields": { "spell": "converse-with-dragon", @@ -6816,7 +6816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2869, "fields": { "spell": "costly-victory", @@ -6828,7 +6828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2870, "fields": { "spell": "create-ring-servant", @@ -6840,7 +6840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2871, "fields": { "spell": "create-thunderstaff", @@ -6852,7 +6852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2872, "fields": { "spell": "creeping-ice", @@ -6864,7 +6864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2874, "fields": { "spell": "creeping-ice", @@ -6876,7 +6876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2875, "fields": { "spell": "creeping-ice", @@ -6888,7 +6888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2876, "fields": { "spell": "creeping-ice", @@ -6900,7 +6900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2877, "fields": { "spell": "creeping-ice", @@ -6912,7 +6912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2878, "fields": { "spell": "creeping-ice", @@ -6924,7 +6924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2879, "fields": { "spell": "creeping-ice", @@ -6936,7 +6936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2880, "fields": { "spell": "creeping-ice", @@ -6948,7 +6948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2881, "fields": { "spell": "crushing-curse", @@ -6960,7 +6960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2882, "fields": { "spell": "crushing-curse", @@ -6972,7 +6972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2883, "fields": { "spell": "crushing-curse", @@ -6984,7 +6984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2884, "fields": { "spell": "crushing-curse", @@ -6996,7 +6996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2885, "fields": { "spell": "crushing-curse", @@ -7008,7 +7008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2886, "fields": { "spell": "crushing-curse", @@ -7020,7 +7020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2887, "fields": { "spell": "crushing-curse", @@ -7032,7 +7032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2888, "fields": { "spell": "crushing-curse", @@ -7044,7 +7044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2889, "fields": { "spell": "crushing-curse", @@ -7056,7 +7056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2890, "fields": { "spell": "crushing-curse", @@ -7068,7 +7068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2891, "fields": { "spell": "crushing-curse", @@ -7080,7 +7080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2892, "fields": { "spell": "crushing-curse", @@ -7092,7 +7092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2893, "fields": { "spell": "crushing-curse", @@ -7104,7 +7104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2894, "fields": { "spell": "crushing-curse", @@ -7116,7 +7116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2895, "fields": { "spell": "crushing-curse", @@ -7128,7 +7128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2896, "fields": { "spell": "crushing-curse", @@ -7140,7 +7140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2897, "fields": { "spell": "crushing-curse", @@ -7152,7 +7152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2898, "fields": { "spell": "crushing-curse", @@ -7164,7 +7164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2899, "fields": { "spell": "crushing-curse", @@ -7176,7 +7176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2900, "fields": { "spell": "crushing-curse", @@ -7188,7 +7188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2901, "fields": { "spell": "crushing-curse", @@ -7200,7 +7200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2902, "fields": { "spell": "crushing-trample", @@ -7212,7 +7212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2903, "fields": { "spell": "cure-beast", @@ -7224,7 +7224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2905, "fields": { "spell": "cure-beast", @@ -7236,7 +7236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2906, "fields": { "spell": "cure-beast", @@ -7248,7 +7248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2907, "fields": { "spell": "cure-beast", @@ -7260,7 +7260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2908, "fields": { "spell": "cure-beast", @@ -7272,7 +7272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2909, "fields": { "spell": "cure-beast", @@ -7284,7 +7284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2910, "fields": { "spell": "cure-beast", @@ -7296,7 +7296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2911, "fields": { "spell": "cure-beast", @@ -7308,7 +7308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2912, "fields": { "spell": "cure-beast", @@ -7320,7 +7320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2913, "fields": { "spell": "curse-of-boreas", @@ -7332,7 +7332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2914, "fields": { "spell": "curse-of-dust", @@ -7344,7 +7344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2915, "fields": { "spell": "curse-of-incompetence", @@ -7356,7 +7356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2916, "fields": { "spell": "curse-of-the-grave", @@ -7368,7 +7368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2917, "fields": { "spell": "curse-of-yig", @@ -7380,7 +7380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2918, "fields": { "spell": "curse-of-yig", @@ -7392,7 +7392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2919, "fields": { "spell": "curse-ring", @@ -7404,7 +7404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2920, "fields": { "spell": "cursed-gift", @@ -7416,7 +7416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2922, "fields": { "spell": "cursed-gift", @@ -7428,7 +7428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2923, "fields": { "spell": "cursed-gift", @@ -7440,7 +7440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2924, "fields": { "spell": "cursed-gift", @@ -7452,7 +7452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2925, "fields": { "spell": "cursed-gift", @@ -7464,7 +7464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2926, "fields": { "spell": "cursed-gift", @@ -7476,7 +7476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2927, "fields": { "spell": "cynophobia", @@ -7488,7 +7488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2929, "fields": { "spell": "cynophobia", @@ -7500,7 +7500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2930, "fields": { "spell": "cynophobia", @@ -7512,7 +7512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2931, "fields": { "spell": "cynophobia", @@ -7524,7 +7524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2932, "fields": { "spell": "cynophobia", @@ -7536,7 +7536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2933, "fields": { "spell": "cynophobia", @@ -7548,7 +7548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2934, "fields": { "spell": "cynophobia", @@ -7560,7 +7560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2935, "fields": { "spell": "daggerhawk", @@ -7572,7 +7572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2936, "fields": { "spell": "dark-dementing", @@ -7584,7 +7584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2937, "fields": { "spell": "dark-heraldry", @@ -7596,7 +7596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2939, "fields": { "spell": "dark-heraldry", @@ -7608,7 +7608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2940, "fields": { "spell": "dark-heraldry", @@ -7620,7 +7620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2941, "fields": { "spell": "dark-heraldry", @@ -7632,7 +7632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2942, "fields": { "spell": "dark-heraldry", @@ -7644,7 +7644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2943, "fields": { "spell": "dark-heraldry", @@ -7656,7 +7656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2944, "fields": { "spell": "dark-heraldry", @@ -7668,7 +7668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2945, "fields": { "spell": "dark-maw", @@ -7680,7 +7680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2946, "fields": { "spell": "dark-maw", @@ -7692,7 +7692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2947, "fields": { "spell": "dark-maw", @@ -7704,7 +7704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2948, "fields": { "spell": "dark-maw", @@ -7716,7 +7716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2949, "fields": { "spell": "dark-maw", @@ -7728,7 +7728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2950, "fields": { "spell": "dark-maw", @@ -7740,7 +7740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2951, "fields": { "spell": "dark-maw", @@ -7752,7 +7752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2952, "fields": { "spell": "dark-maw", @@ -7764,7 +7764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2953, "fields": { "spell": "dark-maw", @@ -7776,7 +7776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2954, "fields": { "spell": "dark-maw", @@ -7788,7 +7788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2955, "fields": { "spell": "dark-maw", @@ -7800,7 +7800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2956, "fields": { "spell": "dark-maw", @@ -7812,7 +7812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2957, "fields": { "spell": "dark-maw", @@ -7824,7 +7824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2958, "fields": { "spell": "dark-maw", @@ -7836,7 +7836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2959, "fields": { "spell": "dark-maw", @@ -7848,7 +7848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2960, "fields": { "spell": "dark-maw", @@ -7860,7 +7860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2961, "fields": { "spell": "dark-maw", @@ -7872,7 +7872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2962, "fields": { "spell": "dark-maw", @@ -7884,7 +7884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2963, "fields": { "spell": "dark-maw", @@ -7896,7 +7896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2964, "fields": { "spell": "dark-maw", @@ -7908,7 +7908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2965, "fields": { "spell": "dark-maw", @@ -7920,7 +7920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2966, "fields": { "spell": "dark-path", @@ -7932,7 +7932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2967, "fields": { "spell": "darkbolt", @@ -7944,7 +7944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2969, "fields": { "spell": "darkbolt", @@ -7956,7 +7956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2970, "fields": { "spell": "darkbolt", @@ -7968,7 +7968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2971, "fields": { "spell": "darkbolt", @@ -7980,7 +7980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2972, "fields": { "spell": "darkbolt", @@ -7992,7 +7992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2973, "fields": { "spell": "darkbolt", @@ -8004,7 +8004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2974, "fields": { "spell": "darkbolt", @@ -8016,7 +8016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2975, "fields": { "spell": "darkbolt", @@ -8028,7 +8028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2976, "fields": { "spell": "dead-walking", @@ -8040,7 +8040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2978, "fields": { "spell": "dead-walking", @@ -8052,7 +8052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2979, "fields": { "spell": "dead-walking", @@ -8064,7 +8064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2980, "fields": { "spell": "dead-walking", @@ -8076,7 +8076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2981, "fields": { "spell": "dead-walking", @@ -8088,7 +8088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2982, "fields": { "spell": "dead-walking", @@ -8100,7 +8100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2983, "fields": { "spell": "dead-walking", @@ -8112,7 +8112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2984, "fields": { "spell": "dead-walking", @@ -8124,7 +8124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2985, "fields": { "spell": "deadly-sting", @@ -8136,7 +8136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2986, "fields": { "spell": "death-gods-touch", @@ -8148,7 +8148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2988, "fields": { "spell": "death-gods-touch", @@ -8160,7 +8160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2989, "fields": { "spell": "death-gods-touch", @@ -8172,7 +8172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2990, "fields": { "spell": "decay", @@ -8184,7 +8184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2991, "fields": { "spell": "decay", @@ -8196,7 +8196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2992, "fields": { "spell": "decay", @@ -8208,7 +8208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2993, "fields": { "spell": "decay", @@ -8220,7 +8220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2994, "fields": { "spell": "decay", @@ -8232,7 +8232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2995, "fields": { "spell": "decay", @@ -8244,7 +8244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2996, "fields": { "spell": "decay", @@ -8256,7 +8256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2997, "fields": { "spell": "decay", @@ -8268,7 +8268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2998, "fields": { "spell": "decay", @@ -8280,7 +8280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 2999, "fields": { "spell": "decay", @@ -8292,7 +8292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3000, "fields": { "spell": "decay", @@ -8304,7 +8304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3001, "fields": { "spell": "decay", @@ -8316,7 +8316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3002, "fields": { "spell": "decay", @@ -8328,7 +8328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3003, "fields": { "spell": "decay", @@ -8340,7 +8340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3004, "fields": { "spell": "decay", @@ -8352,7 +8352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3005, "fields": { "spell": "decay", @@ -8364,7 +8364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3006, "fields": { "spell": "decay", @@ -8376,7 +8376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3007, "fields": { "spell": "decay", @@ -8388,7 +8388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3008, "fields": { "spell": "decay", @@ -8400,7 +8400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3009, "fields": { "spell": "decay", @@ -8412,7 +8412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3010, "fields": { "spell": "decay", @@ -8424,7 +8424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3011, "fields": { "spell": "decelerate", @@ -8436,7 +8436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3013, "fields": { "spell": "decelerate", @@ -8448,7 +8448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3014, "fields": { "spell": "decelerate", @@ -8460,7 +8460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3015, "fields": { "spell": "decelerate", @@ -8472,7 +8472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3016, "fields": { "spell": "decelerate", @@ -8484,7 +8484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3017, "fields": { "spell": "decelerate", @@ -8496,7 +8496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3018, "fields": { "spell": "decelerate", @@ -8508,7 +8508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3019, "fields": { "spell": "decelerate", @@ -8520,7 +8520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3020, "fields": { "spell": "deep-breath", @@ -8532,7 +8532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3022, "fields": { "spell": "deep-breath", @@ -8544,7 +8544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3023, "fields": { "spell": "deep-breath", @@ -8556,7 +8556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3024, "fields": { "spell": "deep-breath", @@ -8568,7 +8568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3025, "fields": { "spell": "deep-breath", @@ -8580,7 +8580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3026, "fields": { "spell": "deep-breath", @@ -8592,7 +8592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3027, "fields": { "spell": "deep-breath", @@ -8604,7 +8604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3028, "fields": { "spell": "deep-breath", @@ -8616,7 +8616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3029, "fields": { "spell": "deep-breath", @@ -8628,7 +8628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3030, "fields": { "spell": "defile-healing", @@ -8640,7 +8640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3032, "fields": { "spell": "defile-healing", @@ -8652,7 +8652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3033, "fields": { "spell": "defile-healing", @@ -8664,7 +8664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3034, "fields": { "spell": "delay-potion", @@ -8676,7 +8676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3035, "fields": { "spell": "delayed-healing", @@ -8688,7 +8688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3037, "fields": { "spell": "delayed-healing", @@ -8700,7 +8700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3038, "fields": { "spell": "delayed-healing", @@ -8712,7 +8712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3039, "fields": { "spell": "delayed-healing", @@ -8724,7 +8724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3040, "fields": { "spell": "delayed-healing", @@ -8736,7 +8736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3041, "fields": { "spell": "delayed-healing", @@ -8748,7 +8748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3042, "fields": { "spell": "delayed-healing", @@ -8760,7 +8760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3043, "fields": { "spell": "demon-within", @@ -8772,7 +8772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3044, "fields": { "spell": "desiccating-breath", @@ -8784,7 +8784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3045, "fields": { "spell": "desolation", @@ -8796,7 +8796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3046, "fields": { "spell": "desolation", @@ -8808,7 +8808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3047, "fields": { "spell": "destructive-resonance", @@ -8820,7 +8820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3049, "fields": { "spell": "destructive-resonance", @@ -8832,7 +8832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3050, "fields": { "spell": "destructive-resonance", @@ -8844,7 +8844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3051, "fields": { "spell": "destructive-resonance", @@ -8856,7 +8856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3052, "fields": { "spell": "destructive-resonance", @@ -8868,7 +8868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3053, "fields": { "spell": "destructive-resonance", @@ -8880,7 +8880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3054, "fields": { "spell": "destructive-resonance", @@ -8892,7 +8892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3055, "fields": { "spell": "destructive-resonance", @@ -8904,7 +8904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3056, "fields": { "spell": "detect-dragons", @@ -8916,7 +8916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3057, "fields": { "spell": "devas-wings", @@ -8928,7 +8928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3059, "fields": { "spell": "devas-wings", @@ -8940,7 +8940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3060, "fields": { "spell": "devas-wings", @@ -8952,7 +8952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3061, "fields": { "spell": "devas-wings", @@ -8964,7 +8964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3062, "fields": { "spell": "devas-wings", @@ -8976,7 +8976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3063, "fields": { "spell": "devas-wings", @@ -8988,7 +8988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3064, "fields": { "spell": "dimensional-shove", @@ -9000,7 +9000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3066, "fields": { "spell": "dimensional-shove", @@ -9012,7 +9012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3067, "fields": { "spell": "dimensional-shove", @@ -9024,7 +9024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3068, "fields": { "spell": "dimensional-shove", @@ -9036,7 +9036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3069, "fields": { "spell": "dimensional-shove", @@ -9048,7 +9048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3070, "fields": { "spell": "dimensional-shove", @@ -9060,7 +9060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3071, "fields": { "spell": "dimensional-shove", @@ -9072,7 +9072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3072, "fields": { "spell": "disquieting-gaze", @@ -9084,7 +9084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3073, "fields": { "spell": "disruptive-aura", @@ -9096,7 +9096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3075, "fields": { "spell": "disruptive-aura", @@ -9108,7 +9108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3076, "fields": { "spell": "distracting-divination", @@ -9120,7 +9120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3077, "fields": { "spell": "distraction-cascade", @@ -9132,7 +9132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3078, "fields": { "spell": "doom-of-blue-crystal", @@ -9144,7 +9144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3079, "fields": { "spell": "doom-of-consuming-fire", @@ -9156,7 +9156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3081, "fields": { "spell": "doom-of-consuming-fire", @@ -9168,7 +9168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3082, "fields": { "spell": "doom-of-consuming-fire", @@ -9180,7 +9180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3083, "fields": { "spell": "doom-of-consuming-fire", @@ -9192,7 +9192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3084, "fields": { "spell": "doom-of-consuming-fire", @@ -9204,7 +9204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3085, "fields": { "spell": "doom-of-consuming-fire", @@ -9216,7 +9216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3086, "fields": { "spell": "doom-of-consuming-fire", @@ -9228,7 +9228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3087, "fields": { "spell": "doom-of-consuming-fire", @@ -9240,7 +9240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3088, "fields": { "spell": "doom-of-dancing-blades", @@ -9252,7 +9252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3089, "fields": { "spell": "doom-of-disenchantment", @@ -9264,7 +9264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3090, "fields": { "spell": "doom-of-serpent-coils", @@ -9276,7 +9276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3091, "fields": { "spell": "doom-of-the-cracked-shield", @@ -9288,7 +9288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3092, "fields": { "spell": "doom-of-the-earthen-maw", @@ -9300,7 +9300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3093, "fields": { "spell": "doom-of-the-slippery-rogue", @@ -9312,7 +9312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3094, "fields": { "spell": "douse-light", @@ -9324,7 +9324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3095, "fields": { "spell": "draconic-smite", @@ -9336,7 +9336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3097, "fields": { "spell": "draconic-smite", @@ -9348,7 +9348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3098, "fields": { "spell": "draconic-smite", @@ -9360,7 +9360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3099, "fields": { "spell": "draconic-smite", @@ -9372,7 +9372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3100, "fields": { "spell": "draconic-smite", @@ -9384,7 +9384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3101, "fields": { "spell": "draconic-smite", @@ -9396,7 +9396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3102, "fields": { "spell": "draconic-smite", @@ -9408,7 +9408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3103, "fields": { "spell": "draconic-smite", @@ -9420,7 +9420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3104, "fields": { "spell": "draconic-smite", @@ -9432,7 +9432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3105, "fields": { "spell": "dragon-breath", @@ -9444,7 +9444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3107, "fields": { "spell": "dragon-breath", @@ -9456,7 +9456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3108, "fields": { "spell": "dragon-breath", @@ -9468,7 +9468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3109, "fields": { "spell": "dragon-breath", @@ -9480,7 +9480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3110, "fields": { "spell": "dragon-breath", @@ -9492,7 +9492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3111, "fields": { "spell": "dragon-roar", @@ -9504,7 +9504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3112, "fields": { "spell": "dragon-roar", @@ -9516,7 +9516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3113, "fields": { "spell": "dragon-roar", @@ -9528,7 +9528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3114, "fields": { "spell": "dragon-roar", @@ -9540,7 +9540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3115, "fields": { "spell": "dragon-roar", @@ -9552,7 +9552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3116, "fields": { "spell": "dragon-roar", @@ -9564,7 +9564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3117, "fields": { "spell": "dragon-roar", @@ -9576,7 +9576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3118, "fields": { "spell": "dragon-roar", @@ -9588,7 +9588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3119, "fields": { "spell": "dragon-roar", @@ -9600,7 +9600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3120, "fields": { "spell": "dragon-roar", @@ -9612,7 +9612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3121, "fields": { "spell": "dragon-roar", @@ -9624,7 +9624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3122, "fields": { "spell": "dragon-roar", @@ -9636,7 +9636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3123, "fields": { "spell": "dragon-roar", @@ -9648,7 +9648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3124, "fields": { "spell": "dragon-roar", @@ -9660,7 +9660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3125, "fields": { "spell": "dragon-roar", @@ -9672,7 +9672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3126, "fields": { "spell": "dragon-roar", @@ -9684,7 +9684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3127, "fields": { "spell": "dragon-roar", @@ -9696,7 +9696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3128, "fields": { "spell": "dragon-roar", @@ -9708,7 +9708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3129, "fields": { "spell": "dragon-roar", @@ -9720,7 +9720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3130, "fields": { "spell": "dragon-roar", @@ -9732,7 +9732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3131, "fields": { "spell": "dragon-roar", @@ -9744,7 +9744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3132, "fields": { "spell": "drown", @@ -9756,7 +9756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3134, "fields": { "spell": "drown", @@ -9768,7 +9768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3135, "fields": { "spell": "drown", @@ -9780,7 +9780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3136, "fields": { "spell": "drown", @@ -9792,7 +9792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3137, "fields": { "spell": "drown", @@ -9804,7 +9804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3138, "fields": { "spell": "drown", @@ -9816,7 +9816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3139, "fields": { "spell": "drown", @@ -9828,7 +9828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3140, "fields": { "spell": "dryads-kiss", @@ -9840,7 +9840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3142, "fields": { "spell": "dryads-kiss", @@ -9852,7 +9852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3143, "fields": { "spell": "dryads-kiss", @@ -9864,7 +9864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3144, "fields": { "spell": "dryads-kiss", @@ -9876,7 +9876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3145, "fields": { "spell": "dryads-kiss", @@ -9888,7 +9888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3146, "fields": { "spell": "dryads-kiss", @@ -9900,7 +9900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3147, "fields": { "spell": "dryads-kiss", @@ -9912,7 +9912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3148, "fields": { "spell": "earthskimmer", @@ -9924,7 +9924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3149, "fields": { "spell": "earworm-melody", @@ -9936,7 +9936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3151, "fields": { "spell": "earworm-melody", @@ -9948,7 +9948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3152, "fields": { "spell": "earworm-melody", @@ -9960,7 +9960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3153, "fields": { "spell": "earworm-melody", @@ -9972,7 +9972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3154, "fields": { "spell": "earworm-melody", @@ -9984,7 +9984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3155, "fields": { "spell": "earworm-melody", @@ -9996,7 +9996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3156, "fields": { "spell": "earworm-melody", @@ -10008,7 +10008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3157, "fields": { "spell": "earworm-melody", @@ -10020,7 +10020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3158, "fields": { "spell": "earworm-melody", @@ -10032,7 +10032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3159, "fields": { "spell": "echoes-of-steel", @@ -10044,7 +10044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3160, "fields": { "spell": "ectoplasm", @@ -10056,7 +10056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3162, "fields": { "spell": "ectoplasm", @@ -10068,7 +10068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3163, "fields": { "spell": "ectoplasm", @@ -10080,7 +10080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3164, "fields": { "spell": "ectoplasm", @@ -10092,7 +10092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3165, "fields": { "spell": "ectoplasm", @@ -10104,7 +10104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3166, "fields": { "spell": "ectoplasm", @@ -10116,7 +10116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3167, "fields": { "spell": "ectoplasm", @@ -10128,7 +10128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3168, "fields": { "spell": "ectoplasm", @@ -10140,7 +10140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3169, "fields": { "spell": "eidetic-memory", @@ -10152,7 +10152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3170, "fields": { "spell": "eidetic-memory", @@ -10164,7 +10164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3171, "fields": { "spell": "eldritch-communion", @@ -10176,7 +10176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3172, "fields": { "spell": "eldritch-communion", @@ -10188,7 +10188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3173, "fields": { "spell": "elemental-horns", @@ -10200,7 +10200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3175, "fields": { "spell": "elemental-horns", @@ -10212,7 +10212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3176, "fields": { "spell": "elemental-horns", @@ -10224,7 +10224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3177, "fields": { "spell": "elemental-horns", @@ -10236,7 +10236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3178, "fields": { "spell": "elemental-horns", @@ -10248,7 +10248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3179, "fields": { "spell": "elemental-horns", @@ -10260,7 +10260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3180, "fields": { "spell": "elemental-horns", @@ -10272,7 +10272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3181, "fields": { "spell": "elemental-horns", @@ -10284,7 +10284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3182, "fields": { "spell": "elemental-twist", @@ -10296,7 +10296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3183, "fields": { "spell": "emanation-of-yoth", @@ -10308,7 +10308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3184, "fields": { "spell": "emanation-of-yoth", @@ -10320,7 +10320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3186, "fields": { "spell": "emanation-of-yoth", @@ -10332,7 +10332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3187, "fields": { "spell": "emanation-of-yoth", @@ -10344,7 +10344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3188, "fields": { "spell": "emanation-of-yoth", @@ -10356,7 +10356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3189, "fields": { "spell": "emanation-of-yoth", @@ -10368,7 +10368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3190, "fields": { "spell": "emanation-of-yoth", @@ -10380,7 +10380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3191, "fields": { "spell": "enchant-ring", @@ -10392,7 +10392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3192, "fields": { "spell": "encroaching-shadows", @@ -10404,7 +10404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3193, "fields": { "spell": "encroaching-shadows", @@ -10416,7 +10416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3195, "fields": { "spell": "encroaching-shadows", @@ -10428,7 +10428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3196, "fields": { "spell": "encroaching-shadows", @@ -10440,7 +10440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3197, "fields": { "spell": "encroaching-shadows", @@ -10452,7 +10452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3198, "fields": { "spell": "encrypt-decrypt", @@ -10464,7 +10464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3199, "fields": { "spell": "endow-attribute", @@ -10476,7 +10476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3201, "fields": { "spell": "endow-attribute", @@ -10488,7 +10488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3202, "fields": { "spell": "endow-attribute", @@ -10500,7 +10500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3203, "fields": { "spell": "endow-attribute", @@ -10512,7 +10512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3204, "fields": { "spell": "endow-attribute", @@ -10524,7 +10524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3205, "fields": { "spell": "endow-attribute", @@ -10536,7 +10536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3206, "fields": { "spell": "energy-absorption", @@ -10548,7 +10548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3207, "fields": { "spell": "energy-foreknowledge", @@ -10560,7 +10560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3209, "fields": { "spell": "energy-foreknowledge", @@ -10572,7 +10572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3210, "fields": { "spell": "energy-foreknowledge", @@ -10584,7 +10584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3211, "fields": { "spell": "energy-foreknowledge", @@ -10596,7 +10596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3212, "fields": { "spell": "energy-foreknowledge", @@ -10608,7 +10608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3213, "fields": { "spell": "energy-foreknowledge", @@ -10620,7 +10620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3214, "fields": { "spell": "enhance-greed", @@ -10632,7 +10632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3216, "fields": { "spell": "enhance-greed", @@ -10644,7 +10644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3217, "fields": { "spell": "enhance-greed", @@ -10656,7 +10656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3218, "fields": { "spell": "enhance-greed", @@ -10668,7 +10668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3219, "fields": { "spell": "enhance-greed", @@ -10680,7 +10680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3220, "fields": { "spell": "enhance-greed", @@ -10692,7 +10692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3221, "fields": { "spell": "enhance-greed", @@ -10704,7 +10704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3222, "fields": { "spell": "enhance-greed", @@ -10716,7 +10716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3223, "fields": { "spell": "entomb", @@ -10728,7 +10728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3224, "fields": { "spell": "entropic-damage-field", @@ -10740,7 +10740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3225, "fields": { "spell": "essence-instability", @@ -10752,7 +10752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3227, "fields": { "spell": "essence-instability", @@ -10764,7 +10764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3228, "fields": { "spell": "essence-instability", @@ -10776,7 +10776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3229, "fields": { "spell": "essence-instability", @@ -10788,7 +10788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3230, "fields": { "spell": "essence-instability", @@ -10800,7 +10800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3231, "fields": { "spell": "evercold", @@ -10812,7 +10812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3232, "fields": { "spell": "exsanguinate", @@ -10824,7 +10824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3234, "fields": { "spell": "exsanguinate", @@ -10836,7 +10836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3235, "fields": { "spell": "exsanguinate", @@ -10848,7 +10848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3236, "fields": { "spell": "exsanguinate", @@ -10860,7 +10860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3237, "fields": { "spell": "exsanguinate", @@ -10872,7 +10872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3238, "fields": { "spell": "exsanguinating-cloud", @@ -10884,7 +10884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3239, "fields": { "spell": "extract-knowledge", @@ -10896,7 +10896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3240, "fields": { "spell": "extract-knowledge", @@ -10908,7 +10908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3241, "fields": { "spell": "fault-line", @@ -10920,7 +10920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3242, "fields": { "spell": "feather-field", @@ -10932,7 +10932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3244, "fields": { "spell": "feather-field", @@ -10944,7 +10944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3245, "fields": { "spell": "feather-field", @@ -10956,7 +10956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3246, "fields": { "spell": "feather-field", @@ -10968,7 +10968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3247, "fields": { "spell": "feather-field", @@ -10980,7 +10980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3248, "fields": { "spell": "feather-field", @@ -10992,7 +10992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3249, "fields": { "spell": "feather-field", @@ -11004,7 +11004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3250, "fields": { "spell": "feather-field", @@ -11016,7 +11016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3251, "fields": { "spell": "feather-field", @@ -11028,7 +11028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3252, "fields": { "spell": "feather-travel", @@ -11040,7 +11040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3254, "fields": { "spell": "feather-travel", @@ -11052,7 +11052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3255, "fields": { "spell": "feather-travel", @@ -11064,7 +11064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3256, "fields": { "spell": "feather-travel", @@ -11076,7 +11076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3257, "fields": { "spell": "feather-travel", @@ -11088,7 +11088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3258, "fields": { "spell": "feather-travel", @@ -11100,7 +11100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3259, "fields": { "spell": "feather-travel", @@ -11112,7 +11112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3260, "fields": { "spell": "feather-travel", @@ -11124,7 +11124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3261, "fields": { "spell": "fey-crown", @@ -11136,7 +11136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3263, "fields": { "spell": "fey-crown", @@ -11148,7 +11148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3264, "fields": { "spell": "fey-crown", @@ -11160,7 +11160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3265, "fields": { "spell": "fey-crown", @@ -11172,7 +11172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3266, "fields": { "spell": "fey-crown", @@ -11184,7 +11184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3267, "fields": { "spell": "find-kin", @@ -11196,7 +11196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3268, "fields": { "spell": "find-kin", @@ -11208,7 +11208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3269, "fields": { "spell": "fire-darts", @@ -11220,7 +11220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3271, "fields": { "spell": "fire-darts", @@ -11232,7 +11232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3272, "fields": { "spell": "fire-darts", @@ -11244,7 +11244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3273, "fields": { "spell": "fire-darts", @@ -11256,7 +11256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3274, "fields": { "spell": "fire-darts", @@ -11268,7 +11268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3275, "fields": { "spell": "fire-darts", @@ -11280,7 +11280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3276, "fields": { "spell": "fire-darts", @@ -11292,7 +11292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3277, "fields": { "spell": "fire-darts", @@ -11304,7 +11304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3278, "fields": { "spell": "fire-under-the-tongue", @@ -11316,7 +11316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3279, "fields": { "spell": "firewalk", @@ -11328,7 +11328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3281, "fields": { "spell": "firewalk", @@ -11340,7 +11340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3282, "fields": { "spell": "firewalk", @@ -11352,7 +11352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3283, "fields": { "spell": "firewalk", @@ -11364,7 +11364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3284, "fields": { "spell": "fist-of-iron", @@ -11376,7 +11376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3285, "fields": { "spell": "flame-wave", @@ -11388,7 +11388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3287, "fields": { "spell": "flame-wave", @@ -11400,7 +11400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3288, "fields": { "spell": "flame-wave", @@ -11412,7 +11412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3289, "fields": { "spell": "flame-wave", @@ -11424,7 +11424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3290, "fields": { "spell": "flame-wave", @@ -11436,7 +11436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3291, "fields": { "spell": "flame-wave", @@ -11448,7 +11448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3292, "fields": { "spell": "flesh-to-paper", @@ -11460,7 +11460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3294, "fields": { "spell": "flesh-to-paper", @@ -11472,7 +11472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3295, "fields": { "spell": "flesh-to-paper", @@ -11484,7 +11484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3296, "fields": { "spell": "flesh-to-paper", @@ -11496,7 +11496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3297, "fields": { "spell": "flesh-to-paper", @@ -11508,7 +11508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3298, "fields": { "spell": "flesh-to-paper", @@ -11520,7 +11520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3299, "fields": { "spell": "flesh-to-paper", @@ -11532,7 +11532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3300, "fields": { "spell": "flickering-fate", @@ -11544,7 +11544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3301, "fields": { "spell": "fluctuating-alignment", @@ -11556,7 +11556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3302, "fields": { "spell": "flurry", @@ -11568,7 +11568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3303, "fields": { "spell": "forest-native", @@ -11580,7 +11580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3304, "fields": { "spell": "forest-sanctuary", @@ -11592,7 +11592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3305, "fields": { "spell": "foretell-distraction", @@ -11604,7 +11604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3306, "fields": { "spell": "form-of-the-gods", @@ -11616,7 +11616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3307, "fields": { "spell": "freeze-blood", @@ -11628,7 +11628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3308, "fields": { "spell": "freeze-potion", @@ -11640,7 +11640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3310, "fields": { "spell": "freeze-potion", @@ -11652,7 +11652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3311, "fields": { "spell": "freeze-potion", @@ -11664,7 +11664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3312, "fields": { "spell": "freeze-potion", @@ -11676,7 +11676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3313, "fields": { "spell": "freeze-potion", @@ -11688,7 +11688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3314, "fields": { "spell": "freeze-potion", @@ -11700,7 +11700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3315, "fields": { "spell": "freeze-potion", @@ -11712,7 +11712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3316, "fields": { "spell": "freeze-potion", @@ -11724,7 +11724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3317, "fields": { "spell": "freeze-potion", @@ -11736,7 +11736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3318, "fields": { "spell": "freezing-fog", @@ -11748,7 +11748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3320, "fields": { "spell": "freezing-fog", @@ -11760,7 +11760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3321, "fields": { "spell": "freezing-fog", @@ -11772,7 +11772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3322, "fields": { "spell": "freezing-fog", @@ -11784,7 +11784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3323, "fields": { "spell": "freezing-fog", @@ -11796,7 +11796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3324, "fields": { "spell": "freezing-fog", @@ -11808,7 +11808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3325, "fields": { "spell": "freezing-fog", @@ -11820,7 +11820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3326, "fields": { "spell": "frenzied-bolt", @@ -11832,7 +11832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3328, "fields": { "spell": "frenzied-bolt", @@ -11844,7 +11844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3329, "fields": { "spell": "frenzied-bolt", @@ -11856,7 +11856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3330, "fields": { "spell": "frenzied-bolt", @@ -11868,7 +11868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3331, "fields": { "spell": "frenzied-bolt", @@ -11880,7 +11880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3332, "fields": { "spell": "frenzied-bolt", @@ -11892,7 +11892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3333, "fields": { "spell": "frenzied-bolt", @@ -11904,7 +11904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3334, "fields": { "spell": "frenzied-bolt", @@ -11916,7 +11916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3335, "fields": { "spell": "frostbite", @@ -11928,7 +11928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3337, "fields": { "spell": "frostbite", @@ -11940,7 +11940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3338, "fields": { "spell": "frostbite", @@ -11952,7 +11952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3339, "fields": { "spell": "frostbite", @@ -11964,7 +11964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3340, "fields": { "spell": "frostbite", @@ -11976,7 +11976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3341, "fields": { "spell": "frostbitten-fingers", @@ -11988,7 +11988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3342, "fields": { "spell": "frozen-razors", @@ -12000,7 +12000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3344, "fields": { "spell": "frozen-razors", @@ -12012,7 +12012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3345, "fields": { "spell": "frozen-razors", @@ -12024,7 +12024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3346, "fields": { "spell": "frozen-razors", @@ -12036,7 +12036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3347, "fields": { "spell": "frozen-razors", @@ -12048,7 +12048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3348, "fields": { "spell": "frozen-razors", @@ -12060,7 +12060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3349, "fields": { "spell": "frozen-razors", @@ -12072,7 +12072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3350, "fields": { "spell": "furious-hooves", @@ -12084,7 +12084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3351, "fields": { "spell": "fusillade-of-ice", @@ -12096,7 +12096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3353, "fields": { "spell": "fusillade-of-ice", @@ -12108,7 +12108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3354, "fields": { "spell": "fusillade-of-ice", @@ -12120,7 +12120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3355, "fields": { "spell": "fusillade-of-ice", @@ -12132,7 +12132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3356, "fields": { "spell": "fusillade-of-ice", @@ -12144,7 +12144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3357, "fields": { "spell": "fusillade-of-ice", @@ -12156,7 +12156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3358, "fields": { "spell": "gear-barrage", @@ -12168,7 +12168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3359, "fields": { "spell": "ghoul-kings-cloak", @@ -12180,7 +12180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3361, "fields": { "spell": "ghoul-kings-cloak", @@ -12192,7 +12192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3362, "fields": { "spell": "gird-the-spirit", @@ -12204,7 +12204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3363, "fields": { "spell": "glacial-cascade", @@ -12216,7 +12216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3364, "fields": { "spell": "glacial-fog", @@ -12228,7 +12228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3366, "fields": { "spell": "glacial-fog", @@ -12240,7 +12240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3367, "fields": { "spell": "glacial-fog", @@ -12252,7 +12252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3368, "fields": { "spell": "gliding-step", @@ -12264,7 +12264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3370, "fields": { "spell": "gliding-step", @@ -12276,7 +12276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3371, "fields": { "spell": "gliding-step", @@ -12288,7 +12288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3372, "fields": { "spell": "gliding-step", @@ -12300,7 +12300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3373, "fields": { "spell": "gliding-step", @@ -12312,7 +12312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3374, "fields": { "spell": "gliding-step", @@ -12324,7 +12324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3375, "fields": { "spell": "gliding-step", @@ -12336,7 +12336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3376, "fields": { "spell": "gliding-step", @@ -12348,7 +12348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3377, "fields": { "spell": "gliding-step", @@ -12360,7 +12360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3378, "fields": { "spell": "glimpse-of-the-void", @@ -12372,7 +12372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3379, "fields": { "spell": "gloomwrought-barrier", @@ -12384,7 +12384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3380, "fields": { "spell": "gluey-globule", @@ -12396,7 +12396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3381, "fields": { "spell": "glyph-of-shifting", @@ -12408,7 +12408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3383, "fields": { "spell": "glyph-of-shifting", @@ -12420,7 +12420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3384, "fields": { "spell": "glyph-of-shifting", @@ -12432,7 +12432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3385, "fields": { "spell": "glyph-of-shifting", @@ -12444,7 +12444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3386, "fields": { "spell": "glyph-of-shifting", @@ -12456,7 +12456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3387, "fields": { "spell": "glyph-of-shifting", @@ -12468,7 +12468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3388, "fields": { "spell": "glyph-of-shifting", @@ -12480,7 +12480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3389, "fields": { "spell": "glyph-of-shifting", @@ -12492,7 +12492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3390, "fields": { "spell": "goats-hoof-charm", @@ -12504,7 +12504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3392, "fields": { "spell": "goats-hoof-charm", @@ -12516,7 +12516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3393, "fields": { "spell": "goats-hoof-charm", @@ -12528,7 +12528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3394, "fields": { "spell": "goats-hoof-charm", @@ -12540,7 +12540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3395, "fields": { "spell": "goats-hoof-charm", @@ -12552,7 +12552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3396, "fields": { "spell": "goats-hoof-charm", @@ -12564,7 +12564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3397, "fields": { "spell": "goats-hoof-charm", @@ -12576,7 +12576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3398, "fields": { "spell": "goats-hoof-charm", @@ -12588,7 +12588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3399, "fields": { "spell": "goats-hoof-charm", @@ -12600,7 +12600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3400, "fields": { "spell": "going-in-circles", @@ -12612,7 +12612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3401, "fields": { "spell": "gordolays-pleasant-aroma", @@ -12624,7 +12624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3402, "fields": { "spell": "grasp-of-the-tupilak", @@ -12636,7 +12636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3403, "fields": { "spell": "greater-maze", @@ -12648,7 +12648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3404, "fields": { "spell": "greater-seal-of-sanctuary", @@ -12660,7 +12660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3405, "fields": { "spell": "greater-seal-of-sanctuary", @@ -12672,7 +12672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3406, "fields": { "spell": "green-decay", @@ -12684,7 +12684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3407, "fields": { "spell": "green-decay", @@ -12696,7 +12696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3408, "fields": { "spell": "grudge-match", @@ -12708,7 +12708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3410, "fields": { "spell": "grudge-match", @@ -12720,7 +12720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3411, "fields": { "spell": "grudge-match", @@ -12732,7 +12732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3412, "fields": { "spell": "grudge-match", @@ -12744,7 +12744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3413, "fields": { "spell": "grudge-match", @@ -12756,7 +12756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3414, "fields": { "spell": "grudge-match", @@ -12768,7 +12768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3415, "fields": { "spell": "grudge-match", @@ -12780,7 +12780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3416, "fields": { "spell": "grudge-match", @@ -12792,7 +12792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3417, "fields": { "spell": "guest-of-honor", @@ -12804,7 +12804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3418, "fields": { "spell": "guest-of-honor", @@ -12816,7 +12816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3420, "fields": { "spell": "guest-of-honor", @@ -12828,7 +12828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3421, "fields": { "spell": "guest-of-honor", @@ -12840,7 +12840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3422, "fields": { "spell": "guest-of-honor", @@ -12852,7 +12852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3423, "fields": { "spell": "guest-of-honor", @@ -12864,7 +12864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3424, "fields": { "spell": "guest-of-honor", @@ -12876,7 +12876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3425, "fields": { "spell": "guest-of-honor", @@ -12888,7 +12888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3426, "fields": { "spell": "guest-of-honor", @@ -12900,7 +12900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3427, "fields": { "spell": "guest-of-honor", @@ -12912,7 +12912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3428, "fields": { "spell": "guiding-star", @@ -12924,7 +12924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3429, "fields": { "spell": "guiding-star", @@ -12936,7 +12936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3430, "fields": { "spell": "hamstring", @@ -12948,7 +12948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3431, "fields": { "spell": "hamstring", @@ -12960,7 +12960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3432, "fields": { "spell": "hamstring", @@ -12972,7 +12972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3433, "fields": { "spell": "hamstring", @@ -12984,7 +12984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3434, "fields": { "spell": "hamstring", @@ -12996,7 +12996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3435, "fields": { "spell": "hamstring", @@ -13008,7 +13008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3436, "fields": { "spell": "hamstring", @@ -13020,7 +13020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3437, "fields": { "spell": "hamstring", @@ -13032,7 +13032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3438, "fields": { "spell": "hamstring", @@ -13044,7 +13044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3439, "fields": { "spell": "hamstring", @@ -13056,7 +13056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3440, "fields": { "spell": "hamstring", @@ -13068,7 +13068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3441, "fields": { "spell": "hamstring", @@ -13080,7 +13080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3442, "fields": { "spell": "hamstring", @@ -13092,7 +13092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3443, "fields": { "spell": "hamstring", @@ -13104,7 +13104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3444, "fields": { "spell": "hamstring", @@ -13116,7 +13116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3445, "fields": { "spell": "hamstring", @@ -13128,7 +13128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3446, "fields": { "spell": "hamstring", @@ -13140,7 +13140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3447, "fields": { "spell": "hamstring", @@ -13152,7 +13152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3448, "fields": { "spell": "hamstring", @@ -13164,7 +13164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3449, "fields": { "spell": "hamstring", @@ -13176,7 +13176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3450, "fields": { "spell": "hamstring", @@ -13188,7 +13188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3451, "fields": { "spell": "hard-heart", @@ -13200,7 +13200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3453, "fields": { "spell": "hard-heart", @@ -13212,7 +13212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3454, "fields": { "spell": "hard-heart", @@ -13224,7 +13224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3455, "fields": { "spell": "hard-heart", @@ -13236,7 +13236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3456, "fields": { "spell": "hard-heart", @@ -13248,7 +13248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3457, "fields": { "spell": "hard-heart", @@ -13260,7 +13260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3458, "fields": { "spell": "hard-heart", @@ -13272,7 +13272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3459, "fields": { "spell": "hard-heart", @@ -13284,7 +13284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3460, "fields": { "spell": "hard-heart", @@ -13296,7 +13296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3461, "fields": { "spell": "harry", @@ -13308,7 +13308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3463, "fields": { "spell": "harry", @@ -13320,7 +13320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3464, "fields": { "spell": "harry", @@ -13332,7 +13332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3465, "fields": { "spell": "harry", @@ -13344,7 +13344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3466, "fields": { "spell": "harry", @@ -13356,7 +13356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3467, "fields": { "spell": "harry", @@ -13368,7 +13368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3468, "fields": { "spell": "harrying-hounds", @@ -13380,7 +13380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3470, "fields": { "spell": "harrying-hounds", @@ -13392,7 +13392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3471, "fields": { "spell": "harrying-hounds", @@ -13404,7 +13404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3472, "fields": { "spell": "harrying-hounds", @@ -13416,7 +13416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3473, "fields": { "spell": "harrying-hounds", @@ -13428,7 +13428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3474, "fields": { "spell": "harsh-light-of-summers-glare", @@ -13440,7 +13440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3475, "fields": { "spell": "heart-seeking-arrow", @@ -13452,7 +13452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3477, "fields": { "spell": "heart-seeking-arrow", @@ -13464,7 +13464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3478, "fields": { "spell": "heart-seeking-arrow", @@ -13476,7 +13476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3479, "fields": { "spell": "heart-seeking-arrow", @@ -13488,7 +13488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3480, "fields": { "spell": "heart-seeking-arrow", @@ -13500,7 +13500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3481, "fields": { "spell": "heart-seeking-arrow", @@ -13512,7 +13512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3482, "fields": { "spell": "heart-to-heart", @@ -13524,7 +13524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3483, "fields": { "spell": "heartache", @@ -13536,7 +13536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3485, "fields": { "spell": "heartache", @@ -13548,7 +13548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3486, "fields": { "spell": "heartache", @@ -13560,7 +13560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3487, "fields": { "spell": "heartache", @@ -13572,7 +13572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3488, "fields": { "spell": "heartache", @@ -13584,7 +13584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3489, "fields": { "spell": "heartache", @@ -13596,7 +13596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3490, "fields": { "spell": "heartache", @@ -13608,7 +13608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3491, "fields": { "spell": "heartache", @@ -13620,7 +13620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3492, "fields": { "spell": "heartstop", @@ -13632,7 +13632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3493, "fields": { "spell": "heartstrike", @@ -13644,7 +13644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3494, "fields": { "spell": "heavenly-crown", @@ -13656,7 +13656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3495, "fields": { "spell": "hedrens-birds-of-clay", @@ -13668,7 +13668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3497, "fields": { "spell": "hedrens-birds-of-clay", @@ -13680,7 +13680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3498, "fields": { "spell": "hedrens-birds-of-clay", @@ -13692,7 +13692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3499, "fields": { "spell": "hedrens-birds-of-clay", @@ -13704,7 +13704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3500, "fields": { "spell": "hedrens-birds-of-clay", @@ -13716,7 +13716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3501, "fields": { "spell": "hedrens-birds-of-clay", @@ -13728,7 +13728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3502, "fields": { "spell": "hedrens-birds-of-clay", @@ -13740,7 +13740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3503, "fields": { "spell": "hematomancy", @@ -13752,7 +13752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3504, "fields": { "spell": "heros-steel", @@ -13764,7 +13764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3505, "fields": { "spell": "hide-in-ones-shadow", @@ -13776,7 +13776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3506, "fields": { "spell": "hoarfrost", @@ -13788,7 +13788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3507, "fields": { "spell": "hoarfrost", @@ -13800,7 +13800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3508, "fields": { "spell": "hoarfrost", @@ -13812,7 +13812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3509, "fields": { "spell": "hoarfrost", @@ -13824,7 +13824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3510, "fields": { "spell": "hoarfrost", @@ -13836,7 +13836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3511, "fields": { "spell": "hoarfrost", @@ -13848,7 +13848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3512, "fields": { "spell": "hoarfrost", @@ -13860,7 +13860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3513, "fields": { "spell": "hoarfrost", @@ -13872,7 +13872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3514, "fields": { "spell": "hoarfrost", @@ -13884,7 +13884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3515, "fields": { "spell": "hoarfrost", @@ -13896,7 +13896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3516, "fields": { "spell": "hoarfrost", @@ -13908,7 +13908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3517, "fields": { "spell": "hoarfrost", @@ -13920,7 +13920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3518, "fields": { "spell": "hoarfrost", @@ -13932,7 +13932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3519, "fields": { "spell": "hoarfrost", @@ -13944,7 +13944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3520, "fields": { "spell": "hoarfrost", @@ -13956,7 +13956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3521, "fields": { "spell": "hoarfrost", @@ -13968,7 +13968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3522, "fields": { "spell": "hoarfrost", @@ -13980,7 +13980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3523, "fields": { "spell": "hoarfrost", @@ -13992,7 +13992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3524, "fields": { "spell": "hoarfrost", @@ -14004,7 +14004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3525, "fields": { "spell": "hoarfrost", @@ -14016,7 +14016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3526, "fields": { "spell": "hoarfrost", @@ -14028,7 +14028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3527, "fields": { "spell": "hobble", @@ -14040,7 +14040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3528, "fields": { "spell": "hobble-mount", @@ -14052,7 +14052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3530, "fields": { "spell": "hobble-mount", @@ -14064,7 +14064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3531, "fields": { "spell": "hobble-mount", @@ -14076,7 +14076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3532, "fields": { "spell": "hobble-mount", @@ -14088,7 +14088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3533, "fields": { "spell": "hobble-mount", @@ -14100,7 +14100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3534, "fields": { "spell": "hobble-mount", @@ -14112,7 +14112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3535, "fields": { "spell": "hobble-mount", @@ -14124,7 +14124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3536, "fields": { "spell": "hobble-mount", @@ -14136,7 +14136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3537, "fields": { "spell": "hobble-mount", @@ -14148,7 +14148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3538, "fields": { "spell": "holy-ground", @@ -14160,7 +14160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3540, "fields": { "spell": "holy-ground", @@ -14172,7 +14172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3541, "fields": { "spell": "holy-ground", @@ -14184,7 +14184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3542, "fields": { "spell": "holy-ground", @@ -14196,7 +14196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3543, "fields": { "spell": "holy-ground", @@ -14208,7 +14208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3544, "fields": { "spell": "hone-blade", @@ -14220,7 +14220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3545, "fields": { "spell": "hunger-of-leng", @@ -14232,7 +14232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3546, "fields": { "spell": "hunters-endurance", @@ -14244,7 +14244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3547, "fields": { "spell": "hunting-stand", @@ -14256,7 +14256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3548, "fields": { "spell": "ice-fortress", @@ -14268,7 +14268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3550, "fields": { "spell": "ice-fortress", @@ -14280,7 +14280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3551, "fields": { "spell": "ice-fortress", @@ -14292,7 +14292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3552, "fields": { "spell": "ice-fortress", @@ -14304,7 +14304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3553, "fields": { "spell": "ice-fortress", @@ -14316,7 +14316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3554, "fields": { "spell": "ice-hammer", @@ -14328,7 +14328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3556, "fields": { "spell": "ice-hammer", @@ -14340,7 +14340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3557, "fields": { "spell": "ice-hammer", @@ -14352,7 +14352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3558, "fields": { "spell": "ice-hammer", @@ -14364,7 +14364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3559, "fields": { "spell": "ice-hammer", @@ -14376,7 +14376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3560, "fields": { "spell": "ice-hammer", @@ -14388,7 +14388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3561, "fields": { "spell": "ice-hammer", @@ -14400,7 +14400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3562, "fields": { "spell": "ice-hammer", @@ -14412,7 +14412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3563, "fields": { "spell": "ice-soldiers", @@ -14424,7 +14424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3565, "fields": { "spell": "ice-soldiers", @@ -14436,7 +14436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3566, "fields": { "spell": "ice-soldiers", @@ -14448,7 +14448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3567, "fields": { "spell": "icicle-daggers", @@ -14460,7 +14460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3569, "fields": { "spell": "icicle-daggers", @@ -14472,7 +14472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3570, "fields": { "spell": "icicle-daggers", @@ -14484,7 +14484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3571, "fields": { "spell": "icicle-daggers", @@ -14496,7 +14496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3572, "fields": { "spell": "icicle-daggers", @@ -14508,7 +14508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3573, "fields": { "spell": "icicle-daggers", @@ -14520,7 +14520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3574, "fields": { "spell": "icicle-daggers", @@ -14532,7 +14532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3575, "fields": { "spell": "icicle-daggers", @@ -14544,7 +14544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3576, "fields": { "spell": "icicle-daggers", @@ -14556,7 +14556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3577, "fields": { "spell": "icy-grasp-of-the-void", @@ -14568,7 +14568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3578, "fields": { "spell": "icy-manipulation", @@ -14580,7 +14580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3579, "fields": { "spell": "ill-fated-word", @@ -14592,7 +14592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3580, "fields": { "spell": "illuminate-spoor", @@ -14604,7 +14604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3582, "fields": { "spell": "illuminate-spoor", @@ -14616,7 +14616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3583, "fields": { "spell": "illuminate-spoor", @@ -14628,7 +14628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3584, "fields": { "spell": "illuminate-spoor", @@ -14640,7 +14640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3585, "fields": { "spell": "illuminate-spoor", @@ -14652,7 +14652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3586, "fields": { "spell": "illuminate-spoor", @@ -14664,7 +14664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3587, "fields": { "spell": "illuminate-spoor", @@ -14676,7 +14676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3588, "fields": { "spell": "illuminate-spoor", @@ -14688,7 +14688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3589, "fields": { "spell": "illuminate-spoor", @@ -14700,7 +14700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3590, "fields": { "spell": "impending-ally", @@ -14712,7 +14712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3592, "fields": { "spell": "impending-ally", @@ -14724,7 +14724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3593, "fields": { "spell": "impending-ally", @@ -14736,7 +14736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3594, "fields": { "spell": "impending-ally", @@ -14748,7 +14748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3595, "fields": { "spell": "impending-ally", @@ -14760,7 +14760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3596, "fields": { "spell": "impending-ally", @@ -14772,7 +14772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3597, "fields": { "spell": "impending-ally", @@ -14784,7 +14784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3598, "fields": { "spell": "innocuous-aspect", @@ -14796,7 +14796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3599, "fields": { "spell": "insightful-maneuver", @@ -14808,7 +14808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3600, "fields": { "spell": "inspiring-speech", @@ -14820,7 +14820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3601, "fields": { "spell": "instant-fortification", @@ -14832,7 +14832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3602, "fields": { "spell": "instant-fortification", @@ -14844,7 +14844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3604, "fields": { "spell": "instant-fortification", @@ -14856,7 +14856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3605, "fields": { "spell": "instant-fortification", @@ -14868,7 +14868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3606, "fields": { "spell": "instant-fortification", @@ -14880,7 +14880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3607, "fields": { "spell": "instant-fortification", @@ -14892,7 +14892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3608, "fields": { "spell": "instant-siege-weapon", @@ -14904,7 +14904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3609, "fields": { "spell": "instant-siege-weapon", @@ -14916,7 +14916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3611, "fields": { "spell": "instant-siege-weapon", @@ -14928,7 +14928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3612, "fields": { "spell": "instant-siege-weapon", @@ -14940,7 +14940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3613, "fields": { "spell": "instant-siege-weapon", @@ -14952,7 +14952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3614, "fields": { "spell": "instant-siege-weapon", @@ -14964,7 +14964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3615, "fields": { "spell": "instant-siege-weapon", @@ -14976,7 +14976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3616, "fields": { "spell": "instant-snare", @@ -14988,7 +14988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3618, "fields": { "spell": "instant-snare", @@ -15000,7 +15000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3619, "fields": { "spell": "instant-snare", @@ -15012,7 +15012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3620, "fields": { "spell": "instant-snare", @@ -15024,7 +15024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3621, "fields": { "spell": "instant-snare", @@ -15036,7 +15036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3622, "fields": { "spell": "instant-snare", @@ -15048,7 +15048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3623, "fields": { "spell": "instant-snare", @@ -15060,7 +15060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3624, "fields": { "spell": "instant-snare", @@ -15072,7 +15072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3625, "fields": { "spell": "ire-of-the-mountain", @@ -15084,7 +15084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3627, "fields": { "spell": "ire-of-the-mountain", @@ -15096,7 +15096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3628, "fields": { "spell": "ire-of-the-mountain", @@ -15108,7 +15108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3629, "fields": { "spell": "ire-of-the-mountain", @@ -15120,7 +15120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3630, "fields": { "spell": "ire-of-the-mountain", @@ -15132,7 +15132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3631, "fields": { "spell": "ire-of-the-mountain", @@ -15144,7 +15144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3632, "fields": { "spell": "ire-of-the-mountain", @@ -15156,7 +15156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3633, "fields": { "spell": "iron-hand", @@ -15168,7 +15168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3634, "fields": { "spell": "kareefs-entreaty", @@ -15180,7 +15180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3636, "fields": { "spell": "kareefs-entreaty", @@ -15192,7 +15192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3637, "fields": { "spell": "kareefs-entreaty", @@ -15204,7 +15204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3638, "fields": { "spell": "kareefs-entreaty", @@ -15216,7 +15216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3639, "fields": { "spell": "kareefs-entreaty", @@ -15228,7 +15228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3640, "fields": { "spell": "kareefs-entreaty", @@ -15240,7 +15240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3641, "fields": { "spell": "kareefs-entreaty", @@ -15252,7 +15252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3642, "fields": { "spell": "kareefs-entreaty", @@ -15264,7 +15264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3643, "fields": { "spell": "kareefs-entreaty", @@ -15276,7 +15276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3644, "fields": { "spell": "keening-wail", @@ -15288,7 +15288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3646, "fields": { "spell": "keening-wail", @@ -15300,7 +15300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3647, "fields": { "spell": "keening-wail", @@ -15312,7 +15312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3648, "fields": { "spell": "keening-wail", @@ -15324,7 +15324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3649, "fields": { "spell": "keening-wail", @@ -15336,7 +15336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3650, "fields": { "spell": "keening-wail", @@ -15348,7 +15348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3651, "fields": { "spell": "killing-fields", @@ -15360,7 +15360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3652, "fields": { "spell": "kiss-of-the-succubus", @@ -15372,7 +15372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3654, "fields": { "spell": "kiss-of-the-succubus", @@ -15384,7 +15384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3655, "fields": { "spell": "kiss-of-the-succubus", @@ -15396,7 +15396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3656, "fields": { "spell": "kiss-of-the-succubus", @@ -15408,7 +15408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3657, "fields": { "spell": "kiss-of-the-succubus", @@ -15420,7 +15420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3658, "fields": { "spell": "kobolds-fury", @@ -15432,7 +15432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3659, "fields": { "spell": "labyrinth-mastery", @@ -15444,7 +15444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3660, "fields": { "spell": "labyrinthine-howl", @@ -15456,7 +15456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3662, "fields": { "spell": "labyrinthine-howl", @@ -15468,7 +15468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3663, "fields": { "spell": "labyrinthine-howl", @@ -15480,7 +15480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3664, "fields": { "spell": "labyrinthine-howl", @@ -15492,7 +15492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3665, "fields": { "spell": "labyrinthine-howl", @@ -15504,7 +15504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3666, "fields": { "spell": "lacerate", @@ -15516,7 +15516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3668, "fields": { "spell": "lacerate", @@ -15528,7 +15528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3669, "fields": { "spell": "lacerate", @@ -15540,7 +15540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3670, "fields": { "spell": "lacerate", @@ -15552,7 +15552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3671, "fields": { "spell": "lacerate", @@ -15564,7 +15564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3672, "fields": { "spell": "lacerate", @@ -15576,7 +15576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3673, "fields": { "spell": "lacerate", @@ -15588,7 +15588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3674, "fields": { "spell": "lacerate", @@ -15600,7 +15600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3675, "fields": { "spell": "lair-sense", @@ -15612,7 +15612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3676, "fields": { "spell": "lair-sense", @@ -15624,7 +15624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3678, "fields": { "spell": "lair-sense", @@ -15636,7 +15636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3679, "fields": { "spell": "lair-sense", @@ -15648,7 +15648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3680, "fields": { "spell": "lair-sense", @@ -15660,7 +15660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3681, "fields": { "spell": "lair-sense", @@ -15672,7 +15672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3682, "fields": { "spell": "lair-sense", @@ -15684,7 +15684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3683, "fields": { "spell": "lair-sense", @@ -15696,7 +15696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3684, "fields": { "spell": "lair-sense", @@ -15708,7 +15708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3685, "fields": { "spell": "last-rays-of-the-dying-sun", @@ -15720,7 +15720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3687, "fields": { "spell": "last-rays-of-the-dying-sun", @@ -15732,7 +15732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3688, "fields": { "spell": "last-rays-of-the-dying-sun", @@ -15744,7 +15744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3689, "fields": { "spell": "lava-stone", @@ -15756,7 +15756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3690, "fields": { "spell": "lay-to-rest", @@ -15768,7 +15768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3691, "fields": { "spell": "legend-killer", @@ -15780,7 +15780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3692, "fields": { "spell": "legion", @@ -15792,7 +15792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3693, "fields": { "spell": "legion-of-rabid-squirrels", @@ -15804,7 +15804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3695, "fields": { "spell": "legion-of-rabid-squirrels", @@ -15816,7 +15816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3696, "fields": { "spell": "legion-of-rabid-squirrels", @@ -15828,7 +15828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3697, "fields": { "spell": "legion-of-rabid-squirrels", @@ -15840,7 +15840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3698, "fields": { "spell": "legion-of-rabid-squirrels", @@ -15852,7 +15852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3699, "fields": { "spell": "legion-of-rabid-squirrels", @@ -15864,7 +15864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3700, "fields": { "spell": "legion-of-rabid-squirrels", @@ -15876,7 +15876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3701, "fields": { "spell": "lesser-maze", @@ -15888,7 +15888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3702, "fields": { "spell": "life-drain", @@ -15900,7 +15900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3704, "fields": { "spell": "life-drain", @@ -15912,7 +15912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3705, "fields": { "spell": "life-drain", @@ -15924,7 +15924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3706, "fields": { "spell": "life-drain", @@ -15936,7 +15936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3707, "fields": { "spell": "life-from-death", @@ -15948,7 +15948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3709, "fields": { "spell": "life-from-death", @@ -15960,7 +15960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3710, "fields": { "spell": "life-from-death", @@ -15972,7 +15972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3711, "fields": { "spell": "life-from-death", @@ -15984,7 +15984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3712, "fields": { "spell": "life-from-death", @@ -15996,7 +15996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3713, "fields": { "spell": "life-from-death", @@ -16008,7 +16008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3714, "fields": { "spell": "life-from-death", @@ -16020,7 +16020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3715, "fields": { "spell": "life-hack", @@ -16032,7 +16032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3716, "fields": { "spell": "life-sense", @@ -16044,7 +16044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3717, "fields": { "spell": "life-transference-arrow", @@ -16056,7 +16056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3719, "fields": { "spell": "life-transference-arrow", @@ -16068,7 +16068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3720, "fields": { "spell": "life-transference-arrow", @@ -16080,7 +16080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3721, "fields": { "spell": "life-transference-arrow", @@ -16092,7 +16092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3722, "fields": { "spell": "life-transference-arrow", @@ -16104,7 +16104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3723, "fields": { "spell": "life-transference-arrow", @@ -16116,7 +16116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3724, "fields": { "spell": "life-transference-arrow", @@ -16128,7 +16128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3725, "fields": { "spell": "life-transference-arrow", @@ -16140,7 +16140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3726, "fields": { "spell": "life-transference-arrow", @@ -16152,7 +16152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3727, "fields": { "spell": "litany-of-sure-hands", @@ -16164,7 +16164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3728, "fields": { "spell": "living-shadows", @@ -16176,7 +16176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3729, "fields": { "spell": "lock-armor", @@ -16188,7 +16188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3731, "fields": { "spell": "lock-armor", @@ -16200,7 +16200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3732, "fields": { "spell": "lock-armor", @@ -16212,7 +16212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3733, "fields": { "spell": "lock-armor", @@ -16224,7 +16224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3734, "fields": { "spell": "lock-armor", @@ -16236,7 +16236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3735, "fields": { "spell": "lock-armor", @@ -16248,7 +16248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3736, "fields": { "spell": "lock-armor", @@ -16260,7 +16260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3737, "fields": { "spell": "lock-armor", @@ -16272,7 +16272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3738, "fields": { "spell": "looping-trail", @@ -16284,7 +16284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3739, "fields": { "spell": "lovesick", @@ -16296,7 +16296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3741, "fields": { "spell": "lovesick", @@ -16308,7 +16308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3742, "fields": { "spell": "lovesick", @@ -16320,7 +16320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3743, "fields": { "spell": "lovesick", @@ -16332,7 +16332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3744, "fields": { "spell": "lovesick", @@ -16344,7 +16344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3745, "fields": { "spell": "lovesick", @@ -16356,7 +16356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3746, "fields": { "spell": "maddening-whispers", @@ -16368,7 +16368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3747, "fields": { "spell": "maim", @@ -16380,7 +16380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3748, "fields": { "spell": "malevolent-waves", @@ -16392,7 +16392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3749, "fields": { "spell": "mammons-due", @@ -16404,7 +16404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3750, "fields": { "spell": "mammons-due", @@ -16416,7 +16416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3751, "fields": { "spell": "mark-prey", @@ -16428,7 +16428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3753, "fields": { "spell": "mark-prey", @@ -16440,7 +16440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3754, "fields": { "spell": "mark-prey", @@ -16452,7 +16452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3755, "fields": { "spell": "mark-prey", @@ -16464,7 +16464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3756, "fields": { "spell": "mark-prey", @@ -16476,7 +16476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3757, "fields": { "spell": "mark-prey", @@ -16488,7 +16488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3758, "fields": { "spell": "mark-prey", @@ -16500,7 +16500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3759, "fields": { "spell": "mark-prey", @@ -16512,7 +16512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3760, "fields": { "spell": "mass-hobble-mount", @@ -16524,7 +16524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3762, "fields": { "spell": "mass-hobble-mount", @@ -16536,7 +16536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3763, "fields": { "spell": "mass-hobble-mount", @@ -16548,7 +16548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3764, "fields": { "spell": "mass-hobble-mount", @@ -16560,7 +16560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3765, "fields": { "spell": "mass-hobble-mount", @@ -16572,7 +16572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3766, "fields": { "spell": "mass-hobble-mount", @@ -16584,7 +16584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3767, "fields": { "spell": "mass-hobble-mount", @@ -16596,7 +16596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3768, "fields": { "spell": "mass-surge-dampener", @@ -16608,7 +16608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3769, "fields": { "spell": "mass-surge-dampener", @@ -16620,7 +16620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3770, "fields": { "spell": "maw-of-needles", @@ -16632,7 +16632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3772, "fields": { "spell": "maw-of-needles", @@ -16644,7 +16644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3773, "fields": { "spell": "maw-of-needles", @@ -16656,7 +16656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3774, "fields": { "spell": "maw-of-needles", @@ -16668,7 +16668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3775, "fields": { "spell": "maw-of-needles", @@ -16680,7 +16680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3776, "fields": { "spell": "maw-of-needles", @@ -16692,7 +16692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3777, "fields": { "spell": "maw-of-needles", @@ -16704,7 +16704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3778, "fields": { "spell": "maw-of-needles", @@ -16716,7 +16716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3779, "fields": { "spell": "maw-of-needles", @@ -16728,7 +16728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3780, "fields": { "spell": "memento-mori", @@ -16740,7 +16740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3781, "fields": { "spell": "mephitic-croak", @@ -16752,7 +16752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3783, "fields": { "spell": "mephitic-croak", @@ -16764,7 +16764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3784, "fields": { "spell": "mephitic-croak", @@ -16776,7 +16776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3785, "fields": { "spell": "mephitic-croak", @@ -16788,7 +16788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3786, "fields": { "spell": "mephitic-croak", @@ -16800,7 +16800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3787, "fields": { "spell": "mephitic-croak", @@ -16812,7 +16812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3788, "fields": { "spell": "mephitic-croak", @@ -16824,7 +16824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3789, "fields": { "spell": "mephitic-croak", @@ -16836,7 +16836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3790, "fields": { "spell": "mind-exchange", @@ -16848,7 +16848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3791, "fields": { "spell": "mind-exchange", @@ -16860,7 +16860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3792, "fields": { "spell": "mire", @@ -16872,7 +16872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3793, "fields": { "spell": "misstep", @@ -16884,7 +16884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3794, "fields": { "spell": "mist-of-wonders", @@ -16896,7 +16896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3796, "fields": { "spell": "mist-of-wonders", @@ -16908,7 +16908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3797, "fields": { "spell": "mist-of-wonders", @@ -16920,7 +16920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3798, "fields": { "spell": "mist-of-wonders", @@ -16932,7 +16932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3799, "fields": { "spell": "mist-of-wonders", @@ -16944,7 +16944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3800, "fields": { "spell": "mist-of-wonders", @@ -16956,7 +16956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3801, "fields": { "spell": "mist-of-wonders", @@ -16968,7 +16968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3802, "fields": { "spell": "mist-of-wonders", @@ -16980,7 +16980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3803, "fields": { "spell": "monstrous-empathy", @@ -16992,7 +16992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3805, "fields": { "spell": "monstrous-empathy", @@ -17004,7 +17004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3806, "fields": { "spell": "monstrous-empathy", @@ -17016,7 +17016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3807, "fields": { "spell": "monstrous-empathy", @@ -17028,7 +17028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3808, "fields": { "spell": "monstrous-empathy", @@ -17040,7 +17040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3809, "fields": { "spell": "monstrous-empathy", @@ -17052,7 +17052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3810, "fields": { "spell": "monstrous-empathy", @@ -17064,7 +17064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3811, "fields": { "spell": "moon-trap", @@ -17076,7 +17076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3812, "fields": { "spell": "mosquito-bane", @@ -17088,7 +17088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3814, "fields": { "spell": "mosquito-bane", @@ -17100,7 +17100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3815, "fields": { "spell": "mosquito-bane", @@ -17112,7 +17112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3816, "fields": { "spell": "mosquito-bane", @@ -17124,7 +17124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3817, "fields": { "spell": "mosquito-bane", @@ -17136,7 +17136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3818, "fields": { "spell": "mosquito-bane", @@ -17148,7 +17148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3819, "fields": { "spell": "mosquito-bane", @@ -17160,7 +17160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3820, "fields": { "spell": "mosquito-bane", @@ -17172,7 +17172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3821, "fields": { "spell": "mosquito-bane", @@ -17184,7 +17184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3822, "fields": { "spell": "mud-pack", @@ -17196,7 +17196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3823, "fields": { "spell": "mud-pack", @@ -17208,7 +17208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3825, "fields": { "spell": "mud-pack", @@ -17220,7 +17220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3826, "fields": { "spell": "mud-pack", @@ -17232,7 +17232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3827, "fields": { "spell": "mud-pack", @@ -17244,7 +17244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3828, "fields": { "spell": "mud-pack", @@ -17256,7 +17256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3829, "fields": { "spell": "mud-pack", @@ -17268,7 +17268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3830, "fields": { "spell": "mud-pack", @@ -17280,7 +17280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3831, "fields": { "spell": "mud-pack", @@ -17292,7 +17292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3832, "fields": { "spell": "mud-pack", @@ -17304,7 +17304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3833, "fields": { "spell": "negative-image", @@ -17316,7 +17316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3834, "fields": { "spell": "nether-weapon", @@ -17328,7 +17328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3836, "fields": { "spell": "nether-weapon", @@ -17340,7 +17340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3837, "fields": { "spell": "nether-weapon", @@ -17352,7 +17352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3838, "fields": { "spell": "nether-weapon", @@ -17364,7 +17364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3839, "fields": { "spell": "nether-weapon", @@ -17376,7 +17376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3840, "fields": { "spell": "nether-weapon", @@ -17388,7 +17388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3841, "fields": { "spell": "night-terrors", @@ -17400,7 +17400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3842, "fields": { "spell": "nightfall", @@ -17412,7 +17412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3843, "fields": { "spell": "nightfall", @@ -17424,7 +17424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3844, "fields": { "spell": "nip-at-the-heels", @@ -17436,7 +17436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3846, "fields": { "spell": "nip-at-the-heels", @@ -17448,7 +17448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3847, "fields": { "spell": "nip-at-the-heels", @@ -17460,7 +17460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3848, "fields": { "spell": "nip-at-the-heels", @@ -17472,7 +17472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3849, "fields": { "spell": "nip-at-the-heels", @@ -17484,7 +17484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3850, "fields": { "spell": "nip-at-the-heels", @@ -17496,7 +17496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3851, "fields": { "spell": "nip-at-the-heels", @@ -17508,7 +17508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3852, "fields": { "spell": "nip-at-the-heels", @@ -17520,7 +17520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3853, "fields": { "spell": "not-dead-yet", @@ -17532,7 +17532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3854, "fields": { "spell": "not-dead-yet", @@ -17544,7 +17544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3855, "fields": { "spell": "not-this-day", @@ -17556,7 +17556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3856, "fields": { "spell": "orb-of-light", @@ -17568,7 +17568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3858, "fields": { "spell": "orb-of-light", @@ -17580,7 +17580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3859, "fields": { "spell": "orb-of-light", @@ -17592,7 +17592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3860, "fields": { "spell": "orb-of-light", @@ -17604,7 +17604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3861, "fields": { "spell": "orb-of-light", @@ -17616,7 +17616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3862, "fields": { "spell": "orb-of-light", @@ -17628,7 +17628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3863, "fields": { "spell": "orb-of-light", @@ -17640,7 +17640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3864, "fields": { "spell": "orb-of-light", @@ -17652,7 +17652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3865, "fields": { "spell": "outflanking-boon", @@ -17664,7 +17664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3867, "fields": { "spell": "outflanking-boon", @@ -17676,7 +17676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3868, "fields": { "spell": "outflanking-boon", @@ -17688,7 +17688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3869, "fields": { "spell": "outflanking-boon", @@ -17700,7 +17700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3870, "fields": { "spell": "outflanking-boon", @@ -17712,7 +17712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3871, "fields": { "spell": "outflanking-boon", @@ -17724,7 +17724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3872, "fields": { "spell": "outflanking-boon", @@ -17736,7 +17736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3873, "fields": { "spell": "paragon-of-chaos", @@ -17748,7 +17748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3874, "fields": { "spell": "pendulum", @@ -17760,7 +17760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3875, "fields": { "spell": "phantom-dragon", @@ -17772,7 +17772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3877, "fields": { "spell": "phantom-dragon", @@ -17784,7 +17784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3878, "fields": { "spell": "phantom-dragon", @@ -17796,7 +17796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3879, "fields": { "spell": "phantom-dragon", @@ -17808,7 +17808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3880, "fields": { "spell": "phantom-dragon", @@ -17820,7 +17820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3881, "fields": { "spell": "phantom-dragon", @@ -17832,7 +17832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3882, "fields": { "spell": "phantom-dragon", @@ -17844,7 +17844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3883, "fields": { "spell": "pitfall", @@ -17856,7 +17856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3884, "fields": { "spell": "poisoned-volley", @@ -17868,7 +17868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3886, "fields": { "spell": "poisoned-volley", @@ -17880,7 +17880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3887, "fields": { "spell": "poisoned-volley", @@ -17892,7 +17892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3888, "fields": { "spell": "poisoned-volley", @@ -17904,7 +17904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3889, "fields": { "spell": "poisoned-volley", @@ -17916,7 +17916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3890, "fields": { "spell": "poisoned-volley", @@ -17928,7 +17928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3891, "fields": { "spell": "poisoned-volley", @@ -17940,7 +17940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3892, "fields": { "spell": "poisoned-volley", @@ -17952,7 +17952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3893, "fields": { "spell": "potency-of-the-pack", @@ -17964,7 +17964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3895, "fields": { "spell": "potency-of-the-pack", @@ -17976,7 +17976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3896, "fields": { "spell": "potency-of-the-pack", @@ -17988,7 +17988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3897, "fields": { "spell": "potency-of-the-pack", @@ -18000,7 +18000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3898, "fields": { "spell": "potency-of-the-pack", @@ -18012,7 +18012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3899, "fields": { "spell": "potency-of-the-pack", @@ -18024,7 +18024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3900, "fields": { "spell": "potency-of-the-pack", @@ -18036,7 +18036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3901, "fields": { "spell": "power-word-kneel", @@ -18048,7 +18048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3902, "fields": { "spell": "power-word-pain", @@ -18060,7 +18060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3903, "fields": { "spell": "primal-infusion", @@ -18072,7 +18072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3904, "fields": { "spell": "prismatic-ray", @@ -18084,7 +18084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3905, "fields": { "spell": "protection-from-the-void", @@ -18096,7 +18096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3906, "fields": { "spell": "protective-ice", @@ -18108,7 +18108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3908, "fields": { "spell": "protective-ice", @@ -18120,7 +18120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3909, "fields": { "spell": "protective-ice", @@ -18132,7 +18132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3910, "fields": { "spell": "protective-ice", @@ -18144,7 +18144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3911, "fields": { "spell": "protective-ice", @@ -18156,7 +18156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3912, "fields": { "spell": "protective-ice", @@ -18168,7 +18168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3913, "fields": { "spell": "protective-ice", @@ -18180,7 +18180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3914, "fields": { "spell": "puff-of-smoke", @@ -18192,7 +18192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3915, "fields": { "spell": "pummelstone", @@ -18204,7 +18204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3916, "fields": { "spell": "pummelstone", @@ -18216,7 +18216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3917, "fields": { "spell": "pummelstone", @@ -18228,7 +18228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3918, "fields": { "spell": "pummelstone", @@ -18240,7 +18240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3919, "fields": { "spell": "pummelstone", @@ -18252,7 +18252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3920, "fields": { "spell": "pummelstone", @@ -18264,7 +18264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3921, "fields": { "spell": "pummelstone", @@ -18276,7 +18276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3922, "fields": { "spell": "pummelstone", @@ -18288,7 +18288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3923, "fields": { "spell": "pummelstone", @@ -18300,7 +18300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3924, "fields": { "spell": "pummelstone", @@ -18312,7 +18312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3925, "fields": { "spell": "pummelstone", @@ -18324,7 +18324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3926, "fields": { "spell": "pummelstone", @@ -18336,7 +18336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3927, "fields": { "spell": "pummelstone", @@ -18348,7 +18348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3928, "fields": { "spell": "pummelstone", @@ -18360,7 +18360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3929, "fields": { "spell": "pummelstone", @@ -18372,7 +18372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3930, "fields": { "spell": "pummelstone", @@ -18384,7 +18384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3931, "fields": { "spell": "pummelstone", @@ -18396,7 +18396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3932, "fields": { "spell": "pummelstone", @@ -18408,7 +18408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3933, "fields": { "spell": "pummelstone", @@ -18420,7 +18420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3934, "fields": { "spell": "pummelstone", @@ -18432,7 +18432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3935, "fields": { "spell": "pummelstone", @@ -18444,7 +18444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3936, "fields": { "spell": "pyroclasm", @@ -18456,7 +18456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3937, "fields": { "spell": "quick-time", @@ -18468,7 +18468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3939, "fields": { "spell": "quick-time", @@ -18480,7 +18480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3940, "fields": { "spell": "quick-time", @@ -18492,7 +18492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3941, "fields": { "spell": "quick-time", @@ -18504,7 +18504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3942, "fields": { "spell": "quick-time", @@ -18516,7 +18516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3943, "fields": { "spell": "quick-time", @@ -18528,7 +18528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3944, "fields": { "spell": "quicken", @@ -18540,7 +18540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3945, "fields": { "spell": "quicksilver-mantle", @@ -18552,7 +18552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3946, "fields": { "spell": "quintessence", @@ -18564,7 +18564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3947, "fields": { "spell": "raid-the-lair", @@ -18576,7 +18576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3948, "fields": { "spell": "rain-of-blades", @@ -18588,7 +18588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3950, "fields": { "spell": "rain-of-blades", @@ -18600,7 +18600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3951, "fields": { "spell": "rain-of-blades", @@ -18612,7 +18612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3952, "fields": { "spell": "rain-of-blades", @@ -18624,7 +18624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3953, "fields": { "spell": "rain-of-blades", @@ -18636,7 +18636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3954, "fields": { "spell": "ray-of-alchemical-negation", @@ -18648,7 +18648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3955, "fields": { "spell": "ray-of-life-suppression", @@ -18660,7 +18660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3956, "fields": { "spell": "reaver-spirit", @@ -18672,7 +18672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3958, "fields": { "spell": "reaver-spirit", @@ -18684,7 +18684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3959, "fields": { "spell": "reaver-spirit", @@ -18696,7 +18696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3960, "fields": { "spell": "reaver-spirit", @@ -18708,7 +18708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3961, "fields": { "spell": "reaver-spirit", @@ -18720,7 +18720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3962, "fields": { "spell": "reaver-spirit", @@ -18732,7 +18732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3963, "fields": { "spell": "reaver-spirit", @@ -18744,7 +18744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3964, "fields": { "spell": "reposition", @@ -18756,7 +18756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3966, "fields": { "spell": "reposition", @@ -18768,7 +18768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3967, "fields": { "spell": "reposition", @@ -18780,7 +18780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3968, "fields": { "spell": "reposition", @@ -18792,7 +18792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3969, "fields": { "spell": "reposition", @@ -18804,7 +18804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3970, "fields": { "spell": "reposition", @@ -18816,7 +18816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3971, "fields": { "spell": "reset", @@ -18828,7 +18828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3973, "fields": { "spell": "reset", @@ -18840,7 +18840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3974, "fields": { "spell": "reset", @@ -18852,7 +18852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3975, "fields": { "spell": "reset", @@ -18864,7 +18864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3976, "fields": { "spell": "reset", @@ -18876,7 +18876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3977, "fields": { "spell": "reset", @@ -18888,7 +18888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3978, "fields": { "spell": "reverberate", @@ -18900,7 +18900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3980, "fields": { "spell": "reverberate", @@ -18912,7 +18912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3981, "fields": { "spell": "reverberate", @@ -18924,7 +18924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3982, "fields": { "spell": "reverberate", @@ -18936,7 +18936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3983, "fields": { "spell": "reverberate", @@ -18948,7 +18948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3984, "fields": { "spell": "reverberate", @@ -18960,7 +18960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3985, "fields": { "spell": "reverberate", @@ -18972,7 +18972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3986, "fields": { "spell": "reverberate", @@ -18984,7 +18984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3987, "fields": { "spell": "revive-beast", @@ -18996,7 +18996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3988, "fields": { "spell": "right-the-stars", @@ -19008,7 +19008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3989, "fields": { "spell": "ring-strike", @@ -19020,7 +19020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3991, "fields": { "spell": "ring-strike", @@ -19032,7 +19032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3992, "fields": { "spell": "ring-strike", @@ -19044,7 +19044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3993, "fields": { "spell": "ring-strike", @@ -19056,7 +19056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3994, "fields": { "spell": "ring-strike", @@ -19068,7 +19068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3995, "fields": { "spell": "ring-strike", @@ -19080,7 +19080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3996, "fields": { "spell": "ring-strike", @@ -19092,7 +19092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3997, "fields": { "spell": "ring-strike", @@ -19104,7 +19104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3998, "fields": { "spell": "ring-strike", @@ -19116,7 +19116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3999, "fields": { "spell": "ring-ward", @@ -19128,7 +19128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4000, "fields": { "spell": "riptide", @@ -19140,7 +19140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4001, "fields": { "spell": "rolling-thunder", @@ -19152,7 +19152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4003, "fields": { "spell": "rolling-thunder", @@ -19164,7 +19164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4004, "fields": { "spell": "rolling-thunder", @@ -19176,7 +19176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4005, "fields": { "spell": "rolling-thunder", @@ -19188,7 +19188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4006, "fields": { "spell": "rolling-thunder", @@ -19200,7 +19200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4007, "fields": { "spell": "rolling-thunder", @@ -19212,7 +19212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4008, "fields": { "spell": "rolling-thunder", @@ -19224,7 +19224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4009, "fields": { "spell": "rolling-thunder", @@ -19236,7 +19236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4010, "fields": { "spell": "rotting-corpse", @@ -19248,7 +19248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4012, "fields": { "spell": "rotting-corpse", @@ -19260,7 +19260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4013, "fields": { "spell": "rotting-corpse", @@ -19272,7 +19272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4014, "fields": { "spell": "rotting-corpse", @@ -19284,7 +19284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4015, "fields": { "spell": "rotting-corpse", @@ -19296,7 +19296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4016, "fields": { "spell": "rotting-corpse", @@ -19308,7 +19308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4017, "fields": { "spell": "rotting-corpse", @@ -19320,7 +19320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4018, "fields": { "spell": "rotting-corpse", @@ -19332,7 +19332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4019, "fields": { "spell": "rune-of-imprisonment", @@ -19344,7 +19344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4020, "fields": { "spell": "salt-lash", @@ -19356,7 +19356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4021, "fields": { "spell": "sand-ship", @@ -19368,7 +19368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4022, "fields": { "spell": "sand-ship", @@ -19380,7 +19380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4023, "fields": { "spell": "sanguine-horror", @@ -19392,7 +19392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4024, "fields": { "spell": "scale-rot", @@ -19404,7 +19404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4026, "fields": { "spell": "scale-rot", @@ -19416,7 +19416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4027, "fields": { "spell": "scale-rot", @@ -19428,7 +19428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4028, "fields": { "spell": "scale-rot", @@ -19440,7 +19440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4029, "fields": { "spell": "scale-rot", @@ -19452,7 +19452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4030, "fields": { "spell": "scale-rot", @@ -19464,7 +19464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4031, "fields": { "spell": "scentless", @@ -19476,7 +19476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4032, "fields": { "spell": "screaming-ray", @@ -19488,7 +19488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4034, "fields": { "spell": "screaming-ray", @@ -19500,7 +19500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4035, "fields": { "spell": "screaming-ray", @@ -19512,7 +19512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4036, "fields": { "spell": "screaming-ray", @@ -19524,7 +19524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4037, "fields": { "spell": "screaming-ray", @@ -19536,7 +19536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4038, "fields": { "spell": "screaming-ray", @@ -19548,7 +19548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4039, "fields": { "spell": "screaming-ray", @@ -19560,7 +19560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4040, "fields": { "spell": "screaming-ray", @@ -19572,7 +19572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4041, "fields": { "spell": "screaming-ray", @@ -19584,7 +19584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4042, "fields": { "spell": "scribe", @@ -19596,7 +19596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4043, "fields": { "spell": "scry-ambush", @@ -19608,7 +19608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4044, "fields": { "spell": "sculpt-snow", @@ -19620,7 +19620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4046, "fields": { "spell": "sculpt-snow", @@ -19632,7 +19632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4047, "fields": { "spell": "sculpt-snow", @@ -19644,7 +19644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4048, "fields": { "spell": "sculpt-snow", @@ -19656,7 +19656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4049, "fields": { "spell": "sculpt-snow", @@ -19668,7 +19668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4050, "fields": { "spell": "sculpt-snow", @@ -19680,7 +19680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4051, "fields": { "spell": "sculpt-snow", @@ -19692,7 +19692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4052, "fields": { "spell": "sculpt-snow", @@ -19704,7 +19704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4053, "fields": { "spell": "seal-of-sanctuary", @@ -19716,7 +19716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4054, "fields": { "spell": "seal-of-sanctuary", @@ -19728,7 +19728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4055, "fields": { "spell": "searing-sun", @@ -19740,7 +19740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4056, "fields": { "spell": "see-beyond", @@ -19752,7 +19752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4057, "fields": { "spell": "seed-of-destruction", @@ -19764,7 +19764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4058, "fields": { "spell": "seed-of-destruction", @@ -19776,7 +19776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4059, "fields": { "spell": "seeping-death", @@ -19788,7 +19788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4060, "fields": { "spell": "seers-reaction", @@ -19800,7 +19800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4061, "fields": { "spell": "semblance-of-dread", @@ -19812,7 +19812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4062, "fields": { "spell": "shade", @@ -19824,7 +19824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4064, "fields": { "spell": "shade", @@ -19836,7 +19836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4065, "fields": { "spell": "shade", @@ -19848,7 +19848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4066, "fields": { "spell": "shade", @@ -19860,7 +19860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4067, "fields": { "spell": "shade", @@ -19872,7 +19872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4068, "fields": { "spell": "shade", @@ -19884,7 +19884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4069, "fields": { "spell": "shade", @@ -19896,7 +19896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4070, "fields": { "spell": "shade", @@ -19908,7 +19908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4071, "fields": { "spell": "shadow-armor", @@ -19920,7 +19920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4072, "fields": { "spell": "shadow-bite", @@ -19932,7 +19932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4073, "fields": { "spell": "shadow-bite", @@ -19944,7 +19944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4074, "fields": { "spell": "shadow-bite", @@ -19956,7 +19956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4075, "fields": { "spell": "shadow-bite", @@ -19968,7 +19968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4076, "fields": { "spell": "shadow-bite", @@ -19980,7 +19980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4077, "fields": { "spell": "shadow-bite", @@ -19992,7 +19992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4078, "fields": { "spell": "shadow-bite", @@ -20004,7 +20004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4079, "fields": { "spell": "shadow-bite", @@ -20016,7 +20016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4080, "fields": { "spell": "shadow-bite", @@ -20028,7 +20028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4081, "fields": { "spell": "shadow-bite", @@ -20040,7 +20040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4082, "fields": { "spell": "shadow-bite", @@ -20052,7 +20052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4083, "fields": { "spell": "shadow-bite", @@ -20064,7 +20064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4084, "fields": { "spell": "shadow-bite", @@ -20076,7 +20076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4085, "fields": { "spell": "shadow-bite", @@ -20088,7 +20088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4086, "fields": { "spell": "shadow-bite", @@ -20100,7 +20100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4087, "fields": { "spell": "shadow-bite", @@ -20112,7 +20112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4088, "fields": { "spell": "shadow-bite", @@ -20124,7 +20124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4089, "fields": { "spell": "shadow-bite", @@ -20136,7 +20136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4090, "fields": { "spell": "shadow-bite", @@ -20148,7 +20148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4091, "fields": { "spell": "shadow-bite", @@ -20160,7 +20160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4092, "fields": { "spell": "shadow-bite", @@ -20172,7 +20172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4093, "fields": { "spell": "shadow-blindness", @@ -20184,7 +20184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4094, "fields": { "spell": "shadow-hands", @@ -20196,7 +20196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4096, "fields": { "spell": "shadow-hands", @@ -20208,7 +20208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4097, "fields": { "spell": "shadow-hands", @@ -20220,7 +20220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4098, "fields": { "spell": "shadow-hands", @@ -20232,7 +20232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4099, "fields": { "spell": "shadow-hands", @@ -20244,7 +20244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4100, "fields": { "spell": "shadow-hands", @@ -20256,7 +20256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4101, "fields": { "spell": "shadow-hands", @@ -20268,7 +20268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4102, "fields": { "spell": "shadow-hands", @@ -20280,7 +20280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4103, "fields": { "spell": "shadow-hands", @@ -20292,7 +20292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4104, "fields": { "spell": "shadow-monsters", @@ -20304,7 +20304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4106, "fields": { "spell": "shadow-monsters", @@ -20316,7 +20316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4107, "fields": { "spell": "shadow-monsters", @@ -20328,7 +20328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4108, "fields": { "spell": "shadow-monsters", @@ -20340,7 +20340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4109, "fields": { "spell": "shadow-monsters", @@ -20352,7 +20352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4110, "fields": { "spell": "shadow-monsters", @@ -20364,7 +20364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4111, "fields": { "spell": "shadow-puppets", @@ -20376,7 +20376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4113, "fields": { "spell": "shadow-puppets", @@ -20388,7 +20388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4114, "fields": { "spell": "shadow-puppets", @@ -20400,7 +20400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4115, "fields": { "spell": "shadow-puppets", @@ -20412,7 +20412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4116, "fields": { "spell": "shadow-puppets", @@ -20424,7 +20424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4117, "fields": { "spell": "shadow-puppets", @@ -20436,7 +20436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4118, "fields": { "spell": "shadow-puppets", @@ -20448,7 +20448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4119, "fields": { "spell": "shadow-puppets", @@ -20460,7 +20460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4120, "fields": { "spell": "shadow-trove", @@ -20472,7 +20472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4121, "fields": { "spell": "shadow-trove", @@ -20484,7 +20484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4123, "fields": { "spell": "shadow-trove", @@ -20496,7 +20496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4124, "fields": { "spell": "shadow-trove", @@ -20508,7 +20508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4125, "fields": { "spell": "shadow-trove", @@ -20520,7 +20520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4126, "fields": { "spell": "shadow-trove", @@ -20532,7 +20532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4127, "fields": { "spell": "shadow-trove", @@ -20544,7 +20544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4128, "fields": { "spell": "shadow-trove", @@ -20556,7 +20556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4129, "fields": { "spell": "shadows-brought-to-light", @@ -20568,7 +20568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4130, "fields": { "spell": "shadows-brought-to-light", @@ -20580,7 +20580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4131, "fields": { "spell": "shadowy-retribution", @@ -20592,7 +20592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4132, "fields": { "spell": "shadowy-retribution", @@ -20604,7 +20604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4134, "fields": { "spell": "shadowy-retribution", @@ -20616,7 +20616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4135, "fields": { "spell": "shadowy-retribution", @@ -20628,7 +20628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4136, "fields": { "spell": "shadowy-retribution", @@ -20640,7 +20640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4137, "fields": { "spell": "shadowy-retribution", @@ -20652,7 +20652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4138, "fields": { "spell": "shadowy-retribution", @@ -20664,7 +20664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4139, "fields": { "spell": "shared-sacrifice", @@ -20676,7 +20676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4140, "fields": { "spell": "sheen-of-ice", @@ -20688,7 +20688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4141, "fields": { "spell": "shifting-the-odds", @@ -20700,7 +20700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4142, "fields": { "spell": "shiver", @@ -20712,7 +20712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4143, "fields": { "spell": "shiver", @@ -20724,7 +20724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4144, "fields": { "spell": "shiver", @@ -20736,7 +20736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4145, "fields": { "spell": "shiver", @@ -20748,7 +20748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4146, "fields": { "spell": "shiver", @@ -20760,7 +20760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4147, "fields": { "spell": "shiver", @@ -20772,7 +20772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4148, "fields": { "spell": "shiver", @@ -20784,7 +20784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4149, "fields": { "spell": "shiver", @@ -20796,7 +20796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4150, "fields": { "spell": "shiver", @@ -20808,7 +20808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4151, "fields": { "spell": "shiver", @@ -20820,7 +20820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4152, "fields": { "spell": "shiver", @@ -20832,7 +20832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4153, "fields": { "spell": "shiver", @@ -20844,7 +20844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4154, "fields": { "spell": "shiver", @@ -20856,7 +20856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4155, "fields": { "spell": "shiver", @@ -20868,7 +20868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4156, "fields": { "spell": "shiver", @@ -20880,7 +20880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4157, "fields": { "spell": "shiver", @@ -20892,7 +20892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4158, "fields": { "spell": "shiver", @@ -20904,7 +20904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4159, "fields": { "spell": "shiver", @@ -20916,7 +20916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4160, "fields": { "spell": "shiver", @@ -20928,7 +20928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4161, "fields": { "spell": "shiver", @@ -20940,7 +20940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4162, "fields": { "spell": "shiver", @@ -20952,7 +20952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4163, "fields": { "spell": "shroud-of-death", @@ -20964,7 +20964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4164, "fields": { "spell": "sidestep-arrow", @@ -20976,7 +20976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4165, "fields": { "spell": "sign-of-koth", @@ -20988,7 +20988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4167, "fields": { "spell": "sign-of-koth", @@ -21000,7 +21000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4168, "fields": { "spell": "sign-of-koth", @@ -21012,7 +21012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4169, "fields": { "spell": "silhouette", @@ -21024,7 +21024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4170, "fields": { "spell": "sir-mittinzs-move-curse", @@ -21036,7 +21036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4171, "fields": { "spell": "sir-mittinzs-move-curse", @@ -21048,7 +21048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4172, "fields": { "spell": "sleep-of-the-deep", @@ -21060,7 +21060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4173, "fields": { "spell": "sleep-of-the-deep", @@ -21072,7 +21072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4175, "fields": { "spell": "sleep-of-the-deep", @@ -21084,7 +21084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4176, "fields": { "spell": "sleep-of-the-deep", @@ -21096,7 +21096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4177, "fields": { "spell": "sleep-of-the-deep", @@ -21108,7 +21108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4178, "fields": { "spell": "sleep-of-the-deep", @@ -21120,7 +21120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4179, "fields": { "spell": "sleep-of-the-deep", @@ -21132,7 +21132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4180, "fields": { "spell": "sleep-of-the-deep", @@ -21144,7 +21144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4181, "fields": { "spell": "slippery-fingers", @@ -21156,7 +21156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4182, "fields": { "spell": "slither", @@ -21168,7 +21168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4184, "fields": { "spell": "slither", @@ -21180,7 +21180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4185, "fields": { "spell": "slither", @@ -21192,7 +21192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4186, "fields": { "spell": "slither", @@ -21204,7 +21204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4187, "fields": { "spell": "slither", @@ -21216,7 +21216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4188, "fields": { "spell": "slither", @@ -21228,7 +21228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4189, "fields": { "spell": "slither", @@ -21240,7 +21240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4190, "fields": { "spell": "slither", @@ -21252,7 +21252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4191, "fields": { "spell": "snow-boulder", @@ -21264,7 +21264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4192, "fields": { "spell": "snow-fort", @@ -21276,7 +21276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4193, "fields": { "spell": "snowy-coat", @@ -21288,7 +21288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4195, "fields": { "spell": "snowy-coat", @@ -21300,7 +21300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4196, "fields": { "spell": "snowy-coat", @@ -21312,7 +21312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4197, "fields": { "spell": "snowy-coat", @@ -21324,7 +21324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4198, "fields": { "spell": "snowy-coat", @@ -21336,7 +21336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4199, "fields": { "spell": "snowy-coat", @@ -21348,7 +21348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4200, "fields": { "spell": "snowy-coat", @@ -21360,7 +21360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4201, "fields": { "spell": "snowy-coat", @@ -21372,7 +21372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4202, "fields": { "spell": "snowy-coat", @@ -21384,7 +21384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4203, "fields": { "spell": "song-of-the-forest", @@ -21396,7 +21396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4204, "fields": { "spell": "song-of-the-forest", @@ -21408,7 +21408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4205, "fields": { "spell": "speak-with-inanimate-object", @@ -21420,7 +21420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4206, "fields": { "spell": "speak-with-inanimate-object", @@ -21432,7 +21432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4207, "fields": { "spell": "spin", @@ -21444,7 +21444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4208, "fields": { "spell": "spinning-axes", @@ -21456,7 +21456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4210, "fields": { "spell": "spinning-axes", @@ -21468,7 +21468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4211, "fields": { "spell": "spinning-axes", @@ -21480,7 +21480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4212, "fields": { "spell": "spinning-axes", @@ -21492,7 +21492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4213, "fields": { "spell": "spinning-axes", @@ -21504,7 +21504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4214, "fields": { "spell": "spinning-axes", @@ -21516,7 +21516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4215, "fields": { "spell": "spiteful-weapon", @@ -21528,7 +21528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4217, "fields": { "spell": "spiteful-weapon", @@ -21540,7 +21540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4218, "fields": { "spell": "spiteful-weapon", @@ -21552,7 +21552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4219, "fields": { "spell": "spiteful-weapon", @@ -21564,7 +21564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4220, "fields": { "spell": "spiteful-weapon", @@ -21576,7 +21576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4221, "fields": { "spell": "spiteful-weapon", @@ -21588,7 +21588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4222, "fields": { "spell": "spiteful-weapon", @@ -21600,7 +21600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4223, "fields": { "spell": "spur-mount", @@ -21612,7 +21612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4224, "fields": { "spell": "staff-of-violet-fire", @@ -21624,7 +21624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4226, "fields": { "spell": "staff-of-violet-fire", @@ -21636,7 +21636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4227, "fields": { "spell": "staff-of-violet-fire", @@ -21648,7 +21648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4228, "fields": { "spell": "staff-of-violet-fire", @@ -21660,7 +21660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4229, "fields": { "spell": "staff-of-violet-fire", @@ -21672,7 +21672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4230, "fields": { "spell": "staff-of-violet-fire", @@ -21684,7 +21684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4231, "fields": { "spell": "stanch", @@ -21696,7 +21696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4232, "fields": { "spell": "starburst", @@ -21708,7 +21708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4233, "fields": { "spell": "starburst", @@ -21720,7 +21720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4234, "fields": { "spell": "starburst", @@ -21732,7 +21732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4235, "fields": { "spell": "starburst", @@ -21744,7 +21744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4236, "fields": { "spell": "starburst", @@ -21756,7 +21756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4237, "fields": { "spell": "starburst", @@ -21768,7 +21768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4238, "fields": { "spell": "starburst", @@ -21780,7 +21780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4239, "fields": { "spell": "starburst", @@ -21792,7 +21792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4240, "fields": { "spell": "starburst", @@ -21804,7 +21804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4241, "fields": { "spell": "starburst", @@ -21816,7 +21816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4242, "fields": { "spell": "starburst", @@ -21828,7 +21828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4243, "fields": { "spell": "starburst", @@ -21840,7 +21840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4244, "fields": { "spell": "starburst", @@ -21852,7 +21852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4245, "fields": { "spell": "starburst", @@ -21864,7 +21864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4246, "fields": { "spell": "starburst", @@ -21876,7 +21876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4247, "fields": { "spell": "starburst", @@ -21888,7 +21888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4248, "fields": { "spell": "starburst", @@ -21900,7 +21900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4249, "fields": { "spell": "starburst", @@ -21912,7 +21912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4250, "fields": { "spell": "starburst", @@ -21924,7 +21924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4251, "fields": { "spell": "starburst", @@ -21936,7 +21936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4252, "fields": { "spell": "starburst", @@ -21948,7 +21948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4253, "fields": { "spell": "starfall", @@ -21960,7 +21960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4255, "fields": { "spell": "starfall", @@ -21972,7 +21972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4256, "fields": { "spell": "starfall", @@ -21984,7 +21984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4257, "fields": { "spell": "starfall", @@ -21996,7 +21996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4258, "fields": { "spell": "starfall", @@ -22008,7 +22008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4259, "fields": { "spell": "starry-vision", @@ -22020,7 +22020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4261, "fields": { "spell": "starry-vision", @@ -22032,7 +22032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4262, "fields": { "spell": "starry-vision", @@ -22044,7 +22044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4263, "fields": { "spell": "stars-heart", @@ -22056,7 +22056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4264, "fields": { "spell": "steal-warmth", @@ -22068,7 +22068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4266, "fields": { "spell": "steal-warmth", @@ -22080,7 +22080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4267, "fields": { "spell": "steal-warmth", @@ -22092,7 +22092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4268, "fields": { "spell": "steal-warmth", @@ -22104,7 +22104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4269, "fields": { "spell": "steal-warmth", @@ -22116,7 +22116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4270, "fields": { "spell": "steal-warmth", @@ -22128,7 +22128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4271, "fields": { "spell": "steal-warmth", @@ -22140,7 +22140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4272, "fields": { "spell": "steam-blast", @@ -22152,7 +22152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4274, "fields": { "spell": "steam-blast", @@ -22164,7 +22164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4275, "fields": { "spell": "steam-blast", @@ -22176,7 +22176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4276, "fields": { "spell": "steam-blast", @@ -22188,7 +22188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4277, "fields": { "spell": "steam-blast", @@ -22200,7 +22200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4278, "fields": { "spell": "steam-blast", @@ -22212,7 +22212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4279, "fields": { "spell": "steam-whistle", @@ -22224,7 +22224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4280, "fields": { "spell": "stench-of-rot", @@ -22236,7 +22236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4282, "fields": { "spell": "stench-of-rot", @@ -22248,7 +22248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4283, "fields": { "spell": "stench-of-rot", @@ -22260,7 +22260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4284, "fields": { "spell": "stench-of-rot", @@ -22272,7 +22272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4285, "fields": { "spell": "stench-of-rot", @@ -22284,7 +22284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4286, "fields": { "spell": "stench-of-rot", @@ -22296,7 +22296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4287, "fields": { "spell": "stench-of-rot", @@ -22308,7 +22308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4288, "fields": { "spell": "stench-of-rot", @@ -22320,7 +22320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4289, "fields": { "spell": "storm-of-wings", @@ -22332,7 +22332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4290, "fields": { "spell": "sudden-dawn", @@ -22344,7 +22344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4291, "fields": { "spell": "sudden-dawn", @@ -22356,7 +22356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4292, "fields": { "spell": "summon-eldritch-servitor", @@ -22368,7 +22368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4293, "fields": { "spell": "summon-eldritch-servitor", @@ -22380,7 +22380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4295, "fields": { "spell": "summon-eldritch-servitor", @@ -22392,7 +22392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4296, "fields": { "spell": "summon-eldritch-servitor", @@ -22404,7 +22404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4297, "fields": { "spell": "summon-eldritch-servitor", @@ -22416,7 +22416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4298, "fields": { "spell": "summon-eldritch-servitor", @@ -22428,7 +22428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4299, "fields": { "spell": "summon-star", @@ -22440,7 +22440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4300, "fields": { "spell": "surge-dampener", @@ -22452,7 +22452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4301, "fields": { "spell": "surge-dampener", @@ -22464,7 +22464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4302, "fields": { "spell": "surprise-blessing", @@ -22476,7 +22476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4303, "fields": { "spell": "symbol-of-sorcery", @@ -22488,7 +22488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4304, "fields": { "spell": "talons-of-a-hungry-land", @@ -22500,7 +22500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4306, "fields": { "spell": "talons-of-a-hungry-land", @@ -22512,7 +22512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4307, "fields": { "spell": "talons-of-a-hungry-land", @@ -22524,7 +22524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4308, "fields": { "spell": "targeting-foreknowledge", @@ -22536,7 +22536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4309, "fields": { "spell": "thin-the-ice", @@ -22548,7 +22548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4310, "fields": { "spell": "thousand-darts", @@ -22560,7 +22560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4312, "fields": { "spell": "thousand-darts", @@ -22572,7 +22572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4313, "fields": { "spell": "thousand-darts", @@ -22584,7 +22584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4314, "fields": { "spell": "thousand-darts", @@ -22596,7 +22596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4315, "fields": { "spell": "thousand-darts", @@ -22608,7 +22608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4316, "fields": { "spell": "thousand-darts", @@ -22620,7 +22620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4317, "fields": { "spell": "thousand-darts", @@ -22632,7 +22632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4318, "fields": { "spell": "throes-of-ecstasy", @@ -22644,7 +22644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4320, "fields": { "spell": "throes-of-ecstasy", @@ -22656,7 +22656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4321, "fields": { "spell": "throes-of-ecstasy", @@ -22668,7 +22668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4322, "fields": { "spell": "throes-of-ecstasy", @@ -22680,7 +22680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4323, "fields": { "spell": "throes-of-ecstasy", @@ -22692,7 +22692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4324, "fields": { "spell": "throes-of-ecstasy", @@ -22704,7 +22704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4325, "fields": { "spell": "throes-of-ecstasy", @@ -22716,7 +22716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4326, "fields": { "spell": "thunder-bolt", @@ -22728,7 +22728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4327, "fields": { "spell": "thunderclap", @@ -22740,7 +22740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4328, "fields": { "spell": "thunderous-charge", @@ -22752,7 +22752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4330, "fields": { "spell": "thunderous-charge", @@ -22764,7 +22764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4331, "fields": { "spell": "thunderous-charge", @@ -22776,7 +22776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4332, "fields": { "spell": "thunderous-charge", @@ -22788,7 +22788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4333, "fields": { "spell": "thunderous-charge", @@ -22800,7 +22800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4334, "fields": { "spell": "thunderous-charge", @@ -22812,7 +22812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4335, "fields": { "spell": "thunderous-charge", @@ -22824,7 +22824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4336, "fields": { "spell": "thunderous-charge", @@ -22836,7 +22836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4337, "fields": { "spell": "thunderous-charge", @@ -22848,7 +22848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4338, "fields": { "spell": "thunderous-stampede", @@ -22860,7 +22860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4340, "fields": { "spell": "thunderous-stampede", @@ -22872,7 +22872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4341, "fields": { "spell": "thunderous-stampede", @@ -22884,7 +22884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4342, "fields": { "spell": "thunderous-stampede", @@ -22896,7 +22896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4343, "fields": { "spell": "thunderous-stampede", @@ -22908,7 +22908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4344, "fields": { "spell": "thunderous-stampede", @@ -22920,7 +22920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4345, "fields": { "spell": "thunderous-stampede", @@ -22932,7 +22932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4346, "fields": { "spell": "thunderous-stampede", @@ -22944,7 +22944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4347, "fields": { "spell": "thunderous-wave", @@ -22956,7 +22956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4348, "fields": { "spell": "thunderstorm", @@ -22968,7 +22968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4349, "fields": { "spell": "tidal-barrier", @@ -22980,7 +22980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4350, "fields": { "spell": "time-in-a-bottle", @@ -22992,7 +22992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4351, "fields": { "spell": "time-jump", @@ -23004,7 +23004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4352, "fields": { "spell": "time-loop", @@ -23016,7 +23016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4353, "fields": { "spell": "time-slippage", @@ -23028,7 +23028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4354, "fields": { "spell": "time-step", @@ -23040,7 +23040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4355, "fields": { "spell": "time-vortex", @@ -23052,7 +23052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4357, "fields": { "spell": "time-vortex", @@ -23064,7 +23064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4358, "fields": { "spell": "time-vortex", @@ -23076,7 +23076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4359, "fields": { "spell": "time-vortex", @@ -23088,7 +23088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4360, "fields": { "spell": "time-vortex", @@ -23100,7 +23100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4361, "fields": { "spell": "time-vortex", @@ -23112,7 +23112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4362, "fields": { "spell": "timely-distraction", @@ -23124,7 +23124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4363, "fields": { "spell": "tireless", @@ -23136,7 +23136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4364, "fields": { "spell": "tongue-of-sand", @@ -23148,7 +23148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4365, "fields": { "spell": "tongue-of-sand", @@ -23160,7 +23160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4366, "fields": { "spell": "tongue-tied", @@ -23172,7 +23172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4367, "fields": { "spell": "torrent-of-fire", @@ -23184,7 +23184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4368, "fields": { "spell": "touch-of-the-unliving", @@ -23196,7 +23196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4370, "fields": { "spell": "touch-of-the-unliving", @@ -23208,7 +23208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4371, "fields": { "spell": "touch-of-the-unliving", @@ -23220,7 +23220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4372, "fields": { "spell": "touch-of-the-unliving", @@ -23232,7 +23232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4373, "fields": { "spell": "touch-of-the-unliving", @@ -23244,7 +23244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4374, "fields": { "spell": "touch-of-the-unliving", @@ -23256,7 +23256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4375, "fields": { "spell": "touch-of-the-unliving", @@ -23268,7 +23268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4376, "fields": { "spell": "tracer", @@ -23280,7 +23280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4377, "fields": { "spell": "treasure-chasm", @@ -23292,7 +23292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4378, "fields": { "spell": "tree-heal", @@ -23304,7 +23304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4379, "fields": { "spell": "tree-running", @@ -23316,7 +23316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4380, "fields": { "spell": "tree-speak", @@ -23328,7 +23328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4381, "fields": { "spell": "trench", @@ -23340,7 +23340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4383, "fields": { "spell": "trench", @@ -23352,7 +23352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4384, "fields": { "spell": "trench", @@ -23364,7 +23364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4385, "fields": { "spell": "trench", @@ -23376,7 +23376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4386, "fields": { "spell": "trench", @@ -23388,7 +23388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4387, "fields": { "spell": "trench", @@ -23400,7 +23400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4388, "fields": { "spell": "trench", @@ -23412,7 +23412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4389, "fields": { "spell": "trench", @@ -23424,7 +23424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4390, "fields": { "spell": "trick-question", @@ -23436,7 +23436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4391, "fields": { "spell": "triumph-of-ice", @@ -23448,7 +23448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4392, "fields": { "spell": "twist-the-skein", @@ -23460,7 +23460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4393, "fields": { "spell": "umbral-storm", @@ -23472,7 +23472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4394, "fields": { "spell": "uncontrollable-transformation", @@ -23484,7 +23484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4395, "fields": { "spell": "uncontrollable-transformation", @@ -23496,7 +23496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4397, "fields": { "spell": "uncontrollable-transformation", @@ -23508,7 +23508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4398, "fields": { "spell": "uncontrollable-transformation", @@ -23520,7 +23520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4399, "fields": { "spell": "undermine-armor", @@ -23532,7 +23532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4400, "fields": { "spell": "unholy-defiance", @@ -23544,7 +23544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4401, "fields": { "spell": "unleash-effigy", @@ -23556,7 +23556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4402, "fields": { "spell": "unluck-on-that", @@ -23568,7 +23568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4404, "fields": { "spell": "unluck-on-that", @@ -23580,7 +23580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4405, "fields": { "spell": "unluck-on-that", @@ -23592,7 +23592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4406, "fields": { "spell": "unluck-on-that", @@ -23604,7 +23604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4407, "fields": { "spell": "unluck-on-that", @@ -23616,7 +23616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4408, "fields": { "spell": "unluck-on-that", @@ -23628,7 +23628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4409, "fields": { "spell": "unluck-on-that", @@ -23640,7 +23640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4410, "fields": { "spell": "unluck-on-that", @@ -23652,7 +23652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4411, "fields": { "spell": "unluck-on-that", @@ -23664,7 +23664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4412, "fields": { "spell": "unseen-strangler", @@ -23676,7 +23676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4413, "fields": { "spell": "unseen-strangler", @@ -23688,7 +23688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4414, "fields": { "spell": "vine-trestle", @@ -23700,7 +23700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4415, "fields": { "spell": "vine-trestle", @@ -23712,7 +23712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4417, "fields": { "spell": "vine-trestle", @@ -23724,7 +23724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4418, "fields": { "spell": "vine-trestle", @@ -23736,7 +23736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4419, "fields": { "spell": "vine-trestle", @@ -23748,7 +23748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4420, "fields": { "spell": "vine-trestle", @@ -23760,7 +23760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4421, "fields": { "spell": "vine-trestle", @@ -23772,7 +23772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4422, "fields": { "spell": "vine-trestle", @@ -23784,7 +23784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4423, "fields": { "spell": "vine-trestle", @@ -23796,7 +23796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4424, "fields": { "spell": "visage-of-madness", @@ -23808,7 +23808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4425, "fields": { "spell": "vital-mark", @@ -23820,7 +23820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4426, "fields": { "spell": "vital-mark", @@ -23832,7 +23832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4428, "fields": { "spell": "vital-mark", @@ -23844,7 +23844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4429, "fields": { "spell": "vital-mark", @@ -23856,7 +23856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4430, "fields": { "spell": "vital-mark", @@ -23868,7 +23868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4431, "fields": { "spell": "vital-mark", @@ -23880,7 +23880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4432, "fields": { "spell": "vital-mark", @@ -23892,7 +23892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4433, "fields": { "spell": "vital-mark", @@ -23904,7 +23904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4434, "fields": { "spell": "void-rift", @@ -23916,7 +23916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4435, "fields": { "spell": "void-strike", @@ -23928,7 +23928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4437, "fields": { "spell": "void-strike", @@ -23940,7 +23940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4438, "fields": { "spell": "void-strike", @@ -23952,7 +23952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4439, "fields": { "spell": "void-strike", @@ -23964,7 +23964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4440, "fields": { "spell": "void-strike", @@ -23976,7 +23976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4441, "fields": { "spell": "void-strike", @@ -23988,7 +23988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4442, "fields": { "spell": "void-strike", @@ -24000,7 +24000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4443, "fields": { "spell": "volley-shield", @@ -24012,7 +24012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4444, "fields": { "spell": "vomit-tentacles", @@ -24024,7 +24024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4445, "fields": { "spell": "voorish-sign", @@ -24036,7 +24036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4447, "fields": { "spell": "voorish-sign", @@ -24048,7 +24048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4448, "fields": { "spell": "voorish-sign", @@ -24060,7 +24060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4449, "fields": { "spell": "voorish-sign", @@ -24072,7 +24072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4450, "fields": { "spell": "voorish-sign", @@ -24084,7 +24084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4451, "fields": { "spell": "voorish-sign", @@ -24096,7 +24096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4452, "fields": { "spell": "voorish-sign", @@ -24108,7 +24108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4453, "fields": { "spell": "voorish-sign", @@ -24120,7 +24120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4454, "fields": { "spell": "voorish-sign", @@ -24132,7 +24132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4455, "fields": { "spell": "waft", @@ -24144,7 +24144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4456, "fields": { "spell": "walk-the-twisted-path", @@ -24156,7 +24156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4458, "fields": { "spell": "walk-the-twisted-path", @@ -24168,7 +24168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4459, "fields": { "spell": "walk-the-twisted-path", @@ -24180,7 +24180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4460, "fields": { "spell": "walk-the-twisted-path", @@ -24192,7 +24192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4461, "fields": { "spell": "walking-wall", @@ -24204,7 +24204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4462, "fields": { "spell": "wall-of-time", @@ -24216,7 +24216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4463, "fields": { "spell": "warning-shout", @@ -24228,7 +24228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4464, "fields": { "spell": "warp-mind-and-matter", @@ -24240,7 +24240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4465, "fields": { "spell": "warp-mind-and-matter", @@ -24252,7 +24252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4466, "fields": { "spell": "weapon-of-blood", @@ -24264,7 +24264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4468, "fields": { "spell": "weapon-of-blood", @@ -24276,7 +24276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4469, "fields": { "spell": "weapon-of-blood", @@ -24288,7 +24288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4470, "fields": { "spell": "weapon-of-blood", @@ -24300,7 +24300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4471, "fields": { "spell": "weapon-of-blood", @@ -24312,7 +24312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4472, "fields": { "spell": "weapon-of-blood", @@ -24324,7 +24324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4473, "fields": { "spell": "weapon-of-blood", @@ -24336,7 +24336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4474, "fields": { "spell": "weapon-of-blood", @@ -24348,7 +24348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4475, "fields": { "spell": "weapon-of-blood", @@ -24360,7 +24360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4476, "fields": { "spell": "weilers-ward", @@ -24372,7 +24372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4478, "fields": { "spell": "weilers-ward", @@ -24384,7 +24384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4479, "fields": { "spell": "weilers-ward", @@ -24396,7 +24396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4480, "fields": { "spell": "weilers-ward", @@ -24408,7 +24408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4481, "fields": { "spell": "weilers-ward", @@ -24420,7 +24420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4482, "fields": { "spell": "weilers-ward", @@ -24432,7 +24432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4483, "fields": { "spell": "weilers-ward", @@ -24444,7 +24444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4484, "fields": { "spell": "weilers-ward", @@ -24456,7 +24456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4485, "fields": { "spell": "wild-shield", @@ -24468,7 +24468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4487, "fields": { "spell": "wild-shield", @@ -24480,7 +24480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4488, "fields": { "spell": "wild-shield", @@ -24492,7 +24492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4489, "fields": { "spell": "wild-shield", @@ -24504,7 +24504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4490, "fields": { "spell": "wild-shield", @@ -24516,7 +24516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4491, "fields": { "spell": "wild-shield", @@ -24528,7 +24528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4492, "fields": { "spell": "wind-lash", @@ -24540,7 +24540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4493, "fields": { "spell": "wind-lash", @@ -24552,7 +24552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4494, "fields": { "spell": "wind-lash", @@ -24564,7 +24564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4495, "fields": { "spell": "wind-lash", @@ -24576,7 +24576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4496, "fields": { "spell": "wind-lash", @@ -24588,7 +24588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4497, "fields": { "spell": "wind-lash", @@ -24600,7 +24600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4498, "fields": { "spell": "wind-lash", @@ -24612,7 +24612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4499, "fields": { "spell": "wind-lash", @@ -24624,7 +24624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4500, "fields": { "spell": "wind-lash", @@ -24636,7 +24636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4501, "fields": { "spell": "wind-lash", @@ -24648,7 +24648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4502, "fields": { "spell": "wind-lash", @@ -24660,7 +24660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4503, "fields": { "spell": "wind-lash", @@ -24672,7 +24672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4504, "fields": { "spell": "wind-lash", @@ -24684,7 +24684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4505, "fields": { "spell": "wind-lash", @@ -24696,7 +24696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4506, "fields": { "spell": "wind-lash", @@ -24708,7 +24708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4507, "fields": { "spell": "wind-lash", @@ -24720,7 +24720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4508, "fields": { "spell": "wind-lash", @@ -24732,7 +24732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4509, "fields": { "spell": "wind-lash", @@ -24744,7 +24744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4510, "fields": { "spell": "wind-lash", @@ -24756,7 +24756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4511, "fields": { "spell": "wind-lash", @@ -24768,7 +24768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4512, "fields": { "spell": "wind-lash", @@ -24780,7 +24780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4513, "fields": { "spell": "wind-of-the-hereafter", @@ -24792,7 +24792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4514, "fields": { "spell": "wind-tunnel", @@ -24804,7 +24804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4515, "fields": { "spell": "winterdark", @@ -24816,7 +24816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4516, "fields": { "spell": "winters-radiance", @@ -24828,7 +24828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4517, "fields": { "spell": "wintry-glide", @@ -24840,7 +24840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4518, "fields": { "spell": "withered-sight", @@ -24852,7 +24852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4520, "fields": { "spell": "withered-sight", @@ -24864,7 +24864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4521, "fields": { "spell": "withered-sight", @@ -24876,7 +24876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4522, "fields": { "spell": "withered-sight", @@ -24888,7 +24888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4523, "fields": { "spell": "withered-sight", @@ -24900,7 +24900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4524, "fields": { "spell": "withered-sight", @@ -24912,7 +24912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4525, "fields": { "spell": "withered-sight", @@ -24924,7 +24924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4526, "fields": { "spell": "withered-sight", @@ -24936,7 +24936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4527, "fields": { "spell": "withered-sight", @@ -24948,7 +24948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4528, "fields": { "spell": "wolfsong", @@ -24960,7 +24960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4530, "fields": { "spell": "wolfsong", @@ -24972,7 +24972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4531, "fields": { "spell": "wolfsong", @@ -24984,7 +24984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4532, "fields": { "spell": "wolfsong", @@ -24996,7 +24996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4533, "fields": { "spell": "wolfsong", @@ -25008,7 +25008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4534, "fields": { "spell": "wolfsong", @@ -25020,7 +25020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4535, "fields": { "spell": "wolfsong", @@ -25032,7 +25032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4536, "fields": { "spell": "wolfsong", @@ -25044,7 +25044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4537, "fields": { "spell": "wolfsong", @@ -25056,7 +25056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4538, "fields": { "spell": "word-of-misfortune", @@ -25068,7 +25068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4539, "fields": { "spell": "wresting-wind", @@ -25080,7 +25080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4540, "fields": { "spell": "writhing-arms", @@ -25092,7 +25092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4542, "fields": { "spell": "writhing-arms", @@ -25104,7 +25104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4543, "fields": { "spell": "writhing-arms", @@ -25116,7 +25116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4544, "fields": { "spell": "writhing-arms", @@ -25128,7 +25128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4545, "fields": { "spell": "writhing-arms", @@ -25140,7 +25140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4546, "fields": { "spell": "writhing-arms", @@ -25152,7 +25152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4547, "fields": { "spell": "writhing-arms", @@ -25164,7 +25164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4548, "fields": { "spell": "writhing-arms", @@ -25176,7 +25176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4549, "fields": { "spell": "writhing-arms", @@ -25188,7 +25188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4550, "fields": { "spell": "yellow-sign", diff --git a/data/v2/kobold-press/deepmx/SpellCastingOption.json b/data/v2/kobold-press/deepmx/SpellCastingOption.json new file mode 100644 index 00000000..c1400529 --- /dev/null +++ b/data/v2/kobold-press/deepmx/SpellCastingOption.json @@ -0,0 +1,2030 @@ +[ +{ + "model": "api_v2.spellcastingoption", + "pk": 4726, + "fields": { + "spell": "absolute-command", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4728, + "fields": { + "spell": "absolute-command", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4729, + "fields": { + "spell": "absolute-command", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4730, + "fields": { + "spell": "absolute-command", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4731, + "fields": { + "spell": "absolute-command", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4732, + "fields": { + "spell": "absolute-command", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4733, + "fields": { + "spell": "amplify-ley-field", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4734, + "fields": { + "spell": "animate-construct", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4736, + "fields": { + "spell": "animate-construct", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4737, + "fields": { + "spell": "animate-construct", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4738, + "fields": { + "spell": "animate-construct", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4739, + "fields": { + "spell": "animate-construct", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4740, + "fields": { + "spell": "animate-construct", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4741, + "fields": { + "spell": "animate-construct", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4742, + "fields": { + "spell": "animate-construct", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4743, + "fields": { + "spell": "animate-construct", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4744, + "fields": { + "spell": "anomalous-object", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4745, + "fields": { + "spell": "armored-heart", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4746, + "fields": { + "spell": "armored-shell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4748, + "fields": { + "spell": "armored-shell", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4749, + "fields": { + "spell": "armored-shell", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4750, + "fields": { + "spell": "armored-shell", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4751, + "fields": { + "spell": "armored-shell", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4752, + "fields": { + "spell": "armored-shell", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4753, + "fields": { + "spell": "armored-shell", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4754, + "fields": { + "spell": "armored-shell", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4755, + "fields": { + "spell": "armored-shell", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4756, + "fields": { + "spell": "banshee-wail", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4757, + "fields": { + "spell": "beguiling-gift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4758, + "fields": { + "spell": "borrowing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4760, + "fields": { + "spell": "borrowing", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4761, + "fields": { + "spell": "borrowing", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4762, + "fields": { + "spell": "borrowing", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4763, + "fields": { + "spell": "borrowing", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4764, + "fields": { + "spell": "borrowing", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4765, + "fields": { + "spell": "borrowing", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4766, + "fields": { + "spell": "call-the-hunter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4767, + "fields": { + "spell": "circle-of-devestation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4768, + "fields": { + "spell": "cloying-darkness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4770, + "fields": { + "spell": "cloying-darkness", + "type": "slot_level_2", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4771, + "fields": { + "spell": "cloying-darkness", + "type": "slot_level_3", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4772, + "fields": { + "spell": "cloying-darkness", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4773, + "fields": { + "spell": "cloying-darkness", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4774, + "fields": { + "spell": "cloying-darkness", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4775, + "fields": { + "spell": "cloying-darkness", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4776, + "fields": { + "spell": "cloying-darkness", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4777, + "fields": { + "spell": "cloying-darkness", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4778, + "fields": { + "spell": "cosmic-alignment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4779, + "fields": { + "spell": "cosmic-alignment", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4780, + "fields": { + "spell": "cruor-of-visions", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4781, + "fields": { + "spell": "extract-foyson", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4782, + "fields": { + "spell": "extract-foyson", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4784, + "fields": { + "spell": "extract-foyson", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4785, + "fields": { + "spell": "extract-foyson", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4786, + "fields": { + "spell": "extract-foyson", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4787, + "fields": { + "spell": "extract-foyson", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4788, + "fields": { + "spell": "extract-foyson", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4789, + "fields": { + "spell": "extract-foyson", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4790, + "fields": { + "spell": "extract-foyson", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4791, + "fields": { + "spell": "extract-foyson", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4792, + "fields": { + "spell": "find-the-flaw", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4793, + "fields": { + "spell": "gear-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4794, + "fields": { + "spell": "gift-of-azathoth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4796, + "fields": { + "spell": "gift-of-azathoth", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4797, + "fields": { + "spell": "gift-of-azathoth", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4798, + "fields": { + "spell": "gift-of-azathoth", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4799, + "fields": { + "spell": "gift-of-azathoth", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4800, + "fields": { + "spell": "gift-of-azathoth", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4801, + "fields": { + "spell": "gift-of-azathoth", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4802, + "fields": { + "spell": "gift-of-azathoth", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4803, + "fields": { + "spell": "greater-ley-pulse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4805, + "fields": { + "spell": "greater-ley-pulse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4806, + "fields": { + "spell": "greater-ley-pulse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4807, + "fields": { + "spell": "gremlins", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4809, + "fields": { + "spell": "gremlins", + "type": "slot_level_5", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4810, + "fields": { + "spell": "gremlins", + "type": "slot_level_6", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4811, + "fields": { + "spell": "gremlins", + "type": "slot_level_7", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4812, + "fields": { + "spell": "gremlins", + "type": "slot_level_8", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4813, + "fields": { + "spell": "gremlins", + "type": "slot_level_9", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4814, + "fields": { + "spell": "grinding-gears", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4815, + "fields": { + "spell": "hearth-charm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4816, + "fields": { + "spell": "hellforging", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4817, + "fields": { + "spell": "hellforging", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4818, + "fields": { + "spell": "hods-gift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4820, + "fields": { + "spell": "hods-gift", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4821, + "fields": { + "spell": "hods-gift", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4822, + "fields": { + "spell": "hods-gift", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4823, + "fields": { + "spell": "hods-gift", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4824, + "fields": { + "spell": "imbue-spell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4825, + "fields": { + "spell": "imbue-spell", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4827, + "fields": { + "spell": "imbue-spell", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4828, + "fields": { + "spell": "imbue-spell", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4829, + "fields": { + "spell": "imbue-spell", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4830, + "fields": { + "spell": "imbue-spell", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4831, + "fields": { + "spell": "jotuns-jest", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4832, + "fields": { + "spell": "land-bond", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4833, + "fields": { + "spell": "lesser-ley-pulse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4835, + "fields": { + "spell": "lesser-ley-pulse", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4836, + "fields": { + "spell": "lesser-ley-pulse", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4837, + "fields": { + "spell": "lesser-ley-pulse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4838, + "fields": { + "spell": "lesser-ley-pulse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4839, + "fields": { + "spell": "ley-disruption", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4840, + "fields": { + "spell": "ley-energy-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4842, + "fields": { + "spell": "ley-energy-bolt", + "type": "slot_level_4", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4843, + "fields": { + "spell": "ley-energy-bolt", + "type": "slot_level_5", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4844, + "fields": { + "spell": "ley-energy-bolt", + "type": "slot_level_6", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4845, + "fields": { + "spell": "ley-energy-bolt", + "type": "slot_level_7", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4846, + "fields": { + "spell": "ley-energy-bolt", + "type": "slot_level_8", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4847, + "fields": { + "spell": "ley-energy-bolt", + "type": "slot_level_9", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4848, + "fields": { + "spell": "ley-leech", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4850, + "fields": { + "spell": "ley-leech", + "type": "slot_level_6", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4851, + "fields": { + "spell": "ley-leech", + "type": "slot_level_7", + "damage_roll": "10d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4852, + "fields": { + "spell": "ley-leech", + "type": "slot_level_8", + "damage_roll": "11d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4853, + "fields": { + "spell": "ley-leech", + "type": "slot_level_9", + "damage_roll": "12d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4854, + "fields": { + "spell": "ley-sense", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4855, + "fields": { + "spell": "ley-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4856, + "fields": { + "spell": "ley-surge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4857, + "fields": { + "spell": "ley-whip", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4858, + "fields": { + "spell": "lokis-gift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4859, + "fields": { + "spell": "machine-sacrifice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4860, + "fields": { + "spell": "machine-speech", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4861, + "fields": { + "spell": "machines-load", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4863, + "fields": { + "spell": "machines-load", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4864, + "fields": { + "spell": "machines-load", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4865, + "fields": { + "spell": "machines-load", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4866, + "fields": { + "spell": "machines-load", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4867, + "fields": { + "spell": "machines-load", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4868, + "fields": { + "spell": "machines-load", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4869, + "fields": { + "spell": "machines-load", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4870, + "fields": { + "spell": "machines-load", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4871, + "fields": { + "spell": "mass-blade-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4872, + "fields": { + "spell": "mass-repair-metal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4874, + "fields": { + "spell": "mass-repair-metal", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4875, + "fields": { + "spell": "mass-repair-metal", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4876, + "fields": { + "spell": "mass-repair-metal", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4877, + "fields": { + "spell": "mass-repair-metal", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4878, + "fields": { + "spell": "mechanical-union", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4879, + "fields": { + "spell": "molechs-blessing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4880, + "fields": { + "spell": "move-the-cosmic-wheel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4881, + "fields": { + "spell": "overclock", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4882, + "fields": { + "spell": "power-word-restore", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4883, + "fields": { + "spell": "read-memory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4884, + "fields": { + "spell": "repair-metal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4886, + "fields": { + "spell": "repair-metal", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4887, + "fields": { + "spell": "repair-metal", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4888, + "fields": { + "spell": "repair-metal", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4889, + "fields": { + "spell": "repair-metal", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4890, + "fields": { + "spell": "repair-metal", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4891, + "fields": { + "spell": "repair-metal", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4892, + "fields": { + "spell": "repair-metal", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4893, + "fields": { + "spell": "risen-road", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4894, + "fields": { + "spell": "robe-of-shards", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4895, + "fields": { + "spell": "shadow-realm-gateway", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4896, + "fields": { + "spell": "shadow-realm-gateway", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4897, + "fields": { + "spell": "shield-of-star-and-shadow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4898, + "fields": { + "spell": "snowblind-stare", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4899, + "fields": { + "spell": "soothsayers-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4900, + "fields": { + "spell": "soul-of-the-machine", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4901, + "fields": { + "spell": "sphere-of-order", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4902, + "fields": { + "spell": "spire-of-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4903, + "fields": { + "spell": "strength-of-the-underworld", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4904, + "fields": { + "spell": "summon-old-ones-avatar", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4905, + "fields": { + "spell": "summon-old-ones-avatar", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4906, + "fields": { + "spell": "tick-stop", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4907, + "fields": { + "spell": "timeless-engine", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4908, + "fields": { + "spell": "winding-key", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4909, + "fields": { + "spell": "wotans-rede", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4910, + "fields": { + "spell": "wotans-rede", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4911, + "fields": { + "spell": "write-memory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +} +] diff --git a/data/v2/kobold-press/kp/CastingOption.json b/data/v2/kobold-press/kp/SpellCastingOption.json similarity index 82% rename from data/v2/kobold-press/kp/CastingOption.json rename to data/v2/kobold-press/kp/SpellCastingOption.json index 52b0bed7..32ff66f3 100644 --- a/data/v2/kobold-press/kp/CastingOption.json +++ b/data/v2/kobold-press/kp/SpellCastingOption.json @@ -1,6 +1,6 @@ [ { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4912, "fields": { "spell": "ambush", @@ -12,7 +12,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4914, "fields": { "spell": "ambush", @@ -24,7 +24,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4915, "fields": { "spell": "ambush", @@ -36,7 +36,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4916, "fields": { "spell": "ambush", @@ -48,7 +48,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4917, "fields": { "spell": "ambush", @@ -60,7 +60,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4918, "fields": { "spell": "ambush", @@ -72,7 +72,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4919, "fields": { "spell": "ambush", @@ -84,7 +84,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4920, "fields": { "spell": "ambush", @@ -96,7 +96,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4921, "fields": { "spell": "ambush", @@ -108,7 +108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4922, "fields": { "spell": "blood-strike", @@ -120,7 +120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4923, "fields": { "spell": "blood-strike", @@ -132,7 +132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4924, "fields": { "spell": "conjure-manabane-swarm", @@ -144,7 +144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4925, "fields": { "spell": "curse-of-formlessness", @@ -156,7 +156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4926, "fields": { "spell": "delay-passing", @@ -168,7 +168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4927, "fields": { "spell": "doom-of-ancient-decrepitude", @@ -180,7 +180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4928, "fields": { "spell": "doom-of-voracity", @@ -192,7 +192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4930, "fields": { "spell": "doom-of-voracity", @@ -204,7 +204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4931, "fields": { "spell": "doom-of-voracity", @@ -216,7 +216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4932, "fields": { "spell": "doom-of-voracity", @@ -228,7 +228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4933, "fields": { "spell": "doom-of-voracity", @@ -240,7 +240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4934, "fields": { "spell": "doom-of-voracity", @@ -252,7 +252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4935, "fields": { "spell": "doom-of-voracity", @@ -264,7 +264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4936, "fields": { "spell": "feed-the-worms", @@ -276,7 +276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4937, "fields": { "spell": "greater-ley-protection", @@ -288,7 +288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4939, "fields": { "spell": "greater-ley-protection", @@ -300,7 +300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4940, "fields": { "spell": "greater-ley-protection", @@ -312,7 +312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4941, "fields": { "spell": "hirvsths-call", @@ -324,7 +324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4943, "fields": { "spell": "hirvsths-call", @@ -336,7 +336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4944, "fields": { "spell": "hirvsths-call", @@ -348,7 +348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4945, "fields": { "spell": "hirvsths-call", @@ -360,7 +360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4946, "fields": { "spell": "hirvsths-call", @@ -372,7 +372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4947, "fields": { "spell": "hirvsths-call", @@ -384,7 +384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4948, "fields": { "spell": "incantation-of-lies-made-truth", @@ -396,7 +396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4949, "fields": { "spell": "incantation-of-lies-made-truth", @@ -408,7 +408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4950, "fields": { "spell": "jeweled-fissure", @@ -420,7 +420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4951, "fields": { "spell": "lesser-ley-protection", @@ -432,7 +432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4953, "fields": { "spell": "lesser-ley-protection", @@ -444,7 +444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4954, "fields": { "spell": "lesser-ley-protection", @@ -456,7 +456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4955, "fields": { "spell": "lesser-ley-protection", @@ -468,7 +468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4956, "fields": { "spell": "lesser-ley-protection", @@ -480,7 +480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4957, "fields": { "spell": "ley-disturbance", @@ -492,7 +492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4958, "fields": { "spell": "locate-red-portal", @@ -504,7 +504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4959, "fields": { "spell": "moons-respite", @@ -516,7 +516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4960, "fields": { "spell": "moons-respite", @@ -528,7 +528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4961, "fields": { "spell": "morphic-flux", @@ -540,7 +540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4962, "fields": { "spell": "open-red-portal", @@ -552,7 +552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4963, "fields": { "spell": "peruns-doom", @@ -564,7 +564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4965, "fields": { "spell": "peruns-doom", @@ -576,7 +576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4966, "fields": { "spell": "peruns-doom", @@ -588,7 +588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4967, "fields": { "spell": "peruns-doom", @@ -600,7 +600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4968, "fields": { "spell": "peruns-doom", @@ -612,7 +612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4969, "fields": { "spell": "peruns-doom", @@ -624,7 +624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4970, "fields": { "spell": "peruns-doom", @@ -636,7 +636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4971, "fields": { "spell": "reset-red-portal", @@ -648,7 +648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4973, "fields": { "spell": "reset-red-portal", @@ -660,7 +660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4974, "fields": { "spell": "reset-red-portal", @@ -672,7 +672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4975, "fields": { "spell": "reset-red-portal", @@ -684,7 +684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4976, "fields": { "spell": "reset-red-portal", @@ -696,7 +696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4977, "fields": { "spell": "sanguine-spear", @@ -708,7 +708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4979, "fields": { "spell": "sanguine-spear", @@ -720,7 +720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4980, "fields": { "spell": "sanguine-spear", @@ -732,7 +732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4981, "fields": { "spell": "sanguine-spear", @@ -744,7 +744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4982, "fields": { "spell": "sanguine-spear", @@ -756,7 +756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4983, "fields": { "spell": "sanguine-spear", @@ -768,7 +768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4984, "fields": { "spell": "sanguine-spear", @@ -780,7 +780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4985, "fields": { "spell": "sanguine-spear", @@ -792,7 +792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4986, "fields": { "spell": "scattered-images", @@ -804,7 +804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4987, "fields": { "spell": "seal-red-portal", @@ -816,7 +816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4988, "fields": { "spell": "selfish-wish", @@ -828,7 +828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4989, "fields": { "spell": "shadow-spawn", @@ -840,7 +840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4990, "fields": { "spell": "shadow-tree", @@ -852,7 +852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4991, "fields": { "spell": "shadows-brand", @@ -864,7 +864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4992, "fields": { "spell": "stigmata-of-the-red-goddess", @@ -876,7 +876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4994, "fields": { "spell": "stigmata-of-the-red-goddess", @@ -888,7 +888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4995, "fields": { "spell": "stigmata-of-the-red-goddess", @@ -900,7 +900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4996, "fields": { "spell": "stigmata-of-the-red-goddess", @@ -912,7 +912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4997, "fields": { "spell": "stigmata-of-the-red-goddess", @@ -924,7 +924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4998, "fields": { "spell": "stigmata-of-the-red-goddess", @@ -936,7 +936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4999, "fields": { "spell": "stigmata-of-the-red-goddess", @@ -948,7 +948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5000, "fields": { "spell": "stigmata-of-the-red-goddess", @@ -960,7 +960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5001, "fields": { "spell": "the-black-gods-blessing", @@ -972,7 +972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5002, "fields": { "spell": "the-black-gods-blessing", @@ -984,7 +984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5003, "fields": { "spell": "wield-soul", @@ -996,7 +996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5004, "fields": { "spell": "winged-spies", diff --git a/data/v2/kobold-press/toh/CastingOption.json b/data/v2/kobold-press/toh/SpellCastingOption.json similarity index 82% rename from data/v2/kobold-press/toh/CastingOption.json rename to data/v2/kobold-press/toh/SpellCastingOption.json index 2f1f7704..984d7a76 100644 --- a/data/v2/kobold-press/toh/CastingOption.json +++ b/data/v2/kobold-press/toh/SpellCastingOption.json @@ -1,6 +1,6 @@ [ { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 1, "fields": { "spell": "ambush-chute", @@ -12,7 +12,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 3, "fields": { "spell": "ambush-chute", @@ -24,7 +24,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4, "fields": { "spell": "ambush-chute", @@ -36,7 +36,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5, "fields": { "spell": "ambush-chute", @@ -48,7 +48,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6, "fields": { "spell": "ambush-chute", @@ -60,7 +60,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 7, "fields": { "spell": "ambush-chute", @@ -72,7 +72,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 8, "fields": { "spell": "ambush-chute", @@ -84,7 +84,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 9, "fields": { "spell": "armored-formation", @@ -96,7 +96,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 10, "fields": { "spell": "babble", @@ -108,7 +108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 11, "fields": { "spell": "battle-mind", @@ -120,7 +120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 12, "fields": { "spell": "battle-mind", @@ -132,7 +132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 13, "fields": { "spell": "beast-within", @@ -144,7 +144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 15, "fields": { "spell": "beast-within", @@ -156,7 +156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 16, "fields": { "spell": "beast-within", @@ -168,7 +168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 17, "fields": { "spell": "beast-within", @@ -180,7 +180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 18, "fields": { "spell": "beast-within", @@ -192,7 +192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 19, "fields": { "spell": "beast-within", @@ -204,7 +204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 20, "fields": { "spell": "betraying-bauble", @@ -216,7 +216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 21, "fields": { "spell": "bloodlust", @@ -228,7 +228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 22, "fields": { "spell": "blunted-edge", @@ -240,7 +240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 24, "fields": { "spell": "blunted-edge", @@ -252,7 +252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 25, "fields": { "spell": "blunted-edge", @@ -264,7 +264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 26, "fields": { "spell": "blunted-edge", @@ -276,7 +276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 27, "fields": { "spell": "blunted-edge", @@ -288,7 +288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 28, "fields": { "spell": "blunted-edge", @@ -300,7 +300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 29, "fields": { "spell": "blunted-edge", @@ -312,7 +312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 30, "fields": { "spell": "bolster-fortifications", @@ -324,7 +324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 32, "fields": { "spell": "bolster-fortifications", @@ -336,7 +336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 33, "fields": { "spell": "bolster-fortifications", @@ -348,7 +348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 34, "fields": { "spell": "bolster-fortifications", @@ -360,7 +360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 35, "fields": { "spell": "bolster-fortifications", @@ -372,7 +372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 36, "fields": { "spell": "bolster-fortifications", @@ -384,7 +384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 37, "fields": { "spell": "bolster-fortifications", @@ -396,7 +396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 38, "fields": { "spell": "bound-haze", @@ -408,7 +408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 40, "fields": { "spell": "bound-haze", @@ -420,7 +420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 41, "fields": { "spell": "bound-haze", @@ -432,7 +432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 42, "fields": { "spell": "bound-haze", @@ -444,7 +444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 43, "fields": { "spell": "bound-haze", @@ -456,7 +456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 44, "fields": { "spell": "bound-haze", @@ -468,7 +468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 45, "fields": { "spell": "bound-haze", @@ -480,7 +480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 46, "fields": { "spell": "burst-stone", @@ -492,7 +492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 48, "fields": { "spell": "burst-stone", @@ -504,7 +504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 49, "fields": { "spell": "burst-stone", @@ -516,7 +516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 50, "fields": { "spell": "burst-stone", @@ -528,7 +528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 51, "fields": { "spell": "burst-stone", @@ -540,7 +540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 52, "fields": { "spell": "burst-stone", @@ -552,7 +552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 53, "fields": { "spell": "burst-stone", @@ -564,7 +564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 54, "fields": { "spell": "butterfly-effect", @@ -576,7 +576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 56, "fields": { "spell": "butterfly-effect", @@ -588,7 +588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 57, "fields": { "spell": "butterfly-effect", @@ -600,7 +600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 58, "fields": { "spell": "butterfly-effect", @@ -612,7 +612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 59, "fields": { "spell": "butterfly-effect", @@ -624,7 +624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 60, "fields": { "spell": "butterfly-effect", @@ -636,7 +636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 61, "fields": { "spell": "butterfly-effect", @@ -648,7 +648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 62, "fields": { "spell": "butterfly-effect", @@ -660,7 +660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 63, "fields": { "spell": "calm-beasts", @@ -672,7 +672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 64, "fields": { "spell": "clear-the-board", @@ -684,7 +684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 65, "fields": { "spell": "conjure-construct", @@ -696,7 +696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 67, "fields": { "spell": "conjure-construct", @@ -708,7 +708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 68, "fields": { "spell": "conjure-construct", @@ -720,7 +720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 69, "fields": { "spell": "conjure-construct", @@ -732,7 +732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 70, "fields": { "spell": "conjure-spectral-allies", @@ -744,7 +744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 72, "fields": { "spell": "conjure-spectral-allies", @@ -756,7 +756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 73, "fields": { "spell": "conjure-spectral-allies", @@ -768,7 +768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 74, "fields": { "spell": "convey-inner-peace", @@ -780,7 +780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 75, "fields": { "spell": "crown-of-thorns", @@ -792,7 +792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 76, "fields": { "spell": "damaging-intel", @@ -804,7 +804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 77, "fields": { "spell": "deadly-salvo", @@ -816,7 +816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 78, "fields": { "spell": "divine-retribution", @@ -828,7 +828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 80, "fields": { "spell": "divine-retribution", @@ -840,7 +840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 81, "fields": { "spell": "divine-retribution", @@ -852,7 +852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 82, "fields": { "spell": "divine-retribution", @@ -864,7 +864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 83, "fields": { "spell": "divine-retribution", @@ -876,7 +876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 84, "fields": { "spell": "divine-retribution", @@ -888,7 +888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 85, "fields": { "spell": "divine-retribution", @@ -900,7 +900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 86, "fields": { "spell": "divine-retribution", @@ -912,7 +912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 87, "fields": { "spell": "divine-retribution", @@ -924,7 +924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 88, "fields": { "spell": "dreamwine", @@ -936,7 +936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 89, "fields": { "spell": "emerald-eyes", @@ -948,7 +948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 91, "fields": { "spell": "emerald-eyes", @@ -960,7 +960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 92, "fields": { "spell": "emerald-eyes", @@ -972,7 +972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 93, "fields": { "spell": "emerald-eyes", @@ -984,7 +984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 94, "fields": { "spell": "emerald-eyes", @@ -996,7 +996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 95, "fields": { "spell": "emerald-eyes", @@ -1008,7 +1008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 96, "fields": { "spell": "emerald-eyes", @@ -1020,7 +1020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 97, "fields": { "spell": "enchanted-bloom", @@ -1032,7 +1032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 99, "fields": { "spell": "enchanted-bloom", @@ -1044,7 +1044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 100, "fields": { "spell": "enchanted-bloom", @@ -1056,7 +1056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 101, "fields": { "spell": "enchanted-bloom", @@ -1068,7 +1068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 102, "fields": { "spell": "enchanted-bloom", @@ -1080,7 +1080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 103, "fields": { "spell": "eruption", @@ -1092,7 +1092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 104, "fields": { "spell": "feint", @@ -1104,7 +1104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 105, "fields": { "spell": "fey-food", @@ -1116,7 +1116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 107, "fields": { "spell": "fey-food", @@ -1128,7 +1128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 108, "fields": { "spell": "fey-food", @@ -1140,7 +1140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 109, "fields": { "spell": "fey-food", @@ -1152,7 +1152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 110, "fields": { "spell": "fey-food", @@ -1164,7 +1164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 111, "fields": { "spell": "fey-food", @@ -1176,7 +1176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 112, "fields": { "spell": "fey-food", @@ -1188,7 +1188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 113, "fields": { "spell": "fey-touched-blade", @@ -1200,7 +1200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 115, "fields": { "spell": "fey-touched-blade", @@ -1212,7 +1212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 116, "fields": { "spell": "fey-touched-blade", @@ -1224,7 +1224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 117, "fields": { "spell": "fey-touched-blade", @@ -1236,7 +1236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 118, "fields": { "spell": "fey-touched-blade", @@ -1248,7 +1248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 119, "fields": { "spell": "fey-touched-blade", @@ -1260,7 +1260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 120, "fields": { "spell": "fey-touched-blade", @@ -1272,7 +1272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 121, "fields": { "spell": "fey-touched-blade", @@ -1284,7 +1284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 122, "fields": { "spell": "forced-reposition", @@ -1296,7 +1296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 124, "fields": { "spell": "forced-reposition", @@ -1308,7 +1308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 125, "fields": { "spell": "forced-reposition", @@ -1320,7 +1320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 126, "fields": { "spell": "forced-reposition", @@ -1332,7 +1332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 127, "fields": { "spell": "forced-reposition", @@ -1344,7 +1344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 128, "fields": { "spell": "forced-reposition", @@ -1356,7 +1356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 129, "fields": { "spell": "furious-wail", @@ -1368,7 +1368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 130, "fields": { "spell": "fuse-armor", @@ -1380,7 +1380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 132, "fields": { "spell": "fuse-armor", @@ -1392,7 +1392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 133, "fields": { "spell": "fuse-armor", @@ -1404,7 +1404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 134, "fields": { "spell": "fuse-armor", @@ -1416,7 +1416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 135, "fields": { "spell": "fuse-armor", @@ -1428,7 +1428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 136, "fields": { "spell": "fuse-armor", @@ -1440,7 +1440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 137, "fields": { "spell": "fuse-armor", @@ -1452,7 +1452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 138, "fields": { "spell": "fuse-armor", @@ -1464,7 +1464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 139, "fields": { "spell": "gale", @@ -1476,7 +1476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 140, "fields": { "spell": "glare", @@ -1488,7 +1488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 141, "fields": { "spell": "high-ground", @@ -1500,7 +1500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 143, "fields": { "spell": "high-ground", @@ -1512,7 +1512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 144, "fields": { "spell": "high-ground", @@ -1524,7 +1524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 145, "fields": { "spell": "high-ground", @@ -1536,7 +1536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 146, "fields": { "spell": "high-ground", @@ -1548,7 +1548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 147, "fields": { "spell": "high-ground", @@ -1560,7 +1560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 148, "fields": { "spell": "high-ground", @@ -1572,7 +1572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 149, "fields": { "spell": "immolating-gibbet", @@ -1584,7 +1584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 150, "fields": { "spell": "inexorable-summons", @@ -1596,7 +1596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 151, "fields": { "spell": "instant-armored-vehicle", @@ -1608,7 +1608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 152, "fields": { "spell": "invested-champion", @@ -1620,7 +1620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 153, "fields": { "spell": "iron-gut", @@ -1632,7 +1632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 155, "fields": { "spell": "iron-gut", @@ -1644,7 +1644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 156, "fields": { "spell": "iron-gut", @@ -1656,7 +1656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 157, "fields": { "spell": "iron-gut", @@ -1668,7 +1668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 158, "fields": { "spell": "iron-gut", @@ -1680,7 +1680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 159, "fields": { "spell": "iron-gut", @@ -1692,7 +1692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 160, "fields": { "spell": "iron-gut", @@ -1704,7 +1704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 161, "fields": { "spell": "jagged-forcelance", @@ -1716,7 +1716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 163, "fields": { "spell": "jagged-forcelance", @@ -1728,7 +1728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 164, "fields": { "spell": "jagged-forcelance", @@ -1740,7 +1740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 165, "fields": { "spell": "jagged-forcelance", @@ -1752,7 +1752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 166, "fields": { "spell": "jagged-forcelance", @@ -1764,7 +1764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 167, "fields": { "spell": "jagged-forcelance", @@ -1776,7 +1776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 168, "fields": { "spell": "jagged-forcelance", @@ -1788,7 +1788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 169, "fields": { "spell": "jarring-growl", @@ -1800,7 +1800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 170, "fields": { "spell": "lance", @@ -1812,7 +1812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 171, "fields": { "spell": "less-fool-i", @@ -1824,7 +1824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 173, "fields": { "spell": "less-fool-i", @@ -1836,7 +1836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 174, "fields": { "spell": "less-fool-i", @@ -1848,7 +1848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 175, "fields": { "spell": "less-fool-i", @@ -1860,7 +1860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 176, "fields": { "spell": "less-fool-i", @@ -1872,7 +1872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 177, "fields": { "spell": "less-fool-i", @@ -1884,7 +1884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 178, "fields": { "spell": "less-fool-i", @@ -1896,7 +1896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 179, "fields": { "spell": "less-fool-i", @@ -1908,7 +1908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 180, "fields": { "spell": "less-fool-i", @@ -1920,7 +1920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 181, "fields": { "spell": "life-burst", @@ -1932,7 +1932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 182, "fields": { "spell": "lightless-torch", @@ -1944,7 +1944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 184, "fields": { "spell": "lightless-torch", @@ -1956,7 +1956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 185, "fields": { "spell": "lightless-torch", @@ -1968,7 +1968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 186, "fields": { "spell": "lightless-torch", @@ -1980,7 +1980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 187, "fields": { "spell": "lightless-torch", @@ -1992,7 +1992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 188, "fields": { "spell": "lightless-torch", @@ -2004,7 +2004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 189, "fields": { "spell": "lightless-torch", @@ -2016,7 +2016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 190, "fields": { "spell": "lightless-torch", @@ -2028,7 +2028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 191, "fields": { "spell": "lightless-torch", @@ -2040,7 +2040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 192, "fields": { "spell": "long-game", @@ -2052,7 +2052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 193, "fields": { "spell": "magma-spray", @@ -2064,7 +2064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 195, "fields": { "spell": "magma-spray", @@ -2076,7 +2076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 196, "fields": { "spell": "magma-spray", @@ -2088,7 +2088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 197, "fields": { "spell": "magma-spray", @@ -2100,7 +2100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 198, "fields": { "spell": "magma-spray", @@ -2112,7 +2112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 199, "fields": { "spell": "magma-spray", @@ -2124,7 +2124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 200, "fields": { "spell": "magma-spray", @@ -2136,7 +2136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 201, "fields": { "spell": "magma-spray", @@ -2148,7 +2148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 202, "fields": { "spell": "mantle-of-the-brave", @@ -2160,7 +2160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 203, "fields": { "spell": "martyrs-rally", @@ -2172,7 +2172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 204, "fields": { "spell": "mass-faerie-fire", @@ -2184,7 +2184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 205, "fields": { "spell": "misdirection", @@ -2196,7 +2196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 206, "fields": { "spell": "mud", @@ -2208,7 +2208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 207, "fields": { "spell": "muted-foe", @@ -2220,7 +2220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 209, "fields": { "spell": "muted-foe", @@ -2232,7 +2232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 210, "fields": { "spell": "muted-foe", @@ -2244,7 +2244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 211, "fields": { "spell": "muted-foe", @@ -2256,7 +2256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 212, "fields": { "spell": "muted-foe", @@ -2268,7 +2268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 213, "fields": { "spell": "muted-foe", @@ -2280,7 +2280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 214, "fields": { "spell": "muted-foe", @@ -2292,7 +2292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 215, "fields": { "spell": "muted-foe", @@ -2304,7 +2304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 216, "fields": { "spell": "muted-foe", @@ -2316,7 +2316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 217, "fields": { "spell": "never-surrender", @@ -2328,7 +2328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 219, "fields": { "spell": "never-surrender", @@ -2340,7 +2340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 220, "fields": { "spell": "never-surrender", @@ -2352,7 +2352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 221, "fields": { "spell": "never-surrender", @@ -2364,7 +2364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 222, "fields": { "spell": "never-surrender", @@ -2376,7 +2376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 223, "fields": { "spell": "never-surrender", @@ -2388,7 +2388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 224, "fields": { "spell": "never-surrender", @@ -2400,7 +2400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 225, "fields": { "spell": "oathbound-implement", @@ -2412,7 +2412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 226, "fields": { "spell": "outmaneuver", @@ -2424,7 +2424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 227, "fields": { "spell": "oversized-paws", @@ -2436,7 +2436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 229, "fields": { "spell": "oversized-paws", @@ -2448,7 +2448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 230, "fields": { "spell": "oversized-paws", @@ -2460,7 +2460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 231, "fields": { "spell": "oversized-paws", @@ -2472,7 +2472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 232, "fields": { "spell": "oversized-paws", @@ -2484,7 +2484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 233, "fields": { "spell": "oversized-paws", @@ -2496,7 +2496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 234, "fields": { "spell": "oversized-paws", @@ -2508,7 +2508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 235, "fields": { "spell": "oversized-paws", @@ -2520,7 +2520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 236, "fields": { "spell": "pincer", @@ -2532,7 +2532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 238, "fields": { "spell": "pincer", @@ -2544,7 +2544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 239, "fields": { "spell": "pincer", @@ -2556,7 +2556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 240, "fields": { "spell": "pincer", @@ -2568,7 +2568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 241, "fields": { "spell": "pipers-lure", @@ -2580,7 +2580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 242, "fields": { "spell": "portal-jaunt", @@ -2592,7 +2592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 244, "fields": { "spell": "portal-jaunt", @@ -2604,7 +2604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 245, "fields": { "spell": "portal-jaunt", @@ -2616,7 +2616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 246, "fields": { "spell": "portal-jaunt", @@ -2628,7 +2628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 247, "fields": { "spell": "portal-jaunt", @@ -2640,7 +2640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 248, "fields": { "spell": "portal-jaunt", @@ -2652,7 +2652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 249, "fields": { "spell": "portal-jaunt", @@ -2664,7 +2664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 250, "fields": { "spell": "portal-trap", @@ -2676,7 +2676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 252, "fields": { "spell": "portal-trap", @@ -2688,7 +2688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 253, "fields": { "spell": "portal-trap", @@ -2700,7 +2700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 254, "fields": { "spell": "portal-trap", @@ -2712,7 +2712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 255, "fields": { "spell": "portal-trap", @@ -2724,7 +2724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 256, "fields": { "spell": "portal-trap", @@ -2736,7 +2736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 257, "fields": { "spell": "portal-trap", @@ -2748,7 +2748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 258, "fields": { "spell": "portal-trap", @@ -2760,7 +2760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 259, "fields": { "spell": "power-word-fling", @@ -2772,7 +2772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 261, "fields": { "spell": "power-word-fling", @@ -2784,7 +2784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 262, "fields": { "spell": "power-word-fling", @@ -2796,7 +2796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 263, "fields": { "spell": "power-word-fling", @@ -2808,7 +2808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 264, "fields": { "spell": "power-word-fling", @@ -2820,7 +2820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 265, "fields": { "spell": "power-word-fling", @@ -2832,7 +2832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 266, "fields": { "spell": "power-word-fling", @@ -2844,7 +2844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 267, "fields": { "spell": "power-word-rend", @@ -2856,7 +2856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 269, "fields": { "spell": "power-word-rend", @@ -2868,7 +2868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 270, "fields": { "spell": "power-word-rend", @@ -2880,7 +2880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 271, "fields": { "spell": "power-word-rend", @@ -2892,7 +2892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 272, "fields": { "spell": "power-word-rend", @@ -2904,7 +2904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 273, "fields": { "spell": "power-word-rend", @@ -2916,7 +2916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 274, "fields": { "spell": "reapers-knell", @@ -2928,7 +2928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 276, "fields": { "spell": "reapers-knell", @@ -2940,7 +2940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 277, "fields": { "spell": "reapers-knell", @@ -2952,7 +2952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 278, "fields": { "spell": "reapers-knell", @@ -2964,7 +2964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 279, "fields": { "spell": "reapers-knell", @@ -2976,7 +2976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 280, "fields": { "spell": "reapers-knell", @@ -2988,7 +2988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 281, "fields": { "spell": "rebounding-bolt", @@ -3000,7 +3000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 283, "fields": { "spell": "rebounding-bolt", @@ -3012,7 +3012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 284, "fields": { "spell": "rebounding-bolt", @@ -3024,7 +3024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 285, "fields": { "spell": "rebounding-bolt", @@ -3036,7 +3036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 286, "fields": { "spell": "rebounding-bolt", @@ -3048,7 +3048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 287, "fields": { "spell": "rebounding-bolt", @@ -3060,7 +3060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 288, "fields": { "spell": "rebounding-bolt", @@ -3072,7 +3072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 289, "fields": { "spell": "repulsing-wall", @@ -3084,7 +3084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 291, "fields": { "spell": "repulsing-wall", @@ -3096,7 +3096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 292, "fields": { "spell": "repulsing-wall", @@ -3108,7 +3108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 293, "fields": { "spell": "repulsing-wall", @@ -3120,7 +3120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 294, "fields": { "spell": "repulsing-wall", @@ -3132,7 +3132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 295, "fields": { "spell": "repulsing-wall", @@ -3144,7 +3144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 296, "fields": { "spell": "retribution", @@ -3156,7 +3156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 297, "fields": { "spell": "rockfall-ward", @@ -3168,7 +3168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 299, "fields": { "spell": "rockfall-ward", @@ -3180,7 +3180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 300, "fields": { "spell": "rockfall-ward", @@ -3192,7 +3192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 301, "fields": { "spell": "rockfall-ward", @@ -3204,7 +3204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 302, "fields": { "spell": "rockfall-ward", @@ -3216,7 +3216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 303, "fields": { "spell": "rockfall-ward", @@ -3228,7 +3228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 304, "fields": { "spell": "rockfall-ward", @@ -3240,7 +3240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 305, "fields": { "spell": "rockfall-ward", @@ -3252,7 +3252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 306, "fields": { "spell": "rockfall-ward", @@ -3264,7 +3264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 307, "fields": { "spell": "sacrifice-pawn", @@ -3276,7 +3276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 308, "fields": { "spell": "sacrificial-healing", @@ -3288,7 +3288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 309, "fields": { "spell": "safe-transposition", @@ -3300,7 +3300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 310, "fields": { "spell": "secret-blind", @@ -3312,7 +3312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 311, "fields": { "spell": "shared-frenzy", @@ -3324,7 +3324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 313, "fields": { "spell": "shared-frenzy", @@ -3336,7 +3336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 314, "fields": { "spell": "shared-frenzy", @@ -3348,7 +3348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 315, "fields": { "spell": "shared-frenzy", @@ -3360,7 +3360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 316, "fields": { "spell": "shared-frenzy", @@ -3372,7 +3372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 317, "fields": { "spell": "shared-frenzy", @@ -3384,7 +3384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 318, "fields": { "spell": "shared-frenzy", @@ -3396,7 +3396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 319, "fields": { "spell": "shocking-volley", @@ -3408,7 +3408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 321, "fields": { "spell": "shocking-volley", @@ -3420,7 +3420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 322, "fields": { "spell": "shocking-volley", @@ -3432,7 +3432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 323, "fields": { "spell": "shocking-volley", @@ -3444,7 +3444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 324, "fields": { "spell": "shocking-volley", @@ -3456,7 +3456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 325, "fields": { "spell": "shocking-volley", @@ -3468,7 +3468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 326, "fields": { "spell": "shocking-volley", @@ -3480,7 +3480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 327, "fields": { "spell": "shocking-volley", @@ -3492,7 +3492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 328, "fields": { "spell": "sightburst", @@ -3504,7 +3504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 330, "fields": { "spell": "sightburst", @@ -3516,7 +3516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 331, "fields": { "spell": "sightburst", @@ -3528,7 +3528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 332, "fields": { "spell": "sightburst", @@ -3540,7 +3540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 333, "fields": { "spell": "sightburst", @@ -3552,7 +3552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 334, "fields": { "spell": "sightburst", @@ -3564,7 +3564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 335, "fields": { "spell": "sightburst", @@ -3576,7 +3576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 336, "fields": { "spell": "sightburst", @@ -3588,7 +3588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 337, "fields": { "spell": "silvershout", @@ -3600,7 +3600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 338, "fields": { "spell": "smelting-blast", @@ -3612,7 +3612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 340, "fields": { "spell": "smelting-blast", @@ -3624,7 +3624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 341, "fields": { "spell": "smelting-blast", @@ -3636,7 +3636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 342, "fields": { "spell": "smelting-blast", @@ -3648,7 +3648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 343, "fields": { "spell": "smelting-blast", @@ -3660,7 +3660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 344, "fields": { "spell": "smelting-blast", @@ -3672,7 +3672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 345, "fields": { "spell": "smelting-blast", @@ -3684,7 +3684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 346, "fields": { "spell": "smelting-blast", @@ -3696,7 +3696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 347, "fields": { "spell": "sneer", @@ -3708,7 +3708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 348, "fields": { "spell": "spiked-barricade", @@ -3720,7 +3720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 350, "fields": { "spell": "spiked-barricade", @@ -3732,7 +3732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 351, "fields": { "spell": "spiked-barricade", @@ -3744,7 +3744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 352, "fields": { "spell": "spiked-barricade", @@ -3756,7 +3756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 353, "fields": { "spell": "spiked-barricade", @@ -3768,7 +3768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 354, "fields": { "spell": "spiked-barricade", @@ -3780,7 +3780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 355, "fields": { "spell": "spiked-barricade", @@ -3792,7 +3792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 356, "fields": { "spell": "spite", @@ -3804,7 +3804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 358, "fields": { "spell": "spite", @@ -3816,7 +3816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 359, "fields": { "spell": "spite", @@ -3828,7 +3828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 360, "fields": { "spell": "spite", @@ -3840,7 +3840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 361, "fields": { "spell": "spite", @@ -3852,7 +3852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 362, "fields": { "spell": "spite", @@ -3864,7 +3864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 363, "fields": { "spell": "spite", @@ -3876,7 +3876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 364, "fields": { "spell": "spite", @@ -3888,7 +3888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 365, "fields": { "spell": "steam-gout", @@ -3900,7 +3900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 367, "fields": { "spell": "steam-gout", @@ -3912,7 +3912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 368, "fields": { "spell": "steam-gout", @@ -3924,7 +3924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 369, "fields": { "spell": "steam-gout", @@ -3936,7 +3936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 370, "fields": { "spell": "steam-gout", @@ -3948,7 +3948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 371, "fields": { "spell": "steam-gout", @@ -3960,7 +3960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 372, "fields": { "spell": "steam-gout", @@ -3972,7 +3972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 373, "fields": { "spell": "stone-aegis", @@ -3984,7 +3984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 374, "fields": { "spell": "stone-fetch", @@ -3996,7 +3996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 376, "fields": { "spell": "stone-fetch", @@ -4008,7 +4008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 377, "fields": { "spell": "stone-fetch", @@ -4020,7 +4020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 378, "fields": { "spell": "stone-fetch", @@ -4032,7 +4032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 379, "fields": { "spell": "stone-fetch", @@ -4044,7 +4044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 380, "fields": { "spell": "stone-fetch", @@ -4056,7 +4056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 381, "fields": { "spell": "sudden-slue", @@ -4068,7 +4068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 382, "fields": { "spell": "sudden-stampede", @@ -4080,7 +4080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 383, "fields": { "spell": "toadstool-ring", @@ -4092,7 +4092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 384, "fields": { "spell": "toothless-beast", @@ -4104,7 +4104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 386, "fields": { "spell": "toothless-beast", @@ -4116,7 +4116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 387, "fields": { "spell": "toothless-beast", @@ -4128,7 +4128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 388, "fields": { "spell": "toothless-beast", @@ -4140,7 +4140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 389, "fields": { "spell": "toothless-beast", @@ -4152,7 +4152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 390, "fields": { "spell": "toothless-beast", @@ -4164,7 +4164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 391, "fields": { "spell": "toothless-beast", @@ -4176,7 +4176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 392, "fields": { "spell": "toothless-beast", @@ -4188,7 +4188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 393, "fields": { "spell": "trollish-charge", @@ -4200,7 +4200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 395, "fields": { "spell": "trollish-charge", @@ -4212,7 +4212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 396, "fields": { "spell": "trollish-charge", @@ -4224,7 +4224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 397, "fields": { "spell": "trollish-charge", @@ -4236,7 +4236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 398, "fields": { "spell": "trollish-charge", @@ -4248,7 +4248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 399, "fields": { "spell": "trollish-charge", @@ -4260,7 +4260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 400, "fields": { "spell": "vine-carpet", @@ -4272,7 +4272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 401, "fields": { "spell": "war-horn", @@ -4284,7 +4284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 402, "fields": { "spell": "wild-hunt", diff --git a/data/v2/kobold-press/wz/CastingOption.json b/data/v2/kobold-press/wz/SpellCastingOption.json similarity index 82% rename from data/v2/kobold-press/wz/CastingOption.json rename to data/v2/kobold-press/wz/SpellCastingOption.json index 96312f30..65a8cf0b 100644 --- a/data/v2/kobold-press/wz/CastingOption.json +++ b/data/v2/kobold-press/wz/SpellCastingOption.json @@ -1,6 +1,6 @@ [ { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4551, "fields": { "spell": "abrupt-hug", @@ -12,7 +12,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4552, "fields": { "spell": "avert-evil-eye", @@ -24,7 +24,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4553, "fields": { "spell": "bardo", @@ -36,7 +36,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4554, "fields": { "spell": "battle-chant", @@ -48,7 +48,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4555, "fields": { "spell": "battle-chant", @@ -60,7 +60,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4557, "fields": { "spell": "battle-chant", @@ -72,7 +72,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4558, "fields": { "spell": "battle-chant", @@ -84,7 +84,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4559, "fields": { "spell": "battle-chant", @@ -96,7 +96,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4560, "fields": { "spell": "battle-chant", @@ -108,7 +108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4561, "fields": { "spell": "battle-chant", @@ -120,7 +120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4562, "fields": { "spell": "battle-chant", @@ -132,7 +132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4563, "fields": { "spell": "battle-chant", @@ -144,7 +144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4564, "fields": { "spell": "bombardment-of-stings", @@ -156,7 +156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4566, "fields": { "spell": "bombardment-of-stings", @@ -168,7 +168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4567, "fields": { "spell": "bombardment-of-stings", @@ -180,7 +180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4568, "fields": { "spell": "bombardment-of-stings", @@ -192,7 +192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4569, "fields": { "spell": "bombardment-of-stings", @@ -204,7 +204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4570, "fields": { "spell": "bombardment-of-stings", @@ -216,7 +216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4571, "fields": { "spell": "bombardment-of-stings", @@ -228,7 +228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4572, "fields": { "spell": "bombardment-of-stings", @@ -240,7 +240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4573, "fields": { "spell": "charming-aesthetics", @@ -252,7 +252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4575, "fields": { "spell": "charming-aesthetics", @@ -264,7 +264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4576, "fields": { "spell": "charming-aesthetics", @@ -276,7 +276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4577, "fields": { "spell": "charming-aesthetics", @@ -288,7 +288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4578, "fields": { "spell": "charming-aesthetics", @@ -300,7 +300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4579, "fields": { "spell": "charming-aesthetics", @@ -312,7 +312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4580, "fields": { "spell": "charming-aesthetics", @@ -324,7 +324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4581, "fields": { "spell": "child-of-light-and-darkness", @@ -336,7 +336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4582, "fields": { "spell": "commanders-pavilion", @@ -348,7 +348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4583, "fields": { "spell": "commanders-pavilion", @@ -360,7 +360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4584, "fields": { "spell": "devouring-darkness", @@ -372,7 +372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4585, "fields": { "spell": "door-of-the-far-traveler", @@ -384,7 +384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4587, "fields": { "spell": "door-of-the-far-traveler", @@ -396,7 +396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4588, "fields": { "spell": "eternal-echo", @@ -408,7 +408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4589, "fields": { "spell": "ethereal-stairs", @@ -420,7 +420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4591, "fields": { "spell": "ethereal-stairs", @@ -432,7 +432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4592, "fields": { "spell": "ethereal-stairs", @@ -444,7 +444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4593, "fields": { "spell": "ethereal-stairs", @@ -456,7 +456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4594, "fields": { "spell": "ethereal-stairs", @@ -468,7 +468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4595, "fields": { "spell": "exchanged-knowledge", @@ -480,7 +480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4596, "fields": { "spell": "hedgehog-dozen", @@ -492,7 +492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4597, "fields": { "spell": "hypnagogia", @@ -504,7 +504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4599, "fields": { "spell": "hypnagogia", @@ -516,7 +516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4600, "fields": { "spell": "hypnagogia", @@ -528,7 +528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4601, "fields": { "spell": "hypnagogia", @@ -540,7 +540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4602, "fields": { "spell": "hypnagogia", @@ -552,7 +552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4603, "fields": { "spell": "hypnagogia", @@ -564,7 +564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4604, "fields": { "spell": "hypnic-jerk", @@ -576,7 +576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4605, "fields": { "spell": "hypnic-jerk", @@ -588,7 +588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4606, "fields": { "spell": "hypnic-jerk", @@ -600,7 +600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4607, "fields": { "spell": "hypnic-jerk", @@ -612,7 +612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4608, "fields": { "spell": "hypnic-jerk", @@ -624,7 +624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4609, "fields": { "spell": "hypnic-jerk", @@ -636,7 +636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4610, "fields": { "spell": "hypnic-jerk", @@ -648,7 +648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4611, "fields": { "spell": "hypnic-jerk", @@ -660,7 +660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4612, "fields": { "spell": "hypnic-jerk", @@ -672,7 +672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4613, "fields": { "spell": "hypnic-jerk", @@ -684,7 +684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4614, "fields": { "spell": "hypnic-jerk", @@ -696,7 +696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4615, "fields": { "spell": "hypnic-jerk", @@ -708,7 +708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4616, "fields": { "spell": "hypnic-jerk", @@ -720,7 +720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4617, "fields": { "spell": "hypnic-jerk", @@ -732,7 +732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4618, "fields": { "spell": "hypnic-jerk", @@ -744,7 +744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4619, "fields": { "spell": "hypnic-jerk", @@ -756,7 +756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4620, "fields": { "spell": "hypnic-jerk", @@ -768,7 +768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4621, "fields": { "spell": "hypnic-jerk", @@ -780,7 +780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4622, "fields": { "spell": "hypnic-jerk", @@ -792,7 +792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4623, "fields": { "spell": "hypnic-jerk", @@ -804,7 +804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4624, "fields": { "spell": "hypnic-jerk", @@ -816,7 +816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4625, "fields": { "spell": "inconspicuous-facade", @@ -828,7 +828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4626, "fields": { "spell": "march-of-the-dead", @@ -840,7 +840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4628, "fields": { "spell": "march-of-the-dead", @@ -852,7 +852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4629, "fields": { "spell": "march-of-the-dead", @@ -864,7 +864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4630, "fields": { "spell": "march-of-the-dead", @@ -876,7 +876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4631, "fields": { "spell": "march-of-the-dead", @@ -888,7 +888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4632, "fields": { "spell": "march-of-the-dead", @@ -900,7 +900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4633, "fields": { "spell": "march-of-the-dead", @@ -912,7 +912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4634, "fields": { "spell": "mind-maze", @@ -924,7 +924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4635, "fields": { "spell": "mirror-realm", @@ -936,7 +936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4636, "fields": { "spell": "mirror-realm", @@ -948,7 +948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4637, "fields": { "spell": "obfuscate-object", @@ -960,7 +960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4638, "fields": { "spell": "obfuscate-object", @@ -972,7 +972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4639, "fields": { "spell": "obfuscate-object", @@ -984,7 +984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4640, "fields": { "spell": "obfuscate-object", @@ -996,7 +996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4641, "fields": { "spell": "obfuscate-object", @@ -1008,7 +1008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4642, "fields": { "spell": "obfuscate-object", @@ -1020,7 +1020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4643, "fields": { "spell": "obfuscate-object", @@ -1032,7 +1032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4644, "fields": { "spell": "obfuscate-object", @@ -1044,7 +1044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4645, "fields": { "spell": "obfuscate-object", @@ -1056,7 +1056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4646, "fields": { "spell": "obfuscate-object", @@ -1068,7 +1068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4647, "fields": { "spell": "obfuscate-object", @@ -1080,7 +1080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4648, "fields": { "spell": "obfuscate-object", @@ -1092,7 +1092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4649, "fields": { "spell": "obfuscate-object", @@ -1104,7 +1104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4650, "fields": { "spell": "obfuscate-object", @@ -1116,7 +1116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4651, "fields": { "spell": "obfuscate-object", @@ -1128,7 +1128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4652, "fields": { "spell": "obfuscate-object", @@ -1140,7 +1140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4653, "fields": { "spell": "obfuscate-object", @@ -1152,7 +1152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4654, "fields": { "spell": "obfuscate-object", @@ -1164,7 +1164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4655, "fields": { "spell": "obfuscate-object", @@ -1176,7 +1176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4656, "fields": { "spell": "obfuscate-object", @@ -1188,7 +1188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4657, "fields": { "spell": "obfuscate-object", @@ -1200,7 +1200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4658, "fields": { "spell": "order-of-revenge", @@ -1212,7 +1212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4660, "fields": { "spell": "order-of-revenge", @@ -1224,7 +1224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4661, "fields": { "spell": "order-of-revenge", @@ -1236,7 +1236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4662, "fields": { "spell": "order-of-revenge", @@ -1248,7 +1248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4663, "fields": { "spell": "order-of-revenge", @@ -1260,7 +1260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4664, "fields": { "spell": "order-of-revenge", @@ -1272,7 +1272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4665, "fields": { "spell": "order-of-revenge", @@ -1284,7 +1284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4666, "fields": { "spell": "pierce-the-veil", @@ -1296,7 +1296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4667, "fields": { "spell": "pierce-the-veil", @@ -1308,7 +1308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4668, "fields": { "spell": "pratfall", @@ -1320,7 +1320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4669, "fields": { "spell": "putrescent-faerie-circle", @@ -1332,7 +1332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4670, "fields": { "spell": "reassemble", @@ -1344,7 +1344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4671, "fields": { "spell": "reciprocating-portal", @@ -1356,7 +1356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4672, "fields": { "spell": "remove-insulation", @@ -1368,7 +1368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4674, "fields": { "spell": "remove-insulation", @@ -1380,7 +1380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4675, "fields": { "spell": "remove-insulation", @@ -1392,7 +1392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4676, "fields": { "spell": "remove-insulation", @@ -1404,7 +1404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4677, "fields": { "spell": "remove-insulation", @@ -1416,7 +1416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4678, "fields": { "spell": "remove-insulation", @@ -1428,7 +1428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4679, "fields": { "spell": "revenges-eye", @@ -1440,7 +1440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4681, "fields": { "spell": "revenges-eye", @@ -1452,7 +1452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4682, "fields": { "spell": "revenges-eye", @@ -1464,7 +1464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4683, "fields": { "spell": "revenges-eye", @@ -1476,7 +1476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4684, "fields": { "spell": "revenges-eye", @@ -1488,7 +1488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4685, "fields": { "spell": "revenges-eye", @@ -1500,7 +1500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4686, "fields": { "spell": "revenges-eye", @@ -1512,7 +1512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4687, "fields": { "spell": "revenges-eye", @@ -1524,7 +1524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4688, "fields": { "spell": "rise-of-the-green", @@ -1536,7 +1536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4690, "fields": { "spell": "rise-of-the-green", @@ -1548,7 +1548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4691, "fields": { "spell": "rive", @@ -1560,7 +1560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4692, "fields": { "spell": "shadow-adaptation", @@ -1572,7 +1572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4693, "fields": { "spell": "skull-road", @@ -1584,7 +1584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4694, "fields": { "spell": "storm-of-axes", @@ -1596,7 +1596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4695, "fields": { "spell": "subliminal-aversion", @@ -1608,7 +1608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4696, "fields": { "spell": "summon-clockwork-beast", @@ -1620,7 +1620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4697, "fields": { "spell": "summon-clockwork-beast", @@ -1632,7 +1632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4698, "fields": { "spell": "suppress-regeneration", @@ -1644,7 +1644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4700, "fields": { "spell": "suppress-regeneration", @@ -1656,7 +1656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4701, "fields": { "spell": "suppress-regeneration", @@ -1668,7 +1668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4702, "fields": { "spell": "suppress-regeneration", @@ -1680,7 +1680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4703, "fields": { "spell": "suppress-regeneration", @@ -1692,7 +1692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4704, "fields": { "spell": "suppress-regeneration", @@ -1704,7 +1704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4705, "fields": { "spell": "suppress-regeneration", @@ -1716,7 +1716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4706, "fields": { "spell": "suppress-regeneration", @@ -1728,7 +1728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4707, "fields": { "spell": "suppress-regeneration", @@ -1740,7 +1740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4708, "fields": { "spell": "threshold-slip", @@ -1752,7 +1752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4709, "fields": { "spell": "toxic-pollen", @@ -1764,7 +1764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4710, "fields": { "spell": "vagrants-nondescript-cloak", @@ -1776,7 +1776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4712, "fields": { "spell": "vagrants-nondescript-cloak", @@ -1788,7 +1788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4713, "fields": { "spell": "vagrants-nondescript-cloak", @@ -1800,7 +1800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4714, "fields": { "spell": "vagrants-nondescript-cloak", @@ -1812,7 +1812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4715, "fields": { "spell": "vagrants-nondescript-cloak", @@ -1824,7 +1824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4716, "fields": { "spell": "vagrants-nondescript-cloak", @@ -1836,7 +1836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4717, "fields": { "spell": "vagrants-nondescript-cloak", @@ -1848,7 +1848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4718, "fields": { "spell": "vagrants-nondescript-cloak", @@ -1860,7 +1860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4719, "fields": { "spell": "vengeful-panopy-of-the-ley-line-ignited", @@ -1872,7 +1872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4721, "fields": { "spell": "vengeful-panopy-of-the-ley-line-ignited", @@ -1884,7 +1884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4722, "fields": { "spell": "vengeful-panopy-of-the-ley-line-ignited", @@ -1896,7 +1896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4723, "fields": { "spell": "vengeful-panopy-of-the-ley-line-ignited", @@ -1908,7 +1908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4724, "fields": { "spell": "who-goes-there", @@ -1920,7 +1920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 4725, "fields": { "spell": "zymurgic-aura", diff --git a/data/v2/open5e/open5e/CastingOption.json b/data/v2/open5e/open5e/SpellCastingOption.json similarity index 82% rename from data/v2/open5e/open5e/CastingOption.json rename to data/v2/open5e/open5e/SpellCastingOption.json index e202236d..8ed147c3 100644 --- a/data/v2/open5e/open5e/CastingOption.json +++ b/data/v2/open5e/open5e/SpellCastingOption.json @@ -1,6 +1,6 @@ [ { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6139, "fields": { "spell": "eye-bite", @@ -12,7 +12,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6140, "fields": { "spell": "ray-of-sickness", @@ -24,7 +24,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6142, "fields": { "spell": "ray-of-sickness", @@ -36,7 +36,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6143, "fields": { "spell": "ray-of-sickness", @@ -48,7 +48,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6144, "fields": { "spell": "ray-of-sickness", @@ -60,7 +60,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6145, "fields": { "spell": "ray-of-sickness", @@ -72,7 +72,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6146, "fields": { "spell": "ray-of-sickness", @@ -84,7 +84,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6147, "fields": { "spell": "ray-of-sickness", @@ -96,7 +96,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6148, "fields": { "spell": "ray-of-sickness", @@ -108,7 +108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6149, "fields": { "spell": "ray-of-sickness", diff --git a/data/v2/wizards-of-the-coast/srd/CastingOption.json b/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json similarity index 82% rename from data/v2/wizards-of-the-coast/srd/CastingOption.json rename to data/v2/wizards-of-the-coast/srd/SpellCastingOption.json index f4edde35..81cd7aef 100644 --- a/data/v2/wizards-of-the-coast/srd/CastingOption.json +++ b/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json @@ -1,6 +1,6 @@ [ { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5005, "fields": { "spell": "acid-arrow", @@ -12,7 +12,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5007, "fields": { "spell": "acid-arrow", @@ -24,7 +24,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5008, "fields": { "spell": "acid-arrow", @@ -36,7 +36,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5009, "fields": { "spell": "acid-arrow", @@ -48,7 +48,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5010, "fields": { "spell": "acid-arrow", @@ -60,7 +60,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5011, "fields": { "spell": "acid-arrow", @@ -72,7 +72,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5012, "fields": { "spell": "acid-arrow", @@ -84,7 +84,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5013, "fields": { "spell": "acid-arrow", @@ -96,7 +96,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5014, "fields": { "spell": "acid-splash", @@ -108,7 +108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5015, "fields": { "spell": "acid-splash", @@ -120,7 +120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5016, "fields": { "spell": "acid-splash", @@ -132,7 +132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5017, "fields": { "spell": "acid-splash", @@ -144,7 +144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5018, "fields": { "spell": "acid-splash", @@ -156,7 +156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5019, "fields": { "spell": "acid-splash", @@ -168,7 +168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5020, "fields": { "spell": "acid-splash", @@ -180,7 +180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5021, "fields": { "spell": "acid-splash", @@ -192,7 +192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5022, "fields": { "spell": "acid-splash", @@ -204,7 +204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5023, "fields": { "spell": "acid-splash", @@ -216,7 +216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5024, "fields": { "spell": "acid-splash", @@ -228,7 +228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5025, "fields": { "spell": "acid-splash", @@ -240,7 +240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5026, "fields": { "spell": "acid-splash", @@ -252,7 +252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5027, "fields": { "spell": "acid-splash", @@ -264,7 +264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5028, "fields": { "spell": "acid-splash", @@ -276,7 +276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5029, "fields": { "spell": "acid-splash", @@ -288,7 +288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5030, "fields": { "spell": "acid-splash", @@ -300,7 +300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5031, "fields": { "spell": "acid-splash", @@ -312,7 +312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5032, "fields": { "spell": "acid-splash", @@ -324,7 +324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5033, "fields": { "spell": "acid-splash", @@ -336,7 +336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5034, "fields": { "spell": "acid-splash", @@ -348,7 +348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5035, "fields": { "spell": "aid", @@ -360,7 +360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5037, "fields": { "spell": "aid", @@ -372,7 +372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5038, "fields": { "spell": "aid", @@ -384,7 +384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5039, "fields": { "spell": "aid", @@ -396,7 +396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5040, "fields": { "spell": "aid", @@ -408,7 +408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5041, "fields": { "spell": "aid", @@ -420,7 +420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5042, "fields": { "spell": "aid", @@ -432,7 +432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5043, "fields": { "spell": "aid", @@ -444,7 +444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5044, "fields": { "spell": "alarm", @@ -456,7 +456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5045, "fields": { "spell": "alarm", @@ -468,7 +468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5046, "fields": { "spell": "alter-self", @@ -480,7 +480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5047, "fields": { "spell": "animal-friendship", @@ -492,7 +492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5049, "fields": { "spell": "animal-friendship", @@ -504,7 +504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5050, "fields": { "spell": "animal-friendship", @@ -516,7 +516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5051, "fields": { "spell": "animal-friendship", @@ -528,7 +528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5052, "fields": { "spell": "animal-friendship", @@ -540,7 +540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5053, "fields": { "spell": "animal-friendship", @@ -552,7 +552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5054, "fields": { "spell": "animal-friendship", @@ -564,7 +564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5055, "fields": { "spell": "animal-friendship", @@ -576,7 +576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5056, "fields": { "spell": "animal-friendship", @@ -588,7 +588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5057, "fields": { "spell": "animal-messenger", @@ -600,7 +600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5058, "fields": { "spell": "animal-messenger", @@ -612,7 +612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5060, "fields": { "spell": "animal-messenger", @@ -624,7 +624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5061, "fields": { "spell": "animal-messenger", @@ -636,7 +636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5062, "fields": { "spell": "animal-messenger", @@ -648,7 +648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5063, "fields": { "spell": "animal-messenger", @@ -660,7 +660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5064, "fields": { "spell": "animal-messenger", @@ -672,7 +672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5065, "fields": { "spell": "animal-messenger", @@ -684,7 +684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5066, "fields": { "spell": "animal-messenger", @@ -696,7 +696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5067, "fields": { "spell": "animal-shapes", @@ -708,7 +708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5068, "fields": { "spell": "animate-dead", @@ -720,7 +720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5070, "fields": { "spell": "animate-dead", @@ -732,7 +732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5071, "fields": { "spell": "animate-dead", @@ -744,7 +744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5072, "fields": { "spell": "animate-dead", @@ -756,7 +756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5073, "fields": { "spell": "animate-dead", @@ -768,7 +768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5074, "fields": { "spell": "animate-dead", @@ -780,7 +780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5075, "fields": { "spell": "animate-dead", @@ -792,7 +792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5076, "fields": { "spell": "animate-objects", @@ -804,7 +804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5078, "fields": { "spell": "animate-objects", @@ -816,7 +816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5079, "fields": { "spell": "animate-objects", @@ -828,7 +828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5080, "fields": { "spell": "animate-objects", @@ -840,7 +840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5081, "fields": { "spell": "animate-objects", @@ -852,7 +852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5082, "fields": { "spell": "antilife-shell", @@ -864,7 +864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5083, "fields": { "spell": "antimagic-field", @@ -876,7 +876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5084, "fields": { "spell": "antipathysympathy", @@ -888,7 +888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5085, "fields": { "spell": "arcane-eye", @@ -900,7 +900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5086, "fields": { "spell": "arcane-hand", @@ -912,7 +912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5088, "fields": { "spell": "arcane-hand", @@ -924,7 +924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5089, "fields": { "spell": "arcane-hand", @@ -936,7 +936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5090, "fields": { "spell": "arcane-hand", @@ -948,7 +948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5091, "fields": { "spell": "arcane-hand", @@ -960,7 +960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5092, "fields": { "spell": "arcane-lock", @@ -972,7 +972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5093, "fields": { "spell": "arcane-sword", @@ -984,7 +984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5094, "fields": { "spell": "arcanists-magic-aura", @@ -996,7 +996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5095, "fields": { "spell": "astral-projection", @@ -1008,7 +1008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5096, "fields": { "spell": "augury", @@ -1020,7 +1020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5097, "fields": { "spell": "augury", @@ -1032,7 +1032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5098, "fields": { "spell": "awaken", @@ -1044,7 +1044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5099, "fields": { "spell": "bane", @@ -1056,7 +1056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5101, "fields": { "spell": "bane", @@ -1068,7 +1068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5102, "fields": { "spell": "bane", @@ -1080,7 +1080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5103, "fields": { "spell": "bane", @@ -1092,7 +1092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5104, "fields": { "spell": "bane", @@ -1104,7 +1104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5105, "fields": { "spell": "bane", @@ -1116,7 +1116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5106, "fields": { "spell": "bane", @@ -1128,7 +1128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5107, "fields": { "spell": "bane", @@ -1140,7 +1140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5108, "fields": { "spell": "bane", @@ -1152,7 +1152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5109, "fields": { "spell": "banishment", @@ -1164,7 +1164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5111, "fields": { "spell": "banishment", @@ -1176,7 +1176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5112, "fields": { "spell": "banishment", @@ -1188,7 +1188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5113, "fields": { "spell": "banishment", @@ -1200,7 +1200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5114, "fields": { "spell": "banishment", @@ -1212,7 +1212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5115, "fields": { "spell": "banishment", @@ -1224,7 +1224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5116, "fields": { "spell": "barkskin", @@ -1236,7 +1236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5117, "fields": { "spell": "beacon-of-hope", @@ -1248,7 +1248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5118, "fields": { "spell": "bestow-curse", @@ -1260,7 +1260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5120, "fields": { "spell": "bestow-curse", @@ -1272,7 +1272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5121, "fields": { "spell": "bestow-curse", @@ -1284,7 +1284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5122, "fields": { "spell": "bestow-curse", @@ -1296,7 +1296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5123, "fields": { "spell": "bestow-curse", @@ -1308,7 +1308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5124, "fields": { "spell": "bestow-curse", @@ -1320,7 +1320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5125, "fields": { "spell": "bestow-curse", @@ -1332,7 +1332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5126, "fields": { "spell": "black-tentacles", @@ -1344,7 +1344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5127, "fields": { "spell": "blade-barrier", @@ -1356,7 +1356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5128, "fields": { "spell": "bless", @@ -1368,7 +1368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5130, "fields": { "spell": "bless", @@ -1380,7 +1380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5131, "fields": { "spell": "bless", @@ -1392,7 +1392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5132, "fields": { "spell": "bless", @@ -1404,7 +1404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5133, "fields": { "spell": "bless", @@ -1416,7 +1416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5134, "fields": { "spell": "bless", @@ -1428,7 +1428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5135, "fields": { "spell": "bless", @@ -1440,7 +1440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5136, "fields": { "spell": "bless", @@ -1452,7 +1452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5137, "fields": { "spell": "bless", @@ -1464,7 +1464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5138, "fields": { "spell": "blight", @@ -1476,7 +1476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5140, "fields": { "spell": "blight", @@ -1488,7 +1488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5141, "fields": { "spell": "blight", @@ -1500,7 +1500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5142, "fields": { "spell": "blight", @@ -1512,7 +1512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5143, "fields": { "spell": "blight", @@ -1524,7 +1524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5144, "fields": { "spell": "blight", @@ -1536,7 +1536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5145, "fields": { "spell": "blindnessdeafness", @@ -1548,7 +1548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5147, "fields": { "spell": "blindnessdeafness", @@ -1560,7 +1560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5148, "fields": { "spell": "blindnessdeafness", @@ -1572,7 +1572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5149, "fields": { "spell": "blindnessdeafness", @@ -1584,7 +1584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5150, "fields": { "spell": "blindnessdeafness", @@ -1596,7 +1596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5151, "fields": { "spell": "blindnessdeafness", @@ -1608,7 +1608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5152, "fields": { "spell": "blindnessdeafness", @@ -1620,7 +1620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5153, "fields": { "spell": "blindnessdeafness", @@ -1632,7 +1632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5154, "fields": { "spell": "blink", @@ -1644,7 +1644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5155, "fields": { "spell": "blur", @@ -1656,7 +1656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5156, "fields": { "spell": "branding-smite", @@ -1668,7 +1668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5158, "fields": { "spell": "branding-smite", @@ -1680,7 +1680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5159, "fields": { "spell": "branding-smite", @@ -1692,7 +1692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5160, "fields": { "spell": "branding-smite", @@ -1704,7 +1704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5161, "fields": { "spell": "branding-smite", @@ -1716,7 +1716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5162, "fields": { "spell": "branding-smite", @@ -1728,7 +1728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5163, "fields": { "spell": "branding-smite", @@ -1740,7 +1740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5164, "fields": { "spell": "branding-smite", @@ -1752,7 +1752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5165, "fields": { "spell": "burning-hands", @@ -1764,7 +1764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5167, "fields": { "spell": "burning-hands", @@ -1776,7 +1776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5168, "fields": { "spell": "burning-hands", @@ -1788,7 +1788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5169, "fields": { "spell": "burning-hands", @@ -1800,7 +1800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5170, "fields": { "spell": "burning-hands", @@ -1812,7 +1812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5171, "fields": { "spell": "burning-hands", @@ -1824,7 +1824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5172, "fields": { "spell": "burning-hands", @@ -1836,7 +1836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5173, "fields": { "spell": "burning-hands", @@ -1848,7 +1848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5174, "fields": { "spell": "burning-hands", @@ -1860,7 +1860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5175, "fields": { "spell": "call-lightning", @@ -1872,7 +1872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5177, "fields": { "spell": "call-lightning", @@ -1884,7 +1884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5178, "fields": { "spell": "call-lightning", @@ -1896,7 +1896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5179, "fields": { "spell": "call-lightning", @@ -1908,7 +1908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5180, "fields": { "spell": "call-lightning", @@ -1920,7 +1920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5181, "fields": { "spell": "call-lightning", @@ -1932,7 +1932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5182, "fields": { "spell": "call-lightning", @@ -1944,7 +1944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5183, "fields": { "spell": "calm-emotions", @@ -1956,7 +1956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5184, "fields": { "spell": "chain-lightning", @@ -1968,7 +1968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5186, "fields": { "spell": "chain-lightning", @@ -1980,7 +1980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5187, "fields": { "spell": "chain-lightning", @@ -1992,7 +1992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5188, "fields": { "spell": "chain-lightning", @@ -2004,7 +2004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5189, "fields": { "spell": "charm-person", @@ -2016,7 +2016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5191, "fields": { "spell": "charm-person", @@ -2028,7 +2028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5192, "fields": { "spell": "charm-person", @@ -2040,7 +2040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5193, "fields": { "spell": "charm-person", @@ -2052,7 +2052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5194, "fields": { "spell": "charm-person", @@ -2064,7 +2064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5195, "fields": { "spell": "charm-person", @@ -2076,7 +2076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5196, "fields": { "spell": "charm-person", @@ -2088,7 +2088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5197, "fields": { "spell": "charm-person", @@ -2100,7 +2100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5198, "fields": { "spell": "charm-person", @@ -2112,7 +2112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5199, "fields": { "spell": "chill-touch", @@ -2124,7 +2124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5200, "fields": { "spell": "chill-touch", @@ -2136,7 +2136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5201, "fields": { "spell": "chill-touch", @@ -2148,7 +2148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5202, "fields": { "spell": "chill-touch", @@ -2160,7 +2160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5203, "fields": { "spell": "chill-touch", @@ -2172,7 +2172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5204, "fields": { "spell": "chill-touch", @@ -2184,7 +2184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5205, "fields": { "spell": "chill-touch", @@ -2196,7 +2196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5206, "fields": { "spell": "chill-touch", @@ -2208,7 +2208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5207, "fields": { "spell": "chill-touch", @@ -2220,7 +2220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5208, "fields": { "spell": "chill-touch", @@ -2232,7 +2232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5209, "fields": { "spell": "chill-touch", @@ -2244,7 +2244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5210, "fields": { "spell": "chill-touch", @@ -2256,7 +2256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5211, "fields": { "spell": "chill-touch", @@ -2268,7 +2268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5212, "fields": { "spell": "chill-touch", @@ -2280,7 +2280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5213, "fields": { "spell": "chill-touch", @@ -2292,7 +2292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5214, "fields": { "spell": "chill-touch", @@ -2304,7 +2304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5215, "fields": { "spell": "chill-touch", @@ -2316,7 +2316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5216, "fields": { "spell": "chill-touch", @@ -2328,7 +2328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5217, "fields": { "spell": "chill-touch", @@ -2340,7 +2340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5218, "fields": { "spell": "chill-touch", @@ -2352,7 +2352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5219, "fields": { "spell": "chill-touch", @@ -2364,7 +2364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5220, "fields": { "spell": "circle-of-death", @@ -2376,7 +2376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5222, "fields": { "spell": "circle-of-death", @@ -2388,7 +2388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5223, "fields": { "spell": "circle-of-death", @@ -2400,7 +2400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5224, "fields": { "spell": "circle-of-death", @@ -2412,7 +2412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5225, "fields": { "spell": "clairvoyance", @@ -2424,7 +2424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5226, "fields": { "spell": "clone", @@ -2436,7 +2436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5227, "fields": { "spell": "cloudkill", @@ -2448,7 +2448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5229, "fields": { "spell": "cloudkill", @@ -2460,7 +2460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5230, "fields": { "spell": "cloudkill", @@ -2472,7 +2472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5231, "fields": { "spell": "cloudkill", @@ -2484,7 +2484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5232, "fields": { "spell": "cloudkill", @@ -2496,7 +2496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5233, "fields": { "spell": "color-spray", @@ -2508,7 +2508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5235, "fields": { "spell": "color-spray", @@ -2520,7 +2520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5236, "fields": { "spell": "color-spray", @@ -2532,7 +2532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5237, "fields": { "spell": "color-spray", @@ -2544,7 +2544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5238, "fields": { "spell": "color-spray", @@ -2556,7 +2556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5239, "fields": { "spell": "color-spray", @@ -2568,7 +2568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5240, "fields": { "spell": "color-spray", @@ -2580,7 +2580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5241, "fields": { "spell": "color-spray", @@ -2592,7 +2592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5242, "fields": { "spell": "color-spray", @@ -2604,7 +2604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5243, "fields": { "spell": "command", @@ -2616,7 +2616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5245, "fields": { "spell": "command", @@ -2628,7 +2628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5246, "fields": { "spell": "command", @@ -2640,7 +2640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5247, "fields": { "spell": "command", @@ -2652,7 +2652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5248, "fields": { "spell": "command", @@ -2664,7 +2664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5249, "fields": { "spell": "command", @@ -2676,7 +2676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5250, "fields": { "spell": "command", @@ -2688,7 +2688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5251, "fields": { "spell": "command", @@ -2700,7 +2700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5252, "fields": { "spell": "command", @@ -2712,7 +2712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5253, "fields": { "spell": "commune", @@ -2724,7 +2724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5254, "fields": { "spell": "commune", @@ -2736,7 +2736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5255, "fields": { "spell": "commune-with-nature", @@ -2748,7 +2748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5256, "fields": { "spell": "commune-with-nature", @@ -2760,7 +2760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5257, "fields": { "spell": "comprehend-languages", @@ -2772,7 +2772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5258, "fields": { "spell": "comprehend-languages", @@ -2784,7 +2784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5259, "fields": { "spell": "compulsion", @@ -2796,7 +2796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5260, "fields": { "spell": "cone-of-cold", @@ -2808,7 +2808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5262, "fields": { "spell": "cone-of-cold", @@ -2820,7 +2820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5263, "fields": { "spell": "cone-of-cold", @@ -2832,7 +2832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5264, "fields": { "spell": "cone-of-cold", @@ -2844,7 +2844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5265, "fields": { "spell": "cone-of-cold", @@ -2856,7 +2856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5266, "fields": { "spell": "confusion", @@ -2868,7 +2868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5268, "fields": { "spell": "confusion", @@ -2880,7 +2880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5269, "fields": { "spell": "confusion", @@ -2892,7 +2892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5270, "fields": { "spell": "confusion", @@ -2904,7 +2904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5271, "fields": { "spell": "confusion", @@ -2916,7 +2916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5272, "fields": { "spell": "confusion", @@ -2928,7 +2928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5273, "fields": { "spell": "conjure-animals", @@ -2940,7 +2940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5275, "fields": { "spell": "conjure-animals", @@ -2952,7 +2952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5276, "fields": { "spell": "conjure-animals", @@ -2964,7 +2964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5277, "fields": { "spell": "conjure-animals", @@ -2976,7 +2976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5278, "fields": { "spell": "conjure-animals", @@ -2988,7 +2988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5279, "fields": { "spell": "conjure-animals", @@ -3000,7 +3000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5280, "fields": { "spell": "conjure-animals", @@ -3012,7 +3012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5281, "fields": { "spell": "conjure-celestial", @@ -3024,7 +3024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5283, "fields": { "spell": "conjure-celestial", @@ -3036,7 +3036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5284, "fields": { "spell": "conjure-celestial", @@ -3048,7 +3048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5285, "fields": { "spell": "conjure-elemental", @@ -3060,7 +3060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5287, "fields": { "spell": "conjure-elemental", @@ -3072,7 +3072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5288, "fields": { "spell": "conjure-elemental", @@ -3084,7 +3084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5289, "fields": { "spell": "conjure-elemental", @@ -3096,7 +3096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5290, "fields": { "spell": "conjure-elemental", @@ -3108,7 +3108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5291, "fields": { "spell": "conjure-fey", @@ -3120,7 +3120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5293, "fields": { "spell": "conjure-fey", @@ -3132,7 +3132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5294, "fields": { "spell": "conjure-fey", @@ -3144,7 +3144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5295, "fields": { "spell": "conjure-fey", @@ -3156,7 +3156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5296, "fields": { "spell": "conjure-minor-elementals", @@ -3168,7 +3168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5298, "fields": { "spell": "conjure-minor-elementals", @@ -3180,7 +3180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5299, "fields": { "spell": "conjure-minor-elementals", @@ -3192,7 +3192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5300, "fields": { "spell": "conjure-minor-elementals", @@ -3204,7 +3204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5301, "fields": { "spell": "conjure-minor-elementals", @@ -3216,7 +3216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5302, "fields": { "spell": "conjure-minor-elementals", @@ -3228,7 +3228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5303, "fields": { "spell": "conjure-woodland-beings", @@ -3240,7 +3240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5305, "fields": { "spell": "conjure-woodland-beings", @@ -3252,7 +3252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5306, "fields": { "spell": "conjure-woodland-beings", @@ -3264,7 +3264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5307, "fields": { "spell": "conjure-woodland-beings", @@ -3276,7 +3276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5308, "fields": { "spell": "conjure-woodland-beings", @@ -3288,7 +3288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5309, "fields": { "spell": "conjure-woodland-beings", @@ -3300,7 +3300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5310, "fields": { "spell": "contact-other-plane", @@ -3312,7 +3312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5311, "fields": { "spell": "contact-other-plane", @@ -3324,7 +3324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5312, "fields": { "spell": "contagion", @@ -3336,7 +3336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5313, "fields": { "spell": "contingency", @@ -3348,7 +3348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5314, "fields": { "spell": "continual-flame", @@ -3360,7 +3360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5315, "fields": { "spell": "control-water", @@ -3372,7 +3372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5316, "fields": { "spell": "control-weather", @@ -3384,7 +3384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5317, "fields": { "spell": "counterspell", @@ -3396,7 +3396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5319, "fields": { "spell": "counterspell", @@ -3408,7 +3408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5320, "fields": { "spell": "counterspell", @@ -3420,7 +3420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5321, "fields": { "spell": "counterspell", @@ -3432,7 +3432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5322, "fields": { "spell": "counterspell", @@ -3444,7 +3444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5323, "fields": { "spell": "counterspell", @@ -3456,7 +3456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5324, "fields": { "spell": "counterspell", @@ -3468,7 +3468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5325, "fields": { "spell": "create-food-and-water", @@ -3480,7 +3480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5326, "fields": { "spell": "create-or-destroy-water", @@ -3492,7 +3492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5328, "fields": { "spell": "create-or-destroy-water", @@ -3504,7 +3504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5329, "fields": { "spell": "create-or-destroy-water", @@ -3516,7 +3516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5330, "fields": { "spell": "create-or-destroy-water", @@ -3528,7 +3528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5331, "fields": { "spell": "create-or-destroy-water", @@ -3540,7 +3540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5332, "fields": { "spell": "create-or-destroy-water", @@ -3552,7 +3552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5333, "fields": { "spell": "create-or-destroy-water", @@ -3564,7 +3564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5334, "fields": { "spell": "create-or-destroy-water", @@ -3576,7 +3576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5335, "fields": { "spell": "create-or-destroy-water", @@ -3588,7 +3588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5336, "fields": { "spell": "create-undead", @@ -3600,7 +3600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5338, "fields": { "spell": "create-undead", @@ -3612,7 +3612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5339, "fields": { "spell": "create-undead", @@ -3624,7 +3624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5340, "fields": { "spell": "create-undead", @@ -3636,7 +3636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5341, "fields": { "spell": "creation", @@ -3648,7 +3648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5343, "fields": { "spell": "creation", @@ -3660,7 +3660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5344, "fields": { "spell": "creation", @@ -3672,7 +3672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5345, "fields": { "spell": "creation", @@ -3684,7 +3684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5346, "fields": { "spell": "creation", @@ -3696,7 +3696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5347, "fields": { "spell": "cure-wounds", @@ -3708,7 +3708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5349, "fields": { "spell": "cure-wounds", @@ -3720,7 +3720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5350, "fields": { "spell": "cure-wounds", @@ -3732,7 +3732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5351, "fields": { "spell": "cure-wounds", @@ -3744,7 +3744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5352, "fields": { "spell": "cure-wounds", @@ -3756,7 +3756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5353, "fields": { "spell": "cure-wounds", @@ -3768,7 +3768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5354, "fields": { "spell": "cure-wounds", @@ -3780,7 +3780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5355, "fields": { "spell": "cure-wounds", @@ -3792,7 +3792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5356, "fields": { "spell": "cure-wounds", @@ -3804,7 +3804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5357, "fields": { "spell": "dancing-lights", @@ -3816,7 +3816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5358, "fields": { "spell": "darkness", @@ -3828,7 +3828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5359, "fields": { "spell": "darkvision", @@ -3840,7 +3840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5360, "fields": { "spell": "daylight", @@ -3852,7 +3852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5361, "fields": { "spell": "death-ward", @@ -3864,7 +3864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5362, "fields": { "spell": "delayed-blast-fireball", @@ -3876,7 +3876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5364, "fields": { "spell": "delayed-blast-fireball", @@ -3888,7 +3888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5365, "fields": { "spell": "delayed-blast-fireball", @@ -3900,7 +3900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5366, "fields": { "spell": "demiplane", @@ -3912,7 +3912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5367, "fields": { "spell": "detect-evil-and-good", @@ -3924,7 +3924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5368, "fields": { "spell": "detect-magic", @@ -3936,7 +3936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5369, "fields": { "spell": "detect-magic", @@ -3948,7 +3948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5370, "fields": { "spell": "detect-poison-and-disease", @@ -3960,7 +3960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5371, "fields": { "spell": "detect-poison-and-disease", @@ -3972,7 +3972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5372, "fields": { "spell": "detect-thoughts", @@ -3984,7 +3984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5373, "fields": { "spell": "dimension-door", @@ -3996,7 +3996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5374, "fields": { "spell": "disguise-self", @@ -4008,7 +4008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5375, "fields": { "spell": "disintegrate", @@ -4020,7 +4020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5377, "fields": { "spell": "disintegrate", @@ -4032,7 +4032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5378, "fields": { "spell": "disintegrate", @@ -4044,7 +4044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5379, "fields": { "spell": "disintegrate", @@ -4056,7 +4056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5380, "fields": { "spell": "dispel-evil-and-good", @@ -4068,7 +4068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5381, "fields": { "spell": "dispel-magic", @@ -4080,7 +4080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5383, "fields": { "spell": "dispel-magic", @@ -4092,7 +4092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5384, "fields": { "spell": "dispel-magic", @@ -4104,7 +4104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5385, "fields": { "spell": "dispel-magic", @@ -4116,7 +4116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5386, "fields": { "spell": "dispel-magic", @@ -4128,7 +4128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5387, "fields": { "spell": "dispel-magic", @@ -4140,7 +4140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5388, "fields": { "spell": "dispel-magic", @@ -4152,7 +4152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5389, "fields": { "spell": "divination", @@ -4164,7 +4164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5390, "fields": { "spell": "divination", @@ -4176,7 +4176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5391, "fields": { "spell": "divine-favor", @@ -4188,7 +4188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5392, "fields": { "spell": "divine-word", @@ -4200,7 +4200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5393, "fields": { "spell": "dominate-beast", @@ -4212,7 +4212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5395, "fields": { "spell": "dominate-beast", @@ -4224,7 +4224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5396, "fields": { "spell": "dominate-beast", @@ -4236,7 +4236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5397, "fields": { "spell": "dominate-beast", @@ -4248,7 +4248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5398, "fields": { "spell": "dominate-beast", @@ -4260,7 +4260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5399, "fields": { "spell": "dominate-beast", @@ -4272,7 +4272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5400, "fields": { "spell": "dominate-monster", @@ -4284,7 +4284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5402, "fields": { "spell": "dominate-monster", @@ -4296,7 +4296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5403, "fields": { "spell": "dominate-person", @@ -4308,7 +4308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5405, "fields": { "spell": "dominate-person", @@ -4320,7 +4320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5406, "fields": { "spell": "dominate-person", @@ -4332,7 +4332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5407, "fields": { "spell": "dominate-person", @@ -4344,7 +4344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5408, "fields": { "spell": "dominate-person", @@ -4356,7 +4356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5409, "fields": { "spell": "dream", @@ -4368,7 +4368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5410, "fields": { "spell": "druidcraft", @@ -4380,7 +4380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5411, "fields": { "spell": "earthquake", @@ -4392,7 +4392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5412, "fields": { "spell": "eldritch-blast", @@ -4404,7 +4404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5413, "fields": { "spell": "enhance-ability", @@ -4416,7 +4416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5415, "fields": { "spell": "enhance-ability", @@ -4428,7 +4428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5416, "fields": { "spell": "enhance-ability", @@ -4440,7 +4440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5417, "fields": { "spell": "enhance-ability", @@ -4452,7 +4452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5418, "fields": { "spell": "enhance-ability", @@ -4464,7 +4464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5419, "fields": { "spell": "enhance-ability", @@ -4476,7 +4476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5420, "fields": { "spell": "enhance-ability", @@ -4488,7 +4488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5421, "fields": { "spell": "enhance-ability", @@ -4500,7 +4500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5422, "fields": { "spell": "enlargereduce", @@ -4512,7 +4512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5423, "fields": { "spell": "entangle", @@ -4524,7 +4524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5424, "fields": { "spell": "enthrall", @@ -4536,7 +4536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5425, "fields": { "spell": "etherealness", @@ -4548,7 +4548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5427, "fields": { "spell": "etherealness", @@ -4560,7 +4560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5428, "fields": { "spell": "etherealness", @@ -4572,7 +4572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5429, "fields": { "spell": "expeditious-retreat", @@ -4584,7 +4584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5430, "fields": { "spell": "eyebite", @@ -4596,7 +4596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5431, "fields": { "spell": "fabricate", @@ -4608,7 +4608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5432, "fields": { "spell": "faerie-fire", @@ -4620,7 +4620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5433, "fields": { "spell": "faithful-hound", @@ -4632,7 +4632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5434, "fields": { "spell": "false-life", @@ -4644,7 +4644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5436, "fields": { "spell": "false-life", @@ -4656,7 +4656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5437, "fields": { "spell": "false-life", @@ -4668,7 +4668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5438, "fields": { "spell": "false-life", @@ -4680,7 +4680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5439, "fields": { "spell": "false-life", @@ -4692,7 +4692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5440, "fields": { "spell": "false-life", @@ -4704,7 +4704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5441, "fields": { "spell": "false-life", @@ -4716,7 +4716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5442, "fields": { "spell": "false-life", @@ -4728,7 +4728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5443, "fields": { "spell": "false-life", @@ -4740,7 +4740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5444, "fields": { "spell": "fear", @@ -4752,7 +4752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5445, "fields": { "spell": "feather-fall", @@ -4764,7 +4764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5446, "fields": { "spell": "feeblemind", @@ -4776,7 +4776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5447, "fields": { "spell": "find-familiar", @@ -4788,7 +4788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5448, "fields": { "spell": "find-familiar", @@ -4800,7 +4800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5449, "fields": { "spell": "find-steed", @@ -4812,7 +4812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5450, "fields": { "spell": "find-the-path", @@ -4824,7 +4824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5451, "fields": { "spell": "find-traps", @@ -4836,7 +4836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5452, "fields": { "spell": "finger-of-death", @@ -4848,7 +4848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5453, "fields": { "spell": "fire-bolt", @@ -4860,7 +4860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5454, "fields": { "spell": "fire-bolt", @@ -4872,7 +4872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5455, "fields": { "spell": "fire-bolt", @@ -4884,7 +4884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5456, "fields": { "spell": "fire-bolt", @@ -4896,7 +4896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5457, "fields": { "spell": "fire-bolt", @@ -4908,7 +4908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5458, "fields": { "spell": "fire-bolt", @@ -4920,7 +4920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5459, "fields": { "spell": "fire-bolt", @@ -4932,7 +4932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5460, "fields": { "spell": "fire-bolt", @@ -4944,7 +4944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5461, "fields": { "spell": "fire-bolt", @@ -4956,7 +4956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5462, "fields": { "spell": "fire-bolt", @@ -4968,7 +4968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5463, "fields": { "spell": "fire-bolt", @@ -4980,7 +4980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5464, "fields": { "spell": "fire-bolt", @@ -4992,7 +4992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5465, "fields": { "spell": "fire-bolt", @@ -5004,7 +5004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5466, "fields": { "spell": "fire-bolt", @@ -5016,7 +5016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5467, "fields": { "spell": "fire-bolt", @@ -5028,7 +5028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5468, "fields": { "spell": "fire-bolt", @@ -5040,7 +5040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5469, "fields": { "spell": "fire-bolt", @@ -5052,7 +5052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5470, "fields": { "spell": "fire-bolt", @@ -5064,7 +5064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5471, "fields": { "spell": "fire-bolt", @@ -5076,7 +5076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5472, "fields": { "spell": "fire-bolt", @@ -5088,7 +5088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5473, "fields": { "spell": "fire-bolt", @@ -5100,7 +5100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5474, "fields": { "spell": "fire-shield", @@ -5112,7 +5112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5475, "fields": { "spell": "fire-storm", @@ -5124,7 +5124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5476, "fields": { "spell": "fireball", @@ -5136,7 +5136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5478, "fields": { "spell": "fireball", @@ -5148,7 +5148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5479, "fields": { "spell": "fireball", @@ -5160,7 +5160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5480, "fields": { "spell": "fireball", @@ -5172,7 +5172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5481, "fields": { "spell": "fireball", @@ -5184,7 +5184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5482, "fields": { "spell": "fireball", @@ -5196,7 +5196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5483, "fields": { "spell": "fireball", @@ -5208,7 +5208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5484, "fields": { "spell": "flame-blade", @@ -5220,7 +5220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5486, "fields": { "spell": "flame-blade", @@ -5232,7 +5232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5487, "fields": { "spell": "flame-blade", @@ -5244,7 +5244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5488, "fields": { "spell": "flame-blade", @@ -5256,7 +5256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5489, "fields": { "spell": "flame-blade", @@ -5268,7 +5268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5490, "fields": { "spell": "flame-blade", @@ -5280,7 +5280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5491, "fields": { "spell": "flame-blade", @@ -5292,7 +5292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5492, "fields": { "spell": "flame-blade", @@ -5304,7 +5304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5493, "fields": { "spell": "flame-strike", @@ -5316,7 +5316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5495, "fields": { "spell": "flame-strike", @@ -5328,7 +5328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5496, "fields": { "spell": "flame-strike", @@ -5340,7 +5340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5497, "fields": { "spell": "flame-strike", @@ -5352,7 +5352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5498, "fields": { "spell": "flame-strike", @@ -5364,7 +5364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5499, "fields": { "spell": "flaming-sphere", @@ -5376,7 +5376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5501, "fields": { "spell": "flaming-sphere", @@ -5388,7 +5388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5502, "fields": { "spell": "flaming-sphere", @@ -5400,7 +5400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5503, "fields": { "spell": "flaming-sphere", @@ -5412,7 +5412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5504, "fields": { "spell": "flaming-sphere", @@ -5424,7 +5424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5505, "fields": { "spell": "flaming-sphere", @@ -5436,7 +5436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5506, "fields": { "spell": "flaming-sphere", @@ -5448,7 +5448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5507, "fields": { "spell": "flaming-sphere", @@ -5460,7 +5460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5508, "fields": { "spell": "flesh-to-stone", @@ -5472,7 +5472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5509, "fields": { "spell": "floating-disk", @@ -5484,7 +5484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5510, "fields": { "spell": "floating-disk", @@ -5496,7 +5496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5511, "fields": { "spell": "fly", @@ -5508,7 +5508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5513, "fields": { "spell": "fly", @@ -5520,7 +5520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5514, "fields": { "spell": "fly", @@ -5532,7 +5532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5515, "fields": { "spell": "fly", @@ -5544,7 +5544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5516, "fields": { "spell": "fly", @@ -5556,7 +5556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5517, "fields": { "spell": "fly", @@ -5568,7 +5568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5518, "fields": { "spell": "fly", @@ -5580,7 +5580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5519, "fields": { "spell": "fog-cloud", @@ -5592,7 +5592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5521, "fields": { "spell": "fog-cloud", @@ -5604,7 +5604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5522, "fields": { "spell": "fog-cloud", @@ -5616,7 +5616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5523, "fields": { "spell": "fog-cloud", @@ -5628,7 +5628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5524, "fields": { "spell": "fog-cloud", @@ -5640,7 +5640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5525, "fields": { "spell": "fog-cloud", @@ -5652,7 +5652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5526, "fields": { "spell": "fog-cloud", @@ -5664,7 +5664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5527, "fields": { "spell": "fog-cloud", @@ -5676,7 +5676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5528, "fields": { "spell": "fog-cloud", @@ -5688,7 +5688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5529, "fields": { "spell": "forbiddance", @@ -5700,7 +5700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5530, "fields": { "spell": "forbiddance", @@ -5712,7 +5712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5531, "fields": { "spell": "forcecage", @@ -5724,7 +5724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5532, "fields": { "spell": "foresight", @@ -5736,7 +5736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5533, "fields": { "spell": "freedom-of-movement", @@ -5748,7 +5748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5534, "fields": { "spell": "freezing-sphere", @@ -5760,7 +5760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5536, "fields": { "spell": "freezing-sphere", @@ -5772,7 +5772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5537, "fields": { "spell": "freezing-sphere", @@ -5784,7 +5784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5538, "fields": { "spell": "freezing-sphere", @@ -5796,7 +5796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5539, "fields": { "spell": "gaseous-form", @@ -5808,7 +5808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5540, "fields": { "spell": "gate", @@ -5820,7 +5820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5541, "fields": { "spell": "geas", @@ -5832,7 +5832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5543, "fields": { "spell": "geas", @@ -5844,7 +5844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5544, "fields": { "spell": "geas", @@ -5856,7 +5856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5545, "fields": { "spell": "geas", @@ -5868,7 +5868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5546, "fields": { "spell": "geas", @@ -5880,7 +5880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5547, "fields": { "spell": "gentle-repose", @@ -5892,7 +5892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5548, "fields": { "spell": "gentle-repose", @@ -5904,7 +5904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5549, "fields": { "spell": "giant-insect", @@ -5916,7 +5916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5550, "fields": { "spell": "glibness", @@ -5928,7 +5928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5551, "fields": { "spell": "globe-of-invulnerability", @@ -5940,7 +5940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5553, "fields": { "spell": "globe-of-invulnerability", @@ -5952,7 +5952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5554, "fields": { "spell": "globe-of-invulnerability", @@ -5964,7 +5964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5555, "fields": { "spell": "globe-of-invulnerability", @@ -5976,7 +5976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5556, "fields": { "spell": "glyph-of-warding", @@ -5988,7 +5988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5558, "fields": { "spell": "glyph-of-warding", @@ -6000,7 +6000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5559, "fields": { "spell": "glyph-of-warding", @@ -6012,7 +6012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5560, "fields": { "spell": "glyph-of-warding", @@ -6024,7 +6024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5561, "fields": { "spell": "glyph-of-warding", @@ -6036,7 +6036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5562, "fields": { "spell": "glyph-of-warding", @@ -6048,7 +6048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5563, "fields": { "spell": "glyph-of-warding", @@ -6060,7 +6060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5564, "fields": { "spell": "goodberry", @@ -6072,7 +6072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5565, "fields": { "spell": "grease", @@ -6084,7 +6084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5566, "fields": { "spell": "greater-invisibility", @@ -6096,7 +6096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5567, "fields": { "spell": "greater-restoration", @@ -6108,7 +6108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5568, "fields": { "spell": "guardian-of-faith", @@ -6120,7 +6120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5569, "fields": { "spell": "guards-and-wards", @@ -6132,7 +6132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5570, "fields": { "spell": "guidance", @@ -6144,7 +6144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5571, "fields": { "spell": "guiding-bolt", @@ -6156,7 +6156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5573, "fields": { "spell": "guiding-bolt", @@ -6168,7 +6168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5574, "fields": { "spell": "guiding-bolt", @@ -6180,7 +6180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5575, "fields": { "spell": "guiding-bolt", @@ -6192,7 +6192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5576, "fields": { "spell": "guiding-bolt", @@ -6204,7 +6204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5577, "fields": { "spell": "guiding-bolt", @@ -6216,7 +6216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5578, "fields": { "spell": "guiding-bolt", @@ -6228,7 +6228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5579, "fields": { "spell": "guiding-bolt", @@ -6240,7 +6240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5580, "fields": { "spell": "guiding-bolt", @@ -6252,7 +6252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5581, "fields": { "spell": "gust-of-wind", @@ -6264,7 +6264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5582, "fields": { "spell": "hallow", @@ -6276,7 +6276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5583, "fields": { "spell": "hallucinatory-terrain", @@ -6288,7 +6288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5584, "fields": { "spell": "harm", @@ -6300,7 +6300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5585, "fields": { "spell": "haste", @@ -6312,7 +6312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5586, "fields": { "spell": "heal", @@ -6324,7 +6324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5588, "fields": { "spell": "heal", @@ -6336,7 +6336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5589, "fields": { "spell": "heal", @@ -6348,7 +6348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5590, "fields": { "spell": "heal", @@ -6360,7 +6360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5591, "fields": { "spell": "healing-word", @@ -6372,7 +6372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5593, "fields": { "spell": "healing-word", @@ -6384,7 +6384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5594, "fields": { "spell": "healing-word", @@ -6396,7 +6396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5595, "fields": { "spell": "healing-word", @@ -6408,7 +6408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5596, "fields": { "spell": "healing-word", @@ -6420,7 +6420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5597, "fields": { "spell": "healing-word", @@ -6432,7 +6432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5598, "fields": { "spell": "healing-word", @@ -6444,7 +6444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5599, "fields": { "spell": "healing-word", @@ -6456,7 +6456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5600, "fields": { "spell": "healing-word", @@ -6468,7 +6468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5601, "fields": { "spell": "heat-metal", @@ -6480,7 +6480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5603, "fields": { "spell": "heat-metal", @@ -6492,7 +6492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5604, "fields": { "spell": "heat-metal", @@ -6504,7 +6504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5605, "fields": { "spell": "heat-metal", @@ -6516,7 +6516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5606, "fields": { "spell": "heat-metal", @@ -6528,7 +6528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5607, "fields": { "spell": "heat-metal", @@ -6540,7 +6540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5608, "fields": { "spell": "heat-metal", @@ -6552,7 +6552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5609, "fields": { "spell": "heat-metal", @@ -6564,7 +6564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5610, "fields": { "spell": "hellish-rebuke", @@ -6576,7 +6576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5612, "fields": { "spell": "hellish-rebuke", @@ -6588,7 +6588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5613, "fields": { "spell": "hellish-rebuke", @@ -6600,7 +6600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5614, "fields": { "spell": "hellish-rebuke", @@ -6612,7 +6612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5615, "fields": { "spell": "hellish-rebuke", @@ -6624,7 +6624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5616, "fields": { "spell": "hellish-rebuke", @@ -6636,7 +6636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5617, "fields": { "spell": "hellish-rebuke", @@ -6648,7 +6648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5618, "fields": { "spell": "hellish-rebuke", @@ -6660,7 +6660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5619, "fields": { "spell": "hellish-rebuke", @@ -6672,7 +6672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5620, "fields": { "spell": "heroes-feast", @@ -6684,7 +6684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5621, "fields": { "spell": "heroism", @@ -6696,7 +6696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5622, "fields": { "spell": "hideous-laughter", @@ -6708,7 +6708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5623, "fields": { "spell": "hold-monster", @@ -6720,7 +6720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5625, "fields": { "spell": "hold-monster", @@ -6732,7 +6732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5626, "fields": { "spell": "hold-monster", @@ -6744,7 +6744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5627, "fields": { "spell": "hold-monster", @@ -6756,7 +6756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5628, "fields": { "spell": "hold-monster", @@ -6768,7 +6768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5629, "fields": { "spell": "hold-person", @@ -6780,7 +6780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5631, "fields": { "spell": "hold-person", @@ -6792,7 +6792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5632, "fields": { "spell": "hold-person", @@ -6804,7 +6804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5633, "fields": { "spell": "hold-person", @@ -6816,7 +6816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5634, "fields": { "spell": "hold-person", @@ -6828,7 +6828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5635, "fields": { "spell": "hold-person", @@ -6840,7 +6840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5636, "fields": { "spell": "hold-person", @@ -6852,7 +6852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5637, "fields": { "spell": "hold-person", @@ -6864,7 +6864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5638, "fields": { "spell": "holy-aura", @@ -6876,7 +6876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5639, "fields": { "spell": "hunters-mark", @@ -6888,7 +6888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5641, "fields": { "spell": "hunters-mark", @@ -6900,7 +6900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5642, "fields": { "spell": "hunters-mark", @@ -6912,7 +6912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5643, "fields": { "spell": "hunters-mark", @@ -6924,7 +6924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5644, "fields": { "spell": "hunters-mark", @@ -6936,7 +6936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5645, "fields": { "spell": "hunters-mark", @@ -6948,7 +6948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5646, "fields": { "spell": "hunters-mark", @@ -6960,7 +6960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5647, "fields": { "spell": "hunters-mark", @@ -6972,7 +6972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5648, "fields": { "spell": "hunters-mark", @@ -6984,7 +6984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5649, "fields": { "spell": "hypnotic-pattern", @@ -6996,7 +6996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5650, "fields": { "spell": "ice-storm", @@ -7008,7 +7008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5652, "fields": { "spell": "ice-storm", @@ -7020,7 +7020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5653, "fields": { "spell": "ice-storm", @@ -7032,7 +7032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5654, "fields": { "spell": "ice-storm", @@ -7044,7 +7044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5655, "fields": { "spell": "ice-storm", @@ -7056,7 +7056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5656, "fields": { "spell": "ice-storm", @@ -7068,7 +7068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5657, "fields": { "spell": "identify", @@ -7080,7 +7080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5658, "fields": { "spell": "identify", @@ -7092,7 +7092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5659, "fields": { "spell": "illusory-script", @@ -7104,7 +7104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5660, "fields": { "spell": "illusory-script", @@ -7116,7 +7116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5661, "fields": { "spell": "imprisonment", @@ -7128,7 +7128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5662, "fields": { "spell": "incendiary-cloud", @@ -7140,7 +7140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5663, "fields": { "spell": "inflict-wounds", @@ -7152,7 +7152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5665, "fields": { "spell": "inflict-wounds", @@ -7164,7 +7164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5666, "fields": { "spell": "inflict-wounds", @@ -7176,7 +7176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5667, "fields": { "spell": "inflict-wounds", @@ -7188,7 +7188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5668, "fields": { "spell": "inflict-wounds", @@ -7200,7 +7200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5669, "fields": { "spell": "inflict-wounds", @@ -7212,7 +7212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5670, "fields": { "spell": "inflict-wounds", @@ -7224,7 +7224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5671, "fields": { "spell": "inflict-wounds", @@ -7236,7 +7236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5672, "fields": { "spell": "inflict-wounds", @@ -7248,7 +7248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5673, "fields": { "spell": "insect-plague", @@ -7260,7 +7260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5675, "fields": { "spell": "insect-plague", @@ -7272,7 +7272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5676, "fields": { "spell": "insect-plague", @@ -7284,7 +7284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5677, "fields": { "spell": "insect-plague", @@ -7296,7 +7296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5678, "fields": { "spell": "insect-plague", @@ -7308,7 +7308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5679, "fields": { "spell": "instant-summons", @@ -7320,7 +7320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5680, "fields": { "spell": "instant-summons", @@ -7332,7 +7332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5681, "fields": { "spell": "invisibility", @@ -7344,7 +7344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5683, "fields": { "spell": "invisibility", @@ -7356,7 +7356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5684, "fields": { "spell": "invisibility", @@ -7368,7 +7368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5685, "fields": { "spell": "invisibility", @@ -7380,7 +7380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5686, "fields": { "spell": "invisibility", @@ -7392,7 +7392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5687, "fields": { "spell": "invisibility", @@ -7404,7 +7404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5688, "fields": { "spell": "invisibility", @@ -7416,7 +7416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5689, "fields": { "spell": "invisibility", @@ -7428,7 +7428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5690, "fields": { "spell": "irresistible-dance", @@ -7440,7 +7440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5691, "fields": { "spell": "jump", @@ -7452,7 +7452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5692, "fields": { "spell": "knock", @@ -7464,7 +7464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5693, "fields": { "spell": "legend-lore", @@ -7476,7 +7476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5694, "fields": { "spell": "lesser-restoration", @@ -7488,7 +7488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5695, "fields": { "spell": "levitate", @@ -7500,7 +7500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5696, "fields": { "spell": "light", @@ -7512,7 +7512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5697, "fields": { "spell": "lightning-bolt", @@ -7524,7 +7524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5699, "fields": { "spell": "lightning-bolt", @@ -7536,7 +7536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5700, "fields": { "spell": "lightning-bolt", @@ -7548,7 +7548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5701, "fields": { "spell": "lightning-bolt", @@ -7560,7 +7560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5702, "fields": { "spell": "lightning-bolt", @@ -7572,7 +7572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5703, "fields": { "spell": "lightning-bolt", @@ -7584,7 +7584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5704, "fields": { "spell": "lightning-bolt", @@ -7596,7 +7596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5705, "fields": { "spell": "locate-animals-or-plants", @@ -7608,7 +7608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5706, "fields": { "spell": "locate-animals-or-plants", @@ -7620,7 +7620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5707, "fields": { "spell": "locate-creature", @@ -7632,7 +7632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5708, "fields": { "spell": "locate-object", @@ -7644,7 +7644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5709, "fields": { "spell": "longstrider", @@ -7656,7 +7656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5711, "fields": { "spell": "longstrider", @@ -7668,7 +7668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5712, "fields": { "spell": "longstrider", @@ -7680,7 +7680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5713, "fields": { "spell": "longstrider", @@ -7692,7 +7692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5714, "fields": { "spell": "longstrider", @@ -7704,7 +7704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5715, "fields": { "spell": "longstrider", @@ -7716,7 +7716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5716, "fields": { "spell": "longstrider", @@ -7728,7 +7728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5717, "fields": { "spell": "longstrider", @@ -7740,7 +7740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5718, "fields": { "spell": "longstrider", @@ -7752,7 +7752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5719, "fields": { "spell": "mage-armor", @@ -7764,7 +7764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5720, "fields": { "spell": "mage-hand", @@ -7776,7 +7776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5721, "fields": { "spell": "magic-circle", @@ -7788,7 +7788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5723, "fields": { "spell": "magic-circle", @@ -7800,7 +7800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5724, "fields": { "spell": "magic-circle", @@ -7812,7 +7812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5725, "fields": { "spell": "magic-circle", @@ -7824,7 +7824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5726, "fields": { "spell": "magic-circle", @@ -7836,7 +7836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5727, "fields": { "spell": "magic-circle", @@ -7848,7 +7848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5728, "fields": { "spell": "magic-circle", @@ -7860,7 +7860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5729, "fields": { "spell": "magic-jar", @@ -7872,7 +7872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5730, "fields": { "spell": "magic-missile", @@ -7884,7 +7884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5732, "fields": { "spell": "magic-missile", @@ -7896,7 +7896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5733, "fields": { "spell": "magic-missile", @@ -7908,7 +7908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5734, "fields": { "spell": "magic-missile", @@ -7920,7 +7920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5735, "fields": { "spell": "magic-missile", @@ -7932,7 +7932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5736, "fields": { "spell": "magic-missile", @@ -7944,7 +7944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5737, "fields": { "spell": "magic-missile", @@ -7956,7 +7956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5738, "fields": { "spell": "magic-missile", @@ -7968,7 +7968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5739, "fields": { "spell": "magic-missile", @@ -7980,7 +7980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5740, "fields": { "spell": "magic-mouth", @@ -7992,7 +7992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5741, "fields": { "spell": "magic-mouth", @@ -8004,7 +8004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5742, "fields": { "spell": "magic-weapon", @@ -8016,7 +8016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5744, "fields": { "spell": "magic-weapon", @@ -8028,7 +8028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5745, "fields": { "spell": "magic-weapon", @@ -8040,7 +8040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5746, "fields": { "spell": "magic-weapon", @@ -8052,7 +8052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5747, "fields": { "spell": "magic-weapon", @@ -8064,7 +8064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5748, "fields": { "spell": "magic-weapon", @@ -8076,7 +8076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5749, "fields": { "spell": "magic-weapon", @@ -8088,7 +8088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5750, "fields": { "spell": "magic-weapon", @@ -8100,7 +8100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5751, "fields": { "spell": "magnificent-mansion", @@ -8112,7 +8112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5752, "fields": { "spell": "major-image", @@ -8124,7 +8124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5754, "fields": { "spell": "major-image", @@ -8136,7 +8136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5755, "fields": { "spell": "major-image", @@ -8148,7 +8148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5756, "fields": { "spell": "major-image", @@ -8160,7 +8160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5757, "fields": { "spell": "major-image", @@ -8172,7 +8172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5758, "fields": { "spell": "major-image", @@ -8184,7 +8184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5759, "fields": { "spell": "major-image", @@ -8196,7 +8196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5760, "fields": { "spell": "mass-cure-wounds", @@ -8208,7 +8208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5762, "fields": { "spell": "mass-cure-wounds", @@ -8220,7 +8220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5763, "fields": { "spell": "mass-cure-wounds", @@ -8232,7 +8232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5764, "fields": { "spell": "mass-cure-wounds", @@ -8244,7 +8244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5765, "fields": { "spell": "mass-cure-wounds", @@ -8256,7 +8256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5766, "fields": { "spell": "mass-heal", @@ -8268,7 +8268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5767, "fields": { "spell": "mass-healing-word", @@ -8280,7 +8280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5769, "fields": { "spell": "mass-healing-word", @@ -8292,7 +8292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5770, "fields": { "spell": "mass-healing-word", @@ -8304,7 +8304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5771, "fields": { "spell": "mass-healing-word", @@ -8316,7 +8316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5772, "fields": { "spell": "mass-healing-word", @@ -8328,7 +8328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5773, "fields": { "spell": "mass-healing-word", @@ -8340,7 +8340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5774, "fields": { "spell": "mass-healing-word", @@ -8352,7 +8352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5775, "fields": { "spell": "mass-suggestion", @@ -8364,7 +8364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5777, "fields": { "spell": "mass-suggestion", @@ -8376,7 +8376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5778, "fields": { "spell": "mass-suggestion", @@ -8388,7 +8388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5779, "fields": { "spell": "mass-suggestion", @@ -8400,7 +8400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5780, "fields": { "spell": "maze", @@ -8412,7 +8412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5781, "fields": { "spell": "meld-into-stone", @@ -8424,7 +8424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5782, "fields": { "spell": "meld-into-stone", @@ -8436,7 +8436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5783, "fields": { "spell": "mending", @@ -8448,7 +8448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5784, "fields": { "spell": "message", @@ -8460,7 +8460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5785, "fields": { "spell": "meteor-swarm", @@ -8472,7 +8472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5786, "fields": { "spell": "mind-blank", @@ -8484,7 +8484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5787, "fields": { "spell": "minor-illusion", @@ -8496,7 +8496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5788, "fields": { "spell": "mirage-arcane", @@ -8508,7 +8508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5789, "fields": { "spell": "mirror-image", @@ -8520,7 +8520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5790, "fields": { "spell": "mislead", @@ -8532,7 +8532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5791, "fields": { "spell": "misty-step", @@ -8544,7 +8544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5792, "fields": { "spell": "modify-memory", @@ -8556,7 +8556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5794, "fields": { "spell": "modify-memory", @@ -8568,7 +8568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5795, "fields": { "spell": "modify-memory", @@ -8580,7 +8580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5796, "fields": { "spell": "modify-memory", @@ -8592,7 +8592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5797, "fields": { "spell": "modify-memory", @@ -8604,7 +8604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5798, "fields": { "spell": "moonbeam", @@ -8616,7 +8616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5800, "fields": { "spell": "moonbeam", @@ -8628,7 +8628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5801, "fields": { "spell": "moonbeam", @@ -8640,7 +8640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5802, "fields": { "spell": "moonbeam", @@ -8652,7 +8652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5803, "fields": { "spell": "moonbeam", @@ -8664,7 +8664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5804, "fields": { "spell": "moonbeam", @@ -8676,7 +8676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5805, "fields": { "spell": "moonbeam", @@ -8688,7 +8688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5806, "fields": { "spell": "moonbeam", @@ -8700,7 +8700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5807, "fields": { "spell": "move-earth", @@ -8712,7 +8712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5808, "fields": { "spell": "nondetection", @@ -8724,7 +8724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5809, "fields": { "spell": "pass-without-trace", @@ -8736,7 +8736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5810, "fields": { "spell": "passwall", @@ -8748,7 +8748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5811, "fields": { "spell": "phantasmal-killer", @@ -8760,7 +8760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5813, "fields": { "spell": "phantasmal-killer", @@ -8772,7 +8772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5814, "fields": { "spell": "phantasmal-killer", @@ -8784,7 +8784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5815, "fields": { "spell": "phantasmal-killer", @@ -8796,7 +8796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5816, "fields": { "spell": "phantasmal-killer", @@ -8808,7 +8808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5817, "fields": { "spell": "phantasmal-killer", @@ -8820,7 +8820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5818, "fields": { "spell": "phantom-steed", @@ -8832,7 +8832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5819, "fields": { "spell": "phantom-steed", @@ -8844,7 +8844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5820, "fields": { "spell": "planar-ally", @@ -8856,7 +8856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5821, "fields": { "spell": "planar-binding", @@ -8868,7 +8868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5823, "fields": { "spell": "planar-binding", @@ -8880,7 +8880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5824, "fields": { "spell": "planar-binding", @@ -8892,7 +8892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5825, "fields": { "spell": "planar-binding", @@ -8904,7 +8904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5826, "fields": { "spell": "planar-binding", @@ -8916,7 +8916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5827, "fields": { "spell": "plane-shift", @@ -8928,7 +8928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5828, "fields": { "spell": "plant-growth", @@ -8940,7 +8940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5829, "fields": { "spell": "poison-spray", @@ -8952,7 +8952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5830, "fields": { "spell": "poison-spray", @@ -8964,7 +8964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5831, "fields": { "spell": "poison-spray", @@ -8976,7 +8976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5832, "fields": { "spell": "poison-spray", @@ -8988,7 +8988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5833, "fields": { "spell": "poison-spray", @@ -9000,7 +9000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5834, "fields": { "spell": "poison-spray", @@ -9012,7 +9012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5835, "fields": { "spell": "poison-spray", @@ -9024,7 +9024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5836, "fields": { "spell": "poison-spray", @@ -9036,7 +9036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5837, "fields": { "spell": "poison-spray", @@ -9048,7 +9048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5838, "fields": { "spell": "poison-spray", @@ -9060,7 +9060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5839, "fields": { "spell": "poison-spray", @@ -9072,7 +9072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5840, "fields": { "spell": "poison-spray", @@ -9084,7 +9084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5841, "fields": { "spell": "poison-spray", @@ -9096,7 +9096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5842, "fields": { "spell": "poison-spray", @@ -9108,7 +9108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5843, "fields": { "spell": "poison-spray", @@ -9120,7 +9120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5844, "fields": { "spell": "poison-spray", @@ -9132,7 +9132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5845, "fields": { "spell": "poison-spray", @@ -9144,7 +9144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5846, "fields": { "spell": "poison-spray", @@ -9156,7 +9156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5847, "fields": { "spell": "poison-spray", @@ -9168,7 +9168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5848, "fields": { "spell": "poison-spray", @@ -9180,7 +9180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5849, "fields": { "spell": "poison-spray", @@ -9192,7 +9192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5850, "fields": { "spell": "polymorph", @@ -9204,7 +9204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5851, "fields": { "spell": "power-word-kill", @@ -9216,7 +9216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5852, "fields": { "spell": "power-word-stun", @@ -9228,7 +9228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5853, "fields": { "spell": "prayer-of-healing", @@ -9240,7 +9240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5855, "fields": { "spell": "prayer-of-healing", @@ -9252,7 +9252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5856, "fields": { "spell": "prayer-of-healing", @@ -9264,7 +9264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5857, "fields": { "spell": "prayer-of-healing", @@ -9276,7 +9276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5858, "fields": { "spell": "prayer-of-healing", @@ -9288,7 +9288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5859, "fields": { "spell": "prayer-of-healing", @@ -9300,7 +9300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5860, "fields": { "spell": "prayer-of-healing", @@ -9312,7 +9312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5861, "fields": { "spell": "prayer-of-healing", @@ -9324,7 +9324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5862, "fields": { "spell": "prestidigitation", @@ -9336,7 +9336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5863, "fields": { "spell": "prismatic-spray", @@ -9348,7 +9348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5864, "fields": { "spell": "prismatic-wall", @@ -9360,7 +9360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5865, "fields": { "spell": "private-sanctum", @@ -9372,7 +9372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5867, "fields": { "spell": "private-sanctum", @@ -9384,7 +9384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5868, "fields": { "spell": "private-sanctum", @@ -9396,7 +9396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5869, "fields": { "spell": "private-sanctum", @@ -9408,7 +9408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5870, "fields": { "spell": "private-sanctum", @@ -9420,7 +9420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5871, "fields": { "spell": "private-sanctum", @@ -9432,7 +9432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5872, "fields": { "spell": "produce-flame", @@ -9444,7 +9444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5873, "fields": { "spell": "produce-flame", @@ -9456,7 +9456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5874, "fields": { "spell": "produce-flame", @@ -9468,7 +9468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5875, "fields": { "spell": "produce-flame", @@ -9480,7 +9480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5876, "fields": { "spell": "produce-flame", @@ -9492,7 +9492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5877, "fields": { "spell": "produce-flame", @@ -9504,7 +9504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5878, "fields": { "spell": "produce-flame", @@ -9516,7 +9516,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5879, "fields": { "spell": "produce-flame", @@ -9528,7 +9528,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5880, "fields": { "spell": "produce-flame", @@ -9540,7 +9540,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5881, "fields": { "spell": "produce-flame", @@ -9552,7 +9552,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5882, "fields": { "spell": "produce-flame", @@ -9564,7 +9564,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5883, "fields": { "spell": "produce-flame", @@ -9576,7 +9576,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5884, "fields": { "spell": "produce-flame", @@ -9588,7 +9588,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5885, "fields": { "spell": "produce-flame", @@ -9600,7 +9600,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5886, "fields": { "spell": "produce-flame", @@ -9612,7 +9612,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5887, "fields": { "spell": "produce-flame", @@ -9624,7 +9624,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5888, "fields": { "spell": "produce-flame", @@ -9636,7 +9636,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5889, "fields": { "spell": "produce-flame", @@ -9648,7 +9648,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5890, "fields": { "spell": "produce-flame", @@ -9660,7 +9660,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5891, "fields": { "spell": "produce-flame", @@ -9672,7 +9672,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5892, "fields": { "spell": "produce-flame", @@ -9684,7 +9684,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5893, "fields": { "spell": "programmed-illusion", @@ -9696,7 +9696,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5894, "fields": { "spell": "project-image", @@ -9708,7 +9708,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5895, "fields": { "spell": "protection-from-energy", @@ -9720,7 +9720,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5896, "fields": { "spell": "protection-from-evil-and-good", @@ -9732,7 +9732,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5897, "fields": { "spell": "protection-from-poison", @@ -9744,7 +9744,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5898, "fields": { "spell": "purify-food-and-drink", @@ -9756,7 +9756,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5899, "fields": { "spell": "purify-food-and-drink", @@ -9768,7 +9768,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5900, "fields": { "spell": "raise-dead", @@ -9780,7 +9780,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5901, "fields": { "spell": "ray-of-enfeeblement", @@ -9792,7 +9792,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5902, "fields": { "spell": "ray-of-frost", @@ -9804,7 +9804,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5903, "fields": { "spell": "ray-of-frost", @@ -9816,7 +9816,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5904, "fields": { "spell": "ray-of-frost", @@ -9828,7 +9828,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5905, "fields": { "spell": "ray-of-frost", @@ -9840,7 +9840,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5906, "fields": { "spell": "ray-of-frost", @@ -9852,7 +9852,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5907, "fields": { "spell": "ray-of-frost", @@ -9864,7 +9864,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5908, "fields": { "spell": "ray-of-frost", @@ -9876,7 +9876,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5909, "fields": { "spell": "ray-of-frost", @@ -9888,7 +9888,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5910, "fields": { "spell": "ray-of-frost", @@ -9900,7 +9900,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5911, "fields": { "spell": "ray-of-frost", @@ -9912,7 +9912,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5912, "fields": { "spell": "ray-of-frost", @@ -9924,7 +9924,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5913, "fields": { "spell": "ray-of-frost", @@ -9936,7 +9936,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5914, "fields": { "spell": "ray-of-frost", @@ -9948,7 +9948,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5915, "fields": { "spell": "ray-of-frost", @@ -9960,7 +9960,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5916, "fields": { "spell": "ray-of-frost", @@ -9972,7 +9972,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5917, "fields": { "spell": "ray-of-frost", @@ -9984,7 +9984,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5918, "fields": { "spell": "ray-of-frost", @@ -9996,7 +9996,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5919, "fields": { "spell": "ray-of-frost", @@ -10008,7 +10008,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5920, "fields": { "spell": "ray-of-frost", @@ -10020,7 +10020,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5921, "fields": { "spell": "ray-of-frost", @@ -10032,7 +10032,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5922, "fields": { "spell": "ray-of-frost", @@ -10044,7 +10044,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5923, "fields": { "spell": "regenerate", @@ -10056,7 +10056,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5924, "fields": { "spell": "reincarnate", @@ -10068,7 +10068,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5925, "fields": { "spell": "remove-curse", @@ -10080,7 +10080,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5926, "fields": { "spell": "resilient-sphere", @@ -10092,7 +10092,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5927, "fields": { "spell": "resistance", @@ -10104,7 +10104,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5928, "fields": { "spell": "resurrection", @@ -10116,7 +10116,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5929, "fields": { "spell": "reverse-gravity", @@ -10128,7 +10128,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5930, "fields": { "spell": "revivify", @@ -10140,7 +10140,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5931, "fields": { "spell": "rope-trick", @@ -10152,7 +10152,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5932, "fields": { "spell": "sacred-flame", @@ -10164,7 +10164,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5933, "fields": { "spell": "sacred-flame", @@ -10176,7 +10176,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5934, "fields": { "spell": "sacred-flame", @@ -10188,7 +10188,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5935, "fields": { "spell": "sacred-flame", @@ -10200,7 +10200,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5936, "fields": { "spell": "sacred-flame", @@ -10212,7 +10212,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5937, "fields": { "spell": "sacred-flame", @@ -10224,7 +10224,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5938, "fields": { "spell": "sacred-flame", @@ -10236,7 +10236,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5939, "fields": { "spell": "sacred-flame", @@ -10248,7 +10248,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5940, "fields": { "spell": "sacred-flame", @@ -10260,7 +10260,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5941, "fields": { "spell": "sacred-flame", @@ -10272,7 +10272,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5942, "fields": { "spell": "sacred-flame", @@ -10284,7 +10284,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5943, "fields": { "spell": "sacred-flame", @@ -10296,7 +10296,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5944, "fields": { "spell": "sacred-flame", @@ -10308,7 +10308,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5945, "fields": { "spell": "sacred-flame", @@ -10320,7 +10320,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5946, "fields": { "spell": "sacred-flame", @@ -10332,7 +10332,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5947, "fields": { "spell": "sacred-flame", @@ -10344,7 +10344,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5948, "fields": { "spell": "sacred-flame", @@ -10356,7 +10356,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5949, "fields": { "spell": "sacred-flame", @@ -10368,7 +10368,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5950, "fields": { "spell": "sacred-flame", @@ -10380,7 +10380,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5951, "fields": { "spell": "sacred-flame", @@ -10392,7 +10392,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5952, "fields": { "spell": "sacred-flame", @@ -10404,7 +10404,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5953, "fields": { "spell": "sanctuary", @@ -10416,7 +10416,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5954, "fields": { "spell": "scorching-ray", @@ -10428,7 +10428,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5956, "fields": { "spell": "scorching-ray", @@ -10440,7 +10440,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5957, "fields": { "spell": "scorching-ray", @@ -10452,7 +10452,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5958, "fields": { "spell": "scorching-ray", @@ -10464,7 +10464,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5959, "fields": { "spell": "scorching-ray", @@ -10476,7 +10476,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5960, "fields": { "spell": "scorching-ray", @@ -10488,7 +10488,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5961, "fields": { "spell": "scorching-ray", @@ -10500,7 +10500,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5962, "fields": { "spell": "scorching-ray", @@ -10512,7 +10512,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5963, "fields": { "spell": "scrying", @@ -10524,7 +10524,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5964, "fields": { "spell": "secret-chest", @@ -10536,7 +10536,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5965, "fields": { "spell": "see-invisibility", @@ -10548,7 +10548,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5966, "fields": { "spell": "seeming", @@ -10560,7 +10560,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5967, "fields": { "spell": "sending", @@ -10572,7 +10572,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5968, "fields": { "spell": "sequester", @@ -10584,7 +10584,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5969, "fields": { "spell": "shapechange", @@ -10596,7 +10596,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5970, "fields": { "spell": "shatter", @@ -10608,7 +10608,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5972, "fields": { "spell": "shatter", @@ -10620,7 +10620,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5973, "fields": { "spell": "shatter", @@ -10632,7 +10632,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5974, "fields": { "spell": "shatter", @@ -10644,7 +10644,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5975, "fields": { "spell": "shatter", @@ -10656,7 +10656,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5976, "fields": { "spell": "shatter", @@ -10668,7 +10668,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5977, "fields": { "spell": "shatter", @@ -10680,7 +10680,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5978, "fields": { "spell": "shatter", @@ -10692,7 +10692,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5979, "fields": { "spell": "shield", @@ -10704,7 +10704,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5980, "fields": { "spell": "shield-of-faith", @@ -10716,7 +10716,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5981, "fields": { "spell": "shillelagh", @@ -10728,7 +10728,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5982, "fields": { "spell": "shocking-grasp", @@ -10740,7 +10740,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5983, "fields": { "spell": "shocking-grasp", @@ -10752,7 +10752,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5984, "fields": { "spell": "shocking-grasp", @@ -10764,7 +10764,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5985, "fields": { "spell": "shocking-grasp", @@ -10776,7 +10776,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5986, "fields": { "spell": "shocking-grasp", @@ -10788,7 +10788,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5987, "fields": { "spell": "shocking-grasp", @@ -10800,7 +10800,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5988, "fields": { "spell": "shocking-grasp", @@ -10812,7 +10812,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5989, "fields": { "spell": "shocking-grasp", @@ -10824,7 +10824,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5990, "fields": { "spell": "shocking-grasp", @@ -10836,7 +10836,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5991, "fields": { "spell": "shocking-grasp", @@ -10848,7 +10848,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5992, "fields": { "spell": "shocking-grasp", @@ -10860,7 +10860,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5993, "fields": { "spell": "shocking-grasp", @@ -10872,7 +10872,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5994, "fields": { "spell": "shocking-grasp", @@ -10884,7 +10884,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5995, "fields": { "spell": "shocking-grasp", @@ -10896,7 +10896,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5996, "fields": { "spell": "shocking-grasp", @@ -10908,7 +10908,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5997, "fields": { "spell": "shocking-grasp", @@ -10920,7 +10920,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5998, "fields": { "spell": "shocking-grasp", @@ -10932,7 +10932,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 5999, "fields": { "spell": "shocking-grasp", @@ -10944,7 +10944,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6000, "fields": { "spell": "shocking-grasp", @@ -10956,7 +10956,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6001, "fields": { "spell": "shocking-grasp", @@ -10968,7 +10968,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6002, "fields": { "spell": "shocking-grasp", @@ -10980,7 +10980,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6003, "fields": { "spell": "silence", @@ -10992,7 +10992,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6004, "fields": { "spell": "silence", @@ -11004,7 +11004,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6005, "fields": { "spell": "silent-image", @@ -11016,7 +11016,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6006, "fields": { "spell": "simulacrum", @@ -11028,7 +11028,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6007, "fields": { "spell": "sleep", @@ -11040,7 +11040,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6009, "fields": { "spell": "sleep", @@ -11052,7 +11052,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6010, "fields": { "spell": "sleep", @@ -11064,7 +11064,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6011, "fields": { "spell": "sleep", @@ -11076,7 +11076,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6012, "fields": { "spell": "sleep", @@ -11088,7 +11088,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6013, "fields": { "spell": "sleep", @@ -11100,7 +11100,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6014, "fields": { "spell": "sleep", @@ -11112,7 +11112,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6015, "fields": { "spell": "sleep", @@ -11124,7 +11124,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6016, "fields": { "spell": "sleep", @@ -11136,7 +11136,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6017, "fields": { "spell": "sleet-storm", @@ -11148,7 +11148,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6018, "fields": { "spell": "slow", @@ -11160,7 +11160,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6019, "fields": { "spell": "spare-the-dying", @@ -11172,7 +11172,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6020, "fields": { "spell": "speak-with-animals", @@ -11184,7 +11184,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6021, "fields": { "spell": "speak-with-animals", @@ -11196,7 +11196,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6022, "fields": { "spell": "speak-with-dead", @@ -11208,7 +11208,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6023, "fields": { "spell": "speak-with-plants", @@ -11220,7 +11220,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6024, "fields": { "spell": "spider-climb", @@ -11232,7 +11232,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6025, "fields": { "spell": "spike-growth", @@ -11244,7 +11244,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6026, "fields": { "spell": "spirit-guardians", @@ -11256,7 +11256,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6028, "fields": { "spell": "spirit-guardians", @@ -11268,7 +11268,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6029, "fields": { "spell": "spirit-guardians", @@ -11280,7 +11280,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6030, "fields": { "spell": "spirit-guardians", @@ -11292,7 +11292,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6031, "fields": { "spell": "spirit-guardians", @@ -11304,7 +11304,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6032, "fields": { "spell": "spirit-guardians", @@ -11316,7 +11316,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6033, "fields": { "spell": "spirit-guardians", @@ -11328,7 +11328,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6034, "fields": { "spell": "spiritual-weapon", @@ -11340,7 +11340,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6036, "fields": { "spell": "spiritual-weapon", @@ -11352,7 +11352,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6037, "fields": { "spell": "spiritual-weapon", @@ -11364,7 +11364,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6038, "fields": { "spell": "spiritual-weapon", @@ -11376,7 +11376,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6039, "fields": { "spell": "spiritual-weapon", @@ -11388,7 +11388,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6040, "fields": { "spell": "spiritual-weapon", @@ -11400,7 +11400,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6041, "fields": { "spell": "spiritual-weapon", @@ -11412,7 +11412,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6042, "fields": { "spell": "spiritual-weapon", @@ -11424,7 +11424,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6043, "fields": { "spell": "stinking-cloud", @@ -11436,7 +11436,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6044, "fields": { "spell": "stone-shape", @@ -11448,7 +11448,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6045, "fields": { "spell": "stoneskin", @@ -11460,7 +11460,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6046, "fields": { "spell": "storm-of-vengeance", @@ -11472,7 +11472,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6047, "fields": { "spell": "suggestion", @@ -11484,7 +11484,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6048, "fields": { "spell": "sunbeam", @@ -11496,7 +11496,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6049, "fields": { "spell": "sunburst", @@ -11508,7 +11508,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6050, "fields": { "spell": "symbol", @@ -11520,7 +11520,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6051, "fields": { "spell": "telekinesis", @@ -11532,7 +11532,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6052, "fields": { "spell": "telepathic-bond", @@ -11544,7 +11544,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6053, "fields": { "spell": "telepathic-bond", @@ -11556,7 +11556,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6054, "fields": { "spell": "teleport", @@ -11568,7 +11568,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6055, "fields": { "spell": "teleportation-circle", @@ -11580,7 +11580,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6056, "fields": { "spell": "thaumaturgy", @@ -11592,7 +11592,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6057, "fields": { "spell": "thunderwave", @@ -11604,7 +11604,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6059, "fields": { "spell": "thunderwave", @@ -11616,7 +11616,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6060, "fields": { "spell": "thunderwave", @@ -11628,7 +11628,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6061, "fields": { "spell": "thunderwave", @@ -11640,7 +11640,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6062, "fields": { "spell": "thunderwave", @@ -11652,7 +11652,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6063, "fields": { "spell": "thunderwave", @@ -11664,7 +11664,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6064, "fields": { "spell": "thunderwave", @@ -11676,7 +11676,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6065, "fields": { "spell": "thunderwave", @@ -11688,7 +11688,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6066, "fields": { "spell": "thunderwave", @@ -11700,7 +11700,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6067, "fields": { "spell": "time-stop", @@ -11712,7 +11712,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6068, "fields": { "spell": "tiny-hut", @@ -11724,7 +11724,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6069, "fields": { "spell": "tiny-hut", @@ -11736,7 +11736,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6070, "fields": { "spell": "tongues", @@ -11748,7 +11748,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6071, "fields": { "spell": "transport-via-plants", @@ -11760,7 +11760,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6072, "fields": { "spell": "tree-stride", @@ -11772,7 +11772,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6073, "fields": { "spell": "true-polymorph", @@ -11784,7 +11784,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6074, "fields": { "spell": "true-resurrection", @@ -11796,7 +11796,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6075, "fields": { "spell": "true-seeing", @@ -11808,7 +11808,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6076, "fields": { "spell": "true-strike", @@ -11820,7 +11820,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6077, "fields": { "spell": "unseen-servant", @@ -11832,7 +11832,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6078, "fields": { "spell": "unseen-servant", @@ -11844,7 +11844,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6079, "fields": { "spell": "vampiric-touch", @@ -11856,7 +11856,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6081, "fields": { "spell": "vampiric-touch", @@ -11868,7 +11868,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6082, "fields": { "spell": "vampiric-touch", @@ -11880,7 +11880,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6083, "fields": { "spell": "vampiric-touch", @@ -11892,7 +11892,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6084, "fields": { "spell": "vampiric-touch", @@ -11904,7 +11904,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6085, "fields": { "spell": "vampiric-touch", @@ -11916,7 +11916,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6086, "fields": { "spell": "vampiric-touch", @@ -11928,7 +11928,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6087, "fields": { "spell": "vicious-mockery", @@ -11940,7 +11940,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6088, "fields": { "spell": "vicious-mockery", @@ -11952,7 +11952,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6089, "fields": { "spell": "vicious-mockery", @@ -11964,7 +11964,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6090, "fields": { "spell": "vicious-mockery", @@ -11976,7 +11976,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6091, "fields": { "spell": "vicious-mockery", @@ -11988,7 +11988,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6092, "fields": { "spell": "vicious-mockery", @@ -12000,7 +12000,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6093, "fields": { "spell": "vicious-mockery", @@ -12012,7 +12012,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6094, "fields": { "spell": "vicious-mockery", @@ -12024,7 +12024,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6095, "fields": { "spell": "vicious-mockery", @@ -12036,7 +12036,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6096, "fields": { "spell": "vicious-mockery", @@ -12048,7 +12048,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6097, "fields": { "spell": "vicious-mockery", @@ -12060,7 +12060,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6098, "fields": { "spell": "vicious-mockery", @@ -12072,7 +12072,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6099, "fields": { "spell": "vicious-mockery", @@ -12084,7 +12084,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6100, "fields": { "spell": "vicious-mockery", @@ -12096,7 +12096,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6101, "fields": { "spell": "vicious-mockery", @@ -12108,7 +12108,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6102, "fields": { "spell": "vicious-mockery", @@ -12120,7 +12120,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6103, "fields": { "spell": "vicious-mockery", @@ -12132,7 +12132,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6104, "fields": { "spell": "vicious-mockery", @@ -12144,7 +12144,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6105, "fields": { "spell": "vicious-mockery", @@ -12156,7 +12156,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6106, "fields": { "spell": "vicious-mockery", @@ -12168,7 +12168,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6107, "fields": { "spell": "vicious-mockery", @@ -12180,7 +12180,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6108, "fields": { "spell": "wall-of-fire", @@ -12192,7 +12192,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6110, "fields": { "spell": "wall-of-fire", @@ -12204,7 +12204,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6111, "fields": { "spell": "wall-of-fire", @@ -12216,7 +12216,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6112, "fields": { "spell": "wall-of-fire", @@ -12228,7 +12228,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6113, "fields": { "spell": "wall-of-fire", @@ -12240,7 +12240,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6114, "fields": { "spell": "wall-of-fire", @@ -12252,7 +12252,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6115, "fields": { "spell": "wall-of-force", @@ -12264,7 +12264,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6116, "fields": { "spell": "wall-of-ice", @@ -12276,7 +12276,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6118, "fields": { "spell": "wall-of-ice", @@ -12288,7 +12288,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6119, "fields": { "spell": "wall-of-ice", @@ -12300,7 +12300,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6120, "fields": { "spell": "wall-of-ice", @@ -12312,7 +12312,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6121, "fields": { "spell": "wall-of-stone", @@ -12324,7 +12324,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6122, "fields": { "spell": "wall-of-thorns", @@ -12336,7 +12336,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6124, "fields": { "spell": "wall-of-thorns", @@ -12348,7 +12348,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6125, "fields": { "spell": "wall-of-thorns", @@ -12360,7 +12360,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6126, "fields": { "spell": "wall-of-thorns", @@ -12372,7 +12372,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6127, "fields": { "spell": "warding-bond", @@ -12384,7 +12384,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6128, "fields": { "spell": "water-breathing", @@ -12396,7 +12396,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6129, "fields": { "spell": "water-breathing", @@ -12408,7 +12408,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6130, "fields": { "spell": "water-walk", @@ -12420,7 +12420,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6131, "fields": { "spell": "water-walk", @@ -12432,7 +12432,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6132, "fields": { "spell": "web", @@ -12444,7 +12444,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6133, "fields": { "spell": "weird", @@ -12456,7 +12456,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6134, "fields": { "spell": "wind-walk", @@ -12468,7 +12468,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6135, "fields": { "spell": "wind-wall", @@ -12480,7 +12480,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6136, "fields": { "spell": "wish", @@ -12492,7 +12492,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6137, "fields": { "spell": "word-of-recall", @@ -12504,7 +12504,7 @@ } }, { - "model": "api_v2.castingoption", + "model": "api_v2.spellcastingoption", "pk": 6138, "fields": { "spell": "zone-of-truth", From 14bdd40fc69724bcddc2ab1ebb081ae7c374155c Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 12:03:46 -0500 Subject: [PATCH 48/84] Standardizing field name. --- api_v2/models/spell.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/api_v2/models/spell.py b/api_v2/models/spell.py index 53937cc2..bb2568ed 100644 --- a/api_v2/models/spell.py +++ b/api_v2/models/spell.py @@ -128,8 +128,7 @@ def casting_options(self): class SpellCastingOption(models.Model): """An object representing an alternative way to cast a spell.""" - # TODO rename to parent - spell = models.ForeignKey("Spell",on_delete=models.CASCADE) + parent = models.ForeignKey("Spell",on_delete=models.CASCADE) type = models.TextField( choices=CASTING_OPTION_TYPES, From c09563952e31d39c58fe38dfa3892482088a89e3 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 12:05:09 -0500 Subject: [PATCH 49/84] Fixing data. --- api_v2/management/commands/export.py | 11 +- ..._rename_spell_spellcastingoption_parent.py | 18 + .../a5e-ag/SpellCastingOption.json | 3326 ++++++------- .../deepm/SpellCastingOption.json | 4200 ++++++++--------- .../deepmx/SpellCastingOption.json | 338 +- .../kobold-press/kp/SpellCastingOption.json | 168 +- .../kobold-press/toh/SpellCastingOption.json | 716 +-- .../kobold-press/wz/SpellCastingOption.json | 322 +- data/v2/open5e/open5e/SpellCastingOption.json | 20 +- .../srd/SpellCastingOption.json | 2086 ++++---- 10 files changed, 5607 insertions(+), 5598 deletions(-) create mode 100644 api_v2/migrations/0086_rename_spell_spellcastingoption_parent.py diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index bfc50087..b1026027 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -113,16 +113,7 @@ def handle(self, *args, **options) -> None: if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES: if model.__name__ in CHILD_MODEL_NAMES: - if model.__name__ == 'RaceTrait': - modelq = model.objects.filter(parent__document=doc).order_by('pk') - if model.__name__ == 'FeatBenefit': - modelq = model.objects.filter(parent__document=doc).order_by('pk') - if model.__name__ == 'BackgroundBenefit': - modelq = model.objects.filter(parent__document=doc).order_by('pk') - if model.__name__ == 'SpellCastingOption': - modelq = model.objects.filter(spell__document=doc).order_by('pk') - if model.__name__ == 'ClassFeatureItem': - modelq = model.objects.filter(parent__document=doc).order_by('pk') + modelq = model.objects.filter(parent__document=doc).order_by('pk') else: modelq = model.objects.filter(document=doc).order_by('pk') model_path = get_filepath_by_model( diff --git a/api_v2/migrations/0086_rename_spell_spellcastingoption_parent.py b/api_v2/migrations/0086_rename_spell_spellcastingoption_parent.py new file mode 100644 index 00000000..7f54dde3 --- /dev/null +++ b/api_v2/migrations/0086_rename_spell_spellcastingoption_parent.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-05-27 17:03 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0085_rename_castingoption_spellcastingoption'), + ] + + operations = [ + migrations.RenameField( + model_name='spellcastingoption', + old_name='spell', + new_name='parent', + ), + ] diff --git a/data/v2/en-publishing/a5e-ag/SpellCastingOption.json b/data/v2/en-publishing/a5e-ag/SpellCastingOption.json index 4b68f25e..36afa255 100644 --- a/data/v2/en-publishing/a5e-ag/SpellCastingOption.json +++ b/data/v2/en-publishing/a5e-ag/SpellCastingOption.json @@ -3,7 +3,7 @@ "model": "api_v2.spellcastingoption", "pk": 403, "fields": { - "spell": "accelerando-a5e", + "parent": "accelerando-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15,7 +15,7 @@ "model": "api_v2.spellcastingoption", "pk": 405, "fields": { - "spell": "accelerando-a5e", + "parent": "accelerando-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -27,7 +27,7 @@ "model": "api_v2.spellcastingoption", "pk": 406, "fields": { - "spell": "accelerando-a5e", + "parent": "accelerando-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -39,7 +39,7 @@ "model": "api_v2.spellcastingoption", "pk": 407, "fields": { - "spell": "accelerando-a5e", + "parent": "accelerando-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -51,7 +51,7 @@ "model": "api_v2.spellcastingoption", "pk": 408, "fields": { - "spell": "accelerando-a5e", + "parent": "accelerando-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -63,7 +63,7 @@ "model": "api_v2.spellcastingoption", "pk": 409, "fields": { - "spell": "accelerando-a5e", + "parent": "accelerando-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -75,7 +75,7 @@ "model": "api_v2.spellcastingoption", "pk": 410, "fields": { - "spell": "acid-arrow-a5e", + "parent": "acid-arrow-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -87,7 +87,7 @@ "model": "api_v2.spellcastingoption", "pk": 412, "fields": { - "spell": "acid-arrow-a5e", + "parent": "acid-arrow-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -99,7 +99,7 @@ "model": "api_v2.spellcastingoption", "pk": 413, "fields": { - "spell": "acid-arrow-a5e", + "parent": "acid-arrow-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -111,7 +111,7 @@ "model": "api_v2.spellcastingoption", "pk": 414, "fields": { - "spell": "acid-arrow-a5e", + "parent": "acid-arrow-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -123,7 +123,7 @@ "model": "api_v2.spellcastingoption", "pk": 415, "fields": { - "spell": "acid-arrow-a5e", + "parent": "acid-arrow-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -135,7 +135,7 @@ "model": "api_v2.spellcastingoption", "pk": 416, "fields": { - "spell": "acid-arrow-a5e", + "parent": "acid-arrow-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -147,7 +147,7 @@ "model": "api_v2.spellcastingoption", "pk": 417, "fields": { - "spell": "acid-arrow-a5e", + "parent": "acid-arrow-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -159,7 +159,7 @@ "model": "api_v2.spellcastingoption", "pk": 418, "fields": { - "spell": "acid-arrow-a5e", + "parent": "acid-arrow-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -171,7 +171,7 @@ "model": "api_v2.spellcastingoption", "pk": 419, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -183,7 +183,7 @@ "model": "api_v2.spellcastingoption", "pk": 420, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_1", "damage_roll": "", "target_count": null, @@ -195,7 +195,7 @@ "model": "api_v2.spellcastingoption", "pk": 421, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_2", "damage_roll": "", "target_count": null, @@ -207,7 +207,7 @@ "model": "api_v2.spellcastingoption", "pk": 422, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_3", "damage_roll": "", "target_count": null, @@ -219,7 +219,7 @@ "model": "api_v2.spellcastingoption", "pk": 423, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_4", "damage_roll": "", "target_count": null, @@ -231,7 +231,7 @@ "model": "api_v2.spellcastingoption", "pk": 424, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_5", "damage_roll": "2d6", "target_count": null, @@ -243,7 +243,7 @@ "model": "api_v2.spellcastingoption", "pk": 425, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_6", "damage_roll": "2d6", "target_count": null, @@ -255,7 +255,7 @@ "model": "api_v2.spellcastingoption", "pk": 426, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_7", "damage_roll": "2d6", "target_count": null, @@ -267,7 +267,7 @@ "model": "api_v2.spellcastingoption", "pk": 427, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_8", "damage_roll": "2d6", "target_count": null, @@ -279,7 +279,7 @@ "model": "api_v2.spellcastingoption", "pk": 428, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_9", "damage_roll": "2d6", "target_count": null, @@ -291,7 +291,7 @@ "model": "api_v2.spellcastingoption", "pk": 429, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_10", "damage_roll": "2d6", "target_count": null, @@ -303,7 +303,7 @@ "model": "api_v2.spellcastingoption", "pk": 430, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_11", "damage_roll": "3d6", "target_count": null, @@ -315,7 +315,7 @@ "model": "api_v2.spellcastingoption", "pk": 431, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_12", "damage_roll": "3d6", "target_count": null, @@ -327,7 +327,7 @@ "model": "api_v2.spellcastingoption", "pk": 432, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_13", "damage_roll": "3d6", "target_count": null, @@ -339,7 +339,7 @@ "model": "api_v2.spellcastingoption", "pk": 433, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_14", "damage_roll": "3d6", "target_count": null, @@ -351,7 +351,7 @@ "model": "api_v2.spellcastingoption", "pk": 434, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_15", "damage_roll": "3d6", "target_count": null, @@ -363,7 +363,7 @@ "model": "api_v2.spellcastingoption", "pk": 435, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_16", "damage_roll": "3d6", "target_count": null, @@ -375,7 +375,7 @@ "model": "api_v2.spellcastingoption", "pk": 436, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_17", "damage_roll": "4d6", "target_count": null, @@ -387,7 +387,7 @@ "model": "api_v2.spellcastingoption", "pk": 437, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_18", "damage_roll": "4d6", "target_count": null, @@ -399,7 +399,7 @@ "model": "api_v2.spellcastingoption", "pk": 438, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_19", "damage_roll": "4d6", "target_count": null, @@ -411,7 +411,7 @@ "model": "api_v2.spellcastingoption", "pk": 439, "fields": { - "spell": "acid-splash-a5e", + "parent": "acid-splash-a5e", "type": "player_level_20", "damage_roll": "4d6", "target_count": null, @@ -423,7 +423,7 @@ "model": "api_v2.spellcastingoption", "pk": 440, "fields": { - "spell": "aid-a5e", + "parent": "aid-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -435,7 +435,7 @@ "model": "api_v2.spellcastingoption", "pk": 442, "fields": { - "spell": "aid-a5e", + "parent": "aid-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -447,7 +447,7 @@ "model": "api_v2.spellcastingoption", "pk": 443, "fields": { - "spell": "aid-a5e", + "parent": "aid-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -459,7 +459,7 @@ "model": "api_v2.spellcastingoption", "pk": 444, "fields": { - "spell": "aid-a5e", + "parent": "aid-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -471,7 +471,7 @@ "model": "api_v2.spellcastingoption", "pk": 445, "fields": { - "spell": "aid-a5e", + "parent": "aid-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -483,7 +483,7 @@ "model": "api_v2.spellcastingoption", "pk": 446, "fields": { - "spell": "aid-a5e", + "parent": "aid-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -495,7 +495,7 @@ "model": "api_v2.spellcastingoption", "pk": 447, "fields": { - "spell": "aid-a5e", + "parent": "aid-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -507,7 +507,7 @@ "model": "api_v2.spellcastingoption", "pk": 448, "fields": { - "spell": "aid-a5e", + "parent": "aid-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -519,7 +519,7 @@ "model": "api_v2.spellcastingoption", "pk": 449, "fields": { - "spell": "air-wave-a5e", + "parent": "air-wave-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -531,7 +531,7 @@ "model": "api_v2.spellcastingoption", "pk": 451, "fields": { - "spell": "air-wave-a5e", + "parent": "air-wave-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -543,7 +543,7 @@ "model": "api_v2.spellcastingoption", "pk": 452, "fields": { - "spell": "air-wave-a5e", + "parent": "air-wave-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -555,7 +555,7 @@ "model": "api_v2.spellcastingoption", "pk": 453, "fields": { - "spell": "air-wave-a5e", + "parent": "air-wave-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -567,7 +567,7 @@ "model": "api_v2.spellcastingoption", "pk": 454, "fields": { - "spell": "air-wave-a5e", + "parent": "air-wave-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -579,7 +579,7 @@ "model": "api_v2.spellcastingoption", "pk": 455, "fields": { - "spell": "air-wave-a5e", + "parent": "air-wave-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -591,7 +591,7 @@ "model": "api_v2.spellcastingoption", "pk": 456, "fields": { - "spell": "air-wave-a5e", + "parent": "air-wave-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -603,7 +603,7 @@ "model": "api_v2.spellcastingoption", "pk": 457, "fields": { - "spell": "air-wave-a5e", + "parent": "air-wave-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -615,7 +615,7 @@ "model": "api_v2.spellcastingoption", "pk": 458, "fields": { - "spell": "air-wave-a5e", + "parent": "air-wave-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -627,7 +627,7 @@ "model": "api_v2.spellcastingoption", "pk": 459, "fields": { - "spell": "alarm-a5e", + "parent": "alarm-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -639,7 +639,7 @@ "model": "api_v2.spellcastingoption", "pk": 460, "fields": { - "spell": "alarm-a5e", + "parent": "alarm-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -651,7 +651,7 @@ "model": "api_v2.spellcastingoption", "pk": 462, "fields": { - "spell": "alarm-a5e", + "parent": "alarm-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -663,7 +663,7 @@ "model": "api_v2.spellcastingoption", "pk": 463, "fields": { - "spell": "alarm-a5e", + "parent": "alarm-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -675,7 +675,7 @@ "model": "api_v2.spellcastingoption", "pk": 464, "fields": { - "spell": "alarm-a5e", + "parent": "alarm-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -687,7 +687,7 @@ "model": "api_v2.spellcastingoption", "pk": 465, "fields": { - "spell": "alarm-a5e", + "parent": "alarm-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -699,7 +699,7 @@ "model": "api_v2.spellcastingoption", "pk": 466, "fields": { - "spell": "alarm-a5e", + "parent": "alarm-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -711,7 +711,7 @@ "model": "api_v2.spellcastingoption", "pk": 467, "fields": { - "spell": "alarm-a5e", + "parent": "alarm-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -723,7 +723,7 @@ "model": "api_v2.spellcastingoption", "pk": 468, "fields": { - "spell": "alarm-a5e", + "parent": "alarm-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -735,7 +735,7 @@ "model": "api_v2.spellcastingoption", "pk": 469, "fields": { - "spell": "alarm-a5e", + "parent": "alarm-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -747,7 +747,7 @@ "model": "api_v2.spellcastingoption", "pk": 470, "fields": { - "spell": "alter-self-a5e", + "parent": "alter-self-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -759,7 +759,7 @@ "model": "api_v2.spellcastingoption", "pk": 472, "fields": { - "spell": "alter-self-a5e", + "parent": "alter-self-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -771,7 +771,7 @@ "model": "api_v2.spellcastingoption", "pk": 473, "fields": { - "spell": "alter-self-a5e", + "parent": "alter-self-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -783,7 +783,7 @@ "model": "api_v2.spellcastingoption", "pk": 474, "fields": { - "spell": "alter-self-a5e", + "parent": "alter-self-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -795,7 +795,7 @@ "model": "api_v2.spellcastingoption", "pk": 475, "fields": { - "spell": "alter-self-a5e", + "parent": "alter-self-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -807,7 +807,7 @@ "model": "api_v2.spellcastingoption", "pk": 476, "fields": { - "spell": "alter-self-a5e", + "parent": "alter-self-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -819,7 +819,7 @@ "model": "api_v2.spellcastingoption", "pk": 477, "fields": { - "spell": "alter-self-a5e", + "parent": "alter-self-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -831,7 +831,7 @@ "model": "api_v2.spellcastingoption", "pk": 478, "fields": { - "spell": "alter-self-a5e", + "parent": "alter-self-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -843,7 +843,7 @@ "model": "api_v2.spellcastingoption", "pk": 479, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -855,7 +855,7 @@ "model": "api_v2.spellcastingoption", "pk": 480, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -867,7 +867,7 @@ "model": "api_v2.spellcastingoption", "pk": 481, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -879,7 +879,7 @@ "model": "api_v2.spellcastingoption", "pk": 482, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -891,7 +891,7 @@ "model": "api_v2.spellcastingoption", "pk": 483, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -903,7 +903,7 @@ "model": "api_v2.spellcastingoption", "pk": 484, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_5", "damage_roll": null, "target_count": null, @@ -915,7 +915,7 @@ "model": "api_v2.spellcastingoption", "pk": 485, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_6", "damage_roll": null, "target_count": null, @@ -927,7 +927,7 @@ "model": "api_v2.spellcastingoption", "pk": 486, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_7", "damage_roll": null, "target_count": null, @@ -939,7 +939,7 @@ "model": "api_v2.spellcastingoption", "pk": 487, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_8", "damage_roll": null, "target_count": null, @@ -951,7 +951,7 @@ "model": "api_v2.spellcastingoption", "pk": 488, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_9", "damage_roll": null, "target_count": null, @@ -963,7 +963,7 @@ "model": "api_v2.spellcastingoption", "pk": 489, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_10", "damage_roll": null, "target_count": null, @@ -975,7 +975,7 @@ "model": "api_v2.spellcastingoption", "pk": 490, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_11", "damage_roll": null, "target_count": null, @@ -987,7 +987,7 @@ "model": "api_v2.spellcastingoption", "pk": 491, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_12", "damage_roll": null, "target_count": null, @@ -999,7 +999,7 @@ "model": "api_v2.spellcastingoption", "pk": 492, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_13", "damage_roll": null, "target_count": null, @@ -1011,7 +1011,7 @@ "model": "api_v2.spellcastingoption", "pk": 493, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_14", "damage_roll": null, "target_count": null, @@ -1023,7 +1023,7 @@ "model": "api_v2.spellcastingoption", "pk": 494, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_15", "damage_roll": null, "target_count": null, @@ -1035,7 +1035,7 @@ "model": "api_v2.spellcastingoption", "pk": 495, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_16", "damage_roll": null, "target_count": null, @@ -1047,7 +1047,7 @@ "model": "api_v2.spellcastingoption", "pk": 496, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_17", "damage_roll": null, "target_count": null, @@ -1059,7 +1059,7 @@ "model": "api_v2.spellcastingoption", "pk": 497, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_18", "damage_roll": null, "target_count": null, @@ -1071,7 +1071,7 @@ "model": "api_v2.spellcastingoption", "pk": 498, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_19", "damage_roll": null, "target_count": null, @@ -1083,7 +1083,7 @@ "model": "api_v2.spellcastingoption", "pk": 499, "fields": { - "spell": "altered-strike-a5e", + "parent": "altered-strike-a5e", "type": "player_level_20", "damage_roll": null, "target_count": null, @@ -1095,7 +1095,7 @@ "model": "api_v2.spellcastingoption", "pk": 500, "fields": { - "spell": "angel-paradox-a5e", + "parent": "angel-paradox-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1107,7 +1107,7 @@ "model": "api_v2.spellcastingoption", "pk": 502, "fields": { - "spell": "angel-paradox-a5e", + "parent": "angel-paradox-a5e", "type": "slot_level_8", "damage_roll": "45", "target_count": null, @@ -1119,7 +1119,7 @@ "model": "api_v2.spellcastingoption", "pk": 503, "fields": { - "spell": "angel-paradox-a5e", + "parent": "angel-paradox-a5e", "type": "slot_level_9", "damage_roll": "50", "target_count": null, @@ -1131,7 +1131,7 @@ "model": "api_v2.spellcastingoption", "pk": 504, "fields": { - "spell": "animal-friendship-a5e", + "parent": "animal-friendship-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1143,7 +1143,7 @@ "model": "api_v2.spellcastingoption", "pk": 506, "fields": { - "spell": "animal-friendship-a5e", + "parent": "animal-friendship-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -1155,7 +1155,7 @@ "model": "api_v2.spellcastingoption", "pk": 507, "fields": { - "spell": "animal-friendship-a5e", + "parent": "animal-friendship-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1167,7 +1167,7 @@ "model": "api_v2.spellcastingoption", "pk": 508, "fields": { - "spell": "animal-friendship-a5e", + "parent": "animal-friendship-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1179,7 +1179,7 @@ "model": "api_v2.spellcastingoption", "pk": 509, "fields": { - "spell": "animal-friendship-a5e", + "parent": "animal-friendship-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1191,7 +1191,7 @@ "model": "api_v2.spellcastingoption", "pk": 510, "fields": { - "spell": "animal-friendship-a5e", + "parent": "animal-friendship-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1203,7 +1203,7 @@ "model": "api_v2.spellcastingoption", "pk": 511, "fields": { - "spell": "animal-friendship-a5e", + "parent": "animal-friendship-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1215,7 +1215,7 @@ "model": "api_v2.spellcastingoption", "pk": 512, "fields": { - "spell": "animal-friendship-a5e", + "parent": "animal-friendship-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1227,7 +1227,7 @@ "model": "api_v2.spellcastingoption", "pk": 513, "fields": { - "spell": "animal-friendship-a5e", + "parent": "animal-friendship-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1239,7 +1239,7 @@ "model": "api_v2.spellcastingoption", "pk": 514, "fields": { - "spell": "animal-messenger-a5e", + "parent": "animal-messenger-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1251,7 +1251,7 @@ "model": "api_v2.spellcastingoption", "pk": 515, "fields": { - "spell": "animal-messenger-a5e", + "parent": "animal-messenger-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -1263,7 +1263,7 @@ "model": "api_v2.spellcastingoption", "pk": 517, "fields": { - "spell": "animal-messenger-a5e", + "parent": "animal-messenger-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1275,7 +1275,7 @@ "model": "api_v2.spellcastingoption", "pk": 518, "fields": { - "spell": "animal-messenger-a5e", + "parent": "animal-messenger-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1287,7 +1287,7 @@ "model": "api_v2.spellcastingoption", "pk": 519, "fields": { - "spell": "animal-messenger-a5e", + "parent": "animal-messenger-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1299,7 +1299,7 @@ "model": "api_v2.spellcastingoption", "pk": 520, "fields": { - "spell": "animal-messenger-a5e", + "parent": "animal-messenger-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1311,7 +1311,7 @@ "model": "api_v2.spellcastingoption", "pk": 521, "fields": { - "spell": "animal-messenger-a5e", + "parent": "animal-messenger-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1323,7 +1323,7 @@ "model": "api_v2.spellcastingoption", "pk": 522, "fields": { - "spell": "animal-messenger-a5e", + "parent": "animal-messenger-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1335,7 +1335,7 @@ "model": "api_v2.spellcastingoption", "pk": 523, "fields": { - "spell": "animal-messenger-a5e", + "parent": "animal-messenger-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1347,7 +1347,7 @@ "model": "api_v2.spellcastingoption", "pk": 524, "fields": { - "spell": "animal-shapes-a5e", + "parent": "animal-shapes-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1359,7 +1359,7 @@ "model": "api_v2.spellcastingoption", "pk": 525, "fields": { - "spell": "animate-dead-a5e", + "parent": "animate-dead-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1371,7 +1371,7 @@ "model": "api_v2.spellcastingoption", "pk": 527, "fields": { - "spell": "animate-dead-a5e", + "parent": "animate-dead-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1383,7 +1383,7 @@ "model": "api_v2.spellcastingoption", "pk": 528, "fields": { - "spell": "animate-dead-a5e", + "parent": "animate-dead-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1395,7 +1395,7 @@ "model": "api_v2.spellcastingoption", "pk": 529, "fields": { - "spell": "animate-dead-a5e", + "parent": "animate-dead-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1407,7 +1407,7 @@ "model": "api_v2.spellcastingoption", "pk": 530, "fields": { - "spell": "animate-dead-a5e", + "parent": "animate-dead-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1419,7 +1419,7 @@ "model": "api_v2.spellcastingoption", "pk": 531, "fields": { - "spell": "animate-dead-a5e", + "parent": "animate-dead-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1431,7 +1431,7 @@ "model": "api_v2.spellcastingoption", "pk": 532, "fields": { - "spell": "animate-dead-a5e", + "parent": "animate-dead-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1443,7 +1443,7 @@ "model": "api_v2.spellcastingoption", "pk": 533, "fields": { - "spell": "animate-objects-a5e", + "parent": "animate-objects-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1455,7 +1455,7 @@ "model": "api_v2.spellcastingoption", "pk": 535, "fields": { - "spell": "animate-objects-a5e", + "parent": "animate-objects-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1467,7 +1467,7 @@ "model": "api_v2.spellcastingoption", "pk": 536, "fields": { - "spell": "animate-objects-a5e", + "parent": "animate-objects-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1479,7 +1479,7 @@ "model": "api_v2.spellcastingoption", "pk": 537, "fields": { - "spell": "animate-objects-a5e", + "parent": "animate-objects-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1491,7 +1491,7 @@ "model": "api_v2.spellcastingoption", "pk": 538, "fields": { - "spell": "animate-objects-a5e", + "parent": "animate-objects-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1503,7 +1503,7 @@ "model": "api_v2.spellcastingoption", "pk": 539, "fields": { - "spell": "antilife-shell-a5e", + "parent": "antilife-shell-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1515,7 +1515,7 @@ "model": "api_v2.spellcastingoption", "pk": 540, "fields": { - "spell": "antimagic-field-a5e", + "parent": "antimagic-field-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1527,7 +1527,7 @@ "model": "api_v2.spellcastingoption", "pk": 541, "fields": { - "spell": "antipathysympathy-a5e", + "parent": "antipathysympathy-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1539,7 +1539,7 @@ "model": "api_v2.spellcastingoption", "pk": 542, "fields": { - "spell": "arcane-eye-a5e", + "parent": "arcane-eye-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1551,7 +1551,7 @@ "model": "api_v2.spellcastingoption", "pk": 543, "fields": { - "spell": "arcane-hand-a5e", + "parent": "arcane-hand-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1563,7 +1563,7 @@ "model": "api_v2.spellcastingoption", "pk": 545, "fields": { - "spell": "arcane-hand-a5e", + "parent": "arcane-hand-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1575,7 +1575,7 @@ "model": "api_v2.spellcastingoption", "pk": 546, "fields": { - "spell": "arcane-hand-a5e", + "parent": "arcane-hand-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1587,7 +1587,7 @@ "model": "api_v2.spellcastingoption", "pk": 547, "fields": { - "spell": "arcane-hand-a5e", + "parent": "arcane-hand-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1599,7 +1599,7 @@ "model": "api_v2.spellcastingoption", "pk": 548, "fields": { - "spell": "arcane-hand-a5e", + "parent": "arcane-hand-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1611,7 +1611,7 @@ "model": "api_v2.spellcastingoption", "pk": 549, "fields": { - "spell": "arcane-lock-a5e", + "parent": "arcane-lock-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1623,7 +1623,7 @@ "model": "api_v2.spellcastingoption", "pk": 551, "fields": { - "spell": "arcane-lock-a5e", + "parent": "arcane-lock-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1635,7 +1635,7 @@ "model": "api_v2.spellcastingoption", "pk": 552, "fields": { - "spell": "arcane-lock-a5e", + "parent": "arcane-lock-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1647,7 +1647,7 @@ "model": "api_v2.spellcastingoption", "pk": 553, "fields": { - "spell": "arcane-lock-a5e", + "parent": "arcane-lock-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1659,7 +1659,7 @@ "model": "api_v2.spellcastingoption", "pk": 554, "fields": { - "spell": "arcane-lock-a5e", + "parent": "arcane-lock-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1671,7 +1671,7 @@ "model": "api_v2.spellcastingoption", "pk": 555, "fields": { - "spell": "arcane-lock-a5e", + "parent": "arcane-lock-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1683,7 +1683,7 @@ "model": "api_v2.spellcastingoption", "pk": 556, "fields": { - "spell": "arcane-lock-a5e", + "parent": "arcane-lock-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1695,7 +1695,7 @@ "model": "api_v2.spellcastingoption", "pk": 557, "fields": { - "spell": "arcane-lock-a5e", + "parent": "arcane-lock-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1707,7 +1707,7 @@ "model": "api_v2.spellcastingoption", "pk": 558, "fields": { - "spell": "arcane-muscles-a5e", + "parent": "arcane-muscles-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1719,7 +1719,7 @@ "model": "api_v2.spellcastingoption", "pk": 559, "fields": { - "spell": "arcane-riposte-a5e", + "parent": "arcane-riposte-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1731,7 +1731,7 @@ "model": "api_v2.spellcastingoption", "pk": 561, "fields": { - "spell": "arcane-riposte-a5e", + "parent": "arcane-riposte-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -1743,7 +1743,7 @@ "model": "api_v2.spellcastingoption", "pk": 562, "fields": { - "spell": "arcane-riposte-a5e", + "parent": "arcane-riposte-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1755,7 +1755,7 @@ "model": "api_v2.spellcastingoption", "pk": 563, "fields": { - "spell": "arcane-riposte-a5e", + "parent": "arcane-riposte-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1767,7 +1767,7 @@ "model": "api_v2.spellcastingoption", "pk": 564, "fields": { - "spell": "arcane-riposte-a5e", + "parent": "arcane-riposte-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1779,7 +1779,7 @@ "model": "api_v2.spellcastingoption", "pk": 565, "fields": { - "spell": "arcane-riposte-a5e", + "parent": "arcane-riposte-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1791,7 +1791,7 @@ "model": "api_v2.spellcastingoption", "pk": 566, "fields": { - "spell": "arcane-riposte-a5e", + "parent": "arcane-riposte-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1803,7 +1803,7 @@ "model": "api_v2.spellcastingoption", "pk": 567, "fields": { - "spell": "arcane-riposte-a5e", + "parent": "arcane-riposte-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1815,7 +1815,7 @@ "model": "api_v2.spellcastingoption", "pk": 568, "fields": { - "spell": "arcane-riposte-a5e", + "parent": "arcane-riposte-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1827,7 +1827,7 @@ "model": "api_v2.spellcastingoption", "pk": 569, "fields": { - "spell": "arcane-sword-a5e", + "parent": "arcane-sword-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1839,7 +1839,7 @@ "model": "api_v2.spellcastingoption", "pk": 570, "fields": { - "spell": "arcanists-magic-aura-a5e", + "parent": "arcanists-magic-aura-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1851,7 +1851,7 @@ "model": "api_v2.spellcastingoption", "pk": 572, "fields": { - "spell": "arcanists-magic-aura-a5e", + "parent": "arcanists-magic-aura-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1863,7 +1863,7 @@ "model": "api_v2.spellcastingoption", "pk": 573, "fields": { - "spell": "arcanists-magic-aura-a5e", + "parent": "arcanists-magic-aura-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1875,7 +1875,7 @@ "model": "api_v2.spellcastingoption", "pk": 574, "fields": { - "spell": "arcanists-magic-aura-a5e", + "parent": "arcanists-magic-aura-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1887,7 +1887,7 @@ "model": "api_v2.spellcastingoption", "pk": 575, "fields": { - "spell": "arcanists-magic-aura-a5e", + "parent": "arcanists-magic-aura-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1899,7 +1899,7 @@ "model": "api_v2.spellcastingoption", "pk": 576, "fields": { - "spell": "arcanists-magic-aura-a5e", + "parent": "arcanists-magic-aura-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1911,7 +1911,7 @@ "model": "api_v2.spellcastingoption", "pk": 577, "fields": { - "spell": "arcanists-magic-aura-a5e", + "parent": "arcanists-magic-aura-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1923,7 +1923,7 @@ "model": "api_v2.spellcastingoption", "pk": 578, "fields": { - "spell": "arcanists-magic-aura-a5e", + "parent": "arcanists-magic-aura-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1935,7 +1935,7 @@ "model": "api_v2.spellcastingoption", "pk": 579, "fields": { - "spell": "aspect-of-the-moon-a5e", + "parent": "aspect-of-the-moon-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1947,7 +1947,7 @@ "model": "api_v2.spellcastingoption", "pk": 580, "fields": { - "spell": "astral-projection-a5e", + "parent": "astral-projection-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1959,7 +1959,7 @@ "model": "api_v2.spellcastingoption", "pk": 581, "fields": { - "spell": "augury-a5e", + "parent": "augury-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1971,7 +1971,7 @@ "model": "api_v2.spellcastingoption", "pk": 582, "fields": { - "spell": "awaken-a5e", + "parent": "awaken-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -1983,7 +1983,7 @@ "model": "api_v2.spellcastingoption", "pk": 584, "fields": { - "spell": "awaken-a5e", + "parent": "awaken-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1995,7 +1995,7 @@ "model": "api_v2.spellcastingoption", "pk": 585, "fields": { - "spell": "awaken-a5e", + "parent": "awaken-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2007,7 +2007,7 @@ "model": "api_v2.spellcastingoption", "pk": 586, "fields": { - "spell": "awaken-a5e", + "parent": "awaken-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2019,7 +2019,7 @@ "model": "api_v2.spellcastingoption", "pk": 587, "fields": { - "spell": "awaken-a5e", + "parent": "awaken-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2031,7 +2031,7 @@ "model": "api_v2.spellcastingoption", "pk": 588, "fields": { - "spell": "bane-a5e", + "parent": "bane-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -2043,7 +2043,7 @@ "model": "api_v2.spellcastingoption", "pk": 590, "fields": { - "spell": "bane-a5e", + "parent": "bane-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -2055,7 +2055,7 @@ "model": "api_v2.spellcastingoption", "pk": 591, "fields": { - "spell": "bane-a5e", + "parent": "bane-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -2067,7 +2067,7 @@ "model": "api_v2.spellcastingoption", "pk": 592, "fields": { - "spell": "bane-a5e", + "parent": "bane-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2079,7 +2079,7 @@ "model": "api_v2.spellcastingoption", "pk": 593, "fields": { - "spell": "bane-a5e", + "parent": "bane-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2091,7 +2091,7 @@ "model": "api_v2.spellcastingoption", "pk": 594, "fields": { - "spell": "bane-a5e", + "parent": "bane-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2103,7 +2103,7 @@ "model": "api_v2.spellcastingoption", "pk": 595, "fields": { - "spell": "bane-a5e", + "parent": "bane-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2115,7 +2115,7 @@ "model": "api_v2.spellcastingoption", "pk": 596, "fields": { - "spell": "bane-a5e", + "parent": "bane-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2127,7 +2127,7 @@ "model": "api_v2.spellcastingoption", "pk": 597, "fields": { - "spell": "bane-a5e", + "parent": "bane-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2139,7 +2139,7 @@ "model": "api_v2.spellcastingoption", "pk": 598, "fields": { - "spell": "banishment-a5e", + "parent": "banishment-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -2151,7 +2151,7 @@ "model": "api_v2.spellcastingoption", "pk": 600, "fields": { - "spell": "banishment-a5e", + "parent": "banishment-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2163,7 +2163,7 @@ "model": "api_v2.spellcastingoption", "pk": 601, "fields": { - "spell": "banishment-a5e", + "parent": "banishment-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2175,7 +2175,7 @@ "model": "api_v2.spellcastingoption", "pk": 602, "fields": { - "spell": "banishment-a5e", + "parent": "banishment-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2187,7 +2187,7 @@ "model": "api_v2.spellcastingoption", "pk": 603, "fields": { - "spell": "banishment-a5e", + "parent": "banishment-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2199,7 +2199,7 @@ "model": "api_v2.spellcastingoption", "pk": 604, "fields": { - "spell": "banishment-a5e", + "parent": "banishment-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2211,7 +2211,7 @@ "model": "api_v2.spellcastingoption", "pk": 605, "fields": { - "spell": "barkskin-a5e", + "parent": "barkskin-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -2223,7 +2223,7 @@ "model": "api_v2.spellcastingoption", "pk": 607, "fields": { - "spell": "barkskin-a5e", + "parent": "barkskin-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -2235,7 +2235,7 @@ "model": "api_v2.spellcastingoption", "pk": 608, "fields": { - "spell": "barkskin-a5e", + "parent": "barkskin-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2247,7 +2247,7 @@ "model": "api_v2.spellcastingoption", "pk": 609, "fields": { - "spell": "barkskin-a5e", + "parent": "barkskin-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2259,7 +2259,7 @@ "model": "api_v2.spellcastingoption", "pk": 610, "fields": { - "spell": "barkskin-a5e", + "parent": "barkskin-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2271,7 +2271,7 @@ "model": "api_v2.spellcastingoption", "pk": 611, "fields": { - "spell": "barkskin-a5e", + "parent": "barkskin-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2283,7 +2283,7 @@ "model": "api_v2.spellcastingoption", "pk": 612, "fields": { - "spell": "barkskin-a5e", + "parent": "barkskin-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2295,7 +2295,7 @@ "model": "api_v2.spellcastingoption", "pk": 613, "fields": { - "spell": "barkskin-a5e", + "parent": "barkskin-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2307,7 +2307,7 @@ "model": "api_v2.spellcastingoption", "pk": 614, "fields": { - "spell": "battlecry-ballad-a5e", + "parent": "battlecry-ballad-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -2319,7 +2319,7 @@ "model": "api_v2.spellcastingoption", "pk": 616, "fields": { - "spell": "battlecry-ballad-a5e", + "parent": "battlecry-ballad-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2331,7 +2331,7 @@ "model": "api_v2.spellcastingoption", "pk": 617, "fields": { - "spell": "battlecry-ballad-a5e", + "parent": "battlecry-ballad-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2343,7 +2343,7 @@ "model": "api_v2.spellcastingoption", "pk": 618, "fields": { - "spell": "battlecry-ballad-a5e", + "parent": "battlecry-ballad-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2355,7 +2355,7 @@ "model": "api_v2.spellcastingoption", "pk": 619, "fields": { - "spell": "battlecry-ballad-a5e", + "parent": "battlecry-ballad-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2367,7 +2367,7 @@ "model": "api_v2.spellcastingoption", "pk": 620, "fields": { - "spell": "battlecry-ballad-a5e", + "parent": "battlecry-ballad-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2379,7 +2379,7 @@ "model": "api_v2.spellcastingoption", "pk": 621, "fields": { - "spell": "battlecry-ballad-a5e", + "parent": "battlecry-ballad-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2391,7 +2391,7 @@ "model": "api_v2.spellcastingoption", "pk": 622, "fields": { - "spell": "beacon-of-hope-a5e", + "parent": "beacon-of-hope-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -2403,7 +2403,7 @@ "model": "api_v2.spellcastingoption", "pk": 623, "fields": { - "spell": "bestow-curse-a5e", + "parent": "bestow-curse-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -2415,7 +2415,7 @@ "model": "api_v2.spellcastingoption", "pk": 625, "fields": { - "spell": "bestow-curse-a5e", + "parent": "bestow-curse-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2427,7 +2427,7 @@ "model": "api_v2.spellcastingoption", "pk": 626, "fields": { - "spell": "bestow-curse-a5e", + "parent": "bestow-curse-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2439,7 +2439,7 @@ "model": "api_v2.spellcastingoption", "pk": 627, "fields": { - "spell": "bestow-curse-a5e", + "parent": "bestow-curse-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2451,7 +2451,7 @@ "model": "api_v2.spellcastingoption", "pk": 628, "fields": { - "spell": "bestow-curse-a5e", + "parent": "bestow-curse-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2463,7 +2463,7 @@ "model": "api_v2.spellcastingoption", "pk": 629, "fields": { - "spell": "bestow-curse-a5e", + "parent": "bestow-curse-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2475,7 +2475,7 @@ "model": "api_v2.spellcastingoption", "pk": 630, "fields": { - "spell": "bestow-curse-a5e", + "parent": "bestow-curse-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2487,7 +2487,7 @@ "model": "api_v2.spellcastingoption", "pk": 631, "fields": { - "spell": "black-tentacles-a5e", + "parent": "black-tentacles-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -2499,7 +2499,7 @@ "model": "api_v2.spellcastingoption", "pk": 633, "fields": { - "spell": "black-tentacles-a5e", + "parent": "black-tentacles-a5e", "type": "slot_level_5", "damage_roll": "4d6", "target_count": null, @@ -2511,7 +2511,7 @@ "model": "api_v2.spellcastingoption", "pk": 634, "fields": { - "spell": "black-tentacles-a5e", + "parent": "black-tentacles-a5e", "type": "slot_level_6", "damage_roll": "5d6", "target_count": null, @@ -2523,7 +2523,7 @@ "model": "api_v2.spellcastingoption", "pk": 635, "fields": { - "spell": "black-tentacles-a5e", + "parent": "black-tentacles-a5e", "type": "slot_level_7", "damage_roll": "6d6", "target_count": null, @@ -2535,7 +2535,7 @@ "model": "api_v2.spellcastingoption", "pk": 636, "fields": { - "spell": "black-tentacles-a5e", + "parent": "black-tentacles-a5e", "type": "slot_level_8", "damage_roll": "7d6", "target_count": null, @@ -2547,7 +2547,7 @@ "model": "api_v2.spellcastingoption", "pk": 637, "fields": { - "spell": "black-tentacles-a5e", + "parent": "black-tentacles-a5e", "type": "slot_level_9", "damage_roll": "8d6", "target_count": null, @@ -2559,7 +2559,7 @@ "model": "api_v2.spellcastingoption", "pk": 638, "fields": { - "spell": "blade-barrier-a5e", + "parent": "blade-barrier-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -2571,7 +2571,7 @@ "model": "api_v2.spellcastingoption", "pk": 640, "fields": { - "spell": "blade-barrier-a5e", + "parent": "blade-barrier-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2583,7 +2583,7 @@ "model": "api_v2.spellcastingoption", "pk": 641, "fields": { - "spell": "blade-barrier-a5e", + "parent": "blade-barrier-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2595,7 +2595,7 @@ "model": "api_v2.spellcastingoption", "pk": 642, "fields": { - "spell": "blade-barrier-a5e", + "parent": "blade-barrier-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2607,7 +2607,7 @@ "model": "api_v2.spellcastingoption", "pk": 643, "fields": { - "spell": "bless-a5e", + "parent": "bless-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -2619,7 +2619,7 @@ "model": "api_v2.spellcastingoption", "pk": 645, "fields": { - "spell": "bless-a5e", + "parent": "bless-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": 4, @@ -2631,7 +2631,7 @@ "model": "api_v2.spellcastingoption", "pk": 646, "fields": { - "spell": "bless-a5e", + "parent": "bless-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 5, @@ -2643,7 +2643,7 @@ "model": "api_v2.spellcastingoption", "pk": 647, "fields": { - "spell": "bless-a5e", + "parent": "bless-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 6, @@ -2655,7 +2655,7 @@ "model": "api_v2.spellcastingoption", "pk": 648, "fields": { - "spell": "bless-a5e", + "parent": "bless-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 7, @@ -2667,7 +2667,7 @@ "model": "api_v2.spellcastingoption", "pk": 649, "fields": { - "spell": "bless-a5e", + "parent": "bless-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 8, @@ -2679,7 +2679,7 @@ "model": "api_v2.spellcastingoption", "pk": 650, "fields": { - "spell": "bless-a5e", + "parent": "bless-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 9, @@ -2691,7 +2691,7 @@ "model": "api_v2.spellcastingoption", "pk": 651, "fields": { - "spell": "bless-a5e", + "parent": "bless-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 10, @@ -2703,7 +2703,7 @@ "model": "api_v2.spellcastingoption", "pk": 652, "fields": { - "spell": "bless-a5e", + "parent": "bless-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 11, @@ -2715,7 +2715,7 @@ "model": "api_v2.spellcastingoption", "pk": 653, "fields": { - "spell": "blight-a5e", + "parent": "blight-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -2727,7 +2727,7 @@ "model": "api_v2.spellcastingoption", "pk": 655, "fields": { - "spell": "blight-a5e", + "parent": "blight-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2739,7 +2739,7 @@ "model": "api_v2.spellcastingoption", "pk": 656, "fields": { - "spell": "blight-a5e", + "parent": "blight-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2751,7 +2751,7 @@ "model": "api_v2.spellcastingoption", "pk": 657, "fields": { - "spell": "blight-a5e", + "parent": "blight-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2763,7 +2763,7 @@ "model": "api_v2.spellcastingoption", "pk": 658, "fields": { - "spell": "blight-a5e", + "parent": "blight-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2775,7 +2775,7 @@ "model": "api_v2.spellcastingoption", "pk": 659, "fields": { - "spell": "blight-a5e", + "parent": "blight-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2787,7 +2787,7 @@ "model": "api_v2.spellcastingoption", "pk": 660, "fields": { - "spell": "blindnessdeafness-a5e", + "parent": "blindnessdeafness-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -2799,7 +2799,7 @@ "model": "api_v2.spellcastingoption", "pk": 662, "fields": { - "spell": "blindnessdeafness-a5e", + "parent": "blindnessdeafness-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -2811,7 +2811,7 @@ "model": "api_v2.spellcastingoption", "pk": 663, "fields": { - "spell": "blindnessdeafness-a5e", + "parent": "blindnessdeafness-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -2823,7 +2823,7 @@ "model": "api_v2.spellcastingoption", "pk": 664, "fields": { - "spell": "blindnessdeafness-a5e", + "parent": "blindnessdeafness-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -2835,7 +2835,7 @@ "model": "api_v2.spellcastingoption", "pk": 665, "fields": { - "spell": "blindnessdeafness-a5e", + "parent": "blindnessdeafness-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -2847,7 +2847,7 @@ "model": "api_v2.spellcastingoption", "pk": 666, "fields": { - "spell": "blindnessdeafness-a5e", + "parent": "blindnessdeafness-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -2859,7 +2859,7 @@ "model": "api_v2.spellcastingoption", "pk": 667, "fields": { - "spell": "blindnessdeafness-a5e", + "parent": "blindnessdeafness-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -2871,7 +2871,7 @@ "model": "api_v2.spellcastingoption", "pk": 668, "fields": { - "spell": "blindnessdeafness-a5e", + "parent": "blindnessdeafness-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -2883,7 +2883,7 @@ "model": "api_v2.spellcastingoption", "pk": 669, "fields": { - "spell": "blink-a5e", + "parent": "blink-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -2895,7 +2895,7 @@ "model": "api_v2.spellcastingoption", "pk": 670, "fields": { - "spell": "blood-writ-bargain-a5e", + "parent": "blood-writ-bargain-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -2907,7 +2907,7 @@ "model": "api_v2.spellcastingoption", "pk": 671, "fields": { - "spell": "blood-writ-bargain-a5e", + "parent": "blood-writ-bargain-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -2919,7 +2919,7 @@ "model": "api_v2.spellcastingoption", "pk": 673, "fields": { - "spell": "blood-writ-bargain-a5e", + "parent": "blood-writ-bargain-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2931,7 +2931,7 @@ "model": "api_v2.spellcastingoption", "pk": 674, "fields": { - "spell": "blood-writ-bargain-a5e", + "parent": "blood-writ-bargain-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2943,7 +2943,7 @@ "model": "api_v2.spellcastingoption", "pk": 675, "fields": { - "spell": "blood-writ-bargain-a5e", + "parent": "blood-writ-bargain-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2955,7 +2955,7 @@ "model": "api_v2.spellcastingoption", "pk": 676, "fields": { - "spell": "blood-writ-bargain-a5e", + "parent": "blood-writ-bargain-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2967,7 +2967,7 @@ "model": "api_v2.spellcastingoption", "pk": 677, "fields": { - "spell": "blood-writ-bargain-a5e", + "parent": "blood-writ-bargain-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2979,7 +2979,7 @@ "model": "api_v2.spellcastingoption", "pk": 678, "fields": { - "spell": "blood-writ-bargain-a5e", + "parent": "blood-writ-bargain-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2991,7 +2991,7 @@ "model": "api_v2.spellcastingoption", "pk": 679, "fields": { - "spell": "blur-a5e", + "parent": "blur-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -3003,7 +3003,7 @@ "model": "api_v2.spellcastingoption", "pk": 681, "fields": { - "spell": "blur-a5e", + "parent": "blur-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -3015,7 +3015,7 @@ "model": "api_v2.spellcastingoption", "pk": 682, "fields": { - "spell": "blur-a5e", + "parent": "blur-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -3027,7 +3027,7 @@ "model": "api_v2.spellcastingoption", "pk": 683, "fields": { - "spell": "blur-a5e", + "parent": "blur-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -3039,7 +3039,7 @@ "model": "api_v2.spellcastingoption", "pk": 684, "fields": { - "spell": "blur-a5e", + "parent": "blur-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -3051,7 +3051,7 @@ "model": "api_v2.spellcastingoption", "pk": 685, "fields": { - "spell": "blur-a5e", + "parent": "blur-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -3063,7 +3063,7 @@ "model": "api_v2.spellcastingoption", "pk": 686, "fields": { - "spell": "blur-a5e", + "parent": "blur-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -3075,7 +3075,7 @@ "model": "api_v2.spellcastingoption", "pk": 687, "fields": { - "spell": "blur-a5e", + "parent": "blur-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -3087,7 +3087,7 @@ "model": "api_v2.spellcastingoption", "pk": 688, "fields": { - "spell": "burning-hands-a5e", + "parent": "burning-hands-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -3099,7 +3099,7 @@ "model": "api_v2.spellcastingoption", "pk": 690, "fields": { - "spell": "burning-hands-a5e", + "parent": "burning-hands-a5e", "type": "slot_level_2", "damage_roll": "4d6", "target_count": null, @@ -3111,7 +3111,7 @@ "model": "api_v2.spellcastingoption", "pk": 691, "fields": { - "spell": "burning-hands-a5e", + "parent": "burning-hands-a5e", "type": "slot_level_3", "damage_roll": "5d6", "target_count": null, @@ -3123,7 +3123,7 @@ "model": "api_v2.spellcastingoption", "pk": 692, "fields": { - "spell": "burning-hands-a5e", + "parent": "burning-hands-a5e", "type": "slot_level_4", "damage_roll": "6d6", "target_count": null, @@ -3135,7 +3135,7 @@ "model": "api_v2.spellcastingoption", "pk": 693, "fields": { - "spell": "burning-hands-a5e", + "parent": "burning-hands-a5e", "type": "slot_level_5", "damage_roll": "7d6", "target_count": null, @@ -3147,7 +3147,7 @@ "model": "api_v2.spellcastingoption", "pk": 694, "fields": { - "spell": "burning-hands-a5e", + "parent": "burning-hands-a5e", "type": "slot_level_6", "damage_roll": "8d6", "target_count": null, @@ -3159,7 +3159,7 @@ "model": "api_v2.spellcastingoption", "pk": 695, "fields": { - "spell": "burning-hands-a5e", + "parent": "burning-hands-a5e", "type": "slot_level_7", "damage_roll": "9d6", "target_count": null, @@ -3171,7 +3171,7 @@ "model": "api_v2.spellcastingoption", "pk": 696, "fields": { - "spell": "burning-hands-a5e", + "parent": "burning-hands-a5e", "type": "slot_level_8", "damage_roll": "10d6", "target_count": null, @@ -3183,7 +3183,7 @@ "model": "api_v2.spellcastingoption", "pk": 697, "fields": { - "spell": "burning-hands-a5e", + "parent": "burning-hands-a5e", "type": "slot_level_9", "damage_roll": "11d6", "target_count": null, @@ -3195,7 +3195,7 @@ "model": "api_v2.spellcastingoption", "pk": 698, "fields": { - "spell": "calculate-a5e", + "parent": "calculate-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -3207,7 +3207,7 @@ "model": "api_v2.spellcastingoption", "pk": 699, "fields": { - "spell": "calculated-retribution-a5e", + "parent": "calculated-retribution-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -3219,7 +3219,7 @@ "model": "api_v2.spellcastingoption", "pk": 701, "fields": { - "spell": "calculated-retribution-a5e", + "parent": "calculated-retribution-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -3231,7 +3231,7 @@ "model": "api_v2.spellcastingoption", "pk": 702, "fields": { - "spell": "calculated-retribution-a5e", + "parent": "calculated-retribution-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -3243,7 +3243,7 @@ "model": "api_v2.spellcastingoption", "pk": 703, "fields": { - "spell": "calculated-retribution-a5e", + "parent": "calculated-retribution-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3255,7 +3255,7 @@ "model": "api_v2.spellcastingoption", "pk": 704, "fields": { - "spell": "calculated-retribution-a5e", + "parent": "calculated-retribution-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3267,7 +3267,7 @@ "model": "api_v2.spellcastingoption", "pk": 705, "fields": { - "spell": "calculated-retribution-a5e", + "parent": "calculated-retribution-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3279,7 +3279,7 @@ "model": "api_v2.spellcastingoption", "pk": 706, "fields": { - "spell": "calculated-retribution-a5e", + "parent": "calculated-retribution-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3291,7 +3291,7 @@ "model": "api_v2.spellcastingoption", "pk": 707, "fields": { - "spell": "calculated-retribution-a5e", + "parent": "calculated-retribution-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3303,7 +3303,7 @@ "model": "api_v2.spellcastingoption", "pk": 708, "fields": { - "spell": "calculated-retribution-a5e", + "parent": "calculated-retribution-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3315,7 +3315,7 @@ "model": "api_v2.spellcastingoption", "pk": 709, "fields": { - "spell": "call-lightning-a5e", + "parent": "call-lightning-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -3327,7 +3327,7 @@ "model": "api_v2.spellcastingoption", "pk": 711, "fields": { - "spell": "call-lightning-a5e", + "parent": "call-lightning-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3339,7 +3339,7 @@ "model": "api_v2.spellcastingoption", "pk": 712, "fields": { - "spell": "call-lightning-a5e", + "parent": "call-lightning-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3351,7 +3351,7 @@ "model": "api_v2.spellcastingoption", "pk": 713, "fields": { - "spell": "call-lightning-a5e", + "parent": "call-lightning-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3363,7 +3363,7 @@ "model": "api_v2.spellcastingoption", "pk": 714, "fields": { - "spell": "call-lightning-a5e", + "parent": "call-lightning-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3375,7 +3375,7 @@ "model": "api_v2.spellcastingoption", "pk": 715, "fields": { - "spell": "call-lightning-a5e", + "parent": "call-lightning-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3387,7 +3387,7 @@ "model": "api_v2.spellcastingoption", "pk": 716, "fields": { - "spell": "call-lightning-a5e", + "parent": "call-lightning-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3399,7 +3399,7 @@ "model": "api_v2.spellcastingoption", "pk": 717, "fields": { - "spell": "calm-emotions-a5e", + "parent": "calm-emotions-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -3411,7 +3411,7 @@ "model": "api_v2.spellcastingoption", "pk": 719, "fields": { - "spell": "calm-emotions-a5e", + "parent": "calm-emotions-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -3423,7 +3423,7 @@ "model": "api_v2.spellcastingoption", "pk": 720, "fields": { - "spell": "calm-emotions-a5e", + "parent": "calm-emotions-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3435,7 +3435,7 @@ "model": "api_v2.spellcastingoption", "pk": 721, "fields": { - "spell": "calm-emotions-a5e", + "parent": "calm-emotions-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3447,7 +3447,7 @@ "model": "api_v2.spellcastingoption", "pk": 722, "fields": { - "spell": "calm-emotions-a5e", + "parent": "calm-emotions-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3459,7 +3459,7 @@ "model": "api_v2.spellcastingoption", "pk": 723, "fields": { - "spell": "calm-emotions-a5e", + "parent": "calm-emotions-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3471,7 +3471,7 @@ "model": "api_v2.spellcastingoption", "pk": 724, "fields": { - "spell": "calm-emotions-a5e", + "parent": "calm-emotions-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3483,7 +3483,7 @@ "model": "api_v2.spellcastingoption", "pk": 725, "fields": { - "spell": "calm-emotions-a5e", + "parent": "calm-emotions-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3495,7 +3495,7 @@ "model": "api_v2.spellcastingoption", "pk": 726, "fields": { - "spell": "ceremony-a5e", + "parent": "ceremony-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -3507,7 +3507,7 @@ "model": "api_v2.spellcastingoption", "pk": 727, "fields": { - "spell": "ceremony-a5e", + "parent": "ceremony-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -3519,7 +3519,7 @@ "model": "api_v2.spellcastingoption", "pk": 728, "fields": { - "spell": "chain-lightning-a5e", + "parent": "chain-lightning-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -3531,7 +3531,7 @@ "model": "api_v2.spellcastingoption", "pk": 730, "fields": { - "spell": "chain-lightning-a5e", + "parent": "chain-lightning-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3543,7 +3543,7 @@ "model": "api_v2.spellcastingoption", "pk": 731, "fields": { - "spell": "chain-lightning-a5e", + "parent": "chain-lightning-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3555,7 +3555,7 @@ "model": "api_v2.spellcastingoption", "pk": 732, "fields": { - "spell": "chain-lightning-a5e", + "parent": "chain-lightning-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3567,7 +3567,7 @@ "model": "api_v2.spellcastingoption", "pk": 733, "fields": { - "spell": "charm-monster-a5e", + "parent": "charm-monster-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -3579,7 +3579,7 @@ "model": "api_v2.spellcastingoption", "pk": 735, "fields": { - "spell": "charm-monster-a5e", + "parent": "charm-monster-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 2, @@ -3591,7 +3591,7 @@ "model": "api_v2.spellcastingoption", "pk": 736, "fields": { - "spell": "charm-monster-a5e", + "parent": "charm-monster-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 3, @@ -3603,7 +3603,7 @@ "model": "api_v2.spellcastingoption", "pk": 737, "fields": { - "spell": "charm-monster-a5e", + "parent": "charm-monster-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 4, @@ -3615,7 +3615,7 @@ "model": "api_v2.spellcastingoption", "pk": 738, "fields": { - "spell": "charm-monster-a5e", + "parent": "charm-monster-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 5, @@ -3627,7 +3627,7 @@ "model": "api_v2.spellcastingoption", "pk": 739, "fields": { - "spell": "charm-monster-a5e", + "parent": "charm-monster-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 6, @@ -3639,7 +3639,7 @@ "model": "api_v2.spellcastingoption", "pk": 740, "fields": { - "spell": "charm-person-a5e", + "parent": "charm-person-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -3651,7 +3651,7 @@ "model": "api_v2.spellcastingoption", "pk": 742, "fields": { - "spell": "charm-person-a5e", + "parent": "charm-person-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -3663,7 +3663,7 @@ "model": "api_v2.spellcastingoption", "pk": 743, "fields": { - "spell": "charm-person-a5e", + "parent": "charm-person-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -3675,7 +3675,7 @@ "model": "api_v2.spellcastingoption", "pk": 744, "fields": { - "spell": "charm-person-a5e", + "parent": "charm-person-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -3687,7 +3687,7 @@ "model": "api_v2.spellcastingoption", "pk": 745, "fields": { - "spell": "charm-person-a5e", + "parent": "charm-person-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -3699,7 +3699,7 @@ "model": "api_v2.spellcastingoption", "pk": 746, "fields": { - "spell": "charm-person-a5e", + "parent": "charm-person-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -3711,7 +3711,7 @@ "model": "api_v2.spellcastingoption", "pk": 747, "fields": { - "spell": "charm-person-a5e", + "parent": "charm-person-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -3723,7 +3723,7 @@ "model": "api_v2.spellcastingoption", "pk": 748, "fields": { - "spell": "charm-person-a5e", + "parent": "charm-person-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -3735,7 +3735,7 @@ "model": "api_v2.spellcastingoption", "pk": 749, "fields": { - "spell": "charm-person-a5e", + "parent": "charm-person-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -3747,7 +3747,7 @@ "model": "api_v2.spellcastingoption", "pk": 750, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -3759,7 +3759,7 @@ "model": "api_v2.spellcastingoption", "pk": 751, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_1", "damage_roll": "1d8", "target_count": null, @@ -3771,7 +3771,7 @@ "model": "api_v2.spellcastingoption", "pk": 752, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_2", "damage_roll": "1d8", "target_count": null, @@ -3783,7 +3783,7 @@ "model": "api_v2.spellcastingoption", "pk": 753, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_3", "damage_roll": "1d8", "target_count": null, @@ -3795,7 +3795,7 @@ "model": "api_v2.spellcastingoption", "pk": 754, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_4", "damage_roll": "1d8", "target_count": null, @@ -3807,7 +3807,7 @@ "model": "api_v2.spellcastingoption", "pk": 755, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_5", "damage_roll": "2d8", "target_count": null, @@ -3819,7 +3819,7 @@ "model": "api_v2.spellcastingoption", "pk": 756, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_6", "damage_roll": "2d8", "target_count": null, @@ -3831,7 +3831,7 @@ "model": "api_v2.spellcastingoption", "pk": 757, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_7", "damage_roll": "2d8", "target_count": null, @@ -3843,7 +3843,7 @@ "model": "api_v2.spellcastingoption", "pk": 758, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_8", "damage_roll": "2d8", "target_count": null, @@ -3855,7 +3855,7 @@ "model": "api_v2.spellcastingoption", "pk": 759, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_9", "damage_roll": "2d8", "target_count": null, @@ -3867,7 +3867,7 @@ "model": "api_v2.spellcastingoption", "pk": 760, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_10", "damage_roll": "2d8", "target_count": null, @@ -3879,7 +3879,7 @@ "model": "api_v2.spellcastingoption", "pk": 761, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_11", "damage_roll": "3d8", "target_count": null, @@ -3891,7 +3891,7 @@ "model": "api_v2.spellcastingoption", "pk": 762, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_12", "damage_roll": "3d8", "target_count": null, @@ -3903,7 +3903,7 @@ "model": "api_v2.spellcastingoption", "pk": 763, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_13", "damage_roll": "3d8", "target_count": null, @@ -3915,7 +3915,7 @@ "model": "api_v2.spellcastingoption", "pk": 764, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_14", "damage_roll": "3d8", "target_count": null, @@ -3927,7 +3927,7 @@ "model": "api_v2.spellcastingoption", "pk": 765, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_15", "damage_roll": "3d8", "target_count": null, @@ -3939,7 +3939,7 @@ "model": "api_v2.spellcastingoption", "pk": 766, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_16", "damage_roll": "3d8", "target_count": null, @@ -3951,7 +3951,7 @@ "model": "api_v2.spellcastingoption", "pk": 767, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_17", "damage_roll": "4d8", "target_count": null, @@ -3963,7 +3963,7 @@ "model": "api_v2.spellcastingoption", "pk": 768, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_18", "damage_roll": "4d8", "target_count": null, @@ -3975,7 +3975,7 @@ "model": "api_v2.spellcastingoption", "pk": 769, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_19", "damage_roll": "4d8", "target_count": null, @@ -3987,7 +3987,7 @@ "model": "api_v2.spellcastingoption", "pk": 770, "fields": { - "spell": "chill-touch-a5e", + "parent": "chill-touch-a5e", "type": "player_level_20", "damage_roll": "4d8", "target_count": null, @@ -3999,7 +3999,7 @@ "model": "api_v2.spellcastingoption", "pk": 771, "fields": { - "spell": "circle-of-death-a5e", + "parent": "circle-of-death-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4011,7 +4011,7 @@ "model": "api_v2.spellcastingoption", "pk": 773, "fields": { - "spell": "circle-of-death-a5e", + "parent": "circle-of-death-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4023,7 +4023,7 @@ "model": "api_v2.spellcastingoption", "pk": 774, "fields": { - "spell": "circle-of-death-a5e", + "parent": "circle-of-death-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4035,7 +4035,7 @@ "model": "api_v2.spellcastingoption", "pk": 775, "fields": { - "spell": "circle-of-death-a5e", + "parent": "circle-of-death-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4047,7 +4047,7 @@ "model": "api_v2.spellcastingoption", "pk": 776, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4059,7 +4059,7 @@ "model": "api_v2.spellcastingoption", "pk": 777, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -4071,7 +4071,7 @@ "model": "api_v2.spellcastingoption", "pk": 778, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -4083,7 +4083,7 @@ "model": "api_v2.spellcastingoption", "pk": 779, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -4095,7 +4095,7 @@ "model": "api_v2.spellcastingoption", "pk": 780, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -4107,7 +4107,7 @@ "model": "api_v2.spellcastingoption", "pk": 781, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_5", "damage_roll": null, "target_count": null, @@ -4119,7 +4119,7 @@ "model": "api_v2.spellcastingoption", "pk": 782, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_6", "damage_roll": null, "target_count": null, @@ -4131,7 +4131,7 @@ "model": "api_v2.spellcastingoption", "pk": 783, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_7", "damage_roll": null, "target_count": null, @@ -4143,7 +4143,7 @@ "model": "api_v2.spellcastingoption", "pk": 784, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_8", "damage_roll": null, "target_count": null, @@ -4155,7 +4155,7 @@ "model": "api_v2.spellcastingoption", "pk": 785, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_9", "damage_roll": null, "target_count": null, @@ -4167,7 +4167,7 @@ "model": "api_v2.spellcastingoption", "pk": 786, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_10", "damage_roll": null, "target_count": null, @@ -4179,7 +4179,7 @@ "model": "api_v2.spellcastingoption", "pk": 787, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_11", "damage_roll": null, "target_count": null, @@ -4191,7 +4191,7 @@ "model": "api_v2.spellcastingoption", "pk": 788, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_12", "damage_roll": null, "target_count": null, @@ -4203,7 +4203,7 @@ "model": "api_v2.spellcastingoption", "pk": 789, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_13", "damage_roll": null, "target_count": null, @@ -4215,7 +4215,7 @@ "model": "api_v2.spellcastingoption", "pk": 790, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_14", "damage_roll": null, "target_count": null, @@ -4227,7 +4227,7 @@ "model": "api_v2.spellcastingoption", "pk": 791, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_15", "damage_roll": null, "target_count": null, @@ -4239,7 +4239,7 @@ "model": "api_v2.spellcastingoption", "pk": 792, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_16", "damage_roll": null, "target_count": null, @@ -4251,7 +4251,7 @@ "model": "api_v2.spellcastingoption", "pk": 793, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_17", "damage_roll": null, "target_count": null, @@ -4263,7 +4263,7 @@ "model": "api_v2.spellcastingoption", "pk": 794, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_18", "damage_roll": null, "target_count": null, @@ -4275,7 +4275,7 @@ "model": "api_v2.spellcastingoption", "pk": 795, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_19", "damage_roll": null, "target_count": null, @@ -4287,7 +4287,7 @@ "model": "api_v2.spellcastingoption", "pk": 796, "fields": { - "spell": "circular-breathing-a5e", + "parent": "circular-breathing-a5e", "type": "player_level_20", "damage_roll": null, "target_count": null, @@ -4299,7 +4299,7 @@ "model": "api_v2.spellcastingoption", "pk": 797, "fields": { - "spell": "clairvoyance-a5e", + "parent": "clairvoyance-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4311,7 +4311,7 @@ "model": "api_v2.spellcastingoption", "pk": 798, "fields": { - "spell": "clone-a5e", + "parent": "clone-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4323,7 +4323,7 @@ "model": "api_v2.spellcastingoption", "pk": 799, "fields": { - "spell": "cloudkill-a5e", + "parent": "cloudkill-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4335,7 +4335,7 @@ "model": "api_v2.spellcastingoption", "pk": 801, "fields": { - "spell": "cloudkill-a5e", + "parent": "cloudkill-a5e", "type": "slot_level_6", "damage_roll": "6d8", "target_count": null, @@ -4347,7 +4347,7 @@ "model": "api_v2.spellcastingoption", "pk": 802, "fields": { - "spell": "cloudkill-a5e", + "parent": "cloudkill-a5e", "type": "slot_level_7", "damage_roll": "7d8", "target_count": null, @@ -4359,7 +4359,7 @@ "model": "api_v2.spellcastingoption", "pk": 803, "fields": { - "spell": "cloudkill-a5e", + "parent": "cloudkill-a5e", "type": "slot_level_8", "damage_roll": "8d8", "target_count": null, @@ -4371,7 +4371,7 @@ "model": "api_v2.spellcastingoption", "pk": 804, "fields": { - "spell": "cloudkill-a5e", + "parent": "cloudkill-a5e", "type": "slot_level_9", "damage_roll": "9d8", "target_count": null, @@ -4383,7 +4383,7 @@ "model": "api_v2.spellcastingoption", "pk": 805, "fields": { - "spell": "cobras-spit-a5e", + "parent": "cobras-spit-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4395,7 +4395,7 @@ "model": "api_v2.spellcastingoption", "pk": 807, "fields": { - "spell": "cobras-spit-a5e", + "parent": "cobras-spit-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -4407,7 +4407,7 @@ "model": "api_v2.spellcastingoption", "pk": 808, "fields": { - "spell": "cobras-spit-a5e", + "parent": "cobras-spit-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -4419,7 +4419,7 @@ "model": "api_v2.spellcastingoption", "pk": 809, "fields": { - "spell": "cobras-spit-a5e", + "parent": "cobras-spit-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4431,7 +4431,7 @@ "model": "api_v2.spellcastingoption", "pk": 810, "fields": { - "spell": "cobras-spit-a5e", + "parent": "cobras-spit-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4443,7 +4443,7 @@ "model": "api_v2.spellcastingoption", "pk": 811, "fields": { - "spell": "cobras-spit-a5e", + "parent": "cobras-spit-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4455,7 +4455,7 @@ "model": "api_v2.spellcastingoption", "pk": 812, "fields": { - "spell": "cobras-spit-a5e", + "parent": "cobras-spit-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4467,7 +4467,7 @@ "model": "api_v2.spellcastingoption", "pk": 813, "fields": { - "spell": "color-spray-a5e", + "parent": "color-spray-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4479,7 +4479,7 @@ "model": "api_v2.spellcastingoption", "pk": 815, "fields": { - "spell": "color-spray-a5e", + "parent": "color-spray-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -4491,7 +4491,7 @@ "model": "api_v2.spellcastingoption", "pk": 816, "fields": { - "spell": "color-spray-a5e", + "parent": "color-spray-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -4503,7 +4503,7 @@ "model": "api_v2.spellcastingoption", "pk": 817, "fields": { - "spell": "color-spray-a5e", + "parent": "color-spray-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -4515,7 +4515,7 @@ "model": "api_v2.spellcastingoption", "pk": 818, "fields": { - "spell": "color-spray-a5e", + "parent": "color-spray-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -4527,7 +4527,7 @@ "model": "api_v2.spellcastingoption", "pk": 819, "fields": { - "spell": "color-spray-a5e", + "parent": "color-spray-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4539,7 +4539,7 @@ "model": "api_v2.spellcastingoption", "pk": 820, "fields": { - "spell": "color-spray-a5e", + "parent": "color-spray-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4551,7 +4551,7 @@ "model": "api_v2.spellcastingoption", "pk": 821, "fields": { - "spell": "color-spray-a5e", + "parent": "color-spray-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4563,7 +4563,7 @@ "model": "api_v2.spellcastingoption", "pk": 822, "fields": { - "spell": "color-spray-a5e", + "parent": "color-spray-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4575,7 +4575,7 @@ "model": "api_v2.spellcastingoption", "pk": 823, "fields": { - "spell": "command-a5e", + "parent": "command-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4587,7 +4587,7 @@ "model": "api_v2.spellcastingoption", "pk": 825, "fields": { - "spell": "command-a5e", + "parent": "command-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -4599,7 +4599,7 @@ "model": "api_v2.spellcastingoption", "pk": 826, "fields": { - "spell": "command-a5e", + "parent": "command-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -4611,7 +4611,7 @@ "model": "api_v2.spellcastingoption", "pk": 827, "fields": { - "spell": "command-a5e", + "parent": "command-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -4623,7 +4623,7 @@ "model": "api_v2.spellcastingoption", "pk": 828, "fields": { - "spell": "command-a5e", + "parent": "command-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -4635,7 +4635,7 @@ "model": "api_v2.spellcastingoption", "pk": 829, "fields": { - "spell": "command-a5e", + "parent": "command-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -4647,7 +4647,7 @@ "model": "api_v2.spellcastingoption", "pk": 830, "fields": { - "spell": "command-a5e", + "parent": "command-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -4659,7 +4659,7 @@ "model": "api_v2.spellcastingoption", "pk": 831, "fields": { - "spell": "command-a5e", + "parent": "command-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -4671,7 +4671,7 @@ "model": "api_v2.spellcastingoption", "pk": 832, "fields": { - "spell": "command-a5e", + "parent": "command-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -4683,7 +4683,7 @@ "model": "api_v2.spellcastingoption", "pk": 833, "fields": { - "spell": "commune-a5e", + "parent": "commune-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4695,7 +4695,7 @@ "model": "api_v2.spellcastingoption", "pk": 834, "fields": { - "spell": "commune-a5e", + "parent": "commune-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -4707,7 +4707,7 @@ "model": "api_v2.spellcastingoption", "pk": 835, "fields": { - "spell": "commune-with-nature-a5e", + "parent": "commune-with-nature-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4719,7 +4719,7 @@ "model": "api_v2.spellcastingoption", "pk": 836, "fields": { - "spell": "commune-with-nature-a5e", + "parent": "commune-with-nature-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -4731,7 +4731,7 @@ "model": "api_v2.spellcastingoption", "pk": 837, "fields": { - "spell": "comprehend-languages-a5e", + "parent": "comprehend-languages-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4743,7 +4743,7 @@ "model": "api_v2.spellcastingoption", "pk": 838, "fields": { - "spell": "comprehend-languages-a5e", + "parent": "comprehend-languages-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -4755,7 +4755,7 @@ "model": "api_v2.spellcastingoption", "pk": 840, "fields": { - "spell": "comprehend-languages-a5e", + "parent": "comprehend-languages-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -4767,7 +4767,7 @@ "model": "api_v2.spellcastingoption", "pk": 841, "fields": { - "spell": "comprehend-languages-a5e", + "parent": "comprehend-languages-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -4779,7 +4779,7 @@ "model": "api_v2.spellcastingoption", "pk": 842, "fields": { - "spell": "comprehend-languages-a5e", + "parent": "comprehend-languages-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -4791,7 +4791,7 @@ "model": "api_v2.spellcastingoption", "pk": 843, "fields": { - "spell": "comprehend-languages-a5e", + "parent": "comprehend-languages-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -4803,7 +4803,7 @@ "model": "api_v2.spellcastingoption", "pk": 844, "fields": { - "spell": "comprehend-languages-a5e", + "parent": "comprehend-languages-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4815,7 +4815,7 @@ "model": "api_v2.spellcastingoption", "pk": 845, "fields": { - "spell": "comprehend-languages-a5e", + "parent": "comprehend-languages-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4827,7 +4827,7 @@ "model": "api_v2.spellcastingoption", "pk": 846, "fields": { - "spell": "comprehend-languages-a5e", + "parent": "comprehend-languages-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4839,7 +4839,7 @@ "model": "api_v2.spellcastingoption", "pk": 847, "fields": { - "spell": "comprehend-languages-a5e", + "parent": "comprehend-languages-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4851,7 +4851,7 @@ "model": "api_v2.spellcastingoption", "pk": 848, "fields": { - "spell": "cone-of-cold-a5e", + "parent": "cone-of-cold-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4863,7 +4863,7 @@ "model": "api_v2.spellcastingoption", "pk": 850, "fields": { - "spell": "cone-of-cold-a5e", + "parent": "cone-of-cold-a5e", "type": "slot_level_6", "damage_roll": "9d8", "target_count": null, @@ -4875,7 +4875,7 @@ "model": "api_v2.spellcastingoption", "pk": 851, "fields": { - "spell": "cone-of-cold-a5e", + "parent": "cone-of-cold-a5e", "type": "slot_level_7", "damage_roll": "10d8", "target_count": null, @@ -4887,7 +4887,7 @@ "model": "api_v2.spellcastingoption", "pk": 852, "fields": { - "spell": "cone-of-cold-a5e", + "parent": "cone-of-cold-a5e", "type": "slot_level_8", "damage_roll": "11d8", "target_count": null, @@ -4899,7 +4899,7 @@ "model": "api_v2.spellcastingoption", "pk": 853, "fields": { - "spell": "cone-of-cold-a5e", + "parent": "cone-of-cold-a5e", "type": "slot_level_9", "damage_roll": "12d8", "target_count": null, @@ -4911,7 +4911,7 @@ "model": "api_v2.spellcastingoption", "pk": 854, "fields": { - "spell": "confusion-a5e", + "parent": "confusion-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4923,7 +4923,7 @@ "model": "api_v2.spellcastingoption", "pk": 856, "fields": { - "spell": "confusion-a5e", + "parent": "confusion-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -4935,7 +4935,7 @@ "model": "api_v2.spellcastingoption", "pk": 857, "fields": { - "spell": "confusion-a5e", + "parent": "confusion-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4947,7 +4947,7 @@ "model": "api_v2.spellcastingoption", "pk": 858, "fields": { - "spell": "confusion-a5e", + "parent": "confusion-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4959,7 +4959,7 @@ "model": "api_v2.spellcastingoption", "pk": 859, "fields": { - "spell": "confusion-a5e", + "parent": "confusion-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4971,7 +4971,7 @@ "model": "api_v2.spellcastingoption", "pk": 860, "fields": { - "spell": "confusion-a5e", + "parent": "confusion-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4983,7 +4983,7 @@ "model": "api_v2.spellcastingoption", "pk": 861, "fields": { - "spell": "conjure-animals-a5e", + "parent": "conjure-animals-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -4995,7 +4995,7 @@ "model": "api_v2.spellcastingoption", "pk": 863, "fields": { - "spell": "conjure-animals-a5e", + "parent": "conjure-animals-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -5007,7 +5007,7 @@ "model": "api_v2.spellcastingoption", "pk": 864, "fields": { - "spell": "conjure-animals-a5e", + "parent": "conjure-animals-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -5019,7 +5019,7 @@ "model": "api_v2.spellcastingoption", "pk": 865, "fields": { - "spell": "conjure-animals-a5e", + "parent": "conjure-animals-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5031,7 +5031,7 @@ "model": "api_v2.spellcastingoption", "pk": 866, "fields": { - "spell": "conjure-animals-a5e", + "parent": "conjure-animals-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5043,7 +5043,7 @@ "model": "api_v2.spellcastingoption", "pk": 867, "fields": { - "spell": "conjure-animals-a5e", + "parent": "conjure-animals-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5055,7 +5055,7 @@ "model": "api_v2.spellcastingoption", "pk": 868, "fields": { - "spell": "conjure-animals-a5e", + "parent": "conjure-animals-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5067,7 +5067,7 @@ "model": "api_v2.spellcastingoption", "pk": 869, "fields": { - "spell": "conjure-celestial-a5e", + "parent": "conjure-celestial-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5079,7 +5079,7 @@ "model": "api_v2.spellcastingoption", "pk": 871, "fields": { - "spell": "conjure-celestial-a5e", + "parent": "conjure-celestial-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5091,7 +5091,7 @@ "model": "api_v2.spellcastingoption", "pk": 872, "fields": { - "spell": "conjure-celestial-a5e", + "parent": "conjure-celestial-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5103,7 +5103,7 @@ "model": "api_v2.spellcastingoption", "pk": 873, "fields": { - "spell": "conjure-elemental-a5e", + "parent": "conjure-elemental-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5115,7 +5115,7 @@ "model": "api_v2.spellcastingoption", "pk": 875, "fields": { - "spell": "conjure-elemental-a5e", + "parent": "conjure-elemental-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5127,7 +5127,7 @@ "model": "api_v2.spellcastingoption", "pk": 876, "fields": { - "spell": "conjure-elemental-a5e", + "parent": "conjure-elemental-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5139,7 +5139,7 @@ "model": "api_v2.spellcastingoption", "pk": 877, "fields": { - "spell": "conjure-elemental-a5e", + "parent": "conjure-elemental-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5151,7 +5151,7 @@ "model": "api_v2.spellcastingoption", "pk": 878, "fields": { - "spell": "conjure-elemental-a5e", + "parent": "conjure-elemental-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5163,7 +5163,7 @@ "model": "api_v2.spellcastingoption", "pk": 879, "fields": { - "spell": "conjure-fey-a5e", + "parent": "conjure-fey-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5175,7 +5175,7 @@ "model": "api_v2.spellcastingoption", "pk": 881, "fields": { - "spell": "conjure-fey-a5e", + "parent": "conjure-fey-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5187,7 +5187,7 @@ "model": "api_v2.spellcastingoption", "pk": 882, "fields": { - "spell": "conjure-fey-a5e", + "parent": "conjure-fey-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5199,7 +5199,7 @@ "model": "api_v2.spellcastingoption", "pk": 883, "fields": { - "spell": "conjure-fey-a5e", + "parent": "conjure-fey-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5211,7 +5211,7 @@ "model": "api_v2.spellcastingoption", "pk": 884, "fields": { - "spell": "conjure-minor-elementals-a5e", + "parent": "conjure-minor-elementals-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5223,7 +5223,7 @@ "model": "api_v2.spellcastingoption", "pk": 886, "fields": { - "spell": "conjure-minor-elementals-a5e", + "parent": "conjure-minor-elementals-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -5235,7 +5235,7 @@ "model": "api_v2.spellcastingoption", "pk": 887, "fields": { - "spell": "conjure-minor-elementals-a5e", + "parent": "conjure-minor-elementals-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5247,7 +5247,7 @@ "model": "api_v2.spellcastingoption", "pk": 888, "fields": { - "spell": "conjure-minor-elementals-a5e", + "parent": "conjure-minor-elementals-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5259,7 +5259,7 @@ "model": "api_v2.spellcastingoption", "pk": 889, "fields": { - "spell": "conjure-minor-elementals-a5e", + "parent": "conjure-minor-elementals-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5271,7 +5271,7 @@ "model": "api_v2.spellcastingoption", "pk": 890, "fields": { - "spell": "conjure-minor-elementals-a5e", + "parent": "conjure-minor-elementals-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5283,7 +5283,7 @@ "model": "api_v2.spellcastingoption", "pk": 891, "fields": { - "spell": "conjure-woodland-beings-a5e", + "parent": "conjure-woodland-beings-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5295,7 +5295,7 @@ "model": "api_v2.spellcastingoption", "pk": 893, "fields": { - "spell": "conjure-woodland-beings-a5e", + "parent": "conjure-woodland-beings-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -5307,7 +5307,7 @@ "model": "api_v2.spellcastingoption", "pk": 894, "fields": { - "spell": "conjure-woodland-beings-a5e", + "parent": "conjure-woodland-beings-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5319,7 +5319,7 @@ "model": "api_v2.spellcastingoption", "pk": 895, "fields": { - "spell": "conjure-woodland-beings-a5e", + "parent": "conjure-woodland-beings-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5331,7 +5331,7 @@ "model": "api_v2.spellcastingoption", "pk": 896, "fields": { - "spell": "conjure-woodland-beings-a5e", + "parent": "conjure-woodland-beings-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5343,7 +5343,7 @@ "model": "api_v2.spellcastingoption", "pk": 897, "fields": { - "spell": "conjure-woodland-beings-a5e", + "parent": "conjure-woodland-beings-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5355,7 +5355,7 @@ "model": "api_v2.spellcastingoption", "pk": 898, "fields": { - "spell": "contact-other-plane-a5e", + "parent": "contact-other-plane-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5367,7 +5367,7 @@ "model": "api_v2.spellcastingoption", "pk": 899, "fields": { - "spell": "contact-other-plane-a5e", + "parent": "contact-other-plane-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -5379,7 +5379,7 @@ "model": "api_v2.spellcastingoption", "pk": 900, "fields": { - "spell": "contagion-a5e", + "parent": "contagion-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5391,7 +5391,7 @@ "model": "api_v2.spellcastingoption", "pk": 901, "fields": { - "spell": "contingency-a5e", + "parent": "contingency-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5403,7 +5403,7 @@ "model": "api_v2.spellcastingoption", "pk": 902, "fields": { - "spell": "continual-flame-a5e", + "parent": "continual-flame-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5415,7 +5415,7 @@ "model": "api_v2.spellcastingoption", "pk": 903, "fields": { - "spell": "control-water-a5e", + "parent": "control-water-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5427,7 +5427,7 @@ "model": "api_v2.spellcastingoption", "pk": 904, "fields": { - "spell": "control-weather-a5e", + "parent": "control-weather-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5439,7 +5439,7 @@ "model": "api_v2.spellcastingoption", "pk": 905, "fields": { - "spell": "corpse-explosion-a5e", + "parent": "corpse-explosion-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5451,7 +5451,7 @@ "model": "api_v2.spellcastingoption", "pk": 907, "fields": { - "spell": "corpse-explosion-a5e", + "parent": "corpse-explosion-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -5463,7 +5463,7 @@ "model": "api_v2.spellcastingoption", "pk": 908, "fields": { - "spell": "corpse-explosion-a5e", + "parent": "corpse-explosion-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -5475,7 +5475,7 @@ "model": "api_v2.spellcastingoption", "pk": 909, "fields": { - "spell": "corpse-explosion-a5e", + "parent": "corpse-explosion-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -5487,7 +5487,7 @@ "model": "api_v2.spellcastingoption", "pk": 910, "fields": { - "spell": "corpse-explosion-a5e", + "parent": "corpse-explosion-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -5499,7 +5499,7 @@ "model": "api_v2.spellcastingoption", "pk": 911, "fields": { - "spell": "corpse-explosion-a5e", + "parent": "corpse-explosion-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5511,7 +5511,7 @@ "model": "api_v2.spellcastingoption", "pk": 912, "fields": { - "spell": "corpse-explosion-a5e", + "parent": "corpse-explosion-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5523,7 +5523,7 @@ "model": "api_v2.spellcastingoption", "pk": 913, "fields": { - "spell": "corpse-explosion-a5e", + "parent": "corpse-explosion-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5535,7 +5535,7 @@ "model": "api_v2.spellcastingoption", "pk": 914, "fields": { - "spell": "corpse-explosion-a5e", + "parent": "corpse-explosion-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5547,7 +5547,7 @@ "model": "api_v2.spellcastingoption", "pk": 915, "fields": { - "spell": "counterspell-a5e", + "parent": "counterspell-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5559,7 +5559,7 @@ "model": "api_v2.spellcastingoption", "pk": 917, "fields": { - "spell": "counterspell-a5e", + "parent": "counterspell-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -5571,7 +5571,7 @@ "model": "api_v2.spellcastingoption", "pk": 918, "fields": { - "spell": "counterspell-a5e", + "parent": "counterspell-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -5583,7 +5583,7 @@ "model": "api_v2.spellcastingoption", "pk": 919, "fields": { - "spell": "counterspell-a5e", + "parent": "counterspell-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5595,7 +5595,7 @@ "model": "api_v2.spellcastingoption", "pk": 920, "fields": { - "spell": "counterspell-a5e", + "parent": "counterspell-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5607,7 +5607,7 @@ "model": "api_v2.spellcastingoption", "pk": 921, "fields": { - "spell": "counterspell-a5e", + "parent": "counterspell-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5619,7 +5619,7 @@ "model": "api_v2.spellcastingoption", "pk": 922, "fields": { - "spell": "counterspell-a5e", + "parent": "counterspell-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5631,7 +5631,7 @@ "model": "api_v2.spellcastingoption", "pk": 923, "fields": { - "spell": "create-food-and-water-a5e", + "parent": "create-food-and-water-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5643,7 +5643,7 @@ "model": "api_v2.spellcastingoption", "pk": 925, "fields": { - "spell": "create-food-and-water-a5e", + "parent": "create-food-and-water-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -5655,7 +5655,7 @@ "model": "api_v2.spellcastingoption", "pk": 926, "fields": { - "spell": "create-food-and-water-a5e", + "parent": "create-food-and-water-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -5667,7 +5667,7 @@ "model": "api_v2.spellcastingoption", "pk": 927, "fields": { - "spell": "create-food-and-water-a5e", + "parent": "create-food-and-water-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5679,7 +5679,7 @@ "model": "api_v2.spellcastingoption", "pk": 928, "fields": { - "spell": "create-food-and-water-a5e", + "parent": "create-food-and-water-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5691,7 +5691,7 @@ "model": "api_v2.spellcastingoption", "pk": 929, "fields": { - "spell": "create-food-and-water-a5e", + "parent": "create-food-and-water-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5703,7 +5703,7 @@ "model": "api_v2.spellcastingoption", "pk": 930, "fields": { - "spell": "create-food-and-water-a5e", + "parent": "create-food-and-water-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5715,7 +5715,7 @@ "model": "api_v2.spellcastingoption", "pk": 931, "fields": { - "spell": "create-or-destroy-water-a5e", + "parent": "create-or-destroy-water-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5727,7 +5727,7 @@ "model": "api_v2.spellcastingoption", "pk": 933, "fields": { - "spell": "create-or-destroy-water-a5e", + "parent": "create-or-destroy-water-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -5739,7 +5739,7 @@ "model": "api_v2.spellcastingoption", "pk": 934, "fields": { - "spell": "create-or-destroy-water-a5e", + "parent": "create-or-destroy-water-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -5751,7 +5751,7 @@ "model": "api_v2.spellcastingoption", "pk": 935, "fields": { - "spell": "create-or-destroy-water-a5e", + "parent": "create-or-destroy-water-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -5763,7 +5763,7 @@ "model": "api_v2.spellcastingoption", "pk": 936, "fields": { - "spell": "create-or-destroy-water-a5e", + "parent": "create-or-destroy-water-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -5775,7 +5775,7 @@ "model": "api_v2.spellcastingoption", "pk": 937, "fields": { - "spell": "create-or-destroy-water-a5e", + "parent": "create-or-destroy-water-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5787,7 +5787,7 @@ "model": "api_v2.spellcastingoption", "pk": 938, "fields": { - "spell": "create-or-destroy-water-a5e", + "parent": "create-or-destroy-water-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5799,7 +5799,7 @@ "model": "api_v2.spellcastingoption", "pk": 939, "fields": { - "spell": "create-or-destroy-water-a5e", + "parent": "create-or-destroy-water-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5811,7 +5811,7 @@ "model": "api_v2.spellcastingoption", "pk": 940, "fields": { - "spell": "create-or-destroy-water-a5e", + "parent": "create-or-destroy-water-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5823,7 +5823,7 @@ "model": "api_v2.spellcastingoption", "pk": 941, "fields": { - "spell": "create-undead-a5e", + "parent": "create-undead-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5835,7 +5835,7 @@ "model": "api_v2.spellcastingoption", "pk": 943, "fields": { - "spell": "create-undead-a5e", + "parent": "create-undead-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5847,7 +5847,7 @@ "model": "api_v2.spellcastingoption", "pk": 944, "fields": { - "spell": "create-undead-a5e", + "parent": "create-undead-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5859,7 +5859,7 @@ "model": "api_v2.spellcastingoption", "pk": 945, "fields": { - "spell": "create-undead-a5e", + "parent": "create-undead-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5871,7 +5871,7 @@ "model": "api_v2.spellcastingoption", "pk": 946, "fields": { - "spell": "creation-a5e", + "parent": "creation-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5883,7 +5883,7 @@ "model": "api_v2.spellcastingoption", "pk": 948, "fields": { - "spell": "creation-a5e", + "parent": "creation-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5895,7 +5895,7 @@ "model": "api_v2.spellcastingoption", "pk": 949, "fields": { - "spell": "creation-a5e", + "parent": "creation-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5907,7 +5907,7 @@ "model": "api_v2.spellcastingoption", "pk": 950, "fields": { - "spell": "creation-a5e", + "parent": "creation-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5919,7 +5919,7 @@ "model": "api_v2.spellcastingoption", "pk": 951, "fields": { - "spell": "creation-a5e", + "parent": "creation-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5931,7 +5931,7 @@ "model": "api_v2.spellcastingoption", "pk": 952, "fields": { - "spell": "crushing-haymaker-a5e", + "parent": "crushing-haymaker-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -5943,7 +5943,7 @@ "model": "api_v2.spellcastingoption", "pk": 954, "fields": { - "spell": "crushing-haymaker-a5e", + "parent": "crushing-haymaker-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -5955,7 +5955,7 @@ "model": "api_v2.spellcastingoption", "pk": 955, "fields": { - "spell": "crushing-haymaker-a5e", + "parent": "crushing-haymaker-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -5967,7 +5967,7 @@ "model": "api_v2.spellcastingoption", "pk": 956, "fields": { - "spell": "crushing-haymaker-a5e", + "parent": "crushing-haymaker-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5979,7 +5979,7 @@ "model": "api_v2.spellcastingoption", "pk": 957, "fields": { - "spell": "crushing-haymaker-a5e", + "parent": "crushing-haymaker-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5991,7 +5991,7 @@ "model": "api_v2.spellcastingoption", "pk": 958, "fields": { - "spell": "crushing-haymaker-a5e", + "parent": "crushing-haymaker-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6003,7 +6003,7 @@ "model": "api_v2.spellcastingoption", "pk": 959, "fields": { - "spell": "crushing-haymaker-a5e", + "parent": "crushing-haymaker-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6015,7 +6015,7 @@ "model": "api_v2.spellcastingoption", "pk": 960, "fields": { - "spell": "cure-wounds-a5e", + "parent": "cure-wounds-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6027,7 +6027,7 @@ "model": "api_v2.spellcastingoption", "pk": 962, "fields": { - "spell": "cure-wounds-a5e", + "parent": "cure-wounds-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -6039,7 +6039,7 @@ "model": "api_v2.spellcastingoption", "pk": 963, "fields": { - "spell": "cure-wounds-a5e", + "parent": "cure-wounds-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -6051,7 +6051,7 @@ "model": "api_v2.spellcastingoption", "pk": 964, "fields": { - "spell": "cure-wounds-a5e", + "parent": "cure-wounds-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6063,7 +6063,7 @@ "model": "api_v2.spellcastingoption", "pk": 965, "fields": { - "spell": "cure-wounds-a5e", + "parent": "cure-wounds-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6075,7 +6075,7 @@ "model": "api_v2.spellcastingoption", "pk": 966, "fields": { - "spell": "cure-wounds-a5e", + "parent": "cure-wounds-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6087,7 +6087,7 @@ "model": "api_v2.spellcastingoption", "pk": 967, "fields": { - "spell": "cure-wounds-a5e", + "parent": "cure-wounds-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6099,7 +6099,7 @@ "model": "api_v2.spellcastingoption", "pk": 968, "fields": { - "spell": "cure-wounds-a5e", + "parent": "cure-wounds-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6111,7 +6111,7 @@ "model": "api_v2.spellcastingoption", "pk": 969, "fields": { - "spell": "cure-wounds-a5e", + "parent": "cure-wounds-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6123,7 +6123,7 @@ "model": "api_v2.spellcastingoption", "pk": 970, "fields": { - "spell": "dancing-lights-a5e", + "parent": "dancing-lights-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6135,7 +6135,7 @@ "model": "api_v2.spellcastingoption", "pk": 971, "fields": { - "spell": "darklight-a5e", + "parent": "darklight-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6147,7 +6147,7 @@ "model": "api_v2.spellcastingoption", "pk": 972, "fields": { - "spell": "darkness-a5e", + "parent": "darkness-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6159,7 +6159,7 @@ "model": "api_v2.spellcastingoption", "pk": 973, "fields": { - "spell": "darkvision-a5e", + "parent": "darkvision-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6171,7 +6171,7 @@ "model": "api_v2.spellcastingoption", "pk": 975, "fields": { - "spell": "darkvision-a5e", + "parent": "darkvision-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -6183,7 +6183,7 @@ "model": "api_v2.spellcastingoption", "pk": 976, "fields": { - "spell": "darkvision-a5e", + "parent": "darkvision-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -6195,7 +6195,7 @@ "model": "api_v2.spellcastingoption", "pk": 977, "fields": { - "spell": "darkvision-a5e", + "parent": "darkvision-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -6207,7 +6207,7 @@ "model": "api_v2.spellcastingoption", "pk": 978, "fields": { - "spell": "darkvision-a5e", + "parent": "darkvision-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -6219,7 +6219,7 @@ "model": "api_v2.spellcastingoption", "pk": 979, "fields": { - "spell": "darkvision-a5e", + "parent": "darkvision-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -6231,7 +6231,7 @@ "model": "api_v2.spellcastingoption", "pk": 980, "fields": { - "spell": "darkvision-a5e", + "parent": "darkvision-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -6243,7 +6243,7 @@ "model": "api_v2.spellcastingoption", "pk": 981, "fields": { - "spell": "darkvision-a5e", + "parent": "darkvision-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -6255,7 +6255,7 @@ "model": "api_v2.spellcastingoption", "pk": 982, "fields": { - "spell": "daylight-a5e", + "parent": "daylight-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6267,7 +6267,7 @@ "model": "api_v2.spellcastingoption", "pk": 983, "fields": { - "spell": "deadweight-a5e", + "parent": "deadweight-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6279,7 +6279,7 @@ "model": "api_v2.spellcastingoption", "pk": 984, "fields": { - "spell": "death-ward-a5e", + "parent": "death-ward-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6291,7 +6291,7 @@ "model": "api_v2.spellcastingoption", "pk": 985, "fields": { - "spell": "delayed-blast-fireball-a5e", + "parent": "delayed-blast-fireball-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6303,7 +6303,7 @@ "model": "api_v2.spellcastingoption", "pk": 987, "fields": { - "spell": "delayed-blast-fireball-a5e", + "parent": "delayed-blast-fireball-a5e", "type": "slot_level_8", "damage_roll": "13d6", "target_count": null, @@ -6315,7 +6315,7 @@ "model": "api_v2.spellcastingoption", "pk": 988, "fields": { - "spell": "delayed-blast-fireball-a5e", + "parent": "delayed-blast-fireball-a5e", "type": "slot_level_9", "damage_roll": "14d6", "target_count": null, @@ -6327,7 +6327,7 @@ "model": "api_v2.spellcastingoption", "pk": 989, "fields": { - "spell": "demiplane-a5e", + "parent": "demiplane-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6339,7 +6339,7 @@ "model": "api_v2.spellcastingoption", "pk": 990, "fields": { - "spell": "detect-evil-and-good-a5e", + "parent": "detect-evil-and-good-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6351,7 +6351,7 @@ "model": "api_v2.spellcastingoption", "pk": 991, "fields": { - "spell": "detect-magic-a5e", + "parent": "detect-magic-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6363,7 +6363,7 @@ "model": "api_v2.spellcastingoption", "pk": 992, "fields": { - "spell": "detect-magic-a5e", + "parent": "detect-magic-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -6375,7 +6375,7 @@ "model": "api_v2.spellcastingoption", "pk": 994, "fields": { - "spell": "detect-magic-a5e", + "parent": "detect-magic-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -6387,7 +6387,7 @@ "model": "api_v2.spellcastingoption", "pk": 995, "fields": { - "spell": "detect-magic-a5e", + "parent": "detect-magic-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -6399,7 +6399,7 @@ "model": "api_v2.spellcastingoption", "pk": 996, "fields": { - "spell": "detect-magic-a5e", + "parent": "detect-magic-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6411,7 +6411,7 @@ "model": "api_v2.spellcastingoption", "pk": 997, "fields": { - "spell": "detect-magic-a5e", + "parent": "detect-magic-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6423,7 +6423,7 @@ "model": "api_v2.spellcastingoption", "pk": 998, "fields": { - "spell": "detect-magic-a5e", + "parent": "detect-magic-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6435,7 +6435,7 @@ "model": "api_v2.spellcastingoption", "pk": 999, "fields": { - "spell": "detect-magic-a5e", + "parent": "detect-magic-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6447,7 +6447,7 @@ "model": "api_v2.spellcastingoption", "pk": 1000, "fields": { - "spell": "detect-magic-a5e", + "parent": "detect-magic-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6459,7 +6459,7 @@ "model": "api_v2.spellcastingoption", "pk": 1001, "fields": { - "spell": "detect-magic-a5e", + "parent": "detect-magic-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6471,7 +6471,7 @@ "model": "api_v2.spellcastingoption", "pk": 1002, "fields": { - "spell": "detect-poison-and-disease-a5e", + "parent": "detect-poison-and-disease-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6483,7 +6483,7 @@ "model": "api_v2.spellcastingoption", "pk": 1003, "fields": { - "spell": "detect-poison-and-disease-a5e", + "parent": "detect-poison-and-disease-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -6495,7 +6495,7 @@ "model": "api_v2.spellcastingoption", "pk": 1004, "fields": { - "spell": "detect-thoughts-a5e", + "parent": "detect-thoughts-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6507,7 +6507,7 @@ "model": "api_v2.spellcastingoption", "pk": 1006, "fields": { - "spell": "detect-thoughts-a5e", + "parent": "detect-thoughts-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -6519,7 +6519,7 @@ "model": "api_v2.spellcastingoption", "pk": 1007, "fields": { - "spell": "detect-thoughts-a5e", + "parent": "detect-thoughts-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6531,7 +6531,7 @@ "model": "api_v2.spellcastingoption", "pk": 1008, "fields": { - "spell": "detect-thoughts-a5e", + "parent": "detect-thoughts-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6543,7 +6543,7 @@ "model": "api_v2.spellcastingoption", "pk": 1009, "fields": { - "spell": "detect-thoughts-a5e", + "parent": "detect-thoughts-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6555,7 +6555,7 @@ "model": "api_v2.spellcastingoption", "pk": 1010, "fields": { - "spell": "detect-thoughts-a5e", + "parent": "detect-thoughts-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6567,7 +6567,7 @@ "model": "api_v2.spellcastingoption", "pk": 1011, "fields": { - "spell": "detect-thoughts-a5e", + "parent": "detect-thoughts-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6579,7 +6579,7 @@ "model": "api_v2.spellcastingoption", "pk": 1012, "fields": { - "spell": "detect-thoughts-a5e", + "parent": "detect-thoughts-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6591,7 +6591,7 @@ "model": "api_v2.spellcastingoption", "pk": 1013, "fields": { - "spell": "dimension-door-a5e", + "parent": "dimension-door-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6603,7 +6603,7 @@ "model": "api_v2.spellcastingoption", "pk": 1014, "fields": { - "spell": "disguise-self-a5e", + "parent": "disguise-self-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6615,7 +6615,7 @@ "model": "api_v2.spellcastingoption", "pk": 1016, "fields": { - "spell": "disguise-self-a5e", + "parent": "disguise-self-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -6627,7 +6627,7 @@ "model": "api_v2.spellcastingoption", "pk": 1017, "fields": { - "spell": "disguise-self-a5e", + "parent": "disguise-self-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -6639,7 +6639,7 @@ "model": "api_v2.spellcastingoption", "pk": 1018, "fields": { - "spell": "disguise-self-a5e", + "parent": "disguise-self-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6651,7 +6651,7 @@ "model": "api_v2.spellcastingoption", "pk": 1019, "fields": { - "spell": "disguise-self-a5e", + "parent": "disguise-self-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6663,7 +6663,7 @@ "model": "api_v2.spellcastingoption", "pk": 1020, "fields": { - "spell": "disguise-self-a5e", + "parent": "disguise-self-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6675,7 +6675,7 @@ "model": "api_v2.spellcastingoption", "pk": 1021, "fields": { - "spell": "disguise-self-a5e", + "parent": "disguise-self-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6687,7 +6687,7 @@ "model": "api_v2.spellcastingoption", "pk": 1022, "fields": { - "spell": "disguise-self-a5e", + "parent": "disguise-self-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6699,7 +6699,7 @@ "model": "api_v2.spellcastingoption", "pk": 1023, "fields": { - "spell": "disguise-self-a5e", + "parent": "disguise-self-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6711,7 +6711,7 @@ "model": "api_v2.spellcastingoption", "pk": 1024, "fields": { - "spell": "disintegrate-a5e", + "parent": "disintegrate-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6723,7 +6723,7 @@ "model": "api_v2.spellcastingoption", "pk": 1026, "fields": { - "spell": "disintegrate-a5e", + "parent": "disintegrate-a5e", "type": "slot_level_7", "damage_roll": "13d6+40", "target_count": null, @@ -6735,7 +6735,7 @@ "model": "api_v2.spellcastingoption", "pk": 1027, "fields": { - "spell": "disintegrate-a5e", + "parent": "disintegrate-a5e", "type": "slot_level_8", "damage_roll": "16d6+40", "target_count": null, @@ -6747,7 +6747,7 @@ "model": "api_v2.spellcastingoption", "pk": 1028, "fields": { - "spell": "disintegrate-a5e", + "parent": "disintegrate-a5e", "type": "slot_level_9", "damage_roll": "19d6+40", "target_count": null, @@ -6759,7 +6759,7 @@ "model": "api_v2.spellcastingoption", "pk": 1029, "fields": { - "spell": "dispel-evil-and-good-a5e", + "parent": "dispel-evil-and-good-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6771,7 +6771,7 @@ "model": "api_v2.spellcastingoption", "pk": 1031, "fields": { - "spell": "dispel-evil-and-good-a5e", + "parent": "dispel-evil-and-good-a5e", "type": "slot_level_6", "damage_roll": "8d8", "target_count": 2, @@ -6783,7 +6783,7 @@ "model": "api_v2.spellcastingoption", "pk": 1032, "fields": { - "spell": "dispel-evil-and-good-a5e", + "parent": "dispel-evil-and-good-a5e", "type": "slot_level_7", "damage_roll": "9d8", "target_count": 3, @@ -6795,7 +6795,7 @@ "model": "api_v2.spellcastingoption", "pk": 1033, "fields": { - "spell": "dispel-evil-and-good-a5e", + "parent": "dispel-evil-and-good-a5e", "type": "slot_level_8", "damage_roll": "10d8", "target_count": 4, @@ -6807,7 +6807,7 @@ "model": "api_v2.spellcastingoption", "pk": 1034, "fields": { - "spell": "dispel-evil-and-good-a5e", + "parent": "dispel-evil-and-good-a5e", "type": "slot_level_9", "damage_roll": "11d8", "target_count": 5, @@ -6819,7 +6819,7 @@ "model": "api_v2.spellcastingoption", "pk": 1035, "fields": { - "spell": "dispel-magic-a5e", + "parent": "dispel-magic-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6831,7 +6831,7 @@ "model": "api_v2.spellcastingoption", "pk": 1037, "fields": { - "spell": "dispel-magic-a5e", + "parent": "dispel-magic-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6843,7 +6843,7 @@ "model": "api_v2.spellcastingoption", "pk": 1038, "fields": { - "spell": "dispel-magic-a5e", + "parent": "dispel-magic-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6855,7 +6855,7 @@ "model": "api_v2.spellcastingoption", "pk": 1039, "fields": { - "spell": "dispel-magic-a5e", + "parent": "dispel-magic-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6867,7 +6867,7 @@ "model": "api_v2.spellcastingoption", "pk": 1040, "fields": { - "spell": "dispel-magic-a5e", + "parent": "dispel-magic-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6879,7 +6879,7 @@ "model": "api_v2.spellcastingoption", "pk": 1041, "fields": { - "spell": "dispel-magic-a5e", + "parent": "dispel-magic-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6891,7 +6891,7 @@ "model": "api_v2.spellcastingoption", "pk": 1042, "fields": { - "spell": "dispel-magic-a5e", + "parent": "dispel-magic-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6903,7 +6903,7 @@ "model": "api_v2.spellcastingoption", "pk": 1043, "fields": { - "spell": "divination-a5e", + "parent": "divination-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6915,7 +6915,7 @@ "model": "api_v2.spellcastingoption", "pk": 1044, "fields": { - "spell": "divination-a5e", + "parent": "divination-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -6927,7 +6927,7 @@ "model": "api_v2.spellcastingoption", "pk": 1045, "fields": { - "spell": "divine-favor-a5e", + "parent": "divine-favor-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6939,7 +6939,7 @@ "model": "api_v2.spellcastingoption", "pk": 1046, "fields": { - "spell": "divine-word-a5e", + "parent": "divine-word-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6951,7 +6951,7 @@ "model": "api_v2.spellcastingoption", "pk": 1047, "fields": { - "spell": "dominate-beast-a5e", + "parent": "dominate-beast-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -6963,7 +6963,7 @@ "model": "api_v2.spellcastingoption", "pk": 1049, "fields": { - "spell": "dominate-beast-a5e", + "parent": "dominate-beast-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6975,7 +6975,7 @@ "model": "api_v2.spellcastingoption", "pk": 1050, "fields": { - "spell": "dominate-beast-a5e", + "parent": "dominate-beast-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6987,7 +6987,7 @@ "model": "api_v2.spellcastingoption", "pk": 1051, "fields": { - "spell": "dominate-beast-a5e", + "parent": "dominate-beast-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6999,7 +6999,7 @@ "model": "api_v2.spellcastingoption", "pk": 1052, "fields": { - "spell": "dominate-beast-a5e", + "parent": "dominate-beast-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -7011,7 +7011,7 @@ "model": "api_v2.spellcastingoption", "pk": 1053, "fields": { - "spell": "dominate-beast-a5e", + "parent": "dominate-beast-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -7023,7 +7023,7 @@ "model": "api_v2.spellcastingoption", "pk": 1054, "fields": { - "spell": "dominate-monster-a5e", + "parent": "dominate-monster-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7035,7 +7035,7 @@ "model": "api_v2.spellcastingoption", "pk": 1056, "fields": { - "spell": "dominate-monster-a5e", + "parent": "dominate-monster-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -7047,7 +7047,7 @@ "model": "api_v2.spellcastingoption", "pk": 1057, "fields": { - "spell": "dominate-person-a5e", + "parent": "dominate-person-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7059,7 +7059,7 @@ "model": "api_v2.spellcastingoption", "pk": 1059, "fields": { - "spell": "dominate-person-a5e", + "parent": "dominate-person-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -7071,7 +7071,7 @@ "model": "api_v2.spellcastingoption", "pk": 1060, "fields": { - "spell": "dominate-person-a5e", + "parent": "dominate-person-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -7083,7 +7083,7 @@ "model": "api_v2.spellcastingoption", "pk": 1061, "fields": { - "spell": "dominate-person-a5e", + "parent": "dominate-person-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -7095,7 +7095,7 @@ "model": "api_v2.spellcastingoption", "pk": 1062, "fields": { - "spell": "dominate-person-a5e", + "parent": "dominate-person-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -7107,7 +7107,7 @@ "model": "api_v2.spellcastingoption", "pk": 1063, "fields": { - "spell": "dramatic-sting-a5e", + "parent": "dramatic-sting-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7119,7 +7119,7 @@ "model": "api_v2.spellcastingoption", "pk": 1065, "fields": { - "spell": "dramatic-sting-a5e", + "parent": "dramatic-sting-a5e", "type": "slot_level_2", "damage_roll": "2d4", "target_count": null, @@ -7131,7 +7131,7 @@ "model": "api_v2.spellcastingoption", "pk": 1066, "fields": { - "spell": "dramatic-sting-a5e", + "parent": "dramatic-sting-a5e", "type": "slot_level_3", "damage_roll": "3d4", "target_count": null, @@ -7143,7 +7143,7 @@ "model": "api_v2.spellcastingoption", "pk": 1067, "fields": { - "spell": "dramatic-sting-a5e", + "parent": "dramatic-sting-a5e", "type": "slot_level_4", "damage_roll": "4d4", "target_count": null, @@ -7155,7 +7155,7 @@ "model": "api_v2.spellcastingoption", "pk": 1068, "fields": { - "spell": "dramatic-sting-a5e", + "parent": "dramatic-sting-a5e", "type": "slot_level_5", "damage_roll": "5d4", "target_count": null, @@ -7167,7 +7167,7 @@ "model": "api_v2.spellcastingoption", "pk": 1069, "fields": { - "spell": "dramatic-sting-a5e", + "parent": "dramatic-sting-a5e", "type": "slot_level_6", "damage_roll": "6d4", "target_count": null, @@ -7179,7 +7179,7 @@ "model": "api_v2.spellcastingoption", "pk": 1070, "fields": { - "spell": "dramatic-sting-a5e", + "parent": "dramatic-sting-a5e", "type": "slot_level_7", "damage_roll": "7d4", "target_count": null, @@ -7191,7 +7191,7 @@ "model": "api_v2.spellcastingoption", "pk": 1071, "fields": { - "spell": "dramatic-sting-a5e", + "parent": "dramatic-sting-a5e", "type": "slot_level_8", "damage_roll": "8d4", "target_count": null, @@ -7203,7 +7203,7 @@ "model": "api_v2.spellcastingoption", "pk": 1072, "fields": { - "spell": "dramatic-sting-a5e", + "parent": "dramatic-sting-a5e", "type": "slot_level_9", "damage_roll": "9d4", "target_count": null, @@ -7215,7 +7215,7 @@ "model": "api_v2.spellcastingoption", "pk": 1073, "fields": { - "spell": "dream-a5e", + "parent": "dream-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7227,7 +7227,7 @@ "model": "api_v2.spellcastingoption", "pk": 1074, "fields": { - "spell": "druidcraft-a5e", + "parent": "druidcraft-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7239,7 +7239,7 @@ "model": "api_v2.spellcastingoption", "pk": 1075, "fields": { - "spell": "earth-barrier-a5e", + "parent": "earth-barrier-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7251,7 +7251,7 @@ "model": "api_v2.spellcastingoption", "pk": 1076, "fields": { - "spell": "earthquake-a5e", + "parent": "earthquake-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7263,7 +7263,7 @@ "model": "api_v2.spellcastingoption", "pk": 1077, "fields": { - "spell": "eldritch-cube-a5e", + "parent": "eldritch-cube-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7275,7 +7275,7 @@ "model": "api_v2.spellcastingoption", "pk": 1078, "fields": { - "spell": "enhance-ability-a5e", + "parent": "enhance-ability-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7287,7 +7287,7 @@ "model": "api_v2.spellcastingoption", "pk": 1080, "fields": { - "spell": "enhance-ability-a5e", + "parent": "enhance-ability-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -7299,7 +7299,7 @@ "model": "api_v2.spellcastingoption", "pk": 1081, "fields": { - "spell": "enhance-ability-a5e", + "parent": "enhance-ability-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -7311,7 +7311,7 @@ "model": "api_v2.spellcastingoption", "pk": 1082, "fields": { - "spell": "enhance-ability-a5e", + "parent": "enhance-ability-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -7323,7 +7323,7 @@ "model": "api_v2.spellcastingoption", "pk": 1083, "fields": { - "spell": "enhance-ability-a5e", + "parent": "enhance-ability-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -7335,7 +7335,7 @@ "model": "api_v2.spellcastingoption", "pk": 1084, "fields": { - "spell": "enhance-ability-a5e", + "parent": "enhance-ability-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -7347,7 +7347,7 @@ "model": "api_v2.spellcastingoption", "pk": 1085, "fields": { - "spell": "enhance-ability-a5e", + "parent": "enhance-ability-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -7359,7 +7359,7 @@ "model": "api_v2.spellcastingoption", "pk": 1086, "fields": { - "spell": "enhance-ability-a5e", + "parent": "enhance-ability-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -7371,7 +7371,7 @@ "model": "api_v2.spellcastingoption", "pk": 1087, "fields": { - "spell": "enlargereduce-a5e", + "parent": "enlargereduce-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7383,7 +7383,7 @@ "model": "api_v2.spellcastingoption", "pk": 1089, "fields": { - "spell": "enlargereduce-a5e", + "parent": "enlargereduce-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -7395,7 +7395,7 @@ "model": "api_v2.spellcastingoption", "pk": 1090, "fields": { - "spell": "enlargereduce-a5e", + "parent": "enlargereduce-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -7407,7 +7407,7 @@ "model": "api_v2.spellcastingoption", "pk": 1091, "fields": { - "spell": "enlargereduce-a5e", + "parent": "enlargereduce-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -7419,7 +7419,7 @@ "model": "api_v2.spellcastingoption", "pk": 1092, "fields": { - "spell": "enlargereduce-a5e", + "parent": "enlargereduce-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -7431,7 +7431,7 @@ "model": "api_v2.spellcastingoption", "pk": 1093, "fields": { - "spell": "enlargereduce-a5e", + "parent": "enlargereduce-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -7443,7 +7443,7 @@ "model": "api_v2.spellcastingoption", "pk": 1094, "fields": { - "spell": "enlargereduce-a5e", + "parent": "enlargereduce-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -7455,7 +7455,7 @@ "model": "api_v2.spellcastingoption", "pk": 1095, "fields": { - "spell": "enlargereduce-a5e", + "parent": "enlargereduce-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -7467,7 +7467,7 @@ "model": "api_v2.spellcastingoption", "pk": 1096, "fields": { - "spell": "enrage-architecture-a5e", + "parent": "enrage-architecture-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7479,7 +7479,7 @@ "model": "api_v2.spellcastingoption", "pk": 1097, "fields": { - "spell": "entangle-a5e", + "parent": "entangle-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7491,7 +7491,7 @@ "model": "api_v2.spellcastingoption", "pk": 1098, "fields": { - "spell": "enthrall-a5e", + "parent": "enthrall-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7503,7 +7503,7 @@ "model": "api_v2.spellcastingoption", "pk": 1099, "fields": { - "spell": "etherealness-a5e", + "parent": "etherealness-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7515,7 +7515,7 @@ "model": "api_v2.spellcastingoption", "pk": 1101, "fields": { - "spell": "etherealness-a5e", + "parent": "etherealness-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -7527,7 +7527,7 @@ "model": "api_v2.spellcastingoption", "pk": 1102, "fields": { - "spell": "etherealness-a5e", + "parent": "etherealness-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -7539,7 +7539,7 @@ "model": "api_v2.spellcastingoption", "pk": 1103, "fields": { - "spell": "expeditious-retreat-a5e", + "parent": "expeditious-retreat-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7551,7 +7551,7 @@ "model": "api_v2.spellcastingoption", "pk": 1105, "fields": { - "spell": "expeditious-retreat-a5e", + "parent": "expeditious-retreat-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -7563,7 +7563,7 @@ "model": "api_v2.spellcastingoption", "pk": 1106, "fields": { - "spell": "expeditious-retreat-a5e", + "parent": "expeditious-retreat-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -7575,7 +7575,7 @@ "model": "api_v2.spellcastingoption", "pk": 1107, "fields": { - "spell": "expeditious-retreat-a5e", + "parent": "expeditious-retreat-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -7587,7 +7587,7 @@ "model": "api_v2.spellcastingoption", "pk": 1108, "fields": { - "spell": "expeditious-retreat-a5e", + "parent": "expeditious-retreat-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -7599,7 +7599,7 @@ "model": "api_v2.spellcastingoption", "pk": 1109, "fields": { - "spell": "expeditious-retreat-a5e", + "parent": "expeditious-retreat-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -7611,7 +7611,7 @@ "model": "api_v2.spellcastingoption", "pk": 1110, "fields": { - "spell": "expeditious-retreat-a5e", + "parent": "expeditious-retreat-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -7623,7 +7623,7 @@ "model": "api_v2.spellcastingoption", "pk": 1111, "fields": { - "spell": "expeditious-retreat-a5e", + "parent": "expeditious-retreat-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -7635,7 +7635,7 @@ "model": "api_v2.spellcastingoption", "pk": 1112, "fields": { - "spell": "expeditious-retreat-a5e", + "parent": "expeditious-retreat-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -7647,7 +7647,7 @@ "model": "api_v2.spellcastingoption", "pk": 1113, "fields": { - "spell": "eyebite-a5e", + "parent": "eyebite-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7659,7 +7659,7 @@ "model": "api_v2.spellcastingoption", "pk": 1114, "fields": { - "spell": "fabricate-a5e", + "parent": "fabricate-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7671,7 +7671,7 @@ "model": "api_v2.spellcastingoption", "pk": 1115, "fields": { - "spell": "faerie-fire-a5e", + "parent": "faerie-fire-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7683,7 +7683,7 @@ "model": "api_v2.spellcastingoption", "pk": 1116, "fields": { - "spell": "faithful-hound-a5e", + "parent": "faithful-hound-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7695,7 +7695,7 @@ "model": "api_v2.spellcastingoption", "pk": 1117, "fields": { - "spell": "false-life-a5e", + "parent": "false-life-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7707,7 +7707,7 @@ "model": "api_v2.spellcastingoption", "pk": 1119, "fields": { - "spell": "false-life-a5e", + "parent": "false-life-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -7719,7 +7719,7 @@ "model": "api_v2.spellcastingoption", "pk": 1120, "fields": { - "spell": "false-life-a5e", + "parent": "false-life-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -7731,7 +7731,7 @@ "model": "api_v2.spellcastingoption", "pk": 1121, "fields": { - "spell": "false-life-a5e", + "parent": "false-life-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -7743,7 +7743,7 @@ "model": "api_v2.spellcastingoption", "pk": 1122, "fields": { - "spell": "false-life-a5e", + "parent": "false-life-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -7755,7 +7755,7 @@ "model": "api_v2.spellcastingoption", "pk": 1123, "fields": { - "spell": "false-life-a5e", + "parent": "false-life-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -7767,7 +7767,7 @@ "model": "api_v2.spellcastingoption", "pk": 1124, "fields": { - "spell": "false-life-a5e", + "parent": "false-life-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -7779,7 +7779,7 @@ "model": "api_v2.spellcastingoption", "pk": 1125, "fields": { - "spell": "false-life-a5e", + "parent": "false-life-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -7791,7 +7791,7 @@ "model": "api_v2.spellcastingoption", "pk": 1126, "fields": { - "spell": "false-life-a5e", + "parent": "false-life-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -7803,7 +7803,7 @@ "model": "api_v2.spellcastingoption", "pk": 1127, "fields": { - "spell": "fear-a5e", + "parent": "fear-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7815,7 +7815,7 @@ "model": "api_v2.spellcastingoption", "pk": 1128, "fields": { - "spell": "feather-fall-a5e", + "parent": "feather-fall-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7827,7 +7827,7 @@ "model": "api_v2.spellcastingoption", "pk": 1130, "fields": { - "spell": "feather-fall-a5e", + "parent": "feather-fall-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -7839,7 +7839,7 @@ "model": "api_v2.spellcastingoption", "pk": 1131, "fields": { - "spell": "feather-fall-a5e", + "parent": "feather-fall-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -7851,7 +7851,7 @@ "model": "api_v2.spellcastingoption", "pk": 1132, "fields": { - "spell": "feather-fall-a5e", + "parent": "feather-fall-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -7863,7 +7863,7 @@ "model": "api_v2.spellcastingoption", "pk": 1133, "fields": { - "spell": "feather-fall-a5e", + "parent": "feather-fall-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -7875,7 +7875,7 @@ "model": "api_v2.spellcastingoption", "pk": 1134, "fields": { - "spell": "feather-fall-a5e", + "parent": "feather-fall-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -7887,7 +7887,7 @@ "model": "api_v2.spellcastingoption", "pk": 1135, "fields": { - "spell": "feather-fall-a5e", + "parent": "feather-fall-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -7899,7 +7899,7 @@ "model": "api_v2.spellcastingoption", "pk": 1136, "fields": { - "spell": "feather-fall-a5e", + "parent": "feather-fall-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -7911,7 +7911,7 @@ "model": "api_v2.spellcastingoption", "pk": 1137, "fields": { - "spell": "feather-fall-a5e", + "parent": "feather-fall-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -7923,7 +7923,7 @@ "model": "api_v2.spellcastingoption", "pk": 1138, "fields": { - "spell": "feeblemind-a5e", + "parent": "feeblemind-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7935,7 +7935,7 @@ "model": "api_v2.spellcastingoption", "pk": 1139, "fields": { - "spell": "find-familiar-a5e", + "parent": "find-familiar-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7947,7 +7947,7 @@ "model": "api_v2.spellcastingoption", "pk": 1140, "fields": { - "spell": "find-familiar-a5e", + "parent": "find-familiar-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -7959,7 +7959,7 @@ "model": "api_v2.spellcastingoption", "pk": 1141, "fields": { - "spell": "find-steed-a5e", + "parent": "find-steed-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -7971,7 +7971,7 @@ "model": "api_v2.spellcastingoption", "pk": 1143, "fields": { - "spell": "find-steed-a5e", + "parent": "find-steed-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -7983,7 +7983,7 @@ "model": "api_v2.spellcastingoption", "pk": 1144, "fields": { - "spell": "find-steed-a5e", + "parent": "find-steed-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -7995,7 +7995,7 @@ "model": "api_v2.spellcastingoption", "pk": 1145, "fields": { - "spell": "find-steed-a5e", + "parent": "find-steed-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -8007,7 +8007,7 @@ "model": "api_v2.spellcastingoption", "pk": 1146, "fields": { - "spell": "find-steed-a5e", + "parent": "find-steed-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8019,7 +8019,7 @@ "model": "api_v2.spellcastingoption", "pk": 1147, "fields": { - "spell": "find-steed-a5e", + "parent": "find-steed-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8031,7 +8031,7 @@ "model": "api_v2.spellcastingoption", "pk": 1148, "fields": { - "spell": "find-steed-a5e", + "parent": "find-steed-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8043,7 +8043,7 @@ "model": "api_v2.spellcastingoption", "pk": 1149, "fields": { - "spell": "find-steed-a5e", + "parent": "find-steed-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8055,7 +8055,7 @@ "model": "api_v2.spellcastingoption", "pk": 1150, "fields": { - "spell": "find-the-path-a5e", + "parent": "find-the-path-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -8067,7 +8067,7 @@ "model": "api_v2.spellcastingoption", "pk": 1151, "fields": { - "spell": "find-traps-a5e", + "parent": "find-traps-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -8079,7 +8079,7 @@ "model": "api_v2.spellcastingoption", "pk": 1152, "fields": { - "spell": "finger-of-death-a5e", + "parent": "finger-of-death-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -8091,7 +8091,7 @@ "model": "api_v2.spellcastingoption", "pk": 1154, "fields": { - "spell": "finger-of-death-a5e", + "parent": "finger-of-death-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8103,7 +8103,7 @@ "model": "api_v2.spellcastingoption", "pk": 1155, "fields": { - "spell": "finger-of-death-a5e", + "parent": "finger-of-death-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8115,7 +8115,7 @@ "model": "api_v2.spellcastingoption", "pk": 1156, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -8127,7 +8127,7 @@ "model": "api_v2.spellcastingoption", "pk": 1157, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_1", "damage_roll": "", "target_count": null, @@ -8139,7 +8139,7 @@ "model": "api_v2.spellcastingoption", "pk": 1158, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_2", "damage_roll": "", "target_count": null, @@ -8151,7 +8151,7 @@ "model": "api_v2.spellcastingoption", "pk": 1159, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_3", "damage_roll": "", "target_count": null, @@ -8163,7 +8163,7 @@ "model": "api_v2.spellcastingoption", "pk": 1160, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_4", "damage_roll": "", "target_count": null, @@ -8175,7 +8175,7 @@ "model": "api_v2.spellcastingoption", "pk": 1161, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_5", "damage_roll": "2d10", "target_count": null, @@ -8187,7 +8187,7 @@ "model": "api_v2.spellcastingoption", "pk": 1162, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_6", "damage_roll": "2d10", "target_count": null, @@ -8199,7 +8199,7 @@ "model": "api_v2.spellcastingoption", "pk": 1163, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_7", "damage_roll": "2d10", "target_count": null, @@ -8211,7 +8211,7 @@ "model": "api_v2.spellcastingoption", "pk": 1164, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_8", "damage_roll": "2d10", "target_count": null, @@ -8223,7 +8223,7 @@ "model": "api_v2.spellcastingoption", "pk": 1165, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_9", "damage_roll": "2d10", "target_count": null, @@ -8235,7 +8235,7 @@ "model": "api_v2.spellcastingoption", "pk": 1166, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_10", "damage_roll": "2d10", "target_count": null, @@ -8247,7 +8247,7 @@ "model": "api_v2.spellcastingoption", "pk": 1167, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_11", "damage_roll": "3d10", "target_count": null, @@ -8259,7 +8259,7 @@ "model": "api_v2.spellcastingoption", "pk": 1168, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_12", "damage_roll": "3d10", "target_count": null, @@ -8271,7 +8271,7 @@ "model": "api_v2.spellcastingoption", "pk": 1169, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_13", "damage_roll": "3d10", "target_count": null, @@ -8283,7 +8283,7 @@ "model": "api_v2.spellcastingoption", "pk": 1170, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_14", "damage_roll": "3d10", "target_count": null, @@ -8295,7 +8295,7 @@ "model": "api_v2.spellcastingoption", "pk": 1171, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_15", "damage_roll": "3d10", "target_count": null, @@ -8307,7 +8307,7 @@ "model": "api_v2.spellcastingoption", "pk": 1172, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_16", "damage_roll": "3d10", "target_count": null, @@ -8319,7 +8319,7 @@ "model": "api_v2.spellcastingoption", "pk": 1173, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_17", "damage_roll": "4d10", "target_count": null, @@ -8331,7 +8331,7 @@ "model": "api_v2.spellcastingoption", "pk": 1174, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_18", "damage_roll": "4d10", "target_count": null, @@ -8343,7 +8343,7 @@ "model": "api_v2.spellcastingoption", "pk": 1175, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_19", "damage_roll": "4d10", "target_count": null, @@ -8355,7 +8355,7 @@ "model": "api_v2.spellcastingoption", "pk": 1176, "fields": { - "spell": "fire-bolt-a5e", + "parent": "fire-bolt-a5e", "type": "player_level_20", "damage_roll": "4d10", "target_count": null, @@ -8367,7 +8367,7 @@ "model": "api_v2.spellcastingoption", "pk": 1177, "fields": { - "spell": "fire-shield-a5e", + "parent": "fire-shield-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -8379,7 +8379,7 @@ "model": "api_v2.spellcastingoption", "pk": 1179, "fields": { - "spell": "fire-shield-a5e", + "parent": "fire-shield-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -8391,7 +8391,7 @@ "model": "api_v2.spellcastingoption", "pk": 1180, "fields": { - "spell": "fire-shield-a5e", + "parent": "fire-shield-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8403,7 +8403,7 @@ "model": "api_v2.spellcastingoption", "pk": 1181, "fields": { - "spell": "fire-shield-a5e", + "parent": "fire-shield-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8415,7 +8415,7 @@ "model": "api_v2.spellcastingoption", "pk": 1182, "fields": { - "spell": "fire-shield-a5e", + "parent": "fire-shield-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8427,7 +8427,7 @@ "model": "api_v2.spellcastingoption", "pk": 1183, "fields": { - "spell": "fire-shield-a5e", + "parent": "fire-shield-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8439,7 +8439,7 @@ "model": "api_v2.spellcastingoption", "pk": 1184, "fields": { - "spell": "fire-storm-a5e", + "parent": "fire-storm-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -8451,7 +8451,7 @@ "model": "api_v2.spellcastingoption", "pk": 1186, "fields": { - "spell": "fire-storm-a5e", + "parent": "fire-storm-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8463,7 +8463,7 @@ "model": "api_v2.spellcastingoption", "pk": 1187, "fields": { - "spell": "fire-storm-a5e", + "parent": "fire-storm-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8475,7 +8475,7 @@ "model": "api_v2.spellcastingoption", "pk": 1188, "fields": { - "spell": "fireball-a5e", + "parent": "fireball-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -8487,7 +8487,7 @@ "model": "api_v2.spellcastingoption", "pk": 1190, "fields": { - "spell": "fireball-a5e", + "parent": "fireball-a5e", "type": "slot_level_4", "damage_roll": "7d6", "target_count": null, @@ -8499,7 +8499,7 @@ "model": "api_v2.spellcastingoption", "pk": 1191, "fields": { - "spell": "fireball-a5e", + "parent": "fireball-a5e", "type": "slot_level_5", "damage_roll": "8d6", "target_count": null, @@ -8511,7 +8511,7 @@ "model": "api_v2.spellcastingoption", "pk": 1192, "fields": { - "spell": "fireball-a5e", + "parent": "fireball-a5e", "type": "slot_level_6", "damage_roll": "9d6", "target_count": null, @@ -8523,7 +8523,7 @@ "model": "api_v2.spellcastingoption", "pk": 1193, "fields": { - "spell": "fireball-a5e", + "parent": "fireball-a5e", "type": "slot_level_7", "damage_roll": "10d6", "target_count": null, @@ -8535,7 +8535,7 @@ "model": "api_v2.spellcastingoption", "pk": 1194, "fields": { - "spell": "fireball-a5e", + "parent": "fireball-a5e", "type": "slot_level_8", "damage_roll": "11d6", "target_count": null, @@ -8547,7 +8547,7 @@ "model": "api_v2.spellcastingoption", "pk": 1195, "fields": { - "spell": "fireball-a5e", + "parent": "fireball-a5e", "type": "slot_level_9", "damage_roll": "12d6", "target_count": null, @@ -8559,7 +8559,7 @@ "model": "api_v2.spellcastingoption", "pk": 1196, "fields": { - "spell": "flame-blade-a5e", + "parent": "flame-blade-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -8571,7 +8571,7 @@ "model": "api_v2.spellcastingoption", "pk": 1198, "fields": { - "spell": "flame-blade-a5e", + "parent": "flame-blade-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -8583,7 +8583,7 @@ "model": "api_v2.spellcastingoption", "pk": 1199, "fields": { - "spell": "flame-blade-a5e", + "parent": "flame-blade-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -8595,7 +8595,7 @@ "model": "api_v2.spellcastingoption", "pk": 1200, "fields": { - "spell": "flame-blade-a5e", + "parent": "flame-blade-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -8607,7 +8607,7 @@ "model": "api_v2.spellcastingoption", "pk": 1201, "fields": { - "spell": "flame-blade-a5e", + "parent": "flame-blade-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8619,7 +8619,7 @@ "model": "api_v2.spellcastingoption", "pk": 1202, "fields": { - "spell": "flame-blade-a5e", + "parent": "flame-blade-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8631,7 +8631,7 @@ "model": "api_v2.spellcastingoption", "pk": 1203, "fields": { - "spell": "flame-blade-a5e", + "parent": "flame-blade-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8643,7 +8643,7 @@ "model": "api_v2.spellcastingoption", "pk": 1204, "fields": { - "spell": "flame-blade-a5e", + "parent": "flame-blade-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8655,7 +8655,7 @@ "model": "api_v2.spellcastingoption", "pk": 1205, "fields": { - "spell": "flame-strike-a5e", + "parent": "flame-strike-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -8667,7 +8667,7 @@ "model": "api_v2.spellcastingoption", "pk": 1207, "fields": { - "spell": "flame-strike-a5e", + "parent": "flame-strike-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8679,7 +8679,7 @@ "model": "api_v2.spellcastingoption", "pk": 1208, "fields": { - "spell": "flame-strike-a5e", + "parent": "flame-strike-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8691,7 +8691,7 @@ "model": "api_v2.spellcastingoption", "pk": 1209, "fields": { - "spell": "flame-strike-a5e", + "parent": "flame-strike-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8703,7 +8703,7 @@ "model": "api_v2.spellcastingoption", "pk": 1210, "fields": { - "spell": "flame-strike-a5e", + "parent": "flame-strike-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8715,7 +8715,7 @@ "model": "api_v2.spellcastingoption", "pk": 1211, "fields": { - "spell": "flaming-sphere-a5e", + "parent": "flaming-sphere-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -8727,7 +8727,7 @@ "model": "api_v2.spellcastingoption", "pk": 1213, "fields": { - "spell": "flaming-sphere-a5e", + "parent": "flaming-sphere-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -8739,7 +8739,7 @@ "model": "api_v2.spellcastingoption", "pk": 1214, "fields": { - "spell": "flaming-sphere-a5e", + "parent": "flaming-sphere-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -8751,7 +8751,7 @@ "model": "api_v2.spellcastingoption", "pk": 1215, "fields": { - "spell": "flaming-sphere-a5e", + "parent": "flaming-sphere-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -8763,7 +8763,7 @@ "model": "api_v2.spellcastingoption", "pk": 1216, "fields": { - "spell": "flaming-sphere-a5e", + "parent": "flaming-sphere-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8775,7 +8775,7 @@ "model": "api_v2.spellcastingoption", "pk": 1217, "fields": { - "spell": "flaming-sphere-a5e", + "parent": "flaming-sphere-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8787,7 +8787,7 @@ "model": "api_v2.spellcastingoption", "pk": 1218, "fields": { - "spell": "flaming-sphere-a5e", + "parent": "flaming-sphere-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8799,7 +8799,7 @@ "model": "api_v2.spellcastingoption", "pk": 1219, "fields": { - "spell": "flaming-sphere-a5e", + "parent": "flaming-sphere-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8811,7 +8811,7 @@ "model": "api_v2.spellcastingoption", "pk": 1220, "fields": { - "spell": "flesh-to-stone-a5e", + "parent": "flesh-to-stone-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -8823,7 +8823,7 @@ "model": "api_v2.spellcastingoption", "pk": 1222, "fields": { - "spell": "flesh-to-stone-a5e", + "parent": "flesh-to-stone-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 2, @@ -8835,7 +8835,7 @@ "model": "api_v2.spellcastingoption", "pk": 1223, "fields": { - "spell": "flesh-to-stone-a5e", + "parent": "flesh-to-stone-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 3, @@ -8847,7 +8847,7 @@ "model": "api_v2.spellcastingoption", "pk": 1224, "fields": { - "spell": "flesh-to-stone-a5e", + "parent": "flesh-to-stone-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 4, @@ -8859,7 +8859,7 @@ "model": "api_v2.spellcastingoption", "pk": 1225, "fields": { - "spell": "flex-a5e", + "parent": "flex-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -8871,7 +8871,7 @@ "model": "api_v2.spellcastingoption", "pk": 1227, "fields": { - "spell": "flex-a5e", + "parent": "flex-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -8883,7 +8883,7 @@ "model": "api_v2.spellcastingoption", "pk": 1228, "fields": { - "spell": "flex-a5e", + "parent": "flex-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -8895,7 +8895,7 @@ "model": "api_v2.spellcastingoption", "pk": 1229, "fields": { - "spell": "flex-a5e", + "parent": "flex-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -8907,7 +8907,7 @@ "model": "api_v2.spellcastingoption", "pk": 1230, "fields": { - "spell": "flex-a5e", + "parent": "flex-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -8919,7 +8919,7 @@ "model": "api_v2.spellcastingoption", "pk": 1231, "fields": { - "spell": "flex-a5e", + "parent": "flex-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -8931,7 +8931,7 @@ "model": "api_v2.spellcastingoption", "pk": 1232, "fields": { - "spell": "flex-a5e", + "parent": "flex-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -8943,7 +8943,7 @@ "model": "api_v2.spellcastingoption", "pk": 1233, "fields": { - "spell": "flex-a5e", + "parent": "flex-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -8955,7 +8955,7 @@ "model": "api_v2.spellcastingoption", "pk": 1234, "fields": { - "spell": "floating-disk-a5e", + "parent": "floating-disk-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -8967,7 +8967,7 @@ "model": "api_v2.spellcastingoption", "pk": 1235, "fields": { - "spell": "floating-disk-a5e", + "parent": "floating-disk-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -8979,7 +8979,7 @@ "model": "api_v2.spellcastingoption", "pk": 1237, "fields": { - "spell": "floating-disk-a5e", + "parent": "floating-disk-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -8991,7 +8991,7 @@ "model": "api_v2.spellcastingoption", "pk": 1238, "fields": { - "spell": "floating-disk-a5e", + "parent": "floating-disk-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -9003,7 +9003,7 @@ "model": "api_v2.spellcastingoption", "pk": 1239, "fields": { - "spell": "floating-disk-a5e", + "parent": "floating-disk-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -9015,7 +9015,7 @@ "model": "api_v2.spellcastingoption", "pk": 1240, "fields": { - "spell": "floating-disk-a5e", + "parent": "floating-disk-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9027,7 +9027,7 @@ "model": "api_v2.spellcastingoption", "pk": 1241, "fields": { - "spell": "floating-disk-a5e", + "parent": "floating-disk-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9039,7 +9039,7 @@ "model": "api_v2.spellcastingoption", "pk": 1242, "fields": { - "spell": "floating-disk-a5e", + "parent": "floating-disk-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9051,7 +9051,7 @@ "model": "api_v2.spellcastingoption", "pk": 1243, "fields": { - "spell": "floating-disk-a5e", + "parent": "floating-disk-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9063,7 +9063,7 @@ "model": "api_v2.spellcastingoption", "pk": 1244, "fields": { - "spell": "floating-disk-a5e", + "parent": "floating-disk-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9075,7 +9075,7 @@ "model": "api_v2.spellcastingoption", "pk": 1245, "fields": { - "spell": "fly-a5e", + "parent": "fly-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9087,7 +9087,7 @@ "model": "api_v2.spellcastingoption", "pk": 1247, "fields": { - "spell": "fly-a5e", + "parent": "fly-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -9099,7 +9099,7 @@ "model": "api_v2.spellcastingoption", "pk": 1248, "fields": { - "spell": "fly-a5e", + "parent": "fly-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -9111,7 +9111,7 @@ "model": "api_v2.spellcastingoption", "pk": 1249, "fields": { - "spell": "fly-a5e", + "parent": "fly-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -9123,7 +9123,7 @@ "model": "api_v2.spellcastingoption", "pk": 1250, "fields": { - "spell": "fly-a5e", + "parent": "fly-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -9135,7 +9135,7 @@ "model": "api_v2.spellcastingoption", "pk": 1251, "fields": { - "spell": "fly-a5e", + "parent": "fly-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -9147,7 +9147,7 @@ "model": "api_v2.spellcastingoption", "pk": 1252, "fields": { - "spell": "fly-a5e", + "parent": "fly-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -9159,7 +9159,7 @@ "model": "api_v2.spellcastingoption", "pk": 1253, "fields": { - "spell": "fog-cloud-a5e", + "parent": "fog-cloud-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9171,7 +9171,7 @@ "model": "api_v2.spellcastingoption", "pk": 1255, "fields": { - "spell": "fog-cloud-a5e", + "parent": "fog-cloud-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -9183,7 +9183,7 @@ "model": "api_v2.spellcastingoption", "pk": 1256, "fields": { - "spell": "fog-cloud-a5e", + "parent": "fog-cloud-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -9195,7 +9195,7 @@ "model": "api_v2.spellcastingoption", "pk": 1257, "fields": { - "spell": "fog-cloud-a5e", + "parent": "fog-cloud-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -9207,7 +9207,7 @@ "model": "api_v2.spellcastingoption", "pk": 1258, "fields": { - "spell": "fog-cloud-a5e", + "parent": "fog-cloud-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9219,7 +9219,7 @@ "model": "api_v2.spellcastingoption", "pk": 1259, "fields": { - "spell": "fog-cloud-a5e", + "parent": "fog-cloud-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9231,7 +9231,7 @@ "model": "api_v2.spellcastingoption", "pk": 1260, "fields": { - "spell": "fog-cloud-a5e", + "parent": "fog-cloud-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9243,7 +9243,7 @@ "model": "api_v2.spellcastingoption", "pk": 1261, "fields": { - "spell": "fog-cloud-a5e", + "parent": "fog-cloud-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9255,7 +9255,7 @@ "model": "api_v2.spellcastingoption", "pk": 1262, "fields": { - "spell": "fog-cloud-a5e", + "parent": "fog-cloud-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9267,7 +9267,7 @@ "model": "api_v2.spellcastingoption", "pk": 1263, "fields": { - "spell": "forbiddance-a5e", + "parent": "forbiddance-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9279,7 +9279,7 @@ "model": "api_v2.spellcastingoption", "pk": 1264, "fields": { - "spell": "forbiddance-a5e", + "parent": "forbiddance-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -9291,7 +9291,7 @@ "model": "api_v2.spellcastingoption", "pk": 1265, "fields": { - "spell": "force-of-will-a5e", + "parent": "force-of-will-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9303,7 +9303,7 @@ "model": "api_v2.spellcastingoption", "pk": 1267, "fields": { - "spell": "force-of-will-a5e", + "parent": "force-of-will-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -9315,7 +9315,7 @@ "model": "api_v2.spellcastingoption", "pk": 1268, "fields": { - "spell": "force-of-will-a5e", + "parent": "force-of-will-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -9327,7 +9327,7 @@ "model": "api_v2.spellcastingoption", "pk": 1269, "fields": { - "spell": "force-of-will-a5e", + "parent": "force-of-will-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9339,7 +9339,7 @@ "model": "api_v2.spellcastingoption", "pk": 1270, "fields": { - "spell": "force-of-will-a5e", + "parent": "force-of-will-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9351,7 +9351,7 @@ "model": "api_v2.spellcastingoption", "pk": 1271, "fields": { - "spell": "force-of-will-a5e", + "parent": "force-of-will-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9363,7 +9363,7 @@ "model": "api_v2.spellcastingoption", "pk": 1272, "fields": { - "spell": "force-of-will-a5e", + "parent": "force-of-will-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9375,7 +9375,7 @@ "model": "api_v2.spellcastingoption", "pk": 1273, "fields": { - "spell": "force-of-will-a5e", + "parent": "force-of-will-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9387,7 +9387,7 @@ "model": "api_v2.spellcastingoption", "pk": 1274, "fields": { - "spell": "force-punch-a5e", + "parent": "force-punch-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9399,7 +9399,7 @@ "model": "api_v2.spellcastingoption", "pk": 1276, "fields": { - "spell": "force-punch-a5e", + "parent": "force-punch-a5e", "type": "slot_level_2", "damage_roll": "4d8", "target_count": null, @@ -9411,7 +9411,7 @@ "model": "api_v2.spellcastingoption", "pk": 1277, "fields": { - "spell": "force-punch-a5e", + "parent": "force-punch-a5e", "type": "slot_level_3", "damage_roll": "5d8", "target_count": null, @@ -9423,7 +9423,7 @@ "model": "api_v2.spellcastingoption", "pk": 1278, "fields": { - "spell": "force-punch-a5e", + "parent": "force-punch-a5e", "type": "slot_level_4", "damage_roll": "6d8", "target_count": null, @@ -9435,7 +9435,7 @@ "model": "api_v2.spellcastingoption", "pk": 1279, "fields": { - "spell": "force-punch-a5e", + "parent": "force-punch-a5e", "type": "slot_level_5", "damage_roll": "7d8", "target_count": null, @@ -9447,7 +9447,7 @@ "model": "api_v2.spellcastingoption", "pk": 1280, "fields": { - "spell": "force-punch-a5e", + "parent": "force-punch-a5e", "type": "slot_level_6", "damage_roll": "8d8", "target_count": null, @@ -9459,7 +9459,7 @@ "model": "api_v2.spellcastingoption", "pk": 1281, "fields": { - "spell": "force-punch-a5e", + "parent": "force-punch-a5e", "type": "slot_level_7", "damage_roll": "9d8", "target_count": null, @@ -9471,7 +9471,7 @@ "model": "api_v2.spellcastingoption", "pk": 1282, "fields": { - "spell": "force-punch-a5e", + "parent": "force-punch-a5e", "type": "slot_level_8", "damage_roll": "10d8", "target_count": null, @@ -9483,7 +9483,7 @@ "model": "api_v2.spellcastingoption", "pk": 1283, "fields": { - "spell": "force-punch-a5e", + "parent": "force-punch-a5e", "type": "slot_level_9", "damage_roll": "11d8", "target_count": null, @@ -9495,7 +9495,7 @@ "model": "api_v2.spellcastingoption", "pk": 1284, "fields": { - "spell": "forcecage-a5e", + "parent": "forcecage-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9507,7 +9507,7 @@ "model": "api_v2.spellcastingoption", "pk": 1286, "fields": { - "spell": "forcecage-a5e", + "parent": "forcecage-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9519,7 +9519,7 @@ "model": "api_v2.spellcastingoption", "pk": 1287, "fields": { - "spell": "forcecage-a5e", + "parent": "forcecage-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9531,7 +9531,7 @@ "model": "api_v2.spellcastingoption", "pk": 1288, "fields": { - "spell": "foresight-a5e", + "parent": "foresight-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9543,7 +9543,7 @@ "model": "api_v2.spellcastingoption", "pk": 1289, "fields": { - "spell": "forest-army-a5e", + "parent": "forest-army-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9555,7 +9555,7 @@ "model": "api_v2.spellcastingoption", "pk": 1290, "fields": { - "spell": "freedom-of-movement-a5e", + "parent": "freedom-of-movement-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9567,7 +9567,7 @@ "model": "api_v2.spellcastingoption", "pk": 1292, "fields": { - "spell": "freedom-of-movement-a5e", + "parent": "freedom-of-movement-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9579,7 +9579,7 @@ "model": "api_v2.spellcastingoption", "pk": 1293, "fields": { - "spell": "freedom-of-movement-a5e", + "parent": "freedom-of-movement-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9591,7 +9591,7 @@ "model": "api_v2.spellcastingoption", "pk": 1294, "fields": { - "spell": "freedom-of-movement-a5e", + "parent": "freedom-of-movement-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9603,7 +9603,7 @@ "model": "api_v2.spellcastingoption", "pk": 1295, "fields": { - "spell": "freedom-of-movement-a5e", + "parent": "freedom-of-movement-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9615,7 +9615,7 @@ "model": "api_v2.spellcastingoption", "pk": 1296, "fields": { - "spell": "freedom-of-movement-a5e", + "parent": "freedom-of-movement-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9627,7 +9627,7 @@ "model": "api_v2.spellcastingoption", "pk": 1297, "fields": { - "spell": "freezing-sphere-a5e", + "parent": "freezing-sphere-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9639,7 +9639,7 @@ "model": "api_v2.spellcastingoption", "pk": 1299, "fields": { - "spell": "freezing-sphere-a5e", + "parent": "freezing-sphere-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9651,7 +9651,7 @@ "model": "api_v2.spellcastingoption", "pk": 1300, "fields": { - "spell": "freezing-sphere-a5e", + "parent": "freezing-sphere-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9663,7 +9663,7 @@ "model": "api_v2.spellcastingoption", "pk": 1301, "fields": { - "spell": "freezing-sphere-a5e", + "parent": "freezing-sphere-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9675,7 +9675,7 @@ "model": "api_v2.spellcastingoption", "pk": 1302, "fields": { - "spell": "friends-a5e", + "parent": "friends-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9687,7 +9687,7 @@ "model": "api_v2.spellcastingoption", "pk": 1303, "fields": { - "spell": "gaseous-form-a5e", + "parent": "gaseous-form-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9699,7 +9699,7 @@ "model": "api_v2.spellcastingoption", "pk": 1305, "fields": { - "spell": "gaseous-form-a5e", + "parent": "gaseous-form-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -9711,7 +9711,7 @@ "model": "api_v2.spellcastingoption", "pk": 1306, "fields": { - "spell": "gaseous-form-a5e", + "parent": "gaseous-form-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9723,7 +9723,7 @@ "model": "api_v2.spellcastingoption", "pk": 1307, "fields": { - "spell": "gaseous-form-a5e", + "parent": "gaseous-form-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9735,7 +9735,7 @@ "model": "api_v2.spellcastingoption", "pk": 1308, "fields": { - "spell": "gaseous-form-a5e", + "parent": "gaseous-form-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9747,7 +9747,7 @@ "model": "api_v2.spellcastingoption", "pk": 1309, "fields": { - "spell": "gaseous-form-a5e", + "parent": "gaseous-form-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9759,7 +9759,7 @@ "model": "api_v2.spellcastingoption", "pk": 1310, "fields": { - "spell": "gaseous-form-a5e", + "parent": "gaseous-form-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9771,7 +9771,7 @@ "model": "api_v2.spellcastingoption", "pk": 1311, "fields": { - "spell": "gate-a5e", + "parent": "gate-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9783,7 +9783,7 @@ "model": "api_v2.spellcastingoption", "pk": 1312, "fields": { - "spell": "geas-a5e", + "parent": "geas-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9795,7 +9795,7 @@ "model": "api_v2.spellcastingoption", "pk": 1314, "fields": { - "spell": "geas-a5e", + "parent": "geas-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9807,7 +9807,7 @@ "model": "api_v2.spellcastingoption", "pk": 1315, "fields": { - "spell": "geas-a5e", + "parent": "geas-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9819,7 +9819,7 @@ "model": "api_v2.spellcastingoption", "pk": 1316, "fields": { - "spell": "geas-a5e", + "parent": "geas-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9831,7 +9831,7 @@ "model": "api_v2.spellcastingoption", "pk": 1317, "fields": { - "spell": "geas-a5e", + "parent": "geas-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9843,7 +9843,7 @@ "model": "api_v2.spellcastingoption", "pk": 1318, "fields": { - "spell": "gentle-repose-a5e", + "parent": "gentle-repose-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9855,7 +9855,7 @@ "model": "api_v2.spellcastingoption", "pk": 1319, "fields": { - "spell": "gentle-repose-a5e", + "parent": "gentle-repose-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -9867,7 +9867,7 @@ "model": "api_v2.spellcastingoption", "pk": 1321, "fields": { - "spell": "gentle-repose-a5e", + "parent": "gentle-repose-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -9879,7 +9879,7 @@ "model": "api_v2.spellcastingoption", "pk": 1322, "fields": { - "spell": "gentle-repose-a5e", + "parent": "gentle-repose-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -9891,7 +9891,7 @@ "model": "api_v2.spellcastingoption", "pk": 1323, "fields": { - "spell": "gentle-repose-a5e", + "parent": "gentle-repose-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9903,7 +9903,7 @@ "model": "api_v2.spellcastingoption", "pk": 1324, "fields": { - "spell": "gentle-repose-a5e", + "parent": "gentle-repose-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9915,7 +9915,7 @@ "model": "api_v2.spellcastingoption", "pk": 1325, "fields": { - "spell": "gentle-repose-a5e", + "parent": "gentle-repose-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9927,7 +9927,7 @@ "model": "api_v2.spellcastingoption", "pk": 1326, "fields": { - "spell": "gentle-repose-a5e", + "parent": "gentle-repose-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9939,7 +9939,7 @@ "model": "api_v2.spellcastingoption", "pk": 1327, "fields": { - "spell": "gentle-repose-a5e", + "parent": "gentle-repose-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9951,7 +9951,7 @@ "model": "api_v2.spellcastingoption", "pk": 1328, "fields": { - "spell": "giant-insect-a5e", + "parent": "giant-insect-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -9963,7 +9963,7 @@ "model": "api_v2.spellcastingoption", "pk": 1330, "fields": { - "spell": "giant-insect-a5e", + "parent": "giant-insect-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9975,7 +9975,7 @@ "model": "api_v2.spellcastingoption", "pk": 1331, "fields": { - "spell": "giant-insect-a5e", + "parent": "giant-insect-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9987,7 +9987,7 @@ "model": "api_v2.spellcastingoption", "pk": 1332, "fields": { - "spell": "giant-insect-a5e", + "parent": "giant-insect-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9999,7 +9999,7 @@ "model": "api_v2.spellcastingoption", "pk": 1333, "fields": { - "spell": "giant-insect-a5e", + "parent": "giant-insect-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10011,7 +10011,7 @@ "model": "api_v2.spellcastingoption", "pk": 1334, "fields": { - "spell": "giant-insect-a5e", + "parent": "giant-insect-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10023,7 +10023,7 @@ "model": "api_v2.spellcastingoption", "pk": 1335, "fields": { - "spell": "glibness-a5e", + "parent": "glibness-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10035,7 +10035,7 @@ "model": "api_v2.spellcastingoption", "pk": 1336, "fields": { - "spell": "globe-of-invulnerability-a5e", + "parent": "globe-of-invulnerability-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10047,7 +10047,7 @@ "model": "api_v2.spellcastingoption", "pk": 1338, "fields": { - "spell": "globe-of-invulnerability-a5e", + "parent": "globe-of-invulnerability-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10059,7 +10059,7 @@ "model": "api_v2.spellcastingoption", "pk": 1339, "fields": { - "spell": "globe-of-invulnerability-a5e", + "parent": "globe-of-invulnerability-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10071,7 +10071,7 @@ "model": "api_v2.spellcastingoption", "pk": 1340, "fields": { - "spell": "globe-of-invulnerability-a5e", + "parent": "globe-of-invulnerability-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10083,7 +10083,7 @@ "model": "api_v2.spellcastingoption", "pk": 1341, "fields": { - "spell": "glyph-of-warding-a5e", + "parent": "glyph-of-warding-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10095,7 +10095,7 @@ "model": "api_v2.spellcastingoption", "pk": 1343, "fields": { - "spell": "glyph-of-warding-a5e", + "parent": "glyph-of-warding-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -10107,7 +10107,7 @@ "model": "api_v2.spellcastingoption", "pk": 1344, "fields": { - "spell": "glyph-of-warding-a5e", + "parent": "glyph-of-warding-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -10119,7 +10119,7 @@ "model": "api_v2.spellcastingoption", "pk": 1345, "fields": { - "spell": "glyph-of-warding-a5e", + "parent": "glyph-of-warding-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -10131,7 +10131,7 @@ "model": "api_v2.spellcastingoption", "pk": 1346, "fields": { - "spell": "glyph-of-warding-a5e", + "parent": "glyph-of-warding-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10143,7 +10143,7 @@ "model": "api_v2.spellcastingoption", "pk": 1347, "fields": { - "spell": "glyph-of-warding-a5e", + "parent": "glyph-of-warding-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10155,7 +10155,7 @@ "model": "api_v2.spellcastingoption", "pk": 1348, "fields": { - "spell": "glyph-of-warding-a5e", + "parent": "glyph-of-warding-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10167,7 +10167,7 @@ "model": "api_v2.spellcastingoption", "pk": 1349, "fields": { - "spell": "goodberry-a5e", + "parent": "goodberry-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10179,7 +10179,7 @@ "model": "api_v2.spellcastingoption", "pk": 1351, "fields": { - "spell": "goodberry-a5e", + "parent": "goodberry-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -10191,7 +10191,7 @@ "model": "api_v2.spellcastingoption", "pk": 1352, "fields": { - "spell": "goodberry-a5e", + "parent": "goodberry-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -10203,7 +10203,7 @@ "model": "api_v2.spellcastingoption", "pk": 1353, "fields": { - "spell": "goodberry-a5e", + "parent": "goodberry-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -10215,7 +10215,7 @@ "model": "api_v2.spellcastingoption", "pk": 1354, "fields": { - "spell": "goodberry-a5e", + "parent": "goodberry-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -10227,7 +10227,7 @@ "model": "api_v2.spellcastingoption", "pk": 1355, "fields": { - "spell": "goodberry-a5e", + "parent": "goodberry-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -10239,7 +10239,7 @@ "model": "api_v2.spellcastingoption", "pk": 1356, "fields": { - "spell": "goodberry-a5e", + "parent": "goodberry-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10251,7 +10251,7 @@ "model": "api_v2.spellcastingoption", "pk": 1357, "fields": { - "spell": "goodberry-a5e", + "parent": "goodberry-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10263,7 +10263,7 @@ "model": "api_v2.spellcastingoption", "pk": 1358, "fields": { - "spell": "goodberry-a5e", + "parent": "goodberry-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10275,7 +10275,7 @@ "model": "api_v2.spellcastingoption", "pk": 1359, "fields": { - "spell": "grapevine-a5e", + "parent": "grapevine-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10287,7 +10287,7 @@ "model": "api_v2.spellcastingoption", "pk": 1360, "fields": { - "spell": "grease-a5e", + "parent": "grease-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10299,7 +10299,7 @@ "model": "api_v2.spellcastingoption", "pk": 1361, "fields": { - "spell": "greater-invisibility-a5e", + "parent": "greater-invisibility-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10311,7 +10311,7 @@ "model": "api_v2.spellcastingoption", "pk": 1362, "fields": { - "spell": "greater-restoration-a5e", + "parent": "greater-restoration-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10323,7 +10323,7 @@ "model": "api_v2.spellcastingoption", "pk": 1363, "fields": { - "spell": "guardian-of-faith-a5e", + "parent": "guardian-of-faith-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10335,7 +10335,7 @@ "model": "api_v2.spellcastingoption", "pk": 1364, "fields": { - "spell": "guards-and-wards-a5e", + "parent": "guards-and-wards-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10347,7 +10347,7 @@ "model": "api_v2.spellcastingoption", "pk": 1365, "fields": { - "spell": "guidance-a5e", + "parent": "guidance-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10359,7 +10359,7 @@ "model": "api_v2.spellcastingoption", "pk": 1366, "fields": { - "spell": "guiding-bolt-a5e", + "parent": "guiding-bolt-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10371,7 +10371,7 @@ "model": "api_v2.spellcastingoption", "pk": 1368, "fields": { - "spell": "guiding-bolt-a5e", + "parent": "guiding-bolt-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -10383,7 +10383,7 @@ "model": "api_v2.spellcastingoption", "pk": 1369, "fields": { - "spell": "guiding-bolt-a5e", + "parent": "guiding-bolt-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -10395,7 +10395,7 @@ "model": "api_v2.spellcastingoption", "pk": 1370, "fields": { - "spell": "guiding-bolt-a5e", + "parent": "guiding-bolt-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -10407,7 +10407,7 @@ "model": "api_v2.spellcastingoption", "pk": 1371, "fields": { - "spell": "guiding-bolt-a5e", + "parent": "guiding-bolt-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -10419,7 +10419,7 @@ "model": "api_v2.spellcastingoption", "pk": 1372, "fields": { - "spell": "guiding-bolt-a5e", + "parent": "guiding-bolt-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -10431,7 +10431,7 @@ "model": "api_v2.spellcastingoption", "pk": 1373, "fields": { - "spell": "guiding-bolt-a5e", + "parent": "guiding-bolt-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10443,7 +10443,7 @@ "model": "api_v2.spellcastingoption", "pk": 1374, "fields": { - "spell": "guiding-bolt-a5e", + "parent": "guiding-bolt-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10455,7 +10455,7 @@ "model": "api_v2.spellcastingoption", "pk": 1375, "fields": { - "spell": "guiding-bolt-a5e", + "parent": "guiding-bolt-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10467,7 +10467,7 @@ "model": "api_v2.spellcastingoption", "pk": 1376, "fields": { - "spell": "gust-of-wind-a5e", + "parent": "gust-of-wind-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10479,7 +10479,7 @@ "model": "api_v2.spellcastingoption", "pk": 1377, "fields": { - "spell": "hallow-a5e", + "parent": "hallow-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10491,7 +10491,7 @@ "model": "api_v2.spellcastingoption", "pk": 1378, "fields": { - "spell": "hallucinatory-terrain-a5e", + "parent": "hallucinatory-terrain-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10503,7 +10503,7 @@ "model": "api_v2.spellcastingoption", "pk": 1380, "fields": { - "spell": "hallucinatory-terrain-a5e", + "parent": "hallucinatory-terrain-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -10515,7 +10515,7 @@ "model": "api_v2.spellcastingoption", "pk": 1381, "fields": { - "spell": "hallucinatory-terrain-a5e", + "parent": "hallucinatory-terrain-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -10527,7 +10527,7 @@ "model": "api_v2.spellcastingoption", "pk": 1382, "fields": { - "spell": "hallucinatory-terrain-a5e", + "parent": "hallucinatory-terrain-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10539,7 +10539,7 @@ "model": "api_v2.spellcastingoption", "pk": 1383, "fields": { - "spell": "hallucinatory-terrain-a5e", + "parent": "hallucinatory-terrain-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10551,7 +10551,7 @@ "model": "api_v2.spellcastingoption", "pk": 1384, "fields": { - "spell": "hallucinatory-terrain-a5e", + "parent": "hallucinatory-terrain-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10563,7 +10563,7 @@ "model": "api_v2.spellcastingoption", "pk": 1385, "fields": { - "spell": "harm-a5e", + "parent": "harm-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10575,7 +10575,7 @@ "model": "api_v2.spellcastingoption", "pk": 1387, "fields": { - "spell": "harm-a5e", + "parent": "harm-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10587,7 +10587,7 @@ "model": "api_v2.spellcastingoption", "pk": 1388, "fields": { - "spell": "harm-a5e", + "parent": "harm-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10599,7 +10599,7 @@ "model": "api_v2.spellcastingoption", "pk": 1389, "fields": { - "spell": "harm-a5e", + "parent": "harm-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10611,7 +10611,7 @@ "model": "api_v2.spellcastingoption", "pk": 1390, "fields": { - "spell": "harmonic-resonance-a5e", + "parent": "harmonic-resonance-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10623,7 +10623,7 @@ "model": "api_v2.spellcastingoption", "pk": 1391, "fields": { - "spell": "haste-a5e", + "parent": "haste-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10635,7 +10635,7 @@ "model": "api_v2.spellcastingoption", "pk": 1393, "fields": { - "spell": "haste-a5e", + "parent": "haste-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -10647,7 +10647,7 @@ "model": "api_v2.spellcastingoption", "pk": 1394, "fields": { - "spell": "haste-a5e", + "parent": "haste-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -10659,7 +10659,7 @@ "model": "api_v2.spellcastingoption", "pk": 1395, "fields": { - "spell": "haste-a5e", + "parent": "haste-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -10671,7 +10671,7 @@ "model": "api_v2.spellcastingoption", "pk": 1396, "fields": { - "spell": "haste-a5e", + "parent": "haste-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -10683,7 +10683,7 @@ "model": "api_v2.spellcastingoption", "pk": 1397, "fields": { - "spell": "haste-a5e", + "parent": "haste-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -10695,7 +10695,7 @@ "model": "api_v2.spellcastingoption", "pk": 1398, "fields": { - "spell": "haste-a5e", + "parent": "haste-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -10707,7 +10707,7 @@ "model": "api_v2.spellcastingoption", "pk": 1399, "fields": { - "spell": "heal-a5e", + "parent": "heal-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10719,7 +10719,7 @@ "model": "api_v2.spellcastingoption", "pk": 1401, "fields": { - "spell": "heal-a5e", + "parent": "heal-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10731,7 +10731,7 @@ "model": "api_v2.spellcastingoption", "pk": 1402, "fields": { - "spell": "heal-a5e", + "parent": "heal-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10743,7 +10743,7 @@ "model": "api_v2.spellcastingoption", "pk": 1403, "fields": { - "spell": "heal-a5e", + "parent": "heal-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10755,7 +10755,7 @@ "model": "api_v2.spellcastingoption", "pk": 1404, "fields": { - "spell": "healing-word-a5e", + "parent": "healing-word-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10767,7 +10767,7 @@ "model": "api_v2.spellcastingoption", "pk": 1406, "fields": { - "spell": "healing-word-a5e", + "parent": "healing-word-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -10779,7 +10779,7 @@ "model": "api_v2.spellcastingoption", "pk": 1407, "fields": { - "spell": "healing-word-a5e", + "parent": "healing-word-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -10791,7 +10791,7 @@ "model": "api_v2.spellcastingoption", "pk": 1408, "fields": { - "spell": "healing-word-a5e", + "parent": "healing-word-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -10803,7 +10803,7 @@ "model": "api_v2.spellcastingoption", "pk": 1409, "fields": { - "spell": "healing-word-a5e", + "parent": "healing-word-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -10815,7 +10815,7 @@ "model": "api_v2.spellcastingoption", "pk": 1410, "fields": { - "spell": "healing-word-a5e", + "parent": "healing-word-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -10827,7 +10827,7 @@ "model": "api_v2.spellcastingoption", "pk": 1411, "fields": { - "spell": "healing-word-a5e", + "parent": "healing-word-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10839,7 +10839,7 @@ "model": "api_v2.spellcastingoption", "pk": 1412, "fields": { - "spell": "healing-word-a5e", + "parent": "healing-word-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10851,7 +10851,7 @@ "model": "api_v2.spellcastingoption", "pk": 1413, "fields": { - "spell": "healing-word-a5e", + "parent": "healing-word-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10863,7 +10863,7 @@ "model": "api_v2.spellcastingoption", "pk": 1414, "fields": { - "spell": "heart-of-dis-a5e", + "parent": "heart-of-dis-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10875,7 +10875,7 @@ "model": "api_v2.spellcastingoption", "pk": 1415, "fields": { - "spell": "heat-metal-a5e", + "parent": "heat-metal-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10887,7 +10887,7 @@ "model": "api_v2.spellcastingoption", "pk": 1417, "fields": { - "spell": "heat-metal-a5e", + "parent": "heat-metal-a5e", "type": "slot_level_3", "damage_roll": "3d8", "target_count": null, @@ -10899,7 +10899,7 @@ "model": "api_v2.spellcastingoption", "pk": 1418, "fields": { - "spell": "heat-metal-a5e", + "parent": "heat-metal-a5e", "type": "slot_level_4", "damage_roll": "4d8", "target_count": null, @@ -10911,7 +10911,7 @@ "model": "api_v2.spellcastingoption", "pk": 1419, "fields": { - "spell": "heat-metal-a5e", + "parent": "heat-metal-a5e", "type": "slot_level_5", "damage_roll": "5d8", "target_count": null, @@ -10923,7 +10923,7 @@ "model": "api_v2.spellcastingoption", "pk": 1420, "fields": { - "spell": "heat-metal-a5e", + "parent": "heat-metal-a5e", "type": "slot_level_6", "damage_roll": "6d8", "target_count": null, @@ -10935,7 +10935,7 @@ "model": "api_v2.spellcastingoption", "pk": 1421, "fields": { - "spell": "heat-metal-a5e", + "parent": "heat-metal-a5e", "type": "slot_level_7", "damage_roll": "7d8", "target_count": null, @@ -10947,7 +10947,7 @@ "model": "api_v2.spellcastingoption", "pk": 1422, "fields": { - "spell": "heat-metal-a5e", + "parent": "heat-metal-a5e", "type": "slot_level_8", "damage_roll": "8d8", "target_count": null, @@ -10959,7 +10959,7 @@ "model": "api_v2.spellcastingoption", "pk": 1423, "fields": { - "spell": "heat-metal-a5e", + "parent": "heat-metal-a5e", "type": "slot_level_9", "damage_roll": "9d8", "target_count": null, @@ -10971,7 +10971,7 @@ "model": "api_v2.spellcastingoption", "pk": 1424, "fields": { - "spell": "heroes-feast-a5e", + "parent": "heroes-feast-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10983,7 +10983,7 @@ "model": "api_v2.spellcastingoption", "pk": 1425, "fields": { - "spell": "heroism-a5e", + "parent": "heroism-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -10995,7 +10995,7 @@ "model": "api_v2.spellcastingoption", "pk": 1427, "fields": { - "spell": "heroism-a5e", + "parent": "heroism-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -11007,7 +11007,7 @@ "model": "api_v2.spellcastingoption", "pk": 1428, "fields": { - "spell": "heroism-a5e", + "parent": "heroism-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -11019,7 +11019,7 @@ "model": "api_v2.spellcastingoption", "pk": 1429, "fields": { - "spell": "heroism-a5e", + "parent": "heroism-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -11031,7 +11031,7 @@ "model": "api_v2.spellcastingoption", "pk": 1430, "fields": { - "spell": "heroism-a5e", + "parent": "heroism-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -11043,7 +11043,7 @@ "model": "api_v2.spellcastingoption", "pk": 1431, "fields": { - "spell": "heroism-a5e", + "parent": "heroism-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -11055,7 +11055,7 @@ "model": "api_v2.spellcastingoption", "pk": 1432, "fields": { - "spell": "heroism-a5e", + "parent": "heroism-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -11067,7 +11067,7 @@ "model": "api_v2.spellcastingoption", "pk": 1433, "fields": { - "spell": "heroism-a5e", + "parent": "heroism-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -11079,7 +11079,7 @@ "model": "api_v2.spellcastingoption", "pk": 1434, "fields": { - "spell": "heroism-a5e", + "parent": "heroism-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -11091,7 +11091,7 @@ "model": "api_v2.spellcastingoption", "pk": 1435, "fields": { - "spell": "hideous-laughter-a5e", + "parent": "hideous-laughter-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11103,7 +11103,7 @@ "model": "api_v2.spellcastingoption", "pk": 1437, "fields": { - "spell": "hideous-laughter-a5e", + "parent": "hideous-laughter-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -11115,7 +11115,7 @@ "model": "api_v2.spellcastingoption", "pk": 1438, "fields": { - "spell": "hideous-laughter-a5e", + "parent": "hideous-laughter-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -11127,7 +11127,7 @@ "model": "api_v2.spellcastingoption", "pk": 1439, "fields": { - "spell": "hideous-laughter-a5e", + "parent": "hideous-laughter-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -11139,7 +11139,7 @@ "model": "api_v2.spellcastingoption", "pk": 1440, "fields": { - "spell": "hideous-laughter-a5e", + "parent": "hideous-laughter-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -11151,7 +11151,7 @@ "model": "api_v2.spellcastingoption", "pk": 1441, "fields": { - "spell": "hideous-laughter-a5e", + "parent": "hideous-laughter-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11163,7 +11163,7 @@ "model": "api_v2.spellcastingoption", "pk": 1442, "fields": { - "spell": "hideous-laughter-a5e", + "parent": "hideous-laughter-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11175,7 +11175,7 @@ "model": "api_v2.spellcastingoption", "pk": 1443, "fields": { - "spell": "hideous-laughter-a5e", + "parent": "hideous-laughter-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11187,7 +11187,7 @@ "model": "api_v2.spellcastingoption", "pk": 1444, "fields": { - "spell": "hideous-laughter-a5e", + "parent": "hideous-laughter-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11199,7 +11199,7 @@ "model": "api_v2.spellcastingoption", "pk": 1445, "fields": { - "spell": "hold-monster-a5e", + "parent": "hold-monster-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11211,7 +11211,7 @@ "model": "api_v2.spellcastingoption", "pk": 1447, "fields": { - "spell": "hold-monster-a5e", + "parent": "hold-monster-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11223,7 +11223,7 @@ "model": "api_v2.spellcastingoption", "pk": 1448, "fields": { - "spell": "hold-monster-a5e", + "parent": "hold-monster-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11235,7 +11235,7 @@ "model": "api_v2.spellcastingoption", "pk": 1449, "fields": { - "spell": "hold-monster-a5e", + "parent": "hold-monster-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11247,7 +11247,7 @@ "model": "api_v2.spellcastingoption", "pk": 1450, "fields": { - "spell": "hold-monster-a5e", + "parent": "hold-monster-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11259,7 +11259,7 @@ "model": "api_v2.spellcastingoption", "pk": 1451, "fields": { - "spell": "hold-person-a5e", + "parent": "hold-person-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11271,7 +11271,7 @@ "model": "api_v2.spellcastingoption", "pk": 1453, "fields": { - "spell": "hold-person-a5e", + "parent": "hold-person-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -11283,7 +11283,7 @@ "model": "api_v2.spellcastingoption", "pk": 1454, "fields": { - "spell": "hold-person-a5e", + "parent": "hold-person-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -11295,7 +11295,7 @@ "model": "api_v2.spellcastingoption", "pk": 1455, "fields": { - "spell": "hold-person-a5e", + "parent": "hold-person-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -11307,7 +11307,7 @@ "model": "api_v2.spellcastingoption", "pk": 1456, "fields": { - "spell": "hold-person-a5e", + "parent": "hold-person-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11319,7 +11319,7 @@ "model": "api_v2.spellcastingoption", "pk": 1457, "fields": { - "spell": "hold-person-a5e", + "parent": "hold-person-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11331,7 +11331,7 @@ "model": "api_v2.spellcastingoption", "pk": 1458, "fields": { - "spell": "hold-person-a5e", + "parent": "hold-person-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11343,7 +11343,7 @@ "model": "api_v2.spellcastingoption", "pk": 1459, "fields": { - "spell": "hold-person-a5e", + "parent": "hold-person-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11355,7 +11355,7 @@ "model": "api_v2.spellcastingoption", "pk": 1460, "fields": { - "spell": "holy-aura-a5e", + "parent": "holy-aura-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11367,7 +11367,7 @@ "model": "api_v2.spellcastingoption", "pk": 1461, "fields": { - "spell": "hypnotic-pattern-a5e", + "parent": "hypnotic-pattern-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11379,7 +11379,7 @@ "model": "api_v2.spellcastingoption", "pk": 1462, "fields": { - "spell": "ice-storm-a5e", + "parent": "ice-storm-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11391,7 +11391,7 @@ "model": "api_v2.spellcastingoption", "pk": 1464, "fields": { - "spell": "ice-storm-a5e", + "parent": "ice-storm-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -11403,7 +11403,7 @@ "model": "api_v2.spellcastingoption", "pk": 1465, "fields": { - "spell": "ice-storm-a5e", + "parent": "ice-storm-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11415,7 +11415,7 @@ "model": "api_v2.spellcastingoption", "pk": 1466, "fields": { - "spell": "ice-storm-a5e", + "parent": "ice-storm-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11427,7 +11427,7 @@ "model": "api_v2.spellcastingoption", "pk": 1467, "fields": { - "spell": "ice-storm-a5e", + "parent": "ice-storm-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11439,7 +11439,7 @@ "model": "api_v2.spellcastingoption", "pk": 1468, "fields": { - "spell": "ice-storm-a5e", + "parent": "ice-storm-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11451,7 +11451,7 @@ "model": "api_v2.spellcastingoption", "pk": 1469, "fields": { - "spell": "identify-a5e", + "parent": "identify-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11463,7 +11463,7 @@ "model": "api_v2.spellcastingoption", "pk": 1470, "fields": { - "spell": "identify-a5e", + "parent": "identify-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -11475,7 +11475,7 @@ "model": "api_v2.spellcastingoption", "pk": 1471, "fields": { - "spell": "illusory-script-a5e", + "parent": "illusory-script-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11487,7 +11487,7 @@ "model": "api_v2.spellcastingoption", "pk": 1472, "fields": { - "spell": "imprisonment-a5e", + "parent": "imprisonment-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11499,7 +11499,7 @@ "model": "api_v2.spellcastingoption", "pk": 1473, "fields": { - "spell": "incendiary-cloud-a5e", + "parent": "incendiary-cloud-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11511,7 +11511,7 @@ "model": "api_v2.spellcastingoption", "pk": 1474, "fields": { - "spell": "inescapable-malady-a5e", + "parent": "inescapable-malady-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11523,7 +11523,7 @@ "model": "api_v2.spellcastingoption", "pk": 1476, "fields": { - "spell": "inescapable-malady-a5e", + "parent": "inescapable-malady-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11535,7 +11535,7 @@ "model": "api_v2.spellcastingoption", "pk": 1477, "fields": { - "spell": "inescapable-malady-a5e", + "parent": "inescapable-malady-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11547,7 +11547,7 @@ "model": "api_v2.spellcastingoption", "pk": 1478, "fields": { - "spell": "infernal-weapon-a5e", + "parent": "infernal-weapon-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11559,7 +11559,7 @@ "model": "api_v2.spellcastingoption", "pk": 1479, "fields": { - "spell": "inflict-wounds-a5e", + "parent": "inflict-wounds-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11571,7 +11571,7 @@ "model": "api_v2.spellcastingoption", "pk": 1481, "fields": { - "spell": "inflict-wounds-a5e", + "parent": "inflict-wounds-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -11583,7 +11583,7 @@ "model": "api_v2.spellcastingoption", "pk": 1482, "fields": { - "spell": "inflict-wounds-a5e", + "parent": "inflict-wounds-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -11595,7 +11595,7 @@ "model": "api_v2.spellcastingoption", "pk": 1483, "fields": { - "spell": "inflict-wounds-a5e", + "parent": "inflict-wounds-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -11607,7 +11607,7 @@ "model": "api_v2.spellcastingoption", "pk": 1484, "fields": { - "spell": "inflict-wounds-a5e", + "parent": "inflict-wounds-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -11619,7 +11619,7 @@ "model": "api_v2.spellcastingoption", "pk": 1485, "fields": { - "spell": "inflict-wounds-a5e", + "parent": "inflict-wounds-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11631,7 +11631,7 @@ "model": "api_v2.spellcastingoption", "pk": 1486, "fields": { - "spell": "inflict-wounds-a5e", + "parent": "inflict-wounds-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11643,7 +11643,7 @@ "model": "api_v2.spellcastingoption", "pk": 1487, "fields": { - "spell": "inflict-wounds-a5e", + "parent": "inflict-wounds-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11655,7 +11655,7 @@ "model": "api_v2.spellcastingoption", "pk": 1488, "fields": { - "spell": "inflict-wounds-a5e", + "parent": "inflict-wounds-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11667,7 +11667,7 @@ "model": "api_v2.spellcastingoption", "pk": 1489, "fields": { - "spell": "insect-plague-a5e", + "parent": "insect-plague-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11679,7 +11679,7 @@ "model": "api_v2.spellcastingoption", "pk": 1491, "fields": { - "spell": "insect-plague-a5e", + "parent": "insect-plague-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11691,7 +11691,7 @@ "model": "api_v2.spellcastingoption", "pk": 1492, "fields": { - "spell": "insect-plague-a5e", + "parent": "insect-plague-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11703,7 +11703,7 @@ "model": "api_v2.spellcastingoption", "pk": 1493, "fields": { - "spell": "insect-plague-a5e", + "parent": "insect-plague-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11715,7 +11715,7 @@ "model": "api_v2.spellcastingoption", "pk": 1494, "fields": { - "spell": "insect-plague-a5e", + "parent": "insect-plague-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11727,7 +11727,7 @@ "model": "api_v2.spellcastingoption", "pk": 1495, "fields": { - "spell": "instant-summons-a5e", + "parent": "instant-summons-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11739,7 +11739,7 @@ "model": "api_v2.spellcastingoption", "pk": 1496, "fields": { - "spell": "instant-summons-a5e", + "parent": "instant-summons-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -11751,7 +11751,7 @@ "model": "api_v2.spellcastingoption", "pk": 1497, "fields": { - "spell": "invigorated-strikes-a5e", + "parent": "invigorated-strikes-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11763,7 +11763,7 @@ "model": "api_v2.spellcastingoption", "pk": 1499, "fields": { - "spell": "invigorated-strikes-a5e", + "parent": "invigorated-strikes-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -11775,7 +11775,7 @@ "model": "api_v2.spellcastingoption", "pk": 1500, "fields": { - "spell": "invigorated-strikes-a5e", + "parent": "invigorated-strikes-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -11787,7 +11787,7 @@ "model": "api_v2.spellcastingoption", "pk": 1501, "fields": { - "spell": "invigorated-strikes-a5e", + "parent": "invigorated-strikes-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -11799,7 +11799,7 @@ "model": "api_v2.spellcastingoption", "pk": 1502, "fields": { - "spell": "invigorated-strikes-a5e", + "parent": "invigorated-strikes-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11811,7 +11811,7 @@ "model": "api_v2.spellcastingoption", "pk": 1503, "fields": { - "spell": "invigorated-strikes-a5e", + "parent": "invigorated-strikes-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11823,7 +11823,7 @@ "model": "api_v2.spellcastingoption", "pk": 1504, "fields": { - "spell": "invigorated-strikes-a5e", + "parent": "invigorated-strikes-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11835,7 +11835,7 @@ "model": "api_v2.spellcastingoption", "pk": 1505, "fields": { - "spell": "invigorated-strikes-a5e", + "parent": "invigorated-strikes-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11847,7 +11847,7 @@ "model": "api_v2.spellcastingoption", "pk": 1506, "fields": { - "spell": "invisibility-a5e", + "parent": "invisibility-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11859,7 +11859,7 @@ "model": "api_v2.spellcastingoption", "pk": 1508, "fields": { - "spell": "invisibility-a5e", + "parent": "invisibility-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -11871,7 +11871,7 @@ "model": "api_v2.spellcastingoption", "pk": 1509, "fields": { - "spell": "invisibility-a5e", + "parent": "invisibility-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -11883,7 +11883,7 @@ "model": "api_v2.spellcastingoption", "pk": 1510, "fields": { - "spell": "invisibility-a5e", + "parent": "invisibility-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -11895,7 +11895,7 @@ "model": "api_v2.spellcastingoption", "pk": 1511, "fields": { - "spell": "invisibility-a5e", + "parent": "invisibility-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -11907,7 +11907,7 @@ "model": "api_v2.spellcastingoption", "pk": 1512, "fields": { - "spell": "invisibility-a5e", + "parent": "invisibility-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -11919,7 +11919,7 @@ "model": "api_v2.spellcastingoption", "pk": 1513, "fields": { - "spell": "invisibility-a5e", + "parent": "invisibility-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -11931,7 +11931,7 @@ "model": "api_v2.spellcastingoption", "pk": 1514, "fields": { - "spell": "invisibility-a5e", + "parent": "invisibility-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -11943,7 +11943,7 @@ "model": "api_v2.spellcastingoption", "pk": 1515, "fields": { - "spell": "irresistible-dance-a5e", + "parent": "irresistible-dance-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -11955,7 +11955,7 @@ "model": "api_v2.spellcastingoption", "pk": 1517, "fields": { - "spell": "irresistible-dance-a5e", + "parent": "irresistible-dance-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 2, @@ -11967,7 +11967,7 @@ "model": "api_v2.spellcastingoption", "pk": 1518, "fields": { - "spell": "irresistible-dance-a5e", + "parent": "irresistible-dance-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 3, @@ -11979,7 +11979,7 @@ "model": "api_v2.spellcastingoption", "pk": 1519, "fields": { - "spell": "irresistible-dance-a5e", + "parent": "irresistible-dance-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 4, @@ -11991,7 +11991,7 @@ "model": "api_v2.spellcastingoption", "pk": 1520, "fields": { - "spell": "jump-a5e", + "parent": "jump-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12003,7 +12003,7 @@ "model": "api_v2.spellcastingoption", "pk": 1522, "fields": { - "spell": "jump-a5e", + "parent": "jump-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -12015,7 +12015,7 @@ "model": "api_v2.spellcastingoption", "pk": 1523, "fields": { - "spell": "jump-a5e", + "parent": "jump-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -12027,7 +12027,7 @@ "model": "api_v2.spellcastingoption", "pk": 1524, "fields": { - "spell": "jump-a5e", + "parent": "jump-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -12039,7 +12039,7 @@ "model": "api_v2.spellcastingoption", "pk": 1525, "fields": { - "spell": "jump-a5e", + "parent": "jump-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -12051,7 +12051,7 @@ "model": "api_v2.spellcastingoption", "pk": 1526, "fields": { - "spell": "jump-a5e", + "parent": "jump-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -12063,7 +12063,7 @@ "model": "api_v2.spellcastingoption", "pk": 1527, "fields": { - "spell": "jump-a5e", + "parent": "jump-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12075,7 +12075,7 @@ "model": "api_v2.spellcastingoption", "pk": 1528, "fields": { - "spell": "jump-a5e", + "parent": "jump-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12087,7 +12087,7 @@ "model": "api_v2.spellcastingoption", "pk": 1529, "fields": { - "spell": "jump-a5e", + "parent": "jump-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12099,7 +12099,7 @@ "model": "api_v2.spellcastingoption", "pk": 1530, "fields": { - "spell": "knock-a5e", + "parent": "knock-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12111,7 +12111,7 @@ "model": "api_v2.spellcastingoption", "pk": 1532, "fields": { - "spell": "knock-a5e", + "parent": "knock-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -12123,7 +12123,7 @@ "model": "api_v2.spellcastingoption", "pk": 1533, "fields": { - "spell": "knock-a5e", + "parent": "knock-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -12135,7 +12135,7 @@ "model": "api_v2.spellcastingoption", "pk": 1534, "fields": { - "spell": "knock-a5e", + "parent": "knock-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -12147,7 +12147,7 @@ "model": "api_v2.spellcastingoption", "pk": 1535, "fields": { - "spell": "knock-a5e", + "parent": "knock-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -12159,7 +12159,7 @@ "model": "api_v2.spellcastingoption", "pk": 1536, "fields": { - "spell": "knock-a5e", + "parent": "knock-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12171,7 +12171,7 @@ "model": "api_v2.spellcastingoption", "pk": 1537, "fields": { - "spell": "knock-a5e", + "parent": "knock-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12183,7 +12183,7 @@ "model": "api_v2.spellcastingoption", "pk": 1538, "fields": { - "spell": "knock-a5e", + "parent": "knock-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12195,7 +12195,7 @@ "model": "api_v2.spellcastingoption", "pk": 1539, "fields": { - "spell": "legend-lore-a5e", + "parent": "legend-lore-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12207,7 +12207,7 @@ "model": "api_v2.spellcastingoption", "pk": 1541, "fields": { - "spell": "legend-lore-a5e", + "parent": "legend-lore-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -12219,7 +12219,7 @@ "model": "api_v2.spellcastingoption", "pk": 1542, "fields": { - "spell": "legend-lore-a5e", + "parent": "legend-lore-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12231,7 +12231,7 @@ "model": "api_v2.spellcastingoption", "pk": 1543, "fields": { - "spell": "legend-lore-a5e", + "parent": "legend-lore-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12243,7 +12243,7 @@ "model": "api_v2.spellcastingoption", "pk": 1544, "fields": { - "spell": "legend-lore-a5e", + "parent": "legend-lore-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12255,7 +12255,7 @@ "model": "api_v2.spellcastingoption", "pk": 1545, "fields": { - "spell": "lemure-transformation-a5e", + "parent": "lemure-transformation-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12267,7 +12267,7 @@ "model": "api_v2.spellcastingoption", "pk": 1546, "fields": { - "spell": "lesser-restoration-a5e", + "parent": "lesser-restoration-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12279,7 +12279,7 @@ "model": "api_v2.spellcastingoption", "pk": 1547, "fields": { - "spell": "levitate-a5e", + "parent": "levitate-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12291,7 +12291,7 @@ "model": "api_v2.spellcastingoption", "pk": 1549, "fields": { - "spell": "levitate-a5e", + "parent": "levitate-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -12303,7 +12303,7 @@ "model": "api_v2.spellcastingoption", "pk": 1550, "fields": { - "spell": "levitate-a5e", + "parent": "levitate-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -12315,7 +12315,7 @@ "model": "api_v2.spellcastingoption", "pk": 1551, "fields": { - "spell": "levitate-a5e", + "parent": "levitate-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -12327,7 +12327,7 @@ "model": "api_v2.spellcastingoption", "pk": 1552, "fields": { - "spell": "levitate-a5e", + "parent": "levitate-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -12339,7 +12339,7 @@ "model": "api_v2.spellcastingoption", "pk": 1553, "fields": { - "spell": "levitate-a5e", + "parent": "levitate-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12351,7 +12351,7 @@ "model": "api_v2.spellcastingoption", "pk": 1554, "fields": { - "spell": "levitate-a5e", + "parent": "levitate-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12363,7 +12363,7 @@ "model": "api_v2.spellcastingoption", "pk": 1555, "fields": { - "spell": "levitate-a5e", + "parent": "levitate-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12375,7 +12375,7 @@ "model": "api_v2.spellcastingoption", "pk": 1556, "fields": { - "spell": "light-a5e", + "parent": "light-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12387,7 +12387,7 @@ "model": "api_v2.spellcastingoption", "pk": 1557, "fields": { - "spell": "lightning-bolt-a5e", + "parent": "lightning-bolt-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12399,7 +12399,7 @@ "model": "api_v2.spellcastingoption", "pk": 1559, "fields": { - "spell": "lightning-bolt-a5e", + "parent": "lightning-bolt-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -12411,7 +12411,7 @@ "model": "api_v2.spellcastingoption", "pk": 1560, "fields": { - "spell": "lightning-bolt-a5e", + "parent": "lightning-bolt-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -12423,7 +12423,7 @@ "model": "api_v2.spellcastingoption", "pk": 1561, "fields": { - "spell": "lightning-bolt-a5e", + "parent": "lightning-bolt-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -12435,7 +12435,7 @@ "model": "api_v2.spellcastingoption", "pk": 1562, "fields": { - "spell": "lightning-bolt-a5e", + "parent": "lightning-bolt-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12447,7 +12447,7 @@ "model": "api_v2.spellcastingoption", "pk": 1563, "fields": { - "spell": "lightning-bolt-a5e", + "parent": "lightning-bolt-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12459,7 +12459,7 @@ "model": "api_v2.spellcastingoption", "pk": 1564, "fields": { - "spell": "lightning-bolt-a5e", + "parent": "lightning-bolt-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12471,7 +12471,7 @@ "model": "api_v2.spellcastingoption", "pk": 1565, "fields": { - "spell": "locate-animals-or-plants-a5e", + "parent": "locate-animals-or-plants-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12483,7 +12483,7 @@ "model": "api_v2.spellcastingoption", "pk": 1566, "fields": { - "spell": "locate-animals-or-plants-a5e", + "parent": "locate-animals-or-plants-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -12495,7 +12495,7 @@ "model": "api_v2.spellcastingoption", "pk": 1567, "fields": { - "spell": "locate-creature-a5e", + "parent": "locate-creature-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12507,7 +12507,7 @@ "model": "api_v2.spellcastingoption", "pk": 1568, "fields": { - "spell": "locate-object-a5e", + "parent": "locate-object-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12519,7 +12519,7 @@ "model": "api_v2.spellcastingoption", "pk": 1569, "fields": { - "spell": "longstrider-a5e", + "parent": "longstrider-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12531,7 +12531,7 @@ "model": "api_v2.spellcastingoption", "pk": 1571, "fields": { - "spell": "longstrider-a5e", + "parent": "longstrider-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -12543,7 +12543,7 @@ "model": "api_v2.spellcastingoption", "pk": 1572, "fields": { - "spell": "longstrider-a5e", + "parent": "longstrider-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -12555,7 +12555,7 @@ "model": "api_v2.spellcastingoption", "pk": 1573, "fields": { - "spell": "longstrider-a5e", + "parent": "longstrider-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -12567,7 +12567,7 @@ "model": "api_v2.spellcastingoption", "pk": 1574, "fields": { - "spell": "longstrider-a5e", + "parent": "longstrider-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -12579,7 +12579,7 @@ "model": "api_v2.spellcastingoption", "pk": 1575, "fields": { - "spell": "longstrider-a5e", + "parent": "longstrider-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -12591,7 +12591,7 @@ "model": "api_v2.spellcastingoption", "pk": 1576, "fields": { - "spell": "longstrider-a5e", + "parent": "longstrider-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -12603,7 +12603,7 @@ "model": "api_v2.spellcastingoption", "pk": 1577, "fields": { - "spell": "longstrider-a5e", + "parent": "longstrider-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -12615,7 +12615,7 @@ "model": "api_v2.spellcastingoption", "pk": 1578, "fields": { - "spell": "longstrider-a5e", + "parent": "longstrider-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -12627,7 +12627,7 @@ "model": "api_v2.spellcastingoption", "pk": 1579, "fields": { - "spell": "mage-armor-a5e", + "parent": "mage-armor-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12639,7 +12639,7 @@ "model": "api_v2.spellcastingoption", "pk": 1581, "fields": { - "spell": "mage-armor-a5e", + "parent": "mage-armor-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -12651,7 +12651,7 @@ "model": "api_v2.spellcastingoption", "pk": 1582, "fields": { - "spell": "mage-armor-a5e", + "parent": "mage-armor-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -12663,7 +12663,7 @@ "model": "api_v2.spellcastingoption", "pk": 1583, "fields": { - "spell": "mage-armor-a5e", + "parent": "mage-armor-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -12675,7 +12675,7 @@ "model": "api_v2.spellcastingoption", "pk": 1584, "fields": { - "spell": "mage-armor-a5e", + "parent": "mage-armor-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -12687,7 +12687,7 @@ "model": "api_v2.spellcastingoption", "pk": 1585, "fields": { - "spell": "mage-armor-a5e", + "parent": "mage-armor-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -12699,7 +12699,7 @@ "model": "api_v2.spellcastingoption", "pk": 1586, "fields": { - "spell": "mage-armor-a5e", + "parent": "mage-armor-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12711,7 +12711,7 @@ "model": "api_v2.spellcastingoption", "pk": 1587, "fields": { - "spell": "mage-armor-a5e", + "parent": "mage-armor-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12723,7 +12723,7 @@ "model": "api_v2.spellcastingoption", "pk": 1588, "fields": { - "spell": "mage-armor-a5e", + "parent": "mage-armor-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12735,7 +12735,7 @@ "model": "api_v2.spellcastingoption", "pk": 1589, "fields": { - "spell": "mage-hand-a5e", + "parent": "mage-hand-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12747,7 +12747,7 @@ "model": "api_v2.spellcastingoption", "pk": 1590, "fields": { - "spell": "magic-circle-a5e", + "parent": "magic-circle-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12759,7 +12759,7 @@ "model": "api_v2.spellcastingoption", "pk": 1592, "fields": { - "spell": "magic-circle-a5e", + "parent": "magic-circle-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -12771,7 +12771,7 @@ "model": "api_v2.spellcastingoption", "pk": 1593, "fields": { - "spell": "magic-circle-a5e", + "parent": "magic-circle-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -12783,7 +12783,7 @@ "model": "api_v2.spellcastingoption", "pk": 1594, "fields": { - "spell": "magic-circle-a5e", + "parent": "magic-circle-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -12795,7 +12795,7 @@ "model": "api_v2.spellcastingoption", "pk": 1595, "fields": { - "spell": "magic-circle-a5e", + "parent": "magic-circle-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12807,7 +12807,7 @@ "model": "api_v2.spellcastingoption", "pk": 1596, "fields": { - "spell": "magic-circle-a5e", + "parent": "magic-circle-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12819,7 +12819,7 @@ "model": "api_v2.spellcastingoption", "pk": 1597, "fields": { - "spell": "magic-circle-a5e", + "parent": "magic-circle-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12831,7 +12831,7 @@ "model": "api_v2.spellcastingoption", "pk": 1598, "fields": { - "spell": "magic-jar-a5e", + "parent": "magic-jar-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12843,7 +12843,7 @@ "model": "api_v2.spellcastingoption", "pk": 1599, "fields": { - "spell": "magic-missile-a5e", + "parent": "magic-missile-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12855,7 +12855,7 @@ "model": "api_v2.spellcastingoption", "pk": 1601, "fields": { - "spell": "magic-missile-a5e", + "parent": "magic-missile-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": 4, @@ -12867,7 +12867,7 @@ "model": "api_v2.spellcastingoption", "pk": 1602, "fields": { - "spell": "magic-missile-a5e", + "parent": "magic-missile-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 5, @@ -12879,7 +12879,7 @@ "model": "api_v2.spellcastingoption", "pk": 1603, "fields": { - "spell": "magic-missile-a5e", + "parent": "magic-missile-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 6, @@ -12891,7 +12891,7 @@ "model": "api_v2.spellcastingoption", "pk": 1604, "fields": { - "spell": "magic-missile-a5e", + "parent": "magic-missile-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 7, @@ -12903,7 +12903,7 @@ "model": "api_v2.spellcastingoption", "pk": 1605, "fields": { - "spell": "magic-missile-a5e", + "parent": "magic-missile-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 8, @@ -12915,7 +12915,7 @@ "model": "api_v2.spellcastingoption", "pk": 1606, "fields": { - "spell": "magic-missile-a5e", + "parent": "magic-missile-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 9, @@ -12927,7 +12927,7 @@ "model": "api_v2.spellcastingoption", "pk": 1607, "fields": { - "spell": "magic-missile-a5e", + "parent": "magic-missile-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 10, @@ -12939,7 +12939,7 @@ "model": "api_v2.spellcastingoption", "pk": 1608, "fields": { - "spell": "magic-missile-a5e", + "parent": "magic-missile-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 11, @@ -12951,7 +12951,7 @@ "model": "api_v2.spellcastingoption", "pk": 1609, "fields": { - "spell": "magic-mouth-a5e", + "parent": "magic-mouth-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12963,7 +12963,7 @@ "model": "api_v2.spellcastingoption", "pk": 1610, "fields": { - "spell": "magic-mouth-a5e", + "parent": "magic-mouth-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -12975,7 +12975,7 @@ "model": "api_v2.spellcastingoption", "pk": 1611, "fields": { - "spell": "magic-weapon-a5e", + "parent": "magic-weapon-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -12987,7 +12987,7 @@ "model": "api_v2.spellcastingoption", "pk": 1613, "fields": { - "spell": "magic-weapon-a5e", + "parent": "magic-weapon-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -12999,7 +12999,7 @@ "model": "api_v2.spellcastingoption", "pk": 1614, "fields": { - "spell": "magic-weapon-a5e", + "parent": "magic-weapon-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -13011,7 +13011,7 @@ "model": "api_v2.spellcastingoption", "pk": 1615, "fields": { - "spell": "magic-weapon-a5e", + "parent": "magic-weapon-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -13023,7 +13023,7 @@ "model": "api_v2.spellcastingoption", "pk": 1616, "fields": { - "spell": "magic-weapon-a5e", + "parent": "magic-weapon-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13035,7 +13035,7 @@ "model": "api_v2.spellcastingoption", "pk": 1617, "fields": { - "spell": "magic-weapon-a5e", + "parent": "magic-weapon-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13047,7 +13047,7 @@ "model": "api_v2.spellcastingoption", "pk": 1618, "fields": { - "spell": "magic-weapon-a5e", + "parent": "magic-weapon-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13059,7 +13059,7 @@ "model": "api_v2.spellcastingoption", "pk": 1619, "fields": { - "spell": "magic-weapon-a5e", + "parent": "magic-weapon-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13071,7 +13071,7 @@ "model": "api_v2.spellcastingoption", "pk": 1620, "fields": { - "spell": "magnificent-mansion-a5e", + "parent": "magnificent-mansion-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13083,7 +13083,7 @@ "model": "api_v2.spellcastingoption", "pk": 1621, "fields": { - "spell": "major-image-a5e", + "parent": "major-image-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13095,7 +13095,7 @@ "model": "api_v2.spellcastingoption", "pk": 1623, "fields": { - "spell": "major-image-a5e", + "parent": "major-image-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -13107,7 +13107,7 @@ "model": "api_v2.spellcastingoption", "pk": 1624, "fields": { - "spell": "major-image-a5e", + "parent": "major-image-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -13119,7 +13119,7 @@ "model": "api_v2.spellcastingoption", "pk": 1625, "fields": { - "spell": "major-image-a5e", + "parent": "major-image-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13131,7 +13131,7 @@ "model": "api_v2.spellcastingoption", "pk": 1626, "fields": { - "spell": "major-image-a5e", + "parent": "major-image-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13143,7 +13143,7 @@ "model": "api_v2.spellcastingoption", "pk": 1627, "fields": { - "spell": "major-image-a5e", + "parent": "major-image-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13155,7 +13155,7 @@ "model": "api_v2.spellcastingoption", "pk": 1628, "fields": { - "spell": "major-image-a5e", + "parent": "major-image-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13167,7 +13167,7 @@ "model": "api_v2.spellcastingoption", "pk": 1629, "fields": { - "spell": "mass-cure-wounds-a5e", + "parent": "mass-cure-wounds-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13179,7 +13179,7 @@ "model": "api_v2.spellcastingoption", "pk": 1631, "fields": { - "spell": "mass-cure-wounds-a5e", + "parent": "mass-cure-wounds-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13191,7 +13191,7 @@ "model": "api_v2.spellcastingoption", "pk": 1632, "fields": { - "spell": "mass-cure-wounds-a5e", + "parent": "mass-cure-wounds-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13203,7 +13203,7 @@ "model": "api_v2.spellcastingoption", "pk": 1633, "fields": { - "spell": "mass-cure-wounds-a5e", + "parent": "mass-cure-wounds-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13215,7 +13215,7 @@ "model": "api_v2.spellcastingoption", "pk": 1634, "fields": { - "spell": "mass-cure-wounds-a5e", + "parent": "mass-cure-wounds-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13227,7 +13227,7 @@ "model": "api_v2.spellcastingoption", "pk": 1635, "fields": { - "spell": "mass-heal-a5e", + "parent": "mass-heal-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13239,7 +13239,7 @@ "model": "api_v2.spellcastingoption", "pk": 1636, "fields": { - "spell": "mass-healing-word-a5e", + "parent": "mass-healing-word-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13251,7 +13251,7 @@ "model": "api_v2.spellcastingoption", "pk": 1638, "fields": { - "spell": "mass-healing-word-a5e", + "parent": "mass-healing-word-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -13263,7 +13263,7 @@ "model": "api_v2.spellcastingoption", "pk": 1639, "fields": { - "spell": "mass-healing-word-a5e", + "parent": "mass-healing-word-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -13275,7 +13275,7 @@ "model": "api_v2.spellcastingoption", "pk": 1640, "fields": { - "spell": "mass-healing-word-a5e", + "parent": "mass-healing-word-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13287,7 +13287,7 @@ "model": "api_v2.spellcastingoption", "pk": 1641, "fields": { - "spell": "mass-healing-word-a5e", + "parent": "mass-healing-word-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13299,7 +13299,7 @@ "model": "api_v2.spellcastingoption", "pk": 1642, "fields": { - "spell": "mass-healing-word-a5e", + "parent": "mass-healing-word-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13311,7 +13311,7 @@ "model": "api_v2.spellcastingoption", "pk": 1643, "fields": { - "spell": "mass-healing-word-a5e", + "parent": "mass-healing-word-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13323,7 +13323,7 @@ "model": "api_v2.spellcastingoption", "pk": 1644, "fields": { - "spell": "mass-suggestion-a5e", + "parent": "mass-suggestion-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13335,7 +13335,7 @@ "model": "api_v2.spellcastingoption", "pk": 1646, "fields": { - "spell": "mass-suggestion-a5e", + "parent": "mass-suggestion-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13347,7 +13347,7 @@ "model": "api_v2.spellcastingoption", "pk": 1647, "fields": { - "spell": "mass-suggestion-a5e", + "parent": "mass-suggestion-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13359,7 +13359,7 @@ "model": "api_v2.spellcastingoption", "pk": 1648, "fields": { - "spell": "mass-suggestion-a5e", + "parent": "mass-suggestion-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13371,7 +13371,7 @@ "model": "api_v2.spellcastingoption", "pk": 1649, "fields": { - "spell": "maze-a5e", + "parent": "maze-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13383,7 +13383,7 @@ "model": "api_v2.spellcastingoption", "pk": 1650, "fields": { - "spell": "meld-into-stone-a5e", + "parent": "meld-into-stone-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13395,7 +13395,7 @@ "model": "api_v2.spellcastingoption", "pk": 1652, "fields": { - "spell": "meld-into-stone-a5e", + "parent": "meld-into-stone-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -13407,7 +13407,7 @@ "model": "api_v2.spellcastingoption", "pk": 1653, "fields": { - "spell": "meld-into-stone-a5e", + "parent": "meld-into-stone-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -13419,7 +13419,7 @@ "model": "api_v2.spellcastingoption", "pk": 1654, "fields": { - "spell": "meld-into-stone-a5e", + "parent": "meld-into-stone-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13431,7 +13431,7 @@ "model": "api_v2.spellcastingoption", "pk": 1655, "fields": { - "spell": "meld-into-stone-a5e", + "parent": "meld-into-stone-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13443,7 +13443,7 @@ "model": "api_v2.spellcastingoption", "pk": 1656, "fields": { - "spell": "meld-into-stone-a5e", + "parent": "meld-into-stone-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13455,7 +13455,7 @@ "model": "api_v2.spellcastingoption", "pk": 1657, "fields": { - "spell": "meld-into-stone-a5e", + "parent": "meld-into-stone-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13467,7 +13467,7 @@ "model": "api_v2.spellcastingoption", "pk": 1658, "fields": { - "spell": "mending-a5e", + "parent": "mending-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13479,7 +13479,7 @@ "model": "api_v2.spellcastingoption", "pk": 1659, "fields": { - "spell": "mental-grip-a5e", + "parent": "mental-grip-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13491,7 +13491,7 @@ "model": "api_v2.spellcastingoption", "pk": 1660, "fields": { - "spell": "message-a5e", + "parent": "message-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13503,7 +13503,7 @@ "model": "api_v2.spellcastingoption", "pk": 1661, "fields": { - "spell": "meteor-swarm-a5e", + "parent": "meteor-swarm-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13515,7 +13515,7 @@ "model": "api_v2.spellcastingoption", "pk": 1662, "fields": { - "spell": "mind-blank-a5e", + "parent": "mind-blank-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13527,7 +13527,7 @@ "model": "api_v2.spellcastingoption", "pk": 1663, "fields": { - "spell": "mindshield-a5e", + "parent": "mindshield-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13539,7 +13539,7 @@ "model": "api_v2.spellcastingoption", "pk": 1664, "fields": { - "spell": "minor-illusion-a5e", + "parent": "minor-illusion-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13551,7 +13551,7 @@ "model": "api_v2.spellcastingoption", "pk": 1665, "fields": { - "spell": "mirage-arcane-a5e", + "parent": "mirage-arcane-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13563,7 +13563,7 @@ "model": "api_v2.spellcastingoption", "pk": 1666, "fields": { - "spell": "mirror-image-a5e", + "parent": "mirror-image-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13575,7 +13575,7 @@ "model": "api_v2.spellcastingoption", "pk": 1668, "fields": { - "spell": "mirror-image-a5e", + "parent": "mirror-image-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -13587,7 +13587,7 @@ "model": "api_v2.spellcastingoption", "pk": 1669, "fields": { - "spell": "mirror-image-a5e", + "parent": "mirror-image-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -13599,7 +13599,7 @@ "model": "api_v2.spellcastingoption", "pk": 1670, "fields": { - "spell": "mirror-image-a5e", + "parent": "mirror-image-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -13611,7 +13611,7 @@ "model": "api_v2.spellcastingoption", "pk": 1671, "fields": { - "spell": "mirror-image-a5e", + "parent": "mirror-image-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13623,7 +13623,7 @@ "model": "api_v2.spellcastingoption", "pk": 1672, "fields": { - "spell": "mirror-image-a5e", + "parent": "mirror-image-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13635,7 +13635,7 @@ "model": "api_v2.spellcastingoption", "pk": 1673, "fields": { - "spell": "mirror-image-a5e", + "parent": "mirror-image-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13647,7 +13647,7 @@ "model": "api_v2.spellcastingoption", "pk": 1674, "fields": { - "spell": "mirror-image-a5e", + "parent": "mirror-image-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13659,7 +13659,7 @@ "model": "api_v2.spellcastingoption", "pk": 1675, "fields": { - "spell": "mislead-a5e", + "parent": "mislead-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13671,7 +13671,7 @@ "model": "api_v2.spellcastingoption", "pk": 1676, "fields": { - "spell": "misty-step-a5e", + "parent": "misty-step-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13683,7 +13683,7 @@ "model": "api_v2.spellcastingoption", "pk": 1677, "fields": { - "spell": "modify-memory-a5e", + "parent": "modify-memory-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13695,7 +13695,7 @@ "model": "api_v2.spellcastingoption", "pk": 1679, "fields": { - "spell": "modify-memory-a5e", + "parent": "modify-memory-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13707,7 +13707,7 @@ "model": "api_v2.spellcastingoption", "pk": 1680, "fields": { - "spell": "modify-memory-a5e", + "parent": "modify-memory-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13719,7 +13719,7 @@ "model": "api_v2.spellcastingoption", "pk": 1681, "fields": { - "spell": "modify-memory-a5e", + "parent": "modify-memory-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13731,7 +13731,7 @@ "model": "api_v2.spellcastingoption", "pk": 1682, "fields": { - "spell": "modify-memory-a5e", + "parent": "modify-memory-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13743,7 +13743,7 @@ "model": "api_v2.spellcastingoption", "pk": 1683, "fields": { - "spell": "moonbeam-a5e", + "parent": "moonbeam-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13755,7 +13755,7 @@ "model": "api_v2.spellcastingoption", "pk": 1685, "fields": { - "spell": "moonbeam-a5e", + "parent": "moonbeam-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -13767,7 +13767,7 @@ "model": "api_v2.spellcastingoption", "pk": 1686, "fields": { - "spell": "moonbeam-a5e", + "parent": "moonbeam-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -13779,7 +13779,7 @@ "model": "api_v2.spellcastingoption", "pk": 1687, "fields": { - "spell": "moonbeam-a5e", + "parent": "moonbeam-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -13791,7 +13791,7 @@ "model": "api_v2.spellcastingoption", "pk": 1688, "fields": { - "spell": "moonbeam-a5e", + "parent": "moonbeam-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13803,7 +13803,7 @@ "model": "api_v2.spellcastingoption", "pk": 1689, "fields": { - "spell": "moonbeam-a5e", + "parent": "moonbeam-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13815,7 +13815,7 @@ "model": "api_v2.spellcastingoption", "pk": 1690, "fields": { - "spell": "moonbeam-a5e", + "parent": "moonbeam-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13827,7 +13827,7 @@ "model": "api_v2.spellcastingoption", "pk": 1691, "fields": { - "spell": "moonbeam-a5e", + "parent": "moonbeam-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13839,7 +13839,7 @@ "model": "api_v2.spellcastingoption", "pk": 1692, "fields": { - "spell": "move-earth-a5e", + "parent": "move-earth-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13851,7 +13851,7 @@ "model": "api_v2.spellcastingoption", "pk": 1693, "fields": { - "spell": "nondetection-a5e", + "parent": "nondetection-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13863,7 +13863,7 @@ "model": "api_v2.spellcastingoption", "pk": 1694, "fields": { - "spell": "pass-without-trace-a5e", + "parent": "pass-without-trace-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13875,7 +13875,7 @@ "model": "api_v2.spellcastingoption", "pk": 1695, "fields": { - "spell": "passwall-a5e", + "parent": "passwall-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13887,7 +13887,7 @@ "model": "api_v2.spellcastingoption", "pk": 1696, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -13899,7 +13899,7 @@ "model": "api_v2.spellcastingoption", "pk": 1697, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -13911,7 +13911,7 @@ "model": "api_v2.spellcastingoption", "pk": 1698, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -13923,7 +13923,7 @@ "model": "api_v2.spellcastingoption", "pk": 1699, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -13935,7 +13935,7 @@ "model": "api_v2.spellcastingoption", "pk": 1700, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -13947,7 +13947,7 @@ "model": "api_v2.spellcastingoption", "pk": 1701, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_5", "damage_roll": null, "target_count": null, @@ -13959,7 +13959,7 @@ "model": "api_v2.spellcastingoption", "pk": 1702, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_6", "damage_roll": null, "target_count": null, @@ -13971,7 +13971,7 @@ "model": "api_v2.spellcastingoption", "pk": 1703, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_7", "damage_roll": null, "target_count": null, @@ -13983,7 +13983,7 @@ "model": "api_v2.spellcastingoption", "pk": 1704, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_8", "damage_roll": null, "target_count": null, @@ -13995,7 +13995,7 @@ "model": "api_v2.spellcastingoption", "pk": 1705, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_9", "damage_roll": null, "target_count": null, @@ -14007,7 +14007,7 @@ "model": "api_v2.spellcastingoption", "pk": 1706, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_10", "damage_roll": null, "target_count": null, @@ -14019,7 +14019,7 @@ "model": "api_v2.spellcastingoption", "pk": 1707, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_11", "damage_roll": null, "target_count": null, @@ -14031,7 +14031,7 @@ "model": "api_v2.spellcastingoption", "pk": 1708, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_12", "damage_roll": null, "target_count": null, @@ -14043,7 +14043,7 @@ "model": "api_v2.spellcastingoption", "pk": 1709, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_13", "damage_roll": null, "target_count": null, @@ -14055,7 +14055,7 @@ "model": "api_v2.spellcastingoption", "pk": 1710, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_14", "damage_roll": null, "target_count": null, @@ -14067,7 +14067,7 @@ "model": "api_v2.spellcastingoption", "pk": 1711, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_15", "damage_roll": null, "target_count": null, @@ -14079,7 +14079,7 @@ "model": "api_v2.spellcastingoption", "pk": 1712, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_16", "damage_roll": null, "target_count": null, @@ -14091,7 +14091,7 @@ "model": "api_v2.spellcastingoption", "pk": 1713, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_17", "damage_roll": null, "target_count": null, @@ -14103,7 +14103,7 @@ "model": "api_v2.spellcastingoption", "pk": 1714, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_18", "damage_roll": null, "target_count": null, @@ -14115,7 +14115,7 @@ "model": "api_v2.spellcastingoption", "pk": 1715, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_19", "damage_roll": null, "target_count": null, @@ -14127,7 +14127,7 @@ "model": "api_v2.spellcastingoption", "pk": 1716, "fields": { - "spell": "pestilence-a5e", + "parent": "pestilence-a5e", "type": "player_level_20", "damage_roll": null, "target_count": null, @@ -14139,7 +14139,7 @@ "model": "api_v2.spellcastingoption", "pk": 1717, "fields": { - "spell": "phantasmal-killer-a5e", + "parent": "phantasmal-killer-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14151,7 +14151,7 @@ "model": "api_v2.spellcastingoption", "pk": 1719, "fields": { - "spell": "phantasmal-killer-a5e", + "parent": "phantasmal-killer-a5e", "type": "slot_level_5", "damage_roll": "5d10", "target_count": null, @@ -14163,7 +14163,7 @@ "model": "api_v2.spellcastingoption", "pk": 1720, "fields": { - "spell": "phantasmal-killer-a5e", + "parent": "phantasmal-killer-a5e", "type": "slot_level_6", "damage_roll": "6d10", "target_count": null, @@ -14175,7 +14175,7 @@ "model": "api_v2.spellcastingoption", "pk": 1721, "fields": { - "spell": "phantasmal-killer-a5e", + "parent": "phantasmal-killer-a5e", "type": "slot_level_7", "damage_roll": "7d10", "target_count": null, @@ -14187,7 +14187,7 @@ "model": "api_v2.spellcastingoption", "pk": 1722, "fields": { - "spell": "phantasmal-killer-a5e", + "parent": "phantasmal-killer-a5e", "type": "slot_level_8", "damage_roll": "8d10", "target_count": null, @@ -14199,7 +14199,7 @@ "model": "api_v2.spellcastingoption", "pk": 1723, "fields": { - "spell": "phantasmal-killer-a5e", + "parent": "phantasmal-killer-a5e", "type": "slot_level_9", "damage_roll": "9d10", "target_count": null, @@ -14211,7 +14211,7 @@ "model": "api_v2.spellcastingoption", "pk": 1724, "fields": { - "spell": "phantasmal-talons-a5e", + "parent": "phantasmal-talons-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14223,7 +14223,7 @@ "model": "api_v2.spellcastingoption", "pk": 1725, "fields": { - "spell": "phantom-steed-a5e", + "parent": "phantom-steed-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14235,7 +14235,7 @@ "model": "api_v2.spellcastingoption", "pk": 1726, "fields": { - "spell": "phantom-steed-a5e", + "parent": "phantom-steed-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -14247,7 +14247,7 @@ "model": "api_v2.spellcastingoption", "pk": 1727, "fields": { - "spell": "planar-ally-a5e", + "parent": "planar-ally-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14259,7 +14259,7 @@ "model": "api_v2.spellcastingoption", "pk": 1728, "fields": { - "spell": "planar-binding-a5e", + "parent": "planar-binding-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14271,7 +14271,7 @@ "model": "api_v2.spellcastingoption", "pk": 1730, "fields": { - "spell": "planar-binding-a5e", + "parent": "planar-binding-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -14283,7 +14283,7 @@ "model": "api_v2.spellcastingoption", "pk": 1731, "fields": { - "spell": "planar-binding-a5e", + "parent": "planar-binding-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -14295,7 +14295,7 @@ "model": "api_v2.spellcastingoption", "pk": 1732, "fields": { - "spell": "planar-binding-a5e", + "parent": "planar-binding-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -14307,7 +14307,7 @@ "model": "api_v2.spellcastingoption", "pk": 1733, "fields": { - "spell": "planar-binding-a5e", + "parent": "planar-binding-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -14319,7 +14319,7 @@ "model": "api_v2.spellcastingoption", "pk": 1734, "fields": { - "spell": "plane-shift-a5e", + "parent": "plane-shift-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14331,7 +14331,7 @@ "model": "api_v2.spellcastingoption", "pk": 1735, "fields": { - "spell": "plant-growth-a5e", + "parent": "plant-growth-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14343,7 +14343,7 @@ "model": "api_v2.spellcastingoption", "pk": 1736, "fields": { - "spell": "poison-skin-a5e", + "parent": "poison-skin-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14355,7 +14355,7 @@ "model": "api_v2.spellcastingoption", "pk": 1738, "fields": { - "spell": "poison-skin-a5e", + "parent": "poison-skin-a5e", "type": "slot_level_4", "damage_roll": "2d6", "target_count": null, @@ -14367,7 +14367,7 @@ "model": "api_v2.spellcastingoption", "pk": 1739, "fields": { - "spell": "poison-skin-a5e", + "parent": "poison-skin-a5e", "type": "slot_level_5", "damage_roll": "3d6", "target_count": null, @@ -14379,7 +14379,7 @@ "model": "api_v2.spellcastingoption", "pk": 1740, "fields": { - "spell": "poison-skin-a5e", + "parent": "poison-skin-a5e", "type": "slot_level_6", "damage_roll": "4d6", "target_count": null, @@ -14391,7 +14391,7 @@ "model": "api_v2.spellcastingoption", "pk": 1741, "fields": { - "spell": "poison-skin-a5e", + "parent": "poison-skin-a5e", "type": "slot_level_7", "damage_roll": "5d6", "target_count": null, @@ -14403,7 +14403,7 @@ "model": "api_v2.spellcastingoption", "pk": 1742, "fields": { - "spell": "poison-skin-a5e", + "parent": "poison-skin-a5e", "type": "slot_level_8", "damage_roll": "6d6", "target_count": null, @@ -14415,7 +14415,7 @@ "model": "api_v2.spellcastingoption", "pk": 1743, "fields": { - "spell": "poison-skin-a5e", + "parent": "poison-skin-a5e", "type": "slot_level_9", "damage_roll": "7d6", "target_count": null, @@ -14427,7 +14427,7 @@ "model": "api_v2.spellcastingoption", "pk": 1744, "fields": { - "spell": "polymorph-a5e", + "parent": "polymorph-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14439,7 +14439,7 @@ "model": "api_v2.spellcastingoption", "pk": 1745, "fields": { - "spell": "power-word-kill-a5e", + "parent": "power-word-kill-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14451,7 +14451,7 @@ "model": "api_v2.spellcastingoption", "pk": 1746, "fields": { - "spell": "power-word-stun-a5e", + "parent": "power-word-stun-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14463,7 +14463,7 @@ "model": "api_v2.spellcastingoption", "pk": 1747, "fields": { - "spell": "prayer-of-healing-a5e", + "parent": "prayer-of-healing-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14475,7 +14475,7 @@ "model": "api_v2.spellcastingoption", "pk": 1749, "fields": { - "spell": "prayer-of-healing-a5e", + "parent": "prayer-of-healing-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -14487,7 +14487,7 @@ "model": "api_v2.spellcastingoption", "pk": 1750, "fields": { - "spell": "prayer-of-healing-a5e", + "parent": "prayer-of-healing-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -14499,7 +14499,7 @@ "model": "api_v2.spellcastingoption", "pk": 1751, "fields": { - "spell": "prayer-of-healing-a5e", + "parent": "prayer-of-healing-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -14511,7 +14511,7 @@ "model": "api_v2.spellcastingoption", "pk": 1752, "fields": { - "spell": "prayer-of-healing-a5e", + "parent": "prayer-of-healing-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -14523,7 +14523,7 @@ "model": "api_v2.spellcastingoption", "pk": 1753, "fields": { - "spell": "prayer-of-healing-a5e", + "parent": "prayer-of-healing-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -14535,7 +14535,7 @@ "model": "api_v2.spellcastingoption", "pk": 1754, "fields": { - "spell": "prayer-of-healing-a5e", + "parent": "prayer-of-healing-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -14547,7 +14547,7 @@ "model": "api_v2.spellcastingoption", "pk": 1755, "fields": { - "spell": "prayer-of-healing-a5e", + "parent": "prayer-of-healing-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -14559,7 +14559,7 @@ "model": "api_v2.spellcastingoption", "pk": 1756, "fields": { - "spell": "prestidigitation-a5e", + "parent": "prestidigitation-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14571,7 +14571,7 @@ "model": "api_v2.spellcastingoption", "pk": 1757, "fields": { - "spell": "prismatic-spray-a5e", + "parent": "prismatic-spray-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14583,7 +14583,7 @@ "model": "api_v2.spellcastingoption", "pk": 1758, "fields": { - "spell": "prismatic-wall-a5e", + "parent": "prismatic-wall-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14595,7 +14595,7 @@ "model": "api_v2.spellcastingoption", "pk": 1759, "fields": { - "spell": "private-sanctum-a5e", + "parent": "private-sanctum-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14607,7 +14607,7 @@ "model": "api_v2.spellcastingoption", "pk": 1761, "fields": { - "spell": "private-sanctum-a5e", + "parent": "private-sanctum-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -14619,7 +14619,7 @@ "model": "api_v2.spellcastingoption", "pk": 1762, "fields": { - "spell": "private-sanctum-a5e", + "parent": "private-sanctum-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -14631,7 +14631,7 @@ "model": "api_v2.spellcastingoption", "pk": 1763, "fields": { - "spell": "private-sanctum-a5e", + "parent": "private-sanctum-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -14643,7 +14643,7 @@ "model": "api_v2.spellcastingoption", "pk": 1764, "fields": { - "spell": "private-sanctum-a5e", + "parent": "private-sanctum-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -14655,7 +14655,7 @@ "model": "api_v2.spellcastingoption", "pk": 1765, "fields": { - "spell": "private-sanctum-a5e", + "parent": "private-sanctum-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -14667,7 +14667,7 @@ "model": "api_v2.spellcastingoption", "pk": 1766, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14679,7 +14679,7 @@ "model": "api_v2.spellcastingoption", "pk": 1767, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_1", "damage_roll": "", "target_count": null, @@ -14691,7 +14691,7 @@ "model": "api_v2.spellcastingoption", "pk": 1768, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_2", "damage_roll": "", "target_count": null, @@ -14703,7 +14703,7 @@ "model": "api_v2.spellcastingoption", "pk": 1769, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_3", "damage_roll": "", "target_count": null, @@ -14715,7 +14715,7 @@ "model": "api_v2.spellcastingoption", "pk": 1770, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_4", "damage_roll": "", "target_count": null, @@ -14727,7 +14727,7 @@ "model": "api_v2.spellcastingoption", "pk": 1771, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_5", "damage_roll": "2d8", "target_count": null, @@ -14739,7 +14739,7 @@ "model": "api_v2.spellcastingoption", "pk": 1772, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_6", "damage_roll": "2d8", "target_count": null, @@ -14751,7 +14751,7 @@ "model": "api_v2.spellcastingoption", "pk": 1773, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_7", "damage_roll": "2d8", "target_count": null, @@ -14763,7 +14763,7 @@ "model": "api_v2.spellcastingoption", "pk": 1774, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_8", "damage_roll": "2d8", "target_count": null, @@ -14775,7 +14775,7 @@ "model": "api_v2.spellcastingoption", "pk": 1775, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_9", "damage_roll": "2d8", "target_count": null, @@ -14787,7 +14787,7 @@ "model": "api_v2.spellcastingoption", "pk": 1776, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_10", "damage_roll": "2d8", "target_count": null, @@ -14799,7 +14799,7 @@ "model": "api_v2.spellcastingoption", "pk": 1777, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_11", "damage_roll": "3d8", "target_count": null, @@ -14811,7 +14811,7 @@ "model": "api_v2.spellcastingoption", "pk": 1778, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_12", "damage_roll": "3d8", "target_count": null, @@ -14823,7 +14823,7 @@ "model": "api_v2.spellcastingoption", "pk": 1779, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_13", "damage_roll": "3d8", "target_count": null, @@ -14835,7 +14835,7 @@ "model": "api_v2.spellcastingoption", "pk": 1780, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_14", "damage_roll": "3d8", "target_count": null, @@ -14847,7 +14847,7 @@ "model": "api_v2.spellcastingoption", "pk": 1781, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_15", "damage_roll": "3d8", "target_count": null, @@ -14859,7 +14859,7 @@ "model": "api_v2.spellcastingoption", "pk": 1782, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_16", "damage_roll": "3d8", "target_count": null, @@ -14871,7 +14871,7 @@ "model": "api_v2.spellcastingoption", "pk": 1783, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_17", "damage_roll": "4d8", "target_count": null, @@ -14883,7 +14883,7 @@ "model": "api_v2.spellcastingoption", "pk": 1784, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_18", "damage_roll": "4d8", "target_count": null, @@ -14895,7 +14895,7 @@ "model": "api_v2.spellcastingoption", "pk": 1785, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_19", "damage_roll": "4d8", "target_count": null, @@ -14907,7 +14907,7 @@ "model": "api_v2.spellcastingoption", "pk": 1786, "fields": { - "spell": "produce-flame-a5e", + "parent": "produce-flame-a5e", "type": "player_level_20", "damage_roll": "4d8", "target_count": null, @@ -14919,7 +14919,7 @@ "model": "api_v2.spellcastingoption", "pk": 1787, "fields": { - "spell": "programmed-illusion-a5e", + "parent": "programmed-illusion-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14931,7 +14931,7 @@ "model": "api_v2.spellcastingoption", "pk": 1788, "fields": { - "spell": "project-image-a5e", + "parent": "project-image-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14943,7 +14943,7 @@ "model": "api_v2.spellcastingoption", "pk": 1789, "fields": { - "spell": "protection-from-energy-a5e", + "parent": "protection-from-energy-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -14955,7 +14955,7 @@ "model": "api_v2.spellcastingoption", "pk": 1791, "fields": { - "spell": "protection-from-energy-a5e", + "parent": "protection-from-energy-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -14967,7 +14967,7 @@ "model": "api_v2.spellcastingoption", "pk": 1792, "fields": { - "spell": "protection-from-energy-a5e", + "parent": "protection-from-energy-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -14979,7 +14979,7 @@ "model": "api_v2.spellcastingoption", "pk": 1793, "fields": { - "spell": "protection-from-energy-a5e", + "parent": "protection-from-energy-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -14991,7 +14991,7 @@ "model": "api_v2.spellcastingoption", "pk": 1794, "fields": { - "spell": "protection-from-energy-a5e", + "parent": "protection-from-energy-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -15003,7 +15003,7 @@ "model": "api_v2.spellcastingoption", "pk": 1795, "fields": { - "spell": "protection-from-energy-a5e", + "parent": "protection-from-energy-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -15015,7 +15015,7 @@ "model": "api_v2.spellcastingoption", "pk": 1796, "fields": { - "spell": "protection-from-energy-a5e", + "parent": "protection-from-energy-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -15027,7 +15027,7 @@ "model": "api_v2.spellcastingoption", "pk": 1797, "fields": { - "spell": "protection-from-energy-a5e", + "parent": "protection-from-energy-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -15039,7 +15039,7 @@ "model": "api_v2.spellcastingoption", "pk": 1798, "fields": { - "spell": "protection-from-evil-and-good-a5e", + "parent": "protection-from-evil-and-good-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15051,7 +15051,7 @@ "model": "api_v2.spellcastingoption", "pk": 1799, "fields": { - "spell": "protection-from-poison-a5e", + "parent": "protection-from-poison-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15063,7 +15063,7 @@ "model": "api_v2.spellcastingoption", "pk": 1800, "fields": { - "spell": "purify-food-and-drink-a5e", + "parent": "purify-food-and-drink-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15075,7 +15075,7 @@ "model": "api_v2.spellcastingoption", "pk": 1801, "fields": { - "spell": "purify-food-and-drink-a5e", + "parent": "purify-food-and-drink-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -15087,7 +15087,7 @@ "model": "api_v2.spellcastingoption", "pk": 1803, "fields": { - "spell": "purify-food-and-drink-a5e", + "parent": "purify-food-and-drink-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -15099,7 +15099,7 @@ "model": "api_v2.spellcastingoption", "pk": 1804, "fields": { - "spell": "purify-food-and-drink-a5e", + "parent": "purify-food-and-drink-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -15111,7 +15111,7 @@ "model": "api_v2.spellcastingoption", "pk": 1805, "fields": { - "spell": "purify-food-and-drink-a5e", + "parent": "purify-food-and-drink-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -15123,7 +15123,7 @@ "model": "api_v2.spellcastingoption", "pk": 1806, "fields": { - "spell": "purify-food-and-drink-a5e", + "parent": "purify-food-and-drink-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -15135,7 +15135,7 @@ "model": "api_v2.spellcastingoption", "pk": 1807, "fields": { - "spell": "purify-food-and-drink-a5e", + "parent": "purify-food-and-drink-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -15147,7 +15147,7 @@ "model": "api_v2.spellcastingoption", "pk": 1808, "fields": { - "spell": "purify-food-and-drink-a5e", + "parent": "purify-food-and-drink-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -15159,7 +15159,7 @@ "model": "api_v2.spellcastingoption", "pk": 1809, "fields": { - "spell": "purify-food-and-drink-a5e", + "parent": "purify-food-and-drink-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -15171,7 +15171,7 @@ "model": "api_v2.spellcastingoption", "pk": 1810, "fields": { - "spell": "purify-food-and-drink-a5e", + "parent": "purify-food-and-drink-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -15183,7 +15183,7 @@ "model": "api_v2.spellcastingoption", "pk": 1811, "fields": { - "spell": "rage-of-the-meek-a5e", + "parent": "rage-of-the-meek-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15195,7 +15195,7 @@ "model": "api_v2.spellcastingoption", "pk": 1813, "fields": { - "spell": "rage-of-the-meek-a5e", + "parent": "rage-of-the-meek-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -15207,7 +15207,7 @@ "model": "api_v2.spellcastingoption", "pk": 1814, "fields": { - "spell": "rage-of-the-meek-a5e", + "parent": "rage-of-the-meek-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -15219,7 +15219,7 @@ "model": "api_v2.spellcastingoption", "pk": 1815, "fields": { - "spell": "rage-of-the-meek-a5e", + "parent": "rage-of-the-meek-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -15231,7 +15231,7 @@ "model": "api_v2.spellcastingoption", "pk": 1816, "fields": { - "spell": "rage-of-the-meek-a5e", + "parent": "rage-of-the-meek-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -15243,7 +15243,7 @@ "model": "api_v2.spellcastingoption", "pk": 1817, "fields": { - "spell": "rage-of-the-meek-a5e", + "parent": "rage-of-the-meek-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -15255,7 +15255,7 @@ "model": "api_v2.spellcastingoption", "pk": 1818, "fields": { - "spell": "raise-dead-a5e", + "parent": "raise-dead-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15267,7 +15267,7 @@ "model": "api_v2.spellcastingoption", "pk": 1819, "fields": { - "spell": "raise-hell-a5e", + "parent": "raise-hell-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15279,7 +15279,7 @@ "model": "api_v2.spellcastingoption", "pk": 1820, "fields": { - "spell": "ray-of-enfeeblement-a5e", + "parent": "ray-of-enfeeblement-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15291,7 +15291,7 @@ "model": "api_v2.spellcastingoption", "pk": 1821, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15303,7 +15303,7 @@ "model": "api_v2.spellcastingoption", "pk": 1822, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_1", "damage_roll": "", "target_count": null, @@ -15315,7 +15315,7 @@ "model": "api_v2.spellcastingoption", "pk": 1823, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_2", "damage_roll": "", "target_count": null, @@ -15327,7 +15327,7 @@ "model": "api_v2.spellcastingoption", "pk": 1824, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_3", "damage_roll": "", "target_count": null, @@ -15339,7 +15339,7 @@ "model": "api_v2.spellcastingoption", "pk": 1825, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_4", "damage_roll": "", "target_count": null, @@ -15351,7 +15351,7 @@ "model": "api_v2.spellcastingoption", "pk": 1826, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_5", "damage_roll": "2d8", "target_count": null, @@ -15363,7 +15363,7 @@ "model": "api_v2.spellcastingoption", "pk": 1827, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_6", "damage_roll": "2d8", "target_count": null, @@ -15375,7 +15375,7 @@ "model": "api_v2.spellcastingoption", "pk": 1828, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_7", "damage_roll": "2d8", "target_count": null, @@ -15387,7 +15387,7 @@ "model": "api_v2.spellcastingoption", "pk": 1829, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_8", "damage_roll": "2d8", "target_count": null, @@ -15399,7 +15399,7 @@ "model": "api_v2.spellcastingoption", "pk": 1830, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_9", "damage_roll": "2d8", "target_count": null, @@ -15411,7 +15411,7 @@ "model": "api_v2.spellcastingoption", "pk": 1831, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_10", "damage_roll": "2d8", "target_count": null, @@ -15423,7 +15423,7 @@ "model": "api_v2.spellcastingoption", "pk": 1832, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_11", "damage_roll": "3d8", "target_count": null, @@ -15435,7 +15435,7 @@ "model": "api_v2.spellcastingoption", "pk": 1833, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_12", "damage_roll": "3d8", "target_count": null, @@ -15447,7 +15447,7 @@ "model": "api_v2.spellcastingoption", "pk": 1834, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_13", "damage_roll": "3d8", "target_count": null, @@ -15459,7 +15459,7 @@ "model": "api_v2.spellcastingoption", "pk": 1835, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_14", "damage_roll": "3d8", "target_count": null, @@ -15471,7 +15471,7 @@ "model": "api_v2.spellcastingoption", "pk": 1836, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_15", "damage_roll": "3d8", "target_count": null, @@ -15483,7 +15483,7 @@ "model": "api_v2.spellcastingoption", "pk": 1837, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_16", "damage_roll": "3d8", "target_count": null, @@ -15495,7 +15495,7 @@ "model": "api_v2.spellcastingoption", "pk": 1838, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_17", "damage_roll": "4d8", "target_count": null, @@ -15507,7 +15507,7 @@ "model": "api_v2.spellcastingoption", "pk": 1839, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_18", "damage_roll": "4d8", "target_count": null, @@ -15519,7 +15519,7 @@ "model": "api_v2.spellcastingoption", "pk": 1840, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_19", "damage_roll": "4d8", "target_count": null, @@ -15531,7 +15531,7 @@ "model": "api_v2.spellcastingoption", "pk": 1841, "fields": { - "spell": "ray-of-frost-a5e", + "parent": "ray-of-frost-a5e", "type": "player_level_20", "damage_roll": "4d8", "target_count": null, @@ -15543,7 +15543,7 @@ "model": "api_v2.spellcastingoption", "pk": 1842, "fields": { - "spell": "regenerate-a5e", + "parent": "regenerate-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15555,7 +15555,7 @@ "model": "api_v2.spellcastingoption", "pk": 1843, "fields": { - "spell": "reincarnate-a5e", + "parent": "reincarnate-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15567,7 +15567,7 @@ "model": "api_v2.spellcastingoption", "pk": 1844, "fields": { - "spell": "remove-curse-a5e", + "parent": "remove-curse-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15579,7 +15579,7 @@ "model": "api_v2.spellcastingoption", "pk": 1846, "fields": { - "spell": "remove-curse-a5e", + "parent": "remove-curse-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -15591,7 +15591,7 @@ "model": "api_v2.spellcastingoption", "pk": 1847, "fields": { - "spell": "remove-curse-a5e", + "parent": "remove-curse-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -15603,7 +15603,7 @@ "model": "api_v2.spellcastingoption", "pk": 1848, "fields": { - "spell": "remove-curse-a5e", + "parent": "remove-curse-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -15615,7 +15615,7 @@ "model": "api_v2.spellcastingoption", "pk": 1849, "fields": { - "spell": "remove-curse-a5e", + "parent": "remove-curse-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -15627,7 +15627,7 @@ "model": "api_v2.spellcastingoption", "pk": 1850, "fields": { - "spell": "remove-curse-a5e", + "parent": "remove-curse-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -15639,7 +15639,7 @@ "model": "api_v2.spellcastingoption", "pk": 1851, "fields": { - "spell": "remove-curse-a5e", + "parent": "remove-curse-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -15651,7 +15651,7 @@ "model": "api_v2.spellcastingoption", "pk": 1852, "fields": { - "spell": "resilient-sphere-a5e", + "parent": "resilient-sphere-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15663,7 +15663,7 @@ "model": "api_v2.spellcastingoption", "pk": 1853, "fields": { - "spell": "resistance-a5e", + "parent": "resistance-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15675,7 +15675,7 @@ "model": "api_v2.spellcastingoption", "pk": 1854, "fields": { - "spell": "resurrection-a5e", + "parent": "resurrection-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15687,7 +15687,7 @@ "model": "api_v2.spellcastingoption", "pk": 1855, "fields": { - "spell": "reverse-gravity-a5e", + "parent": "reverse-gravity-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15699,7 +15699,7 @@ "model": "api_v2.spellcastingoption", "pk": 1856, "fields": { - "spell": "revivify-a5e", + "parent": "revivify-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15711,7 +15711,7 @@ "model": "api_v2.spellcastingoption", "pk": 1857, "fields": { - "spell": "rope-trick-a5e", + "parent": "rope-trick-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15723,7 +15723,7 @@ "model": "api_v2.spellcastingoption", "pk": 1858, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15735,7 +15735,7 @@ "model": "api_v2.spellcastingoption", "pk": 1859, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_1", "damage_roll": "", "target_count": null, @@ -15747,7 +15747,7 @@ "model": "api_v2.spellcastingoption", "pk": 1860, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_2", "damage_roll": "", "target_count": null, @@ -15759,7 +15759,7 @@ "model": "api_v2.spellcastingoption", "pk": 1861, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_3", "damage_roll": "", "target_count": null, @@ -15771,7 +15771,7 @@ "model": "api_v2.spellcastingoption", "pk": 1862, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_4", "damage_roll": "", "target_count": null, @@ -15783,7 +15783,7 @@ "model": "api_v2.spellcastingoption", "pk": 1863, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_5", "damage_roll": "2d8", "target_count": null, @@ -15795,7 +15795,7 @@ "model": "api_v2.spellcastingoption", "pk": 1864, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_6", "damage_roll": "2d8", "target_count": null, @@ -15807,7 +15807,7 @@ "model": "api_v2.spellcastingoption", "pk": 1865, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_7", "damage_roll": "2d8", "target_count": null, @@ -15819,7 +15819,7 @@ "model": "api_v2.spellcastingoption", "pk": 1866, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_8", "damage_roll": "2d8", "target_count": null, @@ -15831,7 +15831,7 @@ "model": "api_v2.spellcastingoption", "pk": 1867, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_9", "damage_roll": "2d8", "target_count": null, @@ -15843,7 +15843,7 @@ "model": "api_v2.spellcastingoption", "pk": 1868, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_10", "damage_roll": "2d8", "target_count": null, @@ -15855,7 +15855,7 @@ "model": "api_v2.spellcastingoption", "pk": 1869, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_11", "damage_roll": "3d8", "target_count": null, @@ -15867,7 +15867,7 @@ "model": "api_v2.spellcastingoption", "pk": 1870, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_12", "damage_roll": "3d8", "target_count": null, @@ -15879,7 +15879,7 @@ "model": "api_v2.spellcastingoption", "pk": 1871, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_13", "damage_roll": "3d8", "target_count": null, @@ -15891,7 +15891,7 @@ "model": "api_v2.spellcastingoption", "pk": 1872, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_14", "damage_roll": "3d8", "target_count": null, @@ -15903,7 +15903,7 @@ "model": "api_v2.spellcastingoption", "pk": 1873, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_15", "damage_roll": "3d8", "target_count": null, @@ -15915,7 +15915,7 @@ "model": "api_v2.spellcastingoption", "pk": 1874, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_16", "damage_roll": "3d8", "target_count": null, @@ -15927,7 +15927,7 @@ "model": "api_v2.spellcastingoption", "pk": 1875, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_17", "damage_roll": "4d8", "target_count": null, @@ -15939,7 +15939,7 @@ "model": "api_v2.spellcastingoption", "pk": 1876, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_18", "damage_roll": "4d8", "target_count": null, @@ -15951,7 +15951,7 @@ "model": "api_v2.spellcastingoption", "pk": 1877, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_19", "damage_roll": "4d8", "target_count": null, @@ -15963,7 +15963,7 @@ "model": "api_v2.spellcastingoption", "pk": 1878, "fields": { - "spell": "sacred-flame-a5e", + "parent": "sacred-flame-a5e", "type": "player_level_20", "damage_roll": "4d8", "target_count": null, @@ -15975,7 +15975,7 @@ "model": "api_v2.spellcastingoption", "pk": 1879, "fields": { - "spell": "sanctuary-a5e", + "parent": "sanctuary-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15987,7 +15987,7 @@ "model": "api_v2.spellcastingoption", "pk": 1880, "fields": { - "spell": "scorching-ray-a5e", + "parent": "scorching-ray-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -15999,7 +15999,7 @@ "model": "api_v2.spellcastingoption", "pk": 1882, "fields": { - "spell": "scorching-ray-a5e", + "parent": "scorching-ray-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -16011,7 +16011,7 @@ "model": "api_v2.spellcastingoption", "pk": 1883, "fields": { - "spell": "scorching-ray-a5e", + "parent": "scorching-ray-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -16023,7 +16023,7 @@ "model": "api_v2.spellcastingoption", "pk": 1884, "fields": { - "spell": "scorching-ray-a5e", + "parent": "scorching-ray-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -16035,7 +16035,7 @@ "model": "api_v2.spellcastingoption", "pk": 1885, "fields": { - "spell": "scorching-ray-a5e", + "parent": "scorching-ray-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -16047,7 +16047,7 @@ "model": "api_v2.spellcastingoption", "pk": 1886, "fields": { - "spell": "scorching-ray-a5e", + "parent": "scorching-ray-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -16059,7 +16059,7 @@ "model": "api_v2.spellcastingoption", "pk": 1887, "fields": { - "spell": "scorching-ray-a5e", + "parent": "scorching-ray-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -16071,7 +16071,7 @@ "model": "api_v2.spellcastingoption", "pk": 1888, "fields": { - "spell": "scorching-ray-a5e", + "parent": "scorching-ray-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -16083,7 +16083,7 @@ "model": "api_v2.spellcastingoption", "pk": 1889, "fields": { - "spell": "scrying-a5e", + "parent": "scrying-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16095,7 +16095,7 @@ "model": "api_v2.spellcastingoption", "pk": 1890, "fields": { - "spell": "searing-equation-a5e", + "parent": "searing-equation-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16107,7 +16107,7 @@ "model": "api_v2.spellcastingoption", "pk": 1892, "fields": { - "spell": "searing-equation-a5e", + "parent": "searing-equation-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -16119,7 +16119,7 @@ "model": "api_v2.spellcastingoption", "pk": 1893, "fields": { - "spell": "searing-equation-a5e", + "parent": "searing-equation-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -16131,7 +16131,7 @@ "model": "api_v2.spellcastingoption", "pk": 1894, "fields": { - "spell": "searing-equation-a5e", + "parent": "searing-equation-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -16143,7 +16143,7 @@ "model": "api_v2.spellcastingoption", "pk": 1895, "fields": { - "spell": "searing-equation-a5e", + "parent": "searing-equation-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -16155,7 +16155,7 @@ "model": "api_v2.spellcastingoption", "pk": 1896, "fields": { - "spell": "searing-equation-a5e", + "parent": "searing-equation-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -16167,7 +16167,7 @@ "model": "api_v2.spellcastingoption", "pk": 1897, "fields": { - "spell": "searing-equation-a5e", + "parent": "searing-equation-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -16179,7 +16179,7 @@ "model": "api_v2.spellcastingoption", "pk": 1898, "fields": { - "spell": "searing-equation-a5e", + "parent": "searing-equation-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -16191,7 +16191,7 @@ "model": "api_v2.spellcastingoption", "pk": 1899, "fields": { - "spell": "searing-equation-a5e", + "parent": "searing-equation-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -16203,7 +16203,7 @@ "model": "api_v2.spellcastingoption", "pk": 1900, "fields": { - "spell": "secret-chest-a5e", + "parent": "secret-chest-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16215,7 +16215,7 @@ "model": "api_v2.spellcastingoption", "pk": 1901, "fields": { - "spell": "see-invisibility-a5e", + "parent": "see-invisibility-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16227,7 +16227,7 @@ "model": "api_v2.spellcastingoption", "pk": 1902, "fields": { - "spell": "seed-bomb-a5e", + "parent": "seed-bomb-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16239,7 +16239,7 @@ "model": "api_v2.spellcastingoption", "pk": 1904, "fields": { - "spell": "seed-bomb-a5e", + "parent": "seed-bomb-a5e", "type": "slot_level_3", "damage_roll": "5d6", "target_count": null, @@ -16251,7 +16251,7 @@ "model": "api_v2.spellcastingoption", "pk": 1905, "fields": { - "spell": "seed-bomb-a5e", + "parent": "seed-bomb-a5e", "type": "slot_level_4", "damage_roll": "6d6", "target_count": null, @@ -16263,7 +16263,7 @@ "model": "api_v2.spellcastingoption", "pk": 1906, "fields": { - "spell": "seed-bomb-a5e", + "parent": "seed-bomb-a5e", "type": "slot_level_5", "damage_roll": "7d6", "target_count": null, @@ -16275,7 +16275,7 @@ "model": "api_v2.spellcastingoption", "pk": 1907, "fields": { - "spell": "seed-bomb-a5e", + "parent": "seed-bomb-a5e", "type": "slot_level_6", "damage_roll": "8d6", "target_count": null, @@ -16287,7 +16287,7 @@ "model": "api_v2.spellcastingoption", "pk": 1908, "fields": { - "spell": "seed-bomb-a5e", + "parent": "seed-bomb-a5e", "type": "slot_level_7", "damage_roll": "9d6", "target_count": null, @@ -16299,7 +16299,7 @@ "model": "api_v2.spellcastingoption", "pk": 1909, "fields": { - "spell": "seed-bomb-a5e", + "parent": "seed-bomb-a5e", "type": "slot_level_8", "damage_roll": "10d6", "target_count": null, @@ -16311,7 +16311,7 @@ "model": "api_v2.spellcastingoption", "pk": 1910, "fields": { - "spell": "seed-bomb-a5e", + "parent": "seed-bomb-a5e", "type": "slot_level_9", "damage_roll": "11d6", "target_count": null, @@ -16323,7 +16323,7 @@ "model": "api_v2.spellcastingoption", "pk": 1911, "fields": { - "spell": "seeming-a5e", + "parent": "seeming-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16335,7 +16335,7 @@ "model": "api_v2.spellcastingoption", "pk": 1912, "fields": { - "spell": "sending-a5e", + "parent": "sending-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16347,7 +16347,7 @@ "model": "api_v2.spellcastingoption", "pk": 1913, "fields": { - "spell": "sequester-a5e", + "parent": "sequester-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16359,7 +16359,7 @@ "model": "api_v2.spellcastingoption", "pk": 1914, "fields": { - "spell": "shapechange-a5e", + "parent": "shapechange-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16371,7 +16371,7 @@ "model": "api_v2.spellcastingoption", "pk": 1915, "fields": { - "spell": "shatter-a5e", + "parent": "shatter-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16383,7 +16383,7 @@ "model": "api_v2.spellcastingoption", "pk": 1917, "fields": { - "spell": "shatter-a5e", + "parent": "shatter-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -16395,7 +16395,7 @@ "model": "api_v2.spellcastingoption", "pk": 1918, "fields": { - "spell": "shatter-a5e", + "parent": "shatter-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -16407,7 +16407,7 @@ "model": "api_v2.spellcastingoption", "pk": 1919, "fields": { - "spell": "shatter-a5e", + "parent": "shatter-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -16419,7 +16419,7 @@ "model": "api_v2.spellcastingoption", "pk": 1920, "fields": { - "spell": "shatter-a5e", + "parent": "shatter-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -16431,7 +16431,7 @@ "model": "api_v2.spellcastingoption", "pk": 1921, "fields": { - "spell": "shatter-a5e", + "parent": "shatter-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -16443,7 +16443,7 @@ "model": "api_v2.spellcastingoption", "pk": 1922, "fields": { - "spell": "shatter-a5e", + "parent": "shatter-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -16455,7 +16455,7 @@ "model": "api_v2.spellcastingoption", "pk": 1923, "fields": { - "spell": "shatter-a5e", + "parent": "shatter-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -16467,7 +16467,7 @@ "model": "api_v2.spellcastingoption", "pk": 1924, "fields": { - "spell": "shattering-barrage-a5e", + "parent": "shattering-barrage-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16479,7 +16479,7 @@ "model": "api_v2.spellcastingoption", "pk": 1926, "fields": { - "spell": "shattering-barrage-a5e", + "parent": "shattering-barrage-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -16491,7 +16491,7 @@ "model": "api_v2.spellcastingoption", "pk": 1927, "fields": { - "spell": "shattering-barrage-a5e", + "parent": "shattering-barrage-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -16503,7 +16503,7 @@ "model": "api_v2.spellcastingoption", "pk": 1928, "fields": { - "spell": "shattering-barrage-a5e", + "parent": "shattering-barrage-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -16515,7 +16515,7 @@ "model": "api_v2.spellcastingoption", "pk": 1929, "fields": { - "spell": "shattering-barrage-a5e", + "parent": "shattering-barrage-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -16527,7 +16527,7 @@ "model": "api_v2.spellcastingoption", "pk": 1930, "fields": { - "spell": "shattering-barrage-a5e", + "parent": "shattering-barrage-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -16539,7 +16539,7 @@ "model": "api_v2.spellcastingoption", "pk": 1931, "fields": { - "spell": "shattering-barrage-a5e", + "parent": "shattering-barrage-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -16551,7 +16551,7 @@ "model": "api_v2.spellcastingoption", "pk": 1932, "fields": { - "spell": "shattering-barrage-a5e", + "parent": "shattering-barrage-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -16563,7 +16563,7 @@ "model": "api_v2.spellcastingoption", "pk": 1933, "fields": { - "spell": "shield-a5e", + "parent": "shield-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16575,7 +16575,7 @@ "model": "api_v2.spellcastingoption", "pk": 1934, "fields": { - "spell": "shield-of-faith-a5e", + "parent": "shield-of-faith-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16587,7 +16587,7 @@ "model": "api_v2.spellcastingoption", "pk": 1936, "fields": { - "spell": "shield-of-faith-a5e", + "parent": "shield-of-faith-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -16599,7 +16599,7 @@ "model": "api_v2.spellcastingoption", "pk": 1937, "fields": { - "spell": "shield-of-faith-a5e", + "parent": "shield-of-faith-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -16611,7 +16611,7 @@ "model": "api_v2.spellcastingoption", "pk": 1938, "fields": { - "spell": "shield-of-faith-a5e", + "parent": "shield-of-faith-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -16623,7 +16623,7 @@ "model": "api_v2.spellcastingoption", "pk": 1939, "fields": { - "spell": "shield-of-faith-a5e", + "parent": "shield-of-faith-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -16635,7 +16635,7 @@ "model": "api_v2.spellcastingoption", "pk": 1940, "fields": { - "spell": "shield-of-faith-a5e", + "parent": "shield-of-faith-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -16647,7 +16647,7 @@ "model": "api_v2.spellcastingoption", "pk": 1941, "fields": { - "spell": "shield-of-faith-a5e", + "parent": "shield-of-faith-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -16659,7 +16659,7 @@ "model": "api_v2.spellcastingoption", "pk": 1942, "fields": { - "spell": "shield-of-faith-a5e", + "parent": "shield-of-faith-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -16671,7 +16671,7 @@ "model": "api_v2.spellcastingoption", "pk": 1943, "fields": { - "spell": "shield-of-faith-a5e", + "parent": "shield-of-faith-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -16683,7 +16683,7 @@ "model": "api_v2.spellcastingoption", "pk": 1944, "fields": { - "spell": "shillelagh-a5e", + "parent": "shillelagh-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16695,7 +16695,7 @@ "model": "api_v2.spellcastingoption", "pk": 1945, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16707,7 +16707,7 @@ "model": "api_v2.spellcastingoption", "pk": 1946, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_1", "damage_roll": "", "target_count": null, @@ -16719,7 +16719,7 @@ "model": "api_v2.spellcastingoption", "pk": 1947, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_2", "damage_roll": "", "target_count": null, @@ -16731,7 +16731,7 @@ "model": "api_v2.spellcastingoption", "pk": 1948, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_3", "damage_roll": "", "target_count": null, @@ -16743,7 +16743,7 @@ "model": "api_v2.spellcastingoption", "pk": 1949, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_4", "damage_roll": "", "target_count": null, @@ -16755,7 +16755,7 @@ "model": "api_v2.spellcastingoption", "pk": 1950, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_5", "damage_roll": "2d8", "target_count": null, @@ -16767,7 +16767,7 @@ "model": "api_v2.spellcastingoption", "pk": 1951, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_6", "damage_roll": "2d8", "target_count": null, @@ -16779,7 +16779,7 @@ "model": "api_v2.spellcastingoption", "pk": 1952, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_7", "damage_roll": "2d8", "target_count": null, @@ -16791,7 +16791,7 @@ "model": "api_v2.spellcastingoption", "pk": 1953, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_8", "damage_roll": "2d8", "target_count": null, @@ -16803,7 +16803,7 @@ "model": "api_v2.spellcastingoption", "pk": 1954, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_9", "damage_roll": "2d8", "target_count": null, @@ -16815,7 +16815,7 @@ "model": "api_v2.spellcastingoption", "pk": 1955, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_10", "damage_roll": "2d8", "target_count": null, @@ -16827,7 +16827,7 @@ "model": "api_v2.spellcastingoption", "pk": 1956, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_11", "damage_roll": "3d8", "target_count": null, @@ -16839,7 +16839,7 @@ "model": "api_v2.spellcastingoption", "pk": 1957, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_12", "damage_roll": "3d8", "target_count": null, @@ -16851,7 +16851,7 @@ "model": "api_v2.spellcastingoption", "pk": 1958, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_13", "damage_roll": "3d8", "target_count": null, @@ -16863,7 +16863,7 @@ "model": "api_v2.spellcastingoption", "pk": 1959, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_14", "damage_roll": "3d8", "target_count": null, @@ -16875,7 +16875,7 @@ "model": "api_v2.spellcastingoption", "pk": 1960, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_15", "damage_roll": "3d8", "target_count": null, @@ -16887,7 +16887,7 @@ "model": "api_v2.spellcastingoption", "pk": 1961, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_16", "damage_roll": "3d8", "target_count": null, @@ -16899,7 +16899,7 @@ "model": "api_v2.spellcastingoption", "pk": 1962, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_17", "damage_roll": "4d8", "target_count": null, @@ -16911,7 +16911,7 @@ "model": "api_v2.spellcastingoption", "pk": 1963, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_18", "damage_roll": "4d8", "target_count": null, @@ -16923,7 +16923,7 @@ "model": "api_v2.spellcastingoption", "pk": 1964, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_19", "damage_roll": "4d8", "target_count": null, @@ -16935,7 +16935,7 @@ "model": "api_v2.spellcastingoption", "pk": 1965, "fields": { - "spell": "shocking-grasp-a5e", + "parent": "shocking-grasp-a5e", "type": "player_level_20", "damage_roll": "4d8", "target_count": null, @@ -16947,7 +16947,7 @@ "model": "api_v2.spellcastingoption", "pk": 1966, "fields": { - "spell": "silence-a5e", + "parent": "silence-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16959,7 +16959,7 @@ "model": "api_v2.spellcastingoption", "pk": 1967, "fields": { - "spell": "silence-a5e", + "parent": "silence-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -16971,7 +16971,7 @@ "model": "api_v2.spellcastingoption", "pk": 1968, "fields": { - "spell": "silent-image-a5e", + "parent": "silent-image-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16983,7 +16983,7 @@ "model": "api_v2.spellcastingoption", "pk": 1969, "fields": { - "spell": "simulacrum-a5e", + "parent": "simulacrum-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -16995,7 +16995,7 @@ "model": "api_v2.spellcastingoption", "pk": 1970, "fields": { - "spell": "sleep-a5e", + "parent": "sleep-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17007,7 +17007,7 @@ "model": "api_v2.spellcastingoption", "pk": 1972, "fields": { - "spell": "sleep-a5e", + "parent": "sleep-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -17019,7 +17019,7 @@ "model": "api_v2.spellcastingoption", "pk": 1973, "fields": { - "spell": "sleep-a5e", + "parent": "sleep-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -17031,7 +17031,7 @@ "model": "api_v2.spellcastingoption", "pk": 1974, "fields": { - "spell": "sleep-a5e", + "parent": "sleep-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -17043,7 +17043,7 @@ "model": "api_v2.spellcastingoption", "pk": 1975, "fields": { - "spell": "sleep-a5e", + "parent": "sleep-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -17055,7 +17055,7 @@ "model": "api_v2.spellcastingoption", "pk": 1976, "fields": { - "spell": "sleep-a5e", + "parent": "sleep-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -17067,7 +17067,7 @@ "model": "api_v2.spellcastingoption", "pk": 1977, "fields": { - "spell": "sleep-a5e", + "parent": "sleep-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -17079,7 +17079,7 @@ "model": "api_v2.spellcastingoption", "pk": 1978, "fields": { - "spell": "sleep-a5e", + "parent": "sleep-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -17091,7 +17091,7 @@ "model": "api_v2.spellcastingoption", "pk": 1979, "fields": { - "spell": "sleep-a5e", + "parent": "sleep-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -17103,7 +17103,7 @@ "model": "api_v2.spellcastingoption", "pk": 1980, "fields": { - "spell": "sleet-storm-a5e", + "parent": "sleet-storm-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17115,7 +17115,7 @@ "model": "api_v2.spellcastingoption", "pk": 1981, "fields": { - "spell": "slow-a5e", + "parent": "slow-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17127,7 +17127,7 @@ "model": "api_v2.spellcastingoption", "pk": 1982, "fields": { - "spell": "soulwrought-fists-a5e", + "parent": "soulwrought-fists-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17139,7 +17139,7 @@ "model": "api_v2.spellcastingoption", "pk": 1983, "fields": { - "spell": "spare-the-dying-a5e", + "parent": "spare-the-dying-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17151,7 +17151,7 @@ "model": "api_v2.spellcastingoption", "pk": 1984, "fields": { - "spell": "speak-with-animals-a5e", + "parent": "speak-with-animals-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17163,7 +17163,7 @@ "model": "api_v2.spellcastingoption", "pk": 1985, "fields": { - "spell": "speak-with-animals-a5e", + "parent": "speak-with-animals-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -17175,7 +17175,7 @@ "model": "api_v2.spellcastingoption", "pk": 1986, "fields": { - "spell": "speak-with-dead-a5e", + "parent": "speak-with-dead-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17187,7 +17187,7 @@ "model": "api_v2.spellcastingoption", "pk": 1987, "fields": { - "spell": "speak-with-plants-a5e", + "parent": "speak-with-plants-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17199,7 +17199,7 @@ "model": "api_v2.spellcastingoption", "pk": 1988, "fields": { - "spell": "spider-climb-a5e", + "parent": "spider-climb-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17211,7 +17211,7 @@ "model": "api_v2.spellcastingoption", "pk": 1990, "fields": { - "spell": "spider-climb-a5e", + "parent": "spider-climb-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -17223,7 +17223,7 @@ "model": "api_v2.spellcastingoption", "pk": 1991, "fields": { - "spell": "spider-climb-a5e", + "parent": "spider-climb-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -17235,7 +17235,7 @@ "model": "api_v2.spellcastingoption", "pk": 1992, "fields": { - "spell": "spider-climb-a5e", + "parent": "spider-climb-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -17247,7 +17247,7 @@ "model": "api_v2.spellcastingoption", "pk": 1993, "fields": { - "spell": "spider-climb-a5e", + "parent": "spider-climb-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -17259,7 +17259,7 @@ "model": "api_v2.spellcastingoption", "pk": 1994, "fields": { - "spell": "spider-climb-a5e", + "parent": "spider-climb-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -17271,7 +17271,7 @@ "model": "api_v2.spellcastingoption", "pk": 1995, "fields": { - "spell": "spider-climb-a5e", + "parent": "spider-climb-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -17283,7 +17283,7 @@ "model": "api_v2.spellcastingoption", "pk": 1996, "fields": { - "spell": "spider-climb-a5e", + "parent": "spider-climb-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -17295,7 +17295,7 @@ "model": "api_v2.spellcastingoption", "pk": 1997, "fields": { - "spell": "spike-growth-a5e", + "parent": "spike-growth-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17307,7 +17307,7 @@ "model": "api_v2.spellcastingoption", "pk": 1998, "fields": { - "spell": "spirit-guardians-a5e", + "parent": "spirit-guardians-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17319,7 +17319,7 @@ "model": "api_v2.spellcastingoption", "pk": 2000, "fields": { - "spell": "spirit-guardians-a5e", + "parent": "spirit-guardians-a5e", "type": "slot_level_4", "damage_roll": "4d6", "target_count": null, @@ -17331,7 +17331,7 @@ "model": "api_v2.spellcastingoption", "pk": 2001, "fields": { - "spell": "spirit-guardians-a5e", + "parent": "spirit-guardians-a5e", "type": "slot_level_5", "damage_roll": "5d6", "target_count": null, @@ -17343,7 +17343,7 @@ "model": "api_v2.spellcastingoption", "pk": 2002, "fields": { - "spell": "spirit-guardians-a5e", + "parent": "spirit-guardians-a5e", "type": "slot_level_6", "damage_roll": "6d6", "target_count": null, @@ -17355,7 +17355,7 @@ "model": "api_v2.spellcastingoption", "pk": 2003, "fields": { - "spell": "spirit-guardians-a5e", + "parent": "spirit-guardians-a5e", "type": "slot_level_7", "damage_roll": "7d6", "target_count": null, @@ -17367,7 +17367,7 @@ "model": "api_v2.spellcastingoption", "pk": 2004, "fields": { - "spell": "spirit-guardians-a5e", + "parent": "spirit-guardians-a5e", "type": "slot_level_8", "damage_roll": "8d6", "target_count": null, @@ -17379,7 +17379,7 @@ "model": "api_v2.spellcastingoption", "pk": 2005, "fields": { - "spell": "spirit-guardians-a5e", + "parent": "spirit-guardians-a5e", "type": "slot_level_9", "damage_roll": "9d6", "target_count": null, @@ -17391,7 +17391,7 @@ "model": "api_v2.spellcastingoption", "pk": 2006, "fields": { - "spell": "spiritual-weapon-a5e", + "parent": "spiritual-weapon-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17403,7 +17403,7 @@ "model": "api_v2.spellcastingoption", "pk": 2008, "fields": { - "spell": "spiritual-weapon-a5e", + "parent": "spiritual-weapon-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -17415,7 +17415,7 @@ "model": "api_v2.spellcastingoption", "pk": 2009, "fields": { - "spell": "spiritual-weapon-a5e", + "parent": "spiritual-weapon-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -17427,7 +17427,7 @@ "model": "api_v2.spellcastingoption", "pk": 2010, "fields": { - "spell": "spiritual-weapon-a5e", + "parent": "spiritual-weapon-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -17439,7 +17439,7 @@ "model": "api_v2.spellcastingoption", "pk": 2011, "fields": { - "spell": "spiritual-weapon-a5e", + "parent": "spiritual-weapon-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -17451,7 +17451,7 @@ "model": "api_v2.spellcastingoption", "pk": 2012, "fields": { - "spell": "spiritual-weapon-a5e", + "parent": "spiritual-weapon-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -17463,7 +17463,7 @@ "model": "api_v2.spellcastingoption", "pk": 2013, "fields": { - "spell": "spiritual-weapon-a5e", + "parent": "spiritual-weapon-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -17475,7 +17475,7 @@ "model": "api_v2.spellcastingoption", "pk": 2014, "fields": { - "spell": "spiritual-weapon-a5e", + "parent": "spiritual-weapon-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -17487,7 +17487,7 @@ "model": "api_v2.spellcastingoption", "pk": 2015, "fields": { - "spell": "sporesight-a5e", + "parent": "sporesight-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17499,7 +17499,7 @@ "model": "api_v2.spellcastingoption", "pk": 2016, "fields": { - "spell": "stinking-cloud-a5e", + "parent": "stinking-cloud-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17511,7 +17511,7 @@ "model": "api_v2.spellcastingoption", "pk": 2018, "fields": { - "spell": "stinking-cloud-a5e", + "parent": "stinking-cloud-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -17523,7 +17523,7 @@ "model": "api_v2.spellcastingoption", "pk": 2019, "fields": { - "spell": "stinking-cloud-a5e", + "parent": "stinking-cloud-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -17535,7 +17535,7 @@ "model": "api_v2.spellcastingoption", "pk": 2020, "fields": { - "spell": "stinking-cloud-a5e", + "parent": "stinking-cloud-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -17547,7 +17547,7 @@ "model": "api_v2.spellcastingoption", "pk": 2021, "fields": { - "spell": "stinking-cloud-a5e", + "parent": "stinking-cloud-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -17559,7 +17559,7 @@ "model": "api_v2.spellcastingoption", "pk": 2022, "fields": { - "spell": "stinking-cloud-a5e", + "parent": "stinking-cloud-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -17571,7 +17571,7 @@ "model": "api_v2.spellcastingoption", "pk": 2023, "fields": { - "spell": "stinking-cloud-a5e", + "parent": "stinking-cloud-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -17583,7 +17583,7 @@ "model": "api_v2.spellcastingoption", "pk": 2024, "fields": { - "spell": "stone-shape-a5e", + "parent": "stone-shape-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17595,7 +17595,7 @@ "model": "api_v2.spellcastingoption", "pk": 2026, "fields": { - "spell": "stone-shape-a5e", + "parent": "stone-shape-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -17607,7 +17607,7 @@ "model": "api_v2.spellcastingoption", "pk": 2027, "fields": { - "spell": "stone-shape-a5e", + "parent": "stone-shape-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -17619,7 +17619,7 @@ "model": "api_v2.spellcastingoption", "pk": 2028, "fields": { - "spell": "stone-shape-a5e", + "parent": "stone-shape-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -17631,7 +17631,7 @@ "model": "api_v2.spellcastingoption", "pk": 2029, "fields": { - "spell": "stone-shape-a5e", + "parent": "stone-shape-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -17643,7 +17643,7 @@ "model": "api_v2.spellcastingoption", "pk": 2030, "fields": { - "spell": "stone-shape-a5e", + "parent": "stone-shape-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -17655,7 +17655,7 @@ "model": "api_v2.spellcastingoption", "pk": 2031, "fields": { - "spell": "stoneskin-a5e", + "parent": "stoneskin-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17667,7 +17667,7 @@ "model": "api_v2.spellcastingoption", "pk": 2033, "fields": { - "spell": "stoneskin-a5e", + "parent": "stoneskin-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -17679,7 +17679,7 @@ "model": "api_v2.spellcastingoption", "pk": 2034, "fields": { - "spell": "stoneskin-a5e", + "parent": "stoneskin-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -17691,7 +17691,7 @@ "model": "api_v2.spellcastingoption", "pk": 2035, "fields": { - "spell": "stoneskin-a5e", + "parent": "stoneskin-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -17703,7 +17703,7 @@ "model": "api_v2.spellcastingoption", "pk": 2036, "fields": { - "spell": "stoneskin-a5e", + "parent": "stoneskin-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -17715,7 +17715,7 @@ "model": "api_v2.spellcastingoption", "pk": 2037, "fields": { - "spell": "stoneskin-a5e", + "parent": "stoneskin-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -17727,7 +17727,7 @@ "model": "api_v2.spellcastingoption", "pk": 2038, "fields": { - "spell": "storm-kick-a5e", + "parent": "storm-kick-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17739,7 +17739,7 @@ "model": "api_v2.spellcastingoption", "pk": 2040, "fields": { - "spell": "storm-kick-a5e", + "parent": "storm-kick-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -17751,7 +17751,7 @@ "model": "api_v2.spellcastingoption", "pk": 2041, "fields": { - "spell": "storm-kick-a5e", + "parent": "storm-kick-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -17763,7 +17763,7 @@ "model": "api_v2.spellcastingoption", "pk": 2042, "fields": { - "spell": "storm-kick-a5e", + "parent": "storm-kick-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -17775,7 +17775,7 @@ "model": "api_v2.spellcastingoption", "pk": 2043, "fields": { - "spell": "storm-kick-a5e", + "parent": "storm-kick-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -17787,7 +17787,7 @@ "model": "api_v2.spellcastingoption", "pk": 2044, "fields": { - "spell": "storm-of-vengeance-a5e", + "parent": "storm-of-vengeance-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17799,7 +17799,7 @@ "model": "api_v2.spellcastingoption", "pk": 2045, "fields": { - "spell": "suggestion-a5e", + "parent": "suggestion-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17811,7 +17811,7 @@ "model": "api_v2.spellcastingoption", "pk": 2047, "fields": { - "spell": "suggestion-a5e", + "parent": "suggestion-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -17823,7 +17823,7 @@ "model": "api_v2.spellcastingoption", "pk": 2048, "fields": { - "spell": "suggestion-a5e", + "parent": "suggestion-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -17835,7 +17835,7 @@ "model": "api_v2.spellcastingoption", "pk": 2049, "fields": { - "spell": "suggestion-a5e", + "parent": "suggestion-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -17847,7 +17847,7 @@ "model": "api_v2.spellcastingoption", "pk": 2050, "fields": { - "spell": "suggestion-a5e", + "parent": "suggestion-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -17859,7 +17859,7 @@ "model": "api_v2.spellcastingoption", "pk": 2051, "fields": { - "spell": "suggestion-a5e", + "parent": "suggestion-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -17871,7 +17871,7 @@ "model": "api_v2.spellcastingoption", "pk": 2052, "fields": { - "spell": "suggestion-a5e", + "parent": "suggestion-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -17883,7 +17883,7 @@ "model": "api_v2.spellcastingoption", "pk": 2053, "fields": { - "spell": "suggestion-a5e", + "parent": "suggestion-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -17895,7 +17895,7 @@ "model": "api_v2.spellcastingoption", "pk": 2054, "fields": { - "spell": "sunbeam-a5e", + "parent": "sunbeam-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17907,7 +17907,7 @@ "model": "api_v2.spellcastingoption", "pk": 2056, "fields": { - "spell": "sunbeam-a5e", + "parent": "sunbeam-a5e", "type": "slot_level_7", "damage_roll": "7d8", "target_count": null, @@ -17919,7 +17919,7 @@ "model": "api_v2.spellcastingoption", "pk": 2057, "fields": { - "spell": "sunbeam-a5e", + "parent": "sunbeam-a5e", "type": "slot_level_8", "damage_roll": "8d8", "target_count": null, @@ -17931,7 +17931,7 @@ "model": "api_v2.spellcastingoption", "pk": 2058, "fields": { - "spell": "sunbeam-a5e", + "parent": "sunbeam-a5e", "type": "slot_level_9", "damage_roll": "9d8", "target_count": null, @@ -17943,7 +17943,7 @@ "model": "api_v2.spellcastingoption", "pk": 2059, "fields": { - "spell": "sunburst-a5e", + "parent": "sunburst-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17955,7 +17955,7 @@ "model": "api_v2.spellcastingoption", "pk": 2061, "fields": { - "spell": "sunburst-a5e", + "parent": "sunburst-a5e", "type": "slot_level_9", "damage_roll": "14d6", "target_count": null, @@ -17967,7 +17967,7 @@ "model": "api_v2.spellcastingoption", "pk": 2062, "fields": { - "spell": "symbol-a5e", + "parent": "symbol-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17979,7 +17979,7 @@ "model": "api_v2.spellcastingoption", "pk": 2063, "fields": { - "spell": "tearful-sonnet-a5e", + "parent": "tearful-sonnet-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -17991,7 +17991,7 @@ "model": "api_v2.spellcastingoption", "pk": 2065, "fields": { - "spell": "tearful-sonnet-a5e", + "parent": "tearful-sonnet-a5e", "type": "slot_level_5", "damage_roll": "4d4", "target_count": null, @@ -18003,7 +18003,7 @@ "model": "api_v2.spellcastingoption", "pk": 2066, "fields": { - "spell": "tearful-sonnet-a5e", + "parent": "tearful-sonnet-a5e", "type": "slot_level_6", "damage_roll": "6d4", "target_count": null, @@ -18015,7 +18015,7 @@ "model": "api_v2.spellcastingoption", "pk": 2067, "fields": { - "spell": "tearful-sonnet-a5e", + "parent": "tearful-sonnet-a5e", "type": "slot_level_7", "damage_roll": "8d4", "target_count": null, @@ -18027,7 +18027,7 @@ "model": "api_v2.spellcastingoption", "pk": 2068, "fields": { - "spell": "tearful-sonnet-a5e", + "parent": "tearful-sonnet-a5e", "type": "slot_level_8", "damage_roll": "10d4", "target_count": null, @@ -18039,7 +18039,7 @@ "model": "api_v2.spellcastingoption", "pk": 2069, "fields": { - "spell": "tearful-sonnet-a5e", + "parent": "tearful-sonnet-a5e", "type": "slot_level_9", "damage_roll": "12d4", "target_count": null, @@ -18051,7 +18051,7 @@ "model": "api_v2.spellcastingoption", "pk": 2070, "fields": { - "spell": "telekinesis-a5e", + "parent": "telekinesis-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18063,7 +18063,7 @@ "model": "api_v2.spellcastingoption", "pk": 2072, "fields": { - "spell": "telekinesis-a5e", + "parent": "telekinesis-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -18075,7 +18075,7 @@ "model": "api_v2.spellcastingoption", "pk": 2073, "fields": { - "spell": "telekinesis-a5e", + "parent": "telekinesis-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -18087,7 +18087,7 @@ "model": "api_v2.spellcastingoption", "pk": 2074, "fields": { - "spell": "telekinesis-a5e", + "parent": "telekinesis-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -18099,7 +18099,7 @@ "model": "api_v2.spellcastingoption", "pk": 2075, "fields": { - "spell": "telekinesis-a5e", + "parent": "telekinesis-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -18111,7 +18111,7 @@ "model": "api_v2.spellcastingoption", "pk": 2076, "fields": { - "spell": "telepathic-bond-a5e", + "parent": "telepathic-bond-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18123,7 +18123,7 @@ "model": "api_v2.spellcastingoption", "pk": 2077, "fields": { - "spell": "telepathic-bond-a5e", + "parent": "telepathic-bond-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -18135,7 +18135,7 @@ "model": "api_v2.spellcastingoption", "pk": 2079, "fields": { - "spell": "telepathic-bond-a5e", + "parent": "telepathic-bond-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -18147,7 +18147,7 @@ "model": "api_v2.spellcastingoption", "pk": 2080, "fields": { - "spell": "telepathic-bond-a5e", + "parent": "telepathic-bond-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -18159,7 +18159,7 @@ "model": "api_v2.spellcastingoption", "pk": 2081, "fields": { - "spell": "telepathic-bond-a5e", + "parent": "telepathic-bond-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -18171,7 +18171,7 @@ "model": "api_v2.spellcastingoption", "pk": 2082, "fields": { - "spell": "telepathic-bond-a5e", + "parent": "telepathic-bond-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -18183,7 +18183,7 @@ "model": "api_v2.spellcastingoption", "pk": 2083, "fields": { - "spell": "teleport-a5e", + "parent": "teleport-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18195,7 +18195,7 @@ "model": "api_v2.spellcastingoption", "pk": 2084, "fields": { - "spell": "teleport-a5e", + "parent": "teleport-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -18207,7 +18207,7 @@ "model": "api_v2.spellcastingoption", "pk": 2085, "fields": { - "spell": "teleportation-circle-a5e", + "parent": "teleportation-circle-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18219,7 +18219,7 @@ "model": "api_v2.spellcastingoption", "pk": 2086, "fields": { - "spell": "thaumaturgy-a5e", + "parent": "thaumaturgy-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18231,7 +18231,7 @@ "model": "api_v2.spellcastingoption", "pk": 2087, "fields": { - "spell": "thunderwave-a5e", + "parent": "thunderwave-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18243,7 +18243,7 @@ "model": "api_v2.spellcastingoption", "pk": 2089, "fields": { - "spell": "thunderwave-a5e", + "parent": "thunderwave-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -18255,7 +18255,7 @@ "model": "api_v2.spellcastingoption", "pk": 2090, "fields": { - "spell": "thunderwave-a5e", + "parent": "thunderwave-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -18267,7 +18267,7 @@ "model": "api_v2.spellcastingoption", "pk": 2091, "fields": { - "spell": "thunderwave-a5e", + "parent": "thunderwave-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -18279,7 +18279,7 @@ "model": "api_v2.spellcastingoption", "pk": 2092, "fields": { - "spell": "thunderwave-a5e", + "parent": "thunderwave-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -18291,7 +18291,7 @@ "model": "api_v2.spellcastingoption", "pk": 2093, "fields": { - "spell": "thunderwave-a5e", + "parent": "thunderwave-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -18303,7 +18303,7 @@ "model": "api_v2.spellcastingoption", "pk": 2094, "fields": { - "spell": "thunderwave-a5e", + "parent": "thunderwave-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -18315,7 +18315,7 @@ "model": "api_v2.spellcastingoption", "pk": 2095, "fields": { - "spell": "thunderwave-a5e", + "parent": "thunderwave-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -18327,7 +18327,7 @@ "model": "api_v2.spellcastingoption", "pk": 2096, "fields": { - "spell": "thunderwave-a5e", + "parent": "thunderwave-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -18339,7 +18339,7 @@ "model": "api_v2.spellcastingoption", "pk": 2097, "fields": { - "spell": "time-stop-a5e", + "parent": "time-stop-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18351,7 +18351,7 @@ "model": "api_v2.spellcastingoption", "pk": 2098, "fields": { - "spell": "tiny-hut-a5e", + "parent": "tiny-hut-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18363,7 +18363,7 @@ "model": "api_v2.spellcastingoption", "pk": 2099, "fields": { - "spell": "tiny-hut-a5e", + "parent": "tiny-hut-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -18375,7 +18375,7 @@ "model": "api_v2.spellcastingoption", "pk": 2100, "fields": { - "spell": "tongues-a5e", + "parent": "tongues-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18387,7 +18387,7 @@ "model": "api_v2.spellcastingoption", "pk": 2101, "fields": { - "spell": "transport-via-plants-a5e", + "parent": "transport-via-plants-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18399,7 +18399,7 @@ "model": "api_v2.spellcastingoption", "pk": 2102, "fields": { - "spell": "travelers-ward-a5e", + "parent": "travelers-ward-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18411,7 +18411,7 @@ "model": "api_v2.spellcastingoption", "pk": 2103, "fields": { - "spell": "tree-stride-a5e", + "parent": "tree-stride-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18423,7 +18423,7 @@ "model": "api_v2.spellcastingoption", "pk": 2105, "fields": { - "spell": "tree-stride-a5e", + "parent": "tree-stride-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": 2, @@ -18435,7 +18435,7 @@ "model": "api_v2.spellcastingoption", "pk": 2106, "fields": { - "spell": "tree-stride-a5e", + "parent": "tree-stride-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": 3, @@ -18447,7 +18447,7 @@ "model": "api_v2.spellcastingoption", "pk": 2107, "fields": { - "spell": "tree-stride-a5e", + "parent": "tree-stride-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": 4, @@ -18459,7 +18459,7 @@ "model": "api_v2.spellcastingoption", "pk": 2108, "fields": { - "spell": "tree-stride-a5e", + "parent": "tree-stride-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": 5, @@ -18471,7 +18471,7 @@ "model": "api_v2.spellcastingoption", "pk": 2109, "fields": { - "spell": "true-polymorph-a5e", + "parent": "true-polymorph-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18483,7 +18483,7 @@ "model": "api_v2.spellcastingoption", "pk": 2110, "fields": { - "spell": "true-resurrection-a5e", + "parent": "true-resurrection-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18495,7 +18495,7 @@ "model": "api_v2.spellcastingoption", "pk": 2111, "fields": { - "spell": "true-seeing-a5e", + "parent": "true-seeing-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18507,7 +18507,7 @@ "model": "api_v2.spellcastingoption", "pk": 2112, "fields": { - "spell": "true-strike-a5e", + "parent": "true-strike-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18519,7 +18519,7 @@ "model": "api_v2.spellcastingoption", "pk": 2113, "fields": { - "spell": "unholy-star-a5e", + "parent": "unholy-star-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18531,7 +18531,7 @@ "model": "api_v2.spellcastingoption", "pk": 2114, "fields": { - "spell": "unseen-servant-a5e", + "parent": "unseen-servant-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18543,7 +18543,7 @@ "model": "api_v2.spellcastingoption", "pk": 2115, "fields": { - "spell": "unseen-servant-a5e", + "parent": "unseen-servant-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -18555,7 +18555,7 @@ "model": "api_v2.spellcastingoption", "pk": 2117, "fields": { - "spell": "unseen-servant-a5e", + "parent": "unseen-servant-a5e", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -18567,7 +18567,7 @@ "model": "api_v2.spellcastingoption", "pk": 2118, "fields": { - "spell": "unseen-servant-a5e", + "parent": "unseen-servant-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -18579,7 +18579,7 @@ "model": "api_v2.spellcastingoption", "pk": 2119, "fields": { - "spell": "unseen-servant-a5e", + "parent": "unseen-servant-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -18591,7 +18591,7 @@ "model": "api_v2.spellcastingoption", "pk": 2120, "fields": { - "spell": "unseen-servant-a5e", + "parent": "unseen-servant-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -18603,7 +18603,7 @@ "model": "api_v2.spellcastingoption", "pk": 2121, "fields": { - "spell": "unseen-servant-a5e", + "parent": "unseen-servant-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -18615,7 +18615,7 @@ "model": "api_v2.spellcastingoption", "pk": 2122, "fields": { - "spell": "unseen-servant-a5e", + "parent": "unseen-servant-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -18627,7 +18627,7 @@ "model": "api_v2.spellcastingoption", "pk": 2123, "fields": { - "spell": "unseen-servant-a5e", + "parent": "unseen-servant-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -18639,7 +18639,7 @@ "model": "api_v2.spellcastingoption", "pk": 2124, "fields": { - "spell": "unseen-servant-a5e", + "parent": "unseen-servant-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -18651,7 +18651,7 @@ "model": "api_v2.spellcastingoption", "pk": 2125, "fields": { - "spell": "vampiric-touch-a5e", + "parent": "vampiric-touch-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18663,7 +18663,7 @@ "model": "api_v2.spellcastingoption", "pk": 2127, "fields": { - "spell": "vampiric-touch-a5e", + "parent": "vampiric-touch-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -18675,7 +18675,7 @@ "model": "api_v2.spellcastingoption", "pk": 2128, "fields": { - "spell": "vampiric-touch-a5e", + "parent": "vampiric-touch-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -18687,7 +18687,7 @@ "model": "api_v2.spellcastingoption", "pk": 2129, "fields": { - "spell": "vampiric-touch-a5e", + "parent": "vampiric-touch-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -18699,7 +18699,7 @@ "model": "api_v2.spellcastingoption", "pk": 2130, "fields": { - "spell": "vampiric-touch-a5e", + "parent": "vampiric-touch-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -18711,7 +18711,7 @@ "model": "api_v2.spellcastingoption", "pk": 2131, "fields": { - "spell": "vampiric-touch-a5e", + "parent": "vampiric-touch-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -18723,7 +18723,7 @@ "model": "api_v2.spellcastingoption", "pk": 2132, "fields": { - "spell": "vampiric-touch-a5e", + "parent": "vampiric-touch-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -18735,7 +18735,7 @@ "model": "api_v2.spellcastingoption", "pk": 2133, "fields": { - "spell": "venomous-succor-a5e", + "parent": "venomous-succor-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18747,7 +18747,7 @@ "model": "api_v2.spellcastingoption", "pk": 2135, "fields": { - "spell": "venomous-succor-a5e", + "parent": "venomous-succor-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -18759,7 +18759,7 @@ "model": "api_v2.spellcastingoption", "pk": 2136, "fields": { - "spell": "venomous-succor-a5e", + "parent": "venomous-succor-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -18771,7 +18771,7 @@ "model": "api_v2.spellcastingoption", "pk": 2137, "fields": { - "spell": "venomous-succor-a5e", + "parent": "venomous-succor-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -18783,7 +18783,7 @@ "model": "api_v2.spellcastingoption", "pk": 2138, "fields": { - "spell": "venomous-succor-a5e", + "parent": "venomous-succor-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -18795,7 +18795,7 @@ "model": "api_v2.spellcastingoption", "pk": 2139, "fields": { - "spell": "venomous-succor-a5e", + "parent": "venomous-succor-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -18807,7 +18807,7 @@ "model": "api_v2.spellcastingoption", "pk": 2140, "fields": { - "spell": "venomous-succor-a5e", + "parent": "venomous-succor-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -18819,7 +18819,7 @@ "model": "api_v2.spellcastingoption", "pk": 2141, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -18831,7 +18831,7 @@ "model": "api_v2.spellcastingoption", "pk": 2142, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_1", "damage_roll": "1d6", "target_count": null, @@ -18843,7 +18843,7 @@ "model": "api_v2.spellcastingoption", "pk": 2143, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_2", "damage_roll": "1d6", "target_count": null, @@ -18855,7 +18855,7 @@ "model": "api_v2.spellcastingoption", "pk": 2144, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_3", "damage_roll": "1d6", "target_count": null, @@ -18867,7 +18867,7 @@ "model": "api_v2.spellcastingoption", "pk": 2145, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_4", "damage_roll": "1d6", "target_count": null, @@ -18879,7 +18879,7 @@ "model": "api_v2.spellcastingoption", "pk": 2146, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_5", "damage_roll": "2d6", "target_count": null, @@ -18891,7 +18891,7 @@ "model": "api_v2.spellcastingoption", "pk": 2147, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_6", "damage_roll": "2d6", "target_count": null, @@ -18903,7 +18903,7 @@ "model": "api_v2.spellcastingoption", "pk": 2148, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_7", "damage_roll": "2d6", "target_count": null, @@ -18915,7 +18915,7 @@ "model": "api_v2.spellcastingoption", "pk": 2149, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_8", "damage_roll": "2d6", "target_count": null, @@ -18927,7 +18927,7 @@ "model": "api_v2.spellcastingoption", "pk": 2150, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_9", "damage_roll": "2d6", "target_count": null, @@ -18939,7 +18939,7 @@ "model": "api_v2.spellcastingoption", "pk": 2151, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_10", "damage_roll": "2d6", "target_count": null, @@ -18951,7 +18951,7 @@ "model": "api_v2.spellcastingoption", "pk": 2152, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_11", "damage_roll": "3d6", "target_count": null, @@ -18963,7 +18963,7 @@ "model": "api_v2.spellcastingoption", "pk": 2153, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_12", "damage_roll": "3d6", "target_count": null, @@ -18975,7 +18975,7 @@ "model": "api_v2.spellcastingoption", "pk": 2154, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_13", "damage_roll": "3d6", "target_count": null, @@ -18987,7 +18987,7 @@ "model": "api_v2.spellcastingoption", "pk": 2155, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_14", "damage_roll": "3d6", "target_count": null, @@ -18999,7 +18999,7 @@ "model": "api_v2.spellcastingoption", "pk": 2156, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_15", "damage_roll": "3d6", "target_count": null, @@ -19011,7 +19011,7 @@ "model": "api_v2.spellcastingoption", "pk": 2157, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_16", "damage_roll": "3d6", "target_count": null, @@ -19023,7 +19023,7 @@ "model": "api_v2.spellcastingoption", "pk": 2158, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_17", "damage_roll": "4d6", "target_count": null, @@ -19035,7 +19035,7 @@ "model": "api_v2.spellcastingoption", "pk": 2159, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_18", "damage_roll": "4d6", "target_count": null, @@ -19047,7 +19047,7 @@ "model": "api_v2.spellcastingoption", "pk": 2160, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_19", "damage_roll": "4d6", "target_count": null, @@ -19059,7 +19059,7 @@ "model": "api_v2.spellcastingoption", "pk": 2161, "fields": { - "spell": "vicious-mockery-a5e", + "parent": "vicious-mockery-a5e", "type": "player_level_20", "damage_roll": "4d6", "target_count": null, @@ -19071,7 +19071,7 @@ "model": "api_v2.spellcastingoption", "pk": 2162, "fields": { - "spell": "wall-of-fire-a5e", + "parent": "wall-of-fire-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19083,7 +19083,7 @@ "model": "api_v2.spellcastingoption", "pk": 2164, "fields": { - "spell": "wall-of-fire-a5e", + "parent": "wall-of-fire-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -19095,7 +19095,7 @@ "model": "api_v2.spellcastingoption", "pk": 2165, "fields": { - "spell": "wall-of-fire-a5e", + "parent": "wall-of-fire-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -19107,7 +19107,7 @@ "model": "api_v2.spellcastingoption", "pk": 2166, "fields": { - "spell": "wall-of-fire-a5e", + "parent": "wall-of-fire-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19119,7 +19119,7 @@ "model": "api_v2.spellcastingoption", "pk": 2167, "fields": { - "spell": "wall-of-fire-a5e", + "parent": "wall-of-fire-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19131,7 +19131,7 @@ "model": "api_v2.spellcastingoption", "pk": 2168, "fields": { - "spell": "wall-of-fire-a5e", + "parent": "wall-of-fire-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19143,7 +19143,7 @@ "model": "api_v2.spellcastingoption", "pk": 2169, "fields": { - "spell": "wall-of-flesh-a5e", + "parent": "wall-of-flesh-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19155,7 +19155,7 @@ "model": "api_v2.spellcastingoption", "pk": 2171, "fields": { - "spell": "wall-of-flesh-a5e", + "parent": "wall-of-flesh-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19167,7 +19167,7 @@ "model": "api_v2.spellcastingoption", "pk": 2172, "fields": { - "spell": "wall-of-flesh-a5e", + "parent": "wall-of-flesh-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19179,7 +19179,7 @@ "model": "api_v2.spellcastingoption", "pk": 2173, "fields": { - "spell": "wall-of-flesh-a5e", + "parent": "wall-of-flesh-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19191,7 +19191,7 @@ "model": "api_v2.spellcastingoption", "pk": 2174, "fields": { - "spell": "wall-of-force-a5e", + "parent": "wall-of-force-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19203,7 +19203,7 @@ "model": "api_v2.spellcastingoption", "pk": 2175, "fields": { - "spell": "wall-of-ice-a5e", + "parent": "wall-of-ice-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19215,7 +19215,7 @@ "model": "api_v2.spellcastingoption", "pk": 2177, "fields": { - "spell": "wall-of-ice-a5e", + "parent": "wall-of-ice-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19227,7 +19227,7 @@ "model": "api_v2.spellcastingoption", "pk": 2178, "fields": { - "spell": "wall-of-ice-a5e", + "parent": "wall-of-ice-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19239,7 +19239,7 @@ "model": "api_v2.spellcastingoption", "pk": 2179, "fields": { - "spell": "wall-of-ice-a5e", + "parent": "wall-of-ice-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19251,7 +19251,7 @@ "model": "api_v2.spellcastingoption", "pk": 2180, "fields": { - "spell": "wall-of-stone-a5e", + "parent": "wall-of-stone-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19263,7 +19263,7 @@ "model": "api_v2.spellcastingoption", "pk": 2181, "fields": { - "spell": "wall-of-thorns-a5e", + "parent": "wall-of-thorns-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19275,7 +19275,7 @@ "model": "api_v2.spellcastingoption", "pk": 2183, "fields": { - "spell": "wall-of-thorns-a5e", + "parent": "wall-of-thorns-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19287,7 +19287,7 @@ "model": "api_v2.spellcastingoption", "pk": 2184, "fields": { - "spell": "wall-of-thorns-a5e", + "parent": "wall-of-thorns-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19299,7 +19299,7 @@ "model": "api_v2.spellcastingoption", "pk": 2185, "fields": { - "spell": "wall-of-thorns-a5e", + "parent": "wall-of-thorns-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19311,7 +19311,7 @@ "model": "api_v2.spellcastingoption", "pk": 2186, "fields": { - "spell": "warding-bond-a5e", + "parent": "warding-bond-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19323,7 +19323,7 @@ "model": "api_v2.spellcastingoption", "pk": 2188, "fields": { - "spell": "warding-bond-a5e", + "parent": "warding-bond-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -19335,7 +19335,7 @@ "model": "api_v2.spellcastingoption", "pk": 2189, "fields": { - "spell": "warding-bond-a5e", + "parent": "warding-bond-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -19347,7 +19347,7 @@ "model": "api_v2.spellcastingoption", "pk": 2190, "fields": { - "spell": "warding-bond-a5e", + "parent": "warding-bond-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -19359,7 +19359,7 @@ "model": "api_v2.spellcastingoption", "pk": 2191, "fields": { - "spell": "warding-bond-a5e", + "parent": "warding-bond-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -19371,7 +19371,7 @@ "model": "api_v2.spellcastingoption", "pk": 2192, "fields": { - "spell": "warding-bond-a5e", + "parent": "warding-bond-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19383,7 +19383,7 @@ "model": "api_v2.spellcastingoption", "pk": 2193, "fields": { - "spell": "warding-bond-a5e", + "parent": "warding-bond-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19395,7 +19395,7 @@ "model": "api_v2.spellcastingoption", "pk": 2194, "fields": { - "spell": "warding-bond-a5e", + "parent": "warding-bond-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19407,7 +19407,7 @@ "model": "api_v2.spellcastingoption", "pk": 2195, "fields": { - "spell": "warriors-instincts-a5e", + "parent": "warriors-instincts-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19419,7 +19419,7 @@ "model": "api_v2.spellcastingoption", "pk": 2197, "fields": { - "spell": "warriors-instincts-a5e", + "parent": "warriors-instincts-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -19431,7 +19431,7 @@ "model": "api_v2.spellcastingoption", "pk": 2198, "fields": { - "spell": "warriors-instincts-a5e", + "parent": "warriors-instincts-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19443,7 +19443,7 @@ "model": "api_v2.spellcastingoption", "pk": 2199, "fields": { - "spell": "warriors-instincts-a5e", + "parent": "warriors-instincts-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19455,7 +19455,7 @@ "model": "api_v2.spellcastingoption", "pk": 2200, "fields": { - "spell": "warriors-instincts-a5e", + "parent": "warriors-instincts-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19467,7 +19467,7 @@ "model": "api_v2.spellcastingoption", "pk": 2201, "fields": { - "spell": "water-breathing-a5e", + "parent": "water-breathing-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19479,7 +19479,7 @@ "model": "api_v2.spellcastingoption", "pk": 2202, "fields": { - "spell": "water-breathing-a5e", + "parent": "water-breathing-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -19491,7 +19491,7 @@ "model": "api_v2.spellcastingoption", "pk": 2203, "fields": { - "spell": "water-walk-a5e", + "parent": "water-walk-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19503,7 +19503,7 @@ "model": "api_v2.spellcastingoption", "pk": 2205, "fields": { - "spell": "water-walk-a5e", + "parent": "water-walk-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -19515,7 +19515,7 @@ "model": "api_v2.spellcastingoption", "pk": 2206, "fields": { - "spell": "water-walk-a5e", + "parent": "water-walk-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -19527,7 +19527,7 @@ "model": "api_v2.spellcastingoption", "pk": 2207, "fields": { - "spell": "water-walk-a5e", + "parent": "water-walk-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -19539,7 +19539,7 @@ "model": "api_v2.spellcastingoption", "pk": 2208, "fields": { - "spell": "water-walk-a5e", + "parent": "water-walk-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19551,7 +19551,7 @@ "model": "api_v2.spellcastingoption", "pk": 2209, "fields": { - "spell": "water-walk-a5e", + "parent": "water-walk-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19563,7 +19563,7 @@ "model": "api_v2.spellcastingoption", "pk": 2210, "fields": { - "spell": "water-walk-a5e", + "parent": "water-walk-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19575,7 +19575,7 @@ "model": "api_v2.spellcastingoption", "pk": 2211, "fields": { - "spell": "web-a5e", + "parent": "web-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19587,7 +19587,7 @@ "model": "api_v2.spellcastingoption", "pk": 2213, "fields": { - "spell": "web-a5e", + "parent": "web-a5e", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -19599,7 +19599,7 @@ "model": "api_v2.spellcastingoption", "pk": 2214, "fields": { - "spell": "web-a5e", + "parent": "web-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -19611,7 +19611,7 @@ "model": "api_v2.spellcastingoption", "pk": 2215, "fields": { - "spell": "web-a5e", + "parent": "web-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -19623,7 +19623,7 @@ "model": "api_v2.spellcastingoption", "pk": 2216, "fields": { - "spell": "web-a5e", + "parent": "web-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -19635,7 +19635,7 @@ "model": "api_v2.spellcastingoption", "pk": 2217, "fields": { - "spell": "web-a5e", + "parent": "web-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19647,7 +19647,7 @@ "model": "api_v2.spellcastingoption", "pk": 2218, "fields": { - "spell": "web-a5e", + "parent": "web-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19659,7 +19659,7 @@ "model": "api_v2.spellcastingoption", "pk": 2219, "fields": { - "spell": "web-a5e", + "parent": "web-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19671,7 +19671,7 @@ "model": "api_v2.spellcastingoption", "pk": 2220, "fields": { - "spell": "weird-a5e", + "parent": "weird-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19683,7 +19683,7 @@ "model": "api_v2.spellcastingoption", "pk": 2221, "fields": { - "spell": "whirlwind-kick-a5e", + "parent": "whirlwind-kick-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19695,7 +19695,7 @@ "model": "api_v2.spellcastingoption", "pk": 2223, "fields": { - "spell": "whirlwind-kick-a5e", + "parent": "whirlwind-kick-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -19707,7 +19707,7 @@ "model": "api_v2.spellcastingoption", "pk": 2224, "fields": { - "spell": "whirlwind-kick-a5e", + "parent": "whirlwind-kick-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -19719,7 +19719,7 @@ "model": "api_v2.spellcastingoption", "pk": 2225, "fields": { - "spell": "whirlwind-kick-a5e", + "parent": "whirlwind-kick-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -19731,7 +19731,7 @@ "model": "api_v2.spellcastingoption", "pk": 2226, "fields": { - "spell": "whirlwind-kick-a5e", + "parent": "whirlwind-kick-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19743,7 +19743,7 @@ "model": "api_v2.spellcastingoption", "pk": 2227, "fields": { - "spell": "whirlwind-kick-a5e", + "parent": "whirlwind-kick-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19755,7 +19755,7 @@ "model": "api_v2.spellcastingoption", "pk": 2228, "fields": { - "spell": "whirlwind-kick-a5e", + "parent": "whirlwind-kick-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19767,7 +19767,7 @@ "model": "api_v2.spellcastingoption", "pk": 2229, "fields": { - "spell": "wind-up-a5e", + "parent": "wind-up-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19779,7 +19779,7 @@ "model": "api_v2.spellcastingoption", "pk": 2230, "fields": { - "spell": "wind-walk-a5e", + "parent": "wind-walk-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19791,7 +19791,7 @@ "model": "api_v2.spellcastingoption", "pk": 2231, "fields": { - "spell": "wind-wall-a5e", + "parent": "wind-wall-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19803,7 +19803,7 @@ "model": "api_v2.spellcastingoption", "pk": 2233, "fields": { - "spell": "wind-wall-a5e", + "parent": "wind-wall-a5e", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -19815,7 +19815,7 @@ "model": "api_v2.spellcastingoption", "pk": 2234, "fields": { - "spell": "wind-wall-a5e", + "parent": "wind-wall-a5e", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -19827,7 +19827,7 @@ "model": "api_v2.spellcastingoption", "pk": 2235, "fields": { - "spell": "wind-wall-a5e", + "parent": "wind-wall-a5e", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -19839,7 +19839,7 @@ "model": "api_v2.spellcastingoption", "pk": 2236, "fields": { - "spell": "wind-wall-a5e", + "parent": "wind-wall-a5e", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19851,7 +19851,7 @@ "model": "api_v2.spellcastingoption", "pk": 2237, "fields": { - "spell": "wind-wall-a5e", + "parent": "wind-wall-a5e", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19863,7 +19863,7 @@ "model": "api_v2.spellcastingoption", "pk": 2238, "fields": { - "spell": "wind-wall-a5e", + "parent": "wind-wall-a5e", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19875,7 +19875,7 @@ "model": "api_v2.spellcastingoption", "pk": 2239, "fields": { - "spell": "wish-a5e", + "parent": "wish-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19887,7 +19887,7 @@ "model": "api_v2.spellcastingoption", "pk": 2240, "fields": { - "spell": "word-of-recall-a5e", + "parent": "word-of-recall-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19899,7 +19899,7 @@ "model": "api_v2.spellcastingoption", "pk": 2241, "fields": { - "spell": "wormway-a5e", + "parent": "wormway-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19911,7 +19911,7 @@ "model": "api_v2.spellcastingoption", "pk": 2242, "fields": { - "spell": "wormway-a5e", + "parent": "wormway-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -19923,7 +19923,7 @@ "model": "api_v2.spellcastingoption", "pk": 2243, "fields": { - "spell": "writhing-transformation-a5e", + "parent": "writhing-transformation-a5e", "type": "default", "damage_roll": null, "target_count": null, @@ -19935,7 +19935,7 @@ "model": "api_v2.spellcastingoption", "pk": 2244, "fields": { - "spell": "writhing-transformation-a5e", + "parent": "writhing-transformation-a5e", "type": "ritual", "damage_roll": null, "target_count": null, @@ -19947,7 +19947,7 @@ "model": "api_v2.spellcastingoption", "pk": 2245, "fields": { - "spell": "zone-of-truth-a5e", + "parent": "zone-of-truth-a5e", "type": "default", "damage_roll": null, "target_count": null, diff --git a/data/v2/kobold-press/deepm/SpellCastingOption.json b/data/v2/kobold-press/deepm/SpellCastingOption.json index 23f5b537..89e2d9ec 100644 --- a/data/v2/kobold-press/deepm/SpellCastingOption.json +++ b/data/v2/kobold-press/deepm/SpellCastingOption.json @@ -3,7 +3,7 @@ "model": "api_v2.spellcastingoption", "pk": 2246, "fields": { - "spell": "abhorrent-apparition", + "parent": "abhorrent-apparition", "type": "default", "damage_roll": null, "target_count": null, @@ -15,7 +15,7 @@ "model": "api_v2.spellcastingoption", "pk": 2248, "fields": { - "spell": "abhorrent-apparition", + "parent": "abhorrent-apparition", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -27,7 +27,7 @@ "model": "api_v2.spellcastingoption", "pk": 2249, "fields": { - "spell": "abhorrent-apparition", + "parent": "abhorrent-apparition", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -39,7 +39,7 @@ "model": "api_v2.spellcastingoption", "pk": 2250, "fields": { - "spell": "abhorrent-apparition", + "parent": "abhorrent-apparition", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -51,7 +51,7 @@ "model": "api_v2.spellcastingoption", "pk": 2251, "fields": { - "spell": "abhorrent-apparition", + "parent": "abhorrent-apparition", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -63,7 +63,7 @@ "model": "api_v2.spellcastingoption", "pk": 2252, "fields": { - "spell": "abhorrent-apparition", + "parent": "abhorrent-apparition", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -75,7 +75,7 @@ "model": "api_v2.spellcastingoption", "pk": 2253, "fields": { - "spell": "accelerate", + "parent": "accelerate", "type": "default", "damage_roll": null, "target_count": null, @@ -87,7 +87,7 @@ "model": "api_v2.spellcastingoption", "pk": 2255, "fields": { - "spell": "accelerate", + "parent": "accelerate", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -99,7 +99,7 @@ "model": "api_v2.spellcastingoption", "pk": 2256, "fields": { - "spell": "accelerate", + "parent": "accelerate", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -111,7 +111,7 @@ "model": "api_v2.spellcastingoption", "pk": 2257, "fields": { - "spell": "accelerate", + "parent": "accelerate", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -123,7 +123,7 @@ "model": "api_v2.spellcastingoption", "pk": 2258, "fields": { - "spell": "accelerate", + "parent": "accelerate", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -135,7 +135,7 @@ "model": "api_v2.spellcastingoption", "pk": 2259, "fields": { - "spell": "accelerate", + "parent": "accelerate", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -147,7 +147,7 @@ "model": "api_v2.spellcastingoption", "pk": 2260, "fields": { - "spell": "accelerate", + "parent": "accelerate", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -159,7 +159,7 @@ "model": "api_v2.spellcastingoption", "pk": 2261, "fields": { - "spell": "acid-gate", + "parent": "acid-gate", "type": "default", "damage_roll": null, "target_count": null, @@ -171,7 +171,7 @@ "model": "api_v2.spellcastingoption", "pk": 2263, "fields": { - "spell": "acid-gate", + "parent": "acid-gate", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -183,7 +183,7 @@ "model": "api_v2.spellcastingoption", "pk": 2264, "fields": { - "spell": "acid-gate", + "parent": "acid-gate", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -195,7 +195,7 @@ "model": "api_v2.spellcastingoption", "pk": 2265, "fields": { - "spell": "acid-rain", + "parent": "acid-rain", "type": "default", "damage_roll": null, "target_count": null, @@ -207,7 +207,7 @@ "model": "api_v2.spellcastingoption", "pk": 2267, "fields": { - "spell": "acid-rain", + "parent": "acid-rain", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -219,7 +219,7 @@ "model": "api_v2.spellcastingoption", "pk": 2268, "fields": { - "spell": "acid-rain", + "parent": "acid-rain", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -231,7 +231,7 @@ "model": "api_v2.spellcastingoption", "pk": 2269, "fields": { - "spell": "acid-rain", + "parent": "acid-rain", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -243,7 +243,7 @@ "model": "api_v2.spellcastingoption", "pk": 2270, "fields": { - "spell": "acid-rain", + "parent": "acid-rain", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -255,7 +255,7 @@ "model": "api_v2.spellcastingoption", "pk": 2271, "fields": { - "spell": "adjust-position", + "parent": "adjust-position", "type": "default", "damage_roll": null, "target_count": null, @@ -267,7 +267,7 @@ "model": "api_v2.spellcastingoption", "pk": 2273, "fields": { - "spell": "adjust-position", + "parent": "adjust-position", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -279,7 +279,7 @@ "model": "api_v2.spellcastingoption", "pk": 2274, "fields": { - "spell": "adjust-position", + "parent": "adjust-position", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -291,7 +291,7 @@ "model": "api_v2.spellcastingoption", "pk": 2275, "fields": { - "spell": "adjust-position", + "parent": "adjust-position", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -303,7 +303,7 @@ "model": "api_v2.spellcastingoption", "pk": 2276, "fields": { - "spell": "adjust-position", + "parent": "adjust-position", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -315,7 +315,7 @@ "model": "api_v2.spellcastingoption", "pk": 2277, "fields": { - "spell": "adjust-position", + "parent": "adjust-position", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -327,7 +327,7 @@ "model": "api_v2.spellcastingoption", "pk": 2278, "fields": { - "spell": "adjust-position", + "parent": "adjust-position", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -339,7 +339,7 @@ "model": "api_v2.spellcastingoption", "pk": 2279, "fields": { - "spell": "adjust-position", + "parent": "adjust-position", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -351,7 +351,7 @@ "model": "api_v2.spellcastingoption", "pk": 2280, "fields": { - "spell": "adjust-position", + "parent": "adjust-position", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -363,7 +363,7 @@ "model": "api_v2.spellcastingoption", "pk": 2281, "fields": { - "spell": "afflict-line", + "parent": "afflict-line", "type": "default", "damage_roll": null, "target_count": null, @@ -375,7 +375,7 @@ "model": "api_v2.spellcastingoption", "pk": 2282, "fields": { - "spell": "afflict-line", + "parent": "afflict-line", "type": "ritual", "damage_roll": null, "target_count": null, @@ -387,7 +387,7 @@ "model": "api_v2.spellcastingoption", "pk": 2283, "fields": { - "spell": "agonizing-mark", + "parent": "agonizing-mark", "type": "default", "damage_roll": null, "target_count": null, @@ -399,7 +399,7 @@ "model": "api_v2.spellcastingoption", "pk": 2284, "fields": { - "spell": "alchemical-form", + "parent": "alchemical-form", "type": "default", "damage_roll": null, "target_count": null, @@ -411,7 +411,7 @@ "model": "api_v2.spellcastingoption", "pk": 2285, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "default", "damage_roll": null, "target_count": null, @@ -423,7 +423,7 @@ "model": "api_v2.spellcastingoption", "pk": 2286, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -435,7 +435,7 @@ "model": "api_v2.spellcastingoption", "pk": 2287, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -447,7 +447,7 @@ "model": "api_v2.spellcastingoption", "pk": 2288, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -459,7 +459,7 @@ "model": "api_v2.spellcastingoption", "pk": 2289, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -471,7 +471,7 @@ "model": "api_v2.spellcastingoption", "pk": 2290, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_5", "damage_roll": null, "target_count": null, @@ -483,7 +483,7 @@ "model": "api_v2.spellcastingoption", "pk": 2291, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_6", "damage_roll": null, "target_count": null, @@ -495,7 +495,7 @@ "model": "api_v2.spellcastingoption", "pk": 2292, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_7", "damage_roll": null, "target_count": null, @@ -507,7 +507,7 @@ "model": "api_v2.spellcastingoption", "pk": 2293, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_8", "damage_roll": null, "target_count": null, @@ -519,7 +519,7 @@ "model": "api_v2.spellcastingoption", "pk": 2294, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_9", "damage_roll": null, "target_count": null, @@ -531,7 +531,7 @@ "model": "api_v2.spellcastingoption", "pk": 2295, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_10", "damage_roll": null, "target_count": null, @@ -543,7 +543,7 @@ "model": "api_v2.spellcastingoption", "pk": 2296, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_11", "damage_roll": null, "target_count": null, @@ -555,7 +555,7 @@ "model": "api_v2.spellcastingoption", "pk": 2297, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_12", "damage_roll": null, "target_count": null, @@ -567,7 +567,7 @@ "model": "api_v2.spellcastingoption", "pk": 2298, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_13", "damage_roll": null, "target_count": null, @@ -579,7 +579,7 @@ "model": "api_v2.spellcastingoption", "pk": 2299, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_14", "damage_roll": null, "target_count": null, @@ -591,7 +591,7 @@ "model": "api_v2.spellcastingoption", "pk": 2300, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_15", "damage_roll": null, "target_count": null, @@ -603,7 +603,7 @@ "model": "api_v2.spellcastingoption", "pk": 2301, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_16", "damage_roll": null, "target_count": null, @@ -615,7 +615,7 @@ "model": "api_v2.spellcastingoption", "pk": 2302, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_17", "damage_roll": null, "target_count": null, @@ -627,7 +627,7 @@ "model": "api_v2.spellcastingoption", "pk": 2303, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_18", "damage_roll": null, "target_count": null, @@ -639,7 +639,7 @@ "model": "api_v2.spellcastingoption", "pk": 2304, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_19", "damage_roll": null, "target_count": null, @@ -651,7 +651,7 @@ "model": "api_v2.spellcastingoption", "pk": 2305, "fields": { - "spell": "ale-dritch-blast", + "parent": "ale-dritch-blast", "type": "player_level_20", "damage_roll": null, "target_count": null, @@ -663,7 +663,7 @@ "model": "api_v2.spellcastingoption", "pk": 2306, "fields": { - "spell": "ally-aegis", + "parent": "ally-aegis", "type": "default", "damage_roll": null, "target_count": null, @@ -675,7 +675,7 @@ "model": "api_v2.spellcastingoption", "pk": 2308, "fields": { - "spell": "ally-aegis", + "parent": "ally-aegis", "type": "slot_level_7", "damage_roll": null, "target_count": 2, @@ -687,7 +687,7 @@ "model": "api_v2.spellcastingoption", "pk": 2309, "fields": { - "spell": "ally-aegis", + "parent": "ally-aegis", "type": "slot_level_8", "damage_roll": null, "target_count": 3, @@ -699,7 +699,7 @@ "model": "api_v2.spellcastingoption", "pk": 2310, "fields": { - "spell": "ally-aegis", + "parent": "ally-aegis", "type": "slot_level_9", "damage_roll": null, "target_count": 4, @@ -711,7 +711,7 @@ "model": "api_v2.spellcastingoption", "pk": 2311, "fields": { - "spell": "alone", + "parent": "alone", "type": "default", "damage_roll": null, "target_count": null, @@ -723,7 +723,7 @@ "model": "api_v2.spellcastingoption", "pk": 2312, "fields": { - "spell": "alter-arrows-fortune", + "parent": "alter-arrows-fortune", "type": "default", "damage_roll": null, "target_count": null, @@ -735,7 +735,7 @@ "model": "api_v2.spellcastingoption", "pk": 2313, "fields": { - "spell": "altheas-travel-tent", + "parent": "altheas-travel-tent", "type": "default", "damage_roll": null, "target_count": null, @@ -747,7 +747,7 @@ "model": "api_v2.spellcastingoption", "pk": 2314, "fields": { - "spell": "altheas-travel-tent", + "parent": "altheas-travel-tent", "type": "ritual", "damage_roll": null, "target_count": null, @@ -759,7 +759,7 @@ "model": "api_v2.spellcastingoption", "pk": 2316, "fields": { - "spell": "altheas-travel-tent", + "parent": "altheas-travel-tent", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -771,7 +771,7 @@ "model": "api_v2.spellcastingoption", "pk": 2317, "fields": { - "spell": "altheas-travel-tent", + "parent": "altheas-travel-tent", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -783,7 +783,7 @@ "model": "api_v2.spellcastingoption", "pk": 2318, "fields": { - "spell": "altheas-travel-tent", + "parent": "altheas-travel-tent", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -795,7 +795,7 @@ "model": "api_v2.spellcastingoption", "pk": 2319, "fields": { - "spell": "altheas-travel-tent", + "parent": "altheas-travel-tent", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -807,7 +807,7 @@ "model": "api_v2.spellcastingoption", "pk": 2320, "fields": { - "spell": "altheas-travel-tent", + "parent": "altheas-travel-tent", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -819,7 +819,7 @@ "model": "api_v2.spellcastingoption", "pk": 2321, "fields": { - "spell": "altheas-travel-tent", + "parent": "altheas-travel-tent", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -831,7 +831,7 @@ "model": "api_v2.spellcastingoption", "pk": 2322, "fields": { - "spell": "altheas-travel-tent", + "parent": "altheas-travel-tent", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -843,7 +843,7 @@ "model": "api_v2.spellcastingoption", "pk": 2323, "fields": { - "spell": "amplify-gravity", + "parent": "amplify-gravity", "type": "default", "damage_roll": null, "target_count": null, @@ -855,7 +855,7 @@ "model": "api_v2.spellcastingoption", "pk": 2324, "fields": { - "spell": "analyze-device", + "parent": "analyze-device", "type": "default", "damage_roll": null, "target_count": null, @@ -867,7 +867,7 @@ "model": "api_v2.spellcastingoption", "pk": 2325, "fields": { - "spell": "ancestors-strength", + "parent": "ancestors-strength", "type": "default", "damage_roll": null, "target_count": null, @@ -879,7 +879,7 @@ "model": "api_v2.spellcastingoption", "pk": 2326, "fields": { - "spell": "anchoring-rope", + "parent": "anchoring-rope", "type": "default", "damage_roll": null, "target_count": null, @@ -891,7 +891,7 @@ "model": "api_v2.spellcastingoption", "pk": 2328, "fields": { - "spell": "anchoring-rope", + "parent": "anchoring-rope", "type": "slot_level_2", "damage_roll": null, "target_count": 1, @@ -903,7 +903,7 @@ "model": "api_v2.spellcastingoption", "pk": 2329, "fields": { - "spell": "anchoring-rope", + "parent": "anchoring-rope", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -915,7 +915,7 @@ "model": "api_v2.spellcastingoption", "pk": 2330, "fields": { - "spell": "anchoring-rope", + "parent": "anchoring-rope", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -927,7 +927,7 @@ "model": "api_v2.spellcastingoption", "pk": 2331, "fields": { - "spell": "anchoring-rope", + "parent": "anchoring-rope", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -939,7 +939,7 @@ "model": "api_v2.spellcastingoption", "pk": 2332, "fields": { - "spell": "anchoring-rope", + "parent": "anchoring-rope", "type": "slot_level_6", "damage_roll": null, "target_count": 3, @@ -951,7 +951,7 @@ "model": "api_v2.spellcastingoption", "pk": 2333, "fields": { - "spell": "anchoring-rope", + "parent": "anchoring-rope", "type": "slot_level_7", "damage_roll": null, "target_count": 4, @@ -963,7 +963,7 @@ "model": "api_v2.spellcastingoption", "pk": 2334, "fields": { - "spell": "anchoring-rope", + "parent": "anchoring-rope", "type": "slot_level_8", "damage_roll": null, "target_count": 4, @@ -975,7 +975,7 @@ "model": "api_v2.spellcastingoption", "pk": 2335, "fields": { - "spell": "anchoring-rope", + "parent": "anchoring-rope", "type": "slot_level_9", "damage_roll": null, "target_count": 5, @@ -987,7 +987,7 @@ "model": "api_v2.spellcastingoption", "pk": 2336, "fields": { - "spell": "ancient-shade", + "parent": "ancient-shade", "type": "default", "damage_roll": null, "target_count": null, @@ -999,7 +999,7 @@ "model": "api_v2.spellcastingoption", "pk": 2337, "fields": { - "spell": "angelic-guardian", + "parent": "angelic-guardian", "type": "default", "damage_roll": null, "target_count": null, @@ -1011,7 +1011,7 @@ "model": "api_v2.spellcastingoption", "pk": 2338, "fields": { - "spell": "animate-ghoul", + "parent": "animate-ghoul", "type": "default", "damage_roll": null, "target_count": null, @@ -1023,7 +1023,7 @@ "model": "api_v2.spellcastingoption", "pk": 2340, "fields": { - "spell": "animate-ghoul", + "parent": "animate-ghoul", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1035,7 +1035,7 @@ "model": "api_v2.spellcastingoption", "pk": 2341, "fields": { - "spell": "animate-ghoul", + "parent": "animate-ghoul", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1047,7 +1047,7 @@ "model": "api_v2.spellcastingoption", "pk": 2342, "fields": { - "spell": "animate-ghoul", + "parent": "animate-ghoul", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1059,7 +1059,7 @@ "model": "api_v2.spellcastingoption", "pk": 2343, "fields": { - "spell": "animate-ghoul", + "parent": "animate-ghoul", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1071,7 +1071,7 @@ "model": "api_v2.spellcastingoption", "pk": 2344, "fields": { - "spell": "animate-ghoul", + "parent": "animate-ghoul", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1083,7 +1083,7 @@ "model": "api_v2.spellcastingoption", "pk": 2345, "fields": { - "spell": "animate-ghoul", + "parent": "animate-ghoul", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1095,7 +1095,7 @@ "model": "api_v2.spellcastingoption", "pk": 2346, "fields": { - "spell": "animate-ghoul", + "parent": "animate-ghoul", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1107,7 +1107,7 @@ "model": "api_v2.spellcastingoption", "pk": 2347, "fields": { - "spell": "animate-greater-undead", + "parent": "animate-greater-undead", "type": "default", "damage_roll": null, "target_count": null, @@ -1119,7 +1119,7 @@ "model": "api_v2.spellcastingoption", "pk": 2349, "fields": { - "spell": "animate-greater-undead", + "parent": "animate-greater-undead", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1131,7 +1131,7 @@ "model": "api_v2.spellcastingoption", "pk": 2350, "fields": { - "spell": "animate-greater-undead", + "parent": "animate-greater-undead", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1143,7 +1143,7 @@ "model": "api_v2.spellcastingoption", "pk": 2351, "fields": { - "spell": "animate-greater-undead", + "parent": "animate-greater-undead", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1155,7 +1155,7 @@ "model": "api_v2.spellcastingoption", "pk": 2352, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "default", "damage_roll": null, "target_count": null, @@ -1167,7 +1167,7 @@ "model": "api_v2.spellcastingoption", "pk": 2353, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -1179,7 +1179,7 @@ "model": "api_v2.spellcastingoption", "pk": 2354, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -1191,7 +1191,7 @@ "model": "api_v2.spellcastingoption", "pk": 2355, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -1203,7 +1203,7 @@ "model": "api_v2.spellcastingoption", "pk": 2356, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -1215,7 +1215,7 @@ "model": "api_v2.spellcastingoption", "pk": 2357, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_5", "damage_roll": null, "target_count": null, @@ -1227,7 +1227,7 @@ "model": "api_v2.spellcastingoption", "pk": 2358, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_6", "damage_roll": null, "target_count": null, @@ -1239,7 +1239,7 @@ "model": "api_v2.spellcastingoption", "pk": 2359, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_7", "damage_roll": null, "target_count": null, @@ -1251,7 +1251,7 @@ "model": "api_v2.spellcastingoption", "pk": 2360, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_8", "damage_roll": null, "target_count": null, @@ -1263,7 +1263,7 @@ "model": "api_v2.spellcastingoption", "pk": 2361, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_9", "damage_roll": null, "target_count": null, @@ -1275,7 +1275,7 @@ "model": "api_v2.spellcastingoption", "pk": 2362, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_10", "damage_roll": null, "target_count": null, @@ -1287,7 +1287,7 @@ "model": "api_v2.spellcastingoption", "pk": 2363, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_11", "damage_roll": null, "target_count": null, @@ -1299,7 +1299,7 @@ "model": "api_v2.spellcastingoption", "pk": 2364, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_12", "damage_roll": null, "target_count": null, @@ -1311,7 +1311,7 @@ "model": "api_v2.spellcastingoption", "pk": 2365, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_13", "damage_roll": null, "target_count": null, @@ -1323,7 +1323,7 @@ "model": "api_v2.spellcastingoption", "pk": 2366, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_14", "damage_roll": null, "target_count": null, @@ -1335,7 +1335,7 @@ "model": "api_v2.spellcastingoption", "pk": 2367, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_15", "damage_roll": null, "target_count": null, @@ -1347,7 +1347,7 @@ "model": "api_v2.spellcastingoption", "pk": 2368, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_16", "damage_roll": null, "target_count": null, @@ -1359,7 +1359,7 @@ "model": "api_v2.spellcastingoption", "pk": 2369, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_17", "damage_roll": null, "target_count": null, @@ -1371,7 +1371,7 @@ "model": "api_v2.spellcastingoption", "pk": 2370, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_18", "damage_roll": null, "target_count": null, @@ -1383,7 +1383,7 @@ "model": "api_v2.spellcastingoption", "pk": 2371, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_19", "damage_roll": null, "target_count": null, @@ -1395,7 +1395,7 @@ "model": "api_v2.spellcastingoption", "pk": 2372, "fields": { - "spell": "animated-scroll", + "parent": "animated-scroll", "type": "player_level_20", "damage_roll": null, "target_count": null, @@ -1407,7 +1407,7 @@ "model": "api_v2.spellcastingoption", "pk": 2373, "fields": { - "spell": "anticipate-arcana", + "parent": "anticipate-arcana", "type": "default", "damage_roll": null, "target_count": null, @@ -1419,7 +1419,7 @@ "model": "api_v2.spellcastingoption", "pk": 2374, "fields": { - "spell": "anticipate-attack", + "parent": "anticipate-attack", "type": "default", "damage_roll": null, "target_count": null, @@ -1431,7 +1431,7 @@ "model": "api_v2.spellcastingoption", "pk": 2375, "fields": { - "spell": "anticipate-weakness", + "parent": "anticipate-weakness", "type": "default", "damage_roll": null, "target_count": null, @@ -1443,7 +1443,7 @@ "model": "api_v2.spellcastingoption", "pk": 2376, "fields": { - "spell": "arcane-sight", + "parent": "arcane-sight", "type": "default", "damage_roll": null, "target_count": null, @@ -1455,7 +1455,7 @@ "model": "api_v2.spellcastingoption", "pk": 2377, "fields": { - "spell": "as-you-were", + "parent": "as-you-were", "type": "default", "damage_roll": null, "target_count": null, @@ -1467,7 +1467,7 @@ "model": "api_v2.spellcastingoption", "pk": 2378, "fields": { - "spell": "ashen-memories", + "parent": "ashen-memories", "type": "default", "damage_roll": null, "target_count": null, @@ -1479,7 +1479,7 @@ "model": "api_v2.spellcastingoption", "pk": 2379, "fields": { - "spell": "ashen-memories", + "parent": "ashen-memories", "type": "ritual", "damage_roll": null, "target_count": null, @@ -1491,7 +1491,7 @@ "model": "api_v2.spellcastingoption", "pk": 2380, "fields": { - "spell": "aspect-of-the-dragon", + "parent": "aspect-of-the-dragon", "type": "default", "damage_roll": null, "target_count": null, @@ -1503,7 +1503,7 @@ "model": "api_v2.spellcastingoption", "pk": 2381, "fields": { - "spell": "aspect-of-the-serpent", + "parent": "aspect-of-the-serpent", "type": "default", "damage_roll": null, "target_count": null, @@ -1515,7 +1515,7 @@ "model": "api_v2.spellcastingoption", "pk": 2383, "fields": { - "spell": "aspect-of-the-serpent", + "parent": "aspect-of-the-serpent", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1527,7 +1527,7 @@ "model": "api_v2.spellcastingoption", "pk": 2384, "fields": { - "spell": "aspect-of-the-serpent", + "parent": "aspect-of-the-serpent", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1539,7 +1539,7 @@ "model": "api_v2.spellcastingoption", "pk": 2385, "fields": { - "spell": "aspect-of-the-serpent", + "parent": "aspect-of-the-serpent", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1551,7 +1551,7 @@ "model": "api_v2.spellcastingoption", "pk": 2386, "fields": { - "spell": "aspect-of-the-serpent", + "parent": "aspect-of-the-serpent", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1563,7 +1563,7 @@ "model": "api_v2.spellcastingoption", "pk": 2387, "fields": { - "spell": "aspect-of-the-serpent", + "parent": "aspect-of-the-serpent", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1575,7 +1575,7 @@ "model": "api_v2.spellcastingoption", "pk": 2388, "fields": { - "spell": "aspect-of-the-serpent", + "parent": "aspect-of-the-serpent", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1587,7 +1587,7 @@ "model": "api_v2.spellcastingoption", "pk": 2389, "fields": { - "spell": "aura-of-protection-or-destruction", + "parent": "aura-of-protection-or-destruction", "type": "default", "damage_roll": null, "target_count": null, @@ -1599,7 +1599,7 @@ "model": "api_v2.spellcastingoption", "pk": 2391, "fields": { - "spell": "aura-of-protection-or-destruction", + "parent": "aura-of-protection-or-destruction", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1611,7 +1611,7 @@ "model": "api_v2.spellcastingoption", "pk": 2392, "fields": { - "spell": "aura-of-protection-or-destruction", + "parent": "aura-of-protection-or-destruction", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1623,7 +1623,7 @@ "model": "api_v2.spellcastingoption", "pk": 2393, "fields": { - "spell": "aura-of-protection-or-destruction", + "parent": "aura-of-protection-or-destruction", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1635,7 +1635,7 @@ "model": "api_v2.spellcastingoption", "pk": 2394, "fields": { - "spell": "aura-of-protection-or-destruction", + "parent": "aura-of-protection-or-destruction", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1647,7 +1647,7 @@ "model": "api_v2.spellcastingoption", "pk": 2395, "fields": { - "spell": "aura-of-protection-or-destruction", + "parent": "aura-of-protection-or-destruction", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1659,7 +1659,7 @@ "model": "api_v2.spellcastingoption", "pk": 2396, "fields": { - "spell": "aura-of-protection-or-destruction", + "parent": "aura-of-protection-or-destruction", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1671,7 +1671,7 @@ "model": "api_v2.spellcastingoption", "pk": 2397, "fields": { - "spell": "auspicious-warning", + "parent": "auspicious-warning", "type": "default", "damage_roll": null, "target_count": null, @@ -1683,7 +1683,7 @@ "model": "api_v2.spellcastingoption", "pk": 2398, "fields": { - "spell": "avoid-grievous-injury", + "parent": "avoid-grievous-injury", "type": "default", "damage_roll": null, "target_count": null, @@ -1695,7 +1695,7 @@ "model": "api_v2.spellcastingoption", "pk": 2399, "fields": { - "spell": "avronins-astral-assembly", + "parent": "avronins-astral-assembly", "type": "default", "damage_roll": null, "target_count": null, @@ -1707,7 +1707,7 @@ "model": "api_v2.spellcastingoption", "pk": 2400, "fields": { - "spell": "avronins-astral-assembly", + "parent": "avronins-astral-assembly", "type": "ritual", "damage_roll": null, "target_count": null, @@ -1719,7 +1719,7 @@ "model": "api_v2.spellcastingoption", "pk": 2401, "fields": { - "spell": "awaken-object", + "parent": "awaken-object", "type": "default", "damage_roll": null, "target_count": null, @@ -1731,7 +1731,7 @@ "model": "api_v2.spellcastingoption", "pk": 2402, "fields": { - "spell": "bad-timing", + "parent": "bad-timing", "type": "default", "damage_roll": null, "target_count": null, @@ -1743,7 +1743,7 @@ "model": "api_v2.spellcastingoption", "pk": 2403, "fields": { - "spell": "batsense", + "parent": "batsense", "type": "default", "damage_roll": null, "target_count": null, @@ -1755,7 +1755,7 @@ "model": "api_v2.spellcastingoption", "pk": 2404, "fields": { - "spell": "become-nightwing", + "parent": "become-nightwing", "type": "default", "damage_roll": null, "target_count": null, @@ -1767,7 +1767,7 @@ "model": "api_v2.spellcastingoption", "pk": 2405, "fields": { - "spell": "beguiling-bet", + "parent": "beguiling-bet", "type": "default", "damage_roll": null, "target_count": null, @@ -1779,7 +1779,7 @@ "model": "api_v2.spellcastingoption", "pk": 2407, "fields": { - "spell": "beguiling-bet", + "parent": "beguiling-bet", "type": "slot_level_3", "damage_roll": null, "target_count": 1, @@ -1791,7 +1791,7 @@ "model": "api_v2.spellcastingoption", "pk": 2408, "fields": { - "spell": "beguiling-bet", + "parent": "beguiling-bet", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -1803,7 +1803,7 @@ "model": "api_v2.spellcastingoption", "pk": 2409, "fields": { - "spell": "beguiling-bet", + "parent": "beguiling-bet", "type": "slot_level_5", "damage_roll": null, "target_count": 2, @@ -1815,7 +1815,7 @@ "model": "api_v2.spellcastingoption", "pk": 2410, "fields": { - "spell": "beguiling-bet", + "parent": "beguiling-bet", "type": "slot_level_6", "damage_roll": null, "target_count": 3, @@ -1827,7 +1827,7 @@ "model": "api_v2.spellcastingoption", "pk": 2411, "fields": { - "spell": "beguiling-bet", + "parent": "beguiling-bet", "type": "slot_level_7", "damage_roll": null, "target_count": 3, @@ -1839,7 +1839,7 @@ "model": "api_v2.spellcastingoption", "pk": 2412, "fields": { - "spell": "beguiling-bet", + "parent": "beguiling-bet", "type": "slot_level_8", "damage_roll": null, "target_count": 4, @@ -1851,7 +1851,7 @@ "model": "api_v2.spellcastingoption", "pk": 2413, "fields": { - "spell": "beguiling-bet", + "parent": "beguiling-bet", "type": "slot_level_9", "damage_roll": null, "target_count": 4, @@ -1863,7 +1863,7 @@ "model": "api_v2.spellcastingoption", "pk": 2414, "fields": { - "spell": "benediction", + "parent": "benediction", "type": "default", "damage_roll": null, "target_count": null, @@ -1875,7 +1875,7 @@ "model": "api_v2.spellcastingoption", "pk": 2415, "fields": { - "spell": "bestial-fury", + "parent": "bestial-fury", "type": "default", "damage_roll": null, "target_count": null, @@ -1887,7 +1887,7 @@ "model": "api_v2.spellcastingoption", "pk": 2417, "fields": { - "spell": "bestial-fury", + "parent": "bestial-fury", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -1899,7 +1899,7 @@ "model": "api_v2.spellcastingoption", "pk": 2418, "fields": { - "spell": "bestial-fury", + "parent": "bestial-fury", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -1911,7 +1911,7 @@ "model": "api_v2.spellcastingoption", "pk": 2419, "fields": { - "spell": "bestial-fury", + "parent": "bestial-fury", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -1923,7 +1923,7 @@ "model": "api_v2.spellcastingoption", "pk": 2420, "fields": { - "spell": "bestial-fury", + "parent": "bestial-fury", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -1935,7 +1935,7 @@ "model": "api_v2.spellcastingoption", "pk": 2421, "fields": { - "spell": "bestial-fury", + "parent": "bestial-fury", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -1947,7 +1947,7 @@ "model": "api_v2.spellcastingoption", "pk": 2422, "fields": { - "spell": "bestial-fury", + "parent": "bestial-fury", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -1959,7 +1959,7 @@ "model": "api_v2.spellcastingoption", "pk": 2423, "fields": { - "spell": "bestial-fury", + "parent": "bestial-fury", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -1971,7 +1971,7 @@ "model": "api_v2.spellcastingoption", "pk": 2424, "fields": { - "spell": "binding-oath", + "parent": "binding-oath", "type": "default", "damage_roll": null, "target_count": null, @@ -1983,7 +1983,7 @@ "model": "api_v2.spellcastingoption", "pk": 2425, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "default", "damage_roll": null, "target_count": null, @@ -1995,7 +1995,7 @@ "model": "api_v2.spellcastingoption", "pk": 2426, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -2007,7 +2007,7 @@ "model": "api_v2.spellcastingoption", "pk": 2427, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -2019,7 +2019,7 @@ "model": "api_v2.spellcastingoption", "pk": 2428, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -2031,7 +2031,7 @@ "model": "api_v2.spellcastingoption", "pk": 2429, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -2043,7 +2043,7 @@ "model": "api_v2.spellcastingoption", "pk": 2430, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_5", "damage_roll": null, "target_count": null, @@ -2055,7 +2055,7 @@ "model": "api_v2.spellcastingoption", "pk": 2431, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_6", "damage_roll": null, "target_count": null, @@ -2067,7 +2067,7 @@ "model": "api_v2.spellcastingoption", "pk": 2432, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_7", "damage_roll": null, "target_count": null, @@ -2079,7 +2079,7 @@ "model": "api_v2.spellcastingoption", "pk": 2433, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_8", "damage_roll": null, "target_count": null, @@ -2091,7 +2091,7 @@ "model": "api_v2.spellcastingoption", "pk": 2434, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_9", "damage_roll": null, "target_count": null, @@ -2103,7 +2103,7 @@ "model": "api_v2.spellcastingoption", "pk": 2435, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_10", "damage_roll": null, "target_count": null, @@ -2115,7 +2115,7 @@ "model": "api_v2.spellcastingoption", "pk": 2436, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_11", "damage_roll": null, "target_count": null, @@ -2127,7 +2127,7 @@ "model": "api_v2.spellcastingoption", "pk": 2437, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_12", "damage_roll": null, "target_count": null, @@ -2139,7 +2139,7 @@ "model": "api_v2.spellcastingoption", "pk": 2438, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_13", "damage_roll": null, "target_count": null, @@ -2151,7 +2151,7 @@ "model": "api_v2.spellcastingoption", "pk": 2439, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_14", "damage_roll": null, "target_count": null, @@ -2163,7 +2163,7 @@ "model": "api_v2.spellcastingoption", "pk": 2440, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_15", "damage_roll": null, "target_count": null, @@ -2175,7 +2175,7 @@ "model": "api_v2.spellcastingoption", "pk": 2441, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_16", "damage_roll": null, "target_count": null, @@ -2187,7 +2187,7 @@ "model": "api_v2.spellcastingoption", "pk": 2442, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_17", "damage_roll": null, "target_count": null, @@ -2199,7 +2199,7 @@ "model": "api_v2.spellcastingoption", "pk": 2443, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_18", "damage_roll": null, "target_count": null, @@ -2211,7 +2211,7 @@ "model": "api_v2.spellcastingoption", "pk": 2444, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_19", "damage_roll": null, "target_count": null, @@ -2223,7 +2223,7 @@ "model": "api_v2.spellcastingoption", "pk": 2445, "fields": { - "spell": "biting-arrow", + "parent": "biting-arrow", "type": "player_level_20", "damage_roll": null, "target_count": null, @@ -2235,7 +2235,7 @@ "model": "api_v2.spellcastingoption", "pk": 2446, "fields": { - "spell": "bitter-chains", + "parent": "bitter-chains", "type": "default", "damage_roll": null, "target_count": null, @@ -2247,7 +2247,7 @@ "model": "api_v2.spellcastingoption", "pk": 2447, "fields": { - "spell": "black-goats-blessing", + "parent": "black-goats-blessing", "type": "default", "damage_roll": null, "target_count": null, @@ -2259,7 +2259,7 @@ "model": "api_v2.spellcastingoption", "pk": 2448, "fields": { - "spell": "black-hand", + "parent": "black-hand", "type": "default", "damage_roll": null, "target_count": null, @@ -2271,7 +2271,7 @@ "model": "api_v2.spellcastingoption", "pk": 2449, "fields": { - "spell": "black-ribbons", + "parent": "black-ribbons", "type": "default", "damage_roll": null, "target_count": null, @@ -2283,7 +2283,7 @@ "model": "api_v2.spellcastingoption", "pk": 2450, "fields": { - "spell": "black-sunshine", + "parent": "black-sunshine", "type": "default", "damage_roll": null, "target_count": null, @@ -2295,7 +2295,7 @@ "model": "api_v2.spellcastingoption", "pk": 2451, "fields": { - "spell": "black-swan-storm", + "parent": "black-swan-storm", "type": "default", "damage_roll": null, "target_count": null, @@ -2307,7 +2307,7 @@ "model": "api_v2.spellcastingoption", "pk": 2453, "fields": { - "spell": "black-swan-storm", + "parent": "black-swan-storm", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -2319,7 +2319,7 @@ "model": "api_v2.spellcastingoption", "pk": 2454, "fields": { - "spell": "black-swan-storm", + "parent": "black-swan-storm", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2331,7 +2331,7 @@ "model": "api_v2.spellcastingoption", "pk": 2455, "fields": { - "spell": "black-swan-storm", + "parent": "black-swan-storm", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2343,7 +2343,7 @@ "model": "api_v2.spellcastingoption", "pk": 2456, "fields": { - "spell": "black-swan-storm", + "parent": "black-swan-storm", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2355,7 +2355,7 @@ "model": "api_v2.spellcastingoption", "pk": 2457, "fields": { - "spell": "black-swan-storm", + "parent": "black-swan-storm", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2367,7 +2367,7 @@ "model": "api_v2.spellcastingoption", "pk": 2458, "fields": { - "spell": "black-swan-storm", + "parent": "black-swan-storm", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2379,7 +2379,7 @@ "model": "api_v2.spellcastingoption", "pk": 2459, "fields": { - "spell": "black-swan-storm", + "parent": "black-swan-storm", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2391,7 +2391,7 @@ "model": "api_v2.spellcastingoption", "pk": 2460, "fields": { - "spell": "black-well", + "parent": "black-well", "type": "default", "damage_roll": null, "target_count": null, @@ -2403,7 +2403,7 @@ "model": "api_v2.spellcastingoption", "pk": 2462, "fields": { - "spell": "black-well", + "parent": "black-well", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2415,7 +2415,7 @@ "model": "api_v2.spellcastingoption", "pk": 2463, "fields": { - "spell": "black-well", + "parent": "black-well", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2427,7 +2427,7 @@ "model": "api_v2.spellcastingoption", "pk": 2464, "fields": { - "spell": "black-well", + "parent": "black-well", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2439,7 +2439,7 @@ "model": "api_v2.spellcastingoption", "pk": 2465, "fields": { - "spell": "blade-of-my-brother", + "parent": "blade-of-my-brother", "type": "default", "damage_roll": null, "target_count": null, @@ -2451,7 +2451,7 @@ "model": "api_v2.spellcastingoption", "pk": 2466, "fields": { - "spell": "blade-of-wrath", + "parent": "blade-of-wrath", "type": "default", "damage_roll": null, "target_count": null, @@ -2463,7 +2463,7 @@ "model": "api_v2.spellcastingoption", "pk": 2468, "fields": { - "spell": "blade-of-wrath", + "parent": "blade-of-wrath", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2475,7 +2475,7 @@ "model": "api_v2.spellcastingoption", "pk": 2469, "fields": { - "spell": "blade-of-wrath", + "parent": "blade-of-wrath", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2487,7 +2487,7 @@ "model": "api_v2.spellcastingoption", "pk": 2470, "fields": { - "spell": "blade-of-wrath", + "parent": "blade-of-wrath", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2499,7 +2499,7 @@ "model": "api_v2.spellcastingoption", "pk": 2471, "fields": { - "spell": "blade-of-wrath", + "parent": "blade-of-wrath", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2511,7 +2511,7 @@ "model": "api_v2.spellcastingoption", "pk": 2472, "fields": { - "spell": "blade-of-wrath", + "parent": "blade-of-wrath", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2523,7 +2523,7 @@ "model": "api_v2.spellcastingoption", "pk": 2473, "fields": { - "spell": "blade-of-wrath", + "parent": "blade-of-wrath", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2535,7 +2535,7 @@ "model": "api_v2.spellcastingoption", "pk": 2474, "fields": { - "spell": "blazing-chariot", + "parent": "blazing-chariot", "type": "default", "damage_roll": null, "target_count": null, @@ -2547,7 +2547,7 @@ "model": "api_v2.spellcastingoption", "pk": 2475, "fields": { - "spell": "bleating-call", + "parent": "bleating-call", "type": "default", "damage_roll": null, "target_count": null, @@ -2559,7 +2559,7 @@ "model": "api_v2.spellcastingoption", "pk": 2476, "fields": { - "spell": "bleed", + "parent": "bleed", "type": "default", "damage_roll": null, "target_count": null, @@ -2571,7 +2571,7 @@ "model": "api_v2.spellcastingoption", "pk": 2477, "fields": { - "spell": "bless-the-dead", + "parent": "bless-the-dead", "type": "default", "damage_roll": null, "target_count": null, @@ -2583,7 +2583,7 @@ "model": "api_v2.spellcastingoption", "pk": 2478, "fields": { - "spell": "blessed-halo", + "parent": "blessed-halo", "type": "default", "damage_roll": null, "target_count": null, @@ -2595,7 +2595,7 @@ "model": "api_v2.spellcastingoption", "pk": 2480, "fields": { - "spell": "blessed-halo", + "parent": "blessed-halo", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -2607,7 +2607,7 @@ "model": "api_v2.spellcastingoption", "pk": 2481, "fields": { - "spell": "blessed-halo", + "parent": "blessed-halo", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2619,7 +2619,7 @@ "model": "api_v2.spellcastingoption", "pk": 2482, "fields": { - "spell": "blessed-halo", + "parent": "blessed-halo", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2631,7 +2631,7 @@ "model": "api_v2.spellcastingoption", "pk": 2483, "fields": { - "spell": "blessed-halo", + "parent": "blessed-halo", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2643,7 +2643,7 @@ "model": "api_v2.spellcastingoption", "pk": 2484, "fields": { - "spell": "blessed-halo", + "parent": "blessed-halo", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2655,7 +2655,7 @@ "model": "api_v2.spellcastingoption", "pk": 2485, "fields": { - "spell": "blessed-halo", + "parent": "blessed-halo", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2667,7 +2667,7 @@ "model": "api_v2.spellcastingoption", "pk": 2486, "fields": { - "spell": "blessed-halo", + "parent": "blessed-halo", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2679,7 +2679,7 @@ "model": "api_v2.spellcastingoption", "pk": 2487, "fields": { - "spell": "blizzard", + "parent": "blizzard", "type": "default", "damage_roll": null, "target_count": null, @@ -2691,7 +2691,7 @@ "model": "api_v2.spellcastingoption", "pk": 2488, "fields": { - "spell": "blood-and-steel", + "parent": "blood-and-steel", "type": "default", "damage_roll": null, "target_count": null, @@ -2703,7 +2703,7 @@ "model": "api_v2.spellcastingoption", "pk": 2490, "fields": { - "spell": "blood-and-steel", + "parent": "blood-and-steel", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2715,7 +2715,7 @@ "model": "api_v2.spellcastingoption", "pk": 2491, "fields": { - "spell": "blood-and-steel", + "parent": "blood-and-steel", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2727,7 +2727,7 @@ "model": "api_v2.spellcastingoption", "pk": 2492, "fields": { - "spell": "blood-and-steel", + "parent": "blood-and-steel", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2739,7 +2739,7 @@ "model": "api_v2.spellcastingoption", "pk": 2493, "fields": { - "spell": "blood-and-steel", + "parent": "blood-and-steel", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2751,7 +2751,7 @@ "model": "api_v2.spellcastingoption", "pk": 2494, "fields": { - "spell": "blood-and-steel", + "parent": "blood-and-steel", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2763,7 +2763,7 @@ "model": "api_v2.spellcastingoption", "pk": 2495, "fields": { - "spell": "blood-armor", + "parent": "blood-armor", "type": "default", "damage_roll": null, "target_count": null, @@ -2775,7 +2775,7 @@ "model": "api_v2.spellcastingoption", "pk": 2496, "fields": { - "spell": "blood-lure", + "parent": "blood-lure", "type": "default", "damage_roll": null, "target_count": null, @@ -2787,7 +2787,7 @@ "model": "api_v2.spellcastingoption", "pk": 2497, "fields": { - "spell": "blood-offering", + "parent": "blood-offering", "type": "default", "damage_roll": null, "target_count": null, @@ -2799,7 +2799,7 @@ "model": "api_v2.spellcastingoption", "pk": 2498, "fields": { - "spell": "blood-puppet", + "parent": "blood-puppet", "type": "default", "damage_roll": null, "target_count": null, @@ -2811,7 +2811,7 @@ "model": "api_v2.spellcastingoption", "pk": 2499, "fields": { - "spell": "blood-scarab", + "parent": "blood-scarab", "type": "default", "damage_roll": null, "target_count": null, @@ -2823,7 +2823,7 @@ "model": "api_v2.spellcastingoption", "pk": 2501, "fields": { - "spell": "blood-scarab", + "parent": "blood-scarab", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -2835,7 +2835,7 @@ "model": "api_v2.spellcastingoption", "pk": 2502, "fields": { - "spell": "blood-scarab", + "parent": "blood-scarab", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -2847,7 +2847,7 @@ "model": "api_v2.spellcastingoption", "pk": 2503, "fields": { - "spell": "blood-scarab", + "parent": "blood-scarab", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2859,7 +2859,7 @@ "model": "api_v2.spellcastingoption", "pk": 2504, "fields": { - "spell": "blood-scarab", + "parent": "blood-scarab", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2871,7 +2871,7 @@ "model": "api_v2.spellcastingoption", "pk": 2505, "fields": { - "spell": "blood-scarab", + "parent": "blood-scarab", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2883,7 +2883,7 @@ "model": "api_v2.spellcastingoption", "pk": 2506, "fields": { - "spell": "blood-scarab", + "parent": "blood-scarab", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2895,7 +2895,7 @@ "model": "api_v2.spellcastingoption", "pk": 2507, "fields": { - "spell": "blood-scarab", + "parent": "blood-scarab", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2907,7 +2907,7 @@ "model": "api_v2.spellcastingoption", "pk": 2508, "fields": { - "spell": "blood-scarab", + "parent": "blood-scarab", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2919,7 +2919,7 @@ "model": "api_v2.spellcastingoption", "pk": 2509, "fields": { - "spell": "blood-spoor", + "parent": "blood-spoor", "type": "default", "damage_roll": null, "target_count": null, @@ -2931,7 +2931,7 @@ "model": "api_v2.spellcastingoption", "pk": 2510, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "default", "damage_roll": null, "target_count": null, @@ -2943,7 +2943,7 @@ "model": "api_v2.spellcastingoption", "pk": 2511, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -2955,7 +2955,7 @@ "model": "api_v2.spellcastingoption", "pk": 2512, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -2967,7 +2967,7 @@ "model": "api_v2.spellcastingoption", "pk": 2513, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -2979,7 +2979,7 @@ "model": "api_v2.spellcastingoption", "pk": 2514, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -2991,7 +2991,7 @@ "model": "api_v2.spellcastingoption", "pk": 2515, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_5", "damage_roll": null, "target_count": null, @@ -3003,7 +3003,7 @@ "model": "api_v2.spellcastingoption", "pk": 2516, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_6", "damage_roll": null, "target_count": null, @@ -3015,7 +3015,7 @@ "model": "api_v2.spellcastingoption", "pk": 2517, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_7", "damage_roll": null, "target_count": null, @@ -3027,7 +3027,7 @@ "model": "api_v2.spellcastingoption", "pk": 2518, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_8", "damage_roll": null, "target_count": null, @@ -3039,7 +3039,7 @@ "model": "api_v2.spellcastingoption", "pk": 2519, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_9", "damage_roll": null, "target_count": null, @@ -3051,7 +3051,7 @@ "model": "api_v2.spellcastingoption", "pk": 2520, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_10", "damage_roll": null, "target_count": null, @@ -3063,7 +3063,7 @@ "model": "api_v2.spellcastingoption", "pk": 2521, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_11", "damage_roll": null, "target_count": null, @@ -3075,7 +3075,7 @@ "model": "api_v2.spellcastingoption", "pk": 2522, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_12", "damage_roll": null, "target_count": null, @@ -3087,7 +3087,7 @@ "model": "api_v2.spellcastingoption", "pk": 2523, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_13", "damage_roll": null, "target_count": null, @@ -3099,7 +3099,7 @@ "model": "api_v2.spellcastingoption", "pk": 2524, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_14", "damage_roll": null, "target_count": null, @@ -3111,7 +3111,7 @@ "model": "api_v2.spellcastingoption", "pk": 2525, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_15", "damage_roll": null, "target_count": null, @@ -3123,7 +3123,7 @@ "model": "api_v2.spellcastingoption", "pk": 2526, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_16", "damage_roll": null, "target_count": null, @@ -3135,7 +3135,7 @@ "model": "api_v2.spellcastingoption", "pk": 2527, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_17", "damage_roll": null, "target_count": null, @@ -3147,7 +3147,7 @@ "model": "api_v2.spellcastingoption", "pk": 2528, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_18", "damage_roll": null, "target_count": null, @@ -3159,7 +3159,7 @@ "model": "api_v2.spellcastingoption", "pk": 2529, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_19", "damage_roll": null, "target_count": null, @@ -3171,7 +3171,7 @@ "model": "api_v2.spellcastingoption", "pk": 2530, "fields": { - "spell": "blood-tide", + "parent": "blood-tide", "type": "player_level_20", "damage_roll": null, "target_count": null, @@ -3183,7 +3183,7 @@ "model": "api_v2.spellcastingoption", "pk": 2531, "fields": { - "spell": "blood-to-acid", + "parent": "blood-to-acid", "type": "default", "damage_roll": null, "target_count": null, @@ -3195,7 +3195,7 @@ "model": "api_v2.spellcastingoption", "pk": 2532, "fields": { - "spell": "bloodhound", + "parent": "bloodhound", "type": "default", "damage_roll": null, "target_count": null, @@ -3207,7 +3207,7 @@ "model": "api_v2.spellcastingoption", "pk": 2534, "fields": { - "spell": "bloodhound", + "parent": "bloodhound", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -3219,7 +3219,7 @@ "model": "api_v2.spellcastingoption", "pk": 2535, "fields": { - "spell": "bloodhound", + "parent": "bloodhound", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -3231,7 +3231,7 @@ "model": "api_v2.spellcastingoption", "pk": 2536, "fields": { - "spell": "bloodhound", + "parent": "bloodhound", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3243,7 +3243,7 @@ "model": "api_v2.spellcastingoption", "pk": 2537, "fields": { - "spell": "bloodhound", + "parent": "bloodhound", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3255,7 +3255,7 @@ "model": "api_v2.spellcastingoption", "pk": 2538, "fields": { - "spell": "bloodhound", + "parent": "bloodhound", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3267,7 +3267,7 @@ "model": "api_v2.spellcastingoption", "pk": 2539, "fields": { - "spell": "bloodhound", + "parent": "bloodhound", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3279,7 +3279,7 @@ "model": "api_v2.spellcastingoption", "pk": 2540, "fields": { - "spell": "bloodhound", + "parent": "bloodhound", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3291,7 +3291,7 @@ "model": "api_v2.spellcastingoption", "pk": 2541, "fields": { - "spell": "bloodhound", + "parent": "bloodhound", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3303,7 +3303,7 @@ "model": "api_v2.spellcastingoption", "pk": 2542, "fields": { - "spell": "bloodshot", + "parent": "bloodshot", "type": "default", "damage_roll": null, "target_count": null, @@ -3315,7 +3315,7 @@ "model": "api_v2.spellcastingoption", "pk": 2544, "fields": { - "spell": "bloodshot", + "parent": "bloodshot", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -3327,7 +3327,7 @@ "model": "api_v2.spellcastingoption", "pk": 2545, "fields": { - "spell": "bloodshot", + "parent": "bloodshot", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3339,7 +3339,7 @@ "model": "api_v2.spellcastingoption", "pk": 2546, "fields": { - "spell": "bloodshot", + "parent": "bloodshot", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3351,7 +3351,7 @@ "model": "api_v2.spellcastingoption", "pk": 2547, "fields": { - "spell": "bloodshot", + "parent": "bloodshot", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3363,7 +3363,7 @@ "model": "api_v2.spellcastingoption", "pk": 2548, "fields": { - "spell": "bloodshot", + "parent": "bloodshot", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3375,7 +3375,7 @@ "model": "api_v2.spellcastingoption", "pk": 2549, "fields": { - "spell": "bloodshot", + "parent": "bloodshot", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3387,7 +3387,7 @@ "model": "api_v2.spellcastingoption", "pk": 2550, "fields": { - "spell": "bloodshot", + "parent": "bloodshot", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3399,7 +3399,7 @@ "model": "api_v2.spellcastingoption", "pk": 2551, "fields": { - "spell": "bloody-hands", + "parent": "bloody-hands", "type": "default", "damage_roll": null, "target_count": null, @@ -3411,7 +3411,7 @@ "model": "api_v2.spellcastingoption", "pk": 2552, "fields": { - "spell": "bloody-smite", + "parent": "bloody-smite", "type": "default", "damage_roll": null, "target_count": null, @@ -3423,7 +3423,7 @@ "model": "api_v2.spellcastingoption", "pk": 2553, "fields": { - "spell": "bloom", + "parent": "bloom", "type": "default", "damage_roll": null, "target_count": null, @@ -3435,7 +3435,7 @@ "model": "api_v2.spellcastingoption", "pk": 2554, "fields": { - "spell": "bloom", + "parent": "bloom", "type": "ritual", "damage_roll": null, "target_count": null, @@ -3447,7 +3447,7 @@ "model": "api_v2.spellcastingoption", "pk": 2555, "fields": { - "spell": "boiling-blood", + "parent": "boiling-blood", "type": "default", "damage_roll": null, "target_count": null, @@ -3459,7 +3459,7 @@ "model": "api_v2.spellcastingoption", "pk": 2557, "fields": { - "spell": "boiling-blood", + "parent": "boiling-blood", "type": "slot_level_5", "damage_roll": null, "target_count": 2, @@ -3471,7 +3471,7 @@ "model": "api_v2.spellcastingoption", "pk": 2558, "fields": { - "spell": "boiling-blood", + "parent": "boiling-blood", "type": "slot_level_6", "damage_roll": null, "target_count": 3, @@ -3483,7 +3483,7 @@ "model": "api_v2.spellcastingoption", "pk": 2559, "fields": { - "spell": "boiling-blood", + "parent": "boiling-blood", "type": "slot_level_7", "damage_roll": null, "target_count": 4, @@ -3495,7 +3495,7 @@ "model": "api_v2.spellcastingoption", "pk": 2560, "fields": { - "spell": "boiling-blood", + "parent": "boiling-blood", "type": "slot_level_8", "damage_roll": null, "target_count": 5, @@ -3507,7 +3507,7 @@ "model": "api_v2.spellcastingoption", "pk": 2561, "fields": { - "spell": "boiling-blood", + "parent": "boiling-blood", "type": "slot_level_9", "damage_roll": null, "target_count": 6, @@ -3519,7 +3519,7 @@ "model": "api_v2.spellcastingoption", "pk": 2562, "fields": { - "spell": "boiling-oil", + "parent": "boiling-oil", "type": "default", "damage_roll": null, "target_count": null, @@ -3531,7 +3531,7 @@ "model": "api_v2.spellcastingoption", "pk": 2564, "fields": { - "spell": "boiling-oil", + "parent": "boiling-oil", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -3543,7 +3543,7 @@ "model": "api_v2.spellcastingoption", "pk": 2565, "fields": { - "spell": "boiling-oil", + "parent": "boiling-oil", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3555,7 +3555,7 @@ "model": "api_v2.spellcastingoption", "pk": 2566, "fields": { - "spell": "boiling-oil", + "parent": "boiling-oil", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3567,7 +3567,7 @@ "model": "api_v2.spellcastingoption", "pk": 2567, "fields": { - "spell": "boiling-oil", + "parent": "boiling-oil", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3579,7 +3579,7 @@ "model": "api_v2.spellcastingoption", "pk": 2568, "fields": { - "spell": "boiling-oil", + "parent": "boiling-oil", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3591,7 +3591,7 @@ "model": "api_v2.spellcastingoption", "pk": 2569, "fields": { - "spell": "boiling-oil", + "parent": "boiling-oil", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3603,7 +3603,7 @@ "model": "api_v2.spellcastingoption", "pk": 2570, "fields": { - "spell": "boiling-oil", + "parent": "boiling-oil", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3615,7 +3615,7 @@ "model": "api_v2.spellcastingoption", "pk": 2571, "fields": { - "spell": "bolster-undead", + "parent": "bolster-undead", "type": "default", "damage_roll": null, "target_count": null, @@ -3627,7 +3627,7 @@ "model": "api_v2.spellcastingoption", "pk": 2573, "fields": { - "spell": "bolster-undead", + "parent": "bolster-undead", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -3639,7 +3639,7 @@ "model": "api_v2.spellcastingoption", "pk": 2574, "fields": { - "spell": "bolster-undead", + "parent": "bolster-undead", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -3651,7 +3651,7 @@ "model": "api_v2.spellcastingoption", "pk": 2575, "fields": { - "spell": "bolster-undead", + "parent": "bolster-undead", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -3663,7 +3663,7 @@ "model": "api_v2.spellcastingoption", "pk": 2576, "fields": { - "spell": "bolster-undead", + "parent": "bolster-undead", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -3675,7 +3675,7 @@ "model": "api_v2.spellcastingoption", "pk": 2577, "fields": { - "spell": "bolster-undead", + "parent": "bolster-undead", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -3687,7 +3687,7 @@ "model": "api_v2.spellcastingoption", "pk": 2578, "fields": { - "spell": "bolster-undead", + "parent": "bolster-undead", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -3699,7 +3699,7 @@ "model": "api_v2.spellcastingoption", "pk": 2579, "fields": { - "spell": "bolster-undead", + "parent": "bolster-undead", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -3711,7 +3711,7 @@ "model": "api_v2.spellcastingoption", "pk": 2580, "fields": { - "spell": "bolster-undead", + "parent": "bolster-undead", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -3723,7 +3723,7 @@ "model": "api_v2.spellcastingoption", "pk": 2581, "fields": { - "spell": "booster-shot", + "parent": "booster-shot", "type": "default", "damage_roll": null, "target_count": null, @@ -3735,7 +3735,7 @@ "model": "api_v2.spellcastingoption", "pk": 2583, "fields": { - "spell": "booster-shot", + "parent": "booster-shot", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3747,7 +3747,7 @@ "model": "api_v2.spellcastingoption", "pk": 2584, "fields": { - "spell": "booster-shot", + "parent": "booster-shot", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3759,7 +3759,7 @@ "model": "api_v2.spellcastingoption", "pk": 2585, "fields": { - "spell": "booster-shot", + "parent": "booster-shot", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3771,7 +3771,7 @@ "model": "api_v2.spellcastingoption", "pk": 2586, "fields": { - "spell": "booster-shot", + "parent": "booster-shot", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3783,7 +3783,7 @@ "model": "api_v2.spellcastingoption", "pk": 2587, "fields": { - "spell": "booster-shot", + "parent": "booster-shot", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3795,7 +3795,7 @@ "model": "api_v2.spellcastingoption", "pk": 2588, "fields": { - "spell": "booster-shot", + "parent": "booster-shot", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3807,7 +3807,7 @@ "model": "api_v2.spellcastingoption", "pk": 2589, "fields": { - "spell": "boreass-breath", + "parent": "boreass-breath", "type": "default", "damage_roll": null, "target_count": null, @@ -3819,7 +3819,7 @@ "model": "api_v2.spellcastingoption", "pk": 2590, "fields": { - "spell": "boreass-breath", + "parent": "boreass-breath", "type": "ritual", "damage_roll": null, "target_count": null, @@ -3831,7 +3831,7 @@ "model": "api_v2.spellcastingoption", "pk": 2592, "fields": { - "spell": "boreass-breath", + "parent": "boreass-breath", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -3843,7 +3843,7 @@ "model": "api_v2.spellcastingoption", "pk": 2593, "fields": { - "spell": "boreass-breath", + "parent": "boreass-breath", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3855,7 +3855,7 @@ "model": "api_v2.spellcastingoption", "pk": 2594, "fields": { - "spell": "boreass-breath", + "parent": "boreass-breath", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3867,7 +3867,7 @@ "model": "api_v2.spellcastingoption", "pk": 2595, "fields": { - "spell": "boreass-breath", + "parent": "boreass-breath", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3879,7 +3879,7 @@ "model": "api_v2.spellcastingoption", "pk": 2596, "fields": { - "spell": "boreass-breath", + "parent": "boreass-breath", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3891,7 +3891,7 @@ "model": "api_v2.spellcastingoption", "pk": 2597, "fields": { - "spell": "boreass-breath", + "parent": "boreass-breath", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3903,7 +3903,7 @@ "model": "api_v2.spellcastingoption", "pk": 2598, "fields": { - "spell": "boreass-breath", + "parent": "boreass-breath", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3915,7 +3915,7 @@ "model": "api_v2.spellcastingoption", "pk": 2599, "fields": { - "spell": "bottled-arcana", + "parent": "bottled-arcana", "type": "default", "damage_roll": null, "target_count": null, @@ -3927,7 +3927,7 @@ "model": "api_v2.spellcastingoption", "pk": 2601, "fields": { - "spell": "bottled-arcana", + "parent": "bottled-arcana", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3939,7 +3939,7 @@ "model": "api_v2.spellcastingoption", "pk": 2602, "fields": { - "spell": "bottled-arcana", + "parent": "bottled-arcana", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3951,7 +3951,7 @@ "model": "api_v2.spellcastingoption", "pk": 2603, "fields": { - "spell": "bottled-arcana", + "parent": "bottled-arcana", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3963,7 +3963,7 @@ "model": "api_v2.spellcastingoption", "pk": 2604, "fields": { - "spell": "bottled-arcana", + "parent": "bottled-arcana", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3975,7 +3975,7 @@ "model": "api_v2.spellcastingoption", "pk": 2605, "fields": { - "spell": "bottomless-stomach", + "parent": "bottomless-stomach", "type": "default", "damage_roll": null, "target_count": null, @@ -3987,7 +3987,7 @@ "model": "api_v2.spellcastingoption", "pk": 2606, "fields": { - "spell": "breathtaking-wind", + "parent": "breathtaking-wind", "type": "default", "damage_roll": null, "target_count": null, @@ -3999,7 +3999,7 @@ "model": "api_v2.spellcastingoption", "pk": 2607, "fields": { - "spell": "breeze-compass", + "parent": "breeze-compass", "type": "default", "damage_roll": null, "target_count": null, @@ -4011,7 +4011,7 @@ "model": "api_v2.spellcastingoption", "pk": 2608, "fields": { - "spell": "brimstone-infusion", + "parent": "brimstone-infusion", "type": "default", "damage_roll": null, "target_count": null, @@ -4023,7 +4023,7 @@ "model": "api_v2.spellcastingoption", "pk": 2609, "fields": { - "spell": "brittling", + "parent": "brittling", "type": "default", "damage_roll": null, "target_count": null, @@ -4035,7 +4035,7 @@ "model": "api_v2.spellcastingoption", "pk": 2610, "fields": { - "spell": "broken-charge", + "parent": "broken-charge", "type": "default", "damage_roll": null, "target_count": null, @@ -4047,7 +4047,7 @@ "model": "api_v2.spellcastingoption", "pk": 2612, "fields": { - "spell": "broken-charge", + "parent": "broken-charge", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -4059,7 +4059,7 @@ "model": "api_v2.spellcastingoption", "pk": 2613, "fields": { - "spell": "broken-charge", + "parent": "broken-charge", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -4071,7 +4071,7 @@ "model": "api_v2.spellcastingoption", "pk": 2614, "fields": { - "spell": "broken-charge", + "parent": "broken-charge", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -4083,7 +4083,7 @@ "model": "api_v2.spellcastingoption", "pk": 2615, "fields": { - "spell": "broken-charge", + "parent": "broken-charge", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -4095,7 +4095,7 @@ "model": "api_v2.spellcastingoption", "pk": 2616, "fields": { - "spell": "broken-charge", + "parent": "broken-charge", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4107,7 +4107,7 @@ "model": "api_v2.spellcastingoption", "pk": 2617, "fields": { - "spell": "broken-charge", + "parent": "broken-charge", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4119,7 +4119,7 @@ "model": "api_v2.spellcastingoption", "pk": 2618, "fields": { - "spell": "broken-charge", + "parent": "broken-charge", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4131,7 +4131,7 @@ "model": "api_v2.spellcastingoption", "pk": 2619, "fields": { - "spell": "broken-charge", + "parent": "broken-charge", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4143,7 +4143,7 @@ "model": "api_v2.spellcastingoption", "pk": 2620, "fields": { - "spell": "by-the-light-of-the-moon", + "parent": "by-the-light-of-the-moon", "type": "default", "damage_roll": null, "target_count": null, @@ -4155,7 +4155,7 @@ "model": "api_v2.spellcastingoption", "pk": 2621, "fields": { - "spell": "by-the-light-of-the-watchful-moon", + "parent": "by-the-light-of-the-watchful-moon", "type": "default", "damage_roll": null, "target_count": null, @@ -4167,7 +4167,7 @@ "model": "api_v2.spellcastingoption", "pk": 2622, "fields": { - "spell": "call-shadow-mastiff", + "parent": "call-shadow-mastiff", "type": "default", "damage_roll": null, "target_count": null, @@ -4179,7 +4179,7 @@ "model": "api_v2.spellcastingoption", "pk": 2623, "fields": { - "spell": "calm-of-the-storm", + "parent": "calm-of-the-storm", "type": "default", "damage_roll": null, "target_count": null, @@ -4191,7 +4191,7 @@ "model": "api_v2.spellcastingoption", "pk": 2625, "fields": { - "spell": "calm-of-the-storm", + "parent": "calm-of-the-storm", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -4203,7 +4203,7 @@ "model": "api_v2.spellcastingoption", "pk": 2626, "fields": { - "spell": "calm-of-the-storm", + "parent": "calm-of-the-storm", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -4215,7 +4215,7 @@ "model": "api_v2.spellcastingoption", "pk": 2627, "fields": { - "spell": "calm-of-the-storm", + "parent": "calm-of-the-storm", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4227,7 +4227,7 @@ "model": "api_v2.spellcastingoption", "pk": 2628, "fields": { - "spell": "calm-of-the-storm", + "parent": "calm-of-the-storm", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4239,7 +4239,7 @@ "model": "api_v2.spellcastingoption", "pk": 2629, "fields": { - "spell": "calm-of-the-storm", + "parent": "calm-of-the-storm", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4251,7 +4251,7 @@ "model": "api_v2.spellcastingoption", "pk": 2630, "fields": { - "spell": "calm-of-the-storm", + "parent": "calm-of-the-storm", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4263,7 +4263,7 @@ "model": "api_v2.spellcastingoption", "pk": 2631, "fields": { - "spell": "candles-insight", + "parent": "candles-insight", "type": "default", "damage_roll": null, "target_count": null, @@ -4275,7 +4275,7 @@ "model": "api_v2.spellcastingoption", "pk": 2632, "fields": { - "spell": "carmello-voltas-irksome-preserves", + "parent": "carmello-voltas-irksome-preserves", "type": "default", "damage_roll": null, "target_count": null, @@ -4287,7 +4287,7 @@ "model": "api_v2.spellcastingoption", "pk": 2633, "fields": { - "spell": "catapult", + "parent": "catapult", "type": "default", "damage_roll": null, "target_count": null, @@ -4299,7 +4299,7 @@ "model": "api_v2.spellcastingoption", "pk": 2635, "fields": { - "spell": "catapult", + "parent": "catapult", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4311,7 +4311,7 @@ "model": "api_v2.spellcastingoption", "pk": 2636, "fields": { - "spell": "catapult", + "parent": "catapult", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4323,7 +4323,7 @@ "model": "api_v2.spellcastingoption", "pk": 2637, "fields": { - "spell": "catapult", + "parent": "catapult", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4335,7 +4335,7 @@ "model": "api_v2.spellcastingoption", "pk": 2638, "fields": { - "spell": "catch-the-breath", + "parent": "catch-the-breath", "type": "default", "damage_roll": null, "target_count": null, @@ -4347,7 +4347,7 @@ "model": "api_v2.spellcastingoption", "pk": 2640, "fields": { - "spell": "catch-the-breath", + "parent": "catch-the-breath", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -4359,7 +4359,7 @@ "model": "api_v2.spellcastingoption", "pk": 2641, "fields": { - "spell": "catch-the-breath", + "parent": "catch-the-breath", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -4371,7 +4371,7 @@ "model": "api_v2.spellcastingoption", "pk": 2642, "fields": { - "spell": "catch-the-breath", + "parent": "catch-the-breath", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4383,7 +4383,7 @@ "model": "api_v2.spellcastingoption", "pk": 2643, "fields": { - "spell": "catch-the-breath", + "parent": "catch-the-breath", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4395,7 +4395,7 @@ "model": "api_v2.spellcastingoption", "pk": 2644, "fields": { - "spell": "catch-the-breath", + "parent": "catch-the-breath", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4407,7 +4407,7 @@ "model": "api_v2.spellcastingoption", "pk": 2645, "fields": { - "spell": "catch-the-breath", + "parent": "catch-the-breath", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4419,7 +4419,7 @@ "model": "api_v2.spellcastingoption", "pk": 2646, "fields": { - "spell": "caustic-blood", + "parent": "caustic-blood", "type": "default", "damage_roll": null, "target_count": null, @@ -4431,7 +4431,7 @@ "model": "api_v2.spellcastingoption", "pk": 2648, "fields": { - "spell": "caustic-blood", + "parent": "caustic-blood", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -4443,7 +4443,7 @@ "model": "api_v2.spellcastingoption", "pk": 2649, "fields": { - "spell": "caustic-blood", + "parent": "caustic-blood", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -4455,7 +4455,7 @@ "model": "api_v2.spellcastingoption", "pk": 2650, "fields": { - "spell": "caustic-blood", + "parent": "caustic-blood", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -4467,7 +4467,7 @@ "model": "api_v2.spellcastingoption", "pk": 2651, "fields": { - "spell": "caustic-blood", + "parent": "caustic-blood", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4479,7 +4479,7 @@ "model": "api_v2.spellcastingoption", "pk": 2652, "fields": { - "spell": "caustic-blood", + "parent": "caustic-blood", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4491,7 +4491,7 @@ "model": "api_v2.spellcastingoption", "pk": 2653, "fields": { - "spell": "caustic-blood", + "parent": "caustic-blood", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4503,7 +4503,7 @@ "model": "api_v2.spellcastingoption", "pk": 2654, "fields": { - "spell": "caustic-blood", + "parent": "caustic-blood", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4515,7 +4515,7 @@ "model": "api_v2.spellcastingoption", "pk": 2655, "fields": { - "spell": "caustic-torrent", + "parent": "caustic-torrent", "type": "default", "damage_roll": null, "target_count": null, @@ -4527,7 +4527,7 @@ "model": "api_v2.spellcastingoption", "pk": 2656, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "default", "damage_roll": null, "target_count": null, @@ -4539,7 +4539,7 @@ "model": "api_v2.spellcastingoption", "pk": 2657, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_1", "damage_roll": "1d8", "target_count": null, @@ -4551,7 +4551,7 @@ "model": "api_v2.spellcastingoption", "pk": 2658, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_2", "damage_roll": "1d8", "target_count": null, @@ -4563,7 +4563,7 @@ "model": "api_v2.spellcastingoption", "pk": 2659, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_3", "damage_roll": "1d8", "target_count": null, @@ -4575,7 +4575,7 @@ "model": "api_v2.spellcastingoption", "pk": 2660, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_4", "damage_roll": "1d8", "target_count": null, @@ -4587,7 +4587,7 @@ "model": "api_v2.spellcastingoption", "pk": 2661, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_5", "damage_roll": "2d8", "target_count": null, @@ -4599,7 +4599,7 @@ "model": "api_v2.spellcastingoption", "pk": 2662, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_6", "damage_roll": "2d8", "target_count": null, @@ -4611,7 +4611,7 @@ "model": "api_v2.spellcastingoption", "pk": 2663, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_7", "damage_roll": "2d8", "target_count": null, @@ -4623,7 +4623,7 @@ "model": "api_v2.spellcastingoption", "pk": 2664, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_8", "damage_roll": "2d8", "target_count": null, @@ -4635,7 +4635,7 @@ "model": "api_v2.spellcastingoption", "pk": 2665, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_9", "damage_roll": "2d8", "target_count": null, @@ -4647,7 +4647,7 @@ "model": "api_v2.spellcastingoption", "pk": 2666, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_10", "damage_roll": "2d8", "target_count": null, @@ -4659,7 +4659,7 @@ "model": "api_v2.spellcastingoption", "pk": 2667, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_11", "damage_roll": "3d8", "target_count": null, @@ -4671,7 +4671,7 @@ "model": "api_v2.spellcastingoption", "pk": 2668, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_12", "damage_roll": "3d8", "target_count": null, @@ -4683,7 +4683,7 @@ "model": "api_v2.spellcastingoption", "pk": 2669, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_13", "damage_roll": "3d8", "target_count": null, @@ -4695,7 +4695,7 @@ "model": "api_v2.spellcastingoption", "pk": 2670, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_14", "damage_roll": "3d8", "target_count": null, @@ -4707,7 +4707,7 @@ "model": "api_v2.spellcastingoption", "pk": 2671, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_15", "damage_roll": "3d8", "target_count": null, @@ -4719,7 +4719,7 @@ "model": "api_v2.spellcastingoption", "pk": 2672, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_16", "damage_roll": "3d8", "target_count": null, @@ -4731,7 +4731,7 @@ "model": "api_v2.spellcastingoption", "pk": 2673, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_17", "damage_roll": "4d8", "target_count": null, @@ -4743,7 +4743,7 @@ "model": "api_v2.spellcastingoption", "pk": 2674, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_18", "damage_roll": "4d8", "target_count": null, @@ -4755,7 +4755,7 @@ "model": "api_v2.spellcastingoption", "pk": 2675, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_19", "damage_roll": "4d8", "target_count": null, @@ -4767,7 +4767,7 @@ "model": "api_v2.spellcastingoption", "pk": 2676, "fields": { - "spell": "caustic-touch", + "parent": "caustic-touch", "type": "player_level_20", "damage_roll": "4d8", "target_count": null, @@ -4779,7 +4779,7 @@ "model": "api_v2.spellcastingoption", "pk": 2677, "fields": { - "spell": "celebration", + "parent": "celebration", "type": "default", "damage_roll": null, "target_count": null, @@ -4791,7 +4791,7 @@ "model": "api_v2.spellcastingoption", "pk": 2678, "fields": { - "spell": "celebration", + "parent": "celebration", "type": "ritual", "damage_roll": null, "target_count": null, @@ -4803,7 +4803,7 @@ "model": "api_v2.spellcastingoption", "pk": 2680, "fields": { - "spell": "celebration", + "parent": "celebration", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4815,7 +4815,7 @@ "model": "api_v2.spellcastingoption", "pk": 2681, "fields": { - "spell": "celebration", + "parent": "celebration", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4827,7 +4827,7 @@ "model": "api_v2.spellcastingoption", "pk": 2682, "fields": { - "spell": "chains-of-the-goddess", + "parent": "chains-of-the-goddess", "type": "default", "damage_roll": null, "target_count": null, @@ -4839,7 +4839,7 @@ "model": "api_v2.spellcastingoption", "pk": 2683, "fields": { - "spell": "chains-of-torment", + "parent": "chains-of-torment", "type": "default", "damage_roll": null, "target_count": null, @@ -4851,7 +4851,7 @@ "model": "api_v2.spellcastingoption", "pk": 2685, "fields": { - "spell": "chains-of-torment", + "parent": "chains-of-torment", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -4863,7 +4863,7 @@ "model": "api_v2.spellcastingoption", "pk": 2686, "fields": { - "spell": "chains-of-torment", + "parent": "chains-of-torment", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4875,7 +4875,7 @@ "model": "api_v2.spellcastingoption", "pk": 2687, "fields": { - "spell": "chains-of-torment", + "parent": "chains-of-torment", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4887,7 +4887,7 @@ "model": "api_v2.spellcastingoption", "pk": 2688, "fields": { - "spell": "chains-of-torment", + "parent": "chains-of-torment", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4899,7 +4899,7 @@ "model": "api_v2.spellcastingoption", "pk": 2689, "fields": { - "spell": "chains-of-torment", + "parent": "chains-of-torment", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4911,7 +4911,7 @@ "model": "api_v2.spellcastingoption", "pk": 2690, "fields": { - "spell": "champions-weapon", + "parent": "champions-weapon", "type": "default", "damage_roll": null, "target_count": null, @@ -4923,7 +4923,7 @@ "model": "api_v2.spellcastingoption", "pk": 2692, "fields": { - "spell": "champions-weapon", + "parent": "champions-weapon", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -4935,7 +4935,7 @@ "model": "api_v2.spellcastingoption", "pk": 2693, "fields": { - "spell": "champions-weapon", + "parent": "champions-weapon", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -4947,7 +4947,7 @@ "model": "api_v2.spellcastingoption", "pk": 2694, "fields": { - "spell": "champions-weapon", + "parent": "champions-weapon", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -4959,7 +4959,7 @@ "model": "api_v2.spellcastingoption", "pk": 2695, "fields": { - "spell": "champions-weapon", + "parent": "champions-weapon", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4971,7 +4971,7 @@ "model": "api_v2.spellcastingoption", "pk": 2696, "fields": { - "spell": "champions-weapon", + "parent": "champions-weapon", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4983,7 +4983,7 @@ "model": "api_v2.spellcastingoption", "pk": 2697, "fields": { - "spell": "champions-weapon", + "parent": "champions-weapon", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4995,7 +4995,7 @@ "model": "api_v2.spellcastingoption", "pk": 2698, "fields": { - "spell": "champions-weapon", + "parent": "champions-weapon", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5007,7 +5007,7 @@ "model": "api_v2.spellcastingoption", "pk": 2699, "fields": { - "spell": "chaotic-form", + "parent": "chaotic-form", "type": "default", "damage_roll": null, "target_count": null, @@ -5019,7 +5019,7 @@ "model": "api_v2.spellcastingoption", "pk": 2701, "fields": { - "spell": "chaotic-form", + "parent": "chaotic-form", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -5031,7 +5031,7 @@ "model": "api_v2.spellcastingoption", "pk": 2702, "fields": { - "spell": "chaotic-form", + "parent": "chaotic-form", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5043,7 +5043,7 @@ "model": "api_v2.spellcastingoption", "pk": 2703, "fields": { - "spell": "chaotic-form", + "parent": "chaotic-form", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5055,7 +5055,7 @@ "model": "api_v2.spellcastingoption", "pk": 2704, "fields": { - "spell": "chaotic-form", + "parent": "chaotic-form", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5067,7 +5067,7 @@ "model": "api_v2.spellcastingoption", "pk": 2705, "fields": { - "spell": "chaotic-form", + "parent": "chaotic-form", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5079,7 +5079,7 @@ "model": "api_v2.spellcastingoption", "pk": 2706, "fields": { - "spell": "chaotic-vitality", + "parent": "chaotic-vitality", "type": "default", "damage_roll": null, "target_count": null, @@ -5091,7 +5091,7 @@ "model": "api_v2.spellcastingoption", "pk": 2708, "fields": { - "spell": "chaotic-vitality", + "parent": "chaotic-vitality", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -5103,7 +5103,7 @@ "model": "api_v2.spellcastingoption", "pk": 2709, "fields": { - "spell": "chaotic-vitality", + "parent": "chaotic-vitality", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -5115,7 +5115,7 @@ "model": "api_v2.spellcastingoption", "pk": 2710, "fields": { - "spell": "chaotic-vitality", + "parent": "chaotic-vitality", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -5127,7 +5127,7 @@ "model": "api_v2.spellcastingoption", "pk": 2711, "fields": { - "spell": "chaotic-vitality", + "parent": "chaotic-vitality", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5139,7 +5139,7 @@ "model": "api_v2.spellcastingoption", "pk": 2712, "fields": { - "spell": "chaotic-vitality", + "parent": "chaotic-vitality", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5151,7 +5151,7 @@ "model": "api_v2.spellcastingoption", "pk": 2713, "fields": { - "spell": "chaotic-vitality", + "parent": "chaotic-vitality", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5163,7 +5163,7 @@ "model": "api_v2.spellcastingoption", "pk": 2714, "fields": { - "spell": "chaotic-vitality", + "parent": "chaotic-vitality", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5175,7 +5175,7 @@ "model": "api_v2.spellcastingoption", "pk": 2715, "fields": { - "spell": "chaotic-world", + "parent": "chaotic-world", "type": "default", "damage_roll": null, "target_count": null, @@ -5187,7 +5187,7 @@ "model": "api_v2.spellcastingoption", "pk": 2716, "fields": { - "spell": "chilling-words", + "parent": "chilling-words", "type": "default", "damage_roll": null, "target_count": null, @@ -5199,7 +5199,7 @@ "model": "api_v2.spellcastingoption", "pk": 2717, "fields": { - "spell": "chronal-lance", + "parent": "chronal-lance", "type": "default", "damage_roll": null, "target_count": null, @@ -5211,7 +5211,7 @@ "model": "api_v2.spellcastingoption", "pk": 2719, "fields": { - "spell": "chronal-lance", + "parent": "chronal-lance", "type": "slot_level_2", "damage_roll": null, "target_count": 4, @@ -5223,7 +5223,7 @@ "model": "api_v2.spellcastingoption", "pk": 2720, "fields": { - "spell": "chronal-lance", + "parent": "chronal-lance", "type": "slot_level_3", "damage_roll": null, "target_count": 5, @@ -5235,7 +5235,7 @@ "model": "api_v2.spellcastingoption", "pk": 2721, "fields": { - "spell": "chronal-lance", + "parent": "chronal-lance", "type": "slot_level_4", "damage_roll": null, "target_count": 6, @@ -5247,7 +5247,7 @@ "model": "api_v2.spellcastingoption", "pk": 2722, "fields": { - "spell": "chronal-lance", + "parent": "chronal-lance", "type": "slot_level_5", "damage_roll": null, "target_count": 7, @@ -5259,7 +5259,7 @@ "model": "api_v2.spellcastingoption", "pk": 2723, "fields": { - "spell": "chronal-lance", + "parent": "chronal-lance", "type": "slot_level_6", "damage_roll": null, "target_count": 8, @@ -5271,7 +5271,7 @@ "model": "api_v2.spellcastingoption", "pk": 2724, "fields": { - "spell": "chronal-lance", + "parent": "chronal-lance", "type": "slot_level_7", "damage_roll": null, "target_count": 9, @@ -5283,7 +5283,7 @@ "model": "api_v2.spellcastingoption", "pk": 2725, "fields": { - "spell": "chronal-lance", + "parent": "chronal-lance", "type": "slot_level_8", "damage_roll": null, "target_count": 10, @@ -5295,7 +5295,7 @@ "model": "api_v2.spellcastingoption", "pk": 2726, "fields": { - "spell": "chronal-lance", + "parent": "chronal-lance", "type": "slot_level_9", "damage_roll": null, "target_count": 11, @@ -5307,7 +5307,7 @@ "model": "api_v2.spellcastingoption", "pk": 2727, "fields": { - "spell": "circle-of-wind", + "parent": "circle-of-wind", "type": "default", "damage_roll": null, "target_count": null, @@ -5319,7 +5319,7 @@ "model": "api_v2.spellcastingoption", "pk": 2728, "fields": { - "spell": "clash-of-glaciers", + "parent": "clash-of-glaciers", "type": "default", "damage_roll": null, "target_count": null, @@ -5331,7 +5331,7 @@ "model": "api_v2.spellcastingoption", "pk": 2730, "fields": { - "spell": "clash-of-glaciers", + "parent": "clash-of-glaciers", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5343,7 +5343,7 @@ "model": "api_v2.spellcastingoption", "pk": 2731, "fields": { - "spell": "clash-of-glaciers", + "parent": "clash-of-glaciers", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5355,7 +5355,7 @@ "model": "api_v2.spellcastingoption", "pk": 2732, "fields": { - "spell": "clash-of-glaciers", + "parent": "clash-of-glaciers", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5367,7 +5367,7 @@ "model": "api_v2.spellcastingoption", "pk": 2733, "fields": { - "spell": "clash-of-glaciers", + "parent": "clash-of-glaciers", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5379,7 +5379,7 @@ "model": "api_v2.spellcastingoption", "pk": 2734, "fields": { - "spell": "claws-of-darkness", + "parent": "claws-of-darkness", "type": "default", "damage_roll": null, "target_count": null, @@ -5391,7 +5391,7 @@ "model": "api_v2.spellcastingoption", "pk": 2735, "fields": { - "spell": "claws-of-the-earth-dragon", + "parent": "claws-of-the-earth-dragon", "type": "default", "damage_roll": null, "target_count": null, @@ -5403,7 +5403,7 @@ "model": "api_v2.spellcastingoption", "pk": 2737, "fields": { - "spell": "claws-of-the-earth-dragon", + "parent": "claws-of-the-earth-dragon", "type": "slot_level_6", "damage_roll": "7d8", "target_count": null, @@ -5415,7 +5415,7 @@ "model": "api_v2.spellcastingoption", "pk": 2738, "fields": { - "spell": "claws-of-the-earth-dragon", + "parent": "claws-of-the-earth-dragon", "type": "slot_level_7", "damage_roll": "8d8", "target_count": null, @@ -5427,7 +5427,7 @@ "model": "api_v2.spellcastingoption", "pk": 2739, "fields": { - "spell": "claws-of-the-earth-dragon", + "parent": "claws-of-the-earth-dragon", "type": "slot_level_8", "damage_roll": "9d8", "target_count": null, @@ -5439,7 +5439,7 @@ "model": "api_v2.spellcastingoption", "pk": 2740, "fields": { - "spell": "claws-of-the-earth-dragon", + "parent": "claws-of-the-earth-dragon", "type": "slot_level_9", "damage_roll": "10d8", "target_count": null, @@ -5451,7 +5451,7 @@ "model": "api_v2.spellcastingoption", "pk": 2741, "fields": { - "spell": "clearing-the-field", + "parent": "clearing-the-field", "type": "default", "damage_roll": null, "target_count": null, @@ -5463,7 +5463,7 @@ "model": "api_v2.spellcastingoption", "pk": 2742, "fields": { - "spell": "clearing-the-field", + "parent": "clearing-the-field", "type": "ritual", "damage_roll": null, "target_count": null, @@ -5475,7 +5475,7 @@ "model": "api_v2.spellcastingoption", "pk": 2744, "fields": { - "spell": "clearing-the-field", + "parent": "clearing-the-field", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -5487,7 +5487,7 @@ "model": "api_v2.spellcastingoption", "pk": 2745, "fields": { - "spell": "clearing-the-field", + "parent": "clearing-the-field", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -5499,7 +5499,7 @@ "model": "api_v2.spellcastingoption", "pk": 2746, "fields": { - "spell": "clearing-the-field", + "parent": "clearing-the-field", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -5511,7 +5511,7 @@ "model": "api_v2.spellcastingoption", "pk": 2747, "fields": { - "spell": "clearing-the-field", + "parent": "clearing-the-field", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5523,7 +5523,7 @@ "model": "api_v2.spellcastingoption", "pk": 2748, "fields": { - "spell": "clearing-the-field", + "parent": "clearing-the-field", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5535,7 +5535,7 @@ "model": "api_v2.spellcastingoption", "pk": 2749, "fields": { - "spell": "clearing-the-field", + "parent": "clearing-the-field", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5547,7 +5547,7 @@ "model": "api_v2.spellcastingoption", "pk": 2750, "fields": { - "spell": "clearing-the-field", + "parent": "clearing-the-field", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5559,7 +5559,7 @@ "model": "api_v2.spellcastingoption", "pk": 2751, "fields": { - "spell": "cloak-of-shadow", + "parent": "cloak-of-shadow", "type": "default", "damage_roll": null, "target_count": null, @@ -5571,7 +5571,7 @@ "model": "api_v2.spellcastingoption", "pk": 2752, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "default", "damage_roll": null, "target_count": null, @@ -5583,7 +5583,7 @@ "model": "api_v2.spellcastingoption", "pk": 2753, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -5595,7 +5595,7 @@ "model": "api_v2.spellcastingoption", "pk": 2754, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -5607,7 +5607,7 @@ "model": "api_v2.spellcastingoption", "pk": 2755, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -5619,7 +5619,7 @@ "model": "api_v2.spellcastingoption", "pk": 2756, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -5631,7 +5631,7 @@ "model": "api_v2.spellcastingoption", "pk": 2757, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_5", "damage_roll": null, "target_count": null, @@ -5643,7 +5643,7 @@ "model": "api_v2.spellcastingoption", "pk": 2758, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_6", "damage_roll": null, "target_count": null, @@ -5655,7 +5655,7 @@ "model": "api_v2.spellcastingoption", "pk": 2759, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_7", "damage_roll": null, "target_count": null, @@ -5667,7 +5667,7 @@ "model": "api_v2.spellcastingoption", "pk": 2760, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_8", "damage_roll": null, "target_count": null, @@ -5679,7 +5679,7 @@ "model": "api_v2.spellcastingoption", "pk": 2761, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_9", "damage_roll": null, "target_count": null, @@ -5691,7 +5691,7 @@ "model": "api_v2.spellcastingoption", "pk": 2762, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_10", "damage_roll": null, "target_count": null, @@ -5703,7 +5703,7 @@ "model": "api_v2.spellcastingoption", "pk": 2763, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_11", "damage_roll": null, "target_count": null, @@ -5715,7 +5715,7 @@ "model": "api_v2.spellcastingoption", "pk": 2764, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_12", "damage_roll": null, "target_count": null, @@ -5727,7 +5727,7 @@ "model": "api_v2.spellcastingoption", "pk": 2765, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_13", "damage_roll": null, "target_count": null, @@ -5739,7 +5739,7 @@ "model": "api_v2.spellcastingoption", "pk": 2766, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_14", "damage_roll": null, "target_count": null, @@ -5751,7 +5751,7 @@ "model": "api_v2.spellcastingoption", "pk": 2767, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_15", "damage_roll": null, "target_count": null, @@ -5763,7 +5763,7 @@ "model": "api_v2.spellcastingoption", "pk": 2768, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_16", "damage_roll": null, "target_count": null, @@ -5775,7 +5775,7 @@ "model": "api_v2.spellcastingoption", "pk": 2769, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_17", "damage_roll": null, "target_count": null, @@ -5787,7 +5787,7 @@ "model": "api_v2.spellcastingoption", "pk": 2770, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_18", "damage_roll": null, "target_count": null, @@ -5799,7 +5799,7 @@ "model": "api_v2.spellcastingoption", "pk": 2771, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_19", "damage_roll": null, "target_count": null, @@ -5811,7 +5811,7 @@ "model": "api_v2.spellcastingoption", "pk": 2772, "fields": { - "spell": "clockwork-bolt", + "parent": "clockwork-bolt", "type": "player_level_20", "damage_roll": null, "target_count": null, @@ -5823,7 +5823,7 @@ "model": "api_v2.spellcastingoption", "pk": 2773, "fields": { - "spell": "closing-in", + "parent": "closing-in", "type": "default", "damage_roll": null, "target_count": null, @@ -5835,7 +5835,7 @@ "model": "api_v2.spellcastingoption", "pk": 2775, "fields": { - "spell": "closing-in", + "parent": "closing-in", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -5847,7 +5847,7 @@ "model": "api_v2.spellcastingoption", "pk": 2776, "fields": { - "spell": "closing-in", + "parent": "closing-in", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -5859,7 +5859,7 @@ "model": "api_v2.spellcastingoption", "pk": 2777, "fields": { - "spell": "closing-in", + "parent": "closing-in", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -5871,7 +5871,7 @@ "model": "api_v2.spellcastingoption", "pk": 2778, "fields": { - "spell": "closing-in", + "parent": "closing-in", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -5883,7 +5883,7 @@ "model": "api_v2.spellcastingoption", "pk": 2779, "fields": { - "spell": "closing-in", + "parent": "closing-in", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -5895,7 +5895,7 @@ "model": "api_v2.spellcastingoption", "pk": 2780, "fields": { - "spell": "closing-in", + "parent": "closing-in", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -5907,7 +5907,7 @@ "model": "api_v2.spellcastingoption", "pk": 2781, "fields": { - "spell": "cobra-fangs", + "parent": "cobra-fangs", "type": "default", "damage_roll": null, "target_count": null, @@ -5919,7 +5919,7 @@ "model": "api_v2.spellcastingoption", "pk": 2783, "fields": { - "spell": "cobra-fangs", + "parent": "cobra-fangs", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -5931,7 +5931,7 @@ "model": "api_v2.spellcastingoption", "pk": 2784, "fields": { - "spell": "cobra-fangs", + "parent": "cobra-fangs", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -5943,7 +5943,7 @@ "model": "api_v2.spellcastingoption", "pk": 2785, "fields": { - "spell": "cobra-fangs", + "parent": "cobra-fangs", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -5955,7 +5955,7 @@ "model": "api_v2.spellcastingoption", "pk": 2786, "fields": { - "spell": "cobra-fangs", + "parent": "cobra-fangs", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -5967,7 +5967,7 @@ "model": "api_v2.spellcastingoption", "pk": 2787, "fields": { - "spell": "cobra-fangs", + "parent": "cobra-fangs", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5979,7 +5979,7 @@ "model": "api_v2.spellcastingoption", "pk": 2788, "fields": { - "spell": "cobra-fangs", + "parent": "cobra-fangs", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5991,7 +5991,7 @@ "model": "api_v2.spellcastingoption", "pk": 2789, "fields": { - "spell": "cobra-fangs", + "parent": "cobra-fangs", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6003,7 +6003,7 @@ "model": "api_v2.spellcastingoption", "pk": 2790, "fields": { - "spell": "cobra-fangs", + "parent": "cobra-fangs", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6015,7 +6015,7 @@ "model": "api_v2.spellcastingoption", "pk": 2791, "fields": { - "spell": "compelled-movement", + "parent": "compelled-movement", "type": "default", "damage_roll": null, "target_count": null, @@ -6027,7 +6027,7 @@ "model": "api_v2.spellcastingoption", "pk": 2793, "fields": { - "spell": "compelled-movement", + "parent": "compelled-movement", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6039,7 +6039,7 @@ "model": "api_v2.spellcastingoption", "pk": 2794, "fields": { - "spell": "compelled-movement", + "parent": "compelled-movement", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6051,7 +6051,7 @@ "model": "api_v2.spellcastingoption", "pk": 2795, "fields": { - "spell": "compelled-movement", + "parent": "compelled-movement", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6063,7 +6063,7 @@ "model": "api_v2.spellcastingoption", "pk": 2796, "fields": { - "spell": "compelled-movement", + "parent": "compelled-movement", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6075,7 +6075,7 @@ "model": "api_v2.spellcastingoption", "pk": 2797, "fields": { - "spell": "compelled-movement", + "parent": "compelled-movement", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6087,7 +6087,7 @@ "model": "api_v2.spellcastingoption", "pk": 2798, "fields": { - "spell": "compelled-movement", + "parent": "compelled-movement", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6099,7 +6099,7 @@ "model": "api_v2.spellcastingoption", "pk": 2799, "fields": { - "spell": "compelling-fate", + "parent": "compelling-fate", "type": "default", "damage_roll": null, "target_count": null, @@ -6111,7 +6111,7 @@ "model": "api_v2.spellcastingoption", "pk": 2801, "fields": { - "spell": "compelling-fate", + "parent": "compelling-fate", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6123,7 +6123,7 @@ "model": "api_v2.spellcastingoption", "pk": 2802, "fields": { - "spell": "compelling-fate", + "parent": "compelling-fate", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6135,7 +6135,7 @@ "model": "api_v2.spellcastingoption", "pk": 2803, "fields": { - "spell": "compelling-fate", + "parent": "compelling-fate", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6147,7 +6147,7 @@ "model": "api_v2.spellcastingoption", "pk": 2804, "fields": { - "spell": "compelling-fate", + "parent": "compelling-fate", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6159,7 +6159,7 @@ "model": "api_v2.spellcastingoption", "pk": 2805, "fields": { - "spell": "compelling-fate", + "parent": "compelling-fate", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6171,7 +6171,7 @@ "model": "api_v2.spellcastingoption", "pk": 2806, "fields": { - "spell": "compelling-fate", + "parent": "compelling-fate", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6183,7 +6183,7 @@ "model": "api_v2.spellcastingoption", "pk": 2807, "fields": { - "spell": "comprehend-wild-shape", + "parent": "comprehend-wild-shape", "type": "default", "damage_roll": null, "target_count": null, @@ -6195,7 +6195,7 @@ "model": "api_v2.spellcastingoption", "pk": 2809, "fields": { - "spell": "comprehend-wild-shape", + "parent": "comprehend-wild-shape", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -6207,7 +6207,7 @@ "model": "api_v2.spellcastingoption", "pk": 2810, "fields": { - "spell": "comprehend-wild-shape", + "parent": "comprehend-wild-shape", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6219,7 +6219,7 @@ "model": "api_v2.spellcastingoption", "pk": 2811, "fields": { - "spell": "comprehend-wild-shape", + "parent": "comprehend-wild-shape", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6231,7 +6231,7 @@ "model": "api_v2.spellcastingoption", "pk": 2812, "fields": { - "spell": "comprehend-wild-shape", + "parent": "comprehend-wild-shape", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6243,7 +6243,7 @@ "model": "api_v2.spellcastingoption", "pk": 2813, "fields": { - "spell": "comprehend-wild-shape", + "parent": "comprehend-wild-shape", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6255,7 +6255,7 @@ "model": "api_v2.spellcastingoption", "pk": 2814, "fields": { - "spell": "comprehend-wild-shape", + "parent": "comprehend-wild-shape", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6267,7 +6267,7 @@ "model": "api_v2.spellcastingoption", "pk": 2815, "fields": { - "spell": "comprehend-wild-shape", + "parent": "comprehend-wild-shape", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6279,7 +6279,7 @@ "model": "api_v2.spellcastingoption", "pk": 2816, "fields": { - "spell": "confound-senses", + "parent": "confound-senses", "type": "default", "damage_roll": null, "target_count": null, @@ -6291,7 +6291,7 @@ "model": "api_v2.spellcastingoption", "pk": 2817, "fields": { - "spell": "conjure-fey-hound", + "parent": "conjure-fey-hound", "type": "default", "damage_roll": null, "target_count": null, @@ -6303,7 +6303,7 @@ "model": "api_v2.spellcastingoption", "pk": 2819, "fields": { - "spell": "conjure-fey-hound", + "parent": "conjure-fey-hound", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6315,7 +6315,7 @@ "model": "api_v2.spellcastingoption", "pk": 2820, "fields": { - "spell": "conjure-fey-hound", + "parent": "conjure-fey-hound", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6327,7 +6327,7 @@ "model": "api_v2.spellcastingoption", "pk": 2821, "fields": { - "spell": "conjure-fey-hound", + "parent": "conjure-fey-hound", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6339,7 +6339,7 @@ "model": "api_v2.spellcastingoption", "pk": 2822, "fields": { - "spell": "conjure-fey-hound", + "parent": "conjure-fey-hound", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6351,7 +6351,7 @@ "model": "api_v2.spellcastingoption", "pk": 2823, "fields": { - "spell": "conjure-forest-defender", + "parent": "conjure-forest-defender", "type": "default", "damage_roll": null, "target_count": null, @@ -6363,7 +6363,7 @@ "model": "api_v2.spellcastingoption", "pk": 2825, "fields": { - "spell": "conjure-forest-defender", + "parent": "conjure-forest-defender", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6375,7 +6375,7 @@ "model": "api_v2.spellcastingoption", "pk": 2826, "fields": { - "spell": "conjure-forest-defender", + "parent": "conjure-forest-defender", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6387,7 +6387,7 @@ "model": "api_v2.spellcastingoption", "pk": 2827, "fields": { - "spell": "conjure-forest-defender", + "parent": "conjure-forest-defender", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6399,7 +6399,7 @@ "model": "api_v2.spellcastingoption", "pk": 2828, "fields": { - "spell": "conjure-greater-spectral-dead", + "parent": "conjure-greater-spectral-dead", "type": "default", "damage_roll": null, "target_count": null, @@ -6411,7 +6411,7 @@ "model": "api_v2.spellcastingoption", "pk": 2830, "fields": { - "spell": "conjure-greater-spectral-dead", + "parent": "conjure-greater-spectral-dead", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6423,7 +6423,7 @@ "model": "api_v2.spellcastingoption", "pk": 2831, "fields": { - "spell": "conjure-greater-spectral-dead", + "parent": "conjure-greater-spectral-dead", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6435,7 +6435,7 @@ "model": "api_v2.spellcastingoption", "pk": 2832, "fields": { - "spell": "conjure-minor-voidborn", + "parent": "conjure-minor-voidborn", "type": "default", "damage_roll": null, "target_count": null, @@ -6447,7 +6447,7 @@ "model": "api_v2.spellcastingoption", "pk": 2834, "fields": { - "spell": "conjure-minor-voidborn", + "parent": "conjure-minor-voidborn", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6459,7 +6459,7 @@ "model": "api_v2.spellcastingoption", "pk": 2835, "fields": { - "spell": "conjure-minor-voidborn", + "parent": "conjure-minor-voidborn", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6471,7 +6471,7 @@ "model": "api_v2.spellcastingoption", "pk": 2836, "fields": { - "spell": "conjure-minor-voidborn", + "parent": "conjure-minor-voidborn", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6483,7 +6483,7 @@ "model": "api_v2.spellcastingoption", "pk": 2837, "fields": { - "spell": "conjure-minor-voidborn", + "parent": "conjure-minor-voidborn", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6495,7 +6495,7 @@ "model": "api_v2.spellcastingoption", "pk": 2838, "fields": { - "spell": "conjure-scarab-swarm", + "parent": "conjure-scarab-swarm", "type": "default", "damage_roll": null, "target_count": null, @@ -6507,7 +6507,7 @@ "model": "api_v2.spellcastingoption", "pk": 2839, "fields": { - "spell": "conjure-shadow-titan", + "parent": "conjure-shadow-titan", "type": "default", "damage_roll": null, "target_count": null, @@ -6519,7 +6519,7 @@ "model": "api_v2.spellcastingoption", "pk": 2840, "fields": { - "spell": "conjure-spectral-dead", + "parent": "conjure-spectral-dead", "type": "default", "damage_roll": null, "target_count": null, @@ -6531,7 +6531,7 @@ "model": "api_v2.spellcastingoption", "pk": 2842, "fields": { - "spell": "conjure-spectral-dead", + "parent": "conjure-spectral-dead", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -6543,7 +6543,7 @@ "model": "api_v2.spellcastingoption", "pk": 2843, "fields": { - "spell": "conjure-spectral-dead", + "parent": "conjure-spectral-dead", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6555,7 +6555,7 @@ "model": "api_v2.spellcastingoption", "pk": 2844, "fields": { - "spell": "conjure-spectral-dead", + "parent": "conjure-spectral-dead", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6567,7 +6567,7 @@ "model": "api_v2.spellcastingoption", "pk": 2845, "fields": { - "spell": "conjure-spectral-dead", + "parent": "conjure-spectral-dead", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6579,7 +6579,7 @@ "model": "api_v2.spellcastingoption", "pk": 2846, "fields": { - "spell": "conjure-spectral-dead", + "parent": "conjure-spectral-dead", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6591,7 +6591,7 @@ "model": "api_v2.spellcastingoption", "pk": 2847, "fields": { - "spell": "conjure-spectral-dead", + "parent": "conjure-spectral-dead", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6603,7 +6603,7 @@ "model": "api_v2.spellcastingoption", "pk": 2848, "fields": { - "spell": "conjure-spectral-dead", + "parent": "conjure-spectral-dead", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6615,7 +6615,7 @@ "model": "api_v2.spellcastingoption", "pk": 2849, "fields": { - "spell": "conjure-undead", + "parent": "conjure-undead", "type": "default", "damage_roll": null, "target_count": null, @@ -6627,7 +6627,7 @@ "model": "api_v2.spellcastingoption", "pk": 2851, "fields": { - "spell": "conjure-undead", + "parent": "conjure-undead", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6639,7 +6639,7 @@ "model": "api_v2.spellcastingoption", "pk": 2852, "fields": { - "spell": "conjure-undead", + "parent": "conjure-undead", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6651,7 +6651,7 @@ "model": "api_v2.spellcastingoption", "pk": 2853, "fields": { - "spell": "conjure-undead", + "parent": "conjure-undead", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6663,7 +6663,7 @@ "model": "api_v2.spellcastingoption", "pk": 2854, "fields": { - "spell": "conjure-undead", + "parent": "conjure-undead", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6675,7 +6675,7 @@ "model": "api_v2.spellcastingoption", "pk": 2855, "fields": { - "spell": "conjure-undead", + "parent": "conjure-undead", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6687,7 +6687,7 @@ "model": "api_v2.spellcastingoption", "pk": 2856, "fields": { - "spell": "conjure-undead", + "parent": "conjure-undead", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6699,7 +6699,7 @@ "model": "api_v2.spellcastingoption", "pk": 2857, "fields": { - "spell": "conjure-voidborn", + "parent": "conjure-voidborn", "type": "default", "damage_roll": null, "target_count": null, @@ -6711,7 +6711,7 @@ "model": "api_v2.spellcastingoption", "pk": 2859, "fields": { - "spell": "conjure-voidborn", + "parent": "conjure-voidborn", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6723,7 +6723,7 @@ "model": "api_v2.spellcastingoption", "pk": 2860, "fields": { - "spell": "conjure-voidborn", + "parent": "conjure-voidborn", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6735,7 +6735,7 @@ "model": "api_v2.spellcastingoption", "pk": 2861, "fields": { - "spell": "consult-the-storm", + "parent": "consult-the-storm", "type": "default", "damage_roll": null, "target_count": null, @@ -6747,7 +6747,7 @@ "model": "api_v2.spellcastingoption", "pk": 2863, "fields": { - "spell": "consult-the-storm", + "parent": "consult-the-storm", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6759,7 +6759,7 @@ "model": "api_v2.spellcastingoption", "pk": 2864, "fields": { - "spell": "consult-the-storm", + "parent": "consult-the-storm", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6771,7 +6771,7 @@ "model": "api_v2.spellcastingoption", "pk": 2865, "fields": { - "spell": "consult-the-storm", + "parent": "consult-the-storm", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6783,7 +6783,7 @@ "model": "api_v2.spellcastingoption", "pk": 2866, "fields": { - "spell": "consult-the-storm", + "parent": "consult-the-storm", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6795,7 +6795,7 @@ "model": "api_v2.spellcastingoption", "pk": 2867, "fields": { - "spell": "consult-the-storm", + "parent": "consult-the-storm", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6807,7 +6807,7 @@ "model": "api_v2.spellcastingoption", "pk": 2868, "fields": { - "spell": "converse-with-dragon", + "parent": "converse-with-dragon", "type": "default", "damage_roll": null, "target_count": null, @@ -6819,7 +6819,7 @@ "model": "api_v2.spellcastingoption", "pk": 2869, "fields": { - "spell": "costly-victory", + "parent": "costly-victory", "type": "default", "damage_roll": null, "target_count": null, @@ -6831,7 +6831,7 @@ "model": "api_v2.spellcastingoption", "pk": 2870, "fields": { - "spell": "create-ring-servant", + "parent": "create-ring-servant", "type": "default", "damage_roll": null, "target_count": null, @@ -6843,7 +6843,7 @@ "model": "api_v2.spellcastingoption", "pk": 2871, "fields": { - "spell": "create-thunderstaff", + "parent": "create-thunderstaff", "type": "default", "damage_roll": null, "target_count": null, @@ -6855,7 +6855,7 @@ "model": "api_v2.spellcastingoption", "pk": 2872, "fields": { - "spell": "creeping-ice", + "parent": "creeping-ice", "type": "default", "damage_roll": null, "target_count": null, @@ -6867,7 +6867,7 @@ "model": "api_v2.spellcastingoption", "pk": 2874, "fields": { - "spell": "creeping-ice", + "parent": "creeping-ice", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -6879,7 +6879,7 @@ "model": "api_v2.spellcastingoption", "pk": 2875, "fields": { - "spell": "creeping-ice", + "parent": "creeping-ice", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6891,7 +6891,7 @@ "model": "api_v2.spellcastingoption", "pk": 2876, "fields": { - "spell": "creeping-ice", + "parent": "creeping-ice", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6903,7 +6903,7 @@ "model": "api_v2.spellcastingoption", "pk": 2877, "fields": { - "spell": "creeping-ice", + "parent": "creeping-ice", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6915,7 +6915,7 @@ "model": "api_v2.spellcastingoption", "pk": 2878, "fields": { - "spell": "creeping-ice", + "parent": "creeping-ice", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6927,7 +6927,7 @@ "model": "api_v2.spellcastingoption", "pk": 2879, "fields": { - "spell": "creeping-ice", + "parent": "creeping-ice", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6939,7 +6939,7 @@ "model": "api_v2.spellcastingoption", "pk": 2880, "fields": { - "spell": "creeping-ice", + "parent": "creeping-ice", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6951,7 +6951,7 @@ "model": "api_v2.spellcastingoption", "pk": 2881, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "default", "damage_roll": null, "target_count": null, @@ -6963,7 +6963,7 @@ "model": "api_v2.spellcastingoption", "pk": 2882, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_1", "damage_roll": "", "target_count": null, @@ -6975,7 +6975,7 @@ "model": "api_v2.spellcastingoption", "pk": 2883, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_2", "damage_roll": "", "target_count": null, @@ -6987,7 +6987,7 @@ "model": "api_v2.spellcastingoption", "pk": 2884, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_3", "damage_roll": "", "target_count": null, @@ -6999,7 +6999,7 @@ "model": "api_v2.spellcastingoption", "pk": 2885, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_4", "damage_roll": "", "target_count": null, @@ -7011,7 +7011,7 @@ "model": "api_v2.spellcastingoption", "pk": 2886, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_5", "damage_roll": "2d6", "target_count": null, @@ -7023,7 +7023,7 @@ "model": "api_v2.spellcastingoption", "pk": 2887, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_6", "damage_roll": "2d6", "target_count": null, @@ -7035,7 +7035,7 @@ "model": "api_v2.spellcastingoption", "pk": 2888, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_7", "damage_roll": "2d6", "target_count": null, @@ -7047,7 +7047,7 @@ "model": "api_v2.spellcastingoption", "pk": 2889, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_8", "damage_roll": "2d6", "target_count": null, @@ -7059,7 +7059,7 @@ "model": "api_v2.spellcastingoption", "pk": 2890, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_9", "damage_roll": "2d6", "target_count": null, @@ -7071,7 +7071,7 @@ "model": "api_v2.spellcastingoption", "pk": 2891, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_10", "damage_roll": "2d6", "target_count": null, @@ -7083,7 +7083,7 @@ "model": "api_v2.spellcastingoption", "pk": 2892, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_11", "damage_roll": "3d6", "target_count": null, @@ -7095,7 +7095,7 @@ "model": "api_v2.spellcastingoption", "pk": 2893, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_12", "damage_roll": "3d6", "target_count": null, @@ -7107,7 +7107,7 @@ "model": "api_v2.spellcastingoption", "pk": 2894, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_13", "damage_roll": "3d6", "target_count": null, @@ -7119,7 +7119,7 @@ "model": "api_v2.spellcastingoption", "pk": 2895, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_14", "damage_roll": "3d6", "target_count": null, @@ -7131,7 +7131,7 @@ "model": "api_v2.spellcastingoption", "pk": 2896, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_15", "damage_roll": "3d6", "target_count": null, @@ -7143,7 +7143,7 @@ "model": "api_v2.spellcastingoption", "pk": 2897, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_16", "damage_roll": "3d6", "target_count": null, @@ -7155,7 +7155,7 @@ "model": "api_v2.spellcastingoption", "pk": 2898, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_17", "damage_roll": "4d6", "target_count": null, @@ -7167,7 +7167,7 @@ "model": "api_v2.spellcastingoption", "pk": 2899, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_18", "damage_roll": "4d6", "target_count": null, @@ -7179,7 +7179,7 @@ "model": "api_v2.spellcastingoption", "pk": 2900, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_19", "damage_roll": "4d6", "target_count": null, @@ -7191,7 +7191,7 @@ "model": "api_v2.spellcastingoption", "pk": 2901, "fields": { - "spell": "crushing-curse", + "parent": "crushing-curse", "type": "player_level_20", "damage_roll": "4d6", "target_count": null, @@ -7203,7 +7203,7 @@ "model": "api_v2.spellcastingoption", "pk": 2902, "fields": { - "spell": "crushing-trample", + "parent": "crushing-trample", "type": "default", "damage_roll": null, "target_count": null, @@ -7215,7 +7215,7 @@ "model": "api_v2.spellcastingoption", "pk": 2903, "fields": { - "spell": "cure-beast", + "parent": "cure-beast", "type": "default", "damage_roll": null, "target_count": null, @@ -7227,7 +7227,7 @@ "model": "api_v2.spellcastingoption", "pk": 2905, "fields": { - "spell": "cure-beast", + "parent": "cure-beast", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -7239,7 +7239,7 @@ "model": "api_v2.spellcastingoption", "pk": 2906, "fields": { - "spell": "cure-beast", + "parent": "cure-beast", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -7251,7 +7251,7 @@ "model": "api_v2.spellcastingoption", "pk": 2907, "fields": { - "spell": "cure-beast", + "parent": "cure-beast", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -7263,7 +7263,7 @@ "model": "api_v2.spellcastingoption", "pk": 2908, "fields": { - "spell": "cure-beast", + "parent": "cure-beast", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -7275,7 +7275,7 @@ "model": "api_v2.spellcastingoption", "pk": 2909, "fields": { - "spell": "cure-beast", + "parent": "cure-beast", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -7287,7 +7287,7 @@ "model": "api_v2.spellcastingoption", "pk": 2910, "fields": { - "spell": "cure-beast", + "parent": "cure-beast", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -7299,7 +7299,7 @@ "model": "api_v2.spellcastingoption", "pk": 2911, "fields": { - "spell": "cure-beast", + "parent": "cure-beast", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -7311,7 +7311,7 @@ "model": "api_v2.spellcastingoption", "pk": 2912, "fields": { - "spell": "cure-beast", + "parent": "cure-beast", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -7323,7 +7323,7 @@ "model": "api_v2.spellcastingoption", "pk": 2913, "fields": { - "spell": "curse-of-boreas", + "parent": "curse-of-boreas", "type": "default", "damage_roll": null, "target_count": null, @@ -7335,7 +7335,7 @@ "model": "api_v2.spellcastingoption", "pk": 2914, "fields": { - "spell": "curse-of-dust", + "parent": "curse-of-dust", "type": "default", "damage_roll": null, "target_count": null, @@ -7347,7 +7347,7 @@ "model": "api_v2.spellcastingoption", "pk": 2915, "fields": { - "spell": "curse-of-incompetence", + "parent": "curse-of-incompetence", "type": "default", "damage_roll": null, "target_count": null, @@ -7359,7 +7359,7 @@ "model": "api_v2.spellcastingoption", "pk": 2916, "fields": { - "spell": "curse-of-the-grave", + "parent": "curse-of-the-grave", "type": "default", "damage_roll": null, "target_count": null, @@ -7371,7 +7371,7 @@ "model": "api_v2.spellcastingoption", "pk": 2917, "fields": { - "spell": "curse-of-yig", + "parent": "curse-of-yig", "type": "default", "damage_roll": null, "target_count": null, @@ -7383,7 +7383,7 @@ "model": "api_v2.spellcastingoption", "pk": 2918, "fields": { - "spell": "curse-of-yig", + "parent": "curse-of-yig", "type": "ritual", "damage_roll": null, "target_count": null, @@ -7395,7 +7395,7 @@ "model": "api_v2.spellcastingoption", "pk": 2919, "fields": { - "spell": "curse-ring", + "parent": "curse-ring", "type": "default", "damage_roll": null, "target_count": null, @@ -7407,7 +7407,7 @@ "model": "api_v2.spellcastingoption", "pk": 2920, "fields": { - "spell": "cursed-gift", + "parent": "cursed-gift", "type": "default", "damage_roll": null, "target_count": null, @@ -7419,7 +7419,7 @@ "model": "api_v2.spellcastingoption", "pk": 2922, "fields": { - "spell": "cursed-gift", + "parent": "cursed-gift", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -7431,7 +7431,7 @@ "model": "api_v2.spellcastingoption", "pk": 2923, "fields": { - "spell": "cursed-gift", + "parent": "cursed-gift", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -7443,7 +7443,7 @@ "model": "api_v2.spellcastingoption", "pk": 2924, "fields": { - "spell": "cursed-gift", + "parent": "cursed-gift", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -7455,7 +7455,7 @@ "model": "api_v2.spellcastingoption", "pk": 2925, "fields": { - "spell": "cursed-gift", + "parent": "cursed-gift", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -7467,7 +7467,7 @@ "model": "api_v2.spellcastingoption", "pk": 2926, "fields": { - "spell": "cursed-gift", + "parent": "cursed-gift", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -7479,7 +7479,7 @@ "model": "api_v2.spellcastingoption", "pk": 2927, "fields": { - "spell": "cynophobia", + "parent": "cynophobia", "type": "default", "damage_roll": null, "target_count": null, @@ -7491,7 +7491,7 @@ "model": "api_v2.spellcastingoption", "pk": 2929, "fields": { - "spell": "cynophobia", + "parent": "cynophobia", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -7503,7 +7503,7 @@ "model": "api_v2.spellcastingoption", "pk": 2930, "fields": { - "spell": "cynophobia", + "parent": "cynophobia", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -7515,7 +7515,7 @@ "model": "api_v2.spellcastingoption", "pk": 2931, "fields": { - "spell": "cynophobia", + "parent": "cynophobia", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -7527,7 +7527,7 @@ "model": "api_v2.spellcastingoption", "pk": 2932, "fields": { - "spell": "cynophobia", + "parent": "cynophobia", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -7539,7 +7539,7 @@ "model": "api_v2.spellcastingoption", "pk": 2933, "fields": { - "spell": "cynophobia", + "parent": "cynophobia", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -7551,7 +7551,7 @@ "model": "api_v2.spellcastingoption", "pk": 2934, "fields": { - "spell": "cynophobia", + "parent": "cynophobia", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -7563,7 +7563,7 @@ "model": "api_v2.spellcastingoption", "pk": 2935, "fields": { - "spell": "daggerhawk", + "parent": "daggerhawk", "type": "default", "damage_roll": null, "target_count": null, @@ -7575,7 +7575,7 @@ "model": "api_v2.spellcastingoption", "pk": 2936, "fields": { - "spell": "dark-dementing", + "parent": "dark-dementing", "type": "default", "damage_roll": null, "target_count": null, @@ -7587,7 +7587,7 @@ "model": "api_v2.spellcastingoption", "pk": 2937, "fields": { - "spell": "dark-heraldry", + "parent": "dark-heraldry", "type": "default", "damage_roll": null, "target_count": null, @@ -7599,7 +7599,7 @@ "model": "api_v2.spellcastingoption", "pk": 2939, "fields": { - "spell": "dark-heraldry", + "parent": "dark-heraldry", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -7611,7 +7611,7 @@ "model": "api_v2.spellcastingoption", "pk": 2940, "fields": { - "spell": "dark-heraldry", + "parent": "dark-heraldry", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -7623,7 +7623,7 @@ "model": "api_v2.spellcastingoption", "pk": 2941, "fields": { - "spell": "dark-heraldry", + "parent": "dark-heraldry", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -7635,7 +7635,7 @@ "model": "api_v2.spellcastingoption", "pk": 2942, "fields": { - "spell": "dark-heraldry", + "parent": "dark-heraldry", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -7647,7 +7647,7 @@ "model": "api_v2.spellcastingoption", "pk": 2943, "fields": { - "spell": "dark-heraldry", + "parent": "dark-heraldry", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -7659,7 +7659,7 @@ "model": "api_v2.spellcastingoption", "pk": 2944, "fields": { - "spell": "dark-heraldry", + "parent": "dark-heraldry", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -7671,7 +7671,7 @@ "model": "api_v2.spellcastingoption", "pk": 2945, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "default", "damage_roll": null, "target_count": null, @@ -7683,7 +7683,7 @@ "model": "api_v2.spellcastingoption", "pk": 2946, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_1", "damage_roll": "1d8", "target_count": null, @@ -7695,7 +7695,7 @@ "model": "api_v2.spellcastingoption", "pk": 2947, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_2", "damage_roll": "1d8", "target_count": null, @@ -7707,7 +7707,7 @@ "model": "api_v2.spellcastingoption", "pk": 2948, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_3", "damage_roll": "1d8", "target_count": null, @@ -7719,7 +7719,7 @@ "model": "api_v2.spellcastingoption", "pk": 2949, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_4", "damage_roll": "1d8", "target_count": null, @@ -7731,7 +7731,7 @@ "model": "api_v2.spellcastingoption", "pk": 2950, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_5", "damage_roll": "2d8", "target_count": null, @@ -7743,7 +7743,7 @@ "model": "api_v2.spellcastingoption", "pk": 2951, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_6", "damage_roll": "2d8", "target_count": null, @@ -7755,7 +7755,7 @@ "model": "api_v2.spellcastingoption", "pk": 2952, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_7", "damage_roll": "2d8", "target_count": null, @@ -7767,7 +7767,7 @@ "model": "api_v2.spellcastingoption", "pk": 2953, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_8", "damage_roll": "2d8", "target_count": null, @@ -7779,7 +7779,7 @@ "model": "api_v2.spellcastingoption", "pk": 2954, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_9", "damage_roll": "2d8", "target_count": null, @@ -7791,7 +7791,7 @@ "model": "api_v2.spellcastingoption", "pk": 2955, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_10", "damage_roll": "2d8", "target_count": null, @@ -7803,7 +7803,7 @@ "model": "api_v2.spellcastingoption", "pk": 2956, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_11", "damage_roll": "3d8", "target_count": null, @@ -7815,7 +7815,7 @@ "model": "api_v2.spellcastingoption", "pk": 2957, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_12", "damage_roll": "3d8", "target_count": null, @@ -7827,7 +7827,7 @@ "model": "api_v2.spellcastingoption", "pk": 2958, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_13", "damage_roll": "3d8", "target_count": null, @@ -7839,7 +7839,7 @@ "model": "api_v2.spellcastingoption", "pk": 2959, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_14", "damage_roll": "3d8", "target_count": null, @@ -7851,7 +7851,7 @@ "model": "api_v2.spellcastingoption", "pk": 2960, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_15", "damage_roll": "3d8", "target_count": null, @@ -7863,7 +7863,7 @@ "model": "api_v2.spellcastingoption", "pk": 2961, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_16", "damage_roll": "3d8", "target_count": null, @@ -7875,7 +7875,7 @@ "model": "api_v2.spellcastingoption", "pk": 2962, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_17", "damage_roll": "4d8", "target_count": null, @@ -7887,7 +7887,7 @@ "model": "api_v2.spellcastingoption", "pk": 2963, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_18", "damage_roll": "4d8", "target_count": null, @@ -7899,7 +7899,7 @@ "model": "api_v2.spellcastingoption", "pk": 2964, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_19", "damage_roll": "4d8", "target_count": null, @@ -7911,7 +7911,7 @@ "model": "api_v2.spellcastingoption", "pk": 2965, "fields": { - "spell": "dark-maw", + "parent": "dark-maw", "type": "player_level_20", "damage_roll": "4d8", "target_count": null, @@ -7923,7 +7923,7 @@ "model": "api_v2.spellcastingoption", "pk": 2966, "fields": { - "spell": "dark-path", + "parent": "dark-path", "type": "default", "damage_roll": null, "target_count": null, @@ -7935,7 +7935,7 @@ "model": "api_v2.spellcastingoption", "pk": 2967, "fields": { - "spell": "darkbolt", + "parent": "darkbolt", "type": "default", "damage_roll": null, "target_count": null, @@ -7947,7 +7947,7 @@ "model": "api_v2.spellcastingoption", "pk": 2969, "fields": { - "spell": "darkbolt", + "parent": "darkbolt", "type": "slot_level_3", "damage_roll": null, "target_count": 4, @@ -7959,7 +7959,7 @@ "model": "api_v2.spellcastingoption", "pk": 2970, "fields": { - "spell": "darkbolt", + "parent": "darkbolt", "type": "slot_level_4", "damage_roll": null, "target_count": 5, @@ -7971,7 +7971,7 @@ "model": "api_v2.spellcastingoption", "pk": 2971, "fields": { - "spell": "darkbolt", + "parent": "darkbolt", "type": "slot_level_5", "damage_roll": null, "target_count": 6, @@ -7983,7 +7983,7 @@ "model": "api_v2.spellcastingoption", "pk": 2972, "fields": { - "spell": "darkbolt", + "parent": "darkbolt", "type": "slot_level_6", "damage_roll": null, "target_count": 7, @@ -7995,7 +7995,7 @@ "model": "api_v2.spellcastingoption", "pk": 2973, "fields": { - "spell": "darkbolt", + "parent": "darkbolt", "type": "slot_level_7", "damage_roll": null, "target_count": 8, @@ -8007,7 +8007,7 @@ "model": "api_v2.spellcastingoption", "pk": 2974, "fields": { - "spell": "darkbolt", + "parent": "darkbolt", "type": "slot_level_8", "damage_roll": null, "target_count": 9, @@ -8019,7 +8019,7 @@ "model": "api_v2.spellcastingoption", "pk": 2975, "fields": { - "spell": "darkbolt", + "parent": "darkbolt", "type": "slot_level_9", "damage_roll": null, "target_count": 10, @@ -8031,7 +8031,7 @@ "model": "api_v2.spellcastingoption", "pk": 2976, "fields": { - "spell": "dead-walking", + "parent": "dead-walking", "type": "default", "damage_roll": null, "target_count": null, @@ -8043,7 +8043,7 @@ "model": "api_v2.spellcastingoption", "pk": 2978, "fields": { - "spell": "dead-walking", + "parent": "dead-walking", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -8055,7 +8055,7 @@ "model": "api_v2.spellcastingoption", "pk": 2979, "fields": { - "spell": "dead-walking", + "parent": "dead-walking", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -8067,7 +8067,7 @@ "model": "api_v2.spellcastingoption", "pk": 2980, "fields": { - "spell": "dead-walking", + "parent": "dead-walking", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -8079,7 +8079,7 @@ "model": "api_v2.spellcastingoption", "pk": 2981, "fields": { - "spell": "dead-walking", + "parent": "dead-walking", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8091,7 +8091,7 @@ "model": "api_v2.spellcastingoption", "pk": 2982, "fields": { - "spell": "dead-walking", + "parent": "dead-walking", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8103,7 +8103,7 @@ "model": "api_v2.spellcastingoption", "pk": 2983, "fields": { - "spell": "dead-walking", + "parent": "dead-walking", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8115,7 +8115,7 @@ "model": "api_v2.spellcastingoption", "pk": 2984, "fields": { - "spell": "dead-walking", + "parent": "dead-walking", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8127,7 +8127,7 @@ "model": "api_v2.spellcastingoption", "pk": 2985, "fields": { - "spell": "deadly-sting", + "parent": "deadly-sting", "type": "default", "damage_roll": null, "target_count": null, @@ -8139,7 +8139,7 @@ "model": "api_v2.spellcastingoption", "pk": 2986, "fields": { - "spell": "death-gods-touch", + "parent": "death-gods-touch", "type": "default", "damage_roll": null, "target_count": null, @@ -8151,7 +8151,7 @@ "model": "api_v2.spellcastingoption", "pk": 2988, "fields": { - "spell": "death-gods-touch", + "parent": "death-gods-touch", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8163,7 +8163,7 @@ "model": "api_v2.spellcastingoption", "pk": 2989, "fields": { - "spell": "death-gods-touch", + "parent": "death-gods-touch", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8175,7 +8175,7 @@ "model": "api_v2.spellcastingoption", "pk": 2990, "fields": { - "spell": "decay", + "parent": "decay", "type": "default", "damage_roll": null, "target_count": null, @@ -8187,7 +8187,7 @@ "model": "api_v2.spellcastingoption", "pk": 2991, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_1", "damage_roll": "1d10", "target_count": null, @@ -8199,7 +8199,7 @@ "model": "api_v2.spellcastingoption", "pk": 2992, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_2", "damage_roll": "1d10", "target_count": null, @@ -8211,7 +8211,7 @@ "model": "api_v2.spellcastingoption", "pk": 2993, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_3", "damage_roll": "1d10", "target_count": null, @@ -8223,7 +8223,7 @@ "model": "api_v2.spellcastingoption", "pk": 2994, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_4", "damage_roll": "1d10", "target_count": null, @@ -8235,7 +8235,7 @@ "model": "api_v2.spellcastingoption", "pk": 2995, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_5", "damage_roll": "2d10", "target_count": null, @@ -8247,7 +8247,7 @@ "model": "api_v2.spellcastingoption", "pk": 2996, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_6", "damage_roll": "2d10", "target_count": null, @@ -8259,7 +8259,7 @@ "model": "api_v2.spellcastingoption", "pk": 2997, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_7", "damage_roll": "2d10", "target_count": null, @@ -8271,7 +8271,7 @@ "model": "api_v2.spellcastingoption", "pk": 2998, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_8", "damage_roll": "2d10", "target_count": null, @@ -8283,7 +8283,7 @@ "model": "api_v2.spellcastingoption", "pk": 2999, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_9", "damage_roll": "2d10", "target_count": null, @@ -8295,7 +8295,7 @@ "model": "api_v2.spellcastingoption", "pk": 3000, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_10", "damage_roll": "2d10", "target_count": null, @@ -8307,7 +8307,7 @@ "model": "api_v2.spellcastingoption", "pk": 3001, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_11", "damage_roll": "3d10", "target_count": null, @@ -8319,7 +8319,7 @@ "model": "api_v2.spellcastingoption", "pk": 3002, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_12", "damage_roll": "3d10", "target_count": null, @@ -8331,7 +8331,7 @@ "model": "api_v2.spellcastingoption", "pk": 3003, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_13", "damage_roll": "3d10", "target_count": null, @@ -8343,7 +8343,7 @@ "model": "api_v2.spellcastingoption", "pk": 3004, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_14", "damage_roll": "3d10", "target_count": null, @@ -8355,7 +8355,7 @@ "model": "api_v2.spellcastingoption", "pk": 3005, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_15", "damage_roll": "3d10", "target_count": null, @@ -8367,7 +8367,7 @@ "model": "api_v2.spellcastingoption", "pk": 3006, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_16", "damage_roll": "3d10", "target_count": null, @@ -8379,7 +8379,7 @@ "model": "api_v2.spellcastingoption", "pk": 3007, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_17", "damage_roll": "4d10", "target_count": null, @@ -8391,7 +8391,7 @@ "model": "api_v2.spellcastingoption", "pk": 3008, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_18", "damage_roll": "4d10", "target_count": null, @@ -8403,7 +8403,7 @@ "model": "api_v2.spellcastingoption", "pk": 3009, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_19", "damage_roll": "4d10", "target_count": null, @@ -8415,7 +8415,7 @@ "model": "api_v2.spellcastingoption", "pk": 3010, "fields": { - "spell": "decay", + "parent": "decay", "type": "player_level_20", "damage_roll": "4d10", "target_count": null, @@ -8427,7 +8427,7 @@ "model": "api_v2.spellcastingoption", "pk": 3011, "fields": { - "spell": "decelerate", + "parent": "decelerate", "type": "default", "damage_roll": null, "target_count": null, @@ -8439,7 +8439,7 @@ "model": "api_v2.spellcastingoption", "pk": 3013, "fields": { - "spell": "decelerate", + "parent": "decelerate", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -8451,7 +8451,7 @@ "model": "api_v2.spellcastingoption", "pk": 3014, "fields": { - "spell": "decelerate", + "parent": "decelerate", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -8463,7 +8463,7 @@ "model": "api_v2.spellcastingoption", "pk": 3015, "fields": { - "spell": "decelerate", + "parent": "decelerate", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -8475,7 +8475,7 @@ "model": "api_v2.spellcastingoption", "pk": 3016, "fields": { - "spell": "decelerate", + "parent": "decelerate", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8487,7 +8487,7 @@ "model": "api_v2.spellcastingoption", "pk": 3017, "fields": { - "spell": "decelerate", + "parent": "decelerate", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8499,7 +8499,7 @@ "model": "api_v2.spellcastingoption", "pk": 3018, "fields": { - "spell": "decelerate", + "parent": "decelerate", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8511,7 +8511,7 @@ "model": "api_v2.spellcastingoption", "pk": 3019, "fields": { - "spell": "decelerate", + "parent": "decelerate", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8523,7 +8523,7 @@ "model": "api_v2.spellcastingoption", "pk": 3020, "fields": { - "spell": "deep-breath", + "parent": "deep-breath", "type": "default", "damage_roll": null, "target_count": null, @@ -8535,7 +8535,7 @@ "model": "api_v2.spellcastingoption", "pk": 3022, "fields": { - "spell": "deep-breath", + "parent": "deep-breath", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -8547,7 +8547,7 @@ "model": "api_v2.spellcastingoption", "pk": 3023, "fields": { - "spell": "deep-breath", + "parent": "deep-breath", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -8559,7 +8559,7 @@ "model": "api_v2.spellcastingoption", "pk": 3024, "fields": { - "spell": "deep-breath", + "parent": "deep-breath", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -8571,7 +8571,7 @@ "model": "api_v2.spellcastingoption", "pk": 3025, "fields": { - "spell": "deep-breath", + "parent": "deep-breath", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -8583,7 +8583,7 @@ "model": "api_v2.spellcastingoption", "pk": 3026, "fields": { - "spell": "deep-breath", + "parent": "deep-breath", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8595,7 +8595,7 @@ "model": "api_v2.spellcastingoption", "pk": 3027, "fields": { - "spell": "deep-breath", + "parent": "deep-breath", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8607,7 +8607,7 @@ "model": "api_v2.spellcastingoption", "pk": 3028, "fields": { - "spell": "deep-breath", + "parent": "deep-breath", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8619,7 +8619,7 @@ "model": "api_v2.spellcastingoption", "pk": 3029, "fields": { - "spell": "deep-breath", + "parent": "deep-breath", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8631,7 +8631,7 @@ "model": "api_v2.spellcastingoption", "pk": 3030, "fields": { - "spell": "defile-healing", + "parent": "defile-healing", "type": "default", "damage_roll": null, "target_count": null, @@ -8643,7 +8643,7 @@ "model": "api_v2.spellcastingoption", "pk": 3032, "fields": { - "spell": "defile-healing", + "parent": "defile-healing", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8655,7 +8655,7 @@ "model": "api_v2.spellcastingoption", "pk": 3033, "fields": { - "spell": "defile-healing", + "parent": "defile-healing", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8667,7 +8667,7 @@ "model": "api_v2.spellcastingoption", "pk": 3034, "fields": { - "spell": "delay-potion", + "parent": "delay-potion", "type": "default", "damage_roll": null, "target_count": null, @@ -8679,7 +8679,7 @@ "model": "api_v2.spellcastingoption", "pk": 3035, "fields": { - "spell": "delayed-healing", + "parent": "delayed-healing", "type": "default", "damage_roll": null, "target_count": null, @@ -8691,7 +8691,7 @@ "model": "api_v2.spellcastingoption", "pk": 3037, "fields": { - "spell": "delayed-healing", + "parent": "delayed-healing", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -8703,7 +8703,7 @@ "model": "api_v2.spellcastingoption", "pk": 3038, "fields": { - "spell": "delayed-healing", + "parent": "delayed-healing", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -8715,7 +8715,7 @@ "model": "api_v2.spellcastingoption", "pk": 3039, "fields": { - "spell": "delayed-healing", + "parent": "delayed-healing", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8727,7 +8727,7 @@ "model": "api_v2.spellcastingoption", "pk": 3040, "fields": { - "spell": "delayed-healing", + "parent": "delayed-healing", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8739,7 +8739,7 @@ "model": "api_v2.spellcastingoption", "pk": 3041, "fields": { - "spell": "delayed-healing", + "parent": "delayed-healing", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8751,7 +8751,7 @@ "model": "api_v2.spellcastingoption", "pk": 3042, "fields": { - "spell": "delayed-healing", + "parent": "delayed-healing", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8763,7 +8763,7 @@ "model": "api_v2.spellcastingoption", "pk": 3043, "fields": { - "spell": "demon-within", + "parent": "demon-within", "type": "default", "damage_roll": null, "target_count": null, @@ -8775,7 +8775,7 @@ "model": "api_v2.spellcastingoption", "pk": 3044, "fields": { - "spell": "desiccating-breath", + "parent": "desiccating-breath", "type": "default", "damage_roll": null, "target_count": null, @@ -8787,7 +8787,7 @@ "model": "api_v2.spellcastingoption", "pk": 3045, "fields": { - "spell": "desolation", + "parent": "desolation", "type": "default", "damage_roll": null, "target_count": null, @@ -8799,7 +8799,7 @@ "model": "api_v2.spellcastingoption", "pk": 3046, "fields": { - "spell": "desolation", + "parent": "desolation", "type": "ritual", "damage_roll": null, "target_count": null, @@ -8811,7 +8811,7 @@ "model": "api_v2.spellcastingoption", "pk": 3047, "fields": { - "spell": "destructive-resonance", + "parent": "destructive-resonance", "type": "default", "damage_roll": null, "target_count": null, @@ -8823,7 +8823,7 @@ "model": "api_v2.spellcastingoption", "pk": 3049, "fields": { - "spell": "destructive-resonance", + "parent": "destructive-resonance", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -8835,7 +8835,7 @@ "model": "api_v2.spellcastingoption", "pk": 3050, "fields": { - "spell": "destructive-resonance", + "parent": "destructive-resonance", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -8847,7 +8847,7 @@ "model": "api_v2.spellcastingoption", "pk": 3051, "fields": { - "spell": "destructive-resonance", + "parent": "destructive-resonance", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -8859,7 +8859,7 @@ "model": "api_v2.spellcastingoption", "pk": 3052, "fields": { - "spell": "destructive-resonance", + "parent": "destructive-resonance", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8871,7 +8871,7 @@ "model": "api_v2.spellcastingoption", "pk": 3053, "fields": { - "spell": "destructive-resonance", + "parent": "destructive-resonance", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8883,7 +8883,7 @@ "model": "api_v2.spellcastingoption", "pk": 3054, "fields": { - "spell": "destructive-resonance", + "parent": "destructive-resonance", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8895,7 +8895,7 @@ "model": "api_v2.spellcastingoption", "pk": 3055, "fields": { - "spell": "destructive-resonance", + "parent": "destructive-resonance", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8907,7 +8907,7 @@ "model": "api_v2.spellcastingoption", "pk": 3056, "fields": { - "spell": "detect-dragons", + "parent": "detect-dragons", "type": "default", "damage_roll": null, "target_count": null, @@ -8919,7 +8919,7 @@ "model": "api_v2.spellcastingoption", "pk": 3057, "fields": { - "spell": "devas-wings", + "parent": "devas-wings", "type": "default", "damage_roll": null, "target_count": null, @@ -8931,7 +8931,7 @@ "model": "api_v2.spellcastingoption", "pk": 3059, "fields": { - "spell": "devas-wings", + "parent": "devas-wings", "type": "slot_level_5", "damage_roll": null, "target_count": 2, @@ -8943,7 +8943,7 @@ "model": "api_v2.spellcastingoption", "pk": 3060, "fields": { - "spell": "devas-wings", + "parent": "devas-wings", "type": "slot_level_6", "damage_roll": null, "target_count": 3, @@ -8955,7 +8955,7 @@ "model": "api_v2.spellcastingoption", "pk": 3061, "fields": { - "spell": "devas-wings", + "parent": "devas-wings", "type": "slot_level_7", "damage_roll": null, "target_count": 4, @@ -8967,7 +8967,7 @@ "model": "api_v2.spellcastingoption", "pk": 3062, "fields": { - "spell": "devas-wings", + "parent": "devas-wings", "type": "slot_level_8", "damage_roll": null, "target_count": 5, @@ -8979,7 +8979,7 @@ "model": "api_v2.spellcastingoption", "pk": 3063, "fields": { - "spell": "devas-wings", + "parent": "devas-wings", "type": "slot_level_9", "damage_roll": null, "target_count": 6, @@ -8991,7 +8991,7 @@ "model": "api_v2.spellcastingoption", "pk": 3064, "fields": { - "spell": "dimensional-shove", + "parent": "dimensional-shove", "type": "default", "damage_roll": null, "target_count": null, @@ -9003,7 +9003,7 @@ "model": "api_v2.spellcastingoption", "pk": 3066, "fields": { - "spell": "dimensional-shove", + "parent": "dimensional-shove", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -9015,7 +9015,7 @@ "model": "api_v2.spellcastingoption", "pk": 3067, "fields": { - "spell": "dimensional-shove", + "parent": "dimensional-shove", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9027,7 +9027,7 @@ "model": "api_v2.spellcastingoption", "pk": 3068, "fields": { - "spell": "dimensional-shove", + "parent": "dimensional-shove", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9039,7 +9039,7 @@ "model": "api_v2.spellcastingoption", "pk": 3069, "fields": { - "spell": "dimensional-shove", + "parent": "dimensional-shove", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9051,7 +9051,7 @@ "model": "api_v2.spellcastingoption", "pk": 3070, "fields": { - "spell": "dimensional-shove", + "parent": "dimensional-shove", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9063,7 +9063,7 @@ "model": "api_v2.spellcastingoption", "pk": 3071, "fields": { - "spell": "dimensional-shove", + "parent": "dimensional-shove", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9075,7 +9075,7 @@ "model": "api_v2.spellcastingoption", "pk": 3072, "fields": { - "spell": "disquieting-gaze", + "parent": "disquieting-gaze", "type": "default", "damage_roll": null, "target_count": null, @@ -9087,7 +9087,7 @@ "model": "api_v2.spellcastingoption", "pk": 3073, "fields": { - "spell": "disruptive-aura", + "parent": "disruptive-aura", "type": "default", "damage_roll": null, "target_count": null, @@ -9099,7 +9099,7 @@ "model": "api_v2.spellcastingoption", "pk": 3075, "fields": { - "spell": "disruptive-aura", + "parent": "disruptive-aura", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9111,7 +9111,7 @@ "model": "api_v2.spellcastingoption", "pk": 3076, "fields": { - "spell": "distracting-divination", + "parent": "distracting-divination", "type": "default", "damage_roll": null, "target_count": null, @@ -9123,7 +9123,7 @@ "model": "api_v2.spellcastingoption", "pk": 3077, "fields": { - "spell": "distraction-cascade", + "parent": "distraction-cascade", "type": "default", "damage_roll": null, "target_count": null, @@ -9135,7 +9135,7 @@ "model": "api_v2.spellcastingoption", "pk": 3078, "fields": { - "spell": "doom-of-blue-crystal", + "parent": "doom-of-blue-crystal", "type": "default", "damage_roll": null, "target_count": null, @@ -9147,7 +9147,7 @@ "model": "api_v2.spellcastingoption", "pk": 3079, "fields": { - "spell": "doom-of-consuming-fire", + "parent": "doom-of-consuming-fire", "type": "default", "damage_roll": null, "target_count": null, @@ -9159,7 +9159,7 @@ "model": "api_v2.spellcastingoption", "pk": 3081, "fields": { - "spell": "doom-of-consuming-fire", + "parent": "doom-of-consuming-fire", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -9171,7 +9171,7 @@ "model": "api_v2.spellcastingoption", "pk": 3082, "fields": { - "spell": "doom-of-consuming-fire", + "parent": "doom-of-consuming-fire", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -9183,7 +9183,7 @@ "model": "api_v2.spellcastingoption", "pk": 3083, "fields": { - "spell": "doom-of-consuming-fire", + "parent": "doom-of-consuming-fire", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9195,7 +9195,7 @@ "model": "api_v2.spellcastingoption", "pk": 3084, "fields": { - "spell": "doom-of-consuming-fire", + "parent": "doom-of-consuming-fire", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9207,7 +9207,7 @@ "model": "api_v2.spellcastingoption", "pk": 3085, "fields": { - "spell": "doom-of-consuming-fire", + "parent": "doom-of-consuming-fire", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9219,7 +9219,7 @@ "model": "api_v2.spellcastingoption", "pk": 3086, "fields": { - "spell": "doom-of-consuming-fire", + "parent": "doom-of-consuming-fire", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9231,7 +9231,7 @@ "model": "api_v2.spellcastingoption", "pk": 3087, "fields": { - "spell": "doom-of-consuming-fire", + "parent": "doom-of-consuming-fire", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9243,7 +9243,7 @@ "model": "api_v2.spellcastingoption", "pk": 3088, "fields": { - "spell": "doom-of-dancing-blades", + "parent": "doom-of-dancing-blades", "type": "default", "damage_roll": null, "target_count": null, @@ -9255,7 +9255,7 @@ "model": "api_v2.spellcastingoption", "pk": 3089, "fields": { - "spell": "doom-of-disenchantment", + "parent": "doom-of-disenchantment", "type": "default", "damage_roll": null, "target_count": null, @@ -9267,7 +9267,7 @@ "model": "api_v2.spellcastingoption", "pk": 3090, "fields": { - "spell": "doom-of-serpent-coils", + "parent": "doom-of-serpent-coils", "type": "default", "damage_roll": null, "target_count": null, @@ -9279,7 +9279,7 @@ "model": "api_v2.spellcastingoption", "pk": 3091, "fields": { - "spell": "doom-of-the-cracked-shield", + "parent": "doom-of-the-cracked-shield", "type": "default", "damage_roll": null, "target_count": null, @@ -9291,7 +9291,7 @@ "model": "api_v2.spellcastingoption", "pk": 3092, "fields": { - "spell": "doom-of-the-earthen-maw", + "parent": "doom-of-the-earthen-maw", "type": "default", "damage_roll": null, "target_count": null, @@ -9303,7 +9303,7 @@ "model": "api_v2.spellcastingoption", "pk": 3093, "fields": { - "spell": "doom-of-the-slippery-rogue", + "parent": "doom-of-the-slippery-rogue", "type": "default", "damage_roll": null, "target_count": null, @@ -9315,7 +9315,7 @@ "model": "api_v2.spellcastingoption", "pk": 3094, "fields": { - "spell": "douse-light", + "parent": "douse-light", "type": "default", "damage_roll": null, "target_count": null, @@ -9327,7 +9327,7 @@ "model": "api_v2.spellcastingoption", "pk": 3095, "fields": { - "spell": "draconic-smite", + "parent": "draconic-smite", "type": "default", "damage_roll": null, "target_count": null, @@ -9339,7 +9339,7 @@ "model": "api_v2.spellcastingoption", "pk": 3097, "fields": { - "spell": "draconic-smite", + "parent": "draconic-smite", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -9351,7 +9351,7 @@ "model": "api_v2.spellcastingoption", "pk": 3098, "fields": { - "spell": "draconic-smite", + "parent": "draconic-smite", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -9363,7 +9363,7 @@ "model": "api_v2.spellcastingoption", "pk": 3099, "fields": { - "spell": "draconic-smite", + "parent": "draconic-smite", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -9375,7 +9375,7 @@ "model": "api_v2.spellcastingoption", "pk": 3100, "fields": { - "spell": "draconic-smite", + "parent": "draconic-smite", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9387,7 +9387,7 @@ "model": "api_v2.spellcastingoption", "pk": 3101, "fields": { - "spell": "draconic-smite", + "parent": "draconic-smite", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9399,7 +9399,7 @@ "model": "api_v2.spellcastingoption", "pk": 3102, "fields": { - "spell": "draconic-smite", + "parent": "draconic-smite", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9411,7 +9411,7 @@ "model": "api_v2.spellcastingoption", "pk": 3103, "fields": { - "spell": "draconic-smite", + "parent": "draconic-smite", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9423,7 +9423,7 @@ "model": "api_v2.spellcastingoption", "pk": 3104, "fields": { - "spell": "draconic-smite", + "parent": "draconic-smite", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9435,7 +9435,7 @@ "model": "api_v2.spellcastingoption", "pk": 3105, "fields": { - "spell": "dragon-breath", + "parent": "dragon-breath", "type": "default", "damage_roll": null, "target_count": null, @@ -9447,7 +9447,7 @@ "model": "api_v2.spellcastingoption", "pk": 3107, "fields": { - "spell": "dragon-breath", + "parent": "dragon-breath", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9459,7 +9459,7 @@ "model": "api_v2.spellcastingoption", "pk": 3108, "fields": { - "spell": "dragon-breath", + "parent": "dragon-breath", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9471,7 +9471,7 @@ "model": "api_v2.spellcastingoption", "pk": 3109, "fields": { - "spell": "dragon-breath", + "parent": "dragon-breath", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9483,7 +9483,7 @@ "model": "api_v2.spellcastingoption", "pk": 3110, "fields": { - "spell": "dragon-breath", + "parent": "dragon-breath", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9495,7 +9495,7 @@ "model": "api_v2.spellcastingoption", "pk": 3111, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "default", "damage_roll": null, "target_count": null, @@ -9507,7 +9507,7 @@ "model": "api_v2.spellcastingoption", "pk": 3112, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_1", "damage_roll": "1d4", "target_count": null, @@ -9519,7 +9519,7 @@ "model": "api_v2.spellcastingoption", "pk": 3113, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_2", "damage_roll": "1d4", "target_count": null, @@ -9531,7 +9531,7 @@ "model": "api_v2.spellcastingoption", "pk": 3114, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_3", "damage_roll": "1d4", "target_count": null, @@ -9543,7 +9543,7 @@ "model": "api_v2.spellcastingoption", "pk": 3115, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_4", "damage_roll": "1d4", "target_count": null, @@ -9555,7 +9555,7 @@ "model": "api_v2.spellcastingoption", "pk": 3116, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_5", "damage_roll": "2d4", "target_count": null, @@ -9567,7 +9567,7 @@ "model": "api_v2.spellcastingoption", "pk": 3117, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_6", "damage_roll": "2d4", "target_count": null, @@ -9579,7 +9579,7 @@ "model": "api_v2.spellcastingoption", "pk": 3118, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_7", "damage_roll": "2d4", "target_count": null, @@ -9591,7 +9591,7 @@ "model": "api_v2.spellcastingoption", "pk": 3119, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_8", "damage_roll": "2d4", "target_count": null, @@ -9603,7 +9603,7 @@ "model": "api_v2.spellcastingoption", "pk": 3120, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_9", "damage_roll": "2d4", "target_count": null, @@ -9615,7 +9615,7 @@ "model": "api_v2.spellcastingoption", "pk": 3121, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_10", "damage_roll": "2d4", "target_count": null, @@ -9627,7 +9627,7 @@ "model": "api_v2.spellcastingoption", "pk": 3122, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_11", "damage_roll": "3d4", "target_count": null, @@ -9639,7 +9639,7 @@ "model": "api_v2.spellcastingoption", "pk": 3123, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_12", "damage_roll": "3d4", "target_count": null, @@ -9651,7 +9651,7 @@ "model": "api_v2.spellcastingoption", "pk": 3124, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_13", "damage_roll": "3d4", "target_count": null, @@ -9663,7 +9663,7 @@ "model": "api_v2.spellcastingoption", "pk": 3125, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_14", "damage_roll": "3d4", "target_count": null, @@ -9675,7 +9675,7 @@ "model": "api_v2.spellcastingoption", "pk": 3126, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_15", "damage_roll": "3d4", "target_count": null, @@ -9687,7 +9687,7 @@ "model": "api_v2.spellcastingoption", "pk": 3127, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_16", "damage_roll": "3d4", "target_count": null, @@ -9699,7 +9699,7 @@ "model": "api_v2.spellcastingoption", "pk": 3128, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_17", "damage_roll": "4d4", "target_count": null, @@ -9711,7 +9711,7 @@ "model": "api_v2.spellcastingoption", "pk": 3129, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_18", "damage_roll": "4d4", "target_count": null, @@ -9723,7 +9723,7 @@ "model": "api_v2.spellcastingoption", "pk": 3130, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_19", "damage_roll": "4d4", "target_count": null, @@ -9735,7 +9735,7 @@ "model": "api_v2.spellcastingoption", "pk": 3131, "fields": { - "spell": "dragon-roar", + "parent": "dragon-roar", "type": "player_level_20", "damage_roll": "4d4", "target_count": null, @@ -9747,7 +9747,7 @@ "model": "api_v2.spellcastingoption", "pk": 3132, "fields": { - "spell": "drown", + "parent": "drown", "type": "default", "damage_roll": null, "target_count": null, @@ -9759,7 +9759,7 @@ "model": "api_v2.spellcastingoption", "pk": 3134, "fields": { - "spell": "drown", + "parent": "drown", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -9771,7 +9771,7 @@ "model": "api_v2.spellcastingoption", "pk": 3135, "fields": { - "spell": "drown", + "parent": "drown", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -9783,7 +9783,7 @@ "model": "api_v2.spellcastingoption", "pk": 3136, "fields": { - "spell": "drown", + "parent": "drown", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -9795,7 +9795,7 @@ "model": "api_v2.spellcastingoption", "pk": 3137, "fields": { - "spell": "drown", + "parent": "drown", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -9807,7 +9807,7 @@ "model": "api_v2.spellcastingoption", "pk": 3138, "fields": { - "spell": "drown", + "parent": "drown", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -9819,7 +9819,7 @@ "model": "api_v2.spellcastingoption", "pk": 3139, "fields": { - "spell": "drown", + "parent": "drown", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -9831,7 +9831,7 @@ "model": "api_v2.spellcastingoption", "pk": 3140, "fields": { - "spell": "dryads-kiss", + "parent": "dryads-kiss", "type": "default", "damage_roll": null, "target_count": null, @@ -9843,7 +9843,7 @@ "model": "api_v2.spellcastingoption", "pk": 3142, "fields": { - "spell": "dryads-kiss", + "parent": "dryads-kiss", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -9855,7 +9855,7 @@ "model": "api_v2.spellcastingoption", "pk": 3143, "fields": { - "spell": "dryads-kiss", + "parent": "dryads-kiss", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9867,7 +9867,7 @@ "model": "api_v2.spellcastingoption", "pk": 3144, "fields": { - "spell": "dryads-kiss", + "parent": "dryads-kiss", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9879,7 +9879,7 @@ "model": "api_v2.spellcastingoption", "pk": 3145, "fields": { - "spell": "dryads-kiss", + "parent": "dryads-kiss", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9891,7 +9891,7 @@ "model": "api_v2.spellcastingoption", "pk": 3146, "fields": { - "spell": "dryads-kiss", + "parent": "dryads-kiss", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9903,7 +9903,7 @@ "model": "api_v2.spellcastingoption", "pk": 3147, "fields": { - "spell": "dryads-kiss", + "parent": "dryads-kiss", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9915,7 +9915,7 @@ "model": "api_v2.spellcastingoption", "pk": 3148, "fields": { - "spell": "earthskimmer", + "parent": "earthskimmer", "type": "default", "damage_roll": null, "target_count": null, @@ -9927,7 +9927,7 @@ "model": "api_v2.spellcastingoption", "pk": 3149, "fields": { - "spell": "earworm-melody", + "parent": "earworm-melody", "type": "default", "damage_roll": null, "target_count": null, @@ -9939,7 +9939,7 @@ "model": "api_v2.spellcastingoption", "pk": 3151, "fields": { - "spell": "earworm-melody", + "parent": "earworm-melody", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -9951,7 +9951,7 @@ "model": "api_v2.spellcastingoption", "pk": 3152, "fields": { - "spell": "earworm-melody", + "parent": "earworm-melody", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -9963,7 +9963,7 @@ "model": "api_v2.spellcastingoption", "pk": 3153, "fields": { - "spell": "earworm-melody", + "parent": "earworm-melody", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -9975,7 +9975,7 @@ "model": "api_v2.spellcastingoption", "pk": 3154, "fields": { - "spell": "earworm-melody", + "parent": "earworm-melody", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9987,7 +9987,7 @@ "model": "api_v2.spellcastingoption", "pk": 3155, "fields": { - "spell": "earworm-melody", + "parent": "earworm-melody", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9999,7 +9999,7 @@ "model": "api_v2.spellcastingoption", "pk": 3156, "fields": { - "spell": "earworm-melody", + "parent": "earworm-melody", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10011,7 +10011,7 @@ "model": "api_v2.spellcastingoption", "pk": 3157, "fields": { - "spell": "earworm-melody", + "parent": "earworm-melody", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10023,7 +10023,7 @@ "model": "api_v2.spellcastingoption", "pk": 3158, "fields": { - "spell": "earworm-melody", + "parent": "earworm-melody", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10035,7 +10035,7 @@ "model": "api_v2.spellcastingoption", "pk": 3159, "fields": { - "spell": "echoes-of-steel", + "parent": "echoes-of-steel", "type": "default", "damage_roll": null, "target_count": null, @@ -10047,7 +10047,7 @@ "model": "api_v2.spellcastingoption", "pk": 3160, "fields": { - "spell": "ectoplasm", + "parent": "ectoplasm", "type": "default", "damage_roll": null, "target_count": null, @@ -10059,7 +10059,7 @@ "model": "api_v2.spellcastingoption", "pk": 3162, "fields": { - "spell": "ectoplasm", + "parent": "ectoplasm", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -10071,7 +10071,7 @@ "model": "api_v2.spellcastingoption", "pk": 3163, "fields": { - "spell": "ectoplasm", + "parent": "ectoplasm", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -10083,7 +10083,7 @@ "model": "api_v2.spellcastingoption", "pk": 3164, "fields": { - "spell": "ectoplasm", + "parent": "ectoplasm", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -10095,7 +10095,7 @@ "model": "api_v2.spellcastingoption", "pk": 3165, "fields": { - "spell": "ectoplasm", + "parent": "ectoplasm", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -10107,7 +10107,7 @@ "model": "api_v2.spellcastingoption", "pk": 3166, "fields": { - "spell": "ectoplasm", + "parent": "ectoplasm", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10119,7 +10119,7 @@ "model": "api_v2.spellcastingoption", "pk": 3167, "fields": { - "spell": "ectoplasm", + "parent": "ectoplasm", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10131,7 +10131,7 @@ "model": "api_v2.spellcastingoption", "pk": 3168, "fields": { - "spell": "ectoplasm", + "parent": "ectoplasm", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10143,7 +10143,7 @@ "model": "api_v2.spellcastingoption", "pk": 3169, "fields": { - "spell": "eidetic-memory", + "parent": "eidetic-memory", "type": "default", "damage_roll": null, "target_count": null, @@ -10155,7 +10155,7 @@ "model": "api_v2.spellcastingoption", "pk": 3170, "fields": { - "spell": "eidetic-memory", + "parent": "eidetic-memory", "type": "ritual", "damage_roll": null, "target_count": null, @@ -10167,7 +10167,7 @@ "model": "api_v2.spellcastingoption", "pk": 3171, "fields": { - "spell": "eldritch-communion", + "parent": "eldritch-communion", "type": "default", "damage_roll": null, "target_count": null, @@ -10179,7 +10179,7 @@ "model": "api_v2.spellcastingoption", "pk": 3172, "fields": { - "spell": "eldritch-communion", + "parent": "eldritch-communion", "type": "ritual", "damage_roll": null, "target_count": null, @@ -10191,7 +10191,7 @@ "model": "api_v2.spellcastingoption", "pk": 3173, "fields": { - "spell": "elemental-horns", + "parent": "elemental-horns", "type": "default", "damage_roll": null, "target_count": null, @@ -10203,7 +10203,7 @@ "model": "api_v2.spellcastingoption", "pk": 3175, "fields": { - "spell": "elemental-horns", + "parent": "elemental-horns", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -10215,7 +10215,7 @@ "model": "api_v2.spellcastingoption", "pk": 3176, "fields": { - "spell": "elemental-horns", + "parent": "elemental-horns", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -10227,7 +10227,7 @@ "model": "api_v2.spellcastingoption", "pk": 3177, "fields": { - "spell": "elemental-horns", + "parent": "elemental-horns", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -10239,7 +10239,7 @@ "model": "api_v2.spellcastingoption", "pk": 3178, "fields": { - "spell": "elemental-horns", + "parent": "elemental-horns", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -10251,7 +10251,7 @@ "model": "api_v2.spellcastingoption", "pk": 3179, "fields": { - "spell": "elemental-horns", + "parent": "elemental-horns", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10263,7 +10263,7 @@ "model": "api_v2.spellcastingoption", "pk": 3180, "fields": { - "spell": "elemental-horns", + "parent": "elemental-horns", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10275,7 +10275,7 @@ "model": "api_v2.spellcastingoption", "pk": 3181, "fields": { - "spell": "elemental-horns", + "parent": "elemental-horns", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10287,7 +10287,7 @@ "model": "api_v2.spellcastingoption", "pk": 3182, "fields": { - "spell": "elemental-twist", + "parent": "elemental-twist", "type": "default", "damage_roll": null, "target_count": null, @@ -10299,7 +10299,7 @@ "model": "api_v2.spellcastingoption", "pk": 3183, "fields": { - "spell": "emanation-of-yoth", + "parent": "emanation-of-yoth", "type": "default", "damage_roll": null, "target_count": null, @@ -10311,7 +10311,7 @@ "model": "api_v2.spellcastingoption", "pk": 3184, "fields": { - "spell": "emanation-of-yoth", + "parent": "emanation-of-yoth", "type": "ritual", "damage_roll": null, "target_count": null, @@ -10323,7 +10323,7 @@ "model": "api_v2.spellcastingoption", "pk": 3186, "fields": { - "spell": "emanation-of-yoth", + "parent": "emanation-of-yoth", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -10335,7 +10335,7 @@ "model": "api_v2.spellcastingoption", "pk": 3187, "fields": { - "spell": "emanation-of-yoth", + "parent": "emanation-of-yoth", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -10347,7 +10347,7 @@ "model": "api_v2.spellcastingoption", "pk": 3188, "fields": { - "spell": "emanation-of-yoth", + "parent": "emanation-of-yoth", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10359,7 +10359,7 @@ "model": "api_v2.spellcastingoption", "pk": 3189, "fields": { - "spell": "emanation-of-yoth", + "parent": "emanation-of-yoth", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10371,7 +10371,7 @@ "model": "api_v2.spellcastingoption", "pk": 3190, "fields": { - "spell": "emanation-of-yoth", + "parent": "emanation-of-yoth", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10383,7 +10383,7 @@ "model": "api_v2.spellcastingoption", "pk": 3191, "fields": { - "spell": "enchant-ring", + "parent": "enchant-ring", "type": "default", "damage_roll": null, "target_count": null, @@ -10395,7 +10395,7 @@ "model": "api_v2.spellcastingoption", "pk": 3192, "fields": { - "spell": "encroaching-shadows", + "parent": "encroaching-shadows", "type": "default", "damage_roll": null, "target_count": null, @@ -10407,7 +10407,7 @@ "model": "api_v2.spellcastingoption", "pk": 3193, "fields": { - "spell": "encroaching-shadows", + "parent": "encroaching-shadows", "type": "ritual", "damage_roll": null, "target_count": null, @@ -10419,7 +10419,7 @@ "model": "api_v2.spellcastingoption", "pk": 3195, "fields": { - "spell": "encroaching-shadows", + "parent": "encroaching-shadows", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10431,7 +10431,7 @@ "model": "api_v2.spellcastingoption", "pk": 3196, "fields": { - "spell": "encroaching-shadows", + "parent": "encroaching-shadows", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10443,7 +10443,7 @@ "model": "api_v2.spellcastingoption", "pk": 3197, "fields": { - "spell": "encroaching-shadows", + "parent": "encroaching-shadows", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10455,7 +10455,7 @@ "model": "api_v2.spellcastingoption", "pk": 3198, "fields": { - "spell": "encrypt-decrypt", + "parent": "encrypt-decrypt", "type": "default", "damage_roll": null, "target_count": null, @@ -10467,7 +10467,7 @@ "model": "api_v2.spellcastingoption", "pk": 3199, "fields": { - "spell": "endow-attribute", + "parent": "endow-attribute", "type": "default", "damage_roll": null, "target_count": null, @@ -10479,7 +10479,7 @@ "model": "api_v2.spellcastingoption", "pk": 3201, "fields": { - "spell": "endow-attribute", + "parent": "endow-attribute", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -10491,7 +10491,7 @@ "model": "api_v2.spellcastingoption", "pk": 3202, "fields": { - "spell": "endow-attribute", + "parent": "endow-attribute", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -10503,7 +10503,7 @@ "model": "api_v2.spellcastingoption", "pk": 3203, "fields": { - "spell": "endow-attribute", + "parent": "endow-attribute", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10515,7 +10515,7 @@ "model": "api_v2.spellcastingoption", "pk": 3204, "fields": { - "spell": "endow-attribute", + "parent": "endow-attribute", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10527,7 +10527,7 @@ "model": "api_v2.spellcastingoption", "pk": 3205, "fields": { - "spell": "endow-attribute", + "parent": "endow-attribute", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10539,7 +10539,7 @@ "model": "api_v2.spellcastingoption", "pk": 3206, "fields": { - "spell": "energy-absorption", + "parent": "energy-absorption", "type": "default", "damage_roll": null, "target_count": null, @@ -10551,7 +10551,7 @@ "model": "api_v2.spellcastingoption", "pk": 3207, "fields": { - "spell": "energy-foreknowledge", + "parent": "energy-foreknowledge", "type": "default", "damage_roll": null, "target_count": null, @@ -10563,7 +10563,7 @@ "model": "api_v2.spellcastingoption", "pk": 3209, "fields": { - "spell": "energy-foreknowledge", + "parent": "energy-foreknowledge", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -10575,7 +10575,7 @@ "model": "api_v2.spellcastingoption", "pk": 3210, "fields": { - "spell": "energy-foreknowledge", + "parent": "energy-foreknowledge", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -10587,7 +10587,7 @@ "model": "api_v2.spellcastingoption", "pk": 3211, "fields": { - "spell": "energy-foreknowledge", + "parent": "energy-foreknowledge", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10599,7 +10599,7 @@ "model": "api_v2.spellcastingoption", "pk": 3212, "fields": { - "spell": "energy-foreknowledge", + "parent": "energy-foreknowledge", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10611,7 +10611,7 @@ "model": "api_v2.spellcastingoption", "pk": 3213, "fields": { - "spell": "energy-foreknowledge", + "parent": "energy-foreknowledge", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10623,7 +10623,7 @@ "model": "api_v2.spellcastingoption", "pk": 3214, "fields": { - "spell": "enhance-greed", + "parent": "enhance-greed", "type": "default", "damage_roll": null, "target_count": null, @@ -10635,7 +10635,7 @@ "model": "api_v2.spellcastingoption", "pk": 3216, "fields": { - "spell": "enhance-greed", + "parent": "enhance-greed", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -10647,7 +10647,7 @@ "model": "api_v2.spellcastingoption", "pk": 3217, "fields": { - "spell": "enhance-greed", + "parent": "enhance-greed", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -10659,7 +10659,7 @@ "model": "api_v2.spellcastingoption", "pk": 3218, "fields": { - "spell": "enhance-greed", + "parent": "enhance-greed", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -10671,7 +10671,7 @@ "model": "api_v2.spellcastingoption", "pk": 3219, "fields": { - "spell": "enhance-greed", + "parent": "enhance-greed", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -10683,7 +10683,7 @@ "model": "api_v2.spellcastingoption", "pk": 3220, "fields": { - "spell": "enhance-greed", + "parent": "enhance-greed", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10695,7 +10695,7 @@ "model": "api_v2.spellcastingoption", "pk": 3221, "fields": { - "spell": "enhance-greed", + "parent": "enhance-greed", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10707,7 +10707,7 @@ "model": "api_v2.spellcastingoption", "pk": 3222, "fields": { - "spell": "enhance-greed", + "parent": "enhance-greed", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10719,7 +10719,7 @@ "model": "api_v2.spellcastingoption", "pk": 3223, "fields": { - "spell": "entomb", + "parent": "entomb", "type": "default", "damage_roll": null, "target_count": null, @@ -10731,7 +10731,7 @@ "model": "api_v2.spellcastingoption", "pk": 3224, "fields": { - "spell": "entropic-damage-field", + "parent": "entropic-damage-field", "type": "default", "damage_roll": null, "target_count": null, @@ -10743,7 +10743,7 @@ "model": "api_v2.spellcastingoption", "pk": 3225, "fields": { - "spell": "essence-instability", + "parent": "essence-instability", "type": "default", "damage_roll": null, "target_count": null, @@ -10755,7 +10755,7 @@ "model": "api_v2.spellcastingoption", "pk": 3227, "fields": { - "spell": "essence-instability", + "parent": "essence-instability", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -10767,7 +10767,7 @@ "model": "api_v2.spellcastingoption", "pk": 3228, "fields": { - "spell": "essence-instability", + "parent": "essence-instability", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -10779,7 +10779,7 @@ "model": "api_v2.spellcastingoption", "pk": 3229, "fields": { - "spell": "essence-instability", + "parent": "essence-instability", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -10791,7 +10791,7 @@ "model": "api_v2.spellcastingoption", "pk": 3230, "fields": { - "spell": "essence-instability", + "parent": "essence-instability", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -10803,7 +10803,7 @@ "model": "api_v2.spellcastingoption", "pk": 3231, "fields": { - "spell": "evercold", + "parent": "evercold", "type": "default", "damage_roll": null, "target_count": null, @@ -10815,7 +10815,7 @@ "model": "api_v2.spellcastingoption", "pk": 3232, "fields": { - "spell": "exsanguinate", + "parent": "exsanguinate", "type": "default", "damage_roll": null, "target_count": null, @@ -10827,7 +10827,7 @@ "model": "api_v2.spellcastingoption", "pk": 3234, "fields": { - "spell": "exsanguinate", + "parent": "exsanguinate", "type": "slot_level_6", "damage_roll": null, "target_count": 2, @@ -10839,7 +10839,7 @@ "model": "api_v2.spellcastingoption", "pk": 3235, "fields": { - "spell": "exsanguinate", + "parent": "exsanguinate", "type": "slot_level_7", "damage_roll": null, "target_count": 3, @@ -10851,7 +10851,7 @@ "model": "api_v2.spellcastingoption", "pk": 3236, "fields": { - "spell": "exsanguinate", + "parent": "exsanguinate", "type": "slot_level_8", "damage_roll": null, "target_count": 4, @@ -10863,7 +10863,7 @@ "model": "api_v2.spellcastingoption", "pk": 3237, "fields": { - "spell": "exsanguinate", + "parent": "exsanguinate", "type": "slot_level_9", "damage_roll": null, "target_count": 5, @@ -10875,7 +10875,7 @@ "model": "api_v2.spellcastingoption", "pk": 3238, "fields": { - "spell": "exsanguinating-cloud", + "parent": "exsanguinating-cloud", "type": "default", "damage_roll": null, "target_count": null, @@ -10887,7 +10887,7 @@ "model": "api_v2.spellcastingoption", "pk": 3239, "fields": { - "spell": "extract-knowledge", + "parent": "extract-knowledge", "type": "default", "damage_roll": null, "target_count": null, @@ -10899,7 +10899,7 @@ "model": "api_v2.spellcastingoption", "pk": 3240, "fields": { - "spell": "extract-knowledge", + "parent": "extract-knowledge", "type": "ritual", "damage_roll": null, "target_count": null, @@ -10911,7 +10911,7 @@ "model": "api_v2.spellcastingoption", "pk": 3241, "fields": { - "spell": "fault-line", + "parent": "fault-line", "type": "default", "damage_roll": null, "target_count": null, @@ -10923,7 +10923,7 @@ "model": "api_v2.spellcastingoption", "pk": 3242, "fields": { - "spell": "feather-field", + "parent": "feather-field", "type": "default", "damage_roll": null, "target_count": null, @@ -10935,7 +10935,7 @@ "model": "api_v2.spellcastingoption", "pk": 3244, "fields": { - "spell": "feather-field", + "parent": "feather-field", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -10947,7 +10947,7 @@ "model": "api_v2.spellcastingoption", "pk": 3245, "fields": { - "spell": "feather-field", + "parent": "feather-field", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -10959,7 +10959,7 @@ "model": "api_v2.spellcastingoption", "pk": 3246, "fields": { - "spell": "feather-field", + "parent": "feather-field", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -10971,7 +10971,7 @@ "model": "api_v2.spellcastingoption", "pk": 3247, "fields": { - "spell": "feather-field", + "parent": "feather-field", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -10983,7 +10983,7 @@ "model": "api_v2.spellcastingoption", "pk": 3248, "fields": { - "spell": "feather-field", + "parent": "feather-field", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -10995,7 +10995,7 @@ "model": "api_v2.spellcastingoption", "pk": 3249, "fields": { - "spell": "feather-field", + "parent": "feather-field", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11007,7 +11007,7 @@ "model": "api_v2.spellcastingoption", "pk": 3250, "fields": { - "spell": "feather-field", + "parent": "feather-field", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11019,7 +11019,7 @@ "model": "api_v2.spellcastingoption", "pk": 3251, "fields": { - "spell": "feather-field", + "parent": "feather-field", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11031,7 +11031,7 @@ "model": "api_v2.spellcastingoption", "pk": 3252, "fields": { - "spell": "feather-travel", + "parent": "feather-travel", "type": "default", "damage_roll": null, "target_count": null, @@ -11043,7 +11043,7 @@ "model": "api_v2.spellcastingoption", "pk": 3254, "fields": { - "spell": "feather-travel", + "parent": "feather-travel", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -11055,7 +11055,7 @@ "model": "api_v2.spellcastingoption", "pk": 3255, "fields": { - "spell": "feather-travel", + "parent": "feather-travel", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -11067,7 +11067,7 @@ "model": "api_v2.spellcastingoption", "pk": 3256, "fields": { - "spell": "feather-travel", + "parent": "feather-travel", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -11079,7 +11079,7 @@ "model": "api_v2.spellcastingoption", "pk": 3257, "fields": { - "spell": "feather-travel", + "parent": "feather-travel", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11091,7 +11091,7 @@ "model": "api_v2.spellcastingoption", "pk": 3258, "fields": { - "spell": "feather-travel", + "parent": "feather-travel", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11103,7 +11103,7 @@ "model": "api_v2.spellcastingoption", "pk": 3259, "fields": { - "spell": "feather-travel", + "parent": "feather-travel", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11115,7 +11115,7 @@ "model": "api_v2.spellcastingoption", "pk": 3260, "fields": { - "spell": "feather-travel", + "parent": "feather-travel", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11127,7 +11127,7 @@ "model": "api_v2.spellcastingoption", "pk": 3261, "fields": { - "spell": "fey-crown", + "parent": "fey-crown", "type": "default", "damage_roll": null, "target_count": null, @@ -11139,7 +11139,7 @@ "model": "api_v2.spellcastingoption", "pk": 3263, "fields": { - "spell": "fey-crown", + "parent": "fey-crown", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11151,7 +11151,7 @@ "model": "api_v2.spellcastingoption", "pk": 3264, "fields": { - "spell": "fey-crown", + "parent": "fey-crown", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11163,7 +11163,7 @@ "model": "api_v2.spellcastingoption", "pk": 3265, "fields": { - "spell": "fey-crown", + "parent": "fey-crown", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11175,7 +11175,7 @@ "model": "api_v2.spellcastingoption", "pk": 3266, "fields": { - "spell": "fey-crown", + "parent": "fey-crown", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11187,7 +11187,7 @@ "model": "api_v2.spellcastingoption", "pk": 3267, "fields": { - "spell": "find-kin", + "parent": "find-kin", "type": "default", "damage_roll": null, "target_count": null, @@ -11199,7 +11199,7 @@ "model": "api_v2.spellcastingoption", "pk": 3268, "fields": { - "spell": "find-kin", + "parent": "find-kin", "type": "ritual", "damage_roll": null, "target_count": null, @@ -11211,7 +11211,7 @@ "model": "api_v2.spellcastingoption", "pk": 3269, "fields": { - "spell": "fire-darts", + "parent": "fire-darts", "type": "default", "damage_roll": null, "target_count": null, @@ -11223,7 +11223,7 @@ "model": "api_v2.spellcastingoption", "pk": 3271, "fields": { - "spell": "fire-darts", + "parent": "fire-darts", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -11235,7 +11235,7 @@ "model": "api_v2.spellcastingoption", "pk": 3272, "fields": { - "spell": "fire-darts", + "parent": "fire-darts", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -11247,7 +11247,7 @@ "model": "api_v2.spellcastingoption", "pk": 3273, "fields": { - "spell": "fire-darts", + "parent": "fire-darts", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -11259,7 +11259,7 @@ "model": "api_v2.spellcastingoption", "pk": 3274, "fields": { - "spell": "fire-darts", + "parent": "fire-darts", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11271,7 +11271,7 @@ "model": "api_v2.spellcastingoption", "pk": 3275, "fields": { - "spell": "fire-darts", + "parent": "fire-darts", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11283,7 +11283,7 @@ "model": "api_v2.spellcastingoption", "pk": 3276, "fields": { - "spell": "fire-darts", + "parent": "fire-darts", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11295,7 +11295,7 @@ "model": "api_v2.spellcastingoption", "pk": 3277, "fields": { - "spell": "fire-darts", + "parent": "fire-darts", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11307,7 +11307,7 @@ "model": "api_v2.spellcastingoption", "pk": 3278, "fields": { - "spell": "fire-under-the-tongue", + "parent": "fire-under-the-tongue", "type": "default", "damage_roll": null, "target_count": null, @@ -11319,7 +11319,7 @@ "model": "api_v2.spellcastingoption", "pk": 3279, "fields": { - "spell": "firewalk", + "parent": "firewalk", "type": "default", "damage_roll": null, "target_count": null, @@ -11331,7 +11331,7 @@ "model": "api_v2.spellcastingoption", "pk": 3281, "fields": { - "spell": "firewalk", + "parent": "firewalk", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11343,7 +11343,7 @@ "model": "api_v2.spellcastingoption", "pk": 3282, "fields": { - "spell": "firewalk", + "parent": "firewalk", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11355,7 +11355,7 @@ "model": "api_v2.spellcastingoption", "pk": 3283, "fields": { - "spell": "firewalk", + "parent": "firewalk", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11367,7 +11367,7 @@ "model": "api_v2.spellcastingoption", "pk": 3284, "fields": { - "spell": "fist-of-iron", + "parent": "fist-of-iron", "type": "default", "damage_roll": null, "target_count": null, @@ -11379,7 +11379,7 @@ "model": "api_v2.spellcastingoption", "pk": 3285, "fields": { - "spell": "flame-wave", + "parent": "flame-wave", "type": "default", "damage_roll": null, "target_count": null, @@ -11391,7 +11391,7 @@ "model": "api_v2.spellcastingoption", "pk": 3287, "fields": { - "spell": "flame-wave", + "parent": "flame-wave", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -11403,7 +11403,7 @@ "model": "api_v2.spellcastingoption", "pk": 3288, "fields": { - "spell": "flame-wave", + "parent": "flame-wave", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11415,7 +11415,7 @@ "model": "api_v2.spellcastingoption", "pk": 3289, "fields": { - "spell": "flame-wave", + "parent": "flame-wave", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11427,7 +11427,7 @@ "model": "api_v2.spellcastingoption", "pk": 3290, "fields": { - "spell": "flame-wave", + "parent": "flame-wave", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11439,7 +11439,7 @@ "model": "api_v2.spellcastingoption", "pk": 3291, "fields": { - "spell": "flame-wave", + "parent": "flame-wave", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11451,7 +11451,7 @@ "model": "api_v2.spellcastingoption", "pk": 3292, "fields": { - "spell": "flesh-to-paper", + "parent": "flesh-to-paper", "type": "default", "damage_roll": null, "target_count": null, @@ -11463,7 +11463,7 @@ "model": "api_v2.spellcastingoption", "pk": 3294, "fields": { - "spell": "flesh-to-paper", + "parent": "flesh-to-paper", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -11475,7 +11475,7 @@ "model": "api_v2.spellcastingoption", "pk": 3295, "fields": { - "spell": "flesh-to-paper", + "parent": "flesh-to-paper", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -11487,7 +11487,7 @@ "model": "api_v2.spellcastingoption", "pk": 3296, "fields": { - "spell": "flesh-to-paper", + "parent": "flesh-to-paper", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -11499,7 +11499,7 @@ "model": "api_v2.spellcastingoption", "pk": 3297, "fields": { - "spell": "flesh-to-paper", + "parent": "flesh-to-paper", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -11511,7 +11511,7 @@ "model": "api_v2.spellcastingoption", "pk": 3298, "fields": { - "spell": "flesh-to-paper", + "parent": "flesh-to-paper", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -11523,7 +11523,7 @@ "model": "api_v2.spellcastingoption", "pk": 3299, "fields": { - "spell": "flesh-to-paper", + "parent": "flesh-to-paper", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -11535,7 +11535,7 @@ "model": "api_v2.spellcastingoption", "pk": 3300, "fields": { - "spell": "flickering-fate", + "parent": "flickering-fate", "type": "default", "damage_roll": null, "target_count": null, @@ -11547,7 +11547,7 @@ "model": "api_v2.spellcastingoption", "pk": 3301, "fields": { - "spell": "fluctuating-alignment", + "parent": "fluctuating-alignment", "type": "default", "damage_roll": null, "target_count": null, @@ -11559,7 +11559,7 @@ "model": "api_v2.spellcastingoption", "pk": 3302, "fields": { - "spell": "flurry", + "parent": "flurry", "type": "default", "damage_roll": null, "target_count": null, @@ -11571,7 +11571,7 @@ "model": "api_v2.spellcastingoption", "pk": 3303, "fields": { - "spell": "forest-native", + "parent": "forest-native", "type": "default", "damage_roll": null, "target_count": null, @@ -11583,7 +11583,7 @@ "model": "api_v2.spellcastingoption", "pk": 3304, "fields": { - "spell": "forest-sanctuary", + "parent": "forest-sanctuary", "type": "default", "damage_roll": null, "target_count": null, @@ -11595,7 +11595,7 @@ "model": "api_v2.spellcastingoption", "pk": 3305, "fields": { - "spell": "foretell-distraction", + "parent": "foretell-distraction", "type": "default", "damage_roll": null, "target_count": null, @@ -11607,7 +11607,7 @@ "model": "api_v2.spellcastingoption", "pk": 3306, "fields": { - "spell": "form-of-the-gods", + "parent": "form-of-the-gods", "type": "default", "damage_roll": null, "target_count": null, @@ -11619,7 +11619,7 @@ "model": "api_v2.spellcastingoption", "pk": 3307, "fields": { - "spell": "freeze-blood", + "parent": "freeze-blood", "type": "default", "damage_roll": null, "target_count": null, @@ -11631,7 +11631,7 @@ "model": "api_v2.spellcastingoption", "pk": 3308, "fields": { - "spell": "freeze-potion", + "parent": "freeze-potion", "type": "default", "damage_roll": null, "target_count": null, @@ -11643,7 +11643,7 @@ "model": "api_v2.spellcastingoption", "pk": 3310, "fields": { - "spell": "freeze-potion", + "parent": "freeze-potion", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -11655,7 +11655,7 @@ "model": "api_v2.spellcastingoption", "pk": 3311, "fields": { - "spell": "freeze-potion", + "parent": "freeze-potion", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -11667,7 +11667,7 @@ "model": "api_v2.spellcastingoption", "pk": 3312, "fields": { - "spell": "freeze-potion", + "parent": "freeze-potion", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -11679,7 +11679,7 @@ "model": "api_v2.spellcastingoption", "pk": 3313, "fields": { - "spell": "freeze-potion", + "parent": "freeze-potion", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -11691,7 +11691,7 @@ "model": "api_v2.spellcastingoption", "pk": 3314, "fields": { - "spell": "freeze-potion", + "parent": "freeze-potion", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11703,7 +11703,7 @@ "model": "api_v2.spellcastingoption", "pk": 3315, "fields": { - "spell": "freeze-potion", + "parent": "freeze-potion", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11715,7 +11715,7 @@ "model": "api_v2.spellcastingoption", "pk": 3316, "fields": { - "spell": "freeze-potion", + "parent": "freeze-potion", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11727,7 +11727,7 @@ "model": "api_v2.spellcastingoption", "pk": 3317, "fields": { - "spell": "freeze-potion", + "parent": "freeze-potion", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11739,7 +11739,7 @@ "model": "api_v2.spellcastingoption", "pk": 3318, "fields": { - "spell": "freezing-fog", + "parent": "freezing-fog", "type": "default", "damage_roll": null, "target_count": null, @@ -11751,7 +11751,7 @@ "model": "api_v2.spellcastingoption", "pk": 3320, "fields": { - "spell": "freezing-fog", + "parent": "freezing-fog", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -11763,7 +11763,7 @@ "model": "api_v2.spellcastingoption", "pk": 3321, "fields": { - "spell": "freezing-fog", + "parent": "freezing-fog", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -11775,7 +11775,7 @@ "model": "api_v2.spellcastingoption", "pk": 3322, "fields": { - "spell": "freezing-fog", + "parent": "freezing-fog", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11787,7 +11787,7 @@ "model": "api_v2.spellcastingoption", "pk": 3323, "fields": { - "spell": "freezing-fog", + "parent": "freezing-fog", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11799,7 +11799,7 @@ "model": "api_v2.spellcastingoption", "pk": 3324, "fields": { - "spell": "freezing-fog", + "parent": "freezing-fog", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11811,7 +11811,7 @@ "model": "api_v2.spellcastingoption", "pk": 3325, "fields": { - "spell": "freezing-fog", + "parent": "freezing-fog", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11823,7 +11823,7 @@ "model": "api_v2.spellcastingoption", "pk": 3326, "fields": { - "spell": "frenzied-bolt", + "parent": "frenzied-bolt", "type": "default", "damage_roll": null, "target_count": null, @@ -11835,7 +11835,7 @@ "model": "api_v2.spellcastingoption", "pk": 3328, "fields": { - "spell": "frenzied-bolt", + "parent": "frenzied-bolt", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -11847,7 +11847,7 @@ "model": "api_v2.spellcastingoption", "pk": 3329, "fields": { - "spell": "frenzied-bolt", + "parent": "frenzied-bolt", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -11859,7 +11859,7 @@ "model": "api_v2.spellcastingoption", "pk": 3330, "fields": { - "spell": "frenzied-bolt", + "parent": "frenzied-bolt", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -11871,7 +11871,7 @@ "model": "api_v2.spellcastingoption", "pk": 3331, "fields": { - "spell": "frenzied-bolt", + "parent": "frenzied-bolt", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11883,7 +11883,7 @@ "model": "api_v2.spellcastingoption", "pk": 3332, "fields": { - "spell": "frenzied-bolt", + "parent": "frenzied-bolt", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11895,7 +11895,7 @@ "model": "api_v2.spellcastingoption", "pk": 3333, "fields": { - "spell": "frenzied-bolt", + "parent": "frenzied-bolt", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11907,7 +11907,7 @@ "model": "api_v2.spellcastingoption", "pk": 3334, "fields": { - "spell": "frenzied-bolt", + "parent": "frenzied-bolt", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11919,7 +11919,7 @@ "model": "api_v2.spellcastingoption", "pk": 3335, "fields": { - "spell": "frostbite", + "parent": "frostbite", "type": "default", "damage_roll": null, "target_count": null, @@ -11931,7 +11931,7 @@ "model": "api_v2.spellcastingoption", "pk": 3337, "fields": { - "spell": "frostbite", + "parent": "frostbite", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11943,7 +11943,7 @@ "model": "api_v2.spellcastingoption", "pk": 3338, "fields": { - "spell": "frostbite", + "parent": "frostbite", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11955,7 +11955,7 @@ "model": "api_v2.spellcastingoption", "pk": 3339, "fields": { - "spell": "frostbite", + "parent": "frostbite", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11967,7 +11967,7 @@ "model": "api_v2.spellcastingoption", "pk": 3340, "fields": { - "spell": "frostbite", + "parent": "frostbite", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11979,7 +11979,7 @@ "model": "api_v2.spellcastingoption", "pk": 3341, "fields": { - "spell": "frostbitten-fingers", + "parent": "frostbitten-fingers", "type": "default", "damage_roll": null, "target_count": null, @@ -11991,7 +11991,7 @@ "model": "api_v2.spellcastingoption", "pk": 3342, "fields": { - "spell": "frozen-razors", + "parent": "frozen-razors", "type": "default", "damage_roll": null, "target_count": null, @@ -12003,7 +12003,7 @@ "model": "api_v2.spellcastingoption", "pk": 3344, "fields": { - "spell": "frozen-razors", + "parent": "frozen-razors", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -12015,7 +12015,7 @@ "model": "api_v2.spellcastingoption", "pk": 3345, "fields": { - "spell": "frozen-razors", + "parent": "frozen-razors", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -12027,7 +12027,7 @@ "model": "api_v2.spellcastingoption", "pk": 3346, "fields": { - "spell": "frozen-razors", + "parent": "frozen-razors", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -12039,7 +12039,7 @@ "model": "api_v2.spellcastingoption", "pk": 3347, "fields": { - "spell": "frozen-razors", + "parent": "frozen-razors", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12051,7 +12051,7 @@ "model": "api_v2.spellcastingoption", "pk": 3348, "fields": { - "spell": "frozen-razors", + "parent": "frozen-razors", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12063,7 +12063,7 @@ "model": "api_v2.spellcastingoption", "pk": 3349, "fields": { - "spell": "frozen-razors", + "parent": "frozen-razors", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12075,7 +12075,7 @@ "model": "api_v2.spellcastingoption", "pk": 3350, "fields": { - "spell": "furious-hooves", + "parent": "furious-hooves", "type": "default", "damage_roll": null, "target_count": null, @@ -12087,7 +12087,7 @@ "model": "api_v2.spellcastingoption", "pk": 3351, "fields": { - "spell": "fusillade-of-ice", + "parent": "fusillade-of-ice", "type": "default", "damage_roll": null, "target_count": null, @@ -12099,7 +12099,7 @@ "model": "api_v2.spellcastingoption", "pk": 3353, "fields": { - "spell": "fusillade-of-ice", + "parent": "fusillade-of-ice", "type": "slot_level_5", "damage_roll": "8d6", "target_count": null, @@ -12111,7 +12111,7 @@ "model": "api_v2.spellcastingoption", "pk": 3354, "fields": { - "spell": "fusillade-of-ice", + "parent": "fusillade-of-ice", "type": "slot_level_6", "damage_roll": "9d6", "target_count": null, @@ -12123,7 +12123,7 @@ "model": "api_v2.spellcastingoption", "pk": 3355, "fields": { - "spell": "fusillade-of-ice", + "parent": "fusillade-of-ice", "type": "slot_level_7", "damage_roll": "10d6", "target_count": null, @@ -12135,7 +12135,7 @@ "model": "api_v2.spellcastingoption", "pk": 3356, "fields": { - "spell": "fusillade-of-ice", + "parent": "fusillade-of-ice", "type": "slot_level_8", "damage_roll": "11d6", "target_count": null, @@ -12147,7 +12147,7 @@ "model": "api_v2.spellcastingoption", "pk": 3357, "fields": { - "spell": "fusillade-of-ice", + "parent": "fusillade-of-ice", "type": "slot_level_9", "damage_roll": "12d6", "target_count": null, @@ -12159,7 +12159,7 @@ "model": "api_v2.spellcastingoption", "pk": 3358, "fields": { - "spell": "gear-barrage", + "parent": "gear-barrage", "type": "default", "damage_roll": null, "target_count": null, @@ -12171,7 +12171,7 @@ "model": "api_v2.spellcastingoption", "pk": 3359, "fields": { - "spell": "ghoul-kings-cloak", + "parent": "ghoul-kings-cloak", "type": "default", "damage_roll": null, "target_count": null, @@ -12183,7 +12183,7 @@ "model": "api_v2.spellcastingoption", "pk": 3361, "fields": { - "spell": "ghoul-kings-cloak", + "parent": "ghoul-kings-cloak", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12195,7 +12195,7 @@ "model": "api_v2.spellcastingoption", "pk": 3362, "fields": { - "spell": "gird-the-spirit", + "parent": "gird-the-spirit", "type": "default", "damage_roll": null, "target_count": null, @@ -12207,7 +12207,7 @@ "model": "api_v2.spellcastingoption", "pk": 3363, "fields": { - "spell": "glacial-cascade", + "parent": "glacial-cascade", "type": "default", "damage_roll": null, "target_count": null, @@ -12219,7 +12219,7 @@ "model": "api_v2.spellcastingoption", "pk": 3364, "fields": { - "spell": "glacial-fog", + "parent": "glacial-fog", "type": "default", "damage_roll": null, "target_count": null, @@ -12231,7 +12231,7 @@ "model": "api_v2.spellcastingoption", "pk": 3366, "fields": { - "spell": "glacial-fog", + "parent": "glacial-fog", "type": "slot_level_8", "damage_roll": "13d6", "target_count": null, @@ -12243,7 +12243,7 @@ "model": "api_v2.spellcastingoption", "pk": 3367, "fields": { - "spell": "glacial-fog", + "parent": "glacial-fog", "type": "slot_level_9", "damage_roll": "14d6", "target_count": null, @@ -12255,7 +12255,7 @@ "model": "api_v2.spellcastingoption", "pk": 3368, "fields": { - "spell": "gliding-step", + "parent": "gliding-step", "type": "default", "damage_roll": null, "target_count": null, @@ -12267,7 +12267,7 @@ "model": "api_v2.spellcastingoption", "pk": 3370, "fields": { - "spell": "gliding-step", + "parent": "gliding-step", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -12279,7 +12279,7 @@ "model": "api_v2.spellcastingoption", "pk": 3371, "fields": { - "spell": "gliding-step", + "parent": "gliding-step", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -12291,7 +12291,7 @@ "model": "api_v2.spellcastingoption", "pk": 3372, "fields": { - "spell": "gliding-step", + "parent": "gliding-step", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -12303,7 +12303,7 @@ "model": "api_v2.spellcastingoption", "pk": 3373, "fields": { - "spell": "gliding-step", + "parent": "gliding-step", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -12315,7 +12315,7 @@ "model": "api_v2.spellcastingoption", "pk": 3374, "fields": { - "spell": "gliding-step", + "parent": "gliding-step", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -12327,7 +12327,7 @@ "model": "api_v2.spellcastingoption", "pk": 3375, "fields": { - "spell": "gliding-step", + "parent": "gliding-step", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12339,7 +12339,7 @@ "model": "api_v2.spellcastingoption", "pk": 3376, "fields": { - "spell": "gliding-step", + "parent": "gliding-step", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12351,7 +12351,7 @@ "model": "api_v2.spellcastingoption", "pk": 3377, "fields": { - "spell": "gliding-step", + "parent": "gliding-step", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12363,7 +12363,7 @@ "model": "api_v2.spellcastingoption", "pk": 3378, "fields": { - "spell": "glimpse-of-the-void", + "parent": "glimpse-of-the-void", "type": "default", "damage_roll": null, "target_count": null, @@ -12375,7 +12375,7 @@ "model": "api_v2.spellcastingoption", "pk": 3379, "fields": { - "spell": "gloomwrought-barrier", + "parent": "gloomwrought-barrier", "type": "default", "damage_roll": null, "target_count": null, @@ -12387,7 +12387,7 @@ "model": "api_v2.spellcastingoption", "pk": 3380, "fields": { - "spell": "gluey-globule", + "parent": "gluey-globule", "type": "default", "damage_roll": null, "target_count": null, @@ -12399,7 +12399,7 @@ "model": "api_v2.spellcastingoption", "pk": 3381, "fields": { - "spell": "glyph-of-shifting", + "parent": "glyph-of-shifting", "type": "default", "damage_roll": null, "target_count": null, @@ -12411,7 +12411,7 @@ "model": "api_v2.spellcastingoption", "pk": 3383, "fields": { - "spell": "glyph-of-shifting", + "parent": "glyph-of-shifting", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -12423,7 +12423,7 @@ "model": "api_v2.spellcastingoption", "pk": 3384, "fields": { - "spell": "glyph-of-shifting", + "parent": "glyph-of-shifting", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -12435,7 +12435,7 @@ "model": "api_v2.spellcastingoption", "pk": 3385, "fields": { - "spell": "glyph-of-shifting", + "parent": "glyph-of-shifting", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -12447,7 +12447,7 @@ "model": "api_v2.spellcastingoption", "pk": 3386, "fields": { - "spell": "glyph-of-shifting", + "parent": "glyph-of-shifting", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -12459,7 +12459,7 @@ "model": "api_v2.spellcastingoption", "pk": 3387, "fields": { - "spell": "glyph-of-shifting", + "parent": "glyph-of-shifting", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12471,7 +12471,7 @@ "model": "api_v2.spellcastingoption", "pk": 3388, "fields": { - "spell": "glyph-of-shifting", + "parent": "glyph-of-shifting", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12483,7 +12483,7 @@ "model": "api_v2.spellcastingoption", "pk": 3389, "fields": { - "spell": "glyph-of-shifting", + "parent": "glyph-of-shifting", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12495,7 +12495,7 @@ "model": "api_v2.spellcastingoption", "pk": 3390, "fields": { - "spell": "goats-hoof-charm", + "parent": "goats-hoof-charm", "type": "default", "damage_roll": null, "target_count": null, @@ -12507,7 +12507,7 @@ "model": "api_v2.spellcastingoption", "pk": 3392, "fields": { - "spell": "goats-hoof-charm", + "parent": "goats-hoof-charm", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -12519,7 +12519,7 @@ "model": "api_v2.spellcastingoption", "pk": 3393, "fields": { - "spell": "goats-hoof-charm", + "parent": "goats-hoof-charm", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -12531,7 +12531,7 @@ "model": "api_v2.spellcastingoption", "pk": 3394, "fields": { - "spell": "goats-hoof-charm", + "parent": "goats-hoof-charm", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -12543,7 +12543,7 @@ "model": "api_v2.spellcastingoption", "pk": 3395, "fields": { - "spell": "goats-hoof-charm", + "parent": "goats-hoof-charm", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -12555,7 +12555,7 @@ "model": "api_v2.spellcastingoption", "pk": 3396, "fields": { - "spell": "goats-hoof-charm", + "parent": "goats-hoof-charm", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -12567,7 +12567,7 @@ "model": "api_v2.spellcastingoption", "pk": 3397, "fields": { - "spell": "goats-hoof-charm", + "parent": "goats-hoof-charm", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -12579,7 +12579,7 @@ "model": "api_v2.spellcastingoption", "pk": 3398, "fields": { - "spell": "goats-hoof-charm", + "parent": "goats-hoof-charm", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -12591,7 +12591,7 @@ "model": "api_v2.spellcastingoption", "pk": 3399, "fields": { - "spell": "goats-hoof-charm", + "parent": "goats-hoof-charm", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -12603,7 +12603,7 @@ "model": "api_v2.spellcastingoption", "pk": 3400, "fields": { - "spell": "going-in-circles", + "parent": "going-in-circles", "type": "default", "damage_roll": null, "target_count": null, @@ -12615,7 +12615,7 @@ "model": "api_v2.spellcastingoption", "pk": 3401, "fields": { - "spell": "gordolays-pleasant-aroma", + "parent": "gordolays-pleasant-aroma", "type": "default", "damage_roll": null, "target_count": null, @@ -12627,7 +12627,7 @@ "model": "api_v2.spellcastingoption", "pk": 3402, "fields": { - "spell": "grasp-of-the-tupilak", + "parent": "grasp-of-the-tupilak", "type": "default", "damage_roll": null, "target_count": null, @@ -12639,7 +12639,7 @@ "model": "api_v2.spellcastingoption", "pk": 3403, "fields": { - "spell": "greater-maze", + "parent": "greater-maze", "type": "default", "damage_roll": null, "target_count": null, @@ -12651,7 +12651,7 @@ "model": "api_v2.spellcastingoption", "pk": 3404, "fields": { - "spell": "greater-seal-of-sanctuary", + "parent": "greater-seal-of-sanctuary", "type": "default", "damage_roll": null, "target_count": null, @@ -12663,7 +12663,7 @@ "model": "api_v2.spellcastingoption", "pk": 3405, "fields": { - "spell": "greater-seal-of-sanctuary", + "parent": "greater-seal-of-sanctuary", "type": "ritual", "damage_roll": null, "target_count": null, @@ -12675,7 +12675,7 @@ "model": "api_v2.spellcastingoption", "pk": 3406, "fields": { - "spell": "green-decay", + "parent": "green-decay", "type": "default", "damage_roll": null, "target_count": null, @@ -12687,7 +12687,7 @@ "model": "api_v2.spellcastingoption", "pk": 3407, "fields": { - "spell": "green-decay", + "parent": "green-decay", "type": "ritual", "damage_roll": null, "target_count": null, @@ -12699,7 +12699,7 @@ "model": "api_v2.spellcastingoption", "pk": 3408, "fields": { - "spell": "grudge-match", + "parent": "grudge-match", "type": "default", "damage_roll": null, "target_count": null, @@ -12711,7 +12711,7 @@ "model": "api_v2.spellcastingoption", "pk": 3410, "fields": { - "spell": "grudge-match", + "parent": "grudge-match", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -12723,7 +12723,7 @@ "model": "api_v2.spellcastingoption", "pk": 3411, "fields": { - "spell": "grudge-match", + "parent": "grudge-match", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -12735,7 +12735,7 @@ "model": "api_v2.spellcastingoption", "pk": 3412, "fields": { - "spell": "grudge-match", + "parent": "grudge-match", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -12747,7 +12747,7 @@ "model": "api_v2.spellcastingoption", "pk": 3413, "fields": { - "spell": "grudge-match", + "parent": "grudge-match", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -12759,7 +12759,7 @@ "model": "api_v2.spellcastingoption", "pk": 3414, "fields": { - "spell": "grudge-match", + "parent": "grudge-match", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12771,7 +12771,7 @@ "model": "api_v2.spellcastingoption", "pk": 3415, "fields": { - "spell": "grudge-match", + "parent": "grudge-match", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12783,7 +12783,7 @@ "model": "api_v2.spellcastingoption", "pk": 3416, "fields": { - "spell": "grudge-match", + "parent": "grudge-match", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12795,7 +12795,7 @@ "model": "api_v2.spellcastingoption", "pk": 3417, "fields": { - "spell": "guest-of-honor", + "parent": "guest-of-honor", "type": "default", "damage_roll": null, "target_count": null, @@ -12807,7 +12807,7 @@ "model": "api_v2.spellcastingoption", "pk": 3418, "fields": { - "spell": "guest-of-honor", + "parent": "guest-of-honor", "type": "ritual", "damage_roll": null, "target_count": null, @@ -12819,7 +12819,7 @@ "model": "api_v2.spellcastingoption", "pk": 3420, "fields": { - "spell": "guest-of-honor", + "parent": "guest-of-honor", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -12831,7 +12831,7 @@ "model": "api_v2.spellcastingoption", "pk": 3421, "fields": { - "spell": "guest-of-honor", + "parent": "guest-of-honor", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -12843,7 +12843,7 @@ "model": "api_v2.spellcastingoption", "pk": 3422, "fields": { - "spell": "guest-of-honor", + "parent": "guest-of-honor", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -12855,7 +12855,7 @@ "model": "api_v2.spellcastingoption", "pk": 3423, "fields": { - "spell": "guest-of-honor", + "parent": "guest-of-honor", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -12867,7 +12867,7 @@ "model": "api_v2.spellcastingoption", "pk": 3424, "fields": { - "spell": "guest-of-honor", + "parent": "guest-of-honor", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -12879,7 +12879,7 @@ "model": "api_v2.spellcastingoption", "pk": 3425, "fields": { - "spell": "guest-of-honor", + "parent": "guest-of-honor", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12891,7 +12891,7 @@ "model": "api_v2.spellcastingoption", "pk": 3426, "fields": { - "spell": "guest-of-honor", + "parent": "guest-of-honor", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12903,7 +12903,7 @@ "model": "api_v2.spellcastingoption", "pk": 3427, "fields": { - "spell": "guest-of-honor", + "parent": "guest-of-honor", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12915,7 +12915,7 @@ "model": "api_v2.spellcastingoption", "pk": 3428, "fields": { - "spell": "guiding-star", + "parent": "guiding-star", "type": "default", "damage_roll": null, "target_count": null, @@ -12927,7 +12927,7 @@ "model": "api_v2.spellcastingoption", "pk": 3429, "fields": { - "spell": "guiding-star", + "parent": "guiding-star", "type": "ritual", "damage_roll": null, "target_count": null, @@ -12939,7 +12939,7 @@ "model": "api_v2.spellcastingoption", "pk": 3430, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "default", "damage_roll": null, "target_count": null, @@ -12951,7 +12951,7 @@ "model": "api_v2.spellcastingoption", "pk": 3431, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_1", "damage_roll": "1d4", "target_count": null, @@ -12963,7 +12963,7 @@ "model": "api_v2.spellcastingoption", "pk": 3432, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_2", "damage_roll": "1d4", "target_count": null, @@ -12975,7 +12975,7 @@ "model": "api_v2.spellcastingoption", "pk": 3433, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_3", "damage_roll": "1d4", "target_count": null, @@ -12987,7 +12987,7 @@ "model": "api_v2.spellcastingoption", "pk": 3434, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_4", "damage_roll": "1d4", "target_count": null, @@ -12999,7 +12999,7 @@ "model": "api_v2.spellcastingoption", "pk": 3435, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_5", "damage_roll": "2d4", "target_count": null, @@ -13011,7 +13011,7 @@ "model": "api_v2.spellcastingoption", "pk": 3436, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_6", "damage_roll": "2d4", "target_count": null, @@ -13023,7 +13023,7 @@ "model": "api_v2.spellcastingoption", "pk": 3437, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_7", "damage_roll": "2d4", "target_count": null, @@ -13035,7 +13035,7 @@ "model": "api_v2.spellcastingoption", "pk": 3438, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_8", "damage_roll": "2d4", "target_count": null, @@ -13047,7 +13047,7 @@ "model": "api_v2.spellcastingoption", "pk": 3439, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_9", "damage_roll": "2d4", "target_count": null, @@ -13059,7 +13059,7 @@ "model": "api_v2.spellcastingoption", "pk": 3440, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_10", "damage_roll": "2d4", "target_count": null, @@ -13071,7 +13071,7 @@ "model": "api_v2.spellcastingoption", "pk": 3441, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_11", "damage_roll": "3d4", "target_count": null, @@ -13083,7 +13083,7 @@ "model": "api_v2.spellcastingoption", "pk": 3442, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_12", "damage_roll": "3d4", "target_count": null, @@ -13095,7 +13095,7 @@ "model": "api_v2.spellcastingoption", "pk": 3443, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_13", "damage_roll": "3d4", "target_count": null, @@ -13107,7 +13107,7 @@ "model": "api_v2.spellcastingoption", "pk": 3444, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_14", "damage_roll": "3d4", "target_count": null, @@ -13119,7 +13119,7 @@ "model": "api_v2.spellcastingoption", "pk": 3445, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_15", "damage_roll": "3d4", "target_count": null, @@ -13131,7 +13131,7 @@ "model": "api_v2.spellcastingoption", "pk": 3446, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_16", "damage_roll": "3d4", "target_count": null, @@ -13143,7 +13143,7 @@ "model": "api_v2.spellcastingoption", "pk": 3447, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_17", "damage_roll": "4d4", "target_count": null, @@ -13155,7 +13155,7 @@ "model": "api_v2.spellcastingoption", "pk": 3448, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_18", "damage_roll": "4d4", "target_count": null, @@ -13167,7 +13167,7 @@ "model": "api_v2.spellcastingoption", "pk": 3449, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_19", "damage_roll": "4d4", "target_count": null, @@ -13179,7 +13179,7 @@ "model": "api_v2.spellcastingoption", "pk": 3450, "fields": { - "spell": "hamstring", + "parent": "hamstring", "type": "player_level_20", "damage_roll": "4d4", "target_count": null, @@ -13191,7 +13191,7 @@ "model": "api_v2.spellcastingoption", "pk": 3451, "fields": { - "spell": "hard-heart", + "parent": "hard-heart", "type": "default", "damage_roll": null, "target_count": null, @@ -13203,7 +13203,7 @@ "model": "api_v2.spellcastingoption", "pk": 3453, "fields": { - "spell": "hard-heart", + "parent": "hard-heart", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -13215,7 +13215,7 @@ "model": "api_v2.spellcastingoption", "pk": 3454, "fields": { - "spell": "hard-heart", + "parent": "hard-heart", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -13227,7 +13227,7 @@ "model": "api_v2.spellcastingoption", "pk": 3455, "fields": { - "spell": "hard-heart", + "parent": "hard-heart", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -13239,7 +13239,7 @@ "model": "api_v2.spellcastingoption", "pk": 3456, "fields": { - "spell": "hard-heart", + "parent": "hard-heart", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -13251,7 +13251,7 @@ "model": "api_v2.spellcastingoption", "pk": 3457, "fields": { - "spell": "hard-heart", + "parent": "hard-heart", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13263,7 +13263,7 @@ "model": "api_v2.spellcastingoption", "pk": 3458, "fields": { - "spell": "hard-heart", + "parent": "hard-heart", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13275,7 +13275,7 @@ "model": "api_v2.spellcastingoption", "pk": 3459, "fields": { - "spell": "hard-heart", + "parent": "hard-heart", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13287,7 +13287,7 @@ "model": "api_v2.spellcastingoption", "pk": 3460, "fields": { - "spell": "hard-heart", + "parent": "hard-heart", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13299,7 +13299,7 @@ "model": "api_v2.spellcastingoption", "pk": 3461, "fields": { - "spell": "harry", + "parent": "harry", "type": "default", "damage_roll": null, "target_count": null, @@ -13311,7 +13311,7 @@ "model": "api_v2.spellcastingoption", "pk": 3463, "fields": { - "spell": "harry", + "parent": "harry", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -13323,7 +13323,7 @@ "model": "api_v2.spellcastingoption", "pk": 3464, "fields": { - "spell": "harry", + "parent": "harry", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13335,7 +13335,7 @@ "model": "api_v2.spellcastingoption", "pk": 3465, "fields": { - "spell": "harry", + "parent": "harry", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13347,7 +13347,7 @@ "model": "api_v2.spellcastingoption", "pk": 3466, "fields": { - "spell": "harry", + "parent": "harry", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13359,7 +13359,7 @@ "model": "api_v2.spellcastingoption", "pk": 3467, "fields": { - "spell": "harry", + "parent": "harry", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13371,7 +13371,7 @@ "model": "api_v2.spellcastingoption", "pk": 3468, "fields": { - "spell": "harrying-hounds", + "parent": "harrying-hounds", "type": "default", "damage_roll": null, "target_count": null, @@ -13383,7 +13383,7 @@ "model": "api_v2.spellcastingoption", "pk": 3470, "fields": { - "spell": "harrying-hounds", + "parent": "harrying-hounds", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13395,7 +13395,7 @@ "model": "api_v2.spellcastingoption", "pk": 3471, "fields": { - "spell": "harrying-hounds", + "parent": "harrying-hounds", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13407,7 +13407,7 @@ "model": "api_v2.spellcastingoption", "pk": 3472, "fields": { - "spell": "harrying-hounds", + "parent": "harrying-hounds", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13419,7 +13419,7 @@ "model": "api_v2.spellcastingoption", "pk": 3473, "fields": { - "spell": "harrying-hounds", + "parent": "harrying-hounds", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13431,7 +13431,7 @@ "model": "api_v2.spellcastingoption", "pk": 3474, "fields": { - "spell": "harsh-light-of-summers-glare", + "parent": "harsh-light-of-summers-glare", "type": "default", "damage_roll": null, "target_count": null, @@ -13443,7 +13443,7 @@ "model": "api_v2.spellcastingoption", "pk": 3475, "fields": { - "spell": "heart-seeking-arrow", + "parent": "heart-seeking-arrow", "type": "default", "damage_roll": null, "target_count": null, @@ -13455,7 +13455,7 @@ "model": "api_v2.spellcastingoption", "pk": 3477, "fields": { - "spell": "heart-seeking-arrow", + "parent": "heart-seeking-arrow", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -13467,7 +13467,7 @@ "model": "api_v2.spellcastingoption", "pk": 3478, "fields": { - "spell": "heart-seeking-arrow", + "parent": "heart-seeking-arrow", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13479,7 +13479,7 @@ "model": "api_v2.spellcastingoption", "pk": 3479, "fields": { - "spell": "heart-seeking-arrow", + "parent": "heart-seeking-arrow", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13491,7 +13491,7 @@ "model": "api_v2.spellcastingoption", "pk": 3480, "fields": { - "spell": "heart-seeking-arrow", + "parent": "heart-seeking-arrow", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13503,7 +13503,7 @@ "model": "api_v2.spellcastingoption", "pk": 3481, "fields": { - "spell": "heart-seeking-arrow", + "parent": "heart-seeking-arrow", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13515,7 +13515,7 @@ "model": "api_v2.spellcastingoption", "pk": 3482, "fields": { - "spell": "heart-to-heart", + "parent": "heart-to-heart", "type": "default", "damage_roll": null, "target_count": null, @@ -13527,7 +13527,7 @@ "model": "api_v2.spellcastingoption", "pk": 3483, "fields": { - "spell": "heartache", + "parent": "heartache", "type": "default", "damage_roll": null, "target_count": null, @@ -13539,7 +13539,7 @@ "model": "api_v2.spellcastingoption", "pk": 3485, "fields": { - "spell": "heartache", + "parent": "heartache", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -13551,7 +13551,7 @@ "model": "api_v2.spellcastingoption", "pk": 3486, "fields": { - "spell": "heartache", + "parent": "heartache", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -13563,7 +13563,7 @@ "model": "api_v2.spellcastingoption", "pk": 3487, "fields": { - "spell": "heartache", + "parent": "heartache", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -13575,7 +13575,7 @@ "model": "api_v2.spellcastingoption", "pk": 3488, "fields": { - "spell": "heartache", + "parent": "heartache", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13587,7 +13587,7 @@ "model": "api_v2.spellcastingoption", "pk": 3489, "fields": { - "spell": "heartache", + "parent": "heartache", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13599,7 +13599,7 @@ "model": "api_v2.spellcastingoption", "pk": 3490, "fields": { - "spell": "heartache", + "parent": "heartache", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13611,7 +13611,7 @@ "model": "api_v2.spellcastingoption", "pk": 3491, "fields": { - "spell": "heartache", + "parent": "heartache", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13623,7 +13623,7 @@ "model": "api_v2.spellcastingoption", "pk": 3492, "fields": { - "spell": "heartstop", + "parent": "heartstop", "type": "default", "damage_roll": null, "target_count": null, @@ -13635,7 +13635,7 @@ "model": "api_v2.spellcastingoption", "pk": 3493, "fields": { - "spell": "heartstrike", + "parent": "heartstrike", "type": "default", "damage_roll": null, "target_count": null, @@ -13647,7 +13647,7 @@ "model": "api_v2.spellcastingoption", "pk": 3494, "fields": { - "spell": "heavenly-crown", + "parent": "heavenly-crown", "type": "default", "damage_roll": null, "target_count": null, @@ -13659,7 +13659,7 @@ "model": "api_v2.spellcastingoption", "pk": 3495, "fields": { - "spell": "hedrens-birds-of-clay", + "parent": "hedrens-birds-of-clay", "type": "default", "damage_roll": null, "target_count": null, @@ -13671,7 +13671,7 @@ "model": "api_v2.spellcastingoption", "pk": 3497, "fields": { - "spell": "hedrens-birds-of-clay", + "parent": "hedrens-birds-of-clay", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -13683,7 +13683,7 @@ "model": "api_v2.spellcastingoption", "pk": 3498, "fields": { - "spell": "hedrens-birds-of-clay", + "parent": "hedrens-birds-of-clay", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -13695,7 +13695,7 @@ "model": "api_v2.spellcastingoption", "pk": 3499, "fields": { - "spell": "hedrens-birds-of-clay", + "parent": "hedrens-birds-of-clay", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -13707,7 +13707,7 @@ "model": "api_v2.spellcastingoption", "pk": 3500, "fields": { - "spell": "hedrens-birds-of-clay", + "parent": "hedrens-birds-of-clay", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -13719,7 +13719,7 @@ "model": "api_v2.spellcastingoption", "pk": 3501, "fields": { - "spell": "hedrens-birds-of-clay", + "parent": "hedrens-birds-of-clay", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -13731,7 +13731,7 @@ "model": "api_v2.spellcastingoption", "pk": 3502, "fields": { - "spell": "hedrens-birds-of-clay", + "parent": "hedrens-birds-of-clay", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -13743,7 +13743,7 @@ "model": "api_v2.spellcastingoption", "pk": 3503, "fields": { - "spell": "hematomancy", + "parent": "hematomancy", "type": "default", "damage_roll": null, "target_count": null, @@ -13755,7 +13755,7 @@ "model": "api_v2.spellcastingoption", "pk": 3504, "fields": { - "spell": "heros-steel", + "parent": "heros-steel", "type": "default", "damage_roll": null, "target_count": null, @@ -13767,7 +13767,7 @@ "model": "api_v2.spellcastingoption", "pk": 3505, "fields": { - "spell": "hide-in-ones-shadow", + "parent": "hide-in-ones-shadow", "type": "default", "damage_roll": null, "target_count": null, @@ -13779,7 +13779,7 @@ "model": "api_v2.spellcastingoption", "pk": 3506, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "default", "damage_roll": null, "target_count": null, @@ -13791,7 +13791,7 @@ "model": "api_v2.spellcastingoption", "pk": 3507, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_1", "damage_roll": "", "target_count": null, @@ -13803,7 +13803,7 @@ "model": "api_v2.spellcastingoption", "pk": 3508, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_2", "damage_roll": "", "target_count": null, @@ -13815,7 +13815,7 @@ "model": "api_v2.spellcastingoption", "pk": 3509, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_3", "damage_roll": "", "target_count": null, @@ -13827,7 +13827,7 @@ "model": "api_v2.spellcastingoption", "pk": 3510, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_4", "damage_roll": "", "target_count": null, @@ -13839,7 +13839,7 @@ "model": "api_v2.spellcastingoption", "pk": 3511, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_5", "damage_roll": "2d4", "target_count": null, @@ -13851,7 +13851,7 @@ "model": "api_v2.spellcastingoption", "pk": 3512, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_6", "damage_roll": "2d4", "target_count": null, @@ -13863,7 +13863,7 @@ "model": "api_v2.spellcastingoption", "pk": 3513, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_7", "damage_roll": "2d4", "target_count": null, @@ -13875,7 +13875,7 @@ "model": "api_v2.spellcastingoption", "pk": 3514, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_8", "damage_roll": "2d4", "target_count": null, @@ -13887,7 +13887,7 @@ "model": "api_v2.spellcastingoption", "pk": 3515, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_9", "damage_roll": "2d4", "target_count": null, @@ -13899,7 +13899,7 @@ "model": "api_v2.spellcastingoption", "pk": 3516, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_10", "damage_roll": "2d4", "target_count": null, @@ -13911,7 +13911,7 @@ "model": "api_v2.spellcastingoption", "pk": 3517, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_11", "damage_roll": "3d4", "target_count": null, @@ -13923,7 +13923,7 @@ "model": "api_v2.spellcastingoption", "pk": 3518, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_12", "damage_roll": "3d4", "target_count": null, @@ -13935,7 +13935,7 @@ "model": "api_v2.spellcastingoption", "pk": 3519, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_13", "damage_roll": "3d4", "target_count": null, @@ -13947,7 +13947,7 @@ "model": "api_v2.spellcastingoption", "pk": 3520, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_14", "damage_roll": "3d4", "target_count": null, @@ -13959,7 +13959,7 @@ "model": "api_v2.spellcastingoption", "pk": 3521, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_15", "damage_roll": "3d4", "target_count": null, @@ -13971,7 +13971,7 @@ "model": "api_v2.spellcastingoption", "pk": 3522, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_16", "damage_roll": "3d4", "target_count": null, @@ -13983,7 +13983,7 @@ "model": "api_v2.spellcastingoption", "pk": 3523, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_17", "damage_roll": "4d4", "target_count": null, @@ -13995,7 +13995,7 @@ "model": "api_v2.spellcastingoption", "pk": 3524, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_18", "damage_roll": "4d4", "target_count": null, @@ -14007,7 +14007,7 @@ "model": "api_v2.spellcastingoption", "pk": 3525, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_19", "damage_roll": "4d4", "target_count": null, @@ -14019,7 +14019,7 @@ "model": "api_v2.spellcastingoption", "pk": 3526, "fields": { - "spell": "hoarfrost", + "parent": "hoarfrost", "type": "player_level_20", "damage_roll": "4d4", "target_count": null, @@ -14031,7 +14031,7 @@ "model": "api_v2.spellcastingoption", "pk": 3527, "fields": { - "spell": "hobble", + "parent": "hobble", "type": "default", "damage_roll": null, "target_count": null, @@ -14043,7 +14043,7 @@ "model": "api_v2.spellcastingoption", "pk": 3528, "fields": { - "spell": "hobble-mount", + "parent": "hobble-mount", "type": "default", "damage_roll": null, "target_count": null, @@ -14055,7 +14055,7 @@ "model": "api_v2.spellcastingoption", "pk": 3530, "fields": { - "spell": "hobble-mount", + "parent": "hobble-mount", "type": "slot_level_2", "damage_roll": "4d6", "target_count": null, @@ -14067,7 +14067,7 @@ "model": "api_v2.spellcastingoption", "pk": 3531, "fields": { - "spell": "hobble-mount", + "parent": "hobble-mount", "type": "slot_level_3", "damage_roll": "6d6", "target_count": null, @@ -14079,7 +14079,7 @@ "model": "api_v2.spellcastingoption", "pk": 3532, "fields": { - "spell": "hobble-mount", + "parent": "hobble-mount", "type": "slot_level_4", "damage_roll": "8d6", "target_count": null, @@ -14091,7 +14091,7 @@ "model": "api_v2.spellcastingoption", "pk": 3533, "fields": { - "spell": "hobble-mount", + "parent": "hobble-mount", "type": "slot_level_5", "damage_roll": "10d6", "target_count": null, @@ -14103,7 +14103,7 @@ "model": "api_v2.spellcastingoption", "pk": 3534, "fields": { - "spell": "hobble-mount", + "parent": "hobble-mount", "type": "slot_level_6", "damage_roll": "12d6", "target_count": null, @@ -14115,7 +14115,7 @@ "model": "api_v2.spellcastingoption", "pk": 3535, "fields": { - "spell": "hobble-mount", + "parent": "hobble-mount", "type": "slot_level_7", "damage_roll": "14d6", "target_count": null, @@ -14127,7 +14127,7 @@ "model": "api_v2.spellcastingoption", "pk": 3536, "fields": { - "spell": "hobble-mount", + "parent": "hobble-mount", "type": "slot_level_8", "damage_roll": "16d6", "target_count": null, @@ -14139,7 +14139,7 @@ "model": "api_v2.spellcastingoption", "pk": 3537, "fields": { - "spell": "hobble-mount", + "parent": "hobble-mount", "type": "slot_level_9", "damage_roll": "18d6", "target_count": null, @@ -14151,7 +14151,7 @@ "model": "api_v2.spellcastingoption", "pk": 3538, "fields": { - "spell": "holy-ground", + "parent": "holy-ground", "type": "default", "damage_roll": null, "target_count": null, @@ -14163,7 +14163,7 @@ "model": "api_v2.spellcastingoption", "pk": 3540, "fields": { - "spell": "holy-ground", + "parent": "holy-ground", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -14175,7 +14175,7 @@ "model": "api_v2.spellcastingoption", "pk": 3541, "fields": { - "spell": "holy-ground", + "parent": "holy-ground", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -14187,7 +14187,7 @@ "model": "api_v2.spellcastingoption", "pk": 3542, "fields": { - "spell": "holy-ground", + "parent": "holy-ground", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -14199,7 +14199,7 @@ "model": "api_v2.spellcastingoption", "pk": 3543, "fields": { - "spell": "holy-ground", + "parent": "holy-ground", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -14211,7 +14211,7 @@ "model": "api_v2.spellcastingoption", "pk": 3544, "fields": { - "spell": "hone-blade", + "parent": "hone-blade", "type": "default", "damage_roll": null, "target_count": null, @@ -14223,7 +14223,7 @@ "model": "api_v2.spellcastingoption", "pk": 3545, "fields": { - "spell": "hunger-of-leng", + "parent": "hunger-of-leng", "type": "default", "damage_roll": null, "target_count": null, @@ -14235,7 +14235,7 @@ "model": "api_v2.spellcastingoption", "pk": 3546, "fields": { - "spell": "hunters-endurance", + "parent": "hunters-endurance", "type": "default", "damage_roll": null, "target_count": null, @@ -14247,7 +14247,7 @@ "model": "api_v2.spellcastingoption", "pk": 3547, "fields": { - "spell": "hunting-stand", + "parent": "hunting-stand", "type": "default", "damage_roll": null, "target_count": null, @@ -14259,7 +14259,7 @@ "model": "api_v2.spellcastingoption", "pk": 3548, "fields": { - "spell": "ice-fortress", + "parent": "ice-fortress", "type": "default", "damage_roll": null, "target_count": null, @@ -14271,7 +14271,7 @@ "model": "api_v2.spellcastingoption", "pk": 3550, "fields": { - "spell": "ice-fortress", + "parent": "ice-fortress", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -14283,7 +14283,7 @@ "model": "api_v2.spellcastingoption", "pk": 3551, "fields": { - "spell": "ice-fortress", + "parent": "ice-fortress", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -14295,7 +14295,7 @@ "model": "api_v2.spellcastingoption", "pk": 3552, "fields": { - "spell": "ice-fortress", + "parent": "ice-fortress", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -14307,7 +14307,7 @@ "model": "api_v2.spellcastingoption", "pk": 3553, "fields": { - "spell": "ice-fortress", + "parent": "ice-fortress", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -14319,7 +14319,7 @@ "model": "api_v2.spellcastingoption", "pk": 3554, "fields": { - "spell": "ice-hammer", + "parent": "ice-hammer", "type": "default", "damage_roll": null, "target_count": null, @@ -14331,7 +14331,7 @@ "model": "api_v2.spellcastingoption", "pk": 3556, "fields": { - "spell": "ice-hammer", + "parent": "ice-hammer", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -14343,7 +14343,7 @@ "model": "api_v2.spellcastingoption", "pk": 3557, "fields": { - "spell": "ice-hammer", + "parent": "ice-hammer", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -14355,7 +14355,7 @@ "model": "api_v2.spellcastingoption", "pk": 3558, "fields": { - "spell": "ice-hammer", + "parent": "ice-hammer", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -14367,7 +14367,7 @@ "model": "api_v2.spellcastingoption", "pk": 3559, "fields": { - "spell": "ice-hammer", + "parent": "ice-hammer", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -14379,7 +14379,7 @@ "model": "api_v2.spellcastingoption", "pk": 3560, "fields": { - "spell": "ice-hammer", + "parent": "ice-hammer", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -14391,7 +14391,7 @@ "model": "api_v2.spellcastingoption", "pk": 3561, "fields": { - "spell": "ice-hammer", + "parent": "ice-hammer", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -14403,7 +14403,7 @@ "model": "api_v2.spellcastingoption", "pk": 3562, "fields": { - "spell": "ice-hammer", + "parent": "ice-hammer", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -14415,7 +14415,7 @@ "model": "api_v2.spellcastingoption", "pk": 3563, "fields": { - "spell": "ice-soldiers", + "parent": "ice-soldiers", "type": "default", "damage_roll": null, "target_count": null, @@ -14427,7 +14427,7 @@ "model": "api_v2.spellcastingoption", "pk": 3565, "fields": { - "spell": "ice-soldiers", + "parent": "ice-soldiers", "type": "slot_level_8", "damage_roll": null, "target_count": 2, @@ -14439,7 +14439,7 @@ "model": "api_v2.spellcastingoption", "pk": 3566, "fields": { - "spell": "ice-soldiers", + "parent": "ice-soldiers", "type": "slot_level_9", "damage_roll": null, "target_count": 3, @@ -14451,7 +14451,7 @@ "model": "api_v2.spellcastingoption", "pk": 3567, "fields": { - "spell": "icicle-daggers", + "parent": "icicle-daggers", "type": "default", "damage_roll": null, "target_count": null, @@ -14463,7 +14463,7 @@ "model": "api_v2.spellcastingoption", "pk": 3569, "fields": { - "spell": "icicle-daggers", + "parent": "icicle-daggers", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -14475,7 +14475,7 @@ "model": "api_v2.spellcastingoption", "pk": 3570, "fields": { - "spell": "icicle-daggers", + "parent": "icicle-daggers", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -14487,7 +14487,7 @@ "model": "api_v2.spellcastingoption", "pk": 3571, "fields": { - "spell": "icicle-daggers", + "parent": "icicle-daggers", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -14499,7 +14499,7 @@ "model": "api_v2.spellcastingoption", "pk": 3572, "fields": { - "spell": "icicle-daggers", + "parent": "icicle-daggers", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -14511,7 +14511,7 @@ "model": "api_v2.spellcastingoption", "pk": 3573, "fields": { - "spell": "icicle-daggers", + "parent": "icicle-daggers", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -14523,7 +14523,7 @@ "model": "api_v2.spellcastingoption", "pk": 3574, "fields": { - "spell": "icicle-daggers", + "parent": "icicle-daggers", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -14535,7 +14535,7 @@ "model": "api_v2.spellcastingoption", "pk": 3575, "fields": { - "spell": "icicle-daggers", + "parent": "icicle-daggers", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -14547,7 +14547,7 @@ "model": "api_v2.spellcastingoption", "pk": 3576, "fields": { - "spell": "icicle-daggers", + "parent": "icicle-daggers", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -14559,7 +14559,7 @@ "model": "api_v2.spellcastingoption", "pk": 3577, "fields": { - "spell": "icy-grasp-of-the-void", + "parent": "icy-grasp-of-the-void", "type": "default", "damage_roll": null, "target_count": null, @@ -14571,7 +14571,7 @@ "model": "api_v2.spellcastingoption", "pk": 3578, "fields": { - "spell": "icy-manipulation", + "parent": "icy-manipulation", "type": "default", "damage_roll": null, "target_count": null, @@ -14583,7 +14583,7 @@ "model": "api_v2.spellcastingoption", "pk": 3579, "fields": { - "spell": "ill-fated-word", + "parent": "ill-fated-word", "type": "default", "damage_roll": null, "target_count": null, @@ -14595,7 +14595,7 @@ "model": "api_v2.spellcastingoption", "pk": 3580, "fields": { - "spell": "illuminate-spoor", + "parent": "illuminate-spoor", "type": "default", "damage_roll": null, "target_count": null, @@ -14607,7 +14607,7 @@ "model": "api_v2.spellcastingoption", "pk": 3582, "fields": { - "spell": "illuminate-spoor", + "parent": "illuminate-spoor", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -14619,7 +14619,7 @@ "model": "api_v2.spellcastingoption", "pk": 3583, "fields": { - "spell": "illuminate-spoor", + "parent": "illuminate-spoor", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -14631,7 +14631,7 @@ "model": "api_v2.spellcastingoption", "pk": 3584, "fields": { - "spell": "illuminate-spoor", + "parent": "illuminate-spoor", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -14643,7 +14643,7 @@ "model": "api_v2.spellcastingoption", "pk": 3585, "fields": { - "spell": "illuminate-spoor", + "parent": "illuminate-spoor", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -14655,7 +14655,7 @@ "model": "api_v2.spellcastingoption", "pk": 3586, "fields": { - "spell": "illuminate-spoor", + "parent": "illuminate-spoor", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -14667,7 +14667,7 @@ "model": "api_v2.spellcastingoption", "pk": 3587, "fields": { - "spell": "illuminate-spoor", + "parent": "illuminate-spoor", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -14679,7 +14679,7 @@ "model": "api_v2.spellcastingoption", "pk": 3588, "fields": { - "spell": "illuminate-spoor", + "parent": "illuminate-spoor", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -14691,7 +14691,7 @@ "model": "api_v2.spellcastingoption", "pk": 3589, "fields": { - "spell": "illuminate-spoor", + "parent": "illuminate-spoor", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -14703,7 +14703,7 @@ "model": "api_v2.spellcastingoption", "pk": 3590, "fields": { - "spell": "impending-ally", + "parent": "impending-ally", "type": "default", "damage_roll": null, "target_count": null, @@ -14715,7 +14715,7 @@ "model": "api_v2.spellcastingoption", "pk": 3592, "fields": { - "spell": "impending-ally", + "parent": "impending-ally", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -14727,7 +14727,7 @@ "model": "api_v2.spellcastingoption", "pk": 3593, "fields": { - "spell": "impending-ally", + "parent": "impending-ally", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -14739,7 +14739,7 @@ "model": "api_v2.spellcastingoption", "pk": 3594, "fields": { - "spell": "impending-ally", + "parent": "impending-ally", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -14751,7 +14751,7 @@ "model": "api_v2.spellcastingoption", "pk": 3595, "fields": { - "spell": "impending-ally", + "parent": "impending-ally", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -14763,7 +14763,7 @@ "model": "api_v2.spellcastingoption", "pk": 3596, "fields": { - "spell": "impending-ally", + "parent": "impending-ally", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -14775,7 +14775,7 @@ "model": "api_v2.spellcastingoption", "pk": 3597, "fields": { - "spell": "impending-ally", + "parent": "impending-ally", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -14787,7 +14787,7 @@ "model": "api_v2.spellcastingoption", "pk": 3598, "fields": { - "spell": "innocuous-aspect", + "parent": "innocuous-aspect", "type": "default", "damage_roll": null, "target_count": null, @@ -14799,7 +14799,7 @@ "model": "api_v2.spellcastingoption", "pk": 3599, "fields": { - "spell": "insightful-maneuver", + "parent": "insightful-maneuver", "type": "default", "damage_roll": null, "target_count": null, @@ -14811,7 +14811,7 @@ "model": "api_v2.spellcastingoption", "pk": 3600, "fields": { - "spell": "inspiring-speech", + "parent": "inspiring-speech", "type": "default", "damage_roll": null, "target_count": null, @@ -14823,7 +14823,7 @@ "model": "api_v2.spellcastingoption", "pk": 3601, "fields": { - "spell": "instant-fortification", + "parent": "instant-fortification", "type": "default", "damage_roll": null, "target_count": null, @@ -14835,7 +14835,7 @@ "model": "api_v2.spellcastingoption", "pk": 3602, "fields": { - "spell": "instant-fortification", + "parent": "instant-fortification", "type": "ritual", "damage_roll": null, "target_count": null, @@ -14847,7 +14847,7 @@ "model": "api_v2.spellcastingoption", "pk": 3604, "fields": { - "spell": "instant-fortification", + "parent": "instant-fortification", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -14859,7 +14859,7 @@ "model": "api_v2.spellcastingoption", "pk": 3605, "fields": { - "spell": "instant-fortification", + "parent": "instant-fortification", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -14871,7 +14871,7 @@ "model": "api_v2.spellcastingoption", "pk": 3606, "fields": { - "spell": "instant-fortification", + "parent": "instant-fortification", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -14883,7 +14883,7 @@ "model": "api_v2.spellcastingoption", "pk": 3607, "fields": { - "spell": "instant-fortification", + "parent": "instant-fortification", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -14895,7 +14895,7 @@ "model": "api_v2.spellcastingoption", "pk": 3608, "fields": { - "spell": "instant-siege-weapon", + "parent": "instant-siege-weapon", "type": "default", "damage_roll": null, "target_count": null, @@ -14907,7 +14907,7 @@ "model": "api_v2.spellcastingoption", "pk": 3609, "fields": { - "spell": "instant-siege-weapon", + "parent": "instant-siege-weapon", "type": "ritual", "damage_roll": null, "target_count": null, @@ -14919,7 +14919,7 @@ "model": "api_v2.spellcastingoption", "pk": 3611, "fields": { - "spell": "instant-siege-weapon", + "parent": "instant-siege-weapon", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -14931,7 +14931,7 @@ "model": "api_v2.spellcastingoption", "pk": 3612, "fields": { - "spell": "instant-siege-weapon", + "parent": "instant-siege-weapon", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -14943,7 +14943,7 @@ "model": "api_v2.spellcastingoption", "pk": 3613, "fields": { - "spell": "instant-siege-weapon", + "parent": "instant-siege-weapon", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -14955,7 +14955,7 @@ "model": "api_v2.spellcastingoption", "pk": 3614, "fields": { - "spell": "instant-siege-weapon", + "parent": "instant-siege-weapon", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -14967,7 +14967,7 @@ "model": "api_v2.spellcastingoption", "pk": 3615, "fields": { - "spell": "instant-siege-weapon", + "parent": "instant-siege-weapon", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -14979,7 +14979,7 @@ "model": "api_v2.spellcastingoption", "pk": 3616, "fields": { - "spell": "instant-snare", + "parent": "instant-snare", "type": "default", "damage_roll": null, "target_count": null, @@ -14991,7 +14991,7 @@ "model": "api_v2.spellcastingoption", "pk": 3618, "fields": { - "spell": "instant-snare", + "parent": "instant-snare", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -15003,7 +15003,7 @@ "model": "api_v2.spellcastingoption", "pk": 3619, "fields": { - "spell": "instant-snare", + "parent": "instant-snare", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -15015,7 +15015,7 @@ "model": "api_v2.spellcastingoption", "pk": 3620, "fields": { - "spell": "instant-snare", + "parent": "instant-snare", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -15027,7 +15027,7 @@ "model": "api_v2.spellcastingoption", "pk": 3621, "fields": { - "spell": "instant-snare", + "parent": "instant-snare", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -15039,7 +15039,7 @@ "model": "api_v2.spellcastingoption", "pk": 3622, "fields": { - "spell": "instant-snare", + "parent": "instant-snare", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -15051,7 +15051,7 @@ "model": "api_v2.spellcastingoption", "pk": 3623, "fields": { - "spell": "instant-snare", + "parent": "instant-snare", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -15063,7 +15063,7 @@ "model": "api_v2.spellcastingoption", "pk": 3624, "fields": { - "spell": "instant-snare", + "parent": "instant-snare", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -15075,7 +15075,7 @@ "model": "api_v2.spellcastingoption", "pk": 3625, "fields": { - "spell": "ire-of-the-mountain", + "parent": "ire-of-the-mountain", "type": "default", "damage_roll": null, "target_count": null, @@ -15087,7 +15087,7 @@ "model": "api_v2.spellcastingoption", "pk": 3627, "fields": { - "spell": "ire-of-the-mountain", + "parent": "ire-of-the-mountain", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -15099,7 +15099,7 @@ "model": "api_v2.spellcastingoption", "pk": 3628, "fields": { - "spell": "ire-of-the-mountain", + "parent": "ire-of-the-mountain", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -15111,7 +15111,7 @@ "model": "api_v2.spellcastingoption", "pk": 3629, "fields": { - "spell": "ire-of-the-mountain", + "parent": "ire-of-the-mountain", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -15123,7 +15123,7 @@ "model": "api_v2.spellcastingoption", "pk": 3630, "fields": { - "spell": "ire-of-the-mountain", + "parent": "ire-of-the-mountain", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -15135,7 +15135,7 @@ "model": "api_v2.spellcastingoption", "pk": 3631, "fields": { - "spell": "ire-of-the-mountain", + "parent": "ire-of-the-mountain", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -15147,7 +15147,7 @@ "model": "api_v2.spellcastingoption", "pk": 3632, "fields": { - "spell": "ire-of-the-mountain", + "parent": "ire-of-the-mountain", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -15159,7 +15159,7 @@ "model": "api_v2.spellcastingoption", "pk": 3633, "fields": { - "spell": "iron-hand", + "parent": "iron-hand", "type": "default", "damage_roll": null, "target_count": null, @@ -15171,7 +15171,7 @@ "model": "api_v2.spellcastingoption", "pk": 3634, "fields": { - "spell": "kareefs-entreaty", + "parent": "kareefs-entreaty", "type": "default", "damage_roll": null, "target_count": null, @@ -15183,7 +15183,7 @@ "model": "api_v2.spellcastingoption", "pk": 3636, "fields": { - "spell": "kareefs-entreaty", + "parent": "kareefs-entreaty", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -15195,7 +15195,7 @@ "model": "api_v2.spellcastingoption", "pk": 3637, "fields": { - "spell": "kareefs-entreaty", + "parent": "kareefs-entreaty", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -15207,7 +15207,7 @@ "model": "api_v2.spellcastingoption", "pk": 3638, "fields": { - "spell": "kareefs-entreaty", + "parent": "kareefs-entreaty", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -15219,7 +15219,7 @@ "model": "api_v2.spellcastingoption", "pk": 3639, "fields": { - "spell": "kareefs-entreaty", + "parent": "kareefs-entreaty", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -15231,7 +15231,7 @@ "model": "api_v2.spellcastingoption", "pk": 3640, "fields": { - "spell": "kareefs-entreaty", + "parent": "kareefs-entreaty", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -15243,7 +15243,7 @@ "model": "api_v2.spellcastingoption", "pk": 3641, "fields": { - "spell": "kareefs-entreaty", + "parent": "kareefs-entreaty", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -15255,7 +15255,7 @@ "model": "api_v2.spellcastingoption", "pk": 3642, "fields": { - "spell": "kareefs-entreaty", + "parent": "kareefs-entreaty", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -15267,7 +15267,7 @@ "model": "api_v2.spellcastingoption", "pk": 3643, "fields": { - "spell": "kareefs-entreaty", + "parent": "kareefs-entreaty", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -15279,7 +15279,7 @@ "model": "api_v2.spellcastingoption", "pk": 3644, "fields": { - "spell": "keening-wail", + "parent": "keening-wail", "type": "default", "damage_roll": null, "target_count": null, @@ -15291,7 +15291,7 @@ "model": "api_v2.spellcastingoption", "pk": 3646, "fields": { - "spell": "keening-wail", + "parent": "keening-wail", "type": "slot_level_5", "damage_roll": "7d6", "target_count": null, @@ -15303,7 +15303,7 @@ "model": "api_v2.spellcastingoption", "pk": 3647, "fields": { - "spell": "keening-wail", + "parent": "keening-wail", "type": "slot_level_6", "damage_roll": "8d6", "target_count": null, @@ -15315,7 +15315,7 @@ "model": "api_v2.spellcastingoption", "pk": 3648, "fields": { - "spell": "keening-wail", + "parent": "keening-wail", "type": "slot_level_7", "damage_roll": "9d6", "target_count": null, @@ -15327,7 +15327,7 @@ "model": "api_v2.spellcastingoption", "pk": 3649, "fields": { - "spell": "keening-wail", + "parent": "keening-wail", "type": "slot_level_8", "damage_roll": "10d6", "target_count": null, @@ -15339,7 +15339,7 @@ "model": "api_v2.spellcastingoption", "pk": 3650, "fields": { - "spell": "keening-wail", + "parent": "keening-wail", "type": "slot_level_9", "damage_roll": "11d6", "target_count": null, @@ -15351,7 +15351,7 @@ "model": "api_v2.spellcastingoption", "pk": 3651, "fields": { - "spell": "killing-fields", + "parent": "killing-fields", "type": "default", "damage_roll": null, "target_count": null, @@ -15363,7 +15363,7 @@ "model": "api_v2.spellcastingoption", "pk": 3652, "fields": { - "spell": "kiss-of-the-succubus", + "parent": "kiss-of-the-succubus", "type": "default", "damage_roll": null, "target_count": null, @@ -15375,7 +15375,7 @@ "model": "api_v2.spellcastingoption", "pk": 3654, "fields": { - "spell": "kiss-of-the-succubus", + "parent": "kiss-of-the-succubus", "type": "slot_level_6", "damage_roll": "6d10", "target_count": null, @@ -15387,7 +15387,7 @@ "model": "api_v2.spellcastingoption", "pk": 3655, "fields": { - "spell": "kiss-of-the-succubus", + "parent": "kiss-of-the-succubus", "type": "slot_level_7", "damage_roll": "7d10", "target_count": null, @@ -15399,7 +15399,7 @@ "model": "api_v2.spellcastingoption", "pk": 3656, "fields": { - "spell": "kiss-of-the-succubus", + "parent": "kiss-of-the-succubus", "type": "slot_level_8", "damage_roll": "8d10", "target_count": null, @@ -15411,7 +15411,7 @@ "model": "api_v2.spellcastingoption", "pk": 3657, "fields": { - "spell": "kiss-of-the-succubus", + "parent": "kiss-of-the-succubus", "type": "slot_level_9", "damage_roll": "9d10", "target_count": null, @@ -15423,7 +15423,7 @@ "model": "api_v2.spellcastingoption", "pk": 3658, "fields": { - "spell": "kobolds-fury", + "parent": "kobolds-fury", "type": "default", "damage_roll": null, "target_count": null, @@ -15435,7 +15435,7 @@ "model": "api_v2.spellcastingoption", "pk": 3659, "fields": { - "spell": "labyrinth-mastery", + "parent": "labyrinth-mastery", "type": "default", "damage_roll": null, "target_count": null, @@ -15447,7 +15447,7 @@ "model": "api_v2.spellcastingoption", "pk": 3660, "fields": { - "spell": "labyrinthine-howl", + "parent": "labyrinthine-howl", "type": "default", "damage_roll": null, "target_count": null, @@ -15459,7 +15459,7 @@ "model": "api_v2.spellcastingoption", "pk": 3662, "fields": { - "spell": "labyrinthine-howl", + "parent": "labyrinthine-howl", "type": "slot_level_6", "damage_roll": "9d8", "target_count": null, @@ -15471,7 +15471,7 @@ "model": "api_v2.spellcastingoption", "pk": 3663, "fields": { - "spell": "labyrinthine-howl", + "parent": "labyrinthine-howl", "type": "slot_level_7", "damage_roll": "11d8", "target_count": null, @@ -15483,7 +15483,7 @@ "model": "api_v2.spellcastingoption", "pk": 3664, "fields": { - "spell": "labyrinthine-howl", + "parent": "labyrinthine-howl", "type": "slot_level_8", "damage_roll": "13d8", "target_count": null, @@ -15495,7 +15495,7 @@ "model": "api_v2.spellcastingoption", "pk": 3665, "fields": { - "spell": "labyrinthine-howl", + "parent": "labyrinthine-howl", "type": "slot_level_9", "damage_roll": "15d8", "target_count": null, @@ -15507,7 +15507,7 @@ "model": "api_v2.spellcastingoption", "pk": 3666, "fields": { - "spell": "lacerate", + "parent": "lacerate", "type": "default", "damage_roll": null, "target_count": null, @@ -15519,7 +15519,7 @@ "model": "api_v2.spellcastingoption", "pk": 3668, "fields": { - "spell": "lacerate", + "parent": "lacerate", "type": "slot_level_3", "damage_roll": "5d8", "target_count": null, @@ -15531,7 +15531,7 @@ "model": "api_v2.spellcastingoption", "pk": 3669, "fields": { - "spell": "lacerate", + "parent": "lacerate", "type": "slot_level_4", "damage_roll": "6d8", "target_count": null, @@ -15543,7 +15543,7 @@ "model": "api_v2.spellcastingoption", "pk": 3670, "fields": { - "spell": "lacerate", + "parent": "lacerate", "type": "slot_level_5", "damage_roll": "7d8", "target_count": null, @@ -15555,7 +15555,7 @@ "model": "api_v2.spellcastingoption", "pk": 3671, "fields": { - "spell": "lacerate", + "parent": "lacerate", "type": "slot_level_6", "damage_roll": "8d8", "target_count": null, @@ -15567,7 +15567,7 @@ "model": "api_v2.spellcastingoption", "pk": 3672, "fields": { - "spell": "lacerate", + "parent": "lacerate", "type": "slot_level_7", "damage_roll": "9d8", "target_count": null, @@ -15579,7 +15579,7 @@ "model": "api_v2.spellcastingoption", "pk": 3673, "fields": { - "spell": "lacerate", + "parent": "lacerate", "type": "slot_level_8", "damage_roll": "10d8", "target_count": null, @@ -15591,7 +15591,7 @@ "model": "api_v2.spellcastingoption", "pk": 3674, "fields": { - "spell": "lacerate", + "parent": "lacerate", "type": "slot_level_9", "damage_roll": "11d8", "target_count": null, @@ -15603,7 +15603,7 @@ "model": "api_v2.spellcastingoption", "pk": 3675, "fields": { - "spell": "lair-sense", + "parent": "lair-sense", "type": "default", "damage_roll": null, "target_count": null, @@ -15615,7 +15615,7 @@ "model": "api_v2.spellcastingoption", "pk": 3676, "fields": { - "spell": "lair-sense", + "parent": "lair-sense", "type": "ritual", "damage_roll": null, "target_count": null, @@ -15627,7 +15627,7 @@ "model": "api_v2.spellcastingoption", "pk": 3678, "fields": { - "spell": "lair-sense", + "parent": "lair-sense", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -15639,7 +15639,7 @@ "model": "api_v2.spellcastingoption", "pk": 3679, "fields": { - "spell": "lair-sense", + "parent": "lair-sense", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -15651,7 +15651,7 @@ "model": "api_v2.spellcastingoption", "pk": 3680, "fields": { - "spell": "lair-sense", + "parent": "lair-sense", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -15663,7 +15663,7 @@ "model": "api_v2.spellcastingoption", "pk": 3681, "fields": { - "spell": "lair-sense", + "parent": "lair-sense", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -15675,7 +15675,7 @@ "model": "api_v2.spellcastingoption", "pk": 3682, "fields": { - "spell": "lair-sense", + "parent": "lair-sense", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -15687,7 +15687,7 @@ "model": "api_v2.spellcastingoption", "pk": 3683, "fields": { - "spell": "lair-sense", + "parent": "lair-sense", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -15699,7 +15699,7 @@ "model": "api_v2.spellcastingoption", "pk": 3684, "fields": { - "spell": "lair-sense", + "parent": "lair-sense", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -15711,7 +15711,7 @@ "model": "api_v2.spellcastingoption", "pk": 3685, "fields": { - "spell": "last-rays-of-the-dying-sun", + "parent": "last-rays-of-the-dying-sun", "type": "default", "damage_roll": null, "target_count": null, @@ -15723,7 +15723,7 @@ "model": "api_v2.spellcastingoption", "pk": 3687, "fields": { - "spell": "last-rays-of-the-dying-sun", + "parent": "last-rays-of-the-dying-sun", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -15735,7 +15735,7 @@ "model": "api_v2.spellcastingoption", "pk": 3688, "fields": { - "spell": "last-rays-of-the-dying-sun", + "parent": "last-rays-of-the-dying-sun", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -15747,7 +15747,7 @@ "model": "api_v2.spellcastingoption", "pk": 3689, "fields": { - "spell": "lava-stone", + "parent": "lava-stone", "type": "default", "damage_roll": null, "target_count": null, @@ -15759,7 +15759,7 @@ "model": "api_v2.spellcastingoption", "pk": 3690, "fields": { - "spell": "lay-to-rest", + "parent": "lay-to-rest", "type": "default", "damage_roll": null, "target_count": null, @@ -15771,7 +15771,7 @@ "model": "api_v2.spellcastingoption", "pk": 3691, "fields": { - "spell": "legend-killer", + "parent": "legend-killer", "type": "default", "damage_roll": null, "target_count": null, @@ -15783,7 +15783,7 @@ "model": "api_v2.spellcastingoption", "pk": 3692, "fields": { - "spell": "legion", + "parent": "legion", "type": "default", "damage_roll": null, "target_count": null, @@ -15795,7 +15795,7 @@ "model": "api_v2.spellcastingoption", "pk": 3693, "fields": { - "spell": "legion-of-rabid-squirrels", + "parent": "legion-of-rabid-squirrels", "type": "default", "damage_roll": null, "target_count": null, @@ -15807,7 +15807,7 @@ "model": "api_v2.spellcastingoption", "pk": 3695, "fields": { - "spell": "legion-of-rabid-squirrels", + "parent": "legion-of-rabid-squirrels", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -15819,7 +15819,7 @@ "model": "api_v2.spellcastingoption", "pk": 3696, "fields": { - "spell": "legion-of-rabid-squirrels", + "parent": "legion-of-rabid-squirrels", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -15831,7 +15831,7 @@ "model": "api_v2.spellcastingoption", "pk": 3697, "fields": { - "spell": "legion-of-rabid-squirrels", + "parent": "legion-of-rabid-squirrels", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -15843,7 +15843,7 @@ "model": "api_v2.spellcastingoption", "pk": 3698, "fields": { - "spell": "legion-of-rabid-squirrels", + "parent": "legion-of-rabid-squirrels", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -15855,7 +15855,7 @@ "model": "api_v2.spellcastingoption", "pk": 3699, "fields": { - "spell": "legion-of-rabid-squirrels", + "parent": "legion-of-rabid-squirrels", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -15867,7 +15867,7 @@ "model": "api_v2.spellcastingoption", "pk": 3700, "fields": { - "spell": "legion-of-rabid-squirrels", + "parent": "legion-of-rabid-squirrels", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -15879,7 +15879,7 @@ "model": "api_v2.spellcastingoption", "pk": 3701, "fields": { - "spell": "lesser-maze", + "parent": "lesser-maze", "type": "default", "damage_roll": null, "target_count": null, @@ -15891,7 +15891,7 @@ "model": "api_v2.spellcastingoption", "pk": 3702, "fields": { - "spell": "life-drain", + "parent": "life-drain", "type": "default", "damage_roll": null, "target_count": null, @@ -15903,7 +15903,7 @@ "model": "api_v2.spellcastingoption", "pk": 3704, "fields": { - "spell": "life-drain", + "parent": "life-drain", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -15915,7 +15915,7 @@ "model": "api_v2.spellcastingoption", "pk": 3705, "fields": { - "spell": "life-drain", + "parent": "life-drain", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -15927,7 +15927,7 @@ "model": "api_v2.spellcastingoption", "pk": 3706, "fields": { - "spell": "life-drain", + "parent": "life-drain", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -15939,7 +15939,7 @@ "model": "api_v2.spellcastingoption", "pk": 3707, "fields": { - "spell": "life-from-death", + "parent": "life-from-death", "type": "default", "damage_roll": null, "target_count": null, @@ -15951,7 +15951,7 @@ "model": "api_v2.spellcastingoption", "pk": 3709, "fields": { - "spell": "life-from-death", + "parent": "life-from-death", "type": "slot_level_4", "damage_roll": "3d6", "target_count": null, @@ -15963,7 +15963,7 @@ "model": "api_v2.spellcastingoption", "pk": 3710, "fields": { - "spell": "life-from-death", + "parent": "life-from-death", "type": "slot_level_5", "damage_roll": "4d6", "target_count": null, @@ -15975,7 +15975,7 @@ "model": "api_v2.spellcastingoption", "pk": 3711, "fields": { - "spell": "life-from-death", + "parent": "life-from-death", "type": "slot_level_6", "damage_roll": "5d6", "target_count": null, @@ -15987,7 +15987,7 @@ "model": "api_v2.spellcastingoption", "pk": 3712, "fields": { - "spell": "life-from-death", + "parent": "life-from-death", "type": "slot_level_7", "damage_roll": "6d6", "target_count": null, @@ -15999,7 +15999,7 @@ "model": "api_v2.spellcastingoption", "pk": 3713, "fields": { - "spell": "life-from-death", + "parent": "life-from-death", "type": "slot_level_8", "damage_roll": "7d6", "target_count": null, @@ -16011,7 +16011,7 @@ "model": "api_v2.spellcastingoption", "pk": 3714, "fields": { - "spell": "life-from-death", + "parent": "life-from-death", "type": "slot_level_9", "damage_roll": "8d6", "target_count": null, @@ -16023,7 +16023,7 @@ "model": "api_v2.spellcastingoption", "pk": 3715, "fields": { - "spell": "life-hack", + "parent": "life-hack", "type": "default", "damage_roll": null, "target_count": null, @@ -16035,7 +16035,7 @@ "model": "api_v2.spellcastingoption", "pk": 3716, "fields": { - "spell": "life-sense", + "parent": "life-sense", "type": "default", "damage_roll": null, "target_count": null, @@ -16047,7 +16047,7 @@ "model": "api_v2.spellcastingoption", "pk": 3717, "fields": { - "spell": "life-transference-arrow", + "parent": "life-transference-arrow", "type": "default", "damage_roll": null, "target_count": null, @@ -16059,7 +16059,7 @@ "model": "api_v2.spellcastingoption", "pk": 3719, "fields": { - "spell": "life-transference-arrow", + "parent": "life-transference-arrow", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -16071,7 +16071,7 @@ "model": "api_v2.spellcastingoption", "pk": 3720, "fields": { - "spell": "life-transference-arrow", + "parent": "life-transference-arrow", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -16083,7 +16083,7 @@ "model": "api_v2.spellcastingoption", "pk": 3721, "fields": { - "spell": "life-transference-arrow", + "parent": "life-transference-arrow", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -16095,7 +16095,7 @@ "model": "api_v2.spellcastingoption", "pk": 3722, "fields": { - "spell": "life-transference-arrow", + "parent": "life-transference-arrow", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -16107,7 +16107,7 @@ "model": "api_v2.spellcastingoption", "pk": 3723, "fields": { - "spell": "life-transference-arrow", + "parent": "life-transference-arrow", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -16119,7 +16119,7 @@ "model": "api_v2.spellcastingoption", "pk": 3724, "fields": { - "spell": "life-transference-arrow", + "parent": "life-transference-arrow", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -16131,7 +16131,7 @@ "model": "api_v2.spellcastingoption", "pk": 3725, "fields": { - "spell": "life-transference-arrow", + "parent": "life-transference-arrow", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -16143,7 +16143,7 @@ "model": "api_v2.spellcastingoption", "pk": 3726, "fields": { - "spell": "life-transference-arrow", + "parent": "life-transference-arrow", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -16155,7 +16155,7 @@ "model": "api_v2.spellcastingoption", "pk": 3727, "fields": { - "spell": "litany-of-sure-hands", + "parent": "litany-of-sure-hands", "type": "default", "damage_roll": null, "target_count": null, @@ -16167,7 +16167,7 @@ "model": "api_v2.spellcastingoption", "pk": 3728, "fields": { - "spell": "living-shadows", + "parent": "living-shadows", "type": "default", "damage_roll": null, "target_count": null, @@ -16179,7 +16179,7 @@ "model": "api_v2.spellcastingoption", "pk": 3729, "fields": { - "spell": "lock-armor", + "parent": "lock-armor", "type": "default", "damage_roll": null, "target_count": null, @@ -16191,7 +16191,7 @@ "model": "api_v2.spellcastingoption", "pk": 3731, "fields": { - "spell": "lock-armor", + "parent": "lock-armor", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -16203,7 +16203,7 @@ "model": "api_v2.spellcastingoption", "pk": 3732, "fields": { - "spell": "lock-armor", + "parent": "lock-armor", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -16215,7 +16215,7 @@ "model": "api_v2.spellcastingoption", "pk": 3733, "fields": { - "spell": "lock-armor", + "parent": "lock-armor", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -16227,7 +16227,7 @@ "model": "api_v2.spellcastingoption", "pk": 3734, "fields": { - "spell": "lock-armor", + "parent": "lock-armor", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -16239,7 +16239,7 @@ "model": "api_v2.spellcastingoption", "pk": 3735, "fields": { - "spell": "lock-armor", + "parent": "lock-armor", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -16251,7 +16251,7 @@ "model": "api_v2.spellcastingoption", "pk": 3736, "fields": { - "spell": "lock-armor", + "parent": "lock-armor", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -16263,7 +16263,7 @@ "model": "api_v2.spellcastingoption", "pk": 3737, "fields": { - "spell": "lock-armor", + "parent": "lock-armor", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -16275,7 +16275,7 @@ "model": "api_v2.spellcastingoption", "pk": 3738, "fields": { - "spell": "looping-trail", + "parent": "looping-trail", "type": "default", "damage_roll": null, "target_count": null, @@ -16287,7 +16287,7 @@ "model": "api_v2.spellcastingoption", "pk": 3739, "fields": { - "spell": "lovesick", + "parent": "lovesick", "type": "default", "damage_roll": null, "target_count": null, @@ -16299,7 +16299,7 @@ "model": "api_v2.spellcastingoption", "pk": 3741, "fields": { - "spell": "lovesick", + "parent": "lovesick", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -16311,7 +16311,7 @@ "model": "api_v2.spellcastingoption", "pk": 3742, "fields": { - "spell": "lovesick", + "parent": "lovesick", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -16323,7 +16323,7 @@ "model": "api_v2.spellcastingoption", "pk": 3743, "fields": { - "spell": "lovesick", + "parent": "lovesick", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -16335,7 +16335,7 @@ "model": "api_v2.spellcastingoption", "pk": 3744, "fields": { - "spell": "lovesick", + "parent": "lovesick", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -16347,7 +16347,7 @@ "model": "api_v2.spellcastingoption", "pk": 3745, "fields": { - "spell": "lovesick", + "parent": "lovesick", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -16359,7 +16359,7 @@ "model": "api_v2.spellcastingoption", "pk": 3746, "fields": { - "spell": "maddening-whispers", + "parent": "maddening-whispers", "type": "default", "damage_roll": null, "target_count": null, @@ -16371,7 +16371,7 @@ "model": "api_v2.spellcastingoption", "pk": 3747, "fields": { - "spell": "maim", + "parent": "maim", "type": "default", "damage_roll": null, "target_count": null, @@ -16383,7 +16383,7 @@ "model": "api_v2.spellcastingoption", "pk": 3748, "fields": { - "spell": "malevolent-waves", + "parent": "malevolent-waves", "type": "default", "damage_roll": null, "target_count": null, @@ -16395,7 +16395,7 @@ "model": "api_v2.spellcastingoption", "pk": 3749, "fields": { - "spell": "mammons-due", + "parent": "mammons-due", "type": "default", "damage_roll": null, "target_count": null, @@ -16407,7 +16407,7 @@ "model": "api_v2.spellcastingoption", "pk": 3750, "fields": { - "spell": "mammons-due", + "parent": "mammons-due", "type": "ritual", "damage_roll": null, "target_count": null, @@ -16419,7 +16419,7 @@ "model": "api_v2.spellcastingoption", "pk": 3751, "fields": { - "spell": "mark-prey", + "parent": "mark-prey", "type": "default", "damage_roll": null, "target_count": null, @@ -16431,7 +16431,7 @@ "model": "api_v2.spellcastingoption", "pk": 3753, "fields": { - "spell": "mark-prey", + "parent": "mark-prey", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -16443,7 +16443,7 @@ "model": "api_v2.spellcastingoption", "pk": 3754, "fields": { - "spell": "mark-prey", + "parent": "mark-prey", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -16455,7 +16455,7 @@ "model": "api_v2.spellcastingoption", "pk": 3755, "fields": { - "spell": "mark-prey", + "parent": "mark-prey", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -16467,7 +16467,7 @@ "model": "api_v2.spellcastingoption", "pk": 3756, "fields": { - "spell": "mark-prey", + "parent": "mark-prey", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -16479,7 +16479,7 @@ "model": "api_v2.spellcastingoption", "pk": 3757, "fields": { - "spell": "mark-prey", + "parent": "mark-prey", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -16491,7 +16491,7 @@ "model": "api_v2.spellcastingoption", "pk": 3758, "fields": { - "spell": "mark-prey", + "parent": "mark-prey", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -16503,7 +16503,7 @@ "model": "api_v2.spellcastingoption", "pk": 3759, "fields": { - "spell": "mark-prey", + "parent": "mark-prey", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -16515,7 +16515,7 @@ "model": "api_v2.spellcastingoption", "pk": 3760, "fields": { - "spell": "mass-hobble-mount", + "parent": "mass-hobble-mount", "type": "default", "damage_roll": null, "target_count": null, @@ -16527,7 +16527,7 @@ "model": "api_v2.spellcastingoption", "pk": 3762, "fields": { - "spell": "mass-hobble-mount", + "parent": "mass-hobble-mount", "type": "slot_level_4", "damage_roll": "5d6", "target_count": null, @@ -16539,7 +16539,7 @@ "model": "api_v2.spellcastingoption", "pk": 3763, "fields": { - "spell": "mass-hobble-mount", + "parent": "mass-hobble-mount", "type": "slot_level_5", "damage_roll": "6d6", "target_count": null, @@ -16551,7 +16551,7 @@ "model": "api_v2.spellcastingoption", "pk": 3764, "fields": { - "spell": "mass-hobble-mount", + "parent": "mass-hobble-mount", "type": "slot_level_6", "damage_roll": "7d6", "target_count": null, @@ -16563,7 +16563,7 @@ "model": "api_v2.spellcastingoption", "pk": 3765, "fields": { - "spell": "mass-hobble-mount", + "parent": "mass-hobble-mount", "type": "slot_level_7", "damage_roll": "8d6", "target_count": null, @@ -16575,7 +16575,7 @@ "model": "api_v2.spellcastingoption", "pk": 3766, "fields": { - "spell": "mass-hobble-mount", + "parent": "mass-hobble-mount", "type": "slot_level_8", "damage_roll": "9d6", "target_count": null, @@ -16587,7 +16587,7 @@ "model": "api_v2.spellcastingoption", "pk": 3767, "fields": { - "spell": "mass-hobble-mount", + "parent": "mass-hobble-mount", "type": "slot_level_9", "damage_roll": "10d6", "target_count": null, @@ -16599,7 +16599,7 @@ "model": "api_v2.spellcastingoption", "pk": 3768, "fields": { - "spell": "mass-surge-dampener", + "parent": "mass-surge-dampener", "type": "default", "damage_roll": null, "target_count": null, @@ -16611,7 +16611,7 @@ "model": "api_v2.spellcastingoption", "pk": 3769, "fields": { - "spell": "mass-surge-dampener", + "parent": "mass-surge-dampener", "type": "ritual", "damage_roll": null, "target_count": null, @@ -16623,7 +16623,7 @@ "model": "api_v2.spellcastingoption", "pk": 3770, "fields": { - "spell": "maw-of-needles", + "parent": "maw-of-needles", "type": "default", "damage_roll": null, "target_count": null, @@ -16635,7 +16635,7 @@ "model": "api_v2.spellcastingoption", "pk": 3772, "fields": { - "spell": "maw-of-needles", + "parent": "maw-of-needles", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -16647,7 +16647,7 @@ "model": "api_v2.spellcastingoption", "pk": 3773, "fields": { - "spell": "maw-of-needles", + "parent": "maw-of-needles", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -16659,7 +16659,7 @@ "model": "api_v2.spellcastingoption", "pk": 3774, "fields": { - "spell": "maw-of-needles", + "parent": "maw-of-needles", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -16671,7 +16671,7 @@ "model": "api_v2.spellcastingoption", "pk": 3775, "fields": { - "spell": "maw-of-needles", + "parent": "maw-of-needles", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -16683,7 +16683,7 @@ "model": "api_v2.spellcastingoption", "pk": 3776, "fields": { - "spell": "maw-of-needles", + "parent": "maw-of-needles", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -16695,7 +16695,7 @@ "model": "api_v2.spellcastingoption", "pk": 3777, "fields": { - "spell": "maw-of-needles", + "parent": "maw-of-needles", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -16707,7 +16707,7 @@ "model": "api_v2.spellcastingoption", "pk": 3778, "fields": { - "spell": "maw-of-needles", + "parent": "maw-of-needles", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -16719,7 +16719,7 @@ "model": "api_v2.spellcastingoption", "pk": 3779, "fields": { - "spell": "maw-of-needles", + "parent": "maw-of-needles", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -16731,7 +16731,7 @@ "model": "api_v2.spellcastingoption", "pk": 3780, "fields": { - "spell": "memento-mori", + "parent": "memento-mori", "type": "default", "damage_roll": null, "target_count": null, @@ -16743,7 +16743,7 @@ "model": "api_v2.spellcastingoption", "pk": 3781, "fields": { - "spell": "mephitic-croak", + "parent": "mephitic-croak", "type": "default", "damage_roll": null, "target_count": null, @@ -16755,7 +16755,7 @@ "model": "api_v2.spellcastingoption", "pk": 3783, "fields": { - "spell": "mephitic-croak", + "parent": "mephitic-croak", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -16767,7 +16767,7 @@ "model": "api_v2.spellcastingoption", "pk": 3784, "fields": { - "spell": "mephitic-croak", + "parent": "mephitic-croak", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -16779,7 +16779,7 @@ "model": "api_v2.spellcastingoption", "pk": 3785, "fields": { - "spell": "mephitic-croak", + "parent": "mephitic-croak", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -16791,7 +16791,7 @@ "model": "api_v2.spellcastingoption", "pk": 3786, "fields": { - "spell": "mephitic-croak", + "parent": "mephitic-croak", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -16803,7 +16803,7 @@ "model": "api_v2.spellcastingoption", "pk": 3787, "fields": { - "spell": "mephitic-croak", + "parent": "mephitic-croak", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -16815,7 +16815,7 @@ "model": "api_v2.spellcastingoption", "pk": 3788, "fields": { - "spell": "mephitic-croak", + "parent": "mephitic-croak", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -16827,7 +16827,7 @@ "model": "api_v2.spellcastingoption", "pk": 3789, "fields": { - "spell": "mephitic-croak", + "parent": "mephitic-croak", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -16839,7 +16839,7 @@ "model": "api_v2.spellcastingoption", "pk": 3790, "fields": { - "spell": "mind-exchange", + "parent": "mind-exchange", "type": "default", "damage_roll": null, "target_count": null, @@ -16851,7 +16851,7 @@ "model": "api_v2.spellcastingoption", "pk": 3791, "fields": { - "spell": "mind-exchange", + "parent": "mind-exchange", "type": "ritual", "damage_roll": null, "target_count": null, @@ -16863,7 +16863,7 @@ "model": "api_v2.spellcastingoption", "pk": 3792, "fields": { - "spell": "mire", + "parent": "mire", "type": "default", "damage_roll": null, "target_count": null, @@ -16875,7 +16875,7 @@ "model": "api_v2.spellcastingoption", "pk": 3793, "fields": { - "spell": "misstep", + "parent": "misstep", "type": "default", "damage_roll": null, "target_count": null, @@ -16887,7 +16887,7 @@ "model": "api_v2.spellcastingoption", "pk": 3794, "fields": { - "spell": "mist-of-wonders", + "parent": "mist-of-wonders", "type": "default", "damage_roll": null, "target_count": null, @@ -16899,7 +16899,7 @@ "model": "api_v2.spellcastingoption", "pk": 3796, "fields": { - "spell": "mist-of-wonders", + "parent": "mist-of-wonders", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -16911,7 +16911,7 @@ "model": "api_v2.spellcastingoption", "pk": 3797, "fields": { - "spell": "mist-of-wonders", + "parent": "mist-of-wonders", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -16923,7 +16923,7 @@ "model": "api_v2.spellcastingoption", "pk": 3798, "fields": { - "spell": "mist-of-wonders", + "parent": "mist-of-wonders", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -16935,7 +16935,7 @@ "model": "api_v2.spellcastingoption", "pk": 3799, "fields": { - "spell": "mist-of-wonders", + "parent": "mist-of-wonders", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -16947,7 +16947,7 @@ "model": "api_v2.spellcastingoption", "pk": 3800, "fields": { - "spell": "mist-of-wonders", + "parent": "mist-of-wonders", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -16959,7 +16959,7 @@ "model": "api_v2.spellcastingoption", "pk": 3801, "fields": { - "spell": "mist-of-wonders", + "parent": "mist-of-wonders", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -16971,7 +16971,7 @@ "model": "api_v2.spellcastingoption", "pk": 3802, "fields": { - "spell": "mist-of-wonders", + "parent": "mist-of-wonders", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -16983,7 +16983,7 @@ "model": "api_v2.spellcastingoption", "pk": 3803, "fields": { - "spell": "monstrous-empathy", + "parent": "monstrous-empathy", "type": "default", "damage_roll": null, "target_count": null, @@ -16995,7 +16995,7 @@ "model": "api_v2.spellcastingoption", "pk": 3805, "fields": { - "spell": "monstrous-empathy", + "parent": "monstrous-empathy", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -17007,7 +17007,7 @@ "model": "api_v2.spellcastingoption", "pk": 3806, "fields": { - "spell": "monstrous-empathy", + "parent": "monstrous-empathy", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -17019,7 +17019,7 @@ "model": "api_v2.spellcastingoption", "pk": 3807, "fields": { - "spell": "monstrous-empathy", + "parent": "monstrous-empathy", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -17031,7 +17031,7 @@ "model": "api_v2.spellcastingoption", "pk": 3808, "fields": { - "spell": "monstrous-empathy", + "parent": "monstrous-empathy", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -17043,7 +17043,7 @@ "model": "api_v2.spellcastingoption", "pk": 3809, "fields": { - "spell": "monstrous-empathy", + "parent": "monstrous-empathy", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -17055,7 +17055,7 @@ "model": "api_v2.spellcastingoption", "pk": 3810, "fields": { - "spell": "monstrous-empathy", + "parent": "monstrous-empathy", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -17067,7 +17067,7 @@ "model": "api_v2.spellcastingoption", "pk": 3811, "fields": { - "spell": "moon-trap", + "parent": "moon-trap", "type": "default", "damage_roll": null, "target_count": null, @@ -17079,7 +17079,7 @@ "model": "api_v2.spellcastingoption", "pk": 3812, "fields": { - "spell": "mosquito-bane", + "parent": "mosquito-bane", "type": "default", "damage_roll": null, "target_count": null, @@ -17091,7 +17091,7 @@ "model": "api_v2.spellcastingoption", "pk": 3814, "fields": { - "spell": "mosquito-bane", + "parent": "mosquito-bane", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -17103,7 +17103,7 @@ "model": "api_v2.spellcastingoption", "pk": 3815, "fields": { - "spell": "mosquito-bane", + "parent": "mosquito-bane", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -17115,7 +17115,7 @@ "model": "api_v2.spellcastingoption", "pk": 3816, "fields": { - "spell": "mosquito-bane", + "parent": "mosquito-bane", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -17127,7 +17127,7 @@ "model": "api_v2.spellcastingoption", "pk": 3817, "fields": { - "spell": "mosquito-bane", + "parent": "mosquito-bane", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -17139,7 +17139,7 @@ "model": "api_v2.spellcastingoption", "pk": 3818, "fields": { - "spell": "mosquito-bane", + "parent": "mosquito-bane", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -17151,7 +17151,7 @@ "model": "api_v2.spellcastingoption", "pk": 3819, "fields": { - "spell": "mosquito-bane", + "parent": "mosquito-bane", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -17163,7 +17163,7 @@ "model": "api_v2.spellcastingoption", "pk": 3820, "fields": { - "spell": "mosquito-bane", + "parent": "mosquito-bane", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -17175,7 +17175,7 @@ "model": "api_v2.spellcastingoption", "pk": 3821, "fields": { - "spell": "mosquito-bane", + "parent": "mosquito-bane", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -17187,7 +17187,7 @@ "model": "api_v2.spellcastingoption", "pk": 3822, "fields": { - "spell": "mud-pack", + "parent": "mud-pack", "type": "default", "damage_roll": null, "target_count": null, @@ -17199,7 +17199,7 @@ "model": "api_v2.spellcastingoption", "pk": 3823, "fields": { - "spell": "mud-pack", + "parent": "mud-pack", "type": "ritual", "damage_roll": null, "target_count": null, @@ -17211,7 +17211,7 @@ "model": "api_v2.spellcastingoption", "pk": 3825, "fields": { - "spell": "mud-pack", + "parent": "mud-pack", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -17223,7 +17223,7 @@ "model": "api_v2.spellcastingoption", "pk": 3826, "fields": { - "spell": "mud-pack", + "parent": "mud-pack", "type": "slot_level_3", "damage_roll": null, "target_count": 10, @@ -17235,7 +17235,7 @@ "model": "api_v2.spellcastingoption", "pk": 3827, "fields": { - "spell": "mud-pack", + "parent": "mud-pack", "type": "slot_level_4", "damage_roll": null, "target_count": 10, @@ -17247,7 +17247,7 @@ "model": "api_v2.spellcastingoption", "pk": 3828, "fields": { - "spell": "mud-pack", + "parent": "mud-pack", "type": "slot_level_5", "damage_roll": null, "target_count": 10, @@ -17259,7 +17259,7 @@ "model": "api_v2.spellcastingoption", "pk": 3829, "fields": { - "spell": "mud-pack", + "parent": "mud-pack", "type": "slot_level_6", "damage_roll": null, "target_count": 10, @@ -17271,7 +17271,7 @@ "model": "api_v2.spellcastingoption", "pk": 3830, "fields": { - "spell": "mud-pack", + "parent": "mud-pack", "type": "slot_level_7", "damage_roll": null, "target_count": 10, @@ -17283,7 +17283,7 @@ "model": "api_v2.spellcastingoption", "pk": 3831, "fields": { - "spell": "mud-pack", + "parent": "mud-pack", "type": "slot_level_8", "damage_roll": null, "target_count": 10, @@ -17295,7 +17295,7 @@ "model": "api_v2.spellcastingoption", "pk": 3832, "fields": { - "spell": "mud-pack", + "parent": "mud-pack", "type": "slot_level_9", "damage_roll": null, "target_count": 10, @@ -17307,7 +17307,7 @@ "model": "api_v2.spellcastingoption", "pk": 3833, "fields": { - "spell": "negative-image", + "parent": "negative-image", "type": "default", "damage_roll": null, "target_count": null, @@ -17319,7 +17319,7 @@ "model": "api_v2.spellcastingoption", "pk": 3834, "fields": { - "spell": "nether-weapon", + "parent": "nether-weapon", "type": "default", "damage_roll": null, "target_count": null, @@ -17331,7 +17331,7 @@ "model": "api_v2.spellcastingoption", "pk": 3836, "fields": { - "spell": "nether-weapon", + "parent": "nether-weapon", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -17343,7 +17343,7 @@ "model": "api_v2.spellcastingoption", "pk": 3837, "fields": { - "spell": "nether-weapon", + "parent": "nether-weapon", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -17355,7 +17355,7 @@ "model": "api_v2.spellcastingoption", "pk": 3838, "fields": { - "spell": "nether-weapon", + "parent": "nether-weapon", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -17367,7 +17367,7 @@ "model": "api_v2.spellcastingoption", "pk": 3839, "fields": { - "spell": "nether-weapon", + "parent": "nether-weapon", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -17379,7 +17379,7 @@ "model": "api_v2.spellcastingoption", "pk": 3840, "fields": { - "spell": "nether-weapon", + "parent": "nether-weapon", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -17391,7 +17391,7 @@ "model": "api_v2.spellcastingoption", "pk": 3841, "fields": { - "spell": "night-terrors", + "parent": "night-terrors", "type": "default", "damage_roll": null, "target_count": null, @@ -17403,7 +17403,7 @@ "model": "api_v2.spellcastingoption", "pk": 3842, "fields": { - "spell": "nightfall", + "parent": "nightfall", "type": "default", "damage_roll": null, "target_count": null, @@ -17415,7 +17415,7 @@ "model": "api_v2.spellcastingoption", "pk": 3843, "fields": { - "spell": "nightfall", + "parent": "nightfall", "type": "ritual", "damage_roll": null, "target_count": null, @@ -17427,7 +17427,7 @@ "model": "api_v2.spellcastingoption", "pk": 3844, "fields": { - "spell": "nip-at-the-heels", + "parent": "nip-at-the-heels", "type": "default", "damage_roll": null, "target_count": null, @@ -17439,7 +17439,7 @@ "model": "api_v2.spellcastingoption", "pk": 3846, "fields": { - "spell": "nip-at-the-heels", + "parent": "nip-at-the-heels", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -17451,7 +17451,7 @@ "model": "api_v2.spellcastingoption", "pk": 3847, "fields": { - "spell": "nip-at-the-heels", + "parent": "nip-at-the-heels", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -17463,7 +17463,7 @@ "model": "api_v2.spellcastingoption", "pk": 3848, "fields": { - "spell": "nip-at-the-heels", + "parent": "nip-at-the-heels", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -17475,7 +17475,7 @@ "model": "api_v2.spellcastingoption", "pk": 3849, "fields": { - "spell": "nip-at-the-heels", + "parent": "nip-at-the-heels", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -17487,7 +17487,7 @@ "model": "api_v2.spellcastingoption", "pk": 3850, "fields": { - "spell": "nip-at-the-heels", + "parent": "nip-at-the-heels", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -17499,7 +17499,7 @@ "model": "api_v2.spellcastingoption", "pk": 3851, "fields": { - "spell": "nip-at-the-heels", + "parent": "nip-at-the-heels", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -17511,7 +17511,7 @@ "model": "api_v2.spellcastingoption", "pk": 3852, "fields": { - "spell": "nip-at-the-heels", + "parent": "nip-at-the-heels", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -17523,7 +17523,7 @@ "model": "api_v2.spellcastingoption", "pk": 3853, "fields": { - "spell": "not-dead-yet", + "parent": "not-dead-yet", "type": "default", "damage_roll": null, "target_count": null, @@ -17535,7 +17535,7 @@ "model": "api_v2.spellcastingoption", "pk": 3854, "fields": { - "spell": "not-dead-yet", + "parent": "not-dead-yet", "type": "ritual", "damage_roll": null, "target_count": null, @@ -17547,7 +17547,7 @@ "model": "api_v2.spellcastingoption", "pk": 3855, "fields": { - "spell": "not-this-day", + "parent": "not-this-day", "type": "default", "damage_roll": null, "target_count": null, @@ -17559,7 +17559,7 @@ "model": "api_v2.spellcastingoption", "pk": 3856, "fields": { - "spell": "orb-of-light", + "parent": "orb-of-light", "type": "default", "damage_roll": null, "target_count": null, @@ -17571,7 +17571,7 @@ "model": "api_v2.spellcastingoption", "pk": 3858, "fields": { - "spell": "orb-of-light", + "parent": "orb-of-light", "type": "slot_level_3", "damage_roll": "4d8", "target_count": null, @@ -17583,7 +17583,7 @@ "model": "api_v2.spellcastingoption", "pk": 3859, "fields": { - "spell": "orb-of-light", + "parent": "orb-of-light", "type": "slot_level_4", "damage_roll": "5d8", "target_count": null, @@ -17595,7 +17595,7 @@ "model": "api_v2.spellcastingoption", "pk": 3860, "fields": { - "spell": "orb-of-light", + "parent": "orb-of-light", "type": "slot_level_5", "damage_roll": "6d8", "target_count": null, @@ -17607,7 +17607,7 @@ "model": "api_v2.spellcastingoption", "pk": 3861, "fields": { - "spell": "orb-of-light", + "parent": "orb-of-light", "type": "slot_level_6", "damage_roll": "7d8", "target_count": null, @@ -17619,7 +17619,7 @@ "model": "api_v2.spellcastingoption", "pk": 3862, "fields": { - "spell": "orb-of-light", + "parent": "orb-of-light", "type": "slot_level_7", "damage_roll": "8d8", "target_count": null, @@ -17631,7 +17631,7 @@ "model": "api_v2.spellcastingoption", "pk": 3863, "fields": { - "spell": "orb-of-light", + "parent": "orb-of-light", "type": "slot_level_8", "damage_roll": "9d8", "target_count": null, @@ -17643,7 +17643,7 @@ "model": "api_v2.spellcastingoption", "pk": 3864, "fields": { - "spell": "orb-of-light", + "parent": "orb-of-light", "type": "slot_level_9", "damage_roll": "10d8", "target_count": null, @@ -17655,7 +17655,7 @@ "model": "api_v2.spellcastingoption", "pk": 3865, "fields": { - "spell": "outflanking-boon", + "parent": "outflanking-boon", "type": "default", "damage_roll": null, "target_count": null, @@ -17667,7 +17667,7 @@ "model": "api_v2.spellcastingoption", "pk": 3867, "fields": { - "spell": "outflanking-boon", + "parent": "outflanking-boon", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -17679,7 +17679,7 @@ "model": "api_v2.spellcastingoption", "pk": 3868, "fields": { - "spell": "outflanking-boon", + "parent": "outflanking-boon", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -17691,7 +17691,7 @@ "model": "api_v2.spellcastingoption", "pk": 3869, "fields": { - "spell": "outflanking-boon", + "parent": "outflanking-boon", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -17703,7 +17703,7 @@ "model": "api_v2.spellcastingoption", "pk": 3870, "fields": { - "spell": "outflanking-boon", + "parent": "outflanking-boon", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -17715,7 +17715,7 @@ "model": "api_v2.spellcastingoption", "pk": 3871, "fields": { - "spell": "outflanking-boon", + "parent": "outflanking-boon", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -17727,7 +17727,7 @@ "model": "api_v2.spellcastingoption", "pk": 3872, "fields": { - "spell": "outflanking-boon", + "parent": "outflanking-boon", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -17739,7 +17739,7 @@ "model": "api_v2.spellcastingoption", "pk": 3873, "fields": { - "spell": "paragon-of-chaos", + "parent": "paragon-of-chaos", "type": "default", "damage_roll": null, "target_count": null, @@ -17751,7 +17751,7 @@ "model": "api_v2.spellcastingoption", "pk": 3874, "fields": { - "spell": "pendulum", + "parent": "pendulum", "type": "default", "damage_roll": null, "target_count": null, @@ -17763,7 +17763,7 @@ "model": "api_v2.spellcastingoption", "pk": 3875, "fields": { - "spell": "phantom-dragon", + "parent": "phantom-dragon", "type": "default", "damage_roll": null, "target_count": null, @@ -17775,7 +17775,7 @@ "model": "api_v2.spellcastingoption", "pk": 3877, "fields": { - "spell": "phantom-dragon", + "parent": "phantom-dragon", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -17787,7 +17787,7 @@ "model": "api_v2.spellcastingoption", "pk": 3878, "fields": { - "spell": "phantom-dragon", + "parent": "phantom-dragon", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -17799,7 +17799,7 @@ "model": "api_v2.spellcastingoption", "pk": 3879, "fields": { - "spell": "phantom-dragon", + "parent": "phantom-dragon", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -17811,7 +17811,7 @@ "model": "api_v2.spellcastingoption", "pk": 3880, "fields": { - "spell": "phantom-dragon", + "parent": "phantom-dragon", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -17823,7 +17823,7 @@ "model": "api_v2.spellcastingoption", "pk": 3881, "fields": { - "spell": "phantom-dragon", + "parent": "phantom-dragon", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -17835,7 +17835,7 @@ "model": "api_v2.spellcastingoption", "pk": 3882, "fields": { - "spell": "phantom-dragon", + "parent": "phantom-dragon", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -17847,7 +17847,7 @@ "model": "api_v2.spellcastingoption", "pk": 3883, "fields": { - "spell": "pitfall", + "parent": "pitfall", "type": "default", "damage_roll": null, "target_count": null, @@ -17859,7 +17859,7 @@ "model": "api_v2.spellcastingoption", "pk": 3884, "fields": { - "spell": "poisoned-volley", + "parent": "poisoned-volley", "type": "default", "damage_roll": null, "target_count": null, @@ -17871,7 +17871,7 @@ "model": "api_v2.spellcastingoption", "pk": 3886, "fields": { - "spell": "poisoned-volley", + "parent": "poisoned-volley", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -17883,7 +17883,7 @@ "model": "api_v2.spellcastingoption", "pk": 3887, "fields": { - "spell": "poisoned-volley", + "parent": "poisoned-volley", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -17895,7 +17895,7 @@ "model": "api_v2.spellcastingoption", "pk": 3888, "fields": { - "spell": "poisoned-volley", + "parent": "poisoned-volley", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -17907,7 +17907,7 @@ "model": "api_v2.spellcastingoption", "pk": 3889, "fields": { - "spell": "poisoned-volley", + "parent": "poisoned-volley", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -17919,7 +17919,7 @@ "model": "api_v2.spellcastingoption", "pk": 3890, "fields": { - "spell": "poisoned-volley", + "parent": "poisoned-volley", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -17931,7 +17931,7 @@ "model": "api_v2.spellcastingoption", "pk": 3891, "fields": { - "spell": "poisoned-volley", + "parent": "poisoned-volley", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -17943,7 +17943,7 @@ "model": "api_v2.spellcastingoption", "pk": 3892, "fields": { - "spell": "poisoned-volley", + "parent": "poisoned-volley", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -17955,7 +17955,7 @@ "model": "api_v2.spellcastingoption", "pk": 3893, "fields": { - "spell": "potency-of-the-pack", + "parent": "potency-of-the-pack", "type": "default", "damage_roll": null, "target_count": null, @@ -17967,7 +17967,7 @@ "model": "api_v2.spellcastingoption", "pk": 3895, "fields": { - "spell": "potency-of-the-pack", + "parent": "potency-of-the-pack", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -17979,7 +17979,7 @@ "model": "api_v2.spellcastingoption", "pk": 3896, "fields": { - "spell": "potency-of-the-pack", + "parent": "potency-of-the-pack", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -17991,7 +17991,7 @@ "model": "api_v2.spellcastingoption", "pk": 3897, "fields": { - "spell": "potency-of-the-pack", + "parent": "potency-of-the-pack", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -18003,7 +18003,7 @@ "model": "api_v2.spellcastingoption", "pk": 3898, "fields": { - "spell": "potency-of-the-pack", + "parent": "potency-of-the-pack", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -18015,7 +18015,7 @@ "model": "api_v2.spellcastingoption", "pk": 3899, "fields": { - "spell": "potency-of-the-pack", + "parent": "potency-of-the-pack", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -18027,7 +18027,7 @@ "model": "api_v2.spellcastingoption", "pk": 3900, "fields": { - "spell": "potency-of-the-pack", + "parent": "potency-of-the-pack", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -18039,7 +18039,7 @@ "model": "api_v2.spellcastingoption", "pk": 3901, "fields": { - "spell": "power-word-kneel", + "parent": "power-word-kneel", "type": "default", "damage_roll": null, "target_count": null, @@ -18051,7 +18051,7 @@ "model": "api_v2.spellcastingoption", "pk": 3902, "fields": { - "spell": "power-word-pain", + "parent": "power-word-pain", "type": "default", "damage_roll": null, "target_count": null, @@ -18063,7 +18063,7 @@ "model": "api_v2.spellcastingoption", "pk": 3903, "fields": { - "spell": "primal-infusion", + "parent": "primal-infusion", "type": "default", "damage_roll": null, "target_count": null, @@ -18075,7 +18075,7 @@ "model": "api_v2.spellcastingoption", "pk": 3904, "fields": { - "spell": "prismatic-ray", + "parent": "prismatic-ray", "type": "default", "damage_roll": null, "target_count": null, @@ -18087,7 +18087,7 @@ "model": "api_v2.spellcastingoption", "pk": 3905, "fields": { - "spell": "protection-from-the-void", + "parent": "protection-from-the-void", "type": "default", "damage_roll": null, "target_count": null, @@ -18099,7 +18099,7 @@ "model": "api_v2.spellcastingoption", "pk": 3906, "fields": { - "spell": "protective-ice", + "parent": "protective-ice", "type": "default", "damage_roll": null, "target_count": null, @@ -18111,7 +18111,7 @@ "model": "api_v2.spellcastingoption", "pk": 3908, "fields": { - "spell": "protective-ice", + "parent": "protective-ice", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -18123,7 +18123,7 @@ "model": "api_v2.spellcastingoption", "pk": 3909, "fields": { - "spell": "protective-ice", + "parent": "protective-ice", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -18135,7 +18135,7 @@ "model": "api_v2.spellcastingoption", "pk": 3910, "fields": { - "spell": "protective-ice", + "parent": "protective-ice", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -18147,7 +18147,7 @@ "model": "api_v2.spellcastingoption", "pk": 3911, "fields": { - "spell": "protective-ice", + "parent": "protective-ice", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -18159,7 +18159,7 @@ "model": "api_v2.spellcastingoption", "pk": 3912, "fields": { - "spell": "protective-ice", + "parent": "protective-ice", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -18171,7 +18171,7 @@ "model": "api_v2.spellcastingoption", "pk": 3913, "fields": { - "spell": "protective-ice", + "parent": "protective-ice", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -18183,7 +18183,7 @@ "model": "api_v2.spellcastingoption", "pk": 3914, "fields": { - "spell": "puff-of-smoke", + "parent": "puff-of-smoke", "type": "default", "damage_roll": null, "target_count": null, @@ -18195,7 +18195,7 @@ "model": "api_v2.spellcastingoption", "pk": 3915, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "default", "damage_roll": null, "target_count": null, @@ -18207,7 +18207,7 @@ "model": "api_v2.spellcastingoption", "pk": 3916, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_1", "damage_roll": "1d6", "target_count": null, @@ -18219,7 +18219,7 @@ "model": "api_v2.spellcastingoption", "pk": 3917, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_2", "damage_roll": "1d6", "target_count": null, @@ -18231,7 +18231,7 @@ "model": "api_v2.spellcastingoption", "pk": 3918, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_3", "damage_roll": "1d6", "target_count": null, @@ -18243,7 +18243,7 @@ "model": "api_v2.spellcastingoption", "pk": 3919, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_4", "damage_roll": "1d6", "target_count": null, @@ -18255,7 +18255,7 @@ "model": "api_v2.spellcastingoption", "pk": 3920, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_5", "damage_roll": "2d6", "target_count": null, @@ -18267,7 +18267,7 @@ "model": "api_v2.spellcastingoption", "pk": 3921, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_6", "damage_roll": "2d6", "target_count": null, @@ -18279,7 +18279,7 @@ "model": "api_v2.spellcastingoption", "pk": 3922, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_7", "damage_roll": "2d6", "target_count": null, @@ -18291,7 +18291,7 @@ "model": "api_v2.spellcastingoption", "pk": 3923, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_8", "damage_roll": "2d6", "target_count": null, @@ -18303,7 +18303,7 @@ "model": "api_v2.spellcastingoption", "pk": 3924, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_9", "damage_roll": "2d6", "target_count": null, @@ -18315,7 +18315,7 @@ "model": "api_v2.spellcastingoption", "pk": 3925, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_10", "damage_roll": "2d6", "target_count": null, @@ -18327,7 +18327,7 @@ "model": "api_v2.spellcastingoption", "pk": 3926, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_11", "damage_roll": "3d6", "target_count": null, @@ -18339,7 +18339,7 @@ "model": "api_v2.spellcastingoption", "pk": 3927, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_12", "damage_roll": "3d6", "target_count": null, @@ -18351,7 +18351,7 @@ "model": "api_v2.spellcastingoption", "pk": 3928, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_13", "damage_roll": "3d6", "target_count": null, @@ -18363,7 +18363,7 @@ "model": "api_v2.spellcastingoption", "pk": 3929, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_14", "damage_roll": "3d6", "target_count": null, @@ -18375,7 +18375,7 @@ "model": "api_v2.spellcastingoption", "pk": 3930, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_15", "damage_roll": "3d6", "target_count": null, @@ -18387,7 +18387,7 @@ "model": "api_v2.spellcastingoption", "pk": 3931, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_16", "damage_roll": "3d6", "target_count": null, @@ -18399,7 +18399,7 @@ "model": "api_v2.spellcastingoption", "pk": 3932, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_17", "damage_roll": "4d6", "target_count": null, @@ -18411,7 +18411,7 @@ "model": "api_v2.spellcastingoption", "pk": 3933, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_18", "damage_roll": "4d6", "target_count": null, @@ -18423,7 +18423,7 @@ "model": "api_v2.spellcastingoption", "pk": 3934, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_19", "damage_roll": "4d6", "target_count": null, @@ -18435,7 +18435,7 @@ "model": "api_v2.spellcastingoption", "pk": 3935, "fields": { - "spell": "pummelstone", + "parent": "pummelstone", "type": "player_level_20", "damage_roll": "4d6", "target_count": null, @@ -18447,7 +18447,7 @@ "model": "api_v2.spellcastingoption", "pk": 3936, "fields": { - "spell": "pyroclasm", + "parent": "pyroclasm", "type": "default", "damage_roll": null, "target_count": null, @@ -18459,7 +18459,7 @@ "model": "api_v2.spellcastingoption", "pk": 3937, "fields": { - "spell": "quick-time", + "parent": "quick-time", "type": "default", "damage_roll": null, "target_count": null, @@ -18471,7 +18471,7 @@ "model": "api_v2.spellcastingoption", "pk": 3939, "fields": { - "spell": "quick-time", + "parent": "quick-time", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -18483,7 +18483,7 @@ "model": "api_v2.spellcastingoption", "pk": 3940, "fields": { - "spell": "quick-time", + "parent": "quick-time", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -18495,7 +18495,7 @@ "model": "api_v2.spellcastingoption", "pk": 3941, "fields": { - "spell": "quick-time", + "parent": "quick-time", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -18507,7 +18507,7 @@ "model": "api_v2.spellcastingoption", "pk": 3942, "fields": { - "spell": "quick-time", + "parent": "quick-time", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -18519,7 +18519,7 @@ "model": "api_v2.spellcastingoption", "pk": 3943, "fields": { - "spell": "quick-time", + "parent": "quick-time", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -18531,7 +18531,7 @@ "model": "api_v2.spellcastingoption", "pk": 3944, "fields": { - "spell": "quicken", + "parent": "quicken", "type": "default", "damage_roll": null, "target_count": null, @@ -18543,7 +18543,7 @@ "model": "api_v2.spellcastingoption", "pk": 3945, "fields": { - "spell": "quicksilver-mantle", + "parent": "quicksilver-mantle", "type": "default", "damage_roll": null, "target_count": null, @@ -18555,7 +18555,7 @@ "model": "api_v2.spellcastingoption", "pk": 3946, "fields": { - "spell": "quintessence", + "parent": "quintessence", "type": "default", "damage_roll": null, "target_count": null, @@ -18567,7 +18567,7 @@ "model": "api_v2.spellcastingoption", "pk": 3947, "fields": { - "spell": "raid-the-lair", + "parent": "raid-the-lair", "type": "default", "damage_roll": null, "target_count": null, @@ -18579,7 +18579,7 @@ "model": "api_v2.spellcastingoption", "pk": 3948, "fields": { - "spell": "rain-of-blades", + "parent": "rain-of-blades", "type": "default", "damage_roll": null, "target_count": null, @@ -18591,7 +18591,7 @@ "model": "api_v2.spellcastingoption", "pk": 3950, "fields": { - "spell": "rain-of-blades", + "parent": "rain-of-blades", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -18603,7 +18603,7 @@ "model": "api_v2.spellcastingoption", "pk": 3951, "fields": { - "spell": "rain-of-blades", + "parent": "rain-of-blades", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -18615,7 +18615,7 @@ "model": "api_v2.spellcastingoption", "pk": 3952, "fields": { - "spell": "rain-of-blades", + "parent": "rain-of-blades", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -18627,7 +18627,7 @@ "model": "api_v2.spellcastingoption", "pk": 3953, "fields": { - "spell": "rain-of-blades", + "parent": "rain-of-blades", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -18639,7 +18639,7 @@ "model": "api_v2.spellcastingoption", "pk": 3954, "fields": { - "spell": "ray-of-alchemical-negation", + "parent": "ray-of-alchemical-negation", "type": "default", "damage_roll": null, "target_count": null, @@ -18651,7 +18651,7 @@ "model": "api_v2.spellcastingoption", "pk": 3955, "fields": { - "spell": "ray-of-life-suppression", + "parent": "ray-of-life-suppression", "type": "default", "damage_roll": null, "target_count": null, @@ -18663,7 +18663,7 @@ "model": "api_v2.spellcastingoption", "pk": 3956, "fields": { - "spell": "reaver-spirit", + "parent": "reaver-spirit", "type": "default", "damage_roll": null, "target_count": null, @@ -18675,7 +18675,7 @@ "model": "api_v2.spellcastingoption", "pk": 3958, "fields": { - "spell": "reaver-spirit", + "parent": "reaver-spirit", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -18687,7 +18687,7 @@ "model": "api_v2.spellcastingoption", "pk": 3959, "fields": { - "spell": "reaver-spirit", + "parent": "reaver-spirit", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -18699,7 +18699,7 @@ "model": "api_v2.spellcastingoption", "pk": 3960, "fields": { - "spell": "reaver-spirit", + "parent": "reaver-spirit", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -18711,7 +18711,7 @@ "model": "api_v2.spellcastingoption", "pk": 3961, "fields": { - "spell": "reaver-spirit", + "parent": "reaver-spirit", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -18723,7 +18723,7 @@ "model": "api_v2.spellcastingoption", "pk": 3962, "fields": { - "spell": "reaver-spirit", + "parent": "reaver-spirit", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -18735,7 +18735,7 @@ "model": "api_v2.spellcastingoption", "pk": 3963, "fields": { - "spell": "reaver-spirit", + "parent": "reaver-spirit", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -18747,7 +18747,7 @@ "model": "api_v2.spellcastingoption", "pk": 3964, "fields": { - "spell": "reposition", + "parent": "reposition", "type": "default", "damage_roll": null, "target_count": null, @@ -18759,7 +18759,7 @@ "model": "api_v2.spellcastingoption", "pk": 3966, "fields": { - "spell": "reposition", + "parent": "reposition", "type": "slot_level_5", "damage_roll": null, "target_count": 2, @@ -18771,7 +18771,7 @@ "model": "api_v2.spellcastingoption", "pk": 3967, "fields": { - "spell": "reposition", + "parent": "reposition", "type": "slot_level_6", "damage_roll": null, "target_count": 3, @@ -18783,7 +18783,7 @@ "model": "api_v2.spellcastingoption", "pk": 3968, "fields": { - "spell": "reposition", + "parent": "reposition", "type": "slot_level_7", "damage_roll": null, "target_count": 4, @@ -18795,7 +18795,7 @@ "model": "api_v2.spellcastingoption", "pk": 3969, "fields": { - "spell": "reposition", + "parent": "reposition", "type": "slot_level_8", "damage_roll": null, "target_count": 5, @@ -18807,7 +18807,7 @@ "model": "api_v2.spellcastingoption", "pk": 3970, "fields": { - "spell": "reposition", + "parent": "reposition", "type": "slot_level_9", "damage_roll": null, "target_count": 6, @@ -18819,7 +18819,7 @@ "model": "api_v2.spellcastingoption", "pk": 3971, "fields": { - "spell": "reset", + "parent": "reset", "type": "default", "damage_roll": null, "target_count": null, @@ -18831,7 +18831,7 @@ "model": "api_v2.spellcastingoption", "pk": 3973, "fields": { - "spell": "reset", + "parent": "reset", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -18843,7 +18843,7 @@ "model": "api_v2.spellcastingoption", "pk": 3974, "fields": { - "spell": "reset", + "parent": "reset", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -18855,7 +18855,7 @@ "model": "api_v2.spellcastingoption", "pk": 3975, "fields": { - "spell": "reset", + "parent": "reset", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -18867,7 +18867,7 @@ "model": "api_v2.spellcastingoption", "pk": 3976, "fields": { - "spell": "reset", + "parent": "reset", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -18879,7 +18879,7 @@ "model": "api_v2.spellcastingoption", "pk": 3977, "fields": { - "spell": "reset", + "parent": "reset", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -18891,7 +18891,7 @@ "model": "api_v2.spellcastingoption", "pk": 3978, "fields": { - "spell": "reverberate", + "parent": "reverberate", "type": "default", "damage_roll": null, "target_count": null, @@ -18903,7 +18903,7 @@ "model": "api_v2.spellcastingoption", "pk": 3980, "fields": { - "spell": "reverberate", + "parent": "reverberate", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -18915,7 +18915,7 @@ "model": "api_v2.spellcastingoption", "pk": 3981, "fields": { - "spell": "reverberate", + "parent": "reverberate", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -18927,7 +18927,7 @@ "model": "api_v2.spellcastingoption", "pk": 3982, "fields": { - "spell": "reverberate", + "parent": "reverberate", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -18939,7 +18939,7 @@ "model": "api_v2.spellcastingoption", "pk": 3983, "fields": { - "spell": "reverberate", + "parent": "reverberate", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -18951,7 +18951,7 @@ "model": "api_v2.spellcastingoption", "pk": 3984, "fields": { - "spell": "reverberate", + "parent": "reverberate", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -18963,7 +18963,7 @@ "model": "api_v2.spellcastingoption", "pk": 3985, "fields": { - "spell": "reverberate", + "parent": "reverberate", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -18975,7 +18975,7 @@ "model": "api_v2.spellcastingoption", "pk": 3986, "fields": { - "spell": "reverberate", + "parent": "reverberate", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -18987,7 +18987,7 @@ "model": "api_v2.spellcastingoption", "pk": 3987, "fields": { - "spell": "revive-beast", + "parent": "revive-beast", "type": "default", "damage_roll": null, "target_count": null, @@ -18999,7 +18999,7 @@ "model": "api_v2.spellcastingoption", "pk": 3988, "fields": { - "spell": "right-the-stars", + "parent": "right-the-stars", "type": "default", "damage_roll": null, "target_count": null, @@ -19011,7 +19011,7 @@ "model": "api_v2.spellcastingoption", "pk": 3989, "fields": { - "spell": "ring-strike", + "parent": "ring-strike", "type": "default", "damage_roll": null, "target_count": null, @@ -19023,7 +19023,7 @@ "model": "api_v2.spellcastingoption", "pk": 3991, "fields": { - "spell": "ring-strike", + "parent": "ring-strike", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -19035,7 +19035,7 @@ "model": "api_v2.spellcastingoption", "pk": 3992, "fields": { - "spell": "ring-strike", + "parent": "ring-strike", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -19047,7 +19047,7 @@ "model": "api_v2.spellcastingoption", "pk": 3993, "fields": { - "spell": "ring-strike", + "parent": "ring-strike", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -19059,7 +19059,7 @@ "model": "api_v2.spellcastingoption", "pk": 3994, "fields": { - "spell": "ring-strike", + "parent": "ring-strike", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -19071,7 +19071,7 @@ "model": "api_v2.spellcastingoption", "pk": 3995, "fields": { - "spell": "ring-strike", + "parent": "ring-strike", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -19083,7 +19083,7 @@ "model": "api_v2.spellcastingoption", "pk": 3996, "fields": { - "spell": "ring-strike", + "parent": "ring-strike", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19095,7 +19095,7 @@ "model": "api_v2.spellcastingoption", "pk": 3997, "fields": { - "spell": "ring-strike", + "parent": "ring-strike", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19107,7 +19107,7 @@ "model": "api_v2.spellcastingoption", "pk": 3998, "fields": { - "spell": "ring-strike", + "parent": "ring-strike", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19119,7 +19119,7 @@ "model": "api_v2.spellcastingoption", "pk": 3999, "fields": { - "spell": "ring-ward", + "parent": "ring-ward", "type": "default", "damage_roll": null, "target_count": null, @@ -19131,7 +19131,7 @@ "model": "api_v2.spellcastingoption", "pk": 4000, "fields": { - "spell": "riptide", + "parent": "riptide", "type": "default", "damage_roll": null, "target_count": null, @@ -19143,7 +19143,7 @@ "model": "api_v2.spellcastingoption", "pk": 4001, "fields": { - "spell": "rolling-thunder", + "parent": "rolling-thunder", "type": "default", "damage_roll": null, "target_count": null, @@ -19155,7 +19155,7 @@ "model": "api_v2.spellcastingoption", "pk": 4003, "fields": { - "spell": "rolling-thunder", + "parent": "rolling-thunder", "type": "slot_level_3", "damage_roll": "3d8", "target_count": null, @@ -19167,7 +19167,7 @@ "model": "api_v2.spellcastingoption", "pk": 4004, "fields": { - "spell": "rolling-thunder", + "parent": "rolling-thunder", "type": "slot_level_4", "damage_roll": "4d8", "target_count": null, @@ -19179,7 +19179,7 @@ "model": "api_v2.spellcastingoption", "pk": 4005, "fields": { - "spell": "rolling-thunder", + "parent": "rolling-thunder", "type": "slot_level_5", "damage_roll": "5d8", "target_count": null, @@ -19191,7 +19191,7 @@ "model": "api_v2.spellcastingoption", "pk": 4006, "fields": { - "spell": "rolling-thunder", + "parent": "rolling-thunder", "type": "slot_level_6", "damage_roll": "6d8", "target_count": null, @@ -19203,7 +19203,7 @@ "model": "api_v2.spellcastingoption", "pk": 4007, "fields": { - "spell": "rolling-thunder", + "parent": "rolling-thunder", "type": "slot_level_7", "damage_roll": "7d8", "target_count": null, @@ -19215,7 +19215,7 @@ "model": "api_v2.spellcastingoption", "pk": 4008, "fields": { - "spell": "rolling-thunder", + "parent": "rolling-thunder", "type": "slot_level_8", "damage_roll": "8d8", "target_count": null, @@ -19227,7 +19227,7 @@ "model": "api_v2.spellcastingoption", "pk": 4009, "fields": { - "spell": "rolling-thunder", + "parent": "rolling-thunder", "type": "slot_level_9", "damage_roll": "9d8", "target_count": null, @@ -19239,7 +19239,7 @@ "model": "api_v2.spellcastingoption", "pk": 4010, "fields": { - "spell": "rotting-corpse", + "parent": "rotting-corpse", "type": "default", "damage_roll": null, "target_count": null, @@ -19251,7 +19251,7 @@ "model": "api_v2.spellcastingoption", "pk": 4012, "fields": { - "spell": "rotting-corpse", + "parent": "rotting-corpse", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -19263,7 +19263,7 @@ "model": "api_v2.spellcastingoption", "pk": 4013, "fields": { - "spell": "rotting-corpse", + "parent": "rotting-corpse", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -19275,7 +19275,7 @@ "model": "api_v2.spellcastingoption", "pk": 4014, "fields": { - "spell": "rotting-corpse", + "parent": "rotting-corpse", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -19287,7 +19287,7 @@ "model": "api_v2.spellcastingoption", "pk": 4015, "fields": { - "spell": "rotting-corpse", + "parent": "rotting-corpse", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -19299,7 +19299,7 @@ "model": "api_v2.spellcastingoption", "pk": 4016, "fields": { - "spell": "rotting-corpse", + "parent": "rotting-corpse", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -19311,7 +19311,7 @@ "model": "api_v2.spellcastingoption", "pk": 4017, "fields": { - "spell": "rotting-corpse", + "parent": "rotting-corpse", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -19323,7 +19323,7 @@ "model": "api_v2.spellcastingoption", "pk": 4018, "fields": { - "spell": "rotting-corpse", + "parent": "rotting-corpse", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -19335,7 +19335,7 @@ "model": "api_v2.spellcastingoption", "pk": 4019, "fields": { - "spell": "rune-of-imprisonment", + "parent": "rune-of-imprisonment", "type": "default", "damage_roll": null, "target_count": null, @@ -19347,7 +19347,7 @@ "model": "api_v2.spellcastingoption", "pk": 4020, "fields": { - "spell": "salt-lash", + "parent": "salt-lash", "type": "default", "damage_roll": null, "target_count": null, @@ -19359,7 +19359,7 @@ "model": "api_v2.spellcastingoption", "pk": 4021, "fields": { - "spell": "sand-ship", + "parent": "sand-ship", "type": "default", "damage_roll": null, "target_count": null, @@ -19371,7 +19371,7 @@ "model": "api_v2.spellcastingoption", "pk": 4022, "fields": { - "spell": "sand-ship", + "parent": "sand-ship", "type": "ritual", "damage_roll": null, "target_count": null, @@ -19383,7 +19383,7 @@ "model": "api_v2.spellcastingoption", "pk": 4023, "fields": { - "spell": "sanguine-horror", + "parent": "sanguine-horror", "type": "default", "damage_roll": null, "target_count": null, @@ -19395,7 +19395,7 @@ "model": "api_v2.spellcastingoption", "pk": 4024, "fields": { - "spell": "scale-rot", + "parent": "scale-rot", "type": "default", "damage_roll": null, "target_count": null, @@ -19407,7 +19407,7 @@ "model": "api_v2.spellcastingoption", "pk": 4026, "fields": { - "spell": "scale-rot", + "parent": "scale-rot", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -19419,7 +19419,7 @@ "model": "api_v2.spellcastingoption", "pk": 4027, "fields": { - "spell": "scale-rot", + "parent": "scale-rot", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -19431,7 +19431,7 @@ "model": "api_v2.spellcastingoption", "pk": 4028, "fields": { - "spell": "scale-rot", + "parent": "scale-rot", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19443,7 +19443,7 @@ "model": "api_v2.spellcastingoption", "pk": 4029, "fields": { - "spell": "scale-rot", + "parent": "scale-rot", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19455,7 +19455,7 @@ "model": "api_v2.spellcastingoption", "pk": 4030, "fields": { - "spell": "scale-rot", + "parent": "scale-rot", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19467,7 +19467,7 @@ "model": "api_v2.spellcastingoption", "pk": 4031, "fields": { - "spell": "scentless", + "parent": "scentless", "type": "default", "damage_roll": null, "target_count": null, @@ -19479,7 +19479,7 @@ "model": "api_v2.spellcastingoption", "pk": 4032, "fields": { - "spell": "screaming-ray", + "parent": "screaming-ray", "type": "default", "damage_roll": null, "target_count": null, @@ -19491,7 +19491,7 @@ "model": "api_v2.spellcastingoption", "pk": 4034, "fields": { - "spell": "screaming-ray", + "parent": "screaming-ray", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -19503,7 +19503,7 @@ "model": "api_v2.spellcastingoption", "pk": 4035, "fields": { - "spell": "screaming-ray", + "parent": "screaming-ray", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -19515,7 +19515,7 @@ "model": "api_v2.spellcastingoption", "pk": 4036, "fields": { - "spell": "screaming-ray", + "parent": "screaming-ray", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -19527,7 +19527,7 @@ "model": "api_v2.spellcastingoption", "pk": 4037, "fields": { - "spell": "screaming-ray", + "parent": "screaming-ray", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -19539,7 +19539,7 @@ "model": "api_v2.spellcastingoption", "pk": 4038, "fields": { - "spell": "screaming-ray", + "parent": "screaming-ray", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -19551,7 +19551,7 @@ "model": "api_v2.spellcastingoption", "pk": 4039, "fields": { - "spell": "screaming-ray", + "parent": "screaming-ray", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -19563,7 +19563,7 @@ "model": "api_v2.spellcastingoption", "pk": 4040, "fields": { - "spell": "screaming-ray", + "parent": "screaming-ray", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -19575,7 +19575,7 @@ "model": "api_v2.spellcastingoption", "pk": 4041, "fields": { - "spell": "screaming-ray", + "parent": "screaming-ray", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -19587,7 +19587,7 @@ "model": "api_v2.spellcastingoption", "pk": 4042, "fields": { - "spell": "scribe", + "parent": "scribe", "type": "default", "damage_roll": null, "target_count": null, @@ -19599,7 +19599,7 @@ "model": "api_v2.spellcastingoption", "pk": 4043, "fields": { - "spell": "scry-ambush", + "parent": "scry-ambush", "type": "default", "damage_roll": null, "target_count": null, @@ -19611,7 +19611,7 @@ "model": "api_v2.spellcastingoption", "pk": 4044, "fields": { - "spell": "sculpt-snow", + "parent": "sculpt-snow", "type": "default", "damage_roll": null, "target_count": null, @@ -19623,7 +19623,7 @@ "model": "api_v2.spellcastingoption", "pk": 4046, "fields": { - "spell": "sculpt-snow", + "parent": "sculpt-snow", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -19635,7 +19635,7 @@ "model": "api_v2.spellcastingoption", "pk": 4047, "fields": { - "spell": "sculpt-snow", + "parent": "sculpt-snow", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -19647,7 +19647,7 @@ "model": "api_v2.spellcastingoption", "pk": 4048, "fields": { - "spell": "sculpt-snow", + "parent": "sculpt-snow", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -19659,7 +19659,7 @@ "model": "api_v2.spellcastingoption", "pk": 4049, "fields": { - "spell": "sculpt-snow", + "parent": "sculpt-snow", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -19671,7 +19671,7 @@ "model": "api_v2.spellcastingoption", "pk": 4050, "fields": { - "spell": "sculpt-snow", + "parent": "sculpt-snow", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19683,7 +19683,7 @@ "model": "api_v2.spellcastingoption", "pk": 4051, "fields": { - "spell": "sculpt-snow", + "parent": "sculpt-snow", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19695,7 +19695,7 @@ "model": "api_v2.spellcastingoption", "pk": 4052, "fields": { - "spell": "sculpt-snow", + "parent": "sculpt-snow", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19707,7 +19707,7 @@ "model": "api_v2.spellcastingoption", "pk": 4053, "fields": { - "spell": "seal-of-sanctuary", + "parent": "seal-of-sanctuary", "type": "default", "damage_roll": null, "target_count": null, @@ -19719,7 +19719,7 @@ "model": "api_v2.spellcastingoption", "pk": 4054, "fields": { - "spell": "seal-of-sanctuary", + "parent": "seal-of-sanctuary", "type": "ritual", "damage_roll": null, "target_count": null, @@ -19731,7 +19731,7 @@ "model": "api_v2.spellcastingoption", "pk": 4055, "fields": { - "spell": "searing-sun", + "parent": "searing-sun", "type": "default", "damage_roll": null, "target_count": null, @@ -19743,7 +19743,7 @@ "model": "api_v2.spellcastingoption", "pk": 4056, "fields": { - "spell": "see-beyond", + "parent": "see-beyond", "type": "default", "damage_roll": null, "target_count": null, @@ -19755,7 +19755,7 @@ "model": "api_v2.spellcastingoption", "pk": 4057, "fields": { - "spell": "seed-of-destruction", + "parent": "seed-of-destruction", "type": "default", "damage_roll": null, "target_count": null, @@ -19767,7 +19767,7 @@ "model": "api_v2.spellcastingoption", "pk": 4058, "fields": { - "spell": "seed-of-destruction", + "parent": "seed-of-destruction", "type": "ritual", "damage_roll": null, "target_count": null, @@ -19779,7 +19779,7 @@ "model": "api_v2.spellcastingoption", "pk": 4059, "fields": { - "spell": "seeping-death", + "parent": "seeping-death", "type": "default", "damage_roll": null, "target_count": null, @@ -19791,7 +19791,7 @@ "model": "api_v2.spellcastingoption", "pk": 4060, "fields": { - "spell": "seers-reaction", + "parent": "seers-reaction", "type": "default", "damage_roll": null, "target_count": null, @@ -19803,7 +19803,7 @@ "model": "api_v2.spellcastingoption", "pk": 4061, "fields": { - "spell": "semblance-of-dread", + "parent": "semblance-of-dread", "type": "default", "damage_roll": null, "target_count": null, @@ -19815,7 +19815,7 @@ "model": "api_v2.spellcastingoption", "pk": 4062, "fields": { - "spell": "shade", + "parent": "shade", "type": "default", "damage_roll": null, "target_count": null, @@ -19827,7 +19827,7 @@ "model": "api_v2.spellcastingoption", "pk": 4064, "fields": { - "spell": "shade", + "parent": "shade", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -19839,7 +19839,7 @@ "model": "api_v2.spellcastingoption", "pk": 4065, "fields": { - "spell": "shade", + "parent": "shade", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -19851,7 +19851,7 @@ "model": "api_v2.spellcastingoption", "pk": 4066, "fields": { - "spell": "shade", + "parent": "shade", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -19863,7 +19863,7 @@ "model": "api_v2.spellcastingoption", "pk": 4067, "fields": { - "spell": "shade", + "parent": "shade", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -19875,7 +19875,7 @@ "model": "api_v2.spellcastingoption", "pk": 4068, "fields": { - "spell": "shade", + "parent": "shade", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -19887,7 +19887,7 @@ "model": "api_v2.spellcastingoption", "pk": 4069, "fields": { - "spell": "shade", + "parent": "shade", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -19899,7 +19899,7 @@ "model": "api_v2.spellcastingoption", "pk": 4070, "fields": { - "spell": "shade", + "parent": "shade", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -19911,7 +19911,7 @@ "model": "api_v2.spellcastingoption", "pk": 4071, "fields": { - "spell": "shadow-armor", + "parent": "shadow-armor", "type": "default", "damage_roll": null, "target_count": null, @@ -19923,7 +19923,7 @@ "model": "api_v2.spellcastingoption", "pk": 4072, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "default", "damage_roll": null, "target_count": null, @@ -19935,7 +19935,7 @@ "model": "api_v2.spellcastingoption", "pk": 4073, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -19947,7 +19947,7 @@ "model": "api_v2.spellcastingoption", "pk": 4074, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -19959,7 +19959,7 @@ "model": "api_v2.spellcastingoption", "pk": 4075, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -19971,7 +19971,7 @@ "model": "api_v2.spellcastingoption", "pk": 4076, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -19983,7 +19983,7 @@ "model": "api_v2.spellcastingoption", "pk": 4077, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_5", "damage_roll": null, "target_count": null, @@ -19995,7 +19995,7 @@ "model": "api_v2.spellcastingoption", "pk": 4078, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_6", "damage_roll": null, "target_count": null, @@ -20007,7 +20007,7 @@ "model": "api_v2.spellcastingoption", "pk": 4079, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_7", "damage_roll": null, "target_count": null, @@ -20019,7 +20019,7 @@ "model": "api_v2.spellcastingoption", "pk": 4080, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_8", "damage_roll": null, "target_count": null, @@ -20031,7 +20031,7 @@ "model": "api_v2.spellcastingoption", "pk": 4081, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_9", "damage_roll": null, "target_count": null, @@ -20043,7 +20043,7 @@ "model": "api_v2.spellcastingoption", "pk": 4082, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_10", "damage_roll": null, "target_count": null, @@ -20055,7 +20055,7 @@ "model": "api_v2.spellcastingoption", "pk": 4083, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_11", "damage_roll": null, "target_count": null, @@ -20067,7 +20067,7 @@ "model": "api_v2.spellcastingoption", "pk": 4084, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_12", "damage_roll": null, "target_count": null, @@ -20079,7 +20079,7 @@ "model": "api_v2.spellcastingoption", "pk": 4085, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_13", "damage_roll": null, "target_count": null, @@ -20091,7 +20091,7 @@ "model": "api_v2.spellcastingoption", "pk": 4086, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_14", "damage_roll": null, "target_count": null, @@ -20103,7 +20103,7 @@ "model": "api_v2.spellcastingoption", "pk": 4087, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_15", "damage_roll": null, "target_count": null, @@ -20115,7 +20115,7 @@ "model": "api_v2.spellcastingoption", "pk": 4088, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_16", "damage_roll": null, "target_count": null, @@ -20127,7 +20127,7 @@ "model": "api_v2.spellcastingoption", "pk": 4089, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_17", "damage_roll": null, "target_count": null, @@ -20139,7 +20139,7 @@ "model": "api_v2.spellcastingoption", "pk": 4090, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_18", "damage_roll": null, "target_count": null, @@ -20151,7 +20151,7 @@ "model": "api_v2.spellcastingoption", "pk": 4091, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_19", "damage_roll": null, "target_count": null, @@ -20163,7 +20163,7 @@ "model": "api_v2.spellcastingoption", "pk": 4092, "fields": { - "spell": "shadow-bite", + "parent": "shadow-bite", "type": "player_level_20", "damage_roll": null, "target_count": null, @@ -20175,7 +20175,7 @@ "model": "api_v2.spellcastingoption", "pk": 4093, "fields": { - "spell": "shadow-blindness", + "parent": "shadow-blindness", "type": "default", "damage_roll": null, "target_count": null, @@ -20187,7 +20187,7 @@ "model": "api_v2.spellcastingoption", "pk": 4094, "fields": { - "spell": "shadow-hands", + "parent": "shadow-hands", "type": "default", "damage_roll": null, "target_count": null, @@ -20199,7 +20199,7 @@ "model": "api_v2.spellcastingoption", "pk": 4096, "fields": { - "spell": "shadow-hands", + "parent": "shadow-hands", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -20211,7 +20211,7 @@ "model": "api_v2.spellcastingoption", "pk": 4097, "fields": { - "spell": "shadow-hands", + "parent": "shadow-hands", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -20223,7 +20223,7 @@ "model": "api_v2.spellcastingoption", "pk": 4098, "fields": { - "spell": "shadow-hands", + "parent": "shadow-hands", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -20235,7 +20235,7 @@ "model": "api_v2.spellcastingoption", "pk": 4099, "fields": { - "spell": "shadow-hands", + "parent": "shadow-hands", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -20247,7 +20247,7 @@ "model": "api_v2.spellcastingoption", "pk": 4100, "fields": { - "spell": "shadow-hands", + "parent": "shadow-hands", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -20259,7 +20259,7 @@ "model": "api_v2.spellcastingoption", "pk": 4101, "fields": { - "spell": "shadow-hands", + "parent": "shadow-hands", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -20271,7 +20271,7 @@ "model": "api_v2.spellcastingoption", "pk": 4102, "fields": { - "spell": "shadow-hands", + "parent": "shadow-hands", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -20283,7 +20283,7 @@ "model": "api_v2.spellcastingoption", "pk": 4103, "fields": { - "spell": "shadow-hands", + "parent": "shadow-hands", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -20295,7 +20295,7 @@ "model": "api_v2.spellcastingoption", "pk": 4104, "fields": { - "spell": "shadow-monsters", + "parent": "shadow-monsters", "type": "default", "damage_roll": null, "target_count": null, @@ -20307,7 +20307,7 @@ "model": "api_v2.spellcastingoption", "pk": 4106, "fields": { - "spell": "shadow-monsters", + "parent": "shadow-monsters", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -20319,7 +20319,7 @@ "model": "api_v2.spellcastingoption", "pk": 4107, "fields": { - "spell": "shadow-monsters", + "parent": "shadow-monsters", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -20331,7 +20331,7 @@ "model": "api_v2.spellcastingoption", "pk": 4108, "fields": { - "spell": "shadow-monsters", + "parent": "shadow-monsters", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -20343,7 +20343,7 @@ "model": "api_v2.spellcastingoption", "pk": 4109, "fields": { - "spell": "shadow-monsters", + "parent": "shadow-monsters", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -20355,7 +20355,7 @@ "model": "api_v2.spellcastingoption", "pk": 4110, "fields": { - "spell": "shadow-monsters", + "parent": "shadow-monsters", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -20367,7 +20367,7 @@ "model": "api_v2.spellcastingoption", "pk": 4111, "fields": { - "spell": "shadow-puppets", + "parent": "shadow-puppets", "type": "default", "damage_roll": null, "target_count": null, @@ -20379,7 +20379,7 @@ "model": "api_v2.spellcastingoption", "pk": 4113, "fields": { - "spell": "shadow-puppets", + "parent": "shadow-puppets", "type": "slot_level_3", "damage_roll": "3d8", "target_count": null, @@ -20391,7 +20391,7 @@ "model": "api_v2.spellcastingoption", "pk": 4114, "fields": { - "spell": "shadow-puppets", + "parent": "shadow-puppets", "type": "slot_level_4", "damage_roll": "4d8", "target_count": null, @@ -20403,7 +20403,7 @@ "model": "api_v2.spellcastingoption", "pk": 4115, "fields": { - "spell": "shadow-puppets", + "parent": "shadow-puppets", "type": "slot_level_5", "damage_roll": "5d8", "target_count": null, @@ -20415,7 +20415,7 @@ "model": "api_v2.spellcastingoption", "pk": 4116, "fields": { - "spell": "shadow-puppets", + "parent": "shadow-puppets", "type": "slot_level_6", "damage_roll": "6d8", "target_count": null, @@ -20427,7 +20427,7 @@ "model": "api_v2.spellcastingoption", "pk": 4117, "fields": { - "spell": "shadow-puppets", + "parent": "shadow-puppets", "type": "slot_level_7", "damage_roll": "7d8", "target_count": null, @@ -20439,7 +20439,7 @@ "model": "api_v2.spellcastingoption", "pk": 4118, "fields": { - "spell": "shadow-puppets", + "parent": "shadow-puppets", "type": "slot_level_8", "damage_roll": "8d8", "target_count": null, @@ -20451,7 +20451,7 @@ "model": "api_v2.spellcastingoption", "pk": 4119, "fields": { - "spell": "shadow-puppets", + "parent": "shadow-puppets", "type": "slot_level_9", "damage_roll": "9d8", "target_count": null, @@ -20463,7 +20463,7 @@ "model": "api_v2.spellcastingoption", "pk": 4120, "fields": { - "spell": "shadow-trove", + "parent": "shadow-trove", "type": "default", "damage_roll": null, "target_count": null, @@ -20475,7 +20475,7 @@ "model": "api_v2.spellcastingoption", "pk": 4121, "fields": { - "spell": "shadow-trove", + "parent": "shadow-trove", "type": "ritual", "damage_roll": null, "target_count": null, @@ -20487,7 +20487,7 @@ "model": "api_v2.spellcastingoption", "pk": 4123, "fields": { - "spell": "shadow-trove", + "parent": "shadow-trove", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -20499,7 +20499,7 @@ "model": "api_v2.spellcastingoption", "pk": 4124, "fields": { - "spell": "shadow-trove", + "parent": "shadow-trove", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -20511,7 +20511,7 @@ "model": "api_v2.spellcastingoption", "pk": 4125, "fields": { - "spell": "shadow-trove", + "parent": "shadow-trove", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -20523,7 +20523,7 @@ "model": "api_v2.spellcastingoption", "pk": 4126, "fields": { - "spell": "shadow-trove", + "parent": "shadow-trove", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -20535,7 +20535,7 @@ "model": "api_v2.spellcastingoption", "pk": 4127, "fields": { - "spell": "shadow-trove", + "parent": "shadow-trove", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -20547,7 +20547,7 @@ "model": "api_v2.spellcastingoption", "pk": 4128, "fields": { - "spell": "shadow-trove", + "parent": "shadow-trove", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -20559,7 +20559,7 @@ "model": "api_v2.spellcastingoption", "pk": 4129, "fields": { - "spell": "shadows-brought-to-light", + "parent": "shadows-brought-to-light", "type": "default", "damage_roll": null, "target_count": null, @@ -20571,7 +20571,7 @@ "model": "api_v2.spellcastingoption", "pk": 4130, "fields": { - "spell": "shadows-brought-to-light", + "parent": "shadows-brought-to-light", "type": "ritual", "damage_roll": null, "target_count": null, @@ -20583,7 +20583,7 @@ "model": "api_v2.spellcastingoption", "pk": 4131, "fields": { - "spell": "shadowy-retribution", + "parent": "shadowy-retribution", "type": "default", "damage_roll": null, "target_count": null, @@ -20595,7 +20595,7 @@ "model": "api_v2.spellcastingoption", "pk": 4132, "fields": { - "spell": "shadowy-retribution", + "parent": "shadowy-retribution", "type": "ritual", "damage_roll": null, "target_count": null, @@ -20607,7 +20607,7 @@ "model": "api_v2.spellcastingoption", "pk": 4134, "fields": { - "spell": "shadowy-retribution", + "parent": "shadowy-retribution", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -20619,7 +20619,7 @@ "model": "api_v2.spellcastingoption", "pk": 4135, "fields": { - "spell": "shadowy-retribution", + "parent": "shadowy-retribution", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -20631,7 +20631,7 @@ "model": "api_v2.spellcastingoption", "pk": 4136, "fields": { - "spell": "shadowy-retribution", + "parent": "shadowy-retribution", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -20643,7 +20643,7 @@ "model": "api_v2.spellcastingoption", "pk": 4137, "fields": { - "spell": "shadowy-retribution", + "parent": "shadowy-retribution", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -20655,7 +20655,7 @@ "model": "api_v2.spellcastingoption", "pk": 4138, "fields": { - "spell": "shadowy-retribution", + "parent": "shadowy-retribution", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -20667,7 +20667,7 @@ "model": "api_v2.spellcastingoption", "pk": 4139, "fields": { - "spell": "shared-sacrifice", + "parent": "shared-sacrifice", "type": "default", "damage_roll": null, "target_count": null, @@ -20679,7 +20679,7 @@ "model": "api_v2.spellcastingoption", "pk": 4140, "fields": { - "spell": "sheen-of-ice", + "parent": "sheen-of-ice", "type": "default", "damage_roll": null, "target_count": null, @@ -20691,7 +20691,7 @@ "model": "api_v2.spellcastingoption", "pk": 4141, "fields": { - "spell": "shifting-the-odds", + "parent": "shifting-the-odds", "type": "default", "damage_roll": null, "target_count": null, @@ -20703,7 +20703,7 @@ "model": "api_v2.spellcastingoption", "pk": 4142, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "default", "damage_roll": null, "target_count": null, @@ -20715,7 +20715,7 @@ "model": "api_v2.spellcastingoption", "pk": 4143, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -20727,7 +20727,7 @@ "model": "api_v2.spellcastingoption", "pk": 4144, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -20739,7 +20739,7 @@ "model": "api_v2.spellcastingoption", "pk": 4145, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -20751,7 +20751,7 @@ "model": "api_v2.spellcastingoption", "pk": 4146, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -20763,7 +20763,7 @@ "model": "api_v2.spellcastingoption", "pk": 4147, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_5", "damage_roll": null, "target_count": null, @@ -20775,7 +20775,7 @@ "model": "api_v2.spellcastingoption", "pk": 4148, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_6", "damage_roll": null, "target_count": null, @@ -20787,7 +20787,7 @@ "model": "api_v2.spellcastingoption", "pk": 4149, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_7", "damage_roll": null, "target_count": null, @@ -20799,7 +20799,7 @@ "model": "api_v2.spellcastingoption", "pk": 4150, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_8", "damage_roll": null, "target_count": null, @@ -20811,7 +20811,7 @@ "model": "api_v2.spellcastingoption", "pk": 4151, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_9", "damage_roll": null, "target_count": null, @@ -20823,7 +20823,7 @@ "model": "api_v2.spellcastingoption", "pk": 4152, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_10", "damage_roll": null, "target_count": null, @@ -20835,7 +20835,7 @@ "model": "api_v2.spellcastingoption", "pk": 4153, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_11", "damage_roll": null, "target_count": null, @@ -20847,7 +20847,7 @@ "model": "api_v2.spellcastingoption", "pk": 4154, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_12", "damage_roll": null, "target_count": null, @@ -20859,7 +20859,7 @@ "model": "api_v2.spellcastingoption", "pk": 4155, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_13", "damage_roll": null, "target_count": null, @@ -20871,7 +20871,7 @@ "model": "api_v2.spellcastingoption", "pk": 4156, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_14", "damage_roll": null, "target_count": null, @@ -20883,7 +20883,7 @@ "model": "api_v2.spellcastingoption", "pk": 4157, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_15", "damage_roll": null, "target_count": null, @@ -20895,7 +20895,7 @@ "model": "api_v2.spellcastingoption", "pk": 4158, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_16", "damage_roll": null, "target_count": null, @@ -20907,7 +20907,7 @@ "model": "api_v2.spellcastingoption", "pk": 4159, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_17", "damage_roll": null, "target_count": null, @@ -20919,7 +20919,7 @@ "model": "api_v2.spellcastingoption", "pk": 4160, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_18", "damage_roll": null, "target_count": null, @@ -20931,7 +20931,7 @@ "model": "api_v2.spellcastingoption", "pk": 4161, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_19", "damage_roll": null, "target_count": null, @@ -20943,7 +20943,7 @@ "model": "api_v2.spellcastingoption", "pk": 4162, "fields": { - "spell": "shiver", + "parent": "shiver", "type": "player_level_20", "damage_roll": null, "target_count": null, @@ -20955,7 +20955,7 @@ "model": "api_v2.spellcastingoption", "pk": 4163, "fields": { - "spell": "shroud-of-death", + "parent": "shroud-of-death", "type": "default", "damage_roll": null, "target_count": null, @@ -20967,7 +20967,7 @@ "model": "api_v2.spellcastingoption", "pk": 4164, "fields": { - "spell": "sidestep-arrow", + "parent": "sidestep-arrow", "type": "default", "damage_roll": null, "target_count": null, @@ -20979,7 +20979,7 @@ "model": "api_v2.spellcastingoption", "pk": 4165, "fields": { - "spell": "sign-of-koth", + "parent": "sign-of-koth", "type": "default", "damage_roll": null, "target_count": null, @@ -20991,7 +20991,7 @@ "model": "api_v2.spellcastingoption", "pk": 4167, "fields": { - "spell": "sign-of-koth", + "parent": "sign-of-koth", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -21003,7 +21003,7 @@ "model": "api_v2.spellcastingoption", "pk": 4168, "fields": { - "spell": "sign-of-koth", + "parent": "sign-of-koth", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -21015,7 +21015,7 @@ "model": "api_v2.spellcastingoption", "pk": 4169, "fields": { - "spell": "silhouette", + "parent": "silhouette", "type": "default", "damage_roll": null, "target_count": null, @@ -21027,7 +21027,7 @@ "model": "api_v2.spellcastingoption", "pk": 4170, "fields": { - "spell": "sir-mittinzs-move-curse", + "parent": "sir-mittinzs-move-curse", "type": "default", "damage_roll": null, "target_count": null, @@ -21039,7 +21039,7 @@ "model": "api_v2.spellcastingoption", "pk": 4171, "fields": { - "spell": "sir-mittinzs-move-curse", + "parent": "sir-mittinzs-move-curse", "type": "ritual", "damage_roll": null, "target_count": null, @@ -21051,7 +21051,7 @@ "model": "api_v2.spellcastingoption", "pk": 4172, "fields": { - "spell": "sleep-of-the-deep", + "parent": "sleep-of-the-deep", "type": "default", "damage_roll": null, "target_count": null, @@ -21063,7 +21063,7 @@ "model": "api_v2.spellcastingoption", "pk": 4173, "fields": { - "spell": "sleep-of-the-deep", + "parent": "sleep-of-the-deep", "type": "ritual", "damage_roll": null, "target_count": null, @@ -21075,7 +21075,7 @@ "model": "api_v2.spellcastingoption", "pk": 4175, "fields": { - "spell": "sleep-of-the-deep", + "parent": "sleep-of-the-deep", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -21087,7 +21087,7 @@ "model": "api_v2.spellcastingoption", "pk": 4176, "fields": { - "spell": "sleep-of-the-deep", + "parent": "sleep-of-the-deep", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -21099,7 +21099,7 @@ "model": "api_v2.spellcastingoption", "pk": 4177, "fields": { - "spell": "sleep-of-the-deep", + "parent": "sleep-of-the-deep", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -21111,7 +21111,7 @@ "model": "api_v2.spellcastingoption", "pk": 4178, "fields": { - "spell": "sleep-of-the-deep", + "parent": "sleep-of-the-deep", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -21123,7 +21123,7 @@ "model": "api_v2.spellcastingoption", "pk": 4179, "fields": { - "spell": "sleep-of-the-deep", + "parent": "sleep-of-the-deep", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -21135,7 +21135,7 @@ "model": "api_v2.spellcastingoption", "pk": 4180, "fields": { - "spell": "sleep-of-the-deep", + "parent": "sleep-of-the-deep", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -21147,7 +21147,7 @@ "model": "api_v2.spellcastingoption", "pk": 4181, "fields": { - "spell": "slippery-fingers", + "parent": "slippery-fingers", "type": "default", "damage_roll": null, "target_count": null, @@ -21159,7 +21159,7 @@ "model": "api_v2.spellcastingoption", "pk": 4182, "fields": { - "spell": "slither", + "parent": "slither", "type": "default", "damage_roll": null, "target_count": null, @@ -21171,7 +21171,7 @@ "model": "api_v2.spellcastingoption", "pk": 4184, "fields": { - "spell": "slither", + "parent": "slither", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -21183,7 +21183,7 @@ "model": "api_v2.spellcastingoption", "pk": 4185, "fields": { - "spell": "slither", + "parent": "slither", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -21195,7 +21195,7 @@ "model": "api_v2.spellcastingoption", "pk": 4186, "fields": { - "spell": "slither", + "parent": "slither", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -21207,7 +21207,7 @@ "model": "api_v2.spellcastingoption", "pk": 4187, "fields": { - "spell": "slither", + "parent": "slither", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -21219,7 +21219,7 @@ "model": "api_v2.spellcastingoption", "pk": 4188, "fields": { - "spell": "slither", + "parent": "slither", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -21231,7 +21231,7 @@ "model": "api_v2.spellcastingoption", "pk": 4189, "fields": { - "spell": "slither", + "parent": "slither", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -21243,7 +21243,7 @@ "model": "api_v2.spellcastingoption", "pk": 4190, "fields": { - "spell": "slither", + "parent": "slither", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -21255,7 +21255,7 @@ "model": "api_v2.spellcastingoption", "pk": 4191, "fields": { - "spell": "snow-boulder", + "parent": "snow-boulder", "type": "default", "damage_roll": null, "target_count": null, @@ -21267,7 +21267,7 @@ "model": "api_v2.spellcastingoption", "pk": 4192, "fields": { - "spell": "snow-fort", + "parent": "snow-fort", "type": "default", "damage_roll": null, "target_count": null, @@ -21279,7 +21279,7 @@ "model": "api_v2.spellcastingoption", "pk": 4193, "fields": { - "spell": "snowy-coat", + "parent": "snowy-coat", "type": "default", "damage_roll": null, "target_count": null, @@ -21291,7 +21291,7 @@ "model": "api_v2.spellcastingoption", "pk": 4195, "fields": { - "spell": "snowy-coat", + "parent": "snowy-coat", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -21303,7 +21303,7 @@ "model": "api_v2.spellcastingoption", "pk": 4196, "fields": { - "spell": "snowy-coat", + "parent": "snowy-coat", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -21315,7 +21315,7 @@ "model": "api_v2.spellcastingoption", "pk": 4197, "fields": { - "spell": "snowy-coat", + "parent": "snowy-coat", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -21327,7 +21327,7 @@ "model": "api_v2.spellcastingoption", "pk": 4198, "fields": { - "spell": "snowy-coat", + "parent": "snowy-coat", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -21339,7 +21339,7 @@ "model": "api_v2.spellcastingoption", "pk": 4199, "fields": { - "spell": "snowy-coat", + "parent": "snowy-coat", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -21351,7 +21351,7 @@ "model": "api_v2.spellcastingoption", "pk": 4200, "fields": { - "spell": "snowy-coat", + "parent": "snowy-coat", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -21363,7 +21363,7 @@ "model": "api_v2.spellcastingoption", "pk": 4201, "fields": { - "spell": "snowy-coat", + "parent": "snowy-coat", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -21375,7 +21375,7 @@ "model": "api_v2.spellcastingoption", "pk": 4202, "fields": { - "spell": "snowy-coat", + "parent": "snowy-coat", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -21387,7 +21387,7 @@ "model": "api_v2.spellcastingoption", "pk": 4203, "fields": { - "spell": "song-of-the-forest", + "parent": "song-of-the-forest", "type": "default", "damage_roll": null, "target_count": null, @@ -21399,7 +21399,7 @@ "model": "api_v2.spellcastingoption", "pk": 4204, "fields": { - "spell": "song-of-the-forest", + "parent": "song-of-the-forest", "type": "ritual", "damage_roll": null, "target_count": null, @@ -21411,7 +21411,7 @@ "model": "api_v2.spellcastingoption", "pk": 4205, "fields": { - "spell": "speak-with-inanimate-object", + "parent": "speak-with-inanimate-object", "type": "default", "damage_roll": null, "target_count": null, @@ -21423,7 +21423,7 @@ "model": "api_v2.spellcastingoption", "pk": 4206, "fields": { - "spell": "speak-with-inanimate-object", + "parent": "speak-with-inanimate-object", "type": "ritual", "damage_roll": null, "target_count": null, @@ -21435,7 +21435,7 @@ "model": "api_v2.spellcastingoption", "pk": 4207, "fields": { - "spell": "spin", + "parent": "spin", "type": "default", "damage_roll": null, "target_count": null, @@ -21447,7 +21447,7 @@ "model": "api_v2.spellcastingoption", "pk": 4208, "fields": { - "spell": "spinning-axes", + "parent": "spinning-axes", "type": "default", "damage_roll": null, "target_count": null, @@ -21459,7 +21459,7 @@ "model": "api_v2.spellcastingoption", "pk": 4210, "fields": { - "spell": "spinning-axes", + "parent": "spinning-axes", "type": "slot_level_5", "damage_roll": "6d8", "target_count": null, @@ -21471,7 +21471,7 @@ "model": "api_v2.spellcastingoption", "pk": 4211, "fields": { - "spell": "spinning-axes", + "parent": "spinning-axes", "type": "slot_level_6", "damage_roll": "7d8", "target_count": null, @@ -21483,7 +21483,7 @@ "model": "api_v2.spellcastingoption", "pk": 4212, "fields": { - "spell": "spinning-axes", + "parent": "spinning-axes", "type": "slot_level_7", "damage_roll": "8d8", "target_count": null, @@ -21495,7 +21495,7 @@ "model": "api_v2.spellcastingoption", "pk": 4213, "fields": { - "spell": "spinning-axes", + "parent": "spinning-axes", "type": "slot_level_8", "damage_roll": "9d8", "target_count": null, @@ -21507,7 +21507,7 @@ "model": "api_v2.spellcastingoption", "pk": 4214, "fields": { - "spell": "spinning-axes", + "parent": "spinning-axes", "type": "slot_level_9", "damage_roll": "10d8", "target_count": null, @@ -21519,7 +21519,7 @@ "model": "api_v2.spellcastingoption", "pk": 4215, "fields": { - "spell": "spiteful-weapon", + "parent": "spiteful-weapon", "type": "default", "damage_roll": null, "target_count": null, @@ -21531,7 +21531,7 @@ "model": "api_v2.spellcastingoption", "pk": 4217, "fields": { - "spell": "spiteful-weapon", + "parent": "spiteful-weapon", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -21543,7 +21543,7 @@ "model": "api_v2.spellcastingoption", "pk": 4218, "fields": { - "spell": "spiteful-weapon", + "parent": "spiteful-weapon", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -21555,7 +21555,7 @@ "model": "api_v2.spellcastingoption", "pk": 4219, "fields": { - "spell": "spiteful-weapon", + "parent": "spiteful-weapon", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -21567,7 +21567,7 @@ "model": "api_v2.spellcastingoption", "pk": 4220, "fields": { - "spell": "spiteful-weapon", + "parent": "spiteful-weapon", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -21579,7 +21579,7 @@ "model": "api_v2.spellcastingoption", "pk": 4221, "fields": { - "spell": "spiteful-weapon", + "parent": "spiteful-weapon", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -21591,7 +21591,7 @@ "model": "api_v2.spellcastingoption", "pk": 4222, "fields": { - "spell": "spiteful-weapon", + "parent": "spiteful-weapon", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -21603,7 +21603,7 @@ "model": "api_v2.spellcastingoption", "pk": 4223, "fields": { - "spell": "spur-mount", + "parent": "spur-mount", "type": "default", "damage_roll": null, "target_count": null, @@ -21615,7 +21615,7 @@ "model": "api_v2.spellcastingoption", "pk": 4224, "fields": { - "spell": "staff-of-violet-fire", + "parent": "staff-of-violet-fire", "type": "default", "damage_roll": null, "target_count": null, @@ -21627,7 +21627,7 @@ "model": "api_v2.spellcastingoption", "pk": 4226, "fields": { - "spell": "staff-of-violet-fire", + "parent": "staff-of-violet-fire", "type": "slot_level_5", "damage_roll": "5d10", "target_count": null, @@ -21639,7 +21639,7 @@ "model": "api_v2.spellcastingoption", "pk": 4227, "fields": { - "spell": "staff-of-violet-fire", + "parent": "staff-of-violet-fire", "type": "slot_level_6", "damage_roll": "6d10", "target_count": null, @@ -21651,7 +21651,7 @@ "model": "api_v2.spellcastingoption", "pk": 4228, "fields": { - "spell": "staff-of-violet-fire", + "parent": "staff-of-violet-fire", "type": "slot_level_7", "damage_roll": "6d10", "target_count": null, @@ -21663,7 +21663,7 @@ "model": "api_v2.spellcastingoption", "pk": 4229, "fields": { - "spell": "staff-of-violet-fire", + "parent": "staff-of-violet-fire", "type": "slot_level_8", "damage_roll": "7d10", "target_count": null, @@ -21675,7 +21675,7 @@ "model": "api_v2.spellcastingoption", "pk": 4230, "fields": { - "spell": "staff-of-violet-fire", + "parent": "staff-of-violet-fire", "type": "slot_level_9", "damage_roll": "7d10", "target_count": null, @@ -21687,7 +21687,7 @@ "model": "api_v2.spellcastingoption", "pk": 4231, "fields": { - "spell": "stanch", + "parent": "stanch", "type": "default", "damage_roll": null, "target_count": null, @@ -21699,7 +21699,7 @@ "model": "api_v2.spellcastingoption", "pk": 4232, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "default", "damage_roll": null, "target_count": null, @@ -21711,7 +21711,7 @@ "model": "api_v2.spellcastingoption", "pk": 4233, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -21723,7 +21723,7 @@ "model": "api_v2.spellcastingoption", "pk": 4234, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -21735,7 +21735,7 @@ "model": "api_v2.spellcastingoption", "pk": 4235, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -21747,7 +21747,7 @@ "model": "api_v2.spellcastingoption", "pk": 4236, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -21759,7 +21759,7 @@ "model": "api_v2.spellcastingoption", "pk": 4237, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_5", "damage_roll": null, "target_count": null, @@ -21771,7 +21771,7 @@ "model": "api_v2.spellcastingoption", "pk": 4238, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_6", "damage_roll": null, "target_count": null, @@ -21783,7 +21783,7 @@ "model": "api_v2.spellcastingoption", "pk": 4239, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_7", "damage_roll": null, "target_count": null, @@ -21795,7 +21795,7 @@ "model": "api_v2.spellcastingoption", "pk": 4240, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_8", "damage_roll": null, "target_count": null, @@ -21807,7 +21807,7 @@ "model": "api_v2.spellcastingoption", "pk": 4241, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_9", "damage_roll": null, "target_count": null, @@ -21819,7 +21819,7 @@ "model": "api_v2.spellcastingoption", "pk": 4242, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_10", "damage_roll": null, "target_count": null, @@ -21831,7 +21831,7 @@ "model": "api_v2.spellcastingoption", "pk": 4243, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_11", "damage_roll": null, "target_count": null, @@ -21843,7 +21843,7 @@ "model": "api_v2.spellcastingoption", "pk": 4244, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_12", "damage_roll": null, "target_count": null, @@ -21855,7 +21855,7 @@ "model": "api_v2.spellcastingoption", "pk": 4245, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_13", "damage_roll": null, "target_count": null, @@ -21867,7 +21867,7 @@ "model": "api_v2.spellcastingoption", "pk": 4246, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_14", "damage_roll": null, "target_count": null, @@ -21879,7 +21879,7 @@ "model": "api_v2.spellcastingoption", "pk": 4247, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_15", "damage_roll": null, "target_count": null, @@ -21891,7 +21891,7 @@ "model": "api_v2.spellcastingoption", "pk": 4248, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_16", "damage_roll": null, "target_count": null, @@ -21903,7 +21903,7 @@ "model": "api_v2.spellcastingoption", "pk": 4249, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_17", "damage_roll": null, "target_count": null, @@ -21915,7 +21915,7 @@ "model": "api_v2.spellcastingoption", "pk": 4250, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_18", "damage_roll": null, "target_count": null, @@ -21927,7 +21927,7 @@ "model": "api_v2.spellcastingoption", "pk": 4251, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_19", "damage_roll": null, "target_count": null, @@ -21939,7 +21939,7 @@ "model": "api_v2.spellcastingoption", "pk": 4252, "fields": { - "spell": "starburst", + "parent": "starburst", "type": "player_level_20", "damage_roll": null, "target_count": null, @@ -21951,7 +21951,7 @@ "model": "api_v2.spellcastingoption", "pk": 4253, "fields": { - "spell": "starfall", + "parent": "starfall", "type": "default", "damage_roll": null, "target_count": null, @@ -21963,7 +21963,7 @@ "model": "api_v2.spellcastingoption", "pk": 4255, "fields": { - "spell": "starfall", + "parent": "starfall", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -21975,7 +21975,7 @@ "model": "api_v2.spellcastingoption", "pk": 4256, "fields": { - "spell": "starfall", + "parent": "starfall", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -21987,7 +21987,7 @@ "model": "api_v2.spellcastingoption", "pk": 4257, "fields": { - "spell": "starfall", + "parent": "starfall", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -21999,7 +21999,7 @@ "model": "api_v2.spellcastingoption", "pk": 4258, "fields": { - "spell": "starfall", + "parent": "starfall", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -22011,7 +22011,7 @@ "model": "api_v2.spellcastingoption", "pk": 4259, "fields": { - "spell": "starry-vision", + "parent": "starry-vision", "type": "default", "damage_roll": null, "target_count": null, @@ -22023,7 +22023,7 @@ "model": "api_v2.spellcastingoption", "pk": 4261, "fields": { - "spell": "starry-vision", + "parent": "starry-vision", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -22035,7 +22035,7 @@ "model": "api_v2.spellcastingoption", "pk": 4262, "fields": { - "spell": "starry-vision", + "parent": "starry-vision", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -22047,7 +22047,7 @@ "model": "api_v2.spellcastingoption", "pk": 4263, "fields": { - "spell": "stars-heart", + "parent": "stars-heart", "type": "default", "damage_roll": null, "target_count": null, @@ -22059,7 +22059,7 @@ "model": "api_v2.spellcastingoption", "pk": 4264, "fields": { - "spell": "steal-warmth", + "parent": "steal-warmth", "type": "default", "damage_roll": null, "target_count": null, @@ -22071,7 +22071,7 @@ "model": "api_v2.spellcastingoption", "pk": 4266, "fields": { - "spell": "steal-warmth", + "parent": "steal-warmth", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -22083,7 +22083,7 @@ "model": "api_v2.spellcastingoption", "pk": 4267, "fields": { - "spell": "steal-warmth", + "parent": "steal-warmth", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -22095,7 +22095,7 @@ "model": "api_v2.spellcastingoption", "pk": 4268, "fields": { - "spell": "steal-warmth", + "parent": "steal-warmth", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -22107,7 +22107,7 @@ "model": "api_v2.spellcastingoption", "pk": 4269, "fields": { - "spell": "steal-warmth", + "parent": "steal-warmth", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -22119,7 +22119,7 @@ "model": "api_v2.spellcastingoption", "pk": 4270, "fields": { - "spell": "steal-warmth", + "parent": "steal-warmth", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -22131,7 +22131,7 @@ "model": "api_v2.spellcastingoption", "pk": 4271, "fields": { - "spell": "steal-warmth", + "parent": "steal-warmth", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -22143,7 +22143,7 @@ "model": "api_v2.spellcastingoption", "pk": 4272, "fields": { - "spell": "steam-blast", + "parent": "steam-blast", "type": "default", "damage_roll": null, "target_count": null, @@ -22155,7 +22155,7 @@ "model": "api_v2.spellcastingoption", "pk": 4274, "fields": { - "spell": "steam-blast", + "parent": "steam-blast", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -22167,7 +22167,7 @@ "model": "api_v2.spellcastingoption", "pk": 4275, "fields": { - "spell": "steam-blast", + "parent": "steam-blast", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -22179,7 +22179,7 @@ "model": "api_v2.spellcastingoption", "pk": 4276, "fields": { - "spell": "steam-blast", + "parent": "steam-blast", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -22191,7 +22191,7 @@ "model": "api_v2.spellcastingoption", "pk": 4277, "fields": { - "spell": "steam-blast", + "parent": "steam-blast", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -22203,7 +22203,7 @@ "model": "api_v2.spellcastingoption", "pk": 4278, "fields": { - "spell": "steam-blast", + "parent": "steam-blast", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -22215,7 +22215,7 @@ "model": "api_v2.spellcastingoption", "pk": 4279, "fields": { - "spell": "steam-whistle", + "parent": "steam-whistle", "type": "default", "damage_roll": null, "target_count": null, @@ -22227,7 +22227,7 @@ "model": "api_v2.spellcastingoption", "pk": 4280, "fields": { - "spell": "stench-of-rot", + "parent": "stench-of-rot", "type": "default", "damage_roll": null, "target_count": null, @@ -22239,7 +22239,7 @@ "model": "api_v2.spellcastingoption", "pk": 4282, "fields": { - "spell": "stench-of-rot", + "parent": "stench-of-rot", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -22251,7 +22251,7 @@ "model": "api_v2.spellcastingoption", "pk": 4283, "fields": { - "spell": "stench-of-rot", + "parent": "stench-of-rot", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -22263,7 +22263,7 @@ "model": "api_v2.spellcastingoption", "pk": 4284, "fields": { - "spell": "stench-of-rot", + "parent": "stench-of-rot", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -22275,7 +22275,7 @@ "model": "api_v2.spellcastingoption", "pk": 4285, "fields": { - "spell": "stench-of-rot", + "parent": "stench-of-rot", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -22287,7 +22287,7 @@ "model": "api_v2.spellcastingoption", "pk": 4286, "fields": { - "spell": "stench-of-rot", + "parent": "stench-of-rot", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -22299,7 +22299,7 @@ "model": "api_v2.spellcastingoption", "pk": 4287, "fields": { - "spell": "stench-of-rot", + "parent": "stench-of-rot", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -22311,7 +22311,7 @@ "model": "api_v2.spellcastingoption", "pk": 4288, "fields": { - "spell": "stench-of-rot", + "parent": "stench-of-rot", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -22323,7 +22323,7 @@ "model": "api_v2.spellcastingoption", "pk": 4289, "fields": { - "spell": "storm-of-wings", + "parent": "storm-of-wings", "type": "default", "damage_roll": null, "target_count": null, @@ -22335,7 +22335,7 @@ "model": "api_v2.spellcastingoption", "pk": 4290, "fields": { - "spell": "sudden-dawn", + "parent": "sudden-dawn", "type": "default", "damage_roll": null, "target_count": null, @@ -22347,7 +22347,7 @@ "model": "api_v2.spellcastingoption", "pk": 4291, "fields": { - "spell": "sudden-dawn", + "parent": "sudden-dawn", "type": "ritual", "damage_roll": null, "target_count": null, @@ -22359,7 +22359,7 @@ "model": "api_v2.spellcastingoption", "pk": 4292, "fields": { - "spell": "summon-eldritch-servitor", + "parent": "summon-eldritch-servitor", "type": "default", "damage_roll": null, "target_count": null, @@ -22371,7 +22371,7 @@ "model": "api_v2.spellcastingoption", "pk": 4293, "fields": { - "spell": "summon-eldritch-servitor", + "parent": "summon-eldritch-servitor", "type": "ritual", "damage_roll": null, "target_count": null, @@ -22383,7 +22383,7 @@ "model": "api_v2.spellcastingoption", "pk": 4295, "fields": { - "spell": "summon-eldritch-servitor", + "parent": "summon-eldritch-servitor", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -22395,7 +22395,7 @@ "model": "api_v2.spellcastingoption", "pk": 4296, "fields": { - "spell": "summon-eldritch-servitor", + "parent": "summon-eldritch-servitor", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -22407,7 +22407,7 @@ "model": "api_v2.spellcastingoption", "pk": 4297, "fields": { - "spell": "summon-eldritch-servitor", + "parent": "summon-eldritch-servitor", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -22419,7 +22419,7 @@ "model": "api_v2.spellcastingoption", "pk": 4298, "fields": { - "spell": "summon-eldritch-servitor", + "parent": "summon-eldritch-servitor", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -22431,7 +22431,7 @@ "model": "api_v2.spellcastingoption", "pk": 4299, "fields": { - "spell": "summon-star", + "parent": "summon-star", "type": "default", "damage_roll": null, "target_count": null, @@ -22443,7 +22443,7 @@ "model": "api_v2.spellcastingoption", "pk": 4300, "fields": { - "spell": "surge-dampener", + "parent": "surge-dampener", "type": "default", "damage_roll": null, "target_count": null, @@ -22455,7 +22455,7 @@ "model": "api_v2.spellcastingoption", "pk": 4301, "fields": { - "spell": "surge-dampener", + "parent": "surge-dampener", "type": "ritual", "damage_roll": null, "target_count": null, @@ -22467,7 +22467,7 @@ "model": "api_v2.spellcastingoption", "pk": 4302, "fields": { - "spell": "surprise-blessing", + "parent": "surprise-blessing", "type": "default", "damage_roll": null, "target_count": null, @@ -22479,7 +22479,7 @@ "model": "api_v2.spellcastingoption", "pk": 4303, "fields": { - "spell": "symbol-of-sorcery", + "parent": "symbol-of-sorcery", "type": "default", "damage_roll": null, "target_count": null, @@ -22491,7 +22491,7 @@ "model": "api_v2.spellcastingoption", "pk": 4304, "fields": { - "spell": "talons-of-a-hungry-land", + "parent": "talons-of-a-hungry-land", "type": "default", "damage_roll": null, "target_count": null, @@ -22503,7 +22503,7 @@ "model": "api_v2.spellcastingoption", "pk": 4306, "fields": { - "spell": "talons-of-a-hungry-land", + "parent": "talons-of-a-hungry-land", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -22515,7 +22515,7 @@ "model": "api_v2.spellcastingoption", "pk": 4307, "fields": { - "spell": "talons-of-a-hungry-land", + "parent": "talons-of-a-hungry-land", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -22527,7 +22527,7 @@ "model": "api_v2.spellcastingoption", "pk": 4308, "fields": { - "spell": "targeting-foreknowledge", + "parent": "targeting-foreknowledge", "type": "default", "damage_roll": null, "target_count": null, @@ -22539,7 +22539,7 @@ "model": "api_v2.spellcastingoption", "pk": 4309, "fields": { - "spell": "thin-the-ice", + "parent": "thin-the-ice", "type": "default", "damage_roll": null, "target_count": null, @@ -22551,7 +22551,7 @@ "model": "api_v2.spellcastingoption", "pk": 4310, "fields": { - "spell": "thousand-darts", + "parent": "thousand-darts", "type": "default", "damage_roll": null, "target_count": null, @@ -22563,7 +22563,7 @@ "model": "api_v2.spellcastingoption", "pk": 4312, "fields": { - "spell": "thousand-darts", + "parent": "thousand-darts", "type": "slot_level_4", "damage_roll": "7d6", "target_count": null, @@ -22575,7 +22575,7 @@ "model": "api_v2.spellcastingoption", "pk": 4313, "fields": { - "spell": "thousand-darts", + "parent": "thousand-darts", "type": "slot_level_5", "damage_roll": "8d6", "target_count": null, @@ -22587,7 +22587,7 @@ "model": "api_v2.spellcastingoption", "pk": 4314, "fields": { - "spell": "thousand-darts", + "parent": "thousand-darts", "type": "slot_level_6", "damage_roll": "9d6", "target_count": null, @@ -22599,7 +22599,7 @@ "model": "api_v2.spellcastingoption", "pk": 4315, "fields": { - "spell": "thousand-darts", + "parent": "thousand-darts", "type": "slot_level_7", "damage_roll": "10d6", "target_count": null, @@ -22611,7 +22611,7 @@ "model": "api_v2.spellcastingoption", "pk": 4316, "fields": { - "spell": "thousand-darts", + "parent": "thousand-darts", "type": "slot_level_8", "damage_roll": "11d6", "target_count": null, @@ -22623,7 +22623,7 @@ "model": "api_v2.spellcastingoption", "pk": 4317, "fields": { - "spell": "thousand-darts", + "parent": "thousand-darts", "type": "slot_level_9", "damage_roll": "12d6", "target_count": null, @@ -22635,7 +22635,7 @@ "model": "api_v2.spellcastingoption", "pk": 4318, "fields": { - "spell": "throes-of-ecstasy", + "parent": "throes-of-ecstasy", "type": "default", "damage_roll": null, "target_count": null, @@ -22647,7 +22647,7 @@ "model": "api_v2.spellcastingoption", "pk": 4320, "fields": { - "spell": "throes-of-ecstasy", + "parent": "throes-of-ecstasy", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -22659,7 +22659,7 @@ "model": "api_v2.spellcastingoption", "pk": 4321, "fields": { - "spell": "throes-of-ecstasy", + "parent": "throes-of-ecstasy", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -22671,7 +22671,7 @@ "model": "api_v2.spellcastingoption", "pk": 4322, "fields": { - "spell": "throes-of-ecstasy", + "parent": "throes-of-ecstasy", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -22683,7 +22683,7 @@ "model": "api_v2.spellcastingoption", "pk": 4323, "fields": { - "spell": "throes-of-ecstasy", + "parent": "throes-of-ecstasy", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -22695,7 +22695,7 @@ "model": "api_v2.spellcastingoption", "pk": 4324, "fields": { - "spell": "throes-of-ecstasy", + "parent": "throes-of-ecstasy", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -22707,7 +22707,7 @@ "model": "api_v2.spellcastingoption", "pk": 4325, "fields": { - "spell": "throes-of-ecstasy", + "parent": "throes-of-ecstasy", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -22719,7 +22719,7 @@ "model": "api_v2.spellcastingoption", "pk": 4326, "fields": { - "spell": "thunder-bolt", + "parent": "thunder-bolt", "type": "default", "damage_roll": null, "target_count": null, @@ -22731,7 +22731,7 @@ "model": "api_v2.spellcastingoption", "pk": 4327, "fields": { - "spell": "thunderclap", + "parent": "thunderclap", "type": "default", "damage_roll": null, "target_count": null, @@ -22743,7 +22743,7 @@ "model": "api_v2.spellcastingoption", "pk": 4328, "fields": { - "spell": "thunderous-charge", + "parent": "thunderous-charge", "type": "default", "damage_roll": null, "target_count": null, @@ -22755,7 +22755,7 @@ "model": "api_v2.spellcastingoption", "pk": 4330, "fields": { - "spell": "thunderous-charge", + "parent": "thunderous-charge", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -22767,7 +22767,7 @@ "model": "api_v2.spellcastingoption", "pk": 4331, "fields": { - "spell": "thunderous-charge", + "parent": "thunderous-charge", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -22779,7 +22779,7 @@ "model": "api_v2.spellcastingoption", "pk": 4332, "fields": { - "spell": "thunderous-charge", + "parent": "thunderous-charge", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -22791,7 +22791,7 @@ "model": "api_v2.spellcastingoption", "pk": 4333, "fields": { - "spell": "thunderous-charge", + "parent": "thunderous-charge", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -22803,7 +22803,7 @@ "model": "api_v2.spellcastingoption", "pk": 4334, "fields": { - "spell": "thunderous-charge", + "parent": "thunderous-charge", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -22815,7 +22815,7 @@ "model": "api_v2.spellcastingoption", "pk": 4335, "fields": { - "spell": "thunderous-charge", + "parent": "thunderous-charge", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -22827,7 +22827,7 @@ "model": "api_v2.spellcastingoption", "pk": 4336, "fields": { - "spell": "thunderous-charge", + "parent": "thunderous-charge", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -22839,7 +22839,7 @@ "model": "api_v2.spellcastingoption", "pk": 4337, "fields": { - "spell": "thunderous-charge", + "parent": "thunderous-charge", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -22851,7 +22851,7 @@ "model": "api_v2.spellcastingoption", "pk": 4338, "fields": { - "spell": "thunderous-stampede", + "parent": "thunderous-stampede", "type": "default", "damage_roll": null, "target_count": null, @@ -22863,7 +22863,7 @@ "model": "api_v2.spellcastingoption", "pk": 4340, "fields": { - "spell": "thunderous-stampede", + "parent": "thunderous-stampede", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -22875,7 +22875,7 @@ "model": "api_v2.spellcastingoption", "pk": 4341, "fields": { - "spell": "thunderous-stampede", + "parent": "thunderous-stampede", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -22887,7 +22887,7 @@ "model": "api_v2.spellcastingoption", "pk": 4342, "fields": { - "spell": "thunderous-stampede", + "parent": "thunderous-stampede", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -22899,7 +22899,7 @@ "model": "api_v2.spellcastingoption", "pk": 4343, "fields": { - "spell": "thunderous-stampede", + "parent": "thunderous-stampede", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -22911,7 +22911,7 @@ "model": "api_v2.spellcastingoption", "pk": 4344, "fields": { - "spell": "thunderous-stampede", + "parent": "thunderous-stampede", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -22923,7 +22923,7 @@ "model": "api_v2.spellcastingoption", "pk": 4345, "fields": { - "spell": "thunderous-stampede", + "parent": "thunderous-stampede", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -22935,7 +22935,7 @@ "model": "api_v2.spellcastingoption", "pk": 4346, "fields": { - "spell": "thunderous-stampede", + "parent": "thunderous-stampede", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -22947,7 +22947,7 @@ "model": "api_v2.spellcastingoption", "pk": 4347, "fields": { - "spell": "thunderous-wave", + "parent": "thunderous-wave", "type": "default", "damage_roll": null, "target_count": null, @@ -22959,7 +22959,7 @@ "model": "api_v2.spellcastingoption", "pk": 4348, "fields": { - "spell": "thunderstorm", + "parent": "thunderstorm", "type": "default", "damage_roll": null, "target_count": null, @@ -22971,7 +22971,7 @@ "model": "api_v2.spellcastingoption", "pk": 4349, "fields": { - "spell": "tidal-barrier", + "parent": "tidal-barrier", "type": "default", "damage_roll": null, "target_count": null, @@ -22983,7 +22983,7 @@ "model": "api_v2.spellcastingoption", "pk": 4350, "fields": { - "spell": "time-in-a-bottle", + "parent": "time-in-a-bottle", "type": "default", "damage_roll": null, "target_count": null, @@ -22995,7 +22995,7 @@ "model": "api_v2.spellcastingoption", "pk": 4351, "fields": { - "spell": "time-jump", + "parent": "time-jump", "type": "default", "damage_roll": null, "target_count": null, @@ -23007,7 +23007,7 @@ "model": "api_v2.spellcastingoption", "pk": 4352, "fields": { - "spell": "time-loop", + "parent": "time-loop", "type": "default", "damage_roll": null, "target_count": null, @@ -23019,7 +23019,7 @@ "model": "api_v2.spellcastingoption", "pk": 4353, "fields": { - "spell": "time-slippage", + "parent": "time-slippage", "type": "default", "damage_roll": null, "target_count": null, @@ -23031,7 +23031,7 @@ "model": "api_v2.spellcastingoption", "pk": 4354, "fields": { - "spell": "time-step", + "parent": "time-step", "type": "default", "damage_roll": null, "target_count": null, @@ -23043,7 +23043,7 @@ "model": "api_v2.spellcastingoption", "pk": 4355, "fields": { - "spell": "time-vortex", + "parent": "time-vortex", "type": "default", "damage_roll": null, "target_count": null, @@ -23055,7 +23055,7 @@ "model": "api_v2.spellcastingoption", "pk": 4357, "fields": { - "spell": "time-vortex", + "parent": "time-vortex", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -23067,7 +23067,7 @@ "model": "api_v2.spellcastingoption", "pk": 4358, "fields": { - "spell": "time-vortex", + "parent": "time-vortex", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -23079,7 +23079,7 @@ "model": "api_v2.spellcastingoption", "pk": 4359, "fields": { - "spell": "time-vortex", + "parent": "time-vortex", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -23091,7 +23091,7 @@ "model": "api_v2.spellcastingoption", "pk": 4360, "fields": { - "spell": "time-vortex", + "parent": "time-vortex", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -23103,7 +23103,7 @@ "model": "api_v2.spellcastingoption", "pk": 4361, "fields": { - "spell": "time-vortex", + "parent": "time-vortex", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -23115,7 +23115,7 @@ "model": "api_v2.spellcastingoption", "pk": 4362, "fields": { - "spell": "timely-distraction", + "parent": "timely-distraction", "type": "default", "damage_roll": null, "target_count": null, @@ -23127,7 +23127,7 @@ "model": "api_v2.spellcastingoption", "pk": 4363, "fields": { - "spell": "tireless", + "parent": "tireless", "type": "default", "damage_roll": null, "target_count": null, @@ -23139,7 +23139,7 @@ "model": "api_v2.spellcastingoption", "pk": 4364, "fields": { - "spell": "tongue-of-sand", + "parent": "tongue-of-sand", "type": "default", "damage_roll": null, "target_count": null, @@ -23151,7 +23151,7 @@ "model": "api_v2.spellcastingoption", "pk": 4365, "fields": { - "spell": "tongue-of-sand", + "parent": "tongue-of-sand", "type": "ritual", "damage_roll": null, "target_count": null, @@ -23163,7 +23163,7 @@ "model": "api_v2.spellcastingoption", "pk": 4366, "fields": { - "spell": "tongue-tied", + "parent": "tongue-tied", "type": "default", "damage_roll": null, "target_count": null, @@ -23175,7 +23175,7 @@ "model": "api_v2.spellcastingoption", "pk": 4367, "fields": { - "spell": "torrent-of-fire", + "parent": "torrent-of-fire", "type": "default", "damage_roll": null, "target_count": null, @@ -23187,7 +23187,7 @@ "model": "api_v2.spellcastingoption", "pk": 4368, "fields": { - "spell": "touch-of-the-unliving", + "parent": "touch-of-the-unliving", "type": "default", "damage_roll": null, "target_count": null, @@ -23199,7 +23199,7 @@ "model": "api_v2.spellcastingoption", "pk": 4370, "fields": { - "spell": "touch-of-the-unliving", + "parent": "touch-of-the-unliving", "type": "slot_level_4", "damage_roll": "3d6", "target_count": null, @@ -23211,7 +23211,7 @@ "model": "api_v2.spellcastingoption", "pk": 4371, "fields": { - "spell": "touch-of-the-unliving", + "parent": "touch-of-the-unliving", "type": "slot_level_5", "damage_roll": "4d6", "target_count": null, @@ -23223,7 +23223,7 @@ "model": "api_v2.spellcastingoption", "pk": 4372, "fields": { - "spell": "touch-of-the-unliving", + "parent": "touch-of-the-unliving", "type": "slot_level_6", "damage_roll": "5d6", "target_count": null, @@ -23235,7 +23235,7 @@ "model": "api_v2.spellcastingoption", "pk": 4373, "fields": { - "spell": "touch-of-the-unliving", + "parent": "touch-of-the-unliving", "type": "slot_level_7", "damage_roll": "6d6", "target_count": null, @@ -23247,7 +23247,7 @@ "model": "api_v2.spellcastingoption", "pk": 4374, "fields": { - "spell": "touch-of-the-unliving", + "parent": "touch-of-the-unliving", "type": "slot_level_8", "damage_roll": "7d6", "target_count": null, @@ -23259,7 +23259,7 @@ "model": "api_v2.spellcastingoption", "pk": 4375, "fields": { - "spell": "touch-of-the-unliving", + "parent": "touch-of-the-unliving", "type": "slot_level_9", "damage_roll": "8d6", "target_count": null, @@ -23271,7 +23271,7 @@ "model": "api_v2.spellcastingoption", "pk": 4376, "fields": { - "spell": "tracer", + "parent": "tracer", "type": "default", "damage_roll": null, "target_count": null, @@ -23283,7 +23283,7 @@ "model": "api_v2.spellcastingoption", "pk": 4377, "fields": { - "spell": "treasure-chasm", + "parent": "treasure-chasm", "type": "default", "damage_roll": null, "target_count": null, @@ -23295,7 +23295,7 @@ "model": "api_v2.spellcastingoption", "pk": 4378, "fields": { - "spell": "tree-heal", + "parent": "tree-heal", "type": "default", "damage_roll": null, "target_count": null, @@ -23307,7 +23307,7 @@ "model": "api_v2.spellcastingoption", "pk": 4379, "fields": { - "spell": "tree-running", + "parent": "tree-running", "type": "default", "damage_roll": null, "target_count": null, @@ -23319,7 +23319,7 @@ "model": "api_v2.spellcastingoption", "pk": 4380, "fields": { - "spell": "tree-speak", + "parent": "tree-speak", "type": "default", "damage_roll": null, "target_count": null, @@ -23331,7 +23331,7 @@ "model": "api_v2.spellcastingoption", "pk": 4381, "fields": { - "spell": "trench", + "parent": "trench", "type": "default", "damage_roll": null, "target_count": null, @@ -23343,7 +23343,7 @@ "model": "api_v2.spellcastingoption", "pk": 4383, "fields": { - "spell": "trench", + "parent": "trench", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -23355,7 +23355,7 @@ "model": "api_v2.spellcastingoption", "pk": 4384, "fields": { - "spell": "trench", + "parent": "trench", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -23367,7 +23367,7 @@ "model": "api_v2.spellcastingoption", "pk": 4385, "fields": { - "spell": "trench", + "parent": "trench", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -23379,7 +23379,7 @@ "model": "api_v2.spellcastingoption", "pk": 4386, "fields": { - "spell": "trench", + "parent": "trench", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -23391,7 +23391,7 @@ "model": "api_v2.spellcastingoption", "pk": 4387, "fields": { - "spell": "trench", + "parent": "trench", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -23403,7 +23403,7 @@ "model": "api_v2.spellcastingoption", "pk": 4388, "fields": { - "spell": "trench", + "parent": "trench", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -23415,7 +23415,7 @@ "model": "api_v2.spellcastingoption", "pk": 4389, "fields": { - "spell": "trench", + "parent": "trench", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -23427,7 +23427,7 @@ "model": "api_v2.spellcastingoption", "pk": 4390, "fields": { - "spell": "trick-question", + "parent": "trick-question", "type": "default", "damage_roll": null, "target_count": null, @@ -23439,7 +23439,7 @@ "model": "api_v2.spellcastingoption", "pk": 4391, "fields": { - "spell": "triumph-of-ice", + "parent": "triumph-of-ice", "type": "default", "damage_roll": null, "target_count": null, @@ -23451,7 +23451,7 @@ "model": "api_v2.spellcastingoption", "pk": 4392, "fields": { - "spell": "twist-the-skein", + "parent": "twist-the-skein", "type": "default", "damage_roll": null, "target_count": null, @@ -23463,7 +23463,7 @@ "model": "api_v2.spellcastingoption", "pk": 4393, "fields": { - "spell": "umbral-storm", + "parent": "umbral-storm", "type": "default", "damage_roll": null, "target_count": null, @@ -23475,7 +23475,7 @@ "model": "api_v2.spellcastingoption", "pk": 4394, "fields": { - "spell": "uncontrollable-transformation", + "parent": "uncontrollable-transformation", "type": "default", "damage_roll": null, "target_count": null, @@ -23487,7 +23487,7 @@ "model": "api_v2.spellcastingoption", "pk": 4395, "fields": { - "spell": "uncontrollable-transformation", + "parent": "uncontrollable-transformation", "type": "ritual", "damage_roll": null, "target_count": null, @@ -23499,7 +23499,7 @@ "model": "api_v2.spellcastingoption", "pk": 4397, "fields": { - "spell": "uncontrollable-transformation", + "parent": "uncontrollable-transformation", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -23511,7 +23511,7 @@ "model": "api_v2.spellcastingoption", "pk": 4398, "fields": { - "spell": "uncontrollable-transformation", + "parent": "uncontrollable-transformation", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -23523,7 +23523,7 @@ "model": "api_v2.spellcastingoption", "pk": 4399, "fields": { - "spell": "undermine-armor", + "parent": "undermine-armor", "type": "default", "damage_roll": null, "target_count": null, @@ -23535,7 +23535,7 @@ "model": "api_v2.spellcastingoption", "pk": 4400, "fields": { - "spell": "unholy-defiance", + "parent": "unholy-defiance", "type": "default", "damage_roll": null, "target_count": null, @@ -23547,7 +23547,7 @@ "model": "api_v2.spellcastingoption", "pk": 4401, "fields": { - "spell": "unleash-effigy", + "parent": "unleash-effigy", "type": "default", "damage_roll": null, "target_count": null, @@ -23559,7 +23559,7 @@ "model": "api_v2.spellcastingoption", "pk": 4402, "fields": { - "spell": "unluck-on-that", + "parent": "unluck-on-that", "type": "default", "damage_roll": null, "target_count": null, @@ -23571,7 +23571,7 @@ "model": "api_v2.spellcastingoption", "pk": 4404, "fields": { - "spell": "unluck-on-that", + "parent": "unluck-on-that", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -23583,7 +23583,7 @@ "model": "api_v2.spellcastingoption", "pk": 4405, "fields": { - "spell": "unluck-on-that", + "parent": "unluck-on-that", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -23595,7 +23595,7 @@ "model": "api_v2.spellcastingoption", "pk": 4406, "fields": { - "spell": "unluck-on-that", + "parent": "unluck-on-that", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -23607,7 +23607,7 @@ "model": "api_v2.spellcastingoption", "pk": 4407, "fields": { - "spell": "unluck-on-that", + "parent": "unluck-on-that", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -23619,7 +23619,7 @@ "model": "api_v2.spellcastingoption", "pk": 4408, "fields": { - "spell": "unluck-on-that", + "parent": "unluck-on-that", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -23631,7 +23631,7 @@ "model": "api_v2.spellcastingoption", "pk": 4409, "fields": { - "spell": "unluck-on-that", + "parent": "unluck-on-that", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -23643,7 +23643,7 @@ "model": "api_v2.spellcastingoption", "pk": 4410, "fields": { - "spell": "unluck-on-that", + "parent": "unluck-on-that", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -23655,7 +23655,7 @@ "model": "api_v2.spellcastingoption", "pk": 4411, "fields": { - "spell": "unluck-on-that", + "parent": "unluck-on-that", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -23667,7 +23667,7 @@ "model": "api_v2.spellcastingoption", "pk": 4412, "fields": { - "spell": "unseen-strangler", + "parent": "unseen-strangler", "type": "default", "damage_roll": null, "target_count": null, @@ -23679,7 +23679,7 @@ "model": "api_v2.spellcastingoption", "pk": 4413, "fields": { - "spell": "unseen-strangler", + "parent": "unseen-strangler", "type": "ritual", "damage_roll": null, "target_count": null, @@ -23691,7 +23691,7 @@ "model": "api_v2.spellcastingoption", "pk": 4414, "fields": { - "spell": "vine-trestle", + "parent": "vine-trestle", "type": "default", "damage_roll": null, "target_count": null, @@ -23703,7 +23703,7 @@ "model": "api_v2.spellcastingoption", "pk": 4415, "fields": { - "spell": "vine-trestle", + "parent": "vine-trestle", "type": "ritual", "damage_roll": null, "target_count": null, @@ -23715,7 +23715,7 @@ "model": "api_v2.spellcastingoption", "pk": 4417, "fields": { - "spell": "vine-trestle", + "parent": "vine-trestle", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -23727,7 +23727,7 @@ "model": "api_v2.spellcastingoption", "pk": 4418, "fields": { - "spell": "vine-trestle", + "parent": "vine-trestle", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -23739,7 +23739,7 @@ "model": "api_v2.spellcastingoption", "pk": 4419, "fields": { - "spell": "vine-trestle", + "parent": "vine-trestle", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -23751,7 +23751,7 @@ "model": "api_v2.spellcastingoption", "pk": 4420, "fields": { - "spell": "vine-trestle", + "parent": "vine-trestle", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -23763,7 +23763,7 @@ "model": "api_v2.spellcastingoption", "pk": 4421, "fields": { - "spell": "vine-trestle", + "parent": "vine-trestle", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -23775,7 +23775,7 @@ "model": "api_v2.spellcastingoption", "pk": 4422, "fields": { - "spell": "vine-trestle", + "parent": "vine-trestle", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -23787,7 +23787,7 @@ "model": "api_v2.spellcastingoption", "pk": 4423, "fields": { - "spell": "vine-trestle", + "parent": "vine-trestle", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -23799,7 +23799,7 @@ "model": "api_v2.spellcastingoption", "pk": 4424, "fields": { - "spell": "visage-of-madness", + "parent": "visage-of-madness", "type": "default", "damage_roll": null, "target_count": null, @@ -23811,7 +23811,7 @@ "model": "api_v2.spellcastingoption", "pk": 4425, "fields": { - "spell": "vital-mark", + "parent": "vital-mark", "type": "default", "damage_roll": null, "target_count": null, @@ -23823,7 +23823,7 @@ "model": "api_v2.spellcastingoption", "pk": 4426, "fields": { - "spell": "vital-mark", + "parent": "vital-mark", "type": "ritual", "damage_roll": null, "target_count": null, @@ -23835,7 +23835,7 @@ "model": "api_v2.spellcastingoption", "pk": 4428, "fields": { - "spell": "vital-mark", + "parent": "vital-mark", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -23847,7 +23847,7 @@ "model": "api_v2.spellcastingoption", "pk": 4429, "fields": { - "spell": "vital-mark", + "parent": "vital-mark", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -23859,7 +23859,7 @@ "model": "api_v2.spellcastingoption", "pk": 4430, "fields": { - "spell": "vital-mark", + "parent": "vital-mark", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -23871,7 +23871,7 @@ "model": "api_v2.spellcastingoption", "pk": 4431, "fields": { - "spell": "vital-mark", + "parent": "vital-mark", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -23883,7 +23883,7 @@ "model": "api_v2.spellcastingoption", "pk": 4432, "fields": { - "spell": "vital-mark", + "parent": "vital-mark", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -23895,7 +23895,7 @@ "model": "api_v2.spellcastingoption", "pk": 4433, "fields": { - "spell": "vital-mark", + "parent": "vital-mark", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -23907,7 +23907,7 @@ "model": "api_v2.spellcastingoption", "pk": 4434, "fields": { - "spell": "void-rift", + "parent": "void-rift", "type": "default", "damage_roll": null, "target_count": null, @@ -23919,7 +23919,7 @@ "model": "api_v2.spellcastingoption", "pk": 4435, "fields": { - "spell": "void-strike", + "parent": "void-strike", "type": "default", "damage_roll": null, "target_count": null, @@ -23931,7 +23931,7 @@ "model": "api_v2.spellcastingoption", "pk": 4437, "fields": { - "spell": "void-strike", + "parent": "void-strike", "type": "slot_level_4", "damage_roll": "6d8", "target_count": null, @@ -23943,7 +23943,7 @@ "model": "api_v2.spellcastingoption", "pk": 4438, "fields": { - "spell": "void-strike", + "parent": "void-strike", "type": "slot_level_5", "damage_roll": "7d8", "target_count": null, @@ -23955,7 +23955,7 @@ "model": "api_v2.spellcastingoption", "pk": 4439, "fields": { - "spell": "void-strike", + "parent": "void-strike", "type": "slot_level_6", "damage_roll": "8d8", "target_count": null, @@ -23967,7 +23967,7 @@ "model": "api_v2.spellcastingoption", "pk": 4440, "fields": { - "spell": "void-strike", + "parent": "void-strike", "type": "slot_level_7", "damage_roll": "9d8", "target_count": null, @@ -23979,7 +23979,7 @@ "model": "api_v2.spellcastingoption", "pk": 4441, "fields": { - "spell": "void-strike", + "parent": "void-strike", "type": "slot_level_8", "damage_roll": "10d8", "target_count": null, @@ -23991,7 +23991,7 @@ "model": "api_v2.spellcastingoption", "pk": 4442, "fields": { - "spell": "void-strike", + "parent": "void-strike", "type": "slot_level_9", "damage_roll": "11d8", "target_count": null, @@ -24003,7 +24003,7 @@ "model": "api_v2.spellcastingoption", "pk": 4443, "fields": { - "spell": "volley-shield", + "parent": "volley-shield", "type": "default", "damage_roll": null, "target_count": null, @@ -24015,7 +24015,7 @@ "model": "api_v2.spellcastingoption", "pk": 4444, "fields": { - "spell": "vomit-tentacles", + "parent": "vomit-tentacles", "type": "default", "damage_roll": null, "target_count": null, @@ -24027,7 +24027,7 @@ "model": "api_v2.spellcastingoption", "pk": 4445, "fields": { - "spell": "voorish-sign", + "parent": "voorish-sign", "type": "default", "damage_roll": null, "target_count": null, @@ -24039,7 +24039,7 @@ "model": "api_v2.spellcastingoption", "pk": 4447, "fields": { - "spell": "voorish-sign", + "parent": "voorish-sign", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -24051,7 +24051,7 @@ "model": "api_v2.spellcastingoption", "pk": 4448, "fields": { - "spell": "voorish-sign", + "parent": "voorish-sign", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -24063,7 +24063,7 @@ "model": "api_v2.spellcastingoption", "pk": 4449, "fields": { - "spell": "voorish-sign", + "parent": "voorish-sign", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -24075,7 +24075,7 @@ "model": "api_v2.spellcastingoption", "pk": 4450, "fields": { - "spell": "voorish-sign", + "parent": "voorish-sign", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -24087,7 +24087,7 @@ "model": "api_v2.spellcastingoption", "pk": 4451, "fields": { - "spell": "voorish-sign", + "parent": "voorish-sign", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -24099,7 +24099,7 @@ "model": "api_v2.spellcastingoption", "pk": 4452, "fields": { - "spell": "voorish-sign", + "parent": "voorish-sign", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -24111,7 +24111,7 @@ "model": "api_v2.spellcastingoption", "pk": 4453, "fields": { - "spell": "voorish-sign", + "parent": "voorish-sign", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -24123,7 +24123,7 @@ "model": "api_v2.spellcastingoption", "pk": 4454, "fields": { - "spell": "voorish-sign", + "parent": "voorish-sign", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -24135,7 +24135,7 @@ "model": "api_v2.spellcastingoption", "pk": 4455, "fields": { - "spell": "waft", + "parent": "waft", "type": "default", "damage_roll": null, "target_count": null, @@ -24147,7 +24147,7 @@ "model": "api_v2.spellcastingoption", "pk": 4456, "fields": { - "spell": "walk-the-twisted-path", + "parent": "walk-the-twisted-path", "type": "default", "damage_roll": null, "target_count": null, @@ -24159,7 +24159,7 @@ "model": "api_v2.spellcastingoption", "pk": 4458, "fields": { - "spell": "walk-the-twisted-path", + "parent": "walk-the-twisted-path", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -24171,7 +24171,7 @@ "model": "api_v2.spellcastingoption", "pk": 4459, "fields": { - "spell": "walk-the-twisted-path", + "parent": "walk-the-twisted-path", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -24183,7 +24183,7 @@ "model": "api_v2.spellcastingoption", "pk": 4460, "fields": { - "spell": "walk-the-twisted-path", + "parent": "walk-the-twisted-path", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -24195,7 +24195,7 @@ "model": "api_v2.spellcastingoption", "pk": 4461, "fields": { - "spell": "walking-wall", + "parent": "walking-wall", "type": "default", "damage_roll": null, "target_count": null, @@ -24207,7 +24207,7 @@ "model": "api_v2.spellcastingoption", "pk": 4462, "fields": { - "spell": "wall-of-time", + "parent": "wall-of-time", "type": "default", "damage_roll": null, "target_count": null, @@ -24219,7 +24219,7 @@ "model": "api_v2.spellcastingoption", "pk": 4463, "fields": { - "spell": "warning-shout", + "parent": "warning-shout", "type": "default", "damage_roll": null, "target_count": null, @@ -24231,7 +24231,7 @@ "model": "api_v2.spellcastingoption", "pk": 4464, "fields": { - "spell": "warp-mind-and-matter", + "parent": "warp-mind-and-matter", "type": "default", "damage_roll": null, "target_count": null, @@ -24243,7 +24243,7 @@ "model": "api_v2.spellcastingoption", "pk": 4465, "fields": { - "spell": "warp-mind-and-matter", + "parent": "warp-mind-and-matter", "type": "ritual", "damage_roll": null, "target_count": null, @@ -24255,7 +24255,7 @@ "model": "api_v2.spellcastingoption", "pk": 4466, "fields": { - "spell": "weapon-of-blood", + "parent": "weapon-of-blood", "type": "default", "damage_roll": null, "target_count": null, @@ -24267,7 +24267,7 @@ "model": "api_v2.spellcastingoption", "pk": 4468, "fields": { - "spell": "weapon-of-blood", + "parent": "weapon-of-blood", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -24279,7 +24279,7 @@ "model": "api_v2.spellcastingoption", "pk": 4469, "fields": { - "spell": "weapon-of-blood", + "parent": "weapon-of-blood", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -24291,7 +24291,7 @@ "model": "api_v2.spellcastingoption", "pk": 4470, "fields": { - "spell": "weapon-of-blood", + "parent": "weapon-of-blood", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -24303,7 +24303,7 @@ "model": "api_v2.spellcastingoption", "pk": 4471, "fields": { - "spell": "weapon-of-blood", + "parent": "weapon-of-blood", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -24315,7 +24315,7 @@ "model": "api_v2.spellcastingoption", "pk": 4472, "fields": { - "spell": "weapon-of-blood", + "parent": "weapon-of-blood", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -24327,7 +24327,7 @@ "model": "api_v2.spellcastingoption", "pk": 4473, "fields": { - "spell": "weapon-of-blood", + "parent": "weapon-of-blood", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -24339,7 +24339,7 @@ "model": "api_v2.spellcastingoption", "pk": 4474, "fields": { - "spell": "weapon-of-blood", + "parent": "weapon-of-blood", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -24351,7 +24351,7 @@ "model": "api_v2.spellcastingoption", "pk": 4475, "fields": { - "spell": "weapon-of-blood", + "parent": "weapon-of-blood", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -24363,7 +24363,7 @@ "model": "api_v2.spellcastingoption", "pk": 4476, "fields": { - "spell": "weilers-ward", + "parent": "weilers-ward", "type": "default", "damage_roll": null, "target_count": null, @@ -24375,7 +24375,7 @@ "model": "api_v2.spellcastingoption", "pk": 4478, "fields": { - "spell": "weilers-ward", + "parent": "weilers-ward", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -24387,7 +24387,7 @@ "model": "api_v2.spellcastingoption", "pk": 4479, "fields": { - "spell": "weilers-ward", + "parent": "weilers-ward", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -24399,7 +24399,7 @@ "model": "api_v2.spellcastingoption", "pk": 4480, "fields": { - "spell": "weilers-ward", + "parent": "weilers-ward", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -24411,7 +24411,7 @@ "model": "api_v2.spellcastingoption", "pk": 4481, "fields": { - "spell": "weilers-ward", + "parent": "weilers-ward", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -24423,7 +24423,7 @@ "model": "api_v2.spellcastingoption", "pk": 4482, "fields": { - "spell": "weilers-ward", + "parent": "weilers-ward", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -24435,7 +24435,7 @@ "model": "api_v2.spellcastingoption", "pk": 4483, "fields": { - "spell": "weilers-ward", + "parent": "weilers-ward", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -24447,7 +24447,7 @@ "model": "api_v2.spellcastingoption", "pk": 4484, "fields": { - "spell": "weilers-ward", + "parent": "weilers-ward", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -24459,7 +24459,7 @@ "model": "api_v2.spellcastingoption", "pk": 4485, "fields": { - "spell": "wild-shield", + "parent": "wild-shield", "type": "default", "damage_roll": null, "target_count": null, @@ -24471,7 +24471,7 @@ "model": "api_v2.spellcastingoption", "pk": 4487, "fields": { - "spell": "wild-shield", + "parent": "wild-shield", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -24483,7 +24483,7 @@ "model": "api_v2.spellcastingoption", "pk": 4488, "fields": { - "spell": "wild-shield", + "parent": "wild-shield", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -24495,7 +24495,7 @@ "model": "api_v2.spellcastingoption", "pk": 4489, "fields": { - "spell": "wild-shield", + "parent": "wild-shield", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -24507,7 +24507,7 @@ "model": "api_v2.spellcastingoption", "pk": 4490, "fields": { - "spell": "wild-shield", + "parent": "wild-shield", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -24519,7 +24519,7 @@ "model": "api_v2.spellcastingoption", "pk": 4491, "fields": { - "spell": "wild-shield", + "parent": "wild-shield", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -24531,7 +24531,7 @@ "model": "api_v2.spellcastingoption", "pk": 4492, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "default", "damage_roll": null, "target_count": null, @@ -24543,7 +24543,7 @@ "model": "api_v2.spellcastingoption", "pk": 4493, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_1", "damage_roll": "1d8", "target_count": null, @@ -24555,7 +24555,7 @@ "model": "api_v2.spellcastingoption", "pk": 4494, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_2", "damage_roll": "1d8", "target_count": null, @@ -24567,7 +24567,7 @@ "model": "api_v2.spellcastingoption", "pk": 4495, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_3", "damage_roll": "1d8", "target_count": null, @@ -24579,7 +24579,7 @@ "model": "api_v2.spellcastingoption", "pk": 4496, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_4", "damage_roll": "1d8", "target_count": null, @@ -24591,7 +24591,7 @@ "model": "api_v2.spellcastingoption", "pk": 4497, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_5", "damage_roll": "2d8", "target_count": null, @@ -24603,7 +24603,7 @@ "model": "api_v2.spellcastingoption", "pk": 4498, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_6", "damage_roll": "2d8", "target_count": null, @@ -24615,7 +24615,7 @@ "model": "api_v2.spellcastingoption", "pk": 4499, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_7", "damage_roll": "2d8", "target_count": null, @@ -24627,7 +24627,7 @@ "model": "api_v2.spellcastingoption", "pk": 4500, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_8", "damage_roll": "2d8", "target_count": null, @@ -24639,7 +24639,7 @@ "model": "api_v2.spellcastingoption", "pk": 4501, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_9", "damage_roll": "2d8", "target_count": null, @@ -24651,7 +24651,7 @@ "model": "api_v2.spellcastingoption", "pk": 4502, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_10", "damage_roll": "2d8", "target_count": null, @@ -24663,7 +24663,7 @@ "model": "api_v2.spellcastingoption", "pk": 4503, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_11", "damage_roll": "3d8", "target_count": null, @@ -24675,7 +24675,7 @@ "model": "api_v2.spellcastingoption", "pk": 4504, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_12", "damage_roll": "3d8", "target_count": null, @@ -24687,7 +24687,7 @@ "model": "api_v2.spellcastingoption", "pk": 4505, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_13", "damage_roll": "3d8", "target_count": null, @@ -24699,7 +24699,7 @@ "model": "api_v2.spellcastingoption", "pk": 4506, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_14", "damage_roll": "3d8", "target_count": null, @@ -24711,7 +24711,7 @@ "model": "api_v2.spellcastingoption", "pk": 4507, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_15", "damage_roll": "3d8", "target_count": null, @@ -24723,7 +24723,7 @@ "model": "api_v2.spellcastingoption", "pk": 4508, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_16", "damage_roll": "3d8", "target_count": null, @@ -24735,7 +24735,7 @@ "model": "api_v2.spellcastingoption", "pk": 4509, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_17", "damage_roll": "4d8", "target_count": null, @@ -24747,7 +24747,7 @@ "model": "api_v2.spellcastingoption", "pk": 4510, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_18", "damage_roll": "4d8", "target_count": null, @@ -24759,7 +24759,7 @@ "model": "api_v2.spellcastingoption", "pk": 4511, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_19", "damage_roll": "4d8", "target_count": null, @@ -24771,7 +24771,7 @@ "model": "api_v2.spellcastingoption", "pk": 4512, "fields": { - "spell": "wind-lash", + "parent": "wind-lash", "type": "player_level_20", "damage_roll": "4d8", "target_count": null, @@ -24783,7 +24783,7 @@ "model": "api_v2.spellcastingoption", "pk": 4513, "fields": { - "spell": "wind-of-the-hereafter", + "parent": "wind-of-the-hereafter", "type": "default", "damage_roll": null, "target_count": null, @@ -24795,7 +24795,7 @@ "model": "api_v2.spellcastingoption", "pk": 4514, "fields": { - "spell": "wind-tunnel", + "parent": "wind-tunnel", "type": "default", "damage_roll": null, "target_count": null, @@ -24807,7 +24807,7 @@ "model": "api_v2.spellcastingoption", "pk": 4515, "fields": { - "spell": "winterdark", + "parent": "winterdark", "type": "default", "damage_roll": null, "target_count": null, @@ -24819,7 +24819,7 @@ "model": "api_v2.spellcastingoption", "pk": 4516, "fields": { - "spell": "winters-radiance", + "parent": "winters-radiance", "type": "default", "damage_roll": null, "target_count": null, @@ -24831,7 +24831,7 @@ "model": "api_v2.spellcastingoption", "pk": 4517, "fields": { - "spell": "wintry-glide", + "parent": "wintry-glide", "type": "default", "damage_roll": null, "target_count": null, @@ -24843,7 +24843,7 @@ "model": "api_v2.spellcastingoption", "pk": 4518, "fields": { - "spell": "withered-sight", + "parent": "withered-sight", "type": "default", "damage_roll": null, "target_count": null, @@ -24855,7 +24855,7 @@ "model": "api_v2.spellcastingoption", "pk": 4520, "fields": { - "spell": "withered-sight", + "parent": "withered-sight", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -24867,7 +24867,7 @@ "model": "api_v2.spellcastingoption", "pk": 4521, "fields": { - "spell": "withered-sight", + "parent": "withered-sight", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -24879,7 +24879,7 @@ "model": "api_v2.spellcastingoption", "pk": 4522, "fields": { - "spell": "withered-sight", + "parent": "withered-sight", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -24891,7 +24891,7 @@ "model": "api_v2.spellcastingoption", "pk": 4523, "fields": { - "spell": "withered-sight", + "parent": "withered-sight", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -24903,7 +24903,7 @@ "model": "api_v2.spellcastingoption", "pk": 4524, "fields": { - "spell": "withered-sight", + "parent": "withered-sight", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -24915,7 +24915,7 @@ "model": "api_v2.spellcastingoption", "pk": 4525, "fields": { - "spell": "withered-sight", + "parent": "withered-sight", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -24927,7 +24927,7 @@ "model": "api_v2.spellcastingoption", "pk": 4526, "fields": { - "spell": "withered-sight", + "parent": "withered-sight", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -24939,7 +24939,7 @@ "model": "api_v2.spellcastingoption", "pk": 4527, "fields": { - "spell": "withered-sight", + "parent": "withered-sight", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -24951,7 +24951,7 @@ "model": "api_v2.spellcastingoption", "pk": 4528, "fields": { - "spell": "wolfsong", + "parent": "wolfsong", "type": "default", "damage_roll": null, "target_count": null, @@ -24963,7 +24963,7 @@ "model": "api_v2.spellcastingoption", "pk": 4530, "fields": { - "spell": "wolfsong", + "parent": "wolfsong", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -24975,7 +24975,7 @@ "model": "api_v2.spellcastingoption", "pk": 4531, "fields": { - "spell": "wolfsong", + "parent": "wolfsong", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -24987,7 +24987,7 @@ "model": "api_v2.spellcastingoption", "pk": 4532, "fields": { - "spell": "wolfsong", + "parent": "wolfsong", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -24999,7 +24999,7 @@ "model": "api_v2.spellcastingoption", "pk": 4533, "fields": { - "spell": "wolfsong", + "parent": "wolfsong", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -25011,7 +25011,7 @@ "model": "api_v2.spellcastingoption", "pk": 4534, "fields": { - "spell": "wolfsong", + "parent": "wolfsong", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -25023,7 +25023,7 @@ "model": "api_v2.spellcastingoption", "pk": 4535, "fields": { - "spell": "wolfsong", + "parent": "wolfsong", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -25035,7 +25035,7 @@ "model": "api_v2.spellcastingoption", "pk": 4536, "fields": { - "spell": "wolfsong", + "parent": "wolfsong", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -25047,7 +25047,7 @@ "model": "api_v2.spellcastingoption", "pk": 4537, "fields": { - "spell": "wolfsong", + "parent": "wolfsong", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -25059,7 +25059,7 @@ "model": "api_v2.spellcastingoption", "pk": 4538, "fields": { - "spell": "word-of-misfortune", + "parent": "word-of-misfortune", "type": "default", "damage_roll": null, "target_count": null, @@ -25071,7 +25071,7 @@ "model": "api_v2.spellcastingoption", "pk": 4539, "fields": { - "spell": "wresting-wind", + "parent": "wresting-wind", "type": "default", "damage_roll": null, "target_count": null, @@ -25083,7 +25083,7 @@ "model": "api_v2.spellcastingoption", "pk": 4540, "fields": { - "spell": "writhing-arms", + "parent": "writhing-arms", "type": "default", "damage_roll": null, "target_count": null, @@ -25095,7 +25095,7 @@ "model": "api_v2.spellcastingoption", "pk": 4542, "fields": { - "spell": "writhing-arms", + "parent": "writhing-arms", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -25107,7 +25107,7 @@ "model": "api_v2.spellcastingoption", "pk": 4543, "fields": { - "spell": "writhing-arms", + "parent": "writhing-arms", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -25119,7 +25119,7 @@ "model": "api_v2.spellcastingoption", "pk": 4544, "fields": { - "spell": "writhing-arms", + "parent": "writhing-arms", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -25131,7 +25131,7 @@ "model": "api_v2.spellcastingoption", "pk": 4545, "fields": { - "spell": "writhing-arms", + "parent": "writhing-arms", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -25143,7 +25143,7 @@ "model": "api_v2.spellcastingoption", "pk": 4546, "fields": { - "spell": "writhing-arms", + "parent": "writhing-arms", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -25155,7 +25155,7 @@ "model": "api_v2.spellcastingoption", "pk": 4547, "fields": { - "spell": "writhing-arms", + "parent": "writhing-arms", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -25167,7 +25167,7 @@ "model": "api_v2.spellcastingoption", "pk": 4548, "fields": { - "spell": "writhing-arms", + "parent": "writhing-arms", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -25179,7 +25179,7 @@ "model": "api_v2.spellcastingoption", "pk": 4549, "fields": { - "spell": "writhing-arms", + "parent": "writhing-arms", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -25191,7 +25191,7 @@ "model": "api_v2.spellcastingoption", "pk": 4550, "fields": { - "spell": "yellow-sign", + "parent": "yellow-sign", "type": "default", "damage_roll": null, "target_count": null, diff --git a/data/v2/kobold-press/deepmx/SpellCastingOption.json b/data/v2/kobold-press/deepmx/SpellCastingOption.json index c1400529..599a77e4 100644 --- a/data/v2/kobold-press/deepmx/SpellCastingOption.json +++ b/data/v2/kobold-press/deepmx/SpellCastingOption.json @@ -3,7 +3,7 @@ "model": "api_v2.spellcastingoption", "pk": 4726, "fields": { - "spell": "absolute-command", + "parent": "absolute-command", "type": "default", "damage_roll": null, "target_count": null, @@ -15,7 +15,7 @@ "model": "api_v2.spellcastingoption", "pk": 4728, "fields": { - "spell": "absolute-command", + "parent": "absolute-command", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -27,7 +27,7 @@ "model": "api_v2.spellcastingoption", "pk": 4729, "fields": { - "spell": "absolute-command", + "parent": "absolute-command", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -39,7 +39,7 @@ "model": "api_v2.spellcastingoption", "pk": 4730, "fields": { - "spell": "absolute-command", + "parent": "absolute-command", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -51,7 +51,7 @@ "model": "api_v2.spellcastingoption", "pk": 4731, "fields": { - "spell": "absolute-command", + "parent": "absolute-command", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -63,7 +63,7 @@ "model": "api_v2.spellcastingoption", "pk": 4732, "fields": { - "spell": "absolute-command", + "parent": "absolute-command", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -75,7 +75,7 @@ "model": "api_v2.spellcastingoption", "pk": 4733, "fields": { - "spell": "amplify-ley-field", + "parent": "amplify-ley-field", "type": "default", "damage_roll": null, "target_count": null, @@ -87,7 +87,7 @@ "model": "api_v2.spellcastingoption", "pk": 4734, "fields": { - "spell": "animate-construct", + "parent": "animate-construct", "type": "default", "damage_roll": null, "target_count": null, @@ -99,7 +99,7 @@ "model": "api_v2.spellcastingoption", "pk": 4736, "fields": { - "spell": "animate-construct", + "parent": "animate-construct", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -111,7 +111,7 @@ "model": "api_v2.spellcastingoption", "pk": 4737, "fields": { - "spell": "animate-construct", + "parent": "animate-construct", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -123,7 +123,7 @@ "model": "api_v2.spellcastingoption", "pk": 4738, "fields": { - "spell": "animate-construct", + "parent": "animate-construct", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -135,7 +135,7 @@ "model": "api_v2.spellcastingoption", "pk": 4739, "fields": { - "spell": "animate-construct", + "parent": "animate-construct", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -147,7 +147,7 @@ "model": "api_v2.spellcastingoption", "pk": 4740, "fields": { - "spell": "animate-construct", + "parent": "animate-construct", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -159,7 +159,7 @@ "model": "api_v2.spellcastingoption", "pk": 4741, "fields": { - "spell": "animate-construct", + "parent": "animate-construct", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -171,7 +171,7 @@ "model": "api_v2.spellcastingoption", "pk": 4742, "fields": { - "spell": "animate-construct", + "parent": "animate-construct", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -183,7 +183,7 @@ "model": "api_v2.spellcastingoption", "pk": 4743, "fields": { - "spell": "animate-construct", + "parent": "animate-construct", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -195,7 +195,7 @@ "model": "api_v2.spellcastingoption", "pk": 4744, "fields": { - "spell": "anomalous-object", + "parent": "anomalous-object", "type": "default", "damage_roll": null, "target_count": null, @@ -207,7 +207,7 @@ "model": "api_v2.spellcastingoption", "pk": 4745, "fields": { - "spell": "armored-heart", + "parent": "armored-heart", "type": "default", "damage_roll": null, "target_count": null, @@ -219,7 +219,7 @@ "model": "api_v2.spellcastingoption", "pk": 4746, "fields": { - "spell": "armored-shell", + "parent": "armored-shell", "type": "default", "damage_roll": null, "target_count": null, @@ -231,7 +231,7 @@ "model": "api_v2.spellcastingoption", "pk": 4748, "fields": { - "spell": "armored-shell", + "parent": "armored-shell", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -243,7 +243,7 @@ "model": "api_v2.spellcastingoption", "pk": 4749, "fields": { - "spell": "armored-shell", + "parent": "armored-shell", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -255,7 +255,7 @@ "model": "api_v2.spellcastingoption", "pk": 4750, "fields": { - "spell": "armored-shell", + "parent": "armored-shell", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -267,7 +267,7 @@ "model": "api_v2.spellcastingoption", "pk": 4751, "fields": { - "spell": "armored-shell", + "parent": "armored-shell", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -279,7 +279,7 @@ "model": "api_v2.spellcastingoption", "pk": 4752, "fields": { - "spell": "armored-shell", + "parent": "armored-shell", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -291,7 +291,7 @@ "model": "api_v2.spellcastingoption", "pk": 4753, "fields": { - "spell": "armored-shell", + "parent": "armored-shell", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -303,7 +303,7 @@ "model": "api_v2.spellcastingoption", "pk": 4754, "fields": { - "spell": "armored-shell", + "parent": "armored-shell", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -315,7 +315,7 @@ "model": "api_v2.spellcastingoption", "pk": 4755, "fields": { - "spell": "armored-shell", + "parent": "armored-shell", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -327,7 +327,7 @@ "model": "api_v2.spellcastingoption", "pk": 4756, "fields": { - "spell": "banshee-wail", + "parent": "banshee-wail", "type": "default", "damage_roll": null, "target_count": null, @@ -339,7 +339,7 @@ "model": "api_v2.spellcastingoption", "pk": 4757, "fields": { - "spell": "beguiling-gift", + "parent": "beguiling-gift", "type": "default", "damage_roll": null, "target_count": null, @@ -351,7 +351,7 @@ "model": "api_v2.spellcastingoption", "pk": 4758, "fields": { - "spell": "borrowing", + "parent": "borrowing", "type": "default", "damage_roll": null, "target_count": null, @@ -363,7 +363,7 @@ "model": "api_v2.spellcastingoption", "pk": 4760, "fields": { - "spell": "borrowing", + "parent": "borrowing", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -375,7 +375,7 @@ "model": "api_v2.spellcastingoption", "pk": 4761, "fields": { - "spell": "borrowing", + "parent": "borrowing", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -387,7 +387,7 @@ "model": "api_v2.spellcastingoption", "pk": 4762, "fields": { - "spell": "borrowing", + "parent": "borrowing", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -399,7 +399,7 @@ "model": "api_v2.spellcastingoption", "pk": 4763, "fields": { - "spell": "borrowing", + "parent": "borrowing", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -411,7 +411,7 @@ "model": "api_v2.spellcastingoption", "pk": 4764, "fields": { - "spell": "borrowing", + "parent": "borrowing", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -423,7 +423,7 @@ "model": "api_v2.spellcastingoption", "pk": 4765, "fields": { - "spell": "borrowing", + "parent": "borrowing", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -435,7 +435,7 @@ "model": "api_v2.spellcastingoption", "pk": 4766, "fields": { - "spell": "call-the-hunter", + "parent": "call-the-hunter", "type": "default", "damage_roll": null, "target_count": null, @@ -447,7 +447,7 @@ "model": "api_v2.spellcastingoption", "pk": 4767, "fields": { - "spell": "circle-of-devestation", + "parent": "circle-of-devestation", "type": "default", "damage_roll": null, "target_count": null, @@ -459,7 +459,7 @@ "model": "api_v2.spellcastingoption", "pk": 4768, "fields": { - "spell": "cloying-darkness", + "parent": "cloying-darkness", "type": "default", "damage_roll": null, "target_count": null, @@ -471,7 +471,7 @@ "model": "api_v2.spellcastingoption", "pk": 4770, "fields": { - "spell": "cloying-darkness", + "parent": "cloying-darkness", "type": "slot_level_2", "damage_roll": "3d8", "target_count": null, @@ -483,7 +483,7 @@ "model": "api_v2.spellcastingoption", "pk": 4771, "fields": { - "spell": "cloying-darkness", + "parent": "cloying-darkness", "type": "slot_level_3", "damage_roll": "4d8", "target_count": null, @@ -495,7 +495,7 @@ "model": "api_v2.spellcastingoption", "pk": 4772, "fields": { - "spell": "cloying-darkness", + "parent": "cloying-darkness", "type": "slot_level_4", "damage_roll": "5d8", "target_count": null, @@ -507,7 +507,7 @@ "model": "api_v2.spellcastingoption", "pk": 4773, "fields": { - "spell": "cloying-darkness", + "parent": "cloying-darkness", "type": "slot_level_5", "damage_roll": "6d8", "target_count": null, @@ -519,7 +519,7 @@ "model": "api_v2.spellcastingoption", "pk": 4774, "fields": { - "spell": "cloying-darkness", + "parent": "cloying-darkness", "type": "slot_level_6", "damage_roll": "7d8", "target_count": null, @@ -531,7 +531,7 @@ "model": "api_v2.spellcastingoption", "pk": 4775, "fields": { - "spell": "cloying-darkness", + "parent": "cloying-darkness", "type": "slot_level_7", "damage_roll": "8d8", "target_count": null, @@ -543,7 +543,7 @@ "model": "api_v2.spellcastingoption", "pk": 4776, "fields": { - "spell": "cloying-darkness", + "parent": "cloying-darkness", "type": "slot_level_8", "damage_roll": "9d8", "target_count": null, @@ -555,7 +555,7 @@ "model": "api_v2.spellcastingoption", "pk": 4777, "fields": { - "spell": "cloying-darkness", + "parent": "cloying-darkness", "type": "slot_level_9", "damage_roll": "10d8", "target_count": null, @@ -567,7 +567,7 @@ "model": "api_v2.spellcastingoption", "pk": 4778, "fields": { - "spell": "cosmic-alignment", + "parent": "cosmic-alignment", "type": "default", "damage_roll": null, "target_count": null, @@ -579,7 +579,7 @@ "model": "api_v2.spellcastingoption", "pk": 4779, "fields": { - "spell": "cosmic-alignment", + "parent": "cosmic-alignment", "type": "ritual", "damage_roll": null, "target_count": null, @@ -591,7 +591,7 @@ "model": "api_v2.spellcastingoption", "pk": 4780, "fields": { - "spell": "cruor-of-visions", + "parent": "cruor-of-visions", "type": "default", "damage_roll": null, "target_count": null, @@ -603,7 +603,7 @@ "model": "api_v2.spellcastingoption", "pk": 4781, "fields": { - "spell": "extract-foyson", + "parent": "extract-foyson", "type": "default", "damage_roll": null, "target_count": null, @@ -615,7 +615,7 @@ "model": "api_v2.spellcastingoption", "pk": 4782, "fields": { - "spell": "extract-foyson", + "parent": "extract-foyson", "type": "ritual", "damage_roll": null, "target_count": null, @@ -627,7 +627,7 @@ "model": "api_v2.spellcastingoption", "pk": 4784, "fields": { - "spell": "extract-foyson", + "parent": "extract-foyson", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -639,7 +639,7 @@ "model": "api_v2.spellcastingoption", "pk": 4785, "fields": { - "spell": "extract-foyson", + "parent": "extract-foyson", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -651,7 +651,7 @@ "model": "api_v2.spellcastingoption", "pk": 4786, "fields": { - "spell": "extract-foyson", + "parent": "extract-foyson", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -663,7 +663,7 @@ "model": "api_v2.spellcastingoption", "pk": 4787, "fields": { - "spell": "extract-foyson", + "parent": "extract-foyson", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -675,7 +675,7 @@ "model": "api_v2.spellcastingoption", "pk": 4788, "fields": { - "spell": "extract-foyson", + "parent": "extract-foyson", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -687,7 +687,7 @@ "model": "api_v2.spellcastingoption", "pk": 4789, "fields": { - "spell": "extract-foyson", + "parent": "extract-foyson", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -699,7 +699,7 @@ "model": "api_v2.spellcastingoption", "pk": 4790, "fields": { - "spell": "extract-foyson", + "parent": "extract-foyson", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -711,7 +711,7 @@ "model": "api_v2.spellcastingoption", "pk": 4791, "fields": { - "spell": "extract-foyson", + "parent": "extract-foyson", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -723,7 +723,7 @@ "model": "api_v2.spellcastingoption", "pk": 4792, "fields": { - "spell": "find-the-flaw", + "parent": "find-the-flaw", "type": "default", "damage_roll": null, "target_count": null, @@ -735,7 +735,7 @@ "model": "api_v2.spellcastingoption", "pk": 4793, "fields": { - "spell": "gear-shield", + "parent": "gear-shield", "type": "default", "damage_roll": null, "target_count": null, @@ -747,7 +747,7 @@ "model": "api_v2.spellcastingoption", "pk": 4794, "fields": { - "spell": "gift-of-azathoth", + "parent": "gift-of-azathoth", "type": "default", "damage_roll": null, "target_count": null, @@ -759,7 +759,7 @@ "model": "api_v2.spellcastingoption", "pk": 4796, "fields": { - "spell": "gift-of-azathoth", + "parent": "gift-of-azathoth", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -771,7 +771,7 @@ "model": "api_v2.spellcastingoption", "pk": 4797, "fields": { - "spell": "gift-of-azathoth", + "parent": "gift-of-azathoth", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -783,7 +783,7 @@ "model": "api_v2.spellcastingoption", "pk": 4798, "fields": { - "spell": "gift-of-azathoth", + "parent": "gift-of-azathoth", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -795,7 +795,7 @@ "model": "api_v2.spellcastingoption", "pk": 4799, "fields": { - "spell": "gift-of-azathoth", + "parent": "gift-of-azathoth", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -807,7 +807,7 @@ "model": "api_v2.spellcastingoption", "pk": 4800, "fields": { - "spell": "gift-of-azathoth", + "parent": "gift-of-azathoth", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -819,7 +819,7 @@ "model": "api_v2.spellcastingoption", "pk": 4801, "fields": { - "spell": "gift-of-azathoth", + "parent": "gift-of-azathoth", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -831,7 +831,7 @@ "model": "api_v2.spellcastingoption", "pk": 4802, "fields": { - "spell": "gift-of-azathoth", + "parent": "gift-of-azathoth", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -843,7 +843,7 @@ "model": "api_v2.spellcastingoption", "pk": 4803, "fields": { - "spell": "greater-ley-pulse", + "parent": "greater-ley-pulse", "type": "default", "damage_roll": null, "target_count": null, @@ -855,7 +855,7 @@ "model": "api_v2.spellcastingoption", "pk": 4805, "fields": { - "spell": "greater-ley-pulse", + "parent": "greater-ley-pulse", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -867,7 +867,7 @@ "model": "api_v2.spellcastingoption", "pk": 4806, "fields": { - "spell": "greater-ley-pulse", + "parent": "greater-ley-pulse", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -879,7 +879,7 @@ "model": "api_v2.spellcastingoption", "pk": 4807, "fields": { - "spell": "gremlins", + "parent": "gremlins", "type": "default", "damage_roll": null, "target_count": null, @@ -891,7 +891,7 @@ "model": "api_v2.spellcastingoption", "pk": 4809, "fields": { - "spell": "gremlins", + "parent": "gremlins", "type": "slot_level_5", "damage_roll": "4d8", "target_count": null, @@ -903,7 +903,7 @@ "model": "api_v2.spellcastingoption", "pk": 4810, "fields": { - "spell": "gremlins", + "parent": "gremlins", "type": "slot_level_6", "damage_roll": "5d8", "target_count": null, @@ -915,7 +915,7 @@ "model": "api_v2.spellcastingoption", "pk": 4811, "fields": { - "spell": "gremlins", + "parent": "gremlins", "type": "slot_level_7", "damage_roll": "6d8", "target_count": null, @@ -927,7 +927,7 @@ "model": "api_v2.spellcastingoption", "pk": 4812, "fields": { - "spell": "gremlins", + "parent": "gremlins", "type": "slot_level_8", "damage_roll": "7d8", "target_count": null, @@ -939,7 +939,7 @@ "model": "api_v2.spellcastingoption", "pk": 4813, "fields": { - "spell": "gremlins", + "parent": "gremlins", "type": "slot_level_9", "damage_roll": "8d8", "target_count": null, @@ -951,7 +951,7 @@ "model": "api_v2.spellcastingoption", "pk": 4814, "fields": { - "spell": "grinding-gears", + "parent": "grinding-gears", "type": "default", "damage_roll": null, "target_count": null, @@ -963,7 +963,7 @@ "model": "api_v2.spellcastingoption", "pk": 4815, "fields": { - "spell": "hearth-charm", + "parent": "hearth-charm", "type": "default", "damage_roll": null, "target_count": null, @@ -975,7 +975,7 @@ "model": "api_v2.spellcastingoption", "pk": 4816, "fields": { - "spell": "hellforging", + "parent": "hellforging", "type": "default", "damage_roll": null, "target_count": null, @@ -987,7 +987,7 @@ "model": "api_v2.spellcastingoption", "pk": 4817, "fields": { - "spell": "hellforging", + "parent": "hellforging", "type": "ritual", "damage_roll": null, "target_count": null, @@ -999,7 +999,7 @@ "model": "api_v2.spellcastingoption", "pk": 4818, "fields": { - "spell": "hods-gift", + "parent": "hods-gift", "type": "default", "damage_roll": null, "target_count": null, @@ -1011,7 +1011,7 @@ "model": "api_v2.spellcastingoption", "pk": 4820, "fields": { - "spell": "hods-gift", + "parent": "hods-gift", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1023,7 +1023,7 @@ "model": "api_v2.spellcastingoption", "pk": 4821, "fields": { - "spell": "hods-gift", + "parent": "hods-gift", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1035,7 +1035,7 @@ "model": "api_v2.spellcastingoption", "pk": 4822, "fields": { - "spell": "hods-gift", + "parent": "hods-gift", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1047,7 +1047,7 @@ "model": "api_v2.spellcastingoption", "pk": 4823, "fields": { - "spell": "hods-gift", + "parent": "hods-gift", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1059,7 +1059,7 @@ "model": "api_v2.spellcastingoption", "pk": 4824, "fields": { - "spell": "imbue-spell", + "parent": "imbue-spell", "type": "default", "damage_roll": null, "target_count": null, @@ -1071,7 +1071,7 @@ "model": "api_v2.spellcastingoption", "pk": 4825, "fields": { - "spell": "imbue-spell", + "parent": "imbue-spell", "type": "ritual", "damage_roll": null, "target_count": null, @@ -1083,7 +1083,7 @@ "model": "api_v2.spellcastingoption", "pk": 4827, "fields": { - "spell": "imbue-spell", + "parent": "imbue-spell", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1095,7 +1095,7 @@ "model": "api_v2.spellcastingoption", "pk": 4828, "fields": { - "spell": "imbue-spell", + "parent": "imbue-spell", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1107,7 +1107,7 @@ "model": "api_v2.spellcastingoption", "pk": 4829, "fields": { - "spell": "imbue-spell", + "parent": "imbue-spell", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1119,7 +1119,7 @@ "model": "api_v2.spellcastingoption", "pk": 4830, "fields": { - "spell": "imbue-spell", + "parent": "imbue-spell", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1131,7 +1131,7 @@ "model": "api_v2.spellcastingoption", "pk": 4831, "fields": { - "spell": "jotuns-jest", + "parent": "jotuns-jest", "type": "default", "damage_roll": null, "target_count": null, @@ -1143,7 +1143,7 @@ "model": "api_v2.spellcastingoption", "pk": 4832, "fields": { - "spell": "land-bond", + "parent": "land-bond", "type": "default", "damage_roll": null, "target_count": null, @@ -1155,7 +1155,7 @@ "model": "api_v2.spellcastingoption", "pk": 4833, "fields": { - "spell": "lesser-ley-pulse", + "parent": "lesser-ley-pulse", "type": "default", "damage_roll": null, "target_count": null, @@ -1167,7 +1167,7 @@ "model": "api_v2.spellcastingoption", "pk": 4835, "fields": { - "spell": "lesser-ley-pulse", + "parent": "lesser-ley-pulse", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1179,7 +1179,7 @@ "model": "api_v2.spellcastingoption", "pk": 4836, "fields": { - "spell": "lesser-ley-pulse", + "parent": "lesser-ley-pulse", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1191,7 +1191,7 @@ "model": "api_v2.spellcastingoption", "pk": 4837, "fields": { - "spell": "lesser-ley-pulse", + "parent": "lesser-ley-pulse", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1203,7 +1203,7 @@ "model": "api_v2.spellcastingoption", "pk": 4838, "fields": { - "spell": "lesser-ley-pulse", + "parent": "lesser-ley-pulse", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1215,7 +1215,7 @@ "model": "api_v2.spellcastingoption", "pk": 4839, "fields": { - "spell": "ley-disruption", + "parent": "ley-disruption", "type": "default", "damage_roll": null, "target_count": null, @@ -1227,7 +1227,7 @@ "model": "api_v2.spellcastingoption", "pk": 4840, "fields": { - "spell": "ley-energy-bolt", + "parent": "ley-energy-bolt", "type": "default", "damage_roll": null, "target_count": null, @@ -1239,7 +1239,7 @@ "model": "api_v2.spellcastingoption", "pk": 4842, "fields": { - "spell": "ley-energy-bolt", + "parent": "ley-energy-bolt", "type": "slot_level_4", "damage_roll": "6d8", "target_count": null, @@ -1251,7 +1251,7 @@ "model": "api_v2.spellcastingoption", "pk": 4843, "fields": { - "spell": "ley-energy-bolt", + "parent": "ley-energy-bolt", "type": "slot_level_5", "damage_roll": "7d8", "target_count": null, @@ -1263,7 +1263,7 @@ "model": "api_v2.spellcastingoption", "pk": 4844, "fields": { - "spell": "ley-energy-bolt", + "parent": "ley-energy-bolt", "type": "slot_level_6", "damage_roll": "8d8", "target_count": null, @@ -1275,7 +1275,7 @@ "model": "api_v2.spellcastingoption", "pk": 4845, "fields": { - "spell": "ley-energy-bolt", + "parent": "ley-energy-bolt", "type": "slot_level_7", "damage_roll": "9d8", "target_count": null, @@ -1287,7 +1287,7 @@ "model": "api_v2.spellcastingoption", "pk": 4846, "fields": { - "spell": "ley-energy-bolt", + "parent": "ley-energy-bolt", "type": "slot_level_8", "damage_roll": "10d8", "target_count": null, @@ -1299,7 +1299,7 @@ "model": "api_v2.spellcastingoption", "pk": 4847, "fields": { - "spell": "ley-energy-bolt", + "parent": "ley-energy-bolt", "type": "slot_level_9", "damage_roll": "11d8", "target_count": null, @@ -1311,7 +1311,7 @@ "model": "api_v2.spellcastingoption", "pk": 4848, "fields": { - "spell": "ley-leech", + "parent": "ley-leech", "type": "default", "damage_roll": null, "target_count": null, @@ -1323,7 +1323,7 @@ "model": "api_v2.spellcastingoption", "pk": 4850, "fields": { - "spell": "ley-leech", + "parent": "ley-leech", "type": "slot_level_6", "damage_roll": "9d10", "target_count": null, @@ -1335,7 +1335,7 @@ "model": "api_v2.spellcastingoption", "pk": 4851, "fields": { - "spell": "ley-leech", + "parent": "ley-leech", "type": "slot_level_7", "damage_roll": "10d10", "target_count": null, @@ -1347,7 +1347,7 @@ "model": "api_v2.spellcastingoption", "pk": 4852, "fields": { - "spell": "ley-leech", + "parent": "ley-leech", "type": "slot_level_8", "damage_roll": "11d10", "target_count": null, @@ -1359,7 +1359,7 @@ "model": "api_v2.spellcastingoption", "pk": 4853, "fields": { - "spell": "ley-leech", + "parent": "ley-leech", "type": "slot_level_9", "damage_roll": "12d10", "target_count": null, @@ -1371,7 +1371,7 @@ "model": "api_v2.spellcastingoption", "pk": 4854, "fields": { - "spell": "ley-sense", + "parent": "ley-sense", "type": "default", "damage_roll": null, "target_count": null, @@ -1383,7 +1383,7 @@ "model": "api_v2.spellcastingoption", "pk": 4855, "fields": { - "spell": "ley-storm", + "parent": "ley-storm", "type": "default", "damage_roll": null, "target_count": null, @@ -1395,7 +1395,7 @@ "model": "api_v2.spellcastingoption", "pk": 4856, "fields": { - "spell": "ley-surge", + "parent": "ley-surge", "type": "default", "damage_roll": null, "target_count": null, @@ -1407,7 +1407,7 @@ "model": "api_v2.spellcastingoption", "pk": 4857, "fields": { - "spell": "ley-whip", + "parent": "ley-whip", "type": "default", "damage_roll": null, "target_count": null, @@ -1419,7 +1419,7 @@ "model": "api_v2.spellcastingoption", "pk": 4858, "fields": { - "spell": "lokis-gift", + "parent": "lokis-gift", "type": "default", "damage_roll": null, "target_count": null, @@ -1431,7 +1431,7 @@ "model": "api_v2.spellcastingoption", "pk": 4859, "fields": { - "spell": "machine-sacrifice", + "parent": "machine-sacrifice", "type": "default", "damage_roll": null, "target_count": null, @@ -1443,7 +1443,7 @@ "model": "api_v2.spellcastingoption", "pk": 4860, "fields": { - "spell": "machine-speech", + "parent": "machine-speech", "type": "default", "damage_roll": null, "target_count": null, @@ -1455,7 +1455,7 @@ "model": "api_v2.spellcastingoption", "pk": 4861, "fields": { - "spell": "machines-load", + "parent": "machines-load", "type": "default", "damage_roll": null, "target_count": null, @@ -1467,7 +1467,7 @@ "model": "api_v2.spellcastingoption", "pk": 4863, "fields": { - "spell": "machines-load", + "parent": "machines-load", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -1479,7 +1479,7 @@ "model": "api_v2.spellcastingoption", "pk": 4864, "fields": { - "spell": "machines-load", + "parent": "machines-load", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1491,7 +1491,7 @@ "model": "api_v2.spellcastingoption", "pk": 4865, "fields": { - "spell": "machines-load", + "parent": "machines-load", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1503,7 +1503,7 @@ "model": "api_v2.spellcastingoption", "pk": 4866, "fields": { - "spell": "machines-load", + "parent": "machines-load", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1515,7 +1515,7 @@ "model": "api_v2.spellcastingoption", "pk": 4867, "fields": { - "spell": "machines-load", + "parent": "machines-load", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1527,7 +1527,7 @@ "model": "api_v2.spellcastingoption", "pk": 4868, "fields": { - "spell": "machines-load", + "parent": "machines-load", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1539,7 +1539,7 @@ "model": "api_v2.spellcastingoption", "pk": 4869, "fields": { - "spell": "machines-load", + "parent": "machines-load", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1551,7 +1551,7 @@ "model": "api_v2.spellcastingoption", "pk": 4870, "fields": { - "spell": "machines-load", + "parent": "machines-load", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1563,7 +1563,7 @@ "model": "api_v2.spellcastingoption", "pk": 4871, "fields": { - "spell": "mass-blade-ward", + "parent": "mass-blade-ward", "type": "default", "damage_roll": null, "target_count": null, @@ -1575,7 +1575,7 @@ "model": "api_v2.spellcastingoption", "pk": 4872, "fields": { - "spell": "mass-repair-metal", + "parent": "mass-repair-metal", "type": "default", "damage_roll": null, "target_count": null, @@ -1587,7 +1587,7 @@ "model": "api_v2.spellcastingoption", "pk": 4874, "fields": { - "spell": "mass-repair-metal", + "parent": "mass-repair-metal", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1599,7 +1599,7 @@ "model": "api_v2.spellcastingoption", "pk": 4875, "fields": { - "spell": "mass-repair-metal", + "parent": "mass-repair-metal", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1611,7 +1611,7 @@ "model": "api_v2.spellcastingoption", "pk": 4876, "fields": { - "spell": "mass-repair-metal", + "parent": "mass-repair-metal", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1623,7 +1623,7 @@ "model": "api_v2.spellcastingoption", "pk": 4877, "fields": { - "spell": "mass-repair-metal", + "parent": "mass-repair-metal", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1635,7 +1635,7 @@ "model": "api_v2.spellcastingoption", "pk": 4878, "fields": { - "spell": "mechanical-union", + "parent": "mechanical-union", "type": "default", "damage_roll": null, "target_count": null, @@ -1647,7 +1647,7 @@ "model": "api_v2.spellcastingoption", "pk": 4879, "fields": { - "spell": "molechs-blessing", + "parent": "molechs-blessing", "type": "default", "damage_roll": null, "target_count": null, @@ -1659,7 +1659,7 @@ "model": "api_v2.spellcastingoption", "pk": 4880, "fields": { - "spell": "move-the-cosmic-wheel", + "parent": "move-the-cosmic-wheel", "type": "default", "damage_roll": null, "target_count": null, @@ -1671,7 +1671,7 @@ "model": "api_v2.spellcastingoption", "pk": 4881, "fields": { - "spell": "overclock", + "parent": "overclock", "type": "default", "damage_roll": null, "target_count": null, @@ -1683,7 +1683,7 @@ "model": "api_v2.spellcastingoption", "pk": 4882, "fields": { - "spell": "power-word-restore", + "parent": "power-word-restore", "type": "default", "damage_roll": null, "target_count": null, @@ -1695,7 +1695,7 @@ "model": "api_v2.spellcastingoption", "pk": 4883, "fields": { - "spell": "read-memory", + "parent": "read-memory", "type": "default", "damage_roll": null, "target_count": null, @@ -1707,7 +1707,7 @@ "model": "api_v2.spellcastingoption", "pk": 4884, "fields": { - "spell": "repair-metal", + "parent": "repair-metal", "type": "default", "damage_roll": null, "target_count": null, @@ -1719,7 +1719,7 @@ "model": "api_v2.spellcastingoption", "pk": 4886, "fields": { - "spell": "repair-metal", + "parent": "repair-metal", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1731,7 +1731,7 @@ "model": "api_v2.spellcastingoption", "pk": 4887, "fields": { - "spell": "repair-metal", + "parent": "repair-metal", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1743,7 +1743,7 @@ "model": "api_v2.spellcastingoption", "pk": 4888, "fields": { - "spell": "repair-metal", + "parent": "repair-metal", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1755,7 +1755,7 @@ "model": "api_v2.spellcastingoption", "pk": 4889, "fields": { - "spell": "repair-metal", + "parent": "repair-metal", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1767,7 +1767,7 @@ "model": "api_v2.spellcastingoption", "pk": 4890, "fields": { - "spell": "repair-metal", + "parent": "repair-metal", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1779,7 +1779,7 @@ "model": "api_v2.spellcastingoption", "pk": 4891, "fields": { - "spell": "repair-metal", + "parent": "repair-metal", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1791,7 +1791,7 @@ "model": "api_v2.spellcastingoption", "pk": 4892, "fields": { - "spell": "repair-metal", + "parent": "repair-metal", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1803,7 +1803,7 @@ "model": "api_v2.spellcastingoption", "pk": 4893, "fields": { - "spell": "risen-road", + "parent": "risen-road", "type": "default", "damage_roll": null, "target_count": null, @@ -1815,7 +1815,7 @@ "model": "api_v2.spellcastingoption", "pk": 4894, "fields": { - "spell": "robe-of-shards", + "parent": "robe-of-shards", "type": "default", "damage_roll": null, "target_count": null, @@ -1827,7 +1827,7 @@ "model": "api_v2.spellcastingoption", "pk": 4895, "fields": { - "spell": "shadow-realm-gateway", + "parent": "shadow-realm-gateway", "type": "default", "damage_roll": null, "target_count": null, @@ -1839,7 +1839,7 @@ "model": "api_v2.spellcastingoption", "pk": 4896, "fields": { - "spell": "shadow-realm-gateway", + "parent": "shadow-realm-gateway", "type": "ritual", "damage_roll": null, "target_count": null, @@ -1851,7 +1851,7 @@ "model": "api_v2.spellcastingoption", "pk": 4897, "fields": { - "spell": "shield-of-star-and-shadow", + "parent": "shield-of-star-and-shadow", "type": "default", "damage_roll": null, "target_count": null, @@ -1863,7 +1863,7 @@ "model": "api_v2.spellcastingoption", "pk": 4898, "fields": { - "spell": "snowblind-stare", + "parent": "snowblind-stare", "type": "default", "damage_roll": null, "target_count": null, @@ -1875,7 +1875,7 @@ "model": "api_v2.spellcastingoption", "pk": 4899, "fields": { - "spell": "soothsayers-shield", + "parent": "soothsayers-shield", "type": "default", "damage_roll": null, "target_count": null, @@ -1887,7 +1887,7 @@ "model": "api_v2.spellcastingoption", "pk": 4900, "fields": { - "spell": "soul-of-the-machine", + "parent": "soul-of-the-machine", "type": "default", "damage_roll": null, "target_count": null, @@ -1899,7 +1899,7 @@ "model": "api_v2.spellcastingoption", "pk": 4901, "fields": { - "spell": "sphere-of-order", + "parent": "sphere-of-order", "type": "default", "damage_roll": null, "target_count": null, @@ -1911,7 +1911,7 @@ "model": "api_v2.spellcastingoption", "pk": 4902, "fields": { - "spell": "spire-of-stone", + "parent": "spire-of-stone", "type": "default", "damage_roll": null, "target_count": null, @@ -1923,7 +1923,7 @@ "model": "api_v2.spellcastingoption", "pk": 4903, "fields": { - "spell": "strength-of-the-underworld", + "parent": "strength-of-the-underworld", "type": "default", "damage_roll": null, "target_count": null, @@ -1935,7 +1935,7 @@ "model": "api_v2.spellcastingoption", "pk": 4904, "fields": { - "spell": "summon-old-ones-avatar", + "parent": "summon-old-ones-avatar", "type": "default", "damage_roll": null, "target_count": null, @@ -1947,7 +1947,7 @@ "model": "api_v2.spellcastingoption", "pk": 4905, "fields": { - "spell": "summon-old-ones-avatar", + "parent": "summon-old-ones-avatar", "type": "ritual", "damage_roll": null, "target_count": null, @@ -1959,7 +1959,7 @@ "model": "api_v2.spellcastingoption", "pk": 4906, "fields": { - "spell": "tick-stop", + "parent": "tick-stop", "type": "default", "damage_roll": null, "target_count": null, @@ -1971,7 +1971,7 @@ "model": "api_v2.spellcastingoption", "pk": 4907, "fields": { - "spell": "timeless-engine", + "parent": "timeless-engine", "type": "default", "damage_roll": null, "target_count": null, @@ -1983,7 +1983,7 @@ "model": "api_v2.spellcastingoption", "pk": 4908, "fields": { - "spell": "winding-key", + "parent": "winding-key", "type": "default", "damage_roll": null, "target_count": null, @@ -1995,7 +1995,7 @@ "model": "api_v2.spellcastingoption", "pk": 4909, "fields": { - "spell": "wotans-rede", + "parent": "wotans-rede", "type": "default", "damage_roll": null, "target_count": null, @@ -2007,7 +2007,7 @@ "model": "api_v2.spellcastingoption", "pk": 4910, "fields": { - "spell": "wotans-rede", + "parent": "wotans-rede", "type": "ritual", "damage_roll": null, "target_count": null, @@ -2019,7 +2019,7 @@ "model": "api_v2.spellcastingoption", "pk": 4911, "fields": { - "spell": "write-memory", + "parent": "write-memory", "type": "default", "damage_roll": null, "target_count": null, diff --git a/data/v2/kobold-press/kp/SpellCastingOption.json b/data/v2/kobold-press/kp/SpellCastingOption.json index 32ff66f3..e52db952 100644 --- a/data/v2/kobold-press/kp/SpellCastingOption.json +++ b/data/v2/kobold-press/kp/SpellCastingOption.json @@ -3,7 +3,7 @@ "model": "api_v2.spellcastingoption", "pk": 4912, "fields": { - "spell": "ambush", + "parent": "ambush", "type": "default", "damage_roll": null, "target_count": null, @@ -15,7 +15,7 @@ "model": "api_v2.spellcastingoption", "pk": 4914, "fields": { - "spell": "ambush", + "parent": "ambush", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -27,7 +27,7 @@ "model": "api_v2.spellcastingoption", "pk": 4915, "fields": { - "spell": "ambush", + "parent": "ambush", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -39,7 +39,7 @@ "model": "api_v2.spellcastingoption", "pk": 4916, "fields": { - "spell": "ambush", + "parent": "ambush", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -51,7 +51,7 @@ "model": "api_v2.spellcastingoption", "pk": 4917, "fields": { - "spell": "ambush", + "parent": "ambush", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -63,7 +63,7 @@ "model": "api_v2.spellcastingoption", "pk": 4918, "fields": { - "spell": "ambush", + "parent": "ambush", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -75,7 +75,7 @@ "model": "api_v2.spellcastingoption", "pk": 4919, "fields": { - "spell": "ambush", + "parent": "ambush", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -87,7 +87,7 @@ "model": "api_v2.spellcastingoption", "pk": 4920, "fields": { - "spell": "ambush", + "parent": "ambush", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -99,7 +99,7 @@ "model": "api_v2.spellcastingoption", "pk": 4921, "fields": { - "spell": "ambush", + "parent": "ambush", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -111,7 +111,7 @@ "model": "api_v2.spellcastingoption", "pk": 4922, "fields": { - "spell": "blood-strike", + "parent": "blood-strike", "type": "default", "damage_roll": null, "target_count": null, @@ -123,7 +123,7 @@ "model": "api_v2.spellcastingoption", "pk": 4923, "fields": { - "spell": "blood-strike", + "parent": "blood-strike", "type": "ritual", "damage_roll": null, "target_count": null, @@ -135,7 +135,7 @@ "model": "api_v2.spellcastingoption", "pk": 4924, "fields": { - "spell": "conjure-manabane-swarm", + "parent": "conjure-manabane-swarm", "type": "default", "damage_roll": null, "target_count": null, @@ -147,7 +147,7 @@ "model": "api_v2.spellcastingoption", "pk": 4925, "fields": { - "spell": "curse-of-formlessness", + "parent": "curse-of-formlessness", "type": "default", "damage_roll": null, "target_count": null, @@ -159,7 +159,7 @@ "model": "api_v2.spellcastingoption", "pk": 4926, "fields": { - "spell": "delay-passing", + "parent": "delay-passing", "type": "default", "damage_roll": null, "target_count": null, @@ -171,7 +171,7 @@ "model": "api_v2.spellcastingoption", "pk": 4927, "fields": { - "spell": "doom-of-ancient-decrepitude", + "parent": "doom-of-ancient-decrepitude", "type": "default", "damage_roll": null, "target_count": null, @@ -183,7 +183,7 @@ "model": "api_v2.spellcastingoption", "pk": 4928, "fields": { - "spell": "doom-of-voracity", + "parent": "doom-of-voracity", "type": "default", "damage_roll": null, "target_count": null, @@ -195,7 +195,7 @@ "model": "api_v2.spellcastingoption", "pk": 4930, "fields": { - "spell": "doom-of-voracity", + "parent": "doom-of-voracity", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -207,7 +207,7 @@ "model": "api_v2.spellcastingoption", "pk": 4931, "fields": { - "spell": "doom-of-voracity", + "parent": "doom-of-voracity", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -219,7 +219,7 @@ "model": "api_v2.spellcastingoption", "pk": 4932, "fields": { - "spell": "doom-of-voracity", + "parent": "doom-of-voracity", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -231,7 +231,7 @@ "model": "api_v2.spellcastingoption", "pk": 4933, "fields": { - "spell": "doom-of-voracity", + "parent": "doom-of-voracity", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -243,7 +243,7 @@ "model": "api_v2.spellcastingoption", "pk": 4934, "fields": { - "spell": "doom-of-voracity", + "parent": "doom-of-voracity", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -255,7 +255,7 @@ "model": "api_v2.spellcastingoption", "pk": 4935, "fields": { - "spell": "doom-of-voracity", + "parent": "doom-of-voracity", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -267,7 +267,7 @@ "model": "api_v2.spellcastingoption", "pk": 4936, "fields": { - "spell": "feed-the-worms", + "parent": "feed-the-worms", "type": "default", "damage_roll": null, "target_count": null, @@ -279,7 +279,7 @@ "model": "api_v2.spellcastingoption", "pk": 4937, "fields": { - "spell": "greater-ley-protection", + "parent": "greater-ley-protection", "type": "default", "damage_roll": null, "target_count": null, @@ -291,7 +291,7 @@ "model": "api_v2.spellcastingoption", "pk": 4939, "fields": { - "spell": "greater-ley-protection", + "parent": "greater-ley-protection", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -303,7 +303,7 @@ "model": "api_v2.spellcastingoption", "pk": 4940, "fields": { - "spell": "greater-ley-protection", + "parent": "greater-ley-protection", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -315,7 +315,7 @@ "model": "api_v2.spellcastingoption", "pk": 4941, "fields": { - "spell": "hirvsths-call", + "parent": "hirvsths-call", "type": "default", "damage_roll": null, "target_count": null, @@ -327,7 +327,7 @@ "model": "api_v2.spellcastingoption", "pk": 4943, "fields": { - "spell": "hirvsths-call", + "parent": "hirvsths-call", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -339,7 +339,7 @@ "model": "api_v2.spellcastingoption", "pk": 4944, "fields": { - "spell": "hirvsths-call", + "parent": "hirvsths-call", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -351,7 +351,7 @@ "model": "api_v2.spellcastingoption", "pk": 4945, "fields": { - "spell": "hirvsths-call", + "parent": "hirvsths-call", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -363,7 +363,7 @@ "model": "api_v2.spellcastingoption", "pk": 4946, "fields": { - "spell": "hirvsths-call", + "parent": "hirvsths-call", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -375,7 +375,7 @@ "model": "api_v2.spellcastingoption", "pk": 4947, "fields": { - "spell": "hirvsths-call", + "parent": "hirvsths-call", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -387,7 +387,7 @@ "model": "api_v2.spellcastingoption", "pk": 4948, "fields": { - "spell": "incantation-of-lies-made-truth", + "parent": "incantation-of-lies-made-truth", "type": "default", "damage_roll": null, "target_count": null, @@ -399,7 +399,7 @@ "model": "api_v2.spellcastingoption", "pk": 4949, "fields": { - "spell": "incantation-of-lies-made-truth", + "parent": "incantation-of-lies-made-truth", "type": "ritual", "damage_roll": null, "target_count": null, @@ -411,7 +411,7 @@ "model": "api_v2.spellcastingoption", "pk": 4950, "fields": { - "spell": "jeweled-fissure", + "parent": "jeweled-fissure", "type": "default", "damage_roll": null, "target_count": null, @@ -423,7 +423,7 @@ "model": "api_v2.spellcastingoption", "pk": 4951, "fields": { - "spell": "lesser-ley-protection", + "parent": "lesser-ley-protection", "type": "default", "damage_roll": null, "target_count": null, @@ -435,7 +435,7 @@ "model": "api_v2.spellcastingoption", "pk": 4953, "fields": { - "spell": "lesser-ley-protection", + "parent": "lesser-ley-protection", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -447,7 +447,7 @@ "model": "api_v2.spellcastingoption", "pk": 4954, "fields": { - "spell": "lesser-ley-protection", + "parent": "lesser-ley-protection", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -459,7 +459,7 @@ "model": "api_v2.spellcastingoption", "pk": 4955, "fields": { - "spell": "lesser-ley-protection", + "parent": "lesser-ley-protection", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -471,7 +471,7 @@ "model": "api_v2.spellcastingoption", "pk": 4956, "fields": { - "spell": "lesser-ley-protection", + "parent": "lesser-ley-protection", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -483,7 +483,7 @@ "model": "api_v2.spellcastingoption", "pk": 4957, "fields": { - "spell": "ley-disturbance", + "parent": "ley-disturbance", "type": "default", "damage_roll": null, "target_count": null, @@ -495,7 +495,7 @@ "model": "api_v2.spellcastingoption", "pk": 4958, "fields": { - "spell": "locate-red-portal", + "parent": "locate-red-portal", "type": "default", "damage_roll": null, "target_count": null, @@ -507,7 +507,7 @@ "model": "api_v2.spellcastingoption", "pk": 4959, "fields": { - "spell": "moons-respite", + "parent": "moons-respite", "type": "default", "damage_roll": null, "target_count": null, @@ -519,7 +519,7 @@ "model": "api_v2.spellcastingoption", "pk": 4960, "fields": { - "spell": "moons-respite", + "parent": "moons-respite", "type": "ritual", "damage_roll": null, "target_count": null, @@ -531,7 +531,7 @@ "model": "api_v2.spellcastingoption", "pk": 4961, "fields": { - "spell": "morphic-flux", + "parent": "morphic-flux", "type": "default", "damage_roll": null, "target_count": null, @@ -543,7 +543,7 @@ "model": "api_v2.spellcastingoption", "pk": 4962, "fields": { - "spell": "open-red-portal", + "parent": "open-red-portal", "type": "default", "damage_roll": null, "target_count": null, @@ -555,7 +555,7 @@ "model": "api_v2.spellcastingoption", "pk": 4963, "fields": { - "spell": "peruns-doom", + "parent": "peruns-doom", "type": "default", "damage_roll": null, "target_count": null, @@ -567,7 +567,7 @@ "model": "api_v2.spellcastingoption", "pk": 4965, "fields": { - "spell": "peruns-doom", + "parent": "peruns-doom", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -579,7 +579,7 @@ "model": "api_v2.spellcastingoption", "pk": 4966, "fields": { - "spell": "peruns-doom", + "parent": "peruns-doom", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -591,7 +591,7 @@ "model": "api_v2.spellcastingoption", "pk": 4967, "fields": { - "spell": "peruns-doom", + "parent": "peruns-doom", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -603,7 +603,7 @@ "model": "api_v2.spellcastingoption", "pk": 4968, "fields": { - "spell": "peruns-doom", + "parent": "peruns-doom", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -615,7 +615,7 @@ "model": "api_v2.spellcastingoption", "pk": 4969, "fields": { - "spell": "peruns-doom", + "parent": "peruns-doom", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -627,7 +627,7 @@ "model": "api_v2.spellcastingoption", "pk": 4970, "fields": { - "spell": "peruns-doom", + "parent": "peruns-doom", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -639,7 +639,7 @@ "model": "api_v2.spellcastingoption", "pk": 4971, "fields": { - "spell": "reset-red-portal", + "parent": "reset-red-portal", "type": "default", "damage_roll": null, "target_count": null, @@ -651,7 +651,7 @@ "model": "api_v2.spellcastingoption", "pk": 4973, "fields": { - "spell": "reset-red-portal", + "parent": "reset-red-portal", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -663,7 +663,7 @@ "model": "api_v2.spellcastingoption", "pk": 4974, "fields": { - "spell": "reset-red-portal", + "parent": "reset-red-portal", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -675,7 +675,7 @@ "model": "api_v2.spellcastingoption", "pk": 4975, "fields": { - "spell": "reset-red-portal", + "parent": "reset-red-portal", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -687,7 +687,7 @@ "model": "api_v2.spellcastingoption", "pk": 4976, "fields": { - "spell": "reset-red-portal", + "parent": "reset-red-portal", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -699,7 +699,7 @@ "model": "api_v2.spellcastingoption", "pk": 4977, "fields": { - "spell": "sanguine-spear", + "parent": "sanguine-spear", "type": "default", "damage_roll": null, "target_count": null, @@ -711,7 +711,7 @@ "model": "api_v2.spellcastingoption", "pk": 4979, "fields": { - "spell": "sanguine-spear", + "parent": "sanguine-spear", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -723,7 +723,7 @@ "model": "api_v2.spellcastingoption", "pk": 4980, "fields": { - "spell": "sanguine-spear", + "parent": "sanguine-spear", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -735,7 +735,7 @@ "model": "api_v2.spellcastingoption", "pk": 4981, "fields": { - "spell": "sanguine-spear", + "parent": "sanguine-spear", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -747,7 +747,7 @@ "model": "api_v2.spellcastingoption", "pk": 4982, "fields": { - "spell": "sanguine-spear", + "parent": "sanguine-spear", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -759,7 +759,7 @@ "model": "api_v2.spellcastingoption", "pk": 4983, "fields": { - "spell": "sanguine-spear", + "parent": "sanguine-spear", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -771,7 +771,7 @@ "model": "api_v2.spellcastingoption", "pk": 4984, "fields": { - "spell": "sanguine-spear", + "parent": "sanguine-spear", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -783,7 +783,7 @@ "model": "api_v2.spellcastingoption", "pk": 4985, "fields": { - "spell": "sanguine-spear", + "parent": "sanguine-spear", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -795,7 +795,7 @@ "model": "api_v2.spellcastingoption", "pk": 4986, "fields": { - "spell": "scattered-images", + "parent": "scattered-images", "type": "default", "damage_roll": null, "target_count": null, @@ -807,7 +807,7 @@ "model": "api_v2.spellcastingoption", "pk": 4987, "fields": { - "spell": "seal-red-portal", + "parent": "seal-red-portal", "type": "default", "damage_roll": null, "target_count": null, @@ -819,7 +819,7 @@ "model": "api_v2.spellcastingoption", "pk": 4988, "fields": { - "spell": "selfish-wish", + "parent": "selfish-wish", "type": "default", "damage_roll": null, "target_count": null, @@ -831,7 +831,7 @@ "model": "api_v2.spellcastingoption", "pk": 4989, "fields": { - "spell": "shadow-spawn", + "parent": "shadow-spawn", "type": "default", "damage_roll": null, "target_count": null, @@ -843,7 +843,7 @@ "model": "api_v2.spellcastingoption", "pk": 4990, "fields": { - "spell": "shadow-tree", + "parent": "shadow-tree", "type": "default", "damage_roll": null, "target_count": null, @@ -855,7 +855,7 @@ "model": "api_v2.spellcastingoption", "pk": 4991, "fields": { - "spell": "shadows-brand", + "parent": "shadows-brand", "type": "default", "damage_roll": null, "target_count": null, @@ -867,7 +867,7 @@ "model": "api_v2.spellcastingoption", "pk": 4992, "fields": { - "spell": "stigmata-of-the-red-goddess", + "parent": "stigmata-of-the-red-goddess", "type": "default", "damage_roll": null, "target_count": null, @@ -879,7 +879,7 @@ "model": "api_v2.spellcastingoption", "pk": 4994, "fields": { - "spell": "stigmata-of-the-red-goddess", + "parent": "stigmata-of-the-red-goddess", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -891,7 +891,7 @@ "model": "api_v2.spellcastingoption", "pk": 4995, "fields": { - "spell": "stigmata-of-the-red-goddess", + "parent": "stigmata-of-the-red-goddess", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -903,7 +903,7 @@ "model": "api_v2.spellcastingoption", "pk": 4996, "fields": { - "spell": "stigmata-of-the-red-goddess", + "parent": "stigmata-of-the-red-goddess", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -915,7 +915,7 @@ "model": "api_v2.spellcastingoption", "pk": 4997, "fields": { - "spell": "stigmata-of-the-red-goddess", + "parent": "stigmata-of-the-red-goddess", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -927,7 +927,7 @@ "model": "api_v2.spellcastingoption", "pk": 4998, "fields": { - "spell": "stigmata-of-the-red-goddess", + "parent": "stigmata-of-the-red-goddess", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -939,7 +939,7 @@ "model": "api_v2.spellcastingoption", "pk": 4999, "fields": { - "spell": "stigmata-of-the-red-goddess", + "parent": "stigmata-of-the-red-goddess", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -951,7 +951,7 @@ "model": "api_v2.spellcastingoption", "pk": 5000, "fields": { - "spell": "stigmata-of-the-red-goddess", + "parent": "stigmata-of-the-red-goddess", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -963,7 +963,7 @@ "model": "api_v2.spellcastingoption", "pk": 5001, "fields": { - "spell": "the-black-gods-blessing", + "parent": "the-black-gods-blessing", "type": "default", "damage_roll": null, "target_count": null, @@ -975,7 +975,7 @@ "model": "api_v2.spellcastingoption", "pk": 5002, "fields": { - "spell": "the-black-gods-blessing", + "parent": "the-black-gods-blessing", "type": "ritual", "damage_roll": null, "target_count": null, @@ -987,7 +987,7 @@ "model": "api_v2.spellcastingoption", "pk": 5003, "fields": { - "spell": "wield-soul", + "parent": "wield-soul", "type": "default", "damage_roll": null, "target_count": null, @@ -999,7 +999,7 @@ "model": "api_v2.spellcastingoption", "pk": 5004, "fields": { - "spell": "winged-spies", + "parent": "winged-spies", "type": "default", "damage_roll": null, "target_count": null, diff --git a/data/v2/kobold-press/toh/SpellCastingOption.json b/data/v2/kobold-press/toh/SpellCastingOption.json index 984d7a76..91074310 100644 --- a/data/v2/kobold-press/toh/SpellCastingOption.json +++ b/data/v2/kobold-press/toh/SpellCastingOption.json @@ -3,7 +3,7 @@ "model": "api_v2.spellcastingoption", "pk": 1, "fields": { - "spell": "ambush-chute", + "parent": "ambush-chute", "type": "default", "damage_roll": null, "target_count": null, @@ -15,7 +15,7 @@ "model": "api_v2.spellcastingoption", "pk": 3, "fields": { - "spell": "ambush-chute", + "parent": "ambush-chute", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -27,7 +27,7 @@ "model": "api_v2.spellcastingoption", "pk": 4, "fields": { - "spell": "ambush-chute", + "parent": "ambush-chute", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -39,7 +39,7 @@ "model": "api_v2.spellcastingoption", "pk": 5, "fields": { - "spell": "ambush-chute", + "parent": "ambush-chute", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -51,7 +51,7 @@ "model": "api_v2.spellcastingoption", "pk": 6, "fields": { - "spell": "ambush-chute", + "parent": "ambush-chute", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -63,7 +63,7 @@ "model": "api_v2.spellcastingoption", "pk": 7, "fields": { - "spell": "ambush-chute", + "parent": "ambush-chute", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -75,7 +75,7 @@ "model": "api_v2.spellcastingoption", "pk": 8, "fields": { - "spell": "ambush-chute", + "parent": "ambush-chute", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -87,7 +87,7 @@ "model": "api_v2.spellcastingoption", "pk": 9, "fields": { - "spell": "armored-formation", + "parent": "armored-formation", "type": "default", "damage_roll": null, "target_count": null, @@ -99,7 +99,7 @@ "model": "api_v2.spellcastingoption", "pk": 10, "fields": { - "spell": "babble", + "parent": "babble", "type": "default", "damage_roll": null, "target_count": null, @@ -111,7 +111,7 @@ "model": "api_v2.spellcastingoption", "pk": 11, "fields": { - "spell": "battle-mind", + "parent": "battle-mind", "type": "default", "damage_roll": null, "target_count": null, @@ -123,7 +123,7 @@ "model": "api_v2.spellcastingoption", "pk": 12, "fields": { - "spell": "battle-mind", + "parent": "battle-mind", "type": "ritual", "damage_roll": null, "target_count": null, @@ -135,7 +135,7 @@ "model": "api_v2.spellcastingoption", "pk": 13, "fields": { - "spell": "beast-within", + "parent": "beast-within", "type": "default", "damage_roll": null, "target_count": null, @@ -147,7 +147,7 @@ "model": "api_v2.spellcastingoption", "pk": 15, "fields": { - "spell": "beast-within", + "parent": "beast-within", "type": "slot_level_5", "damage_roll": null, "target_count": 2, @@ -159,7 +159,7 @@ "model": "api_v2.spellcastingoption", "pk": 16, "fields": { - "spell": "beast-within", + "parent": "beast-within", "type": "slot_level_6", "damage_roll": null, "target_count": 3, @@ -171,7 +171,7 @@ "model": "api_v2.spellcastingoption", "pk": 17, "fields": { - "spell": "beast-within", + "parent": "beast-within", "type": "slot_level_7", "damage_roll": null, "target_count": 4, @@ -183,7 +183,7 @@ "model": "api_v2.spellcastingoption", "pk": 18, "fields": { - "spell": "beast-within", + "parent": "beast-within", "type": "slot_level_8", "damage_roll": null, "target_count": 5, @@ -195,7 +195,7 @@ "model": "api_v2.spellcastingoption", "pk": 19, "fields": { - "spell": "beast-within", + "parent": "beast-within", "type": "slot_level_9", "damage_roll": null, "target_count": 6, @@ -207,7 +207,7 @@ "model": "api_v2.spellcastingoption", "pk": 20, "fields": { - "spell": "betraying-bauble", + "parent": "betraying-bauble", "type": "default", "damage_roll": null, "target_count": null, @@ -219,7 +219,7 @@ "model": "api_v2.spellcastingoption", "pk": 21, "fields": { - "spell": "bloodlust", + "parent": "bloodlust", "type": "default", "damage_roll": null, "target_count": null, @@ -231,7 +231,7 @@ "model": "api_v2.spellcastingoption", "pk": 22, "fields": { - "spell": "blunted-edge", + "parent": "blunted-edge", "type": "default", "damage_roll": null, "target_count": null, @@ -243,7 +243,7 @@ "model": "api_v2.spellcastingoption", "pk": 24, "fields": { - "spell": "blunted-edge", + "parent": "blunted-edge", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -255,7 +255,7 @@ "model": "api_v2.spellcastingoption", "pk": 25, "fields": { - "spell": "blunted-edge", + "parent": "blunted-edge", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -267,7 +267,7 @@ "model": "api_v2.spellcastingoption", "pk": 26, "fields": { - "spell": "blunted-edge", + "parent": "blunted-edge", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -279,7 +279,7 @@ "model": "api_v2.spellcastingoption", "pk": 27, "fields": { - "spell": "blunted-edge", + "parent": "blunted-edge", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -291,7 +291,7 @@ "model": "api_v2.spellcastingoption", "pk": 28, "fields": { - "spell": "blunted-edge", + "parent": "blunted-edge", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -303,7 +303,7 @@ "model": "api_v2.spellcastingoption", "pk": 29, "fields": { - "spell": "blunted-edge", + "parent": "blunted-edge", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -315,7 +315,7 @@ "model": "api_v2.spellcastingoption", "pk": 30, "fields": { - "spell": "bolster-fortifications", + "parent": "bolster-fortifications", "type": "default", "damage_roll": null, "target_count": null, @@ -327,7 +327,7 @@ "model": "api_v2.spellcastingoption", "pk": 32, "fields": { - "spell": "bolster-fortifications", + "parent": "bolster-fortifications", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -339,7 +339,7 @@ "model": "api_v2.spellcastingoption", "pk": 33, "fields": { - "spell": "bolster-fortifications", + "parent": "bolster-fortifications", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -351,7 +351,7 @@ "model": "api_v2.spellcastingoption", "pk": 34, "fields": { - "spell": "bolster-fortifications", + "parent": "bolster-fortifications", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -363,7 +363,7 @@ "model": "api_v2.spellcastingoption", "pk": 35, "fields": { - "spell": "bolster-fortifications", + "parent": "bolster-fortifications", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -375,7 +375,7 @@ "model": "api_v2.spellcastingoption", "pk": 36, "fields": { - "spell": "bolster-fortifications", + "parent": "bolster-fortifications", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -387,7 +387,7 @@ "model": "api_v2.spellcastingoption", "pk": 37, "fields": { - "spell": "bolster-fortifications", + "parent": "bolster-fortifications", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -399,7 +399,7 @@ "model": "api_v2.spellcastingoption", "pk": 38, "fields": { - "spell": "bound-haze", + "parent": "bound-haze", "type": "default", "damage_roll": null, "target_count": null, @@ -411,7 +411,7 @@ "model": "api_v2.spellcastingoption", "pk": 40, "fields": { - "spell": "bound-haze", + "parent": "bound-haze", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -423,7 +423,7 @@ "model": "api_v2.spellcastingoption", "pk": 41, "fields": { - "spell": "bound-haze", + "parent": "bound-haze", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -435,7 +435,7 @@ "model": "api_v2.spellcastingoption", "pk": 42, "fields": { - "spell": "bound-haze", + "parent": "bound-haze", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -447,7 +447,7 @@ "model": "api_v2.spellcastingoption", "pk": 43, "fields": { - "spell": "bound-haze", + "parent": "bound-haze", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -459,7 +459,7 @@ "model": "api_v2.spellcastingoption", "pk": 44, "fields": { - "spell": "bound-haze", + "parent": "bound-haze", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -471,7 +471,7 @@ "model": "api_v2.spellcastingoption", "pk": 45, "fields": { - "spell": "bound-haze", + "parent": "bound-haze", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -483,7 +483,7 @@ "model": "api_v2.spellcastingoption", "pk": 46, "fields": { - "spell": "burst-stone", + "parent": "burst-stone", "type": "default", "damage_roll": null, "target_count": null, @@ -495,7 +495,7 @@ "model": "api_v2.spellcastingoption", "pk": 48, "fields": { - "spell": "burst-stone", + "parent": "burst-stone", "type": "slot_level_4", "damage_roll": "5d8", "target_count": null, @@ -507,7 +507,7 @@ "model": "api_v2.spellcastingoption", "pk": 49, "fields": { - "spell": "burst-stone", + "parent": "burst-stone", "type": "slot_level_5", "damage_roll": "6d8", "target_count": null, @@ -519,7 +519,7 @@ "model": "api_v2.spellcastingoption", "pk": 50, "fields": { - "spell": "burst-stone", + "parent": "burst-stone", "type": "slot_level_6", "damage_roll": "7d8", "target_count": null, @@ -531,7 +531,7 @@ "model": "api_v2.spellcastingoption", "pk": 51, "fields": { - "spell": "burst-stone", + "parent": "burst-stone", "type": "slot_level_7", "damage_roll": "8d8", "target_count": null, @@ -543,7 +543,7 @@ "model": "api_v2.spellcastingoption", "pk": 52, "fields": { - "spell": "burst-stone", + "parent": "burst-stone", "type": "slot_level_8", "damage_roll": "9d8", "target_count": null, @@ -555,7 +555,7 @@ "model": "api_v2.spellcastingoption", "pk": 53, "fields": { - "spell": "burst-stone", + "parent": "burst-stone", "type": "slot_level_9", "damage_roll": "10d8", "target_count": null, @@ -567,7 +567,7 @@ "model": "api_v2.spellcastingoption", "pk": 54, "fields": { - "spell": "butterfly-effect", + "parent": "butterfly-effect", "type": "default", "damage_roll": null, "target_count": null, @@ -579,7 +579,7 @@ "model": "api_v2.spellcastingoption", "pk": 56, "fields": { - "spell": "butterfly-effect", + "parent": "butterfly-effect", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -591,7 +591,7 @@ "model": "api_v2.spellcastingoption", "pk": 57, "fields": { - "spell": "butterfly-effect", + "parent": "butterfly-effect", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -603,7 +603,7 @@ "model": "api_v2.spellcastingoption", "pk": 58, "fields": { - "spell": "butterfly-effect", + "parent": "butterfly-effect", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -615,7 +615,7 @@ "model": "api_v2.spellcastingoption", "pk": 59, "fields": { - "spell": "butterfly-effect", + "parent": "butterfly-effect", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -627,7 +627,7 @@ "model": "api_v2.spellcastingoption", "pk": 60, "fields": { - "spell": "butterfly-effect", + "parent": "butterfly-effect", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -639,7 +639,7 @@ "model": "api_v2.spellcastingoption", "pk": 61, "fields": { - "spell": "butterfly-effect", + "parent": "butterfly-effect", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -651,7 +651,7 @@ "model": "api_v2.spellcastingoption", "pk": 62, "fields": { - "spell": "butterfly-effect", + "parent": "butterfly-effect", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -663,7 +663,7 @@ "model": "api_v2.spellcastingoption", "pk": 63, "fields": { - "spell": "calm-beasts", + "parent": "calm-beasts", "type": "default", "damage_roll": null, "target_count": null, @@ -675,7 +675,7 @@ "model": "api_v2.spellcastingoption", "pk": 64, "fields": { - "spell": "clear-the-board", + "parent": "clear-the-board", "type": "default", "damage_roll": null, "target_count": null, @@ -687,7 +687,7 @@ "model": "api_v2.spellcastingoption", "pk": 65, "fields": { - "spell": "conjure-construct", + "parent": "conjure-construct", "type": "default", "damage_roll": null, "target_count": null, @@ -699,7 +699,7 @@ "model": "api_v2.spellcastingoption", "pk": 67, "fields": { - "spell": "conjure-construct", + "parent": "conjure-construct", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -711,7 +711,7 @@ "model": "api_v2.spellcastingoption", "pk": 68, "fields": { - "spell": "conjure-construct", + "parent": "conjure-construct", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -723,7 +723,7 @@ "model": "api_v2.spellcastingoption", "pk": 69, "fields": { - "spell": "conjure-construct", + "parent": "conjure-construct", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -735,7 +735,7 @@ "model": "api_v2.spellcastingoption", "pk": 70, "fields": { - "spell": "conjure-spectral-allies", + "parent": "conjure-spectral-allies", "type": "default", "damage_roll": null, "target_count": null, @@ -747,7 +747,7 @@ "model": "api_v2.spellcastingoption", "pk": 72, "fields": { - "spell": "conjure-spectral-allies", + "parent": "conjure-spectral-allies", "type": "slot_level_8", "damage_roll": "7d10", "target_count": null, @@ -759,7 +759,7 @@ "model": "api_v2.spellcastingoption", "pk": 73, "fields": { - "spell": "conjure-spectral-allies", + "parent": "conjure-spectral-allies", "type": "slot_level_9", "damage_roll": "8d10", "target_count": null, @@ -771,7 +771,7 @@ "model": "api_v2.spellcastingoption", "pk": 74, "fields": { - "spell": "convey-inner-peace", + "parent": "convey-inner-peace", "type": "default", "damage_roll": null, "target_count": null, @@ -783,7 +783,7 @@ "model": "api_v2.spellcastingoption", "pk": 75, "fields": { - "spell": "crown-of-thorns", + "parent": "crown-of-thorns", "type": "default", "damage_roll": null, "target_count": null, @@ -795,7 +795,7 @@ "model": "api_v2.spellcastingoption", "pk": 76, "fields": { - "spell": "damaging-intel", + "parent": "damaging-intel", "type": "default", "damage_roll": null, "target_count": null, @@ -807,7 +807,7 @@ "model": "api_v2.spellcastingoption", "pk": 77, "fields": { - "spell": "deadly-salvo", + "parent": "deadly-salvo", "type": "default", "damage_roll": null, "target_count": null, @@ -819,7 +819,7 @@ "model": "api_v2.spellcastingoption", "pk": 78, "fields": { - "spell": "divine-retribution", + "parent": "divine-retribution", "type": "default", "damage_roll": null, "target_count": null, @@ -831,7 +831,7 @@ "model": "api_v2.spellcastingoption", "pk": 80, "fields": { - "spell": "divine-retribution", + "parent": "divine-retribution", "type": "slot_level_2", "damage_roll": "2d8", "target_count": null, @@ -843,7 +843,7 @@ "model": "api_v2.spellcastingoption", "pk": 81, "fields": { - "spell": "divine-retribution", + "parent": "divine-retribution", "type": "slot_level_3", "damage_roll": "3d8", "target_count": null, @@ -855,7 +855,7 @@ "model": "api_v2.spellcastingoption", "pk": 82, "fields": { - "spell": "divine-retribution", + "parent": "divine-retribution", "type": "slot_level_4", "damage_roll": "4d8", "target_count": null, @@ -867,7 +867,7 @@ "model": "api_v2.spellcastingoption", "pk": 83, "fields": { - "spell": "divine-retribution", + "parent": "divine-retribution", "type": "slot_level_5", "damage_roll": "5d8", "target_count": null, @@ -879,7 +879,7 @@ "model": "api_v2.spellcastingoption", "pk": 84, "fields": { - "spell": "divine-retribution", + "parent": "divine-retribution", "type": "slot_level_6", "damage_roll": "6d8", "target_count": null, @@ -891,7 +891,7 @@ "model": "api_v2.spellcastingoption", "pk": 85, "fields": { - "spell": "divine-retribution", + "parent": "divine-retribution", "type": "slot_level_7", "damage_roll": "7d8", "target_count": null, @@ -903,7 +903,7 @@ "model": "api_v2.spellcastingoption", "pk": 86, "fields": { - "spell": "divine-retribution", + "parent": "divine-retribution", "type": "slot_level_8", "damage_roll": "8d8", "target_count": null, @@ -915,7 +915,7 @@ "model": "api_v2.spellcastingoption", "pk": 87, "fields": { - "spell": "divine-retribution", + "parent": "divine-retribution", "type": "slot_level_9", "damage_roll": "9d8", "target_count": null, @@ -927,7 +927,7 @@ "model": "api_v2.spellcastingoption", "pk": 88, "fields": { - "spell": "dreamwine", + "parent": "dreamwine", "type": "default", "damage_roll": null, "target_count": null, @@ -939,7 +939,7 @@ "model": "api_v2.spellcastingoption", "pk": 89, "fields": { - "spell": "emerald-eyes", + "parent": "emerald-eyes", "type": "default", "damage_roll": null, "target_count": null, @@ -951,7 +951,7 @@ "model": "api_v2.spellcastingoption", "pk": 91, "fields": { - "spell": "emerald-eyes", + "parent": "emerald-eyes", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -963,7 +963,7 @@ "model": "api_v2.spellcastingoption", "pk": 92, "fields": { - "spell": "emerald-eyes", + "parent": "emerald-eyes", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -975,7 +975,7 @@ "model": "api_v2.spellcastingoption", "pk": 93, "fields": { - "spell": "emerald-eyes", + "parent": "emerald-eyes", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -987,7 +987,7 @@ "model": "api_v2.spellcastingoption", "pk": 94, "fields": { - "spell": "emerald-eyes", + "parent": "emerald-eyes", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -999,7 +999,7 @@ "model": "api_v2.spellcastingoption", "pk": 95, "fields": { - "spell": "emerald-eyes", + "parent": "emerald-eyes", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -1011,7 +1011,7 @@ "model": "api_v2.spellcastingoption", "pk": 96, "fields": { - "spell": "emerald-eyes", + "parent": "emerald-eyes", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -1023,7 +1023,7 @@ "model": "api_v2.spellcastingoption", "pk": 97, "fields": { - "spell": "enchanted-bloom", + "parent": "enchanted-bloom", "type": "default", "damage_roll": null, "target_count": null, @@ -1035,7 +1035,7 @@ "model": "api_v2.spellcastingoption", "pk": 99, "fields": { - "spell": "enchanted-bloom", + "parent": "enchanted-bloom", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1047,7 +1047,7 @@ "model": "api_v2.spellcastingoption", "pk": 100, "fields": { - "spell": "enchanted-bloom", + "parent": "enchanted-bloom", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1059,7 +1059,7 @@ "model": "api_v2.spellcastingoption", "pk": 101, "fields": { - "spell": "enchanted-bloom", + "parent": "enchanted-bloom", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1071,7 +1071,7 @@ "model": "api_v2.spellcastingoption", "pk": 102, "fields": { - "spell": "enchanted-bloom", + "parent": "enchanted-bloom", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1083,7 +1083,7 @@ "model": "api_v2.spellcastingoption", "pk": 103, "fields": { - "spell": "eruption", + "parent": "eruption", "type": "default", "damage_roll": null, "target_count": null, @@ -1095,7 +1095,7 @@ "model": "api_v2.spellcastingoption", "pk": 104, "fields": { - "spell": "feint", + "parent": "feint", "type": "default", "damage_roll": null, "target_count": null, @@ -1107,7 +1107,7 @@ "model": "api_v2.spellcastingoption", "pk": 105, "fields": { - "spell": "fey-food", + "parent": "fey-food", "type": "default", "damage_roll": null, "target_count": null, @@ -1119,7 +1119,7 @@ "model": "api_v2.spellcastingoption", "pk": 107, "fields": { - "spell": "fey-food", + "parent": "fey-food", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1131,7 +1131,7 @@ "model": "api_v2.spellcastingoption", "pk": 108, "fields": { - "spell": "fey-food", + "parent": "fey-food", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1143,7 +1143,7 @@ "model": "api_v2.spellcastingoption", "pk": 109, "fields": { - "spell": "fey-food", + "parent": "fey-food", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1155,7 +1155,7 @@ "model": "api_v2.spellcastingoption", "pk": 110, "fields": { - "spell": "fey-food", + "parent": "fey-food", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1167,7 +1167,7 @@ "model": "api_v2.spellcastingoption", "pk": 111, "fields": { - "spell": "fey-food", + "parent": "fey-food", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1179,7 +1179,7 @@ "model": "api_v2.spellcastingoption", "pk": 112, "fields": { - "spell": "fey-food", + "parent": "fey-food", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1191,7 +1191,7 @@ "model": "api_v2.spellcastingoption", "pk": 113, "fields": { - "spell": "fey-touched-blade", + "parent": "fey-touched-blade", "type": "default", "damage_roll": null, "target_count": null, @@ -1203,7 +1203,7 @@ "model": "api_v2.spellcastingoption", "pk": 115, "fields": { - "spell": "fey-touched-blade", + "parent": "fey-touched-blade", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1215,7 +1215,7 @@ "model": "api_v2.spellcastingoption", "pk": 116, "fields": { - "spell": "fey-touched-blade", + "parent": "fey-touched-blade", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1227,7 +1227,7 @@ "model": "api_v2.spellcastingoption", "pk": 117, "fields": { - "spell": "fey-touched-blade", + "parent": "fey-touched-blade", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1239,7 +1239,7 @@ "model": "api_v2.spellcastingoption", "pk": 118, "fields": { - "spell": "fey-touched-blade", + "parent": "fey-touched-blade", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1251,7 +1251,7 @@ "model": "api_v2.spellcastingoption", "pk": 119, "fields": { - "spell": "fey-touched-blade", + "parent": "fey-touched-blade", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1263,7 +1263,7 @@ "model": "api_v2.spellcastingoption", "pk": 120, "fields": { - "spell": "fey-touched-blade", + "parent": "fey-touched-blade", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1275,7 +1275,7 @@ "model": "api_v2.spellcastingoption", "pk": 121, "fields": { - "spell": "fey-touched-blade", + "parent": "fey-touched-blade", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1287,7 +1287,7 @@ "model": "api_v2.spellcastingoption", "pk": 122, "fields": { - "spell": "forced-reposition", + "parent": "forced-reposition", "type": "default", "damage_roll": null, "target_count": null, @@ -1299,7 +1299,7 @@ "model": "api_v2.spellcastingoption", "pk": 124, "fields": { - "spell": "forced-reposition", + "parent": "forced-reposition", "type": "slot_level_5", "damage_roll": null, "target_count": 2, @@ -1311,7 +1311,7 @@ "model": "api_v2.spellcastingoption", "pk": 125, "fields": { - "spell": "forced-reposition", + "parent": "forced-reposition", "type": "slot_level_6", "damage_roll": null, "target_count": 3, @@ -1323,7 +1323,7 @@ "model": "api_v2.spellcastingoption", "pk": 126, "fields": { - "spell": "forced-reposition", + "parent": "forced-reposition", "type": "slot_level_7", "damage_roll": null, "target_count": 4, @@ -1335,7 +1335,7 @@ "model": "api_v2.spellcastingoption", "pk": 127, "fields": { - "spell": "forced-reposition", + "parent": "forced-reposition", "type": "slot_level_8", "damage_roll": null, "target_count": 5, @@ -1347,7 +1347,7 @@ "model": "api_v2.spellcastingoption", "pk": 128, "fields": { - "spell": "forced-reposition", + "parent": "forced-reposition", "type": "slot_level_9", "damage_roll": null, "target_count": 6, @@ -1359,7 +1359,7 @@ "model": "api_v2.spellcastingoption", "pk": 129, "fields": { - "spell": "furious-wail", + "parent": "furious-wail", "type": "default", "damage_roll": null, "target_count": null, @@ -1371,7 +1371,7 @@ "model": "api_v2.spellcastingoption", "pk": 130, "fields": { - "spell": "fuse-armor", + "parent": "fuse-armor", "type": "default", "damage_roll": null, "target_count": null, @@ -1383,7 +1383,7 @@ "model": "api_v2.spellcastingoption", "pk": 132, "fields": { - "spell": "fuse-armor", + "parent": "fuse-armor", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -1395,7 +1395,7 @@ "model": "api_v2.spellcastingoption", "pk": 133, "fields": { - "spell": "fuse-armor", + "parent": "fuse-armor", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -1407,7 +1407,7 @@ "model": "api_v2.spellcastingoption", "pk": 134, "fields": { - "spell": "fuse-armor", + "parent": "fuse-armor", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -1419,7 +1419,7 @@ "model": "api_v2.spellcastingoption", "pk": 135, "fields": { - "spell": "fuse-armor", + "parent": "fuse-armor", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -1431,7 +1431,7 @@ "model": "api_v2.spellcastingoption", "pk": 136, "fields": { - "spell": "fuse-armor", + "parent": "fuse-armor", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -1443,7 +1443,7 @@ "model": "api_v2.spellcastingoption", "pk": 137, "fields": { - "spell": "fuse-armor", + "parent": "fuse-armor", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -1455,7 +1455,7 @@ "model": "api_v2.spellcastingoption", "pk": 138, "fields": { - "spell": "fuse-armor", + "parent": "fuse-armor", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -1467,7 +1467,7 @@ "model": "api_v2.spellcastingoption", "pk": 139, "fields": { - "spell": "gale", + "parent": "gale", "type": "default", "damage_roll": null, "target_count": null, @@ -1479,7 +1479,7 @@ "model": "api_v2.spellcastingoption", "pk": 140, "fields": { - "spell": "glare", + "parent": "glare", "type": "default", "damage_roll": null, "target_count": null, @@ -1491,7 +1491,7 @@ "model": "api_v2.spellcastingoption", "pk": 141, "fields": { - "spell": "high-ground", + "parent": "high-ground", "type": "default", "damage_roll": null, "target_count": null, @@ -1503,7 +1503,7 @@ "model": "api_v2.spellcastingoption", "pk": 143, "fields": { - "spell": "high-ground", + "parent": "high-ground", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1515,7 +1515,7 @@ "model": "api_v2.spellcastingoption", "pk": 144, "fields": { - "spell": "high-ground", + "parent": "high-ground", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1527,7 +1527,7 @@ "model": "api_v2.spellcastingoption", "pk": 145, "fields": { - "spell": "high-ground", + "parent": "high-ground", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1539,7 +1539,7 @@ "model": "api_v2.spellcastingoption", "pk": 146, "fields": { - "spell": "high-ground", + "parent": "high-ground", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1551,7 +1551,7 @@ "model": "api_v2.spellcastingoption", "pk": 147, "fields": { - "spell": "high-ground", + "parent": "high-ground", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1563,7 +1563,7 @@ "model": "api_v2.spellcastingoption", "pk": 148, "fields": { - "spell": "high-ground", + "parent": "high-ground", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1575,7 +1575,7 @@ "model": "api_v2.spellcastingoption", "pk": 149, "fields": { - "spell": "immolating-gibbet", + "parent": "immolating-gibbet", "type": "default", "damage_roll": null, "target_count": null, @@ -1587,7 +1587,7 @@ "model": "api_v2.spellcastingoption", "pk": 150, "fields": { - "spell": "inexorable-summons", + "parent": "inexorable-summons", "type": "default", "damage_roll": null, "target_count": null, @@ -1599,7 +1599,7 @@ "model": "api_v2.spellcastingoption", "pk": 151, "fields": { - "spell": "instant-armored-vehicle", + "parent": "instant-armored-vehicle", "type": "default", "damage_roll": null, "target_count": null, @@ -1611,7 +1611,7 @@ "model": "api_v2.spellcastingoption", "pk": 152, "fields": { - "spell": "invested-champion", + "parent": "invested-champion", "type": "default", "damage_roll": null, "target_count": null, @@ -1623,7 +1623,7 @@ "model": "api_v2.spellcastingoption", "pk": 153, "fields": { - "spell": "iron-gut", + "parent": "iron-gut", "type": "default", "damage_roll": null, "target_count": null, @@ -1635,7 +1635,7 @@ "model": "api_v2.spellcastingoption", "pk": 155, "fields": { - "spell": "iron-gut", + "parent": "iron-gut", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -1647,7 +1647,7 @@ "model": "api_v2.spellcastingoption", "pk": 156, "fields": { - "spell": "iron-gut", + "parent": "iron-gut", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -1659,7 +1659,7 @@ "model": "api_v2.spellcastingoption", "pk": 157, "fields": { - "spell": "iron-gut", + "parent": "iron-gut", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -1671,7 +1671,7 @@ "model": "api_v2.spellcastingoption", "pk": 158, "fields": { - "spell": "iron-gut", + "parent": "iron-gut", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -1683,7 +1683,7 @@ "model": "api_v2.spellcastingoption", "pk": 159, "fields": { - "spell": "iron-gut", + "parent": "iron-gut", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -1695,7 +1695,7 @@ "model": "api_v2.spellcastingoption", "pk": 160, "fields": { - "spell": "iron-gut", + "parent": "iron-gut", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -1707,7 +1707,7 @@ "model": "api_v2.spellcastingoption", "pk": 161, "fields": { - "spell": "jagged-forcelance", + "parent": "jagged-forcelance", "type": "default", "damage_roll": null, "target_count": null, @@ -1719,7 +1719,7 @@ "model": "api_v2.spellcastingoption", "pk": 163, "fields": { - "spell": "jagged-forcelance", + "parent": "jagged-forcelance", "type": "slot_level_4", "damage_roll": "8d6", "target_count": null, @@ -1731,7 +1731,7 @@ "model": "api_v2.spellcastingoption", "pk": 164, "fields": { - "spell": "jagged-forcelance", + "parent": "jagged-forcelance", "type": "slot_level_5", "damage_roll": "13d6", "target_count": null, @@ -1743,7 +1743,7 @@ "model": "api_v2.spellcastingoption", "pk": 165, "fields": { - "spell": "jagged-forcelance", + "parent": "jagged-forcelance", "type": "slot_level_6", "damage_roll": "18d6", "target_count": null, @@ -1755,7 +1755,7 @@ "model": "api_v2.spellcastingoption", "pk": 166, "fields": { - "spell": "jagged-forcelance", + "parent": "jagged-forcelance", "type": "slot_level_7", "damage_roll": "23d6", "target_count": null, @@ -1767,7 +1767,7 @@ "model": "api_v2.spellcastingoption", "pk": 167, "fields": { - "spell": "jagged-forcelance", + "parent": "jagged-forcelance", "type": "slot_level_8", "damage_roll": "28d6", "target_count": null, @@ -1779,7 +1779,7 @@ "model": "api_v2.spellcastingoption", "pk": 168, "fields": { - "spell": "jagged-forcelance", + "parent": "jagged-forcelance", "type": "slot_level_9", "damage_roll": "33d6", "target_count": null, @@ -1791,7 +1791,7 @@ "model": "api_v2.spellcastingoption", "pk": 169, "fields": { - "spell": "jarring-growl", + "parent": "jarring-growl", "type": "default", "damage_roll": null, "target_count": null, @@ -1803,7 +1803,7 @@ "model": "api_v2.spellcastingoption", "pk": 170, "fields": { - "spell": "lance", + "parent": "lance", "type": "default", "damage_roll": null, "target_count": null, @@ -1815,7 +1815,7 @@ "model": "api_v2.spellcastingoption", "pk": 171, "fields": { - "spell": "less-fool-i", + "parent": "less-fool-i", "type": "default", "damage_roll": null, "target_count": null, @@ -1827,7 +1827,7 @@ "model": "api_v2.spellcastingoption", "pk": 173, "fields": { - "spell": "less-fool-i", + "parent": "less-fool-i", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -1839,7 +1839,7 @@ "model": "api_v2.spellcastingoption", "pk": 174, "fields": { - "spell": "less-fool-i", + "parent": "less-fool-i", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1851,7 +1851,7 @@ "model": "api_v2.spellcastingoption", "pk": 175, "fields": { - "spell": "less-fool-i", + "parent": "less-fool-i", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1863,7 +1863,7 @@ "model": "api_v2.spellcastingoption", "pk": 176, "fields": { - "spell": "less-fool-i", + "parent": "less-fool-i", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1875,7 +1875,7 @@ "model": "api_v2.spellcastingoption", "pk": 177, "fields": { - "spell": "less-fool-i", + "parent": "less-fool-i", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1887,7 +1887,7 @@ "model": "api_v2.spellcastingoption", "pk": 178, "fields": { - "spell": "less-fool-i", + "parent": "less-fool-i", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1899,7 +1899,7 @@ "model": "api_v2.spellcastingoption", "pk": 179, "fields": { - "spell": "less-fool-i", + "parent": "less-fool-i", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1911,7 +1911,7 @@ "model": "api_v2.spellcastingoption", "pk": 180, "fields": { - "spell": "less-fool-i", + "parent": "less-fool-i", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1923,7 +1923,7 @@ "model": "api_v2.spellcastingoption", "pk": 181, "fields": { - "spell": "life-burst", + "parent": "life-burst", "type": "default", "damage_roll": null, "target_count": null, @@ -1935,7 +1935,7 @@ "model": "api_v2.spellcastingoption", "pk": 182, "fields": { - "spell": "lightless-torch", + "parent": "lightless-torch", "type": "default", "damage_roll": null, "target_count": null, @@ -1947,7 +1947,7 @@ "model": "api_v2.spellcastingoption", "pk": 184, "fields": { - "spell": "lightless-torch", + "parent": "lightless-torch", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -1959,7 +1959,7 @@ "model": "api_v2.spellcastingoption", "pk": 185, "fields": { - "spell": "lightless-torch", + "parent": "lightless-torch", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1971,7 +1971,7 @@ "model": "api_v2.spellcastingoption", "pk": 186, "fields": { - "spell": "lightless-torch", + "parent": "lightless-torch", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1983,7 +1983,7 @@ "model": "api_v2.spellcastingoption", "pk": 187, "fields": { - "spell": "lightless-torch", + "parent": "lightless-torch", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1995,7 +1995,7 @@ "model": "api_v2.spellcastingoption", "pk": 188, "fields": { - "spell": "lightless-torch", + "parent": "lightless-torch", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2007,7 +2007,7 @@ "model": "api_v2.spellcastingoption", "pk": 189, "fields": { - "spell": "lightless-torch", + "parent": "lightless-torch", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2019,7 +2019,7 @@ "model": "api_v2.spellcastingoption", "pk": 190, "fields": { - "spell": "lightless-torch", + "parent": "lightless-torch", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2031,7 +2031,7 @@ "model": "api_v2.spellcastingoption", "pk": 191, "fields": { - "spell": "lightless-torch", + "parent": "lightless-torch", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2043,7 +2043,7 @@ "model": "api_v2.spellcastingoption", "pk": 192, "fields": { - "spell": "long-game", + "parent": "long-game", "type": "default", "damage_roll": null, "target_count": null, @@ -2055,7 +2055,7 @@ "model": "api_v2.spellcastingoption", "pk": 193, "fields": { - "spell": "magma-spray", + "parent": "magma-spray", "type": "default", "damage_roll": null, "target_count": null, @@ -2067,7 +2067,7 @@ "model": "api_v2.spellcastingoption", "pk": 195, "fields": { - "spell": "magma-spray", + "parent": "magma-spray", "type": "slot_level_3", "damage_roll": "4d8", "target_count": null, @@ -2079,7 +2079,7 @@ "model": "api_v2.spellcastingoption", "pk": 196, "fields": { - "spell": "magma-spray", + "parent": "magma-spray", "type": "slot_level_4", "damage_roll": "5d8", "target_count": null, @@ -2091,7 +2091,7 @@ "model": "api_v2.spellcastingoption", "pk": 197, "fields": { - "spell": "magma-spray", + "parent": "magma-spray", "type": "slot_level_5", "damage_roll": "6d8", "target_count": null, @@ -2103,7 +2103,7 @@ "model": "api_v2.spellcastingoption", "pk": 198, "fields": { - "spell": "magma-spray", + "parent": "magma-spray", "type": "slot_level_6", "damage_roll": "7d8", "target_count": null, @@ -2115,7 +2115,7 @@ "model": "api_v2.spellcastingoption", "pk": 199, "fields": { - "spell": "magma-spray", + "parent": "magma-spray", "type": "slot_level_7", "damage_roll": "8d8", "target_count": null, @@ -2127,7 +2127,7 @@ "model": "api_v2.spellcastingoption", "pk": 200, "fields": { - "spell": "magma-spray", + "parent": "magma-spray", "type": "slot_level_8", "damage_roll": "9d8", "target_count": null, @@ -2139,7 +2139,7 @@ "model": "api_v2.spellcastingoption", "pk": 201, "fields": { - "spell": "magma-spray", + "parent": "magma-spray", "type": "slot_level_9", "damage_roll": "10d8", "target_count": null, @@ -2151,7 +2151,7 @@ "model": "api_v2.spellcastingoption", "pk": 202, "fields": { - "spell": "mantle-of-the-brave", + "parent": "mantle-of-the-brave", "type": "default", "damage_roll": null, "target_count": null, @@ -2163,7 +2163,7 @@ "model": "api_v2.spellcastingoption", "pk": 203, "fields": { - "spell": "martyrs-rally", + "parent": "martyrs-rally", "type": "default", "damage_roll": null, "target_count": null, @@ -2175,7 +2175,7 @@ "model": "api_v2.spellcastingoption", "pk": 204, "fields": { - "spell": "mass-faerie-fire", + "parent": "mass-faerie-fire", "type": "default", "damage_roll": null, "target_count": null, @@ -2187,7 +2187,7 @@ "model": "api_v2.spellcastingoption", "pk": 205, "fields": { - "spell": "misdirection", + "parent": "misdirection", "type": "default", "damage_roll": null, "target_count": null, @@ -2199,7 +2199,7 @@ "model": "api_v2.spellcastingoption", "pk": 206, "fields": { - "spell": "mud", + "parent": "mud", "type": "default", "damage_roll": null, "target_count": null, @@ -2211,7 +2211,7 @@ "model": "api_v2.spellcastingoption", "pk": 207, "fields": { - "spell": "muted-foe", + "parent": "muted-foe", "type": "default", "damage_roll": null, "target_count": null, @@ -2223,7 +2223,7 @@ "model": "api_v2.spellcastingoption", "pk": 209, "fields": { - "spell": "muted-foe", + "parent": "muted-foe", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -2235,7 +2235,7 @@ "model": "api_v2.spellcastingoption", "pk": 210, "fields": { - "spell": "muted-foe", + "parent": "muted-foe", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -2247,7 +2247,7 @@ "model": "api_v2.spellcastingoption", "pk": 211, "fields": { - "spell": "muted-foe", + "parent": "muted-foe", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2259,7 +2259,7 @@ "model": "api_v2.spellcastingoption", "pk": 212, "fields": { - "spell": "muted-foe", + "parent": "muted-foe", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2271,7 +2271,7 @@ "model": "api_v2.spellcastingoption", "pk": 213, "fields": { - "spell": "muted-foe", + "parent": "muted-foe", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2283,7 +2283,7 @@ "model": "api_v2.spellcastingoption", "pk": 214, "fields": { - "spell": "muted-foe", + "parent": "muted-foe", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2295,7 +2295,7 @@ "model": "api_v2.spellcastingoption", "pk": 215, "fields": { - "spell": "muted-foe", + "parent": "muted-foe", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2307,7 +2307,7 @@ "model": "api_v2.spellcastingoption", "pk": 216, "fields": { - "spell": "muted-foe", + "parent": "muted-foe", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2319,7 +2319,7 @@ "model": "api_v2.spellcastingoption", "pk": 217, "fields": { - "spell": "never-surrender", + "parent": "never-surrender", "type": "default", "damage_roll": null, "target_count": null, @@ -2331,7 +2331,7 @@ "model": "api_v2.spellcastingoption", "pk": 219, "fields": { - "spell": "never-surrender", + "parent": "never-surrender", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2343,7 +2343,7 @@ "model": "api_v2.spellcastingoption", "pk": 220, "fields": { - "spell": "never-surrender", + "parent": "never-surrender", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2355,7 +2355,7 @@ "model": "api_v2.spellcastingoption", "pk": 221, "fields": { - "spell": "never-surrender", + "parent": "never-surrender", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2367,7 +2367,7 @@ "model": "api_v2.spellcastingoption", "pk": 222, "fields": { - "spell": "never-surrender", + "parent": "never-surrender", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2379,7 +2379,7 @@ "model": "api_v2.spellcastingoption", "pk": 223, "fields": { - "spell": "never-surrender", + "parent": "never-surrender", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2391,7 +2391,7 @@ "model": "api_v2.spellcastingoption", "pk": 224, "fields": { - "spell": "never-surrender", + "parent": "never-surrender", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2403,7 +2403,7 @@ "model": "api_v2.spellcastingoption", "pk": 225, "fields": { - "spell": "oathbound-implement", + "parent": "oathbound-implement", "type": "default", "damage_roll": null, "target_count": null, @@ -2415,7 +2415,7 @@ "model": "api_v2.spellcastingoption", "pk": 226, "fields": { - "spell": "outmaneuver", + "parent": "outmaneuver", "type": "default", "damage_roll": null, "target_count": null, @@ -2427,7 +2427,7 @@ "model": "api_v2.spellcastingoption", "pk": 227, "fields": { - "spell": "oversized-paws", + "parent": "oversized-paws", "type": "default", "damage_roll": null, "target_count": null, @@ -2439,7 +2439,7 @@ "model": "api_v2.spellcastingoption", "pk": 229, "fields": { - "spell": "oversized-paws", + "parent": "oversized-paws", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -2451,7 +2451,7 @@ "model": "api_v2.spellcastingoption", "pk": 230, "fields": { - "spell": "oversized-paws", + "parent": "oversized-paws", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -2463,7 +2463,7 @@ "model": "api_v2.spellcastingoption", "pk": 231, "fields": { - "spell": "oversized-paws", + "parent": "oversized-paws", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -2475,7 +2475,7 @@ "model": "api_v2.spellcastingoption", "pk": 232, "fields": { - "spell": "oversized-paws", + "parent": "oversized-paws", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -2487,7 +2487,7 @@ "model": "api_v2.spellcastingoption", "pk": 233, "fields": { - "spell": "oversized-paws", + "parent": "oversized-paws", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -2499,7 +2499,7 @@ "model": "api_v2.spellcastingoption", "pk": 234, "fields": { - "spell": "oversized-paws", + "parent": "oversized-paws", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -2511,7 +2511,7 @@ "model": "api_v2.spellcastingoption", "pk": 235, "fields": { - "spell": "oversized-paws", + "parent": "oversized-paws", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -2523,7 +2523,7 @@ "model": "api_v2.spellcastingoption", "pk": 236, "fields": { - "spell": "pincer", + "parent": "pincer", "type": "default", "damage_roll": null, "target_count": null, @@ -2535,7 +2535,7 @@ "model": "api_v2.spellcastingoption", "pk": 238, "fields": { - "spell": "pincer", + "parent": "pincer", "type": "slot_level_7", "damage_roll": "6d10", "target_count": null, @@ -2547,7 +2547,7 @@ "model": "api_v2.spellcastingoption", "pk": 239, "fields": { - "spell": "pincer", + "parent": "pincer", "type": "slot_level_8", "damage_roll": "7d10", "target_count": null, @@ -2559,7 +2559,7 @@ "model": "api_v2.spellcastingoption", "pk": 240, "fields": { - "spell": "pincer", + "parent": "pincer", "type": "slot_level_9", "damage_roll": "8d10", "target_count": null, @@ -2571,7 +2571,7 @@ "model": "api_v2.spellcastingoption", "pk": 241, "fields": { - "spell": "pipers-lure", + "parent": "pipers-lure", "type": "default", "damage_roll": null, "target_count": null, @@ -2583,7 +2583,7 @@ "model": "api_v2.spellcastingoption", "pk": 242, "fields": { - "spell": "portal-jaunt", + "parent": "portal-jaunt", "type": "default", "damage_roll": null, "target_count": null, @@ -2595,7 +2595,7 @@ "model": "api_v2.spellcastingoption", "pk": 244, "fields": { - "spell": "portal-jaunt", + "parent": "portal-jaunt", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2607,7 +2607,7 @@ "model": "api_v2.spellcastingoption", "pk": 245, "fields": { - "spell": "portal-jaunt", + "parent": "portal-jaunt", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2619,7 +2619,7 @@ "model": "api_v2.spellcastingoption", "pk": 246, "fields": { - "spell": "portal-jaunt", + "parent": "portal-jaunt", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2631,7 +2631,7 @@ "model": "api_v2.spellcastingoption", "pk": 247, "fields": { - "spell": "portal-jaunt", + "parent": "portal-jaunt", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2643,7 +2643,7 @@ "model": "api_v2.spellcastingoption", "pk": 248, "fields": { - "spell": "portal-jaunt", + "parent": "portal-jaunt", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2655,7 +2655,7 @@ "model": "api_v2.spellcastingoption", "pk": 249, "fields": { - "spell": "portal-jaunt", + "parent": "portal-jaunt", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2667,7 +2667,7 @@ "model": "api_v2.spellcastingoption", "pk": 250, "fields": { - "spell": "portal-trap", + "parent": "portal-trap", "type": "default", "damage_roll": null, "target_count": null, @@ -2679,7 +2679,7 @@ "model": "api_v2.spellcastingoption", "pk": 252, "fields": { - "spell": "portal-trap", + "parent": "portal-trap", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -2691,7 +2691,7 @@ "model": "api_v2.spellcastingoption", "pk": 253, "fields": { - "spell": "portal-trap", + "parent": "portal-trap", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -2703,7 +2703,7 @@ "model": "api_v2.spellcastingoption", "pk": 254, "fields": { - "spell": "portal-trap", + "parent": "portal-trap", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -2715,7 +2715,7 @@ "model": "api_v2.spellcastingoption", "pk": 255, "fields": { - "spell": "portal-trap", + "parent": "portal-trap", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -2727,7 +2727,7 @@ "model": "api_v2.spellcastingoption", "pk": 256, "fields": { - "spell": "portal-trap", + "parent": "portal-trap", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -2739,7 +2739,7 @@ "model": "api_v2.spellcastingoption", "pk": 257, "fields": { - "spell": "portal-trap", + "parent": "portal-trap", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -2751,7 +2751,7 @@ "model": "api_v2.spellcastingoption", "pk": 258, "fields": { - "spell": "portal-trap", + "parent": "portal-trap", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -2763,7 +2763,7 @@ "model": "api_v2.spellcastingoption", "pk": 259, "fields": { - "spell": "power-word-fling", + "parent": "power-word-fling", "type": "default", "damage_roll": null, "target_count": null, @@ -2775,7 +2775,7 @@ "model": "api_v2.spellcastingoption", "pk": 261, "fields": { - "spell": "power-word-fling", + "parent": "power-word-fling", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2787,7 +2787,7 @@ "model": "api_v2.spellcastingoption", "pk": 262, "fields": { - "spell": "power-word-fling", + "parent": "power-word-fling", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2799,7 +2799,7 @@ "model": "api_v2.spellcastingoption", "pk": 263, "fields": { - "spell": "power-word-fling", + "parent": "power-word-fling", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2811,7 +2811,7 @@ "model": "api_v2.spellcastingoption", "pk": 264, "fields": { - "spell": "power-word-fling", + "parent": "power-word-fling", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2823,7 +2823,7 @@ "model": "api_v2.spellcastingoption", "pk": 265, "fields": { - "spell": "power-word-fling", + "parent": "power-word-fling", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2835,7 +2835,7 @@ "model": "api_v2.spellcastingoption", "pk": 266, "fields": { - "spell": "power-word-fling", + "parent": "power-word-fling", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2847,7 +2847,7 @@ "model": "api_v2.spellcastingoption", "pk": 267, "fields": { - "spell": "power-word-rend", + "parent": "power-word-rend", "type": "default", "damage_roll": null, "target_count": null, @@ -2859,7 +2859,7 @@ "model": "api_v2.spellcastingoption", "pk": 269, "fields": { - "spell": "power-word-rend", + "parent": "power-word-rend", "type": "slot_level_5", "damage_roll": null, "target_count": 2, @@ -2871,7 +2871,7 @@ "model": "api_v2.spellcastingoption", "pk": 270, "fields": { - "spell": "power-word-rend", + "parent": "power-word-rend", "type": "slot_level_6", "damage_roll": null, "target_count": 3, @@ -2883,7 +2883,7 @@ "model": "api_v2.spellcastingoption", "pk": 271, "fields": { - "spell": "power-word-rend", + "parent": "power-word-rend", "type": "slot_level_7", "damage_roll": null, "target_count": 4, @@ -2895,7 +2895,7 @@ "model": "api_v2.spellcastingoption", "pk": 272, "fields": { - "spell": "power-word-rend", + "parent": "power-word-rend", "type": "slot_level_8", "damage_roll": null, "target_count": 5, @@ -2907,7 +2907,7 @@ "model": "api_v2.spellcastingoption", "pk": 273, "fields": { - "spell": "power-word-rend", + "parent": "power-word-rend", "type": "slot_level_9", "damage_roll": null, "target_count": 6, @@ -2919,7 +2919,7 @@ "model": "api_v2.spellcastingoption", "pk": 274, "fields": { - "spell": "reapers-knell", + "parent": "reapers-knell", "type": "default", "damage_roll": null, "target_count": null, @@ -2931,7 +2931,7 @@ "model": "api_v2.spellcastingoption", "pk": 276, "fields": { - "spell": "reapers-knell", + "parent": "reapers-knell", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2943,7 +2943,7 @@ "model": "api_v2.spellcastingoption", "pk": 277, "fields": { - "spell": "reapers-knell", + "parent": "reapers-knell", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2955,7 +2955,7 @@ "model": "api_v2.spellcastingoption", "pk": 278, "fields": { - "spell": "reapers-knell", + "parent": "reapers-knell", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2967,7 +2967,7 @@ "model": "api_v2.spellcastingoption", "pk": 279, "fields": { - "spell": "reapers-knell", + "parent": "reapers-knell", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2979,7 +2979,7 @@ "model": "api_v2.spellcastingoption", "pk": 280, "fields": { - "spell": "reapers-knell", + "parent": "reapers-knell", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2991,7 +2991,7 @@ "model": "api_v2.spellcastingoption", "pk": 281, "fields": { - "spell": "rebounding-bolt", + "parent": "rebounding-bolt", "type": "default", "damage_roll": null, "target_count": null, @@ -3003,7 +3003,7 @@ "model": "api_v2.spellcastingoption", "pk": 283, "fields": { - "spell": "rebounding-bolt", + "parent": "rebounding-bolt", "type": "slot_level_4", "damage_roll": "6d6", "target_count": null, @@ -3015,7 +3015,7 @@ "model": "api_v2.spellcastingoption", "pk": 284, "fields": { - "spell": "rebounding-bolt", + "parent": "rebounding-bolt", "type": "slot_level_5", "damage_roll": "7d6", "target_count": null, @@ -3027,7 +3027,7 @@ "model": "api_v2.spellcastingoption", "pk": 285, "fields": { - "spell": "rebounding-bolt", + "parent": "rebounding-bolt", "type": "slot_level_6", "damage_roll": "8d6", "target_count": null, @@ -3039,7 +3039,7 @@ "model": "api_v2.spellcastingoption", "pk": 286, "fields": { - "spell": "rebounding-bolt", + "parent": "rebounding-bolt", "type": "slot_level_7", "damage_roll": "9d6", "target_count": null, @@ -3051,7 +3051,7 @@ "model": "api_v2.spellcastingoption", "pk": 287, "fields": { - "spell": "rebounding-bolt", + "parent": "rebounding-bolt", "type": "slot_level_8", "damage_roll": "10d6", "target_count": null, @@ -3063,7 +3063,7 @@ "model": "api_v2.spellcastingoption", "pk": 288, "fields": { - "spell": "rebounding-bolt", + "parent": "rebounding-bolt", "type": "slot_level_9", "damage_roll": "11d6", "target_count": null, @@ -3075,7 +3075,7 @@ "model": "api_v2.spellcastingoption", "pk": 289, "fields": { - "spell": "repulsing-wall", + "parent": "repulsing-wall", "type": "default", "damage_roll": null, "target_count": null, @@ -3087,7 +3087,7 @@ "model": "api_v2.spellcastingoption", "pk": 291, "fields": { - "spell": "repulsing-wall", + "parent": "repulsing-wall", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3099,7 +3099,7 @@ "model": "api_v2.spellcastingoption", "pk": 292, "fields": { - "spell": "repulsing-wall", + "parent": "repulsing-wall", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3111,7 +3111,7 @@ "model": "api_v2.spellcastingoption", "pk": 293, "fields": { - "spell": "repulsing-wall", + "parent": "repulsing-wall", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3123,7 +3123,7 @@ "model": "api_v2.spellcastingoption", "pk": 294, "fields": { - "spell": "repulsing-wall", + "parent": "repulsing-wall", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3135,7 +3135,7 @@ "model": "api_v2.spellcastingoption", "pk": 295, "fields": { - "spell": "repulsing-wall", + "parent": "repulsing-wall", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3147,7 +3147,7 @@ "model": "api_v2.spellcastingoption", "pk": 296, "fields": { - "spell": "retribution", + "parent": "retribution", "type": "default", "damage_roll": null, "target_count": null, @@ -3159,7 +3159,7 @@ "model": "api_v2.spellcastingoption", "pk": 297, "fields": { - "spell": "rockfall-ward", + "parent": "rockfall-ward", "type": "default", "damage_roll": null, "target_count": null, @@ -3171,7 +3171,7 @@ "model": "api_v2.spellcastingoption", "pk": 299, "fields": { - "spell": "rockfall-ward", + "parent": "rockfall-ward", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -3183,7 +3183,7 @@ "model": "api_v2.spellcastingoption", "pk": 300, "fields": { - "spell": "rockfall-ward", + "parent": "rockfall-ward", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -3195,7 +3195,7 @@ "model": "api_v2.spellcastingoption", "pk": 301, "fields": { - "spell": "rockfall-ward", + "parent": "rockfall-ward", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3207,7 +3207,7 @@ "model": "api_v2.spellcastingoption", "pk": 302, "fields": { - "spell": "rockfall-ward", + "parent": "rockfall-ward", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3219,7 +3219,7 @@ "model": "api_v2.spellcastingoption", "pk": 303, "fields": { - "spell": "rockfall-ward", + "parent": "rockfall-ward", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3231,7 +3231,7 @@ "model": "api_v2.spellcastingoption", "pk": 304, "fields": { - "spell": "rockfall-ward", + "parent": "rockfall-ward", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3243,7 +3243,7 @@ "model": "api_v2.spellcastingoption", "pk": 305, "fields": { - "spell": "rockfall-ward", + "parent": "rockfall-ward", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3255,7 +3255,7 @@ "model": "api_v2.spellcastingoption", "pk": 306, "fields": { - "spell": "rockfall-ward", + "parent": "rockfall-ward", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3267,7 +3267,7 @@ "model": "api_v2.spellcastingoption", "pk": 307, "fields": { - "spell": "sacrifice-pawn", + "parent": "sacrifice-pawn", "type": "default", "damage_roll": null, "target_count": null, @@ -3279,7 +3279,7 @@ "model": "api_v2.spellcastingoption", "pk": 308, "fields": { - "spell": "sacrificial-healing", + "parent": "sacrificial-healing", "type": "default", "damage_roll": null, "target_count": null, @@ -3291,7 +3291,7 @@ "model": "api_v2.spellcastingoption", "pk": 309, "fields": { - "spell": "safe-transposition", + "parent": "safe-transposition", "type": "default", "damage_roll": null, "target_count": null, @@ -3303,7 +3303,7 @@ "model": "api_v2.spellcastingoption", "pk": 310, "fields": { - "spell": "secret-blind", + "parent": "secret-blind", "type": "default", "damage_roll": null, "target_count": null, @@ -3315,7 +3315,7 @@ "model": "api_v2.spellcastingoption", "pk": 311, "fields": { - "spell": "shared-frenzy", + "parent": "shared-frenzy", "type": "default", "damage_roll": null, "target_count": null, @@ -3327,7 +3327,7 @@ "model": "api_v2.spellcastingoption", "pk": 313, "fields": { - "spell": "shared-frenzy", + "parent": "shared-frenzy", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3339,7 +3339,7 @@ "model": "api_v2.spellcastingoption", "pk": 314, "fields": { - "spell": "shared-frenzy", + "parent": "shared-frenzy", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3351,7 +3351,7 @@ "model": "api_v2.spellcastingoption", "pk": 315, "fields": { - "spell": "shared-frenzy", + "parent": "shared-frenzy", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3363,7 +3363,7 @@ "model": "api_v2.spellcastingoption", "pk": 316, "fields": { - "spell": "shared-frenzy", + "parent": "shared-frenzy", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3375,7 +3375,7 @@ "model": "api_v2.spellcastingoption", "pk": 317, "fields": { - "spell": "shared-frenzy", + "parent": "shared-frenzy", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3387,7 +3387,7 @@ "model": "api_v2.spellcastingoption", "pk": 318, "fields": { - "spell": "shared-frenzy", + "parent": "shared-frenzy", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3399,7 +3399,7 @@ "model": "api_v2.spellcastingoption", "pk": 319, "fields": { - "spell": "shocking-volley", + "parent": "shocking-volley", "type": "default", "damage_roll": null, "target_count": null, @@ -3411,7 +3411,7 @@ "model": "api_v2.spellcastingoption", "pk": 321, "fields": { - "spell": "shocking-volley", + "parent": "shocking-volley", "type": "slot_level_3", "damage_roll": "3d8", "target_count": null, @@ -3423,7 +3423,7 @@ "model": "api_v2.spellcastingoption", "pk": 322, "fields": { - "spell": "shocking-volley", + "parent": "shocking-volley", "type": "slot_level_4", "damage_roll": "4d8", "target_count": null, @@ -3435,7 +3435,7 @@ "model": "api_v2.spellcastingoption", "pk": 323, "fields": { - "spell": "shocking-volley", + "parent": "shocking-volley", "type": "slot_level_5", "damage_roll": "5d8", "target_count": null, @@ -3447,7 +3447,7 @@ "model": "api_v2.spellcastingoption", "pk": 324, "fields": { - "spell": "shocking-volley", + "parent": "shocking-volley", "type": "slot_level_6", "damage_roll": "6d8", "target_count": null, @@ -3459,7 +3459,7 @@ "model": "api_v2.spellcastingoption", "pk": 325, "fields": { - "spell": "shocking-volley", + "parent": "shocking-volley", "type": "slot_level_7", "damage_roll": "7d8", "target_count": null, @@ -3471,7 +3471,7 @@ "model": "api_v2.spellcastingoption", "pk": 326, "fields": { - "spell": "shocking-volley", + "parent": "shocking-volley", "type": "slot_level_8", "damage_roll": "8d8", "target_count": null, @@ -3483,7 +3483,7 @@ "model": "api_v2.spellcastingoption", "pk": 327, "fields": { - "spell": "shocking-volley", + "parent": "shocking-volley", "type": "slot_level_9", "damage_roll": "9d8", "target_count": null, @@ -3495,7 +3495,7 @@ "model": "api_v2.spellcastingoption", "pk": 328, "fields": { - "spell": "sightburst", + "parent": "sightburst", "type": "default", "damage_roll": null, "target_count": null, @@ -3507,7 +3507,7 @@ "model": "api_v2.spellcastingoption", "pk": 330, "fields": { - "spell": "sightburst", + "parent": "sightburst", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -3519,7 +3519,7 @@ "model": "api_v2.spellcastingoption", "pk": 331, "fields": { - "spell": "sightburst", + "parent": "sightburst", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3531,7 +3531,7 @@ "model": "api_v2.spellcastingoption", "pk": 332, "fields": { - "spell": "sightburst", + "parent": "sightburst", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3543,7 +3543,7 @@ "model": "api_v2.spellcastingoption", "pk": 333, "fields": { - "spell": "sightburst", + "parent": "sightburst", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3555,7 +3555,7 @@ "model": "api_v2.spellcastingoption", "pk": 334, "fields": { - "spell": "sightburst", + "parent": "sightburst", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3567,7 +3567,7 @@ "model": "api_v2.spellcastingoption", "pk": 335, "fields": { - "spell": "sightburst", + "parent": "sightburst", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3579,7 +3579,7 @@ "model": "api_v2.spellcastingoption", "pk": 336, "fields": { - "spell": "sightburst", + "parent": "sightburst", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3591,7 +3591,7 @@ "model": "api_v2.spellcastingoption", "pk": 337, "fields": { - "spell": "silvershout", + "parent": "silvershout", "type": "default", "damage_roll": null, "target_count": null, @@ -3603,7 +3603,7 @@ "model": "api_v2.spellcastingoption", "pk": 338, "fields": { - "spell": "smelting-blast", + "parent": "smelting-blast", "type": "default", "damage_roll": null, "target_count": null, @@ -3615,7 +3615,7 @@ "model": "api_v2.spellcastingoption", "pk": 340, "fields": { - "spell": "smelting-blast", + "parent": "smelting-blast", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -3627,7 +3627,7 @@ "model": "api_v2.spellcastingoption", "pk": 341, "fields": { - "spell": "smelting-blast", + "parent": "smelting-blast", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3639,7 +3639,7 @@ "model": "api_v2.spellcastingoption", "pk": 342, "fields": { - "spell": "smelting-blast", + "parent": "smelting-blast", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3651,7 +3651,7 @@ "model": "api_v2.spellcastingoption", "pk": 343, "fields": { - "spell": "smelting-blast", + "parent": "smelting-blast", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3663,7 +3663,7 @@ "model": "api_v2.spellcastingoption", "pk": 344, "fields": { - "spell": "smelting-blast", + "parent": "smelting-blast", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3675,7 +3675,7 @@ "model": "api_v2.spellcastingoption", "pk": 345, "fields": { - "spell": "smelting-blast", + "parent": "smelting-blast", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3687,7 +3687,7 @@ "model": "api_v2.spellcastingoption", "pk": 346, "fields": { - "spell": "smelting-blast", + "parent": "smelting-blast", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3699,7 +3699,7 @@ "model": "api_v2.spellcastingoption", "pk": 347, "fields": { - "spell": "sneer", + "parent": "sneer", "type": "default", "damage_roll": null, "target_count": null, @@ -3711,7 +3711,7 @@ "model": "api_v2.spellcastingoption", "pk": 348, "fields": { - "spell": "spiked-barricade", + "parent": "spiked-barricade", "type": "default", "damage_roll": null, "target_count": null, @@ -3723,7 +3723,7 @@ "model": "api_v2.spellcastingoption", "pk": 350, "fields": { - "spell": "spiked-barricade", + "parent": "spiked-barricade", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3735,7 +3735,7 @@ "model": "api_v2.spellcastingoption", "pk": 351, "fields": { - "spell": "spiked-barricade", + "parent": "spiked-barricade", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3747,7 +3747,7 @@ "model": "api_v2.spellcastingoption", "pk": 352, "fields": { - "spell": "spiked-barricade", + "parent": "spiked-barricade", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3759,7 +3759,7 @@ "model": "api_v2.spellcastingoption", "pk": 353, "fields": { - "spell": "spiked-barricade", + "parent": "spiked-barricade", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3771,7 +3771,7 @@ "model": "api_v2.spellcastingoption", "pk": 354, "fields": { - "spell": "spiked-barricade", + "parent": "spiked-barricade", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3783,7 +3783,7 @@ "model": "api_v2.spellcastingoption", "pk": 355, "fields": { - "spell": "spiked-barricade", + "parent": "spiked-barricade", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3795,7 +3795,7 @@ "model": "api_v2.spellcastingoption", "pk": 356, "fields": { - "spell": "spite", + "parent": "spite", "type": "default", "damage_roll": null, "target_count": null, @@ -3807,7 +3807,7 @@ "model": "api_v2.spellcastingoption", "pk": 358, "fields": { - "spell": "spite", + "parent": "spite", "type": "slot_level_3", "damage_roll": "4d6", "target_count": null, @@ -3819,7 +3819,7 @@ "model": "api_v2.spellcastingoption", "pk": 359, "fields": { - "spell": "spite", + "parent": "spite", "type": "slot_level_4", "damage_roll": "5d6", "target_count": null, @@ -3831,7 +3831,7 @@ "model": "api_v2.spellcastingoption", "pk": 360, "fields": { - "spell": "spite", + "parent": "spite", "type": "slot_level_5", "damage_roll": "6d6", "target_count": null, @@ -3843,7 +3843,7 @@ "model": "api_v2.spellcastingoption", "pk": 361, "fields": { - "spell": "spite", + "parent": "spite", "type": "slot_level_6", "damage_roll": "7d6", "target_count": null, @@ -3855,7 +3855,7 @@ "model": "api_v2.spellcastingoption", "pk": 362, "fields": { - "spell": "spite", + "parent": "spite", "type": "slot_level_7", "damage_roll": "8d6", "target_count": null, @@ -3867,7 +3867,7 @@ "model": "api_v2.spellcastingoption", "pk": 363, "fields": { - "spell": "spite", + "parent": "spite", "type": "slot_level_8", "damage_roll": "9d6", "target_count": null, @@ -3879,7 +3879,7 @@ "model": "api_v2.spellcastingoption", "pk": 364, "fields": { - "spell": "spite", + "parent": "spite", "type": "slot_level_9", "damage_roll": "10d6", "target_count": null, @@ -3891,7 +3891,7 @@ "model": "api_v2.spellcastingoption", "pk": 365, "fields": { - "spell": "steam-gout", + "parent": "steam-gout", "type": "default", "damage_roll": null, "target_count": null, @@ -3903,7 +3903,7 @@ "model": "api_v2.spellcastingoption", "pk": 367, "fields": { - "spell": "steam-gout", + "parent": "steam-gout", "type": "slot_level_4", "damage_roll": "3d8", "target_count": 2, @@ -3915,7 +3915,7 @@ "model": "api_v2.spellcastingoption", "pk": 368, "fields": { - "spell": "steam-gout", + "parent": "steam-gout", "type": "slot_level_5", "damage_roll": "4d8", "target_count": 3, @@ -3927,7 +3927,7 @@ "model": "api_v2.spellcastingoption", "pk": 369, "fields": { - "spell": "steam-gout", + "parent": "steam-gout", "type": "slot_level_6", "damage_roll": "5d8", "target_count": 4, @@ -3939,7 +3939,7 @@ "model": "api_v2.spellcastingoption", "pk": 370, "fields": { - "spell": "steam-gout", + "parent": "steam-gout", "type": "slot_level_7", "damage_roll": "6d8", "target_count": 5, @@ -3951,7 +3951,7 @@ "model": "api_v2.spellcastingoption", "pk": 371, "fields": { - "spell": "steam-gout", + "parent": "steam-gout", "type": "slot_level_8", "damage_roll": "7d8", "target_count": 6, @@ -3963,7 +3963,7 @@ "model": "api_v2.spellcastingoption", "pk": 372, "fields": { - "spell": "steam-gout", + "parent": "steam-gout", "type": "slot_level_9", "damage_roll": "8d8", "target_count": 7, @@ -3975,7 +3975,7 @@ "model": "api_v2.spellcastingoption", "pk": 373, "fields": { - "spell": "stone-aegis", + "parent": "stone-aegis", "type": "default", "damage_roll": null, "target_count": null, @@ -3987,7 +3987,7 @@ "model": "api_v2.spellcastingoption", "pk": 374, "fields": { - "spell": "stone-fetch", + "parent": "stone-fetch", "type": "default", "damage_roll": null, "target_count": null, @@ -3999,7 +3999,7 @@ "model": "api_v2.spellcastingoption", "pk": 376, "fields": { - "spell": "stone-fetch", + "parent": "stone-fetch", "type": "slot_level_5", "damage_roll": "5d10", "target_count": null, @@ -4011,7 +4011,7 @@ "model": "api_v2.spellcastingoption", "pk": 377, "fields": { - "spell": "stone-fetch", + "parent": "stone-fetch", "type": "slot_level_6", "damage_roll": "6d10", "target_count": null, @@ -4023,7 +4023,7 @@ "model": "api_v2.spellcastingoption", "pk": 378, "fields": { - "spell": "stone-fetch", + "parent": "stone-fetch", "type": "slot_level_7", "damage_roll": "7d10", "target_count": null, @@ -4035,7 +4035,7 @@ "model": "api_v2.spellcastingoption", "pk": 379, "fields": { - "spell": "stone-fetch", + "parent": "stone-fetch", "type": "slot_level_8", "damage_roll": "8d10", "target_count": null, @@ -4047,7 +4047,7 @@ "model": "api_v2.spellcastingoption", "pk": 380, "fields": { - "spell": "stone-fetch", + "parent": "stone-fetch", "type": "slot_level_9", "damage_roll": "9d10", "target_count": null, @@ -4059,7 +4059,7 @@ "model": "api_v2.spellcastingoption", "pk": 381, "fields": { - "spell": "sudden-slue", + "parent": "sudden-slue", "type": "default", "damage_roll": null, "target_count": null, @@ -4071,7 +4071,7 @@ "model": "api_v2.spellcastingoption", "pk": 382, "fields": { - "spell": "sudden-stampede", + "parent": "sudden-stampede", "type": "default", "damage_roll": null, "target_count": null, @@ -4083,7 +4083,7 @@ "model": "api_v2.spellcastingoption", "pk": 383, "fields": { - "spell": "toadstool-ring", + "parent": "toadstool-ring", "type": "default", "damage_roll": null, "target_count": null, @@ -4095,7 +4095,7 @@ "model": "api_v2.spellcastingoption", "pk": 384, "fields": { - "spell": "toothless-beast", + "parent": "toothless-beast", "type": "default", "damage_roll": null, "target_count": null, @@ -4107,7 +4107,7 @@ "model": "api_v2.spellcastingoption", "pk": 386, "fields": { - "spell": "toothless-beast", + "parent": "toothless-beast", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -4119,7 +4119,7 @@ "model": "api_v2.spellcastingoption", "pk": 387, "fields": { - "spell": "toothless-beast", + "parent": "toothless-beast", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -4131,7 +4131,7 @@ "model": "api_v2.spellcastingoption", "pk": 388, "fields": { - "spell": "toothless-beast", + "parent": "toothless-beast", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -4143,7 +4143,7 @@ "model": "api_v2.spellcastingoption", "pk": 389, "fields": { - "spell": "toothless-beast", + "parent": "toothless-beast", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -4155,7 +4155,7 @@ "model": "api_v2.spellcastingoption", "pk": 390, "fields": { - "spell": "toothless-beast", + "parent": "toothless-beast", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -4167,7 +4167,7 @@ "model": "api_v2.spellcastingoption", "pk": 391, "fields": { - "spell": "toothless-beast", + "parent": "toothless-beast", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -4179,7 +4179,7 @@ "model": "api_v2.spellcastingoption", "pk": 392, "fields": { - "spell": "toothless-beast", + "parent": "toothless-beast", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -4191,7 +4191,7 @@ "model": "api_v2.spellcastingoption", "pk": 393, "fields": { - "spell": "trollish-charge", + "parent": "trollish-charge", "type": "default", "damage_roll": null, "target_count": null, @@ -4203,7 +4203,7 @@ "model": "api_v2.spellcastingoption", "pk": 395, "fields": { - "spell": "trollish-charge", + "parent": "trollish-charge", "type": "slot_level_5", "damage_roll": null, "target_count": 2, @@ -4215,7 +4215,7 @@ "model": "api_v2.spellcastingoption", "pk": 396, "fields": { - "spell": "trollish-charge", + "parent": "trollish-charge", "type": "slot_level_6", "damage_roll": null, "target_count": 3, @@ -4227,7 +4227,7 @@ "model": "api_v2.spellcastingoption", "pk": 397, "fields": { - "spell": "trollish-charge", + "parent": "trollish-charge", "type": "slot_level_7", "damage_roll": null, "target_count": 4, @@ -4239,7 +4239,7 @@ "model": "api_v2.spellcastingoption", "pk": 398, "fields": { - "spell": "trollish-charge", + "parent": "trollish-charge", "type": "slot_level_8", "damage_roll": null, "target_count": 5, @@ -4251,7 +4251,7 @@ "model": "api_v2.spellcastingoption", "pk": 399, "fields": { - "spell": "trollish-charge", + "parent": "trollish-charge", "type": "slot_level_9", "damage_roll": null, "target_count": 6, @@ -4263,7 +4263,7 @@ "model": "api_v2.spellcastingoption", "pk": 400, "fields": { - "spell": "vine-carpet", + "parent": "vine-carpet", "type": "default", "damage_roll": null, "target_count": null, @@ -4275,7 +4275,7 @@ "model": "api_v2.spellcastingoption", "pk": 401, "fields": { - "spell": "war-horn", + "parent": "war-horn", "type": "default", "damage_roll": null, "target_count": null, @@ -4287,7 +4287,7 @@ "model": "api_v2.spellcastingoption", "pk": 402, "fields": { - "spell": "wild-hunt", + "parent": "wild-hunt", "type": "default", "damage_roll": null, "target_count": null, diff --git a/data/v2/kobold-press/wz/SpellCastingOption.json b/data/v2/kobold-press/wz/SpellCastingOption.json index 65a8cf0b..9908275a 100644 --- a/data/v2/kobold-press/wz/SpellCastingOption.json +++ b/data/v2/kobold-press/wz/SpellCastingOption.json @@ -3,7 +3,7 @@ "model": "api_v2.spellcastingoption", "pk": 4551, "fields": { - "spell": "abrupt-hug", + "parent": "abrupt-hug", "type": "default", "damage_roll": null, "target_count": null, @@ -15,7 +15,7 @@ "model": "api_v2.spellcastingoption", "pk": 4552, "fields": { - "spell": "avert-evil-eye", + "parent": "avert-evil-eye", "type": "default", "damage_roll": null, "target_count": null, @@ -27,7 +27,7 @@ "model": "api_v2.spellcastingoption", "pk": 4553, "fields": { - "spell": "bardo", + "parent": "bardo", "type": "default", "damage_roll": null, "target_count": null, @@ -39,7 +39,7 @@ "model": "api_v2.spellcastingoption", "pk": 4554, "fields": { - "spell": "battle-chant", + "parent": "battle-chant", "type": "default", "damage_roll": null, "target_count": null, @@ -51,7 +51,7 @@ "model": "api_v2.spellcastingoption", "pk": 4555, "fields": { - "spell": "battle-chant", + "parent": "battle-chant", "type": "ritual", "damage_roll": null, "target_count": null, @@ -63,7 +63,7 @@ "model": "api_v2.spellcastingoption", "pk": 4557, "fields": { - "spell": "battle-chant", + "parent": "battle-chant", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -75,7 +75,7 @@ "model": "api_v2.spellcastingoption", "pk": 4558, "fields": { - "spell": "battle-chant", + "parent": "battle-chant", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -87,7 +87,7 @@ "model": "api_v2.spellcastingoption", "pk": 4559, "fields": { - "spell": "battle-chant", + "parent": "battle-chant", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -99,7 +99,7 @@ "model": "api_v2.spellcastingoption", "pk": 4560, "fields": { - "spell": "battle-chant", + "parent": "battle-chant", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -111,7 +111,7 @@ "model": "api_v2.spellcastingoption", "pk": 4561, "fields": { - "spell": "battle-chant", + "parent": "battle-chant", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -123,7 +123,7 @@ "model": "api_v2.spellcastingoption", "pk": 4562, "fields": { - "spell": "battle-chant", + "parent": "battle-chant", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -135,7 +135,7 @@ "model": "api_v2.spellcastingoption", "pk": 4563, "fields": { - "spell": "battle-chant", + "parent": "battle-chant", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -147,7 +147,7 @@ "model": "api_v2.spellcastingoption", "pk": 4564, "fields": { - "spell": "bombardment-of-stings", + "parent": "bombardment-of-stings", "type": "default", "damage_roll": null, "target_count": null, @@ -159,7 +159,7 @@ "model": "api_v2.spellcastingoption", "pk": 4566, "fields": { - "spell": "bombardment-of-stings", + "parent": "bombardment-of-stings", "type": "slot_level_3", "damage_roll": "5d6", "target_count": null, @@ -171,7 +171,7 @@ "model": "api_v2.spellcastingoption", "pk": 4567, "fields": { - "spell": "bombardment-of-stings", + "parent": "bombardment-of-stings", "type": "slot_level_4", "damage_roll": "6d6", "target_count": null, @@ -183,7 +183,7 @@ "model": "api_v2.spellcastingoption", "pk": 4568, "fields": { - "spell": "bombardment-of-stings", + "parent": "bombardment-of-stings", "type": "slot_level_5", "damage_roll": "7d6", "target_count": null, @@ -195,7 +195,7 @@ "model": "api_v2.spellcastingoption", "pk": 4569, "fields": { - "spell": "bombardment-of-stings", + "parent": "bombardment-of-stings", "type": "slot_level_6", "damage_roll": "8d6", "target_count": null, @@ -207,7 +207,7 @@ "model": "api_v2.spellcastingoption", "pk": 4570, "fields": { - "spell": "bombardment-of-stings", + "parent": "bombardment-of-stings", "type": "slot_level_7", "damage_roll": "9d6", "target_count": null, @@ -219,7 +219,7 @@ "model": "api_v2.spellcastingoption", "pk": 4571, "fields": { - "spell": "bombardment-of-stings", + "parent": "bombardment-of-stings", "type": "slot_level_8", "damage_roll": "10d6", "target_count": null, @@ -231,7 +231,7 @@ "model": "api_v2.spellcastingoption", "pk": 4572, "fields": { - "spell": "bombardment-of-stings", + "parent": "bombardment-of-stings", "type": "slot_level_9", "damage_roll": "11d6", "target_count": null, @@ -243,7 +243,7 @@ "model": "api_v2.spellcastingoption", "pk": 4573, "fields": { - "spell": "charming-aesthetics", + "parent": "charming-aesthetics", "type": "default", "damage_roll": null, "target_count": null, @@ -255,7 +255,7 @@ "model": "api_v2.spellcastingoption", "pk": 4575, "fields": { - "spell": "charming-aesthetics", + "parent": "charming-aesthetics", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -267,7 +267,7 @@ "model": "api_v2.spellcastingoption", "pk": 4576, "fields": { - "spell": "charming-aesthetics", + "parent": "charming-aesthetics", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -279,7 +279,7 @@ "model": "api_v2.spellcastingoption", "pk": 4577, "fields": { - "spell": "charming-aesthetics", + "parent": "charming-aesthetics", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -291,7 +291,7 @@ "model": "api_v2.spellcastingoption", "pk": 4578, "fields": { - "spell": "charming-aesthetics", + "parent": "charming-aesthetics", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -303,7 +303,7 @@ "model": "api_v2.spellcastingoption", "pk": 4579, "fields": { - "spell": "charming-aesthetics", + "parent": "charming-aesthetics", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -315,7 +315,7 @@ "model": "api_v2.spellcastingoption", "pk": 4580, "fields": { - "spell": "charming-aesthetics", + "parent": "charming-aesthetics", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -327,7 +327,7 @@ "model": "api_v2.spellcastingoption", "pk": 4581, "fields": { - "spell": "child-of-light-and-darkness", + "parent": "child-of-light-and-darkness", "type": "default", "damage_roll": null, "target_count": null, @@ -339,7 +339,7 @@ "model": "api_v2.spellcastingoption", "pk": 4582, "fields": { - "spell": "commanders-pavilion", + "parent": "commanders-pavilion", "type": "default", "damage_roll": null, "target_count": null, @@ -351,7 +351,7 @@ "model": "api_v2.spellcastingoption", "pk": 4583, "fields": { - "spell": "commanders-pavilion", + "parent": "commanders-pavilion", "type": "ritual", "damage_roll": null, "target_count": null, @@ -363,7 +363,7 @@ "model": "api_v2.spellcastingoption", "pk": 4584, "fields": { - "spell": "devouring-darkness", + "parent": "devouring-darkness", "type": "default", "damage_roll": null, "target_count": null, @@ -375,7 +375,7 @@ "model": "api_v2.spellcastingoption", "pk": 4585, "fields": { - "spell": "door-of-the-far-traveler", + "parent": "door-of-the-far-traveler", "type": "default", "damage_roll": null, "target_count": null, @@ -387,7 +387,7 @@ "model": "api_v2.spellcastingoption", "pk": 4587, "fields": { - "spell": "door-of-the-far-traveler", + "parent": "door-of-the-far-traveler", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -399,7 +399,7 @@ "model": "api_v2.spellcastingoption", "pk": 4588, "fields": { - "spell": "eternal-echo", + "parent": "eternal-echo", "type": "default", "damage_roll": null, "target_count": null, @@ -411,7 +411,7 @@ "model": "api_v2.spellcastingoption", "pk": 4589, "fields": { - "spell": "ethereal-stairs", + "parent": "ethereal-stairs", "type": "default", "damage_roll": null, "target_count": null, @@ -423,7 +423,7 @@ "model": "api_v2.spellcastingoption", "pk": 4591, "fields": { - "spell": "ethereal-stairs", + "parent": "ethereal-stairs", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -435,7 +435,7 @@ "model": "api_v2.spellcastingoption", "pk": 4592, "fields": { - "spell": "ethereal-stairs", + "parent": "ethereal-stairs", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -447,7 +447,7 @@ "model": "api_v2.spellcastingoption", "pk": 4593, "fields": { - "spell": "ethereal-stairs", + "parent": "ethereal-stairs", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -459,7 +459,7 @@ "model": "api_v2.spellcastingoption", "pk": 4594, "fields": { - "spell": "ethereal-stairs", + "parent": "ethereal-stairs", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -471,7 +471,7 @@ "model": "api_v2.spellcastingoption", "pk": 4595, "fields": { - "spell": "exchanged-knowledge", + "parent": "exchanged-knowledge", "type": "default", "damage_roll": null, "target_count": null, @@ -483,7 +483,7 @@ "model": "api_v2.spellcastingoption", "pk": 4596, "fields": { - "spell": "hedgehog-dozen", + "parent": "hedgehog-dozen", "type": "default", "damage_roll": null, "target_count": null, @@ -495,7 +495,7 @@ "model": "api_v2.spellcastingoption", "pk": 4597, "fields": { - "spell": "hypnagogia", + "parent": "hypnagogia", "type": "default", "damage_roll": null, "target_count": null, @@ -507,7 +507,7 @@ "model": "api_v2.spellcastingoption", "pk": 4599, "fields": { - "spell": "hypnagogia", + "parent": "hypnagogia", "type": "slot_level_5", "damage_roll": null, "target_count": 2, @@ -519,7 +519,7 @@ "model": "api_v2.spellcastingoption", "pk": 4600, "fields": { - "spell": "hypnagogia", + "parent": "hypnagogia", "type": "slot_level_6", "damage_roll": null, "target_count": 3, @@ -531,7 +531,7 @@ "model": "api_v2.spellcastingoption", "pk": 4601, "fields": { - "spell": "hypnagogia", + "parent": "hypnagogia", "type": "slot_level_7", "damage_roll": null, "target_count": 4, @@ -543,7 +543,7 @@ "model": "api_v2.spellcastingoption", "pk": 4602, "fields": { - "spell": "hypnagogia", + "parent": "hypnagogia", "type": "slot_level_8", "damage_roll": null, "target_count": 5, @@ -555,7 +555,7 @@ "model": "api_v2.spellcastingoption", "pk": 4603, "fields": { - "spell": "hypnagogia", + "parent": "hypnagogia", "type": "slot_level_9", "damage_roll": null, "target_count": 6, @@ -567,7 +567,7 @@ "model": "api_v2.spellcastingoption", "pk": 4604, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "default", "damage_roll": null, "target_count": null, @@ -579,7 +579,7 @@ "model": "api_v2.spellcastingoption", "pk": 4605, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_1", "damage_roll": "", "target_count": null, @@ -591,7 +591,7 @@ "model": "api_v2.spellcastingoption", "pk": 4606, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_2", "damage_roll": "", "target_count": null, @@ -603,7 +603,7 @@ "model": "api_v2.spellcastingoption", "pk": 4607, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_3", "damage_roll": "", "target_count": null, @@ -615,7 +615,7 @@ "model": "api_v2.spellcastingoption", "pk": 4608, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_4", "damage_roll": "", "target_count": null, @@ -627,7 +627,7 @@ "model": "api_v2.spellcastingoption", "pk": 4609, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_5", "damage_roll": "2d6", "target_count": null, @@ -639,7 +639,7 @@ "model": "api_v2.spellcastingoption", "pk": 4610, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_6", "damage_roll": "2d6", "target_count": null, @@ -651,7 +651,7 @@ "model": "api_v2.spellcastingoption", "pk": 4611, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_7", "damage_roll": "2d6", "target_count": null, @@ -663,7 +663,7 @@ "model": "api_v2.spellcastingoption", "pk": 4612, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_8", "damage_roll": "2d6", "target_count": null, @@ -675,7 +675,7 @@ "model": "api_v2.spellcastingoption", "pk": 4613, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_9", "damage_roll": "2d6", "target_count": null, @@ -687,7 +687,7 @@ "model": "api_v2.spellcastingoption", "pk": 4614, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_10", "damage_roll": "2d6", "target_count": null, @@ -699,7 +699,7 @@ "model": "api_v2.spellcastingoption", "pk": 4615, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_11", "damage_roll": "3d6", "target_count": null, @@ -711,7 +711,7 @@ "model": "api_v2.spellcastingoption", "pk": 4616, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_12", "damage_roll": "3d6", "target_count": null, @@ -723,7 +723,7 @@ "model": "api_v2.spellcastingoption", "pk": 4617, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_13", "damage_roll": "3d6", "target_count": null, @@ -735,7 +735,7 @@ "model": "api_v2.spellcastingoption", "pk": 4618, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_14", "damage_roll": "3d6", "target_count": null, @@ -747,7 +747,7 @@ "model": "api_v2.spellcastingoption", "pk": 4619, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_15", "damage_roll": "3d6", "target_count": null, @@ -759,7 +759,7 @@ "model": "api_v2.spellcastingoption", "pk": 4620, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_16", "damage_roll": "3d6", "target_count": null, @@ -771,7 +771,7 @@ "model": "api_v2.spellcastingoption", "pk": 4621, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_17", "damage_roll": "4d6", "target_count": null, @@ -783,7 +783,7 @@ "model": "api_v2.spellcastingoption", "pk": 4622, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_18", "damage_roll": "4d6", "target_count": null, @@ -795,7 +795,7 @@ "model": "api_v2.spellcastingoption", "pk": 4623, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_19", "damage_roll": "4d6", "target_count": null, @@ -807,7 +807,7 @@ "model": "api_v2.spellcastingoption", "pk": 4624, "fields": { - "spell": "hypnic-jerk", + "parent": "hypnic-jerk", "type": "player_level_20", "damage_roll": "4d6", "target_count": null, @@ -819,7 +819,7 @@ "model": "api_v2.spellcastingoption", "pk": 4625, "fields": { - "spell": "inconspicuous-facade", + "parent": "inconspicuous-facade", "type": "default", "damage_roll": null, "target_count": null, @@ -831,7 +831,7 @@ "model": "api_v2.spellcastingoption", "pk": 4626, "fields": { - "spell": "march-of-the-dead", + "parent": "march-of-the-dead", "type": "default", "damage_roll": null, "target_count": null, @@ -843,7 +843,7 @@ "model": "api_v2.spellcastingoption", "pk": 4628, "fields": { - "spell": "march-of-the-dead", + "parent": "march-of-the-dead", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -855,7 +855,7 @@ "model": "api_v2.spellcastingoption", "pk": 4629, "fields": { - "spell": "march-of-the-dead", + "parent": "march-of-the-dead", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -867,7 +867,7 @@ "model": "api_v2.spellcastingoption", "pk": 4630, "fields": { - "spell": "march-of-the-dead", + "parent": "march-of-the-dead", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -879,7 +879,7 @@ "model": "api_v2.spellcastingoption", "pk": 4631, "fields": { - "spell": "march-of-the-dead", + "parent": "march-of-the-dead", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -891,7 +891,7 @@ "model": "api_v2.spellcastingoption", "pk": 4632, "fields": { - "spell": "march-of-the-dead", + "parent": "march-of-the-dead", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -903,7 +903,7 @@ "model": "api_v2.spellcastingoption", "pk": 4633, "fields": { - "spell": "march-of-the-dead", + "parent": "march-of-the-dead", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -915,7 +915,7 @@ "model": "api_v2.spellcastingoption", "pk": 4634, "fields": { - "spell": "mind-maze", + "parent": "mind-maze", "type": "default", "damage_roll": null, "target_count": null, @@ -927,7 +927,7 @@ "model": "api_v2.spellcastingoption", "pk": 4635, "fields": { - "spell": "mirror-realm", + "parent": "mirror-realm", "type": "default", "damage_roll": null, "target_count": null, @@ -939,7 +939,7 @@ "model": "api_v2.spellcastingoption", "pk": 4636, "fields": { - "spell": "mirror-realm", + "parent": "mirror-realm", "type": "ritual", "damage_roll": null, "target_count": null, @@ -951,7 +951,7 @@ "model": "api_v2.spellcastingoption", "pk": 4637, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "default", "damage_roll": null, "target_count": null, @@ -963,7 +963,7 @@ "model": "api_v2.spellcastingoption", "pk": 4638, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -975,7 +975,7 @@ "model": "api_v2.spellcastingoption", "pk": 4639, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -987,7 +987,7 @@ "model": "api_v2.spellcastingoption", "pk": 4640, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -999,7 +999,7 @@ "model": "api_v2.spellcastingoption", "pk": 4641, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -1011,7 +1011,7 @@ "model": "api_v2.spellcastingoption", "pk": 4642, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_5", "damage_roll": null, "target_count": null, @@ -1023,7 +1023,7 @@ "model": "api_v2.spellcastingoption", "pk": 4643, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_6", "damage_roll": null, "target_count": null, @@ -1035,7 +1035,7 @@ "model": "api_v2.spellcastingoption", "pk": 4644, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_7", "damage_roll": null, "target_count": null, @@ -1047,7 +1047,7 @@ "model": "api_v2.spellcastingoption", "pk": 4645, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_8", "damage_roll": null, "target_count": null, @@ -1059,7 +1059,7 @@ "model": "api_v2.spellcastingoption", "pk": 4646, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_9", "damage_roll": null, "target_count": null, @@ -1071,7 +1071,7 @@ "model": "api_v2.spellcastingoption", "pk": 4647, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_10", "damage_roll": null, "target_count": null, @@ -1083,7 +1083,7 @@ "model": "api_v2.spellcastingoption", "pk": 4648, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_11", "damage_roll": null, "target_count": null, @@ -1095,7 +1095,7 @@ "model": "api_v2.spellcastingoption", "pk": 4649, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_12", "damage_roll": null, "target_count": null, @@ -1107,7 +1107,7 @@ "model": "api_v2.spellcastingoption", "pk": 4650, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_13", "damage_roll": null, "target_count": null, @@ -1119,7 +1119,7 @@ "model": "api_v2.spellcastingoption", "pk": 4651, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_14", "damage_roll": null, "target_count": null, @@ -1131,7 +1131,7 @@ "model": "api_v2.spellcastingoption", "pk": 4652, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_15", "damage_roll": null, "target_count": null, @@ -1143,7 +1143,7 @@ "model": "api_v2.spellcastingoption", "pk": 4653, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_16", "damage_roll": null, "target_count": null, @@ -1155,7 +1155,7 @@ "model": "api_v2.spellcastingoption", "pk": 4654, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_17", "damage_roll": null, "target_count": null, @@ -1167,7 +1167,7 @@ "model": "api_v2.spellcastingoption", "pk": 4655, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_18", "damage_roll": null, "target_count": null, @@ -1179,7 +1179,7 @@ "model": "api_v2.spellcastingoption", "pk": 4656, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_19", "damage_roll": null, "target_count": null, @@ -1191,7 +1191,7 @@ "model": "api_v2.spellcastingoption", "pk": 4657, "fields": { - "spell": "obfuscate-object", + "parent": "obfuscate-object", "type": "player_level_20", "damage_roll": null, "target_count": null, @@ -1203,7 +1203,7 @@ "model": "api_v2.spellcastingoption", "pk": 4658, "fields": { - "spell": "order-of-revenge", + "parent": "order-of-revenge", "type": "default", "damage_roll": null, "target_count": null, @@ -1215,7 +1215,7 @@ "model": "api_v2.spellcastingoption", "pk": 4660, "fields": { - "spell": "order-of-revenge", + "parent": "order-of-revenge", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -1227,7 +1227,7 @@ "model": "api_v2.spellcastingoption", "pk": 4661, "fields": { - "spell": "order-of-revenge", + "parent": "order-of-revenge", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -1239,7 +1239,7 @@ "model": "api_v2.spellcastingoption", "pk": 4662, "fields": { - "spell": "order-of-revenge", + "parent": "order-of-revenge", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -1251,7 +1251,7 @@ "model": "api_v2.spellcastingoption", "pk": 4663, "fields": { - "spell": "order-of-revenge", + "parent": "order-of-revenge", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -1263,7 +1263,7 @@ "model": "api_v2.spellcastingoption", "pk": 4664, "fields": { - "spell": "order-of-revenge", + "parent": "order-of-revenge", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -1275,7 +1275,7 @@ "model": "api_v2.spellcastingoption", "pk": 4665, "fields": { - "spell": "order-of-revenge", + "parent": "order-of-revenge", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -1287,7 +1287,7 @@ "model": "api_v2.spellcastingoption", "pk": 4666, "fields": { - "spell": "pierce-the-veil", + "parent": "pierce-the-veil", "type": "default", "damage_roll": null, "target_count": null, @@ -1299,7 +1299,7 @@ "model": "api_v2.spellcastingoption", "pk": 4667, "fields": { - "spell": "pierce-the-veil", + "parent": "pierce-the-veil", "type": "ritual", "damage_roll": null, "target_count": null, @@ -1311,7 +1311,7 @@ "model": "api_v2.spellcastingoption", "pk": 4668, "fields": { - "spell": "pratfall", + "parent": "pratfall", "type": "default", "damage_roll": null, "target_count": null, @@ -1323,7 +1323,7 @@ "model": "api_v2.spellcastingoption", "pk": 4669, "fields": { - "spell": "putrescent-faerie-circle", + "parent": "putrescent-faerie-circle", "type": "default", "damage_roll": null, "target_count": null, @@ -1335,7 +1335,7 @@ "model": "api_v2.spellcastingoption", "pk": 4670, "fields": { - "spell": "reassemble", + "parent": "reassemble", "type": "default", "damage_roll": null, "target_count": null, @@ -1347,7 +1347,7 @@ "model": "api_v2.spellcastingoption", "pk": 4671, "fields": { - "spell": "reciprocating-portal", + "parent": "reciprocating-portal", "type": "default", "damage_roll": null, "target_count": null, @@ -1359,7 +1359,7 @@ "model": "api_v2.spellcastingoption", "pk": 4672, "fields": { - "spell": "remove-insulation", + "parent": "remove-insulation", "type": "default", "damage_roll": null, "target_count": null, @@ -1371,7 +1371,7 @@ "model": "api_v2.spellcastingoption", "pk": 4674, "fields": { - "spell": "remove-insulation", + "parent": "remove-insulation", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1383,7 +1383,7 @@ "model": "api_v2.spellcastingoption", "pk": 4675, "fields": { - "spell": "remove-insulation", + "parent": "remove-insulation", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1395,7 +1395,7 @@ "model": "api_v2.spellcastingoption", "pk": 4676, "fields": { - "spell": "remove-insulation", + "parent": "remove-insulation", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1407,7 +1407,7 @@ "model": "api_v2.spellcastingoption", "pk": 4677, "fields": { - "spell": "remove-insulation", + "parent": "remove-insulation", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1419,7 +1419,7 @@ "model": "api_v2.spellcastingoption", "pk": 4678, "fields": { - "spell": "remove-insulation", + "parent": "remove-insulation", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1431,7 +1431,7 @@ "model": "api_v2.spellcastingoption", "pk": 4679, "fields": { - "spell": "revenges-eye", + "parent": "revenges-eye", "type": "default", "damage_roll": null, "target_count": null, @@ -1443,7 +1443,7 @@ "model": "api_v2.spellcastingoption", "pk": 4681, "fields": { - "spell": "revenges-eye", + "parent": "revenges-eye", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1455,7 +1455,7 @@ "model": "api_v2.spellcastingoption", "pk": 4682, "fields": { - "spell": "revenges-eye", + "parent": "revenges-eye", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1467,7 +1467,7 @@ "model": "api_v2.spellcastingoption", "pk": 4683, "fields": { - "spell": "revenges-eye", + "parent": "revenges-eye", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1479,7 +1479,7 @@ "model": "api_v2.spellcastingoption", "pk": 4684, "fields": { - "spell": "revenges-eye", + "parent": "revenges-eye", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1491,7 +1491,7 @@ "model": "api_v2.spellcastingoption", "pk": 4685, "fields": { - "spell": "revenges-eye", + "parent": "revenges-eye", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1503,7 +1503,7 @@ "model": "api_v2.spellcastingoption", "pk": 4686, "fields": { - "spell": "revenges-eye", + "parent": "revenges-eye", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1515,7 +1515,7 @@ "model": "api_v2.spellcastingoption", "pk": 4687, "fields": { - "spell": "revenges-eye", + "parent": "revenges-eye", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1527,7 +1527,7 @@ "model": "api_v2.spellcastingoption", "pk": 4688, "fields": { - "spell": "rise-of-the-green", + "parent": "rise-of-the-green", "type": "default", "damage_roll": null, "target_count": null, @@ -1539,7 +1539,7 @@ "model": "api_v2.spellcastingoption", "pk": 4690, "fields": { - "spell": "rise-of-the-green", + "parent": "rise-of-the-green", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1551,7 +1551,7 @@ "model": "api_v2.spellcastingoption", "pk": 4691, "fields": { - "spell": "rive", + "parent": "rive", "type": "default", "damage_roll": null, "target_count": null, @@ -1563,7 +1563,7 @@ "model": "api_v2.spellcastingoption", "pk": 4692, "fields": { - "spell": "shadow-adaptation", + "parent": "shadow-adaptation", "type": "default", "damage_roll": null, "target_count": null, @@ -1575,7 +1575,7 @@ "model": "api_v2.spellcastingoption", "pk": 4693, "fields": { - "spell": "skull-road", + "parent": "skull-road", "type": "default", "damage_roll": null, "target_count": null, @@ -1587,7 +1587,7 @@ "model": "api_v2.spellcastingoption", "pk": 4694, "fields": { - "spell": "storm-of-axes", + "parent": "storm-of-axes", "type": "default", "damage_roll": null, "target_count": null, @@ -1599,7 +1599,7 @@ "model": "api_v2.spellcastingoption", "pk": 4695, "fields": { - "spell": "subliminal-aversion", + "parent": "subliminal-aversion", "type": "default", "damage_roll": null, "target_count": null, @@ -1611,7 +1611,7 @@ "model": "api_v2.spellcastingoption", "pk": 4696, "fields": { - "spell": "summon-clockwork-beast", + "parent": "summon-clockwork-beast", "type": "default", "damage_roll": null, "target_count": null, @@ -1623,7 +1623,7 @@ "model": "api_v2.spellcastingoption", "pk": 4697, "fields": { - "spell": "summon-clockwork-beast", + "parent": "summon-clockwork-beast", "type": "ritual", "damage_roll": null, "target_count": null, @@ -1635,7 +1635,7 @@ "model": "api_v2.spellcastingoption", "pk": 4698, "fields": { - "spell": "suppress-regeneration", + "parent": "suppress-regeneration", "type": "default", "damage_roll": null, "target_count": null, @@ -1647,7 +1647,7 @@ "model": "api_v2.spellcastingoption", "pk": 4700, "fields": { - "spell": "suppress-regeneration", + "parent": "suppress-regeneration", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -1659,7 +1659,7 @@ "model": "api_v2.spellcastingoption", "pk": 4701, "fields": { - "spell": "suppress-regeneration", + "parent": "suppress-regeneration", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -1671,7 +1671,7 @@ "model": "api_v2.spellcastingoption", "pk": 4702, "fields": { - "spell": "suppress-regeneration", + "parent": "suppress-regeneration", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -1683,7 +1683,7 @@ "model": "api_v2.spellcastingoption", "pk": 4703, "fields": { - "spell": "suppress-regeneration", + "parent": "suppress-regeneration", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -1695,7 +1695,7 @@ "model": "api_v2.spellcastingoption", "pk": 4704, "fields": { - "spell": "suppress-regeneration", + "parent": "suppress-regeneration", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -1707,7 +1707,7 @@ "model": "api_v2.spellcastingoption", "pk": 4705, "fields": { - "spell": "suppress-regeneration", + "parent": "suppress-regeneration", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -1719,7 +1719,7 @@ "model": "api_v2.spellcastingoption", "pk": 4706, "fields": { - "spell": "suppress-regeneration", + "parent": "suppress-regeneration", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -1731,7 +1731,7 @@ "model": "api_v2.spellcastingoption", "pk": 4707, "fields": { - "spell": "suppress-regeneration", + "parent": "suppress-regeneration", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -1743,7 +1743,7 @@ "model": "api_v2.spellcastingoption", "pk": 4708, "fields": { - "spell": "threshold-slip", + "parent": "threshold-slip", "type": "default", "damage_roll": null, "target_count": null, @@ -1755,7 +1755,7 @@ "model": "api_v2.spellcastingoption", "pk": 4709, "fields": { - "spell": "toxic-pollen", + "parent": "toxic-pollen", "type": "default", "damage_roll": null, "target_count": null, @@ -1767,7 +1767,7 @@ "model": "api_v2.spellcastingoption", "pk": 4710, "fields": { - "spell": "vagrants-nondescript-cloak", + "parent": "vagrants-nondescript-cloak", "type": "default", "damage_roll": null, "target_count": null, @@ -1779,7 +1779,7 @@ "model": "api_v2.spellcastingoption", "pk": 4712, "fields": { - "spell": "vagrants-nondescript-cloak", + "parent": "vagrants-nondescript-cloak", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1791,7 +1791,7 @@ "model": "api_v2.spellcastingoption", "pk": 4713, "fields": { - "spell": "vagrants-nondescript-cloak", + "parent": "vagrants-nondescript-cloak", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1803,7 +1803,7 @@ "model": "api_v2.spellcastingoption", "pk": 4714, "fields": { - "spell": "vagrants-nondescript-cloak", + "parent": "vagrants-nondescript-cloak", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1815,7 +1815,7 @@ "model": "api_v2.spellcastingoption", "pk": 4715, "fields": { - "spell": "vagrants-nondescript-cloak", + "parent": "vagrants-nondescript-cloak", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1827,7 +1827,7 @@ "model": "api_v2.spellcastingoption", "pk": 4716, "fields": { - "spell": "vagrants-nondescript-cloak", + "parent": "vagrants-nondescript-cloak", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1839,7 +1839,7 @@ "model": "api_v2.spellcastingoption", "pk": 4717, "fields": { - "spell": "vagrants-nondescript-cloak", + "parent": "vagrants-nondescript-cloak", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1851,7 +1851,7 @@ "model": "api_v2.spellcastingoption", "pk": 4718, "fields": { - "spell": "vagrants-nondescript-cloak", + "parent": "vagrants-nondescript-cloak", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1863,7 +1863,7 @@ "model": "api_v2.spellcastingoption", "pk": 4719, "fields": { - "spell": "vengeful-panopy-of-the-ley-line-ignited", + "parent": "vengeful-panopy-of-the-ley-line-ignited", "type": "default", "damage_roll": null, "target_count": null, @@ -1875,7 +1875,7 @@ "model": "api_v2.spellcastingoption", "pk": 4721, "fields": { - "spell": "vengeful-panopy-of-the-ley-line-ignited", + "parent": "vengeful-panopy-of-the-ley-line-ignited", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1887,7 +1887,7 @@ "model": "api_v2.spellcastingoption", "pk": 4722, "fields": { - "spell": "vengeful-panopy-of-the-ley-line-ignited", + "parent": "vengeful-panopy-of-the-ley-line-ignited", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1899,7 +1899,7 @@ "model": "api_v2.spellcastingoption", "pk": 4723, "fields": { - "spell": "vengeful-panopy-of-the-ley-line-ignited", + "parent": "vengeful-panopy-of-the-ley-line-ignited", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1911,7 +1911,7 @@ "model": "api_v2.spellcastingoption", "pk": 4724, "fields": { - "spell": "who-goes-there", + "parent": "who-goes-there", "type": "default", "damage_roll": null, "target_count": null, @@ -1923,7 +1923,7 @@ "model": "api_v2.spellcastingoption", "pk": 4725, "fields": { - "spell": "zymurgic-aura", + "parent": "zymurgic-aura", "type": "default", "damage_roll": null, "target_count": null, diff --git a/data/v2/open5e/open5e/SpellCastingOption.json b/data/v2/open5e/open5e/SpellCastingOption.json index 8ed147c3..ae0d8f91 100644 --- a/data/v2/open5e/open5e/SpellCastingOption.json +++ b/data/v2/open5e/open5e/SpellCastingOption.json @@ -3,7 +3,7 @@ "model": "api_v2.spellcastingoption", "pk": 6139, "fields": { - "spell": "eye-bite", + "parent": "eye-bite", "type": "default", "damage_roll": null, "target_count": null, @@ -15,7 +15,7 @@ "model": "api_v2.spellcastingoption", "pk": 6140, "fields": { - "spell": "ray-of-sickness", + "parent": "ray-of-sickness", "type": "default", "damage_roll": null, "target_count": null, @@ -27,7 +27,7 @@ "model": "api_v2.spellcastingoption", "pk": 6142, "fields": { - "spell": "ray-of-sickness", + "parent": "ray-of-sickness", "type": "slot_level_2", "damage_roll": "3d8", "target_count": null, @@ -39,7 +39,7 @@ "model": "api_v2.spellcastingoption", "pk": 6143, "fields": { - "spell": "ray-of-sickness", + "parent": "ray-of-sickness", "type": "slot_level_3", "damage_roll": "4d8", "target_count": null, @@ -51,7 +51,7 @@ "model": "api_v2.spellcastingoption", "pk": 6144, "fields": { - "spell": "ray-of-sickness", + "parent": "ray-of-sickness", "type": "slot_level_4", "damage_roll": "5d8", "target_count": null, @@ -63,7 +63,7 @@ "model": "api_v2.spellcastingoption", "pk": 6145, "fields": { - "spell": "ray-of-sickness", + "parent": "ray-of-sickness", "type": "slot_level_5", "damage_roll": "6d8", "target_count": null, @@ -75,7 +75,7 @@ "model": "api_v2.spellcastingoption", "pk": 6146, "fields": { - "spell": "ray-of-sickness", + "parent": "ray-of-sickness", "type": "slot_level_6", "damage_roll": "7d8", "target_count": null, @@ -87,7 +87,7 @@ "model": "api_v2.spellcastingoption", "pk": 6147, "fields": { - "spell": "ray-of-sickness", + "parent": "ray-of-sickness", "type": "slot_level_7", "damage_roll": "8d8", "target_count": null, @@ -99,7 +99,7 @@ "model": "api_v2.spellcastingoption", "pk": 6148, "fields": { - "spell": "ray-of-sickness", + "parent": "ray-of-sickness", "type": "slot_level_8", "damage_roll": "9d8", "target_count": null, @@ -111,7 +111,7 @@ "model": "api_v2.spellcastingoption", "pk": 6149, "fields": { - "spell": "ray-of-sickness", + "parent": "ray-of-sickness", "type": "slot_level_9", "damage_roll": "10d8", "target_count": null, diff --git a/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json b/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json index 81cd7aef..5f8e4492 100644 --- a/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json +++ b/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json @@ -3,7 +3,7 @@ "model": "api_v2.spellcastingoption", "pk": 5005, "fields": { - "spell": "acid-arrow", + "parent": "acid-arrow", "type": "default", "damage_roll": null, "target_count": null, @@ -15,7 +15,7 @@ "model": "api_v2.spellcastingoption", "pk": 5007, "fields": { - "spell": "acid-arrow", + "parent": "acid-arrow", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -27,7 +27,7 @@ "model": "api_v2.spellcastingoption", "pk": 5008, "fields": { - "spell": "acid-arrow", + "parent": "acid-arrow", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -39,7 +39,7 @@ "model": "api_v2.spellcastingoption", "pk": 5009, "fields": { - "spell": "acid-arrow", + "parent": "acid-arrow", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -51,7 +51,7 @@ "model": "api_v2.spellcastingoption", "pk": 5010, "fields": { - "spell": "acid-arrow", + "parent": "acid-arrow", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -63,7 +63,7 @@ "model": "api_v2.spellcastingoption", "pk": 5011, "fields": { - "spell": "acid-arrow", + "parent": "acid-arrow", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -75,7 +75,7 @@ "model": "api_v2.spellcastingoption", "pk": 5012, "fields": { - "spell": "acid-arrow", + "parent": "acid-arrow", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -87,7 +87,7 @@ "model": "api_v2.spellcastingoption", "pk": 5013, "fields": { - "spell": "acid-arrow", + "parent": "acid-arrow", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -99,7 +99,7 @@ "model": "api_v2.spellcastingoption", "pk": 5014, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "default", "damage_roll": null, "target_count": null, @@ -111,7 +111,7 @@ "model": "api_v2.spellcastingoption", "pk": 5015, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -123,7 +123,7 @@ "model": "api_v2.spellcastingoption", "pk": 5016, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_2", "damage_roll": "", "target_count": null, @@ -135,7 +135,7 @@ "model": "api_v2.spellcastingoption", "pk": 5017, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_3", "damage_roll": "", "target_count": null, @@ -147,7 +147,7 @@ "model": "api_v2.spellcastingoption", "pk": 5018, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_4", "damage_roll": "", "target_count": null, @@ -159,7 +159,7 @@ "model": "api_v2.spellcastingoption", "pk": 5019, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_5", "damage_roll": "2d6", "target_count": null, @@ -171,7 +171,7 @@ "model": "api_v2.spellcastingoption", "pk": 5020, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_6", "damage_roll": "2d6", "target_count": null, @@ -183,7 +183,7 @@ "model": "api_v2.spellcastingoption", "pk": 5021, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_7", "damage_roll": "2d6", "target_count": null, @@ -195,7 +195,7 @@ "model": "api_v2.spellcastingoption", "pk": 5022, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_8", "damage_roll": "2d6", "target_count": null, @@ -207,7 +207,7 @@ "model": "api_v2.spellcastingoption", "pk": 5023, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_9", "damage_roll": "2d6", "target_count": null, @@ -219,7 +219,7 @@ "model": "api_v2.spellcastingoption", "pk": 5024, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_10", "damage_roll": "2d6", "target_count": null, @@ -231,7 +231,7 @@ "model": "api_v2.spellcastingoption", "pk": 5025, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_11", "damage_roll": "3d6", "target_count": null, @@ -243,7 +243,7 @@ "model": "api_v2.spellcastingoption", "pk": 5026, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_12", "damage_roll": "3d6", "target_count": null, @@ -255,7 +255,7 @@ "model": "api_v2.spellcastingoption", "pk": 5027, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_13", "damage_roll": "3d6", "target_count": null, @@ -267,7 +267,7 @@ "model": "api_v2.spellcastingoption", "pk": 5028, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_14", "damage_roll": "3d6", "target_count": null, @@ -279,7 +279,7 @@ "model": "api_v2.spellcastingoption", "pk": 5029, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_15", "damage_roll": "3d6", "target_count": null, @@ -291,7 +291,7 @@ "model": "api_v2.spellcastingoption", "pk": 5030, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_16", "damage_roll": "3d6", "target_count": null, @@ -303,7 +303,7 @@ "model": "api_v2.spellcastingoption", "pk": 5031, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_17", "damage_roll": "4d6", "target_count": null, @@ -315,7 +315,7 @@ "model": "api_v2.spellcastingoption", "pk": 5032, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_18", "damage_roll": "4d6", "target_count": null, @@ -327,7 +327,7 @@ "model": "api_v2.spellcastingoption", "pk": 5033, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_19", "damage_roll": "4d6", "target_count": null, @@ -339,7 +339,7 @@ "model": "api_v2.spellcastingoption", "pk": 5034, "fields": { - "spell": "acid-splash", + "parent": "acid-splash", "type": "player_level_20", "damage_roll": "4d6", "target_count": null, @@ -351,7 +351,7 @@ "model": "api_v2.spellcastingoption", "pk": 5035, "fields": { - "spell": "aid", + "parent": "aid", "type": "default", "damage_roll": null, "target_count": null, @@ -363,7 +363,7 @@ "model": "api_v2.spellcastingoption", "pk": 5037, "fields": { - "spell": "aid", + "parent": "aid", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -375,7 +375,7 @@ "model": "api_v2.spellcastingoption", "pk": 5038, "fields": { - "spell": "aid", + "parent": "aid", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -387,7 +387,7 @@ "model": "api_v2.spellcastingoption", "pk": 5039, "fields": { - "spell": "aid", + "parent": "aid", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -399,7 +399,7 @@ "model": "api_v2.spellcastingoption", "pk": 5040, "fields": { - "spell": "aid", + "parent": "aid", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -411,7 +411,7 @@ "model": "api_v2.spellcastingoption", "pk": 5041, "fields": { - "spell": "aid", + "parent": "aid", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -423,7 +423,7 @@ "model": "api_v2.spellcastingoption", "pk": 5042, "fields": { - "spell": "aid", + "parent": "aid", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -435,7 +435,7 @@ "model": "api_v2.spellcastingoption", "pk": 5043, "fields": { - "spell": "aid", + "parent": "aid", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -447,7 +447,7 @@ "model": "api_v2.spellcastingoption", "pk": 5044, "fields": { - "spell": "alarm", + "parent": "alarm", "type": "default", "damage_roll": null, "target_count": null, @@ -459,7 +459,7 @@ "model": "api_v2.spellcastingoption", "pk": 5045, "fields": { - "spell": "alarm", + "parent": "alarm", "type": "ritual", "damage_roll": null, "target_count": null, @@ -471,7 +471,7 @@ "model": "api_v2.spellcastingoption", "pk": 5046, "fields": { - "spell": "alter-self", + "parent": "alter-self", "type": "default", "damage_roll": null, "target_count": null, @@ -483,7 +483,7 @@ "model": "api_v2.spellcastingoption", "pk": 5047, "fields": { - "spell": "animal-friendship", + "parent": "animal-friendship", "type": "default", "damage_roll": null, "target_count": null, @@ -495,7 +495,7 @@ "model": "api_v2.spellcastingoption", "pk": 5049, "fields": { - "spell": "animal-friendship", + "parent": "animal-friendship", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -507,7 +507,7 @@ "model": "api_v2.spellcastingoption", "pk": 5050, "fields": { - "spell": "animal-friendship", + "parent": "animal-friendship", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -519,7 +519,7 @@ "model": "api_v2.spellcastingoption", "pk": 5051, "fields": { - "spell": "animal-friendship", + "parent": "animal-friendship", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -531,7 +531,7 @@ "model": "api_v2.spellcastingoption", "pk": 5052, "fields": { - "spell": "animal-friendship", + "parent": "animal-friendship", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -543,7 +543,7 @@ "model": "api_v2.spellcastingoption", "pk": 5053, "fields": { - "spell": "animal-friendship", + "parent": "animal-friendship", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -555,7 +555,7 @@ "model": "api_v2.spellcastingoption", "pk": 5054, "fields": { - "spell": "animal-friendship", + "parent": "animal-friendship", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -567,7 +567,7 @@ "model": "api_v2.spellcastingoption", "pk": 5055, "fields": { - "spell": "animal-friendship", + "parent": "animal-friendship", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -579,7 +579,7 @@ "model": "api_v2.spellcastingoption", "pk": 5056, "fields": { - "spell": "animal-friendship", + "parent": "animal-friendship", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -591,7 +591,7 @@ "model": "api_v2.spellcastingoption", "pk": 5057, "fields": { - "spell": "animal-messenger", + "parent": "animal-messenger", "type": "default", "damage_roll": null, "target_count": null, @@ -603,7 +603,7 @@ "model": "api_v2.spellcastingoption", "pk": 5058, "fields": { - "spell": "animal-messenger", + "parent": "animal-messenger", "type": "ritual", "damage_roll": null, "target_count": null, @@ -615,7 +615,7 @@ "model": "api_v2.spellcastingoption", "pk": 5060, "fields": { - "spell": "animal-messenger", + "parent": "animal-messenger", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -627,7 +627,7 @@ "model": "api_v2.spellcastingoption", "pk": 5061, "fields": { - "spell": "animal-messenger", + "parent": "animal-messenger", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -639,7 +639,7 @@ "model": "api_v2.spellcastingoption", "pk": 5062, "fields": { - "spell": "animal-messenger", + "parent": "animal-messenger", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -651,7 +651,7 @@ "model": "api_v2.spellcastingoption", "pk": 5063, "fields": { - "spell": "animal-messenger", + "parent": "animal-messenger", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -663,7 +663,7 @@ "model": "api_v2.spellcastingoption", "pk": 5064, "fields": { - "spell": "animal-messenger", + "parent": "animal-messenger", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -675,7 +675,7 @@ "model": "api_v2.spellcastingoption", "pk": 5065, "fields": { - "spell": "animal-messenger", + "parent": "animal-messenger", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -687,7 +687,7 @@ "model": "api_v2.spellcastingoption", "pk": 5066, "fields": { - "spell": "animal-messenger", + "parent": "animal-messenger", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -699,7 +699,7 @@ "model": "api_v2.spellcastingoption", "pk": 5067, "fields": { - "spell": "animal-shapes", + "parent": "animal-shapes", "type": "default", "damage_roll": null, "target_count": null, @@ -711,7 +711,7 @@ "model": "api_v2.spellcastingoption", "pk": 5068, "fields": { - "spell": "animate-dead", + "parent": "animate-dead", "type": "default", "damage_roll": null, "target_count": null, @@ -723,7 +723,7 @@ "model": "api_v2.spellcastingoption", "pk": 5070, "fields": { - "spell": "animate-dead", + "parent": "animate-dead", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -735,7 +735,7 @@ "model": "api_v2.spellcastingoption", "pk": 5071, "fields": { - "spell": "animate-dead", + "parent": "animate-dead", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -747,7 +747,7 @@ "model": "api_v2.spellcastingoption", "pk": 5072, "fields": { - "spell": "animate-dead", + "parent": "animate-dead", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -759,7 +759,7 @@ "model": "api_v2.spellcastingoption", "pk": 5073, "fields": { - "spell": "animate-dead", + "parent": "animate-dead", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -771,7 +771,7 @@ "model": "api_v2.spellcastingoption", "pk": 5074, "fields": { - "spell": "animate-dead", + "parent": "animate-dead", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -783,7 +783,7 @@ "model": "api_v2.spellcastingoption", "pk": 5075, "fields": { - "spell": "animate-dead", + "parent": "animate-dead", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -795,7 +795,7 @@ "model": "api_v2.spellcastingoption", "pk": 5076, "fields": { - "spell": "animate-objects", + "parent": "animate-objects", "type": "default", "damage_roll": null, "target_count": null, @@ -807,7 +807,7 @@ "model": "api_v2.spellcastingoption", "pk": 5078, "fields": { - "spell": "animate-objects", + "parent": "animate-objects", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -819,7 +819,7 @@ "model": "api_v2.spellcastingoption", "pk": 5079, "fields": { - "spell": "animate-objects", + "parent": "animate-objects", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -831,7 +831,7 @@ "model": "api_v2.spellcastingoption", "pk": 5080, "fields": { - "spell": "animate-objects", + "parent": "animate-objects", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -843,7 +843,7 @@ "model": "api_v2.spellcastingoption", "pk": 5081, "fields": { - "spell": "animate-objects", + "parent": "animate-objects", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -855,7 +855,7 @@ "model": "api_v2.spellcastingoption", "pk": 5082, "fields": { - "spell": "antilife-shell", + "parent": "antilife-shell", "type": "default", "damage_roll": null, "target_count": null, @@ -867,7 +867,7 @@ "model": "api_v2.spellcastingoption", "pk": 5083, "fields": { - "spell": "antimagic-field", + "parent": "antimagic-field", "type": "default", "damage_roll": null, "target_count": null, @@ -879,7 +879,7 @@ "model": "api_v2.spellcastingoption", "pk": 5084, "fields": { - "spell": "antipathysympathy", + "parent": "antipathysympathy", "type": "default", "damage_roll": null, "target_count": null, @@ -891,7 +891,7 @@ "model": "api_v2.spellcastingoption", "pk": 5085, "fields": { - "spell": "arcane-eye", + "parent": "arcane-eye", "type": "default", "damage_roll": null, "target_count": null, @@ -903,7 +903,7 @@ "model": "api_v2.spellcastingoption", "pk": 5086, "fields": { - "spell": "arcane-hand", + "parent": "arcane-hand", "type": "default", "damage_roll": null, "target_count": null, @@ -915,7 +915,7 @@ "model": "api_v2.spellcastingoption", "pk": 5088, "fields": { - "spell": "arcane-hand", + "parent": "arcane-hand", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -927,7 +927,7 @@ "model": "api_v2.spellcastingoption", "pk": 5089, "fields": { - "spell": "arcane-hand", + "parent": "arcane-hand", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -939,7 +939,7 @@ "model": "api_v2.spellcastingoption", "pk": 5090, "fields": { - "spell": "arcane-hand", + "parent": "arcane-hand", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -951,7 +951,7 @@ "model": "api_v2.spellcastingoption", "pk": 5091, "fields": { - "spell": "arcane-hand", + "parent": "arcane-hand", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -963,7 +963,7 @@ "model": "api_v2.spellcastingoption", "pk": 5092, "fields": { - "spell": "arcane-lock", + "parent": "arcane-lock", "type": "default", "damage_roll": null, "target_count": null, @@ -975,7 +975,7 @@ "model": "api_v2.spellcastingoption", "pk": 5093, "fields": { - "spell": "arcane-sword", + "parent": "arcane-sword", "type": "default", "damage_roll": null, "target_count": null, @@ -987,7 +987,7 @@ "model": "api_v2.spellcastingoption", "pk": 5094, "fields": { - "spell": "arcanists-magic-aura", + "parent": "arcanists-magic-aura", "type": "default", "damage_roll": null, "target_count": null, @@ -999,7 +999,7 @@ "model": "api_v2.spellcastingoption", "pk": 5095, "fields": { - "spell": "astral-projection", + "parent": "astral-projection", "type": "default", "damage_roll": null, "target_count": null, @@ -1011,7 +1011,7 @@ "model": "api_v2.spellcastingoption", "pk": 5096, "fields": { - "spell": "augury", + "parent": "augury", "type": "default", "damage_roll": null, "target_count": null, @@ -1023,7 +1023,7 @@ "model": "api_v2.spellcastingoption", "pk": 5097, "fields": { - "spell": "augury", + "parent": "augury", "type": "ritual", "damage_roll": null, "target_count": null, @@ -1035,7 +1035,7 @@ "model": "api_v2.spellcastingoption", "pk": 5098, "fields": { - "spell": "awaken", + "parent": "awaken", "type": "default", "damage_roll": null, "target_count": null, @@ -1047,7 +1047,7 @@ "model": "api_v2.spellcastingoption", "pk": 5099, "fields": { - "spell": "bane", + "parent": "bane", "type": "default", "damage_roll": null, "target_count": null, @@ -1059,7 +1059,7 @@ "model": "api_v2.spellcastingoption", "pk": 5101, "fields": { - "spell": "bane", + "parent": "bane", "type": "slot_level_2", "damage_roll": null, "target_count": 4, @@ -1071,7 +1071,7 @@ "model": "api_v2.spellcastingoption", "pk": 5102, "fields": { - "spell": "bane", + "parent": "bane", "type": "slot_level_3", "damage_roll": null, "target_count": 5, @@ -1083,7 +1083,7 @@ "model": "api_v2.spellcastingoption", "pk": 5103, "fields": { - "spell": "bane", + "parent": "bane", "type": "slot_level_4", "damage_roll": null, "target_count": 6, @@ -1095,7 +1095,7 @@ "model": "api_v2.spellcastingoption", "pk": 5104, "fields": { - "spell": "bane", + "parent": "bane", "type": "slot_level_5", "damage_roll": null, "target_count": 7, @@ -1107,7 +1107,7 @@ "model": "api_v2.spellcastingoption", "pk": 5105, "fields": { - "spell": "bane", + "parent": "bane", "type": "slot_level_6", "damage_roll": null, "target_count": 8, @@ -1119,7 +1119,7 @@ "model": "api_v2.spellcastingoption", "pk": 5106, "fields": { - "spell": "bane", + "parent": "bane", "type": "slot_level_7", "damage_roll": null, "target_count": 9, @@ -1131,7 +1131,7 @@ "model": "api_v2.spellcastingoption", "pk": 5107, "fields": { - "spell": "bane", + "parent": "bane", "type": "slot_level_8", "damage_roll": null, "target_count": 10, @@ -1143,7 +1143,7 @@ "model": "api_v2.spellcastingoption", "pk": 5108, "fields": { - "spell": "bane", + "parent": "bane", "type": "slot_level_9", "damage_roll": null, "target_count": 11, @@ -1155,7 +1155,7 @@ "model": "api_v2.spellcastingoption", "pk": 5109, "fields": { - "spell": "banishment", + "parent": "banishment", "type": "default", "damage_roll": null, "target_count": null, @@ -1167,7 +1167,7 @@ "model": "api_v2.spellcastingoption", "pk": 5111, "fields": { - "spell": "banishment", + "parent": "banishment", "type": "slot_level_5", "damage_roll": null, "target_count": 2, @@ -1179,7 +1179,7 @@ "model": "api_v2.spellcastingoption", "pk": 5112, "fields": { - "spell": "banishment", + "parent": "banishment", "type": "slot_level_6", "damage_roll": null, "target_count": 3, @@ -1191,7 +1191,7 @@ "model": "api_v2.spellcastingoption", "pk": 5113, "fields": { - "spell": "banishment", + "parent": "banishment", "type": "slot_level_7", "damage_roll": null, "target_count": 4, @@ -1203,7 +1203,7 @@ "model": "api_v2.spellcastingoption", "pk": 5114, "fields": { - "spell": "banishment", + "parent": "banishment", "type": "slot_level_8", "damage_roll": null, "target_count": 5, @@ -1215,7 +1215,7 @@ "model": "api_v2.spellcastingoption", "pk": 5115, "fields": { - "spell": "banishment", + "parent": "banishment", "type": "slot_level_9", "damage_roll": null, "target_count": 6, @@ -1227,7 +1227,7 @@ "model": "api_v2.spellcastingoption", "pk": 5116, "fields": { - "spell": "barkskin", + "parent": "barkskin", "type": "default", "damage_roll": null, "target_count": null, @@ -1239,7 +1239,7 @@ "model": "api_v2.spellcastingoption", "pk": 5117, "fields": { - "spell": "beacon-of-hope", + "parent": "beacon-of-hope", "type": "default", "damage_roll": null, "target_count": null, @@ -1251,7 +1251,7 @@ "model": "api_v2.spellcastingoption", "pk": 5118, "fields": { - "spell": "bestow-curse", + "parent": "bestow-curse", "type": "default", "damage_roll": null, "target_count": null, @@ -1263,7 +1263,7 @@ "model": "api_v2.spellcastingoption", "pk": 5120, "fields": { - "spell": "bestow-curse", + "parent": "bestow-curse", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1275,7 +1275,7 @@ "model": "api_v2.spellcastingoption", "pk": 5121, "fields": { - "spell": "bestow-curse", + "parent": "bestow-curse", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1287,7 +1287,7 @@ "model": "api_v2.spellcastingoption", "pk": 5122, "fields": { - "spell": "bestow-curse", + "parent": "bestow-curse", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1299,7 +1299,7 @@ "model": "api_v2.spellcastingoption", "pk": 5123, "fields": { - "spell": "bestow-curse", + "parent": "bestow-curse", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1311,7 +1311,7 @@ "model": "api_v2.spellcastingoption", "pk": 5124, "fields": { - "spell": "bestow-curse", + "parent": "bestow-curse", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1323,7 +1323,7 @@ "model": "api_v2.spellcastingoption", "pk": 5125, "fields": { - "spell": "bestow-curse", + "parent": "bestow-curse", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1335,7 +1335,7 @@ "model": "api_v2.spellcastingoption", "pk": 5126, "fields": { - "spell": "black-tentacles", + "parent": "black-tentacles", "type": "default", "damage_roll": null, "target_count": null, @@ -1347,7 +1347,7 @@ "model": "api_v2.spellcastingoption", "pk": 5127, "fields": { - "spell": "blade-barrier", + "parent": "blade-barrier", "type": "default", "damage_roll": null, "target_count": null, @@ -1359,7 +1359,7 @@ "model": "api_v2.spellcastingoption", "pk": 5128, "fields": { - "spell": "bless", + "parent": "bless", "type": "default", "damage_roll": null, "target_count": null, @@ -1371,7 +1371,7 @@ "model": "api_v2.spellcastingoption", "pk": 5130, "fields": { - "spell": "bless", + "parent": "bless", "type": "slot_level_2", "damage_roll": null, "target_count": 4, @@ -1383,7 +1383,7 @@ "model": "api_v2.spellcastingoption", "pk": 5131, "fields": { - "spell": "bless", + "parent": "bless", "type": "slot_level_3", "damage_roll": null, "target_count": 5, @@ -1395,7 +1395,7 @@ "model": "api_v2.spellcastingoption", "pk": 5132, "fields": { - "spell": "bless", + "parent": "bless", "type": "slot_level_4", "damage_roll": null, "target_count": 6, @@ -1407,7 +1407,7 @@ "model": "api_v2.spellcastingoption", "pk": 5133, "fields": { - "spell": "bless", + "parent": "bless", "type": "slot_level_5", "damage_roll": null, "target_count": 7, @@ -1419,7 +1419,7 @@ "model": "api_v2.spellcastingoption", "pk": 5134, "fields": { - "spell": "bless", + "parent": "bless", "type": "slot_level_6", "damage_roll": null, "target_count": 8, @@ -1431,7 +1431,7 @@ "model": "api_v2.spellcastingoption", "pk": 5135, "fields": { - "spell": "bless", + "parent": "bless", "type": "slot_level_7", "damage_roll": null, "target_count": 9, @@ -1443,7 +1443,7 @@ "model": "api_v2.spellcastingoption", "pk": 5136, "fields": { - "spell": "bless", + "parent": "bless", "type": "slot_level_8", "damage_roll": null, "target_count": 10, @@ -1455,7 +1455,7 @@ "model": "api_v2.spellcastingoption", "pk": 5137, "fields": { - "spell": "bless", + "parent": "bless", "type": "slot_level_9", "damage_roll": null, "target_count": 11, @@ -1467,7 +1467,7 @@ "model": "api_v2.spellcastingoption", "pk": 5138, "fields": { - "spell": "blight", + "parent": "blight", "type": "default", "damage_roll": null, "target_count": null, @@ -1479,7 +1479,7 @@ "model": "api_v2.spellcastingoption", "pk": 5140, "fields": { - "spell": "blight", + "parent": "blight", "type": "slot_level_5", "damage_roll": "9d8", "target_count": null, @@ -1491,7 +1491,7 @@ "model": "api_v2.spellcastingoption", "pk": 5141, "fields": { - "spell": "blight", + "parent": "blight", "type": "slot_level_6", "damage_roll": "10d8", "target_count": null, @@ -1503,7 +1503,7 @@ "model": "api_v2.spellcastingoption", "pk": 5142, "fields": { - "spell": "blight", + "parent": "blight", "type": "slot_level_7", "damage_roll": "11d8", "target_count": null, @@ -1515,7 +1515,7 @@ "model": "api_v2.spellcastingoption", "pk": 5143, "fields": { - "spell": "blight", + "parent": "blight", "type": "slot_level_8", "damage_roll": "12d8", "target_count": null, @@ -1527,7 +1527,7 @@ "model": "api_v2.spellcastingoption", "pk": 5144, "fields": { - "spell": "blight", + "parent": "blight", "type": "slot_level_9", "damage_roll": "13d8", "target_count": null, @@ -1539,7 +1539,7 @@ "model": "api_v2.spellcastingoption", "pk": 5145, "fields": { - "spell": "blindnessdeafness", + "parent": "blindnessdeafness", "type": "default", "damage_roll": null, "target_count": null, @@ -1551,7 +1551,7 @@ "model": "api_v2.spellcastingoption", "pk": 5147, "fields": { - "spell": "blindnessdeafness", + "parent": "blindnessdeafness", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -1563,7 +1563,7 @@ "model": "api_v2.spellcastingoption", "pk": 5148, "fields": { - "spell": "blindnessdeafness", + "parent": "blindnessdeafness", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -1575,7 +1575,7 @@ "model": "api_v2.spellcastingoption", "pk": 5149, "fields": { - "spell": "blindnessdeafness", + "parent": "blindnessdeafness", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -1587,7 +1587,7 @@ "model": "api_v2.spellcastingoption", "pk": 5150, "fields": { - "spell": "blindnessdeafness", + "parent": "blindnessdeafness", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -1599,7 +1599,7 @@ "model": "api_v2.spellcastingoption", "pk": 5151, "fields": { - "spell": "blindnessdeafness", + "parent": "blindnessdeafness", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -1611,7 +1611,7 @@ "model": "api_v2.spellcastingoption", "pk": 5152, "fields": { - "spell": "blindnessdeafness", + "parent": "blindnessdeafness", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -1623,7 +1623,7 @@ "model": "api_v2.spellcastingoption", "pk": 5153, "fields": { - "spell": "blindnessdeafness", + "parent": "blindnessdeafness", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -1635,7 +1635,7 @@ "model": "api_v2.spellcastingoption", "pk": 5154, "fields": { - "spell": "blink", + "parent": "blink", "type": "default", "damage_roll": null, "target_count": null, @@ -1647,7 +1647,7 @@ "model": "api_v2.spellcastingoption", "pk": 5155, "fields": { - "spell": "blur", + "parent": "blur", "type": "default", "damage_roll": null, "target_count": null, @@ -1659,7 +1659,7 @@ "model": "api_v2.spellcastingoption", "pk": 5156, "fields": { - "spell": "branding-smite", + "parent": "branding-smite", "type": "default", "damage_roll": null, "target_count": null, @@ -1671,7 +1671,7 @@ "model": "api_v2.spellcastingoption", "pk": 5158, "fields": { - "spell": "branding-smite", + "parent": "branding-smite", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -1683,7 +1683,7 @@ "model": "api_v2.spellcastingoption", "pk": 5159, "fields": { - "spell": "branding-smite", + "parent": "branding-smite", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -1695,7 +1695,7 @@ "model": "api_v2.spellcastingoption", "pk": 5160, "fields": { - "spell": "branding-smite", + "parent": "branding-smite", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -1707,7 +1707,7 @@ "model": "api_v2.spellcastingoption", "pk": 5161, "fields": { - "spell": "branding-smite", + "parent": "branding-smite", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -1719,7 +1719,7 @@ "model": "api_v2.spellcastingoption", "pk": 5162, "fields": { - "spell": "branding-smite", + "parent": "branding-smite", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1731,7 +1731,7 @@ "model": "api_v2.spellcastingoption", "pk": 5163, "fields": { - "spell": "branding-smite", + "parent": "branding-smite", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1743,7 +1743,7 @@ "model": "api_v2.spellcastingoption", "pk": 5164, "fields": { - "spell": "branding-smite", + "parent": "branding-smite", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -1755,7 +1755,7 @@ "model": "api_v2.spellcastingoption", "pk": 5165, "fields": { - "spell": "burning-hands", + "parent": "burning-hands", "type": "default", "damage_roll": null, "target_count": null, @@ -1767,7 +1767,7 @@ "model": "api_v2.spellcastingoption", "pk": 5167, "fields": { - "spell": "burning-hands", + "parent": "burning-hands", "type": "slot_level_2", "damage_roll": "4d6", "target_count": null, @@ -1779,7 +1779,7 @@ "model": "api_v2.spellcastingoption", "pk": 5168, "fields": { - "spell": "burning-hands", + "parent": "burning-hands", "type": "slot_level_3", "damage_roll": "5d6", "target_count": null, @@ -1791,7 +1791,7 @@ "model": "api_v2.spellcastingoption", "pk": 5169, "fields": { - "spell": "burning-hands", + "parent": "burning-hands", "type": "slot_level_4", "damage_roll": "6d6", "target_count": null, @@ -1803,7 +1803,7 @@ "model": "api_v2.spellcastingoption", "pk": 5170, "fields": { - "spell": "burning-hands", + "parent": "burning-hands", "type": "slot_level_5", "damage_roll": "7d6", "target_count": null, @@ -1815,7 +1815,7 @@ "model": "api_v2.spellcastingoption", "pk": 5171, "fields": { - "spell": "burning-hands", + "parent": "burning-hands", "type": "slot_level_6", "damage_roll": "8d6", "target_count": null, @@ -1827,7 +1827,7 @@ "model": "api_v2.spellcastingoption", "pk": 5172, "fields": { - "spell": "burning-hands", + "parent": "burning-hands", "type": "slot_level_7", "damage_roll": "9d6", "target_count": null, @@ -1839,7 +1839,7 @@ "model": "api_v2.spellcastingoption", "pk": 5173, "fields": { - "spell": "burning-hands", + "parent": "burning-hands", "type": "slot_level_8", "damage_roll": "10d6", "target_count": null, @@ -1851,7 +1851,7 @@ "model": "api_v2.spellcastingoption", "pk": 5174, "fields": { - "spell": "burning-hands", + "parent": "burning-hands", "type": "slot_level_9", "damage_roll": "11d6", "target_count": null, @@ -1863,7 +1863,7 @@ "model": "api_v2.spellcastingoption", "pk": 5175, "fields": { - "spell": "call-lightning", + "parent": "call-lightning", "type": "default", "damage_roll": null, "target_count": null, @@ -1875,7 +1875,7 @@ "model": "api_v2.spellcastingoption", "pk": 5177, "fields": { - "spell": "call-lightning", + "parent": "call-lightning", "type": "slot_level_4", "damage_roll": "4d10", "target_count": null, @@ -1887,7 +1887,7 @@ "model": "api_v2.spellcastingoption", "pk": 5178, "fields": { - "spell": "call-lightning", + "parent": "call-lightning", "type": "slot_level_5", "damage_roll": "5d10", "target_count": null, @@ -1899,7 +1899,7 @@ "model": "api_v2.spellcastingoption", "pk": 5179, "fields": { - "spell": "call-lightning", + "parent": "call-lightning", "type": "slot_level_6", "damage_roll": "6d10", "target_count": null, @@ -1911,7 +1911,7 @@ "model": "api_v2.spellcastingoption", "pk": 5180, "fields": { - "spell": "call-lightning", + "parent": "call-lightning", "type": "slot_level_7", "damage_roll": "7d10", "target_count": null, @@ -1923,7 +1923,7 @@ "model": "api_v2.spellcastingoption", "pk": 5181, "fields": { - "spell": "call-lightning", + "parent": "call-lightning", "type": "slot_level_8", "damage_roll": "8d10", "target_count": null, @@ -1935,7 +1935,7 @@ "model": "api_v2.spellcastingoption", "pk": 5182, "fields": { - "spell": "call-lightning", + "parent": "call-lightning", "type": "slot_level_9", "damage_roll": "9d10", "target_count": null, @@ -1947,7 +1947,7 @@ "model": "api_v2.spellcastingoption", "pk": 5183, "fields": { - "spell": "calm-emotions", + "parent": "calm-emotions", "type": "default", "damage_roll": null, "target_count": null, @@ -1959,7 +1959,7 @@ "model": "api_v2.spellcastingoption", "pk": 5184, "fields": { - "spell": "chain-lightning", + "parent": "chain-lightning", "type": "default", "damage_roll": null, "target_count": null, @@ -1971,7 +1971,7 @@ "model": "api_v2.spellcastingoption", "pk": 5186, "fields": { - "spell": "chain-lightning", + "parent": "chain-lightning", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -1983,7 +1983,7 @@ "model": "api_v2.spellcastingoption", "pk": 5187, "fields": { - "spell": "chain-lightning", + "parent": "chain-lightning", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -1995,7 +1995,7 @@ "model": "api_v2.spellcastingoption", "pk": 5188, "fields": { - "spell": "chain-lightning", + "parent": "chain-lightning", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2007,7 +2007,7 @@ "model": "api_v2.spellcastingoption", "pk": 5189, "fields": { - "spell": "charm-person", + "parent": "charm-person", "type": "default", "damage_roll": null, "target_count": null, @@ -2019,7 +2019,7 @@ "model": "api_v2.spellcastingoption", "pk": 5191, "fields": { - "spell": "charm-person", + "parent": "charm-person", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -2031,7 +2031,7 @@ "model": "api_v2.spellcastingoption", "pk": 5192, "fields": { - "spell": "charm-person", + "parent": "charm-person", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -2043,7 +2043,7 @@ "model": "api_v2.spellcastingoption", "pk": 5193, "fields": { - "spell": "charm-person", + "parent": "charm-person", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -2055,7 +2055,7 @@ "model": "api_v2.spellcastingoption", "pk": 5194, "fields": { - "spell": "charm-person", + "parent": "charm-person", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -2067,7 +2067,7 @@ "model": "api_v2.spellcastingoption", "pk": 5195, "fields": { - "spell": "charm-person", + "parent": "charm-person", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -2079,7 +2079,7 @@ "model": "api_v2.spellcastingoption", "pk": 5196, "fields": { - "spell": "charm-person", + "parent": "charm-person", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -2091,7 +2091,7 @@ "model": "api_v2.spellcastingoption", "pk": 5197, "fields": { - "spell": "charm-person", + "parent": "charm-person", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -2103,7 +2103,7 @@ "model": "api_v2.spellcastingoption", "pk": 5198, "fields": { - "spell": "charm-person", + "parent": "charm-person", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -2115,7 +2115,7 @@ "model": "api_v2.spellcastingoption", "pk": 5199, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "default", "damage_roll": null, "target_count": null, @@ -2127,7 +2127,7 @@ "model": "api_v2.spellcastingoption", "pk": 5200, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -2139,7 +2139,7 @@ "model": "api_v2.spellcastingoption", "pk": 5201, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -2151,7 +2151,7 @@ "model": "api_v2.spellcastingoption", "pk": 5202, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -2163,7 +2163,7 @@ "model": "api_v2.spellcastingoption", "pk": 5203, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -2175,7 +2175,7 @@ "model": "api_v2.spellcastingoption", "pk": 5204, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_5", "damage_roll": "2d8", "target_count": null, @@ -2187,7 +2187,7 @@ "model": "api_v2.spellcastingoption", "pk": 5205, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_6", "damage_roll": "2d8", "target_count": null, @@ -2199,7 +2199,7 @@ "model": "api_v2.spellcastingoption", "pk": 5206, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_7", "damage_roll": "2d8", "target_count": null, @@ -2211,7 +2211,7 @@ "model": "api_v2.spellcastingoption", "pk": 5207, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_8", "damage_roll": "2d8", "target_count": null, @@ -2223,7 +2223,7 @@ "model": "api_v2.spellcastingoption", "pk": 5208, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_9", "damage_roll": "2d8", "target_count": null, @@ -2235,7 +2235,7 @@ "model": "api_v2.spellcastingoption", "pk": 5209, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_10", "damage_roll": "2d8", "target_count": null, @@ -2247,7 +2247,7 @@ "model": "api_v2.spellcastingoption", "pk": 5210, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_11", "damage_roll": "3d8", "target_count": null, @@ -2259,7 +2259,7 @@ "model": "api_v2.spellcastingoption", "pk": 5211, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_12", "damage_roll": "3d8", "target_count": null, @@ -2271,7 +2271,7 @@ "model": "api_v2.spellcastingoption", "pk": 5212, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_13", "damage_roll": "3d8", "target_count": null, @@ -2283,7 +2283,7 @@ "model": "api_v2.spellcastingoption", "pk": 5213, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_14", "damage_roll": "3d8", "target_count": null, @@ -2295,7 +2295,7 @@ "model": "api_v2.spellcastingoption", "pk": 5214, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_15", "damage_roll": "3d8", "target_count": null, @@ -2307,7 +2307,7 @@ "model": "api_v2.spellcastingoption", "pk": 5215, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_16", "damage_roll": "3d8", "target_count": null, @@ -2319,7 +2319,7 @@ "model": "api_v2.spellcastingoption", "pk": 5216, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_17", "damage_roll": "4d8", "target_count": null, @@ -2331,7 +2331,7 @@ "model": "api_v2.spellcastingoption", "pk": 5217, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_18", "damage_roll": "4d8", "target_count": null, @@ -2343,7 +2343,7 @@ "model": "api_v2.spellcastingoption", "pk": 5218, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_19", "damage_roll": "4d8", "target_count": null, @@ -2355,7 +2355,7 @@ "model": "api_v2.spellcastingoption", "pk": 5219, "fields": { - "spell": "chill-touch", + "parent": "chill-touch", "type": "player_level_20", "damage_roll": "4d8", "target_count": null, @@ -2367,7 +2367,7 @@ "model": "api_v2.spellcastingoption", "pk": 5220, "fields": { - "spell": "circle-of-death", + "parent": "circle-of-death", "type": "default", "damage_roll": null, "target_count": null, @@ -2379,7 +2379,7 @@ "model": "api_v2.spellcastingoption", "pk": 5222, "fields": { - "spell": "circle-of-death", + "parent": "circle-of-death", "type": "slot_level_7", "damage_roll": "10d6", "target_count": null, @@ -2391,7 +2391,7 @@ "model": "api_v2.spellcastingoption", "pk": 5223, "fields": { - "spell": "circle-of-death", + "parent": "circle-of-death", "type": "slot_level_8", "damage_roll": "12d6", "target_count": null, @@ -2403,7 +2403,7 @@ "model": "api_v2.spellcastingoption", "pk": 5224, "fields": { - "spell": "circle-of-death", + "parent": "circle-of-death", "type": "slot_level_9", "damage_roll": "14d6", "target_count": null, @@ -2415,7 +2415,7 @@ "model": "api_v2.spellcastingoption", "pk": 5225, "fields": { - "spell": "clairvoyance", + "parent": "clairvoyance", "type": "default", "damage_roll": null, "target_count": null, @@ -2427,7 +2427,7 @@ "model": "api_v2.spellcastingoption", "pk": 5226, "fields": { - "spell": "clone", + "parent": "clone", "type": "default", "damage_roll": null, "target_count": null, @@ -2439,7 +2439,7 @@ "model": "api_v2.spellcastingoption", "pk": 5227, "fields": { - "spell": "cloudkill", + "parent": "cloudkill", "type": "default", "damage_roll": null, "target_count": null, @@ -2451,7 +2451,7 @@ "model": "api_v2.spellcastingoption", "pk": 5229, "fields": { - "spell": "cloudkill", + "parent": "cloudkill", "type": "slot_level_6", "damage_roll": "6d8", "target_count": null, @@ -2463,7 +2463,7 @@ "model": "api_v2.spellcastingoption", "pk": 5230, "fields": { - "spell": "cloudkill", + "parent": "cloudkill", "type": "slot_level_7", "damage_roll": "7d8", "target_count": null, @@ -2475,7 +2475,7 @@ "model": "api_v2.spellcastingoption", "pk": 5231, "fields": { - "spell": "cloudkill", + "parent": "cloudkill", "type": "slot_level_8", "damage_roll": "8d8", "target_count": null, @@ -2487,7 +2487,7 @@ "model": "api_v2.spellcastingoption", "pk": 5232, "fields": { - "spell": "cloudkill", + "parent": "cloudkill", "type": "slot_level_9", "damage_roll": "9d8", "target_count": null, @@ -2499,7 +2499,7 @@ "model": "api_v2.spellcastingoption", "pk": 5233, "fields": { - "spell": "color-spray", + "parent": "color-spray", "type": "default", "damage_roll": null, "target_count": null, @@ -2511,7 +2511,7 @@ "model": "api_v2.spellcastingoption", "pk": 5235, "fields": { - "spell": "color-spray", + "parent": "color-spray", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -2523,7 +2523,7 @@ "model": "api_v2.spellcastingoption", "pk": 5236, "fields": { - "spell": "color-spray", + "parent": "color-spray", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -2535,7 +2535,7 @@ "model": "api_v2.spellcastingoption", "pk": 5237, "fields": { - "spell": "color-spray", + "parent": "color-spray", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2547,7 +2547,7 @@ "model": "api_v2.spellcastingoption", "pk": 5238, "fields": { - "spell": "color-spray", + "parent": "color-spray", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2559,7 +2559,7 @@ "model": "api_v2.spellcastingoption", "pk": 5239, "fields": { - "spell": "color-spray", + "parent": "color-spray", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2571,7 +2571,7 @@ "model": "api_v2.spellcastingoption", "pk": 5240, "fields": { - "spell": "color-spray", + "parent": "color-spray", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2583,7 +2583,7 @@ "model": "api_v2.spellcastingoption", "pk": 5241, "fields": { - "spell": "color-spray", + "parent": "color-spray", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2595,7 +2595,7 @@ "model": "api_v2.spellcastingoption", "pk": 5242, "fields": { - "spell": "color-spray", + "parent": "color-spray", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2607,7 +2607,7 @@ "model": "api_v2.spellcastingoption", "pk": 5243, "fields": { - "spell": "command", + "parent": "command", "type": "default", "damage_roll": null, "target_count": null, @@ -2619,7 +2619,7 @@ "model": "api_v2.spellcastingoption", "pk": 5245, "fields": { - "spell": "command", + "parent": "command", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -2631,7 +2631,7 @@ "model": "api_v2.spellcastingoption", "pk": 5246, "fields": { - "spell": "command", + "parent": "command", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -2643,7 +2643,7 @@ "model": "api_v2.spellcastingoption", "pk": 5247, "fields": { - "spell": "command", + "parent": "command", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -2655,7 +2655,7 @@ "model": "api_v2.spellcastingoption", "pk": 5248, "fields": { - "spell": "command", + "parent": "command", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -2667,7 +2667,7 @@ "model": "api_v2.spellcastingoption", "pk": 5249, "fields": { - "spell": "command", + "parent": "command", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -2679,7 +2679,7 @@ "model": "api_v2.spellcastingoption", "pk": 5250, "fields": { - "spell": "command", + "parent": "command", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -2691,7 +2691,7 @@ "model": "api_v2.spellcastingoption", "pk": 5251, "fields": { - "spell": "command", + "parent": "command", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -2703,7 +2703,7 @@ "model": "api_v2.spellcastingoption", "pk": 5252, "fields": { - "spell": "command", + "parent": "command", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -2715,7 +2715,7 @@ "model": "api_v2.spellcastingoption", "pk": 5253, "fields": { - "spell": "commune", + "parent": "commune", "type": "default", "damage_roll": null, "target_count": null, @@ -2727,7 +2727,7 @@ "model": "api_v2.spellcastingoption", "pk": 5254, "fields": { - "spell": "commune", + "parent": "commune", "type": "ritual", "damage_roll": null, "target_count": null, @@ -2739,7 +2739,7 @@ "model": "api_v2.spellcastingoption", "pk": 5255, "fields": { - "spell": "commune-with-nature", + "parent": "commune-with-nature", "type": "default", "damage_roll": null, "target_count": null, @@ -2751,7 +2751,7 @@ "model": "api_v2.spellcastingoption", "pk": 5256, "fields": { - "spell": "commune-with-nature", + "parent": "commune-with-nature", "type": "ritual", "damage_roll": null, "target_count": null, @@ -2763,7 +2763,7 @@ "model": "api_v2.spellcastingoption", "pk": 5257, "fields": { - "spell": "comprehend-languages", + "parent": "comprehend-languages", "type": "default", "damage_roll": null, "target_count": null, @@ -2775,7 +2775,7 @@ "model": "api_v2.spellcastingoption", "pk": 5258, "fields": { - "spell": "comprehend-languages", + "parent": "comprehend-languages", "type": "ritual", "damage_roll": null, "target_count": null, @@ -2787,7 +2787,7 @@ "model": "api_v2.spellcastingoption", "pk": 5259, "fields": { - "spell": "compulsion", + "parent": "compulsion", "type": "default", "damage_roll": null, "target_count": null, @@ -2799,7 +2799,7 @@ "model": "api_v2.spellcastingoption", "pk": 5260, "fields": { - "spell": "cone-of-cold", + "parent": "cone-of-cold", "type": "default", "damage_roll": null, "target_count": null, @@ -2811,7 +2811,7 @@ "model": "api_v2.spellcastingoption", "pk": 5262, "fields": { - "spell": "cone-of-cold", + "parent": "cone-of-cold", "type": "slot_level_6", "damage_roll": "9d8", "target_count": null, @@ -2823,7 +2823,7 @@ "model": "api_v2.spellcastingoption", "pk": 5263, "fields": { - "spell": "cone-of-cold", + "parent": "cone-of-cold", "type": "slot_level_7", "damage_roll": "10d8", "target_count": null, @@ -2835,7 +2835,7 @@ "model": "api_v2.spellcastingoption", "pk": 5264, "fields": { - "spell": "cone-of-cold", + "parent": "cone-of-cold", "type": "slot_level_8", "damage_roll": "11d8", "target_count": null, @@ -2847,7 +2847,7 @@ "model": "api_v2.spellcastingoption", "pk": 5265, "fields": { - "spell": "cone-of-cold", + "parent": "cone-of-cold", "type": "slot_level_9", "damage_roll": "12d8", "target_count": null, @@ -2859,7 +2859,7 @@ "model": "api_v2.spellcastingoption", "pk": 5266, "fields": { - "spell": "confusion", + "parent": "confusion", "type": "default", "damage_roll": null, "target_count": null, @@ -2871,7 +2871,7 @@ "model": "api_v2.spellcastingoption", "pk": 5268, "fields": { - "spell": "confusion", + "parent": "confusion", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2883,7 +2883,7 @@ "model": "api_v2.spellcastingoption", "pk": 5269, "fields": { - "spell": "confusion", + "parent": "confusion", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2895,7 +2895,7 @@ "model": "api_v2.spellcastingoption", "pk": 5270, "fields": { - "spell": "confusion", + "parent": "confusion", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2907,7 +2907,7 @@ "model": "api_v2.spellcastingoption", "pk": 5271, "fields": { - "spell": "confusion", + "parent": "confusion", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -2919,7 +2919,7 @@ "model": "api_v2.spellcastingoption", "pk": 5272, "fields": { - "spell": "confusion", + "parent": "confusion", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -2931,7 +2931,7 @@ "model": "api_v2.spellcastingoption", "pk": 5273, "fields": { - "spell": "conjure-animals", + "parent": "conjure-animals", "type": "default", "damage_roll": null, "target_count": null, @@ -2943,7 +2943,7 @@ "model": "api_v2.spellcastingoption", "pk": 5275, "fields": { - "spell": "conjure-animals", + "parent": "conjure-animals", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -2955,7 +2955,7 @@ "model": "api_v2.spellcastingoption", "pk": 5276, "fields": { - "spell": "conjure-animals", + "parent": "conjure-animals", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -2967,7 +2967,7 @@ "model": "api_v2.spellcastingoption", "pk": 5277, "fields": { - "spell": "conjure-animals", + "parent": "conjure-animals", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -2979,7 +2979,7 @@ "model": "api_v2.spellcastingoption", "pk": 5278, "fields": { - "spell": "conjure-animals", + "parent": "conjure-animals", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -2991,7 +2991,7 @@ "model": "api_v2.spellcastingoption", "pk": 5279, "fields": { - "spell": "conjure-animals", + "parent": "conjure-animals", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3003,7 +3003,7 @@ "model": "api_v2.spellcastingoption", "pk": 5280, "fields": { - "spell": "conjure-animals", + "parent": "conjure-animals", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3015,7 +3015,7 @@ "model": "api_v2.spellcastingoption", "pk": 5281, "fields": { - "spell": "conjure-celestial", + "parent": "conjure-celestial", "type": "default", "damage_roll": null, "target_count": null, @@ -3027,7 +3027,7 @@ "model": "api_v2.spellcastingoption", "pk": 5283, "fields": { - "spell": "conjure-celestial", + "parent": "conjure-celestial", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3039,7 +3039,7 @@ "model": "api_v2.spellcastingoption", "pk": 5284, "fields": { - "spell": "conjure-celestial", + "parent": "conjure-celestial", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3051,7 +3051,7 @@ "model": "api_v2.spellcastingoption", "pk": 5285, "fields": { - "spell": "conjure-elemental", + "parent": "conjure-elemental", "type": "default", "damage_roll": null, "target_count": null, @@ -3063,7 +3063,7 @@ "model": "api_v2.spellcastingoption", "pk": 5287, "fields": { - "spell": "conjure-elemental", + "parent": "conjure-elemental", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3075,7 +3075,7 @@ "model": "api_v2.spellcastingoption", "pk": 5288, "fields": { - "spell": "conjure-elemental", + "parent": "conjure-elemental", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3087,7 +3087,7 @@ "model": "api_v2.spellcastingoption", "pk": 5289, "fields": { - "spell": "conjure-elemental", + "parent": "conjure-elemental", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3099,7 +3099,7 @@ "model": "api_v2.spellcastingoption", "pk": 5290, "fields": { - "spell": "conjure-elemental", + "parent": "conjure-elemental", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3111,7 +3111,7 @@ "model": "api_v2.spellcastingoption", "pk": 5291, "fields": { - "spell": "conjure-fey", + "parent": "conjure-fey", "type": "default", "damage_roll": null, "target_count": null, @@ -3123,7 +3123,7 @@ "model": "api_v2.spellcastingoption", "pk": 5293, "fields": { - "spell": "conjure-fey", + "parent": "conjure-fey", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3135,7 +3135,7 @@ "model": "api_v2.spellcastingoption", "pk": 5294, "fields": { - "spell": "conjure-fey", + "parent": "conjure-fey", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3147,7 +3147,7 @@ "model": "api_v2.spellcastingoption", "pk": 5295, "fields": { - "spell": "conjure-fey", + "parent": "conjure-fey", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3159,7 +3159,7 @@ "model": "api_v2.spellcastingoption", "pk": 5296, "fields": { - "spell": "conjure-minor-elementals", + "parent": "conjure-minor-elementals", "type": "default", "damage_roll": null, "target_count": null, @@ -3171,7 +3171,7 @@ "model": "api_v2.spellcastingoption", "pk": 5298, "fields": { - "spell": "conjure-minor-elementals", + "parent": "conjure-minor-elementals", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3183,7 +3183,7 @@ "model": "api_v2.spellcastingoption", "pk": 5299, "fields": { - "spell": "conjure-minor-elementals", + "parent": "conjure-minor-elementals", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3195,7 +3195,7 @@ "model": "api_v2.spellcastingoption", "pk": 5300, "fields": { - "spell": "conjure-minor-elementals", + "parent": "conjure-minor-elementals", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3207,7 +3207,7 @@ "model": "api_v2.spellcastingoption", "pk": 5301, "fields": { - "spell": "conjure-minor-elementals", + "parent": "conjure-minor-elementals", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3219,7 +3219,7 @@ "model": "api_v2.spellcastingoption", "pk": 5302, "fields": { - "spell": "conjure-minor-elementals", + "parent": "conjure-minor-elementals", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3231,7 +3231,7 @@ "model": "api_v2.spellcastingoption", "pk": 5303, "fields": { - "spell": "conjure-woodland-beings", + "parent": "conjure-woodland-beings", "type": "default", "damage_roll": null, "target_count": null, @@ -3243,7 +3243,7 @@ "model": "api_v2.spellcastingoption", "pk": 5305, "fields": { - "spell": "conjure-woodland-beings", + "parent": "conjure-woodland-beings", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3255,7 +3255,7 @@ "model": "api_v2.spellcastingoption", "pk": 5306, "fields": { - "spell": "conjure-woodland-beings", + "parent": "conjure-woodland-beings", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3267,7 +3267,7 @@ "model": "api_v2.spellcastingoption", "pk": 5307, "fields": { - "spell": "conjure-woodland-beings", + "parent": "conjure-woodland-beings", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3279,7 +3279,7 @@ "model": "api_v2.spellcastingoption", "pk": 5308, "fields": { - "spell": "conjure-woodland-beings", + "parent": "conjure-woodland-beings", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3291,7 +3291,7 @@ "model": "api_v2.spellcastingoption", "pk": 5309, "fields": { - "spell": "conjure-woodland-beings", + "parent": "conjure-woodland-beings", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3303,7 +3303,7 @@ "model": "api_v2.spellcastingoption", "pk": 5310, "fields": { - "spell": "contact-other-plane", + "parent": "contact-other-plane", "type": "default", "damage_roll": null, "target_count": null, @@ -3315,7 +3315,7 @@ "model": "api_v2.spellcastingoption", "pk": 5311, "fields": { - "spell": "contact-other-plane", + "parent": "contact-other-plane", "type": "ritual", "damage_roll": null, "target_count": null, @@ -3327,7 +3327,7 @@ "model": "api_v2.spellcastingoption", "pk": 5312, "fields": { - "spell": "contagion", + "parent": "contagion", "type": "default", "damage_roll": null, "target_count": null, @@ -3339,7 +3339,7 @@ "model": "api_v2.spellcastingoption", "pk": 5313, "fields": { - "spell": "contingency", + "parent": "contingency", "type": "default", "damage_roll": null, "target_count": null, @@ -3351,7 +3351,7 @@ "model": "api_v2.spellcastingoption", "pk": 5314, "fields": { - "spell": "continual-flame", + "parent": "continual-flame", "type": "default", "damage_roll": null, "target_count": null, @@ -3363,7 +3363,7 @@ "model": "api_v2.spellcastingoption", "pk": 5315, "fields": { - "spell": "control-water", + "parent": "control-water", "type": "default", "damage_roll": null, "target_count": null, @@ -3375,7 +3375,7 @@ "model": "api_v2.spellcastingoption", "pk": 5316, "fields": { - "spell": "control-weather", + "parent": "control-weather", "type": "default", "damage_roll": null, "target_count": null, @@ -3387,7 +3387,7 @@ "model": "api_v2.spellcastingoption", "pk": 5317, "fields": { - "spell": "counterspell", + "parent": "counterspell", "type": "default", "damage_roll": null, "target_count": null, @@ -3399,7 +3399,7 @@ "model": "api_v2.spellcastingoption", "pk": 5319, "fields": { - "spell": "counterspell", + "parent": "counterspell", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3411,7 +3411,7 @@ "model": "api_v2.spellcastingoption", "pk": 5320, "fields": { - "spell": "counterspell", + "parent": "counterspell", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3423,7 +3423,7 @@ "model": "api_v2.spellcastingoption", "pk": 5321, "fields": { - "spell": "counterspell", + "parent": "counterspell", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3435,7 +3435,7 @@ "model": "api_v2.spellcastingoption", "pk": 5322, "fields": { - "spell": "counterspell", + "parent": "counterspell", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3447,7 +3447,7 @@ "model": "api_v2.spellcastingoption", "pk": 5323, "fields": { - "spell": "counterspell", + "parent": "counterspell", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3459,7 +3459,7 @@ "model": "api_v2.spellcastingoption", "pk": 5324, "fields": { - "spell": "counterspell", + "parent": "counterspell", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3471,7 +3471,7 @@ "model": "api_v2.spellcastingoption", "pk": 5325, "fields": { - "spell": "create-food-and-water", + "parent": "create-food-and-water", "type": "default", "damage_roll": null, "target_count": null, @@ -3483,7 +3483,7 @@ "model": "api_v2.spellcastingoption", "pk": 5326, "fields": { - "spell": "create-or-destroy-water", + "parent": "create-or-destroy-water", "type": "default", "damage_roll": null, "target_count": null, @@ -3495,7 +3495,7 @@ "model": "api_v2.spellcastingoption", "pk": 5328, "fields": { - "spell": "create-or-destroy-water", + "parent": "create-or-destroy-water", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -3507,7 +3507,7 @@ "model": "api_v2.spellcastingoption", "pk": 5329, "fields": { - "spell": "create-or-destroy-water", + "parent": "create-or-destroy-water", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -3519,7 +3519,7 @@ "model": "api_v2.spellcastingoption", "pk": 5330, "fields": { - "spell": "create-or-destroy-water", + "parent": "create-or-destroy-water", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3531,7 +3531,7 @@ "model": "api_v2.spellcastingoption", "pk": 5331, "fields": { - "spell": "create-or-destroy-water", + "parent": "create-or-destroy-water", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3543,7 +3543,7 @@ "model": "api_v2.spellcastingoption", "pk": 5332, "fields": { - "spell": "create-or-destroy-water", + "parent": "create-or-destroy-water", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3555,7 +3555,7 @@ "model": "api_v2.spellcastingoption", "pk": 5333, "fields": { - "spell": "create-or-destroy-water", + "parent": "create-or-destroy-water", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3567,7 +3567,7 @@ "model": "api_v2.spellcastingoption", "pk": 5334, "fields": { - "spell": "create-or-destroy-water", + "parent": "create-or-destroy-water", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3579,7 +3579,7 @@ "model": "api_v2.spellcastingoption", "pk": 5335, "fields": { - "spell": "create-or-destroy-water", + "parent": "create-or-destroy-water", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3591,7 +3591,7 @@ "model": "api_v2.spellcastingoption", "pk": 5336, "fields": { - "spell": "create-undead", + "parent": "create-undead", "type": "default", "damage_roll": null, "target_count": null, @@ -3603,7 +3603,7 @@ "model": "api_v2.spellcastingoption", "pk": 5338, "fields": { - "spell": "create-undead", + "parent": "create-undead", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3615,7 +3615,7 @@ "model": "api_v2.spellcastingoption", "pk": 5339, "fields": { - "spell": "create-undead", + "parent": "create-undead", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3627,7 +3627,7 @@ "model": "api_v2.spellcastingoption", "pk": 5340, "fields": { - "spell": "create-undead", + "parent": "create-undead", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3639,7 +3639,7 @@ "model": "api_v2.spellcastingoption", "pk": 5341, "fields": { - "spell": "creation", + "parent": "creation", "type": "default", "damage_roll": null, "target_count": null, @@ -3651,7 +3651,7 @@ "model": "api_v2.spellcastingoption", "pk": 5343, "fields": { - "spell": "creation", + "parent": "creation", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3663,7 +3663,7 @@ "model": "api_v2.spellcastingoption", "pk": 5344, "fields": { - "spell": "creation", + "parent": "creation", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3675,7 +3675,7 @@ "model": "api_v2.spellcastingoption", "pk": 5345, "fields": { - "spell": "creation", + "parent": "creation", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3687,7 +3687,7 @@ "model": "api_v2.spellcastingoption", "pk": 5346, "fields": { - "spell": "creation", + "parent": "creation", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3699,7 +3699,7 @@ "model": "api_v2.spellcastingoption", "pk": 5347, "fields": { - "spell": "cure-wounds", + "parent": "cure-wounds", "type": "default", "damage_roll": null, "target_count": null, @@ -3711,7 +3711,7 @@ "model": "api_v2.spellcastingoption", "pk": 5349, "fields": { - "spell": "cure-wounds", + "parent": "cure-wounds", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -3723,7 +3723,7 @@ "model": "api_v2.spellcastingoption", "pk": 5350, "fields": { - "spell": "cure-wounds", + "parent": "cure-wounds", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -3735,7 +3735,7 @@ "model": "api_v2.spellcastingoption", "pk": 5351, "fields": { - "spell": "cure-wounds", + "parent": "cure-wounds", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -3747,7 +3747,7 @@ "model": "api_v2.spellcastingoption", "pk": 5352, "fields": { - "spell": "cure-wounds", + "parent": "cure-wounds", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -3759,7 +3759,7 @@ "model": "api_v2.spellcastingoption", "pk": 5353, "fields": { - "spell": "cure-wounds", + "parent": "cure-wounds", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -3771,7 +3771,7 @@ "model": "api_v2.spellcastingoption", "pk": 5354, "fields": { - "spell": "cure-wounds", + "parent": "cure-wounds", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -3783,7 +3783,7 @@ "model": "api_v2.spellcastingoption", "pk": 5355, "fields": { - "spell": "cure-wounds", + "parent": "cure-wounds", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3795,7 +3795,7 @@ "model": "api_v2.spellcastingoption", "pk": 5356, "fields": { - "spell": "cure-wounds", + "parent": "cure-wounds", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3807,7 +3807,7 @@ "model": "api_v2.spellcastingoption", "pk": 5357, "fields": { - "spell": "dancing-lights", + "parent": "dancing-lights", "type": "default", "damage_roll": null, "target_count": null, @@ -3819,7 +3819,7 @@ "model": "api_v2.spellcastingoption", "pk": 5358, "fields": { - "spell": "darkness", + "parent": "darkness", "type": "default", "damage_roll": null, "target_count": null, @@ -3831,7 +3831,7 @@ "model": "api_v2.spellcastingoption", "pk": 5359, "fields": { - "spell": "darkvision", + "parent": "darkvision", "type": "default", "damage_roll": null, "target_count": null, @@ -3843,7 +3843,7 @@ "model": "api_v2.spellcastingoption", "pk": 5360, "fields": { - "spell": "daylight", + "parent": "daylight", "type": "default", "damage_roll": null, "target_count": null, @@ -3855,7 +3855,7 @@ "model": "api_v2.spellcastingoption", "pk": 5361, "fields": { - "spell": "death-ward", + "parent": "death-ward", "type": "default", "damage_roll": null, "target_count": null, @@ -3867,7 +3867,7 @@ "model": "api_v2.spellcastingoption", "pk": 5362, "fields": { - "spell": "delayed-blast-fireball", + "parent": "delayed-blast-fireball", "type": "default", "damage_roll": null, "target_count": null, @@ -3879,7 +3879,7 @@ "model": "api_v2.spellcastingoption", "pk": 5364, "fields": { - "spell": "delayed-blast-fireball", + "parent": "delayed-blast-fireball", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -3891,7 +3891,7 @@ "model": "api_v2.spellcastingoption", "pk": 5365, "fields": { - "spell": "delayed-blast-fireball", + "parent": "delayed-blast-fireball", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -3903,7 +3903,7 @@ "model": "api_v2.spellcastingoption", "pk": 5366, "fields": { - "spell": "demiplane", + "parent": "demiplane", "type": "default", "damage_roll": null, "target_count": null, @@ -3915,7 +3915,7 @@ "model": "api_v2.spellcastingoption", "pk": 5367, "fields": { - "spell": "detect-evil-and-good", + "parent": "detect-evil-and-good", "type": "default", "damage_roll": null, "target_count": null, @@ -3927,7 +3927,7 @@ "model": "api_v2.spellcastingoption", "pk": 5368, "fields": { - "spell": "detect-magic", + "parent": "detect-magic", "type": "default", "damage_roll": null, "target_count": null, @@ -3939,7 +3939,7 @@ "model": "api_v2.spellcastingoption", "pk": 5369, "fields": { - "spell": "detect-magic", + "parent": "detect-magic", "type": "ritual", "damage_roll": null, "target_count": null, @@ -3951,7 +3951,7 @@ "model": "api_v2.spellcastingoption", "pk": 5370, "fields": { - "spell": "detect-poison-and-disease", + "parent": "detect-poison-and-disease", "type": "default", "damage_roll": null, "target_count": null, @@ -3963,7 +3963,7 @@ "model": "api_v2.spellcastingoption", "pk": 5371, "fields": { - "spell": "detect-poison-and-disease", + "parent": "detect-poison-and-disease", "type": "ritual", "damage_roll": null, "target_count": null, @@ -3975,7 +3975,7 @@ "model": "api_v2.spellcastingoption", "pk": 5372, "fields": { - "spell": "detect-thoughts", + "parent": "detect-thoughts", "type": "default", "damage_roll": null, "target_count": null, @@ -3987,7 +3987,7 @@ "model": "api_v2.spellcastingoption", "pk": 5373, "fields": { - "spell": "dimension-door", + "parent": "dimension-door", "type": "default", "damage_roll": null, "target_count": null, @@ -3999,7 +3999,7 @@ "model": "api_v2.spellcastingoption", "pk": 5374, "fields": { - "spell": "disguise-self", + "parent": "disguise-self", "type": "default", "damage_roll": null, "target_count": null, @@ -4011,7 +4011,7 @@ "model": "api_v2.spellcastingoption", "pk": 5375, "fields": { - "spell": "disintegrate", + "parent": "disintegrate", "type": "default", "damage_roll": null, "target_count": null, @@ -4023,7 +4023,7 @@ "model": "api_v2.spellcastingoption", "pk": 5377, "fields": { - "spell": "disintegrate", + "parent": "disintegrate", "type": "slot_level_7", "damage_roll": "13d6+40", "target_count": null, @@ -4035,7 +4035,7 @@ "model": "api_v2.spellcastingoption", "pk": 5378, "fields": { - "spell": "disintegrate", + "parent": "disintegrate", "type": "slot_level_8", "damage_roll": "16d6+40", "target_count": null, @@ -4047,7 +4047,7 @@ "model": "api_v2.spellcastingoption", "pk": 5379, "fields": { - "spell": "disintegrate", + "parent": "disintegrate", "type": "slot_level_9", "damage_roll": "19d6+40", "target_count": null, @@ -4059,7 +4059,7 @@ "model": "api_v2.spellcastingoption", "pk": 5380, "fields": { - "spell": "dispel-evil-and-good", + "parent": "dispel-evil-and-good", "type": "default", "damage_roll": null, "target_count": null, @@ -4071,7 +4071,7 @@ "model": "api_v2.spellcastingoption", "pk": 5381, "fields": { - "spell": "dispel-magic", + "parent": "dispel-magic", "type": "default", "damage_roll": null, "target_count": null, @@ -4083,7 +4083,7 @@ "model": "api_v2.spellcastingoption", "pk": 5383, "fields": { - "spell": "dispel-magic", + "parent": "dispel-magic", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -4095,7 +4095,7 @@ "model": "api_v2.spellcastingoption", "pk": 5384, "fields": { - "spell": "dispel-magic", + "parent": "dispel-magic", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -4107,7 +4107,7 @@ "model": "api_v2.spellcastingoption", "pk": 5385, "fields": { - "spell": "dispel-magic", + "parent": "dispel-magic", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4119,7 +4119,7 @@ "model": "api_v2.spellcastingoption", "pk": 5386, "fields": { - "spell": "dispel-magic", + "parent": "dispel-magic", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4131,7 +4131,7 @@ "model": "api_v2.spellcastingoption", "pk": 5387, "fields": { - "spell": "dispel-magic", + "parent": "dispel-magic", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4143,7 +4143,7 @@ "model": "api_v2.spellcastingoption", "pk": 5388, "fields": { - "spell": "dispel-magic", + "parent": "dispel-magic", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4155,7 +4155,7 @@ "model": "api_v2.spellcastingoption", "pk": 5389, "fields": { - "spell": "divination", + "parent": "divination", "type": "default", "damage_roll": null, "target_count": null, @@ -4167,7 +4167,7 @@ "model": "api_v2.spellcastingoption", "pk": 5390, "fields": { - "spell": "divination", + "parent": "divination", "type": "ritual", "damage_roll": null, "target_count": null, @@ -4179,7 +4179,7 @@ "model": "api_v2.spellcastingoption", "pk": 5391, "fields": { - "spell": "divine-favor", + "parent": "divine-favor", "type": "default", "damage_roll": null, "target_count": null, @@ -4191,7 +4191,7 @@ "model": "api_v2.spellcastingoption", "pk": 5392, "fields": { - "spell": "divine-word", + "parent": "divine-word", "type": "default", "damage_roll": null, "target_count": null, @@ -4203,7 +4203,7 @@ "model": "api_v2.spellcastingoption", "pk": 5393, "fields": { - "spell": "dominate-beast", + "parent": "dominate-beast", "type": "default", "damage_roll": null, "target_count": null, @@ -4215,7 +4215,7 @@ "model": "api_v2.spellcastingoption", "pk": 5395, "fields": { - "spell": "dominate-beast", + "parent": "dominate-beast", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -4227,7 +4227,7 @@ "model": "api_v2.spellcastingoption", "pk": 5396, "fields": { - "spell": "dominate-beast", + "parent": "dominate-beast", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4239,7 +4239,7 @@ "model": "api_v2.spellcastingoption", "pk": 5397, "fields": { - "spell": "dominate-beast", + "parent": "dominate-beast", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4251,7 +4251,7 @@ "model": "api_v2.spellcastingoption", "pk": 5398, "fields": { - "spell": "dominate-beast", + "parent": "dominate-beast", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4263,7 +4263,7 @@ "model": "api_v2.spellcastingoption", "pk": 5399, "fields": { - "spell": "dominate-beast", + "parent": "dominate-beast", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4275,7 +4275,7 @@ "model": "api_v2.spellcastingoption", "pk": 5400, "fields": { - "spell": "dominate-monster", + "parent": "dominate-monster", "type": "default", "damage_roll": null, "target_count": null, @@ -4287,7 +4287,7 @@ "model": "api_v2.spellcastingoption", "pk": 5402, "fields": { - "spell": "dominate-monster", + "parent": "dominate-monster", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4299,7 +4299,7 @@ "model": "api_v2.spellcastingoption", "pk": 5403, "fields": { - "spell": "dominate-person", + "parent": "dominate-person", "type": "default", "damage_roll": null, "target_count": null, @@ -4311,7 +4311,7 @@ "model": "api_v2.spellcastingoption", "pk": 5405, "fields": { - "spell": "dominate-person", + "parent": "dominate-person", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4323,7 +4323,7 @@ "model": "api_v2.spellcastingoption", "pk": 5406, "fields": { - "spell": "dominate-person", + "parent": "dominate-person", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4335,7 +4335,7 @@ "model": "api_v2.spellcastingoption", "pk": 5407, "fields": { - "spell": "dominate-person", + "parent": "dominate-person", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4347,7 +4347,7 @@ "model": "api_v2.spellcastingoption", "pk": 5408, "fields": { - "spell": "dominate-person", + "parent": "dominate-person", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4359,7 +4359,7 @@ "model": "api_v2.spellcastingoption", "pk": 5409, "fields": { - "spell": "dream", + "parent": "dream", "type": "default", "damage_roll": null, "target_count": null, @@ -4371,7 +4371,7 @@ "model": "api_v2.spellcastingoption", "pk": 5410, "fields": { - "spell": "druidcraft", + "parent": "druidcraft", "type": "default", "damage_roll": null, "target_count": null, @@ -4383,7 +4383,7 @@ "model": "api_v2.spellcastingoption", "pk": 5411, "fields": { - "spell": "earthquake", + "parent": "earthquake", "type": "default", "damage_roll": null, "target_count": null, @@ -4395,7 +4395,7 @@ "model": "api_v2.spellcastingoption", "pk": 5412, "fields": { - "spell": "eldritch-blast", + "parent": "eldritch-blast", "type": "default", "damage_roll": null, "target_count": null, @@ -4407,7 +4407,7 @@ "model": "api_v2.spellcastingoption", "pk": 5413, "fields": { - "spell": "enhance-ability", + "parent": "enhance-ability", "type": "default", "damage_roll": null, "target_count": null, @@ -4419,7 +4419,7 @@ "model": "api_v2.spellcastingoption", "pk": 5415, "fields": { - "spell": "enhance-ability", + "parent": "enhance-ability", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -4431,7 +4431,7 @@ "model": "api_v2.spellcastingoption", "pk": 5416, "fields": { - "spell": "enhance-ability", + "parent": "enhance-ability", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -4443,7 +4443,7 @@ "model": "api_v2.spellcastingoption", "pk": 5417, "fields": { - "spell": "enhance-ability", + "parent": "enhance-ability", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -4455,7 +4455,7 @@ "model": "api_v2.spellcastingoption", "pk": 5418, "fields": { - "spell": "enhance-ability", + "parent": "enhance-ability", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -4467,7 +4467,7 @@ "model": "api_v2.spellcastingoption", "pk": 5419, "fields": { - "spell": "enhance-ability", + "parent": "enhance-ability", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -4479,7 +4479,7 @@ "model": "api_v2.spellcastingoption", "pk": 5420, "fields": { - "spell": "enhance-ability", + "parent": "enhance-ability", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -4491,7 +4491,7 @@ "model": "api_v2.spellcastingoption", "pk": 5421, "fields": { - "spell": "enhance-ability", + "parent": "enhance-ability", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -4503,7 +4503,7 @@ "model": "api_v2.spellcastingoption", "pk": 5422, "fields": { - "spell": "enlargereduce", + "parent": "enlargereduce", "type": "default", "damage_roll": null, "target_count": null, @@ -4515,7 +4515,7 @@ "model": "api_v2.spellcastingoption", "pk": 5423, "fields": { - "spell": "entangle", + "parent": "entangle", "type": "default", "damage_roll": null, "target_count": null, @@ -4527,7 +4527,7 @@ "model": "api_v2.spellcastingoption", "pk": 5424, "fields": { - "spell": "enthrall", + "parent": "enthrall", "type": "default", "damage_roll": null, "target_count": null, @@ -4539,7 +4539,7 @@ "model": "api_v2.spellcastingoption", "pk": 5425, "fields": { - "spell": "etherealness", + "parent": "etherealness", "type": "default", "damage_roll": null, "target_count": null, @@ -4551,7 +4551,7 @@ "model": "api_v2.spellcastingoption", "pk": 5427, "fields": { - "spell": "etherealness", + "parent": "etherealness", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4563,7 +4563,7 @@ "model": "api_v2.spellcastingoption", "pk": 5428, "fields": { - "spell": "etherealness", + "parent": "etherealness", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4575,7 +4575,7 @@ "model": "api_v2.spellcastingoption", "pk": 5429, "fields": { - "spell": "expeditious-retreat", + "parent": "expeditious-retreat", "type": "default", "damage_roll": null, "target_count": null, @@ -4587,7 +4587,7 @@ "model": "api_v2.spellcastingoption", "pk": 5430, "fields": { - "spell": "eyebite", + "parent": "eyebite", "type": "default", "damage_roll": null, "target_count": null, @@ -4599,7 +4599,7 @@ "model": "api_v2.spellcastingoption", "pk": 5431, "fields": { - "spell": "fabricate", + "parent": "fabricate", "type": "default", "damage_roll": null, "target_count": null, @@ -4611,7 +4611,7 @@ "model": "api_v2.spellcastingoption", "pk": 5432, "fields": { - "spell": "faerie-fire", + "parent": "faerie-fire", "type": "default", "damage_roll": null, "target_count": null, @@ -4623,7 +4623,7 @@ "model": "api_v2.spellcastingoption", "pk": 5433, "fields": { - "spell": "faithful-hound", + "parent": "faithful-hound", "type": "default", "damage_roll": null, "target_count": null, @@ -4635,7 +4635,7 @@ "model": "api_v2.spellcastingoption", "pk": 5434, "fields": { - "spell": "false-life", + "parent": "false-life", "type": "default", "damage_roll": null, "target_count": null, @@ -4647,7 +4647,7 @@ "model": "api_v2.spellcastingoption", "pk": 5436, "fields": { - "spell": "false-life", + "parent": "false-life", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -4659,7 +4659,7 @@ "model": "api_v2.spellcastingoption", "pk": 5437, "fields": { - "spell": "false-life", + "parent": "false-life", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -4671,7 +4671,7 @@ "model": "api_v2.spellcastingoption", "pk": 5438, "fields": { - "spell": "false-life", + "parent": "false-life", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -4683,7 +4683,7 @@ "model": "api_v2.spellcastingoption", "pk": 5439, "fields": { - "spell": "false-life", + "parent": "false-life", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -4695,7 +4695,7 @@ "model": "api_v2.spellcastingoption", "pk": 5440, "fields": { - "spell": "false-life", + "parent": "false-life", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -4707,7 +4707,7 @@ "model": "api_v2.spellcastingoption", "pk": 5441, "fields": { - "spell": "false-life", + "parent": "false-life", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -4719,7 +4719,7 @@ "model": "api_v2.spellcastingoption", "pk": 5442, "fields": { - "spell": "false-life", + "parent": "false-life", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -4731,7 +4731,7 @@ "model": "api_v2.spellcastingoption", "pk": 5443, "fields": { - "spell": "false-life", + "parent": "false-life", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -4743,7 +4743,7 @@ "model": "api_v2.spellcastingoption", "pk": 5444, "fields": { - "spell": "fear", + "parent": "fear", "type": "default", "damage_roll": null, "target_count": null, @@ -4755,7 +4755,7 @@ "model": "api_v2.spellcastingoption", "pk": 5445, "fields": { - "spell": "feather-fall", + "parent": "feather-fall", "type": "default", "damage_roll": null, "target_count": null, @@ -4767,7 +4767,7 @@ "model": "api_v2.spellcastingoption", "pk": 5446, "fields": { - "spell": "feeblemind", + "parent": "feeblemind", "type": "default", "damage_roll": null, "target_count": null, @@ -4779,7 +4779,7 @@ "model": "api_v2.spellcastingoption", "pk": 5447, "fields": { - "spell": "find-familiar", + "parent": "find-familiar", "type": "default", "damage_roll": null, "target_count": null, @@ -4791,7 +4791,7 @@ "model": "api_v2.spellcastingoption", "pk": 5448, "fields": { - "spell": "find-familiar", + "parent": "find-familiar", "type": "ritual", "damage_roll": null, "target_count": null, @@ -4803,7 +4803,7 @@ "model": "api_v2.spellcastingoption", "pk": 5449, "fields": { - "spell": "find-steed", + "parent": "find-steed", "type": "default", "damage_roll": null, "target_count": null, @@ -4815,7 +4815,7 @@ "model": "api_v2.spellcastingoption", "pk": 5450, "fields": { - "spell": "find-the-path", + "parent": "find-the-path", "type": "default", "damage_roll": null, "target_count": null, @@ -4827,7 +4827,7 @@ "model": "api_v2.spellcastingoption", "pk": 5451, "fields": { - "spell": "find-traps", + "parent": "find-traps", "type": "default", "damage_roll": null, "target_count": null, @@ -4839,7 +4839,7 @@ "model": "api_v2.spellcastingoption", "pk": 5452, "fields": { - "spell": "finger-of-death", + "parent": "finger-of-death", "type": "default", "damage_roll": null, "target_count": null, @@ -4851,7 +4851,7 @@ "model": "api_v2.spellcastingoption", "pk": 5453, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "default", "damage_roll": null, "target_count": null, @@ -4863,7 +4863,7 @@ "model": "api_v2.spellcastingoption", "pk": 5454, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -4875,7 +4875,7 @@ "model": "api_v2.spellcastingoption", "pk": 5455, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -4887,7 +4887,7 @@ "model": "api_v2.spellcastingoption", "pk": 5456, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -4899,7 +4899,7 @@ "model": "api_v2.spellcastingoption", "pk": 5457, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -4911,7 +4911,7 @@ "model": "api_v2.spellcastingoption", "pk": 5458, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_5", "damage_roll": "2d10", "target_count": null, @@ -4923,7 +4923,7 @@ "model": "api_v2.spellcastingoption", "pk": 5459, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_6", "damage_roll": "2d10", "target_count": null, @@ -4935,7 +4935,7 @@ "model": "api_v2.spellcastingoption", "pk": 5460, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_7", "damage_roll": "2d10", "target_count": null, @@ -4947,7 +4947,7 @@ "model": "api_v2.spellcastingoption", "pk": 5461, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_8", "damage_roll": "2d10", "target_count": null, @@ -4959,7 +4959,7 @@ "model": "api_v2.spellcastingoption", "pk": 5462, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_9", "damage_roll": "2d10", "target_count": null, @@ -4971,7 +4971,7 @@ "model": "api_v2.spellcastingoption", "pk": 5463, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_10", "damage_roll": "2d10", "target_count": null, @@ -4983,7 +4983,7 @@ "model": "api_v2.spellcastingoption", "pk": 5464, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_11", "damage_roll": "3d10", "target_count": null, @@ -4995,7 +4995,7 @@ "model": "api_v2.spellcastingoption", "pk": 5465, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_12", "damage_roll": "3d10", "target_count": null, @@ -5007,7 +5007,7 @@ "model": "api_v2.spellcastingoption", "pk": 5466, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_13", "damage_roll": "3d10", "target_count": null, @@ -5019,7 +5019,7 @@ "model": "api_v2.spellcastingoption", "pk": 5467, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_14", "damage_roll": "3d10", "target_count": null, @@ -5031,7 +5031,7 @@ "model": "api_v2.spellcastingoption", "pk": 5468, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_15", "damage_roll": "3d10", "target_count": null, @@ -5043,7 +5043,7 @@ "model": "api_v2.spellcastingoption", "pk": 5469, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_16", "damage_roll": "3d10", "target_count": null, @@ -5055,7 +5055,7 @@ "model": "api_v2.spellcastingoption", "pk": 5470, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_17", "damage_roll": "4d10", "target_count": null, @@ -5067,7 +5067,7 @@ "model": "api_v2.spellcastingoption", "pk": 5471, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_18", "damage_roll": "4d10", "target_count": null, @@ -5079,7 +5079,7 @@ "model": "api_v2.spellcastingoption", "pk": 5472, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_19", "damage_roll": "4d10", "target_count": null, @@ -5091,7 +5091,7 @@ "model": "api_v2.spellcastingoption", "pk": 5473, "fields": { - "spell": "fire-bolt", + "parent": "fire-bolt", "type": "player_level_20", "damage_roll": "4d10", "target_count": null, @@ -5103,7 +5103,7 @@ "model": "api_v2.spellcastingoption", "pk": 5474, "fields": { - "spell": "fire-shield", + "parent": "fire-shield", "type": "default", "damage_roll": null, "target_count": null, @@ -5115,7 +5115,7 @@ "model": "api_v2.spellcastingoption", "pk": 5475, "fields": { - "spell": "fire-storm", + "parent": "fire-storm", "type": "default", "damage_roll": null, "target_count": null, @@ -5127,7 +5127,7 @@ "model": "api_v2.spellcastingoption", "pk": 5476, "fields": { - "spell": "fireball", + "parent": "fireball", "type": "default", "damage_roll": null, "target_count": null, @@ -5139,7 +5139,7 @@ "model": "api_v2.spellcastingoption", "pk": 5478, "fields": { - "spell": "fireball", + "parent": "fireball", "type": "slot_level_4", "damage_roll": "9d6", "target_count": null, @@ -5151,7 +5151,7 @@ "model": "api_v2.spellcastingoption", "pk": 5479, "fields": { - "spell": "fireball", + "parent": "fireball", "type": "slot_level_5", "damage_roll": "10d6", "target_count": null, @@ -5163,7 +5163,7 @@ "model": "api_v2.spellcastingoption", "pk": 5480, "fields": { - "spell": "fireball", + "parent": "fireball", "type": "slot_level_6", "damage_roll": "11d6", "target_count": null, @@ -5175,7 +5175,7 @@ "model": "api_v2.spellcastingoption", "pk": 5481, "fields": { - "spell": "fireball", + "parent": "fireball", "type": "slot_level_7", "damage_roll": "12d6", "target_count": null, @@ -5187,7 +5187,7 @@ "model": "api_v2.spellcastingoption", "pk": 5482, "fields": { - "spell": "fireball", + "parent": "fireball", "type": "slot_level_8", "damage_roll": "13d6", "target_count": null, @@ -5199,7 +5199,7 @@ "model": "api_v2.spellcastingoption", "pk": 5483, "fields": { - "spell": "fireball", + "parent": "fireball", "type": "slot_level_9", "damage_roll": "14d6", "target_count": null, @@ -5211,7 +5211,7 @@ "model": "api_v2.spellcastingoption", "pk": 5484, "fields": { - "spell": "flame-blade", + "parent": "flame-blade", "type": "default", "damage_roll": null, "target_count": null, @@ -5223,7 +5223,7 @@ "model": "api_v2.spellcastingoption", "pk": 5486, "fields": { - "spell": "flame-blade", + "parent": "flame-blade", "type": "slot_level_3", "damage_roll": "3d6", "target_count": null, @@ -5235,7 +5235,7 @@ "model": "api_v2.spellcastingoption", "pk": 5487, "fields": { - "spell": "flame-blade", + "parent": "flame-blade", "type": "slot_level_4", "damage_roll": "4d6", "target_count": null, @@ -5247,7 +5247,7 @@ "model": "api_v2.spellcastingoption", "pk": 5488, "fields": { - "spell": "flame-blade", + "parent": "flame-blade", "type": "slot_level_5", "damage_roll": "4d6", "target_count": null, @@ -5259,7 +5259,7 @@ "model": "api_v2.spellcastingoption", "pk": 5489, "fields": { - "spell": "flame-blade", + "parent": "flame-blade", "type": "slot_level_6", "damage_roll": "5d6", "target_count": null, @@ -5271,7 +5271,7 @@ "model": "api_v2.spellcastingoption", "pk": 5490, "fields": { - "spell": "flame-blade", + "parent": "flame-blade", "type": "slot_level_7", "damage_roll": "5d6", "target_count": null, @@ -5283,7 +5283,7 @@ "model": "api_v2.spellcastingoption", "pk": 5491, "fields": { - "spell": "flame-blade", + "parent": "flame-blade", "type": "slot_level_8", "damage_roll": "6d6", "target_count": null, @@ -5295,7 +5295,7 @@ "model": "api_v2.spellcastingoption", "pk": 5492, "fields": { - "spell": "flame-blade", + "parent": "flame-blade", "type": "slot_level_9", "damage_roll": "6d6", "target_count": null, @@ -5307,7 +5307,7 @@ "model": "api_v2.spellcastingoption", "pk": 5493, "fields": { - "spell": "flame-strike", + "parent": "flame-strike", "type": "default", "damage_roll": null, "target_count": null, @@ -5319,7 +5319,7 @@ "model": "api_v2.spellcastingoption", "pk": 5495, "fields": { - "spell": "flame-strike", + "parent": "flame-strike", "type": "slot_level_6", "damage_roll": "5d6", "target_count": null, @@ -5331,7 +5331,7 @@ "model": "api_v2.spellcastingoption", "pk": 5496, "fields": { - "spell": "flame-strike", + "parent": "flame-strike", "type": "slot_level_7", "damage_roll": "6d6", "target_count": null, @@ -5343,7 +5343,7 @@ "model": "api_v2.spellcastingoption", "pk": 5497, "fields": { - "spell": "flame-strike", + "parent": "flame-strike", "type": "slot_level_8", "damage_roll": "7d6", "target_count": null, @@ -5355,7 +5355,7 @@ "model": "api_v2.spellcastingoption", "pk": 5498, "fields": { - "spell": "flame-strike", + "parent": "flame-strike", "type": "slot_level_9", "damage_roll": "8d6", "target_count": null, @@ -5367,7 +5367,7 @@ "model": "api_v2.spellcastingoption", "pk": 5499, "fields": { - "spell": "flaming-sphere", + "parent": "flaming-sphere", "type": "default", "damage_roll": null, "target_count": null, @@ -5379,7 +5379,7 @@ "model": "api_v2.spellcastingoption", "pk": 5501, "fields": { - "spell": "flaming-sphere", + "parent": "flaming-sphere", "type": "slot_level_3", "damage_roll": "3d6", "target_count": null, @@ -5391,7 +5391,7 @@ "model": "api_v2.spellcastingoption", "pk": 5502, "fields": { - "spell": "flaming-sphere", + "parent": "flaming-sphere", "type": "slot_level_4", "damage_roll": "4d6", "target_count": null, @@ -5403,7 +5403,7 @@ "model": "api_v2.spellcastingoption", "pk": 5503, "fields": { - "spell": "flaming-sphere", + "parent": "flaming-sphere", "type": "slot_level_5", "damage_roll": "5d6", "target_count": null, @@ -5415,7 +5415,7 @@ "model": "api_v2.spellcastingoption", "pk": 5504, "fields": { - "spell": "flaming-sphere", + "parent": "flaming-sphere", "type": "slot_level_6", "damage_roll": "6d6", "target_count": null, @@ -5427,7 +5427,7 @@ "model": "api_v2.spellcastingoption", "pk": 5505, "fields": { - "spell": "flaming-sphere", + "parent": "flaming-sphere", "type": "slot_level_7", "damage_roll": "7d6", "target_count": null, @@ -5439,7 +5439,7 @@ "model": "api_v2.spellcastingoption", "pk": 5506, "fields": { - "spell": "flaming-sphere", + "parent": "flaming-sphere", "type": "slot_level_8", "damage_roll": "8d6", "target_count": null, @@ -5451,7 +5451,7 @@ "model": "api_v2.spellcastingoption", "pk": 5507, "fields": { - "spell": "flaming-sphere", + "parent": "flaming-sphere", "type": "slot_level_9", "damage_roll": "9d6", "target_count": null, @@ -5463,7 +5463,7 @@ "model": "api_v2.spellcastingoption", "pk": 5508, "fields": { - "spell": "flesh-to-stone", + "parent": "flesh-to-stone", "type": "default", "damage_roll": null, "target_count": null, @@ -5475,7 +5475,7 @@ "model": "api_v2.spellcastingoption", "pk": 5509, "fields": { - "spell": "floating-disk", + "parent": "floating-disk", "type": "default", "damage_roll": null, "target_count": null, @@ -5487,7 +5487,7 @@ "model": "api_v2.spellcastingoption", "pk": 5510, "fields": { - "spell": "floating-disk", + "parent": "floating-disk", "type": "ritual", "damage_roll": null, "target_count": null, @@ -5499,7 +5499,7 @@ "model": "api_v2.spellcastingoption", "pk": 5511, "fields": { - "spell": "fly", + "parent": "fly", "type": "default", "damage_roll": null, "target_count": null, @@ -5511,7 +5511,7 @@ "model": "api_v2.spellcastingoption", "pk": 5513, "fields": { - "spell": "fly", + "parent": "fly", "type": "slot_level_4", "damage_roll": null, "target_count": 2, @@ -5523,7 +5523,7 @@ "model": "api_v2.spellcastingoption", "pk": 5514, "fields": { - "spell": "fly", + "parent": "fly", "type": "slot_level_5", "damage_roll": null, "target_count": 3, @@ -5535,7 +5535,7 @@ "model": "api_v2.spellcastingoption", "pk": 5515, "fields": { - "spell": "fly", + "parent": "fly", "type": "slot_level_6", "damage_roll": null, "target_count": 4, @@ -5547,7 +5547,7 @@ "model": "api_v2.spellcastingoption", "pk": 5516, "fields": { - "spell": "fly", + "parent": "fly", "type": "slot_level_7", "damage_roll": null, "target_count": 5, @@ -5559,7 +5559,7 @@ "model": "api_v2.spellcastingoption", "pk": 5517, "fields": { - "spell": "fly", + "parent": "fly", "type": "slot_level_8", "damage_roll": null, "target_count": 6, @@ -5571,7 +5571,7 @@ "model": "api_v2.spellcastingoption", "pk": 5518, "fields": { - "spell": "fly", + "parent": "fly", "type": "slot_level_9", "damage_roll": null, "target_count": 7, @@ -5583,7 +5583,7 @@ "model": "api_v2.spellcastingoption", "pk": 5519, "fields": { - "spell": "fog-cloud", + "parent": "fog-cloud", "type": "default", "damage_roll": null, "target_count": null, @@ -5595,7 +5595,7 @@ "model": "api_v2.spellcastingoption", "pk": 5521, "fields": { - "spell": "fog-cloud", + "parent": "fog-cloud", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -5607,7 +5607,7 @@ "model": "api_v2.spellcastingoption", "pk": 5522, "fields": { - "spell": "fog-cloud", + "parent": "fog-cloud", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -5619,7 +5619,7 @@ "model": "api_v2.spellcastingoption", "pk": 5523, "fields": { - "spell": "fog-cloud", + "parent": "fog-cloud", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -5631,7 +5631,7 @@ "model": "api_v2.spellcastingoption", "pk": 5524, "fields": { - "spell": "fog-cloud", + "parent": "fog-cloud", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -5643,7 +5643,7 @@ "model": "api_v2.spellcastingoption", "pk": 5525, "fields": { - "spell": "fog-cloud", + "parent": "fog-cloud", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5655,7 +5655,7 @@ "model": "api_v2.spellcastingoption", "pk": 5526, "fields": { - "spell": "fog-cloud", + "parent": "fog-cloud", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5667,7 +5667,7 @@ "model": "api_v2.spellcastingoption", "pk": 5527, "fields": { - "spell": "fog-cloud", + "parent": "fog-cloud", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5679,7 +5679,7 @@ "model": "api_v2.spellcastingoption", "pk": 5528, "fields": { - "spell": "fog-cloud", + "parent": "fog-cloud", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5691,7 +5691,7 @@ "model": "api_v2.spellcastingoption", "pk": 5529, "fields": { - "spell": "forbiddance", + "parent": "forbiddance", "type": "default", "damage_roll": null, "target_count": null, @@ -5703,7 +5703,7 @@ "model": "api_v2.spellcastingoption", "pk": 5530, "fields": { - "spell": "forbiddance", + "parent": "forbiddance", "type": "ritual", "damage_roll": null, "target_count": null, @@ -5715,7 +5715,7 @@ "model": "api_v2.spellcastingoption", "pk": 5531, "fields": { - "spell": "forcecage", + "parent": "forcecage", "type": "default", "damage_roll": null, "target_count": null, @@ -5727,7 +5727,7 @@ "model": "api_v2.spellcastingoption", "pk": 5532, "fields": { - "spell": "foresight", + "parent": "foresight", "type": "default", "damage_roll": null, "target_count": null, @@ -5739,7 +5739,7 @@ "model": "api_v2.spellcastingoption", "pk": 5533, "fields": { - "spell": "freedom-of-movement", + "parent": "freedom-of-movement", "type": "default", "damage_roll": null, "target_count": null, @@ -5751,7 +5751,7 @@ "model": "api_v2.spellcastingoption", "pk": 5534, "fields": { - "spell": "freezing-sphere", + "parent": "freezing-sphere", "type": "default", "damage_roll": null, "target_count": null, @@ -5763,7 +5763,7 @@ "model": "api_v2.spellcastingoption", "pk": 5536, "fields": { - "spell": "freezing-sphere", + "parent": "freezing-sphere", "type": "slot_level_7", "damage_roll": "11d6", "target_count": null, @@ -5775,7 +5775,7 @@ "model": "api_v2.spellcastingoption", "pk": 5537, "fields": { - "spell": "freezing-sphere", + "parent": "freezing-sphere", "type": "slot_level_8", "damage_roll": "12d6", "target_count": null, @@ -5787,7 +5787,7 @@ "model": "api_v2.spellcastingoption", "pk": 5538, "fields": { - "spell": "freezing-sphere", + "parent": "freezing-sphere", "type": "slot_level_9", "damage_roll": "13d6", "target_count": null, @@ -5799,7 +5799,7 @@ "model": "api_v2.spellcastingoption", "pk": 5539, "fields": { - "spell": "gaseous-form", + "parent": "gaseous-form", "type": "default", "damage_roll": null, "target_count": null, @@ -5811,7 +5811,7 @@ "model": "api_v2.spellcastingoption", "pk": 5540, "fields": { - "spell": "gate", + "parent": "gate", "type": "default", "damage_roll": null, "target_count": null, @@ -5823,7 +5823,7 @@ "model": "api_v2.spellcastingoption", "pk": 5541, "fields": { - "spell": "geas", + "parent": "geas", "type": "default", "damage_roll": null, "target_count": null, @@ -5835,7 +5835,7 @@ "model": "api_v2.spellcastingoption", "pk": 5543, "fields": { - "spell": "geas", + "parent": "geas", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -5847,7 +5847,7 @@ "model": "api_v2.spellcastingoption", "pk": 5544, "fields": { - "spell": "geas", + "parent": "geas", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5859,7 +5859,7 @@ "model": "api_v2.spellcastingoption", "pk": 5545, "fields": { - "spell": "geas", + "parent": "geas", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5871,7 +5871,7 @@ "model": "api_v2.spellcastingoption", "pk": 5546, "fields": { - "spell": "geas", + "parent": "geas", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5883,7 +5883,7 @@ "model": "api_v2.spellcastingoption", "pk": 5547, "fields": { - "spell": "gentle-repose", + "parent": "gentle-repose", "type": "default", "damage_roll": null, "target_count": null, @@ -5895,7 +5895,7 @@ "model": "api_v2.spellcastingoption", "pk": 5548, "fields": { - "spell": "gentle-repose", + "parent": "gentle-repose", "type": "ritual", "damage_roll": null, "target_count": null, @@ -5907,7 +5907,7 @@ "model": "api_v2.spellcastingoption", "pk": 5549, "fields": { - "spell": "giant-insect", + "parent": "giant-insect", "type": "default", "damage_roll": null, "target_count": null, @@ -5919,7 +5919,7 @@ "model": "api_v2.spellcastingoption", "pk": 5550, "fields": { - "spell": "glibness", + "parent": "glibness", "type": "default", "damage_roll": null, "target_count": null, @@ -5931,7 +5931,7 @@ "model": "api_v2.spellcastingoption", "pk": 5551, "fields": { - "spell": "globe-of-invulnerability", + "parent": "globe-of-invulnerability", "type": "default", "damage_roll": null, "target_count": null, @@ -5943,7 +5943,7 @@ "model": "api_v2.spellcastingoption", "pk": 5553, "fields": { - "spell": "globe-of-invulnerability", + "parent": "globe-of-invulnerability", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -5955,7 +5955,7 @@ "model": "api_v2.spellcastingoption", "pk": 5554, "fields": { - "spell": "globe-of-invulnerability", + "parent": "globe-of-invulnerability", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -5967,7 +5967,7 @@ "model": "api_v2.spellcastingoption", "pk": 5555, "fields": { - "spell": "globe-of-invulnerability", + "parent": "globe-of-invulnerability", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -5979,7 +5979,7 @@ "model": "api_v2.spellcastingoption", "pk": 5556, "fields": { - "spell": "glyph-of-warding", + "parent": "glyph-of-warding", "type": "default", "damage_roll": null, "target_count": null, @@ -5991,7 +5991,7 @@ "model": "api_v2.spellcastingoption", "pk": 5558, "fields": { - "spell": "glyph-of-warding", + "parent": "glyph-of-warding", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6003,7 +6003,7 @@ "model": "api_v2.spellcastingoption", "pk": 5559, "fields": { - "spell": "glyph-of-warding", + "parent": "glyph-of-warding", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6015,7 +6015,7 @@ "model": "api_v2.spellcastingoption", "pk": 5560, "fields": { - "spell": "glyph-of-warding", + "parent": "glyph-of-warding", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6027,7 +6027,7 @@ "model": "api_v2.spellcastingoption", "pk": 5561, "fields": { - "spell": "glyph-of-warding", + "parent": "glyph-of-warding", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6039,7 +6039,7 @@ "model": "api_v2.spellcastingoption", "pk": 5562, "fields": { - "spell": "glyph-of-warding", + "parent": "glyph-of-warding", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6051,7 +6051,7 @@ "model": "api_v2.spellcastingoption", "pk": 5563, "fields": { - "spell": "glyph-of-warding", + "parent": "glyph-of-warding", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6063,7 +6063,7 @@ "model": "api_v2.spellcastingoption", "pk": 5564, "fields": { - "spell": "goodberry", + "parent": "goodberry", "type": "default", "damage_roll": null, "target_count": null, @@ -6075,7 +6075,7 @@ "model": "api_v2.spellcastingoption", "pk": 5565, "fields": { - "spell": "grease", + "parent": "grease", "type": "default", "damage_roll": null, "target_count": null, @@ -6087,7 +6087,7 @@ "model": "api_v2.spellcastingoption", "pk": 5566, "fields": { - "spell": "greater-invisibility", + "parent": "greater-invisibility", "type": "default", "damage_roll": null, "target_count": null, @@ -6099,7 +6099,7 @@ "model": "api_v2.spellcastingoption", "pk": 5567, "fields": { - "spell": "greater-restoration", + "parent": "greater-restoration", "type": "default", "damage_roll": null, "target_count": null, @@ -6111,7 +6111,7 @@ "model": "api_v2.spellcastingoption", "pk": 5568, "fields": { - "spell": "guardian-of-faith", + "parent": "guardian-of-faith", "type": "default", "damage_roll": null, "target_count": null, @@ -6123,7 +6123,7 @@ "model": "api_v2.spellcastingoption", "pk": 5569, "fields": { - "spell": "guards-and-wards", + "parent": "guards-and-wards", "type": "default", "damage_roll": null, "target_count": null, @@ -6135,7 +6135,7 @@ "model": "api_v2.spellcastingoption", "pk": 5570, "fields": { - "spell": "guidance", + "parent": "guidance", "type": "default", "damage_roll": null, "target_count": null, @@ -6147,7 +6147,7 @@ "model": "api_v2.spellcastingoption", "pk": 5571, "fields": { - "spell": "guiding-bolt", + "parent": "guiding-bolt", "type": "default", "damage_roll": null, "target_count": null, @@ -6159,7 +6159,7 @@ "model": "api_v2.spellcastingoption", "pk": 5573, "fields": { - "spell": "guiding-bolt", + "parent": "guiding-bolt", "type": "slot_level_2", "damage_roll": "5d6", "target_count": null, @@ -6171,7 +6171,7 @@ "model": "api_v2.spellcastingoption", "pk": 5574, "fields": { - "spell": "guiding-bolt", + "parent": "guiding-bolt", "type": "slot_level_3", "damage_roll": "6d6", "target_count": null, @@ -6183,7 +6183,7 @@ "model": "api_v2.spellcastingoption", "pk": 5575, "fields": { - "spell": "guiding-bolt", + "parent": "guiding-bolt", "type": "slot_level_4", "damage_roll": "7d6", "target_count": null, @@ -6195,7 +6195,7 @@ "model": "api_v2.spellcastingoption", "pk": 5576, "fields": { - "spell": "guiding-bolt", + "parent": "guiding-bolt", "type": "slot_level_5", "damage_roll": "8d6", "target_count": null, @@ -6207,7 +6207,7 @@ "model": "api_v2.spellcastingoption", "pk": 5577, "fields": { - "spell": "guiding-bolt", + "parent": "guiding-bolt", "type": "slot_level_6", "damage_roll": "9d6", "target_count": null, @@ -6219,7 +6219,7 @@ "model": "api_v2.spellcastingoption", "pk": 5578, "fields": { - "spell": "guiding-bolt", + "parent": "guiding-bolt", "type": "slot_level_7", "damage_roll": "10d6", "target_count": null, @@ -6231,7 +6231,7 @@ "model": "api_v2.spellcastingoption", "pk": 5579, "fields": { - "spell": "guiding-bolt", + "parent": "guiding-bolt", "type": "slot_level_8", "damage_roll": "11d6", "target_count": null, @@ -6243,7 +6243,7 @@ "model": "api_v2.spellcastingoption", "pk": 5580, "fields": { - "spell": "guiding-bolt", + "parent": "guiding-bolt", "type": "slot_level_9", "damage_roll": "12d6", "target_count": null, @@ -6255,7 +6255,7 @@ "model": "api_v2.spellcastingoption", "pk": 5581, "fields": { - "spell": "gust-of-wind", + "parent": "gust-of-wind", "type": "default", "damage_roll": null, "target_count": null, @@ -6267,7 +6267,7 @@ "model": "api_v2.spellcastingoption", "pk": 5582, "fields": { - "spell": "hallow", + "parent": "hallow", "type": "default", "damage_roll": null, "target_count": null, @@ -6279,7 +6279,7 @@ "model": "api_v2.spellcastingoption", "pk": 5583, "fields": { - "spell": "hallucinatory-terrain", + "parent": "hallucinatory-terrain", "type": "default", "damage_roll": null, "target_count": null, @@ -6291,7 +6291,7 @@ "model": "api_v2.spellcastingoption", "pk": 5584, "fields": { - "spell": "harm", + "parent": "harm", "type": "default", "damage_roll": null, "target_count": null, @@ -6303,7 +6303,7 @@ "model": "api_v2.spellcastingoption", "pk": 5585, "fields": { - "spell": "haste", + "parent": "haste", "type": "default", "damage_roll": null, "target_count": null, @@ -6315,7 +6315,7 @@ "model": "api_v2.spellcastingoption", "pk": 5586, "fields": { - "spell": "heal", + "parent": "heal", "type": "default", "damage_roll": null, "target_count": null, @@ -6327,7 +6327,7 @@ "model": "api_v2.spellcastingoption", "pk": 5588, "fields": { - "spell": "heal", + "parent": "heal", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6339,7 +6339,7 @@ "model": "api_v2.spellcastingoption", "pk": 5589, "fields": { - "spell": "heal", + "parent": "heal", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6351,7 +6351,7 @@ "model": "api_v2.spellcastingoption", "pk": 5590, "fields": { - "spell": "heal", + "parent": "heal", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6363,7 +6363,7 @@ "model": "api_v2.spellcastingoption", "pk": 5591, "fields": { - "spell": "healing-word", + "parent": "healing-word", "type": "default", "damage_roll": null, "target_count": null, @@ -6375,7 +6375,7 @@ "model": "api_v2.spellcastingoption", "pk": 5593, "fields": { - "spell": "healing-word", + "parent": "healing-word", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -6387,7 +6387,7 @@ "model": "api_v2.spellcastingoption", "pk": 5594, "fields": { - "spell": "healing-word", + "parent": "healing-word", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -6399,7 +6399,7 @@ "model": "api_v2.spellcastingoption", "pk": 5595, "fields": { - "spell": "healing-word", + "parent": "healing-word", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6411,7 +6411,7 @@ "model": "api_v2.spellcastingoption", "pk": 5596, "fields": { - "spell": "healing-word", + "parent": "healing-word", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6423,7 +6423,7 @@ "model": "api_v2.spellcastingoption", "pk": 5597, "fields": { - "spell": "healing-word", + "parent": "healing-word", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6435,7 +6435,7 @@ "model": "api_v2.spellcastingoption", "pk": 5598, "fields": { - "spell": "healing-word", + "parent": "healing-word", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6447,7 +6447,7 @@ "model": "api_v2.spellcastingoption", "pk": 5599, "fields": { - "spell": "healing-word", + "parent": "healing-word", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6459,7 +6459,7 @@ "model": "api_v2.spellcastingoption", "pk": 5600, "fields": { - "spell": "healing-word", + "parent": "healing-word", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6471,7 +6471,7 @@ "model": "api_v2.spellcastingoption", "pk": 5601, "fields": { - "spell": "heat-metal", + "parent": "heat-metal", "type": "default", "damage_roll": null, "target_count": null, @@ -6483,7 +6483,7 @@ "model": "api_v2.spellcastingoption", "pk": 5603, "fields": { - "spell": "heat-metal", + "parent": "heat-metal", "type": "slot_level_3", "damage_roll": "3d8", "target_count": null, @@ -6495,7 +6495,7 @@ "model": "api_v2.spellcastingoption", "pk": 5604, "fields": { - "spell": "heat-metal", + "parent": "heat-metal", "type": "slot_level_4", "damage_roll": "4d8", "target_count": null, @@ -6507,7 +6507,7 @@ "model": "api_v2.spellcastingoption", "pk": 5605, "fields": { - "spell": "heat-metal", + "parent": "heat-metal", "type": "slot_level_5", "damage_roll": "5d8", "target_count": null, @@ -6519,7 +6519,7 @@ "model": "api_v2.spellcastingoption", "pk": 5606, "fields": { - "spell": "heat-metal", + "parent": "heat-metal", "type": "slot_level_6", "damage_roll": "6d8", "target_count": null, @@ -6531,7 +6531,7 @@ "model": "api_v2.spellcastingoption", "pk": 5607, "fields": { - "spell": "heat-metal", + "parent": "heat-metal", "type": "slot_level_7", "damage_roll": "7d8", "target_count": null, @@ -6543,7 +6543,7 @@ "model": "api_v2.spellcastingoption", "pk": 5608, "fields": { - "spell": "heat-metal", + "parent": "heat-metal", "type": "slot_level_8", "damage_roll": "8d8", "target_count": null, @@ -6555,7 +6555,7 @@ "model": "api_v2.spellcastingoption", "pk": 5609, "fields": { - "spell": "heat-metal", + "parent": "heat-metal", "type": "slot_level_9", "damage_roll": "9d8", "target_count": null, @@ -6567,7 +6567,7 @@ "model": "api_v2.spellcastingoption", "pk": 5610, "fields": { - "spell": "hellish-rebuke", + "parent": "hellish-rebuke", "type": "default", "damage_roll": null, "target_count": null, @@ -6579,7 +6579,7 @@ "model": "api_v2.spellcastingoption", "pk": 5612, "fields": { - "spell": "hellish-rebuke", + "parent": "hellish-rebuke", "type": "slot_level_2", "damage_roll": "3d10", "target_count": null, @@ -6591,7 +6591,7 @@ "model": "api_v2.spellcastingoption", "pk": 5613, "fields": { - "spell": "hellish-rebuke", + "parent": "hellish-rebuke", "type": "slot_level_3", "damage_roll": "4d10", "target_count": null, @@ -6603,7 +6603,7 @@ "model": "api_v2.spellcastingoption", "pk": 5614, "fields": { - "spell": "hellish-rebuke", + "parent": "hellish-rebuke", "type": "slot_level_4", "damage_roll": "5d10", "target_count": null, @@ -6615,7 +6615,7 @@ "model": "api_v2.spellcastingoption", "pk": 5615, "fields": { - "spell": "hellish-rebuke", + "parent": "hellish-rebuke", "type": "slot_level_5", "damage_roll": "6d10", "target_count": null, @@ -6627,7 +6627,7 @@ "model": "api_v2.spellcastingoption", "pk": 5616, "fields": { - "spell": "hellish-rebuke", + "parent": "hellish-rebuke", "type": "slot_level_6", "damage_roll": "7d10", "target_count": null, @@ -6639,7 +6639,7 @@ "model": "api_v2.spellcastingoption", "pk": 5617, "fields": { - "spell": "hellish-rebuke", + "parent": "hellish-rebuke", "type": "slot_level_7", "damage_roll": "8d10", "target_count": null, @@ -6651,7 +6651,7 @@ "model": "api_v2.spellcastingoption", "pk": 5618, "fields": { - "spell": "hellish-rebuke", + "parent": "hellish-rebuke", "type": "slot_level_8", "damage_roll": "9d10", "target_count": null, @@ -6663,7 +6663,7 @@ "model": "api_v2.spellcastingoption", "pk": 5619, "fields": { - "spell": "hellish-rebuke", + "parent": "hellish-rebuke", "type": "slot_level_9", "damage_roll": "10d10", "target_count": null, @@ -6675,7 +6675,7 @@ "model": "api_v2.spellcastingoption", "pk": 5620, "fields": { - "spell": "heroes-feast", + "parent": "heroes-feast", "type": "default", "damage_roll": null, "target_count": null, @@ -6687,7 +6687,7 @@ "model": "api_v2.spellcastingoption", "pk": 5621, "fields": { - "spell": "heroism", + "parent": "heroism", "type": "default", "damage_roll": null, "target_count": null, @@ -6699,7 +6699,7 @@ "model": "api_v2.spellcastingoption", "pk": 5622, "fields": { - "spell": "hideous-laughter", + "parent": "hideous-laughter", "type": "default", "damage_roll": null, "target_count": null, @@ -6711,7 +6711,7 @@ "model": "api_v2.spellcastingoption", "pk": 5623, "fields": { - "spell": "hold-monster", + "parent": "hold-monster", "type": "default", "damage_roll": null, "target_count": null, @@ -6723,7 +6723,7 @@ "model": "api_v2.spellcastingoption", "pk": 5625, "fields": { - "spell": "hold-monster", + "parent": "hold-monster", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6735,7 +6735,7 @@ "model": "api_v2.spellcastingoption", "pk": 5626, "fields": { - "spell": "hold-monster", + "parent": "hold-monster", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6747,7 +6747,7 @@ "model": "api_v2.spellcastingoption", "pk": 5627, "fields": { - "spell": "hold-monster", + "parent": "hold-monster", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6759,7 +6759,7 @@ "model": "api_v2.spellcastingoption", "pk": 5628, "fields": { - "spell": "hold-monster", + "parent": "hold-monster", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6771,7 +6771,7 @@ "model": "api_v2.spellcastingoption", "pk": 5629, "fields": { - "spell": "hold-person", + "parent": "hold-person", "type": "default", "damage_roll": null, "target_count": null, @@ -6783,7 +6783,7 @@ "model": "api_v2.spellcastingoption", "pk": 5631, "fields": { - "spell": "hold-person", + "parent": "hold-person", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -6795,7 +6795,7 @@ "model": "api_v2.spellcastingoption", "pk": 5632, "fields": { - "spell": "hold-person", + "parent": "hold-person", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -6807,7 +6807,7 @@ "model": "api_v2.spellcastingoption", "pk": 5633, "fields": { - "spell": "hold-person", + "parent": "hold-person", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -6819,7 +6819,7 @@ "model": "api_v2.spellcastingoption", "pk": 5634, "fields": { - "spell": "hold-person", + "parent": "hold-person", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -6831,7 +6831,7 @@ "model": "api_v2.spellcastingoption", "pk": 5635, "fields": { - "spell": "hold-person", + "parent": "hold-person", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -6843,7 +6843,7 @@ "model": "api_v2.spellcastingoption", "pk": 5636, "fields": { - "spell": "hold-person", + "parent": "hold-person", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -6855,7 +6855,7 @@ "model": "api_v2.spellcastingoption", "pk": 5637, "fields": { - "spell": "hold-person", + "parent": "hold-person", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -6867,7 +6867,7 @@ "model": "api_v2.spellcastingoption", "pk": 5638, "fields": { - "spell": "holy-aura", + "parent": "holy-aura", "type": "default", "damage_roll": null, "target_count": null, @@ -6879,7 +6879,7 @@ "model": "api_v2.spellcastingoption", "pk": 5639, "fields": { - "spell": "hunters-mark", + "parent": "hunters-mark", "type": "default", "damage_roll": null, "target_count": null, @@ -6891,7 +6891,7 @@ "model": "api_v2.spellcastingoption", "pk": 5641, "fields": { - "spell": "hunters-mark", + "parent": "hunters-mark", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -6903,7 +6903,7 @@ "model": "api_v2.spellcastingoption", "pk": 5642, "fields": { - "spell": "hunters-mark", + "parent": "hunters-mark", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -6915,7 +6915,7 @@ "model": "api_v2.spellcastingoption", "pk": 5643, "fields": { - "spell": "hunters-mark", + "parent": "hunters-mark", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -6927,7 +6927,7 @@ "model": "api_v2.spellcastingoption", "pk": 5644, "fields": { - "spell": "hunters-mark", + "parent": "hunters-mark", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -6939,7 +6939,7 @@ "model": "api_v2.spellcastingoption", "pk": 5645, "fields": { - "spell": "hunters-mark", + "parent": "hunters-mark", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -6951,7 +6951,7 @@ "model": "api_v2.spellcastingoption", "pk": 5646, "fields": { - "spell": "hunters-mark", + "parent": "hunters-mark", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -6963,7 +6963,7 @@ "model": "api_v2.spellcastingoption", "pk": 5647, "fields": { - "spell": "hunters-mark", + "parent": "hunters-mark", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -6975,7 +6975,7 @@ "model": "api_v2.spellcastingoption", "pk": 5648, "fields": { - "spell": "hunters-mark", + "parent": "hunters-mark", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -6987,7 +6987,7 @@ "model": "api_v2.spellcastingoption", "pk": 5649, "fields": { - "spell": "hypnotic-pattern", + "parent": "hypnotic-pattern", "type": "default", "damage_roll": null, "target_count": null, @@ -6999,7 +6999,7 @@ "model": "api_v2.spellcastingoption", "pk": 5650, "fields": { - "spell": "ice-storm", + "parent": "ice-storm", "type": "default", "damage_roll": null, "target_count": null, @@ -7011,7 +7011,7 @@ "model": "api_v2.spellcastingoption", "pk": 5652, "fields": { - "spell": "ice-storm", + "parent": "ice-storm", "type": "slot_level_5", "damage_roll": "3d8", "target_count": null, @@ -7023,7 +7023,7 @@ "model": "api_v2.spellcastingoption", "pk": 5653, "fields": { - "spell": "ice-storm", + "parent": "ice-storm", "type": "slot_level_6", "damage_roll": "4d8", "target_count": null, @@ -7035,7 +7035,7 @@ "model": "api_v2.spellcastingoption", "pk": 5654, "fields": { - "spell": "ice-storm", + "parent": "ice-storm", "type": "slot_level_7", "damage_roll": "5d8", "target_count": null, @@ -7047,7 +7047,7 @@ "model": "api_v2.spellcastingoption", "pk": 5655, "fields": { - "spell": "ice-storm", + "parent": "ice-storm", "type": "slot_level_8", "damage_roll": "6d8", "target_count": null, @@ -7059,7 +7059,7 @@ "model": "api_v2.spellcastingoption", "pk": 5656, "fields": { - "spell": "ice-storm", + "parent": "ice-storm", "type": "slot_level_9", "damage_roll": "7d8", "target_count": null, @@ -7071,7 +7071,7 @@ "model": "api_v2.spellcastingoption", "pk": 5657, "fields": { - "spell": "identify", + "parent": "identify", "type": "default", "damage_roll": null, "target_count": null, @@ -7083,7 +7083,7 @@ "model": "api_v2.spellcastingoption", "pk": 5658, "fields": { - "spell": "identify", + "parent": "identify", "type": "ritual", "damage_roll": null, "target_count": null, @@ -7095,7 +7095,7 @@ "model": "api_v2.spellcastingoption", "pk": 5659, "fields": { - "spell": "illusory-script", + "parent": "illusory-script", "type": "default", "damage_roll": null, "target_count": null, @@ -7107,7 +7107,7 @@ "model": "api_v2.spellcastingoption", "pk": 5660, "fields": { - "spell": "illusory-script", + "parent": "illusory-script", "type": "ritual", "damage_roll": null, "target_count": null, @@ -7119,7 +7119,7 @@ "model": "api_v2.spellcastingoption", "pk": 5661, "fields": { - "spell": "imprisonment", + "parent": "imprisonment", "type": "default", "damage_roll": null, "target_count": null, @@ -7131,7 +7131,7 @@ "model": "api_v2.spellcastingoption", "pk": 5662, "fields": { - "spell": "incendiary-cloud", + "parent": "incendiary-cloud", "type": "default", "damage_roll": null, "target_count": null, @@ -7143,7 +7143,7 @@ "model": "api_v2.spellcastingoption", "pk": 5663, "fields": { - "spell": "inflict-wounds", + "parent": "inflict-wounds", "type": "default", "damage_roll": null, "target_count": null, @@ -7155,7 +7155,7 @@ "model": "api_v2.spellcastingoption", "pk": 5665, "fields": { - "spell": "inflict-wounds", + "parent": "inflict-wounds", "type": "slot_level_2", "damage_roll": "4d10", "target_count": null, @@ -7167,7 +7167,7 @@ "model": "api_v2.spellcastingoption", "pk": 5666, "fields": { - "spell": "inflict-wounds", + "parent": "inflict-wounds", "type": "slot_level_3", "damage_roll": "5d10", "target_count": null, @@ -7179,7 +7179,7 @@ "model": "api_v2.spellcastingoption", "pk": 5667, "fields": { - "spell": "inflict-wounds", + "parent": "inflict-wounds", "type": "slot_level_4", "damage_roll": "6d10", "target_count": null, @@ -7191,7 +7191,7 @@ "model": "api_v2.spellcastingoption", "pk": 5668, "fields": { - "spell": "inflict-wounds", + "parent": "inflict-wounds", "type": "slot_level_5", "damage_roll": "7d10", "target_count": null, @@ -7203,7 +7203,7 @@ "model": "api_v2.spellcastingoption", "pk": 5669, "fields": { - "spell": "inflict-wounds", + "parent": "inflict-wounds", "type": "slot_level_6", "damage_roll": "8d10", "target_count": null, @@ -7215,7 +7215,7 @@ "model": "api_v2.spellcastingoption", "pk": 5670, "fields": { - "spell": "inflict-wounds", + "parent": "inflict-wounds", "type": "slot_level_7", "damage_roll": "9d10", "target_count": null, @@ -7227,7 +7227,7 @@ "model": "api_v2.spellcastingoption", "pk": 5671, "fields": { - "spell": "inflict-wounds", + "parent": "inflict-wounds", "type": "slot_level_8", "damage_roll": "10d10", "target_count": null, @@ -7239,7 +7239,7 @@ "model": "api_v2.spellcastingoption", "pk": 5672, "fields": { - "spell": "inflict-wounds", + "parent": "inflict-wounds", "type": "slot_level_9", "damage_roll": "11d10", "target_count": null, @@ -7251,7 +7251,7 @@ "model": "api_v2.spellcastingoption", "pk": 5673, "fields": { - "spell": "insect-plague", + "parent": "insect-plague", "type": "default", "damage_roll": null, "target_count": null, @@ -7263,7 +7263,7 @@ "model": "api_v2.spellcastingoption", "pk": 5675, "fields": { - "spell": "insect-plague", + "parent": "insect-plague", "type": "slot_level_6", "damage_roll": "5d10", "target_count": null, @@ -7275,7 +7275,7 @@ "model": "api_v2.spellcastingoption", "pk": 5676, "fields": { - "spell": "insect-plague", + "parent": "insect-plague", "type": "slot_level_7", "damage_roll": "6d10", "target_count": null, @@ -7287,7 +7287,7 @@ "model": "api_v2.spellcastingoption", "pk": 5677, "fields": { - "spell": "insect-plague", + "parent": "insect-plague", "type": "slot_level_8", "damage_roll": "7d10", "target_count": null, @@ -7299,7 +7299,7 @@ "model": "api_v2.spellcastingoption", "pk": 5678, "fields": { - "spell": "insect-plague", + "parent": "insect-plague", "type": "slot_level_9", "damage_roll": "8d10", "target_count": null, @@ -7311,7 +7311,7 @@ "model": "api_v2.spellcastingoption", "pk": 5679, "fields": { - "spell": "instant-summons", + "parent": "instant-summons", "type": "default", "damage_roll": null, "target_count": null, @@ -7323,7 +7323,7 @@ "model": "api_v2.spellcastingoption", "pk": 5680, "fields": { - "spell": "instant-summons", + "parent": "instant-summons", "type": "ritual", "damage_roll": null, "target_count": null, @@ -7335,7 +7335,7 @@ "model": "api_v2.spellcastingoption", "pk": 5681, "fields": { - "spell": "invisibility", + "parent": "invisibility", "type": "default", "damage_roll": null, "target_count": null, @@ -7347,7 +7347,7 @@ "model": "api_v2.spellcastingoption", "pk": 5683, "fields": { - "spell": "invisibility", + "parent": "invisibility", "type": "slot_level_3", "damage_roll": null, "target_count": 2, @@ -7359,7 +7359,7 @@ "model": "api_v2.spellcastingoption", "pk": 5684, "fields": { - "spell": "invisibility", + "parent": "invisibility", "type": "slot_level_4", "damage_roll": null, "target_count": 3, @@ -7371,7 +7371,7 @@ "model": "api_v2.spellcastingoption", "pk": 5685, "fields": { - "spell": "invisibility", + "parent": "invisibility", "type": "slot_level_5", "damage_roll": null, "target_count": 4, @@ -7383,7 +7383,7 @@ "model": "api_v2.spellcastingoption", "pk": 5686, "fields": { - "spell": "invisibility", + "parent": "invisibility", "type": "slot_level_6", "damage_roll": null, "target_count": 5, @@ -7395,7 +7395,7 @@ "model": "api_v2.spellcastingoption", "pk": 5687, "fields": { - "spell": "invisibility", + "parent": "invisibility", "type": "slot_level_7", "damage_roll": null, "target_count": 6, @@ -7407,7 +7407,7 @@ "model": "api_v2.spellcastingoption", "pk": 5688, "fields": { - "spell": "invisibility", + "parent": "invisibility", "type": "slot_level_8", "damage_roll": null, "target_count": 7, @@ -7419,7 +7419,7 @@ "model": "api_v2.spellcastingoption", "pk": 5689, "fields": { - "spell": "invisibility", + "parent": "invisibility", "type": "slot_level_9", "damage_roll": null, "target_count": 8, @@ -7431,7 +7431,7 @@ "model": "api_v2.spellcastingoption", "pk": 5690, "fields": { - "spell": "irresistible-dance", + "parent": "irresistible-dance", "type": "default", "damage_roll": null, "target_count": null, @@ -7443,7 +7443,7 @@ "model": "api_v2.spellcastingoption", "pk": 5691, "fields": { - "spell": "jump", + "parent": "jump", "type": "default", "damage_roll": null, "target_count": null, @@ -7455,7 +7455,7 @@ "model": "api_v2.spellcastingoption", "pk": 5692, "fields": { - "spell": "knock", + "parent": "knock", "type": "default", "damage_roll": null, "target_count": null, @@ -7467,7 +7467,7 @@ "model": "api_v2.spellcastingoption", "pk": 5693, "fields": { - "spell": "legend-lore", + "parent": "legend-lore", "type": "default", "damage_roll": null, "target_count": null, @@ -7479,7 +7479,7 @@ "model": "api_v2.spellcastingoption", "pk": 5694, "fields": { - "spell": "lesser-restoration", + "parent": "lesser-restoration", "type": "default", "damage_roll": null, "target_count": null, @@ -7491,7 +7491,7 @@ "model": "api_v2.spellcastingoption", "pk": 5695, "fields": { - "spell": "levitate", + "parent": "levitate", "type": "default", "damage_roll": null, "target_count": null, @@ -7503,7 +7503,7 @@ "model": "api_v2.spellcastingoption", "pk": 5696, "fields": { - "spell": "light", + "parent": "light", "type": "default", "damage_roll": null, "target_count": null, @@ -7515,7 +7515,7 @@ "model": "api_v2.spellcastingoption", "pk": 5697, "fields": { - "spell": "lightning-bolt", + "parent": "lightning-bolt", "type": "default", "damage_roll": null, "target_count": null, @@ -7527,7 +7527,7 @@ "model": "api_v2.spellcastingoption", "pk": 5699, "fields": { - "spell": "lightning-bolt", + "parent": "lightning-bolt", "type": "slot_level_4", "damage_roll": "9d6", "target_count": null, @@ -7539,7 +7539,7 @@ "model": "api_v2.spellcastingoption", "pk": 5700, "fields": { - "spell": "lightning-bolt", + "parent": "lightning-bolt", "type": "slot_level_5", "damage_roll": "10d6", "target_count": null, @@ -7551,7 +7551,7 @@ "model": "api_v2.spellcastingoption", "pk": 5701, "fields": { - "spell": "lightning-bolt", + "parent": "lightning-bolt", "type": "slot_level_6", "damage_roll": "11d6", "target_count": null, @@ -7563,7 +7563,7 @@ "model": "api_v2.spellcastingoption", "pk": 5702, "fields": { - "spell": "lightning-bolt", + "parent": "lightning-bolt", "type": "slot_level_7", "damage_roll": "12d6", "target_count": null, @@ -7575,7 +7575,7 @@ "model": "api_v2.spellcastingoption", "pk": 5703, "fields": { - "spell": "lightning-bolt", + "parent": "lightning-bolt", "type": "slot_level_8", "damage_roll": "13d6", "target_count": null, @@ -7587,7 +7587,7 @@ "model": "api_v2.spellcastingoption", "pk": 5704, "fields": { - "spell": "lightning-bolt", + "parent": "lightning-bolt", "type": "slot_level_9", "damage_roll": "14d6", "target_count": null, @@ -7599,7 +7599,7 @@ "model": "api_v2.spellcastingoption", "pk": 5705, "fields": { - "spell": "locate-animals-or-plants", + "parent": "locate-animals-or-plants", "type": "default", "damage_roll": null, "target_count": null, @@ -7611,7 +7611,7 @@ "model": "api_v2.spellcastingoption", "pk": 5706, "fields": { - "spell": "locate-animals-or-plants", + "parent": "locate-animals-or-plants", "type": "ritual", "damage_roll": null, "target_count": null, @@ -7623,7 +7623,7 @@ "model": "api_v2.spellcastingoption", "pk": 5707, "fields": { - "spell": "locate-creature", + "parent": "locate-creature", "type": "default", "damage_roll": null, "target_count": null, @@ -7635,7 +7635,7 @@ "model": "api_v2.spellcastingoption", "pk": 5708, "fields": { - "spell": "locate-object", + "parent": "locate-object", "type": "default", "damage_roll": null, "target_count": null, @@ -7647,7 +7647,7 @@ "model": "api_v2.spellcastingoption", "pk": 5709, "fields": { - "spell": "longstrider", + "parent": "longstrider", "type": "default", "damage_roll": null, "target_count": null, @@ -7659,7 +7659,7 @@ "model": "api_v2.spellcastingoption", "pk": 5711, "fields": { - "spell": "longstrider", + "parent": "longstrider", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -7671,7 +7671,7 @@ "model": "api_v2.spellcastingoption", "pk": 5712, "fields": { - "spell": "longstrider", + "parent": "longstrider", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -7683,7 +7683,7 @@ "model": "api_v2.spellcastingoption", "pk": 5713, "fields": { - "spell": "longstrider", + "parent": "longstrider", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -7695,7 +7695,7 @@ "model": "api_v2.spellcastingoption", "pk": 5714, "fields": { - "spell": "longstrider", + "parent": "longstrider", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -7707,7 +7707,7 @@ "model": "api_v2.spellcastingoption", "pk": 5715, "fields": { - "spell": "longstrider", + "parent": "longstrider", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -7719,7 +7719,7 @@ "model": "api_v2.spellcastingoption", "pk": 5716, "fields": { - "spell": "longstrider", + "parent": "longstrider", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -7731,7 +7731,7 @@ "model": "api_v2.spellcastingoption", "pk": 5717, "fields": { - "spell": "longstrider", + "parent": "longstrider", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -7743,7 +7743,7 @@ "model": "api_v2.spellcastingoption", "pk": 5718, "fields": { - "spell": "longstrider", + "parent": "longstrider", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -7755,7 +7755,7 @@ "model": "api_v2.spellcastingoption", "pk": 5719, "fields": { - "spell": "mage-armor", + "parent": "mage-armor", "type": "default", "damage_roll": null, "target_count": null, @@ -7767,7 +7767,7 @@ "model": "api_v2.spellcastingoption", "pk": 5720, "fields": { - "spell": "mage-hand", + "parent": "mage-hand", "type": "default", "damage_roll": null, "target_count": null, @@ -7779,7 +7779,7 @@ "model": "api_v2.spellcastingoption", "pk": 5721, "fields": { - "spell": "magic-circle", + "parent": "magic-circle", "type": "default", "damage_roll": null, "target_count": null, @@ -7791,7 +7791,7 @@ "model": "api_v2.spellcastingoption", "pk": 5723, "fields": { - "spell": "magic-circle", + "parent": "magic-circle", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -7803,7 +7803,7 @@ "model": "api_v2.spellcastingoption", "pk": 5724, "fields": { - "spell": "magic-circle", + "parent": "magic-circle", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -7815,7 +7815,7 @@ "model": "api_v2.spellcastingoption", "pk": 5725, "fields": { - "spell": "magic-circle", + "parent": "magic-circle", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -7827,7 +7827,7 @@ "model": "api_v2.spellcastingoption", "pk": 5726, "fields": { - "spell": "magic-circle", + "parent": "magic-circle", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -7839,7 +7839,7 @@ "model": "api_v2.spellcastingoption", "pk": 5727, "fields": { - "spell": "magic-circle", + "parent": "magic-circle", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -7851,7 +7851,7 @@ "model": "api_v2.spellcastingoption", "pk": 5728, "fields": { - "spell": "magic-circle", + "parent": "magic-circle", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -7863,7 +7863,7 @@ "model": "api_v2.spellcastingoption", "pk": 5729, "fields": { - "spell": "magic-jar", + "parent": "magic-jar", "type": "default", "damage_roll": null, "target_count": null, @@ -7875,7 +7875,7 @@ "model": "api_v2.spellcastingoption", "pk": 5730, "fields": { - "spell": "magic-missile", + "parent": "magic-missile", "type": "default", "damage_roll": null, "target_count": null, @@ -7887,7 +7887,7 @@ "model": "api_v2.spellcastingoption", "pk": 5732, "fields": { - "spell": "magic-missile", + "parent": "magic-missile", "type": "slot_level_2", "damage_roll": null, "target_count": 2, @@ -7899,7 +7899,7 @@ "model": "api_v2.spellcastingoption", "pk": 5733, "fields": { - "spell": "magic-missile", + "parent": "magic-missile", "type": "slot_level_3", "damage_roll": null, "target_count": 3, @@ -7911,7 +7911,7 @@ "model": "api_v2.spellcastingoption", "pk": 5734, "fields": { - "spell": "magic-missile", + "parent": "magic-missile", "type": "slot_level_4", "damage_roll": null, "target_count": 4, @@ -7923,7 +7923,7 @@ "model": "api_v2.spellcastingoption", "pk": 5735, "fields": { - "spell": "magic-missile", + "parent": "magic-missile", "type": "slot_level_5", "damage_roll": null, "target_count": 5, @@ -7935,7 +7935,7 @@ "model": "api_v2.spellcastingoption", "pk": 5736, "fields": { - "spell": "magic-missile", + "parent": "magic-missile", "type": "slot_level_6", "damage_roll": null, "target_count": 6, @@ -7947,7 +7947,7 @@ "model": "api_v2.spellcastingoption", "pk": 5737, "fields": { - "spell": "magic-missile", + "parent": "magic-missile", "type": "slot_level_7", "damage_roll": null, "target_count": 7, @@ -7959,7 +7959,7 @@ "model": "api_v2.spellcastingoption", "pk": 5738, "fields": { - "spell": "magic-missile", + "parent": "magic-missile", "type": "slot_level_8", "damage_roll": null, "target_count": 8, @@ -7971,7 +7971,7 @@ "model": "api_v2.spellcastingoption", "pk": 5739, "fields": { - "spell": "magic-missile", + "parent": "magic-missile", "type": "slot_level_9", "damage_roll": null, "target_count": 9, @@ -7983,7 +7983,7 @@ "model": "api_v2.spellcastingoption", "pk": 5740, "fields": { - "spell": "magic-mouth", + "parent": "magic-mouth", "type": "default", "damage_roll": null, "target_count": null, @@ -7995,7 +7995,7 @@ "model": "api_v2.spellcastingoption", "pk": 5741, "fields": { - "spell": "magic-mouth", + "parent": "magic-mouth", "type": "ritual", "damage_roll": null, "target_count": null, @@ -8007,7 +8007,7 @@ "model": "api_v2.spellcastingoption", "pk": 5742, "fields": { - "spell": "magic-weapon", + "parent": "magic-weapon", "type": "default", "damage_roll": null, "target_count": null, @@ -8019,7 +8019,7 @@ "model": "api_v2.spellcastingoption", "pk": 5744, "fields": { - "spell": "magic-weapon", + "parent": "magic-weapon", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -8031,7 +8031,7 @@ "model": "api_v2.spellcastingoption", "pk": 5745, "fields": { - "spell": "magic-weapon", + "parent": "magic-weapon", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -8043,7 +8043,7 @@ "model": "api_v2.spellcastingoption", "pk": 5746, "fields": { - "spell": "magic-weapon", + "parent": "magic-weapon", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -8055,7 +8055,7 @@ "model": "api_v2.spellcastingoption", "pk": 5747, "fields": { - "spell": "magic-weapon", + "parent": "magic-weapon", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8067,7 +8067,7 @@ "model": "api_v2.spellcastingoption", "pk": 5748, "fields": { - "spell": "magic-weapon", + "parent": "magic-weapon", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8079,7 +8079,7 @@ "model": "api_v2.spellcastingoption", "pk": 5749, "fields": { - "spell": "magic-weapon", + "parent": "magic-weapon", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8091,7 +8091,7 @@ "model": "api_v2.spellcastingoption", "pk": 5750, "fields": { - "spell": "magic-weapon", + "parent": "magic-weapon", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8103,7 +8103,7 @@ "model": "api_v2.spellcastingoption", "pk": 5751, "fields": { - "spell": "magnificent-mansion", + "parent": "magnificent-mansion", "type": "default", "damage_roll": null, "target_count": null, @@ -8115,7 +8115,7 @@ "model": "api_v2.spellcastingoption", "pk": 5752, "fields": { - "spell": "major-image", + "parent": "major-image", "type": "default", "damage_roll": null, "target_count": null, @@ -8127,7 +8127,7 @@ "model": "api_v2.spellcastingoption", "pk": 5754, "fields": { - "spell": "major-image", + "parent": "major-image", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -8139,7 +8139,7 @@ "model": "api_v2.spellcastingoption", "pk": 5755, "fields": { - "spell": "major-image", + "parent": "major-image", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -8151,7 +8151,7 @@ "model": "api_v2.spellcastingoption", "pk": 5756, "fields": { - "spell": "major-image", + "parent": "major-image", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8163,7 +8163,7 @@ "model": "api_v2.spellcastingoption", "pk": 5757, "fields": { - "spell": "major-image", + "parent": "major-image", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8175,7 +8175,7 @@ "model": "api_v2.spellcastingoption", "pk": 5758, "fields": { - "spell": "major-image", + "parent": "major-image", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8187,7 +8187,7 @@ "model": "api_v2.spellcastingoption", "pk": 5759, "fields": { - "spell": "major-image", + "parent": "major-image", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8199,7 +8199,7 @@ "model": "api_v2.spellcastingoption", "pk": 5760, "fields": { - "spell": "mass-cure-wounds", + "parent": "mass-cure-wounds", "type": "default", "damage_roll": null, "target_count": null, @@ -8211,7 +8211,7 @@ "model": "api_v2.spellcastingoption", "pk": 5762, "fields": { - "spell": "mass-cure-wounds", + "parent": "mass-cure-wounds", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8223,7 +8223,7 @@ "model": "api_v2.spellcastingoption", "pk": 5763, "fields": { - "spell": "mass-cure-wounds", + "parent": "mass-cure-wounds", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8235,7 +8235,7 @@ "model": "api_v2.spellcastingoption", "pk": 5764, "fields": { - "spell": "mass-cure-wounds", + "parent": "mass-cure-wounds", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8247,7 +8247,7 @@ "model": "api_v2.spellcastingoption", "pk": 5765, "fields": { - "spell": "mass-cure-wounds", + "parent": "mass-cure-wounds", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8259,7 +8259,7 @@ "model": "api_v2.spellcastingoption", "pk": 5766, "fields": { - "spell": "mass-heal", + "parent": "mass-heal", "type": "default", "damage_roll": null, "target_count": null, @@ -8271,7 +8271,7 @@ "model": "api_v2.spellcastingoption", "pk": 5767, "fields": { - "spell": "mass-healing-word", + "parent": "mass-healing-word", "type": "default", "damage_roll": null, "target_count": null, @@ -8283,7 +8283,7 @@ "model": "api_v2.spellcastingoption", "pk": 5769, "fields": { - "spell": "mass-healing-word", + "parent": "mass-healing-word", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -8295,7 +8295,7 @@ "model": "api_v2.spellcastingoption", "pk": 5770, "fields": { - "spell": "mass-healing-word", + "parent": "mass-healing-word", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -8307,7 +8307,7 @@ "model": "api_v2.spellcastingoption", "pk": 5771, "fields": { - "spell": "mass-healing-word", + "parent": "mass-healing-word", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8319,7 +8319,7 @@ "model": "api_v2.spellcastingoption", "pk": 5772, "fields": { - "spell": "mass-healing-word", + "parent": "mass-healing-word", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8331,7 +8331,7 @@ "model": "api_v2.spellcastingoption", "pk": 5773, "fields": { - "spell": "mass-healing-word", + "parent": "mass-healing-word", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8343,7 +8343,7 @@ "model": "api_v2.spellcastingoption", "pk": 5774, "fields": { - "spell": "mass-healing-word", + "parent": "mass-healing-word", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8355,7 +8355,7 @@ "model": "api_v2.spellcastingoption", "pk": 5775, "fields": { - "spell": "mass-suggestion", + "parent": "mass-suggestion", "type": "default", "damage_roll": null, "target_count": null, @@ -8367,7 +8367,7 @@ "model": "api_v2.spellcastingoption", "pk": 5777, "fields": { - "spell": "mass-suggestion", + "parent": "mass-suggestion", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8379,7 +8379,7 @@ "model": "api_v2.spellcastingoption", "pk": 5778, "fields": { - "spell": "mass-suggestion", + "parent": "mass-suggestion", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8391,7 +8391,7 @@ "model": "api_v2.spellcastingoption", "pk": 5779, "fields": { - "spell": "mass-suggestion", + "parent": "mass-suggestion", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8403,7 +8403,7 @@ "model": "api_v2.spellcastingoption", "pk": 5780, "fields": { - "spell": "maze", + "parent": "maze", "type": "default", "damage_roll": null, "target_count": null, @@ -8415,7 +8415,7 @@ "model": "api_v2.spellcastingoption", "pk": 5781, "fields": { - "spell": "meld-into-stone", + "parent": "meld-into-stone", "type": "default", "damage_roll": null, "target_count": null, @@ -8427,7 +8427,7 @@ "model": "api_v2.spellcastingoption", "pk": 5782, "fields": { - "spell": "meld-into-stone", + "parent": "meld-into-stone", "type": "ritual", "damage_roll": null, "target_count": null, @@ -8439,7 +8439,7 @@ "model": "api_v2.spellcastingoption", "pk": 5783, "fields": { - "spell": "mending", + "parent": "mending", "type": "default", "damage_roll": null, "target_count": null, @@ -8451,7 +8451,7 @@ "model": "api_v2.spellcastingoption", "pk": 5784, "fields": { - "spell": "message", + "parent": "message", "type": "default", "damage_roll": null, "target_count": null, @@ -8463,7 +8463,7 @@ "model": "api_v2.spellcastingoption", "pk": 5785, "fields": { - "spell": "meteor-swarm", + "parent": "meteor-swarm", "type": "default", "damage_roll": null, "target_count": null, @@ -8475,7 +8475,7 @@ "model": "api_v2.spellcastingoption", "pk": 5786, "fields": { - "spell": "mind-blank", + "parent": "mind-blank", "type": "default", "damage_roll": null, "target_count": null, @@ -8487,7 +8487,7 @@ "model": "api_v2.spellcastingoption", "pk": 5787, "fields": { - "spell": "minor-illusion", + "parent": "minor-illusion", "type": "default", "damage_roll": null, "target_count": null, @@ -8499,7 +8499,7 @@ "model": "api_v2.spellcastingoption", "pk": 5788, "fields": { - "spell": "mirage-arcane", + "parent": "mirage-arcane", "type": "default", "damage_roll": null, "target_count": null, @@ -8511,7 +8511,7 @@ "model": "api_v2.spellcastingoption", "pk": 5789, "fields": { - "spell": "mirror-image", + "parent": "mirror-image", "type": "default", "damage_roll": null, "target_count": null, @@ -8523,7 +8523,7 @@ "model": "api_v2.spellcastingoption", "pk": 5790, "fields": { - "spell": "mislead", + "parent": "mislead", "type": "default", "damage_roll": null, "target_count": null, @@ -8535,7 +8535,7 @@ "model": "api_v2.spellcastingoption", "pk": 5791, "fields": { - "spell": "misty-step", + "parent": "misty-step", "type": "default", "damage_roll": null, "target_count": null, @@ -8547,7 +8547,7 @@ "model": "api_v2.spellcastingoption", "pk": 5792, "fields": { - "spell": "modify-memory", + "parent": "modify-memory", "type": "default", "damage_roll": null, "target_count": null, @@ -8559,7 +8559,7 @@ "model": "api_v2.spellcastingoption", "pk": 5794, "fields": { - "spell": "modify-memory", + "parent": "modify-memory", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8571,7 +8571,7 @@ "model": "api_v2.spellcastingoption", "pk": 5795, "fields": { - "spell": "modify-memory", + "parent": "modify-memory", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8583,7 +8583,7 @@ "model": "api_v2.spellcastingoption", "pk": 5796, "fields": { - "spell": "modify-memory", + "parent": "modify-memory", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8595,7 +8595,7 @@ "model": "api_v2.spellcastingoption", "pk": 5797, "fields": { - "spell": "modify-memory", + "parent": "modify-memory", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8607,7 +8607,7 @@ "model": "api_v2.spellcastingoption", "pk": 5798, "fields": { - "spell": "moonbeam", + "parent": "moonbeam", "type": "default", "damage_roll": null, "target_count": null, @@ -8619,7 +8619,7 @@ "model": "api_v2.spellcastingoption", "pk": 5800, "fields": { - "spell": "moonbeam", + "parent": "moonbeam", "type": "slot_level_3", "damage_roll": "3d10", "target_count": null, @@ -8631,7 +8631,7 @@ "model": "api_v2.spellcastingoption", "pk": 5801, "fields": { - "spell": "moonbeam", + "parent": "moonbeam", "type": "slot_level_4", "damage_roll": "4d10", "target_count": null, @@ -8643,7 +8643,7 @@ "model": "api_v2.spellcastingoption", "pk": 5802, "fields": { - "spell": "moonbeam", + "parent": "moonbeam", "type": "slot_level_5", "damage_roll": "5d10", "target_count": null, @@ -8655,7 +8655,7 @@ "model": "api_v2.spellcastingoption", "pk": 5803, "fields": { - "spell": "moonbeam", + "parent": "moonbeam", "type": "slot_level_6", "damage_roll": "6d10", "target_count": null, @@ -8667,7 +8667,7 @@ "model": "api_v2.spellcastingoption", "pk": 5804, "fields": { - "spell": "moonbeam", + "parent": "moonbeam", "type": "slot_level_7", "damage_roll": "7d10", "target_count": null, @@ -8679,7 +8679,7 @@ "model": "api_v2.spellcastingoption", "pk": 5805, "fields": { - "spell": "moonbeam", + "parent": "moonbeam", "type": "slot_level_8", "damage_roll": "8d10", "target_count": null, @@ -8691,7 +8691,7 @@ "model": "api_v2.spellcastingoption", "pk": 5806, "fields": { - "spell": "moonbeam", + "parent": "moonbeam", "type": "slot_level_9", "damage_roll": "9d10", "target_count": null, @@ -8703,7 +8703,7 @@ "model": "api_v2.spellcastingoption", "pk": 5807, "fields": { - "spell": "move-earth", + "parent": "move-earth", "type": "default", "damage_roll": null, "target_count": null, @@ -8715,7 +8715,7 @@ "model": "api_v2.spellcastingoption", "pk": 5808, "fields": { - "spell": "nondetection", + "parent": "nondetection", "type": "default", "damage_roll": null, "target_count": null, @@ -8727,7 +8727,7 @@ "model": "api_v2.spellcastingoption", "pk": 5809, "fields": { - "spell": "pass-without-trace", + "parent": "pass-without-trace", "type": "default", "damage_roll": null, "target_count": null, @@ -8739,7 +8739,7 @@ "model": "api_v2.spellcastingoption", "pk": 5810, "fields": { - "spell": "passwall", + "parent": "passwall", "type": "default", "damage_roll": null, "target_count": null, @@ -8751,7 +8751,7 @@ "model": "api_v2.spellcastingoption", "pk": 5811, "fields": { - "spell": "phantasmal-killer", + "parent": "phantasmal-killer", "type": "default", "damage_roll": null, "target_count": null, @@ -8763,7 +8763,7 @@ "model": "api_v2.spellcastingoption", "pk": 5813, "fields": { - "spell": "phantasmal-killer", + "parent": "phantasmal-killer", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -8775,7 +8775,7 @@ "model": "api_v2.spellcastingoption", "pk": 5814, "fields": { - "spell": "phantasmal-killer", + "parent": "phantasmal-killer", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8787,7 +8787,7 @@ "model": "api_v2.spellcastingoption", "pk": 5815, "fields": { - "spell": "phantasmal-killer", + "parent": "phantasmal-killer", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8799,7 +8799,7 @@ "model": "api_v2.spellcastingoption", "pk": 5816, "fields": { - "spell": "phantasmal-killer", + "parent": "phantasmal-killer", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8811,7 +8811,7 @@ "model": "api_v2.spellcastingoption", "pk": 5817, "fields": { - "spell": "phantasmal-killer", + "parent": "phantasmal-killer", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8823,7 +8823,7 @@ "model": "api_v2.spellcastingoption", "pk": 5818, "fields": { - "spell": "phantom-steed", + "parent": "phantom-steed", "type": "default", "damage_roll": null, "target_count": null, @@ -8835,7 +8835,7 @@ "model": "api_v2.spellcastingoption", "pk": 5819, "fields": { - "spell": "phantom-steed", + "parent": "phantom-steed", "type": "ritual", "damage_roll": null, "target_count": null, @@ -8847,7 +8847,7 @@ "model": "api_v2.spellcastingoption", "pk": 5820, "fields": { - "spell": "planar-ally", + "parent": "planar-ally", "type": "default", "damage_roll": null, "target_count": null, @@ -8859,7 +8859,7 @@ "model": "api_v2.spellcastingoption", "pk": 5821, "fields": { - "spell": "planar-binding", + "parent": "planar-binding", "type": "default", "damage_roll": null, "target_count": null, @@ -8871,7 +8871,7 @@ "model": "api_v2.spellcastingoption", "pk": 5823, "fields": { - "spell": "planar-binding", + "parent": "planar-binding", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -8883,7 +8883,7 @@ "model": "api_v2.spellcastingoption", "pk": 5824, "fields": { - "spell": "planar-binding", + "parent": "planar-binding", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -8895,7 +8895,7 @@ "model": "api_v2.spellcastingoption", "pk": 5825, "fields": { - "spell": "planar-binding", + "parent": "planar-binding", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -8907,7 +8907,7 @@ "model": "api_v2.spellcastingoption", "pk": 5826, "fields": { - "spell": "planar-binding", + "parent": "planar-binding", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -8919,7 +8919,7 @@ "model": "api_v2.spellcastingoption", "pk": 5827, "fields": { - "spell": "plane-shift", + "parent": "plane-shift", "type": "default", "damage_roll": null, "target_count": null, @@ -8931,7 +8931,7 @@ "model": "api_v2.spellcastingoption", "pk": 5828, "fields": { - "spell": "plant-growth", + "parent": "plant-growth", "type": "default", "damage_roll": null, "target_count": null, @@ -8943,7 +8943,7 @@ "model": "api_v2.spellcastingoption", "pk": 5829, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "default", "damage_roll": null, "target_count": null, @@ -8955,7 +8955,7 @@ "model": "api_v2.spellcastingoption", "pk": 5830, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -8967,7 +8967,7 @@ "model": "api_v2.spellcastingoption", "pk": 5831, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_2", "damage_roll": "", "target_count": null, @@ -8979,7 +8979,7 @@ "model": "api_v2.spellcastingoption", "pk": 5832, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_3", "damage_roll": "", "target_count": null, @@ -8991,7 +8991,7 @@ "model": "api_v2.spellcastingoption", "pk": 5833, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_4", "damage_roll": "", "target_count": null, @@ -9003,7 +9003,7 @@ "model": "api_v2.spellcastingoption", "pk": 5834, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_5", "damage_roll": "2d12", "target_count": null, @@ -9015,7 +9015,7 @@ "model": "api_v2.spellcastingoption", "pk": 5835, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_6", "damage_roll": "2d12", "target_count": null, @@ -9027,7 +9027,7 @@ "model": "api_v2.spellcastingoption", "pk": 5836, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_7", "damage_roll": "2d12", "target_count": null, @@ -9039,7 +9039,7 @@ "model": "api_v2.spellcastingoption", "pk": 5837, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_8", "damage_roll": "2d12", "target_count": null, @@ -9051,7 +9051,7 @@ "model": "api_v2.spellcastingoption", "pk": 5838, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_9", "damage_roll": "2d12", "target_count": null, @@ -9063,7 +9063,7 @@ "model": "api_v2.spellcastingoption", "pk": 5839, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_10", "damage_roll": "2d12", "target_count": null, @@ -9075,7 +9075,7 @@ "model": "api_v2.spellcastingoption", "pk": 5840, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_11", "damage_roll": "3d12", "target_count": null, @@ -9087,7 +9087,7 @@ "model": "api_v2.spellcastingoption", "pk": 5841, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_12", "damage_roll": "3d12", "target_count": null, @@ -9099,7 +9099,7 @@ "model": "api_v2.spellcastingoption", "pk": 5842, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_13", "damage_roll": "3d12", "target_count": null, @@ -9111,7 +9111,7 @@ "model": "api_v2.spellcastingoption", "pk": 5843, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_14", "damage_roll": "3d12", "target_count": null, @@ -9123,7 +9123,7 @@ "model": "api_v2.spellcastingoption", "pk": 5844, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_15", "damage_roll": "3d12", "target_count": null, @@ -9135,7 +9135,7 @@ "model": "api_v2.spellcastingoption", "pk": 5845, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_16", "damage_roll": "3d12", "target_count": null, @@ -9147,7 +9147,7 @@ "model": "api_v2.spellcastingoption", "pk": 5846, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_17", "damage_roll": "4d12", "target_count": null, @@ -9159,7 +9159,7 @@ "model": "api_v2.spellcastingoption", "pk": 5847, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_18", "damage_roll": "4d12", "target_count": null, @@ -9171,7 +9171,7 @@ "model": "api_v2.spellcastingoption", "pk": 5848, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_19", "damage_roll": "4d12", "target_count": null, @@ -9183,7 +9183,7 @@ "model": "api_v2.spellcastingoption", "pk": 5849, "fields": { - "spell": "poison-spray", + "parent": "poison-spray", "type": "player_level_20", "damage_roll": "4d12", "target_count": null, @@ -9195,7 +9195,7 @@ "model": "api_v2.spellcastingoption", "pk": 5850, "fields": { - "spell": "polymorph", + "parent": "polymorph", "type": "default", "damage_roll": null, "target_count": null, @@ -9207,7 +9207,7 @@ "model": "api_v2.spellcastingoption", "pk": 5851, "fields": { - "spell": "power-word-kill", + "parent": "power-word-kill", "type": "default", "damage_roll": null, "target_count": null, @@ -9219,7 +9219,7 @@ "model": "api_v2.spellcastingoption", "pk": 5852, "fields": { - "spell": "power-word-stun", + "parent": "power-word-stun", "type": "default", "damage_roll": null, "target_count": null, @@ -9231,7 +9231,7 @@ "model": "api_v2.spellcastingoption", "pk": 5853, "fields": { - "spell": "prayer-of-healing", + "parent": "prayer-of-healing", "type": "default", "damage_roll": null, "target_count": null, @@ -9243,7 +9243,7 @@ "model": "api_v2.spellcastingoption", "pk": 5855, "fields": { - "spell": "prayer-of-healing", + "parent": "prayer-of-healing", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -9255,7 +9255,7 @@ "model": "api_v2.spellcastingoption", "pk": 5856, "fields": { - "spell": "prayer-of-healing", + "parent": "prayer-of-healing", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -9267,7 +9267,7 @@ "model": "api_v2.spellcastingoption", "pk": 5857, "fields": { - "spell": "prayer-of-healing", + "parent": "prayer-of-healing", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9279,7 +9279,7 @@ "model": "api_v2.spellcastingoption", "pk": 5858, "fields": { - "spell": "prayer-of-healing", + "parent": "prayer-of-healing", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9291,7 +9291,7 @@ "model": "api_v2.spellcastingoption", "pk": 5859, "fields": { - "spell": "prayer-of-healing", + "parent": "prayer-of-healing", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9303,7 +9303,7 @@ "model": "api_v2.spellcastingoption", "pk": 5860, "fields": { - "spell": "prayer-of-healing", + "parent": "prayer-of-healing", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9315,7 +9315,7 @@ "model": "api_v2.spellcastingoption", "pk": 5861, "fields": { - "spell": "prayer-of-healing", + "parent": "prayer-of-healing", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9327,7 +9327,7 @@ "model": "api_v2.spellcastingoption", "pk": 5862, "fields": { - "spell": "prestidigitation", + "parent": "prestidigitation", "type": "default", "damage_roll": null, "target_count": null, @@ -9339,7 +9339,7 @@ "model": "api_v2.spellcastingoption", "pk": 5863, "fields": { - "spell": "prismatic-spray", + "parent": "prismatic-spray", "type": "default", "damage_roll": null, "target_count": null, @@ -9351,7 +9351,7 @@ "model": "api_v2.spellcastingoption", "pk": 5864, "fields": { - "spell": "prismatic-wall", + "parent": "prismatic-wall", "type": "default", "damage_roll": null, "target_count": null, @@ -9363,7 +9363,7 @@ "model": "api_v2.spellcastingoption", "pk": 5865, "fields": { - "spell": "private-sanctum", + "parent": "private-sanctum", "type": "default", "damage_roll": null, "target_count": null, @@ -9375,7 +9375,7 @@ "model": "api_v2.spellcastingoption", "pk": 5867, "fields": { - "spell": "private-sanctum", + "parent": "private-sanctum", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -9387,7 +9387,7 @@ "model": "api_v2.spellcastingoption", "pk": 5868, "fields": { - "spell": "private-sanctum", + "parent": "private-sanctum", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -9399,7 +9399,7 @@ "model": "api_v2.spellcastingoption", "pk": 5869, "fields": { - "spell": "private-sanctum", + "parent": "private-sanctum", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -9411,7 +9411,7 @@ "model": "api_v2.spellcastingoption", "pk": 5870, "fields": { - "spell": "private-sanctum", + "parent": "private-sanctum", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -9423,7 +9423,7 @@ "model": "api_v2.spellcastingoption", "pk": 5871, "fields": { - "spell": "private-sanctum", + "parent": "private-sanctum", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -9435,7 +9435,7 @@ "model": "api_v2.spellcastingoption", "pk": 5872, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "default", "damage_roll": null, "target_count": null, @@ -9447,7 +9447,7 @@ "model": "api_v2.spellcastingoption", "pk": 5873, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -9459,7 +9459,7 @@ "model": "api_v2.spellcastingoption", "pk": 5874, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -9471,7 +9471,7 @@ "model": "api_v2.spellcastingoption", "pk": 5875, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -9483,7 +9483,7 @@ "model": "api_v2.spellcastingoption", "pk": 5876, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -9495,7 +9495,7 @@ "model": "api_v2.spellcastingoption", "pk": 5877, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_5", "damage_roll": "2d8", "target_count": null, @@ -9507,7 +9507,7 @@ "model": "api_v2.spellcastingoption", "pk": 5878, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_6", "damage_roll": "2d8", "target_count": null, @@ -9519,7 +9519,7 @@ "model": "api_v2.spellcastingoption", "pk": 5879, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_7", "damage_roll": "2d8", "target_count": null, @@ -9531,7 +9531,7 @@ "model": "api_v2.spellcastingoption", "pk": 5880, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_8", "damage_roll": "2d8", "target_count": null, @@ -9543,7 +9543,7 @@ "model": "api_v2.spellcastingoption", "pk": 5881, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_9", "damage_roll": "2d8", "target_count": null, @@ -9555,7 +9555,7 @@ "model": "api_v2.spellcastingoption", "pk": 5882, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_10", "damage_roll": "2d8", "target_count": null, @@ -9567,7 +9567,7 @@ "model": "api_v2.spellcastingoption", "pk": 5883, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_11", "damage_roll": "3d8", "target_count": null, @@ -9579,7 +9579,7 @@ "model": "api_v2.spellcastingoption", "pk": 5884, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_12", "damage_roll": "3d8", "target_count": null, @@ -9591,7 +9591,7 @@ "model": "api_v2.spellcastingoption", "pk": 5885, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_13", "damage_roll": "3d8", "target_count": null, @@ -9603,7 +9603,7 @@ "model": "api_v2.spellcastingoption", "pk": 5886, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_14", "damage_roll": "3d8", "target_count": null, @@ -9615,7 +9615,7 @@ "model": "api_v2.spellcastingoption", "pk": 5887, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_15", "damage_roll": "3d8", "target_count": null, @@ -9627,7 +9627,7 @@ "model": "api_v2.spellcastingoption", "pk": 5888, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_16", "damage_roll": "3d8", "target_count": null, @@ -9639,7 +9639,7 @@ "model": "api_v2.spellcastingoption", "pk": 5889, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_17", "damage_roll": "4d8", "target_count": null, @@ -9651,7 +9651,7 @@ "model": "api_v2.spellcastingoption", "pk": 5890, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_18", "damage_roll": "4d8", "target_count": null, @@ -9663,7 +9663,7 @@ "model": "api_v2.spellcastingoption", "pk": 5891, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_19", "damage_roll": "4d8", "target_count": null, @@ -9675,7 +9675,7 @@ "model": "api_v2.spellcastingoption", "pk": 5892, "fields": { - "spell": "produce-flame", + "parent": "produce-flame", "type": "player_level_20", "damage_roll": "4d8", "target_count": null, @@ -9687,7 +9687,7 @@ "model": "api_v2.spellcastingoption", "pk": 5893, "fields": { - "spell": "programmed-illusion", + "parent": "programmed-illusion", "type": "default", "damage_roll": null, "target_count": null, @@ -9699,7 +9699,7 @@ "model": "api_v2.spellcastingoption", "pk": 5894, "fields": { - "spell": "project-image", + "parent": "project-image", "type": "default", "damage_roll": null, "target_count": null, @@ -9711,7 +9711,7 @@ "model": "api_v2.spellcastingoption", "pk": 5895, "fields": { - "spell": "protection-from-energy", + "parent": "protection-from-energy", "type": "default", "damage_roll": null, "target_count": null, @@ -9723,7 +9723,7 @@ "model": "api_v2.spellcastingoption", "pk": 5896, "fields": { - "spell": "protection-from-evil-and-good", + "parent": "protection-from-evil-and-good", "type": "default", "damage_roll": null, "target_count": null, @@ -9735,7 +9735,7 @@ "model": "api_v2.spellcastingoption", "pk": 5897, "fields": { - "spell": "protection-from-poison", + "parent": "protection-from-poison", "type": "default", "damage_roll": null, "target_count": null, @@ -9747,7 +9747,7 @@ "model": "api_v2.spellcastingoption", "pk": 5898, "fields": { - "spell": "purify-food-and-drink", + "parent": "purify-food-and-drink", "type": "default", "damage_roll": null, "target_count": null, @@ -9759,7 +9759,7 @@ "model": "api_v2.spellcastingoption", "pk": 5899, "fields": { - "spell": "purify-food-and-drink", + "parent": "purify-food-and-drink", "type": "ritual", "damage_roll": null, "target_count": null, @@ -9771,7 +9771,7 @@ "model": "api_v2.spellcastingoption", "pk": 5900, "fields": { - "spell": "raise-dead", + "parent": "raise-dead", "type": "default", "damage_roll": null, "target_count": null, @@ -9783,7 +9783,7 @@ "model": "api_v2.spellcastingoption", "pk": 5901, "fields": { - "spell": "ray-of-enfeeblement", + "parent": "ray-of-enfeeblement", "type": "default", "damage_roll": null, "target_count": null, @@ -9795,7 +9795,7 @@ "model": "api_v2.spellcastingoption", "pk": 5902, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "default", "damage_roll": null, "target_count": null, @@ -9807,7 +9807,7 @@ "model": "api_v2.spellcastingoption", "pk": 5903, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -9819,7 +9819,7 @@ "model": "api_v2.spellcastingoption", "pk": 5904, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -9831,7 +9831,7 @@ "model": "api_v2.spellcastingoption", "pk": 5905, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -9843,7 +9843,7 @@ "model": "api_v2.spellcastingoption", "pk": 5906, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -9855,7 +9855,7 @@ "model": "api_v2.spellcastingoption", "pk": 5907, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_5", "damage_roll": "2d8", "target_count": null, @@ -9867,7 +9867,7 @@ "model": "api_v2.spellcastingoption", "pk": 5908, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_6", "damage_roll": "2d8", "target_count": null, @@ -9879,7 +9879,7 @@ "model": "api_v2.spellcastingoption", "pk": 5909, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_7", "damage_roll": "2d8", "target_count": null, @@ -9891,7 +9891,7 @@ "model": "api_v2.spellcastingoption", "pk": 5910, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_8", "damage_roll": "2d8", "target_count": null, @@ -9903,7 +9903,7 @@ "model": "api_v2.spellcastingoption", "pk": 5911, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_9", "damage_roll": "2d8", "target_count": null, @@ -9915,7 +9915,7 @@ "model": "api_v2.spellcastingoption", "pk": 5912, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_10", "damage_roll": "2d8", "target_count": null, @@ -9927,7 +9927,7 @@ "model": "api_v2.spellcastingoption", "pk": 5913, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_11", "damage_roll": "3d8", "target_count": null, @@ -9939,7 +9939,7 @@ "model": "api_v2.spellcastingoption", "pk": 5914, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_12", "damage_roll": "3d8", "target_count": null, @@ -9951,7 +9951,7 @@ "model": "api_v2.spellcastingoption", "pk": 5915, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_13", "damage_roll": "3d8", "target_count": null, @@ -9963,7 +9963,7 @@ "model": "api_v2.spellcastingoption", "pk": 5916, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_14", "damage_roll": "3d8", "target_count": null, @@ -9975,7 +9975,7 @@ "model": "api_v2.spellcastingoption", "pk": 5917, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_15", "damage_roll": "3d8", "target_count": null, @@ -9987,7 +9987,7 @@ "model": "api_v2.spellcastingoption", "pk": 5918, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_16", "damage_roll": "3d8", "target_count": null, @@ -9999,7 +9999,7 @@ "model": "api_v2.spellcastingoption", "pk": 5919, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_17", "damage_roll": "4d8", "target_count": null, @@ -10011,7 +10011,7 @@ "model": "api_v2.spellcastingoption", "pk": 5920, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_18", "damage_roll": "4d8", "target_count": null, @@ -10023,7 +10023,7 @@ "model": "api_v2.spellcastingoption", "pk": 5921, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_19", "damage_roll": "4d8", "target_count": null, @@ -10035,7 +10035,7 @@ "model": "api_v2.spellcastingoption", "pk": 5922, "fields": { - "spell": "ray-of-frost", + "parent": "ray-of-frost", "type": "player_level_20", "damage_roll": "4d8", "target_count": null, @@ -10047,7 +10047,7 @@ "model": "api_v2.spellcastingoption", "pk": 5923, "fields": { - "spell": "regenerate", + "parent": "regenerate", "type": "default", "damage_roll": null, "target_count": null, @@ -10059,7 +10059,7 @@ "model": "api_v2.spellcastingoption", "pk": 5924, "fields": { - "spell": "reincarnate", + "parent": "reincarnate", "type": "default", "damage_roll": null, "target_count": null, @@ -10071,7 +10071,7 @@ "model": "api_v2.spellcastingoption", "pk": 5925, "fields": { - "spell": "remove-curse", + "parent": "remove-curse", "type": "default", "damage_roll": null, "target_count": null, @@ -10083,7 +10083,7 @@ "model": "api_v2.spellcastingoption", "pk": 5926, "fields": { - "spell": "resilient-sphere", + "parent": "resilient-sphere", "type": "default", "damage_roll": null, "target_count": null, @@ -10095,7 +10095,7 @@ "model": "api_v2.spellcastingoption", "pk": 5927, "fields": { - "spell": "resistance", + "parent": "resistance", "type": "default", "damage_roll": null, "target_count": null, @@ -10107,7 +10107,7 @@ "model": "api_v2.spellcastingoption", "pk": 5928, "fields": { - "spell": "resurrection", + "parent": "resurrection", "type": "default", "damage_roll": null, "target_count": null, @@ -10119,7 +10119,7 @@ "model": "api_v2.spellcastingoption", "pk": 5929, "fields": { - "spell": "reverse-gravity", + "parent": "reverse-gravity", "type": "default", "damage_roll": null, "target_count": null, @@ -10131,7 +10131,7 @@ "model": "api_v2.spellcastingoption", "pk": 5930, "fields": { - "spell": "revivify", + "parent": "revivify", "type": "default", "damage_roll": null, "target_count": null, @@ -10143,7 +10143,7 @@ "model": "api_v2.spellcastingoption", "pk": 5931, "fields": { - "spell": "rope-trick", + "parent": "rope-trick", "type": "default", "damage_roll": null, "target_count": null, @@ -10155,7 +10155,7 @@ "model": "api_v2.spellcastingoption", "pk": 5932, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "default", "damage_roll": null, "target_count": null, @@ -10167,7 +10167,7 @@ "model": "api_v2.spellcastingoption", "pk": 5933, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -10179,7 +10179,7 @@ "model": "api_v2.spellcastingoption", "pk": 5934, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -10191,7 +10191,7 @@ "model": "api_v2.spellcastingoption", "pk": 5935, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -10203,7 +10203,7 @@ "model": "api_v2.spellcastingoption", "pk": 5936, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -10215,7 +10215,7 @@ "model": "api_v2.spellcastingoption", "pk": 5937, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_5", "damage_roll": "2d8", "target_count": null, @@ -10227,7 +10227,7 @@ "model": "api_v2.spellcastingoption", "pk": 5938, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_6", "damage_roll": "2d8", "target_count": null, @@ -10239,7 +10239,7 @@ "model": "api_v2.spellcastingoption", "pk": 5939, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_7", "damage_roll": "2d8", "target_count": null, @@ -10251,7 +10251,7 @@ "model": "api_v2.spellcastingoption", "pk": 5940, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_8", "damage_roll": "2d8", "target_count": null, @@ -10263,7 +10263,7 @@ "model": "api_v2.spellcastingoption", "pk": 5941, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_9", "damage_roll": "2d8", "target_count": null, @@ -10275,7 +10275,7 @@ "model": "api_v2.spellcastingoption", "pk": 5942, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_10", "damage_roll": "2d8", "target_count": null, @@ -10287,7 +10287,7 @@ "model": "api_v2.spellcastingoption", "pk": 5943, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_11", "damage_roll": "3d8", "target_count": null, @@ -10299,7 +10299,7 @@ "model": "api_v2.spellcastingoption", "pk": 5944, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_12", "damage_roll": "3d8", "target_count": null, @@ -10311,7 +10311,7 @@ "model": "api_v2.spellcastingoption", "pk": 5945, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_13", "damage_roll": "3d8", "target_count": null, @@ -10323,7 +10323,7 @@ "model": "api_v2.spellcastingoption", "pk": 5946, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_14", "damage_roll": "3d8", "target_count": null, @@ -10335,7 +10335,7 @@ "model": "api_v2.spellcastingoption", "pk": 5947, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_15", "damage_roll": "3d8", "target_count": null, @@ -10347,7 +10347,7 @@ "model": "api_v2.spellcastingoption", "pk": 5948, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_16", "damage_roll": "3d8", "target_count": null, @@ -10359,7 +10359,7 @@ "model": "api_v2.spellcastingoption", "pk": 5949, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_17", "damage_roll": "4d8", "target_count": null, @@ -10371,7 +10371,7 @@ "model": "api_v2.spellcastingoption", "pk": 5950, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_18", "damage_roll": "4d8", "target_count": null, @@ -10383,7 +10383,7 @@ "model": "api_v2.spellcastingoption", "pk": 5951, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_19", "damage_roll": "4d8", "target_count": null, @@ -10395,7 +10395,7 @@ "model": "api_v2.spellcastingoption", "pk": 5952, "fields": { - "spell": "sacred-flame", + "parent": "sacred-flame", "type": "player_level_20", "damage_roll": "4d8", "target_count": null, @@ -10407,7 +10407,7 @@ "model": "api_v2.spellcastingoption", "pk": 5953, "fields": { - "spell": "sanctuary", + "parent": "sanctuary", "type": "default", "damage_roll": null, "target_count": null, @@ -10419,7 +10419,7 @@ "model": "api_v2.spellcastingoption", "pk": 5954, "fields": { - "spell": "scorching-ray", + "parent": "scorching-ray", "type": "default", "damage_roll": null, "target_count": null, @@ -10431,7 +10431,7 @@ "model": "api_v2.spellcastingoption", "pk": 5956, "fields": { - "spell": "scorching-ray", + "parent": "scorching-ray", "type": "slot_level_3", "damage_roll": null, "target_count": 4, @@ -10443,7 +10443,7 @@ "model": "api_v2.spellcastingoption", "pk": 5957, "fields": { - "spell": "scorching-ray", + "parent": "scorching-ray", "type": "slot_level_4", "damage_roll": null, "target_count": 5, @@ -10455,7 +10455,7 @@ "model": "api_v2.spellcastingoption", "pk": 5958, "fields": { - "spell": "scorching-ray", + "parent": "scorching-ray", "type": "slot_level_5", "damage_roll": null, "target_count": 6, @@ -10467,7 +10467,7 @@ "model": "api_v2.spellcastingoption", "pk": 5959, "fields": { - "spell": "scorching-ray", + "parent": "scorching-ray", "type": "slot_level_6", "damage_roll": null, "target_count": 7, @@ -10479,7 +10479,7 @@ "model": "api_v2.spellcastingoption", "pk": 5960, "fields": { - "spell": "scorching-ray", + "parent": "scorching-ray", "type": "slot_level_7", "damage_roll": null, "target_count": 8, @@ -10491,7 +10491,7 @@ "model": "api_v2.spellcastingoption", "pk": 5961, "fields": { - "spell": "scorching-ray", + "parent": "scorching-ray", "type": "slot_level_8", "damage_roll": null, "target_count": 9, @@ -10503,7 +10503,7 @@ "model": "api_v2.spellcastingoption", "pk": 5962, "fields": { - "spell": "scorching-ray", + "parent": "scorching-ray", "type": "slot_level_9", "damage_roll": null, "target_count": 10, @@ -10515,7 +10515,7 @@ "model": "api_v2.spellcastingoption", "pk": 5963, "fields": { - "spell": "scrying", + "parent": "scrying", "type": "default", "damage_roll": null, "target_count": null, @@ -10527,7 +10527,7 @@ "model": "api_v2.spellcastingoption", "pk": 5964, "fields": { - "spell": "secret-chest", + "parent": "secret-chest", "type": "default", "damage_roll": null, "target_count": null, @@ -10539,7 +10539,7 @@ "model": "api_v2.spellcastingoption", "pk": 5965, "fields": { - "spell": "see-invisibility", + "parent": "see-invisibility", "type": "default", "damage_roll": null, "target_count": null, @@ -10551,7 +10551,7 @@ "model": "api_v2.spellcastingoption", "pk": 5966, "fields": { - "spell": "seeming", + "parent": "seeming", "type": "default", "damage_roll": null, "target_count": null, @@ -10563,7 +10563,7 @@ "model": "api_v2.spellcastingoption", "pk": 5967, "fields": { - "spell": "sending", + "parent": "sending", "type": "default", "damage_roll": null, "target_count": null, @@ -10575,7 +10575,7 @@ "model": "api_v2.spellcastingoption", "pk": 5968, "fields": { - "spell": "sequester", + "parent": "sequester", "type": "default", "damage_roll": null, "target_count": null, @@ -10587,7 +10587,7 @@ "model": "api_v2.spellcastingoption", "pk": 5969, "fields": { - "spell": "shapechange", + "parent": "shapechange", "type": "default", "damage_roll": null, "target_count": null, @@ -10599,7 +10599,7 @@ "model": "api_v2.spellcastingoption", "pk": 5970, "fields": { - "spell": "shatter", + "parent": "shatter", "type": "default", "damage_roll": null, "target_count": null, @@ -10611,7 +10611,7 @@ "model": "api_v2.spellcastingoption", "pk": 5972, "fields": { - "spell": "shatter", + "parent": "shatter", "type": "slot_level_3", "damage_roll": "4d8", "target_count": null, @@ -10623,7 +10623,7 @@ "model": "api_v2.spellcastingoption", "pk": 5973, "fields": { - "spell": "shatter", + "parent": "shatter", "type": "slot_level_4", "damage_roll": "5d8", "target_count": null, @@ -10635,7 +10635,7 @@ "model": "api_v2.spellcastingoption", "pk": 5974, "fields": { - "spell": "shatter", + "parent": "shatter", "type": "slot_level_5", "damage_roll": "6d8", "target_count": null, @@ -10647,7 +10647,7 @@ "model": "api_v2.spellcastingoption", "pk": 5975, "fields": { - "spell": "shatter", + "parent": "shatter", "type": "slot_level_6", "damage_roll": "7d8", "target_count": null, @@ -10659,7 +10659,7 @@ "model": "api_v2.spellcastingoption", "pk": 5976, "fields": { - "spell": "shatter", + "parent": "shatter", "type": "slot_level_7", "damage_roll": "8d8", "target_count": null, @@ -10671,7 +10671,7 @@ "model": "api_v2.spellcastingoption", "pk": 5977, "fields": { - "spell": "shatter", + "parent": "shatter", "type": "slot_level_8", "damage_roll": "9d8", "target_count": null, @@ -10683,7 +10683,7 @@ "model": "api_v2.spellcastingoption", "pk": 5978, "fields": { - "spell": "shatter", + "parent": "shatter", "type": "slot_level_9", "damage_roll": "10d8", "target_count": null, @@ -10695,7 +10695,7 @@ "model": "api_v2.spellcastingoption", "pk": 5979, "fields": { - "spell": "shield", + "parent": "shield", "type": "default", "damage_roll": null, "target_count": null, @@ -10707,7 +10707,7 @@ "model": "api_v2.spellcastingoption", "pk": 5980, "fields": { - "spell": "shield-of-faith", + "parent": "shield-of-faith", "type": "default", "damage_roll": null, "target_count": null, @@ -10719,7 +10719,7 @@ "model": "api_v2.spellcastingoption", "pk": 5981, "fields": { - "spell": "shillelagh", + "parent": "shillelagh", "type": "default", "damage_roll": null, "target_count": null, @@ -10731,7 +10731,7 @@ "model": "api_v2.spellcastingoption", "pk": 5982, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "default", "damage_roll": null, "target_count": null, @@ -10743,7 +10743,7 @@ "model": "api_v2.spellcastingoption", "pk": 5983, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -10755,7 +10755,7 @@ "model": "api_v2.spellcastingoption", "pk": 5984, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -10767,7 +10767,7 @@ "model": "api_v2.spellcastingoption", "pk": 5985, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -10779,7 +10779,7 @@ "model": "api_v2.spellcastingoption", "pk": 5986, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_4", "damage_roll": null, "target_count": null, @@ -10791,7 +10791,7 @@ "model": "api_v2.spellcastingoption", "pk": 5987, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_5", "damage_roll": "2d8", "target_count": null, @@ -10803,7 +10803,7 @@ "model": "api_v2.spellcastingoption", "pk": 5988, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_6", "damage_roll": "2d8", "target_count": null, @@ -10815,7 +10815,7 @@ "model": "api_v2.spellcastingoption", "pk": 5989, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_7", "damage_roll": "2d8", "target_count": null, @@ -10827,7 +10827,7 @@ "model": "api_v2.spellcastingoption", "pk": 5990, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_8", "damage_roll": "2d8", "target_count": null, @@ -10839,7 +10839,7 @@ "model": "api_v2.spellcastingoption", "pk": 5991, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_9", "damage_roll": "2d8", "target_count": null, @@ -10851,7 +10851,7 @@ "model": "api_v2.spellcastingoption", "pk": 5992, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_10", "damage_roll": "2d8", "target_count": null, @@ -10863,7 +10863,7 @@ "model": "api_v2.spellcastingoption", "pk": 5993, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_11", "damage_roll": "3d8", "target_count": null, @@ -10875,7 +10875,7 @@ "model": "api_v2.spellcastingoption", "pk": 5994, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_12", "damage_roll": "3d8", "target_count": null, @@ -10887,7 +10887,7 @@ "model": "api_v2.spellcastingoption", "pk": 5995, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_13", "damage_roll": "3d8", "target_count": null, @@ -10899,7 +10899,7 @@ "model": "api_v2.spellcastingoption", "pk": 5996, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_14", "damage_roll": "3d8", "target_count": null, @@ -10911,7 +10911,7 @@ "model": "api_v2.spellcastingoption", "pk": 5997, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_15", "damage_roll": "3d8", "target_count": null, @@ -10923,7 +10923,7 @@ "model": "api_v2.spellcastingoption", "pk": 5998, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_16", "damage_roll": "3d8", "target_count": null, @@ -10935,7 +10935,7 @@ "model": "api_v2.spellcastingoption", "pk": 5999, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_17", "damage_roll": "4d8", "target_count": null, @@ -10947,7 +10947,7 @@ "model": "api_v2.spellcastingoption", "pk": 6000, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_18", "damage_roll": "4d8", "target_count": null, @@ -10959,7 +10959,7 @@ "model": "api_v2.spellcastingoption", "pk": 6001, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_19", "damage_roll": "4d8", "target_count": null, @@ -10971,7 +10971,7 @@ "model": "api_v2.spellcastingoption", "pk": 6002, "fields": { - "spell": "shocking-grasp", + "parent": "shocking-grasp", "type": "player_level_20", "damage_roll": "4d8", "target_count": null, @@ -10983,7 +10983,7 @@ "model": "api_v2.spellcastingoption", "pk": 6003, "fields": { - "spell": "silence", + "parent": "silence", "type": "default", "damage_roll": null, "target_count": null, @@ -10995,7 +10995,7 @@ "model": "api_v2.spellcastingoption", "pk": 6004, "fields": { - "spell": "silence", + "parent": "silence", "type": "ritual", "damage_roll": null, "target_count": null, @@ -11007,7 +11007,7 @@ "model": "api_v2.spellcastingoption", "pk": 6005, "fields": { - "spell": "silent-image", + "parent": "silent-image", "type": "default", "damage_roll": null, "target_count": null, @@ -11019,7 +11019,7 @@ "model": "api_v2.spellcastingoption", "pk": 6006, "fields": { - "spell": "simulacrum", + "parent": "simulacrum", "type": "default", "damage_roll": null, "target_count": null, @@ -11031,7 +11031,7 @@ "model": "api_v2.spellcastingoption", "pk": 6007, "fields": { - "spell": "sleep", + "parent": "sleep", "type": "default", "damage_roll": null, "target_count": null, @@ -11043,7 +11043,7 @@ "model": "api_v2.spellcastingoption", "pk": 6009, "fields": { - "spell": "sleep", + "parent": "sleep", "type": "slot_level_2", "damage_roll": null, "target_count": null, @@ -11055,7 +11055,7 @@ "model": "api_v2.spellcastingoption", "pk": 6010, "fields": { - "spell": "sleep", + "parent": "sleep", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -11067,7 +11067,7 @@ "model": "api_v2.spellcastingoption", "pk": 6011, "fields": { - "spell": "sleep", + "parent": "sleep", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -11079,7 +11079,7 @@ "model": "api_v2.spellcastingoption", "pk": 6012, "fields": { - "spell": "sleep", + "parent": "sleep", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -11091,7 +11091,7 @@ "model": "api_v2.spellcastingoption", "pk": 6013, "fields": { - "spell": "sleep", + "parent": "sleep", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11103,7 +11103,7 @@ "model": "api_v2.spellcastingoption", "pk": 6014, "fields": { - "spell": "sleep", + "parent": "sleep", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11115,7 +11115,7 @@ "model": "api_v2.spellcastingoption", "pk": 6015, "fields": { - "spell": "sleep", + "parent": "sleep", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11127,7 +11127,7 @@ "model": "api_v2.spellcastingoption", "pk": 6016, "fields": { - "spell": "sleep", + "parent": "sleep", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11139,7 +11139,7 @@ "model": "api_v2.spellcastingoption", "pk": 6017, "fields": { - "spell": "sleet-storm", + "parent": "sleet-storm", "type": "default", "damage_roll": null, "target_count": null, @@ -11151,7 +11151,7 @@ "model": "api_v2.spellcastingoption", "pk": 6018, "fields": { - "spell": "slow", + "parent": "slow", "type": "default", "damage_roll": null, "target_count": null, @@ -11163,7 +11163,7 @@ "model": "api_v2.spellcastingoption", "pk": 6019, "fields": { - "spell": "spare-the-dying", + "parent": "spare-the-dying", "type": "default", "damage_roll": null, "target_count": null, @@ -11175,7 +11175,7 @@ "model": "api_v2.spellcastingoption", "pk": 6020, "fields": { - "spell": "speak-with-animals", + "parent": "speak-with-animals", "type": "default", "damage_roll": null, "target_count": null, @@ -11187,7 +11187,7 @@ "model": "api_v2.spellcastingoption", "pk": 6021, "fields": { - "spell": "speak-with-animals", + "parent": "speak-with-animals", "type": "ritual", "damage_roll": null, "target_count": null, @@ -11199,7 +11199,7 @@ "model": "api_v2.spellcastingoption", "pk": 6022, "fields": { - "spell": "speak-with-dead", + "parent": "speak-with-dead", "type": "default", "damage_roll": null, "target_count": null, @@ -11211,7 +11211,7 @@ "model": "api_v2.spellcastingoption", "pk": 6023, "fields": { - "spell": "speak-with-plants", + "parent": "speak-with-plants", "type": "default", "damage_roll": null, "target_count": null, @@ -11223,7 +11223,7 @@ "model": "api_v2.spellcastingoption", "pk": 6024, "fields": { - "spell": "spider-climb", + "parent": "spider-climb", "type": "default", "damage_roll": null, "target_count": null, @@ -11235,7 +11235,7 @@ "model": "api_v2.spellcastingoption", "pk": 6025, "fields": { - "spell": "spike-growth", + "parent": "spike-growth", "type": "default", "damage_roll": null, "target_count": null, @@ -11247,7 +11247,7 @@ "model": "api_v2.spellcastingoption", "pk": 6026, "fields": { - "spell": "spirit-guardians", + "parent": "spirit-guardians", "type": "default", "damage_roll": null, "target_count": null, @@ -11259,7 +11259,7 @@ "model": "api_v2.spellcastingoption", "pk": 6028, "fields": { - "spell": "spirit-guardians", + "parent": "spirit-guardians", "type": "slot_level_4", "damage_roll": "4d8", "target_count": null, @@ -11271,7 +11271,7 @@ "model": "api_v2.spellcastingoption", "pk": 6029, "fields": { - "spell": "spirit-guardians", + "parent": "spirit-guardians", "type": "slot_level_5", "damage_roll": "5d8", "target_count": null, @@ -11283,7 +11283,7 @@ "model": "api_v2.spellcastingoption", "pk": 6030, "fields": { - "spell": "spirit-guardians", + "parent": "spirit-guardians", "type": "slot_level_6", "damage_roll": "6d8", "target_count": null, @@ -11295,7 +11295,7 @@ "model": "api_v2.spellcastingoption", "pk": 6031, "fields": { - "spell": "spirit-guardians", + "parent": "spirit-guardians", "type": "slot_level_7", "damage_roll": "7d8", "target_count": null, @@ -11307,7 +11307,7 @@ "model": "api_v2.spellcastingoption", "pk": 6032, "fields": { - "spell": "spirit-guardians", + "parent": "spirit-guardians", "type": "slot_level_8", "damage_roll": "8d8", "target_count": null, @@ -11319,7 +11319,7 @@ "model": "api_v2.spellcastingoption", "pk": 6033, "fields": { - "spell": "spirit-guardians", + "parent": "spirit-guardians", "type": "slot_level_9", "damage_roll": "9d8", "target_count": null, @@ -11331,7 +11331,7 @@ "model": "api_v2.spellcastingoption", "pk": 6034, "fields": { - "spell": "spiritual-weapon", + "parent": "spiritual-weapon", "type": "default", "damage_roll": null, "target_count": null, @@ -11343,7 +11343,7 @@ "model": "api_v2.spellcastingoption", "pk": 6036, "fields": { - "spell": "spiritual-weapon", + "parent": "spiritual-weapon", "type": "slot_level_3", "damage_roll": null, "target_count": null, @@ -11355,7 +11355,7 @@ "model": "api_v2.spellcastingoption", "pk": 6037, "fields": { - "spell": "spiritual-weapon", + "parent": "spiritual-weapon", "type": "slot_level_4", "damage_roll": null, "target_count": null, @@ -11367,7 +11367,7 @@ "model": "api_v2.spellcastingoption", "pk": 6038, "fields": { - "spell": "spiritual-weapon", + "parent": "spiritual-weapon", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -11379,7 +11379,7 @@ "model": "api_v2.spellcastingoption", "pk": 6039, "fields": { - "spell": "spiritual-weapon", + "parent": "spiritual-weapon", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -11391,7 +11391,7 @@ "model": "api_v2.spellcastingoption", "pk": 6040, "fields": { - "spell": "spiritual-weapon", + "parent": "spiritual-weapon", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -11403,7 +11403,7 @@ "model": "api_v2.spellcastingoption", "pk": 6041, "fields": { - "spell": "spiritual-weapon", + "parent": "spiritual-weapon", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -11415,7 +11415,7 @@ "model": "api_v2.spellcastingoption", "pk": 6042, "fields": { - "spell": "spiritual-weapon", + "parent": "spiritual-weapon", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -11427,7 +11427,7 @@ "model": "api_v2.spellcastingoption", "pk": 6043, "fields": { - "spell": "stinking-cloud", + "parent": "stinking-cloud", "type": "default", "damage_roll": null, "target_count": null, @@ -11439,7 +11439,7 @@ "model": "api_v2.spellcastingoption", "pk": 6044, "fields": { - "spell": "stone-shape", + "parent": "stone-shape", "type": "default", "damage_roll": null, "target_count": null, @@ -11451,7 +11451,7 @@ "model": "api_v2.spellcastingoption", "pk": 6045, "fields": { - "spell": "stoneskin", + "parent": "stoneskin", "type": "default", "damage_roll": null, "target_count": null, @@ -11463,7 +11463,7 @@ "model": "api_v2.spellcastingoption", "pk": 6046, "fields": { - "spell": "storm-of-vengeance", + "parent": "storm-of-vengeance", "type": "default", "damage_roll": null, "target_count": null, @@ -11475,7 +11475,7 @@ "model": "api_v2.spellcastingoption", "pk": 6047, "fields": { - "spell": "suggestion", + "parent": "suggestion", "type": "default", "damage_roll": null, "target_count": null, @@ -11487,7 +11487,7 @@ "model": "api_v2.spellcastingoption", "pk": 6048, "fields": { - "spell": "sunbeam", + "parent": "sunbeam", "type": "default", "damage_roll": null, "target_count": null, @@ -11499,7 +11499,7 @@ "model": "api_v2.spellcastingoption", "pk": 6049, "fields": { - "spell": "sunburst", + "parent": "sunburst", "type": "default", "damage_roll": null, "target_count": null, @@ -11511,7 +11511,7 @@ "model": "api_v2.spellcastingoption", "pk": 6050, "fields": { - "spell": "symbol", + "parent": "symbol", "type": "default", "damage_roll": null, "target_count": null, @@ -11523,7 +11523,7 @@ "model": "api_v2.spellcastingoption", "pk": 6051, "fields": { - "spell": "telekinesis", + "parent": "telekinesis", "type": "default", "damage_roll": null, "target_count": null, @@ -11535,7 +11535,7 @@ "model": "api_v2.spellcastingoption", "pk": 6052, "fields": { - "spell": "telepathic-bond", + "parent": "telepathic-bond", "type": "default", "damage_roll": null, "target_count": null, @@ -11547,7 +11547,7 @@ "model": "api_v2.spellcastingoption", "pk": 6053, "fields": { - "spell": "telepathic-bond", + "parent": "telepathic-bond", "type": "ritual", "damage_roll": null, "target_count": null, @@ -11559,7 +11559,7 @@ "model": "api_v2.spellcastingoption", "pk": 6054, "fields": { - "spell": "teleport", + "parent": "teleport", "type": "default", "damage_roll": null, "target_count": null, @@ -11571,7 +11571,7 @@ "model": "api_v2.spellcastingoption", "pk": 6055, "fields": { - "spell": "teleportation-circle", + "parent": "teleportation-circle", "type": "default", "damage_roll": null, "target_count": null, @@ -11583,7 +11583,7 @@ "model": "api_v2.spellcastingoption", "pk": 6056, "fields": { - "spell": "thaumaturgy", + "parent": "thaumaturgy", "type": "default", "damage_roll": null, "target_count": null, @@ -11595,7 +11595,7 @@ "model": "api_v2.spellcastingoption", "pk": 6057, "fields": { - "spell": "thunderwave", + "parent": "thunderwave", "type": "default", "damage_roll": null, "target_count": null, @@ -11607,7 +11607,7 @@ "model": "api_v2.spellcastingoption", "pk": 6059, "fields": { - "spell": "thunderwave", + "parent": "thunderwave", "type": "slot_level_2", "damage_roll": "3d8", "target_count": null, @@ -11619,7 +11619,7 @@ "model": "api_v2.spellcastingoption", "pk": 6060, "fields": { - "spell": "thunderwave", + "parent": "thunderwave", "type": "slot_level_3", "damage_roll": "4d8", "target_count": null, @@ -11631,7 +11631,7 @@ "model": "api_v2.spellcastingoption", "pk": 6061, "fields": { - "spell": "thunderwave", + "parent": "thunderwave", "type": "slot_level_4", "damage_roll": "5d8", "target_count": null, @@ -11643,7 +11643,7 @@ "model": "api_v2.spellcastingoption", "pk": 6062, "fields": { - "spell": "thunderwave", + "parent": "thunderwave", "type": "slot_level_5", "damage_roll": "6d8", "target_count": null, @@ -11655,7 +11655,7 @@ "model": "api_v2.spellcastingoption", "pk": 6063, "fields": { - "spell": "thunderwave", + "parent": "thunderwave", "type": "slot_level_6", "damage_roll": "7d8", "target_count": null, @@ -11667,7 +11667,7 @@ "model": "api_v2.spellcastingoption", "pk": 6064, "fields": { - "spell": "thunderwave", + "parent": "thunderwave", "type": "slot_level_7", "damage_roll": "8d8", "target_count": null, @@ -11679,7 +11679,7 @@ "model": "api_v2.spellcastingoption", "pk": 6065, "fields": { - "spell": "thunderwave", + "parent": "thunderwave", "type": "slot_level_8", "damage_roll": "9d8", "target_count": null, @@ -11691,7 +11691,7 @@ "model": "api_v2.spellcastingoption", "pk": 6066, "fields": { - "spell": "thunderwave", + "parent": "thunderwave", "type": "slot_level_9", "damage_roll": "10d8", "target_count": null, @@ -11703,7 +11703,7 @@ "model": "api_v2.spellcastingoption", "pk": 6067, "fields": { - "spell": "time-stop", + "parent": "time-stop", "type": "default", "damage_roll": null, "target_count": null, @@ -11715,7 +11715,7 @@ "model": "api_v2.spellcastingoption", "pk": 6068, "fields": { - "spell": "tiny-hut", + "parent": "tiny-hut", "type": "default", "damage_roll": null, "target_count": null, @@ -11727,7 +11727,7 @@ "model": "api_v2.spellcastingoption", "pk": 6069, "fields": { - "spell": "tiny-hut", + "parent": "tiny-hut", "type": "ritual", "damage_roll": null, "target_count": null, @@ -11739,7 +11739,7 @@ "model": "api_v2.spellcastingoption", "pk": 6070, "fields": { - "spell": "tongues", + "parent": "tongues", "type": "default", "damage_roll": null, "target_count": null, @@ -11751,7 +11751,7 @@ "model": "api_v2.spellcastingoption", "pk": 6071, "fields": { - "spell": "transport-via-plants", + "parent": "transport-via-plants", "type": "default", "damage_roll": null, "target_count": null, @@ -11763,7 +11763,7 @@ "model": "api_v2.spellcastingoption", "pk": 6072, "fields": { - "spell": "tree-stride", + "parent": "tree-stride", "type": "default", "damage_roll": null, "target_count": null, @@ -11775,7 +11775,7 @@ "model": "api_v2.spellcastingoption", "pk": 6073, "fields": { - "spell": "true-polymorph", + "parent": "true-polymorph", "type": "default", "damage_roll": null, "target_count": null, @@ -11787,7 +11787,7 @@ "model": "api_v2.spellcastingoption", "pk": 6074, "fields": { - "spell": "true-resurrection", + "parent": "true-resurrection", "type": "default", "damage_roll": null, "target_count": null, @@ -11799,7 +11799,7 @@ "model": "api_v2.spellcastingoption", "pk": 6075, "fields": { - "spell": "true-seeing", + "parent": "true-seeing", "type": "default", "damage_roll": null, "target_count": null, @@ -11811,7 +11811,7 @@ "model": "api_v2.spellcastingoption", "pk": 6076, "fields": { - "spell": "true-strike", + "parent": "true-strike", "type": "default", "damage_roll": null, "target_count": null, @@ -11823,7 +11823,7 @@ "model": "api_v2.spellcastingoption", "pk": 6077, "fields": { - "spell": "unseen-servant", + "parent": "unseen-servant", "type": "default", "damage_roll": null, "target_count": null, @@ -11835,7 +11835,7 @@ "model": "api_v2.spellcastingoption", "pk": 6078, "fields": { - "spell": "unseen-servant", + "parent": "unseen-servant", "type": "ritual", "damage_roll": null, "target_count": null, @@ -11847,7 +11847,7 @@ "model": "api_v2.spellcastingoption", "pk": 6079, "fields": { - "spell": "vampiric-touch", + "parent": "vampiric-touch", "type": "default", "damage_roll": null, "target_count": null, @@ -11859,7 +11859,7 @@ "model": "api_v2.spellcastingoption", "pk": 6081, "fields": { - "spell": "vampiric-touch", + "parent": "vampiric-touch", "type": "slot_level_4", "damage_roll": "4d6", "target_count": null, @@ -11871,7 +11871,7 @@ "model": "api_v2.spellcastingoption", "pk": 6082, "fields": { - "spell": "vampiric-touch", + "parent": "vampiric-touch", "type": "slot_level_5", "damage_roll": "5d6", "target_count": null, @@ -11883,7 +11883,7 @@ "model": "api_v2.spellcastingoption", "pk": 6083, "fields": { - "spell": "vampiric-touch", + "parent": "vampiric-touch", "type": "slot_level_6", "damage_roll": "6d6", "target_count": null, @@ -11895,7 +11895,7 @@ "model": "api_v2.spellcastingoption", "pk": 6084, "fields": { - "spell": "vampiric-touch", + "parent": "vampiric-touch", "type": "slot_level_7", "damage_roll": "7d6", "target_count": null, @@ -11907,7 +11907,7 @@ "model": "api_v2.spellcastingoption", "pk": 6085, "fields": { - "spell": "vampiric-touch", + "parent": "vampiric-touch", "type": "slot_level_8", "damage_roll": "8d6", "target_count": null, @@ -11919,7 +11919,7 @@ "model": "api_v2.spellcastingoption", "pk": 6086, "fields": { - "spell": "vampiric-touch", + "parent": "vampiric-touch", "type": "slot_level_9", "damage_roll": "9d6", "target_count": null, @@ -11931,7 +11931,7 @@ "model": "api_v2.spellcastingoption", "pk": 6087, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "default", "damage_roll": null, "target_count": null, @@ -11943,7 +11943,7 @@ "model": "api_v2.spellcastingoption", "pk": 6088, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_1", "damage_roll": null, "target_count": null, @@ -11955,7 +11955,7 @@ "model": "api_v2.spellcastingoption", "pk": 6089, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_2", "damage_roll": null, "target_count": null, @@ -11967,7 +11967,7 @@ "model": "api_v2.spellcastingoption", "pk": 6090, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_3", "damage_roll": null, "target_count": null, @@ -11979,7 +11979,7 @@ "model": "api_v2.spellcastingoption", "pk": 6091, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_4", "damage_roll": "", "target_count": null, @@ -11991,7 +11991,7 @@ "model": "api_v2.spellcastingoption", "pk": 6092, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_5", "damage_roll": "2d4", "target_count": null, @@ -12003,7 +12003,7 @@ "model": "api_v2.spellcastingoption", "pk": 6093, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_6", "damage_roll": "2d4", "target_count": null, @@ -12015,7 +12015,7 @@ "model": "api_v2.spellcastingoption", "pk": 6094, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_7", "damage_roll": "2d4", "target_count": null, @@ -12027,7 +12027,7 @@ "model": "api_v2.spellcastingoption", "pk": 6095, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_8", "damage_roll": "2d4", "target_count": null, @@ -12039,7 +12039,7 @@ "model": "api_v2.spellcastingoption", "pk": 6096, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_9", "damage_roll": "2d4", "target_count": null, @@ -12051,7 +12051,7 @@ "model": "api_v2.spellcastingoption", "pk": 6097, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_10", "damage_roll": "2d4", "target_count": null, @@ -12063,7 +12063,7 @@ "model": "api_v2.spellcastingoption", "pk": 6098, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_11", "damage_roll": "3d4", "target_count": null, @@ -12075,7 +12075,7 @@ "model": "api_v2.spellcastingoption", "pk": 6099, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_12", "damage_roll": "3d4", "target_count": null, @@ -12087,7 +12087,7 @@ "model": "api_v2.spellcastingoption", "pk": 6100, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_13", "damage_roll": "3d4", "target_count": null, @@ -12099,7 +12099,7 @@ "model": "api_v2.spellcastingoption", "pk": 6101, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_14", "damage_roll": "3d4", "target_count": null, @@ -12111,7 +12111,7 @@ "model": "api_v2.spellcastingoption", "pk": 6102, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_15", "damage_roll": "3d4", "target_count": null, @@ -12123,7 +12123,7 @@ "model": "api_v2.spellcastingoption", "pk": 6103, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_16", "damage_roll": "3d4", "target_count": null, @@ -12135,7 +12135,7 @@ "model": "api_v2.spellcastingoption", "pk": 6104, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_17", "damage_roll": "4d4", "target_count": null, @@ -12147,7 +12147,7 @@ "model": "api_v2.spellcastingoption", "pk": 6105, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_18", "damage_roll": "4d4", "target_count": null, @@ -12159,7 +12159,7 @@ "model": "api_v2.spellcastingoption", "pk": 6106, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_19", "damage_roll": "4d4", "target_count": null, @@ -12171,7 +12171,7 @@ "model": "api_v2.spellcastingoption", "pk": 6107, "fields": { - "spell": "vicious-mockery", + "parent": "vicious-mockery", "type": "player_level_20", "damage_roll": "4d4", "target_count": null, @@ -12183,7 +12183,7 @@ "model": "api_v2.spellcastingoption", "pk": 6108, "fields": { - "spell": "wall-of-fire", + "parent": "wall-of-fire", "type": "default", "damage_roll": null, "target_count": null, @@ -12195,7 +12195,7 @@ "model": "api_v2.spellcastingoption", "pk": 6110, "fields": { - "spell": "wall-of-fire", + "parent": "wall-of-fire", "type": "slot_level_5", "damage_roll": null, "target_count": null, @@ -12207,7 +12207,7 @@ "model": "api_v2.spellcastingoption", "pk": 6111, "fields": { - "spell": "wall-of-fire", + "parent": "wall-of-fire", "type": "slot_level_6", "damage_roll": null, "target_count": null, @@ -12219,7 +12219,7 @@ "model": "api_v2.spellcastingoption", "pk": 6112, "fields": { - "spell": "wall-of-fire", + "parent": "wall-of-fire", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12231,7 +12231,7 @@ "model": "api_v2.spellcastingoption", "pk": 6113, "fields": { - "spell": "wall-of-fire", + "parent": "wall-of-fire", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12243,7 +12243,7 @@ "model": "api_v2.spellcastingoption", "pk": 6114, "fields": { - "spell": "wall-of-fire", + "parent": "wall-of-fire", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12255,7 +12255,7 @@ "model": "api_v2.spellcastingoption", "pk": 6115, "fields": { - "spell": "wall-of-force", + "parent": "wall-of-force", "type": "default", "damage_roll": null, "target_count": null, @@ -12267,7 +12267,7 @@ "model": "api_v2.spellcastingoption", "pk": 6116, "fields": { - "spell": "wall-of-ice", + "parent": "wall-of-ice", "type": "default", "damage_roll": null, "target_count": null, @@ -12279,7 +12279,7 @@ "model": "api_v2.spellcastingoption", "pk": 6118, "fields": { - "spell": "wall-of-ice", + "parent": "wall-of-ice", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12291,7 +12291,7 @@ "model": "api_v2.spellcastingoption", "pk": 6119, "fields": { - "spell": "wall-of-ice", + "parent": "wall-of-ice", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12303,7 +12303,7 @@ "model": "api_v2.spellcastingoption", "pk": 6120, "fields": { - "spell": "wall-of-ice", + "parent": "wall-of-ice", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12315,7 +12315,7 @@ "model": "api_v2.spellcastingoption", "pk": 6121, "fields": { - "spell": "wall-of-stone", + "parent": "wall-of-stone", "type": "default", "damage_roll": null, "target_count": null, @@ -12327,7 +12327,7 @@ "model": "api_v2.spellcastingoption", "pk": 6122, "fields": { - "spell": "wall-of-thorns", + "parent": "wall-of-thorns", "type": "default", "damage_roll": null, "target_count": null, @@ -12339,7 +12339,7 @@ "model": "api_v2.spellcastingoption", "pk": 6124, "fields": { - "spell": "wall-of-thorns", + "parent": "wall-of-thorns", "type": "slot_level_7", "damage_roll": null, "target_count": null, @@ -12351,7 +12351,7 @@ "model": "api_v2.spellcastingoption", "pk": 6125, "fields": { - "spell": "wall-of-thorns", + "parent": "wall-of-thorns", "type": "slot_level_8", "damage_roll": null, "target_count": null, @@ -12363,7 +12363,7 @@ "model": "api_v2.spellcastingoption", "pk": 6126, "fields": { - "spell": "wall-of-thorns", + "parent": "wall-of-thorns", "type": "slot_level_9", "damage_roll": null, "target_count": null, @@ -12375,7 +12375,7 @@ "model": "api_v2.spellcastingoption", "pk": 6127, "fields": { - "spell": "warding-bond", + "parent": "warding-bond", "type": "default", "damage_roll": null, "target_count": null, @@ -12387,7 +12387,7 @@ "model": "api_v2.spellcastingoption", "pk": 6128, "fields": { - "spell": "water-breathing", + "parent": "water-breathing", "type": "default", "damage_roll": null, "target_count": null, @@ -12399,7 +12399,7 @@ "model": "api_v2.spellcastingoption", "pk": 6129, "fields": { - "spell": "water-breathing", + "parent": "water-breathing", "type": "ritual", "damage_roll": null, "target_count": null, @@ -12411,7 +12411,7 @@ "model": "api_v2.spellcastingoption", "pk": 6130, "fields": { - "spell": "water-walk", + "parent": "water-walk", "type": "default", "damage_roll": null, "target_count": null, @@ -12423,7 +12423,7 @@ "model": "api_v2.spellcastingoption", "pk": 6131, "fields": { - "spell": "water-walk", + "parent": "water-walk", "type": "ritual", "damage_roll": null, "target_count": null, @@ -12435,7 +12435,7 @@ "model": "api_v2.spellcastingoption", "pk": 6132, "fields": { - "spell": "web", + "parent": "web", "type": "default", "damage_roll": null, "target_count": null, @@ -12447,7 +12447,7 @@ "model": "api_v2.spellcastingoption", "pk": 6133, "fields": { - "spell": "weird", + "parent": "weird", "type": "default", "damage_roll": null, "target_count": null, @@ -12459,7 +12459,7 @@ "model": "api_v2.spellcastingoption", "pk": 6134, "fields": { - "spell": "wind-walk", + "parent": "wind-walk", "type": "default", "damage_roll": null, "target_count": null, @@ -12471,7 +12471,7 @@ "model": "api_v2.spellcastingoption", "pk": 6135, "fields": { - "spell": "wind-wall", + "parent": "wind-wall", "type": "default", "damage_roll": null, "target_count": null, @@ -12483,7 +12483,7 @@ "model": "api_v2.spellcastingoption", "pk": 6136, "fields": { - "spell": "wish", + "parent": "wish", "type": "default", "damage_roll": null, "target_count": null, @@ -12495,7 +12495,7 @@ "model": "api_v2.spellcastingoption", "pk": 6137, "fields": { - "spell": "word-of-recall", + "parent": "word-of-recall", "type": "default", "damage_roll": null, "target_count": null, @@ -12507,7 +12507,7 @@ "model": "api_v2.spellcastingoption", "pk": 6138, "fields": { - "spell": "zone-of-truth", + "parent": "zone-of-truth", "type": "default", "damage_roll": null, "target_count": null, From 93ae519fffac50aa8f67464e0fa608bdf10d7ae7 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 12:06:31 -0500 Subject: [PATCH 50/84] Fixing a serializer reference. --- api_v2/serializers/spell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api_v2/serializers/spell.py b/api_v2/serializers/spell.py index 5cacf4a6..623148c8 100644 --- a/api_v2/serializers/spell.py +++ b/api_v2/serializers/spell.py @@ -15,7 +15,7 @@ class Meta: class SpellCastingOptionSerializer(serializers.ModelSerializer): class Meta: model = models.SpellCastingOption - exclude = ['id','spell'] + exclude = ['id','parent'] class SpellSerializer(GameContentSerializer): key = serializers.ReadOnlyField() From 39e83492c499955ab7e53750172948f097e0aa63 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 12:07:05 -0500 Subject: [PATCH 51/84] whitespace fix. --- api_v2/serializers/spell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/api_v2/serializers/spell.py b/api_v2/serializers/spell.py index 623148c8..8b55dede 100644 --- a/api_v2/serializers/spell.py +++ b/api_v2/serializers/spell.py @@ -17,6 +17,7 @@ class Meta: model = models.SpellCastingOption exclude = ['id','parent'] + class SpellSerializer(GameContentSerializer): key = serializers.ReadOnlyField() slot_expended=serializers.ReadOnlyField() From d402b026d9db0ca77984347b3814abf6c764640b Mon Sep 17 00:00:00 2001 From: August Johnson Date: Mon, 27 May 2024 12:09:13 -0500 Subject: [PATCH 52/84] Removing deprecated data. --- .../v2/kobold-press/deepmx/CastingOption.json | 2030 ----------------- 1 file changed, 2030 deletions(-) delete mode 100644 data/v2/kobold-press/deepmx/CastingOption.json diff --git a/data/v2/kobold-press/deepmx/CastingOption.json b/data/v2/kobold-press/deepmx/CastingOption.json deleted file mode 100644 index 2ed7f4e7..00000000 --- a/data/v2/kobold-press/deepmx/CastingOption.json +++ /dev/null @@ -1,2030 +0,0 @@ -[ -{ - "model": "api_v2.castingoption", - "pk": 4726, - "fields": { - "spell": "absolute-command", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4728, - "fields": { - "spell": "absolute-command", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4729, - "fields": { - "spell": "absolute-command", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4730, - "fields": { - "spell": "absolute-command", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4731, - "fields": { - "spell": "absolute-command", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4732, - "fields": { - "spell": "absolute-command", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4733, - "fields": { - "spell": "amplify-ley-field", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4734, - "fields": { - "spell": "animate-construct", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4736, - "fields": { - "spell": "animate-construct", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4737, - "fields": { - "spell": "animate-construct", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4738, - "fields": { - "spell": "animate-construct", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4739, - "fields": { - "spell": "animate-construct", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4740, - "fields": { - "spell": "animate-construct", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4741, - "fields": { - "spell": "animate-construct", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4742, - "fields": { - "spell": "animate-construct", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4743, - "fields": { - "spell": "animate-construct", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4744, - "fields": { - "spell": "anomalous-object", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4745, - "fields": { - "spell": "armored-heart", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4746, - "fields": { - "spell": "armored-shell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4748, - "fields": { - "spell": "armored-shell", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4749, - "fields": { - "spell": "armored-shell", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4750, - "fields": { - "spell": "armored-shell", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4751, - "fields": { - "spell": "armored-shell", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4752, - "fields": { - "spell": "armored-shell", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4753, - "fields": { - "spell": "armored-shell", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4754, - "fields": { - "spell": "armored-shell", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4755, - "fields": { - "spell": "armored-shell", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4756, - "fields": { - "spell": "banshee-wail", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4757, - "fields": { - "spell": "beguiling-gift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4758, - "fields": { - "spell": "borrowing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4760, - "fields": { - "spell": "borrowing", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4761, - "fields": { - "spell": "borrowing", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4762, - "fields": { - "spell": "borrowing", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4763, - "fields": { - "spell": "borrowing", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4764, - "fields": { - "spell": "borrowing", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4765, - "fields": { - "spell": "borrowing", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4766, - "fields": { - "spell": "call-the-hunter", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4767, - "fields": { - "spell": "circle-of-devestation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4768, - "fields": { - "spell": "cloying-darkness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4770, - "fields": { - "spell": "cloying-darkness", - "type": "slot_level_2", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4771, - "fields": { - "spell": "cloying-darkness", - "type": "slot_level_3", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4772, - "fields": { - "spell": "cloying-darkness", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4773, - "fields": { - "spell": "cloying-darkness", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4774, - "fields": { - "spell": "cloying-darkness", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4775, - "fields": { - "spell": "cloying-darkness", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4776, - "fields": { - "spell": "cloying-darkness", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4777, - "fields": { - "spell": "cloying-darkness", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4778, - "fields": { - "spell": "cosmic-alignment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4779, - "fields": { - "spell": "cosmic-alignment", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4780, - "fields": { - "spell": "cruor-of-visions", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4781, - "fields": { - "spell": "extract-foyson", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4782, - "fields": { - "spell": "extract-foyson", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4784, - "fields": { - "spell": "extract-foyson", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4785, - "fields": { - "spell": "extract-foyson", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4786, - "fields": { - "spell": "extract-foyson", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4787, - "fields": { - "spell": "extract-foyson", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4788, - "fields": { - "spell": "extract-foyson", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4789, - "fields": { - "spell": "extract-foyson", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4790, - "fields": { - "spell": "extract-foyson", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4791, - "fields": { - "spell": "extract-foyson", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4792, - "fields": { - "spell": "find-the-flaw", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4793, - "fields": { - "spell": "gear-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4794, - "fields": { - "spell": "gift-of-azathoth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4796, - "fields": { - "spell": "gift-of-azathoth", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4797, - "fields": { - "spell": "gift-of-azathoth", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4798, - "fields": { - "spell": "gift-of-azathoth", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4799, - "fields": { - "spell": "gift-of-azathoth", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4800, - "fields": { - "spell": "gift-of-azathoth", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4801, - "fields": { - "spell": "gift-of-azathoth", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4802, - "fields": { - "spell": "gift-of-azathoth", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4803, - "fields": { - "spell": "greater-ley-pulse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4805, - "fields": { - "spell": "greater-ley-pulse", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4806, - "fields": { - "spell": "greater-ley-pulse", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4807, - "fields": { - "spell": "gremlins", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4809, - "fields": { - "spell": "gremlins", - "type": "slot_level_5", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4810, - "fields": { - "spell": "gremlins", - "type": "slot_level_6", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4811, - "fields": { - "spell": "gremlins", - "type": "slot_level_7", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4812, - "fields": { - "spell": "gremlins", - "type": "slot_level_8", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4813, - "fields": { - "spell": "gremlins", - "type": "slot_level_9", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4814, - "fields": { - "spell": "grinding-gears", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4815, - "fields": { - "spell": "hearth-charm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4816, - "fields": { - "spell": "hellforging", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4817, - "fields": { - "spell": "hellforging", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4818, - "fields": { - "spell": "hods-gift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4820, - "fields": { - "spell": "hods-gift", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4821, - "fields": { - "spell": "hods-gift", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4822, - "fields": { - "spell": "hods-gift", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4823, - "fields": { - "spell": "hods-gift", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4824, - "fields": { - "spell": "imbue-spell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4825, - "fields": { - "spell": "imbue-spell", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4827, - "fields": { - "spell": "imbue-spell", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4828, - "fields": { - "spell": "imbue-spell", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4829, - "fields": { - "spell": "imbue-spell", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4830, - "fields": { - "spell": "imbue-spell", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4831, - "fields": { - "spell": "jotuns-jest", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4832, - "fields": { - "spell": "land-bond", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4833, - "fields": { - "spell": "lesser-ley-pulse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4835, - "fields": { - "spell": "lesser-ley-pulse", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4836, - "fields": { - "spell": "lesser-ley-pulse", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4837, - "fields": { - "spell": "lesser-ley-pulse", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4838, - "fields": { - "spell": "lesser-ley-pulse", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4839, - "fields": { - "spell": "ley-disruption", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4840, - "fields": { - "spell": "ley-energy-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4842, - "fields": { - "spell": "ley-energy-bolt", - "type": "slot_level_4", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4843, - "fields": { - "spell": "ley-energy-bolt", - "type": "slot_level_5", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4844, - "fields": { - "spell": "ley-energy-bolt", - "type": "slot_level_6", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4845, - "fields": { - "spell": "ley-energy-bolt", - "type": "slot_level_7", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4846, - "fields": { - "spell": "ley-energy-bolt", - "type": "slot_level_8", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4847, - "fields": { - "spell": "ley-energy-bolt", - "type": "slot_level_9", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4848, - "fields": { - "spell": "ley-leech", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4850, - "fields": { - "spell": "ley-leech", - "type": "slot_level_6", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4851, - "fields": { - "spell": "ley-leech", - "type": "slot_level_7", - "damage_roll": "10d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4852, - "fields": { - "spell": "ley-leech", - "type": "slot_level_8", - "damage_roll": "11d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4853, - "fields": { - "spell": "ley-leech", - "type": "slot_level_9", - "damage_roll": "12d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4854, - "fields": { - "spell": "ley-sense", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4855, - "fields": { - "spell": "ley-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4856, - "fields": { - "spell": "ley-surge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4857, - "fields": { - "spell": "ley-whip", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4858, - "fields": { - "spell": "lokis-gift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4859, - "fields": { - "spell": "machine-sacrifice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4860, - "fields": { - "spell": "machine-speech", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4861, - "fields": { - "spell": "machines-load", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4863, - "fields": { - "spell": "machines-load", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4864, - "fields": { - "spell": "machines-load", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4865, - "fields": { - "spell": "machines-load", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4866, - "fields": { - "spell": "machines-load", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4867, - "fields": { - "spell": "machines-load", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4868, - "fields": { - "spell": "machines-load", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4869, - "fields": { - "spell": "machines-load", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4870, - "fields": { - "spell": "machines-load", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4871, - "fields": { - "spell": "mass-blade-ward", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4872, - "fields": { - "spell": "mass-repair-metal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4874, - "fields": { - "spell": "mass-repair-metal", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4875, - "fields": { - "spell": "mass-repair-metal", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4876, - "fields": { - "spell": "mass-repair-metal", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4877, - "fields": { - "spell": "mass-repair-metal", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4878, - "fields": { - "spell": "mechanical-union", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4879, - "fields": { - "spell": "molechs-blessing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4880, - "fields": { - "spell": "move-the-cosmic-wheel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4881, - "fields": { - "spell": "overclock", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4882, - "fields": { - "spell": "power-word-restore", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4883, - "fields": { - "spell": "read-memory", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4884, - "fields": { - "spell": "repair-metal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4886, - "fields": { - "spell": "repair-metal", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4887, - "fields": { - "spell": "repair-metal", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4888, - "fields": { - "spell": "repair-metal", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4889, - "fields": { - "spell": "repair-metal", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4890, - "fields": { - "spell": "repair-metal", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4891, - "fields": { - "spell": "repair-metal", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4892, - "fields": { - "spell": "repair-metal", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4893, - "fields": { - "spell": "risen-road", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4894, - "fields": { - "spell": "robe-of-shards", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4895, - "fields": { - "spell": "shadow-realm-gateway", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4896, - "fields": { - "spell": "shadow-realm-gateway", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4897, - "fields": { - "spell": "shield-of-star-and-shadow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4898, - "fields": { - "spell": "snowblind-stare", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4899, - "fields": { - "spell": "soothsayers-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4900, - "fields": { - "spell": "soul-of-the-machine", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4901, - "fields": { - "spell": "sphere-of-order", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4902, - "fields": { - "spell": "spire-of-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4903, - "fields": { - "spell": "strength-of-the-underworld", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4904, - "fields": { - "spell": "summon-old-ones-avatar", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4905, - "fields": { - "spell": "summon-old-ones-avatar", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4906, - "fields": { - "spell": "tick-stop", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4907, - "fields": { - "spell": "timeless-engine", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4908, - "fields": { - "spell": "winding-key", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4909, - "fields": { - "spell": "wotans-rede", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4910, - "fields": { - "spell": "wotans-rede", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.castingoption", - "pk": 4911, - "fields": { - "spell": "write-memory", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -} -] From eb19059b5f0fa91f9c92c443164ce489b1985842 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Thu, 30 May 2024 08:21:02 -0500 Subject: [PATCH 53/84] Adjust keys to be the appropriate format. --- data/v2/en-publishing/a5e-ag/Spell.json | 23204 +++---- .../a5e-ag/SpellCastingOption.json | 39914 ++++++------ data/v2/kobold-press/deepm/Spell.json | 32336 +++++----- .../deepm/SpellCastingOption.json | 50402 ++++++++-------- data/v2/kobold-press/deepmx/Spell.json | 4006 +- .../deepmx/SpellCastingOption.json | 4058 +- data/v2/kobold-press/kp/Spell.json | 1938 +- .../kobold-press/kp/SpellCastingOption.json | 2018 +- data/v2/kobold-press/toh/Spell.json | 5744 +- .../kobold-press/toh/SpellCastingOption.json | 8594 +-- data/v2/kobold-press/wz/Spell.json | 2698 +- .../kobold-press/wz/SpellCastingOption.json | 3866 +- data/v2/open5e/open5e/Spell.json | 128 +- data/v2/open5e/open5e/SpellCastingOption.json | 240 +- data/v2/wizards-of-the-coast/srd/Spell.json | 20034 +++--- .../srd/SpellCastingOption.json | 25034 ++++---- .../data_manipulation/data_v2_format_check.py | 6 +- 17 files changed, 112110 insertions(+), 112110 deletions(-) diff --git a/data/v2/en-publishing/a5e-ag/Spell.json b/data/v2/en-publishing/a5e-ag/Spell.json index e29c85c5..e5b2edf0 100644 --- a/data/v2/en-publishing/a5e-ag/Spell.json +++ b/data/v2/en-publishing/a5e-ag/Spell.json @@ -1,11603 +1,11603 @@ [ -{ - "model": "api_v2.spell", - "pk": "accelerando-a5e", - "fields": { - "name": "Accelerando", - "desc": "You play a complex and quick up-tempo piece that gradually gets faster and more complex, instilling the targets with its speed. You cannot cast another spell through your spellcasting focus while concentrating on this spell.\n\nUntil the spell ends, targets gain cumulative benefits the longer you maintain concentration on this spell (including the turn you cast it).\n\n* **1 Round:** Double Speed.\n* **2 Rounds:** +2 bonus to AC.\n* **3 Rounds:** Advantage on Dexterity saving throws.\n* **4 Rounds:** An additional action each turn. This action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action.\n\nWhen the spell ends, a target can't move or take actions until after its next turn as the impact of their frenetic speed catches up to it.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "You may maintain concentration on this spell for an additional 2 rounds for each slot level above 4th.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "6 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "acid-arrow-a5e", - "fields": { - "name": "Acid Arrow", - "desc": "A jet of acid streaks towards the target like a hissing, green arrow. Make a ranged spell attack.\n\nOn a hit the target takes 4d4 acid damage and 2d4 ongoing acid damage for 1 round. On a miss the target takes half damage.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "Increase this spell's initial and ongoing damage by 1d4 per slot level above 2nd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "4d4", - "damage_types": [ - "acid" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "acid-splash-a5e", - "fields": { - "name": "Acid Splash", - "desc": "A stinking bubble of acid is conjured out of thin air to fly at the targets, dealing 1d6 acid damage.", - "document": "a5e-ag", - "level": 0, - "school": "conjuration", - "higher_level": "This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 2, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "aid-a5e", - "fields": { - "name": "Aid", - "desc": "You draw upon divine power, imbuing the targets with fortitude. Until the spell ends, each target increases its hit point maximum and current hit points by 5.", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "The granted hit points increase by an additional 5 for each slot level above 2nd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "air-wave-a5e", - "fields": { - "name": "Air Wave", - "desc": "Your deft weapon swing sends a wave of cutting air to assault a creature within range. Make a melee weapon attack against the target. If you are wielding one weapon in each hand, your attack deals an additional 1d6 damage. Regardless of the weapon you are wielding, your attack deals slashing damage.", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "The spell's range increases by 30 feet for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "alarm-a5e", - "fields": { - "name": "Alarm", - "desc": "You set an alarm against unwanted intrusion that alerts you whenever a creature of size Tiny or larger touches or enters the warded area. When you cast the spell, choose any number of creatures. These creatures don't set off the alarm.\n\nChoose whether the alarm is silent or audible. The silent alarm is heard in your mind if you are within 1 mile of the warded area and it awakens you if you are sleeping. An audible alarm produces a loud noise of your choosing for 10 seconds within 60 feet.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "You may create an additional alarm for each slot level above 1st. The spell's range increases to 600 feet, but you must be familiar with the locations you ward, and all alarms must be set within the same physical structure. Setting off one alarm does not activate the other alarms.\n\nYou may choose one of the following effects in place of creating an additional alarm. The effects apply to all alarms created during the spell's casting.\n\nIncreased Duration. The spell's duration increases to 24 hours.\n\nImproved Audible Alarm. The audible alarm produces any sound you choose and can be heard up to 300 feet away.\n\nImproved Mental Alarm. The mental alarm alerts you regardless of your location, even if you and the alarm are on different planes of existence.", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "alter-self-a5e", - "fields": { - "name": "Alter Self", - "desc": "You use magic to mold yourself into a new form. Choose one of the options below. Until the spell ends, you can use an action to choose a different option.\n\n* **Amphibian:** Your body takes on aquatic adaptations. You can breathe underwater normally and gain a swimming speed equal to your base Speed.\n* **Altered State:** You decide what you look like. \n \nNone of your gameplay statistics change but you can alter anything about your body's appearance, including but not limited to: your heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, sound of your voice, hair style and length, skin and eye coloration, sex, and any other distinguishing features. You cannot become a creature of a different size category, and your limb structure remains the same; for example if you're bipedal, you can't use this spell to become a quadruped. Until the spell ends, you can use an action to change your appearance.\n* **Red in Tooth and Claw:** You grow magical natural weapons of your choice with a +1 bonus to attack and damage. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage of a type determined by the natural weapon you chose; for example a tentacle deals bludgeoning, a horn deals piercing, and claws deal slashing.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "When using a spell slot of 5th-level, add the following to the list of forms you can adopt.\n\n* **Greater Natural Weapons:** The damage dealt by your natural weapon increases to 2d6, and you gain a +2 bonus to attack and damage rolls with your natural weapons.\n* **Mask of the Grave:** You adopt the appearance of a skeleton or zombie (your choice). Your type changes to undead, and mindless undead creatures ignore your presence, treating you as one of their own. You don't need to breathe and you become immune to poison.\n* **Wings:** A pair of wings sprouts from your back. The wings can appear bird-like, leathery like a bat or dragon's wings, or like the wings of an insect. You gain a fly speed equal to your base Speed.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "altered-strike-a5e", - "fields": { - "name": "Altered Strike", - "desc": "You briefly transform your weapon or fist into another material and strike with it, making a melee weapon attack against a target within your reach.\n\nYou use your spellcasting ability for your attack and damage rolls, and your melee weapon attack counts as if it were made with a different material for the purpose of overcoming resistance and immunity to nonmagical attacks and damage: either bone, bronze, cold iron, steel, stone, or wood.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "When you reach 5th level, you can choose silver or mithral as the material. When you reach 11th level, if you have the Extra Attack feature you make two melee weapon attacks as part of the casting of this spell instead of one. In addition, you can choose adamantine as the material.\n\nWhen you reach 17th level, your attacks with this spell deal an extra 1d6 damage.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "angel-paradox-a5e", - "fields": { - "name": "Angel Paradox", - "desc": "The target is bombarded with a fraction of energy stolen from some slumbering, deific source, immediately taking 40 radiant damage. This spell ignores resistances but does not ignore immunities. A creature killed by this spell does not decay and cannot become undead for the spell's duration. Days spent under the influence of this spell don't count against the time limit of spells such as _raise dead_. This effect ends early if the corpse takes necrotic damage.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "The damage and duration increase to 45 radiant damage and 1 year when using an 8th-level spell slot, or 50 damage and until dispelled when using a 9th-level spell slot.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "40", - "damage_types": [ - "radiant" - ], - "duration": "7 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "animal-friendship-a5e", - "fields": { - "name": "Animal Friendship", - "desc": "You allow your inner beauty to shine through in song and dance whether to call a bird from its tree or a badger from its sett. Until the spell ends or one of your companions harms it (whichever is sooner), the target is charmed by you.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "Choose one additional target for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "animal-messenger-a5e", - "fields": { - "name": "Animal Messenger", - "desc": "You call a Tiny beast to you, whisper a message to it, and then give it directions to the message's recipient. It is now your messenger.\n\nSpecify a location you have previously visited and a recipient who matches a general description, such as \"a person wearing a pointed red hat in Barter Town\" or \"a half-orc in a wheelchair at the Striped Lion Inn.\" Speak a message of up to 25 words. For the duration of the spell, the messenger travels towards the location at a rate of 50 miles per day for a messenger with a flying speed, or else 25 miles without.\n\nWhen the messenger arrives, it delivers your message to the first creature matching your description, replicating the sound of your voice exactly. If the messenger can't find the recipient or reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.", - "document": "a5e-ag", - "level": 2, - "school": "enchantment", - "higher_level": "The duration of the spell increases by 48 hours for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "animal-shapes-a5e", - "fields": { - "name": "Animal Shapes", - "desc": "You transform the bodies of creatures into beasts without altering their minds. Each target transforms into a Large or smaller beast with a Challenge Rating of 4 or lower. Each target may have the same or a different form than other targets.\n\nOn subsequent turns, you can use your action to transform targets into new forms, gaining new hit points when they do so.\n\nUntil the spell ends or it is dropped to 0 hit points, the target's game statistics (including its hit points) are replaced by the statistics of the chosen beast excepting its Intelligence, Wisdom, and Charisma scores. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effect on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.", - "document": "a5e-ag", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "animate-dead-a5e", - "fields": { - "name": "Animate Dead", - "desc": "You animate a mortal's remains to become your undead servant.\n\nIf the spell is cast upon bones you create a skeleton, and if cast upon a corpse you choose to create a skeleton or a zombie. The Narrator has the undead's statistics.\n\nWhile it is within 60 feet you can use a bonus action to mentally command the undead. When you command multiple undead using this spell, you must give them all the same command. You may decide the action the undead takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, the undead only defends itself. The undead continues to follow a command until its task is complete.\n\nThe undead is under your control for 24 hours, after which it stops obeying any commands. You must cast this spell on the undead before the spell ends to maintain control of it for another 24 hours.\n\nCasting the spell in this way reasserts control over up to 4 of your previously-animated undead instead of animating a new one.", - "document": "a5e-ag", - "level": 3, - "school": "necromancy", - "higher_level": "You create or reassert control over 2 additional undead for each slot level above 3rd. When commanding more than 3 undead they make group attack rolls (see page 454 in Chapter 8: Combat).", - "target_type": "area", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "animate-objects-a5e", - "fields": { - "name": "Animate Objects", - "desc": "Objects come to life at your command just like you dreamt of when you were an apprentice! Choose up to 6 unattended nonmagical Small or Tiny objects. You may also choose larger objects; treat Medium objects as 2 objects, Large objects as 3 objects, and Huge objects as 6 objects. You can't animate objects larger than Huge.\n\nUntil the spell ends or a target is reduced to 0 hit points, you animate the targets and turn them into constructs under your control.\n\nEach construct has Constitution 10, Intelligence 3, Wisdom 3, and Charisma 1, as well as a flying speed of 30 feet and the ability to hover (if securely fastened to something larger, it has a Speed of 0), and blindsight to a range of 30 feet (blind beyond that distance). Otherwise a construct's statistics are determined by its size.\n\nIf you animate 4 or more Small or Tiny objects, instead of controlling each construct individually they function as a construct swarm. Add together all swarm's total hit points. Attacks against a construct swarm deal half damage. The construct swarm reverts to individual constructs when it is reduced to 15 hit points or less.\n\nYou can use a bonus action to mentally command any construct made with this spell while it is within 500 feet. When you command multiple constructs using this spell, you may simultaneously give them all the same command. You decide the action the construct takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. Without commands the construct only defends itself. The construct continues to follow a command until its task is complete.\n\nWhen you command a construct to attack, it makes a single slam melee attack against a creature within 5 feet of it. On a hit the construct deals bludgeoning, piercing, or slashing damage appropriate to its shape.\n\nWhen the construct drops to 0 hit points, any excess damage carries over to its normal object form.", - "document": "a5e-ag", - "level": 5, - "school": "transmutation", - "higher_level": "You can animate 2 additional Small or Tiny objects for each slot level above 5th.", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "antilife-shell-a5e", - "fields": { - "name": "Antilife Shell", - "desc": "A barrier that glimmers with an oily rainbow hue pops into existence around you. The barrier moves with you and prevents creatures other than undead and constructs from passing or reaching through its surface.\n\nThe barrier does not prevent spells or attacks with ranged or reach weapons from passing through the barrier.\n\nThe spell ends if you move so that a Tiny or larger living creature is forced to pass through the barrier.", - "document": "a5e-ag", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "antimagic-field-a5e", - "fields": { - "name": "Antimagic Field", - "desc": "An invisible sphere of antimagic forms around you, moving with you and suppressing all magical effects within it. At the Narrator's discretion, sufficiently powerful artifacts and deities may be able to ignore the sphere's effects.\n\n* **Area Suppression:** When a magical effect protrudes into the sphere, that part of the effect's area is suppressed. For example, the ice created by a wall of ice is suppressed within the sphere, creating a gap in the wall if the overlap is large enough.\n* **Creatures and Objects:** While within the sphere, any creatures or objects created or conjured by magic temporarily wink out of existence, reappearing immediately once the space they occupied is no longer within the sphere.\n* **Dispel Magic:** The sphere is immune to dispel magic and similar magical effects, including other antimagic field spells.\n* **Magic Items:** While within the sphere, magic items function as if they were mundane objects. Magic weapons and ammunition cease to be suppressed when they fully leave the sphere.\n* **Magical Travel:** Whether the sphere includes a destination or departure point, any planar travel or teleportation within it automatically fails. Until the spell ends or the sphere moves, magical portals and extradimensional spaces (such as that created by a bag of holding) within the sphere are closed.\n* **Spells:** Any spell cast within the sphere or at a target within the sphere is suppressed and the spell slot is consumed. Active spells and magical effects are also suppressed within the sphere. If a spell or magical effect has a duration, time spent suppressed counts against it.", - "document": "a5e-ag", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "antipathysympathy-a5e", - "fields": { - "name": "Antipathy/Sympathy", - "desc": "You mystically impart great love or hatred for a place, thing, or creature. Designate a kind of intelligent creature, such as dragons, goblins, or vampires.\n\nThe target now causes either antipathy or sympathy for the specified creatures for the duration of the spell. When a designated creature successfully saves against the effects of this spell, it immediately understands it was under a magical effect and is immune to this spell's effects for 1 minute.\n\n* **Antipathy:** When a designated creature can see the target or comes within 60 feet of it, the creature makes a Wisdom saving throw or becomes frightened. While frightened the creature must use its movement to move away from the target to the nearest safe spot from which it can no longer see the target. If the creature moves more than 60 feet from the target and can no longer see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.\n* **Sympathy:** When a designated creature can see the target or comes within 60 feet of it, the creature must succeed on a Wisdom saving throw. On a failure, the creature uses its movement on each of its turns to enter the area or move within reach of the target, and is unwilling to move away from the target. \nIf the target damages or otherwise harms an affected creature, the affected creature can make a Wisdom saving throw to end the effect. An affected creature can also make a saving throw once every 24 hours while within the area of the spell, and whenever it ends its turn more than 60 feet from the target and is unable to see the target.", - "document": "a5e-ag", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "arcane-eye-a5e", - "fields": { - "name": "Arcane Eye", - "desc": "Until the spell ends, you create an invisible, floating magical eye that hovers in the air and sends you visual information. The eye has normal vision, darkvision to a range of 30 feet, and it can look in every direction.\n\nYou can use an action to move the eye up to 30 feet in any direction as long as it remains on the same plane of existence. The eye can pass through openings as small as 1 inch across but otherwise its movement is blocked by solid barriers.", - "document": "a5e-ag", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "arcane-hand-a5e", - "fields": { - "name": "Arcane Hand", - "desc": "You create a Large hand of shimmering, translucent force that mimics the appearance and movements of your own hand.\n\nThe hand doesn't fill its space and has AC 20, Strength 26 (+8), Dexterity 10 (+0), maneuver DC 18, and hit points equal to your hit point maximum. The spell ends early if it is dropped to 0 hit points.\n\nWhen you cast the spell and as a bonus action on subsequent turns, you can move the hand up to 60 feet and then choose one of the following.\n\n* **_Shove:_** The hand makes a Strength saving throw against the maneuver DC of a creature within 5 feet of it, with advantage if the creature is Medium or smaller. On a success, the hand pushes the creature in a direction of your choosing for up to 5 feet plus a number of feet equal to 5 times your spellcasting ability modifier, and remains within 5 feet of it.\n* **_Smash:_** Make a melee spell attack against a creature or object within 5 feet of the hand. On a hit, the hand deals 4d8 force damage.\n* **_Snatch:_** The hand makes a Strength saving throw against the maneuver DC of a creature within 5 feet of it, with advantage if the creature is Medium or smaller. On a success, the creature is grappled by the hand. You can use a bonus action to crush a creature grappled by the hand, dealing bludgeoning damage equal to 2d6 + your spellcasting ability modifier.\n* **_Stop:_** Until the hand is given another command it moves to stay between you and a creature of your choice, providing you with three-quarters cover against the chosen creature. A creature with a Strength score of 26 or less cannot move through the hand's space, and stronger creatures treat the hand as difficult terrain.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "The damage from Smash increases by 2d8 and the damage from Snatch increases by 2d6 for each slot level above 5th.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "arcane-lock-a5e", - "fields": { - "name": "Arcane Lock", - "desc": "The target is sealed to all creatures except those you designate (who can open the object normally). Alternatively, you may choose a password that suppresses this spell for 1 minute when it is spoken within 5 feet of the target. The spell can also be suppressed for 10 minutes by casting _knock_ on the target. Otherwise, the target cannot be opened normally and it is more difficult to break or force open, increasing the DC to break it or pick any locks on it by 10 (minimum DC 20).", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "Increase the DC to force open the object or pick any locks on the object by an additional 2 for each slot level above 2nd. Only a knock spell cast at a slot level equal to or greater than your arcane lock suppresses it.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "arcane-muscles-a5e", - "fields": { - "name": "Arcane Muscles", - "desc": "Your muscles swell with arcane power. They're too clumsy to effectively wield weapons but certainly strong enough for a powerful punch. Until the spell ends, you can choose to use your spellcasting ability score for Athletics checks, and for the attack and damage rolls of unarmed strikes. In addition, your unarmed strikes deal 1d6 bludgeoning damage and count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "arcane-riposte-a5e", - "fields": { - "name": "Arcane Riposte", - "desc": "You respond to an incoming attack with a magically-infused attack of your own. Make a melee spell attack against the creature that attacked you. If you hit, the creature takes 3d6 acid, cold, fire, lightning, poison, or thunder damage.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The spell deals an extra 1d6 damage for each slot level above 1st. When using a 4th-level spell slot, you may choose to deal psychic, radiant, or necrotic damage. When using a 6th-level spell slot, you may choose to deal force damage.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "3d6", - "damage_types": [ - "acid", - "cold", - "fire", - "lightning", - "poison", - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "arcane-sword-a5e", - "fields": { - "name": "Arcane Sword", - "desc": "You summon an insubstantial yet deadly sword to do your bidding.\n\nMake a melee spell attack against a target of your choice within 5 feet of the sword, dealing 3d10 force damage on a hit.\n\nUntil the spell ends, you can use a bonus action on subsequent turns to move the sword up to 20 feet to a space you can see and make an identical melee spell attack against a target.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "arcanists-magic-aura-a5e", - "fields": { - "name": "Arcanist's Magic Aura", - "desc": "You craft an illusion to deceive others about the target's true magical properties.\n\nChoose one or both of the following effects. When cast upon the same target with the same effect for 30 successive days, it lasts until it is dispelled.\n\n* **False Aura:** A magical target appears nonmagical, a nonmagical target appears magical, or you change a target's magical aura so that it appears to belong to a school of magic of your choosing. Additionally, you can choose to make the false magic apparent to any creature that handles the item.\n* **Masking Effect:** Choose a creature type. Spells and magical effects that detect creature types (such as a herald's Divine Sense or the trigger of a symbol spell) treat the target as if it were a creature of that type. Additionally, you can choose to mask the target's alignment trait (if it has one).", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "When cast using a 6th-level spell slot or higher the effects last until dispelled with a bonus action.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "aspect-of-the-moon-a5e", - "fields": { - "name": "Aspect of the Moon", - "desc": "You throw your head back and howl like a beast, embracing your most basic impulses. Until the spell ends your hair grows, your features become more feral, and sharp claws grow on your fingers. You gain a +1 bonus to AC, your Speed increases by 10 feet, you have advantage on Perception checks, and your unarmed strikes deal 1d8 slashing damage. You may use your Strength or Dexterity for attack and damage rolls with unarmed strikes, and treat your unarmed strikes as weapons with the finesse property. You gain an additional action on your turn, which may only be used to make a melee attack with your unarmed strike. If you are hit by a silvered weapon, you have disadvantage on your Constitution saving throw to maintain concentration.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "astral-projection-a5e", - "fields": { - "name": "Astral Projection", - "desc": "Until the spell ends, the targets leave their material bodies (unconscious and in a state of suspended animation, not aging or requiring food or air) and project astral forms that resemble their mortal forms in nearly all ways, keeping their game statistics and possessions.\n\nWhile in this astral form you trail a tether, a silvery-white cord that sprouts from between your shoulder blades and fades into immateriality a foot behind you. As long as the tether remains intact you can find your way back to your material body. When it is cut—which requires an effect specifically stating that it cuts your tether —your soul and body are separated and you immediately die. Damage against and other effects on your astral form have no effect on your material body either during this spell or after its duration ends. Your astral form travels freely through the Astral Plane and can pass through interplanar portals on the Astral Plane leading to any other plane. When you enter a new plane or return to the plane you were on when casting this spell, your material body and possessions are transported along the tether, allowing you to return fully intact with all your gear as you enter the new plane.\n\nThe spell ends for all targets when you use an action to dismiss it, for an individual target when a successful dispel magic is cast upon its astral form or material body, or when either its material body or its astral form drops to 0 hit points. When the spell ends for a target and the tether is intact, the tether pulls the target's astral form back to its material body, ending the suspended animation.\n\nIf the spell ends for you prematurely, other targets remain in their astral forms and must find their own way back to their bodies (usually by dropping to 0 hit points).", - "document": "a5e-ag", - "level": 9, - "school": "necromancy", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "augury-a5e", - "fields": { - "name": "Augury", - "desc": "With the aid of a divining tool, you receive an omen from beyond the Material Plane about the results of a specific course of action that you intend to take within the next 30 minutes. The Narrator chooses from the following:\n\n* Fortunate omen (good results)\n* Calamity omen (bad results)\n* Ambivalence omen (both good and bad results)\n* No omen (results that aren't especially good or bad)\n\nThis omen does not account for possible circumstances that could change the outcome, such as making additional preparations.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a random reading from the above options increases. The Narrator makes the following roll in secret: second casting—25%, third casting—50%, fourth casting—75%, fifth casting—100%.", - "document": "a5e-ag", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "awaken-a5e", - "fields": { - "name": "Awaken", - "desc": "You impart sentience in the target, granting it an Intelligence of 10 and proficiency in a language you know. A plant targeted by this spell gains the ability to move, as well as senses identical to those of a human. The Narrator assigns awakened plant statistics (such as an awakened shrub or awakened tree).\n\nThe target is charmed by you for 30 days or until you or your companions harm it. Depending on how you treated the target while it was charmed, when the condition ends the awakened creature may choose to remain friendly to you.", - "document": "a5e-ag", - "level": 5, - "school": "transmutation", - "higher_level": "Target an additional creature for each slot level above 5th. Each target requires its own material component.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bane-a5e", - "fields": { - "name": "Bane", - "desc": "The senses of the targets are filled with phantom energies that make them more vulnerable and less capable. Until the spell ends, a d4 is subtracted from attack rolls and saving throws made by a target.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "You target an additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "banishment-a5e", - "fields": { - "name": "Banishment", - "desc": "You employ sheer force of will to make reality question the existence of a nearby creature, causing them to warp visibly in front of you.\n\nUntil the spell ends, a target native to your current plane is banished to a harmless demiplane and incapacitated. At the end of the duration the target reappears in the space it left (or the nearest unoccupied space). A target native to a different plane is instead banished to its native plane.\n\nAt the end of each of its turns, a banished creature can repeat the saving throw with a -1 penalty for each round it has spent banished, returning on a success. If the spell ends before its maximum duration, the target reappears in the space it left (or the nearest unoccupied space) but otherwise a target native to a different plane doesn't return.", - "document": "a5e-ag", - "level": 4, - "school": "abjuration", - "higher_level": "The duration of banishment increases by 1 round for each slot level above 4th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1d4+2 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "barkskin-a5e", - "fields": { - "name": "Barkskin", - "desc": "The target's skin takes on the texture and appearance of bark, increasing its AC to 16 (unless its AC is already higher).", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "The target's AC increases by +1 for every two slot levels above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "battlecry-ballad-a5e", - "fields": { - "name": "Battlecry Ballad", - "desc": "You fill your allies with a thirst for glory and battle using your triumphant rallying cry. Expend and roll a Bardic Inspiration die to determine the number of rounds you can maintain concentration on this spell (minimum 1 round). Each target gains a bonus to attack and damage rolls equal to the number of rounds you have maintained concentration on this spell (maximum +4).\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "You can maintain concentration on this spell for an additional round for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 100, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": " special", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "beacon-of-hope-a5e", - "fields": { - "name": "Beacon of Hope", - "desc": "The targets are filled with hope and vitality.\n\nUntil the spell ends, each target gains advantage on Wisdom saving throws and death saving throws, and when a target receives healing it regains the maximum number of hit points possible.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "bestow-curse-a5e", - "fields": { - "name": "Bestow Curse", - "desc": "Choose one of the following:\n\n* Select one ability score; the target has disadvantage on ability checks and saving throws using that ability score.\n* The target makes attack rolls against you with disadvantage.\n* Each turn, the target loses its action unless it succeeds a Wisdom saving throw at the start of its turn.\n* Your attacks and spells deal an additional 1d8 necrotic damage against the target.\n\nA curse lasts until the spell ends. At the Narrator's discretion you may create a different curse effect with this spell so long as it is weaker than the options above.\n\nA _remove curse_ spell ends the effect if the spell slot used to cast it is equal to or greater than the spell slot used to cast _bestow curse_.", - "document": "a5e-ag", - "level": 3, - "school": "necromancy", - "higher_level": "When using a 4th-level spell slot the duration increases to 10 minutes. When using a 5th-level spell slot the duration increases to 8 hours and it no longer requires your concentration. When using a 7th-level spell slot the duration is 24 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "black-tentacles-a5e", - "fields": { - "name": "Black Tentacles", - "desc": "Writhing black tentacles fill the ground within the area turning it into difficult terrain. When a creature starts its turn in the area or enters the area for the first time on its turn, it takes 3d6 bludgeoning damage and is restrained by the tentacles unless it succeeds on a Dexterity saving throw. A creature that starts its turn restrained by the tentacles takes 3d6 bludgeoning damage.\n\nA restrained creature can use its action to make an Acrobatics or Athletics check against the spell save DC, freeing itself on a success.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "The damage increases by 1d6 for every 2 slot levels above 4th.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "blade-barrier-a5e", - "fields": { - "name": "Blade Barrier", - "desc": "You create a wall of slashing blades. The wall can be up to 20 feet high and 5 feet thick, and can either be a straight wall up to 100 feet long or a ringed wall of up to 60 feet in diameter. The wall provides three-quarters cover and its area is difficult terrain.\n\nWhen a creature starts its turn within the wall's area or enters the wall's area for the first time on a turn, it makes a Dexterity saving throw, taking 6d10 slashing damage on a failed save, or half as much on a successful save.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "The damage increases by 1d10 for each slot level above 6th.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "bless-a5e", - "fields": { - "name": "Bless", - "desc": "The blessing you bestow upon the targets makes them more durable and competent. Until the spell ends, a d4 is added to attack rolls and saving throws made by a target.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "You target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "blight-a5e", - "fields": { - "name": "Blight", - "desc": "Necrotic energies drain moisture and vitality from the target, dealing 8d8 necrotic damage. Undead and constructs are immune to this spell.\n\nA plant creature or magical plant has disadvantage on its saving throw and takes the maximum damage possible from this spell. A nonmagical plant that isn't a creature receives no saving throw and instead withers until dead.", - "document": "a5e-ag", - "level": 4, - "school": "necromancy", - "higher_level": "The damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "blindnessdeafness-a5e", - "fields": { - "name": "Blindness/Deafness", - "desc": "Until the spell ends, the target is blinded or deafened (your choice). At the end of each of its turns the target can repeat its saving throw, ending the spell on a success.", - "document": "a5e-ag", - "level": 2, - "school": "necromancy", - "higher_level": "You target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "blink-a5e", - "fields": { - "name": "Blink", - "desc": "Until the spell ends, roll 1d20 at the end of each of your turns. When you roll an 11 or higher you disappear and reappear in the Ethereal Plane (if you are already on the Ethereal Plane, the spell fails and the spell slot is wasted). At the start of your next turn you return to an unoccupied space that you can see within 10 feet of where you disappeared from. If no unoccupied space is available within range, you reappear in the nearest unoccupied space (determined randomly when there are multiple nearest choices). As an action, you can dismiss this spell.\n\nWhile on the Ethereal Plane, you can see and hear into the plane you were originally on out to a range of 60 feet, but everything is obscured by mist and in shades of gray. You can only target and be targeted by other creatures on the Ethereal Plane.\n\nCreatures on your original plane cannot perceive or interact with you, unless they are able to interact with the Ethereal Plane.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "blood-writ-bargain-a5e", - "fields": { - "name": "Blood-Writ Bargain", - "desc": "This spell creates a pact which is enforced by celestial or fiendish forces. You and another willing creature commit to a mutual agreement, clearly declaring your parts of the agreement during the casting.\n\nUntil the spell ends, if for any reason either participant breaks the agreement or fails to uphold their part of the bargain, beings of celestial or fiendish origin appear within unoccupied spaces as close as possible to the participant who broke the bargain. The beings are hostile to the deal-breaking participant and attempt to kill them, as well as any creatures that defend them. When the dealbreaking participant is killed, or the spell's duration ends, the beings disappear in a flash of smoke.\n\nThe spellcaster chooses whether the beings are celestial or fiendish while casting the spell, and the Narrator chooses the exact creatures summoned (such as a couatl or 5 imps). There may be any number of beings, but their combined Challenge Rating can't exceed 5.", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "The combined Challenge Rating of summoned beings increases by 2 and the duration increases by 13 days for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "13 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "blur-a5e", - "fields": { - "name": "Blur", - "desc": "Until the spell ends, you are shrouded in distortion and your image is blurred. Creatures make attack rolls against you with disadvantage unless they have senses that allow them to perceive without sight or to see through illusions (like blindsight or truesight).", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "You may target an additional willing creature you can see within range for each slot level above 2nd. Whenever an affected creature other than you is hit by an attack, the spell ends for that creature. When using a higher level spell slot, increase the spell's range to 30 feet.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "burning-hands-a5e", - "fields": { - "name": "Burning Hands", - "desc": "A thin sheet of flames shoots forth from your outstretched hands. Each creature in the area takes 3d6 fire damage. The fire ignites any flammable unattended objects in the area.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The damage increases by 1d6 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "calculate-a5e", - "fields": { - "name": "Calculate", - "desc": "You instantly know the answer to any mathematical equation that you speak aloud. The equation must be a problem that a creature with Intelligence 20 could solve using nonmagical tools with 1 hour of calculation. Additionally, you gain an expertise die on Engineering checks made during the duration of the spell.\n\nNote: Using the _calculate_ cantrip allows a player to make use of a calculator at the table in order to rapidly answer mathematical equations.", - "document": "a5e-ag", - "level": 0, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "calculated-retribution-a5e", - "fields": { - "name": "Calculated Retribution", - "desc": "You surround yourself with a dampening magical field and collect the energy of a foe's attack to use against them. When you take damage from a weapon attack, you can end the spell to halve the attack's damage against you, gaining a retribution charge that lasts until the end of your next turn. By expending the retribution charge when you hit with a melee attack, you deal an additional 2d10 force damage.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "You may use your reaction to halve the damage of an attack against you up to a number of times equal to the level of the spell slot used, gaining a retribution charge each time that lasts until 1 round after the spell ends.\n\nYou must still make Constitution saving throws to maintain your concentration on this spell, but you do so with advantage, or if you already have advantage, you automatically succeed.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "call-lightning-a5e", - "fields": { - "name": "Call Lightning", - "desc": "A 60-foot radius storm cloud that is 10 feet high appears in a space 100 feet above you. If there is not a point in the air above you that the storm cloud could appear, the spell fails (such as if you are in a small cavern or indoors).\n\nOn the round you cast it, and as an action on subsequent turns until the spell ends, you can call down a bolt of lightning to a point directly beneath the cloud. Each creature within 5 feet of the point makes a Dexterity saving throw, taking 3d10 lightning damage on a failed save or half as much on a successful one.\n\nIf you are outdoors in a storm when you cast this spell, you take control of the storm instead of creating a new cloud and the spell's damage is increased by 1d10.", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "The damage increases by 1d10 for each slot level above 3rd.", - "target_type": "point", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "calm-emotions-a5e", - "fields": { - "name": "Calm Emotions", - "desc": "Strong and harmful emotions are suppressed within the area. You can choose which of the following two effects to apply to each target of this spell.\n\n* Suppress the charmed or frightened conditions, though they resume when the spell ends (time spent suppressed counts against a condition's duration).\n* Suppress hostile feelings towards creatures of your choice until the spell ends. This suppression ends if a target is attacked or sees its allies being attacked. Targets act normally when the spell ends.", - "document": "a5e-ag", - "level": 2, - "school": "enchantment", - "higher_level": "The spell area increases by 10 feet for each slot level above 2nd.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "ceremony-a5e", - "fields": { - "name": "Ceremony", - "desc": "You perform a religious ceremony during the casting time of this spell. When you cast the spell, you choose one of the following effects, any targets of which must be within range during the entire casting.\n\n* **Funeral:** You bless one or more corpses, acknowledging their transition away from this world. For the next week, they cannot become undead by any means short of a wish spell. This benefit lasts indefinitely regarding undead of CR 1/4 or less. A corpse can only benefit from this effect once.\n* **Guide the Passing:** You bless one or more creatures within range for their passage into the next life. For the next 7 days, their souls cannot be trapped or captured by any means short of a wish spell. Once a creature benefits from this effect, it can't do so again until it has been restored to life.\n* **Offering:** The gifts of the faithful are offered to the benefit of the gods and the community. Choose one skill or tool proficiency and target a number of creatures equal to your proficiency bonus that are within range. When a target makes an ability check using the skill or tool within the next week, it can choose to use this benefit to gain an expertise die on the check. A creature can be targeted by this effect no more than once per week.\n* **Purification:** A creature you touch is washed with your spiritual energy. Choose one disease or possession effect on the target. If the save DC for that effect is equal to or lower than your spell save DC, the effect ends.\n* **Rite of Passage:** You shepherd one or more creatures into the next phase of life, such as in a child dedication, coming of age, marriage, or conversion ceremony. These creatures gain inspiration. A creature can benefit from this effect no more than once per year.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "chain-lightning-a5e", - "fields": { - "name": "Chain Lightning", - "desc": "You fire a bolt of electricity at the primary target that deals 10d8 lightning damage. Electricity arcs to up to 3 additional targets you choose that are within 30 feet of the primary target.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "An extra arc leaps from the primary target to an additional target for each slot level above 6th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "charm-monster-a5e", - "fields": { - "name": "Charm Monster", - "desc": "You only require line of sight to the target (not line of effect) and it has advantage on its saving throw to resist the spell if you or your companions are fighting it. Until the spell ends, the target is charmed by you and friendly towards you.\n\nThe spell ends if you or your companions do anything harmful towards the target. The target knows it was charmed by you when the spell ends.", - "document": "a5e-ag", - "level": 4, - "school": "enchantment", - "higher_level": "For each slot level above 4th, you affect one additional target that is within 30 feet of other targets.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "charm-person-a5e", - "fields": { - "name": "Charm Person", - "desc": "You only require line of sight to the target (not line of effect) and it has advantage on its saving throw to resist the spell if you or your companions are fighting it. Until the spell ends, the target is charmed by you and friendly towards you.\n\nThe spell ends if you or your companions do anything harmful towards the target. The target knows it was charmed by you when the spell ends.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "For each slot level above 1st, you affect one additional target that is within 30 feet of other targets.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "chill-touch-a5e", - "fields": { - "name": "Chill Touch", - "desc": "You reach out with a spectral hand that carries the chill of death. Make a ranged spell attack. On a hit, the target takes 1d8 necrotic damage, and it cannot regain hit points until the start of your next turn. The hand remains visibly clutching onto the target for the duration. If the target you hit is undead, it makes attack rolls against you with disadvantage until the end of your next turn.", - "document": "a5e-ag", - "level": 0, - "school": "necromancy", - "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "circle-of-death-a5e", - "fields": { - "name": "Circle of Death", - "desc": "A sphere of negative energy sucks life from the area.\n\nCreatures in the area take 9d6 necrotic damage.", - "document": "a5e-ag", - "level": 6, - "school": "necromancy", - "higher_level": "The damage increases by 2d6 for each slot level above 6th.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "circular-breathing-a5e", - "fields": { - "name": "Circular Breathing", - "desc": "You begin carefully regulating your breath so that you can continue playing longer or keep breathing longer in adverse conditions.\n\nUntil the spell ends, you can breathe underwater, and you can utilize bardic performances that would normally require breathable air. In addition, you have advantage on saving throws against gases and environments with adverse breathing conditions.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "The duration of this spell increases when you reach 5th level (10 minutes), 11th level (30 minutes), and 17th level (1 hour).", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "clairvoyance-a5e", - "fields": { - "name": "Clairvoyance", - "desc": "An invisible sensor is created within the spell's range. The sensor remains there for the duration, and it cannot be targeted or attacked.\n\nChoose seeing or hearing when you cast the spell.\n\nYou may use that sense through the sensor as if you were there. As an action, you may switch which sense you are using through the sensor.\n\nA creature able to see invisible things (from the see invisibility spell or truesight, for instance) sees a 4-inch diameter glowing, ethereal orb.", - "document": "a5e-ag", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "1 mile", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "clone-a5e", - "fields": { - "name": "Clone", - "desc": "This spell grows a duplicate of the target that remains inert indefinitely as long as its vessel is sealed.\n\nThe clone grows inside the sealed vessel and matures over the course of 120 days. You can choose to have the clone be a younger version of the target.\n\nOnce the clone has matured, when the target dies its soul is transferred to the clone so long as it is free and willing. The clone is identical to the target (except perhaps in age) and has the same personality, memories, and abilities, but it is without the target's equipment. The target's original body cannot be brought back to life by magic since its soul now resides within the cloned body.", - "document": "a5e-ag", - "level": 8, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "cloudkill-a5e", - "fields": { - "name": "Cloudkill", - "desc": "You create a sphere of poisonous, sickly green fog, which can spread around corners but not change shape. The area is heavily obscured. A strong wind disperses the fog, ending the spell early.\n\nUntil the spell ends, when a creature enters the area for the first time on its turn or starts its turn there, it takes 5d8 poison damage.\n\nThe fog moves away from you 10 feet at the start of each of your turns, flowing along the ground. The fog is thicker than air, sinks to the lowest level in the land, and can even flow down openings and pits.", - "document": "a5e-ag", - "level": 5, - "school": "conjuration", - "higher_level": "The damage increases by 1d8 for each slot level above 5th.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "poison" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "cobras-spit-a5e", - "fields": { - "name": "Cobra's Spit", - "desc": "Until the spell ends, you can use an action to spit venom, making a ranged spell attack at a creature or object within 30 feet. On a hit, the venom deals 4d8 poison damage, and if the target is a creature it is poisoned until the end of its next turn.", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "The damage increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "color-spray-a5e", - "fields": { - "name": "Color Spray", - "desc": "A blast of dazzling multicolored light flashes from your hand to blind your targets until the start of your next turn. Starting with the target with the lowest hit points (ignoring unconscious creatures), targets within the area are blinded, in ascending order according to their hit points.\n\nWhen a target is blinded, subtract its hit points from the total before moving on to the next target.\n\nA target's hit points must be equal to or less than the total remaining for the spell to have any affect.", - "document": "a5e-ag", - "level": 1, - "school": "illusion", - "higher_level": "Add an additional 2d10 hit points for each slot level above 1st.", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "command-a5e", - "fields": { - "name": "Command", - "desc": "You only require line of sight to the target (not line of effect). On its next turn the target follows a one-word command of your choosing. The spell fails if the target is undead, if it does not understand your command, or if the command is immediately harmful to it.\n\nBelow are example commands, but at the Narrator's discretion you may give any one-word command.\n\n* **Approach/Come/Here:** The target uses its action to take the Dash action and move toward you by the shortest route, ending its turn if it reaches within 5 feet of you.\n* **Bow/Grovel/Kneel:** The target falls prone and ends its turn.\n* **Drop:** The target drops anything it is holding and ends its turn.\n* **Flee/Run:** The target uses its action to Dash and moves away from you as far as it can.\n* **Halt:** The target remains where it is and takes no actions. A flying creature that cannot hover moves the minimum distance needed to remain aloft.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "For each slot level above 1st, you affect one additional target that is within 30 feet of other targets.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "commune-a5e", - "fields": { - "name": "Commune", - "desc": "You contact your deity, a divine proxy, or a personified source of divine power and ask up to 3 questions that could be answered with a yes or a no. You must complete your questions before the spell ends. You receive a correct answer for each question, unless the being does not know. When the being does not know, you receive \"unclear\" as an answer. The being does not try to deceive, and the Narrator may offer a short phrase as an answer if necessary.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a no answer increases.\n\nThe Narrator makes the following roll in secret: second casting —25%, third casting —50%, fourth casting—75%, fifth casting—100%.", - "document": "a5e-ag", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "commune-with-nature-a5e", - "fields": { - "name": "Commune with Nature", - "desc": "Until the spell ends, your spirit bonds with that of nature and you learn about the surrounding land.\n\nWhen cast outdoors the spell reaches 3 miles around you, and in natural underground settings it reaches only 300 feet. The spell fails if you are in a heavily constructed area, such as a dungeon or town.\n\nYou learn up to 3 facts of your choice about the surrounding area:\n\n* Terrain and bodies of water\n* Common flora, fauna, minerals, and peoples\n* Any unnatural creatures in the area\n* Weaknesses in planar boundaries\n* Built structures", - "document": "a5e-ag", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "comprehend-languages-a5e", - "fields": { - "name": "Comprehend Languages", - "desc": "You gain a +10 bonus on Insight checks made to understand the meaning of any spoken language that you hear, or any written language that you can touch. Typically interpreting an unknown language is a DC 20 check, but the Narrator may use DC 15 for a language closely related to one you know, DC 25 for a language that is particularly unfamiliar or ancient, or DC 30 for a lost or dead language. This spell doesn't uncover secret messages or decode cyphers, and it does not assist in uncovering lies.", - "document": "a5e-ag", - "level": 1, - "school": "divination", - "higher_level": "The bonus increases by +5 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "cone-of-cold-a5e", - "fields": { - "name": "Cone of Cold", - "desc": "Frigid cold blasts from your hands. Each creature in the area takes 8d8 cold damage. Creatures killed by this spell become frozen statues until they thaw.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above 5th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "8d8", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "confusion-a5e", - "fields": { - "name": "Confusion", - "desc": "You assault the minds of your targets, filling them with delusions and making them confused until the spell ends. On a successful saving throw, a target is rattled for 1 round. At the end of each of its turns, a confused target makes a Wisdom saving throw to end the spell's effects on it.", - "document": "a5e-ag", - "level": 4, - "school": "enchantment", - "higher_level": "The spell's area increases by 5 feet for each slot level above 4th.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-animals-a5e", - "fields": { - "name": "Conjure Animals", - "desc": "You summon forth the spirit of a beast that takes the physical form of your choosing in unoccupied spaces you can see.\n\nChoose one of the following:\n\n* One beast of CR 2 or less\n* Two beasts of CR 1 or less\n* Three beasts of CR 1/2 or less\n\n Beasts summoned this way are allied to you and your companions. While it is within 60 feet you can use a bonus action to mentally command a summoned beast. When you command multiple beasts using this spell, you must give them all the same command. You may decide the action the beast takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, a conjured beast only defends itself.", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "The challenge rating of beasts you can summon increases by one step for each slot level above 3rd. For example, when using a 4th-level spell slot you can summon one beast of CR 3 or less, two beasts of CR 2 or less, or three beasts of CR 1 or less.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-celestial-a5e", - "fields": { - "name": "Conjure Celestial", - "desc": "You summon a creature from the realms celestial.\n\nThis creature uses the statistics of a celestial creature (detailed below) with certain traits determined by your choice of its type: an angel of battle, angel of protection, or angel of vengeance.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the celestial creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears 1 hour after you summoned it.", - "document": "a5e-ag", - "level": 7, - "school": "conjuration", - "higher_level": "For each slot level above 7th the celestial creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-elemental-a5e", - "fields": { - "name": "Conjure Elemental", - "desc": "You summon a creature from the Elemental Planes. This creature uses the statistics of a conjured elemental creature (detailed below) with certain traits determined by your choice of its type: air, earth, fire, or water.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the elemental creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears 1 hour after you summoned it.", - "document": "a5e-ag", - "level": 5, - "school": "conjuration", - "higher_level": "For each slot level above 5th the elemental creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-fey-a5e", - "fields": { - "name": "Conjure Fey", - "desc": "You summon a creature from The Dreaming.\n\nThis creature uses the statistics of a fey creature (detailed below) with certain traits determined by your choice of its type: hag, hound, or redcap.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the summoned creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "For each slot level above 6th the fey creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-minor-elementals-a5e", - "fields": { - "name": "Conjure Minor Elementals", - "desc": "You summon up to 3 creatures from the Elemental Planes. These creatures use the statistics of a minor elemental (detailed below) with certain traits determined by your choice of its type: air, earth, fire, or water. If you summon only 2 creatures with this spell, increase its effective slot level by 1 when determining the minor elemental's statistics, and if you summon a single creature with this spell its effective slot level is increased by 2 instead.\n\nThe summoned creatures are friendly to you and your companions and take their turns immediately after yours. They obey your verbal commands. When you command multiple minor elementals using this spell, you must give them all the same command.\n\nWithout such commands, a minor elemental only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of any summoned creatures, which become hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "Use the higher spell slot level wherever the spell's level appears in the stat block.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-woodland-beings-a5e", - "fields": { - "name": "Conjure Woodland Beings", - "desc": "You summon up to 3 creatures from The Dreaming. These creatures use the statistics of a woodland being (detailed below) with certain traits determined by your choice of its type: blink dog, satyr, or sprite. If you summon only 2 creatures with this spell, increase its effective slot level by 1 when determining the minor woodland being's statistics, and if you summon a single creature with this spell its effective slot level is increased by 2 instead.\n\nThe summoned creatures are friendly to you and your companions and take their turns immediately after yours. They obey your verbal commands. When you command multiple woodland beings using this spell, you must give them all the same command.\n\nWithout such commands, a summoned creature only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of any summoned creatures, which become hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "Use the higher spell slot level wherever the spell's level appears in the stat block.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "contact-other-plane-a5e", - "fields": { - "name": "Contact Other Plane", - "desc": "You consult an otherworldly entity, risking your very mind in the process. Make a DC 15 Intelligence saving throw. On a failure, you take 6d6 psychic damage and suffer four levels of strife until you finish a long rest. A _greater restoration_ spell ends this effect.\n\nOn a successful save, you can ask the entity up to 5 questions before the spell ends. When possible the entity responds with one-word answers: yes, no, maybe, never, irrelevant, or unclear. At the Narrator's discretion, it may instead provide a brief but truthful answer when necessary.", - "document": "a5e-ag", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "contagion-a5e", - "fields": { - "name": "Contagion", - "desc": "Your touch inflicts a hideous disease. Make a melee spell attack. On a hit, you afflict the target with a disease chosen from the list below.\n\nThe target must make a Constitution saving throw at the end of each of its turns. After three failed saves, the disease lasts for the duration and the creature stops making saves, or after three successful saves, the creature recovers and the spell ends. A greater restoration spell or similar effect also ends the disease.\n\n* **Blinding Sickness:** The target's eyes turn milky white. It is blinded and has disadvantage on Wisdom checks and saving throws.\n* **Filth Fever:** The target is wracked by fever. It has disadvantage when using Strength for an ability check, attack roll, or saving throw.\n* **Flesh Rot:** The target's flesh rots. It has disadvantage on Charisma ability checks and becomes vulnerable to all damage.\n* **Mindfire:** The target hallucinates. During combat it is confused, and it has disadvantage when using Intelligence for an ability check or saving throw.\n* **Rattling Cough:** The target becomes discombobulated as it hacks with body-wracking coughs. It is rattled and has disadvantage when using Dexterity for an ability check, attack roll, or saving throw.\n* **Slimy Doom:** The target bleeds uncontrollably. It has disadvantage when using Constitution for an ability check or saving throw. Whenever it takes damage, the target is stunned until the end of its next turn.", - "document": "a5e-ag", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "7 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "contingency-a5e", - "fields": { - "name": "Contingency", - "desc": "As part of this spell, cast a spell of 5th-level or lower that has a casting time of 1 action, expending spell slots for both. The second spell must target you, and doesn't target others even if it normally would.\n\nDescribe the circumstances under which the second spell should be cast. It is automatically triggered the first time these circumstances are met. This spell ends when the second spell is triggered, when you cast _contingency_ again, or if the material component for it is not on your person. For example, when you cast _contingency_ with _blur_ as a second spell you might make the trigger be when you see a creature target you with a weapon attack, or you might make it be when you make a weapon attack against a creature, or you could choose for it to be when you see an ally make a weapon attack against a creature.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "continual-flame-a5e", - "fields": { - "name": "Continual Flame", - "desc": "A magical torch-like flame springs forth from the target. The flame creates no heat, doesn't consume oxygen, and can't be extinguished, but it can be covered.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "control-water-a5e", - "fields": { - "name": "Control Water", - "desc": "Water inside the area is yours to command. On the round you cast it, and as an action on subsequent turns until the spell ends, you can choose one of the following effects. When you choose a different effect, the current one ends.\n\n* **Flood:** The standing water level rises by up to 20 feet. The flood water spills onto land if the area includes a shore, but when the area is in a large body of water you instead create a 20-foottall wave. The wave travels across the area and crashes down, carrying Huge or smaller vehicles to the other side, each of which has a 25% chance of capsizing. The wave repeats on the start of your next turn while this effect continues.\n* **Part Water:** You create a 20-foot wide trench spanning the area with walls of water to either side. When this effect ends, the trench slowly refills over the course of the next round.\nRedirect Flow: Flowing water in the area moves in a direction you choose, including up. Once the water moves beyond the spell's area, it resumes its regular flow based on the terrain.\n* **Whirlpool:** If the affected body of water is at least 50 feet square and 25 feet deep, a whirlpool forms within the area in a 50-foot wide cone that is 25 feet long. Creatures and objects that are in the area and within 25 feet of the whirlpool make an Athletics check against your spell save DC or are pulled 10 feet toward it. Once within the whirlpool, checks made to swim out of it have disadvantage. When a creature first enters the whirlpool on a turn or starts its turn there, it makes a Strength saving throw or takes 2d8 bludgeoning damage and is pulled into the center of the whirlpool. On a successful save, the creature takes half damage and isn't pulled.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "10 minutes", - "shape_type": "cone", - "shape_magnitude": 50, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "control-weather-a5e", - "fields": { - "name": "Control Weather", - "desc": "You must be outdoors to cast this spell, and it ends early if you don't have a clear path to the sky.\n\nUntil the spell ends, you change the weather conditions in the area from what is normal for the current climate and season. Choose to increase or decrease each weather condition (precipitation, temperature, and wind) up or down by one stage on the following tables. Whenever you change the wind, you can also change its direction. The new conditions take effect after 1d4 × 10 minutes, at which point you can change the conditions again. The weather gradually returns to normal when the spell ends.", - "document": "a5e-ag", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "corpse-explosion-a5e", - "fields": { - "name": "Corpse Explosion", - "desc": "A corpse explodes in a poisonous cloud. Each creature in a 10-foot radius of the corpse must make a Constitution saving throw. A creature takes 3d6 thunder damage and is poisoned for 1 minute on a failed save, or it takes half as much damage and is not poisoned on a successful one. A poisoned creature can repeat the saving throw at the end of each of its turns, ending the effect for itself on a success.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "You target an additional corpse for every 2 slot levels above 1st.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "counterspell-a5e", - "fields": { - "name": "Counterspell", - "desc": "You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 2nd-level or lower, its spell fails and has no effect.\n\nIf it is casting a spell of 3rd-level or higher, make an ability check using your spellcasting ability (DC 10 + the spell's level). On a success, the creature's spell fails and has no effect, but the creature can use its reaction to reshape the fraying magic and cast another spell with the same casting time as the original spell.\n\nThis new spell must be cast at a spell slot level equal to or less than half the original spell slot.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "The interrupted spell has no effect if its level is less than the level of the spell slot used to cast this spell, or if both spells use the same level spell slot an opposed spellcasting ability check is made.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "reaction", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "create-food-and-water-a5e", - "fields": { - "name": "Create Food and Water", - "desc": "Your magic turns one serving of food or water into 3 Supply. The food is nourishing but bland, and the water is clean. After 24 hours uneaten food spoils and water affected or created by this spell goes bad.", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "You create an additional 2 Supply for each slot level above 3rd.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "create-or-destroy-water-a5e", - "fields": { - "name": "Create or Destroy Water", - "desc": "Choose one of the following.\n\n* **Create Water:** You fill the target with up to 10 gallons of nonpotable water or 1 Supply of clean water. Alternatively, the water falls as rain that extinguishes exposed flames in the area.\n* **Destroy Water:** You destroy up to 10 gallons of water in the target. Alternatively, you destroy fog in the area.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "For each slot level above 1st, you either create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet.", - "target_type": "area", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "create-undead-a5e", - "fields": { - "name": "Create Undead", - "desc": "This spell cannot be cast in sunlight. You reanimate the targets as undead and transform them into ghouls under your control.\n\nWhile it is within 120 feet you can use a bonus action to mentally command the undead. When you command multiple undead using this spell, you must give them all the same command. You may decide the action the undead takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, the undead only defends itself. The undead continues to follow a command until its task is complete.\n\nThe undead is under your control for 24 hours, after which it stops obeying any commands. You must cast this spell on the undead before the spell ends to maintain control of it for another 24 hours. Casting the spell in this way reasserts control over up to 3 undead you have animated with this spell, rather than animating a new one.", - "document": "a5e-ag", - "level": 6, - "school": "necromancy", - "higher_level": "You create or reassert control over one additional ghoul for each slot level above 6th. Alternatively, when using an 8th-level spell slot you create or reassert control over 2 ghasts or wights, or when using a 9th-level spell slot you create or reassert control over 3 ghasts or wights, or 2 mummies. When commanding more than 3 undead they make group attack rolls (see page 454 in Chapter 8: Combat).", - "target_type": "area", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "creation-a5e", - "fields": { - "name": "Creation", - "desc": "You weave raw magic into a mundane physical object no larger than a 5-foot cube. The object must be of a form and material you have seen before. Using the object as a material component for another spell causes that spell to fail.\n\nThe spell's duration is determined by the object's material. An object composed of multiple materials uses the shortest duration.", - "document": "a5e-ag", - "level": 5, - "school": "illusion", - "higher_level": "The size of the cube increases by 5 feet for each slot level above 5th.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "crushing-haymaker-a5e", - "fields": { - "name": "Crushing Haymaker", - "desc": "Your fist reverberates with destructive energy, and woe betide whatever it strikes. As part of casting the spell, make a melee spell attack against a creature or object within 5 feet. If you hit, the target of your attack takes 7d6 thunder damage, and must make a Constitution saving throw or be knocked prone and stunned until the end of its next turn. This spell's damage is doubled against objects and structures.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "The spell deals an extra 1d6 of thunder damage for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "7d6", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "cure-wounds-a5e", - "fields": { - "name": "Cure Wounds", - "desc": "The target regains hit points equal to 1d8 + your spellcasting ability modifier.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The hit points regained increase by 1d8 for each slot level above 1st.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "dancing-lights-a5e", - "fields": { - "name": "Dancing Lights", - "desc": "You create up to four hovering lights which appear as torches, lanterns, or glowing orbs that can be combined into a glowing Medium-sized humanoid form. Each sheds dim light in a 10-foot radius.\n\nYou can use a bonus action to move the lights up to 60 feet so long as each remains within 20 feet of another light created by this spell. A dancing light winks out when it exceeds the spell's range.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "darklight-a5e", - "fields": { - "name": "Darklight", - "desc": "You create an enchanted flame that surrounds your hand and produces no heat, but sheds bright light in a 20-foot radius around you and dim light for an additional 20 feet. Only you and up to 6 creatures of your choice can see this light.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "darkness-a5e", - "fields": { - "name": "Darkness", - "desc": "Magical darkness heavily obscures darkvision and blocks nonmagical light in the area. The darkness spreads around corners. If any of the area overlaps with magical light created by a spell of 2nd-level or lower, the spell that created the light is dispelled.\n\nWhen cast on an object that is in your possession or unattended, the darkness emanates from it and moves with it. Completely covering the object with something that is not transparent blocks the darkness.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "darkvision-a5e", - "fields": { - "name": "Darkvision", - "desc": "The target gains darkvision out to a range of 60 feet.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "The range of the target's darkvision increases to 120 feet. In addition, for each slot level above 3rd you may choose an additional target.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "daylight-a5e", - "fields": { - "name": "Daylight", - "desc": "Magical light fills the area. The area is brightly lit and sheds dim light for an additional 60 feet. If any of the area overlaps with magical darkness created by a spell of 3rd-level or lower, the spell that created the darkness is dispelled.\n\nWhen cast on an object that is in your possession or unattended, the light shines from it and moves with it. Completely covering the object with something that is not transparent blocks the light.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "deadweight-a5e", - "fields": { - "name": "Deadweight", - "desc": "The target object's weight is greatly increased. Any creature holding the object must succeed on a Strength saving throw or drop it. A creature which doesn't drop the object has disadvantage on attack rolls until the start of your next turn as it figures out the object's new balance.\n\nCreatures that attempt to push, drag, or lift the object must succeed on a Strength check against your spell save DC to do so.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "death-ward-a5e", - "fields": { - "name": "Death Ward", - "desc": "The first time damage would reduce the target to 0 hit points, it instead drops to 1 hit point. If the target is subjected to an effect that would kill it instantaneously without dealing damage, that effect is negated. The spell ends immediately after either of these conditions occur.", - "document": "a5e-ag", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "delayed-blast-fireball-a5e", - "fields": { - "name": "Delayed Blast Fireball", - "desc": "A glowing bead of yellow light flies from your finger and lingers at a point at the center of the area until you end the spell—either because your concentration is broken or because you choose to end it—and the bead detonates. Each creature in the area takes 12d6 fire damage. If at the end of your turn the bead has not yet detonated, the damage increases by 1d6.\n\nIf touched before the spell ends, the creature touching the bead makes a Dexterity saving throw or the bead detonates. On a successful save, the creature can use an action to throw the bead up to 40 feet, moving the area with it. If the bead strikes a creature or solid object, the bead detonates.\n\nThe fire spreads around corners, and it damages and ignites any flammable unattended objects in the area.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "The damage increases by 1d6 for each slot level above 7th.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "12d6", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "demiplane-a5e", - "fields": { - "name": "Demiplane", - "desc": "You create a shadowy door on the target. The door is large enough for Medium creatures to pass through. The door leads to a demiplane that appears as an empty, 30-foot-cube chamber made of wood or stone. When the spell ends, the door disappears from both sides, trapping any creatures or objects inside the demiplane.\n\nEach time you cast this spell, you can either create a new demiplane, conjure the door to a demiplane you have previously created, or make a door leading to a demiplane whose nature or contents you are familiar with.", - "document": "a5e-ag", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "detect-evil-and-good-a5e", - "fields": { - "name": "Detect Evil and Good", - "desc": "You attempt to sense the presence of otherworldly forces. You automatically know if there is a place or object within range that has been magically consecrated or desecrated. In addition, on the round you cast it and as an action on subsequent turns until the spell ends, you may make a Wisdom (Religion) check against the passive Deception score of any aberration, celestial, elemental, fey, fiend, or undead creature within range. On a success, you sense the creature's presence, as well as where the creature is located.\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", - "document": "a5e-ag", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "detect-magic-a5e", - "fields": { - "name": "Detect Magic", - "desc": "Until the spell ends, you automatically sense the presence of magic within range, and you can use an action to study the aura of a magic effect to learn its schools of magic (if any).\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", - "document": "a5e-ag", - "level": 1, - "school": "divination", - "higher_level": "When using a 2nd-level spell slot or higher, the spell no longer requires your concentration. When using a 3rd-level spell slot or higher, the duration increases to 1 hour. When using a 4th-level spell slot or higher, the duration increases to 8 hours.", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "detect-poison-and-disease-a5e", - "fields": { - "name": "Detect Poison and Disease", - "desc": "On the round you cast it, and as an action on subsequent turns until the spell ends, you can attempt to sense the presence of poisons, poisonous creatures, and disease by making a Perception check. On a success you identify the type of each poison or disease within range. Typically noticing and identifying a poison or disease is a DC 10 check, but the Narrator may use DC 15 for uncommon afflictions, DC 20 for rare afflictions, or DC 25 for afflictions that are truly unique. On a failed check, this casting of the spell cannot sense that specific poison or disease.\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", - "document": "a5e-ag", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "detect-thoughts-a5e", - "fields": { - "name": "Detect Thoughts", - "desc": "On the round you cast it, and as an action on subsequent turns until the spell ends, you can probe a creature's mind to read its thoughts by focusing on one creature you can see within range. The creature makes a Wisdom saving throw. Creatures with an Intelligence score of 3 or less or that don't speak any languages are unaffected. On a failed save, you learn the creature's surface thoughts —what is most on its mind in that moment. On a successful save, you fail to read the creature's thoughts and can't attempt to probe its mind for the duration. Conversation naturally shapes the course of a creature's thoughts and what it is thinking about may change based on questions verbally directed at it.\n\nOnce you have read a creature's surface thoughts, you can use an action to probe deeper into its mind. The creature makes a second Wisdom saving throw. On a successful save, you fail to read the creature's deeper thoughts and the spell ends. On a failure, you gain insight into the creature's motivations, emotional state, and something that looms large in its mind.\n\nThe creature then becomes aware you are probing its mind and can use an action to make an Intelligence check contested by your Intelligence check, ending the spell if it succeeds.\n\nAdditionally, you can use an action to scan for thinking creatures within range that you can't see.\n\nOnce you detect the presence of a thinking creature, so long as it remains within range you can attempt to read its thoughts as described above (even if you can't see it).\n\nThe spell penetrates most barriers but is blocked by 2 feet of stone, 2 inches of common metal, or a thin sheet of lead.", - "document": "a5e-ag", - "level": 2, - "school": "divination", - "higher_level": "When using a 5th-level spell slot, increase the spell's range to 1 mile. When using a 7th-level spell slot, increase the range to 10 miles.\n\nWhen using a 9th-level spell slot, increase the range to 1, 000 miles.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dimension-door-a5e", - "fields": { - "name": "Dimension Door", - "desc": "You teleport to any place you can see, visualize, or describe by stating distance and direction such as 200 feet straight downward or 400 feet upward at a 30-degree angle to the southeast.\n\nYou can bring along objects if their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn't carrying gear beyond its carrying capacity and is within 5 feet.\n\nIf you would arrive in an occupied space the spell fails, and you and any creature with you each take 4d6 force damage.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "500 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "disguise-self-a5e", - "fields": { - "name": "Disguise Self", - "desc": "Until the spell ends or you use an action to dismiss it, you and your gear are cloaked by an illusory disguise that makes you appear like another creature of your general size and body type, including but not limited to: your heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, hair style and length, skin and eye coloration, sex, and any other distinguishing features. You cannot disguise yourself as a creature of a different size category, and your limb structure remains the same; for example if you're bipedal, you can't use this spell to appear as a quadruped.\n\nThe disguise does not hold up to physical inspection. A creature that tries to grab an illusory hat, for example, finds its hand passes straight through the figment. To see through your disguise without such an inspection, a creature must use its action to make an Investigation check against your spell save DC.", - "document": "a5e-ag", - "level": 1, - "school": "illusion", - "higher_level": "When using a 3rd-level spell slot or higher, this spell functions identically to the seeming spell, except the spell's duration is 10 minutes.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "disintegrate-a5e", - "fields": { - "name": "Disintegrate", - "desc": "A pale ray emanates from your pointed finger to the target as you attempt to undo it.\n\nThe target takes 10d6 + 40 force damage. A creature reduced to 0 hit points is obliterated, leaving behind nothing but fine dust, along with anything it was wearing or carrying (except magic items). Only true resurrection or a wish spell can restore it to life.\n\nThis spell automatically disintegrates nonmagical objects and creations of magical force that are Large-sized or smaller. Larger objects and creations of magical force have a 10-foot-cube portion disintegrated instead. Magic items are unaffected.", - "document": "a5e-ag", - "level": 6, - "school": "transmutation", - "higher_level": "The damage increases by 3d6 for each slot level above 6th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "10d6+40", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "dispel-evil-and-good-a5e", - "fields": { - "name": "Dispel Evil and Good", - "desc": "A nimbus of power surrounds you, making you more able to resist and destroy beings from beyond the realms material.\n\nUntil the spell ends, celestials, elementals, fey, fiends, and undead have disadvantage on attack rolls against you.\n\nYou can end the spell early by using an action to do either of the following.\n\n* **Mental Resistance:** Choose up to 3 friendly creatures within 60 feet. Each of those creatures that is charmed, frightened, or possessed by a celestial, elemental, fey, fiend, or undead may make an immediate saving throw with advantage against the condition or possession, ending it on a success.\n* **Retribution:** Make a melee spell attack against a celestial, elemental, fey, fiend, or undead within reach. On a hit, the creature takes 7d8 radiant or necrotic damage (your choice) and is stunned until the beginning of your next turn.", - "document": "a5e-ag", - "level": 5, - "school": "abjuration", - "higher_level": "Mental Resistance targets one additional creature for each slot level above 5th, and Retribution's damage increases by 1d8 for each slot level above 5th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "7d8", - "damage_types": [ - "necrotic", - "radiant" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dispel-magic-a5e", - "fields": { - "name": "Dispel Magic", - "desc": "You scour the magic from your target. Any spell cast on the target ends if it was cast with a spell slot of 3rd-level or lower. For spells using a spell slot of 4th-level or higher, make an ability check with a DC equal to 10 + the spell's level for each one, ending the effect on a success.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "You automatically end the effects of a spell on the target if the level of the spell slot used to cast it is equal to or less than the level of the spell slot used to cast dispel magic.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "divination-a5e", - "fields": { - "name": "Divination", - "desc": "Your offering and magic put you in contact with the higher power you serve or its representatives.\n\nYou ask a single question about something that will (or could) happen in the next 7 days. The Narrator offers a truthful reply, which may be cryptic or even nonverbal as appropriate to the being in question.\n\nThe reply does not account for possible circumstances that could change the outcome, such as making additional precautions.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a random reading from the above options increases. The Narrator makes the following roll in secret: second casting—25%, third casting—50%, fourth casting—75%, fifth casting—100%.", - "document": "a5e-ag", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "divine-favor-a5e", - "fields": { - "name": "Divine Favor", - "desc": "You imbue divine power into your strikes. Until the spell ends, you deal an extra 1d4 radiant damage with your weapon attacks.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "divine-word-a5e", - "fields": { - "name": "Divine Word", - "desc": "You utter a primordial imprecation that brings woe upon your enemies. A target suffers an effect based on its current hit points.\n\n* Fewer than 50 hit points: deafened for 1 minute.\n* Fewer than 40 hit points: blinded and deafened for 10 minutes.\n* Fewer than 30 hit points: stunned, blinded, and deafened for 1 hour.\n* Fewer than 20 hit points: instantly killed outright.\n\nAdditionally, when a celestial, elemental, fey, or fiend is affected by this spell it is immediately forced back to its home plane and for 24 hours it is unable to return to your current plane by any means less powerful than a wish spell. Such a creature does not suffer this effect if it is already on its plane of origin.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "dominate-beast-a5e", - "fields": { - "name": "Dominate Beast", - "desc": "You assert control over the target beast's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", - "document": "a5e-ag", - "level": 4, - "school": "enchantment", - "higher_level": "The spell's duration is extended: 5th-level—Concentration (10 minutes), 6th-level—Concentration (1 hour), 7th-level—Concentration (8 hours).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dominate-monster-a5e", - "fields": { - "name": "Dominate Monster", - "desc": "You assert control over the target creature's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", - "document": "a5e-ag", - "level": 8, - "school": "enchantment", - "higher_level": "The duration is Concentration (8 hours)", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dominate-person-a5e", - "fields": { - "name": "Dominate Person", - "desc": "You assert control over the target humanoid's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", - "document": "a5e-ag", - "level": 5, - "school": "enchantment", - "higher_level": "The spell's duration is extended: 6th-level—Concentration (10 minutes), 7th-level —Concentration (1 hour), 8th-level —Concentration (8 hours).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dramatic-sting-a5e", - "fields": { - "name": "Dramatic Sting", - "desc": "You frighten the target by echoing its movements with ominous music and terrifying sound effects. It takes 1d4 psychic damage and becomes frightened of you until the spell ends.\n\nAt the end of each of the creature's turns, it can make another Wisdom saving throw, ending the effect on itself on a success. On a failed save, the creature takes 1d4 psychic damage.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "The damage increases by 1d4 for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "1d4", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dream-a5e", - "fields": { - "name": "Dream", - "desc": "Until the spell ends, you manipulate the dreams of another creature. You designate a messenger, which may be you or a willing creature you touch, to enter a trance. The messenger remains aware of its surroundings while in the trance but cannot take actions or move.\n\nIf the target is sleeping the messenger appears in its dreams and can converse with the target as long as it remains asleep and the spell remains active. The messenger can also manipulate the dream, creating objects, landscapes, and various other sensory sensations. The messenger can choose to end the trance at any time, ending the spell. The target remembers the dream in perfect detail when it wakes. The messenger knows if the target is awake when you cast the spell and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the spell works as described.\n\nYou can choose to let the messenger terrorize the target. The messenger can deliver a message of 10 words or fewer and the target must make a Wisdom saving throw. If you have a portion of the target's body (some hair or a drop of blood) it has disadvantage on its saving throw. On a failed save, echoes of the messenger's fearful aspect create a nightmare that lasts the duration of the target's sleep and prevents it from gaining any benefit from the rest. In addition, upon waking the target suffers a level of fatigue or strife (your choice), up to a maximum of 3 in either condition.\n\nCreatures that don't sleep or don't dream (such as elves) cannot be contacted by this spell.", - "document": "a5e-ag", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Special", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "druidcraft-a5e", - "fields": { - "name": "Druidcraft", - "desc": "You call upon your mastery of nature to produce one of the following effects within range:\n\n* You create a minor, harmless sensory effect that lasts for 1 round and predicts the next 24 hours of weather in your current location. For example, the effect might create a miniature thunderhead if storms are predicted.\n* You instantly make a plant feature develop, but never to produce Supply. For example, you can cause a flower to bloom or a seed pod to open.\n* You create an instantaneous, harmless sensory effect such as the sound of running water, birdsong, or the smell of mulch. The effect must fit in a 5-foot cube.\n* You instantly ignite or extinguish a candle, torch, smoking pipe, or small campfire.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "earth-barrier-a5e", - "fields": { - "name": "Earth Barrier", - "desc": "Choose an unoccupied space between you and the source of the attack which triggers the spell. You call forth a pillar of earth or stone (3 feet diameter, 20 feet tall, AC 10, 20 hit points) in that space that provides you with three-quarters cover (+5 to AC, Dexterity saving throws, and ability checks made to hide).", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "earthquake-a5e", - "fields": { - "name": "Earthquake", - "desc": "You create a seismic disturbance in the spell's area. Until the spell ends, an intense tremor rips through the ground and shakes anything in contact with it.\n\nThe ground in the spell's area becomes difficult terrain as it warps and cracks.\n\nWhen you cast this spell and at the end of each turn you spend concentrating on it, each creature in contact with the ground in the spell's area must make a Dexterity saving throw or be knocked prone.\n\nAdditionally, any creature that is concentrating on a spell while in contact with the ground in the spell's area must make a Constitution saving throw or lose concentration.\n\nAt the Narrator's discretion, this spell may have additional effects depending on the terrain in the area.\n\n* **Fissures:** Fissures open within the spell's area at the start of your next turn after you cast the spell. A total of 1d6 such fissures open in locations you choose. Each is 1d10 × 10 feet deep, 10 feet wide, and extends from one edge of the spell's area to the opposite side. A creature standing on a spot where a fissure opens makes a Dexterity saving throw or falls in. On a successful save, a creature moves with the fissure's edge as it opens.\n* A structure automatically collapses if a fissure opens beneath it (see below).\n* **Structures:** A structure in contact with the ground in the spell's area takes 50 bludgeoning damage when you cast the spell and again at the start of each of your turns while the spell is active. A structure reduced to 0 hit points this way collapses.\n* Creatures within half the distance of a collapsing structure's height make a Dexterity saving throw or take 5d6 bludgeoning damage, are knocked prone, and are buried in the rubble, requiring a DC 20 Acrobatics or Athletics check as an action to escape. A creature inside (instead of near) a collapsing structure has disadvantage on its saving throw. The Narrator can adjust the DC higher or lower depending on the composition of the rubble. On a successful save, the creature takes half as much damage and doesn't fall prone or become buried.", - "document": "a5e-ag", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "500 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "50", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "eldritch-cube-a5e", - "fields": { - "name": "Eldritch Cube", - "desc": "A black, nonreflective, incorporeal 10-foot cube appears in an unoccupied space that you can see. Its space can be in midair if you so desire. When a creature starts its turn in the cube or enters the cube for the first time on its turn it must make an Intelligence saving throw, taking 5d6 psychic damage on a failed save, or half damage on a success.\n\nAs a bonus action, you can move the cube up to 10 feet in any direction to a space you can see. The cube cannot be made to pass through other creatures in this way.", - "document": "a5e-ag", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "enhance-ability-a5e", - "fields": { - "name": "Enhance Ability", - "desc": "You bestow a magical enhancement on the target. Choose one of the following effects for the target to receive until the spell ends.\n\n* **Bear's Endurance:** The target has advantage on Constitution checks and it gains 2d6 temporary hit points (lost when the spell ends).\n* **Bull's Strength:** The target has advantage on Strength checks and doubles its carrying capacity.\n* **Cat's Grace:** The target has advantage on Dexterity checks and it reduces any falling damage it takes by 10 unless it is incapacitated.\n* **Eagle's Splendor:** The target has advantage on Charisma checks and is instantly cleaned (as if it had just bathed and put on fresh clothing).\n* **Fox's Cunning:** The target has advantage on Intelligence checks and on checks using gaming sets.\n* **Owl's Wisdom:** The target has advantage on Wisdom checks and it gains darkvision to a range of 30 feet (or extends its existing darkvision by 30 feet).", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "You target one additional creature for each slot level above 2nd.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "enlargereduce-a5e", - "fields": { - "name": "Enlarge/Reduce", - "desc": "You cause the target to grow or shrink. An unwilling target may attempt a saving throw to resist the spell.\n\nIf the target is a creature, all items worn or carried by it also change size with it, but an item dropped by the target immediately returns to normal size.\n\n* **Enlarge:** Until the spell ends, the target's size increases by one size category. Its size doubles in all dimensions and its weight increases eightfold. The target also has advantage on Strength checks and Strength saving throws. Its weapons also enlarge, dealing an extra 1d4 damage.\n* **Reduce:** Until the spell ends, the target's size decreases one size category. Its size is halved in all dimensions and its weight decreases to one-eighth of its normal value. The target has disadvantage on Strength checks and Strength saving throws and its weapons shrink, dealing 1d4 less damage (its attacks deal a minimum of 1 damage).", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "When using a spell slot of 4th-level, you can cause the target and its gear to increase by two size categories—from Medium to Huge, for example. Until the spell ends, the target's size is quadrupled in all dimensions, multiplying its weight twentyfold. The target has advantage on Strength checks and Strength saving throws. Its weapons also enlarge, dealing an extra 2d4 damage.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "enrage-architecture-a5e", - "fields": { - "name": "Enrage Architecture", - "desc": "You animate and enrage a target building that lashes out at its inhabitants and surroundings. As a bonus action you may command the target to open, close, lock, or unlock any nonmagical doors or windows, or to thrash about and attempt to crush its inhabitants. While the target is thrashing, any creature inside or within 30 feet of it must make a Dexterity saving throw, taking 2d10+5 bludgeoning damage on a failed save or half as much on a successful one. When the spell ends, the target returns to its previous state, magically repairing any damage it sustained during the spell's duration.", - "document": "a5e-ag", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "entangle-a5e", - "fields": { - "name": "Entangle", - "desc": "Constraining plants erupt from the ground in the spell's area, wrapping vines and tendrils around creatures. Until the spell ends, the area is difficult terrain.\n\nA creature in the area when you cast the spell makes a Strength saving throw or it becomes restrained as the plants wrap around it. A creature restrained in this way can use its action to make a Strength check against your spell save DC, freeing itself on a success.\n\nWhen the spell ends, the plants wither away.", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "enthrall-a5e", - "fields": { - "name": "Enthrall", - "desc": "You weave a compelling stream of words that captivates your targets. Any target that can't be charmed automatically succeeds on its saving throw, and targets fighting you or creatures friendly to you have advantage on the saving throw.\n\nUntil the spell ends or a target can no longer hear you, it has disadvantage on Perception checks made to perceive any creature other than you. The spell ends if you are incapacitated or can no longer speak.", - "document": "a5e-ag", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "etherealness-a5e", - "fields": { - "name": "Etherealness", - "desc": "Until the spell ends or you use an action to end it, you step into the border regions of the Ethereal Plane where it overlaps with your current plane. While on the Ethereal Plane, you can move in any direction, but vertical movement is considered difficult terrain. You can see and hear the plane you originated from, but everything looks desaturated and you can see no further than 60 feet.\n\nWhile on the Ethereal Plane, you can only affect and be affected by other creatures on that plane. Creatures not on the Ethereal Plane can't perceive you unless some special ability or magic explicitly allows them to.\n\nWhen the spell ends, you immediately return to the plane you originated from in the spot you currently occupy. If you occupy the same spot as a solid object or creature when this happens, you are immediately shunted to the nearest unoccupied space and you take force damage equal to twice the number of feet you are moved.\n\nThe spell has no effect if you cast it while you are on the Ethereal Plane or a plane that doesn't border it, such as an Outer Plane.", - "document": "a5e-ag", - "level": 7, - "school": "transmutation", - "higher_level": "You can target up to 3 willing creatures within 10 feet (including you) for each slot level above 7th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "expeditious-retreat-a5e", - "fields": { - "name": "Expeditious Retreat", - "desc": "Until the spell ends, you're able to move with incredible speed. When you cast the spell and as a bonus action on subsequent turns, you can take the Dash action.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "Your Speed increases by 10 feet for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "eyebite-a5e", - "fields": { - "name": "Eyebite", - "desc": "Your eyes become an inky void imbued with fell power. One creature of your choice within 60 feet of you that you can see and that can see you must succeed on a Wisdom saving throw or be afflicted by one of the following effects for the duration. Until the spell ends, on each of your turns you can use an action to target a creature that has not already succeeded on a saving throw against this casting of _eyebite_.\n\n* **Asleep:** The target falls unconscious, waking if it takes any damage or another creature uses an action to rouse it.\n* **Panicked:** The target is frightened of you. On each of its turns, the frightened creature uses its action to take the Dash action and move away from you by the safest and shortest available route unless there is nowhere for it to move. If the target moves to a place at least 60 feet away from you where it can no longer see you, this effect ends.\n* **Sickened:** The target has disadvantage on attack rolls and ability checks. At the end of each of its turns, it can make another Wisdom saving throw, ending this effect on a successful save.", - "document": "a5e-ag", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "fabricate-a5e", - "fields": { - "name": "Fabricate", - "desc": "You convert raw materials into finished items of the same material. For example, you can fabricate a pitcher from a lump of clay, a bridge from a pile of lumber or group of trees, or rope from a patch of hemp.\n\nWhen you cast the spell, select raw materials you can see within range. From them, the spell fabricates a Large or smaller object (contained within a single 10-foot cube or up to eight connected 5-foot cubes) given a sufficient quantity of raw material. When fabricating with metal, stone, or another mineral substance, the fabricated object can be no larger than Medium (contained within a single 5-foot cube). The quality of any objects made with the spell is equivalent to the quality of the raw materials.\n\nCreatures or magic items can't be created or used as materials with this spell. It also may not be used to create items that require highly-specialized craftsmanship such as armor, weapons, clockworks, glass, or jewelry unless you have proficiency with the type of artisan's tools needed to craft such objects.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "faerie-fire-a5e", - "fields": { - "name": "Faerie Fire", - "desc": "Each object in a 20-foot cube within range is outlined in light (your choice of color). Any creature in the area when the spell is cast is also outlined unless it makes a Dexterity saving throw. Until the spell ends, affected objects and creatures shed dim light in a 10-foot radius.\n\nAny attack roll against an affected object or creature has advantage. The spell also negates the benefits of invisibility on affected creatures and objects.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "faithful-hound-a5e", - "fields": { - "name": "Faithful Hound", - "desc": "You conjure a phantasmal watchdog. Until the spell ends, the hound remains in the area unless you spend an action to dismiss it or you move more than 100 feet away from it.\n\nThe hound is invisible except to you and can't be harmed. When a Small or larger creature enters the area without speaking a password you specify when casting the spell, the hound starts barking loudly. The hound sees invisible creatures, can see into the Ethereal Plane, and is immune to illusions.\n\nAt the start of each of your turns, the hound makes a bite attack against a hostile creature of your choice that is within the area, using your spell attack bonus and dealing 4d8 piercing damage on a hit.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "false-life-a5e", - "fields": { - "name": "False Life", - "desc": "You are bolstered with fell energies resembling life, gaining 1d4+4 temporary hit points that last until the spell ends.", - "document": "a5e-ag", - "level": 1, - "school": "necromancy", - "higher_level": "Gain an additional 5 temporary hit points for each slot level above 1st.", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fear-a5e", - "fields": { - "name": "Fear", - "desc": "You project a phantasmal image into the minds of each creature in the area showing them what they fear most. On a failed save, a creature becomes frightened until the spell ends and must drop whatever it is holding.\n\nOn each of its turns, a creature frightened by this spell uses its action to take the Dash action and move away from you by the safest available route. If there is nowhere it can move, it remains stationary. When the creature ends its turn in a location where it doesn't have line of sight to you, the creature can repeat the saving throw, ending the spell's effects on it on a successful save.", - "document": "a5e-ag", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "feather-fall-a5e", - "fields": { - "name": "Feather Fall", - "desc": "Magic slows the descent of each target. Until the spell ends, a target's rate of descent slows to 60 feet per round. If a target lands before the spell ends, it takes no falling damage and can land on its feet, ending the spell for that target.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "When using a 2nd-level spell slot, targets can move horizontally 1 foot for every 1 foot they descend, effectively gliding through the air until they land or the spell ends.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "feeblemind-a5e", - "fields": { - "name": "Feeblemind", - "desc": "You blast the target's mind, attempting to crush its intellect and sense of self. The target takes 4d6 psychic damage.\n\nOn a failed save, until the spell ends the creature's Intelligence and Charisma scores are both reduced to 1\\. The creature can't cast spells, activate magic items, understand language, or communicate in any intelligible way, but it is still able to recognize, follow, and even protect its allies.\n\nAt the end of every 30 days, the creature can repeat its saving throw against this spell, ending it on a success.\n\n_Greater restoration_, _heal_, or _wish_ can also be used to end the spell.", - "document": "a5e-ag", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "find-familiar-a5e", - "fields": { - "name": "Find Familiar", - "desc": "Your familiar, a spirit that takes the form of any CR 0 beast of Small or Tiny size, appears in an unoccupied space within range. It has the statistics of the chosen form, but is your choice of a celestial, fey, or fiend (instead of a beast).\n\nYour familiar is an independent creature that rolls its own initiative and acts on its own turn in combat (but cannot take the Attack action). However, it is loyal to you and always obeys your commands.\n\nWhen the familiar drops to 0 hit points, it vanishes without a trace. Casting the spell again causes it to reappear.\n\nYou are able to communicate telepathically with your familiar when it is within 100 feet. As long as it is within this range, you can use an action to see through your familiar's eyes and hear through its ears until the beginning of your next turn, gaining the benefit of any special senses it has. During this time, you are blind and deaf to your body's surroundings.\n\nYou can use an action to either permanently dismiss your familiar or temporarily dismiss it to a pocket dimension where it awaits your summons. While it is temporarily dismissed, you can use an action to call it back, causing it to appear in any unoccupied space within 30 feet of you.\n\nYou can't have more than one familiar at a time, but if you cast this spell while you already have a familiar, you can cause it to adopt a different form.\n\nFinally, when you cast a spell with a range of Touch and your familiar is within 100 feet of you, it can deliver the spell as if it was the spellcaster. Your familiar must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, use your attack bonus for the spell.", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "find-steed-a5e", - "fields": { - "name": "Find Steed", - "desc": "You summon a spirit that takes the form of a loyal mount, creating a lasting bond with it. You decide on the steed's appearance, and choose whether it uses the statistics of an elk, giant lizard, panther, warhorse, or wolf (the Narrator may offer additional options.) Its statistics change in the following ways:\n\n* Its type is your choice of celestial, fey, or fiend.\n* Its size is your choice of Medium or Large.\n* Its Intelligence is 6.\n* You can communicate with it telepathically while it's within 1 mile.\n* It understands one language that you speak.\n\nWhile mounted on your steed, when you cast a spell that targets only yourself, you may also target the steed.\n\nWhen you use an action to dismiss the steed, or when it drops to 0 hit points, it temporarily disappears. Casting this spell again resummons the steed, fully healed and with all conditions removed. You can't summon a different steed unless you spend an action to release your current steed from its bond, permanently dismissing it.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "The steed has an additional 20 hit points for each slot level above 2nd. When using a 4th-level spell slot or higher, you may grant the steed either a swim speed or fly speed equal to its base Speed.", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "find-the-path-a5e", - "fields": { - "name": "Find the Path", - "desc": "Name a specific, immovable location that you have visited before. If no such location is within range, the spell fails. For the duration, you know the location's direction and distance. While you are traveling there, you have advantage on ability checks made to determine the shortest path.", - "document": "a5e-ag", - "level": 6, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "Special", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 day", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "find-traps-a5e", - "fields": { - "name": "Find Traps", - "desc": "This spell reveals whether there is at least one trap within range and within line of sight. You don't learn the number, location, or kind of traps detected. For the purpose of this spell, a trap is a hidden mechanical device or magical effect which is designed to harm you or put you in danger, such as a pit trap, symbol spell, or alarm bell on a door, but not a natural hazard.", - "document": "a5e-ag", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "finger-of-death-a5e", - "fields": { - "name": "Finger of Death", - "desc": "Negative energy wracks the target and deals 7d8 + 30 necrotic damage. A humanoid killed by this spell turns into a zombie at the start of your next turn. It is permanently under your control and follows your spoken commands.", - "document": "a5e-ag", - "level": 7, - "school": "necromancy", - "higher_level": "The damage increases by 2d8 for each slot level above 7th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fire-bolt-a5e", - "fields": { - "name": "Fire Bolt", - "desc": "You cast a streak of flame at the target. Make a ranged spell attack. On a hit, you deal 1d10 fire damage. An unattended flammable object is ignited.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fire-shield-a5e", - "fields": { - "name": "Fire Shield", - "desc": "Until the spell ends, flames envelop your body, casting bright light in a 10-foot radius and dim light for an additional 10 feet. You can use an action to end the spell early. Choose one of the following options:\n\n* **Chill Shield:** You have resistance to fire damage. A creature within 5 feet of you takes 2d8 cold damage when it hits you with a melee attack.\n* **Warm Shield:** You have resistance to cold damage. A creature within 5 feet of you takes 2d8 fire damage when it hits you with a melee attack.", - "document": "a5e-ag", - "level": 4, - "school": "evocation", - "higher_level": "The duration increases to 1 hour when using a 6th-level spell slot, or 8 hours when using an 8th-level spell slot.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "cold" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fire-storm-a5e", - "fields": { - "name": "Fire Storm", - "desc": "Flames roar, dealing 7d10 fire damage to creatures and objects in the area and igniting unattended flammable objects. If you choose, plant life in the area is unaffected. This spell's area consists of a contiguous group of ten 10-foot cubes in an arrangement you choose, with each cube adjacent to at least one other cube.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "The damage increases by 1d10 for each slot level above 7th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fireball-a5e", - "fields": { - "name": "Fireball", - "desc": "A fiery mote streaks to a point within range and explodes in a burst of flame. The fire spreads around corners and ignites unattended flammable objects. Each creature in the area takes 6d6 fire damage.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "flame-blade-a5e", - "fields": { - "name": "Flame Blade", - "desc": "A scimitar-shaped blade of fire appears in your hand, lasting for the duration. It disappears if you drop it, but you can use a bonus action to recall it. The blade casts bright light in a 10-foot radius and dim light for another 10 feet. You can use an action to make a melee spell attack with the blade that deals 3d6 fire damage.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "The damage increases by 1d6 for every two slot levels above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "flame-strike-a5e", - "fields": { - "name": "Flame Strike", - "desc": "A column of divine flame deals 4d6 fire damage and 4d6 radiant damage to creatures in the area.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "Increase either the fire damage or the radiant damage by 1d6 for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "flaming-sphere-a5e", - "fields": { - "name": "Flaming Sphere", - "desc": "A 5-foot-diameter sphere of fire appears within range, lasting for the duration. It casts bright light in a 20-foot radius and dim light for another 20 feet, and ignites unattended flammable objects it touches.\n\nYou can use a bonus action to move the sphere up to 30 feet. It can jump over pits 10 feet wide or obstacles 5 feet tall. If you move the sphere into a creature, the sphere ends its movement for that turn and the creature makes a Dexterity saving throw, taking 2d6 fire damage on a failed save, or half as much on a successful one. A creature that ends its turn within 5 feet of the sphere makes a Dexterity saving throw against the sphere's damage.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "The damage increases by 1d6 for each slot level above 2nd.", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "flesh-to-stone-a5e", - "fields": { - "name": "Flesh to Stone", - "desc": "The target becomes restrained as it begins to turn to stone. On a successful saving throw, the target is instead slowed until the end of its next turn and the spell ends.\n\nA creature restrained by this spell makes a second saving throw at the end of its turn. On a success, the spell ends. On a failure, the target is petrified for the duration. If you maintain concentration for the maximum duration of the spell, this petrification is permanent.\n\nAny pieces removed from a petrified creature are missing when the petrification ends.", - "document": "a5e-ag", - "level": 6, - "school": "transmutation", - "higher_level": "Target one additional creature when you cast this spell with an 8th-level spell slot.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "flex-a5e", - "fields": { - "name": "Flex", - "desc": "You bestow a glamor upon a creature that highlights its physique to show a stunning idealized form. For the spell's duration, the target adds both its Strength modifier and Charisma modifier to any Charisma checks it makes.", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "Target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "floating-disk-a5e", - "fields": { - "name": "Floating Disk", - "desc": "A metallic disc made of force, 3 feet in diameter and hovering 3 feet off the ground, appears within range. It can support up to 500 pounds. If it is overloaded, or if you move more than 100 feet away from it, the spell ends. You can end the spell as an action. While it is not carrying anything, you can use a bonus action to teleport the disk to an unoccupied space within range.\n\nWhile you are within 20 feet of the disk, it is immobile. If you move more than 20 feet away, it tries to follow you, remaining 20 feet away. It can traverse stairs, slopes, and obstacles up to 3 feet high.\n\nAdditionally, you can ride the disc, spending your movement on your turn to move the disc up to 30 feet (following the movement rules above).\n\nMoving the disk in this way is just as tiring as walking for the same amount of time.", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "When you use a 3rd-level spell slot, either the spell's duration increases to 8 hours or the disk's diameter is 10 feet, it can support up to 2, 000 pounds, and it can traverse obstacles up to 10 feet high. When you use a 6th-level spell slot, the disk's diameter is 20 feet, it can support up to 16, 000 pounds, and it can traverse obstacles up to 20 feet high.", - "target_type": "point", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fly-a5e", - "fields": { - "name": "Fly", - "desc": "The target gains a flying speed of 60 feet. When the spell ends, the target falls if it is off the ground.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "Target one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "fog-cloud-a5e", - "fields": { - "name": "Fog Cloud", - "desc": "You create a heavily obscured area of fog. The fog spreads around corners and can be dispersed by a moderate wind (at least 10 miles per hour).", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "The spell's radius increases by 20 feet for each slot level above 1st.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "forbiddance-a5e", - "fields": { - "name": "Forbiddance", - "desc": "You protect the target area against magical travel. Creatures can't teleport into the area, use a magical portal to enter it, or travel into it from another plane of existence, such as the Astral or Ethereal Plane. The spell's area can't overlap with another _forbiddance_ spell.\n\nThe spell damages specific types of trespassing creatures. Choose one or more of celestials, elementals, fey, fiends, and undead. When a chosen creature first enters the area on a turn or starts its turn there, it takes 5d10 radiant or necrotic damage (your choice when you cast the spell). You may designate a password. A creature speaking this password as it enters takes no damage from the spell.\n\nAfter casting this spell on the same area for 30 consecutive days it becomes permanent until dispelled. This final casting to make the spell permanent consumes its material components.", - "document": "a5e-ag", - "level": 6, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "necrotic", - "radiant" - ], - "duration": "1 day", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "force-of-will-a5e", - "fields": { - "name": "Force of Will", - "desc": "Your iron resolve allows you to withstand an attack. The damage you take from the triggering attack is reduced by 2d10 + your spellcasting ability modifier.", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "The damage is reduced by an additional 1d10 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "force-punch-a5e", - "fields": { - "name": "Force Punch", - "desc": "Make a melee spell attack. On a hit, the target takes 3d8 force damage.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "forcecage-a5e", - "fields": { - "name": "Forcecage", - "desc": "An opaque cube of banded force surrounds the area, preventing any matter or spells from passing through it, though creatures can breathe inside it. Creatures that make a Dexterity saving throw and creatures that are only partially inside the area are pushed out of the area. Any other creature is trapped and can't leave by nonmagical means. The cage also traps creatures on the Ethereal Plane, and can only be destroyed by being dealt at least 25 force damage at once or by a _dispel magic_ spell cast using an 8th-level or higher spell slot.\n\nIf a trapped creature tries to teleport or travel to another plane, it makes a Charisma saving throw. On a failure, the attempt fails and the spell or effect is wasted.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "The spell's area increases to a 20-foot cube when using a 9th-level spell slot.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "foresight-a5e", - "fields": { - "name": "Foresight", - "desc": "You impart the ability to see flashes of the immediate future. The target can't be surprised and has advantage on ability checks, attack rolls, and saving throws. Other creatures have disadvantage on attack rolls against the target.", - "document": "a5e-ag", - "level": 9, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "forest-army-a5e", - "fields": { - "name": "Forest Army", - "desc": "While casting and concentrating on this spell, you enter a deep trance and awaken an army of trees and plants within range. These plants rise up under your control as a grove swarm and act on your initiative. Although you are in a trance and deaf and blind with regard to your own senses, you see and hear through your grove swarm's senses. You can command your grove swarm telepathically, ordering it to advance, attack, or retreat. If the grove swarm enters your space, you can order it to carry you.\n\nIf you take any action other than continuing to concentrate on this spell, the spell ends and the trees and plants set down roots wherever they are currently located.", - "document": "a5e-ag", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "freedom-of-movement-a5e", - "fields": { - "name": "Freedom of Movement", - "desc": "The target ignores difficult terrain. Spells and magical effects can't reduce its speed or cause it to be paralyzed or restrained. It can spend 5 feet of movement to escape from nonmagical restraints or grapples. The target's movement and attacks aren't penalized from being underwater.", - "document": "a5e-ag", - "level": 4, - "school": "abjuration", - "higher_level": "When using a 6th-level spell slot the duration is 8 hours. When using an 8th-level spell slot the duration is 24 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "freezing-sphere-a5e", - "fields": { - "name": "Freezing Sphere", - "desc": "A freezing globe streaks to a point within range and explodes, dealing 10d6 cold damage to creatures in the area. Liquid in the area is frozen to a depth of 6 inches for 1 minute. Any creature caught in the ice can use an action to make a Strength check against your spell save DC to escape.\n\nInstead of firing the globe, you can hold it in your hand. If you handle it carefully, it won't explode until a minute after you cast the spell. At any time, you or another creature can strike the globe, throw it up to 60 feet, or use it as a slingstone, causing it to explode on impact.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "The damage increases by 1d6 for each slot level above 6th.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "friends-a5e", - "fields": { - "name": "Friends", - "desc": "Once before the start of your next turn, when you make a Charisma ability check against the target, you gain an expertise die. If you roll a 1 on the ability or skill check, the target realizes its judgment was influenced by magic and may become hostile.", - "document": "a5e-ag", - "level": 0, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "gaseous-form-a5e", - "fields": { - "name": "Gaseous Form", - "desc": "The target, along with anything it's wearing and carrying, becomes a hovering, wispy cloud. In this form, it can't attack, use or drop objects, talk, or cast spells.\n\nAs a cloud, the target's base Speed is 0 and it gains a flying speed of 10 feet. It can enter another creature's space, and can pass through small holes and cracks, but not through liquid. It is resistant to nonmagical damage, has advantage on Strength, Dexterity, and Constitution saving throws, and can't fall.\n\nThe spell ends if the creature drops to 0 hit points.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "The target's fly speed increases by 10 feet for each slot level above 3rd.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "gate-a5e", - "fields": { - "name": "Gate", - "desc": "You create a magic portal, a door between a space you can see and a specific place on another plane of existence. Each portal is a one-sided circular opening from 5 to 25 feet in diameter. Entering either portal transports you to the portal on the other plane. Deities and other planar rulers can prevent portals from opening in their domains.\n\nWhen you cast this spell, you can speak the true name of a specific creature (not its nickname or title). If that creature is on another plane, the portal opens next to it and draws it through to your side of the portal. This spell gives you no power over the creature, and it might choose to attack you, leave, or listen to you.", - "document": "a5e-ag", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "geas-a5e", - "fields": { - "name": "Geas", - "desc": "You give a command to a target which can understand you. It becomes charmed by you.\n\nWhile charmed in this way, it takes 5d10 psychic damage the first time each day that it disobeys your command. Your command can be any course of action or inaction that wouldn't result in the target's death. The spell ends if the command is suicidal or you use an action to dismiss the spell. Alternatively, a _remove curse_, _greater restoration_, or _wish_ spell cast on the target using a spell slot at least as high as the slot used to cast this spell also ends it.", - "document": "a5e-ag", - "level": 5, - "school": "enchantment", - "higher_level": "The spell's duration is 1 year when using a 7th-level spell slot, or permanent until dispelled when using a 9th-level spell slot.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "psychic" - ], - "duration": "30 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "gentle-repose-a5e", - "fields": { - "name": "Gentle Repose", - "desc": "The target can't become undead and doesn't decay. Days spent under the influence of this spell don't count towards the time limit of spells which raise the dead.", - "document": "a5e-ag", - "level": 2, - "school": "necromancy", - "higher_level": "The spell's duration is 1 year when using a 3rd-level spell slot, or permanent until dispelled when using a 4th-level spell slot.", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "giant-insect-a5e", - "fields": { - "name": "Giant Insect", - "desc": "You transform insects and other vermin into monstrous versions of themselves. Until the spell ends, up to 3 spiders become giant spiders, 2 ants become giant ants, 2 crickets or mantises become ankhegs, a centipede becomes a giant centipede, or a scorpion becomes a giant scorpion. The spell ends for a creature when it dies or when you use an action to end the effect on it.\n\nWhile it is within 60 feet you can use a bonus action to mentally command the insects. When you command multiple insects using this spell, you may simultaneously give them all the same command.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "The spell's duration is 1 hour when using a 5th-level spell slot, or 8 hours when using a 6th-level spell slot.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "glibness-a5e", - "fields": { - "name": "Glibness", - "desc": "When you make a Charisma check, you can replace the number you rolled with 15\\. Also, magic that prevents lying has no effect on you, and magic cannot determine that you are lying.", - "document": "a5e-ag", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "globe-of-invulnerability-a5e", - "fields": { - "name": "Globe of Invulnerability", - "desc": "An immobile, glimmering sphere forms around you. Any spell of 5th-level or lower cast from outside the sphere can't affect anything inside the sphere, even if it's cast with a higher level spell slot. Targeting something inside the sphere or including the globe's space in an area has no effect on anything inside.", - "document": "a5e-ag", - "level": 6, - "school": "abjuration", - "higher_level": "The barrier blocks spells of one spell slot level higher for each slot level above 6th.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "glyph-of-warding-a5e", - "fields": { - "name": "Glyph of Warding", - "desc": "You trace a glyph on the target. If the glyph is moved more than 10 feet from its original position, or if it comes within 20 feet of another glyph that you have cast, the spell ends. Finding the Tiny glyph requires an Investigation check against your spell save DC.\n\nDescribe the actions a creature must perform to trigger the spell, such as approaching within a certain distance, opening or touching the object the glyph is inscribed on, or seeing or reading the glyph. The creature must have a clear path to the glyph to trigger it. You can specify certain creatures which don't trigger the spell, such as those with a certain appearance or those who speak a certain phrase. Once the glyph is triggered, the spell ends.\n\nWhen you cast the spell, choose Explosive Runes or Spell Glyph.\n\n* **Explosive Runes:** When triggered, the glyph explodes. Creatures in a 20-foot radius sphere make a Dexterity saving throw or take 5d8 acid, cold, fire, lightning, or thunder damage (your choice when you cast the spell), or half damage on a successful save. The explosion spreads around corners.\n* **Spell Glyph:** You store a spell of 3rd-level or lower as part of creating the glyph, expending its spell slot. The stored spell must target a single creature or area with a non-beneficial effect and it is cast when the glyph is triggered. A spell that targets a creature targets the triggering creature. A spell with an area is centered on the targeting creature. A creation or conjuration spell affects an area next to that creature, and targets it with any harmful effects. Spells requiring concentration last for their full duration.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "The cost of the material component increases by 200 gold for each slot level above 3rd. For Explosive Runes, the damage increases by 1d8 for each slot level above 3rd, and for Spell Glyph you can store a spell of up to the same level as the spell slot used to cast glyph of warding.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "goodberry-a5e", - "fields": { - "name": "Goodberry", - "desc": "You transform the components into 2d4 berries.\n\nFor the next 24 hours, any creature that consumes one of these berries regains 1 hit point. Eating or administering a berry is an action. The berries do not provide any nourishment or sate hunger.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "You create 1d4 additional berries for every 2 slot levels above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "grapevine-a5e", - "fields": { - "name": "Grapevine", - "desc": "You cause a message in Druidic to appear on a tree or plant within range which you have seen before.\n\nYou can cast the spell again to erase the message.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "100 miles", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "grease-a5e", - "fields": { - "name": "Grease", - "desc": "Grease erupts from a point that you can see within range and coats the ground in the area, turning it into difficult terrain until the spell ends.\n\nWhen the grease appears, each creature within the area must succeed on a Dexterity saving throw or fall prone. A creature that enters or ends its turn in the area must also succeed on a Dexterity saving throw or fall prone.", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "greater-invisibility-a5e", - "fields": { - "name": "Greater Invisibility", - "desc": "The target is invisible. Anything the target is carrying or wearing is also invisible as long as it remains in the target's possession.", - "document": "a5e-ag", - "level": 4, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "greater-restoration-a5e", - "fields": { - "name": "Greater Restoration", - "desc": "Healing energy rejuvenates a creature you touch and undoes a debilitating effect. You can remove one of:\n\n* a level of fatigue.\n* a level of strife.\n* a charm or petrification effect.\n* a curse or cursed item attunement.\n* any reduction to a single ability score.\n* an effect that has reduced the target's hit point maximum.", - "document": "a5e-ag", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "guardian-of-faith-a5e", - "fields": { - "name": "Guardian of Faith", - "desc": "A large spectral guardian appears and hovers for the duration in an unoccupied space of your choice that you can see within range. This guardian occupies that space and is indistinct except for a gleaming sword and sheild emblazoned with the symbol of your deity.\n\nAny creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "20", - "damage_types": [ - "radiant" - ], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "guards-and-wards-a5e", - "fields": { - "name": "Guards and Wards", - "desc": "You create wards that protect the target area. Each warded area has a maximum height of 20 feet and can be shaped. Several stories of a stronghold can be warded by dividing the area among them if you can walk from one to the next while the spell is being cast.\n\nWhen cast, you can create a password that can make a creature immune to these effects when it is spoken aloud. You may also specify individuals that are unaffected by any or all of the effects that you choose.\n\n_Guards and wards_ creates the following effects within the area of the spell.\n\n* **_Corridors:_** Corridors are heavily obscured with fog. Additionally, creatures that choose between multiple passages or branches have a 50% chance to unknowingly choose a path other than the one they meant to choose.\n* **_Doors:_** Doors are magically locked as if by an _arcane lock_ spell. Additionally, you may conceal up to 10 doors with an illusion as per the illusory object component of the _minor illusion_ spell to make the doors appear as unadorned wall sections.\n* **_Stairs:_** Stairs are filled from top to bottom with webs as per the _web_ spell. Until the spell ends, the webbing strands regrow 10 minutes after they are damaged or destroyed.\n\nIn addition, one of the following spell effects can be placed within the spell's area.\n\n* _Dancing lights_ can be placed in 4 corridors and you can choose for them to repeat a simple sequence.\n* _Magic mouth_ spells can be placed in 2 locations.\n_Stinking clouds_ can be placed in 2 locations.\n\nThe clouds return after 10 minutes if dispersed while the spell remains.\n* A _gust of wind_ can be placed in a corridor or room.\n* Pick a 5-foot square. Any creature that passes through it subjected to a _suggestion_ spell, hearing the suggestion mentally.\n\nThe entirety of the warded area radiates as magic. Each effect must be targeted by separate dispel magic spells to be removed.\n\nThe spell can be made permanent by recasting the spell every day for a year.", - "document": "a5e-ag", - "level": 6, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "guidance-a5e", - "fields": { - "name": "Guidance", - "desc": "The target may gain an expertise die to one ability check of its choice, ending the spell. The expertise die can be rolled before or after the ability check is made.", - "document": "a5e-ag", - "level": 0, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "guiding-bolt-a5e", - "fields": { - "name": "Guiding Bolt", - "desc": "A bolt of light erupts from your hand. Make a ranged spell attack against the target. On a hit, you deal 4d6 radiant damage and the next attack roll made against the target before the end of your next turn has advantage.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The damage increases by 1d6 for each slot level above 1st.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "gust-of-wind-a5e", - "fields": { - "name": "Gust of Wind", - "desc": "A torrent of wind erupts from your hand in a direction you choose. Each creature that starts its turn in the area or moves into the area must succeed on a Strength saving throw or be pushed 15 feet from you in the direction of the line.\n\nAny creature in the area must spend 2 feet of movement for every foot moved when trying to approach you.\n\nThe blast of wind extinguishes small fires and disperses gas or vapor.\n\nYou can use a bonus action to change the direction of the gust.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hallow-a5e", - "fields": { - "name": "Hallow", - "desc": "You imbue the area with divine power, bolstering some creatures and hindering others. Celestials, elementals, fey, fiends, and undead cannot enter the area. They are also incapable of charming, frightening, or possessing another creature within the area. Any such effects end on a creature that enters the area. When casting, you may exclude one or more creature types from this effect.\n\nAdditionally, you may anchor additional magical effects to the area. Choose one effect from the list below (the Narrator may also offer specific effects).\n\nSome effects apply to creatures. You may choose to affect all creatures, creatures of a specific type, or those that follow a specific leader or deity. Creatures make a Charisma saving throw when the spell is cast, when they enter the area for the first time on a turn, or if they end their turn within the area. On a successful save, a creature is immune to the effect until it leaves the area.\n\n* **Courage:** Creatures in the area cannot be frightened.\n* **Darkness:** The area is filled by darkness, and normal light sources or sources from a lower level spell slot are smothered within it.\n* **Daylight:** The area is filled with bright light, dispelling magical darkness created by spells of a lower level spell slot.\n* **Energy Protection:** Creatures in the area gain resistance against a damage type of your choice (excepting bludgeoning, piercing, or slashing).\n* **Energy Vulnerability:** Creatures in the area gain vulnerability against a damage type of your choice (excepting bludgeoning, piercing, or slashing).\n* **Everlasting Rest:** Dead bodies laid to rest in the area cannot be turned into undead by any means.\n* **Extradimensional Interference:** Extradimensional movement or travel is blocked to and from the area, including all teleportation effects.\n* **Fear**: Creatures are frightened while within the area.\n* **Silence:** No sound can enter or emanate from the area.\n* **Tongues:** Creatures within the area can freely communicate with one another whether they share a language or not.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hallucinatory-terrain-a5e", - "fields": { - "name": "Hallucinatory Terrain", - "desc": "You weave a veil over the natural terrain within the area, making it look, sound, or smell like another sort of terrain. A small lake could be made to look like a grassy glade. A path or trail could be made to look like an impassable swamp. A cliff face could even appear as a gentle slope or seem to extend further than it does. This spell does not affect any manufactured structures, equipment, or creatures.\n\nOnly the visual, auditory, and olfactory components of the terrain are changed. Any creature that enters or attempts to interact with the illusion feels the real terrain below. If given sufficient reason, a creature may make an Investigation check against your spell save DC to disbelieve it. On a successful save, the creature sees the illusion superimposed over the actual terrain.", - "document": "a5e-ag", - "level": 4, - "school": "illusion", - "higher_level": "The spell targets an additional 50-foot cube for each slot level above 4th.", - "target_type": "area", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "harm-a5e", - "fields": { - "name": "Harm", - "desc": "You assail a target with an agonizing disease. The target takes 14d6 necrotic damage. If it fails its saving throw its hit point maximum is reduced by an amount equal to the damage taken for 1 hour or until the disease is magically cured. This spell cannot reduce a target to less than 1 hit point.", - "document": "a5e-ag", - "level": 6, - "school": "necromancy", - "higher_level": "Increase the damage by 2d6 for each slot level above 6th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "14d6", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "harmonic-resonance-a5e", - "fields": { - "name": "Harmonic Resonance", - "desc": "You harmonize with the rhythm of those around you until you're perfectly in sync. You may take the Help action as a bonus action. Additionally, when a creature within 30 feet uses a Bardic Inspiration die, you may choose to reroll the die after it is rolled but before the outcome is determined.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "haste-a5e", - "fields": { - "name": "Haste", - "desc": "Until the spell ends, the target's Speed is doubled, it gains a +2 bonus to AC, it has advantage on Dexterity saving throws, and it gains one additional action on each of its turns. This action can be used to make a single weapon attack, or to take the Dash, Disengage, Hide, or Use an Object action.\n\nWhen the spell ends, the target is tired and cannot move or take actions until after its next turn.", - "document": "a5e-ag", - "level": 3, - "school": "transformation", - "higher_level": "Target one additional creature for each slot level above 3rd. All targets of this spell must be within 30 feet of each other.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "heal-a5e", - "fields": { - "name": "Heal", - "desc": "A torrent of healing energy suffuses the target and it regains 70 hit points. The spell also ends blindness, deafness, and any diseases afflicting the target.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "The hit points regained increase by 10 for each slot level above 6th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "healing-word-a5e", - "fields": { - "name": "Healing Word", - "desc": "Healing energy washes over the target and it regains hit points equal to 1d4 + your spellcasting modifier.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The hit points regained increase by 1d4 for each slot level above 1st.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "heart-of-dis-a5e", - "fields": { - "name": "Heart of Dis", - "desc": "You magically replace your heart with one forged on the second layer of Hell. While the spell lasts, you are immune to fear and can't be poisoned, and you are immune to fire and poison damage. You gain resistance to cold damage, as well as to bludgeoning, piercing, and slashing damage from nonmagical weapons that aren't silvered. You have advantage on saving throws against spells and other magical effects. Finally, while you are conscious, any creature hostile to you that starts its turn within 20 feet of you must make a Wisdom saving throw. On a failed save, the creature is frightened of you until the start of your next turn. On a success, the creature is immune to the effect for 24 hours.\n\nCasting this spell magically transports your mortal heart to the lair of one of the lords of Hell. The heart returns to your body when the spell ends. If you die while under the effects of this spell, you can't be brought back to life until your original heart is retrieved.", - "document": "a5e-ag", - "level": 8, - "school": "necromancy", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "heat-metal-a5e", - "fields": { - "name": "Heat Metal", - "desc": "The target becomes oven hot. Any creature touching the target takes 2d8 fire damage when the spell is cast. Until the spell ends, on subsequent turns you can use a bonus action to inflict the same damage. If a creature is holding or wearing the target and suffers damage, it makes a Constitution saving throw or it drops the target. If a creature does not or cannot drop the target, it has disadvantage on attack rolls and ability checks until the start of your next turn.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "The damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "heroes-feast-a5e", - "fields": { - "name": "Heroes' Feast", - "desc": "The spell summons forth a sumptuous feast with a cuisine of your choosing that provides 1 Supply for a number of creatures equal to twice your proficiency bonus. Consuming the food takes 1 hour and leaves a creature feeling nourished—it immediately makes a saving throw with advantage against any disease or poison it is suffering from, and it is cured of any effect that frightens it.\n\nFor up to 24 hours afterward the feast's participants have advantage on Wisdom saving throws, advantage on saving throws made against disease and poison, resistance against damage from poison and disease, and each increases its hit point maximum by 2d10.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "heroism-a5e", - "fields": { - "name": "Heroism", - "desc": "The target's spirit is bolstered. Until the spell ends, the target gains temporary hit points equal to your spellcasting ability modifier at the start of each of its turns and it cannot be frightened. Any temporary hit points remaining are lost when the spell ends.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "Target one additional creature for each slot level above 1st.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hideous-laughter-a5e", - "fields": { - "name": "Hideous Laughter", - "desc": "The target is overwhelmed by the absurdity of the world and is crippled by paroxysms of laughter. The target falls prone, becomes incapacitated, and cannot stand.\n\nUntil the spell ends, at the end of each of the target's turns and when it suffers damage, the target may attempt another saving throw (with advantage if triggered by damage). On a successful save, the spell ends.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "Target an additional creature within 30 feet of the original for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hold-monster-a5e", - "fields": { - "name": "Hold Monster", - "desc": "The target is paralyzed. At the end of each of its turns, the target makes another saving throw, ending the spell's effects on it on a successful save.", - "document": "a5e-ag", - "level": 5, - "school": "enchantment", - "higher_level": "Target an additional creature within 30 feet of the first target for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hold-person-a5e", - "fields": { - "name": "Hold Person", - "desc": "The target is paralyzed. At the end of each of its turns, the target makes another saving throw, ending the spell's effects on it on a successful save.", - "document": "a5e-ag", - "level": 2, - "school": "enchantment", - "higher_level": "Target an additional creature within 30 feet of the first target for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "holy-aura-a5e", - "fields": { - "name": "Holy Aura", - "desc": "Holy radiance emanates from you and fills the area. Targets shed dim light in a 5-foot radius and have advantage on saving throws. Attacks made against a target have disadvantage. When a fiend or undead hits a target, the aura erupts into blinding light, forcing the attacker to make a Constitution saving throw or be blinded until the spell ends.", - "document": "a5e-ag", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hypnotic-pattern-a5e", - "fields": { - "name": "Hypnotic Pattern", - "desc": "You conjure a swirling pattern of twisting hues that roils through the air, appearing for a moment and then vanishing. Creatures in the area that can perceive the pattern make a Wisdom saving throw or become charmed. A creature charmed by this spell becomes incapacitated and its Speed is reduced to 0.\n\nThe effect ends on a creature when it takes damage or when another creature uses an action to shake it out of its daze.", - "document": "a5e-ag", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "ice-storm-a5e", - "fields": { - "name": "Ice Storm", - "desc": "A bombardment of jagged ice erupts throughout the target area. All creatures in the area take 2d8 bludgeoning damage and 4d6 cold damage. Large chunks of ice turn the area into difficult terrain until the end of your next turn.", - "document": "a5e-ag", - "level": 4, - "school": "evocation", - "higher_level": "The bludgeoning damage increases by 1d8 for each slot level above 4th.", - "target_type": "area", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "identify-a5e", - "fields": { - "name": "Identify", - "desc": "You learn the target item's magical properties along with how to use them. This spell also reveals whether or not a targeted item requires attunement and how many charges it has. You learn what spells are affecting the targeted item (if any) along with what spells were used to create it.\n\nAlternatively, you learn any spells that are currently affecting a targeted creature.\n\nWhat this spell can reveal is at the Narrator's discretion, and some powerful and rare magics are immune to identify.", - "document": "a5e-ag", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "illusory-script-a5e", - "fields": { - "name": "Illusory Script", - "desc": "You inscribe a message onto the target and wrap it in illusion until the spell ends. You and any creatures that you designate when the spell is cast perceive the message as normal. You may choose to have other creatures view the message as writing in an unknown or unintelligible magical script or a different message. If you choose to create another message, you can change the handwriting and the language that the message is written in, though you must know the language in question.\n\nIf the spell is dispelled, both the message and its illusory mask disappear.\n\nThe true message can be perceived by any creature with truesight.", - "document": "a5e-ag", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "imprisonment-a5e", - "fields": { - "name": "Imprisonment", - "desc": "You utter the target's name and attempt to bind them for eternity. On a successful save, a target is immune to any future attempts by you to cast this spell on it. On a failed save, choose from one of the forms of bindings below (each lasts until the spell ends).\n\n* **Burial:** The target is buried deep below the surface of the earth in a tomb just large enough to contain it. Nothing can enter the tomb. No teleportation or planar travel can be used to enter, leave, or affect the tomb or its contents. A small mithral orb is required for this casting.\n* **Chaining:** Chains made of unbreakable material erupt from the ground and root the target in place. The target is restrained and cannot be moved by any means. A small adamantine chain is required for this casting.\n* **Hedged Prison:** The target is imprisoned in a maze-like demiplane of your choosing, such as a labyrinth, a cage, a tower, a hedge maze, or any similar structure you desire. The demiplane is warded against teleportation and planar travel. A small jade representation of the demiplane is required for this casting.\n* **Minimus Containment:** The target shrinks to just under an inch and is imprisoned inside a gemstone, crystal, jar, or similar object. Nothing but light can pass in and out of the vessel, and it cannot be broken, cut, or otherwise damaged. The special component for this effect is whatever prison you wish to use.\n* **Slumber:** The target is plunged into an unbreakable slumber and cannot be awoken. Special soporific draughts are required for this casting.\n\nThe target does not need sustenance or air, nor does it age. No divination spells of any sort can be used to reveal the target's location.\n\nWhen cast, you must specify a condition that will cause the spell to end and release the target. This condition must be based on some observable action or quality and not related to mechanics like level, hitpoints, or class, and the Narrator must agree to it.\n\nA dispel magic only dispels an _imprisonment_ if it is cast using a 9th-level spell slot and targets the prison or the special component used to create the prison.\n\nEach casting that uses the same spell effect requires its own special component. Repeated castings with the same component free the prior occupant.", - "document": "a5e-ag", - "level": 9, - "school": "abjuration", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "incendiary-cloud-a5e", - "fields": { - "name": "Incendiary Cloud", - "desc": "A cloud of burning embers, smoke, and roiling flame appears within range. The cloud heavily obscures its area, spreading around corners and through cracks. When the cloud appears and a creature is in it, when a creature enters the cloud for the first time on a turn, or when a creature ends its turn within the cloud it makes a Dexterity saving throw, taking 10d8 fire damage on a failed save, or half as much on a successful one.\n\nThe cloud can be dispelled by a wind of at least 10 miles per hour. After it is cast, the cloud moves 10 feet away from you in a direction that you choose at the start of each of your turns.", - "document": "a5e-ag", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "inescapable-malady-a5e", - "fields": { - "name": "Inescapable Malady", - "desc": "You infect your target with an arcane disease. At any time after you cast this spell, as long as you are on the same plane of existence as the target, you can use an action to deal 7d10 necrotic damage to the target. If this damage would reduce the target to 0 hit points, you can choose to leave it with 1 hit point.\n\nAs part of dealing the damage, you may expend a 7th-level spell slot to sustain the disease. Otherwise, the spell ends. The spell ends when you die.\n\nCasting remove curse, greater restoration, or heal on the target allows the target to make a Constitution saving throw against the disease. Otherwise the disease can only be cured by a wish spell.", - "document": "a5e-ag", - "level": 7, - "school": "necromancy", - "higher_level": "The damage increases by 1d10 for each slot level above 7th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "infernal-weapon-a5e", - "fields": { - "name": "Infernal Weapon", - "desc": "A weapon formed from the essence of Hell appears in your hands. You must use two hands to wield the weapon. If you let go of the weapon, it disappears and the spell ends.\n\nWhen you cast the spell, choose either a flame fork or ice spear. While the spell lasts, you can use an action to make a melee spell attack with the weapon against a creature within 10 feet of you.\n\nOn a hit, you deal 5d8 damage of a type determined by the weapon's form. On a critical hit, you inflict an additional effect.\n\nIn addition, on a hit with the infernal weapon, you can end the spell early to inflict an automatic critical hit.\n\n**Flame Fork.** The weapon deals fire damage.\n\nOn a critical hit, the target catches fire, taking 2d6 ongoing fire damage.\n\n**Ice Spear.** The weapon deals cold damage. On a critical hit, for 1 minute the target is slowed.\n\nAt the end of each of its turns a slowed creature can make a Constitution saving throw, ending the effect on itself on a success.\n\nA creature reduced to 0 hit points by an infernal weapon immediately dies in a gruesome fashion.\n\nFor example, a creature killed by an ice spear might freeze solid, then shatter into a thousand pieces. Each creature of your choice within 60 feet of the creature and who can see it when it dies must make a Wisdom saving throw. On a failure, a creature becomes frightened of you until the end of your next turn.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "inflict-wounds-a5e", - "fields": { - "name": "Inflict Wounds", - "desc": "You impart fell energies that suck away the target's life force, making a melee spell attack that deals 3d10 necrotic damage.", - "document": "a5e-ag", - "level": 1, - "school": "necromancy", - "higher_level": "The damage increases by 1d10 for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "insect-plague-a5e", - "fields": { - "name": "Insect Plague", - "desc": "A roiling cloud of insects appears, biting and stinging any creatures it touches. The cloud lightly obscures its area, spreads around corners, and is considered difficult terrain. When the cloud appears and a creature is in it, when a creature enters the cloud for the first time on a turn, or when a creature ends its turn within the cloud it makes a Constitution saving throw, taking 4d10 piercing damage on a failed save, or half as much on a successful one.", - "document": "a5e-ag", - "level": 5, - "school": "conjuration", - "higher_level": "The damage increases by 1d10 for each slot level above 5th.", - "target_type": "creature", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "instant-summons-a5e", - "fields": { - "name": "Instant Summons", - "desc": "Until the spell ends, a mystical bond connects the target and the precious stone used to cast this spell.\n\nAny time after, you may crush the stone and speak the name of the item, summoning it instantly into your hand no matter the physical, metaphysical, or planar distances involved, at which point the spell ends. If another creature is holding the item when the stone is crushed, the item is not summoned to you. Instead, the spell grants you the knowledge of who possesses it and a general idea of the creature's location.\n\nEach time you cast this spell, you must use a different precious stone.\n\nDispel magic or a similar effect targeting the stone ends the spell.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "invigorated-strikes-a5e", - "fields": { - "name": "Invigorated Strikes", - "desc": "You allow long-forgotten fighting instincts to boil up to the surface. For the duration of the spell, whenever the target deals damage with an unarmed strike or natural weapon, it deals 1d4 extra damage.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell with a 3rd-level spell slot, the extra damage increases from 1d4 to 1d6\\. When you cast this spell with a 5th-level spell slot, the extra damage increases to 1d8.\n\nWhen you cast this spell with a 7th-level spell slot, the extra damage increases to 1d10.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "invisibility-a5e", - "fields": { - "name": "Invisibility", - "desc": "You wreathe a creature in an illusory veil, making it invisible. Anything the target is carrying or wearing is also invisible as long as it remains in the target's possession. The spell's effects end for a target that attacks or casts a spell.", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "Target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "irresistible-dance-a5e", - "fields": { - "name": "Irresistible Dance", - "desc": "You murmur a tune that takes root in the target's mind until the spell ends, forcing it to caper, dance, and shuffle. At the start of each of its turns, the dancing target must use all of its movement to dance in its space, and it has disadvantage on attack rolls and saving throws. Attacks made against the target have advantage. On each of its turns, the target can use an action to repeat the saving throw, ending the spell on a successful save.", - "document": "a5e-ag", - "level": 6, - "school": "enchantment", - "higher_level": "Target one additional creature within 30 feet for each slot level above 6th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "jump-a5e", - "fields": { - "name": "Jump", - "desc": "You imbue a target with the ability to make impossible leaps. The target's jump distances increase 15 feet vertically and 30 feet horizontally.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "Each of the target's jump distances increase by 5 feet for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "knock-a5e", - "fields": { - "name": "Knock", - "desc": "Make a check against the DC of a lock or door using your spell attack bonus. On a success, you unlock or open the target with a loud metallic clanging noise easily audible at up to 300 feet. In addition, any traps on the object are automatically triggered. An item with multiple locks requires multiple castings of this spell to be opened.\n\nWhen you target an object held shut by an arcane lock, that spell is suppressed for 10 minutes, allowing the object to be opened and shut normally during that time.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "The level of the arcane lock you can suppress increases by 1 for each slot level above 3rd. In addition, if the level of your knock spell is 2 or more levels higher than that of the arcane lock, you may dispel the arcane lock instead of suppressing it.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "legend-lore-a5e", - "fields": { - "name": "Legend Lore", - "desc": "You learn significant information about the target. This could range from the most up-todate research, lore forgotten in old tales, or even previously unknown information. The spell gives you additional, more detailed information if you already have some knowledge of the target. The spell will not return any information for items not of legendary renown.\n\nThe knowledge you gain is always true, but may be obscured by metaphor, poetic language, or verse.\n\nIf you use the spell for a cursed tome, for instance, you may gain knowledge of the dire words spoken by its creator as they brought it into the world.", - "document": "a5e-ag", - "level": 5, - "school": "divination", - "higher_level": "Your intuition surrounding the target is enhanced and you gain advantage on one Investigation check regarding it for each slot level above 6th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lemure-transformation-a5e", - "fields": { - "name": "Lemure Transformation", - "desc": "Your body melts into a humanoid-shaped mass of liquid flesh. Each creature within 5 feet of you that can see the transformation must make a Wisdom saving throw. On a failure, the creature can't take reactions and is frightened of you until the start of its next turn. Until the end of your turn, your Speed becomes 20 feet, you can't speak, and you can move through spaces as narrow as 1 inch wide without squeezing. You revert to your normal form at the end of your turn.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 turn", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lesser-restoration-a5e", - "fields": { - "name": "Lesser Restoration", - "desc": "Your glowing hand removes one disease or condition affecting the target. Choose from blinded, deafened, paralyzed, or poisoned. At the Narrator's discretion, some diseases might not be curable with this spell.", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "levitate-a5e", - "fields": { - "name": "Levitate", - "desc": "Until the spell ends, the target rises vertically in the air up to 20 feet and remains floating there, able to move only by pushing or pulling on fixed objects or surfaces within its reach. This allows the target to move as if it was climbing.\n\nOn subsequent turns, you can use your action to alter the target's altitude by up to 20 feet in either direction so long as it remains within range. If you have targeted yourself you may move up or down as part of your movement.\n\nThe target floats gently to the ground if it is still in the air when the spell ends.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "When using a 5th-level spell slot the target can levitate or come to the ground at will. When using a 7th-level spell slot its duration increases to 1 hour and it no longer requires concentration.", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "light-a5e", - "fields": { - "name": "Light", - "desc": "Until the spell ends, the target emits bright light in a 20-foot radius and dim light an additional 20 feet. Light emanating from the target may be any color. Completely covering the target with something that is not transparent blocks the light. The spell ends when you use an action to dismiss it or if you cast it again.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lightning-bolt-a5e", - "fields": { - "name": "Lightning Bolt", - "desc": "A bolt of lightning arcs out from you in a direction you choose. Each creature in the area takes 8d6 lightning damage. The lightning ignites flammable objects in its path that aren't worn or carried by another creature.\n\nIf the spell is stopped by an object at least as large as its width, it ends there unless it deals enough damage to break through. When it does, it continues to the end of its area.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "Damage increases by 1d6 for every slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "lightning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "locate-animals-or-plants-a5e", - "fields": { - "name": "Locate Animals or Plants", - "desc": "Name or describe in detail a specific kind of beast or plant. The natural magics in range reveal the closest example of the target within 5 miles, including its general direction (north, west, southeast, and so on) and how many miles away it currently is.", - "document": "a5e-ag", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "5 miles", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "locate-creature-a5e", - "fields": { - "name": "Locate Creature", - "desc": "Name or describe in detail a creature familiar to you. The spell reveals the general direction the creature is in (south, east, northwest, and so on) if it exists within range. This includes its current trajectory if it's travelling.\n\nYou may locate specific, known creatures, or the nearest creature of a specific type (like a bat, gnome, or red dragon) provided that you have observed that type within 30 feet at least once. If a specific creature you seek is in a different form (for example a wildshaped druid) the spell is unable to find it.\n\nThe spell cannot travel across running water 10 feet across or wider—it is unable to find the creature and the trail ends.", - "document": "a5e-ag", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "1000 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "locate-object-a5e", - "fields": { - "name": "Locate Object", - "desc": "Name or describe in detail an object familiar to you. The spell reveals the general direction the object is in (south, east, northwest, and so on) if it exists within range. This includes its current trajectory if it's travelling.\n\nYou may locate a specific object known to you, provided that you have observed it within 30 feet at least once. You may also find the closest example of a certain type of object (for example an instrument, item of furniture, compass, or vase).\n\nWhen there is any thickness of lead in the direct path between you and the object the spell is unable to find it.", - "document": "a5e-ag", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "1000 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "longstrider-a5e", - "fields": { - "name": "Longstrider", - "desc": "Until the spell ends, the target's Speed increases by 10 feet.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "Target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mage-armor-a5e", - "fields": { - "name": "Mage Armor", - "desc": "Until the spell ends, the target is protected by a shimmering magical force. Its AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor, or if you use an action to dismiss it.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "The target gains 5 temporary hit points for each slot level above 1st. The temporary hit points last for the spell's duration.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mage-hand-a5e", - "fields": { - "name": "Mage Hand", - "desc": "A faintly shimmering phantasmal hand appears at a point you choose within range. It remains until you dismiss it as an action, or until you move more than 30 feet from it.\n\nYou can use an action to control the hand and direct it to do any of the following:\n\n* manipulate an object.\n* open an unlocked container or door.\n* stow or retrieve items from unlocked containers.\n\nThe hand cannot attack, use magic items, or carry more than 10 pounds.", - "document": "a5e-ag", - "level": 0, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "magic-circle-a5e", - "fields": { - "name": "Magic Circle", - "desc": "Magical energies surround the area and stop the type of designated creature from willingly entering by nonmagical means.\n\nDesignated creatures have disadvantage when attacking creatures within the area and are unable to charm, frighten, or possess creatures within the area. When a designated creature attempts to teleport or use interplanar travel to enter the area, it makes a Charisma saving throw or its attempt fails.\n\nYou may also choose to reverse this spell, trapping a creature of your chosen type within the area in order to protect targets outside it.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "The spell's duration increases by 1 hour for every slot level above 3rd.", - "target_type": "area", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "magic-jar-a5e", - "fields": { - "name": "Magic Jar", - "desc": "Your body becomes catatonic as your soul enters the vessel used as a material component. While within this vessel, you're aware of your surroundings as if you physically occupied the same space.\n\nThe only action you can take is to project your soul within range, whether to return to your living body (and end the spell) or to possess a humanoid.\n\nYou may not target creatures protected by protection from good and evil or magic circle spells. A creature you try to possess makes a Charisma saving throw or your soul moves from your vessel and into its body. The creature's soul is now within the container. On a successful save, the creature resists and you may not attempt to possess it again for 24 hours.\n\nOnce you possess a creature, you have control of it. Replace your game statistics with the creature's, except your Charisma, Intelligence and Wisdom scores. Your own cultural traits and class features also remain, and you may not use the creature's cultural traits or class features (if it has any).\n\nDuring possession, you can use an action to return to the vessel if it is within range, returning the host creature to its body. If the host body dies while you are possessing it, the creature also dies and you must make a Charisma save. On a success you return to the container if it's within range. Otherwise, you die.\n\nIf the vessel is destroyed, the spell ends and your soul returns to your body if it's within range. If your body is out of range or dead when you try to return, you die.\n\nThe possessed creature perceives the world as if it occupied the same space as the vessel, but may not take any actions or movement. If the vessel is destroyed while occupied by a creature other than yourself, the creature returns to its body if the body is alive and within range. Otherwise, the creature dies.\n\nThe vessel is destroyed when the spell ends.", - "document": "a5e-ag", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "magic-missile-a5e", - "fields": { - "name": "Magic Missile", - "desc": "A trio of glowing darts of magical force unerringly and simultaneously strike the targets, each dealing 1d4+1 force damage.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "Evoke one additional dart and target up to one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "magic-mouth-a5e", - "fields": { - "name": "Magic Mouth", - "desc": "The target is imbued with a spoken message of 25 words or fewer which it speaks when a trigger condition you choose is met. The message may take up to 10 minutes to convey.\n\nWhen your trigger condition is met, a magical mouth appears on the object and recites the message in the same voice and volume as you used when instructing it. If the object chosen has a mouth (for example, a painted portrait) this is where the mouth appears.\n\nYou may choose upon casting whether the message is a single event, or whether it repeats every time the trigger condition is met.\n\nThe trigger condition must be based upon audio or visual cues within 30 feet of the object, and may be highly detailed or as broad as you choose.\n\nFor example, the trigger could be when any attack action is made within range, or when the first spring shoot breaks ground within range.", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "magic-weapon-a5e", - "fields": { - "name": "Magic Weapon", - "desc": "Until the spell ends, the target becomes +1 magic weapon.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "The bonus increases by +1 for every 2 slot levels above 2nd (maximum +3).", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "magnificent-mansion-a5e", - "fields": { - "name": "Magnificent Mansion", - "desc": "You conjure an extradimensional residence within range. It has one entrance that is in a place of your choosing, has a faint luster to it, and is 5 feet wide and 10 feet tall. You and any designated creature may enter your mansion while the portal is open. You may open and close the portal while you are within 30 feet of it. Once closed the entrance is invisible.\n\nThe entrance leads to an opulent entrance hall, with many doors and halls coming from it. The atmosphere is welcoming, warm, and comfortable, and the whole place is sparkling clean.\n\nThe floor plan of the residence is up to you, but it must be made up of fifty or fewer 10-foot cubes.\n\nThe furniture and decor are chosen by you. The residence contains enough food to provide Supply for a number of people equal to 5 × your proficiency bonus. A staff of translucent, lustrous servants dwell within the residence. They may otherwise look how you wish. These servants obey your commands without question, and can perform the same nonhostile actions as a human servant—they might carry objects, prepare and serve food and drinks, clean, make simple repairs, and so on. Servants have access to the entire mansion but may not leave.\n\nAll objects and furnishings belonging to the mansion evaporate into shimmering smoke when they leave it. Any creature within the mansion when the spell ends is expelled into an unoccupied space near the entrance.", - "document": "a5e-ag", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "major-image-a5e", - "fields": { - "name": "Major Image", - "desc": "Until the spell ends, you create an image that appears completely real. The illusion includes sounds, smells, and temperature in addition to visual phenomena. None of the effects of the illusion are able to cause actual harm.\n\nWhile within range you can use an action to move the illusion. As the image moves you may also change its appearance to make the movement seem natural (like a roc moving its wings to fly) and also change the nonvisual elements of the illusion for the same reason (like the sound of beating wings as the roc flies).\n\nAny physical interaction immediately reveals the image is an illusion, as objects and creatures alike pass through it. An Investigation check against your spell save DC also reveals the image is an illusion.\n\nWhen a creature realizes the image is an illusion, the effects become fainter for that creature.", - "document": "a5e-ag", - "level": 3, - "school": "illusion", - "higher_level": "When cast using a 6th-level spell slot the illusion lasts until dispelled without requiring concentration.", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "mass-cure-wounds-a5e", - "fields": { - "name": "Mass Cure Wounds", - "desc": "Glowing energy rushes through the air and each target regains hit points equal to 3d8 + your spellcasting modifier.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "The hit points regained increase by 1d8 for each slot level above 5th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mass-heal-a5e", - "fields": { - "name": "Mass Heal", - "desc": "Healing energy erupts from your steepled hands and restores up to 700 hit points between the targets.\n\nCreatures healed in this way are also cured of any diseases, and any effect causing them to be blinded or deafened. In addition, on subsequent turns within the next minute you can use a bonus action to distribute any unused hit points.", - "document": "a5e-ag", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mass-healing-word-a5e", - "fields": { - "name": "Mass Healing Word", - "desc": "Healing energy flows from you in a wash of restorative power and each target regains hit points equal to 1d4 + your spellcasting ability modifier.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "The hit points regained increase by 1d4 for each slot level above 3rd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mass-suggestion-a5e", - "fields": { - "name": "Mass Suggestion", - "desc": "Creatures that cannot be charmed are immune to this spell. Suggest an activity phrased in a sentence or two. The targets are magically influenced to follow that course of activity. The suggestion must be worded to sound reasonable. Asking the targets to perform an action that is obviously harmful to them ends the spell.\n\nA target carries out the activity suggested by you as well as it can. The activity can last for the duration of the spell, and if it requires less time the spell ends after a target has carried out the activity.\n\nYou may specify trigger conditions that cause a target to perform a specific activity while the spell lasts. For example, you may suggest that the target takes off its clothes and dives the next time it sees a body of water. If the target does not see a body of water before the spell ends, the specific activity isn't performed.\n\nAny damage done to a target by you or an ally ends the spell for that creature.", - "document": "a5e-ag", - "level": 6, - "school": "enchantment", - "higher_level": "When cast using a 7th-level spell slot, the duration of the spell increases to 10 days. When cast using an 8th-level spell slot, the duration increases to 30 days. When cast using a 9th-level spell slot, the duration increases to a year and a day.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "maze-a5e", - "fields": { - "name": "Maze", - "desc": "The target is banished to a complex maze on its own demiplane, and remains there for the duration or until the target succeeds in escaping.\n\nThe target can use an action to attempt to escape, making an Intelligence saving throw. On a successful save it escapes and the spell ends. A creature with Labyrinthine Recall (or a similar trait) automatically succeeds on its save.\n\nWhen the spell ends the target reappears in the space it occupied before the spell was cast, or the closest unoccupied space if that space is occupied.", - "document": "a5e-ag", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "meld-into-stone-a5e", - "fields": { - "name": "Meld Into Stone", - "desc": "Until the spell ends, you meld yourself and your carried equipment into the target stone. Using your movement, you may enter the stone from any point you can touch. No trace of your presence is visible or detectable by nonmagical senses.\n\nWithin the stone, you can't see outside it and have disadvantage on Perception checks made to hear beyond it. You are aware of time passing, and may cast spells upon yourself. You may use your movement only to step out of the target where you entered it, ending the spell.\n\nIf the target is damaged such that its shape changes and you no longer fit within it, you are expelled and take 6d6 bludgeoning damage. Complete destruction of the target, or its transmutation into another substance, expels you and you take 50 bludgeoning damage. When expelled you fall prone into the closest unoccupied space near your entrance point.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "When using a 5th-level spell slot, you may reach out of the target to make spell attacks or ranged weapon attacks without ending the spell. You make these attacks with disadvantage.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mending-a5e", - "fields": { - "name": "Mending", - "desc": "You repair a single rip or break in the target object (for example, a cracked goblet, torn page, or ripped robe). The break must be smaller than 1 foot in all dimensions. The spell leaves no trace that the object was damaged.\n\nMagic items and constructs may be repaired in this way, but their magic is not restored. You gain an expertise die on maintenance checks if you are able to cast this spell on the item you are treating.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mental-grip-a5e", - "fields": { - "name": "Mental Grip", - "desc": "You conjure extensions of your own mental fortitude to keep your foes at bay. For the spell's duration, you can use an action to attempt to grapple a creature within range by making a concentration check against its maneuver DC.\n\nOn its turn, a target grappled in this way can use an action to attempt to escape the grapple, using your spell save DC instead of your maneuver DC.\n\nSuccessful escape attempts do not break your concentration on the spell.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "message-a5e", - "fields": { - "name": "Message", - "desc": "You point and whisper your message at the target.\n\nIt alone hears the message and may reply in a whisper audible only to you.\n\nYou can cast this spell through solid objects if you are familiar with the target and are certain it is beyond the barrier. The message is blocked by 3 feet of wood, 1 foot of stone, 1 inch of common metals, or a thin sheet of lead.\n\nThe spell moves freely around corners or through openings.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "meteor-swarm-a5e", - "fields": { - "name": "Meteor Swarm", - "desc": "Scorching spheres of flame strike the ground at 4 different points within range. The effects of a sphere reach around corners. Creatures and objects in the area take 14d6 fire damage and 14d6 bludgeoning damage, and flammable unattended objects catch on fire. If a creature is in the area of more than one sphere, it is affected only once.", - "document": "a5e-ag", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "1 mile", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mind-blank-a5e", - "fields": { - "name": "Mind Blank", - "desc": "The target is immune to psychic damage, any effect that would read its emotions or thoughts, divination spells, and the charmed condition.\n\nThis immunity extends even to the wish spell, and magical effects or spells of similar power that would affect the target's mind or gain information about it.", - "document": "a5e-ag", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mindshield-a5e", - "fields": { - "name": "Mindshield", - "desc": "The target has resistance to psychic damage and advantage on saving throws made to resist being charmed or frightened.", - "document": "a5e-ag", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "minor-illusion-a5e", - "fields": { - "name": "Minor Illusion", - "desc": "This spell creates a sound or image of an object.\n\nThe illusion disappears if dismissed or you cast the spell again.\n\nYou may create any sound you choose, ranging in volume from a whisper to a scream. You may choose one sound for the duration or change them at varying points before the spell ends. Sounds are audible outside the spell's area.\n\nVisual illusions may replicate any image and remain within the spell's area, but cannot create sound, light, smell, or other sensory effects.\n\nThe image is revealed as an illusion with any physical interaction as physical objects and creatures pass through it. An Investigation check against your spell save DC also reveals the image is an illusion. When a creature realizes the image is an illusion, the effects become fainter for that creature.", - "document": "a5e-ag", - "level": 0, - "school": "illusion", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mirage-arcane-a5e", - "fields": { - "name": "Mirage Arcane", - "desc": "You make terrain within the spell's area appear as another kind of terrain, tricking all senses (including touch).\n\nThe general shape of the terrain remains the same, however. A small town could resemble a woodland, a smooth road could appear rocky and overgrown, a deep pit could resemble a shallow pond, and so on.\n\nStructures may be altered in the similar way, or added where there are none. Creatures are not disguised, concealed, or added by the spell.\n\nThe illusion appears completely real in all aspects, including physical terrain, and can be physically interacted with. Clear terrain becomes difficult terrain, and vice versa. Any part of the illusory terrain such as a boulder, or water collected from an illusory stream, disappears immediately upon leaving the spell's area.\n\nCreatures with truesight see through the illusion, but are not immune to its effects. They may know that the overgrown path is in fact a well maintained road, but are still impeded by illusory rocks and branches.", - "document": "a5e-ag", - "level": 7, - "school": "illusion", - "higher_level": "", - "target_type": "area", - "range": "Sight", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mirror-image-a5e", - "fields": { - "name": "Mirror Image", - "desc": "A total of 3 illusory copies of yourself appear in your space. For the duration, these copies move with you and mimic your actions, creating confusion as to which is real.\n\nYou can use an action to dismiss them.\n\nEach time you're targeted by a creature's attack, roll a d20 to see if it targets you or one of your copies.\n\nWith 3 copies, a roll of 6 or higher means a copy is targeted. With two copies, a roll of 8 or higher targets a copy, and with 1 copy a roll of 11 or higher targets the copy.\n\nA copy's AC is 10 + your Dexterity modifier, and when it is hit by an attack a copy is destroyed.\n\nIt may be destroyed only by an attack that hits it.\n\nAll other damage and effects have no impact.\n\nAttacking creatures that have truesight, cannot see, have blindsight, or rely on other nonvisual senses are unaffected by this spell.", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "When using a 5th-level spell slot, the duration increases to concentration (1 hour).", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mislead-a5e", - "fields": { - "name": "Mislead", - "desc": "You become invisible. At the same time, an illusory copy of you appears where you're standing.\n\nThis invisibility ends when you cast a spell but the copy lasts until the spell ends.\n\nYou can use an action to move your copy up to twice your Speed, have it speak, make gestures, or behave however you'd like.\n\nYou may see and hear through your copy. Until the spell ends, you can use a bonus action to switch between your copy's senses and your own, or back again. While using your copy's senses you are blind and deaf to your body's surroundings.\n\nThe copy is revealed as an illusion with any physical interaction, as solid objects and creatures pass through it.", - "document": "a5e-ag", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "misty-step-a5e", - "fields": { - "name": "Misty Step", - "desc": "You teleport to an unoccupied space that you can see, disappearing and reappearing in a swirl of shimmering mist.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "modify-memory-a5e", - "fields": { - "name": "Modify Memory", - "desc": "The target has advantage on its saving throw if you are in combat with it. The target becomes charmed and incapacitated, though it can still hear you. Until the spell ends, any memories of an event that took place within the last 24 hours and lasted 10 minutes or less may be altered.\n\nYou may destroy the memory, have the target recall the event with perfect clarity, change the details, or create a new memory entirely with the same restrictions in time frame and length.\n\nYou must speak to the target in a language you both know to modify its memories and describe how the memory is changed. The target fills in the gaps in details based on your description.\n\nThe spell automatically ends if the target takes any damage or if it is targeted by another spell. If the spell ends before you have finished modifying its memories, the alteration fails. Otherwise, the alteration is complete when the spell ends and only greater restoration or remove curse can restore the memory.\n\nThe Narrator may deem a modified memory too illogical or nonsensical to affect a creature, in which case the modified memory is simply dismissed by the target. In addition, a modified memory doesn't specifically change the behavior of a creature, especially if the memory conflicts with the creature's personality, beliefs, or innate tendencies.\n\nThere may also be events that are practically unforgettable and after being modified can be remembered correctly when another creature succeeds on a Persuasion check to stir the target's memories. This check is made with disadvantage if the creature does not have indisputable proof on hand that is relevant to the altered memory.", - "document": "a5e-ag", - "level": 5, - "school": "enchantment", - "higher_level": "When using a 6th-level spell slot, the event can be from as far as 7 days ago. When using a 7th-level spell slot, the event can be from as far as 30 days ago. When using an 8th-level spell slot, the event can be from as far as 1 year ago. When using a 9th-level spell slot, any event can be altered.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "moonbeam-a5e", - "fields": { - "name": "Moonbeam", - "desc": "A beam of moonlight fills the area with dim light.\n\nWhen a creature enters the area for the first time on a turn or begins its turn in the area, it is struck by silver flames and makes a Constitution saving throw, taking 2d10 radiant damage on a failed save, or half as much on a success.\n\nShapechangers have disadvantage on this saving throw. On a failed save, a shapechanger is forced to take its original form while within the spell's light.\n\nOn your turn, you may use an action to move the beam 60 feet in any direction.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "The damage increases by 1d10 for each slot level above 2nd.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "move-earth-a5e", - "fields": { - "name": "Move Earth", - "desc": "You reshape the area, changing its elevation or creating and eliminating holes, walls, and pillars.\n\nThe only limitation is that the elevation change may not exceed half the area's horizontal dimensions.\n\nFor example, affecting a 40-by-40 area allows you to include 20 foot high pillars, holes 20 feet deep, and changes in terrain elevation of 20 feet or less.\n\nChanges that result in unstable terrain are subject to collapse.\n\nChanges take 10 minutes to complete, after which you can choose another area to affect. Due to the slow speed of transformation, it is nearly impossible for creatures to be hurt or captured by the spell.\n\nThis spell has no effect on stone, objects crafted from stone, or plants, though these objects will shift based on changes in the area.", - "document": "a5e-ag", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "2 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "nondetection-a5e", - "fields": { - "name": "Nondetection", - "desc": "The target is hidden from divination magic and cannot be perceived by magical scrying sensors.\n\nWhen used on a place or object, the spell only works if the target is no larger than 10 feet in any given dimension.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "pass-without-trace-a5e", - "fields": { - "name": "Pass Without Trace", - "desc": "You and allies within the area gain advantage and an expertise die on Dexterity (Stealth) checks as an aura of secrecy enshrouds you. Creatures in the area leave behind no evidence of their passage.", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "passwall-a5e", - "fields": { - "name": "Passwall", - "desc": "Until the spell ends, you create a passage extending into the target surface. When creating the passage you define its dimensions, as long as they do not exceed 5 feet in width, 8 feet in height, or 20 feet in depth.\n\nThe appearance of the passage has no effect on the stability of the surrounding environment.\n\nAny creatures or objects within the passage when the spell ends are expelled without harm into unoccupied spaces near where the spell was cast.", - "document": "a5e-ag", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "pestilence-a5e", - "fields": { - "name": "Pestilence", - "desc": "A swarm of insects fills the area. Creatures that begin their turn within the spell's area or who enter the area for the first time on their turn must make a Constitution saving throw or take 1d4 piercing damage. The pests also ravage any unattended organic material within their radius, such as plant, wood, or fabric.", - "document": "a5e-ag", - "level": 0, - "school": "conjuration", - "higher_level": "This spell's damage increases by 1d4 when you reach 5th level (2d4), 10th level (3d4), and 15th level (4d4).", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "phantasmal-killer-a5e", - "fields": { - "name": "Phantasmal Killer", - "desc": "You create an illusion that invokes the target's deepest fears. Only the target can see this illusion.\n\nWhen the spell is cast and at the end of each of its turns, the target makes a Wisdom saving throw or takes 4d10 psychic damage and becomes frightened.\n\nThe spell ends early when the target succeeds on its saving throw. A target that succeeds on its initial saving throw takes half damage.", - "document": "a5e-ag", - "level": 4, - "school": "illusion", - "higher_level": "The damage increases by 1d10 for each slot level above the 4th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "4d10", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "phantasmal-talons-a5e", - "fields": { - "name": "Phantasmal Talons", - "desc": "You silently clench your hand into a claw and invisible talons of pure will sprout from your fingers.\n\nThe talons do not interact with physical matter, but rip viciously at the psyche of any creature struck by them. For the duration, your unarmed strikes gain the finesse property and deal psychic damage. In addition, if your unarmed strike normally deals less than 1d4 damage, it instead deals 1d4 damage.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "phantom-steed-a5e", - "fields": { - "name": "Phantom Steed", - "desc": "You create an illusory Large creature with an appearance determined by you that comes into being with all the necessary equipment needed to use it as a mount. This equipment vanishes when more than 10 feet away from the creature.\n\nYou or any creature you allow may ride the steed, which uses the statistics for a riding horse but has a Speed of 100 feet and travels at 10 miles per hour at a steady pace (13 miles per hour at a fast pace).\n\nThe steed vanishes if it takes damage (disappearing instantly) or you use an action to dismiss it (fading away, giving the rider 1 minute to dismount).", - "document": "a5e-ag", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "planar-ally-a5e", - "fields": { - "name": "Planar Ally", - "desc": "An entity from beyond the realm material answers your call for assistance. You must know this entity whether it is holy, unholy, or beyond the bounds of mortal comprehension. The entity sends forth a servant loyal to it to aid you in your endeavors. If you have a specific servant in mind you may speak its name during the casting, but ultimately who is sent to answer your call is the entity's decision.\n\nThe creature that appears (a celestial, elemental, fey, or fiend), is under no compulsion to behave in any particular way other than how its nature and personality direct it. Any request made of the creature, simple or complex, requires an equal amount of payment which you must bargain with the creature to ascertain. The creature can request either items, sacrifices, or services in exchange for its assistance. A creature that you cannot communicate with cannot be bargained with.\n\nA task that can be completed in minutes is worth 100 gold per minute, a task that requires hours is worth 1, 000 gold per hour, and a task requiring days is worth 10, 000 gold per day (the creature can only accept tasks contained within a 10 day timeframe). A creature can often be persuaded to lower or raise prices depending on how a task aligns with its personality and the goals of its master —some require no payment at all if the task is deemed worthy. Additionally, a task that poses little or no risk only requires half the usual amount of payment, and an extremely dangerous task might call for double the usual payment. Still, only extreme circumstances will cause a creature summoned this way to accept tasks with a near certain result of death.\n\nA creature returns to its place of origin when a task is completed or if you fail to negotiate an agreeable task and payment. Should a creature join your party, it counts as a member of the group and receives a full portion of any experience gained.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "planar-binding-a5e", - "fields": { - "name": "Planar Binding", - "desc": "The target must remain within range for the entire casting of the spell (usually by means of a magic circle spell). Until the spell ends, you force the target to serve you. If the target was summoned through some other means, like a spell, the duration of the original spell is extended to match this spell's duration.\n\nOnce it is bound to you the target serves as best it can and follows your orders, but only to the letter of the instruction. A hostile or malevolent target actively seeks to take any advantage of errant phrasing to suit its nature. When a target completes a task you've assigned to it, if you are on the same plane of existence the target travels back to you to report it has done so. Otherwise, it returns to where it was bound and remains there until the spell ends.", - "document": "a5e-ag", - "level": 5, - "school": "abjuration", - "higher_level": "When using a 6th-level spell slot, its duration increases to 10 days. When using a 7th-level spell slot, its duration increases to 30 days. When using an 8th-level spell slot, its duration increases to 180 days. When using a 9th-level spell slot, its duration increases to a year and a day.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "plane-shift-a5e", - "fields": { - "name": "Plane Shift", - "desc": "Willing targets are transported to a plane of existence that you choose. If the destination is generally described, targets arrive near that destination in a location chosen by the Narrator. If you know the correct sequence of an existing teleportation circle (see teleportation circle), you can choose it as the destination (when the designated circle is too small for all targets to fit, any additional targets are shunted to the closest unoccupied spaces).\n\nAlternatively this spell can be used offensively to banish an unwilling target. You make a melee spell attack and on a hit the target makes a Charisma saving throw or is transported to a random location on a plane of existence that you choose. Once transported, you must spend 1 minute concentrating on this spell or the target returns to the last space it occupied (otherwise it must find its own way back).", - "document": "a5e-ag", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 8, - "saving_throw_ability": "charisma", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "plant-growth-a5e", - "fields": { - "name": "Plant Growth", - "desc": "You channel vitality into vegetation to achieve one of the following effects, chosen when casting the spell.\n\nEnlarged: Plants in the area are greatly enriched. Any harvests of the affected plants provide twice as much food as normal.\n\nRapid: All nonmagical plants in the area surge with the power of life. A creature that moves through the area must spend 4 feet of movement for every foot it moves. You can exclude one or more areas of any size from being affected.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "poison-skin-a5e", - "fields": { - "name": "Poison Skin", - "desc": "The target becomes poisonous to the touch. Until the spell ends, whenever a creature within 5 feet of the target damages the target with a melee weapon attack, the creature makes a Constitution saving throw. On a failed save, the creature becomes poisoned and takes 1d6 ongoing poison damage.\n\nA poisoned creature can make a Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe target of the spell also becomes bright and multicolored like a poisonous dart frog, giving it disadvantage on Dexterity (Stealth) checks.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "The target's skin is also covered in mucus, giving it advantage on saving throws and checks made to resist being grappled or restrained. In addition, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "poison" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "polymorph-a5e", - "fields": { - "name": "Polymorph", - "desc": "The target's body is transformed into a beast with a Challenge Rating equal to or less than its own. If the target doesn't have a Challenge Rating, use its level.\n\nUntil the spell ends or it is dropped to 0 hit points, the target's game statistics (including its hit points and mental ability scores) are replaced by the statistics of the chosen beast. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effects on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "power-word-kill-a5e", - "fields": { - "name": "Power Word Kill", - "desc": "With but a word you snuff out the target's life and it immediately dies. If you cast this on a creature with more than 100 hit points, it takes 50 hit points of damage.", - "document": "a5e-ag", - "level": 9, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "power-word-stun-a5e", - "fields": { - "name": "Power Word Stun", - "desc": "You utter a powerful word that stuns a target with 150 hit points or less. At the end of the target's turn, it makes a Constitution saving throw to end the effect. If the target has more than 150 hit points, it is instead rattled until the end of its next turn.", - "document": "a5e-ag", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "prayer-of-healing-a5e", - "fields": { - "name": "Prayer of Healing", - "desc": "The targets regain hit points equal to 2d8 + your spellcasting ability modifier.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "The hit points regained increase by 1d8 for each slot level above 2nd.", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "prestidigitation-a5e", - "fields": { - "name": "Prestidigitation", - "desc": "You wield arcane energies to produce minor effects. Choose one of the following:\n\n* create a single burst of magic that manifests to one of the senses (for example a burst of sound, sparks, or an odd odor).\n* clean or soil an object of 1 cubic foot or less.\n* light or snuff a flame.\n* chill, warm, or flavor nonliving material of 1 cubic foot or less for 1 hour.\n* color or mark an object or surface for 1 hour.\n* create an ordinary trinket or illusionary image that fits in your hand and lasts for 1 round.\n\nYou may cast this spell multiple times, though only three effects may be active at a time. Dismissing each effect requires an action.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "prismatic-spray-a5e", - "fields": { - "name": "Prismatic Spray", - "desc": "You unleash 8 rays of light, each with a different purpose and effect. For each target in the area, roll a d8 to determine the ray that affects it.\n\n1—Red: The target takes 10d6 fire damage.\n\n2—Orange: The target takes 10d6 acid damage.\n\n3—Yellow: The target takes 10d6 lightning damage.\n\n4—Green: The target takes 10d6 poison damage.\n\n5—Blue: The target takes 10d6 cold damage.\n\n6—Indigo: The target is restrained and at the end of each of its turns it makes a Constitution saving throw. Once it accumulates two failed saves it permanently turns to stone, or when it accumulates two successful saves the effect ends.\n\n7—Violet: The target is blinded. At the start of your next turn, the target makes a Wisdom saving throw, ending the effect on a success.\n\nOn a failed save, the target is banished to another random plane and is no longer blind. If it originated from another plane it returns there, while other creatures are generally cast into the Astral Plane or Ethereal Plane.\n\n8—Special: The target is hit by two rays.\n\nRoll a d8 twice to determine which rays, rerolling any 8s.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "prismatic-wall-a5e", - "fields": { - "name": "Prismatic Wall", - "desc": "You create a nontransparent barrier of prismatic energy that sheds bright light in a 100-foot radius and dim light for an additional 100 feet. You and creatures you choose at the time of casting are immune to the barrier's effects and may pass through it at will.\n\nThe barrier can be created as either a vertical wall or a sphere. If the wall intersects a space occupied by a creature the spell fails, you lose your action, and the spell slot is wasted.\n\nWhen a creature that can see the barrier moves within 20 feet of the area or starts its turn within 20 feet of the area, it makes a Constitution saving throw or it is blinded for 1 minute.\n\nThe wall has 7 layers, each layer of a different color in order from red to violet. Once a layer is destroyed, it is gone for the duration of the spell.\n\nTo pass or reach through the barrier a creature does so one layer at a time and must make a Dexterity saving throw for each layer or be subjected to that layer's effects. On a successful save, any damage taken from a layer is reduced by half.\n\nA rod of cancellation can destroy a prismatic wall, but an antimagic field has no effect.\n\nRed: The creature takes 10d6 fire damage.\n\nWhile active, nonmagical ranged attacks can't penetrate the barrier. The layer is destroyed by 25 cold damage.\n\nOrange: The creature takes 10d6 acid damage. While active, magical ranged attacks can't penetrate the barrier. The layer is destroyed by strong winds.\n\nYellow: The creature takes 10d6 lightning damage. This layer is destroyed by 60 force damage.\n\nGreen: The creature takes 10d6 poison damage. A passwall spell, or any spell of equal or greater level which can create a portal on a solid surface, destroys the layer.\n\nBlue: The creature takes 10d6 cold damage.\n\nThis layer is destroyed by 25 fire damage.\n\nIndigo: The creature is restrained and makes a Constitution saving throw at the end of each of its turns. Once it accumulates three failed saves it permanently turns to stone, or when it accumulates three successful saves the effect ends. This layer can be destroyed by bright light, such as that created by the daylight spell or a spell of equal or greater level.\n\nViolet: The creature is blinded. At the start of your next turn, the creature makes a Wisdom saving throw, ending the effect on a success.\n\nOn a failed save, the creature is banished to another random plane and is no longer blind. If it originated from another plane it returns there, while other creatures are generally cast into the Astral Plane or Ethereal Plane. This layer can be destroyed by dispel magic or a similar spell of equal or greater level capable of ending spells or magical effects.", - "document": "a5e-ag", - "level": 9, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "fire" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "private-sanctum-a5e", - "fields": { - "name": "Private Sanctum", - "desc": "You increase the magical security in an area, choosing one or more of the following:\n\n* sound cannot pass the edge of the area.\n* light and vision cannot pass the edge of the area.\n* sensors created by divination spells can neither enter the area nor appear within it.\n* creatures within the area cannot be targeted by divination spells.\n* nothing can teleport into or out of the area.\n* planar travel is impossible within the area.\n\nCasting this spell on the same area every day for a year makes the duration permanent.", - "document": "a5e-ag", - "level": 4, - "school": "abjuration", - "higher_level": "Increase the size of the sanctum by up to 100 feet for each slot level above 4th.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "produce-flame-a5e", - "fields": { - "name": "Produce Flame", - "desc": "You create a flame in your hand which lasts until the spell ends and does no harm to you or your equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nThe spell ends when you dismiss it, cast it again, or attack with the flame. As part of casting the spell or as an action on a following turn, you can fling the flame at a creature within 30 feet, making a ranged spell attack that deals 1d8 fire damage.", - "document": "a5e-ag", - "level": 0, - "school": "conjuration", - "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "programmed-illusion-a5e", - "fields": { - "name": "Programmed Illusion", - "desc": "You craft an illusory object, creature, or other effect which executes a scripted performance when a specific condition is met within 30 feet of the area.\n\nYou must describe both the condition and the details of the performance upon casting. The trigger must be based on something that can be seen or heard.\n\nOnce the illusion triggers, it runs its performance for up to 5 minutes before it disappears and goes dormant for 10 minutes. The illusion is undetectable until then and only reactivates when the condition is triggered and after the dormant period has passed.\n\nA creature can use an action to attempt an Investigation check against your spell save DC to reveal the spell's illusory nature. Physical interactions reveal the illusion for what it is as things can pass through it with ease. A creature aware of the illusion perceives the image as transparent and the sounds it generates hollow.", - "document": "a5e-ag", - "level": 6, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "project-image-a5e", - "fields": { - "name": "Project Image", - "desc": "You create an illusory duplicate of yourself that looks and sounds like you but is intangible. The duplicate can appear anywhere within range as long as you have seen the space before (it ignores any obstacles in the way).\n\nYou can use an action to move this duplicate up to twice your Speed and make it speak and behave in whatever way you choose, mimicking your mannerism with perfect accuracy. You can use a bonus action to see through your duplicate's eyes and hear through its ears until the beginning of your next turn. During this time, you are blind and deaf to your body's surroundings.\n\nA creature can use an action to attempt an Investigation check against your spell save DC to reveal the spell's illusory nature. Physical interactions reveal the illusion for what it is as things can pass through it with ease. A creature aware of the illusion perceives the image as transparent and the sounds it generates hollow.", - "document": "a5e-ag", - "level": 7, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 day", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "protection-from-energy-a5e", - "fields": { - "name": "Protection from Energy", - "desc": "Until the spell ends, the target has resistance to one of the following damage types: acid, cold, fire, lightning, thunder.", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "For each slot level above 2nd, the target gains resistance to one additional type of damage listed above, with a maximum number equal to your spellcasting ability modifier.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "protection-from-evil-and-good-a5e", - "fields": { - "name": "Protection from Evil and Good", - "desc": "The target is protected against the following types of creatures: aberrations, celestials, elementals, fey, fiends, and undead. Creatures of those types have disadvantage on attack rolls against the target and are unable to charm, frighten, or possess the target.\n\nIf the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against that effect.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "protection-from-poison-a5e", - "fields": { - "name": "Protection from Poison", - "desc": "The target has advantage on saving throws against being poisoned and resistance to poison damage.\n\nAdditionally, if the target is poisoned, you negate one poison affecting it. If more than one poison affects the target, you negate one poison you know is present (otherwise you negate one at random).", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "purify-food-and-drink-a5e", - "fields": { - "name": "Purify Food and Drink", - "desc": "You remove all poison and disease from a number of Supply equal to your proficiency bonus.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "Remove all poison and disease from an additional Supply for each slot level above 1st.", - "target_type": "point", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "rage-of-the-meek-a5e", - "fields": { - "name": "Rage of the Meek", - "desc": "You unleash the discipline of your magical training and let arcane power burn from your fists, consuming the material components of the spell. Until the spell ends you have resistance to bludgeoning, piercing, and slashing damage from nonmagical weapons, and on each of your turns you can use an action to make a melee spell attack against a target within 5 feet that deals 4d8 force damage on a successful hit.\n\nFor the duration, you cannot cast other spells or concentrate on other spells. The spell ends early if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end this spell early on your turn as a bonus action.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "When using a spell slot of 5th- or 6th-level, the damage increases to 5d8.\n\nWhen using a spell slot of 7th- or 8th-level, the damage increases to 6d8\\. When using a spell slot of 9th-level, the damage increases to 7d8.", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "raise-dead-a5e", - "fields": { - "name": "Raise Dead", - "desc": "You return the target to life, provided its soul is willing and able to return to its body. The creature returns to life with 1 hit point. The spell cannot return an undead creature to life.\n\nThe spell cures any poisons and nonmagical diseases that affected the creature at the time of death. It does not remove any magical diseases, curses, or other magical effects; these must be removed prior to the spell being cast, otherwise they immediately take effect when the creature returns to life.\n\nThe spell does not regrow limbs or organs, and it automatically fails if the target is missing any body parts necessary for life (like its heart or head).\n\nBeing raised from the dead takes a toll on the body, mind, and spirit. The target suffers 3 levels of fatigue and strife. At the conclusion of each long rest, the target removes one level of fatigue and strife until the target completely recovers.", - "document": "a5e-ag", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "raise-hell-a5e", - "fields": { - "name": "Raise Hell", - "desc": "You transform the land around you into a blasted hellscape. When you cast the spell, all nonmagical vegetation in the area immediately dies. In addition, you can create any of the following effects within the area. Fiends are immune to these effects, as are any creatures you specify at the time you cast the spell. A successful dispel magic ends a single effect, not the entire area.\n\nBrimstone Rubble. You can fill any number of unoccupied 5-foot squares in the area with smoldering brimstone. These spaces become difficult terrain. A creature that enters an affected square or starts its turn there takes 2d10 fire damage.\n\nField of Fear. Dread pervades the entire area.\n\nA creature that starts its turn in the area must make a successful Wisdom saving throw or be frightened until the start its next turn. While frightened, a creature must take the Dash action to escape the area by the safest available route on each of its turns. On a successful save, the creature becomes immune to this effect for 24 hours.\n\nSpawning Pits. The ground opens to create up to 6 pits filled with poisonous bile. Each pit fills a 10-foot cube that drops beneath the ground.\n\nWhen this spell is cast, any creature whose space is on a pit may make a Dexterity saving throw, moving to an unoccupied space next to the pit on a success. A creature that enters a pit or starts its turn there takes 15d6 poison damage, or half as much damage on a successful Constitution saving throw. A creature reduced to 0 hit points by this damage immediately dies and rises as a lemure at the start of its next turn. Lemures created this way obey your verbal commands, but they disappear when the spell ends or if they leave the area for any reason.\n\nUnhallowed Spires. Up to four spires of black ice rise from the ground in unoccupied 10-foot squares within the area. Each spire can be up to 66 feet tall and is immune to all damage and magical effects. Whenever a creature within 30 feet of a spire would regain hit points, it does not regain hit points and instead takes 3d6 necrotic damage.\n\nIf you maintain concentration on the spell for the full duration, the effects are permanent until dispelled.", - "document": "a5e-ag", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d10", - "damage_types": [ - "fire" - ], - "duration": "24 hours", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "ray-of-enfeeblement-a5e", - "fields": { - "name": "Ray of Enfeeblement", - "desc": "A black ray of necrotic energy shoots from your fingertip. Make a ranged spell attack against the target. On a hit, the target is weakened and only deals half damage with weapon attacks that use Strength.\n\nAt the end of each of the target's turns, it can make a Strength saving throw, ending the spell on a success.", - "document": "a5e-ag", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "ray-of-frost-a5e", - "fields": { - "name": "Ray of Frost", - "desc": "An icy beam shoots from your outstretched fingers.\n\nMake a ranged spell attack. On a hit, you deal 1d8 cold damage and reduce the target's Speed by 10 feet until the start of your next turn.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "regenerate-a5e", - "fields": { - "name": "Regenerate", - "desc": "You touch a creature, causing its body to spontaneously heal itself. The target immediately regains 4d8 + 15 hit points and regains 10 hit points per minute (1 hit point at the start of each of its turns).\n\nIf the target is missing any body parts, the lost parts are restored after 2 minutes. If a severed part is held against the stump, the limb instantaneously reattaches itself.", - "document": "a5e-ag", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "reincarnate-a5e", - "fields": { - "name": "Reincarnate", - "desc": "You return the target to life, provided the target's soul is willing and able to return to its body. If you only have a piece of the target, the spell reforms a new adult body for the soul to inhabit. Once reincarnated the target remembers everything from its former life, and retains all its proficiencies, cultural traits, and class features.\n\nThe target's heritage traits change according to its new form. The Narrator chooses the form of the new body, or rolls on Table: Reincarnation.", - "document": "a5e-ag", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "remove-curse-a5e", - "fields": { - "name": "Remove Curse", - "desc": "This spell ends a curse inflicted with a spell slot of 3rd-level or lower. If the curse was instead inflicted by a feature or trait, the spell ends a curse inflicted by a creature of Challenge Rating 6 or lower. If cast on a cursed object of Rare or lesser rarity, this spell breaks the owner's attunement to the item (although it does not end the curse on the object).", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "For each slot level above 3rd, the spell ends a curse inflicted either by a spell one level higher or by a creature with a Challenge Rating two higher. When using a 6th-level spell slot, the spell breaks the owner's attunement to a Very Rare item.\n\nWhen using a 9th-level spell slot, the spell breaks the owner's attunement to a Legendary item.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "resilient-sphere-a5e", - "fields": { - "name": "Resilient Sphere", - "desc": "A transparent sphere of force encloses the target.\n\nThe sphere is weightless and just large enough for the target to fit inside. The sphere can be destroyed without harming anyone inside by being dealt at least 15 force damage at once or by being targeted with a dispel magic spell cast using a 4th-level or higher spell slot. The sphere is immune to all other damage, and no spell effects, physical objects, or anything else can pass through, though a target can breathe while inside it. The target cannot be damaged by any attacks or effects originating from outside the sphere, and the target cannot damage anything outside of it.\n\nThe target can use an action to roll the sphere at half its Speed. Similarly, the sphere can be picked up and moved by other creatures.", - "document": "a5e-ag", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "resistance-a5e", - "fields": { - "name": "Resistance", - "desc": "The target gains an expertise die to one saving throw of its choice, ending the spell. The expertise die can be rolled before or after the saving throw is made.", - "document": "a5e-ag", - "level": 0, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "resurrection-a5e", - "fields": { - "name": "Resurrection", - "desc": "Provided the target's soul is willing and able to return to its body, so long as it is not undead it returns to life with all of its hit points.\n\nThe spell cures any poisons and nonmagical diseases that affected the target at the time of death.\n\nIt does not remove any magical diseases, curses, or other magical effects; these must be removed prior to the spell being cast, otherwise they immediately take effect when the target returns to life. The spell closes all mortal wounds and restores any missing body parts.\n\nBeing raised from the dead takes a toll on the body, mind, and spirit. The target takes a -4 penalty to attack rolls, saving throws, and ability checks.\n\nAt the conclusion of each long rest, the penalty is reduced by 1 until the target completely recovers.\n\nResurrecting a creature that has been dead for one year or longer is exhausting. Until you finish a long rest, you can't cast spells again and you have disadvantage on attack rolls, ability checks, and saving throws.", - "document": "a5e-ag", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "reverse-gravity-a5e", - "fields": { - "name": "Reverse Gravity", - "desc": "Gravity reverses in the area. Any creatures or objects not anchored to the ground fall upward until they reach the top of the area. A creature may make a Dexterity saving throw to prevent the fall by grabbing hold of something. If a solid object (such as a ceiling) is encountered, the affected creatures and objects impact against it with the same force as a downward fall. When an object or creature reaches the top of the area, it remains suspended there until the spell ends.\n\nWhen the spell ends, all affected objects and creatures fall back down.", - "document": "a5e-ag", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "revivify-a5e", - "fields": { - "name": "Revivify", - "desc": "The target returns to life with 1 hit point. The spell does not restore any missing body parts and cannot return to life a creature that died of old age.", - "document": "a5e-ag", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "rope-trick-a5e", - "fields": { - "name": "Rope Trick", - "desc": "One end of the target rope rises into the air until it hangs perpendicular to the ground. At the upper end, a nearly imperceptible entrance opens to an extradimensional space that can fit up to 8 Medium or smaller creatures. The entrance can be reached by climbing the rope. Once inside, the rope can be pulled into the extradimensional space.\n\nNo spells or attacks can cross into or out of the extradimensional space. Creatures inside the extradimensional space can see out of a 3-foot-by- 5-foot window centered on its entrance. Creatures outside the space can spot the entrance with a Perception check against your spell save DC. If they can reach it, creatures can pass in and out of the space.\n\nWhen the spell ends, anything inside the extradimensional space falls to the ground.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sacred-flame-a5e", - "fields": { - "name": "Sacred Flame", - "desc": "As long as you can see the target (even if it has cover) radiant holy flame envelops it, dealing 1d8 radiant damage.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sanctuary-a5e", - "fields": { - "name": "Sanctuary", - "desc": "You ward a creature against intentional harm.\n\nAny creature that makes an attack against or casts a harmful spell against the target must first make a Wisdom saving throw. On a failed save, the attacking creature must choose a different creature to attack or it loses the attack or spell. This spell doesn't protect the target from area effects, such as an explosion.\n\nThis spell ends early when the target attacks or casts a spell that affects an enemy creature.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "scorching-ray-a5e", - "fields": { - "name": "Scorching Ray", - "desc": "Three rays of blazing orange fire shoot from your fingertips. Make a ranged spell attack for each ray.\n\nOn a hit, the target takes 2d6 fire damage.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "Create an additional ray for each slot level above 2nd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "2d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "scrying-a5e", - "fields": { - "name": "Scrying", - "desc": "You can see and hear a specific creature that you choose. The difficulty of the saving throw for this spell is modified by your knowledge of the target and whether you possess a physical item with a connection to the target.\n\nOn a failed save, you can see and hear the target through an invisible sensor that appears within 10 feet of it and moves with the target. Any creature who can see invisibility or rolls a critical success on its saving throw perceives the sensor as a fist-sized glowing orb hovering in the air. Creatures cannot see or hear you through the sensor.\n\nIf you choose to target a location, the sensor appears at that location and is immobile.", - "document": "a5e-ag", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "searing-equation-a5e", - "fields": { - "name": "Searing Equation", - "desc": "You briefly go into a magical trance and whisper an alien equation which you never fully remember once the spell is complete. Each creature in the area takes 3d4 psychic damage and is deafened for 1 round.\n\nCreatures who are unable to hear the equation, immune to psychic damage, or who have an Intelligence score lower than 4 are immune to this spell.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "Creatures are deafened for 1 additional round for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d4", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "secret-chest-a5e", - "fields": { - "name": "Secret Chest", - "desc": "You stash a chest and its contents on the Ethereal Plane. To do so, you must touch the chest and its Tiny replica. The chest can hold up to 12 cubic feet of nonliving matter. Food stored in the chest spoils after 1 day.\n\nWhile the chest is in the Ethereal Plane, you can recall it to you at any point by using an action to touch the Tiny replica. The chest reappears in an unoccupied space on the ground within 5 feet of you. You can use an action at any time to return the chest to the Ethereal Plane so long as you are touching both the chest and its Tiny replica.\n\nThis effect ends if you cast the spell again on a different chest, if the replica is destroyed, or if you use an action to end the spell. After 60 days without being recalled, there is a cumulative 5% chance per day that the spell effect will end. If for whatever reason the spell ends while the chest is still in the Ethereal Plane, the chest and all of its contents are lost.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "see-invisibility-a5e", - "fields": { - "name": "See Invisibility", - "desc": "You can see invisible creatures and objects, and you can see into the Ethereal Plane. Ethereal creatures and objects appear translucent.", - "document": "a5e-ag", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "seed-bomb-a5e", - "fields": { - "name": "Seed Bomb", - "desc": "Up to four seeds appear in your hand and are infused with magic for the duration. As an action, a creature can throw one of these seeds at a point up to 60 feet away. Each creature within 5 feet of that point makes a Dexterity saving throw or takes 4d6 piercing damage. Depending on the material component used, a seed bomb also causes one of the following additional effects: Pinecone. Seed shrapnel explodes outward.\n\nA creature in the area of the exploding seed bomb makes a Constitution saving throw or it is blinded until the end of its next turn.\n\nSunflower. Seeds enlarge into a blanket of pointy needles. The area affected by the exploding seed bomb becomes difficult terrain for the next minute.\n\nTumbleweed. The weeds unravel to latch around creatures. A creature in the area of the exploding seed bomb makes a Dexterity saving throw or it becomes grappled until the end of its next turn.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "The damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "piercing" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "seeming-a5e", - "fields": { - "name": "Seeming", - "desc": "Until the spell ends or you use an action to dispel it, you can change the appearance of the targets. The spell disguises their clothing, weapons, and items as well as changes to their physical appearance. An unwilling target can make a Charisma saving throw to avoid being affected by the spell.\n\nYou can alter the appearance of the target as you see fit, including but not limited to: its heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, hair style and length, skin and eye coloration, sex and any other distinguishing features.\n\nYou cannot disguise the target as a creature of a different size category, and its limb structure remains the same; for example if it's bipedal, you can't use this spell to make it appear as a quadruped.\n\nThe disguise does not hold up to physical inspection. A creature that tries to grab an illusory hat, for example, finds its hand passes straight through the figment. To see through your disguise without such an inspection, a creature must use its action to make an Investigation check against your spell save DC.", - "document": "a5e-ag", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sending-a5e", - "fields": { - "name": "Sending", - "desc": "You send a message of 25 words or less to the target. It recognizes you as the sender and can reply immediately in kind. The message travels across any distance and into other planes of existence. If the target is on a different plane of existence than you, there is a 5% chance it doesn't receive your message. A target with an Intelligence score of at least 1 understands your message as you intend it (whether you share a language or not).", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Unlimited", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sequester-a5e", - "fields": { - "name": "Sequester", - "desc": "You magically hide away a willing creature or object. The target becomes invisible, and it cannot be traced or detected by divination or scrying sensors. If the target is a living creature, it falls into a state of suspended animation and stops aging.\n\nThe spell ends when the target takes damage or a condition you set occurs. The condition can be anything you choose, like a set amount of time or a specific event, but it must occur within or be visible within 1 mile of the target.", - "document": "a5e-ag", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shapechange-a5e", - "fields": { - "name": "Shapechange", - "desc": "You assume the form of a creature of a Challenge Rating equal to or lower than your level. The creature cannot be an undead or a construct, and it must be a creature you have seen. You change into the average version of that creature, and do not gain any class levels or the Spellcasting trait.\n\nUntil the spell ends or you are dropped to 0 hit points, your game statistics (including your hit points) are replaced by the statistics of the chosen creature, though you keep your Charisma, Intelligence, and Wisdom scores. You also keep your skill and saving throw proficiencies as well as gaining the creature's. However, if you share a proficiency with the creature, and the creature's bonus is higher than yours, you use the creature's bonus. You keep all of your features, skills, and traits gained from your class, heritage, culture, background, or other sources, and can use them as long as the creature is physically capable of doing so. You do not keep any special senses, such as darkvision, unless the creature also has them. You can only speak if the creature is typically capable of speech. You cannot use legendary actions or lair actions. Your gear melds into the new form. Equipment that merges with your form has no effect until you leave the form.\n\nWhen you revert to your normal form, you return to the number of hit points you had before you transformed. If the spell's effect on you ends early from dropping to 0 hit points, any excess damage carries over to your normal form and knocks you unconscious if the damage reduces you to 0 hit points.\n\nUntil the spell ends, you can use an action to change into another form of your choice. The new form follows all the rules as the previous form, with one exception: if the new form has more hit points than your previous form, your hit points remain at their previous value.", - "document": "a5e-ag", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "shatter-a5e", - "fields": { - "name": "Shatter", - "desc": "An ear-splitting ringing sound emanates through the area. Creatures in the area take 3d8 thunder damage. A creature made of stone, metal, or other inorganic material has disadvantage on its saving throw.\n\nAny nonmagical items within the area that are not worn or carried also take damage.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above 2nd.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shattering-barrage-a5e", - "fields": { - "name": "Shattering Barrage", - "desc": "You create three orbs of jagged broken glass and hurl them at targets within range. You can hurl them at one target or several.\n\nMake a ranged spell attack for each orb. On a hit, the target takes 2d4 slashing damage and the shards of broken glass remain suspended in midair, filling the area they occupy (or 5 feet of the space they occupy if the creature is Large-sized or larger) with shards of suspended broken glass. Whenever a creature enters an area of broken glass for the first time or starts its turn there, it must succeed on a Dexterity saving throw or take 2d4 slashing damage.\n\nThe shards of broken glass dissolve into harmless wisps of sand and blow away after 1 minute.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "You create one additional orb for each slot level above 2nd.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": true, - "damage_roll": "2d4", - "damage_types": [ - "slashing" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shield-a5e", - "fields": { - "name": "Shield", - "desc": "You create a shimmering arcane barrier between yourself and an oncoming attack. Until the spell ends, you gain a +5 bonus to your AC (including against the triggering attack) and any magic missile targeting you is harmlessly deflected.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shield-of-faith-a5e", - "fields": { - "name": "Shield of Faith", - "desc": "Until the spell ends, a barrier of divine energy envelops the target and increases its AC by +2.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "The bonus to AC increases by +1 for every three slot levels above 1st.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "shillelagh-a5e", - "fields": { - "name": "Shillelagh", - "desc": "You imbue the target with nature's magical energy. Until the spell ends, the target becomes a magical weapon (if it wasn't already), its damage becomes 1d8, and you can use your spellcasting ability instead of Strength for melee attack and damage rolls made using it. The spell ends if you cast it again or let go of the target.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shocking-grasp-a5e", - "fields": { - "name": "Shocking Grasp", - "desc": "Electricity arcs from your hand to shock the target. Make a melee spell attack (with advantage if the target is wearing armor made of metal). On a hit, you deal 1d8 lightning damage, and the target can't take reactions until the start of its next turn as the electricity courses through its body.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "silence-a5e", - "fields": { - "name": "Silence", - "desc": "Until the spell ends, a bubble of silence envelops the area, and no sound can travel in or out of it.\n\nWhile in the area a creature is deafened and immune to thunder damage. Casting a spell that requires a vocalized component is impossible while within the area.", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "silent-image-a5e", - "fields": { - "name": "Silent Image", - "desc": "You create an illusory image of a creature, object, or other visible effect within the area. The illusion is purely visual, it cannot produce sound or smell, and items and other creatures pass through it.\n\nAs an action, you can move the image to any point within range. The image's movement can be natural and lifelike (for example, a ball will roll and a bird will fly).\n\nA creature can spend an action to make an Investigation check against your spell save DC to determine if the image is an illusion. On a success, it is able to see through the image.", - "document": "a5e-ag", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "simulacrum-a5e", - "fields": { - "name": "Simulacrum", - "desc": "You sculpt an illusory duplicate of the target from ice and snow. The duplicate looks exactly like the target and uses all the statistics of the original, though it is formed without any gear, and has only half of the target's hit point maximum. The duplicate is a creature, can take actions, and be affected like any other creature. If the target is able to cast spells, the duplicate cannot cast spells of 7th-level or higher.\n\nThe duplicate is friendly to you and creatures you designate. It follows your spoken commands, and moves and acts on your turn in combat. It is a static creature and it does not learn, age, or grow, so it never increases in levels and cannot regain any spent spell slots.\n\nWhen the simulacrum is damaged you can repair it in an alchemy lab using components worth 100 gold per hit point it regains. The simulacrum remains until it is reduced to 0 hit points, at which point it crumbles into snow and melts away immediately.\n\nIf you cast this spell again, any existing simulacrum you have created with this spell is instantly destroyed.", - "document": "a5e-ag", - "level": 7, - "school": "illusion", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sleep-a5e", - "fields": { - "name": "Sleep", - "desc": "You send your enemies into a magical slumber.\n\nStarting with the target with the lowest hit points (ignoring unconscious creatures), targets within the area fall unconscious in ascending order according to their hit points. Slumbering creatures stay asleep until the spell ends, they take damage, or someone uses an action to physically wake them.\n\nAs each target falls asleep, subtract its hit points from the total before moving on to the next target.\n\nA target's hit points must be equal to or less than the total remaining for the spell to have any effect.\n\nIf the spell puts no creatures to sleep, the creature in the area with the lowest hit point total is rattled until the beginning of its next turn.\n\nConstructs and undead are not affected by this spell.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "The spell affects an additional 2d10 hit points worth of creatures for each slot level above 1st.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sleet-storm-a5e", - "fields": { - "name": "Sleet Storm", - "desc": "You conjure a storm of freezing rain and sleet in the area. The ground in the area is covered with slick ice that makes it difficult terrain, exposed flames in the area are doused, and the area is heavily obscured.\n\nWhen a creature enters the area for the first time on a turn or starts its turn there, it makes a Dexterity saving throw or falls prone.\n\nWhen a creature concentrating on a spell starts its turn in the area or first enters into the area on a turn, it makes a Constitution saving throw or loses concentration.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "slow-a5e", - "fields": { - "name": "Slow", - "desc": "You alter the flow of time around your targets and they become slowed. On a successful saving throw, a target is rattled until the end of its next turn.\n\nIn addition, if a slowed target casts a spell with a casting time of 1 action, roll a d20\\. On an 11 or higher, the target doesn't finish casting the spell until its next turn. The target must use its action on that turn to complete the spell or the spell fails.\n\nAt the end of each of its turns, a slowed target repeats the saving throw to end the spell's effect on it.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "soulwrought-fists-a5e", - "fields": { - "name": "Soulwrought Fists", - "desc": "The target's hands harden with inner power, turning dexterous fingers into magical iron cudgels.\n\nUntil the spell ends, the target drops anything it is holding and cannot use its hands to grasp objects or perform complex tasks. A target can still cast any spell that does not specifically require its hands.\n\nWhen making unarmed strikes, the target can use its spellcasting ability or Dexterity (its choice) instead of Strength for the attack and damage rolls of unarmed strikes. In addition, the target's unarmed strikes deal 1d8 bludgeoning damage and count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "spare-the-dying-a5e", - "fields": { - "name": "Spare the Dying", - "desc": "A jolt of healing energy flows through the target and it becomes stable.", - "document": "a5e-ag", - "level": 0, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "speak-with-animals-a5e", - "fields": { - "name": "Speak with Animals", - "desc": "You call upon the secret lore of beasts and gain the ability to speak with them. Beasts have a different perspective of the world, and their knowledge and awareness is filtered through that perspective. At a minimum, beasts can tell you about nearby locations and monsters, including things they have recently perceived. At the Narrator's discretion, you might be able to persuade a beast to perform a small favor for you.", - "document": "a5e-ag", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "speak-with-dead-a5e", - "fields": { - "name": "Speak with Dead", - "desc": "You call forth the target's memories, animating it enough to answer 5 questions. The corpse's knowledge is limited: it knows only what it knew in life and cannot learn new information or speak about anything that has occurred since its death. It speaks only in the languages it knew, and is under no compulsion to offer a truthful answer if it has reason not to. Answers might be brief, cryptic, or repetitive.\n\nThis spell does not return a departed soul, nor does it have any effect on an undead corpse, or one without a mouth.", - "document": "a5e-ag", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "speak-with-plants-a5e", - "fields": { - "name": "Speak with Plants", - "desc": "Your voice takes on a magical timbre, awakening the targets to limited sentience. Until the spell ends, the targets can communicate with you and follow simple commands, telling you about recent events including creatures that have passed, weather, and nearby locations.\n\nThe targets have a limited mobility: they can move their branches, tendrils, and stalks freely. This allows them to turn ordinary terrain into difficult terrain, or make difficult terrain caused by vegetation into ordinary terrain for the duration as vines and branches move at your request. This spell can also release a creature restrained by an entangle spell.\n\nAt the Narrator's discretion the targets may be able to perform other tasks, though each must remain rooted in place. If a plant creature is in the area, you can communicate with it but it is not compelled to follow your requests.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "spider-climb-a5e", - "fields": { - "name": "Spider Climb", - "desc": "The target gains the ability to walk on walls and upside down on ceilings, as well as a climbing speed equal to its base Speed.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "You can affect one additional target for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "spike-growth-a5e", - "fields": { - "name": "Spike Growth", - "desc": "You cause sharp spikes and thorns to sprout in the area, making it difficult terrain. When a creature enters or moves within the area, it takes 2d4 piercing damage for every 5 feet it travels.\n\nYour magic causes the ground to look natural. A creature that can't see the area when the spell is cast can spot the hazardous terrain just before entering it by making a Perception check against your spell save DC.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "piercing" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "spirit-guardians-a5e", - "fields": { - "name": "Spirit Guardians", - "desc": "You call down spirits of divine fury, filling the area with flitting spectral forms. You choose the form taken by the spirits.\n\nCreatures of your choice halve their Speed while in the area. When a creature enters the area for the first time on a turn or starts its turn there, it takes 3d6 radiant or necrotic damage (your choice).", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "necrotic", - "radiant" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "spiritual-weapon-a5e", - "fields": { - "name": "Spiritual Weapon", - "desc": "You create a floating, incandescent weapon with an appearance of your choosing and use it to attack your enemies. On the round you cast it, you can make a melee spell attack against a creature within 5 feet of the weapon that deals force damage equal to 1d8 + your spellcasting ability modifier.\n\nAs a bonus action on subsequent turns until the spell ends, you can move the weapon up to 20 feet and make another attack against a creature within 5 feet of it.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for every two slot levels above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sporesight-a5e", - "fields": { - "name": "Sporesight", - "desc": "You throw a mushroom at a point within range and detonate it, creating a cloud of spores that fills the area. The cloud of spores travels around corners, and the area is considered lightly obscured for everyone except you. Creatures and objects within the area are covered in spores.\n\nUntil the spell ends, you know the exact location of all affected objects and creatures. Any attack roll you make against an affected creature or object has advantage, and the affected creatures and objects can't benefit from being invisible.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "stinking-cloud-a5e", - "fields": { - "name": "Stinking Cloud", - "desc": "You create a roiling, noxious cloud that hinders creatures and leaves them retching. The cloud spreads around corners and lingers in the air until the spell ends.\n\nThe area is heavily obscured. A creature in the area at the start of its turn makes a Constitution saving throw or uses its action to retch and reel.\n\nCreatures that don't need to breathe or are immune to poison automatically succeed on the save.\n\nA moderate wind (10 miles per hour) disperses the cloud after 4 rounds, a strong wind (20 miles per hour) after 1 round.", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "The spell's area increases by 5 feet for every 2 slot levels above 3rd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "stone-shape-a5e", - "fields": { - "name": "Stone Shape", - "desc": "You reshape the target into any form you choose.\n\nFor example, you could shape a large rock into a weapon, statue, or chest, make a small passage through a wall (as long as it isn't more than 5 feet thick), seal a stone door shut, or create a hiding place. The target can have up to two hinges and a latch, but finer mechanical detail isn't possible.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "You may select one additional target for every slot level above 4th.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "stoneskin-a5e", - "fields": { - "name": "Stoneskin", - "desc": "Until the spell ends, the target's flesh becomes as hard as stone and it gains resistance to nonmagical bludgeoning, piercing, and slashing damage.", - "document": "a5e-ag", - "level": 4, - "school": "abjuration", - "higher_level": "When using a 7th-level spell slot, the target gains resistance to magical bludgeoning, piercing, and slashing damage.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "storm-kick-a5e", - "fields": { - "name": "Storm Kick", - "desc": "You must be able to move in order to cast this spell.\n\nYou leap into the air and flash across the battlefield, arriving feet-first with the force of a thunderbolt. As part of casting this spell, make a ranged spell attack against a creature you can see within range. If you hit, you instantly flash to an open space of your choosing adjacent to the target, dealing bludgeoning damage equal to 1d6 + your spellcasting modifier plus 3d8 thunder damage and 6d8 lightning damage. If your unarmed strike normally uses a larger die, use that instead of a d6\\. If you miss, you may still choose to teleport next to the target.", - "document": "a5e-ag", - "level": 5, - "school": "transmutation", - "higher_level": "When using a 6th-level spell slot or higher, if you are able to make more than one attack when you take the Attack action, you may make an additional melee weapon attack against the target. When using a 7th-level spell slot, you may choose an additional target within 30 feet of the target for each spell slot level above 6th, forcing each additional target to make a Dexterity saving throw or take 6d8 lightning damage.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "storm-of-vengeance-a5e", - "fields": { - "name": "Storm of Vengeance", - "desc": "You conjure a churning storm cloud that spreads to cover the target area. As it forms, lightning and thunder mix with howling winds, and each creature beneath the cloud makes a Constitution saving throw or takes 2d6 thunder damage and becomes deafened for 5 minutes.\n\nUntil the spell ends, at the start of your turn the cloud produces additional effects: Round 2\\. Acidic rain falls throughout the area dealing 1d6 acid damage to each creature and object beneath the cloud.\n\nRound 3\\. Lightning bolts strike up to 6 creatures or objects of your choosing that are beneath the cloud (no more than one bolt per creature or object). A creature struck by this lightning makes a Dexterity saving throw, taking 10d6 lightning damage on a failed save, or half damage on a successful save.\n\nRound 4\\. Hailstones fall throughout the area dealing 2d6 bludgeoning damage to each creature beneath the cloud.\n\nRound 5�10\\. Gusts and freezing rain turn the area beneath the cloud into difficult terrain that is heavily obscured. Ranged weapon attacks are impossible while a creature or its target are beneath the cloud. When a creature concentrating on a spell starts its turn beneath the cloud or enters into the area, it makes a Constitution saving throw or loses concentration. Gusts of strong winds between 20�50 miles per hour automatically disperse fog, mists, and similar effects (whether mundane or magical). Finally, each creature beneath the cloud takes 1d6 cold damage.", - "document": "a5e-ag", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "Sight", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "thunder" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "suggestion-a5e", - "fields": { - "name": "Suggestion", - "desc": "Creatures that cannot be charmed are immune to this spell. Suggest an activity phrased in a sentence or two. The target is magically influenced to follow that course of activity. The suggestion must be worded to sound reasonable. Asking the target to perform an action that is obviously harmful to it ends the spell.\n\nThe target carries out the activity suggested by you as well as it can. The activity can last for the duration of the spell, and if it requires less time the spell ends after the target has carried out the activity.\n\nYou may specify trigger conditions that cause the target to perform a specific activity while the spell lasts. For example, you may suggest that the target takes off its clothes and dives the next time it sees a body of water. If the target does not see a body of water before the spell ends, the specific activity isn't performed.\n\nAny damage done to the target by you or an ally ends the spell for that creature.", - "document": "a5e-ag", - "level": 2, - "school": "enchantment", - "higher_level": "When using a 4th-level spell slot, the duration is concentration, up to 24 hours. When using a 5th-level spell slot, the duration is 7 days. When using a 7th-level spell slot, the duration is 1 year. When using a 9th-level spell slot, the suggestion lasts until it is dispelled.\n\nAny use of a 5th-level or higher spell slot grants a duration that doesn't require concentration.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "sunbeam-a5e", - "fields": { - "name": "Sunbeam", - "desc": "Oozes and undead have disadvantage on saving throws made to resist this spell. A beam of radiant sunlight streaks from your hand. Each creature in the area takes 6d8 radiant damage and is blinded for 1 round.\n\nUntil the spell ends, you can use an action on subsequent turns to create a new beam of sunlight and a mote of brilliant radiance lingers on your hand, shedding bright light in a 30-foot radius and dim light an additional 30 feet. This light is sunlight.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "When using an 8th-level spell slot the damage increases by 1d8.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "radiant" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "sunburst-a5e", - "fields": { - "name": "Sunburst", - "desc": "Oozes and undead have disadvantage on saving throws made to resist this spell. You create a burst of radiant sunlight that fills the area. Each creature in the area takes 12d6 radiant damage and is blinded for 1 minute. A creature blinded by this spell repeats its saving throw at the end of each of its turns, ending the blindness on a successful save.\n\nThis spell dispels any magical darkness in its area.", - "document": "a5e-ag", - "level": 8, - "school": "evocation", - "higher_level": "When using a 9th-level spell slot the damage increases by 2d6.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "12d6", - "damage_types": [ - "radiant" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "symbol-a5e", - "fields": { - "name": "Symbol", - "desc": "You inscribe a potent glyph on the target, setting a magical trap for your enemies. If the glyph is moved more than 10 feet from its original position, or if it comes within 20 feet of another glyph that you have cast, the spell ends. Finding the Tiny glyph requires an Investigation check against your spell save DC.\n\nDescribe the actions a creature must perform to trigger the spell, such as approaching within a certain distance, opening or touching the object the glyph is inscribed on, or seeing or reading the glyph. The creature must have a clear path to the glyph to trigger it. You can specify certain creatures which don't trigger the spell, such as those with a certain appearance or those who speak a certain phrase. Once the glyph is triggered, the spell ends.\n\nWhen triggered, the glyph sheds dim light in a 60-foot radius for 10 minutes, after which the spell ends. Each creature within the sphere's area is targeted by the glyph, as are creatures that enter the sphere for the first time on a turn.\n\nWhen you cast the spell, choose one of the following effects.\n\nDeath: Creatures in the area make a Constitution saving throw, taking 10d10 necrotic damage on a failed save, or half as much on a successful save.\n\nDiscord: Creatures in the area make a Constitution saving throw or bicker and argue with other creatures for 1 minute. While bickering, a creature cannot meaningfully communicate and it has disadvantage on attack rolls and ability checks.\n\nConfused: Creatures in the area make an Intelligence saving throw or become confused for 1 minute.\n\nFear: Creatures in the area make a Wisdom saving throw or are frightened for 1 minute.\n\nWhile frightened, a creature drops whatever it is holding and must move at least 30 feet away from the glyph on each of its turns.\n\nHopelessness: Creatures in the area make a Charisma saving throw or become overwhelmed with despair for 1 minute. While despairing, a creature can't attack or target any creature with harmful features, spells, traits, or other magical effects.\n\nPain: Creatures in the area make a Constitution saving throw or become incapacitated for 1 minute.\n\nSleep: Creatures in the area make a Wisdom saving throw or fall unconscious for 10 minutes.\n\nA sleeping creature awakens if it takes damage or an action is used to wake it.\n\nStunning: Creatures in the area make a Wisdom saving throw or become stunned for 1 minute.", - "document": "a5e-ag", - "level": 7, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "tearful-sonnet-a5e", - "fields": { - "name": "Tearful Sonnet", - "desc": "You quietly play a tragedy, a song that fills those around you with magical sorrow. Each creature in the area makes a Charisma saving throw at the start of its turn. On a failed save, a creature takes 2d4 psychic damage, it spends its action that turn crying, and it can't take reactions until the start of its next turn. Creatures that are immune to the charmed condition automatically succeed on this saving throw.\n\nIf a creature other than you hears the entire song (remaining within the spell's area from the casting through the duration) it is so wracked with sadness that it is stunned for 1d4 rounds.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", - "document": "a5e-ag", - "level": 4, - "school": "enchantment", - "higher_level": "The damage increases by 2d4 for each slot level above 4th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "psychic" - ], - "duration": "3 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "telekinesis-a5e", - "fields": { - "name": "Telekinesis", - "desc": "You move the target with the power of your mind.\n\nUntil the spell ends you can use an action on subsequent turns to pick a new target or continue to affect the same target. Depending on whether you target a creature or an object, the spell has the following effects:\n\n**Creature.** The target makes a Strength check against your spell save DC or it is moved up to 30 feet in any direction and restrained (even in mid-air) until the end of your next turn. You cannot move a target beyond the range of the spell.\n\n**Object.** You move the target 30 feet in any direction. If the object is worn or carried by a creature, that creature can make a Strength check against your spell save DC. If the target fails, you pull the object away from that creature and can move it up to 30 feet in any direction, but not beyond the range of the spell.\n\nYou can use telekinesis to finely manipulate objects as though you were using them yourself—you can open doors and unscrew lids, dip a quill in ink and make it write, and so on.", - "document": "a5e-ag", - "level": 5, - "school": "transmutation", - "higher_level": "When using an 8th-level spell slot, this spell does not require your concentration.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "telepathic-bond-a5e", - "fields": { - "name": "Telepathic Bond", - "desc": "Until the spell ends, a telepathic link connects the minds of the targets. So long as they remain on the same plane of existence, targets may communicate telepathically with each other regardless of language and across any distance.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "The spell's duration increases by 1d4 hours for each slot level above 5th.", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 8, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "teleport-a5e", - "fields": { - "name": "Teleport", - "desc": "You teleport the targets instantly across vast distances. When you cast this spell, choose a destination. You must know the location you're teleporting to, and it must be on the same plane of existence.\n\nTeleportation is difficult magic and you may arrive off-target or somewhere else entirely depending on how familiar you are with the location you're teleporting to. When you teleport, the Narrator rolls 1d100 and consults Table: Teleport Familiarity.\n\nFamiliarity is determined as follows: Permanent Circle: A permanent teleportation circle whose sigil sequence you know (see teleportation circle).\n\nAssociated Object: You have an object taken from the target location within the last 6 months, such as a piece of wood from the pew in a grand temple or a pinch of grave dust from a vampire's hidden redoubt.\n\nVery Familiar: A place you have frequented, carefully studied, or can see at the time you cast the spell.\n\nSeen Casually: A place you have seen more than once but don't know well. This could be a castle you've passed by but never visited, or the farms you look down on from your tower of ivory.\n\nViewed Once: A place you have seen once, either in person or via magic.\n\nDescription: A place you only know from someone else's description (whether spoken, written, or even marked on a map).\n\nFalse Destination: A place that doesn't actually exist. This typically happens when someone deceives you, either intentionally (like a wizard creating an illusion to hide their actual tower) or unintentionally (such as when the location you attempt to teleport to no longer exists).\n\nYour arrival is determined as follows: On Target: You and your targets arrive exactly where you mean to.\n\nOff Target: You and your targets arrive some distance away from the target in a random direction. The further you travel, the further away you are likely to arrive. You arrive off target by a number of miles equal to 1d10 × 1d10 percent of the total distance of your trip.\n\nIf you tried to travel 1, 000 miles and roll a 2 and 4 on the d10s, you land 6 percent off target and arrive 60 miles away from your intended destination in a random direction. Roll 1d8 to randomly determine the direction: 1—north, 2 —northeast, 3 —east, 4 —southeast, 5—south, 6 —southwest, 7—west, 8—northwest.\n\nSimilar Location: You and your targets arrive in a different location that somehow resembles the target area. If you tried to teleport to your favorite inn, you might end up at a different inn, or in a room with much of the same decor.\n\nTypically you appear at the closest similar location, but that is not always the case.\n\nMishap: The spell's magic goes awry, and each teleporting creature or object takes 3d10 force damage. The Narrator rerolls on the table to determine where you arrive. When multiple mishaps occur targets take damage each time.", - "document": "a5e-ag", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "Special", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d10", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "teleportation-circle-a5e", - "fields": { - "name": "Teleportation Circle", - "desc": "You draw a 10-foot diameter circle on the ground and open within it a shimmering portal to a permanent teleportation circle elsewhere in the world. The portal remains open until the end of your next turn. Any creature that enters the portal instantly travels to the destination circle.\n\nPermanent teleportation circles are commonly found within major temples, guilds, and other important locations. Each circle has a unique sequence of magical runes inscribed in a certain pattern called a sigil sequence.\n\nWhen you cast teleportation circle, you inscribe runes that match the sigil sequence of a teleportation circle you know. When you first gain the ability to cast this spell, you learn the sigil sequences for 2 destinations on the Material Plane, determined by the Narrator. You can learn a new sigil sequence with 1 minute of observation and study.\n\nCasting the spell in the same location every day for a year creates a permanent teleportation circle with its own unique sigil sequence. You do not need to teleport when casting the spell to make a permanent destination.", - "document": "a5e-ag", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "thaumaturgy-a5e", - "fields": { - "name": "Thaumaturgy", - "desc": "You draw upon divine power and create a minor divine effect. When you cast the spell, choose one of the following:\n\n* Your voice booms up to three times louder than normal\n* You cause flames to flicker, brighten, dim, or change color\n* You send harmless tremors throughout the ground.\n* You create an instantaneous sound, like ethereal chimes, sinister laughter, or a dragon's roar at a point of your choosing within range.\n* You instantaneously cause an unlocked door or window to fly open or slam shut.\n* You alter the appearance of your eyes.\n\nLingering effects last until the spell ends. If you cast this spell multiple times, you can have up to 3 of the lingering effects active at a time, and can dismiss an effect at any time on your turn.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "thunderwave-a5e", - "fields": { - "name": "Thunderwave", - "desc": "You create a wave of thunderous force, damaging creatures and pushing them back. Creatures in the area take 2d8 thunder damage and are pushed 10 feet away from you.\n\nUnsecured objects completely within the area are also pushed 10 feet away from you. The thunderous boom of the spell is audible out to 300 feet.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "time-stop-a5e", - "fields": { - "name": "Time Stop", - "desc": "You stop time, granting yourself extra time to take actions. When you cast the spell, the world is frozen in place while you take 1d4 + 1 turns in a row, during which you can use actions and move as normal.\n\nThe spell ends if you move more than 1, 000 feet from where you cast the spell, or if you affect either a creature other than yourself or an object worn or carried by someone else.", - "document": "a5e-ag", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "tiny-hut-a5e", - "fields": { - "name": "Tiny Hut", - "desc": "You create an immobile dome of protective force that provides shelter and can be used as a safe haven (Chapter 4: Exploration in Trials & Treasures). The dome is of a color of your choosing, can't be seen through from the outside, is transparent on the inside, and can fit up to 10 Medium creatures (including you) within.\n\nThe dome prevents inclement weather and environmental effects from passing through it, though creatures and objects may pass through freely. Spells and other magical effects can't cross the dome in either direction, and the dome provides a comfortable dry interior no matter the conditions outside of it. You can command the interior to become dimly lit or dark at any time on your turn.\n\nThe spell fails if a Large creature or more than 10 creatures are inside the dome. The spell ends when you leave the dome.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "tongues-a5e", - "fields": { - "name": "Tongues", - "desc": "The target understands any words it hears, and when the target speaks its words are understood by creatures that know at least one language.", - "document": "a5e-ag", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "transport-via-plants-a5e", - "fields": { - "name": "Transport via Plants", - "desc": "You create a magical pathway between the target and a second plant that you've seen or touched before that is on the same plane of existence. Any creature can step into the target and exit from the second plant by using 5 feet of movement.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "travelers-ward-a5e", - "fields": { - "name": "Traveler's Ward", - "desc": "Until the spell ends, creatures have disadvantage on Sleight of Hand checks made against the target.\n\nIf a creature fails a Sleight of Hand check to steal from the target, the ward creates a loud noise and a flash of bright light easily heard and seen by creatures within 100 feet.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "tree-stride-a5e", - "fields": { - "name": "Tree Stride", - "desc": "Until the spell ends, once per round you can use 5 feet of movement to enter a living tree and move to inside another living tree of the same kind within 500 feet so long as you end your turn outside of a tree. Both trees must be at least your size. You instantly know the location of all other trees of the same kind within 500 feet. You may step back outside of the original tree or spend 5 more feet of movement to appear within a spot of your choice within 5 feet of the destination tree. If you have no movement left, you appear within 5 feet of the tree you entered.", - "document": "a5e-ag", - "level": 5, - "school": "conjuration", - "higher_level": "Target one additional creature within reach for each slot level above 5th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "true-polymorph-a5e", - "fields": { - "name": "True Polymorph", - "desc": "The target is transformed until it drops to 0 hit points or the spell ends. You can make the transformation permanent by concentrating on the spell for the full duration.\n\nCreature into Creature: The target's body is transformed into a creature with a Challenge Rating equal to or less than its own. If the target doesn't have a Challenge Rating, use its level.\n\nThe target's game statistics (including its hit points and mental ability scores) are replaced by the statistics of the chosen creature. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effects on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.\n\nObject into Creature: The target is transformed into any kind of creature, as long as the creature's size isn't larger than the object's size and it has a Challenge Rating of 9 or less. The creature is friendly to you and your allies and acts on each of your turns. You decide what action it takes and how it moves. The Narrator has the creature's statistics and resolves all of its actions and movement.\n\nIf the spell becomes permanent, you no longer control the creature. It might remain friendly to you, depending on how you have treated it.\n\nCreature into Object: You turn the target and whatever it is wearing and carrying into an object. The target's game statistics are replaced by the statistics of the chosen object. The target has no memory of time spent in this form, and when the spell ends it returns to its normal form.", - "document": "a5e-ag", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "true-resurrection-a5e", - "fields": { - "name": "True Resurrection", - "desc": "Provided the target's soul is willing and able to return to its body, it returns to life with all of its hit points.\n\nThe spell cures any poisons and diseases that affected the target at the time of death, closes all mortal wounds, and restores any missing body parts.\n\nIf no body (or body parts) exist, you can still cast the spell but must speak the creature's name. The creature then appears in an unoccupied space you choose within 10 feet of you. This option requires diamonds worth at least 50, 000 gold (consumed by the spell).", - "document": "a5e-ag", - "level": 9, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "true-seeing-a5e", - "fields": { - "name": "True Seeing", - "desc": "Until the spell ends, the target gains truesight to a range of 120 feet. The target also notices secret doors hidden by magic.", - "document": "a5e-ag", - "level": 6, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "true-strike-a5e", - "fields": { - "name": "True Strike", - "desc": "You gain an innate understanding of the defenses of a creature or object in range. You have advantage on your first attack roll made against the target before the end of your next turn.", - "document": "a5e-ag", - "level": 0, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "unholy-star-a5e", - "fields": { - "name": "Unholy Star", - "desc": "A meteor ripped from diabolical skies streaks through the air and explodes at a point you can see 100 feet directly above you. The spell fails if you can't see the point where the meteor explodes.\n\nEach creature within range that can see the meteor (other than you) makes a Dexterity saving throw or is blinded until the end of your next turn. Fiery chunks of the meteor then plummet to the ground at different areas you choose within range. Each creature in an area makes a Dexterity saving throw, taking 6d6 fire damage and 6d6 necrotic damage on a failed save, or half as much damage on a successful one. A creature in more than one area is affected only once.\n\nThe spell damages objects in the area and ignites flammable objects that aren't being worn or carried.", - "document": "a5e-ag", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "unseen-servant-a5e", - "fields": { - "name": "Unseen Servant", - "desc": "You create an invisible, mindless, shapeless force to perform simple tasks. The servant appears in an unoccupied space on the ground that you can see and endures until it takes damage, moves more than 60 feet away from you, or the spell ends. It has AC 10, a Strength of 2, and it can't attack.\n\nYou can use a bonus action to mentally command it to move up to 15 feet and interact with an object.\n\nThe servant can do anything a humanoid servant can do —fetching things, cleaning, mending, folding clothes, lighting fires, serving food, pouring wine, and so on. Once given a command the servant performs the task to the best of its ability until the task is completed, then waits for its next command.", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "You create an additional servant for each slot level above 1st.", - "target_type": "point", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "vampiric-touch-a5e", - "fields": { - "name": "Vampiric Touch", - "desc": "Shadows roil about your hand and heal you by siphoning away the life force from others. On the round you cast it, and as an action on subsequent turns until the spell ends, you can make a melee spell attack against a creature within your reach.\n\nOn a hit, you deal 3d6 necrotic damage and regain hit points equal to half the amount of necrotic damage dealt.", - "document": "a5e-ag", - "level": 3, - "school": "necromancy", - "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "venomous-succor-a5e", - "fields": { - "name": "Venomous Succor", - "desc": "You cause a searing poison to burn quickly through the target's wounds, dealing 1d6 poison damage. The target regains 2d4 hit points at the start of each of its turns for the next 1d4+1 rounds.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "For each slot level above 2nd, the initial damage increases by 1d6 and target regains an additional 1d4 hit points.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "vicious-mockery-a5e", - "fields": { - "name": "Vicious Mockery", - "desc": "You verbally insult or mock the target so viciously its mind is seared. As long as the target hears you (understanding your words is not required) it takes 1d6 psychic damage and has disadvantage on the first attack roll it makes before the end of its next turn.", - "document": "a5e-ag", - "level": 0, - "school": "enchantment", - "higher_level": "The spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "wall-of-fire-a5e", - "fields": { - "name": "Wall of Fire", - "desc": "You create a wall of fire on a solid surface. The wall can be up to 60 feet long (it does not have to be a straight line; sections of the wall can angle as long as they are contiguous), 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall blocks sight.\n\nWhen the wall appears, each creature within its area makes a Dexterity saving throw, taking 5d8 fire damage on a failed save, or half as much damage on a successful save.\n\nOne side of the wall (chosen when the spell is cast) deals 5d8 fire damage to each creature that ends its turn within 10 feet of that side or inside the wall. A creature takes the same damage when it enters the wall itself for the first time on a turn or ends its turn there. The other side of the wall deals no damage.", - "document": "a5e-ag", - "level": 4, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wall-of-flesh-a5e", - "fields": { - "name": "Wall of Flesh", - "desc": "A squirming wall of bodies, groping arms and tentacles, and moaning, biting mouths heaves itself up from the ground at a point you choose. The wall is 6 inches thick and is made up of a contiguous group of ten 10-foot square sections. The wall can have any shape you desire.\n\nIf the wall enters a creature's space when it appears, the creature makes a Dexterity saving throw, and on a success it moves up to its Speed to escape. On a failed save, it is swallowed by the wall (as below).\n\nWhen a creature enters the area for the first time on a turn or starts its turn within 10 feet of the wall, tentacles and arms reach out to grab it. The creature makes a Dexterity saving throw or takes 5d8 bludgeoning damage and becomes grappled. If the creature was already grappled by the wall at the start of its turn and fails its saving throw, a mouth opens in the wall and swallows the creature.\n\nA creature swallowed by the wall takes 5d8 ongoing bludgeoning damage and is blinded, deafened, and restrained.\n\nA creature grappled or restrained by the wall can use its action to make a Strength saving throw against your spell save DC. On a success, a grappled creature frees itself and a restrained creature claws its way out of the wall's space, exiting to an empty space next to the wall and still grappled.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above the 6th.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wall-of-force-a5e", - "fields": { - "name": "Wall of Force", - "desc": "You create an invisible wall of force at a point you choose. The wall is a horizontal or vertical barrier, or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere, either with a radius of up to 10 feet. You may also choose to create a flat surface made up of a contiguous group of ten 10-foot square sections. The wall is 1/4 inch thick.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of the wall (your choice), but when a creature would be surrounded on all sides by the wall (or the wall and another solid surface), it can use its reaction to make a Dexterity saving throw to move up to its Speed to escape. Any creature without a special sense like blindsight has disadvantage on this saving throw.\n\nNothing can physically pass through the wall.\n\nIt can be destroyed with dispel magic cast using a spell slot of at least 5th-level or by being dealt at least 25 force damage at once. It is otherwise immune to damage. The wall also extends into the Ethereal Plane, blocking ethereal travel through it.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wall-of-ice-a5e", - "fields": { - "name": "Wall of Ice", - "desc": "You create a wall of ice on a solid surface. You can form it into a hemispherical dome or a sphere, either with a radius of up to 10 feet. You may also choose to create a flat surface made up of a contiguous group of ten 10-foot square sections. The wall is 1 foot thick.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of it (your choice).\n\nIn addition, the creature makes a Dexterity saving throw, taking 10d6 cold damage on a failed save, or half as much damage on a success.\n\nThe wall is an object with vulnerability to fire damage, with AC 12 and 30 hit points per 10-foot section. Reducing a 10-foot section of wall to 0 hit points destroys it and leaves behind a sheet of frigid air in the space the section occupied. A creature moving through the sheet of frigid air for the first time on a turn makes a Constitution saving throw, taking 5d6 cold damage on a failed save, or half as much damage on a successful one.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "The damage the wall deals when it appears increases by 2d6 and the damage from passing through the sheet of frigid air increases by 1d6 for each slot level above 6th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wall-of-stone-a5e", - "fields": { - "name": "Wall of Stone", - "desc": "A nonmagical wall of solid stone appears at a point you choose. The wall is 6 inches thick and is made up of a contiguous group of ten 10-foot square sections. Alternatively, you can create 10-foot-by-20- foot sections that are only 3 inches thick.\n\nThe wall can have any shape you desire, though it can't occupy the same space as a creature or object.\n\nThe wall doesn't need to be vertical or rest on any firm foundation but must merge with and be solidly supported by existing stone. Thus, you can use this spell to bridge a chasm or create a ramp.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of the wall (your choice), but when a creature would be surrounded on all sides by the wall (or the wall and another solid surface), it can use its reaction to make a Dexterity saving throw to move up to its Speed to escape.\n\nIf you create a span greater than 20 feet in length, you must halve the size of each panel to create supports. You can crudely shape the wall to create crenelations, battlements, and so on.\n\nThe wall is an object made of stone. Each panel has AC 15 and 30 hit points per inch of thickness.\n\nReducing a panel to 0 hit points destroys it and at the Narrator's discretion might cause connected panels to collapse.\n\nYou can make the wall permanent by concentrating on the spell for the full duration.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wall-of-thorns-a5e", - "fields": { - "name": "Wall of Thorns", - "desc": "You create a wall of tough, pliable, tangled brush bristling with needle-sharp thorns on a solid surface. You can choose to make the wall up to 60 feet long, 10 feet high, and 5 feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and 5 feet thick. The wall blocks line of sight.\n\nWhen the wall appears, each creature within its area makes a Dexterity saving throw, taking 7d8 piercing damage on a failed save, or half as much damage on a successful save.\n\nA creature can move through the wall, albeit slowly and painfully. For every 1 foot a creature moves through the wall, it must spend 4 feet of movement. The first time a creature enters the wall on a turn or ends its turn there, it makes a Dexterity saving throw, taking 7d8 slashing damage on a failed save, or half as much damage on a successful save.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "Damage dealt by the wall increases by 1d8 for each slot level above 6th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "warding-bond-a5e", - "fields": { - "name": "Warding Bond", - "desc": "Until the spell ends, the target is warded by a mystic connection between it and you. While the target is within 60 feet it gains a +1 bonus to AC and saving throws, and it has resistance to all damage. Each time it takes damage, you take an equal amount of damage.\n\nThe spell ends if you are reduced to 0 hit points or if you and the target become separated by more than 60 feet. It also ends if you use an action to dismiss it, or if the spell is cast again on either you or the target.", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "The duration increases by 1 hour for each slot level above 2nd.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "warriors-instincts-a5e", - "fields": { - "name": "Warrior's Instincts", - "desc": "Your senses sharpen, allowing you to anticipate incoming attacks and find weaknesses in the defenses of your foes. Until the spell ends, creatures cannot gain bonuses (like those granted by bless or expertise dice) or advantage on attack rolls against you. In addition, none of your movement provokes opportunity attacks, and you ignore nonmagical difficult terrain. Finally, you can end the spell early to treat a single weapon attack roll as though you had rolled a 15 on the d20.", - "document": "a5e-ag", - "level": 5, - "school": "divination", - "higher_level": "For each slot level above 5th, you can also apply this spell's benefits to an additional creature you can see within 30 feet.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "water-breathing-a5e", - "fields": { - "name": "Water Breathing", - "desc": "Until the spell ends, the targets are able to breathe underwater (and still able to respirate normally).", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 10, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "water-walk-a5e", - "fields": { - "name": "Water Walk", - "desc": "Until the spell ends, the targets are able to move across any liquid surface (such as water, acid, mud, snow, quicksand, or lava) as if it was solid ground.\n\nCreatures can still take damage from surfaces that would deliver damage from corrosion or extreme temperatures, but they do not sink while moving across it.\n\nA target submerged in a liquid is moved to the surface of the liquid at a rate of 60 feet per round.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "The duration increases by 1 hour for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 10, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "web-a5e", - "fields": { - "name": "Web", - "desc": "Thick, sticky webs fill the area, lightly obscuring it and making it difficult terrain.\n\nYou must anchor the webs between two solid masses (such as walls or trees) or layer them across a flat surface. If you don't the conjured webs collapse and at the start of your next turn the spell ends.\n\nWebs layered over a flat surface are 5 feet deep.\n\nEach creature that starts its turn in the webs or that enters them during its turn makes a Dexterity saving throw or it is restrained as long as it remains in the webs (or until the creature breaks free).\n\nA creature restrained by the webs can escape by using its action to make a Strength check against your spell save DC.\n\nAny 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "When using a 4th-level spell slot, you also summon a giant wolf spider in an unoccupied space within the web's area. When using a 6th-level spell slot, you summon up to two spiders.\n\nWhen using a 7th-level spell slot, you summon up to three spiders. The spiders are friendly to you and your companions. Roll initiative for the spiders as a group, which have their own turns. The spiders obey your verbal commands, but they disappear when the spell ends or when they leave the web's area.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "weird-a5e", - "fields": { - "name": "Weird", - "desc": "You create illusions which manifest the deepest fears and worst nightmares in the minds of all creatures in the spell's area. Each creature in the area makes a Wisdom saving throw or becomes frightened until the spell ends. At the end of each of a frightened creature's turns, it makes a Wisdom saving throw or it takes 4d10 psychic damage. On a successful save, the spell ends for that creature.", - "document": "a5e-ag", - "level": 9, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "4d10", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "whirlwind-kick-a5e", - "fields": { - "name": "Whirlwind Kick", - "desc": "You must be able to move in order to cast this spell. You leap into the air and spin like a tornado, striking foes all around you with supernatural force as you fly up to 60 feet in a straight line. Your movement (which does not provoke attacks of opportunity) must end on a surface that can support your weight or you fall as normal.\n\nAs part of the casting of this spell, make a melee spell attack against any number of creatures in the area. On a hit, you deal your unarmed strike damage plus 2d6 thunder damage. In addition, creatures in the area make a Dexterity saving throw or are either pulled 10 feet closer to you or pushed 10 feet away (your choice).", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "The extra thunder damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "wind-up-a5e", - "fields": { - "name": "Wind Up", - "desc": "You wind your power up like a spring. You gain advantage on the next melee attack roll you make before the end of the spell's duration, after which the spell ends.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "wind-walk-a5e", - "fields": { - "name": "Wind Walk", - "desc": "The targets assume a gaseous form and appear as wisps of cloud. Each target has a flying speed of 300 feet and resistance to damage from nonmagical weapons, but the only action it can take is the Dash action or to revert to its normal form (a process that takes 1 minute during which it is incapacitated and can't move).\n\nUntil the spell ends, a target can change again to cloud form (in an identical transformation process).\n\nWhen the effect ends for a target flying in cloud form, it descends 60 feet each round for up to 1 minute or until it safely lands. If the target can't land after 1 minute, the creature falls the rest of the way normally.", - "document": "a5e-ag", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "wind-wall-a5e", - "fields": { - "name": "Wind Wall", - "desc": "A wall of strong wind rises from the ground at a point you choose. You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You can shape the wall in any way you choose so long as it makes one continuous path along the ground.\n\nWhen the wall appears, each creature within its area makes a Strength saving throw, taking 3d8 bludgeoning damage on a failed save, or half as much damage on a successful one.\n\nThe wall keeps fog, smoke, and other gases (including creatures in gaseous form) at bay. Small or smaller flying creatures or objects can't pass through. Loose, lightweight materials brought into the area fly upward. Arrows, bolts, and other ordinary projectiles launched at targets behind the wall are deflected upward and automatically miss (larger projectiles such as boulders and siege engine attacks are unaffected).", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above 3rd.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wish-a5e", - "fields": { - "name": "Wish", - "desc": "This is the mightiest of mortal magics and alters reality itself.\n\nThe safest use of this spell is the duplication of any other spell of 8th-level or lower without needing to meet its requirements (including components).\n\nYou may instead choose one of the following:\n\n* One nonmagical object of your choice that is worth up to 25, 000 gold and no more than 300 feet in any dimension appears in an unoccupied space you can see on the ground.\n* Up to 20 creatures that you can see to regain all their hit points, and each is further healed as per the greater restoration spell.\n* Up to 10 creatures that you can see gain resistance to a damage type you choose.\n* Up to 10 creatures you can see gain immunity to a single spell or other magical effect for 8 hours.\n* You force a reroll of any roll made within the last round (including your last turn). You can force the reroll to be made with advantage or disadvantage, and you can choose whether to use the reroll or the original roll.\n\nYou might be able to achieve something beyond the scope of the above examples. State your wish to the Narrator as precisely as possible, being very careful in your wording. Be aware that the greater the wish, the greater the chance for an unexpected result. This spell might simply fizzle, your desired outcome might only be partly achieved, or you might suffer some unforeseen consequence as a result of how you worded the wish. The Narrator has the final authority in ruling what occurs—and reality is not tampered with lightly.\n\n**_Multiple Wishes:_** The stress of casting this spell to produce any effect other than duplicating another spell weakens you. Until finishing a long rest, each time you cast a spell you take 1d10 necrotic damage per level of that spell. This damage can't be reduced or prevented. In addition, your Strength drops to 3 for 2d4 days (if it isn't 3 or lower already). For each of those days that you spend resting and doing nothing more than light activity, your remaining recovery time decreases by 2 days. Finally, there is a 33% chance that you are unable to cast wish ever again.", - "document": "a5e-ag", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "word-of-recall-a5e", - "fields": { - "name": "Word of Recall", - "desc": "The targets instantly teleport to a previously designated sanctuary, appearing in the nearest unoccupied space to the spot you designated when you prepared your sanctuary.\n\nYou must first designate a sanctuary by casting this spell within a location aligned with your faith, such as a temple dedicated to or strongly linked to your deity.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "5 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "wormway-a5e", - "fields": { - "name": "Wormway", - "desc": "You call a Gargantuan monstrosity from the depths of the world to carry you and your allies across great distances. When you cast this spell, the nearest purple worm within range is charmed by you and begins moving toward a point on the ground that you can see. If there are no purple worms within range, the spell fails. The earth rumbles slightly as it approaches and breaks through the surface. Any creatures within 20 feet of that point must make a Dexterity saving throw or be knocked prone and pushed 10 feet away from it.\n\nUpon emerging, the purple worm lays down before you and opens its maw. Targets can climb inside where they are enclosed in an impervious hemispherical dome of force.\n\nOnce targets are loaded into the purple worm, nothing—not physical objects, energy, or other spell effects —can pass through the barrier, in or out, though targets in the sphere can breathe there. The hemisphere is immune to all damage, and creatures and objects inside can't be damaged by attacks or effects originating from outside, nor can a target inside the hemisphere damage anything outside it.\n\nThe atmosphere inside the dome is comfortable and dry regardless of conditions outside it.\n\nThe purple worm waits until you give it a mental command to depart, at which point it dives back into the ground and travels, without need for rest or food, as directly as possible while avoiding obstacles to a destination known to you. It travels 150 miles per day.\n\nWhen the purple worm reaches its destination it surfaces, the dome vanishes, and it disgorges the targets in its mouth before diving back into the depths again.\n\nThe purple worm remains charmed by you until it has delivered you to your destination and returned to the depths, or until it is attacked at which point the charm ends, it vomits its targets in the nearest unoccupied space as soon as possible, and then retreats to safety.", - "document": "a5e-ag", - "level": 6, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "150 miles", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "writhing-transformation-a5e", - "fields": { - "name": "Writhing Transformation", - "desc": "As part of the casting of this spell, you lay down in the coffin on a patch of bare earth and it buries itself. Over the following week, you are incapacitated and do not need air, food, or sleep. Your insides are eaten by worms, but you do not die and your skin remains intact. If you are exhumed during this time, or if the spell is otherwise interrupted, you die.\n\nAt the end of the week, the transformation is complete and your true form is permanently changed. Your appearance is unchanged but underneath your skin is a sentient mass of worms. Any creature that makes a Medicine check against your spell save DC realizes that there is something moving underneath your skin.\n\nYour statistics change in the following ways:\n\n* Your type changes to aberration, and you do not age or require sleep.\n* You cannot be healed by normal means, but you can spend an action or bonus action to consume 2d6 live worms, regaining an equal amount of hit points by adding them to your body.\n* You can sense and telepathically control all worms that have the beast type and are within 60 feet of you.\n\nIn addition, you are able to discard your shell of skin and travel as a writhing mass of worms. As an action, you can abandon your skin and pour out onto the ground. In this form you have the statistics of **swarm of insects** with the following exceptions: you keep your hit points, Wisdom, Intelligence, and Charisma scores, and proficiencies. You know but cannot cast spells in this form. You also gain a burrow speed of 10 feet. Any worms touching you instantly join with your swarm, granting you a number of temporary hit points equal to the number of worms that join with your form (maximum 40 temporary hit points). These temporary hit points last until you are no longer in this form.\n\nIf you spend an hour in the same space as a dead creature of your original form's size, you can eat its insides and inhabit its skin in the same way you once inhabited your own. While you are in your swarm form, the most recent skin you inhabited remains intact and you can move back into a previously inhabited skin in 1 minute. You have advantage on checks made to impersonate a creature while wearing its skin.", - "document": "a5e-ag", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "zone-of-truth-a5e", - "fields": { - "name": "Zone of Truth", - "desc": "You create a zone that minimizes deception. Any creature that is able to be charmed can't speak a deliberate lie while in the area.\n\nAn affected creature is aware of the spell and can choose not to speak, or it might be evasive in its communications. A creature that enters the zone for the first time on its turn or starts its turn there must make a Charisma saving throw. On a failed save, the creature takes 2d4 psychic damage when it intentionally tries to mislead or occlude important information. Each time the spell damages a creature, it makes a Deception check (DC 8 + the damage dealt) or its suffering is obvious. You know whether a creature succeeds on its saving throw", - "document": "a5e-ag", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "psychic" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -} -] + { + "model": "api_v2.spell", + "pk": "a5e-ag_accelerando", + "fields": { + "name": "Accelerando", + "desc": "You play a complex and quick up-tempo piece that gradually gets faster and more complex, instilling the targets with its speed. You cannot cast another spell through your spellcasting focus while concentrating on this spell.\n\nUntil the spell ends, targets gain cumulative benefits the longer you maintain concentration on this spell (including the turn you cast it).\n\n* **1 Round:** Double Speed.\n* **2 Rounds:** +2 bonus to AC.\n* **3 Rounds:** Advantage on Dexterity saving throws.\n* **4 Rounds:** An additional action each turn. This action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action.\n\nWhen the spell ends, a target can't move or take actions until after its next turn as the impact of their frenetic speed catches up to it.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "You may maintain concentration on this spell for an additional 2 rounds for each slot level above 4th.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "6 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_acid-arrow", + "fields": { + "name": "Acid Arrow", + "desc": "A jet of acid streaks towards the target like a hissing, green arrow. Make a ranged spell attack.\n\nOn a hit the target takes 4d4 acid damage and 2d4 ongoing acid damage for 1 round. On a miss the target takes half damage.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "Increase this spell's initial and ongoing damage by 1d4 per slot level above 2nd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "4d4", + "damage_types": [ + "acid" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_acid-splash", + "fields": { + "name": "Acid Splash", + "desc": "A stinking bubble of acid is conjured out of thin air to fly at the targets, dealing 1d6 acid damage.", + "document": "a5e-ag", + "level": 0, + "school": "conjuration", + "higher_level": "This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 2, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_aid", + "fields": { + "name": "Aid", + "desc": "You draw upon divine power, imbuing the targets with fortitude. Until the spell ends, each target increases its hit point maximum and current hit points by 5.", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "The granted hit points increase by an additional 5 for each slot level above 2nd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_air-wave", + "fields": { + "name": "Air Wave", + "desc": "Your deft weapon swing sends a wave of cutting air to assault a creature within range. Make a melee weapon attack against the target. If you are wielding one weapon in each hand, your attack deals an additional 1d6 damage. Regardless of the weapon you are wielding, your attack deals slashing damage.", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "The spell's range increases by 30 feet for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_alarm", + "fields": { + "name": "Alarm", + "desc": "You set an alarm against unwanted intrusion that alerts you whenever a creature of size Tiny or larger touches or enters the warded area. When you cast the spell, choose any number of creatures. These creatures don't set off the alarm.\n\nChoose whether the alarm is silent or audible. The silent alarm is heard in your mind if you are within 1 mile of the warded area and it awakens you if you are sleeping. An audible alarm produces a loud noise of your choosing for 10 seconds within 60 feet.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "You may create an additional alarm for each slot level above 1st. The spell's range increases to 600 feet, but you must be familiar with the locations you ward, and all alarms must be set within the same physical structure. Setting off one alarm does not activate the other alarms.\n\nYou may choose one of the following effects in place of creating an additional alarm. The effects apply to all alarms created during the spell's casting.\n\nIncreased Duration. The spell's duration increases to 24 hours.\n\nImproved Audible Alarm. The audible alarm produces any sound you choose and can be heard up to 300 feet away.\n\nImproved Mental Alarm. The mental alarm alerts you regardless of your location, even if you and the alarm are on different planes of existence.", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_alter-self", + "fields": { + "name": "Alter Self", + "desc": "You use magic to mold yourself into a new form. Choose one of the options below. Until the spell ends, you can use an action to choose a different option.\n\n* **Amphibian:** Your body takes on aquatic adaptations. You can breathe underwater normally and gain a swimming speed equal to your base Speed.\n* **Altered State:** You decide what you look like. \n \nNone of your gameplay statistics change but you can alter anything about your body's appearance, including but not limited to: your heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, sound of your voice, hair style and length, skin and eye coloration, sex, and any other distinguishing features. You cannot become a creature of a different size category, and your limb structure remains the same; for example if you're bipedal, you can't use this spell to become a quadruped. Until the spell ends, you can use an action to change your appearance.\n* **Red in Tooth and Claw:** You grow magical natural weapons of your choice with a +1 bonus to attack and damage. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage of a type determined by the natural weapon you chose; for example a tentacle deals bludgeoning, a horn deals piercing, and claws deal slashing.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "When using a spell slot of 5th-level, add the following to the list of forms you can adopt.\n\n* **Greater Natural Weapons:** The damage dealt by your natural weapon increases to 2d6, and you gain a +2 bonus to attack and damage rolls with your natural weapons.\n* **Mask of the Grave:** You adopt the appearance of a skeleton or zombie (your choice). Your type changes to undead, and mindless undead creatures ignore your presence, treating you as one of their own. You don't need to breathe and you become immune to poison.\n* **Wings:** A pair of wings sprouts from your back. The wings can appear bird-like, leathery like a bat or dragon's wings, or like the wings of an insect. You gain a fly speed equal to your base Speed.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_altered-strike", + "fields": { + "name": "Altered Strike", + "desc": "You briefly transform your weapon or fist into another material and strike with it, making a melee weapon attack against a target within your reach.\n\nYou use your spellcasting ability for your attack and damage rolls, and your melee weapon attack counts as if it were made with a different material for the purpose of overcoming resistance and immunity to nonmagical attacks and damage: either bone, bronze, cold iron, steel, stone, or wood.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "When you reach 5th level, you can choose silver or mithral as the material. When you reach 11th level, if you have the Extra Attack feature you make two melee weapon attacks as part of the casting of this spell instead of one. In addition, you can choose adamantine as the material.\n\nWhen you reach 17th level, your attacks with this spell deal an extra 1d6 damage.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_angel-paradox", + "fields": { + "name": "Angel Paradox", + "desc": "The target is bombarded with a fraction of energy stolen from some slumbering, deific source, immediately taking 40 radiant damage. This spell ignores resistances but does not ignore immunities. A creature killed by this spell does not decay and cannot become undead for the spell's duration. Days spent under the influence of this spell don't count against the time limit of spells such as _raise dead_. This effect ends early if the corpse takes necrotic damage.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "The damage and duration increase to 45 radiant damage and 1 year when using an 8th-level spell slot, or 50 damage and until dispelled when using a 9th-level spell slot.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "40", + "damage_types": [ + "radiant" + ], + "duration": "7 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_animal-friendship", + "fields": { + "name": "Animal Friendship", + "desc": "You allow your inner beauty to shine through in song and dance whether to call a bird from its tree or a badger from its sett. Until the spell ends or one of your companions harms it (whichever is sooner), the target is charmed by you.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "Choose one additional target for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_animal-messenger", + "fields": { + "name": "Animal Messenger", + "desc": "You call a Tiny beast to you, whisper a message to it, and then give it directions to the message's recipient. It is now your messenger.\n\nSpecify a location you have previously visited and a recipient who matches a general description, such as \"a person wearing a pointed red hat in Barter Town\" or \"a half-orc in a wheelchair at the Striped Lion Inn.\" Speak a message of up to 25 words. For the duration of the spell, the messenger travels towards the location at a rate of 50 miles per day for a messenger with a flying speed, or else 25 miles without.\n\nWhen the messenger arrives, it delivers your message to the first creature matching your description, replicating the sound of your voice exactly. If the messenger can't find the recipient or reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.", + "document": "a5e-ag", + "level": 2, + "school": "enchantment", + "higher_level": "The duration of the spell increases by 48 hours for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_animal-shapes", + "fields": { + "name": "Animal Shapes", + "desc": "You transform the bodies of creatures into beasts without altering their minds. Each target transforms into a Large or smaller beast with a Challenge Rating of 4 or lower. Each target may have the same or a different form than other targets.\n\nOn subsequent turns, you can use your action to transform targets into new forms, gaining new hit points when they do so.\n\nUntil the spell ends or it is dropped to 0 hit points, the target's game statistics (including its hit points) are replaced by the statistics of the chosen beast excepting its Intelligence, Wisdom, and Charisma scores. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effect on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.", + "document": "a5e-ag", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_animate-dead", + "fields": { + "name": "Animate Dead", + "desc": "You animate a mortal's remains to become your undead servant.\n\nIf the spell is cast upon bones you create a skeleton, and if cast upon a corpse you choose to create a skeleton or a zombie. The Narrator has the undead's statistics.\n\nWhile it is within 60 feet you can use a bonus action to mentally command the undead. When you command multiple undead using this spell, you must give them all the same command. You may decide the action the undead takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, the undead only defends itself. The undead continues to follow a command until its task is complete.\n\nThe undead is under your control for 24 hours, after which it stops obeying any commands. You must cast this spell on the undead before the spell ends to maintain control of it for another 24 hours.\n\nCasting the spell in this way reasserts control over up to 4 of your previously-animated undead instead of animating a new one.", + "document": "a5e-ag", + "level": 3, + "school": "necromancy", + "higher_level": "You create or reassert control over 2 additional undead for each slot level above 3rd. When commanding more than 3 undead they make group attack rolls (see page 454 in Chapter 8: Combat).", + "target_type": "area", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_animate-objects", + "fields": { + "name": "Animate Objects", + "desc": "Objects come to life at your command just like you dreamt of when you were an apprentice! Choose up to 6 unattended nonmagical Small or Tiny objects. You may also choose larger objects; treat Medium objects as 2 objects, Large objects as 3 objects, and Huge objects as 6 objects. You can't animate objects larger than Huge.\n\nUntil the spell ends or a target is reduced to 0 hit points, you animate the targets and turn them into constructs under your control.\n\nEach construct has Constitution 10, Intelligence 3, Wisdom 3, and Charisma 1, as well as a flying speed of 30 feet and the ability to hover (if securely fastened to something larger, it has a Speed of 0), and blindsight to a range of 30 feet (blind beyond that distance). Otherwise a construct's statistics are determined by its size.\n\nIf you animate 4 or more Small or Tiny objects, instead of controlling each construct individually they function as a construct swarm. Add together all swarm's total hit points. Attacks against a construct swarm deal half damage. The construct swarm reverts to individual constructs when it is reduced to 15 hit points or less.\n\nYou can use a bonus action to mentally command any construct made with this spell while it is within 500 feet. When you command multiple constructs using this spell, you may simultaneously give them all the same command. You decide the action the construct takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. Without commands the construct only defends itself. The construct continues to follow a command until its task is complete.\n\nWhen you command a construct to attack, it makes a single slam melee attack against a creature within 5 feet of it. On a hit the construct deals bludgeoning, piercing, or slashing damage appropriate to its shape.\n\nWhen the construct drops to 0 hit points, any excess damage carries over to its normal object form.", + "document": "a5e-ag", + "level": 5, + "school": "transmutation", + "higher_level": "You can animate 2 additional Small or Tiny objects for each slot level above 5th.", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_antilife-shell", + "fields": { + "name": "Antilife Shell", + "desc": "A barrier that glimmers with an oily rainbow hue pops into existence around you. The barrier moves with you and prevents creatures other than undead and constructs from passing or reaching through its surface.\n\nThe barrier does not prevent spells or attacks with ranged or reach weapons from passing through the barrier.\n\nThe spell ends if you move so that a Tiny or larger living creature is forced to pass through the barrier.", + "document": "a5e-ag", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_antimagic-field", + "fields": { + "name": "Antimagic Field", + "desc": "An invisible sphere of antimagic forms around you, moving with you and suppressing all magical effects within it. At the Narrator's discretion, sufficiently powerful artifacts and deities may be able to ignore the sphere's effects.\n\n* **Area Suppression:** When a magical effect protrudes into the sphere, that part of the effect's area is suppressed. For example, the ice created by a wall of ice is suppressed within the sphere, creating a gap in the wall if the overlap is large enough.\n* **Creatures and Objects:** While within the sphere, any creatures or objects created or conjured by magic temporarily wink out of existence, reappearing immediately once the space they occupied is no longer within the sphere.\n* **Dispel Magic:** The sphere is immune to dispel magic and similar magical effects, including other antimagic field spells.\n* **Magic Items:** While within the sphere, magic items function as if they were mundane objects. Magic weapons and ammunition cease to be suppressed when they fully leave the sphere.\n* **Magical Travel:** Whether the sphere includes a destination or departure point, any planar travel or teleportation within it automatically fails. Until the spell ends or the sphere moves, magical portals and extradimensional spaces (such as that created by a bag of holding) within the sphere are closed.\n* **Spells:** Any spell cast within the sphere or at a target within the sphere is suppressed and the spell slot is consumed. Active spells and magical effects are also suppressed within the sphere. If a spell or magical effect has a duration, time spent suppressed counts against it.", + "document": "a5e-ag", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_antipathysympathy", + "fields": { + "name": "Antipathy/Sympathy", + "desc": "You mystically impart great love or hatred for a place, thing, or creature. Designate a kind of intelligent creature, such as dragons, goblins, or vampires.\n\nThe target now causes either antipathy or sympathy for the specified creatures for the duration of the spell. When a designated creature successfully saves against the effects of this spell, it immediately understands it was under a magical effect and is immune to this spell's effects for 1 minute.\n\n* **Antipathy:** When a designated creature can see the target or comes within 60 feet of it, the creature makes a Wisdom saving throw or becomes frightened. While frightened the creature must use its movement to move away from the target to the nearest safe spot from which it can no longer see the target. If the creature moves more than 60 feet from the target and can no longer see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.\n* **Sympathy:** When a designated creature can see the target or comes within 60 feet of it, the creature must succeed on a Wisdom saving throw. On a failure, the creature uses its movement on each of its turns to enter the area or move within reach of the target, and is unwilling to move away from the target. \nIf the target damages or otherwise harms an affected creature, the affected creature can make a Wisdom saving throw to end the effect. An affected creature can also make a saving throw once every 24 hours while within the area of the spell, and whenever it ends its turn more than 60 feet from the target and is unable to see the target.", + "document": "a5e-ag", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_arcane-eye", + "fields": { + "name": "Arcane Eye", + "desc": "Until the spell ends, you create an invisible, floating magical eye that hovers in the air and sends you visual information. The eye has normal vision, darkvision to a range of 30 feet, and it can look in every direction.\n\nYou can use an action to move the eye up to 30 feet in any direction as long as it remains on the same plane of existence. The eye can pass through openings as small as 1 inch across but otherwise its movement is blocked by solid barriers.", + "document": "a5e-ag", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_arcane-hand", + "fields": { + "name": "Arcane Hand", + "desc": "You create a Large hand of shimmering, translucent force that mimics the appearance and movements of your own hand.\n\nThe hand doesn't fill its space and has AC 20, Strength 26 (+8), Dexterity 10 (+0), maneuver DC 18, and hit points equal to your hit point maximum. The spell ends early if it is dropped to 0 hit points.\n\nWhen you cast the spell and as a bonus action on subsequent turns, you can move the hand up to 60 feet and then choose one of the following.\n\n* **_Shove:_** The hand makes a Strength saving throw against the maneuver DC of a creature within 5 feet of it, with advantage if the creature is Medium or smaller. On a success, the hand pushes the creature in a direction of your choosing for up to 5 feet plus a number of feet equal to 5 times your spellcasting ability modifier, and remains within 5 feet of it.\n* **_Smash:_** Make a melee spell attack against a creature or object within 5 feet of the hand. On a hit, the hand deals 4d8 force damage.\n* **_Snatch:_** The hand makes a Strength saving throw against the maneuver DC of a creature within 5 feet of it, with advantage if the creature is Medium or smaller. On a success, the creature is grappled by the hand. You can use a bonus action to crush a creature grappled by the hand, dealing bludgeoning damage equal to 2d6 + your spellcasting ability modifier.\n* **_Stop:_** Until the hand is given another command it moves to stay between you and a creature of your choice, providing you with three-quarters cover against the chosen creature. A creature with a Strength score of 26 or less cannot move through the hand's space, and stronger creatures treat the hand as difficult terrain.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "The damage from Smash increases by 2d8 and the damage from Snatch increases by 2d6 for each slot level above 5th.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_arcane-lock", + "fields": { + "name": "Arcane Lock", + "desc": "The target is sealed to all creatures except those you designate (who can open the object normally). Alternatively, you may choose a password that suppresses this spell for 1 minute when it is spoken within 5 feet of the target. The spell can also be suppressed for 10 minutes by casting _knock_ on the target. Otherwise, the target cannot be opened normally and it is more difficult to break or force open, increasing the DC to break it or pick any locks on it by 10 (minimum DC 20).", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "Increase the DC to force open the object or pick any locks on the object by an additional 2 for each slot level above 2nd. Only a knock spell cast at a slot level equal to or greater than your arcane lock suppresses it.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_arcane-muscles", + "fields": { + "name": "Arcane Muscles", + "desc": "Your muscles swell with arcane power. They're too clumsy to effectively wield weapons but certainly strong enough for a powerful punch. Until the spell ends, you can choose to use your spellcasting ability score for Athletics checks, and for the attack and damage rolls of unarmed strikes. In addition, your unarmed strikes deal 1d6 bludgeoning damage and count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_arcane-riposte", + "fields": { + "name": "Arcane Riposte", + "desc": "You respond to an incoming attack with a magically-infused attack of your own. Make a melee spell attack against the creature that attacked you. If you hit, the creature takes 3d6 acid, cold, fire, lightning, poison, or thunder damage.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The spell deals an extra 1d6 damage for each slot level above 1st. When using a 4th-level spell slot, you may choose to deal psychic, radiant, or necrotic damage. When using a 6th-level spell slot, you may choose to deal force damage.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "3d6", + "damage_types": [ + "acid", + "cold", + "fire", + "lightning", + "poison", + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_arcane-sword", + "fields": { + "name": "Arcane Sword", + "desc": "You summon an insubstantial yet deadly sword to do your bidding.\n\nMake a melee spell attack against a target of your choice within 5 feet of the sword, dealing 3d10 force damage on a hit.\n\nUntil the spell ends, you can use a bonus action on subsequent turns to move the sword up to 20 feet to a space you can see and make an identical melee spell attack against a target.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_arcanists-magic-aura", + "fields": { + "name": "Arcanist's Magic Aura", + "desc": "You craft an illusion to deceive others about the target's true magical properties.\n\nChoose one or both of the following effects. When cast upon the same target with the same effect for 30 successive days, it lasts until it is dispelled.\n\n* **False Aura:** A magical target appears nonmagical, a nonmagical target appears magical, or you change a target's magical aura so that it appears to belong to a school of magic of your choosing. Additionally, you can choose to make the false magic apparent to any creature that handles the item.\n* **Masking Effect:** Choose a creature type. Spells and magical effects that detect creature types (such as a herald's Divine Sense or the trigger of a symbol spell) treat the target as if it were a creature of that type. Additionally, you can choose to mask the target's alignment trait (if it has one).", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "When cast using a 6th-level spell slot or higher the effects last until dispelled with a bonus action.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_aspect-of-the-moon", + "fields": { + "name": "Aspect of the Moon", + "desc": "You throw your head back and howl like a beast, embracing your most basic impulses. Until the spell ends your hair grows, your features become more feral, and sharp claws grow on your fingers. You gain a +1 bonus to AC, your Speed increases by 10 feet, you have advantage on Perception checks, and your unarmed strikes deal 1d8 slashing damage. You may use your Strength or Dexterity for attack and damage rolls with unarmed strikes, and treat your unarmed strikes as weapons with the finesse property. You gain an additional action on your turn, which may only be used to make a melee attack with your unarmed strike. If you are hit by a silvered weapon, you have disadvantage on your Constitution saving throw to maintain concentration.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_astral-projection", + "fields": { + "name": "Astral Projection", + "desc": "Until the spell ends, the targets leave their material bodies (unconscious and in a state of suspended animation, not aging or requiring food or air) and project astral forms that resemble their mortal forms in nearly all ways, keeping their game statistics and possessions.\n\nWhile in this astral form you trail a tether, a silvery-white cord that sprouts from between your shoulder blades and fades into immateriality a foot behind you. As long as the tether remains intact you can find your way back to your material body. When it is cut—which requires an effect specifically stating that it cuts your tether —your soul and body are separated and you immediately die. Damage against and other effects on your astral form have no effect on your material body either during this spell or after its duration ends. Your astral form travels freely through the Astral Plane and can pass through interplanar portals on the Astral Plane leading to any other plane. When you enter a new plane or return to the plane you were on when casting this spell, your material body and possessions are transported along the tether, allowing you to return fully intact with all your gear as you enter the new plane.\n\nThe spell ends for all targets when you use an action to dismiss it, for an individual target when a successful dispel magic is cast upon its astral form or material body, or when either its material body or its astral form drops to 0 hit points. When the spell ends for a target and the tether is intact, the tether pulls the target's astral form back to its material body, ending the suspended animation.\n\nIf the spell ends for you prematurely, other targets remain in their astral forms and must find their own way back to their bodies (usually by dropping to 0 hit points).", + "document": "a5e-ag", + "level": 9, + "school": "necromancy", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_augury", + "fields": { + "name": "Augury", + "desc": "With the aid of a divining tool, you receive an omen from beyond the Material Plane about the results of a specific course of action that you intend to take within the next 30 minutes. The Narrator chooses from the following:\n\n* Fortunate omen (good results)\n* Calamity omen (bad results)\n* Ambivalence omen (both good and bad results)\n* No omen (results that aren't especially good or bad)\n\nThis omen does not account for possible circumstances that could change the outcome, such as making additional preparations.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a random reading from the above options increases. The Narrator makes the following roll in secret: second casting—25%, third casting—50%, fourth casting—75%, fifth casting—100%.", + "document": "a5e-ag", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_awaken", + "fields": { + "name": "Awaken", + "desc": "You impart sentience in the target, granting it an Intelligence of 10 and proficiency in a language you know. A plant targeted by this spell gains the ability to move, as well as senses identical to those of a human. The Narrator assigns awakened plant statistics (such as an awakened shrub or awakened tree).\n\nThe target is charmed by you for 30 days or until you or your companions harm it. Depending on how you treated the target while it was charmed, when the condition ends the awakened creature may choose to remain friendly to you.", + "document": "a5e-ag", + "level": 5, + "school": "transmutation", + "higher_level": "Target an additional creature for each slot level above 5th. Each target requires its own material component.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_bane", + "fields": { + "name": "Bane", + "desc": "The senses of the targets are filled with phantom energies that make them more vulnerable and less capable. Until the spell ends, a d4 is subtracted from attack rolls and saving throws made by a target.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "You target an additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_banishment", + "fields": { + "name": "Banishment", + "desc": "You employ sheer force of will to make reality question the existence of a nearby creature, causing them to warp visibly in front of you.\n\nUntil the spell ends, a target native to your current plane is banished to a harmless demiplane and incapacitated. At the end of the duration the target reappears in the space it left (or the nearest unoccupied space). A target native to a different plane is instead banished to its native plane.\n\nAt the end of each of its turns, a banished creature can repeat the saving throw with a -1 penalty for each round it has spent banished, returning on a success. If the spell ends before its maximum duration, the target reappears in the space it left (or the nearest unoccupied space) but otherwise a target native to a different plane doesn't return.", + "document": "a5e-ag", + "level": 4, + "school": "abjuration", + "higher_level": "The duration of banishment increases by 1 round for each slot level above 4th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1d4+2 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_barkskin", + "fields": { + "name": "Barkskin", + "desc": "The target's skin takes on the texture and appearance of bark, increasing its AC to 16 (unless its AC is already higher).", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "The target's AC increases by +1 for every two slot levels above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_battlecry-ballad", + "fields": { + "name": "Battlecry Ballad", + "desc": "You fill your allies with a thirst for glory and battle using your triumphant rallying cry. Expend and roll a Bardic Inspiration die to determine the number of rounds you can maintain concentration on this spell (minimum 1 round). Each target gains a bonus to attack and damage rolls equal to the number of rounds you have maintained concentration on this spell (maximum +4).\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "You can maintain concentration on this spell for an additional round for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 100, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": " special", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_beacon-of-hope", + "fields": { + "name": "Beacon of Hope", + "desc": "The targets are filled with hope and vitality.\n\nUntil the spell ends, each target gains advantage on Wisdom saving throws and death saving throws, and when a target receives healing it regains the maximum number of hit points possible.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_bestow-curse", + "fields": { + "name": "Bestow Curse", + "desc": "Choose one of the following:\n\n* Select one ability score; the target has disadvantage on ability checks and saving throws using that ability score.\n* The target makes attack rolls against you with disadvantage.\n* Each turn, the target loses its action unless it succeeds a Wisdom saving throw at the start of its turn.\n* Your attacks and spells deal an additional 1d8 necrotic damage against the target.\n\nA curse lasts until the spell ends. At the Narrator's discretion you may create a different curse effect with this spell so long as it is weaker than the options above.\n\nA _remove curse_ spell ends the effect if the spell slot used to cast it is equal to or greater than the spell slot used to cast _bestow curse_.", + "document": "a5e-ag", + "level": 3, + "school": "necromancy", + "higher_level": "When using a 4th-level spell slot the duration increases to 10 minutes. When using a 5th-level spell slot the duration increases to 8 hours and it no longer requires your concentration. When using a 7th-level spell slot the duration is 24 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_black-tentacles", + "fields": { + "name": "Black Tentacles", + "desc": "Writhing black tentacles fill the ground within the area turning it into difficult terrain. When a creature starts its turn in the area or enters the area for the first time on its turn, it takes 3d6 bludgeoning damage and is restrained by the tentacles unless it succeeds on a Dexterity saving throw. A creature that starts its turn restrained by the tentacles takes 3d6 bludgeoning damage.\n\nA restrained creature can use its action to make an Acrobatics or Athletics check against the spell save DC, freeing itself on a success.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "The damage increases by 1d6 for every 2 slot levels above 4th.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_blade-barrier", + "fields": { + "name": "Blade Barrier", + "desc": "You create a wall of slashing blades. The wall can be up to 20 feet high and 5 feet thick, and can either be a straight wall up to 100 feet long or a ringed wall of up to 60 feet in diameter. The wall provides three-quarters cover and its area is difficult terrain.\n\nWhen a creature starts its turn within the wall's area or enters the wall's area for the first time on a turn, it makes a Dexterity saving throw, taking 6d10 slashing damage on a failed save, or half as much on a successful save.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "The damage increases by 1d10 for each slot level above 6th.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_bless", + "fields": { + "name": "Bless", + "desc": "The blessing you bestow upon the targets makes them more durable and competent. Until the spell ends, a d4 is added to attack rolls and saving throws made by a target.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "You target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_blight", + "fields": { + "name": "Blight", + "desc": "Necrotic energies drain moisture and vitality from the target, dealing 8d8 necrotic damage. Undead and constructs are immune to this spell.\n\nA plant creature or magical plant has disadvantage on its saving throw and takes the maximum damage possible from this spell. A nonmagical plant that isn't a creature receives no saving throw and instead withers until dead.", + "document": "a5e-ag", + "level": 4, + "school": "necromancy", + "higher_level": "The damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_blindnessdeafness", + "fields": { + "name": "Blindness/Deafness", + "desc": "Until the spell ends, the target is blinded or deafened (your choice). At the end of each of its turns the target can repeat its saving throw, ending the spell on a success.", + "document": "a5e-ag", + "level": 2, + "school": "necromancy", + "higher_level": "You target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_blink", + "fields": { + "name": "Blink", + "desc": "Until the spell ends, roll 1d20 at the end of each of your turns. When you roll an 11 or higher you disappear and reappear in the Ethereal Plane (if you are already on the Ethereal Plane, the spell fails and the spell slot is wasted). At the start of your next turn you return to an unoccupied space that you can see within 10 feet of where you disappeared from. If no unoccupied space is available within range, you reappear in the nearest unoccupied space (determined randomly when there are multiple nearest choices). As an action, you can dismiss this spell.\n\nWhile on the Ethereal Plane, you can see and hear into the plane you were originally on out to a range of 60 feet, but everything is obscured by mist and in shades of gray. You can only target and be targeted by other creatures on the Ethereal Plane.\n\nCreatures on your original plane cannot perceive or interact with you, unless they are able to interact with the Ethereal Plane.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_blood-writ-bargain", + "fields": { + "name": "Blood-Writ Bargain", + "desc": "This spell creates a pact which is enforced by celestial or fiendish forces. You and another willing creature commit to a mutual agreement, clearly declaring your parts of the agreement during the casting.\n\nUntil the spell ends, if for any reason either participant breaks the agreement or fails to uphold their part of the bargain, beings of celestial or fiendish origin appear within unoccupied spaces as close as possible to the participant who broke the bargain. The beings are hostile to the deal-breaking participant and attempt to kill them, as well as any creatures that defend them. When the dealbreaking participant is killed, or the spell's duration ends, the beings disappear in a flash of smoke.\n\nThe spellcaster chooses whether the beings are celestial or fiendish while casting the spell, and the Narrator chooses the exact creatures summoned (such as a couatl or 5 imps). There may be any number of beings, but their combined Challenge Rating can't exceed 5.", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "The combined Challenge Rating of summoned beings increases by 2 and the duration increases by 13 days for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "13 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_blur", + "fields": { + "name": "Blur", + "desc": "Until the spell ends, you are shrouded in distortion and your image is blurred. Creatures make attack rolls against you with disadvantage unless they have senses that allow them to perceive without sight or to see through illusions (like blindsight or truesight).", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "You may target an additional willing creature you can see within range for each slot level above 2nd. Whenever an affected creature other than you is hit by an attack, the spell ends for that creature. When using a higher level spell slot, increase the spell's range to 30 feet.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_burning-hands", + "fields": { + "name": "Burning Hands", + "desc": "A thin sheet of flames shoots forth from your outstretched hands. Each creature in the area takes 3d6 fire damage. The fire ignites any flammable unattended objects in the area.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The damage increases by 1d6 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_calculate", + "fields": { + "name": "Calculate", + "desc": "You instantly know the answer to any mathematical equation that you speak aloud. The equation must be a problem that a creature with Intelligence 20 could solve using nonmagical tools with 1 hour of calculation. Additionally, you gain an expertise die on Engineering checks made during the duration of the spell.\n\nNote: Using the _calculate_ cantrip allows a player to make use of a calculator at the table in order to rapidly answer mathematical equations.", + "document": "a5e-ag", + "level": 0, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_calculated-retribution", + "fields": { + "name": "Calculated Retribution", + "desc": "You surround yourself with a dampening magical field and collect the energy of a foe's attack to use against them. When you take damage from a weapon attack, you can end the spell to halve the attack's damage against you, gaining a retribution charge that lasts until the end of your next turn. By expending the retribution charge when you hit with a melee attack, you deal an additional 2d10 force damage.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "You may use your reaction to halve the damage of an attack against you up to a number of times equal to the level of the spell slot used, gaining a retribution charge each time that lasts until 1 round after the spell ends.\n\nYou must still make Constitution saving throws to maintain your concentration on this spell, but you do so with advantage, or if you already have advantage, you automatically succeed.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_call-lightning", + "fields": { + "name": "Call Lightning", + "desc": "A 60-foot radius storm cloud that is 10 feet high appears in a space 100 feet above you. If there is not a point in the air above you that the storm cloud could appear, the spell fails (such as if you are in a small cavern or indoors).\n\nOn the round you cast it, and as an action on subsequent turns until the spell ends, you can call down a bolt of lightning to a point directly beneath the cloud. Each creature within 5 feet of the point makes a Dexterity saving throw, taking 3d10 lightning damage on a failed save or half as much on a successful one.\n\nIf you are outdoors in a storm when you cast this spell, you take control of the storm instead of creating a new cloud and the spell's damage is increased by 1d10.", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "The damage increases by 1d10 for each slot level above 3rd.", + "target_type": "point", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_calm-emotions", + "fields": { + "name": "Calm Emotions", + "desc": "Strong and harmful emotions are suppressed within the area. You can choose which of the following two effects to apply to each target of this spell.\n\n* Suppress the charmed or frightened conditions, though they resume when the spell ends (time spent suppressed counts against a condition's duration).\n* Suppress hostile feelings towards creatures of your choice until the spell ends. This suppression ends if a target is attacked or sees its allies being attacked. Targets act normally when the spell ends.", + "document": "a5e-ag", + "level": 2, + "school": "enchantment", + "higher_level": "The spell area increases by 10 feet for each slot level above 2nd.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_ceremony", + "fields": { + "name": "Ceremony", + "desc": "You perform a religious ceremony during the casting time of this spell. When you cast the spell, you choose one of the following effects, any targets of which must be within range during the entire casting.\n\n* **Funeral:** You bless one or more corpses, acknowledging their transition away from this world. For the next week, they cannot become undead by any means short of a wish spell. This benefit lasts indefinitely regarding undead of CR 1/4 or less. A corpse can only benefit from this effect once.\n* **Guide the Passing:** You bless one or more creatures within range for their passage into the next life. For the next 7 days, their souls cannot be trapped or captured by any means short of a wish spell. Once a creature benefits from this effect, it can't do so again until it has been restored to life.\n* **Offering:** The gifts of the faithful are offered to the benefit of the gods and the community. Choose one skill or tool proficiency and target a number of creatures equal to your proficiency bonus that are within range. When a target makes an ability check using the skill or tool within the next week, it can choose to use this benefit to gain an expertise die on the check. A creature can be targeted by this effect no more than once per week.\n* **Purification:** A creature you touch is washed with your spiritual energy. Choose one disease or possession effect on the target. If the save DC for that effect is equal to or lower than your spell save DC, the effect ends.\n* **Rite of Passage:** You shepherd one or more creatures into the next phase of life, such as in a child dedication, coming of age, marriage, or conversion ceremony. These creatures gain inspiration. A creature can benefit from this effect no more than once per year.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_chain-lightning", + "fields": { + "name": "Chain Lightning", + "desc": "You fire a bolt of electricity at the primary target that deals 10d8 lightning damage. Electricity arcs to up to 3 additional targets you choose that are within 30 feet of the primary target.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "An extra arc leaps from the primary target to an additional target for each slot level above 6th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_charm-monster", + "fields": { + "name": "Charm Monster", + "desc": "You only require line of sight to the target (not line of effect) and it has advantage on its saving throw to resist the spell if you or your companions are fighting it. Until the spell ends, the target is charmed by you and friendly towards you.\n\nThe spell ends if you or your companions do anything harmful towards the target. The target knows it was charmed by you when the spell ends.", + "document": "a5e-ag", + "level": 4, + "school": "enchantment", + "higher_level": "For each slot level above 4th, you affect one additional target that is within 30 feet of other targets.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_charm-person", + "fields": { + "name": "Charm Person", + "desc": "You only require line of sight to the target (not line of effect) and it has advantage on its saving throw to resist the spell if you or your companions are fighting it. Until the spell ends, the target is charmed by you and friendly towards you.\n\nThe spell ends if you or your companions do anything harmful towards the target. The target knows it was charmed by you when the spell ends.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "For each slot level above 1st, you affect one additional target that is within 30 feet of other targets.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_chill-touch", + "fields": { + "name": "Chill Touch", + "desc": "You reach out with a spectral hand that carries the chill of death. Make a ranged spell attack. On a hit, the target takes 1d8 necrotic damage, and it cannot regain hit points until the start of your next turn. The hand remains visibly clutching onto the target for the duration. If the target you hit is undead, it makes attack rolls against you with disadvantage until the end of your next turn.", + "document": "a5e-ag", + "level": 0, + "school": "necromancy", + "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_circle-of-death", + "fields": { + "name": "Circle of Death", + "desc": "A sphere of negative energy sucks life from the area.\n\nCreatures in the area take 9d6 necrotic damage.", + "document": "a5e-ag", + "level": 6, + "school": "necromancy", + "higher_level": "The damage increases by 2d6 for each slot level above 6th.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_circular-breathing", + "fields": { + "name": "Circular Breathing", + "desc": "You begin carefully regulating your breath so that you can continue playing longer or keep breathing longer in adverse conditions.\n\nUntil the spell ends, you can breathe underwater, and you can utilize bardic performances that would normally require breathable air. In addition, you have advantage on saving throws against gases and environments with adverse breathing conditions.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "The duration of this spell increases when you reach 5th level (10 minutes), 11th level (30 minutes), and 17th level (1 hour).", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_clairvoyance", + "fields": { + "name": "Clairvoyance", + "desc": "An invisible sensor is created within the spell's range. The sensor remains there for the duration, and it cannot be targeted or attacked.\n\nChoose seeing or hearing when you cast the spell.\n\nYou may use that sense through the sensor as if you were there. As an action, you may switch which sense you are using through the sensor.\n\nA creature able to see invisible things (from the see invisibility spell or truesight, for instance) sees a 4-inch diameter glowing, ethereal orb.", + "document": "a5e-ag", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "1 mile", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_clone", + "fields": { + "name": "Clone", + "desc": "This spell grows a duplicate of the target that remains inert indefinitely as long as its vessel is sealed.\n\nThe clone grows inside the sealed vessel and matures over the course of 120 days. You can choose to have the clone be a younger version of the target.\n\nOnce the clone has matured, when the target dies its soul is transferred to the clone so long as it is free and willing. The clone is identical to the target (except perhaps in age) and has the same personality, memories, and abilities, but it is without the target's equipment. The target's original body cannot be brought back to life by magic since its soul now resides within the cloned body.", + "document": "a5e-ag", + "level": 8, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_cloudkill", + "fields": { + "name": "Cloudkill", + "desc": "You create a sphere of poisonous, sickly green fog, which can spread around corners but not change shape. The area is heavily obscured. A strong wind disperses the fog, ending the spell early.\n\nUntil the spell ends, when a creature enters the area for the first time on its turn or starts its turn there, it takes 5d8 poison damage.\n\nThe fog moves away from you 10 feet at the start of each of your turns, flowing along the ground. The fog is thicker than air, sinks to the lowest level in the land, and can even flow down openings and pits.", + "document": "a5e-ag", + "level": 5, + "school": "conjuration", + "higher_level": "The damage increases by 1d8 for each slot level above 5th.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "poison" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_cobras-spit", + "fields": { + "name": "Cobra's Spit", + "desc": "Until the spell ends, you can use an action to spit venom, making a ranged spell attack at a creature or object within 30 feet. On a hit, the venom deals 4d8 poison damage, and if the target is a creature it is poisoned until the end of its next turn.", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "The damage increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_color-spray", + "fields": { + "name": "Color Spray", + "desc": "A blast of dazzling multicolored light flashes from your hand to blind your targets until the start of your next turn. Starting with the target with the lowest hit points (ignoring unconscious creatures), targets within the area are blinded, in ascending order according to their hit points.\n\nWhen a target is blinded, subtract its hit points from the total before moving on to the next target.\n\nA target's hit points must be equal to or less than the total remaining for the spell to have any affect.", + "document": "a5e-ag", + "level": 1, + "school": "illusion", + "higher_level": "Add an additional 2d10 hit points for each slot level above 1st.", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_command", + "fields": { + "name": "Command", + "desc": "You only require line of sight to the target (not line of effect). On its next turn the target follows a one-word command of your choosing. The spell fails if the target is undead, if it does not understand your command, or if the command is immediately harmful to it.\n\nBelow are example commands, but at the Narrator's discretion you may give any one-word command.\n\n* **Approach/Come/Here:** The target uses its action to take the Dash action and move toward you by the shortest route, ending its turn if it reaches within 5 feet of you.\n* **Bow/Grovel/Kneel:** The target falls prone and ends its turn.\n* **Drop:** The target drops anything it is holding and ends its turn.\n* **Flee/Run:** The target uses its action to Dash and moves away from you as far as it can.\n* **Halt:** The target remains where it is and takes no actions. A flying creature that cannot hover moves the minimum distance needed to remain aloft.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "For each slot level above 1st, you affect one additional target that is within 30 feet of other targets.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_commune", + "fields": { + "name": "Commune", + "desc": "You contact your deity, a divine proxy, or a personified source of divine power and ask up to 3 questions that could be answered with a yes or a no. You must complete your questions before the spell ends. You receive a correct answer for each question, unless the being does not know. When the being does not know, you receive \"unclear\" as an answer. The being does not try to deceive, and the Narrator may offer a short phrase as an answer if necessary.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a no answer increases.\n\nThe Narrator makes the following roll in secret: second casting —25%, third casting —50%, fourth casting—75%, fifth casting—100%.", + "document": "a5e-ag", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_commune-with-nature", + "fields": { + "name": "Commune with Nature", + "desc": "Until the spell ends, your spirit bonds with that of nature and you learn about the surrounding land.\n\nWhen cast outdoors the spell reaches 3 miles around you, and in natural underground settings it reaches only 300 feet. The spell fails if you are in a heavily constructed area, such as a dungeon or town.\n\nYou learn up to 3 facts of your choice about the surrounding area:\n\n* Terrain and bodies of water\n* Common flora, fauna, minerals, and peoples\n* Any unnatural creatures in the area\n* Weaknesses in planar boundaries\n* Built structures", + "document": "a5e-ag", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_comprehend-languages", + "fields": { + "name": "Comprehend Languages", + "desc": "You gain a +10 bonus on Insight checks made to understand the meaning of any spoken language that you hear, or any written language that you can touch. Typically interpreting an unknown language is a DC 20 check, but the Narrator may use DC 15 for a language closely related to one you know, DC 25 for a language that is particularly unfamiliar or ancient, or DC 30 for a lost or dead language. This spell doesn't uncover secret messages or decode cyphers, and it does not assist in uncovering lies.", + "document": "a5e-ag", + "level": 1, + "school": "divination", + "higher_level": "The bonus increases by +5 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_cone-of-cold", + "fields": { + "name": "Cone of Cold", + "desc": "Frigid cold blasts from your hands. Each creature in the area takes 8d8 cold damage. Creatures killed by this spell become frozen statues until they thaw.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above 5th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "8d8", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_confusion", + "fields": { + "name": "Confusion", + "desc": "You assault the minds of your targets, filling them with delusions and making them confused until the spell ends. On a successful saving throw, a target is rattled for 1 round. At the end of each of its turns, a confused target makes a Wisdom saving throw to end the spell's effects on it.", + "document": "a5e-ag", + "level": 4, + "school": "enchantment", + "higher_level": "The spell's area increases by 5 feet for each slot level above 4th.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_conjure-animals", + "fields": { + "name": "Conjure Animals", + "desc": "You summon forth the spirit of a beast that takes the physical form of your choosing in unoccupied spaces you can see.\n\nChoose one of the following:\n\n* One beast of CR 2 or less\n* Two beasts of CR 1 or less\n* Three beasts of CR 1/2 or less\n\n Beasts summoned this way are allied to you and your companions. While it is within 60 feet you can use a bonus action to mentally command a summoned beast. When you command multiple beasts using this spell, you must give them all the same command. You may decide the action the beast takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, a conjured beast only defends itself.", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "The challenge rating of beasts you can summon increases by one step for each slot level above 3rd. For example, when using a 4th-level spell slot you can summon one beast of CR 3 or less, two beasts of CR 2 or less, or three beasts of CR 1 or less.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_conjure-celestial", + "fields": { + "name": "Conjure Celestial", + "desc": "You summon a creature from the realms celestial.\n\nThis creature uses the statistics of a celestial creature (detailed below) with certain traits determined by your choice of its type: an angel of battle, angel of protection, or angel of vengeance.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the celestial creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears 1 hour after you summoned it.", + "document": "a5e-ag", + "level": 7, + "school": "conjuration", + "higher_level": "For each slot level above 7th the celestial creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_conjure-elemental", + "fields": { + "name": "Conjure Elemental", + "desc": "You summon a creature from the Elemental Planes. This creature uses the statistics of a conjured elemental creature (detailed below) with certain traits determined by your choice of its type: air, earth, fire, or water.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the elemental creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears 1 hour after you summoned it.", + "document": "a5e-ag", + "level": 5, + "school": "conjuration", + "higher_level": "For each slot level above 5th the elemental creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_conjure-fey", + "fields": { + "name": "Conjure Fey", + "desc": "You summon a creature from The Dreaming.\n\nThis creature uses the statistics of a fey creature (detailed below) with certain traits determined by your choice of its type: hag, hound, or redcap.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the summoned creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "For each slot level above 6th the fey creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_conjure-minor-elementals", + "fields": { + "name": "Conjure Minor Elementals", + "desc": "You summon up to 3 creatures from the Elemental Planes. These creatures use the statistics of a minor elemental (detailed below) with certain traits determined by your choice of its type: air, earth, fire, or water. If you summon only 2 creatures with this spell, increase its effective slot level by 1 when determining the minor elemental's statistics, and if you summon a single creature with this spell its effective slot level is increased by 2 instead.\n\nThe summoned creatures are friendly to you and your companions and take their turns immediately after yours. They obey your verbal commands. When you command multiple minor elementals using this spell, you must give them all the same command.\n\nWithout such commands, a minor elemental only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of any summoned creatures, which become hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "Use the higher spell slot level wherever the spell's level appears in the stat block.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_conjure-woodland-beings", + "fields": { + "name": "Conjure Woodland Beings", + "desc": "You summon up to 3 creatures from The Dreaming. These creatures use the statistics of a woodland being (detailed below) with certain traits determined by your choice of its type: blink dog, satyr, or sprite. If you summon only 2 creatures with this spell, increase its effective slot level by 1 when determining the minor woodland being's statistics, and if you summon a single creature with this spell its effective slot level is increased by 2 instead.\n\nThe summoned creatures are friendly to you and your companions and take their turns immediately after yours. They obey your verbal commands. When you command multiple woodland beings using this spell, you must give them all the same command.\n\nWithout such commands, a summoned creature only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of any summoned creatures, which become hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "Use the higher spell slot level wherever the spell's level appears in the stat block.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_contact-other-plane", + "fields": { + "name": "Contact Other Plane", + "desc": "You consult an otherworldly entity, risking your very mind in the process. Make a DC 15 Intelligence saving throw. On a failure, you take 6d6 psychic damage and suffer four levels of strife until you finish a long rest. A _greater restoration_ spell ends this effect.\n\nOn a successful save, you can ask the entity up to 5 questions before the spell ends. When possible the entity responds with one-word answers: yes, no, maybe, never, irrelevant, or unclear. At the Narrator's discretion, it may instead provide a brief but truthful answer when necessary.", + "document": "a5e-ag", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_contagion", + "fields": { + "name": "Contagion", + "desc": "Your touch inflicts a hideous disease. Make a melee spell attack. On a hit, you afflict the target with a disease chosen from the list below.\n\nThe target must make a Constitution saving throw at the end of each of its turns. After three failed saves, the disease lasts for the duration and the creature stops making saves, or after three successful saves, the creature recovers and the spell ends. A greater restoration spell or similar effect also ends the disease.\n\n* **Blinding Sickness:** The target's eyes turn milky white. It is blinded and has disadvantage on Wisdom checks and saving throws.\n* **Filth Fever:** The target is wracked by fever. It has disadvantage when using Strength for an ability check, attack roll, or saving throw.\n* **Flesh Rot:** The target's flesh rots. It has disadvantage on Charisma ability checks and becomes vulnerable to all damage.\n* **Mindfire:** The target hallucinates. During combat it is confused, and it has disadvantage when using Intelligence for an ability check or saving throw.\n* **Rattling Cough:** The target becomes discombobulated as it hacks with body-wracking coughs. It is rattled and has disadvantage when using Dexterity for an ability check, attack roll, or saving throw.\n* **Slimy Doom:** The target bleeds uncontrollably. It has disadvantage when using Constitution for an ability check or saving throw. Whenever it takes damage, the target is stunned until the end of its next turn.", + "document": "a5e-ag", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "7 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_contingency", + "fields": { + "name": "Contingency", + "desc": "As part of this spell, cast a spell of 5th-level or lower that has a casting time of 1 action, expending spell slots for both. The second spell must target you, and doesn't target others even if it normally would.\n\nDescribe the circumstances under which the second spell should be cast. It is automatically triggered the first time these circumstances are met. This spell ends when the second spell is triggered, when you cast _contingency_ again, or if the material component for it is not on your person. For example, when you cast _contingency_ with _blur_ as a second spell you might make the trigger be when you see a creature target you with a weapon attack, or you might make it be when you make a weapon attack against a creature, or you could choose for it to be when you see an ally make a weapon attack against a creature.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_continual-flame", + "fields": { + "name": "Continual Flame", + "desc": "A magical torch-like flame springs forth from the target. The flame creates no heat, doesn't consume oxygen, and can't be extinguished, but it can be covered.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_control-water", + "fields": { + "name": "Control Water", + "desc": "Water inside the area is yours to command. On the round you cast it, and as an action on subsequent turns until the spell ends, you can choose one of the following effects. When you choose a different effect, the current one ends.\n\n* **Flood:** The standing water level rises by up to 20 feet. The flood water spills onto land if the area includes a shore, but when the area is in a large body of water you instead create a 20-foottall wave. The wave travels across the area and crashes down, carrying Huge or smaller vehicles to the other side, each of which has a 25% chance of capsizing. The wave repeats on the start of your next turn while this effect continues.\n* **Part Water:** You create a 20-foot wide trench spanning the area with walls of water to either side. When this effect ends, the trench slowly refills over the course of the next round.\nRedirect Flow: Flowing water in the area moves in a direction you choose, including up. Once the water moves beyond the spell's area, it resumes its regular flow based on the terrain.\n* **Whirlpool:** If the affected body of water is at least 50 feet square and 25 feet deep, a whirlpool forms within the area in a 50-foot wide cone that is 25 feet long. Creatures and objects that are in the area and within 25 feet of the whirlpool make an Athletics check against your spell save DC or are pulled 10 feet toward it. Once within the whirlpool, checks made to swim out of it have disadvantage. When a creature first enters the whirlpool on a turn or starts its turn there, it makes a Strength saving throw or takes 2d8 bludgeoning damage and is pulled into the center of the whirlpool. On a successful save, the creature takes half damage and isn't pulled.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "10 minutes", + "shape_type": "cone", + "shape_magnitude": 50, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_control-weather", + "fields": { + "name": "Control Weather", + "desc": "You must be outdoors to cast this spell, and it ends early if you don't have a clear path to the sky.\n\nUntil the spell ends, you change the weather conditions in the area from what is normal for the current climate and season. Choose to increase or decrease each weather condition (precipitation, temperature, and wind) up or down by one stage on the following tables. Whenever you change the wind, you can also change its direction. The new conditions take effect after 1d4 × 10 minutes, at which point you can change the conditions again. The weather gradually returns to normal when the spell ends.", + "document": "a5e-ag", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_corpse-explosion", + "fields": { + "name": "Corpse Explosion", + "desc": "A corpse explodes in a poisonous cloud. Each creature in a 10-foot radius of the corpse must make a Constitution saving throw. A creature takes 3d6 thunder damage and is poisoned for 1 minute on a failed save, or it takes half as much damage and is not poisoned on a successful one. A poisoned creature can repeat the saving throw at the end of each of its turns, ending the effect for itself on a success.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "You target an additional corpse for every 2 slot levels above 1st.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_counterspell", + "fields": { + "name": "Counterspell", + "desc": "You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 2nd-level or lower, its spell fails and has no effect.\n\nIf it is casting a spell of 3rd-level or higher, make an ability check using your spellcasting ability (DC 10 + the spell's level). On a success, the creature's spell fails and has no effect, but the creature can use its reaction to reshape the fraying magic and cast another spell with the same casting time as the original spell.\n\nThis new spell must be cast at a spell slot level equal to or less than half the original spell slot.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "The interrupted spell has no effect if its level is less than the level of the spell slot used to cast this spell, or if both spells use the same level spell slot an opposed spellcasting ability check is made.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "reaction", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_create-food-and-water", + "fields": { + "name": "Create Food and Water", + "desc": "Your magic turns one serving of food or water into 3 Supply. The food is nourishing but bland, and the water is clean. After 24 hours uneaten food spoils and water affected or created by this spell goes bad.", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "You create an additional 2 Supply for each slot level above 3rd.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_create-or-destroy-water", + "fields": { + "name": "Create or Destroy Water", + "desc": "Choose one of the following.\n\n* **Create Water:** You fill the target with up to 10 gallons of nonpotable water or 1 Supply of clean water. Alternatively, the water falls as rain that extinguishes exposed flames in the area.\n* **Destroy Water:** You destroy up to 10 gallons of water in the target. Alternatively, you destroy fog in the area.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "For each slot level above 1st, you either create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet.", + "target_type": "area", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_create-undead", + "fields": { + "name": "Create Undead", + "desc": "This spell cannot be cast in sunlight. You reanimate the targets as undead and transform them into ghouls under your control.\n\nWhile it is within 120 feet you can use a bonus action to mentally command the undead. When you command multiple undead using this spell, you must give them all the same command. You may decide the action the undead takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, the undead only defends itself. The undead continues to follow a command until its task is complete.\n\nThe undead is under your control for 24 hours, after which it stops obeying any commands. You must cast this spell on the undead before the spell ends to maintain control of it for another 24 hours. Casting the spell in this way reasserts control over up to 3 undead you have animated with this spell, rather than animating a new one.", + "document": "a5e-ag", + "level": 6, + "school": "necromancy", + "higher_level": "You create or reassert control over one additional ghoul for each slot level above 6th. Alternatively, when using an 8th-level spell slot you create or reassert control over 2 ghasts or wights, or when using a 9th-level spell slot you create or reassert control over 3 ghasts or wights, or 2 mummies. When commanding more than 3 undead they make group attack rolls (see page 454 in Chapter 8: Combat).", + "target_type": "area", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_creation", + "fields": { + "name": "Creation", + "desc": "You weave raw magic into a mundane physical object no larger than a 5-foot cube. The object must be of a form and material you have seen before. Using the object as a material component for another spell causes that spell to fail.\n\nThe spell's duration is determined by the object's material. An object composed of multiple materials uses the shortest duration.", + "document": "a5e-ag", + "level": 5, + "school": "illusion", + "higher_level": "The size of the cube increases by 5 feet for each slot level above 5th.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_crushing-haymaker", + "fields": { + "name": "Crushing Haymaker", + "desc": "Your fist reverberates with destructive energy, and woe betide whatever it strikes. As part of casting the spell, make a melee spell attack against a creature or object within 5 feet. If you hit, the target of your attack takes 7d6 thunder damage, and must make a Constitution saving throw or be knocked prone and stunned until the end of its next turn. This spell's damage is doubled against objects and structures.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "The spell deals an extra 1d6 of thunder damage for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "7d6", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_cure-wounds", + "fields": { + "name": "Cure Wounds", + "desc": "The target regains hit points equal to 1d8 + your spellcasting ability modifier.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The hit points regained increase by 1d8 for each slot level above 1st.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_dancing-lights", + "fields": { + "name": "Dancing Lights", + "desc": "You create up to four hovering lights which appear as torches, lanterns, or glowing orbs that can be combined into a glowing Medium-sized humanoid form. Each sheds dim light in a 10-foot radius.\n\nYou can use a bonus action to move the lights up to 60 feet so long as each remains within 20 feet of another light created by this spell. A dancing light winks out when it exceeds the spell's range.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_darklight", + "fields": { + "name": "Darklight", + "desc": "You create an enchanted flame that surrounds your hand and produces no heat, but sheds bright light in a 20-foot radius around you and dim light for an additional 20 feet. Only you and up to 6 creatures of your choice can see this light.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_darkness", + "fields": { + "name": "Darkness", + "desc": "Magical darkness heavily obscures darkvision and blocks nonmagical light in the area. The darkness spreads around corners. If any of the area overlaps with magical light created by a spell of 2nd-level or lower, the spell that created the light is dispelled.\n\nWhen cast on an object that is in your possession or unattended, the darkness emanates from it and moves with it. Completely covering the object with something that is not transparent blocks the darkness.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_darkvision", + "fields": { + "name": "Darkvision", + "desc": "The target gains darkvision out to a range of 60 feet.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "The range of the target's darkvision increases to 120 feet. In addition, for each slot level above 3rd you may choose an additional target.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_daylight", + "fields": { + "name": "Daylight", + "desc": "Magical light fills the area. The area is brightly lit and sheds dim light for an additional 60 feet. If any of the area overlaps with magical darkness created by a spell of 3rd-level or lower, the spell that created the darkness is dispelled.\n\nWhen cast on an object that is in your possession or unattended, the light shines from it and moves with it. Completely covering the object with something that is not transparent blocks the light.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_deadweight", + "fields": { + "name": "Deadweight", + "desc": "The target object's weight is greatly increased. Any creature holding the object must succeed on a Strength saving throw or drop it. A creature which doesn't drop the object has disadvantage on attack rolls until the start of your next turn as it figures out the object's new balance.\n\nCreatures that attempt to push, drag, or lift the object must succeed on a Strength check against your spell save DC to do so.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_death-ward", + "fields": { + "name": "Death Ward", + "desc": "The first time damage would reduce the target to 0 hit points, it instead drops to 1 hit point. If the target is subjected to an effect that would kill it instantaneously without dealing damage, that effect is negated. The spell ends immediately after either of these conditions occur.", + "document": "a5e-ag", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_delayed-blast-fireball", + "fields": { + "name": "Delayed Blast Fireball", + "desc": "A glowing bead of yellow light flies from your finger and lingers at a point at the center of the area until you end the spell—either because your concentration is broken or because you choose to end it—and the bead detonates. Each creature in the area takes 12d6 fire damage. If at the end of your turn the bead has not yet detonated, the damage increases by 1d6.\n\nIf touched before the spell ends, the creature touching the bead makes a Dexterity saving throw or the bead detonates. On a successful save, the creature can use an action to throw the bead up to 40 feet, moving the area with it. If the bead strikes a creature or solid object, the bead detonates.\n\nThe fire spreads around corners, and it damages and ignites any flammable unattended objects in the area.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "The damage increases by 1d6 for each slot level above 7th.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "12d6", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_demiplane", + "fields": { + "name": "Demiplane", + "desc": "You create a shadowy door on the target. The door is large enough for Medium creatures to pass through. The door leads to a demiplane that appears as an empty, 30-foot-cube chamber made of wood or stone. When the spell ends, the door disappears from both sides, trapping any creatures or objects inside the demiplane.\n\nEach time you cast this spell, you can either create a new demiplane, conjure the door to a demiplane you have previously created, or make a door leading to a demiplane whose nature or contents you are familiar with.", + "document": "a5e-ag", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_detect-evil-and-good", + "fields": { + "name": "Detect Evil and Good", + "desc": "You attempt to sense the presence of otherworldly forces. You automatically know if there is a place or object within range that has been magically consecrated or desecrated. In addition, on the round you cast it and as an action on subsequent turns until the spell ends, you may make a Wisdom (Religion) check against the passive Deception score of any aberration, celestial, elemental, fey, fiend, or undead creature within range. On a success, you sense the creature's presence, as well as where the creature is located.\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", + "document": "a5e-ag", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_detect-magic", + "fields": { + "name": "Detect Magic", + "desc": "Until the spell ends, you automatically sense the presence of magic within range, and you can use an action to study the aura of a magic effect to learn its schools of magic (if any).\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", + "document": "a5e-ag", + "level": 1, + "school": "divination", + "higher_level": "When using a 2nd-level spell slot or higher, the spell no longer requires your concentration. When using a 3rd-level spell slot or higher, the duration increases to 1 hour. When using a 4th-level spell slot or higher, the duration increases to 8 hours.", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_detect-poison-and-disease", + "fields": { + "name": "Detect Poison and Disease", + "desc": "On the round you cast it, and as an action on subsequent turns until the spell ends, you can attempt to sense the presence of poisons, poisonous creatures, and disease by making a Perception check. On a success you identify the type of each poison or disease within range. Typically noticing and identifying a poison or disease is a DC 10 check, but the Narrator may use DC 15 for uncommon afflictions, DC 20 for rare afflictions, or DC 25 for afflictions that are truly unique. On a failed check, this casting of the spell cannot sense that specific poison or disease.\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", + "document": "a5e-ag", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_detect-thoughts", + "fields": { + "name": "Detect Thoughts", + "desc": "On the round you cast it, and as an action on subsequent turns until the spell ends, you can probe a creature's mind to read its thoughts by focusing on one creature you can see within range. The creature makes a Wisdom saving throw. Creatures with an Intelligence score of 3 or less or that don't speak any languages are unaffected. On a failed save, you learn the creature's surface thoughts —what is most on its mind in that moment. On a successful save, you fail to read the creature's thoughts and can't attempt to probe its mind for the duration. Conversation naturally shapes the course of a creature's thoughts and what it is thinking about may change based on questions verbally directed at it.\n\nOnce you have read a creature's surface thoughts, you can use an action to probe deeper into its mind. The creature makes a second Wisdom saving throw. On a successful save, you fail to read the creature's deeper thoughts and the spell ends. On a failure, you gain insight into the creature's motivations, emotional state, and something that looms large in its mind.\n\nThe creature then becomes aware you are probing its mind and can use an action to make an Intelligence check contested by your Intelligence check, ending the spell if it succeeds.\n\nAdditionally, you can use an action to scan for thinking creatures within range that you can't see.\n\nOnce you detect the presence of a thinking creature, so long as it remains within range you can attempt to read its thoughts as described above (even if you can't see it).\n\nThe spell penetrates most barriers but is blocked by 2 feet of stone, 2 inches of common metal, or a thin sheet of lead.", + "document": "a5e-ag", + "level": 2, + "school": "divination", + "higher_level": "When using a 5th-level spell slot, increase the spell's range to 1 mile. When using a 7th-level spell slot, increase the range to 10 miles.\n\nWhen using a 9th-level spell slot, increase the range to 1, 000 miles.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_dimension-door", + "fields": { + "name": "Dimension Door", + "desc": "You teleport to any place you can see, visualize, or describe by stating distance and direction such as 200 feet straight downward or 400 feet upward at a 30-degree angle to the southeast.\n\nYou can bring along objects if their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn't carrying gear beyond its carrying capacity and is within 5 feet.\n\nIf you would arrive in an occupied space the spell fails, and you and any creature with you each take 4d6 force damage.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "500 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_disguise-self", + "fields": { + "name": "Disguise Self", + "desc": "Until the spell ends or you use an action to dismiss it, you and your gear are cloaked by an illusory disguise that makes you appear like another creature of your general size and body type, including but not limited to: your heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, hair style and length, skin and eye coloration, sex, and any other distinguishing features. You cannot disguise yourself as a creature of a different size category, and your limb structure remains the same; for example if you're bipedal, you can't use this spell to appear as a quadruped.\n\nThe disguise does not hold up to physical inspection. A creature that tries to grab an illusory hat, for example, finds its hand passes straight through the figment. To see through your disguise without such an inspection, a creature must use its action to make an Investigation check against your spell save DC.", + "document": "a5e-ag", + "level": 1, + "school": "illusion", + "higher_level": "When using a 3rd-level spell slot or higher, this spell functions identically to the seeming spell, except the spell's duration is 10 minutes.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_disintegrate", + "fields": { + "name": "Disintegrate", + "desc": "A pale ray emanates from your pointed finger to the target as you attempt to undo it.\n\nThe target takes 10d6 + 40 force damage. A creature reduced to 0 hit points is obliterated, leaving behind nothing but fine dust, along with anything it was wearing or carrying (except magic items). Only true resurrection or a wish spell can restore it to life.\n\nThis spell automatically disintegrates nonmagical objects and creations of magical force that are Large-sized or smaller. Larger objects and creations of magical force have a 10-foot-cube portion disintegrated instead. Magic items are unaffected.", + "document": "a5e-ag", + "level": 6, + "school": "transmutation", + "higher_level": "The damage increases by 3d6 for each slot level above 6th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "10d6+40", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_dispel-evil-and-good", + "fields": { + "name": "Dispel Evil and Good", + "desc": "A nimbus of power surrounds you, making you more able to resist and destroy beings from beyond the realms material.\n\nUntil the spell ends, celestials, elementals, fey, fiends, and undead have disadvantage on attack rolls against you.\n\nYou can end the spell early by using an action to do either of the following.\n\n* **Mental Resistance:** Choose up to 3 friendly creatures within 60 feet. Each of those creatures that is charmed, frightened, or possessed by a celestial, elemental, fey, fiend, or undead may make an immediate saving throw with advantage against the condition or possession, ending it on a success.\n* **Retribution:** Make a melee spell attack against a celestial, elemental, fey, fiend, or undead within reach. On a hit, the creature takes 7d8 radiant or necrotic damage (your choice) and is stunned until the beginning of your next turn.", + "document": "a5e-ag", + "level": 5, + "school": "abjuration", + "higher_level": "Mental Resistance targets one additional creature for each slot level above 5th, and Retribution's damage increases by 1d8 for each slot level above 5th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "7d8", + "damage_types": [ + "necrotic", + "radiant" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_dispel-magic", + "fields": { + "name": "Dispel Magic", + "desc": "You scour the magic from your target. Any spell cast on the target ends if it was cast with a spell slot of 3rd-level or lower. For spells using a spell slot of 4th-level or higher, make an ability check with a DC equal to 10 + the spell's level for each one, ending the effect on a success.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "You automatically end the effects of a spell on the target if the level of the spell slot used to cast it is equal to or less than the level of the spell slot used to cast dispel magic.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_divination", + "fields": { + "name": "Divination", + "desc": "Your offering and magic put you in contact with the higher power you serve or its representatives.\n\nYou ask a single question about something that will (or could) happen in the next 7 days. The Narrator offers a truthful reply, which may be cryptic or even nonverbal as appropriate to the being in question.\n\nThe reply does not account for possible circumstances that could change the outcome, such as making additional precautions.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a random reading from the above options increases. The Narrator makes the following roll in secret: second casting—25%, third casting—50%, fourth casting—75%, fifth casting—100%.", + "document": "a5e-ag", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_divine-favor", + "fields": { + "name": "Divine Favor", + "desc": "You imbue divine power into your strikes. Until the spell ends, you deal an extra 1d4 radiant damage with your weapon attacks.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_divine-word", + "fields": { + "name": "Divine Word", + "desc": "You utter a primordial imprecation that brings woe upon your enemies. A target suffers an effect based on its current hit points.\n\n* Fewer than 50 hit points: deafened for 1 minute.\n* Fewer than 40 hit points: blinded and deafened for 10 minutes.\n* Fewer than 30 hit points: stunned, blinded, and deafened for 1 hour.\n* Fewer than 20 hit points: instantly killed outright.\n\nAdditionally, when a celestial, elemental, fey, or fiend is affected by this spell it is immediately forced back to its home plane and for 24 hours it is unable to return to your current plane by any means less powerful than a wish spell. Such a creature does not suffer this effect if it is already on its plane of origin.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_dominate-beast", + "fields": { + "name": "Dominate Beast", + "desc": "You assert control over the target beast's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", + "document": "a5e-ag", + "level": 4, + "school": "enchantment", + "higher_level": "The spell's duration is extended: 5th-level—Concentration (10 minutes), 6th-level—Concentration (1 hour), 7th-level—Concentration (8 hours).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_dominate-monster", + "fields": { + "name": "Dominate Monster", + "desc": "You assert control over the target creature's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", + "document": "a5e-ag", + "level": 8, + "school": "enchantment", + "higher_level": "The duration is Concentration (8 hours)", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_dominate-person", + "fields": { + "name": "Dominate Person", + "desc": "You assert control over the target humanoid's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", + "document": "a5e-ag", + "level": 5, + "school": "enchantment", + "higher_level": "The spell's duration is extended: 6th-level—Concentration (10 minutes), 7th-level —Concentration (1 hour), 8th-level —Concentration (8 hours).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_dramatic-sting", + "fields": { + "name": "Dramatic Sting", + "desc": "You frighten the target by echoing its movements with ominous music and terrifying sound effects. It takes 1d4 psychic damage and becomes frightened of you until the spell ends.\n\nAt the end of each of the creature's turns, it can make another Wisdom saving throw, ending the effect on itself on a success. On a failed save, the creature takes 1d4 psychic damage.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "The damage increases by 1d4 for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "1d4", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_dream", + "fields": { + "name": "Dream", + "desc": "Until the spell ends, you manipulate the dreams of another creature. You designate a messenger, which may be you or a willing creature you touch, to enter a trance. The messenger remains aware of its surroundings while in the trance but cannot take actions or move.\n\nIf the target is sleeping the messenger appears in its dreams and can converse with the target as long as it remains asleep and the spell remains active. The messenger can also manipulate the dream, creating objects, landscapes, and various other sensory sensations. The messenger can choose to end the trance at any time, ending the spell. The target remembers the dream in perfect detail when it wakes. The messenger knows if the target is awake when you cast the spell and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the spell works as described.\n\nYou can choose to let the messenger terrorize the target. The messenger can deliver a message of 10 words or fewer and the target must make a Wisdom saving throw. If you have a portion of the target's body (some hair or a drop of blood) it has disadvantage on its saving throw. On a failed save, echoes of the messenger's fearful aspect create a nightmare that lasts the duration of the target's sleep and prevents it from gaining any benefit from the rest. In addition, upon waking the target suffers a level of fatigue or strife (your choice), up to a maximum of 3 in either condition.\n\nCreatures that don't sleep or don't dream (such as elves) cannot be contacted by this spell.", + "document": "a5e-ag", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Special", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_druidcraft", + "fields": { + "name": "Druidcraft", + "desc": "You call upon your mastery of nature to produce one of the following effects within range:\n\n* You create a minor, harmless sensory effect that lasts for 1 round and predicts the next 24 hours of weather in your current location. For example, the effect might create a miniature thunderhead if storms are predicted.\n* You instantly make a plant feature develop, but never to produce Supply. For example, you can cause a flower to bloom or a seed pod to open.\n* You create an instantaneous, harmless sensory effect such as the sound of running water, birdsong, or the smell of mulch. The effect must fit in a 5-foot cube.\n* You instantly ignite or extinguish a candle, torch, smoking pipe, or small campfire.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_earth-barrier", + "fields": { + "name": "Earth Barrier", + "desc": "Choose an unoccupied space between you and the source of the attack which triggers the spell. You call forth a pillar of earth or stone (3 feet diameter, 20 feet tall, AC 10, 20 hit points) in that space that provides you with three-quarters cover (+5 to AC, Dexterity saving throws, and ability checks made to hide).", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_earthquake", + "fields": { + "name": "Earthquake", + "desc": "You create a seismic disturbance in the spell's area. Until the spell ends, an intense tremor rips through the ground and shakes anything in contact with it.\n\nThe ground in the spell's area becomes difficult terrain as it warps and cracks.\n\nWhen you cast this spell and at the end of each turn you spend concentrating on it, each creature in contact with the ground in the spell's area must make a Dexterity saving throw or be knocked prone.\n\nAdditionally, any creature that is concentrating on a spell while in contact with the ground in the spell's area must make a Constitution saving throw or lose concentration.\n\nAt the Narrator's discretion, this spell may have additional effects depending on the terrain in the area.\n\n* **Fissures:** Fissures open within the spell's area at the start of your next turn after you cast the spell. A total of 1d6 such fissures open in locations you choose. Each is 1d10 × 10 feet deep, 10 feet wide, and extends from one edge of the spell's area to the opposite side. A creature standing on a spot where a fissure opens makes a Dexterity saving throw or falls in. On a successful save, a creature moves with the fissure's edge as it opens.\n* A structure automatically collapses if a fissure opens beneath it (see below).\n* **Structures:** A structure in contact with the ground in the spell's area takes 50 bludgeoning damage when you cast the spell and again at the start of each of your turns while the spell is active. A structure reduced to 0 hit points this way collapses.\n* Creatures within half the distance of a collapsing structure's height make a Dexterity saving throw or take 5d6 bludgeoning damage, are knocked prone, and are buried in the rubble, requiring a DC 20 Acrobatics or Athletics check as an action to escape. A creature inside (instead of near) a collapsing structure has disadvantage on its saving throw. The Narrator can adjust the DC higher or lower depending on the composition of the rubble. On a successful save, the creature takes half as much damage and doesn't fall prone or become buried.", + "document": "a5e-ag", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "500 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "50", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_eldritch-cube", + "fields": { + "name": "Eldritch Cube", + "desc": "A black, nonreflective, incorporeal 10-foot cube appears in an unoccupied space that you can see. Its space can be in midair if you so desire. When a creature starts its turn in the cube or enters the cube for the first time on its turn it must make an Intelligence saving throw, taking 5d6 psychic damage on a failed save, or half damage on a success.\n\nAs a bonus action, you can move the cube up to 10 feet in any direction to a space you can see. The cube cannot be made to pass through other creatures in this way.", + "document": "a5e-ag", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_enhance-ability", + "fields": { + "name": "Enhance Ability", + "desc": "You bestow a magical enhancement on the target. Choose one of the following effects for the target to receive until the spell ends.\n\n* **Bear's Endurance:** The target has advantage on Constitution checks and it gains 2d6 temporary hit points (lost when the spell ends).\n* **Bull's Strength:** The target has advantage on Strength checks and doubles its carrying capacity.\n* **Cat's Grace:** The target has advantage on Dexterity checks and it reduces any falling damage it takes by 10 unless it is incapacitated.\n* **Eagle's Splendor:** The target has advantage on Charisma checks and is instantly cleaned (as if it had just bathed and put on fresh clothing).\n* **Fox's Cunning:** The target has advantage on Intelligence checks and on checks using gaming sets.\n* **Owl's Wisdom:** The target has advantage on Wisdom checks and it gains darkvision to a range of 30 feet (or extends its existing darkvision by 30 feet).", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "You target one additional creature for each slot level above 2nd.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_enlargereduce", + "fields": { + "name": "Enlarge/Reduce", + "desc": "You cause the target to grow or shrink. An unwilling target may attempt a saving throw to resist the spell.\n\nIf the target is a creature, all items worn or carried by it also change size with it, but an item dropped by the target immediately returns to normal size.\n\n* **Enlarge:** Until the spell ends, the target's size increases by one size category. Its size doubles in all dimensions and its weight increases eightfold. The target also has advantage on Strength checks and Strength saving throws. Its weapons also enlarge, dealing an extra 1d4 damage.\n* **Reduce:** Until the spell ends, the target's size decreases one size category. Its size is halved in all dimensions and its weight decreases to one-eighth of its normal value. The target has disadvantage on Strength checks and Strength saving throws and its weapons shrink, dealing 1d4 less damage (its attacks deal a minimum of 1 damage).", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "When using a spell slot of 4th-level, you can cause the target and its gear to increase by two size categories—from Medium to Huge, for example. Until the spell ends, the target's size is quadrupled in all dimensions, multiplying its weight twentyfold. The target has advantage on Strength checks and Strength saving throws. Its weapons also enlarge, dealing an extra 2d4 damage.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_enrage-architecture", + "fields": { + "name": "Enrage Architecture", + "desc": "You animate and enrage a target building that lashes out at its inhabitants and surroundings. As a bonus action you may command the target to open, close, lock, or unlock any nonmagical doors or windows, or to thrash about and attempt to crush its inhabitants. While the target is thrashing, any creature inside or within 30 feet of it must make a Dexterity saving throw, taking 2d10+5 bludgeoning damage on a failed save or half as much on a successful one. When the spell ends, the target returns to its previous state, magically repairing any damage it sustained during the spell's duration.", + "document": "a5e-ag", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_entangle", + "fields": { + "name": "Entangle", + "desc": "Constraining plants erupt from the ground in the spell's area, wrapping vines and tendrils around creatures. Until the spell ends, the area is difficult terrain.\n\nA creature in the area when you cast the spell makes a Strength saving throw or it becomes restrained as the plants wrap around it. A creature restrained in this way can use its action to make a Strength check against your spell save DC, freeing itself on a success.\n\nWhen the spell ends, the plants wither away.", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_enthrall", + "fields": { + "name": "Enthrall", + "desc": "You weave a compelling stream of words that captivates your targets. Any target that can't be charmed automatically succeeds on its saving throw, and targets fighting you or creatures friendly to you have advantage on the saving throw.\n\nUntil the spell ends or a target can no longer hear you, it has disadvantage on Perception checks made to perceive any creature other than you. The spell ends if you are incapacitated or can no longer speak.", + "document": "a5e-ag", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_etherealness", + "fields": { + "name": "Etherealness", + "desc": "Until the spell ends or you use an action to end it, you step into the border regions of the Ethereal Plane where it overlaps with your current plane. While on the Ethereal Plane, you can move in any direction, but vertical movement is considered difficult terrain. You can see and hear the plane you originated from, but everything looks desaturated and you can see no further than 60 feet.\n\nWhile on the Ethereal Plane, you can only affect and be affected by other creatures on that plane. Creatures not on the Ethereal Plane can't perceive you unless some special ability or magic explicitly allows them to.\n\nWhen the spell ends, you immediately return to the plane you originated from in the spot you currently occupy. If you occupy the same spot as a solid object or creature when this happens, you are immediately shunted to the nearest unoccupied space and you take force damage equal to twice the number of feet you are moved.\n\nThe spell has no effect if you cast it while you are on the Ethereal Plane or a plane that doesn't border it, such as an Outer Plane.", + "document": "a5e-ag", + "level": 7, + "school": "transmutation", + "higher_level": "You can target up to 3 willing creatures within 10 feet (including you) for each slot level above 7th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_expeditious-retreat", + "fields": { + "name": "Expeditious Retreat", + "desc": "Until the spell ends, you're able to move with incredible speed. When you cast the spell and as a bonus action on subsequent turns, you can take the Dash action.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "Your Speed increases by 10 feet for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_eyebite", + "fields": { + "name": "Eyebite", + "desc": "Your eyes become an inky void imbued with fell power. One creature of your choice within 60 feet of you that you can see and that can see you must succeed on a Wisdom saving throw or be afflicted by one of the following effects for the duration. Until the spell ends, on each of your turns you can use an action to target a creature that has not already succeeded on a saving throw against this casting of _eyebite_.\n\n* **Asleep:** The target falls unconscious, waking if it takes any damage or another creature uses an action to rouse it.\n* **Panicked:** The target is frightened of you. On each of its turns, the frightened creature uses its action to take the Dash action and move away from you by the safest and shortest available route unless there is nowhere for it to move. If the target moves to a place at least 60 feet away from you where it can no longer see you, this effect ends.\n* **Sickened:** The target has disadvantage on attack rolls and ability checks. At the end of each of its turns, it can make another Wisdom saving throw, ending this effect on a successful save.", + "document": "a5e-ag", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_fabricate", + "fields": { + "name": "Fabricate", + "desc": "You convert raw materials into finished items of the same material. For example, you can fabricate a pitcher from a lump of clay, a bridge from a pile of lumber or group of trees, or rope from a patch of hemp.\n\nWhen you cast the spell, select raw materials you can see within range. From them, the spell fabricates a Large or smaller object (contained within a single 10-foot cube or up to eight connected 5-foot cubes) given a sufficient quantity of raw material. When fabricating with metal, stone, or another mineral substance, the fabricated object can be no larger than Medium (contained within a single 5-foot cube). The quality of any objects made with the spell is equivalent to the quality of the raw materials.\n\nCreatures or magic items can't be created or used as materials with this spell. It also may not be used to create items that require highly-specialized craftsmanship such as armor, weapons, clockworks, glass, or jewelry unless you have proficiency with the type of artisan's tools needed to craft such objects.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_faerie-fire", + "fields": { + "name": "Faerie Fire", + "desc": "Each object in a 20-foot cube within range is outlined in light (your choice of color). Any creature in the area when the spell is cast is also outlined unless it makes a Dexterity saving throw. Until the spell ends, affected objects and creatures shed dim light in a 10-foot radius.\n\nAny attack roll against an affected object or creature has advantage. The spell also negates the benefits of invisibility on affected creatures and objects.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_faithful-hound", + "fields": { + "name": "Faithful Hound", + "desc": "You conjure a phantasmal watchdog. Until the spell ends, the hound remains in the area unless you spend an action to dismiss it or you move more than 100 feet away from it.\n\nThe hound is invisible except to you and can't be harmed. When a Small or larger creature enters the area without speaking a password you specify when casting the spell, the hound starts barking loudly. The hound sees invisible creatures, can see into the Ethereal Plane, and is immune to illusions.\n\nAt the start of each of your turns, the hound makes a bite attack against a hostile creature of your choice that is within the area, using your spell attack bonus and dealing 4d8 piercing damage on a hit.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_false-life", + "fields": { + "name": "False Life", + "desc": "You are bolstered with fell energies resembling life, gaining 1d4+4 temporary hit points that last until the spell ends.", + "document": "a5e-ag", + "level": 1, + "school": "necromancy", + "higher_level": "Gain an additional 5 temporary hit points for each slot level above 1st.", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_fear", + "fields": { + "name": "Fear", + "desc": "You project a phantasmal image into the minds of each creature in the area showing them what they fear most. On a failed save, a creature becomes frightened until the spell ends and must drop whatever it is holding.\n\nOn each of its turns, a creature frightened by this spell uses its action to take the Dash action and move away from you by the safest available route. If there is nowhere it can move, it remains stationary. When the creature ends its turn in a location where it doesn't have line of sight to you, the creature can repeat the saving throw, ending the spell's effects on it on a successful save.", + "document": "a5e-ag", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_feather-fall", + "fields": { + "name": "Feather Fall", + "desc": "Magic slows the descent of each target. Until the spell ends, a target's rate of descent slows to 60 feet per round. If a target lands before the spell ends, it takes no falling damage and can land on its feet, ending the spell for that target.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "When using a 2nd-level spell slot, targets can move horizontally 1 foot for every 1 foot they descend, effectively gliding through the air until they land or the spell ends.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_feeblemind", + "fields": { + "name": "Feeblemind", + "desc": "You blast the target's mind, attempting to crush its intellect and sense of self. The target takes 4d6 psychic damage.\n\nOn a failed save, until the spell ends the creature's Intelligence and Charisma scores are both reduced to 1\\. The creature can't cast spells, activate magic items, understand language, or communicate in any intelligible way, but it is still able to recognize, follow, and even protect its allies.\n\nAt the end of every 30 days, the creature can repeat its saving throw against this spell, ending it on a success.\n\n_Greater restoration_, _heal_, or _wish_ can also be used to end the spell.", + "document": "a5e-ag", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_find-familiar", + "fields": { + "name": "Find Familiar", + "desc": "Your familiar, a spirit that takes the form of any CR 0 beast of Small or Tiny size, appears in an unoccupied space within range. It has the statistics of the chosen form, but is your choice of a celestial, fey, or fiend (instead of a beast).\n\nYour familiar is an independent creature that rolls its own initiative and acts on its own turn in combat (but cannot take the Attack action). However, it is loyal to you and always obeys your commands.\n\nWhen the familiar drops to 0 hit points, it vanishes without a trace. Casting the spell again causes it to reappear.\n\nYou are able to communicate telepathically with your familiar when it is within 100 feet. As long as it is within this range, you can use an action to see through your familiar's eyes and hear through its ears until the beginning of your next turn, gaining the benefit of any special senses it has. During this time, you are blind and deaf to your body's surroundings.\n\nYou can use an action to either permanently dismiss your familiar or temporarily dismiss it to a pocket dimension where it awaits your summons. While it is temporarily dismissed, you can use an action to call it back, causing it to appear in any unoccupied space within 30 feet of you.\n\nYou can't have more than one familiar at a time, but if you cast this spell while you already have a familiar, you can cause it to adopt a different form.\n\nFinally, when you cast a spell with a range of Touch and your familiar is within 100 feet of you, it can deliver the spell as if it was the spellcaster. Your familiar must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, use your attack bonus for the spell.", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_find-steed", + "fields": { + "name": "Find Steed", + "desc": "You summon a spirit that takes the form of a loyal mount, creating a lasting bond with it. You decide on the steed's appearance, and choose whether it uses the statistics of an elk, giant lizard, panther, warhorse, or wolf (the Narrator may offer additional options.) Its statistics change in the following ways:\n\n* Its type is your choice of celestial, fey, or fiend.\n* Its size is your choice of Medium or Large.\n* Its Intelligence is 6.\n* You can communicate with it telepathically while it's within 1 mile.\n* It understands one language that you speak.\n\nWhile mounted on your steed, when you cast a spell that targets only yourself, you may also target the steed.\n\nWhen you use an action to dismiss the steed, or when it drops to 0 hit points, it temporarily disappears. Casting this spell again resummons the steed, fully healed and with all conditions removed. You can't summon a different steed unless you spend an action to release your current steed from its bond, permanently dismissing it.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "The steed has an additional 20 hit points for each slot level above 2nd. When using a 4th-level spell slot or higher, you may grant the steed either a swim speed or fly speed equal to its base Speed.", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_find-the-path", + "fields": { + "name": "Find the Path", + "desc": "Name a specific, immovable location that you have visited before. If no such location is within range, the spell fails. For the duration, you know the location's direction and distance. While you are traveling there, you have advantage on ability checks made to determine the shortest path.", + "document": "a5e-ag", + "level": 6, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "Special", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 day", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_find-traps", + "fields": { + "name": "Find Traps", + "desc": "This spell reveals whether there is at least one trap within range and within line of sight. You don't learn the number, location, or kind of traps detected. For the purpose of this spell, a trap is a hidden mechanical device or magical effect which is designed to harm you or put you in danger, such as a pit trap, symbol spell, or alarm bell on a door, but not a natural hazard.", + "document": "a5e-ag", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_finger-of-death", + "fields": { + "name": "Finger of Death", + "desc": "Negative energy wracks the target and deals 7d8 + 30 necrotic damage. A humanoid killed by this spell turns into a zombie at the start of your next turn. It is permanently under your control and follows your spoken commands.", + "document": "a5e-ag", + "level": 7, + "school": "necromancy", + "higher_level": "The damage increases by 2d8 for each slot level above 7th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_fire-bolt", + "fields": { + "name": "Fire Bolt", + "desc": "You cast a streak of flame at the target. Make a ranged spell attack. On a hit, you deal 1d10 fire damage. An unattended flammable object is ignited.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_fire-shield", + "fields": { + "name": "Fire Shield", + "desc": "Until the spell ends, flames envelop your body, casting bright light in a 10-foot radius and dim light for an additional 10 feet. You can use an action to end the spell early. Choose one of the following options:\n\n* **Chill Shield:** You have resistance to fire damage. A creature within 5 feet of you takes 2d8 cold damage when it hits you with a melee attack.\n* **Warm Shield:** You have resistance to cold damage. A creature within 5 feet of you takes 2d8 fire damage when it hits you with a melee attack.", + "document": "a5e-ag", + "level": 4, + "school": "evocation", + "higher_level": "The duration increases to 1 hour when using a 6th-level spell slot, or 8 hours when using an 8th-level spell slot.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "cold" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_fire-storm", + "fields": { + "name": "Fire Storm", + "desc": "Flames roar, dealing 7d10 fire damage to creatures and objects in the area and igniting unattended flammable objects. If you choose, plant life in the area is unaffected. This spell's area consists of a contiguous group of ten 10-foot cubes in an arrangement you choose, with each cube adjacent to at least one other cube.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "The damage increases by 1d10 for each slot level above 7th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_fireball", + "fields": { + "name": "Fireball", + "desc": "A fiery mote streaks to a point within range and explodes in a burst of flame. The fire spreads around corners and ignites unattended flammable objects. Each creature in the area takes 6d6 fire damage.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_flame-blade", + "fields": { + "name": "Flame Blade", + "desc": "A scimitar-shaped blade of fire appears in your hand, lasting for the duration. It disappears if you drop it, but you can use a bonus action to recall it. The blade casts bright light in a 10-foot radius and dim light for another 10 feet. You can use an action to make a melee spell attack with the blade that deals 3d6 fire damage.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "The damage increases by 1d6 for every two slot levels above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_flame-strike", + "fields": { + "name": "Flame Strike", + "desc": "A column of divine flame deals 4d6 fire damage and 4d6 radiant damage to creatures in the area.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "Increase either the fire damage or the radiant damage by 1d6 for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_flaming-sphere", + "fields": { + "name": "Flaming Sphere", + "desc": "A 5-foot-diameter sphere of fire appears within range, lasting for the duration. It casts bright light in a 20-foot radius and dim light for another 20 feet, and ignites unattended flammable objects it touches.\n\nYou can use a bonus action to move the sphere up to 30 feet. It can jump over pits 10 feet wide or obstacles 5 feet tall. If you move the sphere into a creature, the sphere ends its movement for that turn and the creature makes a Dexterity saving throw, taking 2d6 fire damage on a failed save, or half as much on a successful one. A creature that ends its turn within 5 feet of the sphere makes a Dexterity saving throw against the sphere's damage.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "The damage increases by 1d6 for each slot level above 2nd.", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_flesh-to-stone", + "fields": { + "name": "Flesh to Stone", + "desc": "The target becomes restrained as it begins to turn to stone. On a successful saving throw, the target is instead slowed until the end of its next turn and the spell ends.\n\nA creature restrained by this spell makes a second saving throw at the end of its turn. On a success, the spell ends. On a failure, the target is petrified for the duration. If you maintain concentration for the maximum duration of the spell, this petrification is permanent.\n\nAny pieces removed from a petrified creature are missing when the petrification ends.", + "document": "a5e-ag", + "level": 6, + "school": "transmutation", + "higher_level": "Target one additional creature when you cast this spell with an 8th-level spell slot.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_flex", + "fields": { + "name": "Flex", + "desc": "You bestow a glamor upon a creature that highlights its physique to show a stunning idealized form. For the spell's duration, the target adds both its Strength modifier and Charisma modifier to any Charisma checks it makes.", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "Target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_floating-disk", + "fields": { + "name": "Floating Disk", + "desc": "A metallic disc made of force, 3 feet in diameter and hovering 3 feet off the ground, appears within range. It can support up to 500 pounds. If it is overloaded, or if you move more than 100 feet away from it, the spell ends. You can end the spell as an action. While it is not carrying anything, you can use a bonus action to teleport the disk to an unoccupied space within range.\n\nWhile you are within 20 feet of the disk, it is immobile. If you move more than 20 feet away, it tries to follow you, remaining 20 feet away. It can traverse stairs, slopes, and obstacles up to 3 feet high.\n\nAdditionally, you can ride the disc, spending your movement on your turn to move the disc up to 30 feet (following the movement rules above).\n\nMoving the disk in this way is just as tiring as walking for the same amount of time.", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "When you use a 3rd-level spell slot, either the spell's duration increases to 8 hours or the disk's diameter is 10 feet, it can support up to 2, 000 pounds, and it can traverse obstacles up to 10 feet high. When you use a 6th-level spell slot, the disk's diameter is 20 feet, it can support up to 16, 000 pounds, and it can traverse obstacles up to 20 feet high.", + "target_type": "point", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_fly", + "fields": { + "name": "Fly", + "desc": "The target gains a flying speed of 60 feet. When the spell ends, the target falls if it is off the ground.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "Target one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_fog-cloud", + "fields": { + "name": "Fog Cloud", + "desc": "You create a heavily obscured area of fog. The fog spreads around corners and can be dispersed by a moderate wind (at least 10 miles per hour).", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "The spell's radius increases by 20 feet for each slot level above 1st.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_forbiddance", + "fields": { + "name": "Forbiddance", + "desc": "You protect the target area against magical travel. Creatures can't teleport into the area, use a magical portal to enter it, or travel into it from another plane of existence, such as the Astral or Ethereal Plane. The spell's area can't overlap with another _forbiddance_ spell.\n\nThe spell damages specific types of trespassing creatures. Choose one or more of celestials, elementals, fey, fiends, and undead. When a chosen creature first enters the area on a turn or starts its turn there, it takes 5d10 radiant or necrotic damage (your choice when you cast the spell). You may designate a password. A creature speaking this password as it enters takes no damage from the spell.\n\nAfter casting this spell on the same area for 30 consecutive days it becomes permanent until dispelled. This final casting to make the spell permanent consumes its material components.", + "document": "a5e-ag", + "level": 6, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "necrotic", + "radiant" + ], + "duration": "1 day", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_force-of-will", + "fields": { + "name": "Force of Will", + "desc": "Your iron resolve allows you to withstand an attack. The damage you take from the triggering attack is reduced by 2d10 + your spellcasting ability modifier.", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "The damage is reduced by an additional 1d10 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_force-punch", + "fields": { + "name": "Force Punch", + "desc": "Make a melee spell attack. On a hit, the target takes 3d8 force damage.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_forcecage", + "fields": { + "name": "Forcecage", + "desc": "An opaque cube of banded force surrounds the area, preventing any matter or spells from passing through it, though creatures can breathe inside it. Creatures that make a Dexterity saving throw and creatures that are only partially inside the area are pushed out of the area. Any other creature is trapped and can't leave by nonmagical means. The cage also traps creatures on the Ethereal Plane, and can only be destroyed by being dealt at least 25 force damage at once or by a _dispel magic_ spell cast using an 8th-level or higher spell slot.\n\nIf a trapped creature tries to teleport or travel to another plane, it makes a Charisma saving throw. On a failure, the attempt fails and the spell or effect is wasted.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "The spell's area increases to a 20-foot cube when using a 9th-level spell slot.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_foresight", + "fields": { + "name": "Foresight", + "desc": "You impart the ability to see flashes of the immediate future. The target can't be surprised and has advantage on ability checks, attack rolls, and saving throws. Other creatures have disadvantage on attack rolls against the target.", + "document": "a5e-ag", + "level": 9, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_forest-army", + "fields": { + "name": "Forest Army", + "desc": "While casting and concentrating on this spell, you enter a deep trance and awaken an army of trees and plants within range. These plants rise up under your control as a grove swarm and act on your initiative. Although you are in a trance and deaf and blind with regard to your own senses, you see and hear through your grove swarm's senses. You can command your grove swarm telepathically, ordering it to advance, attack, or retreat. If the grove swarm enters your space, you can order it to carry you.\n\nIf you take any action other than continuing to concentrate on this spell, the spell ends and the trees and plants set down roots wherever they are currently located.", + "document": "a5e-ag", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_freedom-of-movement", + "fields": { + "name": "Freedom of Movement", + "desc": "The target ignores difficult terrain. Spells and magical effects can't reduce its speed or cause it to be paralyzed or restrained. It can spend 5 feet of movement to escape from nonmagical restraints or grapples. The target's movement and attacks aren't penalized from being underwater.", + "document": "a5e-ag", + "level": 4, + "school": "abjuration", + "higher_level": "When using a 6th-level spell slot the duration is 8 hours. When using an 8th-level spell slot the duration is 24 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_freezing-sphere", + "fields": { + "name": "Freezing Sphere", + "desc": "A freezing globe streaks to a point within range and explodes, dealing 10d6 cold damage to creatures in the area. Liquid in the area is frozen to a depth of 6 inches for 1 minute. Any creature caught in the ice can use an action to make a Strength check against your spell save DC to escape.\n\nInstead of firing the globe, you can hold it in your hand. If you handle it carefully, it won't explode until a minute after you cast the spell. At any time, you or another creature can strike the globe, throw it up to 60 feet, or use it as a slingstone, causing it to explode on impact.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "The damage increases by 1d6 for each slot level above 6th.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_friends", + "fields": { + "name": "Friends", + "desc": "Once before the start of your next turn, when you make a Charisma ability check against the target, you gain an expertise die. If you roll a 1 on the ability or skill check, the target realizes its judgment was influenced by magic and may become hostile.", + "document": "a5e-ag", + "level": 0, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_gaseous-form", + "fields": { + "name": "Gaseous Form", + "desc": "The target, along with anything it's wearing and carrying, becomes a hovering, wispy cloud. In this form, it can't attack, use or drop objects, talk, or cast spells.\n\nAs a cloud, the target's base Speed is 0 and it gains a flying speed of 10 feet. It can enter another creature's space, and can pass through small holes and cracks, but not through liquid. It is resistant to nonmagical damage, has advantage on Strength, Dexterity, and Constitution saving throws, and can't fall.\n\nThe spell ends if the creature drops to 0 hit points.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "The target's fly speed increases by 10 feet for each slot level above 3rd.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_gate", + "fields": { + "name": "Gate", + "desc": "You create a magic portal, a door between a space you can see and a specific place on another plane of existence. Each portal is a one-sided circular opening from 5 to 25 feet in diameter. Entering either portal transports you to the portal on the other plane. Deities and other planar rulers can prevent portals from opening in their domains.\n\nWhen you cast this spell, you can speak the true name of a specific creature (not its nickname or title). If that creature is on another plane, the portal opens next to it and draws it through to your side of the portal. This spell gives you no power over the creature, and it might choose to attack you, leave, or listen to you.", + "document": "a5e-ag", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_geas", + "fields": { + "name": "Geas", + "desc": "You give a command to a target which can understand you. It becomes charmed by you.\n\nWhile charmed in this way, it takes 5d10 psychic damage the first time each day that it disobeys your command. Your command can be any course of action or inaction that wouldn't result in the target's death. The spell ends if the command is suicidal or you use an action to dismiss the spell. Alternatively, a _remove curse_, _greater restoration_, or _wish_ spell cast on the target using a spell slot at least as high as the slot used to cast this spell also ends it.", + "document": "a5e-ag", + "level": 5, + "school": "enchantment", + "higher_level": "The spell's duration is 1 year when using a 7th-level spell slot, or permanent until dispelled when using a 9th-level spell slot.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "psychic" + ], + "duration": "30 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_gentle-repose", + "fields": { + "name": "Gentle Repose", + "desc": "The target can't become undead and doesn't decay. Days spent under the influence of this spell don't count towards the time limit of spells which raise the dead.", + "document": "a5e-ag", + "level": 2, + "school": "necromancy", + "higher_level": "The spell's duration is 1 year when using a 3rd-level spell slot, or permanent until dispelled when using a 4th-level spell slot.", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_giant-insect", + "fields": { + "name": "Giant Insect", + "desc": "You transform insects and other vermin into monstrous versions of themselves. Until the spell ends, up to 3 spiders become giant spiders, 2 ants become giant ants, 2 crickets or mantises become ankhegs, a centipede becomes a giant centipede, or a scorpion becomes a giant scorpion. The spell ends for a creature when it dies or when you use an action to end the effect on it.\n\nWhile it is within 60 feet you can use a bonus action to mentally command the insects. When you command multiple insects using this spell, you may simultaneously give them all the same command.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "The spell's duration is 1 hour when using a 5th-level spell slot, or 8 hours when using a 6th-level spell slot.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_glibness", + "fields": { + "name": "Glibness", + "desc": "When you make a Charisma check, you can replace the number you rolled with 15\\. Also, magic that prevents lying has no effect on you, and magic cannot determine that you are lying.", + "document": "a5e-ag", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_globe-of-invulnerability", + "fields": { + "name": "Globe of Invulnerability", + "desc": "An immobile, glimmering sphere forms around you. Any spell of 5th-level or lower cast from outside the sphere can't affect anything inside the sphere, even if it's cast with a higher level spell slot. Targeting something inside the sphere or including the globe's space in an area has no effect on anything inside.", + "document": "a5e-ag", + "level": 6, + "school": "abjuration", + "higher_level": "The barrier blocks spells of one spell slot level higher for each slot level above 6th.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_glyph-of-warding", + "fields": { + "name": "Glyph of Warding", + "desc": "You trace a glyph on the target. If the glyph is moved more than 10 feet from its original position, or if it comes within 20 feet of another glyph that you have cast, the spell ends. Finding the Tiny glyph requires an Investigation check against your spell save DC.\n\nDescribe the actions a creature must perform to trigger the spell, such as approaching within a certain distance, opening or touching the object the glyph is inscribed on, or seeing or reading the glyph. The creature must have a clear path to the glyph to trigger it. You can specify certain creatures which don't trigger the spell, such as those with a certain appearance or those who speak a certain phrase. Once the glyph is triggered, the spell ends.\n\nWhen you cast the spell, choose Explosive Runes or Spell Glyph.\n\n* **Explosive Runes:** When triggered, the glyph explodes. Creatures in a 20-foot radius sphere make a Dexterity saving throw or take 5d8 acid, cold, fire, lightning, or thunder damage (your choice when you cast the spell), or half damage on a successful save. The explosion spreads around corners.\n* **Spell Glyph:** You store a spell of 3rd-level or lower as part of creating the glyph, expending its spell slot. The stored spell must target a single creature or area with a non-beneficial effect and it is cast when the glyph is triggered. A spell that targets a creature targets the triggering creature. A spell with an area is centered on the targeting creature. A creation or conjuration spell affects an area next to that creature, and targets it with any harmful effects. Spells requiring concentration last for their full duration.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "The cost of the material component increases by 200 gold for each slot level above 3rd. For Explosive Runes, the damage increases by 1d8 for each slot level above 3rd, and for Spell Glyph you can store a spell of up to the same level as the spell slot used to cast glyph of warding.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_goodberry", + "fields": { + "name": "Goodberry", + "desc": "You transform the components into 2d4 berries.\n\nFor the next 24 hours, any creature that consumes one of these berries regains 1 hit point. Eating or administering a berry is an action. The berries do not provide any nourishment or sate hunger.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "You create 1d4 additional berries for every 2 slot levels above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_grapevine", + "fields": { + "name": "Grapevine", + "desc": "You cause a message in Druidic to appear on a tree or plant within range which you have seen before.\n\nYou can cast the spell again to erase the message.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "100 miles", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_grease", + "fields": { + "name": "Grease", + "desc": "Grease erupts from a point that you can see within range and coats the ground in the area, turning it into difficult terrain until the spell ends.\n\nWhen the grease appears, each creature within the area must succeed on a Dexterity saving throw or fall prone. A creature that enters or ends its turn in the area must also succeed on a Dexterity saving throw or fall prone.", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_greater-invisibility", + "fields": { + "name": "Greater Invisibility", + "desc": "The target is invisible. Anything the target is carrying or wearing is also invisible as long as it remains in the target's possession.", + "document": "a5e-ag", + "level": 4, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_greater-restoration", + "fields": { + "name": "Greater Restoration", + "desc": "Healing energy rejuvenates a creature you touch and undoes a debilitating effect. You can remove one of:\n\n* a level of fatigue.\n* a level of strife.\n* a charm or petrification effect.\n* a curse or cursed item attunement.\n* any reduction to a single ability score.\n* an effect that has reduced the target's hit point maximum.", + "document": "a5e-ag", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_guardian-of-faith", + "fields": { + "name": "Guardian of Faith", + "desc": "A large spectral guardian appears and hovers for the duration in an unoccupied space of your choice that you can see within range. This guardian occupies that space and is indistinct except for a gleaming sword and sheild emblazoned with the symbol of your deity.\n\nAny creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "20", + "damage_types": [ + "radiant" + ], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_guards-and-wards", + "fields": { + "name": "Guards and Wards", + "desc": "You create wards that protect the target area. Each warded area has a maximum height of 20 feet and can be shaped. Several stories of a stronghold can be warded by dividing the area among them if you can walk from one to the next while the spell is being cast.\n\nWhen cast, you can create a password that can make a creature immune to these effects when it is spoken aloud. You may also specify individuals that are unaffected by any or all of the effects that you choose.\n\n_Guards and wards_ creates the following effects within the area of the spell.\n\n* **_Corridors:_** Corridors are heavily obscured with fog. Additionally, creatures that choose between multiple passages or branches have a 50% chance to unknowingly choose a path other than the one they meant to choose.\n* **_Doors:_** Doors are magically locked as if by an _arcane lock_ spell. Additionally, you may conceal up to 10 doors with an illusion as per the illusory object component of the _minor illusion_ spell to make the doors appear as unadorned wall sections.\n* **_Stairs:_** Stairs are filled from top to bottom with webs as per the _web_ spell. Until the spell ends, the webbing strands regrow 10 minutes after they are damaged or destroyed.\n\nIn addition, one of the following spell effects can be placed within the spell's area.\n\n* _Dancing lights_ can be placed in 4 corridors and you can choose for them to repeat a simple sequence.\n* _Magic mouth_ spells can be placed in 2 locations.\n_Stinking clouds_ can be placed in 2 locations.\n\nThe clouds return after 10 minutes if dispersed while the spell remains.\n* A _gust of wind_ can be placed in a corridor or room.\n* Pick a 5-foot square. Any creature that passes through it subjected to a _suggestion_ spell, hearing the suggestion mentally.\n\nThe entirety of the warded area radiates as magic. Each effect must be targeted by separate dispel magic spells to be removed.\n\nThe spell can be made permanent by recasting the spell every day for a year.", + "document": "a5e-ag", + "level": 6, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_guidance", + "fields": { + "name": "Guidance", + "desc": "The target may gain an expertise die to one ability check of its choice, ending the spell. The expertise die can be rolled before or after the ability check is made.", + "document": "a5e-ag", + "level": 0, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_guiding-bolt", + "fields": { + "name": "Guiding Bolt", + "desc": "A bolt of light erupts from your hand. Make a ranged spell attack against the target. On a hit, you deal 4d6 radiant damage and the next attack roll made against the target before the end of your next turn has advantage.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The damage increases by 1d6 for each slot level above 1st.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_gust-of-wind", + "fields": { + "name": "Gust of Wind", + "desc": "A torrent of wind erupts from your hand in a direction you choose. Each creature that starts its turn in the area or moves into the area must succeed on a Strength saving throw or be pushed 15 feet from you in the direction of the line.\n\nAny creature in the area must spend 2 feet of movement for every foot moved when trying to approach you.\n\nThe blast of wind extinguishes small fires and disperses gas or vapor.\n\nYou can use a bonus action to change the direction of the gust.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_hallow", + "fields": { + "name": "Hallow", + "desc": "You imbue the area with divine power, bolstering some creatures and hindering others. Celestials, elementals, fey, fiends, and undead cannot enter the area. They are also incapable of charming, frightening, or possessing another creature within the area. Any such effects end on a creature that enters the area. When casting, you may exclude one or more creature types from this effect.\n\nAdditionally, you may anchor additional magical effects to the area. Choose one effect from the list below (the Narrator may also offer specific effects).\n\nSome effects apply to creatures. You may choose to affect all creatures, creatures of a specific type, or those that follow a specific leader or deity. Creatures make a Charisma saving throw when the spell is cast, when they enter the area for the first time on a turn, or if they end their turn within the area. On a successful save, a creature is immune to the effect until it leaves the area.\n\n* **Courage:** Creatures in the area cannot be frightened.\n* **Darkness:** The area is filled by darkness, and normal light sources or sources from a lower level spell slot are smothered within it.\n* **Daylight:** The area is filled with bright light, dispelling magical darkness created by spells of a lower level spell slot.\n* **Energy Protection:** Creatures in the area gain resistance against a damage type of your choice (excepting bludgeoning, piercing, or slashing).\n* **Energy Vulnerability:** Creatures in the area gain vulnerability against a damage type of your choice (excepting bludgeoning, piercing, or slashing).\n* **Everlasting Rest:** Dead bodies laid to rest in the area cannot be turned into undead by any means.\n* **Extradimensional Interference:** Extradimensional movement or travel is blocked to and from the area, including all teleportation effects.\n* **Fear**: Creatures are frightened while within the area.\n* **Silence:** No sound can enter or emanate from the area.\n* **Tongues:** Creatures within the area can freely communicate with one another whether they share a language or not.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_hallucinatory-terrain", + "fields": { + "name": "Hallucinatory Terrain", + "desc": "You weave a veil over the natural terrain within the area, making it look, sound, or smell like another sort of terrain. A small lake could be made to look like a grassy glade. A path or trail could be made to look like an impassable swamp. A cliff face could even appear as a gentle slope or seem to extend further than it does. This spell does not affect any manufactured structures, equipment, or creatures.\n\nOnly the visual, auditory, and olfactory components of the terrain are changed. Any creature that enters or attempts to interact with the illusion feels the real terrain below. If given sufficient reason, a creature may make an Investigation check against your spell save DC to disbelieve it. On a successful save, the creature sees the illusion superimposed over the actual terrain.", + "document": "a5e-ag", + "level": 4, + "school": "illusion", + "higher_level": "The spell targets an additional 50-foot cube for each slot level above 4th.", + "target_type": "area", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_harm", + "fields": { + "name": "Harm", + "desc": "You assail a target with an agonizing disease. The target takes 14d6 necrotic damage. If it fails its saving throw its hit point maximum is reduced by an amount equal to the damage taken for 1 hour or until the disease is magically cured. This spell cannot reduce a target to less than 1 hit point.", + "document": "a5e-ag", + "level": 6, + "school": "necromancy", + "higher_level": "Increase the damage by 2d6 for each slot level above 6th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "14d6", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_harmonic-resonance", + "fields": { + "name": "Harmonic Resonance", + "desc": "You harmonize with the rhythm of those around you until you're perfectly in sync. You may take the Help action as a bonus action. Additionally, when a creature within 30 feet uses a Bardic Inspiration die, you may choose to reroll the die after it is rolled but before the outcome is determined.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_haste", + "fields": { + "name": "Haste", + "desc": "Until the spell ends, the target's Speed is doubled, it gains a +2 bonus to AC, it has advantage on Dexterity saving throws, and it gains one additional action on each of its turns. This action can be used to make a single weapon attack, or to take the Dash, Disengage, Hide, or Use an Object action.\n\nWhen the spell ends, the target is tired and cannot move or take actions until after its next turn.", + "document": "a5e-ag", + "level": 3, + "school": "transformation", + "higher_level": "Target one additional creature for each slot level above 3rd. All targets of this spell must be within 30 feet of each other.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_heal", + "fields": { + "name": "Heal", + "desc": "A torrent of healing energy suffuses the target and it regains 70 hit points. The spell also ends blindness, deafness, and any diseases afflicting the target.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "The hit points regained increase by 10 for each slot level above 6th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_healing-word", + "fields": { + "name": "Healing Word", + "desc": "Healing energy washes over the target and it regains hit points equal to 1d4 + your spellcasting modifier.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The hit points regained increase by 1d4 for each slot level above 1st.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_heart-of-dis", + "fields": { + "name": "Heart of Dis", + "desc": "You magically replace your heart with one forged on the second layer of Hell. While the spell lasts, you are immune to fear and can't be poisoned, and you are immune to fire and poison damage. You gain resistance to cold damage, as well as to bludgeoning, piercing, and slashing damage from nonmagical weapons that aren't silvered. You have advantage on saving throws against spells and other magical effects. Finally, while you are conscious, any creature hostile to you that starts its turn within 20 feet of you must make a Wisdom saving throw. On a failed save, the creature is frightened of you until the start of your next turn. On a success, the creature is immune to the effect for 24 hours.\n\nCasting this spell magically transports your mortal heart to the lair of one of the lords of Hell. The heart returns to your body when the spell ends. If you die while under the effects of this spell, you can't be brought back to life until your original heart is retrieved.", + "document": "a5e-ag", + "level": 8, + "school": "necromancy", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_heat-metal", + "fields": { + "name": "Heat Metal", + "desc": "The target becomes oven hot. Any creature touching the target takes 2d8 fire damage when the spell is cast. Until the spell ends, on subsequent turns you can use a bonus action to inflict the same damage. If a creature is holding or wearing the target and suffers damage, it makes a Constitution saving throw or it drops the target. If a creature does not or cannot drop the target, it has disadvantage on attack rolls and ability checks until the start of your next turn.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "The damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_heroes-feast", + "fields": { + "name": "Heroes' Feast", + "desc": "The spell summons forth a sumptuous feast with a cuisine of your choosing that provides 1 Supply for a number of creatures equal to twice your proficiency bonus. Consuming the food takes 1 hour and leaves a creature feeling nourished—it immediately makes a saving throw with advantage against any disease or poison it is suffering from, and it is cured of any effect that frightens it.\n\nFor up to 24 hours afterward the feast's participants have advantage on Wisdom saving throws, advantage on saving throws made against disease and poison, resistance against damage from poison and disease, and each increases its hit point maximum by 2d10.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_heroism", + "fields": { + "name": "Heroism", + "desc": "The target's spirit is bolstered. Until the spell ends, the target gains temporary hit points equal to your spellcasting ability modifier at the start of each of its turns and it cannot be frightened. Any temporary hit points remaining are lost when the spell ends.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "Target one additional creature for each slot level above 1st.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_hideous-laughter", + "fields": { + "name": "Hideous Laughter", + "desc": "The target is overwhelmed by the absurdity of the world and is crippled by paroxysms of laughter. The target falls prone, becomes incapacitated, and cannot stand.\n\nUntil the spell ends, at the end of each of the target's turns and when it suffers damage, the target may attempt another saving throw (with advantage if triggered by damage). On a successful save, the spell ends.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "Target an additional creature within 30 feet of the original for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_hold-monster", + "fields": { + "name": "Hold Monster", + "desc": "The target is paralyzed. At the end of each of its turns, the target makes another saving throw, ending the spell's effects on it on a successful save.", + "document": "a5e-ag", + "level": 5, + "school": "enchantment", + "higher_level": "Target an additional creature within 30 feet of the first target for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_hold-person", + "fields": { + "name": "Hold Person", + "desc": "The target is paralyzed. At the end of each of its turns, the target makes another saving throw, ending the spell's effects on it on a successful save.", + "document": "a5e-ag", + "level": 2, + "school": "enchantment", + "higher_level": "Target an additional creature within 30 feet of the first target for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_holy-aura", + "fields": { + "name": "Holy Aura", + "desc": "Holy radiance emanates from you and fills the area. Targets shed dim light in a 5-foot radius and have advantage on saving throws. Attacks made against a target have disadvantage. When a fiend or undead hits a target, the aura erupts into blinding light, forcing the attacker to make a Constitution saving throw or be blinded until the spell ends.", + "document": "a5e-ag", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_hypnotic-pattern", + "fields": { + "name": "Hypnotic Pattern", + "desc": "You conjure a swirling pattern of twisting hues that roils through the air, appearing for a moment and then vanishing. Creatures in the area that can perceive the pattern make a Wisdom saving throw or become charmed. A creature charmed by this spell becomes incapacitated and its Speed is reduced to 0.\n\nThe effect ends on a creature when it takes damage or when another creature uses an action to shake it out of its daze.", + "document": "a5e-ag", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_ice-storm", + "fields": { + "name": "Ice Storm", + "desc": "A bombardment of jagged ice erupts throughout the target area. All creatures in the area take 2d8 bludgeoning damage and 4d6 cold damage. Large chunks of ice turn the area into difficult terrain until the end of your next turn.", + "document": "a5e-ag", + "level": 4, + "school": "evocation", + "higher_level": "The bludgeoning damage increases by 1d8 for each slot level above 4th.", + "target_type": "area", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_identify", + "fields": { + "name": "Identify", + "desc": "You learn the target item's magical properties along with how to use them. This spell also reveals whether or not a targeted item requires attunement and how many charges it has. You learn what spells are affecting the targeted item (if any) along with what spells were used to create it.\n\nAlternatively, you learn any spells that are currently affecting a targeted creature.\n\nWhat this spell can reveal is at the Narrator's discretion, and some powerful and rare magics are immune to identify.", + "document": "a5e-ag", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_illusory-script", + "fields": { + "name": "Illusory Script", + "desc": "You inscribe a message onto the target and wrap it in illusion until the spell ends. You and any creatures that you designate when the spell is cast perceive the message as normal. You may choose to have other creatures view the message as writing in an unknown or unintelligible magical script or a different message. If you choose to create another message, you can change the handwriting and the language that the message is written in, though you must know the language in question.\n\nIf the spell is dispelled, both the message and its illusory mask disappear.\n\nThe true message can be perceived by any creature with truesight.", + "document": "a5e-ag", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_imprisonment", + "fields": { + "name": "Imprisonment", + "desc": "You utter the target's name and attempt to bind them for eternity. On a successful save, a target is immune to any future attempts by you to cast this spell on it. On a failed save, choose from one of the forms of bindings below (each lasts until the spell ends).\n\n* **Burial:** The target is buried deep below the surface of the earth in a tomb just large enough to contain it. Nothing can enter the tomb. No teleportation or planar travel can be used to enter, leave, or affect the tomb or its contents. A small mithral orb is required for this casting.\n* **Chaining:** Chains made of unbreakable material erupt from the ground and root the target in place. The target is restrained and cannot be moved by any means. A small adamantine chain is required for this casting.\n* **Hedged Prison:** The target is imprisoned in a maze-like demiplane of your choosing, such as a labyrinth, a cage, a tower, a hedge maze, or any similar structure you desire. The demiplane is warded against teleportation and planar travel. A small jade representation of the demiplane is required for this casting.\n* **Minimus Containment:** The target shrinks to just under an inch and is imprisoned inside a gemstone, crystal, jar, or similar object. Nothing but light can pass in and out of the vessel, and it cannot be broken, cut, or otherwise damaged. The special component for this effect is whatever prison you wish to use.\n* **Slumber:** The target is plunged into an unbreakable slumber and cannot be awoken. Special soporific draughts are required for this casting.\n\nThe target does not need sustenance or air, nor does it age. No divination spells of any sort can be used to reveal the target's location.\n\nWhen cast, you must specify a condition that will cause the spell to end and release the target. This condition must be based on some observable action or quality and not related to mechanics like level, hitpoints, or class, and the Narrator must agree to it.\n\nA dispel magic only dispels an _imprisonment_ if it is cast using a 9th-level spell slot and targets the prison or the special component used to create the prison.\n\nEach casting that uses the same spell effect requires its own special component. Repeated castings with the same component free the prior occupant.", + "document": "a5e-ag", + "level": 9, + "school": "abjuration", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_incendiary-cloud", + "fields": { + "name": "Incendiary Cloud", + "desc": "A cloud of burning embers, smoke, and roiling flame appears within range. The cloud heavily obscures its area, spreading around corners and through cracks. When the cloud appears and a creature is in it, when a creature enters the cloud for the first time on a turn, or when a creature ends its turn within the cloud it makes a Dexterity saving throw, taking 10d8 fire damage on a failed save, or half as much on a successful one.\n\nThe cloud can be dispelled by a wind of at least 10 miles per hour. After it is cast, the cloud moves 10 feet away from you in a direction that you choose at the start of each of your turns.", + "document": "a5e-ag", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_inescapable-malady", + "fields": { + "name": "Inescapable Malady", + "desc": "You infect your target with an arcane disease. At any time after you cast this spell, as long as you are on the same plane of existence as the target, you can use an action to deal 7d10 necrotic damage to the target. If this damage would reduce the target to 0 hit points, you can choose to leave it with 1 hit point.\n\nAs part of dealing the damage, you may expend a 7th-level spell slot to sustain the disease. Otherwise, the spell ends. The spell ends when you die.\n\nCasting remove curse, greater restoration, or heal on the target allows the target to make a Constitution saving throw against the disease. Otherwise the disease can only be cured by a wish spell.", + "document": "a5e-ag", + "level": 7, + "school": "necromancy", + "higher_level": "The damage increases by 1d10 for each slot level above 7th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_infernal-weapon", + "fields": { + "name": "Infernal Weapon", + "desc": "A weapon formed from the essence of Hell appears in your hands. You must use two hands to wield the weapon. If you let go of the weapon, it disappears and the spell ends.\n\nWhen you cast the spell, choose either a flame fork or ice spear. While the spell lasts, you can use an action to make a melee spell attack with the weapon against a creature within 10 feet of you.\n\nOn a hit, you deal 5d8 damage of a type determined by the weapon's form. On a critical hit, you inflict an additional effect.\n\nIn addition, on a hit with the infernal weapon, you can end the spell early to inflict an automatic critical hit.\n\n**Flame Fork.** The weapon deals fire damage.\n\nOn a critical hit, the target catches fire, taking 2d6 ongoing fire damage.\n\n**Ice Spear.** The weapon deals cold damage. On a critical hit, for 1 minute the target is slowed.\n\nAt the end of each of its turns a slowed creature can make a Constitution saving throw, ending the effect on itself on a success.\n\nA creature reduced to 0 hit points by an infernal weapon immediately dies in a gruesome fashion.\n\nFor example, a creature killed by an ice spear might freeze solid, then shatter into a thousand pieces. Each creature of your choice within 60 feet of the creature and who can see it when it dies must make a Wisdom saving throw. On a failure, a creature becomes frightened of you until the end of your next turn.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_inflict-wounds", + "fields": { + "name": "Inflict Wounds", + "desc": "You impart fell energies that suck away the target's life force, making a melee spell attack that deals 3d10 necrotic damage.", + "document": "a5e-ag", + "level": 1, + "school": "necromancy", + "higher_level": "The damage increases by 1d10 for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_insect-plague", + "fields": { + "name": "Insect Plague", + "desc": "A roiling cloud of insects appears, biting and stinging any creatures it touches. The cloud lightly obscures its area, spreads around corners, and is considered difficult terrain. When the cloud appears and a creature is in it, when a creature enters the cloud for the first time on a turn, or when a creature ends its turn within the cloud it makes a Constitution saving throw, taking 4d10 piercing damage on a failed save, or half as much on a successful one.", + "document": "a5e-ag", + "level": 5, + "school": "conjuration", + "higher_level": "The damage increases by 1d10 for each slot level above 5th.", + "target_type": "creature", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_instant-summons", + "fields": { + "name": "Instant Summons", + "desc": "Until the spell ends, a mystical bond connects the target and the precious stone used to cast this spell.\n\nAny time after, you may crush the stone and speak the name of the item, summoning it instantly into your hand no matter the physical, metaphysical, or planar distances involved, at which point the spell ends. If another creature is holding the item when the stone is crushed, the item is not summoned to you. Instead, the spell grants you the knowledge of who possesses it and a general idea of the creature's location.\n\nEach time you cast this spell, you must use a different precious stone.\n\nDispel magic or a similar effect targeting the stone ends the spell.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_invigorated-strikes", + "fields": { + "name": "Invigorated Strikes", + "desc": "You allow long-forgotten fighting instincts to boil up to the surface. For the duration of the spell, whenever the target deals damage with an unarmed strike or natural weapon, it deals 1d4 extra damage.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell with a 3rd-level spell slot, the extra damage increases from 1d4 to 1d6\\. When you cast this spell with a 5th-level spell slot, the extra damage increases to 1d8.\n\nWhen you cast this spell with a 7th-level spell slot, the extra damage increases to 1d10.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_invisibility", + "fields": { + "name": "Invisibility", + "desc": "You wreathe a creature in an illusory veil, making it invisible. Anything the target is carrying or wearing is also invisible as long as it remains in the target's possession. The spell's effects end for a target that attacks or casts a spell.", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "Target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_irresistible-dance", + "fields": { + "name": "Irresistible Dance", + "desc": "You murmur a tune that takes root in the target's mind until the spell ends, forcing it to caper, dance, and shuffle. At the start of each of its turns, the dancing target must use all of its movement to dance in its space, and it has disadvantage on attack rolls and saving throws. Attacks made against the target have advantage. On each of its turns, the target can use an action to repeat the saving throw, ending the spell on a successful save.", + "document": "a5e-ag", + "level": 6, + "school": "enchantment", + "higher_level": "Target one additional creature within 30 feet for each slot level above 6th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_jump", + "fields": { + "name": "Jump", + "desc": "You imbue a target with the ability to make impossible leaps. The target's jump distances increase 15 feet vertically and 30 feet horizontally.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "Each of the target's jump distances increase by 5 feet for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_knock", + "fields": { + "name": "Knock", + "desc": "Make a check against the DC of a lock or door using your spell attack bonus. On a success, you unlock or open the target with a loud metallic clanging noise easily audible at up to 300 feet. In addition, any traps on the object are automatically triggered. An item with multiple locks requires multiple castings of this spell to be opened.\n\nWhen you target an object held shut by an arcane lock, that spell is suppressed for 10 minutes, allowing the object to be opened and shut normally during that time.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "The level of the arcane lock you can suppress increases by 1 for each slot level above 3rd. In addition, if the level of your knock spell is 2 or more levels higher than that of the arcane lock, you may dispel the arcane lock instead of suppressing it.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_legend-lore", + "fields": { + "name": "Legend Lore", + "desc": "You learn significant information about the target. This could range from the most up-todate research, lore forgotten in old tales, or even previously unknown information. The spell gives you additional, more detailed information if you already have some knowledge of the target. The spell will not return any information for items not of legendary renown.\n\nThe knowledge you gain is always true, but may be obscured by metaphor, poetic language, or verse.\n\nIf you use the spell for a cursed tome, for instance, you may gain knowledge of the dire words spoken by its creator as they brought it into the world.", + "document": "a5e-ag", + "level": 5, + "school": "divination", + "higher_level": "Your intuition surrounding the target is enhanced and you gain advantage on one Investigation check regarding it for each slot level above 6th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_lemure-transformation", + "fields": { + "name": "Lemure Transformation", + "desc": "Your body melts into a humanoid-shaped mass of liquid flesh. Each creature within 5 feet of you that can see the transformation must make a Wisdom saving throw. On a failure, the creature can't take reactions and is frightened of you until the start of its next turn. Until the end of your turn, your Speed becomes 20 feet, you can't speak, and you can move through spaces as narrow as 1 inch wide without squeezing. You revert to your normal form at the end of your turn.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 turn", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_lesser-restoration", + "fields": { + "name": "Lesser Restoration", + "desc": "Your glowing hand removes one disease or condition affecting the target. Choose from blinded, deafened, paralyzed, or poisoned. At the Narrator's discretion, some diseases might not be curable with this spell.", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_levitate", + "fields": { + "name": "Levitate", + "desc": "Until the spell ends, the target rises vertically in the air up to 20 feet and remains floating there, able to move only by pushing or pulling on fixed objects or surfaces within its reach. This allows the target to move as if it was climbing.\n\nOn subsequent turns, you can use your action to alter the target's altitude by up to 20 feet in either direction so long as it remains within range. If you have targeted yourself you may move up or down as part of your movement.\n\nThe target floats gently to the ground if it is still in the air when the spell ends.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "When using a 5th-level spell slot the target can levitate or come to the ground at will. When using a 7th-level spell slot its duration increases to 1 hour and it no longer requires concentration.", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_light", + "fields": { + "name": "Light", + "desc": "Until the spell ends, the target emits bright light in a 20-foot radius and dim light an additional 20 feet. Light emanating from the target may be any color. Completely covering the target with something that is not transparent blocks the light. The spell ends when you use an action to dismiss it or if you cast it again.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_lightning-bolt", + "fields": { + "name": "Lightning Bolt", + "desc": "A bolt of lightning arcs out from you in a direction you choose. Each creature in the area takes 8d6 lightning damage. The lightning ignites flammable objects in its path that aren't worn or carried by another creature.\n\nIf the spell is stopped by an object at least as large as its width, it ends there unless it deals enough damage to break through. When it does, it continues to the end of its area.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "Damage increases by 1d6 for every slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "lightning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_locate-animals-or-plants", + "fields": { + "name": "Locate Animals or Plants", + "desc": "Name or describe in detail a specific kind of beast or plant. The natural magics in range reveal the closest example of the target within 5 miles, including its general direction (north, west, southeast, and so on) and how many miles away it currently is.", + "document": "a5e-ag", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "5 miles", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_locate-creature", + "fields": { + "name": "Locate Creature", + "desc": "Name or describe in detail a creature familiar to you. The spell reveals the general direction the creature is in (south, east, northwest, and so on) if it exists within range. This includes its current trajectory if it's travelling.\n\nYou may locate specific, known creatures, or the nearest creature of a specific type (like a bat, gnome, or red dragon) provided that you have observed that type within 30 feet at least once. If a specific creature you seek is in a different form (for example a wildshaped druid) the spell is unable to find it.\n\nThe spell cannot travel across running water 10 feet across or wider—it is unable to find the creature and the trail ends.", + "document": "a5e-ag", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "1000 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_locate-object", + "fields": { + "name": "Locate Object", + "desc": "Name or describe in detail an object familiar to you. The spell reveals the general direction the object is in (south, east, northwest, and so on) if it exists within range. This includes its current trajectory if it's travelling.\n\nYou may locate a specific object known to you, provided that you have observed it within 30 feet at least once. You may also find the closest example of a certain type of object (for example an instrument, item of furniture, compass, or vase).\n\nWhen there is any thickness of lead in the direct path between you and the object the spell is unable to find it.", + "document": "a5e-ag", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "1000 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_longstrider", + "fields": { + "name": "Longstrider", + "desc": "Until the spell ends, the target's Speed increases by 10 feet.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "Target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_mage-armor", + "fields": { + "name": "Mage Armor", + "desc": "Until the spell ends, the target is protected by a shimmering magical force. Its AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor, or if you use an action to dismiss it.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "The target gains 5 temporary hit points for each slot level above 1st. The temporary hit points last for the spell's duration.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_mage-hand", + "fields": { + "name": "Mage Hand", + "desc": "A faintly shimmering phantasmal hand appears at a point you choose within range. It remains until you dismiss it as an action, or until you move more than 30 feet from it.\n\nYou can use an action to control the hand and direct it to do any of the following:\n\n* manipulate an object.\n* open an unlocked container or door.\n* stow or retrieve items from unlocked containers.\n\nThe hand cannot attack, use magic items, or carry more than 10 pounds.", + "document": "a5e-ag", + "level": 0, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_magic-circle", + "fields": { + "name": "Magic Circle", + "desc": "Magical energies surround the area and stop the type of designated creature from willingly entering by nonmagical means.\n\nDesignated creatures have disadvantage when attacking creatures within the area and are unable to charm, frighten, or possess creatures within the area. When a designated creature attempts to teleport or use interplanar travel to enter the area, it makes a Charisma saving throw or its attempt fails.\n\nYou may also choose to reverse this spell, trapping a creature of your chosen type within the area in order to protect targets outside it.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "The spell's duration increases by 1 hour for every slot level above 3rd.", + "target_type": "area", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_magic-jar", + "fields": { + "name": "Magic Jar", + "desc": "Your body becomes catatonic as your soul enters the vessel used as a material component. While within this vessel, you're aware of your surroundings as if you physically occupied the same space.\n\nThe only action you can take is to project your soul within range, whether to return to your living body (and end the spell) or to possess a humanoid.\n\nYou may not target creatures protected by protection from good and evil or magic circle spells. A creature you try to possess makes a Charisma saving throw or your soul moves from your vessel and into its body. The creature's soul is now within the container. On a successful save, the creature resists and you may not attempt to possess it again for 24 hours.\n\nOnce you possess a creature, you have control of it. Replace your game statistics with the creature's, except your Charisma, Intelligence and Wisdom scores. Your own cultural traits and class features also remain, and you may not use the creature's cultural traits or class features (if it has any).\n\nDuring possession, you can use an action to return to the vessel if it is within range, returning the host creature to its body. If the host body dies while you are possessing it, the creature also dies and you must make a Charisma save. On a success you return to the container if it's within range. Otherwise, you die.\n\nIf the vessel is destroyed, the spell ends and your soul returns to your body if it's within range. If your body is out of range or dead when you try to return, you die.\n\nThe possessed creature perceives the world as if it occupied the same space as the vessel, but may not take any actions or movement. If the vessel is destroyed while occupied by a creature other than yourself, the creature returns to its body if the body is alive and within range. Otherwise, the creature dies.\n\nThe vessel is destroyed when the spell ends.", + "document": "a5e-ag", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_magic-missile", + "fields": { + "name": "Magic Missile", + "desc": "A trio of glowing darts of magical force unerringly and simultaneously strike the targets, each dealing 1d4+1 force damage.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "Evoke one additional dart and target up to one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_magic-mouth", + "fields": { + "name": "Magic Mouth", + "desc": "The target is imbued with a spoken message of 25 words or fewer which it speaks when a trigger condition you choose is met. The message may take up to 10 minutes to convey.\n\nWhen your trigger condition is met, a magical mouth appears on the object and recites the message in the same voice and volume as you used when instructing it. If the object chosen has a mouth (for example, a painted portrait) this is where the mouth appears.\n\nYou may choose upon casting whether the message is a single event, or whether it repeats every time the trigger condition is met.\n\nThe trigger condition must be based upon audio or visual cues within 30 feet of the object, and may be highly detailed or as broad as you choose.\n\nFor example, the trigger could be when any attack action is made within range, or when the first spring shoot breaks ground within range.", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_magic-weapon", + "fields": { + "name": "Magic Weapon", + "desc": "Until the spell ends, the target becomes +1 magic weapon.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "The bonus increases by +1 for every 2 slot levels above 2nd (maximum +3).", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_magnificent-mansion", + "fields": { + "name": "Magnificent Mansion", + "desc": "You conjure an extradimensional residence within range. It has one entrance that is in a place of your choosing, has a faint luster to it, and is 5 feet wide and 10 feet tall. You and any designated creature may enter your mansion while the portal is open. You may open and close the portal while you are within 30 feet of it. Once closed the entrance is invisible.\n\nThe entrance leads to an opulent entrance hall, with many doors and halls coming from it. The atmosphere is welcoming, warm, and comfortable, and the whole place is sparkling clean.\n\nThe floor plan of the residence is up to you, but it must be made up of fifty or fewer 10-foot cubes.\n\nThe furniture and decor are chosen by you. The residence contains enough food to provide Supply for a number of people equal to 5 × your proficiency bonus. A staff of translucent, lustrous servants dwell within the residence. They may otherwise look how you wish. These servants obey your commands without question, and can perform the same nonhostile actions as a human servant—they might carry objects, prepare and serve food and drinks, clean, make simple repairs, and so on. Servants have access to the entire mansion but may not leave.\n\nAll objects and furnishings belonging to the mansion evaporate into shimmering smoke when they leave it. Any creature within the mansion when the spell ends is expelled into an unoccupied space near the entrance.", + "document": "a5e-ag", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_major-image", + "fields": { + "name": "Major Image", + "desc": "Until the spell ends, you create an image that appears completely real. The illusion includes sounds, smells, and temperature in addition to visual phenomena. None of the effects of the illusion are able to cause actual harm.\n\nWhile within range you can use an action to move the illusion. As the image moves you may also change its appearance to make the movement seem natural (like a roc moving its wings to fly) and also change the nonvisual elements of the illusion for the same reason (like the sound of beating wings as the roc flies).\n\nAny physical interaction immediately reveals the image is an illusion, as objects and creatures alike pass through it. An Investigation check against your spell save DC also reveals the image is an illusion.\n\nWhen a creature realizes the image is an illusion, the effects become fainter for that creature.", + "document": "a5e-ag", + "level": 3, + "school": "illusion", + "higher_level": "When cast using a 6th-level spell slot the illusion lasts until dispelled without requiring concentration.", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_mass-cure-wounds", + "fields": { + "name": "Mass Cure Wounds", + "desc": "Glowing energy rushes through the air and each target regains hit points equal to 3d8 + your spellcasting modifier.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "The hit points regained increase by 1d8 for each slot level above 5th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_mass-heal", + "fields": { + "name": "Mass Heal", + "desc": "Healing energy erupts from your steepled hands and restores up to 700 hit points between the targets.\n\nCreatures healed in this way are also cured of any diseases, and any effect causing them to be blinded or deafened. In addition, on subsequent turns within the next minute you can use a bonus action to distribute any unused hit points.", + "document": "a5e-ag", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_mass-healing-word", + "fields": { + "name": "Mass Healing Word", + "desc": "Healing energy flows from you in a wash of restorative power and each target regains hit points equal to 1d4 + your spellcasting ability modifier.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "The hit points regained increase by 1d4 for each slot level above 3rd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_mass-suggestion", + "fields": { + "name": "Mass Suggestion", + "desc": "Creatures that cannot be charmed are immune to this spell. Suggest an activity phrased in a sentence or two. The targets are magically influenced to follow that course of activity. The suggestion must be worded to sound reasonable. Asking the targets to perform an action that is obviously harmful to them ends the spell.\n\nA target carries out the activity suggested by you as well as it can. The activity can last for the duration of the spell, and if it requires less time the spell ends after a target has carried out the activity.\n\nYou may specify trigger conditions that cause a target to perform a specific activity while the spell lasts. For example, you may suggest that the target takes off its clothes and dives the next time it sees a body of water. If the target does not see a body of water before the spell ends, the specific activity isn't performed.\n\nAny damage done to a target by you or an ally ends the spell for that creature.", + "document": "a5e-ag", + "level": 6, + "school": "enchantment", + "higher_level": "When cast using a 7th-level spell slot, the duration of the spell increases to 10 days. When cast using an 8th-level spell slot, the duration increases to 30 days. When cast using a 9th-level spell slot, the duration increases to a year and a day.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_maze", + "fields": { + "name": "Maze", + "desc": "The target is banished to a complex maze on its own demiplane, and remains there for the duration or until the target succeeds in escaping.\n\nThe target can use an action to attempt to escape, making an Intelligence saving throw. On a successful save it escapes and the spell ends. A creature with Labyrinthine Recall (or a similar trait) automatically succeeds on its save.\n\nWhen the spell ends the target reappears in the space it occupied before the spell was cast, or the closest unoccupied space if that space is occupied.", + "document": "a5e-ag", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_meld-into-stone", + "fields": { + "name": "Meld Into Stone", + "desc": "Until the spell ends, you meld yourself and your carried equipment into the target stone. Using your movement, you may enter the stone from any point you can touch. No trace of your presence is visible or detectable by nonmagical senses.\n\nWithin the stone, you can't see outside it and have disadvantage on Perception checks made to hear beyond it. You are aware of time passing, and may cast spells upon yourself. You may use your movement only to step out of the target where you entered it, ending the spell.\n\nIf the target is damaged such that its shape changes and you no longer fit within it, you are expelled and take 6d6 bludgeoning damage. Complete destruction of the target, or its transmutation into another substance, expels you and you take 50 bludgeoning damage. When expelled you fall prone into the closest unoccupied space near your entrance point.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "When using a 5th-level spell slot, you may reach out of the target to make spell attacks or ranged weapon attacks without ending the spell. You make these attacks with disadvantage.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_mending", + "fields": { + "name": "Mending", + "desc": "You repair a single rip or break in the target object (for example, a cracked goblet, torn page, or ripped robe). The break must be smaller than 1 foot in all dimensions. The spell leaves no trace that the object was damaged.\n\nMagic items and constructs may be repaired in this way, but their magic is not restored. You gain an expertise die on maintenance checks if you are able to cast this spell on the item you are treating.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_mental-grip", + "fields": { + "name": "Mental Grip", + "desc": "You conjure extensions of your own mental fortitude to keep your foes at bay. For the spell's duration, you can use an action to attempt to grapple a creature within range by making a concentration check against its maneuver DC.\n\nOn its turn, a target grappled in this way can use an action to attempt to escape the grapple, using your spell save DC instead of your maneuver DC.\n\nSuccessful escape attempts do not break your concentration on the spell.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_message", + "fields": { + "name": "Message", + "desc": "You point and whisper your message at the target.\n\nIt alone hears the message and may reply in a whisper audible only to you.\n\nYou can cast this spell through solid objects if you are familiar with the target and are certain it is beyond the barrier. The message is blocked by 3 feet of wood, 1 foot of stone, 1 inch of common metals, or a thin sheet of lead.\n\nThe spell moves freely around corners or through openings.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_meteor-swarm", + "fields": { + "name": "Meteor Swarm", + "desc": "Scorching spheres of flame strike the ground at 4 different points within range. The effects of a sphere reach around corners. Creatures and objects in the area take 14d6 fire damage and 14d6 bludgeoning damage, and flammable unattended objects catch on fire. If a creature is in the area of more than one sphere, it is affected only once.", + "document": "a5e-ag", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "1 mile", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_mind-blank", + "fields": { + "name": "Mind Blank", + "desc": "The target is immune to psychic damage, any effect that would read its emotions or thoughts, divination spells, and the charmed condition.\n\nThis immunity extends even to the wish spell, and magical effects or spells of similar power that would affect the target's mind or gain information about it.", + "document": "a5e-ag", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_mindshield", + "fields": { + "name": "Mindshield", + "desc": "The target has resistance to psychic damage and advantage on saving throws made to resist being charmed or frightened.", + "document": "a5e-ag", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_minor-illusion", + "fields": { + "name": "Minor Illusion", + "desc": "This spell creates a sound or image of an object.\n\nThe illusion disappears if dismissed or you cast the spell again.\n\nYou may create any sound you choose, ranging in volume from a whisper to a scream. You may choose one sound for the duration or change them at varying points before the spell ends. Sounds are audible outside the spell's area.\n\nVisual illusions may replicate any image and remain within the spell's area, but cannot create sound, light, smell, or other sensory effects.\n\nThe image is revealed as an illusion with any physical interaction as physical objects and creatures pass through it. An Investigation check against your spell save DC also reveals the image is an illusion. When a creature realizes the image is an illusion, the effects become fainter for that creature.", + "document": "a5e-ag", + "level": 0, + "school": "illusion", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_mirage-arcane", + "fields": { + "name": "Mirage Arcane", + "desc": "You make terrain within the spell's area appear as another kind of terrain, tricking all senses (including touch).\n\nThe general shape of the terrain remains the same, however. A small town could resemble a woodland, a smooth road could appear rocky and overgrown, a deep pit could resemble a shallow pond, and so on.\n\nStructures may be altered in the similar way, or added where there are none. Creatures are not disguised, concealed, or added by the spell.\n\nThe illusion appears completely real in all aspects, including physical terrain, and can be physically interacted with. Clear terrain becomes difficult terrain, and vice versa. Any part of the illusory terrain such as a boulder, or water collected from an illusory stream, disappears immediately upon leaving the spell's area.\n\nCreatures with truesight see through the illusion, but are not immune to its effects. They may know that the overgrown path is in fact a well maintained road, but are still impeded by illusory rocks and branches.", + "document": "a5e-ag", + "level": 7, + "school": "illusion", + "higher_level": "", + "target_type": "area", + "range": "Sight", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_mirror-image", + "fields": { + "name": "Mirror Image", + "desc": "A total of 3 illusory copies of yourself appear in your space. For the duration, these copies move with you and mimic your actions, creating confusion as to which is real.\n\nYou can use an action to dismiss them.\n\nEach time you're targeted by a creature's attack, roll a d20 to see if it targets you or one of your copies.\n\nWith 3 copies, a roll of 6 or higher means a copy is targeted. With two copies, a roll of 8 or higher targets a copy, and with 1 copy a roll of 11 or higher targets the copy.\n\nA copy's AC is 10 + your Dexterity modifier, and when it is hit by an attack a copy is destroyed.\n\nIt may be destroyed only by an attack that hits it.\n\nAll other damage and effects have no impact.\n\nAttacking creatures that have truesight, cannot see, have blindsight, or rely on other nonvisual senses are unaffected by this spell.", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "When using a 5th-level spell slot, the duration increases to concentration (1 hour).", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_mislead", + "fields": { + "name": "Mislead", + "desc": "You become invisible. At the same time, an illusory copy of you appears where you're standing.\n\nThis invisibility ends when you cast a spell but the copy lasts until the spell ends.\n\nYou can use an action to move your copy up to twice your Speed, have it speak, make gestures, or behave however you'd like.\n\nYou may see and hear through your copy. Until the spell ends, you can use a bonus action to switch between your copy's senses and your own, or back again. While using your copy's senses you are blind and deaf to your body's surroundings.\n\nThe copy is revealed as an illusion with any physical interaction, as solid objects and creatures pass through it.", + "document": "a5e-ag", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_misty-step", + "fields": { + "name": "Misty Step", + "desc": "You teleport to an unoccupied space that you can see, disappearing and reappearing in a swirl of shimmering mist.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_modify-memory", + "fields": { + "name": "Modify Memory", + "desc": "The target has advantage on its saving throw if you are in combat with it. The target becomes charmed and incapacitated, though it can still hear you. Until the spell ends, any memories of an event that took place within the last 24 hours and lasted 10 minutes or less may be altered.\n\nYou may destroy the memory, have the target recall the event with perfect clarity, change the details, or create a new memory entirely with the same restrictions in time frame and length.\n\nYou must speak to the target in a language you both know to modify its memories and describe how the memory is changed. The target fills in the gaps in details based on your description.\n\nThe spell automatically ends if the target takes any damage or if it is targeted by another spell. If the spell ends before you have finished modifying its memories, the alteration fails. Otherwise, the alteration is complete when the spell ends and only greater restoration or remove curse can restore the memory.\n\nThe Narrator may deem a modified memory too illogical or nonsensical to affect a creature, in which case the modified memory is simply dismissed by the target. In addition, a modified memory doesn't specifically change the behavior of a creature, especially if the memory conflicts with the creature's personality, beliefs, or innate tendencies.\n\nThere may also be events that are practically unforgettable and after being modified can be remembered correctly when another creature succeeds on a Persuasion check to stir the target's memories. This check is made with disadvantage if the creature does not have indisputable proof on hand that is relevant to the altered memory.", + "document": "a5e-ag", + "level": 5, + "school": "enchantment", + "higher_level": "When using a 6th-level spell slot, the event can be from as far as 7 days ago. When using a 7th-level spell slot, the event can be from as far as 30 days ago. When using an 8th-level spell slot, the event can be from as far as 1 year ago. When using a 9th-level spell slot, any event can be altered.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_moonbeam", + "fields": { + "name": "Moonbeam", + "desc": "A beam of moonlight fills the area with dim light.\n\nWhen a creature enters the area for the first time on a turn or begins its turn in the area, it is struck by silver flames and makes a Constitution saving throw, taking 2d10 radiant damage on a failed save, or half as much on a success.\n\nShapechangers have disadvantage on this saving throw. On a failed save, a shapechanger is forced to take its original form while within the spell's light.\n\nOn your turn, you may use an action to move the beam 60 feet in any direction.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "The damage increases by 1d10 for each slot level above 2nd.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_move-earth", + "fields": { + "name": "Move Earth", + "desc": "You reshape the area, changing its elevation or creating and eliminating holes, walls, and pillars.\n\nThe only limitation is that the elevation change may not exceed half the area's horizontal dimensions.\n\nFor example, affecting a 40-by-40 area allows you to include 20 foot high pillars, holes 20 feet deep, and changes in terrain elevation of 20 feet or less.\n\nChanges that result in unstable terrain are subject to collapse.\n\nChanges take 10 minutes to complete, after which you can choose another area to affect. Due to the slow speed of transformation, it is nearly impossible for creatures to be hurt or captured by the spell.\n\nThis spell has no effect on stone, objects crafted from stone, or plants, though these objects will shift based on changes in the area.", + "document": "a5e-ag", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "2 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_nondetection", + "fields": { + "name": "Nondetection", + "desc": "The target is hidden from divination magic and cannot be perceived by magical scrying sensors.\n\nWhen used on a place or object, the spell only works if the target is no larger than 10 feet in any given dimension.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_pass-without-trace", + "fields": { + "name": "Pass Without Trace", + "desc": "You and allies within the area gain advantage and an expertise die on Dexterity (Stealth) checks as an aura of secrecy enshrouds you. Creatures in the area leave behind no evidence of their passage.", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_passwall", + "fields": { + "name": "Passwall", + "desc": "Until the spell ends, you create a passage extending into the target surface. When creating the passage you define its dimensions, as long as they do not exceed 5 feet in width, 8 feet in height, or 20 feet in depth.\n\nThe appearance of the passage has no effect on the stability of the surrounding environment.\n\nAny creatures or objects within the passage when the spell ends are expelled without harm into unoccupied spaces near where the spell was cast.", + "document": "a5e-ag", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_pestilence", + "fields": { + "name": "Pestilence", + "desc": "A swarm of insects fills the area. Creatures that begin their turn within the spell's area or who enter the area for the first time on their turn must make a Constitution saving throw or take 1d4 piercing damage. The pests also ravage any unattended organic material within their radius, such as plant, wood, or fabric.", + "document": "a5e-ag", + "level": 0, + "school": "conjuration", + "higher_level": "This spell's damage increases by 1d4 when you reach 5th level (2d4), 10th level (3d4), and 15th level (4d4).", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_phantasmal-killer", + "fields": { + "name": "Phantasmal Killer", + "desc": "You create an illusion that invokes the target's deepest fears. Only the target can see this illusion.\n\nWhen the spell is cast and at the end of each of its turns, the target makes a Wisdom saving throw or takes 4d10 psychic damage and becomes frightened.\n\nThe spell ends early when the target succeeds on its saving throw. A target that succeeds on its initial saving throw takes half damage.", + "document": "a5e-ag", + "level": 4, + "school": "illusion", + "higher_level": "The damage increases by 1d10 for each slot level above the 4th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "4d10", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_phantasmal-talons", + "fields": { + "name": "Phantasmal Talons", + "desc": "You silently clench your hand into a claw and invisible talons of pure will sprout from your fingers.\n\nThe talons do not interact with physical matter, but rip viciously at the psyche of any creature struck by them. For the duration, your unarmed strikes gain the finesse property and deal psychic damage. In addition, if your unarmed strike normally deals less than 1d4 damage, it instead deals 1d4 damage.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_phantom-steed", + "fields": { + "name": "Phantom Steed", + "desc": "You create an illusory Large creature with an appearance determined by you that comes into being with all the necessary equipment needed to use it as a mount. This equipment vanishes when more than 10 feet away from the creature.\n\nYou or any creature you allow may ride the steed, which uses the statistics for a riding horse but has a Speed of 100 feet and travels at 10 miles per hour at a steady pace (13 miles per hour at a fast pace).\n\nThe steed vanishes if it takes damage (disappearing instantly) or you use an action to dismiss it (fading away, giving the rider 1 minute to dismount).", + "document": "a5e-ag", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_planar-ally", + "fields": { + "name": "Planar Ally", + "desc": "An entity from beyond the realm material answers your call for assistance. You must know this entity whether it is holy, unholy, or beyond the bounds of mortal comprehension. The entity sends forth a servant loyal to it to aid you in your endeavors. If you have a specific servant in mind you may speak its name during the casting, but ultimately who is sent to answer your call is the entity's decision.\n\nThe creature that appears (a celestial, elemental, fey, or fiend), is under no compulsion to behave in any particular way other than how its nature and personality direct it. Any request made of the creature, simple or complex, requires an equal amount of payment which you must bargain with the creature to ascertain. The creature can request either items, sacrifices, or services in exchange for its assistance. A creature that you cannot communicate with cannot be bargained with.\n\nA task that can be completed in minutes is worth 100 gold per minute, a task that requires hours is worth 1, 000 gold per hour, and a task requiring days is worth 10, 000 gold per day (the creature can only accept tasks contained within a 10 day timeframe). A creature can often be persuaded to lower or raise prices depending on how a task aligns with its personality and the goals of its master —some require no payment at all if the task is deemed worthy. Additionally, a task that poses little or no risk only requires half the usual amount of payment, and an extremely dangerous task might call for double the usual payment. Still, only extreme circumstances will cause a creature summoned this way to accept tasks with a near certain result of death.\n\nA creature returns to its place of origin when a task is completed or if you fail to negotiate an agreeable task and payment. Should a creature join your party, it counts as a member of the group and receives a full portion of any experience gained.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_planar-binding", + "fields": { + "name": "Planar Binding", + "desc": "The target must remain within range for the entire casting of the spell (usually by means of a magic circle spell). Until the spell ends, you force the target to serve you. If the target was summoned through some other means, like a spell, the duration of the original spell is extended to match this spell's duration.\n\nOnce it is bound to you the target serves as best it can and follows your orders, but only to the letter of the instruction. A hostile or malevolent target actively seeks to take any advantage of errant phrasing to suit its nature. When a target completes a task you've assigned to it, if you are on the same plane of existence the target travels back to you to report it has done so. Otherwise, it returns to where it was bound and remains there until the spell ends.", + "document": "a5e-ag", + "level": 5, + "school": "abjuration", + "higher_level": "When using a 6th-level spell slot, its duration increases to 10 days. When using a 7th-level spell slot, its duration increases to 30 days. When using an 8th-level spell slot, its duration increases to 180 days. When using a 9th-level spell slot, its duration increases to a year and a day.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_plane-shift", + "fields": { + "name": "Plane Shift", + "desc": "Willing targets are transported to a plane of existence that you choose. If the destination is generally described, targets arrive near that destination in a location chosen by the Narrator. If you know the correct sequence of an existing teleportation circle (see teleportation circle), you can choose it as the destination (when the designated circle is too small for all targets to fit, any additional targets are shunted to the closest unoccupied spaces).\n\nAlternatively this spell can be used offensively to banish an unwilling target. You make a melee spell attack and on a hit the target makes a Charisma saving throw or is transported to a random location on a plane of existence that you choose. Once transported, you must spend 1 minute concentrating on this spell or the target returns to the last space it occupied (otherwise it must find its own way back).", + "document": "a5e-ag", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 8, + "saving_throw_ability": "charisma", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_plant-growth", + "fields": { + "name": "Plant Growth", + "desc": "You channel vitality into vegetation to achieve one of the following effects, chosen when casting the spell.\n\nEnlarged: Plants in the area are greatly enriched. Any harvests of the affected plants provide twice as much food as normal.\n\nRapid: All nonmagical plants in the area surge with the power of life. A creature that moves through the area must spend 4 feet of movement for every foot it moves. You can exclude one or more areas of any size from being affected.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_poison-skin", + "fields": { + "name": "Poison Skin", + "desc": "The target becomes poisonous to the touch. Until the spell ends, whenever a creature within 5 feet of the target damages the target with a melee weapon attack, the creature makes a Constitution saving throw. On a failed save, the creature becomes poisoned and takes 1d6 ongoing poison damage.\n\nA poisoned creature can make a Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe target of the spell also becomes bright and multicolored like a poisonous dart frog, giving it disadvantage on Dexterity (Stealth) checks.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "The target's skin is also covered in mucus, giving it advantage on saving throws and checks made to resist being grappled or restrained. In addition, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "poison" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_polymorph", + "fields": { + "name": "Polymorph", + "desc": "The target's body is transformed into a beast with a Challenge Rating equal to or less than its own. If the target doesn't have a Challenge Rating, use its level.\n\nUntil the spell ends or it is dropped to 0 hit points, the target's game statistics (including its hit points and mental ability scores) are replaced by the statistics of the chosen beast. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effects on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_power-word-kill", + "fields": { + "name": "Power Word Kill", + "desc": "With but a word you snuff out the target's life and it immediately dies. If you cast this on a creature with more than 100 hit points, it takes 50 hit points of damage.", + "document": "a5e-ag", + "level": 9, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_power-word-stun", + "fields": { + "name": "Power Word Stun", + "desc": "You utter a powerful word that stuns a target with 150 hit points or less. At the end of the target's turn, it makes a Constitution saving throw to end the effect. If the target has more than 150 hit points, it is instead rattled until the end of its next turn.", + "document": "a5e-ag", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_prayer-of-healing", + "fields": { + "name": "Prayer of Healing", + "desc": "The targets regain hit points equal to 2d8 + your spellcasting ability modifier.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "The hit points regained increase by 1d8 for each slot level above 2nd.", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_prestidigitation", + "fields": { + "name": "Prestidigitation", + "desc": "You wield arcane energies to produce minor effects. Choose one of the following:\n\n* create a single burst of magic that manifests to one of the senses (for example a burst of sound, sparks, or an odd odor).\n* clean or soil an object of 1 cubic foot or less.\n* light or snuff a flame.\n* chill, warm, or flavor nonliving material of 1 cubic foot or less for 1 hour.\n* color or mark an object or surface for 1 hour.\n* create an ordinary trinket or illusionary image that fits in your hand and lasts for 1 round.\n\nYou may cast this spell multiple times, though only three effects may be active at a time. Dismissing each effect requires an action.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_prismatic-spray", + "fields": { + "name": "Prismatic Spray", + "desc": "You unleash 8 rays of light, each with a different purpose and effect. For each target in the area, roll a d8 to determine the ray that affects it.\n\n1—Red: The target takes 10d6 fire damage.\n\n2—Orange: The target takes 10d6 acid damage.\n\n3—Yellow: The target takes 10d6 lightning damage.\n\n4—Green: The target takes 10d6 poison damage.\n\n5—Blue: The target takes 10d6 cold damage.\n\n6—Indigo: The target is restrained and at the end of each of its turns it makes a Constitution saving throw. Once it accumulates two failed saves it permanently turns to stone, or when it accumulates two successful saves the effect ends.\n\n7—Violet: The target is blinded. At the start of your next turn, the target makes a Wisdom saving throw, ending the effect on a success.\n\nOn a failed save, the target is banished to another random plane and is no longer blind. If it originated from another plane it returns there, while other creatures are generally cast into the Astral Plane or Ethereal Plane.\n\n8—Special: The target is hit by two rays.\n\nRoll a d8 twice to determine which rays, rerolling any 8s.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_prismatic-wall", + "fields": { + "name": "Prismatic Wall", + "desc": "You create a nontransparent barrier of prismatic energy that sheds bright light in a 100-foot radius and dim light for an additional 100 feet. You and creatures you choose at the time of casting are immune to the barrier's effects and may pass through it at will.\n\nThe barrier can be created as either a vertical wall or a sphere. If the wall intersects a space occupied by a creature the spell fails, you lose your action, and the spell slot is wasted.\n\nWhen a creature that can see the barrier moves within 20 feet of the area or starts its turn within 20 feet of the area, it makes a Constitution saving throw or it is blinded for 1 minute.\n\nThe wall has 7 layers, each layer of a different color in order from red to violet. Once a layer is destroyed, it is gone for the duration of the spell.\n\nTo pass or reach through the barrier a creature does so one layer at a time and must make a Dexterity saving throw for each layer or be subjected to that layer's effects. On a successful save, any damage taken from a layer is reduced by half.\n\nA rod of cancellation can destroy a prismatic wall, but an antimagic field has no effect.\n\nRed: The creature takes 10d6 fire damage.\n\nWhile active, nonmagical ranged attacks can't penetrate the barrier. The layer is destroyed by 25 cold damage.\n\nOrange: The creature takes 10d6 acid damage. While active, magical ranged attacks can't penetrate the barrier. The layer is destroyed by strong winds.\n\nYellow: The creature takes 10d6 lightning damage. This layer is destroyed by 60 force damage.\n\nGreen: The creature takes 10d6 poison damage. A passwall spell, or any spell of equal or greater level which can create a portal on a solid surface, destroys the layer.\n\nBlue: The creature takes 10d6 cold damage.\n\nThis layer is destroyed by 25 fire damage.\n\nIndigo: The creature is restrained and makes a Constitution saving throw at the end of each of its turns. Once it accumulates three failed saves it permanently turns to stone, or when it accumulates three successful saves the effect ends. This layer can be destroyed by bright light, such as that created by the daylight spell or a spell of equal or greater level.\n\nViolet: The creature is blinded. At the start of your next turn, the creature makes a Wisdom saving throw, ending the effect on a success.\n\nOn a failed save, the creature is banished to another random plane and is no longer blind. If it originated from another plane it returns there, while other creatures are generally cast into the Astral Plane or Ethereal Plane. This layer can be destroyed by dispel magic or a similar spell of equal or greater level capable of ending spells or magical effects.", + "document": "a5e-ag", + "level": 9, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "fire" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_private-sanctum", + "fields": { + "name": "Private Sanctum", + "desc": "You increase the magical security in an area, choosing one or more of the following:\n\n* sound cannot pass the edge of the area.\n* light and vision cannot pass the edge of the area.\n* sensors created by divination spells can neither enter the area nor appear within it.\n* creatures within the area cannot be targeted by divination spells.\n* nothing can teleport into or out of the area.\n* planar travel is impossible within the area.\n\nCasting this spell on the same area every day for a year makes the duration permanent.", + "document": "a5e-ag", + "level": 4, + "school": "abjuration", + "higher_level": "Increase the size of the sanctum by up to 100 feet for each slot level above 4th.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_produce-flame", + "fields": { + "name": "Produce Flame", + "desc": "You create a flame in your hand which lasts until the spell ends and does no harm to you or your equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nThe spell ends when you dismiss it, cast it again, or attack with the flame. As part of casting the spell or as an action on a following turn, you can fling the flame at a creature within 30 feet, making a ranged spell attack that deals 1d8 fire damage.", + "document": "a5e-ag", + "level": 0, + "school": "conjuration", + "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_programmed-illusion", + "fields": { + "name": "Programmed Illusion", + "desc": "You craft an illusory object, creature, or other effect which executes a scripted performance when a specific condition is met within 30 feet of the area.\n\nYou must describe both the condition and the details of the performance upon casting. The trigger must be based on something that can be seen or heard.\n\nOnce the illusion triggers, it runs its performance for up to 5 minutes before it disappears and goes dormant for 10 minutes. The illusion is undetectable until then and only reactivates when the condition is triggered and after the dormant period has passed.\n\nA creature can use an action to attempt an Investigation check against your spell save DC to reveal the spell's illusory nature. Physical interactions reveal the illusion for what it is as things can pass through it with ease. A creature aware of the illusion perceives the image as transparent and the sounds it generates hollow.", + "document": "a5e-ag", + "level": 6, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_project-image", + "fields": { + "name": "Project Image", + "desc": "You create an illusory duplicate of yourself that looks and sounds like you but is intangible. The duplicate can appear anywhere within range as long as you have seen the space before (it ignores any obstacles in the way).\n\nYou can use an action to move this duplicate up to twice your Speed and make it speak and behave in whatever way you choose, mimicking your mannerism with perfect accuracy. You can use a bonus action to see through your duplicate's eyes and hear through its ears until the beginning of your next turn. During this time, you are blind and deaf to your body's surroundings.\n\nA creature can use an action to attempt an Investigation check against your spell save DC to reveal the spell's illusory nature. Physical interactions reveal the illusion for what it is as things can pass through it with ease. A creature aware of the illusion perceives the image as transparent and the sounds it generates hollow.", + "document": "a5e-ag", + "level": 7, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 day", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_protection-from-energy", + "fields": { + "name": "Protection from Energy", + "desc": "Until the spell ends, the target has resistance to one of the following damage types: acid, cold, fire, lightning, thunder.", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "For each slot level above 2nd, the target gains resistance to one additional type of damage listed above, with a maximum number equal to your spellcasting ability modifier.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_protection-from-evil-and-good", + "fields": { + "name": "Protection from Evil and Good", + "desc": "The target is protected against the following types of creatures: aberrations, celestials, elementals, fey, fiends, and undead. Creatures of those types have disadvantage on attack rolls against the target and are unable to charm, frighten, or possess the target.\n\nIf the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against that effect.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_protection-from-poison", + "fields": { + "name": "Protection from Poison", + "desc": "The target has advantage on saving throws against being poisoned and resistance to poison damage.\n\nAdditionally, if the target is poisoned, you negate one poison affecting it. If more than one poison affects the target, you negate one poison you know is present (otherwise you negate one at random).", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_purify-food-and-drink", + "fields": { + "name": "Purify Food and Drink", + "desc": "You remove all poison and disease from a number of Supply equal to your proficiency bonus.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "Remove all poison and disease from an additional Supply for each slot level above 1st.", + "target_type": "point", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_rage-of-the-meek", + "fields": { + "name": "Rage of the Meek", + "desc": "You unleash the discipline of your magical training and let arcane power burn from your fists, consuming the material components of the spell. Until the spell ends you have resistance to bludgeoning, piercing, and slashing damage from nonmagical weapons, and on each of your turns you can use an action to make a melee spell attack against a target within 5 feet that deals 4d8 force damage on a successful hit.\n\nFor the duration, you cannot cast other spells or concentrate on other spells. The spell ends early if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end this spell early on your turn as a bonus action.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "When using a spell slot of 5th- or 6th-level, the damage increases to 5d8.\n\nWhen using a spell slot of 7th- or 8th-level, the damage increases to 6d8\\. When using a spell slot of 9th-level, the damage increases to 7d8.", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_raise-dead", + "fields": { + "name": "Raise Dead", + "desc": "You return the target to life, provided its soul is willing and able to return to its body. The creature returns to life with 1 hit point. The spell cannot return an undead creature to life.\n\nThe spell cures any poisons and nonmagical diseases that affected the creature at the time of death. It does not remove any magical diseases, curses, or other magical effects; these must be removed prior to the spell being cast, otherwise they immediately take effect when the creature returns to life.\n\nThe spell does not regrow limbs or organs, and it automatically fails if the target is missing any body parts necessary for life (like its heart or head).\n\nBeing raised from the dead takes a toll on the body, mind, and spirit. The target suffers 3 levels of fatigue and strife. At the conclusion of each long rest, the target removes one level of fatigue and strife until the target completely recovers.", + "document": "a5e-ag", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_raise-hell", + "fields": { + "name": "Raise Hell", + "desc": "You transform the land around you into a blasted hellscape. When you cast the spell, all nonmagical vegetation in the area immediately dies. In addition, you can create any of the following effects within the area. Fiends are immune to these effects, as are any creatures you specify at the time you cast the spell. A successful dispel magic ends a single effect, not the entire area.\n\nBrimstone Rubble. You can fill any number of unoccupied 5-foot squares in the area with smoldering brimstone. These spaces become difficult terrain. A creature that enters an affected square or starts its turn there takes 2d10 fire damage.\n\nField of Fear. Dread pervades the entire area.\n\nA creature that starts its turn in the area must make a successful Wisdom saving throw or be frightened until the start its next turn. While frightened, a creature must take the Dash action to escape the area by the safest available route on each of its turns. On a successful save, the creature becomes immune to this effect for 24 hours.\n\nSpawning Pits. The ground opens to create up to 6 pits filled with poisonous bile. Each pit fills a 10-foot cube that drops beneath the ground.\n\nWhen this spell is cast, any creature whose space is on a pit may make a Dexterity saving throw, moving to an unoccupied space next to the pit on a success. A creature that enters a pit or starts its turn there takes 15d6 poison damage, or half as much damage on a successful Constitution saving throw. A creature reduced to 0 hit points by this damage immediately dies and rises as a lemure at the start of its next turn. Lemures created this way obey your verbal commands, but they disappear when the spell ends or if they leave the area for any reason.\n\nUnhallowed Spires. Up to four spires of black ice rise from the ground in unoccupied 10-foot squares within the area. Each spire can be up to 66 feet tall and is immune to all damage and magical effects. Whenever a creature within 30 feet of a spire would regain hit points, it does not regain hit points and instead takes 3d6 necrotic damage.\n\nIf you maintain concentration on the spell for the full duration, the effects are permanent until dispelled.", + "document": "a5e-ag", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d10", + "damage_types": [ + "fire" + ], + "duration": "24 hours", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_ray-of-enfeeblement", + "fields": { + "name": "Ray of Enfeeblement", + "desc": "A black ray of necrotic energy shoots from your fingertip. Make a ranged spell attack against the target. On a hit, the target is weakened and only deals half damage with weapon attacks that use Strength.\n\nAt the end of each of the target's turns, it can make a Strength saving throw, ending the spell on a success.", + "document": "a5e-ag", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_ray-of-frost", + "fields": { + "name": "Ray of Frost", + "desc": "An icy beam shoots from your outstretched fingers.\n\nMake a ranged spell attack. On a hit, you deal 1d8 cold damage and reduce the target's Speed by 10 feet until the start of your next turn.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_regenerate", + "fields": { + "name": "Regenerate", + "desc": "You touch a creature, causing its body to spontaneously heal itself. The target immediately regains 4d8 + 15 hit points and regains 10 hit points per minute (1 hit point at the start of each of its turns).\n\nIf the target is missing any body parts, the lost parts are restored after 2 minutes. If a severed part is held against the stump, the limb instantaneously reattaches itself.", + "document": "a5e-ag", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_reincarnate", + "fields": { + "name": "Reincarnate", + "desc": "You return the target to life, provided the target's soul is willing and able to return to its body. If you only have a piece of the target, the spell reforms a new adult body for the soul to inhabit. Once reincarnated the target remembers everything from its former life, and retains all its proficiencies, cultural traits, and class features.\n\nThe target's heritage traits change according to its new form. The Narrator chooses the form of the new body, or rolls on Table: Reincarnation.", + "document": "a5e-ag", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_remove-curse", + "fields": { + "name": "Remove Curse", + "desc": "This spell ends a curse inflicted with a spell slot of 3rd-level or lower. If the curse was instead inflicted by a feature or trait, the spell ends a curse inflicted by a creature of Challenge Rating 6 or lower. If cast on a cursed object of Rare or lesser rarity, this spell breaks the owner's attunement to the item (although it does not end the curse on the object).", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "For each slot level above 3rd, the spell ends a curse inflicted either by a spell one level higher or by a creature with a Challenge Rating two higher. When using a 6th-level spell slot, the spell breaks the owner's attunement to a Very Rare item.\n\nWhen using a 9th-level spell slot, the spell breaks the owner's attunement to a Legendary item.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_resilient-sphere", + "fields": { + "name": "Resilient Sphere", + "desc": "A transparent sphere of force encloses the target.\n\nThe sphere is weightless and just large enough for the target to fit inside. The sphere can be destroyed without harming anyone inside by being dealt at least 15 force damage at once or by being targeted with a dispel magic spell cast using a 4th-level or higher spell slot. The sphere is immune to all other damage, and no spell effects, physical objects, or anything else can pass through, though a target can breathe while inside it. The target cannot be damaged by any attacks or effects originating from outside the sphere, and the target cannot damage anything outside of it.\n\nThe target can use an action to roll the sphere at half its Speed. Similarly, the sphere can be picked up and moved by other creatures.", + "document": "a5e-ag", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_resistance", + "fields": { + "name": "Resistance", + "desc": "The target gains an expertise die to one saving throw of its choice, ending the spell. The expertise die can be rolled before or after the saving throw is made.", + "document": "a5e-ag", + "level": 0, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_resurrection", + "fields": { + "name": "Resurrection", + "desc": "Provided the target's soul is willing and able to return to its body, so long as it is not undead it returns to life with all of its hit points.\n\nThe spell cures any poisons and nonmagical diseases that affected the target at the time of death.\n\nIt does not remove any magical diseases, curses, or other magical effects; these must be removed prior to the spell being cast, otherwise they immediately take effect when the target returns to life. The spell closes all mortal wounds and restores any missing body parts.\n\nBeing raised from the dead takes a toll on the body, mind, and spirit. The target takes a -4 penalty to attack rolls, saving throws, and ability checks.\n\nAt the conclusion of each long rest, the penalty is reduced by 1 until the target completely recovers.\n\nResurrecting a creature that has been dead for one year or longer is exhausting. Until you finish a long rest, you can't cast spells again and you have disadvantage on attack rolls, ability checks, and saving throws.", + "document": "a5e-ag", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_reverse-gravity", + "fields": { + "name": "Reverse Gravity", + "desc": "Gravity reverses in the area. Any creatures or objects not anchored to the ground fall upward until they reach the top of the area. A creature may make a Dexterity saving throw to prevent the fall by grabbing hold of something. If a solid object (such as a ceiling) is encountered, the affected creatures and objects impact against it with the same force as a downward fall. When an object or creature reaches the top of the area, it remains suspended there until the spell ends.\n\nWhen the spell ends, all affected objects and creatures fall back down.", + "document": "a5e-ag", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_revivify", + "fields": { + "name": "Revivify", + "desc": "The target returns to life with 1 hit point. The spell does not restore any missing body parts and cannot return to life a creature that died of old age.", + "document": "a5e-ag", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_rope-trick", + "fields": { + "name": "Rope Trick", + "desc": "One end of the target rope rises into the air until it hangs perpendicular to the ground. At the upper end, a nearly imperceptible entrance opens to an extradimensional space that can fit up to 8 Medium or smaller creatures. The entrance can be reached by climbing the rope. Once inside, the rope can be pulled into the extradimensional space.\n\nNo spells or attacks can cross into or out of the extradimensional space. Creatures inside the extradimensional space can see out of a 3-foot-by- 5-foot window centered on its entrance. Creatures outside the space can spot the entrance with a Perception check against your spell save DC. If they can reach it, creatures can pass in and out of the space.\n\nWhen the spell ends, anything inside the extradimensional space falls to the ground.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_sacred-flame", + "fields": { + "name": "Sacred Flame", + "desc": "As long as you can see the target (even if it has cover) radiant holy flame envelops it, dealing 1d8 radiant damage.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_sanctuary", + "fields": { + "name": "Sanctuary", + "desc": "You ward a creature against intentional harm.\n\nAny creature that makes an attack against or casts a harmful spell against the target must first make a Wisdom saving throw. On a failed save, the attacking creature must choose a different creature to attack or it loses the attack or spell. This spell doesn't protect the target from area effects, such as an explosion.\n\nThis spell ends early when the target attacks or casts a spell that affects an enemy creature.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_scorching-ray", + "fields": { + "name": "Scorching Ray", + "desc": "Three rays of blazing orange fire shoot from your fingertips. Make a ranged spell attack for each ray.\n\nOn a hit, the target takes 2d6 fire damage.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "Create an additional ray for each slot level above 2nd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "2d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_scrying", + "fields": { + "name": "Scrying", + "desc": "You can see and hear a specific creature that you choose. The difficulty of the saving throw for this spell is modified by your knowledge of the target and whether you possess a physical item with a connection to the target.\n\nOn a failed save, you can see and hear the target through an invisible sensor that appears within 10 feet of it and moves with the target. Any creature who can see invisibility or rolls a critical success on its saving throw perceives the sensor as a fist-sized glowing orb hovering in the air. Creatures cannot see or hear you through the sensor.\n\nIf you choose to target a location, the sensor appears at that location and is immobile.", + "document": "a5e-ag", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_searing-equation", + "fields": { + "name": "Searing Equation", + "desc": "You briefly go into a magical trance and whisper an alien equation which you never fully remember once the spell is complete. Each creature in the area takes 3d4 psychic damage and is deafened for 1 round.\n\nCreatures who are unable to hear the equation, immune to psychic damage, or who have an Intelligence score lower than 4 are immune to this spell.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "Creatures are deafened for 1 additional round for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d4", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_secret-chest", + "fields": { + "name": "Secret Chest", + "desc": "You stash a chest and its contents on the Ethereal Plane. To do so, you must touch the chest and its Tiny replica. The chest can hold up to 12 cubic feet of nonliving matter. Food stored in the chest spoils after 1 day.\n\nWhile the chest is in the Ethereal Plane, you can recall it to you at any point by using an action to touch the Tiny replica. The chest reappears in an unoccupied space on the ground within 5 feet of you. You can use an action at any time to return the chest to the Ethereal Plane so long as you are touching both the chest and its Tiny replica.\n\nThis effect ends if you cast the spell again on a different chest, if the replica is destroyed, or if you use an action to end the spell. After 60 days without being recalled, there is a cumulative 5% chance per day that the spell effect will end. If for whatever reason the spell ends while the chest is still in the Ethereal Plane, the chest and all of its contents are lost.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_see-invisibility", + "fields": { + "name": "See Invisibility", + "desc": "You can see invisible creatures and objects, and you can see into the Ethereal Plane. Ethereal creatures and objects appear translucent.", + "document": "a5e-ag", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_seed-bomb", + "fields": { + "name": "Seed Bomb", + "desc": "Up to four seeds appear in your hand and are infused with magic for the duration. As an action, a creature can throw one of these seeds at a point up to 60 feet away. Each creature within 5 feet of that point makes a Dexterity saving throw or takes 4d6 piercing damage. Depending on the material component used, a seed bomb also causes one of the following additional effects: Pinecone. Seed shrapnel explodes outward.\n\nA creature in the area of the exploding seed bomb makes a Constitution saving throw or it is blinded until the end of its next turn.\n\nSunflower. Seeds enlarge into a blanket of pointy needles. The area affected by the exploding seed bomb becomes difficult terrain for the next minute.\n\nTumbleweed. The weeds unravel to latch around creatures. A creature in the area of the exploding seed bomb makes a Dexterity saving throw or it becomes grappled until the end of its next turn.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "The damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "piercing" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_seeming", + "fields": { + "name": "Seeming", + "desc": "Until the spell ends or you use an action to dispel it, you can change the appearance of the targets. The spell disguises their clothing, weapons, and items as well as changes to their physical appearance. An unwilling target can make a Charisma saving throw to avoid being affected by the spell.\n\nYou can alter the appearance of the target as you see fit, including but not limited to: its heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, hair style and length, skin and eye coloration, sex and any other distinguishing features.\n\nYou cannot disguise the target as a creature of a different size category, and its limb structure remains the same; for example if it's bipedal, you can't use this spell to make it appear as a quadruped.\n\nThe disguise does not hold up to physical inspection. A creature that tries to grab an illusory hat, for example, finds its hand passes straight through the figment. To see through your disguise without such an inspection, a creature must use its action to make an Investigation check against your spell save DC.", + "document": "a5e-ag", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_sending", + "fields": { + "name": "Sending", + "desc": "You send a message of 25 words or less to the target. It recognizes you as the sender and can reply immediately in kind. The message travels across any distance and into other planes of existence. If the target is on a different plane of existence than you, there is a 5% chance it doesn't receive your message. A target with an Intelligence score of at least 1 understands your message as you intend it (whether you share a language or not).", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Unlimited", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_sequester", + "fields": { + "name": "Sequester", + "desc": "You magically hide away a willing creature or object. The target becomes invisible, and it cannot be traced or detected by divination or scrying sensors. If the target is a living creature, it falls into a state of suspended animation and stops aging.\n\nThe spell ends when the target takes damage or a condition you set occurs. The condition can be anything you choose, like a set amount of time or a specific event, but it must occur within or be visible within 1 mile of the target.", + "document": "a5e-ag", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_shapechange", + "fields": { + "name": "Shapechange", + "desc": "You assume the form of a creature of a Challenge Rating equal to or lower than your level. The creature cannot be an undead or a construct, and it must be a creature you have seen. You change into the average version of that creature, and do not gain any class levels or the Spellcasting trait.\n\nUntil the spell ends or you are dropped to 0 hit points, your game statistics (including your hit points) are replaced by the statistics of the chosen creature, though you keep your Charisma, Intelligence, and Wisdom scores. You also keep your skill and saving throw proficiencies as well as gaining the creature's. However, if you share a proficiency with the creature, and the creature's bonus is higher than yours, you use the creature's bonus. You keep all of your features, skills, and traits gained from your class, heritage, culture, background, or other sources, and can use them as long as the creature is physically capable of doing so. You do not keep any special senses, such as darkvision, unless the creature also has them. You can only speak if the creature is typically capable of speech. You cannot use legendary actions or lair actions. Your gear melds into the new form. Equipment that merges with your form has no effect until you leave the form.\n\nWhen you revert to your normal form, you return to the number of hit points you had before you transformed. If the spell's effect on you ends early from dropping to 0 hit points, any excess damage carries over to your normal form and knocks you unconscious if the damage reduces you to 0 hit points.\n\nUntil the spell ends, you can use an action to change into another form of your choice. The new form follows all the rules as the previous form, with one exception: if the new form has more hit points than your previous form, your hit points remain at their previous value.", + "document": "a5e-ag", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_shatter", + "fields": { + "name": "Shatter", + "desc": "An ear-splitting ringing sound emanates through the area. Creatures in the area take 3d8 thunder damage. A creature made of stone, metal, or other inorganic material has disadvantage on its saving throw.\n\nAny nonmagical items within the area that are not worn or carried also take damage.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above 2nd.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_shattering-barrage", + "fields": { + "name": "Shattering Barrage", + "desc": "You create three orbs of jagged broken glass and hurl them at targets within range. You can hurl them at one target or several.\n\nMake a ranged spell attack for each orb. On a hit, the target takes 2d4 slashing damage and the shards of broken glass remain suspended in midair, filling the area they occupy (or 5 feet of the space they occupy if the creature is Large-sized or larger) with shards of suspended broken glass. Whenever a creature enters an area of broken glass for the first time or starts its turn there, it must succeed on a Dexterity saving throw or take 2d4 slashing damage.\n\nThe shards of broken glass dissolve into harmless wisps of sand and blow away after 1 minute.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "You create one additional orb for each slot level above 2nd.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": true, + "damage_roll": "2d4", + "damage_types": [ + "slashing" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_shield", + "fields": { + "name": "Shield", + "desc": "You create a shimmering arcane barrier between yourself and an oncoming attack. Until the spell ends, you gain a +5 bonus to your AC (including against the triggering attack) and any magic missile targeting you is harmlessly deflected.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_shield-of-faith", + "fields": { + "name": "Shield of Faith", + "desc": "Until the spell ends, a barrier of divine energy envelops the target and increases its AC by +2.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "The bonus to AC increases by +1 for every three slot levels above 1st.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_shillelagh", + "fields": { + "name": "Shillelagh", + "desc": "You imbue the target with nature's magical energy. Until the spell ends, the target becomes a magical weapon (if it wasn't already), its damage becomes 1d8, and you can use your spellcasting ability instead of Strength for melee attack and damage rolls made using it. The spell ends if you cast it again or let go of the target.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_shocking-grasp", + "fields": { + "name": "Shocking Grasp", + "desc": "Electricity arcs from your hand to shock the target. Make a melee spell attack (with advantage if the target is wearing armor made of metal). On a hit, you deal 1d8 lightning damage, and the target can't take reactions until the start of its next turn as the electricity courses through its body.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_silence", + "fields": { + "name": "Silence", + "desc": "Until the spell ends, a bubble of silence envelops the area, and no sound can travel in or out of it.\n\nWhile in the area a creature is deafened and immune to thunder damage. Casting a spell that requires a vocalized component is impossible while within the area.", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_silent-image", + "fields": { + "name": "Silent Image", + "desc": "You create an illusory image of a creature, object, or other visible effect within the area. The illusion is purely visual, it cannot produce sound or smell, and items and other creatures pass through it.\n\nAs an action, you can move the image to any point within range. The image's movement can be natural and lifelike (for example, a ball will roll and a bird will fly).\n\nA creature can spend an action to make an Investigation check against your spell save DC to determine if the image is an illusion. On a success, it is able to see through the image.", + "document": "a5e-ag", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_simulacrum", + "fields": { + "name": "Simulacrum", + "desc": "You sculpt an illusory duplicate of the target from ice and snow. The duplicate looks exactly like the target and uses all the statistics of the original, though it is formed without any gear, and has only half of the target's hit point maximum. The duplicate is a creature, can take actions, and be affected like any other creature. If the target is able to cast spells, the duplicate cannot cast spells of 7th-level or higher.\n\nThe duplicate is friendly to you and creatures you designate. It follows your spoken commands, and moves and acts on your turn in combat. It is a static creature and it does not learn, age, or grow, so it never increases in levels and cannot regain any spent spell slots.\n\nWhen the simulacrum is damaged you can repair it in an alchemy lab using components worth 100 gold per hit point it regains. The simulacrum remains until it is reduced to 0 hit points, at which point it crumbles into snow and melts away immediately.\n\nIf you cast this spell again, any existing simulacrum you have created with this spell is instantly destroyed.", + "document": "a5e-ag", + "level": 7, + "school": "illusion", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_sleep", + "fields": { + "name": "Sleep", + "desc": "You send your enemies into a magical slumber.\n\nStarting with the target with the lowest hit points (ignoring unconscious creatures), targets within the area fall unconscious in ascending order according to their hit points. Slumbering creatures stay asleep until the spell ends, they take damage, or someone uses an action to physically wake them.\n\nAs each target falls asleep, subtract its hit points from the total before moving on to the next target.\n\nA target's hit points must be equal to or less than the total remaining for the spell to have any effect.\n\nIf the spell puts no creatures to sleep, the creature in the area with the lowest hit point total is rattled until the beginning of its next turn.\n\nConstructs and undead are not affected by this spell.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "The spell affects an additional 2d10 hit points worth of creatures for each slot level above 1st.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_sleet-storm", + "fields": { + "name": "Sleet Storm", + "desc": "You conjure a storm of freezing rain and sleet in the area. The ground in the area is covered with slick ice that makes it difficult terrain, exposed flames in the area are doused, and the area is heavily obscured.\n\nWhen a creature enters the area for the first time on a turn or starts its turn there, it makes a Dexterity saving throw or falls prone.\n\nWhen a creature concentrating on a spell starts its turn in the area or first enters into the area on a turn, it makes a Constitution saving throw or loses concentration.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_slow", + "fields": { + "name": "Slow", + "desc": "You alter the flow of time around your targets and they become slowed. On a successful saving throw, a target is rattled until the end of its next turn.\n\nIn addition, if a slowed target casts a spell with a casting time of 1 action, roll a d20\\. On an 11 or higher, the target doesn't finish casting the spell until its next turn. The target must use its action on that turn to complete the spell or the spell fails.\n\nAt the end of each of its turns, a slowed target repeats the saving throw to end the spell's effect on it.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_soulwrought-fists", + "fields": { + "name": "Soulwrought Fists", + "desc": "The target's hands harden with inner power, turning dexterous fingers into magical iron cudgels.\n\nUntil the spell ends, the target drops anything it is holding and cannot use its hands to grasp objects or perform complex tasks. A target can still cast any spell that does not specifically require its hands.\n\nWhen making unarmed strikes, the target can use its spellcasting ability or Dexterity (its choice) instead of Strength for the attack and damage rolls of unarmed strikes. In addition, the target's unarmed strikes deal 1d8 bludgeoning damage and count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_spare-the-dying", + "fields": { + "name": "Spare the Dying", + "desc": "A jolt of healing energy flows through the target and it becomes stable.", + "document": "a5e-ag", + "level": 0, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_speak-with-animals", + "fields": { + "name": "Speak with Animals", + "desc": "You call upon the secret lore of beasts and gain the ability to speak with them. Beasts have a different perspective of the world, and their knowledge and awareness is filtered through that perspective. At a minimum, beasts can tell you about nearby locations and monsters, including things they have recently perceived. At the Narrator's discretion, you might be able to persuade a beast to perform a small favor for you.", + "document": "a5e-ag", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_speak-with-dead", + "fields": { + "name": "Speak with Dead", + "desc": "You call forth the target's memories, animating it enough to answer 5 questions. The corpse's knowledge is limited: it knows only what it knew in life and cannot learn new information or speak about anything that has occurred since its death. It speaks only in the languages it knew, and is under no compulsion to offer a truthful answer if it has reason not to. Answers might be brief, cryptic, or repetitive.\n\nThis spell does not return a departed soul, nor does it have any effect on an undead corpse, or one without a mouth.", + "document": "a5e-ag", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_speak-with-plants", + "fields": { + "name": "Speak with Plants", + "desc": "Your voice takes on a magical timbre, awakening the targets to limited sentience. Until the spell ends, the targets can communicate with you and follow simple commands, telling you about recent events including creatures that have passed, weather, and nearby locations.\n\nThe targets have a limited mobility: they can move their branches, tendrils, and stalks freely. This allows them to turn ordinary terrain into difficult terrain, or make difficult terrain caused by vegetation into ordinary terrain for the duration as vines and branches move at your request. This spell can also release a creature restrained by an entangle spell.\n\nAt the Narrator's discretion the targets may be able to perform other tasks, though each must remain rooted in place. If a plant creature is in the area, you can communicate with it but it is not compelled to follow your requests.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_spider-climb", + "fields": { + "name": "Spider Climb", + "desc": "The target gains the ability to walk on walls and upside down on ceilings, as well as a climbing speed equal to its base Speed.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "You can affect one additional target for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_spike-growth", + "fields": { + "name": "Spike Growth", + "desc": "You cause sharp spikes and thorns to sprout in the area, making it difficult terrain. When a creature enters or moves within the area, it takes 2d4 piercing damage for every 5 feet it travels.\n\nYour magic causes the ground to look natural. A creature that can't see the area when the spell is cast can spot the hazardous terrain just before entering it by making a Perception check against your spell save DC.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "piercing" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_spirit-guardians", + "fields": { + "name": "Spirit Guardians", + "desc": "You call down spirits of divine fury, filling the area with flitting spectral forms. You choose the form taken by the spirits.\n\nCreatures of your choice halve their Speed while in the area. When a creature enters the area for the first time on a turn or starts its turn there, it takes 3d6 radiant or necrotic damage (your choice).", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "necrotic", + "radiant" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_spiritual-weapon", + "fields": { + "name": "Spiritual Weapon", + "desc": "You create a floating, incandescent weapon with an appearance of your choosing and use it to attack your enemies. On the round you cast it, you can make a melee spell attack against a creature within 5 feet of the weapon that deals force damage equal to 1d8 + your spellcasting ability modifier.\n\nAs a bonus action on subsequent turns until the spell ends, you can move the weapon up to 20 feet and make another attack against a creature within 5 feet of it.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for every two slot levels above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_sporesight", + "fields": { + "name": "Sporesight", + "desc": "You throw a mushroom at a point within range and detonate it, creating a cloud of spores that fills the area. The cloud of spores travels around corners, and the area is considered lightly obscured for everyone except you. Creatures and objects within the area are covered in spores.\n\nUntil the spell ends, you know the exact location of all affected objects and creatures. Any attack roll you make against an affected creature or object has advantage, and the affected creatures and objects can't benefit from being invisible.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_stinking-cloud", + "fields": { + "name": "Stinking Cloud", + "desc": "You create a roiling, noxious cloud that hinders creatures and leaves them retching. The cloud spreads around corners and lingers in the air until the spell ends.\n\nThe area is heavily obscured. A creature in the area at the start of its turn makes a Constitution saving throw or uses its action to retch and reel.\n\nCreatures that don't need to breathe or are immune to poison automatically succeed on the save.\n\nA moderate wind (10 miles per hour) disperses the cloud after 4 rounds, a strong wind (20 miles per hour) after 1 round.", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "The spell's area increases by 5 feet for every 2 slot levels above 3rd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_stone-shape", + "fields": { + "name": "Stone Shape", + "desc": "You reshape the target into any form you choose.\n\nFor example, you could shape a large rock into a weapon, statue, or chest, make a small passage through a wall (as long as it isn't more than 5 feet thick), seal a stone door shut, or create a hiding place. The target can have up to two hinges and a latch, but finer mechanical detail isn't possible.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "You may select one additional target for every slot level above 4th.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_stoneskin", + "fields": { + "name": "Stoneskin", + "desc": "Until the spell ends, the target's flesh becomes as hard as stone and it gains resistance to nonmagical bludgeoning, piercing, and slashing damage.", + "document": "a5e-ag", + "level": 4, + "school": "abjuration", + "higher_level": "When using a 7th-level spell slot, the target gains resistance to magical bludgeoning, piercing, and slashing damage.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_storm-kick", + "fields": { + "name": "Storm Kick", + "desc": "You must be able to move in order to cast this spell.\n\nYou leap into the air and flash across the battlefield, arriving feet-first with the force of a thunderbolt. As part of casting this spell, make a ranged spell attack against a creature you can see within range. If you hit, you instantly flash to an open space of your choosing adjacent to the target, dealing bludgeoning damage equal to 1d6 + your spellcasting modifier plus 3d8 thunder damage and 6d8 lightning damage. If your unarmed strike normally uses a larger die, use that instead of a d6\\. If you miss, you may still choose to teleport next to the target.", + "document": "a5e-ag", + "level": 5, + "school": "transmutation", + "higher_level": "When using a 6th-level spell slot or higher, if you are able to make more than one attack when you take the Attack action, you may make an additional melee weapon attack against the target. When using a 7th-level spell slot, you may choose an additional target within 30 feet of the target for each spell slot level above 6th, forcing each additional target to make a Dexterity saving throw or take 6d8 lightning damage.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_storm-of-vengeance", + "fields": { + "name": "Storm of Vengeance", + "desc": "You conjure a churning storm cloud that spreads to cover the target area. As it forms, lightning and thunder mix with howling winds, and each creature beneath the cloud makes a Constitution saving throw or takes 2d6 thunder damage and becomes deafened for 5 minutes.\n\nUntil the spell ends, at the start of your turn the cloud produces additional effects: Round 2\\. Acidic rain falls throughout the area dealing 1d6 acid damage to each creature and object beneath the cloud.\n\nRound 3\\. Lightning bolts strike up to 6 creatures or objects of your choosing that are beneath the cloud (no more than one bolt per creature or object). A creature struck by this lightning makes a Dexterity saving throw, taking 10d6 lightning damage on a failed save, or half damage on a successful save.\n\nRound 4\\. Hailstones fall throughout the area dealing 2d6 bludgeoning damage to each creature beneath the cloud.\n\nRound 5�10\\. Gusts and freezing rain turn the area beneath the cloud into difficult terrain that is heavily obscured. Ranged weapon attacks are impossible while a creature or its target are beneath the cloud. When a creature concentrating on a spell starts its turn beneath the cloud or enters into the area, it makes a Constitution saving throw or loses concentration. Gusts of strong winds between 20�50 miles per hour automatically disperse fog, mists, and similar effects (whether mundane or magical). Finally, each creature beneath the cloud takes 1d6 cold damage.", + "document": "a5e-ag", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "Sight", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "thunder" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_suggestion", + "fields": { + "name": "Suggestion", + "desc": "Creatures that cannot be charmed are immune to this spell. Suggest an activity phrased in a sentence or two. The target is magically influenced to follow that course of activity. The suggestion must be worded to sound reasonable. Asking the target to perform an action that is obviously harmful to it ends the spell.\n\nThe target carries out the activity suggested by you as well as it can. The activity can last for the duration of the spell, and if it requires less time the spell ends after the target has carried out the activity.\n\nYou may specify trigger conditions that cause the target to perform a specific activity while the spell lasts. For example, you may suggest that the target takes off its clothes and dives the next time it sees a body of water. If the target does not see a body of water before the spell ends, the specific activity isn't performed.\n\nAny damage done to the target by you or an ally ends the spell for that creature.", + "document": "a5e-ag", + "level": 2, + "school": "enchantment", + "higher_level": "When using a 4th-level spell slot, the duration is concentration, up to 24 hours. When using a 5th-level spell slot, the duration is 7 days. When using a 7th-level spell slot, the duration is 1 year. When using a 9th-level spell slot, the suggestion lasts until it is dispelled.\n\nAny use of a 5th-level or higher spell slot grants a duration that doesn't require concentration.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_sunbeam", + "fields": { + "name": "Sunbeam", + "desc": "Oozes and undead have disadvantage on saving throws made to resist this spell. A beam of radiant sunlight streaks from your hand. Each creature in the area takes 6d8 radiant damage and is blinded for 1 round.\n\nUntil the spell ends, you can use an action on subsequent turns to create a new beam of sunlight and a mote of brilliant radiance lingers on your hand, shedding bright light in a 30-foot radius and dim light an additional 30 feet. This light is sunlight.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "When using an 8th-level spell slot the damage increases by 1d8.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "radiant" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_sunburst", + "fields": { + "name": "Sunburst", + "desc": "Oozes and undead have disadvantage on saving throws made to resist this spell. You create a burst of radiant sunlight that fills the area. Each creature in the area takes 12d6 radiant damage and is blinded for 1 minute. A creature blinded by this spell repeats its saving throw at the end of each of its turns, ending the blindness on a successful save.\n\nThis spell dispels any magical darkness in its area.", + "document": "a5e-ag", + "level": 8, + "school": "evocation", + "higher_level": "When using a 9th-level spell slot the damage increases by 2d6.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "12d6", + "damage_types": [ + "radiant" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_symbol", + "fields": { + "name": "Symbol", + "desc": "You inscribe a potent glyph on the target, setting a magical trap for your enemies. If the glyph is moved more than 10 feet from its original position, or if it comes within 20 feet of another glyph that you have cast, the spell ends. Finding the Tiny glyph requires an Investigation check against your spell save DC.\n\nDescribe the actions a creature must perform to trigger the spell, such as approaching within a certain distance, opening or touching the object the glyph is inscribed on, or seeing or reading the glyph. The creature must have a clear path to the glyph to trigger it. You can specify certain creatures which don't trigger the spell, such as those with a certain appearance or those who speak a certain phrase. Once the glyph is triggered, the spell ends.\n\nWhen triggered, the glyph sheds dim light in a 60-foot radius for 10 minutes, after which the spell ends. Each creature within the sphere's area is targeted by the glyph, as are creatures that enter the sphere for the first time on a turn.\n\nWhen you cast the spell, choose one of the following effects.\n\nDeath: Creatures in the area make a Constitution saving throw, taking 10d10 necrotic damage on a failed save, or half as much on a successful save.\n\nDiscord: Creatures in the area make a Constitution saving throw or bicker and argue with other creatures for 1 minute. While bickering, a creature cannot meaningfully communicate and it has disadvantage on attack rolls and ability checks.\n\nConfused: Creatures in the area make an Intelligence saving throw or become confused for 1 minute.\n\nFear: Creatures in the area make a Wisdom saving throw or are frightened for 1 minute.\n\nWhile frightened, a creature drops whatever it is holding and must move at least 30 feet away from the glyph on each of its turns.\n\nHopelessness: Creatures in the area make a Charisma saving throw or become overwhelmed with despair for 1 minute. While despairing, a creature can't attack or target any creature with harmful features, spells, traits, or other magical effects.\n\nPain: Creatures in the area make a Constitution saving throw or become incapacitated for 1 minute.\n\nSleep: Creatures in the area make a Wisdom saving throw or fall unconscious for 10 minutes.\n\nA sleeping creature awakens if it takes damage or an action is used to wake it.\n\nStunning: Creatures in the area make a Wisdom saving throw or become stunned for 1 minute.", + "document": "a5e-ag", + "level": 7, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_tearful-sonnet", + "fields": { + "name": "Tearful Sonnet", + "desc": "You quietly play a tragedy, a song that fills those around you with magical sorrow. Each creature in the area makes a Charisma saving throw at the start of its turn. On a failed save, a creature takes 2d4 psychic damage, it spends its action that turn crying, and it can't take reactions until the start of its next turn. Creatures that are immune to the charmed condition automatically succeed on this saving throw.\n\nIf a creature other than you hears the entire song (remaining within the spell's area from the casting through the duration) it is so wracked with sadness that it is stunned for 1d4 rounds.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", + "document": "a5e-ag", + "level": 4, + "school": "enchantment", + "higher_level": "The damage increases by 2d4 for each slot level above 4th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "psychic" + ], + "duration": "3 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_telekinesis", + "fields": { + "name": "Telekinesis", + "desc": "You move the target with the power of your mind.\n\nUntil the spell ends you can use an action on subsequent turns to pick a new target or continue to affect the same target. Depending on whether you target a creature or an object, the spell has the following effects:\n\n**Creature.** The target makes a Strength check against your spell save DC or it is moved up to 30 feet in any direction and restrained (even in mid-air) until the end of your next turn. You cannot move a target beyond the range of the spell.\n\n**Object.** You move the target 30 feet in any direction. If the object is worn or carried by a creature, that creature can make a Strength check against your spell save DC. If the target fails, you pull the object away from that creature and can move it up to 30 feet in any direction, but not beyond the range of the spell.\n\nYou can use telekinesis to finely manipulate objects as though you were using them yourself—you can open doors and unscrew lids, dip a quill in ink and make it write, and so on.", + "document": "a5e-ag", + "level": 5, + "school": "transmutation", + "higher_level": "When using an 8th-level spell slot, this spell does not require your concentration.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_telepathic-bond", + "fields": { + "name": "Telepathic Bond", + "desc": "Until the spell ends, a telepathic link connects the minds of the targets. So long as they remain on the same plane of existence, targets may communicate telepathically with each other regardless of language and across any distance.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "The spell's duration increases by 1d4 hours for each slot level above 5th.", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 8, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_teleport", + "fields": { + "name": "Teleport", + "desc": "You teleport the targets instantly across vast distances. When you cast this spell, choose a destination. You must know the location you're teleporting to, and it must be on the same plane of existence.\n\nTeleportation is difficult magic and you may arrive off-target or somewhere else entirely depending on how familiar you are with the location you're teleporting to. When you teleport, the Narrator rolls 1d100 and consults Table: Teleport Familiarity.\n\nFamiliarity is determined as follows: Permanent Circle: A permanent teleportation circle whose sigil sequence you know (see teleportation circle).\n\nAssociated Object: You have an object taken from the target location within the last 6 months, such as a piece of wood from the pew in a grand temple or a pinch of grave dust from a vampire's hidden redoubt.\n\nVery Familiar: A place you have frequented, carefully studied, or can see at the time you cast the spell.\n\nSeen Casually: A place you have seen more than once but don't know well. This could be a castle you've passed by but never visited, or the farms you look down on from your tower of ivory.\n\nViewed Once: A place you have seen once, either in person or via magic.\n\nDescription: A place you only know from someone else's description (whether spoken, written, or even marked on a map).\n\nFalse Destination: A place that doesn't actually exist. This typically happens when someone deceives you, either intentionally (like a wizard creating an illusion to hide their actual tower) or unintentionally (such as when the location you attempt to teleport to no longer exists).\n\nYour arrival is determined as follows: On Target: You and your targets arrive exactly where you mean to.\n\nOff Target: You and your targets arrive some distance away from the target in a random direction. The further you travel, the further away you are likely to arrive. You arrive off target by a number of miles equal to 1d10 × 1d10 percent of the total distance of your trip.\n\nIf you tried to travel 1, 000 miles and roll a 2 and 4 on the d10s, you land 6 percent off target and arrive 60 miles away from your intended destination in a random direction. Roll 1d8 to randomly determine the direction: 1—north, 2 —northeast, 3 —east, 4 —southeast, 5—south, 6 —southwest, 7—west, 8—northwest.\n\nSimilar Location: You and your targets arrive in a different location that somehow resembles the target area. If you tried to teleport to your favorite inn, you might end up at a different inn, or in a room with much of the same decor.\n\nTypically you appear at the closest similar location, but that is not always the case.\n\nMishap: The spell's magic goes awry, and each teleporting creature or object takes 3d10 force damage. The Narrator rerolls on the table to determine where you arrive. When multiple mishaps occur targets take damage each time.", + "document": "a5e-ag", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "Special", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d10", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_teleportation-circle", + "fields": { + "name": "Teleportation Circle", + "desc": "You draw a 10-foot diameter circle on the ground and open within it a shimmering portal to a permanent teleportation circle elsewhere in the world. The portal remains open until the end of your next turn. Any creature that enters the portal instantly travels to the destination circle.\n\nPermanent teleportation circles are commonly found within major temples, guilds, and other important locations. Each circle has a unique sequence of magical runes inscribed in a certain pattern called a sigil sequence.\n\nWhen you cast teleportation circle, you inscribe runes that match the sigil sequence of a teleportation circle you know. When you first gain the ability to cast this spell, you learn the sigil sequences for 2 destinations on the Material Plane, determined by the Narrator. You can learn a new sigil sequence with 1 minute of observation and study.\n\nCasting the spell in the same location every day for a year creates a permanent teleportation circle with its own unique sigil sequence. You do not need to teleport when casting the spell to make a permanent destination.", + "document": "a5e-ag", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_thaumaturgy", + "fields": { + "name": "Thaumaturgy", + "desc": "You draw upon divine power and create a minor divine effect. When you cast the spell, choose one of the following:\n\n* Your voice booms up to three times louder than normal\n* You cause flames to flicker, brighten, dim, or change color\n* You send harmless tremors throughout the ground.\n* You create an instantaneous sound, like ethereal chimes, sinister laughter, or a dragon's roar at a point of your choosing within range.\n* You instantaneously cause an unlocked door or window to fly open or slam shut.\n* You alter the appearance of your eyes.\n\nLingering effects last until the spell ends. If you cast this spell multiple times, you can have up to 3 of the lingering effects active at a time, and can dismiss an effect at any time on your turn.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_thunderwave", + "fields": { + "name": "Thunderwave", + "desc": "You create a wave of thunderous force, damaging creatures and pushing them back. Creatures in the area take 2d8 thunder damage and are pushed 10 feet away from you.\n\nUnsecured objects completely within the area are also pushed 10 feet away from you. The thunderous boom of the spell is audible out to 300 feet.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_time-stop", + "fields": { + "name": "Time Stop", + "desc": "You stop time, granting yourself extra time to take actions. When you cast the spell, the world is frozen in place while you take 1d4 + 1 turns in a row, during which you can use actions and move as normal.\n\nThe spell ends if you move more than 1, 000 feet from where you cast the spell, or if you affect either a creature other than yourself or an object worn or carried by someone else.", + "document": "a5e-ag", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_tiny-hut", + "fields": { + "name": "Tiny Hut", + "desc": "You create an immobile dome of protective force that provides shelter and can be used as a safe haven (Chapter 4: Exploration in Trials & Treasures). The dome is of a color of your choosing, can't be seen through from the outside, is transparent on the inside, and can fit up to 10 Medium creatures (including you) within.\n\nThe dome prevents inclement weather and environmental effects from passing through it, though creatures and objects may pass through freely. Spells and other magical effects can't cross the dome in either direction, and the dome provides a comfortable dry interior no matter the conditions outside of it. You can command the interior to become dimly lit or dark at any time on your turn.\n\nThe spell fails if a Large creature or more than 10 creatures are inside the dome. The spell ends when you leave the dome.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_tongues", + "fields": { + "name": "Tongues", + "desc": "The target understands any words it hears, and when the target speaks its words are understood by creatures that know at least one language.", + "document": "a5e-ag", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_transport-via-plants", + "fields": { + "name": "Transport via Plants", + "desc": "You create a magical pathway between the target and a second plant that you've seen or touched before that is on the same plane of existence. Any creature can step into the target and exit from the second plant by using 5 feet of movement.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_travelers-ward", + "fields": { + "name": "Traveler's Ward", + "desc": "Until the spell ends, creatures have disadvantage on Sleight of Hand checks made against the target.\n\nIf a creature fails a Sleight of Hand check to steal from the target, the ward creates a loud noise and a flash of bright light easily heard and seen by creatures within 100 feet.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_tree-stride", + "fields": { + "name": "Tree Stride", + "desc": "Until the spell ends, once per round you can use 5 feet of movement to enter a living tree and move to inside another living tree of the same kind within 500 feet so long as you end your turn outside of a tree. Both trees must be at least your size. You instantly know the location of all other trees of the same kind within 500 feet. You may step back outside of the original tree or spend 5 more feet of movement to appear within a spot of your choice within 5 feet of the destination tree. If you have no movement left, you appear within 5 feet of the tree you entered.", + "document": "a5e-ag", + "level": 5, + "school": "conjuration", + "higher_level": "Target one additional creature within reach for each slot level above 5th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_true-polymorph", + "fields": { + "name": "True Polymorph", + "desc": "The target is transformed until it drops to 0 hit points or the spell ends. You can make the transformation permanent by concentrating on the spell for the full duration.\n\nCreature into Creature: The target's body is transformed into a creature with a Challenge Rating equal to or less than its own. If the target doesn't have a Challenge Rating, use its level.\n\nThe target's game statistics (including its hit points and mental ability scores) are replaced by the statistics of the chosen creature. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effects on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.\n\nObject into Creature: The target is transformed into any kind of creature, as long as the creature's size isn't larger than the object's size and it has a Challenge Rating of 9 or less. The creature is friendly to you and your allies and acts on each of your turns. You decide what action it takes and how it moves. The Narrator has the creature's statistics and resolves all of its actions and movement.\n\nIf the spell becomes permanent, you no longer control the creature. It might remain friendly to you, depending on how you have treated it.\n\nCreature into Object: You turn the target and whatever it is wearing and carrying into an object. The target's game statistics are replaced by the statistics of the chosen object. The target has no memory of time spent in this form, and when the spell ends it returns to its normal form.", + "document": "a5e-ag", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_true-resurrection", + "fields": { + "name": "True Resurrection", + "desc": "Provided the target's soul is willing and able to return to its body, it returns to life with all of its hit points.\n\nThe spell cures any poisons and diseases that affected the target at the time of death, closes all mortal wounds, and restores any missing body parts.\n\nIf no body (or body parts) exist, you can still cast the spell but must speak the creature's name. The creature then appears in an unoccupied space you choose within 10 feet of you. This option requires diamonds worth at least 50, 000 gold (consumed by the spell).", + "document": "a5e-ag", + "level": 9, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_true-seeing", + "fields": { + "name": "True Seeing", + "desc": "Until the spell ends, the target gains truesight to a range of 120 feet. The target also notices secret doors hidden by magic.", + "document": "a5e-ag", + "level": 6, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_true-strike", + "fields": { + "name": "True Strike", + "desc": "You gain an innate understanding of the defenses of a creature or object in range. You have advantage on your first attack roll made against the target before the end of your next turn.", + "document": "a5e-ag", + "level": 0, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_unholy-star", + "fields": { + "name": "Unholy Star", + "desc": "A meteor ripped from diabolical skies streaks through the air and explodes at a point you can see 100 feet directly above you. The spell fails if you can't see the point where the meteor explodes.\n\nEach creature within range that can see the meteor (other than you) makes a Dexterity saving throw or is blinded until the end of your next turn. Fiery chunks of the meteor then plummet to the ground at different areas you choose within range. Each creature in an area makes a Dexterity saving throw, taking 6d6 fire damage and 6d6 necrotic damage on a failed save, or half as much damage on a successful one. A creature in more than one area is affected only once.\n\nThe spell damages objects in the area and ignites flammable objects that aren't being worn or carried.", + "document": "a5e-ag", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_unseen-servant", + "fields": { + "name": "Unseen Servant", + "desc": "You create an invisible, mindless, shapeless force to perform simple tasks. The servant appears in an unoccupied space on the ground that you can see and endures until it takes damage, moves more than 60 feet away from you, or the spell ends. It has AC 10, a Strength of 2, and it can't attack.\n\nYou can use a bonus action to mentally command it to move up to 15 feet and interact with an object.\n\nThe servant can do anything a humanoid servant can do —fetching things, cleaning, mending, folding clothes, lighting fires, serving food, pouring wine, and so on. Once given a command the servant performs the task to the best of its ability until the task is completed, then waits for its next command.", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "You create an additional servant for each slot level above 1st.", + "target_type": "point", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_vampiric-touch", + "fields": { + "name": "Vampiric Touch", + "desc": "Shadows roil about your hand and heal you by siphoning away the life force from others. On the round you cast it, and as an action on subsequent turns until the spell ends, you can make a melee spell attack against a creature within your reach.\n\nOn a hit, you deal 3d6 necrotic damage and regain hit points equal to half the amount of necrotic damage dealt.", + "document": "a5e-ag", + "level": 3, + "school": "necromancy", + "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_venomous-succor", + "fields": { + "name": "Venomous Succor", + "desc": "You cause a searing poison to burn quickly through the target's wounds, dealing 1d6 poison damage. The target regains 2d4 hit points at the start of each of its turns for the next 1d4+1 rounds.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "For each slot level above 2nd, the initial damage increases by 1d6 and target regains an additional 1d4 hit points.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_vicious-mockery", + "fields": { + "name": "Vicious Mockery", + "desc": "You verbally insult or mock the target so viciously its mind is seared. As long as the target hears you (understanding your words is not required) it takes 1d6 psychic damage and has disadvantage on the first attack roll it makes before the end of its next turn.", + "document": "a5e-ag", + "level": 0, + "school": "enchantment", + "higher_level": "The spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_wall-of-fire", + "fields": { + "name": "Wall of Fire", + "desc": "You create a wall of fire on a solid surface. The wall can be up to 60 feet long (it does not have to be a straight line; sections of the wall can angle as long as they are contiguous), 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall blocks sight.\n\nWhen the wall appears, each creature within its area makes a Dexterity saving throw, taking 5d8 fire damage on a failed save, or half as much damage on a successful save.\n\nOne side of the wall (chosen when the spell is cast) deals 5d8 fire damage to each creature that ends its turn within 10 feet of that side or inside the wall. A creature takes the same damage when it enters the wall itself for the first time on a turn or ends its turn there. The other side of the wall deals no damage.", + "document": "a5e-ag", + "level": 4, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_wall-of-flesh", + "fields": { + "name": "Wall of Flesh", + "desc": "A squirming wall of bodies, groping arms and tentacles, and moaning, biting mouths heaves itself up from the ground at a point you choose. The wall is 6 inches thick and is made up of a contiguous group of ten 10-foot square sections. The wall can have any shape you desire.\n\nIf the wall enters a creature's space when it appears, the creature makes a Dexterity saving throw, and on a success it moves up to its Speed to escape. On a failed save, it is swallowed by the wall (as below).\n\nWhen a creature enters the area for the first time on a turn or starts its turn within 10 feet of the wall, tentacles and arms reach out to grab it. The creature makes a Dexterity saving throw or takes 5d8 bludgeoning damage and becomes grappled. If the creature was already grappled by the wall at the start of its turn and fails its saving throw, a mouth opens in the wall and swallows the creature.\n\nA creature swallowed by the wall takes 5d8 ongoing bludgeoning damage and is blinded, deafened, and restrained.\n\nA creature grappled or restrained by the wall can use its action to make a Strength saving throw against your spell save DC. On a success, a grappled creature frees itself and a restrained creature claws its way out of the wall's space, exiting to an empty space next to the wall and still grappled.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above the 6th.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_wall-of-force", + "fields": { + "name": "Wall of Force", + "desc": "You create an invisible wall of force at a point you choose. The wall is a horizontal or vertical barrier, or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere, either with a radius of up to 10 feet. You may also choose to create a flat surface made up of a contiguous group of ten 10-foot square sections. The wall is 1/4 inch thick.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of the wall (your choice), but when a creature would be surrounded on all sides by the wall (or the wall and another solid surface), it can use its reaction to make a Dexterity saving throw to move up to its Speed to escape. Any creature without a special sense like blindsight has disadvantage on this saving throw.\n\nNothing can physically pass through the wall.\n\nIt can be destroyed with dispel magic cast using a spell slot of at least 5th-level or by being dealt at least 25 force damage at once. It is otherwise immune to damage. The wall also extends into the Ethereal Plane, blocking ethereal travel through it.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_wall-of-ice", + "fields": { + "name": "Wall of Ice", + "desc": "You create a wall of ice on a solid surface. You can form it into a hemispherical dome or a sphere, either with a radius of up to 10 feet. You may also choose to create a flat surface made up of a contiguous group of ten 10-foot square sections. The wall is 1 foot thick.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of it (your choice).\n\nIn addition, the creature makes a Dexterity saving throw, taking 10d6 cold damage on a failed save, or half as much damage on a success.\n\nThe wall is an object with vulnerability to fire damage, with AC 12 and 30 hit points per 10-foot section. Reducing a 10-foot section of wall to 0 hit points destroys it and leaves behind a sheet of frigid air in the space the section occupied. A creature moving through the sheet of frigid air for the first time on a turn makes a Constitution saving throw, taking 5d6 cold damage on a failed save, or half as much damage on a successful one.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "The damage the wall deals when it appears increases by 2d6 and the damage from passing through the sheet of frigid air increases by 1d6 for each slot level above 6th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_wall-of-stone", + "fields": { + "name": "Wall of Stone", + "desc": "A nonmagical wall of solid stone appears at a point you choose. The wall is 6 inches thick and is made up of a contiguous group of ten 10-foot square sections. Alternatively, you can create 10-foot-by-20- foot sections that are only 3 inches thick.\n\nThe wall can have any shape you desire, though it can't occupy the same space as a creature or object.\n\nThe wall doesn't need to be vertical or rest on any firm foundation but must merge with and be solidly supported by existing stone. Thus, you can use this spell to bridge a chasm or create a ramp.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of the wall (your choice), but when a creature would be surrounded on all sides by the wall (or the wall and another solid surface), it can use its reaction to make a Dexterity saving throw to move up to its Speed to escape.\n\nIf you create a span greater than 20 feet in length, you must halve the size of each panel to create supports. You can crudely shape the wall to create crenelations, battlements, and so on.\n\nThe wall is an object made of stone. Each panel has AC 15 and 30 hit points per inch of thickness.\n\nReducing a panel to 0 hit points destroys it and at the Narrator's discretion might cause connected panels to collapse.\n\nYou can make the wall permanent by concentrating on the spell for the full duration.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_wall-of-thorns", + "fields": { + "name": "Wall of Thorns", + "desc": "You create a wall of tough, pliable, tangled brush bristling with needle-sharp thorns on a solid surface. You can choose to make the wall up to 60 feet long, 10 feet high, and 5 feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and 5 feet thick. The wall blocks line of sight.\n\nWhen the wall appears, each creature within its area makes a Dexterity saving throw, taking 7d8 piercing damage on a failed save, or half as much damage on a successful save.\n\nA creature can move through the wall, albeit slowly and painfully. For every 1 foot a creature moves through the wall, it must spend 4 feet of movement. The first time a creature enters the wall on a turn or ends its turn there, it makes a Dexterity saving throw, taking 7d8 slashing damage on a failed save, or half as much damage on a successful save.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "Damage dealt by the wall increases by 1d8 for each slot level above 6th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_warding-bond", + "fields": { + "name": "Warding Bond", + "desc": "Until the spell ends, the target is warded by a mystic connection between it and you. While the target is within 60 feet it gains a +1 bonus to AC and saving throws, and it has resistance to all damage. Each time it takes damage, you take an equal amount of damage.\n\nThe spell ends if you are reduced to 0 hit points or if you and the target become separated by more than 60 feet. It also ends if you use an action to dismiss it, or if the spell is cast again on either you or the target.", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "The duration increases by 1 hour for each slot level above 2nd.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_warriors-instincts", + "fields": { + "name": "Warrior's Instincts", + "desc": "Your senses sharpen, allowing you to anticipate incoming attacks and find weaknesses in the defenses of your foes. Until the spell ends, creatures cannot gain bonuses (like those granted by bless or expertise dice) or advantage on attack rolls against you. In addition, none of your movement provokes opportunity attacks, and you ignore nonmagical difficult terrain. Finally, you can end the spell early to treat a single weapon attack roll as though you had rolled a 15 on the d20.", + "document": "a5e-ag", + "level": 5, + "school": "divination", + "higher_level": "For each slot level above 5th, you can also apply this spell's benefits to an additional creature you can see within 30 feet.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_water-breathing", + "fields": { + "name": "Water Breathing", + "desc": "Until the spell ends, the targets are able to breathe underwater (and still able to respirate normally).", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 10, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_water-walk", + "fields": { + "name": "Water Walk", + "desc": "Until the spell ends, the targets are able to move across any liquid surface (such as water, acid, mud, snow, quicksand, or lava) as if it was solid ground.\n\nCreatures can still take damage from surfaces that would deliver damage from corrosion or extreme temperatures, but they do not sink while moving across it.\n\nA target submerged in a liquid is moved to the surface of the liquid at a rate of 60 feet per round.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "The duration increases by 1 hour for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 10, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_web", + "fields": { + "name": "Web", + "desc": "Thick, sticky webs fill the area, lightly obscuring it and making it difficult terrain.\n\nYou must anchor the webs between two solid masses (such as walls or trees) or layer them across a flat surface. If you don't the conjured webs collapse and at the start of your next turn the spell ends.\n\nWebs layered over a flat surface are 5 feet deep.\n\nEach creature that starts its turn in the webs or that enters them during its turn makes a Dexterity saving throw or it is restrained as long as it remains in the webs (or until the creature breaks free).\n\nA creature restrained by the webs can escape by using its action to make a Strength check against your spell save DC.\n\nAny 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "When using a 4th-level spell slot, you also summon a giant wolf spider in an unoccupied space within the web's area. When using a 6th-level spell slot, you summon up to two spiders.\n\nWhen using a 7th-level spell slot, you summon up to three spiders. The spiders are friendly to you and your companions. Roll initiative for the spiders as a group, which have their own turns. The spiders obey your verbal commands, but they disappear when the spell ends or when they leave the web's area.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_weird", + "fields": { + "name": "Weird", + "desc": "You create illusions which manifest the deepest fears and worst nightmares in the minds of all creatures in the spell's area. Each creature in the area makes a Wisdom saving throw or becomes frightened until the spell ends. At the end of each of a frightened creature's turns, it makes a Wisdom saving throw or it takes 4d10 psychic damage. On a successful save, the spell ends for that creature.", + "document": "a5e-ag", + "level": 9, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "4d10", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_whirlwind-kick", + "fields": { + "name": "Whirlwind Kick", + "desc": "You must be able to move in order to cast this spell. You leap into the air and spin like a tornado, striking foes all around you with supernatural force as you fly up to 60 feet in a straight line. Your movement (which does not provoke attacks of opportunity) must end on a surface that can support your weight or you fall as normal.\n\nAs part of the casting of this spell, make a melee spell attack against any number of creatures in the area. On a hit, you deal your unarmed strike damage plus 2d6 thunder damage. In addition, creatures in the area make a Dexterity saving throw or are either pulled 10 feet closer to you or pushed 10 feet away (your choice).", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "The extra thunder damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_wind-up", + "fields": { + "name": "Wind Up", + "desc": "You wind your power up like a spring. You gain advantage on the next melee attack roll you make before the end of the spell's duration, after which the spell ends.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_wind-walk", + "fields": { + "name": "Wind Walk", + "desc": "The targets assume a gaseous form and appear as wisps of cloud. Each target has a flying speed of 300 feet and resistance to damage from nonmagical weapons, but the only action it can take is the Dash action or to revert to its normal form (a process that takes 1 minute during which it is incapacitated and can't move).\n\nUntil the spell ends, a target can change again to cloud form (in an identical transformation process).\n\nWhen the effect ends for a target flying in cloud form, it descends 60 feet each round for up to 1 minute or until it safely lands. If the target can't land after 1 minute, the creature falls the rest of the way normally.", + "document": "a5e-ag", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_wind-wall", + "fields": { + "name": "Wind Wall", + "desc": "A wall of strong wind rises from the ground at a point you choose. You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You can shape the wall in any way you choose so long as it makes one continuous path along the ground.\n\nWhen the wall appears, each creature within its area makes a Strength saving throw, taking 3d8 bludgeoning damage on a failed save, or half as much damage on a successful one.\n\nThe wall keeps fog, smoke, and other gases (including creatures in gaseous form) at bay. Small or smaller flying creatures or objects can't pass through. Loose, lightweight materials brought into the area fly upward. Arrows, bolts, and other ordinary projectiles launched at targets behind the wall are deflected upward and automatically miss (larger projectiles such as boulders and siege engine attacks are unaffected).", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above 3rd.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_wish", + "fields": { + "name": "Wish", + "desc": "This is the mightiest of mortal magics and alters reality itself.\n\nThe safest use of this spell is the duplication of any other spell of 8th-level or lower without needing to meet its requirements (including components).\n\nYou may instead choose one of the following:\n\n* One nonmagical object of your choice that is worth up to 25, 000 gold and no more than 300 feet in any dimension appears in an unoccupied space you can see on the ground.\n* Up to 20 creatures that you can see to regain all their hit points, and each is further healed as per the greater restoration spell.\n* Up to 10 creatures that you can see gain resistance to a damage type you choose.\n* Up to 10 creatures you can see gain immunity to a single spell or other magical effect for 8 hours.\n* You force a reroll of any roll made within the last round (including your last turn). You can force the reroll to be made with advantage or disadvantage, and you can choose whether to use the reroll or the original roll.\n\nYou might be able to achieve something beyond the scope of the above examples. State your wish to the Narrator as precisely as possible, being very careful in your wording. Be aware that the greater the wish, the greater the chance for an unexpected result. This spell might simply fizzle, your desired outcome might only be partly achieved, or you might suffer some unforeseen consequence as a result of how you worded the wish. The Narrator has the final authority in ruling what occurs—and reality is not tampered with lightly.\n\n**_Multiple Wishes:_** The stress of casting this spell to produce any effect other than duplicating another spell weakens you. Until finishing a long rest, each time you cast a spell you take 1d10 necrotic damage per level of that spell. This damage can't be reduced or prevented. In addition, your Strength drops to 3 for 2d4 days (if it isn't 3 or lower already). For each of those days that you spend resting and doing nothing more than light activity, your remaining recovery time decreases by 2 days. Finally, there is a 33% chance that you are unable to cast wish ever again.", + "document": "a5e-ag", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_word-of-recall", + "fields": { + "name": "Word of Recall", + "desc": "The targets instantly teleport to a previously designated sanctuary, appearing in the nearest unoccupied space to the spot you designated when you prepared your sanctuary.\n\nYou must first designate a sanctuary by casting this spell within a location aligned with your faith, such as a temple dedicated to or strongly linked to your deity.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "5 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_wormway", + "fields": { + "name": "Wormway", + "desc": "You call a Gargantuan monstrosity from the depths of the world to carry you and your allies across great distances. When you cast this spell, the nearest purple worm within range is charmed by you and begins moving toward a point on the ground that you can see. If there are no purple worms within range, the spell fails. The earth rumbles slightly as it approaches and breaks through the surface. Any creatures within 20 feet of that point must make a Dexterity saving throw or be knocked prone and pushed 10 feet away from it.\n\nUpon emerging, the purple worm lays down before you and opens its maw. Targets can climb inside where they are enclosed in an impervious hemispherical dome of force.\n\nOnce targets are loaded into the purple worm, nothing—not physical objects, energy, or other spell effects —can pass through the barrier, in or out, though targets in the sphere can breathe there. The hemisphere is immune to all damage, and creatures and objects inside can't be damaged by attacks or effects originating from outside, nor can a target inside the hemisphere damage anything outside it.\n\nThe atmosphere inside the dome is comfortable and dry regardless of conditions outside it.\n\nThe purple worm waits until you give it a mental command to depart, at which point it dives back into the ground and travels, without need for rest or food, as directly as possible while avoiding obstacles to a destination known to you. It travels 150 miles per day.\n\nWhen the purple worm reaches its destination it surfaces, the dome vanishes, and it disgorges the targets in its mouth before diving back into the depths again.\n\nThe purple worm remains charmed by you until it has delivered you to your destination and returned to the depths, or until it is attacked at which point the charm ends, it vomits its targets in the nearest unoccupied space as soon as possible, and then retreats to safety.", + "document": "a5e-ag", + "level": 6, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "150 miles", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_writhing-transformation", + "fields": { + "name": "Writhing Transformation", + "desc": "As part of the casting of this spell, you lay down in the coffin on a patch of bare earth and it buries itself. Over the following week, you are incapacitated and do not need air, food, or sleep. Your insides are eaten by worms, but you do not die and your skin remains intact. If you are exhumed during this time, or if the spell is otherwise interrupted, you die.\n\nAt the end of the week, the transformation is complete and your true form is permanently changed. Your appearance is unchanged but underneath your skin is a sentient mass of worms. Any creature that makes a Medicine check against your spell save DC realizes that there is something moving underneath your skin.\n\nYour statistics change in the following ways:\n\n* Your type changes to aberration, and you do not age or require sleep.\n* You cannot be healed by normal means, but you can spend an action or bonus action to consume 2d6 live worms, regaining an equal amount of hit points by adding them to your body.\n* You can sense and telepathically control all worms that have the beast type and are within 60 feet of you.\n\nIn addition, you are able to discard your shell of skin and travel as a writhing mass of worms. As an action, you can abandon your skin and pour out onto the ground. In this form you have the statistics of **swarm of insects** with the following exceptions: you keep your hit points, Wisdom, Intelligence, and Charisma scores, and proficiencies. You know but cannot cast spells in this form. You also gain a burrow speed of 10 feet. Any worms touching you instantly join with your swarm, granting you a number of temporary hit points equal to the number of worms that join with your form (maximum 40 temporary hit points). These temporary hit points last until you are no longer in this form.\n\nIf you spend an hour in the same space as a dead creature of your original form's size, you can eat its insides and inhabit its skin in the same way you once inhabited your own. While you are in your swarm form, the most recent skin you inhabited remains intact and you can move back into a previously inhabited skin in 1 minute. You have advantage on checks made to impersonate a creature while wearing its skin.", + "document": "a5e-ag", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "a5e-ag_zone-of-truth", + "fields": { + "name": "Zone of Truth", + "desc": "You create a zone that minimizes deception. Any creature that is able to be charmed can't speak a deliberate lie while in the area.\n\nAn affected creature is aware of the spell and can choose not to speak, or it might be evasive in its communications. A creature that enters the zone for the first time on its turn or starts its turn there must make a Charisma saving throw. On a failed save, the creature takes 2d4 psychic damage when it intentionally tries to mislead or occlude important information. Each time the spell damages a creature, it makes a Deception check (DC 8 + the damage dealt) or its suffering is obvious. You know whether a creature succeeds on its saving throw", + "document": "a5e-ag", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "psychic" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + } +] \ No newline at end of file diff --git a/data/v2/en-publishing/a5e-ag/SpellCastingOption.json b/data/v2/en-publishing/a5e-ag/SpellCastingOption.json index 36afa255..adb7e992 100644 --- a/data/v2/en-publishing/a5e-ag/SpellCastingOption.json +++ b/data/v2/en-publishing/a5e-ag/SpellCastingOption.json @@ -1,19958 +1,19958 @@ [ -{ - "model": "api_v2.spellcastingoption", - "pk": 403, - "fields": { - "parent": "accelerando-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 405, - "fields": { - "parent": "accelerando-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 406, - "fields": { - "parent": "accelerando-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 407, - "fields": { - "parent": "accelerando-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 408, - "fields": { - "parent": "accelerando-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 409, - "fields": { - "parent": "accelerando-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 410, - "fields": { - "parent": "acid-arrow-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 412, - "fields": { - "parent": "acid-arrow-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 413, - "fields": { - "parent": "acid-arrow-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 414, - "fields": { - "parent": "acid-arrow-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 415, - "fields": { - "parent": "acid-arrow-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 416, - "fields": { - "parent": "acid-arrow-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 417, - "fields": { - "parent": "acid-arrow-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 418, - "fields": { - "parent": "acid-arrow-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 419, - "fields": { - "parent": "acid-splash-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 420, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 421, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 422, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 423, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 424, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_5", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 425, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_6", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 426, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_7", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 427, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_8", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 428, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_9", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 429, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_10", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 430, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_11", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 431, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_12", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 432, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_13", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 433, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_14", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 434, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_15", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 435, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_16", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 436, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_17", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 437, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_18", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 438, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_19", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 439, - "fields": { - "parent": "acid-splash-a5e", - "type": "player_level_20", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 440, - "fields": { - "parent": "aid-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 442, - "fields": { - "parent": "aid-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 443, - "fields": { - "parent": "aid-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 444, - "fields": { - "parent": "aid-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 445, - "fields": { - "parent": "aid-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 446, - "fields": { - "parent": "aid-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 447, - "fields": { - "parent": "aid-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 448, - "fields": { - "parent": "aid-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 449, - "fields": { - "parent": "air-wave-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 451, - "fields": { - "parent": "air-wave-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "60 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 452, - "fields": { - "parent": "air-wave-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "90 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 453, - "fields": { - "parent": "air-wave-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "120 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 454, - "fields": { - "parent": "air-wave-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "150 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 455, - "fields": { - "parent": "air-wave-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "180 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 456, - "fields": { - "parent": "air-wave-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "210 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 457, - "fields": { - "parent": "air-wave-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "240 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 458, - "fields": { - "parent": "air-wave-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "270 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 459, - "fields": { - "parent": "alarm-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 460, - "fields": { - "parent": "alarm-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 462, - "fields": { - "parent": "alarm-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": "600 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 463, - "fields": { - "parent": "alarm-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": "600 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 464, - "fields": { - "parent": "alarm-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": "600 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 465, - "fields": { - "parent": "alarm-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": "600 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 466, - "fields": { - "parent": "alarm-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": "600 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 467, - "fields": { - "parent": "alarm-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": "600 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 468, - "fields": { - "parent": "alarm-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": "600 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 469, - "fields": { - "parent": "alarm-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": "600 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 470, - "fields": { - "parent": "alter-self-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 472, - "fields": { - "parent": "alter-self-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 473, - "fields": { - "parent": "alter-self-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 474, - "fields": { - "parent": "alter-self-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 475, - "fields": { - "parent": "alter-self-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 476, - "fields": { - "parent": "alter-self-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 477, - "fields": { - "parent": "alter-self-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 478, - "fields": { - "parent": "alter-self-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 479, - "fields": { - "parent": "altered-strike-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 480, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 481, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 482, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 483, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 484, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 485, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 486, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 487, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 488, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 489, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 490, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 491, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 492, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 493, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 494, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 495, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 496, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 497, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 498, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 499, - "fields": { - "parent": "altered-strike-a5e", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 500, - "fields": { - "parent": "angel-paradox-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 502, - "fields": { - "parent": "angel-paradox-a5e", - "type": "slot_level_8", - "damage_roll": "45", - "target_count": null, - "duration": "1 year", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 503, - "fields": { - "parent": "angel-paradox-a5e", - "type": "slot_level_9", - "damage_roll": "50", - "target_count": null, - "duration": "Until dispelled", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 504, - "fields": { - "parent": "animal-friendship-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 506, - "fields": { - "parent": "animal-friendship-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 507, - "fields": { - "parent": "animal-friendship-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 508, - "fields": { - "parent": "animal-friendship-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 509, - "fields": { - "parent": "animal-friendship-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 510, - "fields": { - "parent": "animal-friendship-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 511, - "fields": { - "parent": "animal-friendship-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 512, - "fields": { - "parent": "animal-friendship-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 513, - "fields": { - "parent": "animal-friendship-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 514, - "fields": { - "parent": "animal-messenger-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 515, - "fields": { - "parent": "animal-messenger-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 517, - "fields": { - "parent": "animal-messenger-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "3 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 518, - "fields": { - "parent": "animal-messenger-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "5 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 519, - "fields": { - "parent": "animal-messenger-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "7 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 520, - "fields": { - "parent": "animal-messenger-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "9 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 521, - "fields": { - "parent": "animal-messenger-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "11 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 522, - "fields": { - "parent": "animal-messenger-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "13 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 523, - "fields": { - "parent": "animal-messenger-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "15 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 524, - "fields": { - "parent": "animal-shapes-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 525, - "fields": { - "parent": "animate-dead-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 527, - "fields": { - "parent": "animate-dead-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 528, - "fields": { - "parent": "animate-dead-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 529, - "fields": { - "parent": "animate-dead-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 530, - "fields": { - "parent": "animate-dead-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 531, - "fields": { - "parent": "animate-dead-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 532, - "fields": { - "parent": "animate-dead-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 533, - "fields": { - "parent": "animate-objects-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 535, - "fields": { - "parent": "animate-objects-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 536, - "fields": { - "parent": "animate-objects-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 537, - "fields": { - "parent": "animate-objects-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 538, - "fields": { - "parent": "animate-objects-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 539, - "fields": { - "parent": "antilife-shell-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 540, - "fields": { - "parent": "antimagic-field-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 541, - "fields": { - "parent": "antipathysympathy-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 542, - "fields": { - "parent": "arcane-eye-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 543, - "fields": { - "parent": "arcane-hand-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 545, - "fields": { - "parent": "arcane-hand-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 546, - "fields": { - "parent": "arcane-hand-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 547, - "fields": { - "parent": "arcane-hand-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 548, - "fields": { - "parent": "arcane-hand-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 549, - "fields": { - "parent": "arcane-lock-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 551, - "fields": { - "parent": "arcane-lock-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 552, - "fields": { - "parent": "arcane-lock-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 553, - "fields": { - "parent": "arcane-lock-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 554, - "fields": { - "parent": "arcane-lock-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 555, - "fields": { - "parent": "arcane-lock-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 556, - "fields": { - "parent": "arcane-lock-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 557, - "fields": { - "parent": "arcane-lock-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 558, - "fields": { - "parent": "arcane-muscles-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 559, - "fields": { - "parent": "arcane-riposte-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 561, - "fields": { - "parent": "arcane-riposte-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 562, - "fields": { - "parent": "arcane-riposte-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 563, - "fields": { - "parent": "arcane-riposte-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 564, - "fields": { - "parent": "arcane-riposte-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 565, - "fields": { - "parent": "arcane-riposte-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 566, - "fields": { - "parent": "arcane-riposte-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 567, - "fields": { - "parent": "arcane-riposte-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 568, - "fields": { - "parent": "arcane-riposte-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 569, - "fields": { - "parent": "arcane-sword-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 570, - "fields": { - "parent": "arcanists-magic-aura-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 572, - "fields": { - "parent": "arcanists-magic-aura-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 573, - "fields": { - "parent": "arcanists-magic-aura-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 574, - "fields": { - "parent": "arcanists-magic-aura-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 575, - "fields": { - "parent": "arcanists-magic-aura-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 576, - "fields": { - "parent": "arcanists-magic-aura-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 577, - "fields": { - "parent": "arcanists-magic-aura-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 578, - "fields": { - "parent": "arcanists-magic-aura-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 579, - "fields": { - "parent": "aspect-of-the-moon-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 580, - "fields": { - "parent": "astral-projection-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 581, - "fields": { - "parent": "augury-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 582, - "fields": { - "parent": "awaken-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 584, - "fields": { - "parent": "awaken-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 585, - "fields": { - "parent": "awaken-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 586, - "fields": { - "parent": "awaken-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 587, - "fields": { - "parent": "awaken-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 588, - "fields": { - "parent": "bane-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 590, - "fields": { - "parent": "bane-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 591, - "fields": { - "parent": "bane-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 592, - "fields": { - "parent": "bane-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 593, - "fields": { - "parent": "bane-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 594, - "fields": { - "parent": "bane-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 595, - "fields": { - "parent": "bane-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 596, - "fields": { - "parent": "bane-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 597, - "fields": { - "parent": "bane-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 598, - "fields": { - "parent": "banishment-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 600, - "fields": { - "parent": "banishment-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "1d4+3 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 601, - "fields": { - "parent": "banishment-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1d4+4 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 602, - "fields": { - "parent": "banishment-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1d4+5 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 603, - "fields": { - "parent": "banishment-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1d4+6 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 604, - "fields": { - "parent": "banishment-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1d4+7 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 605, - "fields": { - "parent": "barkskin-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 607, - "fields": { - "parent": "barkskin-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 608, - "fields": { - "parent": "barkskin-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 609, - "fields": { - "parent": "barkskin-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 610, - "fields": { - "parent": "barkskin-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 611, - "fields": { - "parent": "barkskin-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 612, - "fields": { - "parent": "barkskin-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 613, - "fields": { - "parent": "barkskin-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 614, - "fields": { - "parent": "battlecry-ballad-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 616, - "fields": { - "parent": "battlecry-ballad-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 617, - "fields": { - "parent": "battlecry-ballad-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 618, - "fields": { - "parent": "battlecry-ballad-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 619, - "fields": { - "parent": "battlecry-ballad-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 620, - "fields": { - "parent": "battlecry-ballad-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 621, - "fields": { - "parent": "battlecry-ballad-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 622, - "fields": { - "parent": "beacon-of-hope-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 623, - "fields": { - "parent": "bestow-curse-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 625, - "fields": { - "parent": "bestow-curse-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 626, - "fields": { - "parent": "bestow-curse-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 627, - "fields": { - "parent": "bestow-curse-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 628, - "fields": { - "parent": "bestow-curse-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 629, - "fields": { - "parent": "bestow-curse-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 630, - "fields": { - "parent": "bestow-curse-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 631, - "fields": { - "parent": "black-tentacles-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 633, - "fields": { - "parent": "black-tentacles-a5e", - "type": "slot_level_5", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 634, - "fields": { - "parent": "black-tentacles-a5e", - "type": "slot_level_6", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 635, - "fields": { - "parent": "black-tentacles-a5e", - "type": "slot_level_7", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 636, - "fields": { - "parent": "black-tentacles-a5e", - "type": "slot_level_8", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 637, - "fields": { - "parent": "black-tentacles-a5e", - "type": "slot_level_9", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 638, - "fields": { - "parent": "blade-barrier-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 640, - "fields": { - "parent": "blade-barrier-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 641, - "fields": { - "parent": "blade-barrier-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 642, - "fields": { - "parent": "blade-barrier-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 643, - "fields": { - "parent": "bless-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 645, - "fields": { - "parent": "bless-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 646, - "fields": { - "parent": "bless-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 647, - "fields": { - "parent": "bless-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 648, - "fields": { - "parent": "bless-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 649, - "fields": { - "parent": "bless-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 650, - "fields": { - "parent": "bless-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 651, - "fields": { - "parent": "bless-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 652, - "fields": { - "parent": "bless-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 11, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 653, - "fields": { - "parent": "blight-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 655, - "fields": { - "parent": "blight-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 656, - "fields": { - "parent": "blight-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 657, - "fields": { - "parent": "blight-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 658, - "fields": { - "parent": "blight-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 659, - "fields": { - "parent": "blight-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 660, - "fields": { - "parent": "blindnessdeafness-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 662, - "fields": { - "parent": "blindnessdeafness-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 663, - "fields": { - "parent": "blindnessdeafness-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 664, - "fields": { - "parent": "blindnessdeafness-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 665, - "fields": { - "parent": "blindnessdeafness-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 666, - "fields": { - "parent": "blindnessdeafness-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 667, - "fields": { - "parent": "blindnessdeafness-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 668, - "fields": { - "parent": "blindnessdeafness-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 669, - "fields": { - "parent": "blink-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 670, - "fields": { - "parent": "blood-writ-bargain-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 671, - "fields": { - "parent": "blood-writ-bargain-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 673, - "fields": { - "parent": "blood-writ-bargain-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "26 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 674, - "fields": { - "parent": "blood-writ-bargain-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "39 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 675, - "fields": { - "parent": "blood-writ-bargain-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "52 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 676, - "fields": { - "parent": "blood-writ-bargain-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "65 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 677, - "fields": { - "parent": "blood-writ-bargain-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "78 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 678, - "fields": { - "parent": "blood-writ-bargain-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "91 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 679, - "fields": { - "parent": "blur-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 681, - "fields": { - "parent": "blur-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 682, - "fields": { - "parent": "blur-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 683, - "fields": { - "parent": "blur-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 684, - "fields": { - "parent": "blur-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 685, - "fields": { - "parent": "blur-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 686, - "fields": { - "parent": "blur-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 687, - "fields": { - "parent": "blur-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 688, - "fields": { - "parent": "burning-hands-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 690, - "fields": { - "parent": "burning-hands-a5e", - "type": "slot_level_2", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 691, - "fields": { - "parent": "burning-hands-a5e", - "type": "slot_level_3", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 692, - "fields": { - "parent": "burning-hands-a5e", - "type": "slot_level_4", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 693, - "fields": { - "parent": "burning-hands-a5e", - "type": "slot_level_5", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 694, - "fields": { - "parent": "burning-hands-a5e", - "type": "slot_level_6", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 695, - "fields": { - "parent": "burning-hands-a5e", - "type": "slot_level_7", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 696, - "fields": { - "parent": "burning-hands-a5e", - "type": "slot_level_8", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 697, - "fields": { - "parent": "burning-hands-a5e", - "type": "slot_level_9", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 698, - "fields": { - "parent": "calculate-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 699, - "fields": { - "parent": "calculated-retribution-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 701, - "fields": { - "parent": "calculated-retribution-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 702, - "fields": { - "parent": "calculated-retribution-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 703, - "fields": { - "parent": "calculated-retribution-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 704, - "fields": { - "parent": "calculated-retribution-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 705, - "fields": { - "parent": "calculated-retribution-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 706, - "fields": { - "parent": "calculated-retribution-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 707, - "fields": { - "parent": "calculated-retribution-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 708, - "fields": { - "parent": "calculated-retribution-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 709, - "fields": { - "parent": "call-lightning-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 711, - "fields": { - "parent": "call-lightning-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 712, - "fields": { - "parent": "call-lightning-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 713, - "fields": { - "parent": "call-lightning-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 714, - "fields": { - "parent": "call-lightning-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 715, - "fields": { - "parent": "call-lightning-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 716, - "fields": { - "parent": "call-lightning-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 717, - "fields": { - "parent": "calm-emotions-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 719, - "fields": { - "parent": "calm-emotions-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 720, - "fields": { - "parent": "calm-emotions-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 721, - "fields": { - "parent": "calm-emotions-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 722, - "fields": { - "parent": "calm-emotions-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 723, - "fields": { - "parent": "calm-emotions-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 724, - "fields": { - "parent": "calm-emotions-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 725, - "fields": { - "parent": "calm-emotions-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 726, - "fields": { - "parent": "ceremony-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 727, - "fields": { - "parent": "ceremony-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 728, - "fields": { - "parent": "chain-lightning-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 730, - "fields": { - "parent": "chain-lightning-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 731, - "fields": { - "parent": "chain-lightning-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 732, - "fields": { - "parent": "chain-lightning-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 733, - "fields": { - "parent": "charm-monster-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 735, - "fields": { - "parent": "charm-monster-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 736, - "fields": { - "parent": "charm-monster-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 737, - "fields": { - "parent": "charm-monster-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 738, - "fields": { - "parent": "charm-monster-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 739, - "fields": { - "parent": "charm-monster-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 740, - "fields": { - "parent": "charm-person-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 742, - "fields": { - "parent": "charm-person-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 743, - "fields": { - "parent": "charm-person-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 744, - "fields": { - "parent": "charm-person-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 745, - "fields": { - "parent": "charm-person-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 746, - "fields": { - "parent": "charm-person-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 747, - "fields": { - "parent": "charm-person-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 748, - "fields": { - "parent": "charm-person-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 749, - "fields": { - "parent": "charm-person-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 750, - "fields": { - "parent": "chill-touch-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 751, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_1", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 752, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_2", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 753, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_3", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 754, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_4", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 755, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 756, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 757, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 758, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 759, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 760, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 761, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 762, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 763, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 764, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 765, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 766, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 767, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 768, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 769, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 770, - "fields": { - "parent": "chill-touch-a5e", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 771, - "fields": { - "parent": "circle-of-death-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 773, - "fields": { - "parent": "circle-of-death-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 774, - "fields": { - "parent": "circle-of-death-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 775, - "fields": { - "parent": "circle-of-death-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 776, - "fields": { - "parent": "circular-breathing-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 777, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 778, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 779, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 780, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 781, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 782, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 783, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 784, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 785, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 786, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 787, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 788, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 789, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 790, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 791, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 792, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 793, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 794, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 795, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 796, - "fields": { - "parent": "circular-breathing-a5e", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 797, - "fields": { - "parent": "clairvoyance-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 798, - "fields": { - "parent": "clone-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 799, - "fields": { - "parent": "cloudkill-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 801, - "fields": { - "parent": "cloudkill-a5e", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 802, - "fields": { - "parent": "cloudkill-a5e", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 803, - "fields": { - "parent": "cloudkill-a5e", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 804, - "fields": { - "parent": "cloudkill-a5e", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 805, - "fields": { - "parent": "cobras-spit-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 807, - "fields": { - "parent": "cobras-spit-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 808, - "fields": { - "parent": "cobras-spit-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 809, - "fields": { - "parent": "cobras-spit-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 810, - "fields": { - "parent": "cobras-spit-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 811, - "fields": { - "parent": "cobras-spit-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 812, - "fields": { - "parent": "cobras-spit-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 813, - "fields": { - "parent": "color-spray-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 815, - "fields": { - "parent": "color-spray-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 816, - "fields": { - "parent": "color-spray-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 817, - "fields": { - "parent": "color-spray-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 818, - "fields": { - "parent": "color-spray-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 819, - "fields": { - "parent": "color-spray-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 820, - "fields": { - "parent": "color-spray-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 821, - "fields": { - "parent": "color-spray-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 822, - "fields": { - "parent": "color-spray-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 823, - "fields": { - "parent": "command-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 825, - "fields": { - "parent": "command-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 826, - "fields": { - "parent": "command-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 827, - "fields": { - "parent": "command-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 828, - "fields": { - "parent": "command-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 829, - "fields": { - "parent": "command-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 830, - "fields": { - "parent": "command-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 831, - "fields": { - "parent": "command-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 832, - "fields": { - "parent": "command-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 833, - "fields": { - "parent": "commune-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 834, - "fields": { - "parent": "commune-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 835, - "fields": { - "parent": "commune-with-nature-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 836, - "fields": { - "parent": "commune-with-nature-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 837, - "fields": { - "parent": "comprehend-languages-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 838, - "fields": { - "parent": "comprehend-languages-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 840, - "fields": { - "parent": "comprehend-languages-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 841, - "fields": { - "parent": "comprehend-languages-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 842, - "fields": { - "parent": "comprehend-languages-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 843, - "fields": { - "parent": "comprehend-languages-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 844, - "fields": { - "parent": "comprehend-languages-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 845, - "fields": { - "parent": "comprehend-languages-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 846, - "fields": { - "parent": "comprehend-languages-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 847, - "fields": { - "parent": "comprehend-languages-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 848, - "fields": { - "parent": "cone-of-cold-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 850, - "fields": { - "parent": "cone-of-cold-a5e", - "type": "slot_level_6", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 851, - "fields": { - "parent": "cone-of-cold-a5e", - "type": "slot_level_7", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 852, - "fields": { - "parent": "cone-of-cold-a5e", - "type": "slot_level_8", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 853, - "fields": { - "parent": "cone-of-cold-a5e", - "type": "slot_level_9", - "damage_roll": "12d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 854, - "fields": { - "parent": "confusion-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 856, - "fields": { - "parent": "confusion-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 857, - "fields": { - "parent": "confusion-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 858, - "fields": { - "parent": "confusion-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 859, - "fields": { - "parent": "confusion-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 860, - "fields": { - "parent": "confusion-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 861, - "fields": { - "parent": "conjure-animals-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 863, - "fields": { - "parent": "conjure-animals-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 864, - "fields": { - "parent": "conjure-animals-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 865, - "fields": { - "parent": "conjure-animals-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 866, - "fields": { - "parent": "conjure-animals-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 867, - "fields": { - "parent": "conjure-animals-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 868, - "fields": { - "parent": "conjure-animals-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 869, - "fields": { - "parent": "conjure-celestial-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 871, - "fields": { - "parent": "conjure-celestial-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 872, - "fields": { - "parent": "conjure-celestial-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 873, - "fields": { - "parent": "conjure-elemental-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 875, - "fields": { - "parent": "conjure-elemental-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 876, - "fields": { - "parent": "conjure-elemental-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 877, - "fields": { - "parent": "conjure-elemental-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 878, - "fields": { - "parent": "conjure-elemental-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 879, - "fields": { - "parent": "conjure-fey-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 881, - "fields": { - "parent": "conjure-fey-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 882, - "fields": { - "parent": "conjure-fey-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 883, - "fields": { - "parent": "conjure-fey-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 884, - "fields": { - "parent": "conjure-minor-elementals-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 886, - "fields": { - "parent": "conjure-minor-elementals-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 887, - "fields": { - "parent": "conjure-minor-elementals-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 888, - "fields": { - "parent": "conjure-minor-elementals-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 889, - "fields": { - "parent": "conjure-minor-elementals-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 890, - "fields": { - "parent": "conjure-minor-elementals-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 891, - "fields": { - "parent": "conjure-woodland-beings-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 893, - "fields": { - "parent": "conjure-woodland-beings-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 894, - "fields": { - "parent": "conjure-woodland-beings-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 895, - "fields": { - "parent": "conjure-woodland-beings-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 896, - "fields": { - "parent": "conjure-woodland-beings-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 897, - "fields": { - "parent": "conjure-woodland-beings-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 898, - "fields": { - "parent": "contact-other-plane-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 899, - "fields": { - "parent": "contact-other-plane-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 900, - "fields": { - "parent": "contagion-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 901, - "fields": { - "parent": "contingency-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 902, - "fields": { - "parent": "continual-flame-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 903, - "fields": { - "parent": "control-water-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 904, - "fields": { - "parent": "control-weather-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 905, - "fields": { - "parent": "corpse-explosion-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 907, - "fields": { - "parent": "corpse-explosion-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 908, - "fields": { - "parent": "corpse-explosion-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 909, - "fields": { - "parent": "corpse-explosion-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 910, - "fields": { - "parent": "corpse-explosion-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 911, - "fields": { - "parent": "corpse-explosion-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 912, - "fields": { - "parent": "corpse-explosion-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 913, - "fields": { - "parent": "corpse-explosion-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 914, - "fields": { - "parent": "corpse-explosion-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 915, - "fields": { - "parent": "counterspell-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 917, - "fields": { - "parent": "counterspell-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 918, - "fields": { - "parent": "counterspell-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 919, - "fields": { - "parent": "counterspell-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 920, - "fields": { - "parent": "counterspell-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 921, - "fields": { - "parent": "counterspell-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 922, - "fields": { - "parent": "counterspell-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 923, - "fields": { - "parent": "create-food-and-water-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 925, - "fields": { - "parent": "create-food-and-water-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 926, - "fields": { - "parent": "create-food-and-water-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 927, - "fields": { - "parent": "create-food-and-water-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 928, - "fields": { - "parent": "create-food-and-water-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 929, - "fields": { - "parent": "create-food-and-water-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 930, - "fields": { - "parent": "create-food-and-water-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 931, - "fields": { - "parent": "create-or-destroy-water-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 933, - "fields": { - "parent": "create-or-destroy-water-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 934, - "fields": { - "parent": "create-or-destroy-water-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 935, - "fields": { - "parent": "create-or-destroy-water-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 936, - "fields": { - "parent": "create-or-destroy-water-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 937, - "fields": { - "parent": "create-or-destroy-water-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 938, - "fields": { - "parent": "create-or-destroy-water-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 939, - "fields": { - "parent": "create-or-destroy-water-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 940, - "fields": { - "parent": "create-or-destroy-water-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 941, - "fields": { - "parent": "create-undead-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 943, - "fields": { - "parent": "create-undead-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 944, - "fields": { - "parent": "create-undead-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 945, - "fields": { - "parent": "create-undead-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 946, - "fields": { - "parent": "creation-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 948, - "fields": { - "parent": "creation-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 949, - "fields": { - "parent": "creation-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 950, - "fields": { - "parent": "creation-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 951, - "fields": { - "parent": "creation-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 952, - "fields": { - "parent": "crushing-haymaker-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 954, - "fields": { - "parent": "crushing-haymaker-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 955, - "fields": { - "parent": "crushing-haymaker-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 956, - "fields": { - "parent": "crushing-haymaker-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 957, - "fields": { - "parent": "crushing-haymaker-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 958, - "fields": { - "parent": "crushing-haymaker-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 959, - "fields": { - "parent": "crushing-haymaker-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 960, - "fields": { - "parent": "cure-wounds-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 962, - "fields": { - "parent": "cure-wounds-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 963, - "fields": { - "parent": "cure-wounds-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 964, - "fields": { - "parent": "cure-wounds-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 965, - "fields": { - "parent": "cure-wounds-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 966, - "fields": { - "parent": "cure-wounds-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 967, - "fields": { - "parent": "cure-wounds-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 968, - "fields": { - "parent": "cure-wounds-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 969, - "fields": { - "parent": "cure-wounds-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 970, - "fields": { - "parent": "dancing-lights-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 971, - "fields": { - "parent": "darklight-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 972, - "fields": { - "parent": "darkness-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 973, - "fields": { - "parent": "darkvision-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 975, - "fields": { - "parent": "darkvision-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 976, - "fields": { - "parent": "darkvision-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 977, - "fields": { - "parent": "darkvision-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 978, - "fields": { - "parent": "darkvision-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 979, - "fields": { - "parent": "darkvision-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 980, - "fields": { - "parent": "darkvision-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 981, - "fields": { - "parent": "darkvision-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 982, - "fields": { - "parent": "daylight-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 983, - "fields": { - "parent": "deadweight-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 984, - "fields": { - "parent": "death-ward-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 985, - "fields": { - "parent": "delayed-blast-fireball-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 987, - "fields": { - "parent": "delayed-blast-fireball-a5e", - "type": "slot_level_8", - "damage_roll": "13d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 988, - "fields": { - "parent": "delayed-blast-fireball-a5e", - "type": "slot_level_9", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 989, - "fields": { - "parent": "demiplane-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 990, - "fields": { - "parent": "detect-evil-and-good-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 991, - "fields": { - "parent": "detect-magic-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 992, - "fields": { - "parent": "detect-magic-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 994, - "fields": { - "parent": "detect-magic-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 995, - "fields": { - "parent": "detect-magic-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 996, - "fields": { - "parent": "detect-magic-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 997, - "fields": { - "parent": "detect-magic-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 998, - "fields": { - "parent": "detect-magic-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 999, - "fields": { - "parent": "detect-magic-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1000, - "fields": { - "parent": "detect-magic-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1001, - "fields": { - "parent": "detect-magic-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1002, - "fields": { - "parent": "detect-poison-and-disease-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1003, - "fields": { - "parent": "detect-poison-and-disease-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1004, - "fields": { - "parent": "detect-thoughts-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1006, - "fields": { - "parent": "detect-thoughts-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1007, - "fields": { - "parent": "detect-thoughts-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1008, - "fields": { - "parent": "detect-thoughts-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "1 mile" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1009, - "fields": { - "parent": "detect-thoughts-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "1 mile" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1010, - "fields": { - "parent": "detect-thoughts-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "10 miles" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1011, - "fields": { - "parent": "detect-thoughts-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "10 miles" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1012, - "fields": { - "parent": "detect-thoughts-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "1000 miles" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1013, - "fields": { - "parent": "dimension-door-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1014, - "fields": { - "parent": "disguise-self-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1016, - "fields": { - "parent": "disguise-self-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1017, - "fields": { - "parent": "disguise-self-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1018, - "fields": { - "parent": "disguise-self-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1019, - "fields": { - "parent": "disguise-self-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1020, - "fields": { - "parent": "disguise-self-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1021, - "fields": { - "parent": "disguise-self-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1022, - "fields": { - "parent": "disguise-self-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1023, - "fields": { - "parent": "disguise-self-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1024, - "fields": { - "parent": "disintegrate-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1026, - "fields": { - "parent": "disintegrate-a5e", - "type": "slot_level_7", - "damage_roll": "13d6+40", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1027, - "fields": { - "parent": "disintegrate-a5e", - "type": "slot_level_8", - "damage_roll": "16d6+40", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1028, - "fields": { - "parent": "disintegrate-a5e", - "type": "slot_level_9", - "damage_roll": "19d6+40", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1029, - "fields": { - "parent": "dispel-evil-and-good-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1031, - "fields": { - "parent": "dispel-evil-and-good-a5e", - "type": "slot_level_6", - "damage_roll": "8d8", - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1032, - "fields": { - "parent": "dispel-evil-and-good-a5e", - "type": "slot_level_7", - "damage_roll": "9d8", - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1033, - "fields": { - "parent": "dispel-evil-and-good-a5e", - "type": "slot_level_8", - "damage_roll": "10d8", - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1034, - "fields": { - "parent": "dispel-evil-and-good-a5e", - "type": "slot_level_9", - "damage_roll": "11d8", - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1035, - "fields": { - "parent": "dispel-magic-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1037, - "fields": { - "parent": "dispel-magic-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1038, - "fields": { - "parent": "dispel-magic-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1039, - "fields": { - "parent": "dispel-magic-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1040, - "fields": { - "parent": "dispel-magic-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1041, - "fields": { - "parent": "dispel-magic-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1042, - "fields": { - "parent": "dispel-magic-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1043, - "fields": { - "parent": "divination-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1044, - "fields": { - "parent": "divination-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1045, - "fields": { - "parent": "divine-favor-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1046, - "fields": { - "parent": "divine-word-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1047, - "fields": { - "parent": "dominate-beast-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1049, - "fields": { - "parent": "dominate-beast-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1050, - "fields": { - "parent": "dominate-beast-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1051, - "fields": { - "parent": "dominate-beast-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1052, - "fields": { - "parent": "dominate-beast-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1053, - "fields": { - "parent": "dominate-beast-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1054, - "fields": { - "parent": "dominate-monster-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1056, - "fields": { - "parent": "dominate-monster-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1057, - "fields": { - "parent": "dominate-person-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1059, - "fields": { - "parent": "dominate-person-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1060, - "fields": { - "parent": "dominate-person-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1061, - "fields": { - "parent": "dominate-person-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1062, - "fields": { - "parent": "dominate-person-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1063, - "fields": { - "parent": "dramatic-sting-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1065, - "fields": { - "parent": "dramatic-sting-a5e", - "type": "slot_level_2", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1066, - "fields": { - "parent": "dramatic-sting-a5e", - "type": "slot_level_3", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1067, - "fields": { - "parent": "dramatic-sting-a5e", - "type": "slot_level_4", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1068, - "fields": { - "parent": "dramatic-sting-a5e", - "type": "slot_level_5", - "damage_roll": "5d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1069, - "fields": { - "parent": "dramatic-sting-a5e", - "type": "slot_level_6", - "damage_roll": "6d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1070, - "fields": { - "parent": "dramatic-sting-a5e", - "type": "slot_level_7", - "damage_roll": "7d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1071, - "fields": { - "parent": "dramatic-sting-a5e", - "type": "slot_level_8", - "damage_roll": "8d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1072, - "fields": { - "parent": "dramatic-sting-a5e", - "type": "slot_level_9", - "damage_roll": "9d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1073, - "fields": { - "parent": "dream-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1074, - "fields": { - "parent": "druidcraft-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1075, - "fields": { - "parent": "earth-barrier-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1076, - "fields": { - "parent": "earthquake-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1077, - "fields": { - "parent": "eldritch-cube-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1078, - "fields": { - "parent": "enhance-ability-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1080, - "fields": { - "parent": "enhance-ability-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1081, - "fields": { - "parent": "enhance-ability-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1082, - "fields": { - "parent": "enhance-ability-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1083, - "fields": { - "parent": "enhance-ability-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1084, - "fields": { - "parent": "enhance-ability-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1085, - "fields": { - "parent": "enhance-ability-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1086, - "fields": { - "parent": "enhance-ability-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1087, - "fields": { - "parent": "enlargereduce-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1089, - "fields": { - "parent": "enlargereduce-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1090, - "fields": { - "parent": "enlargereduce-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1091, - "fields": { - "parent": "enlargereduce-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1092, - "fields": { - "parent": "enlargereduce-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1093, - "fields": { - "parent": "enlargereduce-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1094, - "fields": { - "parent": "enlargereduce-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1095, - "fields": { - "parent": "enlargereduce-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1096, - "fields": { - "parent": "enrage-architecture-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1097, - "fields": { - "parent": "entangle-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1098, - "fields": { - "parent": "enthrall-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1099, - "fields": { - "parent": "etherealness-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1101, - "fields": { - "parent": "etherealness-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1102, - "fields": { - "parent": "etherealness-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1103, - "fields": { - "parent": "expeditious-retreat-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1105, - "fields": { - "parent": "expeditious-retreat-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1106, - "fields": { - "parent": "expeditious-retreat-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1107, - "fields": { - "parent": "expeditious-retreat-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1108, - "fields": { - "parent": "expeditious-retreat-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1109, - "fields": { - "parent": "expeditious-retreat-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1110, - "fields": { - "parent": "expeditious-retreat-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1111, - "fields": { - "parent": "expeditious-retreat-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1112, - "fields": { - "parent": "expeditious-retreat-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1113, - "fields": { - "parent": "eyebite-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1114, - "fields": { - "parent": "fabricate-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1115, - "fields": { - "parent": "faerie-fire-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1116, - "fields": { - "parent": "faithful-hound-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1117, - "fields": { - "parent": "false-life-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1119, - "fields": { - "parent": "false-life-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1120, - "fields": { - "parent": "false-life-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1121, - "fields": { - "parent": "false-life-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1122, - "fields": { - "parent": "false-life-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1123, - "fields": { - "parent": "false-life-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1124, - "fields": { - "parent": "false-life-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1125, - "fields": { - "parent": "false-life-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1126, - "fields": { - "parent": "false-life-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1127, - "fields": { - "parent": "fear-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1128, - "fields": { - "parent": "feather-fall-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1130, - "fields": { - "parent": "feather-fall-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1131, - "fields": { - "parent": "feather-fall-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1132, - "fields": { - "parent": "feather-fall-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1133, - "fields": { - "parent": "feather-fall-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1134, - "fields": { - "parent": "feather-fall-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1135, - "fields": { - "parent": "feather-fall-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1136, - "fields": { - "parent": "feather-fall-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1137, - "fields": { - "parent": "feather-fall-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1138, - "fields": { - "parent": "feeblemind-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1139, - "fields": { - "parent": "find-familiar-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1140, - "fields": { - "parent": "find-familiar-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1141, - "fields": { - "parent": "find-steed-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1143, - "fields": { - "parent": "find-steed-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1144, - "fields": { - "parent": "find-steed-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1145, - "fields": { - "parent": "find-steed-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1146, - "fields": { - "parent": "find-steed-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1147, - "fields": { - "parent": "find-steed-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1148, - "fields": { - "parent": "find-steed-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1149, - "fields": { - "parent": "find-steed-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1150, - "fields": { - "parent": "find-the-path-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1151, - "fields": { - "parent": "find-traps-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1152, - "fields": { - "parent": "finger-of-death-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1154, - "fields": { - "parent": "finger-of-death-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1155, - "fields": { - "parent": "finger-of-death-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1156, - "fields": { - "parent": "fire-bolt-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1157, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1158, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1159, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1160, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1161, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_5", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1162, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_6", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1163, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_7", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1164, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_8", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1165, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_9", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1166, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_10", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1167, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_11", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1168, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_12", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1169, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_13", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1170, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_14", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1171, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_15", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1172, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_16", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1173, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_17", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1174, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_18", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1175, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_19", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1176, - "fields": { - "parent": "fire-bolt-a5e", - "type": "player_level_20", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1177, - "fields": { - "parent": "fire-shield-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1179, - "fields": { - "parent": "fire-shield-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1180, - "fields": { - "parent": "fire-shield-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1181, - "fields": { - "parent": "fire-shield-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1182, - "fields": { - "parent": "fire-shield-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1183, - "fields": { - "parent": "fire-shield-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1184, - "fields": { - "parent": "fire-storm-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1186, - "fields": { - "parent": "fire-storm-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1187, - "fields": { - "parent": "fire-storm-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1188, - "fields": { - "parent": "fireball-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1190, - "fields": { - "parent": "fireball-a5e", - "type": "slot_level_4", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1191, - "fields": { - "parent": "fireball-a5e", - "type": "slot_level_5", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1192, - "fields": { - "parent": "fireball-a5e", - "type": "slot_level_6", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1193, - "fields": { - "parent": "fireball-a5e", - "type": "slot_level_7", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1194, - "fields": { - "parent": "fireball-a5e", - "type": "slot_level_8", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1195, - "fields": { - "parent": "fireball-a5e", - "type": "slot_level_9", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1196, - "fields": { - "parent": "flame-blade-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1198, - "fields": { - "parent": "flame-blade-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1199, - "fields": { - "parent": "flame-blade-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1200, - "fields": { - "parent": "flame-blade-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1201, - "fields": { - "parent": "flame-blade-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1202, - "fields": { - "parent": "flame-blade-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1203, - "fields": { - "parent": "flame-blade-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1204, - "fields": { - "parent": "flame-blade-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1205, - "fields": { - "parent": "flame-strike-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1207, - "fields": { - "parent": "flame-strike-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1208, - "fields": { - "parent": "flame-strike-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1209, - "fields": { - "parent": "flame-strike-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1210, - "fields": { - "parent": "flame-strike-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1211, - "fields": { - "parent": "flaming-sphere-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1213, - "fields": { - "parent": "flaming-sphere-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1214, - "fields": { - "parent": "flaming-sphere-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1215, - "fields": { - "parent": "flaming-sphere-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1216, - "fields": { - "parent": "flaming-sphere-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1217, - "fields": { - "parent": "flaming-sphere-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1218, - "fields": { - "parent": "flaming-sphere-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1219, - "fields": { - "parent": "flaming-sphere-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1220, - "fields": { - "parent": "flesh-to-stone-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1222, - "fields": { - "parent": "flesh-to-stone-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1223, - "fields": { - "parent": "flesh-to-stone-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1224, - "fields": { - "parent": "flesh-to-stone-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1225, - "fields": { - "parent": "flex-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1227, - "fields": { - "parent": "flex-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1228, - "fields": { - "parent": "flex-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1229, - "fields": { - "parent": "flex-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1230, - "fields": { - "parent": "flex-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1231, - "fields": { - "parent": "flex-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1232, - "fields": { - "parent": "flex-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1233, - "fields": { - "parent": "flex-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1234, - "fields": { - "parent": "floating-disk-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1235, - "fields": { - "parent": "floating-disk-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1237, - "fields": { - "parent": "floating-disk-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1238, - "fields": { - "parent": "floating-disk-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1239, - "fields": { - "parent": "floating-disk-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1240, - "fields": { - "parent": "floating-disk-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1241, - "fields": { - "parent": "floating-disk-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1242, - "fields": { - "parent": "floating-disk-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1243, - "fields": { - "parent": "floating-disk-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1244, - "fields": { - "parent": "floating-disk-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1245, - "fields": { - "parent": "fly-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1247, - "fields": { - "parent": "fly-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1248, - "fields": { - "parent": "fly-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1249, - "fields": { - "parent": "fly-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1250, - "fields": { - "parent": "fly-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1251, - "fields": { - "parent": "fly-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1252, - "fields": { - "parent": "fly-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1253, - "fields": { - "parent": "fog-cloud-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1255, - "fields": { - "parent": "fog-cloud-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1256, - "fields": { - "parent": "fog-cloud-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1257, - "fields": { - "parent": "fog-cloud-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1258, - "fields": { - "parent": "fog-cloud-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1259, - "fields": { - "parent": "fog-cloud-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1260, - "fields": { - "parent": "fog-cloud-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1261, - "fields": { - "parent": "fog-cloud-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1262, - "fields": { - "parent": "fog-cloud-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1263, - "fields": { - "parent": "forbiddance-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1264, - "fields": { - "parent": "forbiddance-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1265, - "fields": { - "parent": "force-of-will-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1267, - "fields": { - "parent": "force-of-will-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1268, - "fields": { - "parent": "force-of-will-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1269, - "fields": { - "parent": "force-of-will-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1270, - "fields": { - "parent": "force-of-will-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1271, - "fields": { - "parent": "force-of-will-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1272, - "fields": { - "parent": "force-of-will-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1273, - "fields": { - "parent": "force-of-will-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1274, - "fields": { - "parent": "force-punch-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1276, - "fields": { - "parent": "force-punch-a5e", - "type": "slot_level_2", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1277, - "fields": { - "parent": "force-punch-a5e", - "type": "slot_level_3", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1278, - "fields": { - "parent": "force-punch-a5e", - "type": "slot_level_4", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1279, - "fields": { - "parent": "force-punch-a5e", - "type": "slot_level_5", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1280, - "fields": { - "parent": "force-punch-a5e", - "type": "slot_level_6", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1281, - "fields": { - "parent": "force-punch-a5e", - "type": "slot_level_7", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1282, - "fields": { - "parent": "force-punch-a5e", - "type": "slot_level_8", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1283, - "fields": { - "parent": "force-punch-a5e", - "type": "slot_level_9", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1284, - "fields": { - "parent": "forcecage-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1286, - "fields": { - "parent": "forcecage-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1287, - "fields": { - "parent": "forcecage-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1288, - "fields": { - "parent": "foresight-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1289, - "fields": { - "parent": "forest-army-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1290, - "fields": { - "parent": "freedom-of-movement-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1292, - "fields": { - "parent": "freedom-of-movement-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1293, - "fields": { - "parent": "freedom-of-movement-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1294, - "fields": { - "parent": "freedom-of-movement-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1295, - "fields": { - "parent": "freedom-of-movement-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1296, - "fields": { - "parent": "freedom-of-movement-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1297, - "fields": { - "parent": "freezing-sphere-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1299, - "fields": { - "parent": "freezing-sphere-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1300, - "fields": { - "parent": "freezing-sphere-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1301, - "fields": { - "parent": "freezing-sphere-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1302, - "fields": { - "parent": "friends-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1303, - "fields": { - "parent": "gaseous-form-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1305, - "fields": { - "parent": "gaseous-form-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1306, - "fields": { - "parent": "gaseous-form-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1307, - "fields": { - "parent": "gaseous-form-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1308, - "fields": { - "parent": "gaseous-form-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1309, - "fields": { - "parent": "gaseous-form-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1310, - "fields": { - "parent": "gaseous-form-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1311, - "fields": { - "parent": "gate-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1312, - "fields": { - "parent": "geas-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1314, - "fields": { - "parent": "geas-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1315, - "fields": { - "parent": "geas-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1316, - "fields": { - "parent": "geas-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1317, - "fields": { - "parent": "geas-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1318, - "fields": { - "parent": "gentle-repose-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1319, - "fields": { - "parent": "gentle-repose-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1321, - "fields": { - "parent": "gentle-repose-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1322, - "fields": { - "parent": "gentle-repose-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1323, - "fields": { - "parent": "gentle-repose-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1324, - "fields": { - "parent": "gentle-repose-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1325, - "fields": { - "parent": "gentle-repose-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1326, - "fields": { - "parent": "gentle-repose-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1327, - "fields": { - "parent": "gentle-repose-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1328, - "fields": { - "parent": "giant-insect-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1330, - "fields": { - "parent": "giant-insect-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1331, - "fields": { - "parent": "giant-insect-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1332, - "fields": { - "parent": "giant-insect-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1333, - "fields": { - "parent": "giant-insect-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1334, - "fields": { - "parent": "giant-insect-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1335, - "fields": { - "parent": "glibness-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1336, - "fields": { - "parent": "globe-of-invulnerability-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1338, - "fields": { - "parent": "globe-of-invulnerability-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1339, - "fields": { - "parent": "globe-of-invulnerability-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1340, - "fields": { - "parent": "globe-of-invulnerability-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1341, - "fields": { - "parent": "glyph-of-warding-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1343, - "fields": { - "parent": "glyph-of-warding-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1344, - "fields": { - "parent": "glyph-of-warding-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1345, - "fields": { - "parent": "glyph-of-warding-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1346, - "fields": { - "parent": "glyph-of-warding-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1347, - "fields": { - "parent": "glyph-of-warding-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1348, - "fields": { - "parent": "glyph-of-warding-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1349, - "fields": { - "parent": "goodberry-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1351, - "fields": { - "parent": "goodberry-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1352, - "fields": { - "parent": "goodberry-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1353, - "fields": { - "parent": "goodberry-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1354, - "fields": { - "parent": "goodberry-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1355, - "fields": { - "parent": "goodberry-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1356, - "fields": { - "parent": "goodberry-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1357, - "fields": { - "parent": "goodberry-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1358, - "fields": { - "parent": "goodberry-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1359, - "fields": { - "parent": "grapevine-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1360, - "fields": { - "parent": "grease-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1361, - "fields": { - "parent": "greater-invisibility-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1362, - "fields": { - "parent": "greater-restoration-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1363, - "fields": { - "parent": "guardian-of-faith-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1364, - "fields": { - "parent": "guards-and-wards-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1365, - "fields": { - "parent": "guidance-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1366, - "fields": { - "parent": "guiding-bolt-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1368, - "fields": { - "parent": "guiding-bolt-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1369, - "fields": { - "parent": "guiding-bolt-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1370, - "fields": { - "parent": "guiding-bolt-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1371, - "fields": { - "parent": "guiding-bolt-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1372, - "fields": { - "parent": "guiding-bolt-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1373, - "fields": { - "parent": "guiding-bolt-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1374, - "fields": { - "parent": "guiding-bolt-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1375, - "fields": { - "parent": "guiding-bolt-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1376, - "fields": { - "parent": "gust-of-wind-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1377, - "fields": { - "parent": "hallow-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1378, - "fields": { - "parent": "hallucinatory-terrain-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1380, - "fields": { - "parent": "hallucinatory-terrain-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1381, - "fields": { - "parent": "hallucinatory-terrain-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1382, - "fields": { - "parent": "hallucinatory-terrain-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1383, - "fields": { - "parent": "hallucinatory-terrain-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1384, - "fields": { - "parent": "hallucinatory-terrain-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1385, - "fields": { - "parent": "harm-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1387, - "fields": { - "parent": "harm-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1388, - "fields": { - "parent": "harm-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1389, - "fields": { - "parent": "harm-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1390, - "fields": { - "parent": "harmonic-resonance-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1391, - "fields": { - "parent": "haste-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1393, - "fields": { - "parent": "haste-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1394, - "fields": { - "parent": "haste-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1395, - "fields": { - "parent": "haste-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1396, - "fields": { - "parent": "haste-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1397, - "fields": { - "parent": "haste-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1398, - "fields": { - "parent": "haste-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1399, - "fields": { - "parent": "heal-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1401, - "fields": { - "parent": "heal-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1402, - "fields": { - "parent": "heal-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1403, - "fields": { - "parent": "heal-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1404, - "fields": { - "parent": "healing-word-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1406, - "fields": { - "parent": "healing-word-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1407, - "fields": { - "parent": "healing-word-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1408, - "fields": { - "parent": "healing-word-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1409, - "fields": { - "parent": "healing-word-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1410, - "fields": { - "parent": "healing-word-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1411, - "fields": { - "parent": "healing-word-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1412, - "fields": { - "parent": "healing-word-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1413, - "fields": { - "parent": "healing-word-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1414, - "fields": { - "parent": "heart-of-dis-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1415, - "fields": { - "parent": "heat-metal-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1417, - "fields": { - "parent": "heat-metal-a5e", - "type": "slot_level_3", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1418, - "fields": { - "parent": "heat-metal-a5e", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1419, - "fields": { - "parent": "heat-metal-a5e", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1420, - "fields": { - "parent": "heat-metal-a5e", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1421, - "fields": { - "parent": "heat-metal-a5e", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1422, - "fields": { - "parent": "heat-metal-a5e", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1423, - "fields": { - "parent": "heat-metal-a5e", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1424, - "fields": { - "parent": "heroes-feast-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1425, - "fields": { - "parent": "heroism-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1427, - "fields": { - "parent": "heroism-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1428, - "fields": { - "parent": "heroism-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1429, - "fields": { - "parent": "heroism-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1430, - "fields": { - "parent": "heroism-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1431, - "fields": { - "parent": "heroism-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1432, - "fields": { - "parent": "heroism-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1433, - "fields": { - "parent": "heroism-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1434, - "fields": { - "parent": "heroism-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1435, - "fields": { - "parent": "hideous-laughter-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1437, - "fields": { - "parent": "hideous-laughter-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1438, - "fields": { - "parent": "hideous-laughter-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1439, - "fields": { - "parent": "hideous-laughter-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1440, - "fields": { - "parent": "hideous-laughter-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1441, - "fields": { - "parent": "hideous-laughter-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1442, - "fields": { - "parent": "hideous-laughter-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1443, - "fields": { - "parent": "hideous-laughter-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1444, - "fields": { - "parent": "hideous-laughter-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1445, - "fields": { - "parent": "hold-monster-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1447, - "fields": { - "parent": "hold-monster-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1448, - "fields": { - "parent": "hold-monster-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1449, - "fields": { - "parent": "hold-monster-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1450, - "fields": { - "parent": "hold-monster-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1451, - "fields": { - "parent": "hold-person-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1453, - "fields": { - "parent": "hold-person-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1454, - "fields": { - "parent": "hold-person-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1455, - "fields": { - "parent": "hold-person-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1456, - "fields": { - "parent": "hold-person-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1457, - "fields": { - "parent": "hold-person-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1458, - "fields": { - "parent": "hold-person-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1459, - "fields": { - "parent": "hold-person-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1460, - "fields": { - "parent": "holy-aura-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1461, - "fields": { - "parent": "hypnotic-pattern-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1462, - "fields": { - "parent": "ice-storm-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1464, - "fields": { - "parent": "ice-storm-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1465, - "fields": { - "parent": "ice-storm-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1466, - "fields": { - "parent": "ice-storm-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1467, - "fields": { - "parent": "ice-storm-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1468, - "fields": { - "parent": "ice-storm-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1469, - "fields": { - "parent": "identify-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1470, - "fields": { - "parent": "identify-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1471, - "fields": { - "parent": "illusory-script-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1472, - "fields": { - "parent": "imprisonment-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1473, - "fields": { - "parent": "incendiary-cloud-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1474, - "fields": { - "parent": "inescapable-malady-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1476, - "fields": { - "parent": "inescapable-malady-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1477, - "fields": { - "parent": "inescapable-malady-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1478, - "fields": { - "parent": "infernal-weapon-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1479, - "fields": { - "parent": "inflict-wounds-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1481, - "fields": { - "parent": "inflict-wounds-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1482, - "fields": { - "parent": "inflict-wounds-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1483, - "fields": { - "parent": "inflict-wounds-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1484, - "fields": { - "parent": "inflict-wounds-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1485, - "fields": { - "parent": "inflict-wounds-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1486, - "fields": { - "parent": "inflict-wounds-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1487, - "fields": { - "parent": "inflict-wounds-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1488, - "fields": { - "parent": "inflict-wounds-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1489, - "fields": { - "parent": "insect-plague-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1491, - "fields": { - "parent": "insect-plague-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1492, - "fields": { - "parent": "insect-plague-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1493, - "fields": { - "parent": "insect-plague-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1494, - "fields": { - "parent": "insect-plague-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1495, - "fields": { - "parent": "instant-summons-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1496, - "fields": { - "parent": "instant-summons-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1497, - "fields": { - "parent": "invigorated-strikes-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1499, - "fields": { - "parent": "invigorated-strikes-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1500, - "fields": { - "parent": "invigorated-strikes-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1501, - "fields": { - "parent": "invigorated-strikes-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1502, - "fields": { - "parent": "invigorated-strikes-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1503, - "fields": { - "parent": "invigorated-strikes-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1504, - "fields": { - "parent": "invigorated-strikes-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1505, - "fields": { - "parent": "invigorated-strikes-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1506, - "fields": { - "parent": "invisibility-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1508, - "fields": { - "parent": "invisibility-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1509, - "fields": { - "parent": "invisibility-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1510, - "fields": { - "parent": "invisibility-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1511, - "fields": { - "parent": "invisibility-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1512, - "fields": { - "parent": "invisibility-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1513, - "fields": { - "parent": "invisibility-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1514, - "fields": { - "parent": "invisibility-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1515, - "fields": { - "parent": "irresistible-dance-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1517, - "fields": { - "parent": "irresistible-dance-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1518, - "fields": { - "parent": "irresistible-dance-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1519, - "fields": { - "parent": "irresistible-dance-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1520, - "fields": { - "parent": "jump-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1522, - "fields": { - "parent": "jump-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1523, - "fields": { - "parent": "jump-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1524, - "fields": { - "parent": "jump-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1525, - "fields": { - "parent": "jump-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1526, - "fields": { - "parent": "jump-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1527, - "fields": { - "parent": "jump-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1528, - "fields": { - "parent": "jump-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1529, - "fields": { - "parent": "jump-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1530, - "fields": { - "parent": "knock-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1532, - "fields": { - "parent": "knock-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1533, - "fields": { - "parent": "knock-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1534, - "fields": { - "parent": "knock-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1535, - "fields": { - "parent": "knock-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1536, - "fields": { - "parent": "knock-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1537, - "fields": { - "parent": "knock-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1538, - "fields": { - "parent": "knock-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1539, - "fields": { - "parent": "legend-lore-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1541, - "fields": { - "parent": "legend-lore-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1542, - "fields": { - "parent": "legend-lore-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1543, - "fields": { - "parent": "legend-lore-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1544, - "fields": { - "parent": "legend-lore-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1545, - "fields": { - "parent": "lemure-transformation-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1546, - "fields": { - "parent": "lesser-restoration-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1547, - "fields": { - "parent": "levitate-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1549, - "fields": { - "parent": "levitate-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1550, - "fields": { - "parent": "levitate-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1551, - "fields": { - "parent": "levitate-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1552, - "fields": { - "parent": "levitate-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1553, - "fields": { - "parent": "levitate-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1554, - "fields": { - "parent": "levitate-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1555, - "fields": { - "parent": "levitate-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1556, - "fields": { - "parent": "light-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1557, - "fields": { - "parent": "lightning-bolt-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1559, - "fields": { - "parent": "lightning-bolt-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1560, - "fields": { - "parent": "lightning-bolt-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1561, - "fields": { - "parent": "lightning-bolt-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1562, - "fields": { - "parent": "lightning-bolt-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1563, - "fields": { - "parent": "lightning-bolt-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1564, - "fields": { - "parent": "lightning-bolt-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1565, - "fields": { - "parent": "locate-animals-or-plants-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1566, - "fields": { - "parent": "locate-animals-or-plants-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1567, - "fields": { - "parent": "locate-creature-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1568, - "fields": { - "parent": "locate-object-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1569, - "fields": { - "parent": "longstrider-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1571, - "fields": { - "parent": "longstrider-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1572, - "fields": { - "parent": "longstrider-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1573, - "fields": { - "parent": "longstrider-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1574, - "fields": { - "parent": "longstrider-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1575, - "fields": { - "parent": "longstrider-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1576, - "fields": { - "parent": "longstrider-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1577, - "fields": { - "parent": "longstrider-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1578, - "fields": { - "parent": "longstrider-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1579, - "fields": { - "parent": "mage-armor-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1581, - "fields": { - "parent": "mage-armor-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1582, - "fields": { - "parent": "mage-armor-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1583, - "fields": { - "parent": "mage-armor-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1584, - "fields": { - "parent": "mage-armor-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1585, - "fields": { - "parent": "mage-armor-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1586, - "fields": { - "parent": "mage-armor-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1587, - "fields": { - "parent": "mage-armor-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1588, - "fields": { - "parent": "mage-armor-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1589, - "fields": { - "parent": "mage-hand-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1590, - "fields": { - "parent": "magic-circle-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1592, - "fields": { - "parent": "magic-circle-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1593, - "fields": { - "parent": "magic-circle-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1594, - "fields": { - "parent": "magic-circle-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1595, - "fields": { - "parent": "magic-circle-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1596, - "fields": { - "parent": "magic-circle-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1597, - "fields": { - "parent": "magic-circle-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1598, - "fields": { - "parent": "magic-jar-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1599, - "fields": { - "parent": "magic-missile-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1601, - "fields": { - "parent": "magic-missile-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1602, - "fields": { - "parent": "magic-missile-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1603, - "fields": { - "parent": "magic-missile-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1604, - "fields": { - "parent": "magic-missile-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1605, - "fields": { - "parent": "magic-missile-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1606, - "fields": { - "parent": "magic-missile-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1607, - "fields": { - "parent": "magic-missile-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1608, - "fields": { - "parent": "magic-missile-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 11, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1609, - "fields": { - "parent": "magic-mouth-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1610, - "fields": { - "parent": "magic-mouth-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1611, - "fields": { - "parent": "magic-weapon-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1613, - "fields": { - "parent": "magic-weapon-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1614, - "fields": { - "parent": "magic-weapon-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1615, - "fields": { - "parent": "magic-weapon-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1616, - "fields": { - "parent": "magic-weapon-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1617, - "fields": { - "parent": "magic-weapon-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1618, - "fields": { - "parent": "magic-weapon-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1619, - "fields": { - "parent": "magic-weapon-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1620, - "fields": { - "parent": "magnificent-mansion-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1621, - "fields": { - "parent": "major-image-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1623, - "fields": { - "parent": "major-image-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1624, - "fields": { - "parent": "major-image-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1625, - "fields": { - "parent": "major-image-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1626, - "fields": { - "parent": "major-image-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1627, - "fields": { - "parent": "major-image-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1628, - "fields": { - "parent": "major-image-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1629, - "fields": { - "parent": "mass-cure-wounds-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1631, - "fields": { - "parent": "mass-cure-wounds-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1632, - "fields": { - "parent": "mass-cure-wounds-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1633, - "fields": { - "parent": "mass-cure-wounds-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1634, - "fields": { - "parent": "mass-cure-wounds-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1635, - "fields": { - "parent": "mass-heal-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1636, - "fields": { - "parent": "mass-healing-word-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1638, - "fields": { - "parent": "mass-healing-word-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1639, - "fields": { - "parent": "mass-healing-word-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1640, - "fields": { - "parent": "mass-healing-word-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1641, - "fields": { - "parent": "mass-healing-word-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1642, - "fields": { - "parent": "mass-healing-word-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1643, - "fields": { - "parent": "mass-healing-word-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1644, - "fields": { - "parent": "mass-suggestion-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1646, - "fields": { - "parent": "mass-suggestion-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "10 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1647, - "fields": { - "parent": "mass-suggestion-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "30 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1648, - "fields": { - "parent": "mass-suggestion-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "A year and a day", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1649, - "fields": { - "parent": "maze-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1650, - "fields": { - "parent": "meld-into-stone-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1652, - "fields": { - "parent": "meld-into-stone-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1653, - "fields": { - "parent": "meld-into-stone-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1654, - "fields": { - "parent": "meld-into-stone-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1655, - "fields": { - "parent": "meld-into-stone-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1656, - "fields": { - "parent": "meld-into-stone-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1657, - "fields": { - "parent": "meld-into-stone-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1658, - "fields": { - "parent": "mending-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1659, - "fields": { - "parent": "mental-grip-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1660, - "fields": { - "parent": "message-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1661, - "fields": { - "parent": "meteor-swarm-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1662, - "fields": { - "parent": "mind-blank-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1663, - "fields": { - "parent": "mindshield-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1664, - "fields": { - "parent": "minor-illusion-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1665, - "fields": { - "parent": "mirage-arcane-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1666, - "fields": { - "parent": "mirror-image-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1668, - "fields": { - "parent": "mirror-image-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1669, - "fields": { - "parent": "mirror-image-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1670, - "fields": { - "parent": "mirror-image-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1671, - "fields": { - "parent": "mirror-image-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1672, - "fields": { - "parent": "mirror-image-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1673, - "fields": { - "parent": "mirror-image-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1674, - "fields": { - "parent": "mirror-image-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1675, - "fields": { - "parent": "mislead-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1676, - "fields": { - "parent": "misty-step-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1677, - "fields": { - "parent": "modify-memory-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1679, - "fields": { - "parent": "modify-memory-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1680, - "fields": { - "parent": "modify-memory-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1681, - "fields": { - "parent": "modify-memory-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1682, - "fields": { - "parent": "modify-memory-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1683, - "fields": { - "parent": "moonbeam-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1685, - "fields": { - "parent": "moonbeam-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1686, - "fields": { - "parent": "moonbeam-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1687, - "fields": { - "parent": "moonbeam-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1688, - "fields": { - "parent": "moonbeam-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1689, - "fields": { - "parent": "moonbeam-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1690, - "fields": { - "parent": "moonbeam-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1691, - "fields": { - "parent": "moonbeam-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1692, - "fields": { - "parent": "move-earth-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1693, - "fields": { - "parent": "nondetection-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1694, - "fields": { - "parent": "pass-without-trace-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1695, - "fields": { - "parent": "passwall-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1696, - "fields": { - "parent": "pestilence-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1697, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1698, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1699, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1700, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1701, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1702, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1703, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1704, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1705, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1706, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1707, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1708, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1709, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1710, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1711, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1712, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1713, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1714, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1715, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1716, - "fields": { - "parent": "pestilence-a5e", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1717, - "fields": { - "parent": "phantasmal-killer-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1719, - "fields": { - "parent": "phantasmal-killer-a5e", - "type": "slot_level_5", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1720, - "fields": { - "parent": "phantasmal-killer-a5e", - "type": "slot_level_6", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1721, - "fields": { - "parent": "phantasmal-killer-a5e", - "type": "slot_level_7", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1722, - "fields": { - "parent": "phantasmal-killer-a5e", - "type": "slot_level_8", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1723, - "fields": { - "parent": "phantasmal-killer-a5e", - "type": "slot_level_9", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1724, - "fields": { - "parent": "phantasmal-talons-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1725, - "fields": { - "parent": "phantom-steed-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1726, - "fields": { - "parent": "phantom-steed-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1727, - "fields": { - "parent": "planar-ally-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1728, - "fields": { - "parent": "planar-binding-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1730, - "fields": { - "parent": "planar-binding-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "10 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1731, - "fields": { - "parent": "planar-binding-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "30 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1732, - "fields": { - "parent": "planar-binding-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "180 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1733, - "fields": { - "parent": "planar-binding-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "A year and a day", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1734, - "fields": { - "parent": "plane-shift-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1735, - "fields": { - "parent": "plant-growth-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1736, - "fields": { - "parent": "poison-skin-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1738, - "fields": { - "parent": "poison-skin-a5e", - "type": "slot_level_4", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1739, - "fields": { - "parent": "poison-skin-a5e", - "type": "slot_level_5", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1740, - "fields": { - "parent": "poison-skin-a5e", - "type": "slot_level_6", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1741, - "fields": { - "parent": "poison-skin-a5e", - "type": "slot_level_7", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1742, - "fields": { - "parent": "poison-skin-a5e", - "type": "slot_level_8", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1743, - "fields": { - "parent": "poison-skin-a5e", - "type": "slot_level_9", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1744, - "fields": { - "parent": "polymorph-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1745, - "fields": { - "parent": "power-word-kill-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1746, - "fields": { - "parent": "power-word-stun-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1747, - "fields": { - "parent": "prayer-of-healing-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1749, - "fields": { - "parent": "prayer-of-healing-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1750, - "fields": { - "parent": "prayer-of-healing-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1751, - "fields": { - "parent": "prayer-of-healing-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1752, - "fields": { - "parent": "prayer-of-healing-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1753, - "fields": { - "parent": "prayer-of-healing-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1754, - "fields": { - "parent": "prayer-of-healing-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1755, - "fields": { - "parent": "prayer-of-healing-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1756, - "fields": { - "parent": "prestidigitation-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1757, - "fields": { - "parent": "prismatic-spray-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1758, - "fields": { - "parent": "prismatic-wall-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1759, - "fields": { - "parent": "private-sanctum-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1761, - "fields": { - "parent": "private-sanctum-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1762, - "fields": { - "parent": "private-sanctum-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1763, - "fields": { - "parent": "private-sanctum-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1764, - "fields": { - "parent": "private-sanctum-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1765, - "fields": { - "parent": "private-sanctum-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1766, - "fields": { - "parent": "produce-flame-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1767, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1768, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1769, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1770, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1771, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1772, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1773, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1774, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1775, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1776, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1777, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1778, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1779, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1780, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1781, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1782, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1783, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1784, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1785, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1786, - "fields": { - "parent": "produce-flame-a5e", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1787, - "fields": { - "parent": "programmed-illusion-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1788, - "fields": { - "parent": "project-image-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1789, - "fields": { - "parent": "protection-from-energy-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1791, - "fields": { - "parent": "protection-from-energy-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1792, - "fields": { - "parent": "protection-from-energy-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1793, - "fields": { - "parent": "protection-from-energy-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1794, - "fields": { - "parent": "protection-from-energy-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1795, - "fields": { - "parent": "protection-from-energy-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1796, - "fields": { - "parent": "protection-from-energy-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1797, - "fields": { - "parent": "protection-from-energy-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1798, - "fields": { - "parent": "protection-from-evil-and-good-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1799, - "fields": { - "parent": "protection-from-poison-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1800, - "fields": { - "parent": "purify-food-and-drink-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1801, - "fields": { - "parent": "purify-food-and-drink-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1803, - "fields": { - "parent": "purify-food-and-drink-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1804, - "fields": { - "parent": "purify-food-and-drink-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1805, - "fields": { - "parent": "purify-food-and-drink-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1806, - "fields": { - "parent": "purify-food-and-drink-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1807, - "fields": { - "parent": "purify-food-and-drink-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1808, - "fields": { - "parent": "purify-food-and-drink-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1809, - "fields": { - "parent": "purify-food-and-drink-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1810, - "fields": { - "parent": "purify-food-and-drink-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1811, - "fields": { - "parent": "rage-of-the-meek-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1813, - "fields": { - "parent": "rage-of-the-meek-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1814, - "fields": { - "parent": "rage-of-the-meek-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1815, - "fields": { - "parent": "rage-of-the-meek-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1816, - "fields": { - "parent": "rage-of-the-meek-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1817, - "fields": { - "parent": "rage-of-the-meek-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1818, - "fields": { - "parent": "raise-dead-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1819, - "fields": { - "parent": "raise-hell-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1820, - "fields": { - "parent": "ray-of-enfeeblement-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1821, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1822, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1823, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1824, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1825, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1826, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1827, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1828, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1829, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1830, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1831, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1832, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1833, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1834, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1835, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1836, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1837, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1838, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1839, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1840, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1841, - "fields": { - "parent": "ray-of-frost-a5e", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1842, - "fields": { - "parent": "regenerate-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1843, - "fields": { - "parent": "reincarnate-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1844, - "fields": { - "parent": "remove-curse-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1846, - "fields": { - "parent": "remove-curse-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1847, - "fields": { - "parent": "remove-curse-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1848, - "fields": { - "parent": "remove-curse-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1849, - "fields": { - "parent": "remove-curse-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1850, - "fields": { - "parent": "remove-curse-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1851, - "fields": { - "parent": "remove-curse-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1852, - "fields": { - "parent": "resilient-sphere-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1853, - "fields": { - "parent": "resistance-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1854, - "fields": { - "parent": "resurrection-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1855, - "fields": { - "parent": "reverse-gravity-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1856, - "fields": { - "parent": "revivify-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1857, - "fields": { - "parent": "rope-trick-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1858, - "fields": { - "parent": "sacred-flame-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1859, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1860, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1861, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1862, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1863, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1864, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1865, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1866, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1867, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1868, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1869, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1870, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1871, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1872, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1873, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1874, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1875, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1876, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1877, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1878, - "fields": { - "parent": "sacred-flame-a5e", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1879, - "fields": { - "parent": "sanctuary-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1880, - "fields": { - "parent": "scorching-ray-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1882, - "fields": { - "parent": "scorching-ray-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1883, - "fields": { - "parent": "scorching-ray-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1884, - "fields": { - "parent": "scorching-ray-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1885, - "fields": { - "parent": "scorching-ray-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1886, - "fields": { - "parent": "scorching-ray-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1887, - "fields": { - "parent": "scorching-ray-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1888, - "fields": { - "parent": "scorching-ray-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1889, - "fields": { - "parent": "scrying-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1890, - "fields": { - "parent": "searing-equation-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1892, - "fields": { - "parent": "searing-equation-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1893, - "fields": { - "parent": "searing-equation-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1894, - "fields": { - "parent": "searing-equation-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1895, - "fields": { - "parent": "searing-equation-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1896, - "fields": { - "parent": "searing-equation-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1897, - "fields": { - "parent": "searing-equation-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1898, - "fields": { - "parent": "searing-equation-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1899, - "fields": { - "parent": "searing-equation-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1900, - "fields": { - "parent": "secret-chest-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1901, - "fields": { - "parent": "see-invisibility-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1902, - "fields": { - "parent": "seed-bomb-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1904, - "fields": { - "parent": "seed-bomb-a5e", - "type": "slot_level_3", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1905, - "fields": { - "parent": "seed-bomb-a5e", - "type": "slot_level_4", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1906, - "fields": { - "parent": "seed-bomb-a5e", - "type": "slot_level_5", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1907, - "fields": { - "parent": "seed-bomb-a5e", - "type": "slot_level_6", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1908, - "fields": { - "parent": "seed-bomb-a5e", - "type": "slot_level_7", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1909, - "fields": { - "parent": "seed-bomb-a5e", - "type": "slot_level_8", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1910, - "fields": { - "parent": "seed-bomb-a5e", - "type": "slot_level_9", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1911, - "fields": { - "parent": "seeming-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1912, - "fields": { - "parent": "sending-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1913, - "fields": { - "parent": "sequester-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1914, - "fields": { - "parent": "shapechange-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1915, - "fields": { - "parent": "shatter-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1917, - "fields": { - "parent": "shatter-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1918, - "fields": { - "parent": "shatter-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1919, - "fields": { - "parent": "shatter-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1920, - "fields": { - "parent": "shatter-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1921, - "fields": { - "parent": "shatter-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1922, - "fields": { - "parent": "shatter-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1923, - "fields": { - "parent": "shatter-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1924, - "fields": { - "parent": "shattering-barrage-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1926, - "fields": { - "parent": "shattering-barrage-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1927, - "fields": { - "parent": "shattering-barrage-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1928, - "fields": { - "parent": "shattering-barrage-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1929, - "fields": { - "parent": "shattering-barrage-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1930, - "fields": { - "parent": "shattering-barrage-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1931, - "fields": { - "parent": "shattering-barrage-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1932, - "fields": { - "parent": "shattering-barrage-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1933, - "fields": { - "parent": "shield-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1934, - "fields": { - "parent": "shield-of-faith-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1936, - "fields": { - "parent": "shield-of-faith-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1937, - "fields": { - "parent": "shield-of-faith-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1938, - "fields": { - "parent": "shield-of-faith-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1939, - "fields": { - "parent": "shield-of-faith-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1940, - "fields": { - "parent": "shield-of-faith-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1941, - "fields": { - "parent": "shield-of-faith-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1942, - "fields": { - "parent": "shield-of-faith-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1943, - "fields": { - "parent": "shield-of-faith-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1944, - "fields": { - "parent": "shillelagh-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1945, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1946, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1947, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1948, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1949, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1950, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1951, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1952, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1953, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1954, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1955, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1956, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1957, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1958, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1959, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1960, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1961, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1962, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1963, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1964, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1965, - "fields": { - "parent": "shocking-grasp-a5e", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1966, - "fields": { - "parent": "silence-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1967, - "fields": { - "parent": "silence-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1968, - "fields": { - "parent": "silent-image-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1969, - "fields": { - "parent": "simulacrum-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1970, - "fields": { - "parent": "sleep-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1972, - "fields": { - "parent": "sleep-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1973, - "fields": { - "parent": "sleep-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1974, - "fields": { - "parent": "sleep-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1975, - "fields": { - "parent": "sleep-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1976, - "fields": { - "parent": "sleep-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1977, - "fields": { - "parent": "sleep-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1978, - "fields": { - "parent": "sleep-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1979, - "fields": { - "parent": "sleep-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1980, - "fields": { - "parent": "sleet-storm-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1981, - "fields": { - "parent": "slow-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1982, - "fields": { - "parent": "soulwrought-fists-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1983, - "fields": { - "parent": "spare-the-dying-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1984, - "fields": { - "parent": "speak-with-animals-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1985, - "fields": { - "parent": "speak-with-animals-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1986, - "fields": { - "parent": "speak-with-dead-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1987, - "fields": { - "parent": "speak-with-plants-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1988, - "fields": { - "parent": "spider-climb-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1990, - "fields": { - "parent": "spider-climb-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1991, - "fields": { - "parent": "spider-climb-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1992, - "fields": { - "parent": "spider-climb-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1993, - "fields": { - "parent": "spider-climb-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1994, - "fields": { - "parent": "spider-climb-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1995, - "fields": { - "parent": "spider-climb-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1996, - "fields": { - "parent": "spider-climb-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1997, - "fields": { - "parent": "spike-growth-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 1998, - "fields": { - "parent": "spirit-guardians-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2000, - "fields": { - "parent": "spirit-guardians-a5e", - "type": "slot_level_4", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2001, - "fields": { - "parent": "spirit-guardians-a5e", - "type": "slot_level_5", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2002, - "fields": { - "parent": "spirit-guardians-a5e", - "type": "slot_level_6", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2003, - "fields": { - "parent": "spirit-guardians-a5e", - "type": "slot_level_7", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2004, - "fields": { - "parent": "spirit-guardians-a5e", - "type": "slot_level_8", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2005, - "fields": { - "parent": "spirit-guardians-a5e", - "type": "slot_level_9", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2006, - "fields": { - "parent": "spiritual-weapon-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2008, - "fields": { - "parent": "spiritual-weapon-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2009, - "fields": { - "parent": "spiritual-weapon-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2010, - "fields": { - "parent": "spiritual-weapon-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2011, - "fields": { - "parent": "spiritual-weapon-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2012, - "fields": { - "parent": "spiritual-weapon-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2013, - "fields": { - "parent": "spiritual-weapon-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2014, - "fields": { - "parent": "spiritual-weapon-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2015, - "fields": { - "parent": "sporesight-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2016, - "fields": { - "parent": "stinking-cloud-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2018, - "fields": { - "parent": "stinking-cloud-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2019, - "fields": { - "parent": "stinking-cloud-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2020, - "fields": { - "parent": "stinking-cloud-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2021, - "fields": { - "parent": "stinking-cloud-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2022, - "fields": { - "parent": "stinking-cloud-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2023, - "fields": { - "parent": "stinking-cloud-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2024, - "fields": { - "parent": "stone-shape-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2026, - "fields": { - "parent": "stone-shape-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2027, - "fields": { - "parent": "stone-shape-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2028, - "fields": { - "parent": "stone-shape-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2029, - "fields": { - "parent": "stone-shape-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2030, - "fields": { - "parent": "stone-shape-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2031, - "fields": { - "parent": "stoneskin-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2033, - "fields": { - "parent": "stoneskin-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2034, - "fields": { - "parent": "stoneskin-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2035, - "fields": { - "parent": "stoneskin-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2036, - "fields": { - "parent": "stoneskin-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2037, - "fields": { - "parent": "stoneskin-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2038, - "fields": { - "parent": "storm-kick-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2040, - "fields": { - "parent": "storm-kick-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2041, - "fields": { - "parent": "storm-kick-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2042, - "fields": { - "parent": "storm-kick-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2043, - "fields": { - "parent": "storm-kick-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2044, - "fields": { - "parent": "storm-of-vengeance-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2045, - "fields": { - "parent": "suggestion-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2047, - "fields": { - "parent": "suggestion-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2048, - "fields": { - "parent": "suggestion-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2049, - "fields": { - "parent": "suggestion-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "7 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2050, - "fields": { - "parent": "suggestion-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "7 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2051, - "fields": { - "parent": "suggestion-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2052, - "fields": { - "parent": "suggestion-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2053, - "fields": { - "parent": "suggestion-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2054, - "fields": { - "parent": "sunbeam-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2056, - "fields": { - "parent": "sunbeam-a5e", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2057, - "fields": { - "parent": "sunbeam-a5e", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2058, - "fields": { - "parent": "sunbeam-a5e", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2059, - "fields": { - "parent": "sunburst-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2061, - "fields": { - "parent": "sunburst-a5e", - "type": "slot_level_9", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2062, - "fields": { - "parent": "symbol-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2063, - "fields": { - "parent": "tearful-sonnet-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2065, - "fields": { - "parent": "tearful-sonnet-a5e", - "type": "slot_level_5", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2066, - "fields": { - "parent": "tearful-sonnet-a5e", - "type": "slot_level_6", - "damage_roll": "6d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2067, - "fields": { - "parent": "tearful-sonnet-a5e", - "type": "slot_level_7", - "damage_roll": "8d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2068, - "fields": { - "parent": "tearful-sonnet-a5e", - "type": "slot_level_8", - "damage_roll": "10d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2069, - "fields": { - "parent": "tearful-sonnet-a5e", - "type": "slot_level_9", - "damage_roll": "12d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2070, - "fields": { - "parent": "telekinesis-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2072, - "fields": { - "parent": "telekinesis-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2073, - "fields": { - "parent": "telekinesis-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2074, - "fields": { - "parent": "telekinesis-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2075, - "fields": { - "parent": "telekinesis-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2076, - "fields": { - "parent": "telepathic-bond-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2077, - "fields": { - "parent": "telepathic-bond-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2079, - "fields": { - "parent": "telepathic-bond-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1d4+1 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2080, - "fields": { - "parent": "telepathic-bond-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "2d4+1 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2081, - "fields": { - "parent": "telepathic-bond-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "3d4+1 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2082, - "fields": { - "parent": "telepathic-bond-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "4d4+1 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2083, - "fields": { - "parent": "teleport-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2084, - "fields": { - "parent": "teleport-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2085, - "fields": { - "parent": "teleportation-circle-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2086, - "fields": { - "parent": "thaumaturgy-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2087, - "fields": { - "parent": "thunderwave-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2089, - "fields": { - "parent": "thunderwave-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2090, - "fields": { - "parent": "thunderwave-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2091, - "fields": { - "parent": "thunderwave-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2092, - "fields": { - "parent": "thunderwave-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2093, - "fields": { - "parent": "thunderwave-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2094, - "fields": { - "parent": "thunderwave-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2095, - "fields": { - "parent": "thunderwave-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2096, - "fields": { - "parent": "thunderwave-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2097, - "fields": { - "parent": "time-stop-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2098, - "fields": { - "parent": "tiny-hut-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2099, - "fields": { - "parent": "tiny-hut-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2100, - "fields": { - "parent": "tongues-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2101, - "fields": { - "parent": "transport-via-plants-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2102, - "fields": { - "parent": "travelers-ward-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2103, - "fields": { - "parent": "tree-stride-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2105, - "fields": { - "parent": "tree-stride-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2106, - "fields": { - "parent": "tree-stride-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2107, - "fields": { - "parent": "tree-stride-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2108, - "fields": { - "parent": "tree-stride-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2109, - "fields": { - "parent": "true-polymorph-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2110, - "fields": { - "parent": "true-resurrection-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2111, - "fields": { - "parent": "true-seeing-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2112, - "fields": { - "parent": "true-strike-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2113, - "fields": { - "parent": "unholy-star-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2114, - "fields": { - "parent": "unseen-servant-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2115, - "fields": { - "parent": "unseen-servant-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2117, - "fields": { - "parent": "unseen-servant-a5e", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2118, - "fields": { - "parent": "unseen-servant-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2119, - "fields": { - "parent": "unseen-servant-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2120, - "fields": { - "parent": "unseen-servant-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2121, - "fields": { - "parent": "unseen-servant-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2122, - "fields": { - "parent": "unseen-servant-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2123, - "fields": { - "parent": "unseen-servant-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2124, - "fields": { - "parent": "unseen-servant-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2125, - "fields": { - "parent": "vampiric-touch-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2127, - "fields": { - "parent": "vampiric-touch-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2128, - "fields": { - "parent": "vampiric-touch-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2129, - "fields": { - "parent": "vampiric-touch-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2130, - "fields": { - "parent": "vampiric-touch-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2131, - "fields": { - "parent": "vampiric-touch-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2132, - "fields": { - "parent": "vampiric-touch-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2133, - "fields": { - "parent": "venomous-succor-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2135, - "fields": { - "parent": "venomous-succor-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2136, - "fields": { - "parent": "venomous-succor-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2137, - "fields": { - "parent": "venomous-succor-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2138, - "fields": { - "parent": "venomous-succor-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2139, - "fields": { - "parent": "venomous-succor-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2140, - "fields": { - "parent": "venomous-succor-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2141, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2142, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_1", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2143, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_2", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2144, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_3", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2145, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_4", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2146, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_5", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2147, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_6", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2148, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_7", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2149, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_8", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2150, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_9", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2151, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_10", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2152, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_11", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2153, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_12", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2154, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_13", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2155, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_14", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2156, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_15", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2157, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_16", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2158, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_17", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2159, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_18", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2160, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_19", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2161, - "fields": { - "parent": "vicious-mockery-a5e", - "type": "player_level_20", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2162, - "fields": { - "parent": "wall-of-fire-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2164, - "fields": { - "parent": "wall-of-fire-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2165, - "fields": { - "parent": "wall-of-fire-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2166, - "fields": { - "parent": "wall-of-fire-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2167, - "fields": { - "parent": "wall-of-fire-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2168, - "fields": { - "parent": "wall-of-fire-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2169, - "fields": { - "parent": "wall-of-flesh-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2171, - "fields": { - "parent": "wall-of-flesh-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2172, - "fields": { - "parent": "wall-of-flesh-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2173, - "fields": { - "parent": "wall-of-flesh-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2174, - "fields": { - "parent": "wall-of-force-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2175, - "fields": { - "parent": "wall-of-ice-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2177, - "fields": { - "parent": "wall-of-ice-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2178, - "fields": { - "parent": "wall-of-ice-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2179, - "fields": { - "parent": "wall-of-ice-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2180, - "fields": { - "parent": "wall-of-stone-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2181, - "fields": { - "parent": "wall-of-thorns-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2183, - "fields": { - "parent": "wall-of-thorns-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2184, - "fields": { - "parent": "wall-of-thorns-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2185, - "fields": { - "parent": "wall-of-thorns-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2186, - "fields": { - "parent": "warding-bond-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2188, - "fields": { - "parent": "warding-bond-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2189, - "fields": { - "parent": "warding-bond-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2190, - "fields": { - "parent": "warding-bond-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2191, - "fields": { - "parent": "warding-bond-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2192, - "fields": { - "parent": "warding-bond-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2193, - "fields": { - "parent": "warding-bond-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2194, - "fields": { - "parent": "warding-bond-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2195, - "fields": { - "parent": "warriors-instincts-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2197, - "fields": { - "parent": "warriors-instincts-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2198, - "fields": { - "parent": "warriors-instincts-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2199, - "fields": { - "parent": "warriors-instincts-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2200, - "fields": { - "parent": "warriors-instincts-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2201, - "fields": { - "parent": "water-breathing-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2202, - "fields": { - "parent": "water-breathing-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2203, - "fields": { - "parent": "water-walk-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2205, - "fields": { - "parent": "water-walk-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2206, - "fields": { - "parent": "water-walk-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2207, - "fields": { - "parent": "water-walk-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2208, - "fields": { - "parent": "water-walk-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2209, - "fields": { - "parent": "water-walk-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2210, - "fields": { - "parent": "water-walk-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2211, - "fields": { - "parent": "web-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2213, - "fields": { - "parent": "web-a5e", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2214, - "fields": { - "parent": "web-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2215, - "fields": { - "parent": "web-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2216, - "fields": { - "parent": "web-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2217, - "fields": { - "parent": "web-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2218, - "fields": { - "parent": "web-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2219, - "fields": { - "parent": "web-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2220, - "fields": { - "parent": "weird-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2221, - "fields": { - "parent": "whirlwind-kick-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2223, - "fields": { - "parent": "whirlwind-kick-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2224, - "fields": { - "parent": "whirlwind-kick-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2225, - "fields": { - "parent": "whirlwind-kick-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2226, - "fields": { - "parent": "whirlwind-kick-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2227, - "fields": { - "parent": "whirlwind-kick-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2228, - "fields": { - "parent": "whirlwind-kick-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2229, - "fields": { - "parent": "wind-up-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2230, - "fields": { - "parent": "wind-walk-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2231, - "fields": { - "parent": "wind-wall-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2233, - "fields": { - "parent": "wind-wall-a5e", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2234, - "fields": { - "parent": "wind-wall-a5e", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2235, - "fields": { - "parent": "wind-wall-a5e", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2236, - "fields": { - "parent": "wind-wall-a5e", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2237, - "fields": { - "parent": "wind-wall-a5e", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2238, - "fields": { - "parent": "wind-wall-a5e", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2239, - "fields": { - "parent": "wish-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2240, - "fields": { - "parent": "word-of-recall-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2241, - "fields": { - "parent": "wormway-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2242, - "fields": { - "parent": "wormway-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2243, - "fields": { - "parent": "writhing-transformation-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2244, - "fields": { - "parent": "writhing-transformation-a5e", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2245, - "fields": { - "parent": "zone-of-truth-a5e", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -} -] + { + "model": "api_v2.spellcastingoption", + "pk": 403, + "fields": { + "parent": "a5e-ag_accelerando", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 405, + "fields": { + "parent": "a5e-ag_accelerando", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 406, + "fields": { + "parent": "a5e-ag_accelerando", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 407, + "fields": { + "parent": "a5e-ag_accelerando", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 408, + "fields": { + "parent": "a5e-ag_accelerando", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 409, + "fields": { + "parent": "a5e-ag_accelerando", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 410, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 412, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 413, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 414, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 415, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 416, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 417, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 418, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 419, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 420, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 421, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 422, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 423, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 424, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_5", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 425, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_6", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 426, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_7", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 427, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_8", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 428, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_9", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 429, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_10", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 430, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_11", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 431, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_12", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 432, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_13", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 433, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_14", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 434, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_15", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 435, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_16", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 436, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_17", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 437, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_18", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 438, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_19", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 439, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_20", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 440, + "fields": { + "parent": "a5e-ag_aid", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 442, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 443, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 444, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 445, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 446, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 447, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 448, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 449, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 451, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "60 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 452, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "90 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 453, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "120 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 454, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "150 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 455, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "180 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 456, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "210 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 457, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "240 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 458, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "270 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 459, + "fields": { + "parent": "a5e-ag_alarm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 460, + "fields": { + "parent": "a5e-ag_alarm", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 462, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": "600 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 463, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": "600 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 464, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": "600 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 465, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": "600 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 466, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": "600 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 467, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": "600 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 468, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": "600 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 469, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": "600 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 470, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 472, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 473, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 474, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 475, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 476, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 477, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 478, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 479, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 480, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 481, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 482, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 483, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 484, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 485, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 486, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 487, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 488, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 489, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 490, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 491, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 492, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 493, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 494, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 495, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 496, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 497, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 498, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 499, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 500, + "fields": { + "parent": "a5e-ag_angel-paradox", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 502, + "fields": { + "parent": "a5e-ag_angel-paradox", + "type": "slot_level_8", + "damage_roll": "45", + "target_count": null, + "duration": "1 year", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 503, + "fields": { + "parent": "a5e-ag_angel-paradox", + "type": "slot_level_9", + "damage_roll": "50", + "target_count": null, + "duration": "Until dispelled", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 504, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 506, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 507, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 508, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 509, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 510, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 511, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 512, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 513, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 514, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 515, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 517, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "3 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 518, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "5 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 519, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "7 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 520, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "9 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 521, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "11 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 522, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "13 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 523, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "15 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 524, + "fields": { + "parent": "a5e-ag_animal-shapes", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 525, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 527, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 528, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 529, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 530, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 531, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 532, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 533, + "fields": { + "parent": "a5e-ag_animate-objects", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 535, + "fields": { + "parent": "a5e-ag_animate-objects", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 536, + "fields": { + "parent": "a5e-ag_animate-objects", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 537, + "fields": { + "parent": "a5e-ag_animate-objects", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 538, + "fields": { + "parent": "a5e-ag_animate-objects", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 539, + "fields": { + "parent": "a5e-ag_antilife-shell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 540, + "fields": { + "parent": "a5e-ag_antimagic-field", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 541, + "fields": { + "parent": "a5e-ag_antipathysympathy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 542, + "fields": { + "parent": "a5e-ag_arcane-eye", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 543, + "fields": { + "parent": "a5e-ag_arcane-hand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 545, + "fields": { + "parent": "a5e-ag_arcane-hand", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 546, + "fields": { + "parent": "a5e-ag_arcane-hand", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 547, + "fields": { + "parent": "a5e-ag_arcane-hand", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 548, + "fields": { + "parent": "a5e-ag_arcane-hand", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 549, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 551, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 552, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 553, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 554, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 555, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 556, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 557, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 558, + "fields": { + "parent": "a5e-ag_arcane-muscles", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 559, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 561, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 562, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 563, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 564, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 565, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 566, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 567, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 568, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 569, + "fields": { + "parent": "a5e-ag_arcane-sword", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 570, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 572, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 573, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 574, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 575, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 576, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 577, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 578, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 579, + "fields": { + "parent": "a5e-ag_aspect-of-the-moon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 580, + "fields": { + "parent": "a5e-ag_astral-projection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 581, + "fields": { + "parent": "a5e-ag_augury", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 582, + "fields": { + "parent": "a5e-ag_awaken", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 584, + "fields": { + "parent": "a5e-ag_awaken", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 585, + "fields": { + "parent": "a5e-ag_awaken", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 586, + "fields": { + "parent": "a5e-ag_awaken", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 587, + "fields": { + "parent": "a5e-ag_awaken", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 588, + "fields": { + "parent": "a5e-ag_bane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 590, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 591, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 592, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 593, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 594, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 595, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 596, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 597, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 598, + "fields": { + "parent": "a5e-ag_banishment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 600, + "fields": { + "parent": "a5e-ag_banishment", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "1d4+3 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 601, + "fields": { + "parent": "a5e-ag_banishment", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1d4+4 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 602, + "fields": { + "parent": "a5e-ag_banishment", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1d4+5 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 603, + "fields": { + "parent": "a5e-ag_banishment", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1d4+6 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 604, + "fields": { + "parent": "a5e-ag_banishment", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1d4+7 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 605, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 607, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 608, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 609, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 610, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 611, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 612, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 613, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 614, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 616, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 617, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 618, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 619, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 620, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 621, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 622, + "fields": { + "parent": "a5e-ag_beacon-of-hope", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 623, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 625, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 626, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 627, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 628, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 629, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 630, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 631, + "fields": { + "parent": "a5e-ag_black-tentacles", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 633, + "fields": { + "parent": "a5e-ag_black-tentacles", + "type": "slot_level_5", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 634, + "fields": { + "parent": "a5e-ag_black-tentacles", + "type": "slot_level_6", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 635, + "fields": { + "parent": "a5e-ag_black-tentacles", + "type": "slot_level_7", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 636, + "fields": { + "parent": "a5e-ag_black-tentacles", + "type": "slot_level_8", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 637, + "fields": { + "parent": "a5e-ag_black-tentacles", + "type": "slot_level_9", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 638, + "fields": { + "parent": "a5e-ag_blade-barrier", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 640, + "fields": { + "parent": "a5e-ag_blade-barrier", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 641, + "fields": { + "parent": "a5e-ag_blade-barrier", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 642, + "fields": { + "parent": "a5e-ag_blade-barrier", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 643, + "fields": { + "parent": "a5e-ag_bless", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 645, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 646, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 647, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 648, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 649, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 650, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 651, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 652, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 11, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 653, + "fields": { + "parent": "a5e-ag_blight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 655, + "fields": { + "parent": "a5e-ag_blight", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 656, + "fields": { + "parent": "a5e-ag_blight", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 657, + "fields": { + "parent": "a5e-ag_blight", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 658, + "fields": { + "parent": "a5e-ag_blight", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 659, + "fields": { + "parent": "a5e-ag_blight", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 660, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 662, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 663, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 664, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 665, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 666, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 667, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 668, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 669, + "fields": { + "parent": "a5e-ag_blink", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 670, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 671, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 673, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "26 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 674, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "39 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 675, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "52 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 676, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "65 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 677, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "78 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 678, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "91 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 679, + "fields": { + "parent": "a5e-ag_blur", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 681, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 682, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 683, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 684, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 685, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 686, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 687, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 688, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 690, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_2", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 691, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_3", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 692, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_4", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 693, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_5", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 694, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_6", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 695, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_7", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 696, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_8", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 697, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_9", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 698, + "fields": { + "parent": "a5e-ag_calculate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 699, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 701, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 702, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 703, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 704, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 705, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 706, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 707, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 708, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 709, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 711, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 712, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 713, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 714, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 715, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 716, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 717, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 719, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 720, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 721, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 722, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 723, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 724, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 725, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 726, + "fields": { + "parent": "a5e-ag_ceremony", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 727, + "fields": { + "parent": "a5e-ag_ceremony", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 728, + "fields": { + "parent": "a5e-ag_chain-lightning", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 730, + "fields": { + "parent": "a5e-ag_chain-lightning", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 731, + "fields": { + "parent": "a5e-ag_chain-lightning", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 732, + "fields": { + "parent": "a5e-ag_chain-lightning", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 733, + "fields": { + "parent": "a5e-ag_charm-monster", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 735, + "fields": { + "parent": "a5e-ag_charm-monster", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 736, + "fields": { + "parent": "a5e-ag_charm-monster", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 737, + "fields": { + "parent": "a5e-ag_charm-monster", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 738, + "fields": { + "parent": "a5e-ag_charm-monster", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 739, + "fields": { + "parent": "a5e-ag_charm-monster", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 740, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 742, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 743, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 744, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 745, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 746, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 747, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 748, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 749, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 750, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 751, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_1", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 752, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_2", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 753, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_3", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 754, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_4", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 755, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 756, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 757, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 758, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 759, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 760, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 761, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 762, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 763, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 764, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 765, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 766, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 767, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 768, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 769, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 770, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 771, + "fields": { + "parent": "a5e-ag_circle-of-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 773, + "fields": { + "parent": "a5e-ag_circle-of-death", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 774, + "fields": { + "parent": "a5e-ag_circle-of-death", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 775, + "fields": { + "parent": "a5e-ag_circle-of-death", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 776, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 777, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 778, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 779, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 780, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 781, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 782, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 783, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 784, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 785, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 786, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 787, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 788, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 789, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 790, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 791, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 792, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 793, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 794, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 795, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 796, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 797, + "fields": { + "parent": "a5e-ag_clairvoyance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 798, + "fields": { + "parent": "a5e-ag_clone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 799, + "fields": { + "parent": "a5e-ag_cloudkill", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 801, + "fields": { + "parent": "a5e-ag_cloudkill", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 802, + "fields": { + "parent": "a5e-ag_cloudkill", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 803, + "fields": { + "parent": "a5e-ag_cloudkill", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 804, + "fields": { + "parent": "a5e-ag_cloudkill", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 805, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 807, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 808, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 809, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 810, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 811, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 812, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 813, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 815, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 816, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 817, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 818, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 819, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 820, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 821, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 822, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 823, + "fields": { + "parent": "a5e-ag_command", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 825, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 826, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 827, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 828, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 829, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 830, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 831, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 832, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 833, + "fields": { + "parent": "a5e-ag_commune", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 834, + "fields": { + "parent": "a5e-ag_commune", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 835, + "fields": { + "parent": "a5e-ag_commune-with-nature", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 836, + "fields": { + "parent": "a5e-ag_commune-with-nature", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 837, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 838, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 840, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 841, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 842, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 843, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 844, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 845, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 846, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 847, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 848, + "fields": { + "parent": "a5e-ag_cone-of-cold", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 850, + "fields": { + "parent": "a5e-ag_cone-of-cold", + "type": "slot_level_6", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 851, + "fields": { + "parent": "a5e-ag_cone-of-cold", + "type": "slot_level_7", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 852, + "fields": { + "parent": "a5e-ag_cone-of-cold", + "type": "slot_level_8", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 853, + "fields": { + "parent": "a5e-ag_cone-of-cold", + "type": "slot_level_9", + "damage_roll": "12d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 854, + "fields": { + "parent": "a5e-ag_confusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 856, + "fields": { + "parent": "a5e-ag_confusion", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 857, + "fields": { + "parent": "a5e-ag_confusion", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 858, + "fields": { + "parent": "a5e-ag_confusion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 859, + "fields": { + "parent": "a5e-ag_confusion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 860, + "fields": { + "parent": "a5e-ag_confusion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 861, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 863, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 864, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 865, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 866, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 867, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 868, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 869, + "fields": { + "parent": "a5e-ag_conjure-celestial", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 871, + "fields": { + "parent": "a5e-ag_conjure-celestial", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 872, + "fields": { + "parent": "a5e-ag_conjure-celestial", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 873, + "fields": { + "parent": "a5e-ag_conjure-elemental", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 875, + "fields": { + "parent": "a5e-ag_conjure-elemental", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 876, + "fields": { + "parent": "a5e-ag_conjure-elemental", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 877, + "fields": { + "parent": "a5e-ag_conjure-elemental", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 878, + "fields": { + "parent": "a5e-ag_conjure-elemental", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 879, + "fields": { + "parent": "a5e-ag_conjure-fey", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 881, + "fields": { + "parent": "a5e-ag_conjure-fey", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 882, + "fields": { + "parent": "a5e-ag_conjure-fey", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 883, + "fields": { + "parent": "a5e-ag_conjure-fey", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 884, + "fields": { + "parent": "a5e-ag_conjure-minor-elementals", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 886, + "fields": { + "parent": "a5e-ag_conjure-minor-elementals", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 887, + "fields": { + "parent": "a5e-ag_conjure-minor-elementals", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 888, + "fields": { + "parent": "a5e-ag_conjure-minor-elementals", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 889, + "fields": { + "parent": "a5e-ag_conjure-minor-elementals", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 890, + "fields": { + "parent": "a5e-ag_conjure-minor-elementals", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 891, + "fields": { + "parent": "a5e-ag_conjure-woodland-beings", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 893, + "fields": { + "parent": "a5e-ag_conjure-woodland-beings", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 894, + "fields": { + "parent": "a5e-ag_conjure-woodland-beings", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 895, + "fields": { + "parent": "a5e-ag_conjure-woodland-beings", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 896, + "fields": { + "parent": "a5e-ag_conjure-woodland-beings", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 897, + "fields": { + "parent": "a5e-ag_conjure-woodland-beings", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 898, + "fields": { + "parent": "a5e-ag_contact-other-plane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 899, + "fields": { + "parent": "a5e-ag_contact-other-plane", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 900, + "fields": { + "parent": "a5e-ag_contagion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 901, + "fields": { + "parent": "a5e-ag_contingency", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 902, + "fields": { + "parent": "a5e-ag_continual-flame", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 903, + "fields": { + "parent": "a5e-ag_control-water", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 904, + "fields": { + "parent": "a5e-ag_control-weather", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 905, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 907, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 908, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 909, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 910, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 911, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 912, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 913, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 914, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 915, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 917, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 918, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 919, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 920, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 921, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 922, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 923, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 925, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 926, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 927, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 928, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 929, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 930, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 931, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 933, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 934, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 935, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 936, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 937, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 938, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 939, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 940, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 941, + "fields": { + "parent": "a5e-ag_create-undead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 943, + "fields": { + "parent": "a5e-ag_create-undead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 944, + "fields": { + "parent": "a5e-ag_create-undead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 945, + "fields": { + "parent": "a5e-ag_create-undead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 946, + "fields": { + "parent": "a5e-ag_creation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 948, + "fields": { + "parent": "a5e-ag_creation", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 949, + "fields": { + "parent": "a5e-ag_creation", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 950, + "fields": { + "parent": "a5e-ag_creation", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 951, + "fields": { + "parent": "a5e-ag_creation", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 952, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 954, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 955, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 956, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 957, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 958, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 959, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 960, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 962, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 963, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 964, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 965, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 966, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 967, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 968, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 969, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 970, + "fields": { + "parent": "a5e-ag_dancing-lights", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 971, + "fields": { + "parent": "a5e-ag_darklight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 972, + "fields": { + "parent": "a5e-ag_darkness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 973, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 975, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 976, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 977, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 978, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 979, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 980, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 981, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 982, + "fields": { + "parent": "a5e-ag_daylight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 983, + "fields": { + "parent": "a5e-ag_deadweight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 984, + "fields": { + "parent": "a5e-ag_death-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 985, + "fields": { + "parent": "a5e-ag_delayed-blast-fireball", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 987, + "fields": { + "parent": "a5e-ag_delayed-blast-fireball", + "type": "slot_level_8", + "damage_roll": "13d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 988, + "fields": { + "parent": "a5e-ag_delayed-blast-fireball", + "type": "slot_level_9", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 989, + "fields": { + "parent": "a5e-ag_demiplane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 990, + "fields": { + "parent": "a5e-ag_detect-evil-and-good", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 991, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 992, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 994, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 995, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 996, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 997, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 998, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 999, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1000, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1001, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1002, + "fields": { + "parent": "a5e-ag_detect-poison-and-disease", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1003, + "fields": { + "parent": "a5e-ag_detect-poison-and-disease", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1004, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1006, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1007, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1008, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "1 mile" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1009, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "1 mile" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1010, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "10 miles" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1011, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "10 miles" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1012, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "1000 miles" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1013, + "fields": { + "parent": "a5e-ag_dimension-door", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1014, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1016, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1017, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1018, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1019, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1020, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1021, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1022, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1023, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1024, + "fields": { + "parent": "a5e-ag_disintegrate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1026, + "fields": { + "parent": "a5e-ag_disintegrate", + "type": "slot_level_7", + "damage_roll": "13d6+40", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1027, + "fields": { + "parent": "a5e-ag_disintegrate", + "type": "slot_level_8", + "damage_roll": "16d6+40", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1028, + "fields": { + "parent": "a5e-ag_disintegrate", + "type": "slot_level_9", + "damage_roll": "19d6+40", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1029, + "fields": { + "parent": "a5e-ag_dispel-evil-and-good", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1031, + "fields": { + "parent": "a5e-ag_dispel-evil-and-good", + "type": "slot_level_6", + "damage_roll": "8d8", + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1032, + "fields": { + "parent": "a5e-ag_dispel-evil-and-good", + "type": "slot_level_7", + "damage_roll": "9d8", + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1033, + "fields": { + "parent": "a5e-ag_dispel-evil-and-good", + "type": "slot_level_8", + "damage_roll": "10d8", + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1034, + "fields": { + "parent": "a5e-ag_dispel-evil-and-good", + "type": "slot_level_9", + "damage_roll": "11d8", + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1035, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1037, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1038, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1039, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1040, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1041, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1042, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1043, + "fields": { + "parent": "a5e-ag_divination", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1044, + "fields": { + "parent": "a5e-ag_divination", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1045, + "fields": { + "parent": "a5e-ag_divine-favor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1046, + "fields": { + "parent": "a5e-ag_divine-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1047, + "fields": { + "parent": "a5e-ag_dominate-beast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1049, + "fields": { + "parent": "a5e-ag_dominate-beast", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1050, + "fields": { + "parent": "a5e-ag_dominate-beast", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1051, + "fields": { + "parent": "a5e-ag_dominate-beast", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1052, + "fields": { + "parent": "a5e-ag_dominate-beast", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1053, + "fields": { + "parent": "a5e-ag_dominate-beast", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1054, + "fields": { + "parent": "a5e-ag_dominate-monster", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1056, + "fields": { + "parent": "a5e-ag_dominate-monster", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1057, + "fields": { + "parent": "a5e-ag_dominate-person", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1059, + "fields": { + "parent": "a5e-ag_dominate-person", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1060, + "fields": { + "parent": "a5e-ag_dominate-person", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1061, + "fields": { + "parent": "a5e-ag_dominate-person", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1062, + "fields": { + "parent": "a5e-ag_dominate-person", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1063, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1065, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_2", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1066, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_3", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1067, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_4", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1068, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_5", + "damage_roll": "5d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1069, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_6", + "damage_roll": "6d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1070, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_7", + "damage_roll": "7d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1071, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_8", + "damage_roll": "8d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1072, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_9", + "damage_roll": "9d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1073, + "fields": { + "parent": "a5e-ag_dream", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1074, + "fields": { + "parent": "a5e-ag_druidcraft", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1075, + "fields": { + "parent": "a5e-ag_earth-barrier", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1076, + "fields": { + "parent": "a5e-ag_earthquake", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1077, + "fields": { + "parent": "a5e-ag_eldritch-cube", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1078, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1080, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1081, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1082, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1083, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1084, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1085, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1086, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1087, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1089, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1090, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1091, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1092, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1093, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1094, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1095, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1096, + "fields": { + "parent": "a5e-ag_enrage-architecture", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1097, + "fields": { + "parent": "a5e-ag_entangle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1098, + "fields": { + "parent": "a5e-ag_enthrall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1099, + "fields": { + "parent": "a5e-ag_etherealness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1101, + "fields": { + "parent": "a5e-ag_etherealness", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1102, + "fields": { + "parent": "a5e-ag_etherealness", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1103, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1105, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1106, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1107, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1108, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1109, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1110, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1111, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1112, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1113, + "fields": { + "parent": "a5e-ag_eyebite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1114, + "fields": { + "parent": "a5e-ag_fabricate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1115, + "fields": { + "parent": "a5e-ag_faerie-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1116, + "fields": { + "parent": "a5e-ag_faithful-hound", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1117, + "fields": { + "parent": "a5e-ag_false-life", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1119, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1120, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1121, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1122, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1123, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1124, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1125, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1126, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1127, + "fields": { + "parent": "a5e-ag_fear", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1128, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1130, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1131, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1132, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1133, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1134, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1135, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1136, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1137, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1138, + "fields": { + "parent": "a5e-ag_feeblemind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1139, + "fields": { + "parent": "a5e-ag_find-familiar", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1140, + "fields": { + "parent": "a5e-ag_find-familiar", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1141, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1143, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1144, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1145, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1146, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1147, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1148, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1149, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1150, + "fields": { + "parent": "a5e-ag_find-the-path", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1151, + "fields": { + "parent": "a5e-ag_find-traps", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1152, + "fields": { + "parent": "a5e-ag_finger-of-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1154, + "fields": { + "parent": "a5e-ag_finger-of-death", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1155, + "fields": { + "parent": "a5e-ag_finger-of-death", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1156, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1157, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1158, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1159, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1160, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1161, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_5", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1162, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_6", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1163, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_7", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1164, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_8", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1165, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_9", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1166, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_10", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1167, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_11", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1168, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_12", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1169, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_13", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1170, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_14", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1171, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_15", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1172, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_16", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1173, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_17", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1174, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_18", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1175, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_19", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1176, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_20", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1177, + "fields": { + "parent": "a5e-ag_fire-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1179, + "fields": { + "parent": "a5e-ag_fire-shield", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1180, + "fields": { + "parent": "a5e-ag_fire-shield", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1181, + "fields": { + "parent": "a5e-ag_fire-shield", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1182, + "fields": { + "parent": "a5e-ag_fire-shield", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1183, + "fields": { + "parent": "a5e-ag_fire-shield", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1184, + "fields": { + "parent": "a5e-ag_fire-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1186, + "fields": { + "parent": "a5e-ag_fire-storm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1187, + "fields": { + "parent": "a5e-ag_fire-storm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1188, + "fields": { + "parent": "a5e-ag_fireball", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1190, + "fields": { + "parent": "a5e-ag_fireball", + "type": "slot_level_4", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1191, + "fields": { + "parent": "a5e-ag_fireball", + "type": "slot_level_5", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1192, + "fields": { + "parent": "a5e-ag_fireball", + "type": "slot_level_6", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1193, + "fields": { + "parent": "a5e-ag_fireball", + "type": "slot_level_7", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1194, + "fields": { + "parent": "a5e-ag_fireball", + "type": "slot_level_8", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1195, + "fields": { + "parent": "a5e-ag_fireball", + "type": "slot_level_9", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1196, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1198, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1199, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1200, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1201, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1202, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1203, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1204, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1205, + "fields": { + "parent": "a5e-ag_flame-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1207, + "fields": { + "parent": "a5e-ag_flame-strike", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1208, + "fields": { + "parent": "a5e-ag_flame-strike", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1209, + "fields": { + "parent": "a5e-ag_flame-strike", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1210, + "fields": { + "parent": "a5e-ag_flame-strike", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1211, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1213, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1214, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1215, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1216, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1217, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1218, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1219, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1220, + "fields": { + "parent": "a5e-ag_flesh-to-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1222, + "fields": { + "parent": "a5e-ag_flesh-to-stone", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1223, + "fields": { + "parent": "a5e-ag_flesh-to-stone", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1224, + "fields": { + "parent": "a5e-ag_flesh-to-stone", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1225, + "fields": { + "parent": "a5e-ag_flex", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1227, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1228, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1229, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1230, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1231, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1232, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1233, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1234, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1235, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1237, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1238, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1239, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1240, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1241, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1242, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1243, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1244, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1245, + "fields": { + "parent": "a5e-ag_fly", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1247, + "fields": { + "parent": "a5e-ag_fly", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1248, + "fields": { + "parent": "a5e-ag_fly", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1249, + "fields": { + "parent": "a5e-ag_fly", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1250, + "fields": { + "parent": "a5e-ag_fly", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1251, + "fields": { + "parent": "a5e-ag_fly", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1252, + "fields": { + "parent": "a5e-ag_fly", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1253, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1255, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1256, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1257, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1258, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1259, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1260, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1261, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1262, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1263, + "fields": { + "parent": "a5e-ag_forbiddance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1264, + "fields": { + "parent": "a5e-ag_forbiddance", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1265, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1267, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1268, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1269, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1270, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1271, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1272, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1273, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1274, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1276, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_2", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1277, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_3", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1278, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_4", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1279, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_5", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1280, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_6", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1281, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_7", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1282, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_8", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1283, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_9", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1284, + "fields": { + "parent": "a5e-ag_forcecage", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1286, + "fields": { + "parent": "a5e-ag_forcecage", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1287, + "fields": { + "parent": "a5e-ag_forcecage", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1288, + "fields": { + "parent": "a5e-ag_foresight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1289, + "fields": { + "parent": "a5e-ag_forest-army", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1290, + "fields": { + "parent": "a5e-ag_freedom-of-movement", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1292, + "fields": { + "parent": "a5e-ag_freedom-of-movement", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1293, + "fields": { + "parent": "a5e-ag_freedom-of-movement", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1294, + "fields": { + "parent": "a5e-ag_freedom-of-movement", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1295, + "fields": { + "parent": "a5e-ag_freedom-of-movement", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1296, + "fields": { + "parent": "a5e-ag_freedom-of-movement", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1297, + "fields": { + "parent": "a5e-ag_freezing-sphere", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1299, + "fields": { + "parent": "a5e-ag_freezing-sphere", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1300, + "fields": { + "parent": "a5e-ag_freezing-sphere", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1301, + "fields": { + "parent": "a5e-ag_freezing-sphere", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1302, + "fields": { + "parent": "a5e-ag_friends", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1303, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1305, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1306, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1307, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1308, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1309, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1310, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1311, + "fields": { + "parent": "a5e-ag_gate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1312, + "fields": { + "parent": "a5e-ag_geas", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1314, + "fields": { + "parent": "a5e-ag_geas", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1315, + "fields": { + "parent": "a5e-ag_geas", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1316, + "fields": { + "parent": "a5e-ag_geas", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1317, + "fields": { + "parent": "a5e-ag_geas", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1318, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1319, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1321, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1322, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1323, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1324, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1325, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1326, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1327, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1328, + "fields": { + "parent": "a5e-ag_giant-insect", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1330, + "fields": { + "parent": "a5e-ag_giant-insect", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1331, + "fields": { + "parent": "a5e-ag_giant-insect", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1332, + "fields": { + "parent": "a5e-ag_giant-insect", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1333, + "fields": { + "parent": "a5e-ag_giant-insect", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1334, + "fields": { + "parent": "a5e-ag_giant-insect", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1335, + "fields": { + "parent": "a5e-ag_glibness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1336, + "fields": { + "parent": "a5e-ag_globe-of-invulnerability", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1338, + "fields": { + "parent": "a5e-ag_globe-of-invulnerability", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1339, + "fields": { + "parent": "a5e-ag_globe-of-invulnerability", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1340, + "fields": { + "parent": "a5e-ag_globe-of-invulnerability", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1341, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1343, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1344, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1345, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1346, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1347, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1348, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1349, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1351, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1352, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1353, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1354, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1355, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1356, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1357, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1358, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1359, + "fields": { + "parent": "a5e-ag_grapevine", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1360, + "fields": { + "parent": "a5e-ag_grease", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1361, + "fields": { + "parent": "a5e-ag_greater-invisibility", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1362, + "fields": { + "parent": "a5e-ag_greater-restoration", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1363, + "fields": { + "parent": "a5e-ag_guardian-of-faith", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1364, + "fields": { + "parent": "a5e-ag_guards-and-wards", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1365, + "fields": { + "parent": "a5e-ag_guidance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1366, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1368, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1369, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1370, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1371, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1372, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1373, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1374, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1375, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1376, + "fields": { + "parent": "a5e-ag_gust-of-wind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1377, + "fields": { + "parent": "a5e-ag_hallow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1378, + "fields": { + "parent": "a5e-ag_hallucinatory-terrain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1380, + "fields": { + "parent": "a5e-ag_hallucinatory-terrain", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1381, + "fields": { + "parent": "a5e-ag_hallucinatory-terrain", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1382, + "fields": { + "parent": "a5e-ag_hallucinatory-terrain", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1383, + "fields": { + "parent": "a5e-ag_hallucinatory-terrain", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1384, + "fields": { + "parent": "a5e-ag_hallucinatory-terrain", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1385, + "fields": { + "parent": "a5e-ag_harm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1387, + "fields": { + "parent": "a5e-ag_harm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1388, + "fields": { + "parent": "a5e-ag_harm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1389, + "fields": { + "parent": "a5e-ag_harm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1390, + "fields": { + "parent": "a5e-ag_harmonic-resonance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1391, + "fields": { + "parent": "a5e-ag_haste", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1393, + "fields": { + "parent": "a5e-ag_haste", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1394, + "fields": { + "parent": "a5e-ag_haste", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1395, + "fields": { + "parent": "a5e-ag_haste", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1396, + "fields": { + "parent": "a5e-ag_haste", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1397, + "fields": { + "parent": "a5e-ag_haste", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1398, + "fields": { + "parent": "a5e-ag_haste", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1399, + "fields": { + "parent": "a5e-ag_heal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1401, + "fields": { + "parent": "a5e-ag_heal", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1402, + "fields": { + "parent": "a5e-ag_heal", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1403, + "fields": { + "parent": "a5e-ag_heal", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1404, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1406, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1407, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1408, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1409, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1410, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1411, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1412, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1413, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1414, + "fields": { + "parent": "a5e-ag_heart-of-dis", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1415, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1417, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_3", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1418, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1419, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1420, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1421, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1422, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1423, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1424, + "fields": { + "parent": "a5e-ag_heroes-feast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1425, + "fields": { + "parent": "a5e-ag_heroism", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1427, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1428, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1429, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1430, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1431, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1432, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1433, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1434, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1435, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1437, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1438, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1439, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1440, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1441, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1442, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1443, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1444, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1445, + "fields": { + "parent": "a5e-ag_hold-monster", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1447, + "fields": { + "parent": "a5e-ag_hold-monster", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1448, + "fields": { + "parent": "a5e-ag_hold-monster", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1449, + "fields": { + "parent": "a5e-ag_hold-monster", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1450, + "fields": { + "parent": "a5e-ag_hold-monster", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1451, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1453, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1454, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1455, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1456, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1457, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1458, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1459, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1460, + "fields": { + "parent": "a5e-ag_holy-aura", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1461, + "fields": { + "parent": "a5e-ag_hypnotic-pattern", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1462, + "fields": { + "parent": "a5e-ag_ice-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1464, + "fields": { + "parent": "a5e-ag_ice-storm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1465, + "fields": { + "parent": "a5e-ag_ice-storm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1466, + "fields": { + "parent": "a5e-ag_ice-storm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1467, + "fields": { + "parent": "a5e-ag_ice-storm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1468, + "fields": { + "parent": "a5e-ag_ice-storm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1469, + "fields": { + "parent": "a5e-ag_identify", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1470, + "fields": { + "parent": "a5e-ag_identify", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1471, + "fields": { + "parent": "a5e-ag_illusory-script", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1472, + "fields": { + "parent": "a5e-ag_imprisonment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1473, + "fields": { + "parent": "a5e-ag_incendiary-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1474, + "fields": { + "parent": "a5e-ag_inescapable-malady", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1476, + "fields": { + "parent": "a5e-ag_inescapable-malady", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1477, + "fields": { + "parent": "a5e-ag_inescapable-malady", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1478, + "fields": { + "parent": "a5e-ag_infernal-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1479, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1481, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1482, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1483, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1484, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1485, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1486, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1487, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1488, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1489, + "fields": { + "parent": "a5e-ag_insect-plague", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1491, + "fields": { + "parent": "a5e-ag_insect-plague", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1492, + "fields": { + "parent": "a5e-ag_insect-plague", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1493, + "fields": { + "parent": "a5e-ag_insect-plague", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1494, + "fields": { + "parent": "a5e-ag_insect-plague", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1495, + "fields": { + "parent": "a5e-ag_instant-summons", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1496, + "fields": { + "parent": "a5e-ag_instant-summons", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1497, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1499, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1500, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1501, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1502, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1503, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1504, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1505, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1506, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1508, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1509, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1510, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1511, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1512, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1513, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1514, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1515, + "fields": { + "parent": "a5e-ag_irresistible-dance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1517, + "fields": { + "parent": "a5e-ag_irresistible-dance", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1518, + "fields": { + "parent": "a5e-ag_irresistible-dance", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1519, + "fields": { + "parent": "a5e-ag_irresistible-dance", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1520, + "fields": { + "parent": "a5e-ag_jump", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1522, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1523, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1524, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1525, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1526, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1527, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1528, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1529, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1530, + "fields": { + "parent": "a5e-ag_knock", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1532, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1533, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1534, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1535, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1536, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1537, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1538, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1539, + "fields": { + "parent": "a5e-ag_legend-lore", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1541, + "fields": { + "parent": "a5e-ag_legend-lore", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1542, + "fields": { + "parent": "a5e-ag_legend-lore", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1543, + "fields": { + "parent": "a5e-ag_legend-lore", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1544, + "fields": { + "parent": "a5e-ag_legend-lore", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1545, + "fields": { + "parent": "a5e-ag_lemure-transformation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1546, + "fields": { + "parent": "a5e-ag_lesser-restoration", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1547, + "fields": { + "parent": "a5e-ag_levitate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1549, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1550, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1551, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1552, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1553, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1554, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1555, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1556, + "fields": { + "parent": "a5e-ag_light", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1557, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1559, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1560, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1561, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1562, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1563, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1564, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1565, + "fields": { + "parent": "a5e-ag_locate-animals-or-plants", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1566, + "fields": { + "parent": "a5e-ag_locate-animals-or-plants", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1567, + "fields": { + "parent": "a5e-ag_locate-creature", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1568, + "fields": { + "parent": "a5e-ag_locate-object", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1569, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1571, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1572, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1573, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1574, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1575, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1576, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1577, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1578, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1579, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1581, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1582, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1583, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1584, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1585, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1586, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1587, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1588, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1589, + "fields": { + "parent": "a5e-ag_mage-hand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1590, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1592, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1593, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1594, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1595, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1596, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1597, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1598, + "fields": { + "parent": "a5e-ag_magic-jar", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1599, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1601, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1602, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1603, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1604, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1605, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1606, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1607, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1608, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 11, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1609, + "fields": { + "parent": "a5e-ag_magic-mouth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1610, + "fields": { + "parent": "a5e-ag_magic-mouth", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1611, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1613, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1614, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1615, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1616, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1617, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1618, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1619, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1620, + "fields": { + "parent": "a5e-ag_magnificent-mansion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1621, + "fields": { + "parent": "a5e-ag_major-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1623, + "fields": { + "parent": "a5e-ag_major-image", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1624, + "fields": { + "parent": "a5e-ag_major-image", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1625, + "fields": { + "parent": "a5e-ag_major-image", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1626, + "fields": { + "parent": "a5e-ag_major-image", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1627, + "fields": { + "parent": "a5e-ag_major-image", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1628, + "fields": { + "parent": "a5e-ag_major-image", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1629, + "fields": { + "parent": "a5e-ag_mass-cure-wounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1631, + "fields": { + "parent": "a5e-ag_mass-cure-wounds", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1632, + "fields": { + "parent": "a5e-ag_mass-cure-wounds", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1633, + "fields": { + "parent": "a5e-ag_mass-cure-wounds", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1634, + "fields": { + "parent": "a5e-ag_mass-cure-wounds", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1635, + "fields": { + "parent": "a5e-ag_mass-heal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1636, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1638, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1639, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1640, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1641, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1642, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1643, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1644, + "fields": { + "parent": "a5e-ag_mass-suggestion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1646, + "fields": { + "parent": "a5e-ag_mass-suggestion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "10 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1647, + "fields": { + "parent": "a5e-ag_mass-suggestion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "30 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1648, + "fields": { + "parent": "a5e-ag_mass-suggestion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "A year and a day", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1649, + "fields": { + "parent": "a5e-ag_maze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1650, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1652, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1653, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1654, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1655, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1656, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1657, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1658, + "fields": { + "parent": "a5e-ag_mending", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1659, + "fields": { + "parent": "a5e-ag_mental-grip", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1660, + "fields": { + "parent": "a5e-ag_message", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1661, + "fields": { + "parent": "a5e-ag_meteor-swarm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1662, + "fields": { + "parent": "a5e-ag_mind-blank", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1663, + "fields": { + "parent": "a5e-ag_mindshield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1664, + "fields": { + "parent": "a5e-ag_minor-illusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1665, + "fields": { + "parent": "a5e-ag_mirage-arcane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1666, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1668, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1669, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1670, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1671, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1672, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1673, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1674, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1675, + "fields": { + "parent": "a5e-ag_mislead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1676, + "fields": { + "parent": "a5e-ag_misty-step", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1677, + "fields": { + "parent": "a5e-ag_modify-memory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1679, + "fields": { + "parent": "a5e-ag_modify-memory", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1680, + "fields": { + "parent": "a5e-ag_modify-memory", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1681, + "fields": { + "parent": "a5e-ag_modify-memory", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1682, + "fields": { + "parent": "a5e-ag_modify-memory", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1683, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1685, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1686, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1687, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1688, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1689, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1690, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1691, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1692, + "fields": { + "parent": "a5e-ag_move-earth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1693, + "fields": { + "parent": "a5e-ag_nondetection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1694, + "fields": { + "parent": "a5e-ag_pass-without-trace", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1695, + "fields": { + "parent": "a5e-ag_passwall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1696, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1697, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1698, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1699, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1700, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1701, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1702, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1703, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1704, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1705, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1706, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1707, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1708, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1709, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1710, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1711, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1712, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1713, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1714, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1715, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1716, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1717, + "fields": { + "parent": "a5e-ag_phantasmal-killer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1719, + "fields": { + "parent": "a5e-ag_phantasmal-killer", + "type": "slot_level_5", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1720, + "fields": { + "parent": "a5e-ag_phantasmal-killer", + "type": "slot_level_6", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1721, + "fields": { + "parent": "a5e-ag_phantasmal-killer", + "type": "slot_level_7", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1722, + "fields": { + "parent": "a5e-ag_phantasmal-killer", + "type": "slot_level_8", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1723, + "fields": { + "parent": "a5e-ag_phantasmal-killer", + "type": "slot_level_9", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1724, + "fields": { + "parent": "a5e-ag_phantasmal-talons", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1725, + "fields": { + "parent": "a5e-ag_phantom-steed", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1726, + "fields": { + "parent": "a5e-ag_phantom-steed", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1727, + "fields": { + "parent": "a5e-ag_planar-ally", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1728, + "fields": { + "parent": "a5e-ag_planar-binding", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1730, + "fields": { + "parent": "a5e-ag_planar-binding", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "10 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1731, + "fields": { + "parent": "a5e-ag_planar-binding", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "30 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1732, + "fields": { + "parent": "a5e-ag_planar-binding", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "180 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1733, + "fields": { + "parent": "a5e-ag_planar-binding", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "A year and a day", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1734, + "fields": { + "parent": "a5e-ag_plane-shift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1735, + "fields": { + "parent": "a5e-ag_plant-growth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1736, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1738, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "slot_level_4", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1739, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "slot_level_5", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1740, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "slot_level_6", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1741, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "slot_level_7", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1742, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "slot_level_8", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1743, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "slot_level_9", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1744, + "fields": { + "parent": "a5e-ag_polymorph", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1745, + "fields": { + "parent": "a5e-ag_power-word-kill", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1746, + "fields": { + "parent": "a5e-ag_power-word-stun", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1747, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1749, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1750, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1751, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1752, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1753, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1754, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1755, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1756, + "fields": { + "parent": "a5e-ag_prestidigitation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1757, + "fields": { + "parent": "a5e-ag_prismatic-spray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1758, + "fields": { + "parent": "a5e-ag_prismatic-wall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1759, + "fields": { + "parent": "a5e-ag_private-sanctum", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1761, + "fields": { + "parent": "a5e-ag_private-sanctum", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1762, + "fields": { + "parent": "a5e-ag_private-sanctum", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1763, + "fields": { + "parent": "a5e-ag_private-sanctum", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1764, + "fields": { + "parent": "a5e-ag_private-sanctum", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1765, + "fields": { + "parent": "a5e-ag_private-sanctum", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1766, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1767, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1768, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1769, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1770, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1771, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1772, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1773, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1774, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1775, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1776, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1777, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1778, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1779, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1780, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1781, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1782, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1783, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1784, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1785, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1786, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1787, + "fields": { + "parent": "a5e-ag_programmed-illusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1788, + "fields": { + "parent": "a5e-ag_project-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1789, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1791, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1792, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1793, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1794, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1795, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1796, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1797, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1798, + "fields": { + "parent": "a5e-ag_protection-from-evil-and-good", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1799, + "fields": { + "parent": "a5e-ag_protection-from-poison", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1800, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1801, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1803, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1804, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1805, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1806, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1807, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1808, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1809, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1810, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1811, + "fields": { + "parent": "a5e-ag_rage-of-the-meek", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1813, + "fields": { + "parent": "a5e-ag_rage-of-the-meek", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1814, + "fields": { + "parent": "a5e-ag_rage-of-the-meek", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1815, + "fields": { + "parent": "a5e-ag_rage-of-the-meek", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1816, + "fields": { + "parent": "a5e-ag_rage-of-the-meek", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1817, + "fields": { + "parent": "a5e-ag_rage-of-the-meek", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1818, + "fields": { + "parent": "a5e-ag_raise-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1819, + "fields": { + "parent": "a5e-ag_raise-hell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1820, + "fields": { + "parent": "a5e-ag_ray-of-enfeeblement", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1821, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1822, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1823, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1824, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1825, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1826, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1827, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1828, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1829, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1830, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1831, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1832, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1833, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1834, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1835, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1836, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1837, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1838, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1839, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1840, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1841, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1842, + "fields": { + "parent": "a5e-ag_regenerate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1843, + "fields": { + "parent": "a5e-ag_reincarnate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1844, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1846, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1847, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1848, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1849, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1850, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1851, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1852, + "fields": { + "parent": "a5e-ag_resilient-sphere", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1853, + "fields": { + "parent": "a5e-ag_resistance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1854, + "fields": { + "parent": "a5e-ag_resurrection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1855, + "fields": { + "parent": "a5e-ag_reverse-gravity", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1856, + "fields": { + "parent": "a5e-ag_revivify", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1857, + "fields": { + "parent": "a5e-ag_rope-trick", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1858, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1859, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1860, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1861, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1862, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1863, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1864, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1865, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1866, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1867, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1868, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1869, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1870, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1871, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1872, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1873, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1874, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1875, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1876, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1877, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1878, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1879, + "fields": { + "parent": "a5e-ag_sanctuary", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1880, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1882, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1883, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1884, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1885, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1886, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1887, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1888, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1889, + "fields": { + "parent": "a5e-ag_scrying", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1890, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1892, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1893, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1894, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1895, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1896, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1897, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1898, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1899, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1900, + "fields": { + "parent": "a5e-ag_secret-chest", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1901, + "fields": { + "parent": "a5e-ag_see-invisibility", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1902, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1904, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_3", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1905, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_4", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1906, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_5", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1907, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_6", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1908, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_7", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1909, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_8", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1910, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_9", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1911, + "fields": { + "parent": "a5e-ag_seeming", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1912, + "fields": { + "parent": "a5e-ag_sending", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1913, + "fields": { + "parent": "a5e-ag_sequester", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1914, + "fields": { + "parent": "a5e-ag_shapechange", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1915, + "fields": { + "parent": "a5e-ag_shatter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1917, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1918, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1919, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1920, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1921, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1922, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1923, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1924, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1926, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1927, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1928, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1929, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1930, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1931, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1932, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1933, + "fields": { + "parent": "a5e-ag_shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1934, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1936, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1937, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1938, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1939, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1940, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1941, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1942, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1943, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1944, + "fields": { + "parent": "a5e-ag_shillelagh", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1945, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1946, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1947, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1948, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1949, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1950, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1951, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1952, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1953, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1954, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1955, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1956, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1957, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1958, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1959, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1960, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1961, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1962, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1963, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1964, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1965, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1966, + "fields": { + "parent": "a5e-ag_silence", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1967, + "fields": { + "parent": "a5e-ag_silence", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1968, + "fields": { + "parent": "a5e-ag_silent-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1969, + "fields": { + "parent": "a5e-ag_simulacrum", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1970, + "fields": { + "parent": "a5e-ag_sleep", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1972, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1973, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1974, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1975, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1976, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1977, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1978, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1979, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1980, + "fields": { + "parent": "a5e-ag_sleet-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1981, + "fields": { + "parent": "a5e-ag_slow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1982, + "fields": { + "parent": "a5e-ag_soulwrought-fists", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1983, + "fields": { + "parent": "a5e-ag_spare-the-dying", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1984, + "fields": { + "parent": "a5e-ag_speak-with-animals", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1985, + "fields": { + "parent": "a5e-ag_speak-with-animals", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1986, + "fields": { + "parent": "a5e-ag_speak-with-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1987, + "fields": { + "parent": "a5e-ag_speak-with-plants", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1988, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1990, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1991, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1992, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1993, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1994, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1995, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1996, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1997, + "fields": { + "parent": "a5e-ag_spike-growth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 1998, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2000, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "slot_level_4", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2001, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "slot_level_5", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2002, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "slot_level_6", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2003, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "slot_level_7", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2004, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "slot_level_8", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2005, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "slot_level_9", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2006, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2008, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2009, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2010, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2011, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2012, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2013, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2014, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2015, + "fields": { + "parent": "a5e-ag_sporesight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2016, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2018, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2019, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2020, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2021, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2022, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2023, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2024, + "fields": { + "parent": "a5e-ag_stone-shape", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2026, + "fields": { + "parent": "a5e-ag_stone-shape", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2027, + "fields": { + "parent": "a5e-ag_stone-shape", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2028, + "fields": { + "parent": "a5e-ag_stone-shape", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2029, + "fields": { + "parent": "a5e-ag_stone-shape", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2030, + "fields": { + "parent": "a5e-ag_stone-shape", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2031, + "fields": { + "parent": "a5e-ag_stoneskin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2033, + "fields": { + "parent": "a5e-ag_stoneskin", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2034, + "fields": { + "parent": "a5e-ag_stoneskin", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2035, + "fields": { + "parent": "a5e-ag_stoneskin", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2036, + "fields": { + "parent": "a5e-ag_stoneskin", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2037, + "fields": { + "parent": "a5e-ag_stoneskin", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2038, + "fields": { + "parent": "a5e-ag_storm-kick", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2040, + "fields": { + "parent": "a5e-ag_storm-kick", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2041, + "fields": { + "parent": "a5e-ag_storm-kick", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2042, + "fields": { + "parent": "a5e-ag_storm-kick", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2043, + "fields": { + "parent": "a5e-ag_storm-kick", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2044, + "fields": { + "parent": "a5e-ag_storm-of-vengeance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2045, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2047, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2048, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2049, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "7 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2050, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "7 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2051, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2052, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2053, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2054, + "fields": { + "parent": "a5e-ag_sunbeam", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2056, + "fields": { + "parent": "a5e-ag_sunbeam", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2057, + "fields": { + "parent": "a5e-ag_sunbeam", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2058, + "fields": { + "parent": "a5e-ag_sunbeam", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2059, + "fields": { + "parent": "a5e-ag_sunburst", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2061, + "fields": { + "parent": "a5e-ag_sunburst", + "type": "slot_level_9", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2062, + "fields": { + "parent": "a5e-ag_symbol", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2063, + "fields": { + "parent": "a5e-ag_tearful-sonnet", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2065, + "fields": { + "parent": "a5e-ag_tearful-sonnet", + "type": "slot_level_5", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2066, + "fields": { + "parent": "a5e-ag_tearful-sonnet", + "type": "slot_level_6", + "damage_roll": "6d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2067, + "fields": { + "parent": "a5e-ag_tearful-sonnet", + "type": "slot_level_7", + "damage_roll": "8d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2068, + "fields": { + "parent": "a5e-ag_tearful-sonnet", + "type": "slot_level_8", + "damage_roll": "10d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2069, + "fields": { + "parent": "a5e-ag_tearful-sonnet", + "type": "slot_level_9", + "damage_roll": "12d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2070, + "fields": { + "parent": "a5e-ag_telekinesis", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2072, + "fields": { + "parent": "a5e-ag_telekinesis", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2073, + "fields": { + "parent": "a5e-ag_telekinesis", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2074, + "fields": { + "parent": "a5e-ag_telekinesis", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2075, + "fields": { + "parent": "a5e-ag_telekinesis", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2076, + "fields": { + "parent": "a5e-ag_telepathic-bond", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2077, + "fields": { + "parent": "a5e-ag_telepathic-bond", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2079, + "fields": { + "parent": "a5e-ag_telepathic-bond", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1d4+1 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2080, + "fields": { + "parent": "a5e-ag_telepathic-bond", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "2d4+1 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2081, + "fields": { + "parent": "a5e-ag_telepathic-bond", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "3d4+1 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2082, + "fields": { + "parent": "a5e-ag_telepathic-bond", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "4d4+1 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2083, + "fields": { + "parent": "a5e-ag_teleport", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2084, + "fields": { + "parent": "a5e-ag_teleport", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2085, + "fields": { + "parent": "a5e-ag_teleportation-circle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2086, + "fields": { + "parent": "a5e-ag_thaumaturgy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2087, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2089, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2090, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2091, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2092, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2093, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2094, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2095, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2096, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2097, + "fields": { + "parent": "a5e-ag_time-stop", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2098, + "fields": { + "parent": "a5e-ag_tiny-hut", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2099, + "fields": { + "parent": "a5e-ag_tiny-hut", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2100, + "fields": { + "parent": "a5e-ag_tongues", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2101, + "fields": { + "parent": "a5e-ag_transport-via-plants", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2102, + "fields": { + "parent": "a5e-ag_travelers-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2103, + "fields": { + "parent": "a5e-ag_tree-stride", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2105, + "fields": { + "parent": "a5e-ag_tree-stride", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2106, + "fields": { + "parent": "a5e-ag_tree-stride", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2107, + "fields": { + "parent": "a5e-ag_tree-stride", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2108, + "fields": { + "parent": "a5e-ag_tree-stride", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2109, + "fields": { + "parent": "a5e-ag_true-polymorph", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2110, + "fields": { + "parent": "a5e-ag_true-resurrection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2111, + "fields": { + "parent": "a5e-ag_true-seeing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2112, + "fields": { + "parent": "a5e-ag_true-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2113, + "fields": { + "parent": "a5e-ag_unholy-star", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2114, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2115, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2117, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2118, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2119, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2120, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2121, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2122, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2123, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2124, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2125, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2127, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2128, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2129, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2130, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2131, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2132, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2133, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2135, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2136, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2137, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2138, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2139, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2140, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2141, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2142, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_1", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2143, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_2", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2144, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_3", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2145, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_4", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2146, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_5", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2147, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_6", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2148, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_7", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2149, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_8", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2150, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_9", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2151, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_10", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2152, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_11", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2153, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_12", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2154, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_13", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2155, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_14", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2156, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_15", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2157, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_16", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2158, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_17", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2159, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_18", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2160, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_19", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2161, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_20", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2162, + "fields": { + "parent": "a5e-ag_wall-of-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2164, + "fields": { + "parent": "a5e-ag_wall-of-fire", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2165, + "fields": { + "parent": "a5e-ag_wall-of-fire", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2166, + "fields": { + "parent": "a5e-ag_wall-of-fire", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2167, + "fields": { + "parent": "a5e-ag_wall-of-fire", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2168, + "fields": { + "parent": "a5e-ag_wall-of-fire", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2169, + "fields": { + "parent": "a5e-ag_wall-of-flesh", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2171, + "fields": { + "parent": "a5e-ag_wall-of-flesh", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2172, + "fields": { + "parent": "a5e-ag_wall-of-flesh", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2173, + "fields": { + "parent": "a5e-ag_wall-of-flesh", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2174, + "fields": { + "parent": "a5e-ag_wall-of-force", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2175, + "fields": { + "parent": "a5e-ag_wall-of-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2177, + "fields": { + "parent": "a5e-ag_wall-of-ice", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2178, + "fields": { + "parent": "a5e-ag_wall-of-ice", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2179, + "fields": { + "parent": "a5e-ag_wall-of-ice", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2180, + "fields": { + "parent": "a5e-ag_wall-of-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2181, + "fields": { + "parent": "a5e-ag_wall-of-thorns", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2183, + "fields": { + "parent": "a5e-ag_wall-of-thorns", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2184, + "fields": { + "parent": "a5e-ag_wall-of-thorns", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2185, + "fields": { + "parent": "a5e-ag_wall-of-thorns", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2186, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2188, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2189, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2190, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2191, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2192, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2193, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2194, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2195, + "fields": { + "parent": "a5e-ag_warriors-instincts", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2197, + "fields": { + "parent": "a5e-ag_warriors-instincts", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2198, + "fields": { + "parent": "a5e-ag_warriors-instincts", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2199, + "fields": { + "parent": "a5e-ag_warriors-instincts", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2200, + "fields": { + "parent": "a5e-ag_warriors-instincts", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2201, + "fields": { + "parent": "a5e-ag_water-breathing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2202, + "fields": { + "parent": "a5e-ag_water-breathing", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2203, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2205, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2206, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2207, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2208, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2209, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2210, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2211, + "fields": { + "parent": "a5e-ag_web", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2213, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2214, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2215, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2216, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2217, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2218, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2219, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2220, + "fields": { + "parent": "a5e-ag_weird", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2221, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2223, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2224, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2225, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2226, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2227, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2228, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2229, + "fields": { + "parent": "a5e-ag_wind-up", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2230, + "fields": { + "parent": "a5e-ag_wind-walk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2231, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2233, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2234, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2235, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2236, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2237, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2238, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2239, + "fields": { + "parent": "a5e-ag_wish", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2240, + "fields": { + "parent": "a5e-ag_word-of-recall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2241, + "fields": { + "parent": "a5e-ag_wormway", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2242, + "fields": { + "parent": "a5e-ag_wormway", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2243, + "fields": { + "parent": "a5e-ag_writhing-transformation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2244, + "fields": { + "parent": "a5e-ag_writhing-transformation", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2245, + "fields": { + "parent": "a5e-ag_zone-of-truth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + } +] \ No newline at end of file diff --git a/data/v2/kobold-press/deepm/Spell.json b/data/v2/kobold-press/deepm/Spell.json index 5205b00b..9621a02a 100644 --- a/data/v2/kobold-press/deepm/Spell.json +++ b/data/v2/kobold-press/deepm/Spell.json @@ -1,16169 +1,16169 @@ [ -{ - "model": "api_v2.spell", - "pk": "abhorrent-apparition", - "fields": { - "name": "Abhorrent Apparition", - "desc": "You imbue a terrifying visage onto a gourd and toss it ahead of you to a spot of your choosing within range. Each creature within 15 feet of that spot takes 6d8 psychic damage and becomes frightened of you for 1 minute; a successful Wisdom saving throw halves the damage and negates the fright. A creature frightened in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 4, - "school": "illusion", - "higher_level": "If you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": false, - "material": true, - "material_specified": "a gourd with a face carved on it", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "accelerate", - "fields": { - "name": "Accelerate", - "desc": "Choose up to three willing creatures within range, which can include you. For the duration of the spell, each target’s walking speed is doubled. Each target can also use a bonus action on each of its turns to take the Dash action, and it has advantage on Dexterity saving throws.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a toy top", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "acid-gate", - "fields": { - "name": "Acid Gate", - "desc": "You create a portal of swirling, acidic green vapor in an unoccupied space you can see. This portal connects with a target destination within 100 miles that you are personally familiar with and have seen with your own eyes, such as your wizard’s tower or an inn you have stayed at. You and up to three creatures of your choice can enter the portal and pass through it, arriving at the target destination (or within 10 feet of it, if it is currently occupied). If the target destination doesn’t exist or is inaccessible, the spell automatically fails and the gate doesn’t form.\n\nAny creature that tries to move through the gate, other than those selected by you when the spell was cast, takes 10d6 acid damage and is teleported 1d100 × 10 feet in a random, horizontal direction. If the creature makes a successful Intelligence saving throw, it can’t be teleported by this portal, but it still takes acid damage when it enters the acid-filled portal and every time it ends its turn in contact with it.\n", - "document": "deepm", - "level": 7, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you can allow one additional creature to use the gate for each slot level above 7th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of acid and a polished silver mirror worth 125 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "acid" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "acid-rain", - "fields": { - "name": "Acid Rain", - "desc": "You unleash a storm of swirling acid in a cylinder 20 feet wide and 30 feet high, centered on a point you can see. The area is heavily obscured by the driving acidfall. A creature that starts its turn in the area or that enters the area for the first time on its turn takes 6d6 acid damage, or half as much damage if it makes a successful Dexterity saving throw. A creature takes half as much damage from the acid (as if it had made a successful saving throw) at the start of its first turn after leaving the affected area.\n", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d6 for each slot level above 5th.", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of acid", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "acid" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "adjust-position", - "fields": { - "name": "Adjust Position", - "desc": "You adjust the location of an ally to a better tactical position. You move one willing creature within range 5 feet. This movement does not provoke opportunity attacks. The creature moves bodily through the intervening space (as opposed to teleporting), so there can be no physical obstacle (such as a wall or a door) in the path.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target an additional willing creature for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "afflict-line", - "fields": { - "name": "Afflict Line", - "desc": "You invoke the darkest curses upon your victim and his or her descendants. This spell does not require that you have a clear path to your target, only that your target is within range. The target must make a successful Wisdom saving throw or be cursed until the magic is dispelled. While cursed, the victim has disadvantage on ability checks and saving throws made with the ability score that you used when you cast the spell. In addition, the target’s firstborn offspring is also targeted by the curse. That individual is allowed a saving throw of its own if it is currently alive, or it makes one upon its birth if it is not yet born when the spell is cast. If the target’s firstborn has already died, the curse passes to the target’s next oldest offspring.\n\n**Ritual Focus.** If you expend your ritual focus, the curse becomes hereditary, passing from firstborn to firstborn for the entire length of the family’s lineage until one of them successfully saves against the curse and throws off your dark magic.", - "document": "deepm", - "level": 9, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "1 mile", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a statuette carved in the likeness of the victim worth 1,250 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent; one generation", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "agonizing-mark", - "fields": { - "name": "Agonizing Mark", - "desc": "You choose a creature you can see within range to mark as your prey, and a ray of black energy issues forth from you. Until the spell ends, each time you deal damage to the target it must make a Charisma saving throw. On a failed save, it falls prone as its body is filled with torturous agony.", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "alchemical-form", - "fields": { - "name": "Alchemical Form", - "desc": "You transform into an amoebic form composed of highly acidic and poisonous alchemical jelly. While in this form:\n* you are immune to acid and poison damage and to the poisoned and stunned conditions;\n* you have resistance to nonmagical fire, piercing, and slashing damage;\n* you can’t speak, cast spells, use items or weapons, or manipulate objects;\n* your gear melds into your body and reappears when the spell ends;\n* you don't need to breathe;\n* your speed is 20 feet;\n* your size doesn’t change, but you can move through and between obstructions as if you were two size categories smaller; and\n* you gain the following action: **Melee Weapon Attack:** spellcasting ability modifier + proficiency bonus to hit, range 5 ft., one target; **Hit:** 4d6 acid or poison damage (your choice), and the target must make a successful Constitution saving throw or be poisoned until the start of your next turn.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of acid, poison, or alchemist's fire", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ale-dritch-blast", - "fields": { - "name": "Ale-dritch Blast", - "desc": "A stream of ice-cold ale blasts from your outstretched hands toward a creature or object within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage and it must make a successful Constitution saving throw or be poisoned until the end of its next turn. A targeted creature has disadvantage on the saving throw if it has drunk any alcohol within the last hour.", - "document": "deepm", - "level": 0, - "school": "conjuration", - "higher_level": "The damage increases when you reach higher levels: 2d8 at 5th level, 3d8 at 11th level, and 4d8 at 17th level.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ally-aegis", - "fields": { - "name": "Ally Aegis", - "desc": "When you see an ally within range in imminent danger, you can use your reaction to protect that creature with a shield of magical force. Until the start of your next turn, your ally has a +5 bonus to AC and is immune to force damage. In addition, if your ally must make a saving throw against an enemy’s spell that deals damage, the ally takes half as much damage on a failed saving throw and no damage on a successful save. Ally aegis offers no protection, however, against psychic damage from any source.\n", - "document": "deepm", - "level": 6, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can target one additional ally for each slot level above 6th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "alone", - "fields": { - "name": "Alone", - "desc": "You cause a creature within range to believe its allies have been banished to a different realm. The target must succeed on a Wisdom saving throw, or it treats its allies as if they were invisible and silenced. The affected creature cannot target, perceive, or otherwise interact with its allies for the duration of the spell. If one of its allies hits it with a melee attack, the affected creature can make another Wisdom saving throw. On a successful save, the spell ends.", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "alter-arrows-fortune", - "fields": { - "name": "Alter Arrow’s Fortune", - "desc": "You clap your hands, setting off a chain of tiny events that culminate in throwing off an enemy’s aim. When an enemy makes a ranged attack with a weapon or a spell that hits one of your allies, this spell causes the enemy to reroll the attack roll unless the enemy makes a successful Charisma saving throw. The attack is resolved using the lower of the two rolls (effectively giving the enemy disadvantage on the attack).", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "altheas-travel-tent", - "fields": { - "name": "Althea’s Travel Tent", - "desc": "You touch an ordinary, properly pitched canvas tent to create a space where you and a companion can sleep in comfort. From the outside, the tent appears normal, but inside it has a small foyer and a larger bedchamber. The foyer contains a writing desk with a chair; the bedchamber holds a soft bed large enough to sleep two, a small nightstand with a candle, and a small clothes rack. The floor of both rooms is a clean, dry, hard-packed version of the local ground. When the spell ends, the tent and the ground return to normal, and any creatures inside the tent are expelled to the nearest unoccupied spaces.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When the spell is cast using a 3rd-level slot, the foyer becomes a dining area with seats for six and enough floor space for six people to sleep, if they bring their own bedding. The sleeping room is unchanged. With a 4th-level slot, the temperature inside the tent is comfortable regardless of the outside temperature, and the dining area includes a small kitchen. With a 5th-level slot, an unseen servant is conjured to prepare and serve food (from your supplies). With a 6th-level slot, a third room is added that has three two-person beds. With a slot of 7th level or higher, the dining area and second sleeping area can each accommodate eight persons.", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a canvas tent", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "amplify-gravity", - "fields": { - "name": "Amplify Gravity", - "desc": "This spell intensifies gravity in a 50-foot-radius area within range. Inside the area, damage from falling is quadrupled (2d6 per 5 feet fallen) and maximum damage from falling is 40d6. Any creature on the ground in the area when the spell is cast must make a successful Strength saving throw or be knocked prone; the same applies to a creature that enters the area or ends its turn in the area. A prone creature in the area must make a successful Strength saving throw to stand up. A creature on the ground in the area moves at half speed and has disadvantage on Dexterity checks and ranged attack rolls.", - "document": "deepm", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of lead", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "analyze-device", - "fields": { - "name": "Analyze Device", - "desc": "You discover all mechanical properties, mechanisms, and functions of a single construct or clockwork device, including how to activate or deactivate those functions, if appropriate.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a set of clockworker’s tools", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ancestors-strength", - "fields": { - "name": "Ancestor’s Strength", - "desc": "Choose a willing creature you can see and touch. Its muscles bulge and become invigorated. For the duration, the target is considered one size category larger for determining its carrying capacity, the maximum weight it can lift, push, or pull, and its ability to break objects. It also has advantage on Strength checks.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "anchoring-rope", - "fields": { - "name": "Anchoring Rope", - "desc": "You create a spectral lanyard. One end is tied around your waist, and the other end is magically anchored in the air at a point you select within range. You can choose to make the rope from 5 to 30 feet long, and it can support up to 800 pounds. The point where the end of the rope is anchored in midair can’t be moved after the spell is cast. If this spell is cast as a reaction while you are falling, you stop at a point of your choosing in midair and take no falling damage. You can dismiss the rope as a bonus action.\n", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional rope for every two slot levels above 1st. Each rope must be attached to a different creature.", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ancient-shade", - "fields": { - "name": "Ancient Shade", - "desc": "You grant the semblance of life and intelligence to a pile of bones (or even bone dust) of your choice within range, allowing the ancient spirit to answer the questions you pose. These remains can be the remnants of undead, including animated but unintelligent undead, such as skeletons and zombies. (Intelligent undead are not affected.) Though it can have died centuries ago, the older the spirit called, the less it remembers of its mortal life.\n\nUntil the spell ends, you can ask the ancient spirit up to five questions if it died within the past year, four questions if it died within ten years, three within one hundred years, two within one thousand years, and but a single question for spirits more than one thousand years dead. The ancient shade knows only what it knew in life, including languages. Answers are usually brief, cryptic, or repetitive, and the corpse is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This spell doesn’t return the creature’s soul to its body, only its animating spirit. Thus, the corpse can’t learn new information, doesn’t comprehend anything that has happened since it died, and can’t speculate about future events.", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "object", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "burning candles of planar origin worth 500 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "angelic-guardian", - "fields": { - "name": "Angelic Guardian", - "desc": "You conjure a minor celestial manifestation to protect a creature you can see within range. A faintly glowing image resembling a human head and shoulders hovers within 5 feet of the target for the duration. The manifestation moves to interpose itself between the target and any incoming attacks, granting the target a +2 bonus to AC.\n\nAlso, the first time the target gets a failure on a Dexterity saving throw while the spell is active, it can use its reaction to reroll the save. The spell then ends.", - "document": "deepm", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "animate-ghoul", - "fields": { - "name": "Animate Ghoul", - "desc": "You raise one Medium or Small humanoid corpse as a ghoul under your control. Any class levels or abilities the creature had in life are gone, replaced by the standard ghoul stat block.\n", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "When you cast this spell using a 3rd-level spell slot, it can be used on the corpse of a Large humanoid to create a Large ghoul. When you cast this spell using a spell slot of 4th level or higher, this spell creates a ghast, but the material component changes to an onyx gemstone worth at least 200 gp.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "piece of rotting flesh and an onyx gemstone worth 100 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "animate-greater-undead", - "fields": { - "name": "Animate Greater Undead", - "desc": "**Animate greater undead** creates an undead servant from a pile of bones or from the corpse of a Large or Huge humanoid within range. The spell imbues the target with a foul mimicry of life, raising it as an undead skeleton or zombie. A skeleton uses the stat block of a minotaur skeleton, or a zombie uses the stat block of an ogre zombie, unless a more appropriate stat block is available.\n\nThe creature is under your control for 24 hours, after which it stops obeying your commands. To maintain control of the creature for another 24 hours, you must cast this spell on it again while you have it controlled. Casting the spell for this purpose reasserts your control over up to four creatures you have previously animated rather than animating a new one.\n", - "document": "deepm", - "level": 6, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can reanimate one additional creature for each slot level above 6th.", - "target_type": "creature", - "range": "15 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pint of blood, a pound of flesh, and an ounce of bone dust, all of which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "animated-scroll", - "fields": { - "name": "Animated Scroll", - "desc": "The paper or parchment must be folded into the shape of an animal before casting the spell. It then becomes an animated paper animal of the kind the folded paper most closely resembles. The creature uses the stat block of any beast that has a challenge rating of 0. It is made of paper, not flesh and bone, but it can do anything the real creature can do: a paper owl can fly and attack with its talons, a paper frog can swim without disintegrating in water, and so forth. It follows your commands to the best of its ability, including carrying messages to a recipient whose location you know.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "The duration increases by 24 hours at 5th level (48 hours), 11th level (72 hours), and 17th level (96 hours).", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "intricately folded paper or parchment", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "anticipate-arcana", - "fields": { - "name": "Anticipate Arcana", - "desc": "Your foresight gives you an instant to ready your defenses against a magical attack. When you cast **anticipate arcana**, you have advantage on saving throws against spells and other magical effects until the start of your next turn.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "anticipate-attack", - "fields": { - "name": "Anticipate Attack", - "desc": "In a flash of foreknowledge, you spot an oncoming attack with enough time to avoid it. Upon casting this spell, you can move up to half your speed without provoking opportunity attacks. The oncoming attack still occurs but misses automatically if you are no longer within the attack’s range, are in a space that's impossible for the attack to hit, or can’t be targeted by that attack in your new position. If none of those circumstances apply but the situation has changed—you have moved into a position where you have cover, for example—then the attack is made after taking the new situation into account.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "anticipate-weakness", - "fields": { - "name": "Anticipate Weakness", - "desc": "With a quick glance into the future, you pinpoint where a gap is about to open in your foe’s defense, and then you strike. After casting **anticipate weakness**, you have advantage on attack rolls until the end of your turn.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "arcane-sight", - "fields": { - "name": "Arcane Sight", - "desc": "The recipient of this spell gains the benefits of both [true seeing](https://api.open5e.com/spells/true-seeing) and [detect magic](https://api.open5e.com/spells/detect-magic) until the spell ends, and also knows the name and effect of every spell he or she witnesses during the spell’s duration.", - "document": "deepm", - "level": 8, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of clear quartz", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "as-you-were", - "fields": { - "name": "As You Were", - "desc": "When cast on a dead or undead body, **as you were** returns that creature to the appearance it had in life while it was healthy and uninjured. The target must have a physical body; the spell fails if the target is normally noncorporeal.\n\nIf as you were is cast on a corpse, its effect is identical to that of [gentle repose](https://api.open5e.com/spells/gentle-repose), except that the corpse’s appearance is restored to that of a healthy, uninjured (albeit dead) person.\n\nIf the target is an undead creature, it also is restored to the appearance it had in life, even if it died from disease or from severe wounds, or centuries ago. The target looks, smells, and sounds (if it can speak) as it did in life. Friends and family can tell something is wrong only with a successful Wisdom (Insight) check against your spell save DC, and only if they have reason to be suspicious. (Knowing that the person should be dead is sufficient reason.) Spells and abilities that detect undead are also fooled, but the creature remains susceptible to Turn Undead as normal.\n\nThis spell doesn’t confer the ability to speak on undead that normally can’t speak. The creature eats, drinks, and breathes as a living creature does; it can mimic sleep, but it has no more need for it than it had before.\n\nThe effect lasts for a number of hours equal to your caster level. You can use an action to end the spell early. Any amount of radiant or necrotic damage dealt to the creature, or any effect that reduces its Constitution, also ends the spell.\n\nIf this spell is cast on an undead creature that isn’t your ally or under your control, it makes a Charisma saving throw to resist the effect.", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of flesh from a creature of the target’s race", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ashen-memories", - "fields": { - "name": "Ashen Memories", - "desc": "You touch the ashes, embers, or soot left behind by a fire and receive a vision of one significant event that occurred in the area while the fire was burning. For example, if you were to touch the cold embers of a campfire, you might witness a snippet of a conversation that occurred around the fire. Similarly, touching the ashes of a burned letter might grant you a vision of the person who destroyed the letter or the contents of the letter. You have no control over what information the spell reveals, but your vision usually is tied to the most meaningful event related to the fire. The GM determines the details of what is revealed.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "aspect-of-the-dragon", - "fields": { - "name": "Aspect of the Dragon", - "desc": "This spell draws out the ancient nature within your blood, allowing you to assume the form of any dragon-type creature of challenge 10 or less.\n\nYou assume the hit points and Hit Dice of the new form. When you revert to your normal form, you return to the number of hit points you had before you transformed. If you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. As long as the excess damage doesn’t reduce your normal form to 0 hit points, you aren’t knocked unconscious.\n\nYou retain the benefits of any features from your class, race, or other source and can use them, provided that your new form is physically capable of doing so. You can speak only if the dragon can normally speak.\n\nWhen you transform, you choose whether your equipment falls to the ground, merges into the new form, or is worn by it. Worn equipment functions normally, but equipment doesn’t change shape or size to match the new form. Any equipment that the new form can’t wear must either fall to the ground or merge into the new form. The GM has final say on whether the new form can wear or use a particular piece of equipment. Equipment that merges has no effect in that state.", - "document": "deepm", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dragon scale", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "aspect-of-the-serpent", - "fields": { - "name": "Aspect of the Serpent", - "desc": "A creature you touch takes on snakelike aspects for the duration of the spell. Its tongue becomes long and forked, its canine teeth become fangs with venom sacs, and its pupils become sharply vertical. The target gains darkvision with a range of 60 feet and blindsight with a range of 30 feet. As a bonus action when you cast the spell, the target can make a ranged weapon attack with a normal range of 60 feet that deals 2d6 poison damage on a hit.\n\nAs an action, the target can make a bite attack using either Strength or Dexterity (Melee Weapon Attack: range 5 ft., one creature; Hit: 2d6 piercing damage), and the creature must make a successful DC 14 Constitution saving throw or be paralyzed for 1 minute. A creature paralyzed in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success).\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, both the ranged attack and bite attack damage increase by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dried snakeskin", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "aura-of-protection-or-destruction", - "fields": { - "name": "Aura of Protection or Destruction", - "desc": "When you cast this spell, you radiate an otherworldly energy that warps the fate of all creatures within 30 feet of you. Decide whether to call upon either a celestial or a fiend for aid. Choosing a celestial charges a 30-foot-radius around you with an aura of nonviolence; until the start of your next turn, every attack roll made by or against a creature inside the aura is treated as a natural 1. Choosing a fiend charges the area with an aura of violence; until the start of your next turn, every attack roll made by or against a creature inside the aura, including you, is treated as a natural 20.\n", - "document": "deepm", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can extend the duration by 1 round for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "auspicious-warning", - "fields": { - "name": "Auspicious Warning", - "desc": "Just in time, you call out a fortunate warning to a creature within range. The target rolls a d4 and adds the number rolled to an attack roll, ability check, or saving throw that it has just made and uses the new result for determining success or failure.", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "avoid-grievous-injury", - "fields": { - "name": "Avoid Grievous Injury", - "desc": "You cast this spell when a foe strikes you with a critical hit but before damage dice are rolled. The critical hit against you becomes a normal hit.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "avronins-astral-assembly", - "fields": { - "name": "Avronin’s Astral Assembly", - "desc": "You alert a number of creatures that you are familiar with, up to your spellcasting ability modifier (minimum of 1), of your intent to communicate with them through spiritual projection. The invitation can extend any distance and even cross to other planes of existence. Once notified, the creatures can choose to accept this communication at any time during the duration of the spell.\n\nWhen a creature accepts, its spirit is projected into one of the gems used in casting the spell. The material body it leaves behind falls unconscious and doesn't need food or air. The creature's consciousness is present in the room with you, and its normal form appears as an astral projection within 5 feet of the gem its spirit occupies. You can see and hear all the creatures who have joined in the assembly, and they can see and hear you and each other as if they were present (which they are, astrally). They can't interact with anything physically.\n\nA creature can end the spell's effect on itself voluntarily at any time, as can you. When the effect ends or the duration expires, a creature's spirit returns to its body and it regains consciousness. A creature that withdraws voluntarily from the assembly can't rejoin it even if the spell is still active. If a gem is broken while occupied by a creature's astral self, the spirit in the gem returns to its body and the creature suffers two levels of exhaustion.", - "document": "deepm", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Unlimited", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a spool of fine copper wire and a gem worth at least 100 gp for each target", - "material_cost": "100.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "awaken-object", - "fields": { - "name": "Awaken Object", - "desc": "After spending the casting time enchanting a ruby along with a Large or smaller nonmagical object in humanoid form, you touch the ruby to the object. The ruby dissolves into the object, which becomes a living construct imbued with sentience. If the object has no face, a humanoid face appears on it in an appropriate location. The awakened object's statistics are determined by its size, as shown on the table below. An awakened object can use an action to make a melee weapon attack against a target within 5 feet of it. It has free will, acts independently, and speaks one language you know. It is initially friendly to anyone who assisted in its creation.\n\nAn awakened object's speed is 30 feet. If it has no apparent legs or other means of moving, it gains a flying speed of 30 feet and it can hover. Its sight and hearing are equivalent to a typical human's senses. Intelligence, Wisdom, and Charisma can be adjusted up or down by the GM to fit unusual circumstances. A beautiful statue might awaken with increased Charisma, for example, or the bust of a great philosopher could have surprisingly high Wisdom.\n\nAn awakened object needs no air, food, water, or sleep. Damage to an awakened object can be healed or mechanically repaired.\n\n| Size | HP | AC | Attack | Str | Dex | Con | Int | Wis | Cha |\n|-|-|-|-|-|-|-|-|-|-|\n| T | 20 | 18 | +8 to hit, 1d4 + 4 damage | 4 | 18 | 10 | 2d6 | 2d6 | 2d6 |\n| S | 25 | 16 | +6 to hit, 1d8 + 2 damage | 6 | 14 | 10 | 3d6 | 2d6 | 2d6 |\n| M | 40 | 13 | +5 to hit, 2d6 + 1 damage | 10 | 12 | 10 | 3d6 | 3d6 | 2d6 |\n| L | 50 | 10 | +6 to hit, 2d10 + 2 damage | 14 | 10 | 10 | 3d6 | 3d6 | 2d6 + 2 |\n\n", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a ruby worth at least 1,000 gp, which the spell consumes", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bad-timing", - "fields": { - "name": "Bad Timing", - "desc": "You point toward a creature that you can see and twist strands of chaotic energy around its fate. If the target gets a failure on a Charisma saving throw, the next attack roll or ability check the creature attempts within 10 minutes is made with disadvantage.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "batsense", - "fields": { - "name": "Batsense", - "desc": "For the duration of the spell, a creature you touch can produce and interpret squeaking sounds used for echolocation, giving it blindsight out to a range of 60 feet. The target cannot use its blindsight while deafened, and its blindsight doesn't penetrate areas of magical silence. While using blindsight, the target has disadvantage on Dexterity (Stealth) checks that rely on being silent. Additionally, the target has advantage on Wisdom (Perception) checks that rely on hearing.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a bit of fur from a bat’s ear", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "become-nightwing", - "fields": { - "name": "Become Nightwing", - "desc": "This spell imbues you with wings of shadow. For the duration of the spell, you gain a flying speed of 60 feet and a new attack action: Nightwing Breath.\n\n***Nightwing Breath (Recharge 4–6).*** You exhale shadow‐substance in a 30-foot cone. Each creature in the area takes 5d6 necrotic damage, or half the damage with a successful Dexterity saving throw.", - "document": "deepm", - "level": 6, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a crow’s eye", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d6", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "beguiling-bet", - "fields": { - "name": "Beguiling Bet", - "desc": "You issue a challenge against one creature you can see within range, which must make a successful Wisdom saving throw or become charmed. On a failed save, you can make an ability check as a bonus action. For example, you could make a Strength (Athletics) check to climb a difficult surface or to jump as high as possible; you could make a Dexterity (Acrobatics) check to perform a backflip; or you could make a Charisma (Performance) check to sing a high note or to extemporize a clever rhyme. You can choose to use your spellcasting ability modifier in place of the usual ability modifier for this check, and you add your proficiency bonus if you're proficient in the skill being used.\n\nThe charmed creature must use its next action (which can be a legendary action) to make the same ability check in a contest against your check. Even if the creature can't perform the action—it may not be close enough to a wall to climb it, or it might not have appendages suitable for strumming a lute—it must still attempt the action to the best of its capability. If you win the contest, the spell (and the contest) continues, with you making a new ability check as a bonus action on your turn. The spell ends when it expires or when the creature wins the contest. ", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for every two slot levels above 2nd. Each creature must be within 30 feet of another creature when you cast the spell.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "benediction", - "fields": { - "name": "Benediction", - "desc": "You call down a blessing in the name of an angel of protection. A creature you can see within range shimmers with a faint white light. The next time the creature takes damage, it rolls a d4 and reduces the damage by the result. The spell then ends.", - "document": "deepm", - "level": 0, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "bestial-fury", - "fields": { - "name": "Bestial Fury", - "desc": "You instill primal fury into a creature you can see within range. The target must make a Charisma saving throw; a creature can choose to fail this saving throw. On a failure, the target must use its action to attack its nearest enemy it can see with unarmed strikes or natural weapons. For the duration, the target’s attacks deal an extra 1d6 damage of the same type dealt by its weapon, and the target can’t be charmed or frightened. If there are no enemies within reach, the target can use its action to repeat the saving throw, ending the effect on a success.\n\nThis spell has no effect on undead or constructs.\n", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "binding-oath", - "fields": { - "name": "Binding Oath", - "desc": "You seal an agreement between two or more willing creatures with an oath in the name of the god of justice, using ceremonial blessings during which both the oath and the consequences of breaking it are set: if any of the sworn break this vow, they are struck by a curse. For each individual that does so, you choose one of the options given in the [bestow curse](https://api.open5e.com/spells/bestow-curse) spell. When the oath is broken, all participants are immediately aware that this has occurred, but they know no other details.\n\nThe curse effect of binding oath can’t be dismissed by [dispel magic](https://api.open5e.com/spells/dispel-magic), but it can be removed with [dispel evil and good](https://api.open5e.com/spells/dispel-evil-and-good)[remove curse](https://api.open5e.com/remove-curse), or [wish](https://api.open5e.com/spells/wish). Remove curse functions only if the spell slot used to cast it is equal to or higher than the spell slot used to cast **binding oath**. Depending on the nature of the oath, one creature’s breaking it may or may not invalidate the oath for the other targets. If the oath is completely broken, the spell ends for every affected creature, but curse effects already bestowed remain until dispelled.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "biting-arrow", - "fields": { - "name": "Biting Arrow", - "desc": "As part of the action used to cast this spell, you make a ranged weapon attack with a bow, a crossbow, or a thrown weapon. The effect is limited to a range of 120 feet despite the weapon’s range, and the attack is made with disadvantage if the target is in the weapon’s long range.\n\nIf the weapon attack hits, it deals damage as usual. In addition, the target becomes coated in thin frost until the start of your next turn. If the target uses its reaction before the start of your next turn, it immediately takes 1d6 cold damage and the spell ends.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "The spell’s damage, for both the ranged attack and the cold damage, increases by 1d6 when you reach 5th level (+1d6 and 2d6), 11th level (+2d6 and 3d6), and 17th level (+3d6 and 4d6).", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "an arrow or a thrown weapon", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "cold" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bitter-chains", - "fields": { - "name": "Bitter Chains", - "desc": "The spiked ring in your hand expands into a long, barbed chain to ensnare a creature you touch. Make a melee spell attack against the target. On a hit, the target is bound in metal chains for the duration. While bound, the target can move only at half speed and has disadvantage on attack rolls, saving throws, and Dexterity checks. If it moves more than 5 feet during a turn, it takes 3d6 piercing damage from the barbs.\n\nThe creature can escape from the chains by using an action and making a successful Strength or Dexterity check against your spell save DC, or if the chains are destroyed. The chains have AC 18 and 20 hit points.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a spiked metal ring", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": true, - "damage_roll": "3d6", - "damage_types": [ - "piercing" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "black-goats-blessing", - "fields": { - "name": "Black Goat’s Blessing", - "desc": "You raise your hand with fingers splayed and utter an incantation of the Black Goat with a Thousand Young. Your magic is blessed with the eldritch virility of the All‑Mother. The target has disadvantage on saving throws against spells you cast until the end of your next turn.", - "document": "deepm", - "level": 0, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "black-hand", - "fields": { - "name": "Black Hand", - "desc": "You gather the powers of darkness into your fist and fling dark, paralyzing flame at a target within 30 feet. If you make a successful ranged spell attack, this spell siphons vitality from the target into you. For the duration, the target has disadvantage (and you have advantage) on attack rolls, ability checks, and saving throws made with Strength, Dexterity, or Constitution. An affected target makes a Constitution saving throw (with disadvantage) at the end of its turn, ending the effect on a success.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "black-ribbons", - "fields": { - "name": "Black Ribbons", - "desc": "You pull pieces of the plane of shadow into your own reality, causing a 20-foot cube to fill with inky ribbons that turn the area into difficult terrain and wrap around nearby creatures. Any creature that ends its turn in the area becomes restrained by the ribbons until the end of its next turn, unless it makes a successful Dexterity saving throw. Once a creature succeeds on this saving throw, it can’t be restrained again by the ribbons, but it’s still affected by the difficult terrain.", - "document": "deepm", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "40 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of ribbon", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "black-sunshine", - "fields": { - "name": "Black Sunshine", - "desc": "You hold up a flawed pearl and it disappears, leaving behind a magic orb in your hand that pulses with dim purple light. Allies that you designate become invisible if they're within 60 feet of you and if light from the orb can reach the space they occupy. An invisible creature still casts a faint, purple shadow.\n\nThe orb can be used as a thrown weapon to attack an enemy. On a hit, the orb explodes in a flash of light and the spell ends. The targeted enemy and each creature within 10 feet of it must make a successful Dexterity saving throw or be blinded for 1 minute. A creature blinded in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "deepm", - "level": 8, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a discolored pearl, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "black-swan-storm", - "fields": { - "name": "Black Swan Storm", - "desc": "You call forth a whirlwind of black feathers that fills a 5-foot cube within range. The feathers deal 2d8 force damage to creatures in the cube’s area and radiate darkness, causing the illumination level within 20 feet of the cube to drop by one step (from bright light to dim light, and from dim light to darkness). Creatures that make a successful Dexterity saving throw take half the damage and are still affected by the change in light.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the feathers deal an extra 1d8 force damage for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a feather from a black swan", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "black-well", - "fields": { - "name": "Black Well", - "desc": "You summon a seething sphere of dark energy 5 feet in diameter at a point within range. The sphere pulls creatures toward it and devours the life force of those it envelops. Every creature other than you that starts its turn within 90 feet of the black well must make a successful Strength saving throw or be pulled 50 feet toward the well. A creature pulled into the well takes 6d8 necrotic damage and is stunned; a successful Constitution saving throw halves the damage and causes the creature to become incapacitated. A creature that starts its turn inside the well also makes a Constitution saving throw; the creature is stunned on a failed save or incapacitated on a success. An incapacitated creature that leaves the well recovers immediately and can take actions and reactions on that turn. A creature takes damage only upon entering the well—it takes no additional damage for remaining there—but if it leaves the well and is pulled back in again, it takes damage again. A total of nine Medium creatures, three Large creatures, or one Huge creature can be inside the well’s otherdimensional space at one time. When the spell’s duration ends, all creatures inside it tumble out in a heap, landing prone.\n", - "document": "deepm", - "level": 6, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage dealt by the well increases by 1d8—and the well pulls creatures an additional 5 feet—for each slot level above 6th.", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "blade-of-my-brother", - "fields": { - "name": "Blade of my Brother", - "desc": "You touch a melee weapon that was used by an ally who is now dead, and it leaps into the air and flies to another ally (chosen by you) within 15 feet of you. The weapon enters that ally’s space and moves when the ally moves. If the weapon or the ally is forced to move more than 5 feet from the other, the spell ends.\n\nThe weapon acts on your turn by making an attack if a target presents itself. Its attack modifier equals your spellcasting level + the weapon’s inherent magical bonus, if any; it receives only its own inherent magical bonus to damage. The weapon fights for up to 4 rounds or until your concentration is broken, after which the spell ends and it falls to the ground.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "melee weapon owned by a dead ally of the target", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "4 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "blade-of-wrath", - "fields": { - "name": "Blade of Wrath", - "desc": "You create a sword of pure white fire in your free hand. The blade is similar in size and shape to a longsword, and it lasts for the duration. The blade disappears if you let go of it, but you can call it forth again as a bonus action.\n\nYou can use your action to make a melee spell attack with the blade. On a hit, the target takes 2d8 fire damage and 2d8 radiant damage. An aberration, fey, fiend, or undead creature damaged by the blade must succeed on a Wisdom saving throw or be frightened until the start of your next turn.\n\nThe blade sheds bright light in a 20-foot radius and dim light for an additional 20 feet.\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, either the fire damage or the radiant damage (your choice) increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a rebuke of evil, written in Celestial", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": true, - "damage_roll": "2d8", - "damage_types": [ - "fire" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "blazing-chariot", - "fields": { - "name": "Blazing Chariot", - "desc": "Calling upon the might of the angels, you conjure a flaming chariot made of gold and mithral in an unoccupied 10-foot‐square space you can see within range. Two horses made of fire and light pull the chariot. You and up to three other Medium or smaller creatures you designate can board the chariot (at the cost of 5 feet of movement) and are unharmed by the flames. Any other creature that touches the chariot or hits it (or a creature riding in it) with a melee attack while within 5 feet of the chariot takes 3d6 fire damage and 3d6 radiant damage. The chariot has AC 18 and 50 hit points, is immune to fire, poison, psychic, and radiant damage, and has resistance to all other nonmagical damage. The horses are not separate creatures but are part of the chariot. The chariot vanishes if it is reduced to 0 hit points, and any creature riding it falls out. The chariot has a speed of 50 feet and a flying speed of 40 feet.\n\nOn your turn, you can guide the chariot in place of your own movement. You can use a bonus action to direct it to take the Dash, Disengage, or Dodge action. As an action, you can use the chariot to overrun creatures in its path. On this turn, the chariot can enter a hostile creature’s space. The creature takes damage as if it had touched the chariot, is shunted to the nearest unoccupied space that it can occupy, and must make a successful Strength saving throw or fall prone in that space.", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small golden wheel worth 250 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "fire" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bleating-call", - "fields": { - "name": "Bleating Call", - "desc": "You create a sound on a point within range. The sound’s volume can range from a whisper to a scream, and it can be any sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.\n\nEach creature that starts its turn within 30 feet of the sound and can hear it must make a Wisdom saving throw. On a failed save, the target must take the Dash or Disengage action and move toward the sound by the safest available route on each of its turns. When it arrives to the source of the sound, the target must use its action to examine the sound. Once it has examined the sound, the target determines the sound is illusory and can no longer hear it, ending the spell’s effects on that target and preventing the target from being affected by the sound again for the duration of the spell. If a target takes damage from you or a creature friendly to you, it is no longer under the effects of this spell.\n\nCreatures that can’t be charmed are immune to this spell.", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "a bit of fur or hair from a young beast or humanoid", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bleed", - "fields": { - "name": "Bleed", - "desc": "Crackling energy coats the blade of one weapon you are carrying that deals slashing damage. Until the spell ends, when you hit a creature with the weapon, the weapon deals an extra 1d4 necrotic damage and the creature must make a Constitution saving throw. On a failed save, the creature suffers a bleeding wound. Each time you hit a creature with this weapon while it suffers from a bleeding wound, your weapon deals an extra 1 necrotic damage for each time you have previously hit the creature with this weapon (to a maximum of 10 necrotic damage).\n\nAny creature can take an action to stanch the bleeding wound by succeeding on a Wisdom (Medicine) check against your spell save DC. The wound also closes if the target receives magical healing. This spell has no effect on undead or constructs.", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "bless-the-dead", - "fields": { - "name": "Bless the Dead", - "desc": "You grant a blessing to one deceased creature, enabling it to cross over to the realm of the dead in peace. A creature that benefits from **bless the dead** can’t become undead. The spell has no effect on living creatures or the undead.", - "document": "deepm", - "level": 0, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "blessed-halo", - "fields": { - "name": "Blessed Halo", - "desc": "A nimbus of golden light surrounds your head for the duration. The halo sheds bright light in a 20-foot radius and dim light for an additional 20 feet.\n\nThis spell grants you a pool of 10 points of healing. When you cast the spell and as an action on subsequent turns during the spell’s duration, you can expend points from this pool to restore an equal number of hit points to one creature within 20 feet that you can see.\n\nAdditionally, you have advantage on Charisma checks made against good creatures within 20 feet.\n\nIf any of the light created by this spell overlaps an area of magical darkness created by a spell of 2nd level or lower, the spell that created the darkness is dispelled.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the spell’s pool of healing points increases by 5 for each spell slot above 2nd, and the spell dispels magical darkness created by a spell of a level equal to the slot used to cast this spell.", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "blizzard", - "fields": { - "name": "Blizzard", - "desc": "A howling storm of thick snow and ice crystals appears in a cylinder 40 feet high and 40 feet in diameter within range. The area is heavily obscured by the swirling snow. When the storm appears, each creature in the area takes 8d8 cold damage, or half as much damage with a successful Constitution saving throw. A creature also makes this saving throw and takes damage when it enters the area for the first time on a turn or ends its turn there. In addition, a creature that takes cold damage from this spell has disadvantage on Constitution saving throws to maintain concentration until the start of its next turn.", - "document": "deepm", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d8", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "blood-and-steel", - "fields": { - "name": "Blood and Steel", - "desc": "When you cast this spell, you cut your hand and take 1d4 slashing damage that can’t be healed until you take a long rest. You then touch a construct; it must make a successful Constitution saving throw or be charmed by you for the duration. If you or your allies are fighting the construct, it has advantage on the saving throw. Even constructs that are immune to charm effects can be affected by this spell.\n\nWhile the construct is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as, “Attack the ghouls,” “Block the bridge,” or, “Fetch that bucket.” If the construct completes the order and doesn’t receive further direction from you, it defends itself.\n\nYou can use your action to take total and precise control of the target. Until the end of your next turn, the construct takes only the actions you specify and does nothing you haven’t ordered it to do. During this time, you can also cause the construct to use a reaction, but doing this requires you to use your own reaction as well.\n\nEach time the construct takes damage, it makes a new Constitution saving throw against the spell. If the saving throw succeeds, the spell ends.\n\nIf the construct is already under your control when the spell is cast, it gains an Intelligence of 10 (unless its own Intelligence is higher, in which case it retains the higher score) for 4 hours. The construct is capable of acting independently, though it remains loyal to you for the spell’s duration. You can also grant the target a bonus equal to your Intelligence modifier on one skill in which you have proficiency.\n", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a 5th‑level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "blood-armor", - "fields": { - "name": "Blood Armor", - "desc": "When you strike a foe with a melee weapon attack, you can immediately cast **blood armor** as a bonus action. The foe you struck must contain blood; if the target doesn’t bleed, the spell ends without effect. The blood flowing from your foe magically increases in volume and forms a suit of armor around you, granting you an Armor Class of 18 + your Dexterity modifier for the spell’s duration. This armor has no Strength requirement, doesn’t hinder spellcasting, and doesn’t incur disadvantage on Dexterity (Stealth) checks.\n\nIf the creature you struck was a celestial, **blood armor** also grants you advantage on Charisma saving throws for the duration of the spell.", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "you must have just struck a foe with a melee weapon", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "blood-lure", - "fields": { - "name": "Blood Lure", - "desc": "You point at any location (a jar, a bowl, even a puddle) within range that contains at least a pint of blood. Each creature that feeds on blood and is within 60 feet of that location must make a Charisma saving throw. (This includes undead, such as vampires.) A creature that has Keen Smell or any similar scent-boosting ability has disadvantage on the saving throw, while undead have advantage on the saving throw. On a failed save, the creature is attracted to the blood and must move toward it unless impeded.\n\nOnce an affected creature reaches the blood, it tries to consume it, foregoing all other actions while the blood is present. A successful attack against an affected creature ends the effect, as does the consumption of the blood, which requires an action by an affected creature.", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a container or pool of blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "blood-offering", - "fields": { - "name": "Blood Offering", - "desc": "You touch the corpse of a creature that isn’t undead or a construct and consume its life force. You must have dealt damage to the creature before it died, and it must have been dead for no more than 1 hour. You regain a number of hit points equal to 1d4 × the creature's challenge rating (minimum of 1d4). The creature can be restored to life only by means of a [true resurrection](https://api.open5e.com/spells/true-resurrection) or a [wish](https://api.open5e.com/spells/wish) spell.", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "blood-puppet", - "fields": { - "name": "Blood Puppet", - "desc": "With a sample of its blood, you are able to magically control a creature’s actions, like a marionette on magical strings. Choose a creature you can see within range whose blood you hold. The target must succeed on a Constitution saving throw, or you gain control over its physical activity (as long as you interact with the blood material component each round). As a bonus action on your turn, you can direct the creature to perform various activities. You can specify a simple and general course of action, such as, “Attack that creature,” “Run over there,” or, “Fetch that object.” If the creature completes the order and doesn’t receive further direction from you, it defends and preserves itself to the best of its ability. The target is aware of being controlled. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a drop of blood from the target", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "blood-scarab", - "fields": { - "name": "Blood Scarab", - "desc": "Your blood is absorbed into the beetle’s exoskeleton to form a beautiful, rubylike scarab that flies toward a creature of your choice within range. The target must make a successful Constitution saving throw or take 1d6 necrotic damage. You gain temporary hit points equal to the necrotic damage dealt.\n", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the number of scarabs increases by one for each slot level above 1st. You can direct the scarabs at the same target or at different targets. Each target makes a single saving throw, regardless of the number of scarabs targeting it.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a drop of the caster’s blood, and the exoskeleton of a scarab beetle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "blood-spoor", - "fields": { - "name": "Blood Spoor", - "desc": "By touching a drop of your quarry’s blood (spilled or drawn within the past hour), you can follow the creature’s trail unerringly across any surface or under water, no matter how fast you are moving. If your quarry takes flight, you can follow its trail along the ground—or through the air, if you have the means to fly.\n\nIf your quarry moves magically (such as by way of a [dimension door](https://api.open5e.com/spells/dimension-door) or a [teleport](https://api.open5e.com/spells/teleport) spell), you sense its trail as a straight path leading from where the magical movement started to where it ended. Such a route might lead through lethal or impassable barriers. This spell even reveals the route of a creature using [pass without trace](https://api.open5e.com/spells/pass-without-trace), but it fails to locate a creature protected by [nondetection](https://api.open5e.com/spells/nondetection) or by other effects that prevent [scrying](https://api.open5e.com/spells/scrying) spells or cause [divination](https://api.open5e.com/spells/divination) spells to fail. If your quarry moves to another plane, its trail ends without trace, but **blood spoor** picks up the trail again if the caster moves to the same plane as the quarry before the spell’s duration expires.", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of the quarry’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "blood-tide", - "fields": { - "name": "Blood Tide", - "desc": "When you cast this spell, a creature you designate within range must succeed on a Constitution saving throw or bleed from its nose, eyes, ears, and mouth. This bleeding deals no damage but imposes a –2 penalty on the creature’s Intelligence, Charisma, and Wisdom checks. **Blood tide** has no effect on undead or constructs.\n\nA bleeding creature might attract the attention of creatures such as stirges, sharks, or giant mosquitoes, depending on the circumstances.\n\nA [cure wounds](https://api.open5e.com/spells/cure-wounds) spell stops the bleeding before the duration of blood tide expires, as does a successful DC 10 Wisdom (Medicine) check.", - "document": "deepm", - "level": 0, - "school": "necromancy", - "higher_level": "The spell’s duration increases to 2 minutes when you reach 5th level, to 10 minutes when you reach 11th level, and to 1 hour when you reach 17th level.", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "4 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "blood-to-acid", - "fields": { - "name": "Blood to Acid", - "desc": "When you cast this spell, you designate a creature within range and convert its blood into virulent acid. The target must make a Constitution saving throw. On a failed save, it takes 10d12 acid damage and is stunned by the pain for 1d4 rounds. On a successful save, it takes half the damage and isn’t stunned.\n\nCreatures without blood, such as constructs and plants, are not affected by this spell. If **blood to acid** is cast on a creature composed mainly of blood, such as a [blood elemental](https://api.open5e.com/monsters/blood-elemental) or a [blood zombie](https://api.open5e.com/monsters/blood-zombie), the creature is slain by the spell if its saving throw fails.", - "document": "deepm", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d12", - "damage_types": [ - "acid" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bloodhound", - "fields": { - "name": "Bloodhound", - "desc": "You touch a willing creature to grant it an enhanced sense of smell. For the duration, that creature has advantage on Wisdom (Perception) checks that rely on smell and Wisdom (Survival) checks to follow tracks.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a 3rd-level spell slot, you also grant the target blindsight out to a range of 30 feet for the duration.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of ammonia", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bloodshot", - "fields": { - "name": "Bloodshot", - "desc": "You launch a jet of boiling blood from your eyes at a creature within range. You take 1d6 necrotic damage and make a ranged spell attack against the target. If the attack hits, the target takes 2d10 fire damage plus 2d8 psychic damage.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the fire damage increases by 1d10 for each slot level above 2nd.", - "target_type": "creature", - "range": "40 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "2d10", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bloody-hands", - "fields": { - "name": "Bloody Hands", - "desc": "You cause the hands (or other appropriate body parts, such as claws or tentacles) of a creature within range to bleed profusely. The target must succeed on a Constitution saving throw or take 1 necrotic damage each round and suffer disadvantage on all melee and ranged attack rolls that require the use of its hands for the spell’s duration.\n\nCasting any spell that has somatic or material components while under the influence of this spell requires a DC 10 Constitution saving throw. On a failed save, the spell is not cast but it is not lost; the casting can be attempted again in the next round.", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "bloody-smite", - "fields": { - "name": "Bloody Smite", - "desc": "The next time during the spell’s duration that you hit a creature with a melee weapon attack, your weapon pulses with a dull red light, and the attack deals an extra 1d6 necrotic damage to the target. Until the spell ends, the target must make a Constitution saving throw at the start of each of its turns. On a failed save, it takes 1d6 necrotic damage, it bleeds profusely from the mouth, and it can’t speak intelligibly or cast spells that have a verbal component. On a successful save, the spell ends. If the target or an ally within 5 feet of it uses an action to tend the wound and makes a successful Wisdom (Medicine) check against your spell save DC, or if the target receives magical healing, the spell ends.", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "bloom", - "fields": { - "name": "Bloom", - "desc": "You plant a silver acorn in solid ground and spend an hour chanting a litany of praises to the natural world, after which the land within 1 mile of the acorn becomes extremely fertile, regardless of its previous state. Any seeds planted in the area grow at twice the natural rate. Food harvested regrows within a week. After one year, the land slowly reverts to its normal fertility, unable to stave off the march of nature.\n\nChoose one of the following effects, which appears and grows immediately:\n* A field planted with vegetables of your choice, ready for harvest.\n* A thick forest of stout trees and ample undergrowth.\n* A grassland with wildflowers and fodder for grazing.\n* An orchard of fruit trees of your choice, growing in orderly rows and ready for harvest.\nLiving creatures that take a short rest within the area of a bloom spell receive the maximum hit points for Hit Dice expended. **Bloom** counters the effects of a [desolation](https://api.open5e.com/spells/desolation) spell.\n\n***Ritual Focus.*** If you expend your ritual focus, the duration becomes permanent.", - "document": "deepm", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "1 mile", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a silver acorn worth 500 gp, which is consumed in the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 year", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "boiling-blood", - "fields": { - "name": "Boiling Blood", - "desc": "You cause the blood within a creature’s body to boil with supernatural heat. Choose one creature that you can see within range that isn’t a construct or an undead. The target must make a Constitution saving throw. On a successful save, it takes 2d6 fire damage and the spell ends. On a failed save, the creature takes 4d6 fire damage and is blinded. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends. On a failure, the creature takes an additional 2d6 fire damage and remains blinded.\n", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "boiling-oil", - "fields": { - "name": "Boiling Oil", - "desc": "You conjure a shallow, 15-foot-radius pool of boiling oil centered on a point within range. The pool is difficult terrain, and any creature that enters the pool or starts its turn there must make a Dexterity saving throw. On a failed save, the creature takes 3d8 fire damage and falls prone. On a successful save, a creature takes half as much damage and doesn’t fall prone.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of oil", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "bolster-undead", - "fields": { - "name": "Bolster Undead", - "desc": "You suffuse an area with negative energy to increase the difficulty of harming or affecting undead creatures.\n\nChoose up to three undead creatures within range. When a targeted creature makes a saving throw against being turned or against spells or effects that deal radiant damage, the target has advantage on the saving throw.\n", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional undead creature for each slot level above 1st.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a sprinkle of unholy water", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "booster-shot", - "fields": { - "name": "Booster Shot", - "desc": "You imbue a two-handed ranged weapon (typically a shortbow, longbow, light crossbow, or heavy crossbow) that you touch with a random magical benefit. While the spell lasts, a projectile fired from the weapon has an effect that occurs on a hit in addition to its normal damage. Roll a d6 to determine the additional effect for each casting of this spell.\n\n| D6 | EFFECT |\n|-|-|\n| 1 | 2d10 acid damage to all creatures within 10 feet of the target |\n| 2 | 2d10 lightning damage to the target and 1d10 lightning damage to all creatures in a 5-foot-wide line between the weapon and the target |\n| 3 | 2d10 necrotic damage to the target, and the target has disadvantage on its first attack roll before the start of the weapon user’s next turn |\n| 4 | 2d10 cold damage to the target and 1d10 cold damage to all other creatures in a 60-foot cone in front of the weapon |\n| 5 | 2d10 force damage to the target, and the target is pushed 20 feet |\n| 6 | 2d10 psychic damage to the target, and the target is stunned until the start of the weapon user’s next turn |\n\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, all damage increases by 1d10 for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "line", - "shape_magnitude": 60, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "boreass-breath", - "fields": { - "name": "Boreas’s Breath", - "desc": "You freeze standing water in a 20-foot cube or running water in a 10-foot cube centered on you. The water turns to solid ice. The surface becomes difficult terrain, and any creature that ends its turn on the ice must make a successful DC 10 Dexterity saving throw or fall prone.\n\nCreatures that are partially submerged in the water when it freezes become restrained. While restrained in this way, a creature takes 1d6 cold damage at the end of its turn. It can break free by using an action to make a successful Strength check against your spell save DC.\n\nCreatures that are fully submerged in the water when it freezes become incapacitated and cannot breathe. While incapacitated in this way, a creature takes 2d6 cold damage at the end of its turn. A trapped creature makes a DC 20 Strength saving throw after taking this damage at the end of its turn, breaking free from the ice on a success.\n\nThe ice has AC 10 and 15 hit points. It is vulnerable to fire damage, has resistance to nonmagical slashing and piercing damage, and is immune to cold, necrotic, poison, psychic, and thunder damage.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the size of the cube increases by 10 feet for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bottled-arcana", - "fields": { - "name": "Bottled Arcana", - "desc": "By touching an empty, stoppered glass container such as a vial or flask, you magically enable it to hold a single spell. To be captured, the spell must be cast within 1 round of casting **bottled arcana** and it must be intentionally cast into the container. The container can hold one spell of 3rd level or lower. The spell can be held in the container for as much as 24 hours, after which the container reverts to a mundane vessel and any magic inside it dissipates harmlessly.\n\nAs an action, any creature can unstop the container, thereby releasing the spell. If the spell has a range of self, the creature opening the container is affected; otherwise, the creature opening the container designates the target according to the captured spell’s description. If a creature opens the container unwittingly (not knowing that the container holds a spell), the spell targets the creature opening the container or is centered on its space instead (whichever is more appropriate). [Dispel magic](https://api.open5e.com/spells/dispel-magic) cast on the container targets **bottled arcana**, not the spell inside. If **bottled arcana** is dispelled, the container becomes mundane and the spell inside dissipates harmlessly.\n\nUntil the spell in the container is released, its caster can’t regain the spell slot used to cast that spell. Once the spell is released, its caster regains the use of that slot normally.\n", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the level of the spell the container can hold increases by one for every slot level above 5th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an empty glass container", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "see below", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bottomless-stomach", - "fields": { - "name": "Bottomless Stomach", - "desc": "When you cast this spell, you gain the ability to consume dangerous substances and contain them in an extradimensional reservoir in your stomach. The spell allows you to swallow most liquids, such as acids, alcohol, poison, and even quicksilver, and hold them safely in your stomach. You are unaffected by swallowing the substance, but the spell doesn’t give you resistance or immunity to the substance in general; for example, you could safely drink a bucket of a black dragon’s acidic spittle, but you’d still be burned if you were caught in the dragon’s breath attack or if that bucket of acid were dumped over your head.\n\nThe spell allows you to store up to 10 gallons of liquid at one time. The liquid doesn’t need to all be of the same type, and different types don’t mix while in your stomach. Any liquid in excess of 10 gallons has its normal effect when you try to swallow it.\n\nAt any time before you stop concentrating on the spell, you can regurgitate up to 1 gallon of liquid stored in your stomach as a bonus action. The liquid is vomited into an adjacent 5-foot square. A target in that square must succeed on a DC 15 Dexterity saving throw or be affected by the liquid. The GM determines the exact effect based on the type of liquid regurgitated, using 1d6 damage of the appropriate type as the baseline.\n\nWhen you stop concentrating on the spell, its duration expires, or it’s dispelled, the extradimensional reservoir and the liquid it contains cease to exist.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "breathtaking-wind", - "fields": { - "name": "Breathtaking Wind", - "desc": "You target a creature with a blast of wintry air. That creature must make a successful Constitution saving throw or become unable to speak or cast spells with a vocal component for the duration of the spell.", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "breeze-compass", - "fields": { - "name": "Breeze Compass", - "desc": "When you cast **breeze compass**, you must clearly imagine or mentally describe a location. It doesn’t need to be a location you’ve been to as long as you know it exists on the Material Plane. Within moments, a gentle breeze arises and blows along the most efficient path toward that destination. Only you can sense this breeze, and whenever it brings you to a decision point (a fork in a passageway, for example), you must make a successful DC 8 Intelligence (Arcana) check to deduce which way the breeze indicates you should go. On a failed check, the spell ends. The breeze guides you around cliffs, lava pools, and other natural obstacles, but it doesn’t avoid enemies or hostile creatures.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a magnetized needle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "brimstone-infusion", - "fields": { - "name": "Brimstone Infusion", - "desc": "You infuse an ordinary flask of alchemist's fire with magical brimstone. While so enchanted, the alchemist's fire can be thrown 40 feet instead of 20, and it does 2d6 fire damage instead of 1d4. The Dexterity saving throw to extinguish the flames uses your spell save DC instead of DC 10. Infused alchemist's fire returns to its normal properties after 24 hours.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a flask of alchemist's fire and 5 gp worth of brimstone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "brittling", - "fields": { - "name": "Brittling", - "desc": "This spell uses biting cold to make a metal or stone object you touch become brittle and more easily shattered. The object’s hit points are reduced by a number equal to your level as a spellcaster, and Strength checks to shatter or break the object are made with advantage if they occur within 1 minute of the spell’s casting. If the object isn’t shattered during this time, it reverts to the state it was in before the spell was cast.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an icicle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "broken-charge", - "fields": { - "name": "Broken Charge", - "desc": "When an enemy that you can see moves to within 5 feet of you, you utter a perplexing word that alters the foe’s course. The enemy must make a successful Wisdom saving throw or take 2d4 psychic damage and use the remainder of its speed to move in a direction of your choosing.\n", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the target takes an additional 2d4 psychic damage for each slot level above 1st.", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "by-the-light-of-the-moon", - "fields": { - "name": "By the Light of the Moon", - "desc": "The area within 30 feet of you becomes bathed in magical moonlight. In addition to providing dim light, it highlights objects and locations that are hidden or that hold a useful clue. Until the spell ends, all Wisdom (Perception) and Intelligence (Investigation) checks made in the area are made with advantage.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "by-the-light-of-the-watchful-moon", - "fields": { - "name": "By the Light of the Watchful Moon", - "desc": "Regardless of the time of day or your location, you command the watchful gaze of the moon to illuminate threats to you and your allies. Shafts of bright moonlight, each 5 feet wide, shine down from the sky (or from the ceiling if you are indoors), illuminating all spaces within range that contain threats, whether they are enemies, traps, or hidden hazards. An enemy creature that makes a successful Charisma saving throw resists the effect and is not picked out by the moon’s glow.\n\nThe glow does not make invisible creatures visible, but it does indicate an invisible creature’s general location (somewhere within the 5-foot beam). The light continues to illuminate any target that moves, but a target that moves out of the spell’s area is no longer illuminated. A threat that enters the area after the spell is cast is not subject to the spell’s effect.", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "call-shadow-mastiff", - "fields": { - "name": "Call Shadow Mastiff", - "desc": "You conjure a [shadow mastiff](https://api.open5e.com/monsters/shadow-mastiff) from the plane of shadow. This creature obeys your verbal commands to aid you in battle or to seek out a specific creature. It has the body of a large dog with a smooth black coat, 2 feet high at the shoulder and weighing 200 pounds.\n\nThe mastiff is friendly to you and your companions. Roll initiative for the mastiff; it acts on its own turn. It obeys simple, verbal commands from you, within its ability to act. Giving a command takes no action on your part.\n\nThe mastiff disappears when it drops to 0 hit points or when the spell ends.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dog’s tooth", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "calm-of-the-storm", - "fields": { - "name": "Calm of the Storm", - "desc": "While visualizing the world as you wish it was, you lay your hands upon a creature other than yourself and undo the effect of a chaos magic surge that affected the creature within the last minute. Reality reshapes itself as if the surge never happened, but only for that creature.\n", - "document": "deepm", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the time since the chaos magic surge can be 1 minute longer for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an amethyst worth 250 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "candles-insight", - "fields": { - "name": "Candle’s Insight", - "desc": "**Candle’s insight** is cast on its target as the component candle is lit. The candle burns for up to 10 minutes unless it’s extinguished normally or by the spell’s effect. While the candle burns, the caster can question the spell’s target, and the candle reveals whether the target speaks truthfully. An intentionally misleading or partial answer causes the flame to flicker and dim. An outright lie causes the flame to flare and then go out, ending the spell. The candle judges honesty, not absolute truth; the flame burns steadily through even an outrageously false statement, as long as the target believes it’s true.\n\n**Candle’s insight** is used across society: by merchants while negotiating deals, by inquisitors investigating heresy, and by monarchs as they interview foreign diplomats. In some societies, casting candle’s insight without the consent of the spell’s target is considered a serious breach of hospitality.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a blessed candle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "carmello-voltas-irksome-preserves", - "fields": { - "name": "Carmello-Volta’s Irksome Preserves", - "desc": "At your command, delicious fruit jam oozes from a small mechanical device (such as a crossbow trigger, a lock, or a clockwork toy), rendering the device inoperable until the spell ends and the device is cleaned with a damp cloth. Cleaning away the jam takes an action, but doing so has no effect until the spell ends. One serving of the jam can be collected in a suitable container. If it's eaten (as a bonus action) within 24 hours, the jam restores 1d4 hit points. The jam's flavor is determined by the material component.\n\nThe spell can affect constructs, with two limitations. First, the target creature negates the effect with a successful Dexterity saving throw. Second, unless the construct is Tiny, only one component (an eye, a knee, an elbow, and so forth) can be disabled. The affected construct has disadvantage on attack rolls and ability checks that depend on the disabled component until the spell ends and the jam is removed.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small berry or a piece of fruit", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "catapult", - "fields": { - "name": "Catapult", - "desc": "You magically hurl an object or creature weighing 500 pounds or less 40 feet through the air in a direction of your choosing (including straight up). Objects hurled at specific targets require a spell attack roll to hit. A thrown creature takes 6d10 bludgeoning damage from the force of the throw, plus any appropriate falling damage, and lands prone. If the target of the spell is thrown against another creature, the total damage is divided evenly between them and both creatures are knocked prone.\n", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d10, the distance thrown increases by 10 feet, and the weight thrown increases by 100 pounds for each slot level above 6th.", - "target_type": "object", - "range": "400 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small platinum lever and fulcrum worth 400 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "6d10", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "catch-the-breath", - "fields": { - "name": "Catch the Breath", - "desc": "You can cast this spell as a reaction when you’re targeted by a breath weapon. Doing so gives you advantage on your saving throw against the breath weapon. If your saving throw succeeds, you take no damage from the attack even if a successful save normally only halves the damage.\n\nWhether your saving throw succeeded or failed, you absorb and store energy from the attack. On your next turn, you can make a ranged spell attack against a target within 60 feet. On a hit, the target takes 3d10 force damage. If you opt not to make this attack, the stored energy dissipates harmlessly.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage done by your attack increases by 1d10 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "3d10", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "caustic-blood", - "fields": { - "name": "Caustic Blood", - "desc": "Your blood becomes caustic when exposed to the air. When you take piercing or slashing damage, you can use your reaction to select up to three creatures within 30 feet of you. Each target takes 1d10 acid damage unless it makes a successful Dexterity saving throw.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the number of targets increases by one for each slot level above 2nd, to a maximum of six targets.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "1d10", - "damage_types": [ - "acid" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "caustic-torrent", - "fields": { - "name": "Caustic Torrent", - "desc": "A swirling jet of acid sprays from you in a direction you choose. The acid fills a line 60 feet long and 5 feet wide. Each creature in the line takes 14d6 acid damage, or half as much damage if it makes a successful Dexterity saving throw. A creature reduced to 0 hit points by this spell is killed, and its body is liquefied. In addition, each creature other than you that’s in the line or within 5 feet of it is poisoned for 1 minute by toxic fumes. Creatures that don’t breathe or that are immune to acid damage aren’t poisoned. A poisoned creature can repeat the Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "deepm", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a chip of bone pitted by acid", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "14d6", - "damage_types": [ - "acid" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "caustic-touch", - "fields": { - "name": "Caustic Touch", - "desc": "Your hand sweats profusely and becomes coated in a film of caustic slime. Make a melee spell attack against a creature you touch. On a hit, the target takes 1d8 acid damage. If the target was concentrating on a spell, it has disadvantage on its Constitution saving throw to maintain concentration.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "This spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "acid" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "celebration", - "fields": { - "name": "Celebration", - "desc": "You create a 30-foot-radius area around a point that you choose within range. An intelligent creature that enters the area or starts its turn there must make a Wisdom saving throw. On a failed save, the creature starts to engage in celebratory revelry: drinking, singing, laughing, and dancing. Affected creatures are reluctant to leave the area until the spell ends, preferring to continue the festivities. They forsake appointments, cease caring about their woes, and generally behave in a cordial (if not hedonistic) manner. This preoccupation with merrymaking occurs regardless of an affected creature’s agenda or alignment. Assassins procrastinate, servants join in the celebration rather than working, and guards abandon their posts.\n\nThe effect ends on a creature when it is attacked, takes damage, or is forced to leave the area. A creature that makes a successful saving throw can enter or leave the area without danger of being enchanted. A creature that fails the saving throw and is forcibly removed from the area must repeat the saving throw if it returns to the area.\n", - "document": "deepm", - "level": 7, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the spell lasts for an additional hour for each slot level above 7th.\n\n***Ritual Focus.*** If you expend your ritual focus, an unaffected intelligent creature must make a new saving throw every time it starts its turn in the area, even if it has previously succeeded on a save against the spell.", - "target_type": "area", - "range": "90 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small party favor", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "chains-of-the-goddess", - "fields": { - "name": "Chains of the Goddess", - "desc": "Choose a creature you can see within 90 feet. The target must make a successful Wisdom saving throw or be restrained by chains of psychic force and take 6d8 bludgeoning damage. A restrained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a successful save. While restrained in this way, the creature also takes 6d8 bludgeoning damage at the start of each of your turns.", - "document": "deepm", - "level": 5, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "1 foot of iron chain", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "chains-of-torment", - "fields": { - "name": "Chains of Torment", - "desc": "You are surrounded by an aura of dim light in a 10-foot radius as you conjure an iron chain that extends out to a creature you can see within 30 feet. The creature must make a successful Dexterity saving throw or be grappled (escape DC equal to your spell save DC). While grappled in this way, the creature is also restrained. A creature that’s restrained at the start of its turn takes 4d6 psychic damage. You can have only one creature restrained in this way at a time.\n\nAs an action, you can scan the mind of the creature that’s restrained by your chain. If the creature gets a failure on a Wisdom saving throw, you learn one discrete piece of information of your choosing known by the creature (such as a name, a password, or an important number). The effect is otherwise harmless.\n", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the psychic damage increases by 1d6 for each slot level above 4th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an iron chain link dipped in blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "champions-weapon", - "fields": { - "name": "Champion’s Weapon", - "desc": "A spectral version of a melee weapon of your choice materializes in your hand. It has standard statistics for a weapon of its kind, but it deals force damage instead of its normal damage type and it sheds dim light in a 10-foot radius. You have proficiency with this weapon for the spell’s duration. The weapon can be wielded only by the caster; the spell ends if the weapon is held by a creature other than you or if you start your turn more than 10 feet from the weapon.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the weapon deals an extra 1d8 force damage for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "chaotic-form", - "fields": { - "name": "Chaotic Form", - "desc": "You cause the form of a willing creature to become malleable, dripping and flowing according to the target’s will as if the creature were a vaguely humanoid-shaped ooze. The creature is not affected by difficult terrain, it has advantage on Dexterity (Acrobatics) checks made to escape a grapple, and it suffers no penalties when squeezing through spaces one size smaller than itself. The target’s movement is halved while it is affected by **chaotic form**.\n", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration increases by 10 minutes for each slot level above 4th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "chaotic-vitality", - "fields": { - "name": "Chaotic Vitality", - "desc": "Make a melee spell attack against a creature that has a number of Hit Dice no greater than your level and has at least 1 hit point. On a hit, you conjure pulsating waves of chaotic energy within the creature and yourself. After a brief moment that seems to last forever, your hit point total changes, as does the creature’s. Roll a d100 and increase or decrease the number rolled by any number up to your spellcasting level, then find the result on the Hit Point Flux table. Apply that result both to yourself and the target creature. Any hit points gained beyond a creature’s normal maximum are temporary hit points that last for 1 round per caster level.\n\nFor example, a 3rd-level spellcaster who currently has 17 of her maximum 30 hit points casts **chaotic vitality** on a creature with 54 hit points and rolls a 75 on the Hit Point Flux table. The two creatures have a combined total of 71 hit points. A result of 75 indicates that both creatures get 50 percent of the total, so the spellcaster and the target end up with 35 hit points each. In the spellcaster’s case, 5 of those hit points are temporary and will last for 3 rounds.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the maximum Hit Dice of the affected creature increases by 2 for each slot level above 2nd.\n ## Hit Point Flux \n| SIZE | HP |\n|-|-|\n| 01–09 | 0 |\n| 10–39 | 1 |\n| 40–69 | 25 percent of total |\n| 70–84 | 50 percent of total |\n| 85–94 | 75 percent of total |\n| 95–99 | 100 percent of total |\n| 100 | 200 percent of total, and both creatures gain the effect of a haste spell that lasts for 1 round per caster level |\n\n", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "chaotic-world", - "fields": { - "name": "Chaotic World", - "desc": "You throw a handful of colored cloth into the air while screaming a litany of disjointed phrases. A moment later, a 30-foot cube centered on a point within range fills with multicolored light, cacophonous sound, overpowering scents, and other confusing sensory information. The effect is dizzying and overwhelming. Each enemy within the cube must make a successful Intelligence saving throw or become blinded and deafened, and fall prone. An affected enemy cannot stand up or recover from the blindness or deafness while within the area, but all three conditions end immediately for a creature that leaves the spell’s area.", - "document": "deepm", - "level": 6, - "school": "illusion", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "seven irregular pieces of colored cloth that you throw into the air", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 30, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "chilling-words", - "fields": { - "name": "Chilling Words", - "desc": "You utter a short phrase and designate a creature within range to be affected by it. The target must make a Wisdom saving throw to avoid the spell. On a failed save, the target is susceptible to the phrase for the duration of the spell. At any later time while the spell is in effect, you and any of your allies within range when you cast the spell can use an action to utter the phrase, which causes the target to freeze in fear. Each of you can use the phrase against the target once only, and the target must be within 30 feet of the speaker for the phrase to be effective.\n\nWhen the target hears the phrase, it must make a successful Constitution saving throw or take 1d6 psychic damage and become restrained for 1 round. Whether this saving throw succeeds or fails, the target can’t be affected by the phrase for 1 minute afterward.\n\nYou can end the spell early by making a final utterance of the phrase (even if you’ve used the phrase on this target previously). On hearing this final utterance, the target takes 4d6 psychic damage and is restrained for 1 minute or, with a successful Constitution saving throw, it takes half the damage and is restrained for 1 round.", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a strip of paper with writing on it", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "psychic" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "chronal-lance", - "fields": { - "name": "Chronal Lance", - "desc": "You inflict the ravages of aging on up to three creatures within range, temporarily discomfiting them and making them appear elderly for a time. Each target must make a successful Wisdom saving throw, or its walking speed is halved (round up to the nearest 5-foot increment) and it has disadvantage on Dexterity checks (but not saving throws). An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "circle-of-wind", - "fields": { - "name": "Circle of Wind", - "desc": "Light wind encircles you, leaving you in the center of a mild vortex. For the duration, you gain a +2 bonus to your AC against ranged attacks. You also have advantage on saving throws against extreme environmental heat and against harmful gases, vapors, and inhaled poisons.", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a crystal ring", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "clash-of-glaciers", - "fields": { - "name": "Clash of Glaciers", - "desc": "You conjure up icy boulders that crush creatures in a line 100 feet long. Each creature in the area takes 5d6 bludgeoning damage plus 5d6 cold damage, or half the damage with a successful Dexterity saving throw.\n", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d6 for each slot level above 5th. You decide whether each extra die deals bludgeoning or cold damage.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of cracked glass", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "claws-of-darkness", - "fields": { - "name": "Claws of Darkness", - "desc": "You shape shadows into claws that grow from your fingers and drip inky blackness. The claws have a reach of 10 feet. While the spell lasts, you can make a melee spell attack with them that deals 1d10 cold damage.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "claws-of-the-earth-dragon", - "fields": { - "name": "Claws of the Earth Dragon", - "desc": "You summon the power of the earth dragon and shoot a ray at one target within 60 feet. The target falls prone and takes 6d8 bludgeoning damage from being slammed to the ground. If the target was flying or levitating, it takes an additional 1d6 bludgeoning damage per 10 feet it falls. If the target makes a successful Strength saving throw, damage is halved, it doesn’t fall, and it isn’t knocked prone.\n", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage done by the attack increases by 1d8 and the range increases by 10 feet for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "clearing-the-field", - "fields": { - "name": "Clearing the Field", - "desc": "With a harsh word and a vicious chopping motion, you cause every tree, shrub, and stump within 40 feet of you to sink into the ground, leaving the vacated area clear of plant life that might otherwise hamper movement or obscure sight. Overgrown areas that counted as difficult terrain become clear ground and no longer hamper movement. The original plant life instantly rises from the ground again when the spell ends or is dispelled. Plant creatures are not affected by **clearing the field**.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the spell lasts for an additional hour for each slot level above 2nd.\n\n***Ritual Focus.*** If you expend your ritual focus, plant creatures in the area must make a successful Constitution saving throw or be affected as though by a [enlarge/reduce](https://api.open5e.com/spells/enlargereduce) spell.", - "target_type": "area", - "range": "40 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "cloak-of-shadow", - "fields": { - "name": "Cloak of Shadow", - "desc": "You cloak yourself in shadow, giving you advantage on Dexterity (Stealth) checks against creatures that rely on sight.", - "document": "deepm", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "clockwork-bolt", - "fields": { - "name": "Clockwork Bolt", - "desc": "You imbue an arrow or crossbow bolt with clockwork magic just as you fire it at your target; spinning blades materialize on the missile after it strikes to further mutilate your enemy.\n\nAs part of the action used to cast this spell, you make a ranged weapon attack with a bow or a crossbow against one creature within range. If the attack hits, the missile embeds in the target. Unless the target (or an ally of it within 5 feet) uses an action to remove the projectile (which deals no additional damage), the target takes an additional 1d8 slashing damage at the end of its next turn from spinning blades that briefly sprout from the missile’s shaft. Afterward, the projectile reverts to normal.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "This spell deals more damage when you reach higher levels. At 5th level, the ranged attack deals an extra 1d8 slashing damage to the target, and the target takes an additional 1d8 slashing damage (2d8 total) if the embedded ammunition isn’t removed. Both damage amounts increase by 1d8 again at 11th level and at 17th level.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an arrow or crossbow bolt", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d8", - "damage_types": [ - "slashing" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "closing-in", - "fields": { - "name": "Closing In", - "desc": "Choose a creature you can see within range. The target must succeed on a Wisdom saving throw, which it makes with disadvantage if it’s in an enclosed space. On a failed save, the creature believes the world around it is closing in and threatening to crush it. Even in open or clear terrain, the creature feels as though it is sinking into a pit, or that the land is rising around it. The creature has disadvantage on ability checks and attack rolls for the duration, and it takes 2d6 psychic damage at the end of each of its turns. An affected creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "cobra-fangs", - "fields": { - "name": "Cobra Fangs", - "desc": "The spell causes the target to grow great, snake-like fangs. An unwilling creature must make a Wisdom saving throw to avoid the effect. The spell fails if the target already has a bite attack that deals poison damage.\n\nIf the target doesn’t have a bite attack, it gains one. The target is proficient with the bite, and it adds its Strength modifier to the attack and damage rolls. The damage is piercing and the damage die is a d4.\n\nWhen the target hits a creature with its bite attack, the creature must make a Constitution saving throw, taking 3d6 poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the target’s bite counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of snake venom or a patch of snakeskin", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "compelled-movement", - "fields": { - "name": "Compelled Movement", - "desc": "Choose two living creatures (not constructs or undead) you can see within range. Each must make a Charisma saving throw. On a failed save, a creature is compelled to use its movement to move toward the other creature. Its route must be as direct as possible, but it avoids dangerous terrain and enemies. If the creatures are within 5 feet of each other at the end of either one’s turn, their bodies fuse together. Fused creatures still take their own turns, but they can’t move, can’t use reactions, and have disadvantage on attack rolls, Dexterity saving throws, and Constitution checks to maintain concentration.\n\nA fused creature can use its action to make a Charisma saving throw. On a success, the creature breaks free and can move as it wants. It can become fused again, however, if it’s within 5 feet of a creature that’s still under the spell’s effect at the end of either creature’s turn.\n\n**Compelled movement** doesn’t affect a creature that can’t be charmed or that is incorporeal.\n", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the number of creatures you can affect increases by one for every two slot levels above 3rd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "the embalmed body of a millipede with its right legs removed, worth at least 50 gp", - "material_cost": "50.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "compelling-fate", - "fields": { - "name": "Compelling Fate", - "desc": "You view the actions of a single creature you can see through the influence of the stars, and you read what is written there. If the target fails a Charisma saving throw, you can predict that creature’s actions. This has the following effects:\n* You have advantage on attack rolls against the target.\n* For every 5 feet the target moves, you can move 5 feet (up to your normal movement) on the target’s turn when it has completed its movement. This is deducted from your next turn’s movement.\n* As a reaction at the start of the target’s turn, you can warn yourself and allies that can hear you of the target’s offensive intentions; any creature targeted by the target’s next attack gains a +2 bonus to AC or to its saving throw against that attack.\n", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration is extended by 1 round for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a sprinkling of silver dust worth 20 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "comprehend-wild-shape", - "fields": { - "name": "Comprehend Wild Shape", - "desc": "Give one of the carved totems to an ally while keeping the other yourself. For the duration of the spell, you and whoever holds the other totem can communicate while either of you is in a beast shape. This isn’t a telepathic link; you simply understand each other’s verbal communication, similar to the effect of a speak with animals spell. This effect doesn’t allow a druid in beast shape to cast spells.\n", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can increase the number of target creatures by two for each slot level above 2nd. Each creature must receive a matching carved totem.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "two or more matching carved totems", - "material_cost": null, - "material_consumed": false, - "target_count": 2, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "confound-senses", - "fields": { - "name": "Confound Senses", - "desc": "This spell befuddles the minds of up to six creatures that you can see within range, causing the creatures to see images of shifting terrain. Each target that fails an Intelligence saving throw is reduced to half speed until the spell ends because of confusion over its surroundings, and it makes ranged attack rolls with disadvantage.\n\nAffected creatures also find it impossible to keep track of their location. They automatically fail Wisdom (Survival) checks to avoid getting lost. Whenever an affected creature must choose between one or more paths, it chooses at random and immediately forgets which direction it came from.", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a broken compass", - "material_cost": null, - "material_consumed": false, - "target_count": 6, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-fey-hound", - "fields": { - "name": "Conjure Fey Hound", - "desc": "You summon a fey hound to fight by your side. A [hound of the night](https://api.open5e.com/monsters/hound-of-the-night) appears in an unoccupied space that you can see within range. The hound disappears when it drops to 0 hit points or when the spell ends.\n\nThe summoned hound is friendly to you and your companions. Roll initiative for the summoned hound, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the hound, it stands by your side and attacks nearby creatures that are hostile to you but otherwise takes no actions.\n", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you summon two hounds. When you cast this spell using a 9th-level spell slot, you summon three hounds.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a wooden or metal whistle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-forest-defender", - "fields": { - "name": "Conjure Forest Defender", - "desc": "When you cast this spell in a forest, you fasten sticks and twigs around a body. The body comes to life as a [forest defender](https://api.open5e.com/monsters/forest-defender). The forest defender is friendly to you and your companions. Roll initiative for the forest defender, which has its own turns. It obeys any verbal or mental commands that you issue to it (no action required by you), as long as you remain within its line of sight. If you don’t issue any commands to the forest defender, if you are out of its line of sight, or if you are unconscious, it defends itself from hostile creatures but otherwise takes no actions. A body sacrificed to form the forest defender is permanently destroyed and can be restored to life only by means of a [true resurrection](https://api.open5e.com/spells/true-resurrection) or a [wish](https://api.open5e.com/spells/wish) spell. You can have only one forest defender under your control at a time. If you cast this spell again, the previous forest defender crumbles to dust.\n", - "document": "deepm", - "level": 6, - "school": "conjuration", - "higher_level": "When you cast this spell using a 9th‐level spell slot, you summon two forest defenders instead of one, and you can control up to two forest defenders at a time.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "one humanoid body, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until destroyed", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-greater-spectral-dead", - "fields": { - "name": "Conjure Greater Spectral Dead", - "desc": "You summon an incorporeal undead creature that appears in an unoccupied space you can see within range. You choose one of the following options for what appears:\n* One [wraith](https://api.open5e.com/monsters/wraith)\n* One [spectral guardian](https://api.open5e.com/monsters/spectral-guardian)\n* One [wolf spirit swarm](https://api.open5e.com/monsters/wolf-spirit-swarm)\nSummoned creatures disappear when they drop to 0 hit points or when the spell ends.\n\nThe summoned creature doesn’t attack you or your companions for the duration. Roll initiative for the summoned creature, which has its own turns. The creature attacks your enemies and tries to stay within 60 feet of you, but it otherwise controls its own actions. The summoned creature despises being bound and might harm or impede you and your companions by any means at its disposal other than direct attacks if the opportunity arises. At the beginning of the creature’s turn, you can use your reaction to verbally command it. The creature obeys your commands for that turn, and you take 1d6 psychic damage at the end of the turn. If your concentration is broken, the creature doesn’t disappear. Instead, you can no longer command it, it becomes hostile to you and your companions, and it attacks you and your allies if it believes it has a chance to win the fight or to inflict meaningful harm; otherwise it flees. You can’t dismiss the uncontrolled creature, but it disappears 1 hour after you summoned it.\n", - "document": "deepm", - "level": 7, - "school": "conjuration", - "higher_level": "When you cast this spell using a 9th‐level spell slot, you summon a [deathwisp](https://api.open5e.com/monsters/deathwisp) or two [ghosts](https://api.open5e.com/monsters/ghost) instead.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of bone dust, a crystal prism worth at least 100 gp, and a platinum coin", - "material_cost": "100.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-minor-voidborn", - "fields": { - "name": "Conjure Minor Voidborn", - "desc": "You summon fiends or aberrations that appear in unoccupied spaces you can see within range. You choose one of the following options:\n* One creature of challenge rating 2 or lower\n* Two creatures of challenge rating 1 or lower\n* Four creatures of challenge rating 1/2 or lower\n* Eight creatures of challenge rating 1/4 or lower\nSummoned creatures disappear when they drop to 0 hit points or when the spell ends.\n\nThe summoned creatures do not directly attack you or your companions. Roll initiative for the summoned creatures as a group; they take their own turns on their initiative result. They attack your enemies and try to stay within 90 feet of you, but they control their own actions. The summoned creatures despise being bound, so they might harm or impede you and your companions with secondary effects (but not direct attacks) if the opportunity arises. At the beginning of the creatures’ turn, you can use your reaction to verbally command them. They obey your commands on that turn, and you take 1d6 psychic damage at the end of the turn.\n\nIf your concentration is broken, the spell ends but the creatures don’t disappear. Instead, you can no longer command them, and they become hostile to you and your companions. They will attack you and your allies if they believe they have a chance to win the fight or to inflict meaningful harm, but they won’t fight if they fear it would mean their own death. You can’t dismiss the creatures, but they disappear 1 hour after being summoned.\n", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a 7th‑or 9th-level spell slot, you choose one of the summoning options above, and more creatures appear­—twice as many with a 7th-level spell slot and three times as many with a 9th-level spell slot.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-scarab-swarm", - "fields": { - "name": "Conjure Scarab Swarm", - "desc": "You summon swarms of scarab beetles to attack your foes. Two swarms of insects (beetles) appear in unoccupied spaces that you can see within range.\n\nEach swarm disappears when it drops to 0 hit points or when the spell ends. The swarms are friendly to you and your allies. Make one initiative roll for both swarms, which have their own turns. They obey verbal commands that you issue to them (no action required by you). If you don’t issue any commands to them, they defend themselves from hostile creatures but otherwise take no actions.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a beetle carapace", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-shadow-titan", - "fields": { - "name": "Conjure Shadow Titan", - "desc": "You summon a shadow titan, which appears in an unoccupied space that you can see within range. The shadow titan’s statistics are identical to a [stone giant’s](https://api.open5e.com/monsters/stone-giant), with two differences: its camouflage ability works in dim light instead of rocky terrain, and the “rocks” it hurls are composed of shadow-stuff and cause cold damage.\n\nThe shadow titan is friendly to you and your companions. Roll initiative for the shadow titan; it acts on its own turn. It obeys verbal or telepathic commands that you issue to it (giving a command takes no action on your part). If you don’t issue any commands to the shadow titan, it defends itself from hostile creatures but otherwise takes no actions.\n\nThe shadow titan disappears when it drops to 0 hit points or when the spell ends.", - "document": "deepm", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-spectral-dead", - "fields": { - "name": "Conjure Spectral Dead", - "desc": "You summon a [shroud](https://api.open5e.com/monsters/shroud) to do your bidding. The creature appears in an unoccupied space that you can see within range. The creature is friendly to you and your allies for the duration. Roll initiative for the creature, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the creature, it defends itself from hostile creatures but otherwise takes no actions. The creature disappears when it drops to 0 hit points or when the spell ends.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a 3rd-level spell slot, you can choose to summon two [shrouds](https://api.open5e.com/monsters/shroud) or one [specter](https://api.open5e.com/monsters/specter). When you cast this spell with a spell slot of 4th level or higher, you can choose to summon four [shrouds](https://api.open5e.com/monsters/shroud) or one [will-o’-wisp](https://api.open5e.com/monsters/will-o-wisp).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of bone dust, a crystal prism, and a silver coin", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-undead", - "fields": { - "name": "Conjure Undead", - "desc": "You summon a [shadow](https://api.open5e.com/monsters/shadow) to do your bidding. The creature appears in an unoccupied space that you can see within range. The creature is friendly to you and your allies for the duration. Roll initiative for the shadow, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the creature, it defends itself from hostile creatures but otherwise takes no actions. The shadow disappears when the spell ends.\n", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a 4th-level spell slot, you can choose to summon a [wight](https://api.open5e.com/monsters/wight) or a [shadow](https://api.open5e.com/monsters/shadow). When you cast this spell with a spell slot of 5th level or higher, you can choose to summon a [ghost](https://api.open5e.com/monsters/ghost), a [shadow](https://api.open5e.com/monsters/shadow), or a [wight](https://api.open5e.com/monsters/wight).", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a humanoid skull", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-voidborn", - "fields": { - "name": "Conjure Voidborn", - "desc": "You summon a fiend or aberration of challenge rating 6 or lower, which appears in an unoccupied space that you can see within range. The creature disappears when it drops to 0 hit points or when the spell ends.\n\nRoll initiative for the creature, which takes its own turns. It attacks the nearest creature on its turn. At the start of the fiend’s turn, you can use your reaction to command the creature by speaking in Void Speech. It obeys your verbal command, and you take 2d6 psychic damage at the end of the creature’s turn.\n\nIf your concentration is broken, the spell ends but the creature doesn’t disappear. Instead, you can no longer issue commands to the fiend, and it becomes hostile to you and your companions. It will attack you and your allies if it believes it has a chance to win the fight or to inflict meaningful harm, but it won’t fight if it fears doing so would mean its own death. You can’t dismiss the creature, but it disappears 1 hour after you summoned it.\n", - "document": "deepm", - "level": 7, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the challenge rating increases by 1 for each slot level above 7th.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "consult-the-storm", - "fields": { - "name": "Consult the Storm", - "desc": "You ask a question of an entity connected to storms, such as an elemental, a deity, or a primal spirit, and the entity replies with destructive fury.\n\nAs part of the casting of the spell, you must speak a question consisting of fifteen words or fewer. Choose a point within range. A short, truthful answer to your question booms from that point. It can be heard clearly by any creature within 600 feet. Each creature within 15 feet of the point takes 7d6 thunder damage, or half as much damage with a successful Constitution saving throw.\n", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "7d6", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "converse-with-dragon", - "fields": { - "name": "Converse With Dragon", - "desc": "You gain limited telepathy, allowing you to communicate with any creature within 120 feet of you that has the dragon type, regardless of the creature’s languages. A dragon can choose to make a Charisma saving throw to prevent telepathic contact with itself.\n\nThis spell doesn’t change a dragon’s disposition toward you or your allies, it only opens a channel of communication. In some cases, unwanted telepathic contact can worsen the dragon’s attitude toward you.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "costly-victory", - "fields": { - "name": "Costly Victory", - "desc": "You select up to ten enemies you can see that are within range. Each target must make a Wisdom saving throw. On a failed save, that creature is cursed to burst into flame if it reduces one of your allies to 0 hit points before this spell’s duration expires. The affected creature takes 6d8 fire damage and 6d8 radiant damage when it bursts into flame.\n\nIf the affected creature is wearing flammable material (or is made of flammable material, such as a plant creature), it catches on fire and continues burning; the creature takes fire damage equal to your spellcasting ability modifier at the end of each of its turns until the creature or one of its allies within 5 feet of it uses an action to extinguish the fire.", - "document": "deepm", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "fire" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "create-ring-servant", - "fields": { - "name": "Create Ring Servant", - "desc": "You touch two metal rings and infuse them with life, creating a short-lived but sentient construct known as a [ring servant](https://api.open5e.com/monsters/ring-servant). The ring servant appears adjacent to you. It reverts form, changing back into the rings used to cast the spell, when it drops to 0 hit points or when the spell ends.\n\nThe ring servant is friendly to you and your companions for the duration. Roll initiative for the ring servant, which acts on its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the ring servant, it defends itself and you from hostile creatures but otherwise takes no actions.", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "two metal rings", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "create-thunderstaff", - "fields": { - "name": "Create Thunderstaff", - "desc": "After you cast **create thunderstaff** on a normal quarterstaff, the staff must then be mounted in a noisy location, such as a busy marketplace, and left there for 60 days. During that time, the staff gradually absorbs ambient sound.\n\nAfter 60 days, the staff is fully charged and can’t absorb any more sound. At that point, it becomes a **thunderstaff**, a +1 quarterstaff that has 10 charges. When you hit on a melee attack with the staff and expend 1 charge, the target takes an extra 1d8 thunder damage. You can cast a [thunderwave](https://api.open5e.com/spells/thunderwave) spell from the staff as a bonus action by expending 2 charges. The staff cannot be recharged.\n\nIf the final charge is not expended within 60 days, the staff becomes nonmagical again.", - "document": "deepm", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a quarterstaff", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d8", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "creeping-ice", - "fields": { - "name": "Creeping Ice", - "desc": "You create a sheet of ice that covers a 5-foot square within range and lasts for the spell’s duration. The iced area is difficult terrain.\n\nA creature in the area where you cast the spell must make a successful Strength saving throw or be restrained by ice that rapidly encases it. A creature restrained by the ice takes 2d6 cold damage at the start of its turn. A restrained creature can use an action to make a Strength check against your spell save DC, freeing itself on a success, but it has disadvantage on this check. The creature can also be freed (and the spell ended) by dealing at least 20 damage to the ice. The restrained creature takes half the damage from any attacks against the ice.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th to 6th level, the area increases to a 10-foot square, the ice deals 4d6 cold damage, and 40 damage is needed to melt each 5-foot square. When you cast this spell using a spell slot of 7th level or higher, the area increases to a 20-foot square, the ice deals 6d6 cold damage, and 60 damage is needed to melt each 5-foot square.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "crushing-curse", - "fields": { - "name": "Crushing Curse", - "desc": "You speak a word of Void Speech. Choose a creature you can see within range. If the target can hear you, it must succeed on a Wisdom saving throw or take 1d6 psychic damage and be deafened for 1 minute, except that it can still hear Void Speech. A creature deafened in this way can repeat the saving throw at the end of each of its turns, ending the effect on a success.", - "document": "deepm", - "level": 0, - "school": "enchantment", - "higher_level": "This spell’s damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "crushing-trample", - "fields": { - "name": "Crushing Trample", - "desc": "Upon casting this spell, you are filled with a desire to overrun your foes. You immediately move up to twice your speed in a straight line, trampling every foe in your path that is of your size category or smaller. If you try to move through the space of an enemy whose size is larger than yours, your movement (and the spell) ends. Each enemy whose space you move through must make a successful Strength saving throw or be knocked prone and take 4d6 bludgeoning damage. If you have hooves, add your Strength modifier (minimum of +1) to the damage.\n\nYou move through the spaces of foes whether or not they succeed on their Strength saving throws. You do not provoke opportunity attacks while moving under the effect of **crushing trample**.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "cure-beast", - "fields": { - "name": "Cure Beast", - "desc": "A beast of your choice that you can see within range regains a number of hit points equal to 1d6 + your spellcasting modifier.\n", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d6 for each slot level above 1st.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "curse-of-boreas", - "fields": { - "name": "Curse of Boreas", - "desc": "You designate a creature within range that you can see. If the target fails a Charisma saving throw, it and its equipment are frozen solid, becoming an inert statue of ice. The creature is effectively paralyzed, but mental activity does not cease, and signs of life are detectable; the creature still breathes and its heart continues to beat, though both acts are almost imperceptible. If the ice statue is broken or damaged while frozen, the creature will have matching damage or injury when returned to its original state. [Dispel magic](https://api.open5e.com/spells/dispel-magic) can’t end this spell, but it can allow the target to speak (but not move or cast spells) for a number of rounds equal to the spell slot used. [Greater restoration](https://api.open5e.com/spells/greater-restoration) or more potent magic is needed to free a creature from the ice.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "curse-of-dust", - "fields": { - "name": "Curse of Dust", - "desc": "You cast a curse on a creature within range that you’re familiar with, causing it to be unsatiated by food no matter how much it eats. This effect isn’t merely an issue of perception; the target physically can’t draw sustenance from food. Within minutes after the spell is cast, the target feels constant hunger no matter how much food it consumes. The target must make a Constitution saving throw 24 hours after the spell is cast and every 24 hours thereafter. On a failed save, the target gains one level of exhaustion. The effect ends when the duration expires or when the target makes two consecutive successful saves.", - "document": "deepm", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "500 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of spoiled food", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "curse-of-incompetence", - "fields": { - "name": "Curse of Incompetence", - "desc": "By making mocking gestures toward one creature within\nrange that can see you, you leave the creature incapable of\nperforming at its best. If the target fails on an Intelligence\nsaving throw, roll a d4 and refer to the following table to\ndetermine what the target does on its turn. An affected\ntarget repeats the saving throw at the end of each of its\nturns, ending the effect on itself on a success or applying\nthe result of another roll on the table on a failure.\n\n| D4 | RESULT |\n|-|-|\n| 1 | Target spends its turn shouting mocking words at caster and takes a -5 penalty to its initiative roll. |\n| 2 | Target stands transfixed and blinking, takes no action. |\n| 3 | Target flees or fights (50 percent chance of each). |\n| 4 | Target charges directly at caster, enraged. |\n\n", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "curse-of-the-grave", - "fields": { - "name": "Curse of the Grave", - "desc": "You tap your connection to death to curse a humanoid, making the grim pull of the grave stronger on that creature’s soul.\n\nChoose one humanoid you can see within range. The target must succeed on a Constitution saving throw or become cursed. A [remove curse](https://api.open5e.com/spells/remove-curse) spell or similar magic ends this curse. While cursed in this way, the target suffers the following effects:\n\n* The target fails death saving throws on any roll but a 20.\n* If the target dies while cursed, it rises 1 round later as a vampire spawn under your control and is no longer cursed.\n* The target, as a vampire spawn, seeks you out in an attempt to serve its new master. You can have only one vampire spawn under your control at a time through this spell. If you create another, the existing one turns to dust. If you or your companions do anything harmful to the target, it can make a Wisdom saving throw. On a success, it is no longer under your control.", - "document": "deepm", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of dirt from a freshly dug grave", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "curse-of-yig", - "fields": { - "name": "Curse of Yig", - "desc": "This spell transforms a Small, Medium, or Large creature that you can see within range into a [servant of Yig](https://api.open5e.com/monsters/servant-of-yig). An unwilling creature can attempt a Wisdom saving throw, negating the effect with a success. A willing creature is automatically affected and remains so for as long as you maintain concentration on the spell.\n\nThe transformation lasts for the duration or until the target drops to 0 hit points or dies. The target’s statistics, including mental ability scores, are replaced by the statistics of a servant of Yig. The transformed creature’s alignment becomes neutral evil, and it is both friendly to you and reverent toward the Father of Serpents. Its equipment is unchanged. If the transformed creature was unwilling, it makes a Wisdom saving throw at the end of each of its turns. On a successful save, the spell ends, the creature’s alignment and personality return to normal, and it regains its former attitude toward you and toward Yig.\n\nWhen it reverts to its normal form, the creature has the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form.", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of snake venom", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "curse-ring", - "fields": { - "name": "Curse Ring", - "desc": "You lay a curse upon a ring you touch that isn’t being worn or carried. When you cast this spell, select one of the possible effects of [bestow curse](https://api.open5e.com/spells/bestow-curse). The next creature that willingly wears the ring suffers the chosen effect with no saving throw. The curse transfers from the ring to the wearer once the ring is put on; the ring becomes a mundane ring that can be taken off, but the curse remains on the creature that wore the ring until the curse is removed or dispelled. An [identify](https://api.open5e.com/spells/identify) spell cast on the cursed ring reveals the fact that it is cursed.", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "250 gp worth of diamond dust, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent until discharged", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "cursed-gift", - "fields": { - "name": "Cursed Gift", - "desc": "**Cursed gift** imbues an object with a harmful magical effect that you or another creature in physical contact with you is currently suffering from. If you give this object to a creature that freely accepts it during the duration of the spell, the recipient must make a Charisma saving throw. On a failed save, the harmful effect is transferred to the recipient for the duration of the spell (or until the effect ends). Returning the object to you, destroying it, or giving it to someone else has no effect. Remove curse and comparable magic can relieve the individual who received the item, but the harmful effect still returns to the previous victim when this spell ends if the effect’s duration has not expired.\n", - "document": "deepm", - "level": 4, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration increases by 24 hours for each slot level above 4th.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an object worth at least 75 gp", - "material_cost": "75.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "cynophobia", - "fields": { - "name": "Cynophobia", - "desc": "Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or develop an overriding fear of canids, such as dogs, wolves, foxes, and worgs. For the duration, the first time the target sees a canid, the target must succeed on a Wisdom saving throw or become frightened of that canid until the end of its next turn. Each time the target sees a different canid, it must make the saving throw. In addition, the target has disadvantage on ability checks and attack rolls while a canid is within 10 feet of it.\n", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a 5th-level spell slot, the duration is 24 hours. When you use a 7th-level spell slot, the duration is 1 month. When you use a spell slot of 8th or 9th level, the spell lasts until it is dispelled.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dog’s tooth", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "daggerhawk", - "fields": { - "name": "Daggerhawk", - "desc": "When **daggerhawk** is cast on a nonmagical dagger, a ghostly hawk appears around the weapon. The hawk and dagger fly into the air and make a melee attack against one creature you select within 60 feet, using your spell attack modifier and dealing piercing damage equal to 1d4 + your Intelligence modifier on a hit. On your subsequent turns, you can use an action to cause the daggerhawk to attack the same target. The daggerhawk has AC 14 and, although it’s invulnerable to all damage, a successful attack against it that deals bludgeoning, force, or slashing damage sends the daggerhawk tumbling, so it can’t attack again until after your next turn.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dagger", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "dark-dementing", - "fields": { - "name": "Dark Dementing", - "desc": "A dark shadow creeps across the target’s mind and leaves a small bit of shadow essence behind, triggering a profound fear of the dark. A creature you designate within range must make a Charisma saving throw. If it fails, the target becomes frightened of you for the duration. A frightened creature can repeat the saving throw each time it takes damage, ending the effect on a success. While frightened in this way, the creature will not willingly enter or attack into a space that isn’t brightly lit. If it’s in dim light or darkness, the creature must either move toward bright light or create its own (by lighting a lantern, casting a [light](https://api.open5e.com/spells/light) spell, or the like).", - "document": "deepm", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a moonstone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "dark-heraldry", - "fields": { - "name": "Dark Heraldry", - "desc": "Dark entities herald your entry into combat, instilling an existential dread in your enemies. Designate a number of creatures up to your spellcasting ability modifier (minimum of one) that you can see within range and that have an alignment different from yours. Each of those creatures takes 5d8 psychic damage and becomes frightened of you; a creature that makes a successful Wisdom saving throw takes half as much damage and is not frightened.\n\nA creature frightened in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success. The creature makes this saving throw with disadvantage if you can see it.\n", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dark-maw", - "fields": { - "name": "Dark Maw", - "desc": "Thick, penumbral ichor drips from your shadow-stained mouth, filling your mouth with giant shadow fangs. Make a melee spell attack against the target. On a hit, the target takes 1d8 necrotic damage as your shadowy fangs sink into it. If you have a bite attack (such as from a racial trait or a spell like [alter self](https://api.open5e.com/spells/after-self)), you can add your spellcasting ability modifier to the damage roll but not to your temporary hit points.\n\nIf you hit a humanoid target, you gain 1d4 temporary hit points until the start of your next turn.", - "document": "deepm", - "level": 0, - "school": "necromancy", - "higher_level": "This spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "dark-path", - "fields": { - "name": "Dark Path", - "desc": "You conjure a shadowy road between two points within range to create a bridge or path. This effect can bridge a chasm or create a smooth path through difficult terrain. The dark path is 10 feet wide and up to 50 feet long. It can support up to 500 pounds of weight at one time. A creature that adds more weight than the path can support sinks through the path as if it didn’t exist.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a lodestone", - "material_cost": null, - "material_consumed": false, - "target_count": 2, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "darkbolt", - "fields": { - "name": "Darkbolt", - "desc": "You utter a quick invocation to create a black nimbus around your hand, then hurl three rays of darkness at one or more targets in range. The rays can be divided between targets however you like. Make a ranged spell attack for each target (not each ray); each ray that hits deals 1d10 cold damage. A target that was hit by one or more rays must make a successful Constitution saving throw or be unable to use reactions until the start of its next turn.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "dead-walking", - "fields": { - "name": "Dead Walking", - "desc": "As part of the casting of this spell, you place a copper piece under your tongue. This spell makes up to six willing creatures you can see within range invisible to undead for the duration. Anything a target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for all targets if one target attacks or casts a spell.", - "document": "deepm", - "level": 2, - "school": "illusion", - "higher_level": "When you cast this spell using a 3rd-level spell slot, it lasts for 1 hour without requiring your concentration. When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 hour for each slot level above 3rd.", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a copper piece", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "deadly-sting", - "fields": { - "name": "Deadly Sting", - "desc": "You grow a 10-foot-long tail as supple as a whip, tipped with a horrible stinger. During the spell’s duration, you can use the stinger to make a melee spell attack with a reach of 10 feet. On a hit, the target takes 1d4 piercing damage plus 4d10 poison damage, and a creature must make a successful Constitution saving throw or become vulnerable to poison damage for the duration of the spell.", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a thorn", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "1d4", - "damage_types": [ - "piercing" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "death-gods-touch", - "fields": { - "name": "Death God’s Touch", - "desc": "This spell allows you to shred the life force of a creature you touch. You become invisible and make a melee spell attack against the target. On a hit, the target takes 10d10 necrotic damage. If this damage reduces the target to 0 hit points, the target dies. Whether the attack hits or misses, you remain invisible until the start of your next turn.\n", - "document": "deepm", - "level": 7, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 2d10 for each slot level above 7th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "10d10", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "decay", - "fields": { - "name": "Decay", - "desc": "Make a melee spell attack against a creature you touch. On a hit, the target takes 1d10 necrotic damage. If the target is a Tiny or Small nonmagical object that isn’t being worn or carried by a creature, it automatically takes maximum damage from the spell.", - "document": "deepm", - "level": 0, - "school": "necromancy", - "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of ash", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d10", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "decelerate", - "fields": { - "name": "Decelerate", - "desc": "You slow the flow of time around a creature within range that you can see. The creature must make a successful Wisdom saving throw, or its walking speed is halved (round up to the nearest 5-foot increment). The creature can repeat the saving throw at the end of each of its turns, ending the effect on a success. Until the spell ends, on a failed save the target’s speed is halved again at the start of each of your turns. For example, if a creature with a speed of 30 feet fails its initial saving throw, its speed drops to 15 feet. At the start of your next turn, the creature’s speed drops to 10 feet on a failed save, then to 5 feet on the following round on another failed save. **Decelerate** can’t reduce a creature’s speed to less than 5 feet.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can affect an additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a toy top", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "deep-breath", - "fields": { - "name": "Deep Breath", - "desc": "The recipient of this spell can breathe and function normally in thin atmosphere, suffering no ill effect at altitudes of up to 20,000 feet. If more than one creature is touched during the casting, the duration is divided evenly among all creatures touched.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 2 hours for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "2 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "defile-healing", - "fields": { - "name": "Defile Healing", - "desc": "You attempt to reverse the energy of a healing spell so that it deals damage instead of healing. If the healing spell is being cast with a spell slot of 5th level or lower, the slot is expended but the spell restores no hit points. In addition, each creature that was targeted by the healing spell takes necrotic damage equal to the healing it would have received, or half as much damage with a successful Constitution saving throw.\n", - "document": "deepm", - "level": 7, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 8th level, it can reverse a healing spell being cast using a spell slot of 6th level or lower. If you use a 9th-level spell slot, it can reverse a healing spell being cast using a spell slot of 7th level or lower.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "delay-potion", - "fields": { - "name": "Delay Potion", - "desc": "Upon casting this spell, you delay the next potion you consume from taking effect for up to 1 hour. You must consume the potion within 1 round of casting **delay potion**; otherwise the spell has no effect. At any point during **delay potion’s** duration, you can use a bonus action to cause the potion to go into effect. When the potion is activated, it works as if you had just drunk it. While the potion is delayed, it has no effect at all and you can consume and benefit from other potions normally.\n\nYou can delay only one potion at a time. If you try to delay the effect of a second potion, the spell fails, the first potion has no effect, and the second potion has its normal effect when you drink it.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour (see below)", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "delayed-healing", - "fields": { - "name": "Delayed Healing", - "desc": "Touch a living creature (not a construct or undead) as you cast the spell. The next time that creature takes damage, it immediately regains hit points equal to 1d4 + your spellcasting ability modifier (minimum of 1).\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a bloodstone worth 100 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "demon-within", - "fields": { - "name": "Demon Within", - "desc": "One humanoid of your choice within range becomes a gateway for a demon to enter the plane of existence you are on. You choose the demon’s type from among those of challenge rating of 4 or lower. The target must make a Wisdom saving throw. On a success, the gateway fails to open, and the spell has no effect. On a failed save, the target takes 4d6 force damage from the demon’s attempt to claw its way through the gate. For the spell’s duration, you can use a bonus action to further agitate the demon, dealing an additional 2d6 force damage to the target each time.\n\nIf the target drops to 0 hit points while affected by this spell, the demon tears through the body and appears in the same space as its now incapacitated or dead victim. You do not control this demon; it is free to either attack or leave the area as it chooses. The demon disappears after 24 hours or when it drops to 0 hit points.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of blood from a humanoid killed within the previous 24 hours", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "force" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "desiccating-breath", - "fields": { - "name": "Desiccating Breath", - "desc": "You spew forth a cloud of black dust that draws all moisture from a 30-foot cone. Each animal in the cone takes 4d10 necrotic damage, or half as much damage if it makes a successful Constitution saving throw. The damage is 6d10 for plants and plant creatures, also halved on a successful Constitution saving throw.", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a clump of dried clay", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d10", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "desolation", - "fields": { - "name": "Desolation", - "desc": "You plant an obsidian acorn in solid ground and spend an hour chanting a litany of curses to the natural world, after which the land within 1 mile of the acorn becomes infertile, regardless of its previous state. Nothing will grow there, and all plant life in the area dies over the course of a day. Plant creatures are not affected. Spells that summon plants, such as [entangle](https://api.open5e.com/spells/entangle), require an ability check using the caster’s spellcasting ability against your spell save DC. On a successful check, the spell functions normally; if the check fails, the spell is countered by **desolation**.\n\nAfter one year, the land slowly reverts to its normal fertility, unable to stave off the march of nature.\n\nA living creature that finishes a short rest within the area of a **desolation** spell halves the result of any Hit Dice it expends. Desolation counters the effects of a [bloom](https://api.open5e.com/spells/bloom) spell.\n\n***Ritual Focus.*** If you expend your ritual focus, the duration becomes permanent.", - "document": "deepm", - "level": 8, - "school": "necromancy", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an obsidian acorn worth 500 gp, which is consumed in the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 year", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "destructive-resonance", - "fields": { - "name": "Destructive Resonance", - "desc": "You shout a scathing string of Void Speech that assaults the minds of those before you. Each creature in a 15-foot cone that can hear you takes 4d6 psychic damage, or half that damage with a successful Wisdom saving throw. A creature damaged by this spell can’t take reactions until the start of its next turn.\n", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 15, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "detect-dragons", - "fields": { - "name": "Detect Dragons", - "desc": "You can detect the presence of dragons and other draconic creatures within your line of sight and 120 feet, regardless of disguises, illusions, and alteration magic such as polymorph. The information you uncover depends on the number of consecutive rounds you spend an action studying a subject or area. On the first round of examination, you detect whether any draconic creatures are present, but not their number, location, identity, or type. On the second round, you learn the number of such creatures as well as the general condition of the most powerful one. On the third and subsequent rounds, you make a DC 15 Intelligence (Arcana) check; if it succeeds, you learn the age, type, and location of one draconic creature. Note that the spell provides no information on the turn in which it is cast, unless you have the means to take a second action that turn.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "devas-wings", - "fields": { - "name": "Deva’s Wings", - "desc": "You touch a willing creature. The target grows feathery wings of pure white that grant it a flying speed of 60 feet and the ability to hover. When the target takes the Attack action, it can use a bonus action to make a melee weapon attack with the wings, with a reach of 10 feet. If the wing attack hits, the target takes bludgeoning damage equal to 1d6 + your spellcasting ability modifier and must make a successful Strength saving throw or fall prone. When the spell ends, the wings disappear, and the target falls if it was aloft.\n", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional target for each slot level above 4th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a wing feather from any bird", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dimensional-shove", - "fields": { - "name": "Dimensional Shove", - "desc": "This spell pushes a creature you touch through a dimensional portal, causing it to disappear and then reappear a short distance away. If the target fails a Wisdom saving throw, it disappears from its current location and reappears 30 feet away from you in a direction of your choice. This travel can take it through walls, creatures, or other solid surfaces, but the target can't reappear inside a solid object or not on solid ground; instead, it reappears in the nearest safe, unoccupied space along the path of travel.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the target is shoved an additional 30 feet for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "disquieting-gaze", - "fields": { - "name": "Disquieting Gaze", - "desc": "Your eyes burn with scintillating motes of unholy crimson light. Until the spell ends, you have advantage on Charisma (Intimidation) checks made against creatures that can see you, and you have advantage on spell attack rolls that deal necrotic damage to creatures that can see your eyes.", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "disruptive-aura", - "fields": { - "name": "Disruptive Aura", - "desc": "A warping, prismatic aura surrounds and outlines each creature inside a 10-foot cube within range. The aura sheds dim light out to 10 feet, and the the locations of hidden or invisible creatures are outlined. If a creature in the area tries to cast a spell or use a magic item, it must make a Wisdom saving throw. On a successful save, the spell or item functions normally. On a failed save, the effect of the spell or the item is suppressed for the duration of the aura. Time spent suppressed counts against the duration of the spell’s or item’s effect.\n", - "document": "deepm", - "level": 8, - "school": "evocation", - "higher_level": "When you cast this spell using a 9th‐level spell slot, the cube is 20 feet on a side.", - "target_type": "creature", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "distracting-divination", - "fields": { - "name": "Distracting Divination", - "desc": "Foresight tells you when and how to be just distracting enough to foil an enemy spellcaster. When an adjacent enemy tries to cast a spell, make a melee spell attack against that enemy. On a hit, the enemy’s spell fails and has no effect; the enemy’s action is used up but the spell slot isn’t expended.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "distraction-cascade", - "fields": { - "name": "Distraction Cascade", - "desc": "With a flash of foresight, you throw a foe off balance. Choose one creature you can see that your ally has just declared as the target of an attack. Unless that creature makes a successful Charisma saving throw, attacks against it are made with advantage until the end of this turn.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "doom-of-blue-crystal", - "fields": { - "name": "Doom of Blue Crystal", - "desc": "You are surrounded by a field of glowing, blue energy lasting 3 rounds. Creatures within 5 feet of you, including yourself, must make a Constitution saving throw when the spell is cast and again at the start of each of your turns while the spell is in effect. A creature whose saving throw fails is restrained; a restrained creature whose saving throw fails is paralyzed; and a paralyzed creature whose saving throw fails is petrified and transforms into a statue of blue crystal. As with all concentration spells, you can end the field at any time (no action required). If you are turned to crystal, the spell ends after all affected creatures make their saving throws. Restrained and paralyzed creatures recover immediately when the spell ends, but petrification is permanent.\n\nCreatures turned to crystal can see, hear, and smell normally, but they don’t need to eat or breathe. If shatter is cast on a crystal creature, it must succeed on a Constitution saving throw against the caster’s spell save DC or be killed.\n\nCreatures transformed into blue crystal can be restored with dispel magic, greater restoration, or comparable magic.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a blue crystal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "3 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "doom-of-consuming-fire", - "fields": { - "name": "Doom of Consuming Fire", - "desc": "You are wreathed in cold, purple fire that damages creatures near you. You take 1d6 cold damage each round for the duration of the spell. Creatures within 5 feet of you when you cast the spell and at the start of each of your turns while the spell is in effect take 1d8 cold damage.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a 3rd-level spell slot, the purple fire extends 10 feet from you, you take 1d8 cold damage, and other creatures take 1d10 cold damage. When you cast this spell using a 4th‐level slot, the fire extends 15 feet from you, you take1d10 cold damage, and other creatures take 1d12 cold damage. When you cast this spell using a slot of 5th level or higher, the fire extends to 20 feet, you take 1d12 cold damage, and other creatures take 1d20 cold damage.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dead coal or a fistful of ashes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "doom-of-dancing-blades", - "fields": { - "name": "Doom of Dancing Blades", - "desc": "When you cast **doom of dancing blades**, you create 1d4 illusory copies of your weapon that float in the air 5 feet from you. These images move with you, spinning, shifting, and mimicking your attacks. When you are hit by a melee attack but the attack roll exceeded your Armor Class by 3 or less, one illusory weapon parries the attack; you take no damage and the illusory weapon is destroyed. When you are hit by a melee attack that an illusory weapon can’t parry (the attack roll exceeds your AC by 4 or more), you take only half as much damage from the attack, and an illusory weapon is destroyed. Spells and effects that affect an area or don’t require an attack roll affect you normally and don’t destroy any illusory weapons.\n\nIf you make a melee attack that scores a critical hit while **doom of dancing blades** is in effect on you, all your illusory weapons also strike the target and deal 1d8 bludgeoning, piercing, or slashing damage (your choice) each.\n\nThe spell ends when its duration expires or when all your illusory weapons are destroyed or expended.\n\nAn attacker must be able to see the illusory weapons to be affected. The spell has no effect if you are invisible or in total darkness or if the attacker is blinded.", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "doom-of-disenchantment", - "fields": { - "name": "Doom of Disenchantment", - "desc": "When you cast **doom of disenchantment**, your armor and shield glow with light. When a creature hits you with an attack, the spell counters any magic that provides the attack with a bonus to hit or to damage. For example, a +1 weapon would still be considered magical, but it gets neither +1 to hit nor +1 to damage on any attack against you.\n\nThe spell also suppresses other magical properties of the attack. A [sword of wounding](https://api.open5e.com/magicitems/sword-of-wounding), for example, can’t cause ongoing wounds on you, and you recover hit points lost to the weapon's damage normally. If the attack was a spell, it’s affected as if you had cast [counterspell](https://api.open5e.com/spells/counterspell), using Charisma as your spellcasting ability. Spells with a duration of instantaneous, however, are unaffected.", - "document": "deepm", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "doom-of-serpent-coils", - "fields": { - "name": "Doom of Serpent Coils", - "desc": "You drink a dose of venom or other poison and spread the effect to other living things around you. If the poison normally allows a saving throw, your save automatically fails. You suffer the effect of the poison normally before spreading the poison to all other living creatures within 10 feet of you. Instead of making the usual saving throw against the poison, each creature around you makes a Constitution saving throw against the spell. On a successful save, a target suffers no damage or other effect from the poison and is immune to further castings of **doom of serpent coils** for 24 hours. On a failed save, a target doesn't suffer the poison’s usual effect; instead, it takes 4d6 poison damage and is poisoned. While poisoned in this way, a creature repeats the saving throw at the end of each of its turns. On a subsequent failed save, it takes 4d6 poison damage and is still poisoned. On a subsequent successful save, it is no longer poisoned and is immune to further castings of **doom of serpent coils** for 24 hours.\n\nMultiple castings of this spell have no additional effect on creatures that are already poisoned by it. The effect can be ended by [protection from poison](https://api.open5e.com/spells/protection-from-poison) or comparable magic.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of poison", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "poison" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "doom-of-the-cracked-shield", - "fields": { - "name": "Doom of the Cracked Shield", - "desc": "Doom of the cracked shield is cast on a melee weapon. The next time that weapon is used, it destroys the target’s nonmagical shield or damages nonmagical armor, in addition to the normal effect of the attack. If the foe is using a nonmagical shield, it breaks into pieces. If the foe doesn’t use a shield, its nonmagical armor takes a -2 penalty to AC. If the target doesn’t use armor or a shield, the spell is expended with no effect.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "doom-of-the-earthen-maw", - "fields": { - "name": "Doom of the Earthen Maw", - "desc": "The ground within 30 feet of a point you designate turns into filthy and slippery muck. This spell affects sand, earth, mud, and ice, but not stone, wood, or other material. For the duration, the ground in the affected area is difficult terrain. A creature in the area when you cast the spell must succeed on a Strength saving throw or be restrained by the mud until the spell ends. A restrained creature can free itself by using an action to make a successful Strength saving throw. A creature that frees itself or that enters the area after the spell was cast is affected by the difficult terrain but doesn’t become restrained.\n\nEach round, a restrained creature sinks deeper into the muck. A Medium or smaller creature that is restrained for 3 rounds becomes submerged at the end of its third turn. A Large creature becomes submerged after 4 rounds. Submerged creatures begin suffocating if they aren’t holding their breath. A creature that is still submerged when the spell ends is sealed beneath the newly solidified ground. The creature can escape only if someone else digs it out or it has a burrowing speed.", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "doom-of-the-slippery-rogue", - "fields": { - "name": "Doom of the Slippery Rogue", - "desc": "A **doom of the slippery rogue** spell covers a 20-foot-by-20-foot section of wall or floor within range with a thin coating of grease. If a vertical surface is affected, each climber on that surface must make a successful DC 20 Strength (Athletics) check or immediately fall from the surface unless it is held in place by ropes or other climbing gear. A creature standing on an affected floor falls prone unless it makes a successful Dexterity saving throw. Creatures that try to climb or move through the affected area can move no faster than half speed (this is cumulative with the usual reduction for climbing), and any movement must be followed by a Strength saving throw (for climbing) or a Dexterity saving throw (for walking). On a failed save, the moving creature falls or falls prone.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "40 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "bacon fat", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "douse-light", - "fields": { - "name": "Douse Light", - "desc": "With a simple gesture, you can put out a single small source of light within range. This spell extinguishes a torch, a candle, a lantern, or a [light](https://api.open5e.com/spells/light) or [dancing lights](https://api.open5e.com/spells/dancing-lights) cantrip.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "draconic-smite", - "fields": { - "name": "Draconic Smite", - "desc": "The next time you hit a creature with a melee weapon attack during the spell’s duration, your weapon takes on the form of a silver dragon’s head. Your attack deals an extra 1d6 cold damage, and up to four other creatures of your choosing within 30 feet of the attack’s target must each make a successful Constitution saving throw or take 1d6 cold damage.\n", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the extra cold damage and the cold damage dealt to the secondary creatures increases by 1d6 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dragon-breath", - "fields": { - "name": "Dragon Breath", - "desc": "You summon draconic power to gain a breath weapon. When you cast dragon breath, you can immediately exhale a cone or line of elemental energy, depending on the type of dragon you select. While the spell remains active, roll a d6 at the start of your turn. On a roll of 5 or 6, you can take a bonus action that turn to use the breath weapon again.\n\nWhen you cast the spell, choose one of the dragon types listed below. Your choice determines the affected area and the damage of the breath attack for the spell’s duration.\n\n| Dragon Type | Area | Damage |\n|-|-|-|\n| Black | 30-foot line, 5 feet wide | 6d6 acid damage |\n| Blue | 30-foot line, 5 feet wide | 6d6 lightning damage |\n| Green | 15-foot cone | 6d6 poison damage |\n| Red | 15-foot cone | 6d6 fire damage |\n| White | 15-foot cone | 6d6 cold damage |\n\n", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 2d6 for each slot level above 5th.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of a dragon’s tooth", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "line", - "shape_magnitude": 15, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dragon-roar", - "fields": { - "name": "Dragon Roar", - "desc": "Your voice is amplified to assault the mind of one creature. The target must make a Charisma saving throw. If it fails, the target takes 1d4 psychic damage and is frightened until the start of your next turn. A target can be affected by your dragon roar only once per 24 hours.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "This spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "1d4", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "drown", - "fields": { - "name": "Drown", - "desc": "You cause a creature's lungs to fill with seawater. Unless the target makes a successful Constitution saving throw, it immediately begins suffocating. A suffocating creature can’t speak or perform verbal spell components. It can hold its breath, and thereafter can survive for a number of rounds equal to its Constitution modifier (minimum of 1 round), after which it drops to 0 hit points and is dying. Huge or larger creatures are unaffected, as are creatures that can breathe water or that don’t require air.\n\nA suffocating (not dying) creature can repeat the saving throw at the end of each of its turns, ending the effect on a success.\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.\n\nNOTE: Midgard Heroes Handbook has a very different [drown-heroes-handbook/drown](https://api.open5e.com/spells/drown) spell.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small piece of flotsam or seaweed", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "dryads-kiss", - "fields": { - "name": "Dryad’s Kiss", - "desc": "You perform an ancient incantation that summons flora from the fey realm. A creature you can see within range is covered with small, purple buds and takes 3d8 necrotic damage; a successful Wisdom saving throw negates the damage but doesn’t prevent the plant growth. The buds can be removed by the target or an ally of the target within 5 feet who uses an action to make a successful Intelligence (Nature) or Wisdom (Medicine) check against your spell save DC, or by a [greater restoration](https://api.open5e.com/spells/greater-restoration) or [blight](https://api.open5e.com/spells/blight) spell. While the buds remain, whenever the target takes damage from a source other than this spell, one bud blossoms into a purple and yellow flower that deals an extra 1d8 necrotic damage to the target. Once four blossoms have formed in this way, the buds can no longer be removed by nonmagical means. The buds and blossoms wilt and fall away when the spell ends, provided the creature is still alive.\n\nIf a creature affected by this spell dies, sweet-smelling blossoms quickly cover its body. The flowers wilt and die after one month.\n", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "If this spell is cast using a spell slot of 5th level or higher, the number of targets increases by one for every two slot levels above 3rd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a flower petal or a drop of blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "earthskimmer", - "fields": { - "name": "Earthskimmer", - "desc": "You cause earth and stone to rise up beneath your feet, lifting you up to 5 feet. For the duration, you can use your movement to cause the slab to skim along the ground or other solid, horizontal surface at a speed of 60 feet. This movement ignores difficult terrain. If you are pushed or moved against your will by any means other than teleporting, the slab moves with you.\n\nUntil the end of your turn, you can enter the space of a creature up to one size larger than yourself when you take the Dash action. The creature must make a Strength saving throw. It takes 4d6 bludgeoning damage and is knocked prone on a failed save, or takes half as much damage and isn’t knocked prone on a succesful one.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of shale or slate", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "earworm-melody", - "fields": { - "name": "Earworm Melody", - "desc": "You sing or play a catchy tune that only one creature of your choice within range can hear. Unless the creature makes a successful Wisdom saving throw, the verse becomes ingrained in its head. If the target is concentrating on a spell, it must make a Constitution check with disadvantage against your spell save DC in order to maintain concentration.\n\nFor the spell’s duration, the target takes 2d4 psychic damage at the start of each of its turns as the melody plays over and over in its mind. The target repeats the saving throw at the end of each of its turns, ending the effect on a success. On a failed save, the target must also repeat the Constitution check with disadvantage if it is concentrating on a spell.\n", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "If you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d4 for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "echoes-of-steel", - "fields": { - "name": "Echoes of Steel", - "desc": "When you hit a creature with a melee weapon attack, you can use a bonus action to cast echoes of steel. All creatures you designate within 30 feet of you take thunder damage equal to the damage from the melee attack, or half as much damage with a successful Constitution saving throw.", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "ectoplasm", - "fields": { - "name": "Ectoplasm", - "desc": "You call forth an ectoplasmic manifestation of Medium size that appears in an unoccupied space of your choice within range that you can see. The manifestation lasts for the spell’s duration. Any creature that ends its turn within 5 feet of the manifestation takes 2d6 psychic damage, or half the damage with a successful Wisdom saving throw.\n\nAs a bonus action, you can move the manifestation up to 30 feet. It can move through a creature’s space but can’t remain in the same space as that creature. If it enters a creature’s space, that creature takes 2d6 psychic damage, or half the damage with a successful Wisdom saving throw. On a failed save, the creature also has disadvantage on Dexterity checks until the end of its next turn.\n\nWhen you move the manifestation, it can flow through a gap as small as 1 square inch, over barriers up to 5 feet tall, and across pits up to 10 feet wide. The manifestation sheds dim light in a 10-foot radius. It also leaves a thin film of ectoplasmic residue on everything it touches or moves through. This residue doesn’t illuminate the surroundings but does glow dimly enough to show the manifestation’s path. The residue dissipates 1 round after it is deposited.\n", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of bone dust", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "eidetic-memory", - "fields": { - "name": "Eidetic Memory", - "desc": "When you cast this spell, you can recall any piece of information you’ve ever read or heard in the past. This ability translates into a +10 bonus on Intelligence checks for the duration of the spell.", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a string tied in a knot", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "eldritch-communion", - "fields": { - "name": "Eldritch Communion", - "desc": "You contact a Great Old One and ask one question that can be answered with a one-sentence reply no more than twenty words long. You must ask your question before the spell ends. There is a 25 percent chance that the answer contains a falsehood or is misleading in some way. (The GM determines this secretly.)\n\nGreat Old Ones have vast knowledge, but they aren’t omniscient, so if your question pertains to information beyond the Old One’s knowledge, the answer might be vacuous, gibberish, or an angry, “I don’t know.”\n\nThis also reveals the presence of all aberrations within 300 feet of you. There is a 1-in-6 chance that each aberration you become aware of also becomes aware of you.\n\nIf you cast **eldritch communion** two or more times before taking a long rest, there is a cumulative 25 percent chance for each casting after the first that you receive no answer and become afflicted with short-term madness.", - "document": "deepm", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "corvid entrails, a dried opium poppy, and a glass dagger", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "elemental-horns", - "fields": { - "name": "Elemental Horns", - "desc": "The target of this spell must be a creature that has horns, or the spell fails. **Elemental horns** causes the touched creature’s horns to crackle with elemental energy. Select one of the following energy types when casting this spell: acid, cold, fire, lightning, or radiant. The creature’s gore attack deals 3d6 damage of the chosen type in addition to any other damage the attack normally deals.\n\nAlthough commonly seen among tieflings and minotaurs, this spell is rarely employed by other races.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 2d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a brass wand", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "elemental-twist", - "fields": { - "name": "Elemental Twist", - "desc": "During this spell’s duration, reality shifts around you whenever you cast a spell that deals acid, cold, fire, lightning, poison, or thunder damage. Assign each damage type a number and roll a d6 to determine the type of damage this casting of the spell deals. In addition, the spell’s damage increases by 1d6. All other properties or effects of the spell are unchanged.", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a thin piece of copper twisted around itself", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "emanation-of-yoth", - "fields": { - "name": "Emanation of Yoth", - "desc": "You call forth a [ghost](https://api.open5e.com/monsters/ghost)// that takes the form of a spectral, serpentlike assassin. It appears in an unoccupied space that you can see within range. The ghost disappears when it’s reduced to 0 hit points or when the spell ends.\n\nThe ghost is friendly to you and your companions for the duration of the spell. Roll initiative for the ghost, which takes its own turns. It obeys verbal commands that you issue to it (no action required by you). If you don’t issue a command to it, the ghost defends itself from hostile creatures but doesn’t move or take other actions.\n\nYou are immune to the ghost’s Horrifying Visage action but can willingly become the target of the ghost’s Possession ability. You can end this effect on yourself as a bonus action.\n", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 6th or 7th level, you call forth two ghosts. If you cast it using a spell slot of 8th or 9th level, you call forth three ghosts.", - "target_type": "point", - "range": "90 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a fistful of grave earth and a vial of child’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "enchant-ring", - "fields": { - "name": "Enchant Ring", - "desc": "You enchant a ring you touch that isn’t being worn or carried. The next creature that willingly wears the ring becomes charmed by you for 1 week or until it is harmed by you or one of your allies. If the creature dons the ring while directly threatened by you or one of your allies, the spell fails.\n\nThe charmed creature regards you as a friend. When the spell ends, it doesn’t know it was charmed by you, but it does realize that its attitude toward you has changed (possibly greatly) in a short time. How the creature reacts to you and regards you in the future is up to the GM.", - "document": "deepm", - "level": 6, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "500 gp worth of diamond dust, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent until discharged", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "encroaching-shadows", - "fields": { - "name": "Encroaching Shadows", - "desc": "You cause menacing shadows to invade an area 200 feet on a side and 50 feet high, centered on a point within range. Illumination in the area drops one step (from bright light to dim, or from dim light to darkness). Any spell that creates light in the area that is cast using a lower-level spell slot than was used to cast encroaching shadows is dispelled, and a spell that creates light doesn’t function in the area if that spell is cast using a spell slot of 5th level or lower. Nonmagical effects can’t increase the level of illumination in the affected area.\n\nA spell that creates darkness or shadow takes effect in the area as if the spell slot expended was one level higher than the spell slot actually used.\n", - "document": "deepm", - "level": 6, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the effect lasts for an additional 12 hours for each slot level above 6th.\n\n***Ritual Focus.*** If you expend your ritual focus, the spell’s duration increases by 12 hours, and it cannot be dispelled by a spell that creates light, even if that spell is cast using a higher-level spell slot.", - "target_type": "area", - "range": "150 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of blood smeared on a silver rod worth 100 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "12 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "encrypt-decrypt", - "fields": { - "name": "Encrypt / Decrypt", - "desc": "By touching a page of written information, you can encode its contents. All creatures that try to read the information when its contents are encoded see the markings on the page as nothing but gibberish. The effect ends when either **encrypt / decrypt** or [dispel magic](https://api.open5e.com/spells/dispel-magic) is cast on the encoded writing, which turns it back into its normal state.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "endow-attribute", - "fields": { - "name": "Endow Attribute", - "desc": "You touch a creature with a ring that has been etched with symbols representing a particular ability (Strength, Dexterity, and so forth). The creature must make a successful Constitution saving throw or lose one-fifth (rounded down) of its points from that ability score. Those points are absorbed into the ring and stored there for the spell’s duration. If you then use an action to touch the ring to another creature on a later turn, the absorbed ability score points transfer to that creature. Once the points are transferred to another creature, you don’t need to maintain concentration on the spell; the recipient creature retains the transferred ability score points for the remainder of the hour.\n\nThe spell ends if you lose concentration before the transfer takes place, if either the target or the recipient dies, or if either the target or the recipient is affected by a successful [dispel magic](https://api.open5e.com/spells/dispel-magic) spell. When the spell ends, the ability score points return to the original owner. Before then, that creature can’t regain the stolen attribute points, even with greater restoration or comparable magic.\n", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "If you cast this spell using a spell slot of 7th or 8th level, the duration is 8 hours. If you use a 9th‐level spell slot, the duration is 24 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a ring worth at least 200 gp, which the spell consumes", - "material_cost": "200.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "energy-absorption", - "fields": { - "name": "Energy Absorption", - "desc": "A creature you touch has resistance to acid, cold, fire, force, lightning, and thunder damage until the spell ends.\n\nIf the spell is used against an unwilling creature, you must make a melee spell attack with a reach of 5 feet. If the attack hits, for the duration of the spell the affected creature must make a saving throw using its spellcasting ability whenever it casts a spell that deals one of the given damage types. On a failed save, the spell is not cast but its slot is expended; on a successful save, the spell is cast but its damage is halved before applying the effects of saving throws, resistance, and other factors.", - "document": "deepm", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "energy-foreknowledge", - "fields": { - "name": "Energy Foreknowledge", - "desc": "When you cast this spell, you gain resistance to every type of energy listed above that is dealt by the spell hitting you. This resistance lasts until the end of your next turn.\n", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can include one additional ally in its effect for each slot level above 4th. Affected allies must be within 15 feet of you.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "enhance-greed", - "fields": { - "name": "Enhance Greed", - "desc": "You detect precious metals, gems, and jewelry within 60 feet. You do not discern their exact location, only their presence and direction. Their exact location is revealed if you are within 10 feet of the spot.\n\n**Enhance greed** penetrates barriers but is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of dirt or wood.\n", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 1 minute, and another 10 feet can be added to its range, for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "entomb", - "fields": { - "name": "Entomb", - "desc": "You cause slabs of rock to burst out of the ground or other stone surface to form a hollow, 10-foot cube within range. A creature inside the cube when it forms must make a successful Dexterity saving throw or be trapped inside the stone tomb. The tomb is airtight, with enough air for a single Medium or Small creature to breathe for 8 hours. If more than one creature is trapped inside, divide the time evenly between all the occupants. A Large creature counts as four Medium creatures. If the creature is still trapped inside when the air runs out, it begins to suffocate.\n\nThe tomb has AC 18 and 50 hit points. It is resistant to fire, cold, lightning, bludgeoning, and slashing damage, is immune to poison and psychic damage, and is vulnerable to thunder damage. When reduced to 0 hit points, the tomb crumbles into harmless powder.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a chip of granite", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "entropic-damage-field", - "fields": { - "name": "Entropic Damage Field", - "desc": "By twisting a length of silver wire around your finger, you tie your fate to those around you. When you take damage, that damage is divided equally between you and all creatures in range who get a failure on a Charisma saving throw. Any leftover damage that can’t be divided equally is taken by you. Creatures that approach to within 60 feet of you after the spell was cast are also affected. A creature is allowed a new saving throw against this spell each time you take damage, and a successful save ends the spell’s effect on that creature.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a silver wire", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "essence-instability", - "fields": { - "name": "Essence Instability", - "desc": "You cause the target to radiate a harmful aura. Both the target and every creature beginning or ending its turn within 20 feet of the target suffer 2d6 poison damage per round. The target can make a Constitution saving throw each round to negate the damage and end the affliction. Success means the target no longer takes damage from the aura, but the aura still persists around the target for the full duration.\n\nCreatures affected by the aura must make a successful Constitution saving throw each round to negate the damage. The aura moves with the original target and is unaffected by [gust of wind](https://api.open5e.com/spells/gust-of-wind) and similar spells.\n\nThe aura does not detect as magical or poison, and is invisible, odorless, and intangible (though the spell’s presence can be detected on the original target). [Protection from poison](https://api.open5e.com/spells/protection-from-poison) negates the spell’s effects on targets but will not dispel the aura. A foot of metal or stone, two inches of lead, or a force effect such as [mage armor](https://api.open5e.com/spells/mage-armor) or [wall of force](https://api.open5e.com/spells/wall-of-force) will block it.\n", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the aura lasts 1 minute longer and the poison damage increases by 1d6 for each slot level above 5th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "evercold", - "fields": { - "name": "Evercold", - "desc": "You target a creature within the spell’s range, and that creature must make a successful Wisdom saving throw or take 1d6 cold damage. In addition, the target is cursed to feel as if it’s exposed to extreme cold. For the duration of **evercold**, the target must make a successful DC 10 Constitution saving throw at the end of each hour or gain one level of exhaustion. The target has advantage on the hourly saving throws if wearing suitable cold-weather clothing, but it has disadvantage on saving throws against other spells and magic that deal cold damage (regardless of its clothing) for the spell’s duration.\n\nThe spell can be ended by its caster or by [dispel magic](https://api.open5e.com/spells/dispel-magic) or [remove curse](https://api.open5e.com/spells/remove-curse).", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an insect that froze to death", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "exsanguinate", - "fields": { - "name": "Exsanguinate", - "desc": "You cause the body of a creature within range to become engorged with blood or ichor. The target must make a Constitution saving throw. On a successful save, it takes 2d6 bludgeoning damage. On a failed save, it takes 4d6 bludgeoning damage each round, it is incapacitated, and it cannot speak, as it vomits up torrents of blood or ichor. In addition, its hit point maximum is reduced by an amount equal to the damage taken. The target dies if this effect reduces its hit point maximum to 0.\n\nAt the end of each of its turns, a creature can make a Constitution saving throw, ending the effect on a success—except for the reduction of its hit point maximum, which lasts until the creature finishes a long rest.\n", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can target one additional creature for each slot level above 5th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a desiccated horse heart", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "exsanguinating-cloud", - "fields": { - "name": "Exsanguinating Cloud", - "desc": "When you cast this spell, a rose-colored mist billows up in a 20-foot radius, centered on a point you indicate within range, making the area heavily obscured and draining blood from living creatures in the cloud. The cloud spreads around corners. It lasts for the duration or until strong wind disperses it, ending the spell.\n\nThis cloud leaches the blood or similar fluid from creatures in the area. It doesn’t affect undead or constructs. Any creature in the cloud when it’s created or at the start of your turn takes 6d6 necrotic damage and gains one level of exhaustion; a successful Constitution saving throw halves the damage and prevents the exhaustion.", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "point", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "necrotic" - ], - "duration": "5 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "extract-knowledge", - "fields": { - "name": "Extract Knowledge", - "desc": "By touching a recently deceased corpse, you gain one specific bit of knowledge from it that was known to the creature in life. You must form a question in your mind as part of casting the spell; if the corpse has an answer to your question, it reveals the information to you telepathically. The answer is always brief—no more than a sentence—and very specific to the framed question. It doesn’t matter whether the creature was your friend or enemy; the spell compels it to answer in any case.", - "document": "deepm", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a blank page", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fault-line", - "fields": { - "name": "Fault Line", - "desc": "The ground thrusts sharply upward along a 5-foot-wide, 60‐foot-long line that you designate. All spaces affected by the spell become difficult terrain. In addition, all creatures in the affected area are knocked prone and take 8d6 bludgeoning damage. Creatures that make a successful Dexterity saving throw take half as much damage and are not knocked prone. This spell doesn’t damage permanent structures.", - "document": "deepm", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "feather-field", - "fields": { - "name": "Feather Field", - "desc": "A magical barrier of chaff in the form of feathers appears and protects you. Until the start of your next turn, you have a +5 bonus to AC against ranged attacks by magic weapons.\n", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "When you cast **feather field** using a spell slot of 2nd level or higher, the duration is increased by 1 round for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "fletching from an arrow", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "feather-travel", - "fields": { - "name": "Feather Travel", - "desc": "The target of **feather travel** (along with its clothing and other gear) transforms into a feather and drifts on the wind. The drifting creature has a limited ability to control its travel. It can move only in the direction the wind is blowing and at the speed of the wind. It can, however, shift up, down, or sideways 5 feet per round as if caught by a gust, allowing the creature to aim for an open window or doorway, to avoid a flame, or to steer around an animal or another creature. When the spell ends, the feather settles gently to the ground and transforms back into the original creature.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, two additional creatures can be transformed per slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a feather", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "fey-crown", - "fields": { - "name": "Fey Crown", - "desc": "By channeling the ancient wards of the Seelie Court, you create a crown of five flowers on your head. While wearing this crown, you have advantage on saving throws against spells and other magical effects and are immune to being charmed. As a bonus action, you can choose a creature within 30 feet of you (including yourself). Until the end of its next turn, the chosen creature is invisible and has advantage on saving throws against spells and other magical effects. Each time a chosen creature becomes invisible, one of the blossoms in the crown closes. After the last of the blossoms closes, the spell ends at the start of your next turn and the crown disappears.\n", - "document": "deepm", - "level": 5, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the crown can have one additional flower for each slot level above 5th. One additional flower is required as a material component for each additional flower in the crown.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "five flowers of different colors", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "find-kin", - "fields": { - "name": "Find Kin", - "desc": "You touch one willing creature or make a melee spell attack against an unwilling creature, which is entitled to a Wisdom saving throw. On a failed save, or automatically if the target is willing, you learn the identity, appearance, and location of one randomly selected living relative of the target.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a freshly dug up tree root that is consumed by the spell", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fire-darts", - "fields": { - "name": "Fire Darts", - "desc": "When this spell is cast on any fire that’s at least as large as a small campfire or cooking fire, three darts of flame shoot out from the fire toward creatures within 30 feet of the fire. Darts can be directed against the same or separate targets as the caster chooses. Each dart deals 4d6 fire damage, or half as much damage if its target makes a successful Dexterity saving throw.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "20 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a fire the size of a small campfire or larger", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fire-under-the-tongue", - "fields": { - "name": "Fire Under the Tongue", - "desc": "You can ingest a nonmagical fire up to the size of a normal campfire that is within range. The fire is stored harmlessly in your mouth and dissipates without effect if it is not used before the spell ends. You can spit out the stored fire as an action. If you try to hit a particular target, then treat this as a ranged attack with a range of 5 feet. Campfire-sized flames deal 2d6 fire damage, while torch-sized flames deal 1d6 fire damage. Once you have spit it out, the fire goes out immediately unless it hits flammable material that can keep it fed.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "5 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "firewalk", - "fields": { - "name": "Firewalk", - "desc": "The creature you cast **firewalk** on becomes immune to fire damage. In addition, that creature can walk along any burning surface, such as a burning wall or burning oil spread on water, as if it were solid and horizontal. Even if there is no other surface to walk on, the creature can walk along the tops of the flames.\n", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, two additional creatures can be affected for each slot level above 6th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "fist-of-iron", - "fields": { - "name": "Fist of Iron", - "desc": "You transform your naked hand into iron. Your unarmed attacks deal 1d6 bludgeoning damage and are considered magical.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "flame-wave", - "fields": { - "name": "Flame Wave", - "desc": "A rushing burst of fire rips out from you in a rolling wave, filling a 40-foot cone. Each creature in the area must make a Dexterity saving throw. A creature takes 6d8 fire damage and is pushed 20 feet away from you on a failed save; on a successful save, the creature takes half as much damage and isn’t pushed.\n", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of tar, pitch, or oil", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 40, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "flesh-to-paper", - "fields": { - "name": "Flesh to Paper", - "desc": "A willing creature you touch becomes as thin as a sheet of paper until the spell ends. Anything the target is wearing or carrying is also flattened. The target can’t cast spells or attack, and attack rolls against it are made with disadvantage. It has advantage on Dexterity (Stealth) checks while next to a wall or similar flat surface. The target can move through a space as narrow as 1 inch without squeezing. If it occupies the same space as an object or a creature when the spell ends, the creature is shunted to the nearest unoccupied space and takes force damage equal to twice the number of feet it was moved.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "flickering-fate", - "fields": { - "name": "Flickering Fate", - "desc": "You or a creature that you touch can see a few seconds into the future. When the spell is cast, each other creature within 30 feet of the target must make a Wisdom saving throw. Those that fail must declare, in initiative order, what their next action will be. The target of the spell declares his or her action last, after hearing what all other creatures will do. Each creature that declared an action must follow its declaration as closely as possible when its turn comes. For the duration of the spell, the target has advantage on attack rolls, ability checks, and saving throws, and creatures that declared their actions have disadvantage on attack rolls against the target.", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fluctuating-alignment", - "fields": { - "name": "Fluctuating Alignment", - "desc": "You channel the force of chaos to taint your target’s mind. A target that gets a failure on a Wisdom saving throw must roll 1d20 and consult the Alignment Fluctuation table to find its new alignment, and it must roll again after every minute of the spell’s duration. The target’s alignment stops fluctuating and returns to normal when the spell ends. These changes do not make the affected creature friendly or hostile toward the caster, but they can cause creatures to behave in unpredictable ways.\n ## Alignment Fluctuation \n| D20 | Alignment |\n|-|-|\n| 1-2 | Chaotic good |\n| 3-4 | Chaotic neutral |\n| 5-7 | Chaotic evil |\n| 8-9 | Neutral evil |\n| 10-11 | Lawful evil |\n| 12-14 | Lawful good |\n| 15-16 | Lawful neutral |\n| 17-18 | Neutral good |\n| 19-20 | Neutral |\n\n", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "flurry", - "fields": { - "name": "Flurry", - "desc": "A flurry of snow surrounds you and extends to a 5-foot radius around you. While it lasts, anyone trying to see into, out of, or through the affected area (including you) has disadvantage on Wisdom (Perception) checks and attack rolls.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a fleck of quartz", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "forest-native", - "fields": { - "name": "Forest Native", - "desc": "While in a forest, you touch a willing creature and infuse it with the forest’s energy, creating a bond between the creature and the environment. For the duration of the spell, as long as the creature remains within the forest, its movement is not hindered by difficult terrain composed of natural vegetation. In addition, the creature has advantage on saving throws against environmental effects such as excessive heat or cold or high altitude.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a clump of soil from a forest", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "forest-sanctuary", - "fields": { - "name": "Forest Sanctuary", - "desc": "While in a forest, you create a protective, 200-foot cube centered on a point you can see within range. The atmosphere inside the cube has the lighting, temperature, and moisture that is most ideal for the forest, regardless of the lighting or weather outside the area. The cube is transparent, and creatures and objects can move freely through it. The cube protects the area inside it from storms, strong winds, and floods, including those created by magic such as [control weather](https://api.open5e.com/spells/control-weather)[control water](https://api.open5e.com/spells/control-water), or [meteor swarm](https://api.open5e.com/spells/meteor-swarm). Such spells can’t be cast while the spellcaster is in the cube.\n\nYou can create a permanently protected area by casting this spell at the same location every day for one year.", - "document": "deepm", - "level": 9, - "school": "abjuration", - "higher_level": "", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a bowl of fresh rainwater and a tree branch", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": "cube", - "shape_magnitude": 200, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "foretell-distraction", - "fields": { - "name": "Foretell Distraction", - "desc": "Thanks to your foreknowledge, you know exactly when your foe will take his or her eyes off you. Casting this spell has the same effect as making a successful Dexterity (Stealth) check, provided cover or concealment is available within 10 feet of you. It doesn’t matter whether enemies can see you when you cast the spell; they glance away at just the right moment. You can move up to 10 feet as part of casting the spell, provided you’re able to move (not restrained or grappled or reduced to a speed of less than 10 feet for any other reason). This move doesn’t count as part of your normal movement. After the spell is cast, you must be in a position where you can remain hidden: a lightly obscured space, for example, or a space where you have total cover. Otherwise, enemies see you again immediately and you’re not hidden.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "form-of-the-gods", - "fields": { - "name": "Form of the Gods", - "desc": "By drawing on the energy of the gods, you can temporarily assume the form of your patron’s avatar. Form of the gods transforms you into an entirely new shape and brings about the following changes (summarized below and in the [avatar form](https://api.open5e.com/monsters/avatar-form) stat block).\n* Your size becomes Large, unless you were already at least that big.\n* You gain resistance to nonmagical bludgeoning, piercing, and slashing damage and to one other damage type of your choice.\n* You gain a Multiattack action option, allowing you to make two slam attacks and a bite.\n* Your ability scores change to reflect your new form, as shown in the stat block.\n\nYou remain in this form until you stop concentrating on the spell or until you drop to 0 hit points, at which time you revert to your natural form.", - "document": "deepm", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a holy symbol", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "freeze-blood", - "fields": { - "name": "Freeze Blood", - "desc": "When you cast **freeze blood** as a successful melee spell attack against a living creature with a circulatory system, the creature’s blood freezes. For the spell’s duration, the affected creature’s speed is halved and it takes 2d6 cold damage at the start of each of its turns. If the creature takes bludgeoning damage from a critical hit, the attack’s damage dice are rolled three times instead of twice. At the end of each of its turns, the creature can make a Constitution saving throw, ending the effect on a success.\n\nNOTE: This was previously a 5th-level spell that did 4d10 cold damage.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "freeze-potion", - "fields": { - "name": "Freeze Potion", - "desc": "A blue spark flies from your hand and strikes a potion vial, drinking horn, waterskin, or similar container, instantly freezing the contents. The substance melts normally thereafter and is not otherwise harmed, but it can’t be consumed while it’s frozen.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the range increases by 5 feet for each slot level above 1st.", - "target_type": "object", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "freezing-fog", - "fields": { - "name": "Freezing Fog", - "desc": "The spell creates a 20-foot-radius sphere of mist similar to a [fog cloud](https://api.open5e.com/spells/fog-cloud) spell centered on a point you can see within range. The cloud spreads around corners, and the area it occupies is heavily obscured. A wind of moderate or greater velocity (at least 10 miles per hour) disperses it in 1 round. The fog is freezing cold; any creature that ends its turn in the area must make a Constitution saving throw. It takes 2d6 cold damage and gains one level of exhaustion on a failed save, or takes half as much damage and no exhaustion on a successful one.\n", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "point", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "cold" - ], - "duration": "5 minutes", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "frenzied-bolt", - "fields": { - "name": "Frenzied Bolt", - "desc": "You direct a bolt of rainbow colors toward a creature of your choice within range. If the bolt hits, the target takes 3d8 damage, of a type determined by rolling on the Random Damage Type table. If your attack roll (not the adjusted result) was odd, the bolt leaps to a new target of your choice within range that has not already been targeted by frenzied bolt, requiring a new spell attack roll to hit. The bolt continues leaping to new targets until you roll an even number on your spell attack roll, miss a target, or run out of potential targets. You and your allies are legal targets for this spell if you are particularly lucky—or unlucky.", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create an additional bolt for each slot level above 2nd. Each potential target can be hit only once by each casting of the spell, not once per bolt.\n \n **Random Damage Type** \n \n| d10 | Damage Type | \n|--------------|---------| \n| 1 | Acid | \n| 2 | Cold | \n| 3 | Fire | \n| 4 | Force | \n| 5 | Lightning | \n| 6 | Necrotic | \n| 7 | Poision | \n| 8 | Psychic | \n| 9 | Radiant | \n| 10 | Thunder | \n \n", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "frostbite", - "fields": { - "name": "Frostbite", - "desc": "Biting cold settles onto a creature you can see. The creature must make a Constitution saving throw. On a failed save, the creature takes 4d8 cold damage. In addition, for the duration of the spell, the creature’s speed is halved, it has disadvantage on attack rolls and ability checks, and it takes another 4d8 cold damage at the start of each of its turns.\n\nAn affected creature can repeat the saving throw at the start of each of its turns. The effect ends when the creature makes its third successful save.\n\nCreatures that are immune to cold damage are unaffected by **frostbite**.\n", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can target two additional creatures for each slot level above 5th.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a strip of dried flesh that has been frozen at least once", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d8", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "frostbitten-fingers", - "fields": { - "name": "Frostbitten Fingers", - "desc": "You fire a ray of intense cold that instantly induces frostbite. With a successful ranged spell attack, this spell causes one of the target’s hands to lose sensation. When the spell is cast, the target must make a successful Dexterity saving throw to maintain its grip on any object with the affected hand. The saving throw must be repeated every time the target tries to manipulate, wield, or pick up an item with the affected hand. Additionally, the target has disadvantage on Dexterity checks or Strength checks that require the use of both hands.\n\nAfter every 10 minutes of being affected by frostbitten fingers, the target must make a successful Constitution saving throw, or take 1d6 cold damage and lose one of the fingers on the affected hand, beginning with the pinkie.", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "frozen-razors", - "fields": { - "name": "Frozen Razors", - "desc": "Razor-sharp blades of ice erupt from the ground or other surface, filling a 20-foot cube centered on a point you can see within range. For the duration, the area is lightly obscured and is difficult terrain. A creature that moves more than 5 feet into or inside the area on a turn takes 2d6 slashing damage and 3d6 cold damage, or half as much damage if it makes a successful Dexterity saving throw. A creature that takes cold damage from frozen razors is reduced to half speed until the start of its next turn.\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "water from a melted icicle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "slashing" - ], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "furious-hooves", - "fields": { - "name": "Furious Hooves", - "desc": "You enhance the feet or hooves of a creature you touch, imbuing it with power and swiftness. The target doubles its walking speed or increases it by 30 feet, whichever addition is smaller. In addition to any attacks the creature can normally make, this spell grants two hoof attacks, each of which deals bludgeoning damage equal to 1d6 + plus the target’s Strength modifier (or 1d8 if the target of the spell is Large). For the duration of the spell, the affected creature automatically deals this bludgeoning damage to the target of its successful shove attack.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a nail", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "fusillade-of-ice", - "fields": { - "name": "Fusillade of Ice", - "desc": "You unleash a spray of razor-sharp ice shards. Each creature in the 30-foot cone takes 4d6 cold damage and 3d6 piercing damage, or half as much damage with a successful Dexterity saving throw.\n", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by your choice of 1d6 cold damage or 1d6 piercing damage for each slot level above 4th. You can make a different choice (cold damage or piercing damage) for each slot level above 4th. Casting this spell with a spell slot of 6th level or higher increases the range to a 60-foot cone.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dagger shaped like an icicle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "7d6", - "damage_types": [ - "cold", - "piercing" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "gear-barrage", - "fields": { - "name": "Gear Barrage", - "desc": "You create a burst of magically propelled gears. Each creature within a 60-foot cone takes 3d8 slashing damage, or half as much damage with a successful Dexterity saving throw. Constructs have disadvantage on the saving throw.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of gears and sprockets worth 5 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "slashing" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 60, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ghoul-kings-cloak", - "fields": { - "name": "Ghoul King’s Cloak", - "desc": "You touch a creature, giving it some of the power of a ghoul king. The target gains the following benefits for the duration:\n* Its Armor Class increases by 2, to a maximum of 20.\n* When it uses the Attack action to make a melee weapon attack or a ranged weapon attack, it can make one additional attack of the same kind.\n* It is immune to necrotic damage and radiant damage.\n* It can’t be reduced to less than 1 hit point.", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "When you cast this spell using a 9th-level spell slot, the spell lasts for 10 minutes and doesn’t require concentration.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "gird-the-spirit", - "fields": { - "name": "Gird the Spirit", - "desc": "Your magic protects the target creature from the lifesapping energies of the undead. For the duration, the target has immunity to effects from undead creatures that reduce its ability scores, such as a shadow's Strength Drain, or its hit point maximum, such as a specter's Life Drain. This spell doesn't prevent damage from those attacks; it prevents only the reduction in ability score or hit point maximum.", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "glacial-cascade", - "fields": { - "name": "Glacial Cascade", - "desc": "By harnessing the power of ice and frost, you emanate pure cold, filling a 30-foot-radius sphere. Creatures other than you in the sphere take 10d8 cold damage, or half as much damage with a successful Constitution saving throw. A creature killed by this spell is transformed into ice, leaving behind no trace of its original body.", - "document": "deepm", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of alexandrite", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "glacial-fog", - "fields": { - "name": "Glacial Fog", - "desc": "As you cast this spell, a 30-foot-radius sphere centered on a point within range becomes covered in a frigid fog. Each creature that is in the area at the start of its turn while the spell remains in effect must make a Constitution saving throw. On a failed save, a creature takes 12d6 cold damage and gains one level of exhaustion, and it has disadvantage on Perception checks until the start of its next turn. On a successful save, the creature takes half the damage and ignores the other effects.\n\nStored devices and tools are all frozen by the fog: crossbow mechanisms become sluggish, weapons are stuck in scabbards, potions turn to ice, bag cords freeze together, and so forth. Such items require the application of heat for 1 round or longer in order to become useful again.\n", - "document": "deepm", - "level": 7, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 1d6 for each slot level above 7th.", - "target_type": "point", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "crystalline statue of a polar bear worth at least 25 gp", - "material_cost": "25.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "12d6", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "gliding-step", - "fields": { - "name": "Gliding Step", - "desc": "Provided you’re not carrying more of a load than your carrying capacity permits, you can walk on the surface of snow rather than wading through it, and you ignore its effect on movement. Ice supports your weight no matter how thin it is, and you can travel on ice as if you were wearing ice skates. You still leave tracks normally while under these effects.\n", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 10 minutes for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "glimpse-of-the-void", - "fields": { - "name": "Glimpse of the Void", - "desc": "Muttering Void Speech, you force images of terror and nonexistence upon your foes. Each creature in a 30-foot cube centered on a point within range must make an Intelligence saving throw. On a failed save, the creature goes insane for the duration. While insane, a creature takes no actions other than to shriek, wail, gibber, and babble unintelligibly. The GM controls the creature’s movement, which is erratic.", - "document": "deepm", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a scrap of parchment with Void glyph scrawlings", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 30, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "gloomwrought-barrier", - "fields": { - "name": "Gloomwrought Barrier", - "desc": "When you cast this spell, you erect a barrier of energy drawn from the realm of death and shadow. This barrier is a wall 20 feet high and 60 feet long, or a ring 20 feet high and 20 feet in diameter. The wall is transparent when viewed from one side of your choice and translucent—lightly obscuring the area beyond it—from the other. A creature that tries to move through the wall must make a successful Wisdom saving throw or stop in front of the wall and become frightened until the start of the creature’s next turn, when it can try again to move through. Once a creature makes a successful saving throw against the wall, it is immune to the effect of this barrier.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of obsidian", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "gluey-globule", - "fields": { - "name": "Gluey Globule", - "desc": "You make a ranged spell attack to hurl a large globule of sticky, magical glue at a creature within 120 feet. If the attack hits, the target creature is restrained. A restrained creature can break free by using an action to make a successful Strength saving throw. When the creature breaks free, it takes 2d6 slashing damage from the glue tearing its skin. If your ranged spell attack roll was a critical hit or exceeded the target’s AC by 5 or more, the Strength saving throw is made with disadvantage. The target can also be freed by an application of universal solvent or by taking 20 acid damage. The glue dissolves when the creature breaks free or at the end of 1 minute.\n\nAlternatively, **gluey globule** can also be used to glue an object to a solid surface or to another object. In this case, the spell works like a single application of [sovereign glue](https://api.open5e.com/spells/sovereign-glue) and lasts for 1 hour.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of glue", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": true, - "damage_roll": "2d6", - "damage_types": [ - "slashing" - ], - "duration": "1 minute or 1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "glyph-of-shifting", - "fields": { - "name": "Glyph of Shifting", - "desc": "You create a hidden glyph by tracing it on a surface or object that you touch. When you cast the spell, you can also choose a location that's known to you, within 5 miles, and on the same plane of existence, to serve as the destination for the glyph's shifting effect.\n The glyph is triggered when it's touched by a creature that's not aware of its presence. The triggering creature must make a successful Wisdom saving throw or be teleported to the glyph's destination. If no destination was set, the creature takes 4d4 force damage and is knocked prone.\n The glyph disappears after being triggered or when the spell's duration expires.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, its duration increases by 24 hours and the maximum distance to the destination increases by 5 miles for each slot level above 2nd.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "powdered diamond worth at least 50 gp, which the spell consumes", - "material_cost": "50.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "4d4", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "goats-hoof-charm", - "fields": { - "name": "Goat's Hoof Charm", - "desc": "A creature you touch traverses craggy slopes with the surefootedness of a mountain goat. When ascending a slope that would normally be difficult terrain for it, the target can move at its full speed instead. The target also gains a +2 bonus on Dexterity checks and saving throws to prevent falling, to catch a ledge or otherwise stop a fall, or to move along a narrow ledge.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can increase the duration by 1 minute, or you can affect one additional creature, for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a goat’s hoof", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "going-in-circles", - "fields": { - "name": "Going in Circles", - "desc": "You make natural terrain in a 1-mile cube difficult to traverse. A creature in the affected area has disadvantage on Wisdom (Survival) checks to follow tracks or travel safely through the area as paths through the terrain seem to twist and turn nonsensically. The terrain itself isn't changed, only the perception of those inside it. A creature who succeeds on two Wisdom (Survival) checks while within the terrain discerns the illusion for what it is and sees the illusory twists and turns superimposed on the terrain. A creature that reenters the area after exiting it before the spell ends is affected by the spell even if it previously succeeded in traversing the terrain. A creature with truesight can see through the illusion and is unaffected by the spell. A creature that casts find the path automatically succeeds in discovering a way out of the terrain.\n When you cast this spell, you can designate a password. A creature that speaks the password as it enters the area automatically sees the illusion and is unaffected by the spell.\n If you cast this spell on the same spot every day for one year, the illusion lasts until it is dispelled.", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Sight", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of the target terrain", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "gordolays-pleasant-aroma", - "fields": { - "name": "Gordolay’s Pleasant Aroma", - "desc": "You create an intoxicating aroma that fills the area within 30 feet of a point you can see within range. Creatures in this area smell something they find so pleasing that it’s distracting. Each creature in the area that makes an attack roll must first make a Wisdom saving throw; on a failed save, the attack is made with disadvantage. Only a creature’s first attack in a round is affected this way; subsequent attacks are resolved normally. On a successful save, a creature becomes immune to the effect of this particular scent, but they can be affected again by a new casting of the spell.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "a few flower petals or a piece of fruit, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "grasp-of-the-tupilak", - "fields": { - "name": "Grasp of the Tupilak", - "desc": "This spell functions only against an arcane or divine spellcaster that prepares spells in advance and that has at least one unexpended spell slot of 6th level or lower. If you make a successful melee attack against such a creature before the spell ends, in addition to the usual effect of that attack, the target takes 2d4 necrotic damage and one or more of the victim’s available spell slots are transferred to you, to be used as your own. Roll a d6; the result equals the total levels of the slots transferred. Spell slots of the highest possible level are transferred before lower-level slots.\n\nFor example, if you roll a 5 and the target has at least one 5th-level spell slot available, that slot transfers to you. If the target’s highest available spell slot is 3rd level, then you might receive a 3rd-level slot and a 2nd-level slot, or a 3rd-level slot and two 1st-level slots if no 2nd-level slot is available.\n\nIf the target has no available spell slots of an appropriate level—for example, if you roll a 2 and the target has expended all of its 1st- and 2nd-level spell slots—then **grasp of the tupilak** has no effect, including causing no necrotic damage. If a stolen spell slot is of a higher level than you’re able to use, treat it as of the highest level you can use.\n\nUnused stolen spell slots disappear, returning whence they came, when you take a long rest or when the creature you stole them from receives the benefit of [remove curse](https://api.open5e.com/spells/remove-curse)[greater restoration](https://api.open5e.com/greater-restoration), or comparable magic.", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "tupilak idol", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "necrotic" - ], - "duration": "1 hour or until triggered", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "greater-maze", - "fields": { - "name": "Greater Maze", - "desc": "This spell functions as [maze](https://api.open5e.com/spells/maze), but the target must make a Dexterity saving throw each time it starts its turn in the maze. The target takes 4d6 psychic damage on a failed save, or half as much damage on a success.\n\nEscaping this maze is especially difficult. To do so, the target must use an action to make a DC 20 Intelligence check. It escapes when it makes its second successful check.", - "document": "deepm", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "psychic" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "greater-seal-of-sanctuary", - "fields": { - "name": "Greater Seal of Sanctuary", - "desc": "You inscribe an angelic seal on the ground, the floor, or other solid surface of a structure. The seal creates a spherical sanctuary with a radius of 100 feet, centered on the seal. For the duration, aberrations, elementals, fey, fiends, and undead that approach to within 5 feet of the boundary know they are about to come into contact with a deadly barrier. If such a creature moves so as to touch the boundary, or tries to cross the boundary by any means, including teleportation and extradimensional travel, it must make a Charisma saving throw. On a failed save, it takes 15d8 radiant damage, is repelled to 5 feet outside the boundary, and can’t target anything inside the boundary with attacks, spells, or abilities until the spell ends. On a successful save, the creature takes half as much radiant damage and can cross the boundary. If the creature is a fiend that isn’t on its home plane, it is immediately destroyed (no saving throw) instead of taking damage.\n\nAberrations, elementals, fey, and undead that are within 100 feet of the seal (inside the boundary) have disadvantage on ability checks, attack rolls, and saving throws, and each such creature takes 4d8 radiant damage at the start of its turn.\n\nCreatures other than aberrations, elementals, fey, fiends, and undead can’t be charmed or frightened while within 100 feet of the seal.\n\nThe seal has AC 18, 75 hit points, resistance to bludgeoning, piercing, and slashing damage, and immunity to psychic and poison damage. Ranged attacks against the seal are made with disadvantage. If it is scribed on the surface of an object that is later destroyed (such as a wooden door), the seal is not damaged and remains in place, perhaps suspended in midair. The spell ends only if the seal itself is reduced to 0 hit points.", - "document": "deepm", - "level": 9, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "incense and special inks worth 500 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "15d8", - "damage_types": [ - "radiant" - ], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "green-decay", - "fields": { - "name": "Green Decay", - "desc": "Your touch inflicts a nauseating, alien rot. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with the supernatural disease green decay (see below), and creatures within 15 feet of the target who can see it must make a successful Constitution saving throw or become poisoned until the end of their next turn.\n\nYou lose concentration on this spell if you can’t see the target at the end of your turn.\n\n***Green Decay.*** The flesh of a creature that has this disease is slowly consumed by a virulent extraterrestrial fungus. While the disease persists, the creature has disadvantage on Charisma and Wisdom checks and on Wisdom saving throws, and it has vulnerability to acid, fire, and necrotic damage. An affected creature must make a Constitution saving throw at the end of each of its turns. On a failed save, the creature takes 1d6 necrotic damage, and its hit point maximum is reduced by an amount equal to the necrotic damage taken. If the creature gets three successes on these saving throws before it gets three failures, the disease ends immediately (but the damage and the hit point maximum reduction remain in effect). If the creature gets three failures on these saving throws before it gets three successes, the disease lasts for the duration of the spell, and no further saving throws are allowed.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "1d6", - "damage_types": [ - "necrotic" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "grudge-match", - "fields": { - "name": "Grudge Match", - "desc": "This spell affects any creatures you designate within range, as long as the group contains an equal number of allies and enemies. If the number of allies and enemies targeted isn’t the same, the spell fails. For the duration of the spell, each target gains a +2 bonus on saving throws, attack rolls, ability checks, skill checks, and weapon damage rolls made involving other targets of the spell. All affected creatures can identify fellow targets of the spell by sight. If an affected creature makes any of the above rolls against a non-target, it takes a -2 penalty on that roll.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration increases by 1 round for each slot level above 2nd.", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "guest-of-honor", - "fields": { - "name": "Guest of Honor", - "desc": "You whisper words of encouragement, and a creature that you touch gains confidence along with approval from strangers. For the spell’s duration, the target puts its best foot forward and strangers associate the creature with positive feelings. The target adds 1d4 to all Charisma (Persuasion) checks made to influence the attitudes of others.\n", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the effect lasts for an additional 10 minutes for each slot level above 1st.\n\n***Ritual Focus.*** If you expend your ritual focus, the effect lasts for 24 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a signet ring worth 25 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "guiding-star", - "fields": { - "name": "Guiding Star", - "desc": "By observing the stars or the position of the sun, you are able to determine the cardinal directions, as well as the direction and distance to a stated destination. You can’t become directionally disoriented or lose track of the destination. The spell doesn’t, however, reveal the best route to your destination or warn you about deep gorges, flooded rivers, or other impassable or treacherous terrain.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hamstring", - "fields": { - "name": "Hamstring", - "desc": "You create an arrow of eldritch energy and send it at a target you can see within range. Make a ranged spell attack against the target. On a hit, the target takes 1d4 force damage, and it can’t take reactions until the end of its next turn.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "The spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d4", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hard-heart", - "fields": { - "name": "Hard Heart", - "desc": "You imbue your touch with the power to make a creature aloof, hardhearted, and unfeeling. The creature you touch as part of casting this spell must make a Wisdom saving throw; a creature can choose to fail this saving throw unless it’s currently charmed. On a successful save, this spell fails. On a failed save, the target becomes immune to being charmed for the duration; if it’s currently charmed, that effect ends. In addition, Charisma checks against the target are made with disadvantage for the spell’s duration.\n", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd or 4th level, the duration increases to 1 hour. If you use a spell slot of 5th level or higher, the duration is 8 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an iron key", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "harry", - "fields": { - "name": "Harry", - "desc": "You instill an irresistible sense of insecurity and terror in the target. The target must make a Wisdom saving throw. On a failed save, the target has disadvantage on Dexterity (Stealth) checks to avoid your notice and is frightened of you while you are within its line of sight. While you are within 1 mile of the target, you have advantage on Wisdom (Survival) checks to track the target, and the target can't take a long rest, terrified you are just around the corner. The target can repeat the saving throw once every 10 minutes, ending the spell on a success.\n On a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "When you cast this spell with a 6th-level spell slot, the duration is concentration, up to 8 hours and the target can repeat the saving throw once each hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 24 hours, and the target can repeat the saving throw every 8 hours.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a bit of fur from a game animal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "harrying-hounds", - "fields": { - "name": "Harrying Hounds", - "desc": "When you cast this spell, choose a direction (north, south, northeast, or the like). Each creature in a 20-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it. When an affected creature travels, it travels at a fast pace in the opposite direction of the direction you chose as it believes a pack of dogs or wolves follows it from the chosen direction.\n When an affected creature isn't traveling, it is frightened of your chosen direction. The affected creature occasionally hears howls or sees glowing eyes in the darkness at the edge of its vision in that direction. An affected creature will not stop at a destination, instead pacing half-circles around the destination until the effect ends, terrified the pack will overcome it if it stops moving.\n An affected creature can make a Wisdom saving throw at the end of each 4-hour period, ending the effect on itself on a success. An affected creature moves along the safest available route unless it has nowhere to move, such as if it arrives at the edge of a cliff. When an affected creature can't safely move in the opposite direction of your chosen direction, it cowers in place, defending itself from hostile creatures but otherwise taking no actions. In such circumstances, the affected creature can repeat the saving throw every minute, ending the effect on itself on a success. The spell's effect is suspended when an affected creature is engaged in combat, allowing it to move as necessary to face hostile creatures.", - "document": "deepm", - "level": 5, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the duration increases by 4 hours for each slot level above 5th. If an affected creature travels for more than 8 hours, it risks exhaustion as if on a forced march.", - "target_type": "creature", - "range": "180 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a tuft of fur from a hunting dog", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "harsh-light-of-summers-glare", - "fields": { - "name": "Harsh Light of Summer’s Glare", - "desc": "You emit a burst of brilliant light, which bears down oppressively upon all creatures within range that can see you. Creatures with darkvision that fail a Constitution saving throw are blinded and stunned. Creatures without darkvision that fail a Constitution saving throw are blinded. This is not a gaze attack, and it cannot be avoided by averting one’s eyes or wearing a blindfold.", - "document": "deepm", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "heart-seeking-arrow", - "fields": { - "name": "Heart-Seeking Arrow", - "desc": "The next time you make a ranged weapon attack during the spell's duration, the weapon's ammunition—or the weapon itself if it's a thrown weapon—seeks its target's vital organs. Make the attack roll as normal. On a hit, the weapon deals an extra 6d6 damage of the same type dealt by the weapon, or half as much damage on a miss as it streaks unerringly toward its target. If this attack reduces the target to 0 hit points, the target has disadvantage on its next death saving throw, and, if it dies, it can be restored to life only by means of a true resurrection or a wish spell. This spell has no effect on undead or constructs.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the extra damage on a hit increases by 1d6 for each slot level above 4th.", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "heart-to-heart", - "fields": { - "name": "Heart to Heart", - "desc": "For the duration, you and the creature you touch remain stable and unconscious if reduced to 0 hit points while the other has 1 or more hit points. If you touch a dying creature, it becomes stable but remains unconscious while it has 0 hit points. If both of you are reduced to 0 hit points, you must both make death saving throws, as normal. If you or the target regain hit points, either of you can choose to split those hit points between the two of you if both of you are within 60 feet of each other.", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of your blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "heartache", - "fields": { - "name": "Heartache", - "desc": "You force an enemy to experience pangs of unrequited love and emotional distress. These feelings manifest with such intensity that the creature takes 5d6 psychic damage on a failed Charisma saving throw, or half the damage on a successful save.\n", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target an additional enemy for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a silver locket", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "5d6", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "heartstop", - "fields": { - "name": "Heartstop", - "desc": "You slow the beating of a willing target’s heart to the rate of one beat per minute. The creature’s breathing almost stops. To a casual or brief observer, the subject appears dead. At the end of the spell, the creature returns to normal with no ill effects.", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "heartstrike", - "fields": { - "name": "Heartstrike", - "desc": "The spirits of ancient archers carry your missiles straight to their targets. You have advantage on ranged weapon attacks until the start of your next turn, and you can ignore penalties for your enemies having half cover or three-quarters cover, and for an area being lightly obscured, when making those attacks.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an arrow, bolt, or other missile", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "heavenly-crown", - "fields": { - "name": "Heavenly Crown", - "desc": "A glowing, golden crown appears on your head and sheds dim light in a 30-foot radius. When you cast the spell (and as a bonus action on subsequent turns, until the spell ends), you can target one willing creature within 30 feet of you that you can see. If the target can hear you, it can use its reaction to make one melee weapon attack and then move up to half its speed, or vice versa.", - "document": "deepm", - "level": 6, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small golden crown worth 50 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hedrens-birds-of-clay", - "fields": { - "name": "Hedren’s Birds of Clay", - "desc": "You create a number of clay pigeons equal to 1d4 + your spellcasting modifier (minimum of one) that swirl around you. When you are the target of a ranged weapon attack or a ranged spell attack and before the attack roll is made, you can use your reaction to shout “Pull!” When you do, one clay pigeon maneuvers to block the incoming attack. If the attack roll is less than 10 + your proficiency bonus, the attack misses. Otherwise, make a check with your spellcasting ability modifier and compare it to the attack roll. If your roll is higher, the attack is intercepted and has no effect. Regardless of whether the attack is intercepted, one clay pigeon is expended. The spell ends when the last clay pigeon is used.\n", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, add 1 to your to your roll for each slot level above 3rd when determining if an attack misses or when making a check to intercept the attack.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a clay figurine shaped like a bird", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hematomancy", - "fields": { - "name": "Hematomancy", - "desc": "You can learn information about a creature whose blood you possess. The target must make a Wisdom saving throw. If the target knows you’re casting the spell, it can fail the saving throw voluntarily if it wants you to learn the information. On a successful save, the target isn’t affected, and you can’t use this spell against it again for 24 hours. On a failed save, or if the blood belongs to a dead creature, you learn the following information:\n* The target’s most common name (if any).\n* The target’s creature type (and subtype, if any), gender, and which of its ability scores is highest (though not the exact numerical score).\n* The target’s current status (alive, dead, sick, wounded, healthy, etc.).\n* The circumstances of the target shedding the blood you’re holding (bleeding wound, splatter from an attack, how long ago it was shed, etc.).\nAlternatively, you can forgo all of the above information and instead use the blood as a beacon to track the target. For 1 hour, as long as you are on the same plane of existence as the creature, you know the direction and distance to the target’s location at the time you cast this spell. While moving toward the location, if you are presented with a choice of paths, the spell automatically indicates which path provides the shortest and most direct route to the location.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of a creature’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "heros-steel", - "fields": { - "name": "Hero's Steel", - "desc": "You infuse the metal of a melee weapon you touch with the fearsome aura of a mighty hero. The weapon’s wielder has advantage on Charisma (Intimidation) checks made while aggressively brandishing the weapon. In addition, an opponent that currently has 30 or fewer hit points and is struck by the weapon must make a successful Charisma saving throw or be stunned for 1 round. If the creature has more than 30 hit points but fewer than the weapon’s wielder currently has, it becomes frightened instead; a frightened creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a successful save. A creature that succeeds on the saving throw is immune to castings of this spell on the same weapon for 24 hours.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a warrior's amulet worth 5 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hide-in-ones-shadow", - "fields": { - "name": "Hide in One’s Shadow", - "desc": "When you touch a willing creature with a piece of charcoal while casting this spell, the target and everything it carries blends into and becomes part of the target’s shadow, which remains discernible, although its body seems to disappear. The shadow is incorporeal, has no weight, and is immune to all but psychic and radiant damage. The target remains aware of its surroundings and can move, but only as a shadow could move—flowing along surfaces as if the creature were moving normally. The creature can step out of the shadow at will, resuming its physical shape in the shadow’s space and ending the spell.\n\nThis spell cannot be cast in an area devoid of light, where a shadow would not normally appear. Even a faint light source, such as moonlight or starlight, is sufficient. If that light source is removed, or if the shadow is flooded with light in such a way that the physical creature wouldn’t cast a shadow, the spell ends and the creature reappears in the shadow’s space.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "charcoal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "3 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hoarfrost", - "fields": { - "name": "Hoarfrost", - "desc": "A melee weapon you are holding is imbued with cold. For the duration, a rime of frost covers the weapon and light vapor rises from it if the temperature is above freezing. The weapon becomes magical and deals an extra 1d4 cold damage on a successful hit. The spell ends after 1 minute, or earlier if you make a successful attack with the weapon or let go of it.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "The spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a melee weapon", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hobble", - "fields": { - "name": "Hobble", - "desc": "You create an ethereal trap in the space of a creature you can see within range. The target must succeed on a Dexterity saving throw or its speed is halved until the end of its next turn.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a broken rabbit’s foot", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hobble-mount", - "fields": { - "name": "Hobble Mount", - "desc": "When you cast **hobble mount** as a successful melee spell attack against a horse, wolf, or other four-legged or two-legged beast being ridden as a mount, that beast is disabled so that it can’t move at its normal speed without incurring injury. An affected creature that moves more than half its base speed in a turn takes 2d6 bludgeoning damage.\n\nThis spell has no effect on a creature that your GM deems to not be a mount.\n", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 2d6 for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "holy-ground", - "fields": { - "name": "Holy Ground", - "desc": "You invoke divine powers to bless the ground within 60 feet of you. Creatures slain in the affected area cannot be raised as undead by magic or by the abilities of monsters, even if the corpse is later removed from the area. Any spell of 4th level or lower that would summon or animate undead within the area fails automatically. Such spells cast with spell slots of 5th level or higher function normally.\n", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the level of spells that are prevented from functioning increases by 1 for each slot level above 5th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of holy water that is consumed in the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hone-blade", - "fields": { - "name": "Hone Blade", - "desc": "You magically sharpen the edge of any bladed weapon or object you are touching. The target weapon gets a +1 bonus to damage on its next successful hit.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a chip of whetstone or lodestone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hunger-of-leng", - "fields": { - "name": "Hunger of Leng", - "desc": "You curse a creature that you can see in range with an insatiable, ghoulish appetite. If it has a digestive system, the creature must make a successful Wisdom saving throw or be compelled to consume the flesh of living creatures for the duration.\n\nThe target gains a bite attack and moves to and attacks the closest creature that isn’t an undead or a construct. The target is proficient with the bite, and it adds its Strength modifier to the attack and damage rolls. The damage is piercing and the damage die is a d4. If the target is larger than Medium, its damage die increases by 1d4 for each size category it is above Medium. In addition, the target has advantage on melee attack rolls against any creature that doesn’t have all of its hit points.\n\nIf there isn’t a viable creature within range for the target to attack, it deals piercing damage to itself equal to 2d4 + its Strength modifier. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. If the target has two consecutive failures, **hunger of Leng** lasts its full duration with no further saving throws allowed.", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of salt and a drop of the caster’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hunters-endurance", - "fields": { - "name": "Hunter's Endurance", - "desc": "You call on the land to sustain you as you hunt your quarry. Describe or name a creature that is familiar to you. If you aren't familiar with the target creature, you must use a fingernail, lock of hair, bit of fur, or drop of blood from it as a material component to target that creature with this spell. Until the spell ends, you have advantage on all Wisdom (Perception) and Wisdom (Survival) checks to find and track the target, and you must actively pursue the target as if under a geas. In addition, you don't suffer from exhaustion levels you gain from pursuing your quarry, such as from lack of rest or environmental hazards between you and the target, while the spell is active. When the spell ends, you suffer from all levels of exhaustion that were suspended by the spell. The spell ends only after 24 hours, when the target is dead, when the target is on a different plane, or when the target is restrained in your line of sight.", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a fingernail, lock of hair, bit of fur, or drop of blood from the target, if unfamiliar", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hunting-stand", - "fields": { - "name": "Hunting Stand", - "desc": "You make a camouflaged shelter nestled in the branches of a tree or among a collection of stones. The shelter is a 10-foot cube centered on a point within range. It can hold as many as nine Medium or smaller creatures. The atmosphere inside the shelter is comfortable and dry, regardless of the weather outside. The shelter's camouflage provides a modicum of concealment to its inhabitants; a creature outside the shelter has disadvantage on Wisdom (Perception) and Intelligence (Investigation) checks to detect or locate a creature within the shelter.", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a crude model of the stand", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ice-fortress", - "fields": { - "name": "Ice Fortress", - "desc": "A gleaming fortress of ice springs from a square area of ground that you can see within range. It is a 10-foot cube (including floor and roof). The fortress can’t overlap any other structures, but any creatures in its space are harmlessly lifted up as the ice rises into position. The walls are made of ice (AC 13), have 120 hit points each, and are immune to cold, necrotic, poison, and psychic damage. Reducing a wall to 0 hit points destroys it and has a 50 percent chance to cause the roof to collapse. A damaged wall can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis.\n\nEach wall has two arrow slits. One wall also includes an ice door with an [arcane lock](https://api.open5e.com/spells/arcane-lock). You designate at the time of the fort’s creation which creatures can enter the fortification. The door has AC 18 and 60 hit points, or it can be broken open with a successful DC 25 Strength (Athletics) check (DC 15 if the [arcane lock](https://api.open5e.com/spells/arcane-lock) is dispelled).\n\nThe fortress catches and reflects light, so that creatures outside the fortress who rely on sight have disadvantage on Perception checks and attack rolls made against those within the fortress if it’s in an area of bright sunlight.\n", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can increase the length or width of the fortification by 5 feet for every slot level above 5th. You can make a different choice (width or length) for each slot level above 5th.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a miniature keep carved from ice or glass that is consumed in the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled or destroyed", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ice-hammer", - "fields": { - "name": "Ice Hammer", - "desc": "When you cast **ice hammer**, a warhammer fashioned from ice appears in your hands. This weapon functions as a standard warhammer in all ways, and it deals an extra 1d10 cold damage on a hit. You can drop the warhammer or give it to another creature.\n\nThe warhammer melts and is destroyed when it or its user accumulates 20 or more fire damage, or when the spell ends.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional hammer for each slot level above 2nd. Alternatively, you can create half as many hammers (round down), but each is oversized (1d10 bludgeoning damage, or 1d12 if wielded with two hands, plus 2d8 cold damage). Medium or smaller creatures have disadvantage when using oversized weapons, even if they are proficient with them.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a miniature hammer carved from ice or glass", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "ice-soldiers", - "fields": { - "name": "Ice Soldiers", - "desc": "You pour water from the vial and cause two [ice soldiers](https://api.open5e.com/monsters/ice-soldier) to appear within range. The ice soldiers cannot form if there is no space available for them. The ice soldiers act immediately on your turn. You can mentally command them (no action required by you) to move and act where and how you desire. If you command an ice soldier to attack, it attacks that creature exclusively until the target is dead, at which time the soldier melts into a puddle of water. If an ice soldier moves farther than 30 feet from you, it immediately melts.\n", - "document": "deepm", - "level": 7, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you create one additional ice soldier.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "vial of water", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "icicle-daggers", - "fields": { - "name": "Icicle Daggers", - "desc": "When you cast this spell, three icicles appear in your hand. Each icicle has the same properties as a dagger but deals an extra 1d4 cold damage on a hit.\n\nThe icicle daggers melt a few seconds after leaving your hand, making it impossible for other creatures to wield them. If the surrounding temperature is at or below freezing, the daggers last for 1 hour. They melt instantly if you take 10 or more fire damage.\n", - "document": "deepm", - "level": 1, - "school": "conjuration", - "higher_level": "If you cast this spell using a spell slot of 2nd level or higher, you can create two additional daggers for each slot level above 1st. If you cast this spell using a spell slot of 4th level or higher, daggers that leave your hand don’t melt until the start of your next turn.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a miniature dagger shaped like an icicle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous or special", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "icy-grasp-of-the-void", - "fields": { - "name": "Icy Grasp of the Void", - "desc": "You summon the cold, inky darkness of the Void into being around a creature that you can see. The target takes 10d10 cold damage and is restrained for the duration; a successful Constitution saving throw halves the damage and negates the restrained condition. A restrained creature gains one level of exhaustion at the start of each of its turns. Creatures immune to cold and that do not breathe do not gain exhaustion. A creature restrained in this way can repeat the saving throw at the end of each of its turns, ending the spell on a success.", - "document": "deepm", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d10", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "icy-manipulation", - "fields": { - "name": "Icy Manipulation", - "desc": "One creature you can see within range must make a Constitution saving throw. On a failed save, the creature is petrified (frozen solid). A petrified creature can repeat the saving throw at the end of each of its turns, ending the effect on itself if it makes two successful saves. If a petrified creature gets two failures on the saving throw (not counting the original failure that caused the petrification), the petrification becomes permenant.\n\nThe petrification also becomes permanent if you maintain concentration on this spell for a full minute. A permanently petrified/frozen creature can be restored to normal with [greater restoration](https://api.open5e.com/spells/greater-restoration) or comparable magic, or by casting this spell on the creature again and maintaining concentration for a full minute.\n\nIf the frozen creature is damaged or broken before it recovers from being petrified, the injury carries over to its normal state.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of ice preserved from the plane of elemental ice", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "ill-fated-word", - "fields": { - "name": "Ill-Fated Word", - "desc": "You call out a distracting epithet to a creature, worsening its chance to succeed at whatever it's doing. Roll a d4 and subtract the number rolled from an attack roll, ability check, or saving throw that the target has just made; the target uses the lowered result to determine the outcome of its roll.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "illuminate-spoor", - "fields": { - "name": "Illuminate Spoor", - "desc": "You touch a set of tracks created by a single creature. That set of tracks and all other tracks made by the same creature give off a faint glow. You and up to three creatures you designate when you cast this spell can see the glow. A creature that can see the glow automatically succeeds on Wisdom (Survival) checks to track that creature. If the tracks are covered by obscuring objects such as leaves or mud, you and the creatures you designate have advantage on Wisdom (Survival) checks to follow the tracks.\n If the creature leaving the tracks changes its tracks, such as by adding or removing footwear, the glow stops where the tracks change. Until the spell ends, you can use an action to touch and illuminate a new set of tracks.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 8 hours. When you use a spell slot of 5th level or higher, the duration is concentration, up to 24 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a firefly", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "impending-ally", - "fields": { - "name": "Impending Ally", - "desc": "You summon a duplicate of yourself as an ally who appears in an unoccupied space you can see within range. You control this ally, whose turn comes immediately after yours. When you or the ally uses a class feature, spell slot, or other expendable resource, it’s considered expended for both of you. When the spell ends, or if you are killed, the ally disappears immediately.\n", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration is extended by 1 round for every two slot levels above 3rd.", - "target_type": "point", - "range": "40 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a broken chain link", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "2 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "innocuous-aspect", - "fields": { - "name": "Innocuous Aspect", - "desc": "An area of false vision encompasses all creatures within 20 feet of you. You and each creature in the area that you choose to affect take on the appearance of a harmless creature or object, chosen by you. Each image is identical, and only appearance is affected. Sound, movement, or physical inspection can reveal the ruse.\n\nA creature that uses its action to study the image visually can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, that creature sees through the image.", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a paper ring", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "insightful-maneuver", - "fields": { - "name": "Insightful Maneuver", - "desc": "With a flash of insight, you know how to take advantage of your foe’s vulnerabilities. Until the end of your turn, the target has vulnerability to one type of damage (your choice). Additionally, if the target has any other vulnerabilities, you learn them.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "inspiring-speech", - "fields": { - "name": "Inspiring Speech", - "desc": "The verbal component of this spell is a 10-minute-long, rousing speech. At the end of the speech, all your allies within the affected area who heard the speech gain a +1 bonus on attack rolls and advantage on saving throws for 1 hour against effects that cause the charmed or frightened condition. Additionally, each recipient gains temporary hit points equal to your spellcasting ability modifier. If you move farther than 1 mile from your allies or you die, this spell ends. A character can be affected by only one casting of this spell at a time; subsequent, overlapping castings have no additional effect and don't extend the spell's duration.", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "instant-fortification", - "fields": { - "name": "Instant Fortification", - "desc": "Through this spell, you transform a miniature statuette of a keep into an actual fort. The fortification springs from the ground in an unoccupied space within range. It is a 10- foot cube (including floor and roof).\n\nEach wall has two arrow slits. One wall also includes a metal door with an [arcane lock](https://api.open5e.com/spells/arcane-lock) effect on it. You designate at the time of the fort’s creation which creatures can ignore the lock and enter the fortification. The door has AC 20 and 60 hit points, and it can be broken open with a successful DC 25 Strength (Athletics) check. The walls are made of stone (AC 15) and are immune to necrotic, poison, and psychic damage. Each 5-foot-square section of wall has 90 hit points. Reducing a section of wall to 0 hit points destroys it, allowing access to the inside of the fortification.\n", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can increase the length or width of the fortification by 5 feet for each slot level above 5th. You can make a different choice (width or length) for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a statuette of a keep worth 250 gp, which is consumed in the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "instant-siege-weapon", - "fields": { - "name": "Instant Siege Weapon", - "desc": "With this spell, you instantly transform raw materials into a siege engine of Large size or smaller (the GM has information on this topic). The raw materials for the spell don’t need to be the actual components a siege weapon is normally built from; they just need to be manufactured goods made of the appropriate substances (typically including some form of finished wood and a few bits of worked metal) and have a gold piece value of no less than the weapon’s hit points.\n\nFor example, a mangonel has 100 hit points. **Instant siege weapon** will fashion any collection of raw materials worth at least 100 gp into a mangonel. Those materials might be lumber and fittings salvaged from a small house, or 100 gp worth of finished goods such as three wagons or two heavy crossbows. The spell also creates enough ammunition for ten shots, if the siege engine uses ammunition.\n", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 6th level, a Huge siege engine can be made; at 8th level, a Gargantuan siege engine can be made. In addition, for each slot level above 4th, the spell creates another ten shots’ worth of ammunition.", - "target_type": "point", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "raw materials with a value in gp equal to the hit points of the siege weapon to be created", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "instant-snare", - "fields": { - "name": "Instant Snare", - "desc": "You create a snare on a point you can see within range. You can leave the snare as a magical trap, or you can use your reaction to trigger the trap when a Large or smaller creature you can see moves within 10 feet of the snare. If you leave the snare as a trap, a creature must succeed on an Intelligence (Investigation) or Wisdom (Perception) check against your spell save DC to find the trap.\n When a Large or smaller creature moves within 5 feet of the snare, the trap triggers. The creature must succeed on a Dexterity saving throw or be magically pulled into the air. The creature is restrained and hangs upside down 5 feet above the snare's location for 1 minute. A restrained creature can repeat the saving throw at the end of each of its turns, escaping the snare on a success. Alternatively, a creature, including the restrained target, can use its action to make an Intelligence (Arcana) check against your spell save DC. On a success, the restrained creature is freed, and the snare resets itself 1 minute later. If the creature succeeds on the check by 5 or more, the snare is destroyed instead.\n This spell alerts you with a ping in your mind when the trap is triggered if you are within 1 mile of the snare. This ping awakens you if you are sleeping.", - "document": "deepm", - "level": 2, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional snare for each slot level above 3rd. When you receive the mental ping that a trap was triggered, you know which snare was triggered if you have more than one.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a loop of twine", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ire-of-the-mountain", - "fields": { - "name": "Ire of the Mountain", - "desc": "An **ire of the mountain** spell melts nonmagical objects that are made primarily of metal. Choose one metal object weighing 10 pounds or less that you can see within range. Tendrils of blistering air writhe toward the target. A creature holding or wearing the item must make a Dexterity saving throw. On a successful save, the creature takes 1d8 fire damage and the spell has no further effect. On a failed save, the targeted object melts and is destroyed, and the creature takes 4d8 fire damage if it is wearing the object, or 2d8 fire damage if it is holding the object. If the object is not being held or worn by a creature, it is automatically melted and rendered useless. This spell cannot affect magic items.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional object for each slot level above 3rd.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of coal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "1d8", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "iron-hand", - "fields": { - "name": "Iron Hand", - "desc": "**Iron hand** is a common spell among metalsmiths and other crafters who work with heat. When you use this spell, one of your arms becomes immune to fire damage, allowing you to grasp red-hot metal, scoop up molten glass with your fingers, or reach deep into a roaring fire to pick up an object. In addition, if you take the Dodge action while you’re protected by **iron hand**, you have resistance to fire damage until the start of your next turn.", - "document": "deepm", - "level": 0, - "school": "abjuration", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "kareefs-entreaty", - "fields": { - "name": "Kareef’s Entreaty", - "desc": "Your kind words offer hope and support to a fallen comrade. Choose a willing creature you can see within range that is about to make a death saving throw. The creature gains advantage on the saving throw, and if the result of the saving throw is 18 or higher, the creature regains 3d4 hit points immediately.\n", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the creature adds 1 to its death saving throw for every two slot levels above 1st and regains an additional 1d4 hit points for each slot level above 1st if its saving throw result is 18 or higher.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "keening-wail", - "fields": { - "name": "Keening Wail", - "desc": "You emit an unholy shriek from beyond the grave. Each creature in a 15-foot cone must make a Constitution saving throw. A creature takes 6d6 necrotic damage on a failed save, or half as much damage on a successful one. If a creature with 50 hit points or fewer fails the saving throw by 5 or more, it is instead reduced to 0 hit points. This wail has no effect on constructs and undead.\n", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a ringed lock of hair from an undead creature", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 15, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "killing-fields", - "fields": { - "name": "Killing Fields", - "desc": "You invoke primal spirits of nature to transform natural terrain in a 100-foot cube in range into a private hunting preserve. The area can't include manufactured structures and if such a structure exists in the area, the spell ends.\n While you are conscious and within the area, you are aware of the presence and direction, though not exact location, of each beast and monstrosity with an Intelligence of 3 or lower in the area. When a beast or monstrosity with an Intelligence of 3 or lower tries to leave the area, it must make a Wisdom saving throw. On a failure, it is disoriented, uncertain of its surroundings or direction, and remains within the area for 1 hour. On a success, it leaves the area.\n When you cast this spell, you can specify individuals that are helped by the area's effects. All other creatures in the area are hindered by the area's effects. You can also specify a password that, when spoken aloud, gives the speaker the benefits of being helped by the area's effects.\n *Killing fields* creates the following effects within the area.\n ***Pack Hunters.*** A helped creature has advantage on attack rolls against a hindered creature if at least one helped ally is within 5 feet of the hindered creature and the helped ally isn't incapacitated. Slaying. Once per turn, when a helped creature hits with any weapon, the weapon deals an extra 1d6 damage of its type to a hindered creature. Tracking. A helped creature has advantage on Wisdom (Survival) and Dexterity (Stealth) checks against a hindered creature.\n You can create a permanent killing field by casting this spell in the same location every day for one year. Structures built in the area after the killing field is permanent don't end the spell.", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a game animal, which must be sacrificed as part of casting the spell", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": "cube", - "shape_magnitude": 100, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "kiss-of-the-succubus", - "fields": { - "name": "Kiss of the Succubus", - "desc": "You kiss a willing creature or one you have charmed or held spellbound through spells or abilities such as [dominate person](https://api.open5e.com/spells/dominate-person). The target must make a Constitution saving throw. A creature takes 5d10 psychic damage on a failed save, or half as much damage on a successful one. The target’s hit point maximum is reduced by an amount equal to the damage taken; this reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "kobolds-fury", - "fields": { - "name": "Kobold’s Fury", - "desc": "Your touch infuses the rage of a threatened kobold into the target. The target has advantage on melee weapon attacks until the end of its next turn. In addition, its next successful melee weapon attack against a creature larger than itself does an additional 2d8 damage.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a kobold scale", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "labyrinth-mastery", - "fields": { - "name": "Labyrinth Mastery", - "desc": "Upon casting this spell, you immediately gain a sense of your surroundings. If you are in a physical maze or any similar structure with multiple paths and dead ends, this spell guides you to the nearest exit, although not necessarily along the fastest or shortest route.\n\nIn addition, while the spell is guiding you out of such a structure, you have advantage on ability checks to avoid being surprised and on initiative rolls.\n\nYou gain a perfect memory of all portions of the structure you move through during the spell’s duration. If you revisit such a portion, you recognize that you’ve been there before and automatically notice any changes to the environment.\n\nAlso, while under the effect of this spell, you can exit any [maze](https://api.open5e.com/spells/maze) spell (and its lesser and greater varieties) as an action without needing to make an Intelligence check.", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of blank parchment", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "labyrinthine-howl", - "fields": { - "name": "Labyrinthine Howl", - "desc": "You let loose the howl of a ravenous beast, causing each enemy within range that can hear you to make a Wisdom saving throw. On a failed save, a creature believes it has been transported into a labyrinth and is under attack by savage beasts. An affected creature must choose either to face the beasts or to curl into a ball for protection. A creature that faces the beasts takes 7d8 psychic damage, and then the spell ends on it. A creature that curls into a ball falls prone and is stunned until the end of your next turn.\n", - "document": "deepm", - "level": 5, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 2d8 for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dead mouse", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "7d8", - "damage_types": [ - "psychic" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lacerate", - "fields": { - "name": "Lacerate", - "desc": "You make a swift cutting motion through the air to lacerate a creature you can see within range. The target must make a Constitution saving throw. It takes 4d8 slashing damage on a failed save, or half as much damage on a successful one. If the saving throw fails by 5 or more, the wound erupts with a violent spray of blood, and the target gains one level of exhaustion.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a shard of bone or crystal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d8", - "damage_types": [ - "slashing" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lair-sense", - "fields": { - "name": "Lair Sense", - "desc": "You set up a magical boundary around your lair. The boundary can’t exceed the dimensions of a 100-foot cube, but within that maximum, you can shape it as you like—to follow the walls of a building or cave, for example. While the spell lasts, you instantly become aware of any Tiny or larger creature that enters the enclosed area. You know the creature’s type but nothing else about it. You are also aware when creatures leave the area.\n\nThis awareness is enough to wake you from sleep, and you receive the knowledge as long as you’re on the same plane of existence as your lair.\n", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, add 50 feet to the maximum dimensions of the cube and add 12 hours to the spell’s duration for each slot level above 2nd.", - "target_type": "creature", - "range": "120 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "treasure worth at least 500 gp, which is not consumed in casting", - "material_cost": "500.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": "cube", - "shape_magnitude": 100, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "last-rays-of-the-dying-sun", - "fields": { - "name": "Last Rays of the Dying Sun", - "desc": "A burst of searing heat explodes from you, dealing 6d6 fire damage to all enemies within range. Immediately afterward, a wave of frigid cold rolls across the same area, dealing 6d6 cold damage to enemies. A creature that makes a successful Dexterity saving throw takes half the damage.\n", - "document": "deepm", - "level": 7, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 8th or 9th level, the damage from both waves increases by 1d6 for each slot level above 7th.", - "target_type": "area", - "range": "40 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lava-stone", - "fields": { - "name": "Lava Stone", - "desc": "When you cast **lava stone** on a piece of sling ammo, the stone or bullet becomes intensely hot. As a bonus action, you can launch the heated stone with a sling: the stone increases in size and melts into a glob of lava while in flight. Make a ranged spell attack against the target. If it hits, the target takes 1d8 bludgeoning damage plus 6d6 fire damage. The target takes additional fire damage at the start of each of your next three turns, starting with 4d6, then 2d6, and then 1d6. The additional damage can be avoided if the target or an ally within 5 feet of the target scrapes off the lava. This is done by using an action to make a successful Wisdom (Medicine) check against your spellcasting save DC. The spell ends if the heated sling stone isn’t used immediately.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a sling stone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lay-to-rest", - "fields": { - "name": "Lay to Rest", - "desc": "A pulse of searing light rushes out from you. Each undead creature within 15 feet of you must make a Constitution saving throw. A target takes 8d6 radiant damage on a failed save, or half as much damage on a successful one.\n An undead creature reduced to 0 hit points by this spell disintegrates in a burst of radiant motes, leaving anything it was wearing or carrying in a space it formerly occupied.", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of grave dirt", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "radiant" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "legend-killer", - "fields": { - "name": "Legend Killer", - "desc": "You tap into the life force of a creature that is capable of performing legendary actions. When you cast the spell, the target must make a successful Constitution saving throw or lose the ability to take legendary actions for the spell’s duration. A creature can’t use legendary resistance to automatically succeed on the saving throw against this spell. An affected creature can repeat the saving throw at the end of each of its turns, regaining 1 legendary action on a successful save. The target continues repeating the saving throw until the spell ends or it regains all its legendary actions.", - "document": "deepm", - "level": 7, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a silver scroll describing the spell’s target worth at least 1,000 gp, which the spell consumes", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "legion", - "fields": { - "name": "Legion", - "desc": "You call down a legion of shadowy soldiers in a 10-foot cube. Their features resemble a mockery of once-living creatures. Whenever a creature starts its turn inside the cube or within 5 feet of it, or enters the cube for the first time on its turn, the conjured shades make an attack using your melee spell attack modifier; on a hit, the target takes 3d8 necrotic damage. The space inside the cube is difficult terrain.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a toy soldier", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "legion-of-rabid-squirrels", - "fields": { - "name": "Legion of Rabid Squirrels", - "desc": "While in a forest, you call a legion of rabid squirrels to descend from the nearby trees at a point you can see within range. The squirrels form into a swarm that uses the statistics of a [swarm of poisonous snakes](https://api.open5e.com/monsters/swarm-of-poisonous-snakes), except it has a climbing speed of 30 feet rather than a swimming speed. The legion of squirrels is friendly to you and your companions. Roll initiative for the legion, which has its own turns. The legion of squirrels obeys your verbal commands (no action required by you). If you don’t issue any commands to the legion, it defends itself from hostile creatures but otherwise takes no actions. If you command it to move farther than 60 feet from you, the spell ends and the legion disperses back into the forest. A canid, such as a dog, wolf, fox, or worg, has disadvantage on attack rolls against targets other than the legion of rabid squirrels while the swarm is within 60 feet of the creature. When the spell ends, the squirrels disperse back into the forest.\n", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the legion’s poison damage increases by 1d6 for each slot level above 3rd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an acorn or nut", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "lesser-maze", - "fields": { - "name": "Lesser Maze", - "desc": "This spell functions as [maze](https://api.open5e.com/spells/maze), but the target can resist being sent to the extradimensional prison with a successful Intelligence saving throw. In addition, the maze is easier to navigate, requiring only a DC 12 Intelligence check to escape.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "life-drain", - "fields": { - "name": "Life Drain", - "desc": "With a snarled word of Void Speech, you create a swirling vortex of purple energy. Choose a point you can see within range. Creatures within 15 feet of the point take 10d6 necrotic damage, or half that damage with a successful Constitution saving throw. For each creature damaged by the spell, you can choose one other creature within range, including yourself, that is not a construct or undead. The secondary targets regain hit points equal to half the necrotic damage you dealt.\n", - "document": "deepm", - "level": 6, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the vortex’s damage increases by 1d6 for each slot level above 6th.", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "life-from-death", - "fields": { - "name": "Life from Death", - "desc": "Your touch can siphon energy from undead to heal your wounds. Make a melee spell attack against an undead creature within your reach. On a hit, the target takes 2d6 radiant damage, and you or an ally within 30 feet of you regains hit points equal to half the amount of radiant damage dealt. If used on an ally, this effect can restore the ally to no more than half of the ally's hit point maximum. This effect can't heal an undead or a construct. Until the spell ends, you can make the attack again on each of your turns as an action.", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "2d6", - "damage_types": [ - "radiant" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "life-hack", - "fields": { - "name": "Life Hack", - "desc": "Choose up to five creatures that you can see within range. Each of the creatures gains access to a pool of temporary hit points that it can draw upon over the spell’s duration or until the pool is used up. The pool contains 120 temporary hit points. The number of temporary hit points each individual creature can draw is determined by dividing 120 by the number of creatures with access to the pool. Hit points are drawn as a bonus action by the creature gaining the temporary hit points. Any number can be drawn at once, up to the maximum allowed.\n\nA creature can’t draw temporary hit points from the pool while it has temporary hit points from any source, including a previous casting of this spell.", - "document": "deepm", - "level": 8, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a ruby worth 500 gp, which is consumed during the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "life-sense", - "fields": { - "name": "Life Sense", - "desc": "For the duration, you can sense the location of any creature that isn’t a construct or an undead within 30 feet of you, regardless of impediments to your other senses. This spell doesn’t sense creatures that are dead. A creature trying to hide its life force from you can make a Charisma saving throw. On a success, you can’t sense the creature with this casting of the spell. If you cast the spell again, the creature must make the saving throw again to remain hidden from your senses.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a clear piece of quartz", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "life-transference-arrow", - "fields": { - "name": "Life Transference Arrow", - "desc": "You create a glowing arrow of necrotic magic and command it to strike a creature you can see within range. The arrow can have one of two effects; you choose which at the moment of casting. If you make a successful ranged spell attack, you and the target experience the desired effect. If the attack misses, the spell fails.\n* The arrow deals 2d6 necrotic damage to the target, and you heal the same amount of hit points.\n* You take 2d6 necrotic damage, and the target heals the same amount of hit points.\n", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the spell’s damage and hit points healed increase by 1d6 for each slot level above 1st.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "litany-of-sure-hands", - "fields": { - "name": "Litany of Sure Hands", - "desc": "This spell allows a creature within range to quickly perform a simple task (other than attacking or casting a spell) as a bonus action on its turn. Examples include finding an item in a backpack, drinking a potion, and pulling a rope. Other actions may also fall into this category, depending on the GM's ruling. The target also ignores the loading property of weapons.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "living-shadows", - "fields": { - "name": "Living Shadows", - "desc": "You whisper sibilant words of void speech that cause shadows to writhe with unholy life. Choose a point you can see within range. Writhing shadows spread out in a 15-foot-radius sphere centered on that point, grasping at creatures in the area. A creature that starts its turn in the area or that enters the area for the first time on its turn must make a successful Strength saving throw or be restrained by the shadows. A creature that starts its turn restrained by the shadows must make a successful Constitution saving throw or gain one level of exhaustion.\n\nA restrained creature can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.", - "document": "deepm", - "level": 5, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 15, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lock-armor", - "fields": { - "name": "Lock Armor", - "desc": "You target a piece of metal equipment or a metal construct. If the target is a creature wearing metal armor or is a construct, it makes a Wisdom saving throw to negate the effect. On a failed save, the spell causes metal to cling to metal, making it impossible to move pieces against each other. This effectively paralyzes a creature that is made of metal or that is wearing metal armor with moving pieces; for example, scale mail would lock up because the scales must slide across each other, but a breastplate would be unaffected. Limited movement might still be possible, depending on how extensive the armor is, and speech is usually not affected. Metal constructs are paralyzed. An affected creature or construct can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A grease spell dispels lock armor on everything in its area.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of rust and metal shavings", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "looping-trail", - "fields": { - "name": "Looping Trail", - "desc": "You touch a trail no more than 1 mile in length, reconfiguring it to give it switchbacks and curves that make the trail loop back on itself. For the duration, the trail makes subtle changes in its configuration and in the surrounding environment to give the impression of forward progression along a continuous path. A creature on the trail must succeed on a Wisdom (Survival) check to notice that the trail is leading it in a closed loop.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of rope twisted into a loop", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lovesick", - "fields": { - "name": "Lovesick", - "desc": "This spell causes creatures to behave unpredictably, as they randomly experience the full gamut of emotions of someone who has fallen head over heels in love. Each creature in a 10-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\n\nAn affected target can’t take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|-|-|\n| 1-3 | The creature spends its turn moping like a lovelorn teenager; it doesn’t move or take actions. |\n| 4–5 | The creature bursts into tears, takes the Dash action, and uses all its movement to run off in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. |\n| 6 | The creature uses its action to remove one item of clothing or piece of armor. Each round spent removing pieces of armor reduces its AC by 1. |\n| 7–8 | The creature drops anything it is holding in its hands and passionately embraces a randomly determined creature. Treat this as a grapple attempt which uses the Attack action. |\n| 9 | The creature flies into a jealous rage and uses its action to make a melee attack against a randomly determined creature. |\n| 10 | The creature can act and move normally. |\n\nAt the end of each of its turns, an affected target can make a Wisdom saving throw, ending the effect on itself on a successful save.\n", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of red rose petals", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 10, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "maddening-whispers", - "fields": { - "name": "Maddening Whispers", - "desc": "You whisper a string of Void Speech toward a target within range that can hear you. The target must succeed on a Charisma saving throw or be incapacitated. While incapacitated by this spell, the target’s speed is 0, and it can’t benefit from increases to its speed. To maintain the effect for the duration, you must use your action on subsequent turns to continue whispering; otherwise, the spell ends. The spell also ends if the target takes damage.", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "maim", - "fields": { - "name": "Maim", - "desc": "Your hands become claws bathed in necrotic energy. Make a melee spell attack against a creature you can reach. On a hit, the target takes 4d6 necrotic damage and a section of its body of your choosing withers:\n ***Upper Limb.*** The target has disadvantage on Strength checks, and, if it has the Multiattack action, it has disadvantage on its first attack roll each round.\n ***Lower Limb.*** The target's speed is reduced by 10 feet, and it has disadvantage on Dexterity checks.\n ***Body.*** Choose one damage type: bludgeoning, piercing, or slashing. The target loses its resistance to that damage type. If the target doesn't have resistance to the chosen damage type, it is vulnerable to that damage type instead.\n The effect is permanent until removed by *remove curse*, *greater restoration*, or similar magic.", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "4d6", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "malevolent-waves", - "fields": { - "name": "Malevolent Waves", - "desc": "You create an invisible miasma that fills the area within 30 feet of you. All your allies have advantage on Dexterity (Stealth) checks they make within 30 feet of you, and all your enemies are poisoned while within that radius.", - "document": "deepm", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a profane object that has been bathed in blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "mammons-due", - "fields": { - "name": "Mammon’s Due", - "desc": "You summon a cylindrical sinkhole filled with burning ash and grasping arms made of molten metal at a point on the ground you can see within range. The sinkhole is 20 feet deep and 50 feet in diameter, and is difficult terrain. A creature that’s in the area when the spell is cast, or that begins its turn in the area or enters it during its turn, takes 10d6 fire damage and must make a Strength or Dexterity (creature’s choice) saving throw. On a failed save, the creature is restrained by the molten arms, which try to drag it below the surface of the ash.\n\nA creature that’s restrained by the arms at the start of your turn must make a successful Strength saving throw or be pulled 5 feet farther down into the ash. A creature pulled below the surface is blinded, deafened, and can’t breathe. To escape, a creature must use an action to make a successful Strength or Dexterity check against your spell save DC. On a successful check, the creature is no longer restrained and can move through the difficult terrain of the ash pit. It doesn’t need to make a Strength or Dexterity saving throw this turn to not be grabbed by the arms again, but it must make the saving throw as normal if it’s still in the ash pit at the start of its next turn.\n\nThe diameter of the ash pit increases by 10 feet at the start of each of your turns for the duration of the spell. The ash pit remains after the spell ends, but the grasping arms disappear and restrained creatures are freed automatically. As the ash slowly cools, it deals 1d6 less fire damage for each hour that passes after the spell ends.", - "document": "deepm", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "500 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "11 gilded human skulls worth 150 gp each, which are consumed by the spell", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "mark-prey", - "fields": { - "name": "Mark Prey", - "desc": "You choose a creature you can see within range as your prey. Until the spell ends, you have advantage on Wisdom (Perception) and Wisdom (Survival) checks to find or track your prey. In addition, the target is outlined in light that only you can see. Any attack roll you make against your prey has advantage if you can see it, and your prey can't benefit from being invisible against you. If the target drops to 0 hit points before this spell ends, you can use a bonus action on a subsequent turn to mark a new target as your prey.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 4th level, you can maintain your concentration on the spell for up to 8 hours. When you use a spell slot of 5th level or higher, you can maintain your concentration on the spell for up to 24 hours.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "mass-hobble-mount", - "fields": { - "name": "Mass Hobble Mount", - "desc": "When you cast **mass hobble mount**, you make separate ranged spell attacks against up to six horses, wolves, or other four-legged or two-legged beasts being ridden as mounts within 60 feet of you. The targets can be different types of beasts and can have different numbers of legs. Each beast hit by your spell is disabled so that it can’t move at its normal speed without incurring injury. An affected creature that moves more than half its base speed in a turn takes 4d6 bludgeoning damage.\n\nThis spell has no effect on a creature that your GM deems to not be a mount.\n", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "mass-surge-dampener", - "fields": { - "name": "Mass Surge Dampener", - "desc": "Using your strength of will, you protect up to three creatures other than yourself from the effect of a chaos magic surge. A protected creature can make a DC 13 Charisma saving throw to negate the effect of a chaos magic surge that does not normally allow a saving throw, or it gains advantage on a saving throw that is normally allowed. Once a protected creature makes a successful saving throw allowed by **mass surge dampener**, the spell’s effect ends for that creature.", - "document": "deepm", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute, or until expended", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "maw-of-needles", - "fields": { - "name": "Maw of Needles", - "desc": "A spiny array of needle-like fangs protrudes from your gums, giving you a spiny bite. For the duration, you can use your action to make a melee spell attack with the bite. On a hit, the target takes 2d6 piercing damage and must succeed on a Dexterity saving throw or some of the spines in your mouth break off, sticking in the target. Until this spell ends, the target must succeed on a Constitution saving throw at the start of each of its turns or take 1d6 piercing damage from the spines. If you hit a target that has your spines stuck in it, your attack deals extra damage equal to your spellcasting ability modifier, and more spines don’t break off in the target. Your spines can stick in only one target at a time. If your spines stick into another target, the spines on the previous target crumble to dust, ending the effect on that target.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage of the spiny bite and the spines increases by 1d6 for every two slot levels above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": true, - "damage_roll": "2d6", - "damage_types": [ - "piercing" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "memento-mori", - "fields": { - "name": "Memento Mori", - "desc": "You transform yourself into a horrifying vision of death, rotted and crawling with maggots, exuding the stench of the grave. Each creature that can see you must succeed on a Charisma saving throw or be stunned until the end of your next turn.\n\nA creature that succeeds on the saving throw is immune to further castings of this spell for 24 hours.", - "document": "deepm", - "level": 0, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mephitic-croak", - "fields": { - "name": "Mephitic Croak", - "desc": "You release an intensely loud burp of acidic gas in a 15-foot cone. Creatures in the area take 2d6 acid damage plus 2d6 thunder damage, or half as much damage with a successful Dexterity saving throw. A creature whose Dexterity saving throw fails must also make a successful Constitution saving throw or be stunned and poisoned until the start of your next turn.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, both acid and thunder damage increase by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dead toad and a dram of arsenic worth 10 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 15, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mind-exchange", - "fields": { - "name": "Mind Exchange", - "desc": "One humanoid of your choice that you can see within range must make a Charisma saving throw. On a failed save, you project your mind into the body of the target. You use the target’s statistics but don’t gain access to its knowledge, class features, or proficiencies, retaining your own instead. Meanwhile, the target’s mind is shunted into your body, where it uses your statistics but likewise retains its own knowledge, class features, and proficiencies.\n\nThe exchange lasts until either of the the two bodies drops to 0 hit points, until you end it as a bonus action, or until you are forced out of the target body by an effect such as a [dispel magic](https://api.open5e.com/spells/dispel-magic) or [dispel evil and good](https://api.open5e.com/spells/dispel-evil-and-good) spell (the latter spell defeats **mind exchange** even though possession by a humanoid isn’t usually affected by that spell). When the effect of this spell ends, both switched minds return to their original bodies. The target of the spell is immune to mind exchange for 24 hours after succeeding on the saving throw or after the exchange ends.\n\nThe effects of the exchange can be made permanent with a [wish](https://api.open5e.com/spells/wish) spell or comparable magic.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a prism and silver coin", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "mire", - "fields": { - "name": "Mire", - "desc": "When you cast mire, you create a 10-foot-diameter pit of quicksand, sticky mud, or a similar dangerous natural hazard suited to the region. A creature that’s in the area when the spell is cast or that enters the affected area must make a successful Strength saving throw or sink up to its waist and be restrained by the mire. From that point on, the mire acts as quicksand, but the DC for Strength checks to escape from the quicksand is equal to your spell save DC. A creature outside the mire trying to pull another creature free receives a +5 bonus on its Strength check.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of sand mixed with water", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "misstep", - "fields": { - "name": "Misstep", - "desc": "You gesture to a creature within range that you can see. If the target fails a Wisdom saving throw, it uses its reaction to move 5 feet in a direction you dictate. This movement does not provoke opportunity attacks. The spell automatically fails if you direct the target into a dangerous area such as a pit trap, a bonfire, or off the edge of a cliff, or if the target has already used its reaction.", - "document": "deepm", - "level": 0, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mist-of-wonders", - "fields": { - "name": "Mist of Wonders", - "desc": "A colorful mist surrounds you out to a radius of 30 feet. Creatures inside the mist see odd shapes in it and hear random sounds that don’t make sense. The very concepts of order and logic don’t seem to exist inside the mist.\n\nAny 1st-level spell that’s cast in the mist by another caster or that travels through the mist is affected by its strange nature. The caster must make a Constitution saving throw when casting the spell. On a failed save, the spell transforms into another 1st-level spell the caster knows (chosen by the GM from those available), even if that spell is not currently prepared. The altered spell’s slot level or its original target or targeted area can’t be changed. Cantrips are unaffected. If (in the GM’s judgment) none of the caster’s spells known of that level can be transformed, the spell being cast simply fails.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, it affects any spell cast using a spell slot of any lower level. For instance, using a 6th-level slot enables you to transform a spell of 5th level or lower into another spell of the same level.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "monstrous-empathy", - "fields": { - "name": "Monstrous Empathy", - "desc": "This spell lets you forge a connection with a monstrosity. Choose a monstrosity that you can see within range. It must see and hear you. If the monstrosity’s Intelligence is 4 or higher, the spell fails. Otherwise, the monstrosity must succeed on a Wisdom saving throw or be charmed by you for the spell’s duration. If you or one of your companions harms the target, the spell ends.\n", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional monstrosity for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a morsel of food", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "moon-trap", - "fields": { - "name": "Moon Trap", - "desc": "While casting this spell under the light of the moon, you inscribe a glyph that covers a 10-foot-square area on a flat, stationary surface such as a floor or a wall. Once the spell is complete, the glyph is invisible in moonlight but glows with a faint white light in darkness.\n\nAny creature that touches the glyph, except those you designate during the casting of the spell, must make a successful Wisdom saving throw or be drawn into an inescapable maze until the sun rises.\n\nThe glyph lasts until the next sunrise, at which time it flares with bright light, and any creature trapped inside returns to the space it last occupied, unharmed. If that space has become occupied or dangerous, the creature appears in the nearest safe unoccupied space.", - "document": "deepm", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "powdered silver worth 250 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "up to 8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mosquito-bane", - "fields": { - "name": "Mosquito Bane", - "desc": "This spell kills any insects or swarms of insects within range that have a total of 25 hit points or fewer.\n", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the number of hit points affected increases by 15 for each slot level above 1st. Thus, a 2nd-level spell kills insects or swarms that have up to 40 hit points, a 3rd-level spell kills those with 55 hit points or fewer, and so forth, up to a maximum of 85 hit points for a slot of 6th level or higher.", - "target_type": "point", - "range": "50 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mud-pack", - "fields": { - "name": "Mud Pack", - "desc": "This spell covers you or a willing creature you touch in mud consistent with the surrounding terrain. For the duration, the spell protects the target from extreme cold and heat, allowing the target to automatically succeed on Constitution saving throws against environmental hazards related to temperature. In addition, the target has advantage on Dexterity (Stealth) checks while traveling at a slow pace in the terrain related to the component for this spell.\n\nIf the target is subject to heavy precipitation for 1 minute, the precipitation removes the mud, ending the spell.\n", - "document": "deepm", - "level": 1, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is 8 hours and you can target up to ten willing creatures within 30 feet of you.", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a clump of mud", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "negative-image", - "fields": { - "name": "Negative Image", - "desc": "You create a shadow-tunnel between your location and one other creature you can see within range. You and that creature instantly swap positions. If the target creature is unwilling to exchange places with you, it can resist the effect by making a Charisma saving throw. On a successful save, the spell has no effect.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of reflective obsidian", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "nether-weapon", - "fields": { - "name": "Nether Weapon", - "desc": "You whisper in Void Speech and touch a weapon. Until the spell ends, the weapon turns black, becomes magical if it wasn’t before, and deals 2d6 necrotic damage (in addition to its normal damage) on a successful hit. A creature that takes necrotic damage from the enchanted weapon can’t regain hit points until the start of your next turn.\n", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "ink, chalk, or some other writing medium", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "night-terrors", - "fields": { - "name": "Night Terrors", - "desc": "You amplify the fear that lurks in the heart of all creatures. Select a target point you can see within the spell’s range. Every creature within 20 feet of that point becomes frightened until the start of your next turn and must make a successful Wisdom saving throw or become paralyzed. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Creatures immune to being frightened are not affected by **night terrors**.", - "document": "deepm", - "level": 4, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a crow’s eye", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "nightfall", - "fields": { - "name": "Nightfall", - "desc": "You call upon night to arrive ahead of schedule. With a sharp word, you create a 30-foot-radius cylinder of night centered on a point on the ground within range. The cylinder extends vertically for 100 feet or until it reaches an obstruction, such as a ceiling. The area inside the cylinder is normal darkness, and thus heavily obscured. Creatures inside the darkened cylinder can see illuminated areas outside the cylinder normally.", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "100 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "cylinder", - "shape_magnitude": 30, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "nip-at-the-heels", - "fields": { - "name": "Nip at the Heels", - "desc": "You create an illusory pack of wild dogs that bark and nip at one creature you can see within range, which must make a Wisdom saving throw. On a failed save, the target has disadvantage on ability checks and attack rolls for the duration as it is distracted by the dogs. At the end of each of its turns, the target can make a Wisdom saving throw, ending the effect on itself on a successful save. A target that is at least 10 feet off the ground (in a tree, flying, and so forth) has advantage on the saving throw, staying just out of reach of the jumping and barking dogs.\n", - "document": "deepm", - "level": 2, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dog’s tooth", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "not-dead-yet", - "fields": { - "name": "Not Dead Yet", - "desc": "You cast this spell while touching the cloth doll against the intact corpse of a Medium or smaller humanoid that died within the last hour. At the end of the casting, the body reanimates as an undead creature under your control. While the spell lasts, your consciousness resides in the animated body. You can use an action to manipulate the body’s limbs in order to make it move, and you can see and hear through the body’s eyes and ears, but your own body becomes unconscious. The animated body can neither attack nor defend itself. This spell doesn’t change the appearance of the corpse, so further measures might be needed if the body is to be used in a way that involves fooling observers into believing it’s still alive. The spell ends instantly, and your consciousness returns to your body, if either your real body or the animated body takes any damage.\n\nYou can’t use any of the target’s abilities except for nonmagical movement and darkvision. You don’t have access to its knowledge, proficiencies, or anything else that was held in its now dead mind, and you can’t make it speak.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a cloth doll filled with herbs and diamond dust worth 100 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "not-this-day", - "fields": { - "name": "Not This Day!", - "desc": "The creature you touch gains protection against either a specific damage type (slashing, poison, fire, radiant, and the like) or a category of creature (giant, beast, elemental, monstrosity, and so forth) that you name when the spell is cast. For the next 24 hours, the target has advantage on saving throws involving that type of damage or kind of creature, including death saving throws if the attack that dropped the target to 0 hit points is affected by this spell. A character can be under the effect of only a single **not this day!** spell at one time; a second casting on the same target cancels the preexisting protection.", - "document": "deepm", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "orb-of-light", - "fields": { - "name": "Orb of Light", - "desc": "An orb of light the size of your hand shoots from your fingertips toward a creature within range, which takes 3d8 radiant damage and is blinded for 1 round. A target that makes a successful Dexterity saving throw takes half the damage and is not blinded.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "radiant" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "outflanking-boon", - "fields": { - "name": "Outflanking Boon", - "desc": "This spell targets one enemy, which must make a Wisdom saving throw. On a failed save, an illusory ally of yours appears in a space from which it threatens to make a melee attack against the target. Your allies gain advantage on melee attacks against the target for the duration because of the distracting effect of the illusion. An affected target repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the spell targets one additional enemy for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "paragon-of-chaos", - "fields": { - "name": "Paragon of Chaos", - "desc": "You become a humanoid-shaped swirling mass of color and sound. You gain resistance to bludgeoning, piercing, and slashing damage, and immunity to poison and psychic damage. You are also immune to the following conditions: exhaustion, paralyzed, petrified, poisoned, and unconscious. Finally, you gain truesight to 30 feet and can teleport 30 feet as a move.\n\nEach round, as a bonus action, you can cause an automatic chaos magic surge, choosing either yourself or another creature you can see within 60 feet as the caster for the purpose of resolving the effect. You must choose the target before rolling percentile dice to determine the nature of the surge. The DC of any required saving throw is calculated as if you were the caster.", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "pendulum", - "fields": { - "name": "Pendulum", - "desc": "You give the touched creature an aspect of regularity in its motions and fortunes. If the target gets a failure on a Wisdom saving throw, then for the duration of the spell it doesn’t make d20 rolls—to determine the results of attack rolls, ability checks, and saving throws it instead follows the sequence 20, 1, 19, 2, 18, 3, 17, 4, and so on.", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small pendulum or metronome made of brass and rosewood worth 10 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "phantom-dragon", - "fields": { - "name": "Phantom Dragon", - "desc": "You tap your dragon magic to make an ally appear as a draconic beast. The target of the spell appears to be a dragon of size Large or smaller. When seeing this illusion, observers make a Wisdom saving throw to see through it.\n\nYou can use an action to make the illusory dragon seem ferocious. Choose one creature within 30 feet of the illusory dragon to make a Wisdom saving throw. If it fails, the creature is frightened. The creature remains frightened until it uses an action to make a successful Wisdom saving throw or the spell’s duration expires.\n", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, increase the number of targets the illusion can affect by one for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of dragon egg shell", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "pitfall", - "fields": { - "name": "Pitfall", - "desc": "A pit opens under a Huge or smaller creature you can see within range that does not have a flying speed. This pit isn’t a simple hole in the floor or ground, but a passage to an extradimensional space. The target must succeed on a Dexterity saving throw or fall into the pit, which closes over it. At the end of your next turn, a new portal opens 20 feet above where the pit was located, and the creature falls out. It lands prone and takes 6d6 bludgeoning damage.\n\nIf the original target makes a successful saving throw, you can use a bonus action on your turn to reopen the pit in any location within range that you can see. The spell ends when a creature has fallen through the pit and taken damage, or when the duration expires.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "poisoned-volley", - "fields": { - "name": "Poisoned Volley", - "desc": "By drawing back and releasing an imaginary bowstring, you summon forth dozens of glowing green arrows. The arrows dissipate when they hit, but all creatures in a 20-foot square within range take 3d8 poison damage and become poisoned. A creature that makes a successful Constitution saving throw takes half as much damage and is not poisoned.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "potency-of-the-pack", - "fields": { - "name": "Potency of the Pack", - "desc": "You bestow lupine traits on a group of living creatures that you designate within range. Choose one of the following benefits to be gained by all targets for the duration:\n\n* ***Thick Fur.*** Each target sprouts fur over its entire body, giving it a +2 bonus to Armor Class.\n* ***Keen Hearing and Smell.*** Each target has advantage on Wisdom (Perception) checks that rely on hearing or smell.\n* ***Pack Tactics.*** Each affected creature has advantage on an attack roll against a target if at least one of the attacker’s allies (also under the effect of this spell) is within 5 feet of the target of the attack and the ally isn’t incapacitated.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 minute for each slot level above 3rd.", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a few hairs from a wolf", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "power-word-kneel", - "fields": { - "name": "Power Word Kneel", - "desc": "When you shout this word of power, creatures within 20 feet of a point you specify are compelled to kneel down facing you. A kneeling creature is treated as prone. Up to 55 hit points of creatures are affected, beginning with those that have the fewest hit points. A kneeling creature makes a Wisdom saving throw at the end of its turn, ending the effect on itself on a successful save. The effect ends immediately on any creature that takes damage while kneeling.", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an emerald worth at least 100 gp", - "material_cost": "100.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "power-word-pain", - "fields": { - "name": "Power Word Pain", - "desc": "When you utter this word of power, one creature within 60 feet of you takes 4d10 force damage. At the start of each of its turns, the creature must make a successful Constitution saving throw or take an extra 4d10 force damage. The effect ends on a successful save.", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a quill jabbed into your own body", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d10", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "primal-infusion", - "fields": { - "name": "Primal Infusion", - "desc": "You channel the fury of nature, drawing on its power. Until the spell ends, you gain the following benefits:\n* You gain 30 temporary hit points. If any of these remain when the spell ends, they are lost.\n* You have advantage on attack rolls when one of your allies is within 5 feet of the target and the ally isn’t incapacitated.\n* Your weapon attacks deal an extra 1d10 damage of the same type dealt by the weapon on a hit.\n* You gain a +2 bonus to AC.\n* You have proficiency on Constitution saving throws.", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a bit of fur from a carnivorous animal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "prismatic-ray", - "fields": { - "name": "Prismatic Ray", - "desc": "A ray of shifting color springs from your hand. Make a ranged spell attack against a single creature you can see within range. The ray’s effect and the saving throw that applies to it depend on which color is dominant when the beam strikes its target, determined by rolling a d8.\n\n| d8 | Color | Effect | Saving Throw |\n|-|-|-|-|\n| 1 | Red | 8d10 fire damage | Dexterity |\n| 2 | Orange | 8d10 acid damage | Dexterity |\n| 3 | Yellow | 8d10 lightning damage | Dexterity |\n| 4 | Green | Target Poisoned | Constitution |\n| 5 | Blue | Target Deafened | Constitution |\n| 6 | Indigo | Target Frightened | Wisdom |\n| 7 | Violet | Target Stunned | Constitution |\n| 8 | Shifting Ray | Target Blinded | Constitution |\n\nA target takes half as much damage on a successful Dexterity saving throw. A successful Constitution or Wisdom saving throw negates the effect of a ray that inflicts a condition on the target; on a failed save, the target is affected for 5 rounds or until the effect is negated. If the result of your attack roll is a critical hit, you can choose the color of the beam that hits the target, but the attack does not deal additional damage.", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "protection-from-the-void", - "fields": { - "name": "Protection from the Void", - "desc": "Until the spell ends, one willing creature you touch has resistance to necrotic and psychic damage and has advantage on saving throws against Void spells.", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small bar of silver worth 15 sp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "protective-ice", - "fields": { - "name": "Protective Ice", - "desc": "When you cast **protective ice**, you encase a willing target in icy, medium armor equivalent to a breastplate (AC 14). A creature without the appropriate armor proficiency has the usual penalties. If the target is already wearing armor, it only uses the better of the two armor classes.\n\nA creature striking a target encased in **protective ice** with a melee attack while within 5 feet of it takes 1d6 cold damage.\n\nIf the armor’s wearer takes fire damage, an equal amount of damage is done to the armor, which has 30 hit points and is damaged only when its wearer takes fire damage. Damaged ice can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis, but the armor can’t have more than 30 points repaired.\n", - "document": "deepm", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a 4th-level spell slot, it creates splint armor (AC 17, 40 hit points). If you cast this spell using a 5th-level spell slot, it creates plate armor (AC 18, 50 hit points). The armor’s hit points increase by 10 for each spell slot above 5th, but the AC remains 18. Additionally, if you cast this spell using a spell slot of 4th level or higher, the armor deals an extra +2 cold damage for each spell slot above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a seed encased in ice or glass", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "cold" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "puff-of-smoke", - "fields": { - "name": "Puff of Smoke", - "desc": "By harnessing the elemental power of fire, you warp nearby air into obscuring smoke. One creature you can see within range must make a Dexterity saving throw. If it fails, the creature is blinded until the start of your next turn. **Puff of smoke** has no effect on creatures that have tremorsense or blindsight.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "pummelstone", - "fields": { - "name": "Pummelstone", - "desc": "You cause a fist-sized chunk of stone to appear and hurl itself against the spell’s target. Make a ranged spell attack. On a hit, the target takes 1d6 bludgeoning damage and must roll a d4 when it makes an attack roll or ability check during its next turn, subtracting the result of the d4 from the attack or check roll.", - "document": "deepm", - "level": 0, - "school": "conjuration", - "higher_level": "The spell’s damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pebble", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "pyroclasm", - "fields": { - "name": "Pyroclasm", - "desc": "You point toward an area of ground or a similar surface within range. A geyser of lava erupts from the chosen spot. The geyser is 5 feet in diameter and 40 feet high. Each creature in the cylinder when it erupts or at the start of your turn takes 10d8 fire damage, or half as much damage if it makes a successful Dexterity saving throw.\n\nThe geyser also forms a pool of lava at its base. Initially, the pool is the same size as the geyser, but at the start of each of your turns for the duration, the pool’s radius increases by 5 feet. A creature in the pool of lava (but not in the geyser) at the start of your turn takes 5d8 fire damage.\n\nWhen a creature leaves the pool of lava, its speed is reduced by half and it has disadvantage on Dexterity saving throws, caused by a hardening layer of lava. These penalties last until the creature uses an action to break the hardened stone away from itself.\n\nIf you maintain concentration on **pyroclasm** for a full minute, the lava geyser and pool harden into permanent, nonmagical stone. A creature in either area when the stone hardens is restrained until the stone is broken away.", - "document": "deepm", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "500 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a shard of obsidian", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "10d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "quick-time", - "fields": { - "name": "Quick Time", - "desc": "You make one living creature or plant within range move rapidly in time compared to you. The target becomes one year older. For example, you could cast this spell on a seedling, which causes the plant to sprout from the soil, or you could cast this spell on a newly hatched duckling, causing it to become a full-grown duck. If the target is a creature with an Intelligence of 3 or higher, it must succeed on a Constitution saving throw to resist the aging. It can choose to fail the saving throw.\n", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you increase the target’s age by one additional year for each slot level above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "any seed", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "quicken", - "fields": { - "name": "Quicken", - "desc": "You touch one willing creature. Once before the duration of the spell expires, the target can roll a d4 and add the number rolled to an initiative roll or Dexterity saving throw it has just made. The spell then ends.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "quicksilver-mantle", - "fields": { - "name": "Quicksilver Mantle", - "desc": "You transform an ordinary cloak into a highly reflective, silvery garment. This mantle increases your AC by 2 and grants advantage on saving throws against gaze attacks. In addition, whenever you are struck by a ray such as a [ray of enfeeblement](https://api.open5e.com/spells/ray-of-enfeeblement), [scorching ray](https://api.open5e.com/spells/scorching-ray), or even [disintegrate](https://api.open5e.com/spells/disintegrate), roll 1d4. On a result of 4, the cloak deflects the ray, which instead strikes a randomly selected target within 10 feet of you. The cloak deflects only the first ray that strikes it each round; rays after the first affect you as normal.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a nonmagical cloak and a dram of quicksilver worth 10 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "quintessence", - "fields": { - "name": "Quintessence", - "desc": "By calling upon an archangel, you become infused with celestial essence and take on angelic features such as golden skin, glowing eyes, and ethereal wings. For the duration of the spell, your Armor Class can’t be lower than 20, you can’t be frightened, and you are immune to necrotic damage.\n\nIn addition, each hostile creature that starts its turn within 120 feet of you or enters that area for the first time on a turn must succeed on a Wisdom saving throw or be frightened for 1 minute. A creature frightened in this way is restrained. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature’s saving throw is successful or if the effect ends for it, the creature is immune to the frightening effect of the spell until you cast **quintessence** again.", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "raid-the-lair", - "fields": { - "name": "Raid the Lair", - "desc": "You create an invisible circle of protective energy centered on yourself with a radius of 10 feet. This field moves with you. The caster and all allies within the energy field are protected against dragons’ lair actions.\n* Attack rolls resulting directly from lair actions are made with disadvantage.\n* Saving throws resulting directly from lair actions are made with advantage, and damage done by these lair actions is halved.\n* Lair actions occur on an initiative count 10 lower than normal.\n\nThe caster has advantage on Constitution saving throws to maintain concentration on this spell.", - "document": "deepm", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of the dragon whose lair you are raiding", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "rain-of-blades", - "fields": { - "name": "Rain of Blades", - "desc": "You call down a rain of swords, spears, and axes. The blades fill 150 square feet (six 5-foot squares, a circle 15 feet in diameter, or any other pattern you want as long as it forms one contiguous space at least 5 feet wide in all places. The blades deal 6d6 slashing damage to each creature in the area at the moment the spell is cast, or half as much damage on a successful Dexterity saving throw. An intelligent undead injured by the blades is frightened for 1d4 rounds if it fails a Charisma saving throw. Most of the blades break or are driven into the ground on impact, but enough survive intact that any single piercing or slashing melee weapon can be salvaged from the affected area and used normally if it is claimed before the spell ends. When the duration expires, all the blades (including the one that was salvaged) disappear.\n", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, an unbroken blade can be picked up and used as a magical +1 weapon until it disappears.", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "shard of metal from a weapon", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "4 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ray-of-alchemical-negation", - "fields": { - "name": "Ray of Alchemical Negation", - "desc": "You launch a ray of blazing, polychromatic energy from your fingertips. Make a ranged spell attack against an alchemical item or a trap that uses alchemy to achieve its ends, such as a trap that sprays acid, releases poisonous gas, or triggers an explosion of alchemist’s fire. A hit destroys the alchemical reagents, rendering them harmless. The attack is made against the most suitable object Armor Class.\n\nThis spell can also be used against a creature within range that is wholly or partially composed of acidic, poisonous, or alchemical components, such as an alchemical golem or an ochre jelly. In that case, a hit deals 6d6 force damage, and the target must make a successful Constitution saving throw or it deals only half as much damage with its acidic, poisonous, or alchemical attacks for 1 minute. A creature whose damage is halved can repeat the saving throw at the end of each of its turns, ending the effect on a success.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ray-of-life-suppression", - "fields": { - "name": "Ray of Life Suppression", - "desc": "You launch a swirling ray of disruptive energy at a creature within range. Make a ranged spell attack. On a hit, the creature takes 6d8 necrotic damage and its maximum hit points are reduced by an equal amount. This reduction lasts until the creature finishes a short or long rest, or until it receives the benefit of a [greater restoration](https://api.open5e.com/spells/greater-restoration) spell or comparable magic.\n\nThis spell has no effect on constructs or undead.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "6d8", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "reaver-spirit", - "fields": { - "name": "Reaver Spirit", - "desc": "You inspire allies to fight with the savagery of berserkers. You and any allies you can see within range have advantage on Strength checks and Strength saving throws; resistance to bludgeoning, piercing, and slashing damage from nonmagical attacks; and a +2 bonus to damage with melee weapons.\n\nWhen the spell ends, each affected creature must succeed on a Constitution saving throw or gain 1d4 levels of exhaustion.\n", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bonus to damage increases by 1 for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "reposition", - "fields": { - "name": "Reposition", - "desc": "You designate up to three friendly creatures (one of which can be yourself) within range. Each target teleports to an unoccupied space of its choosing that it can see within 30 feet of itself.", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the spell targets one additional friendly creature for each slot level above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "reset", - "fields": { - "name": "Reset", - "desc": "Choose up to four creatures within range. If a target is your ally, it can reroll initiative, keeping whichever of the two results it prefers. If a target is your enemy, it must make a successful Wisdom saving throw or reroll initiative, keeping whichever of the two results you prefer. Changes to the initiative order go into effect at the start of the next round.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can affect one additional creature for each slot level above 4th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 4, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "reverberate", - "fields": { - "name": "Reverberate", - "desc": "You touch the ground at your feet with the metal ring, creating an impact that shakes the earth ahead of you. Creatures and unattended objects touching the ground in a 15-foot cone emanating from you take 4d6 thunder damage, and creatures fall prone; a creature that makes a successful Dexterity saving throw takes half the damage and does not fall prone.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a metal ring", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 15, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "revive-beast", - "fields": { - "name": "Revive Beast", - "desc": "You touch a beast that has died within the last minute. That beast returns to life with 1 hit point. This spell can’t return to life a beast that has died of old age, nor can it restore any missing body parts.", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "emeralds worth 100 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "right-the-stars", - "fields": { - "name": "Right the Stars", - "desc": "You subtly warp the flow of space and time to enhance your conjurations with cosmic potency. Until the spell ends, the maximum duration of any conjuration spell you cast that requires concentration is doubled, any creature that you summon or create with a conjuration spell has 30 temporary hit points, and you have advantage on Charisma checks and Charisma saving throws.", - "document": "deepm", - "level": 7, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "seven black candles and a circle of powdered charred bone or basalt", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ring-strike", - "fields": { - "name": "Ring Strike", - "desc": "You infuse two metal rings with magic, causing them to revolve in a slow orbit around your head or hand. For the duration, when you hit a target within 60 feet of you with an attack, you can launch one of the rings to strike the target as well. The target takes 1d10 bludgeoning damage and must succeed on a Strength saving throw or be pushed 5 feet directly away from you. The ring is destroyed when it strikes.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect up to two additional rings for each spell slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "two metal rings", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "1d10", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ring-ward", - "fields": { - "name": "Ring Ward", - "desc": "The iron ring you use to cast the spell becomes a faintly shimmering circlet of energy that spins slowly around you at a radius of 15 feet. For the duration, you and your allies inside the protected area have advantage on saving throws against spells, and all affected creatures gain resistance to one type of damage of your choice.", - "document": "deepm", - "level": 7, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an iron ring worth 200 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "riptide", - "fields": { - "name": "Riptide", - "desc": "With a sweeping gesture, you cause water to swell up into a 20-foot tall, 20-foot radius cylinder centered on a point on the ground that you can see. Each creature in the cylinder must make a Strength saving throw. On a failed save, the creature is restrained and suspended in the cylinder; on a successful save, the creature moves to just outside the nearest edge of the cylinder.\n\nAt the start of your next turn, you can direct the current of the swell as it dissipates. Choose one of the following options.\n\n* ***Riptide.*** The water in the cylinder flows in a direction you choose, sweeping along each creature in the cylinder. An affected creature takes 3d8 bludgeoning damage and is pushed 40 feet in the chosen direction, landing prone.\n* ***Undertow.*** The water rushes downward, pulling each creature in the cylinder into an unoccupied space at the center. Each creature is knocked prone and must make a successful Constitution saving throw or be stunned until the start of your next turn.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 round", - "shape_type": "cylinder", - "shape_magnitude": 20, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "rolling-thunder", - "fields": { - "name": "Rolling Thunder", - "desc": "A tremendous bell note explodes from your outstretched hand and rolls forward in a line 30 feet long and 5 feet wide. Each creature in the line must make a successful Constitution saving throw or be deafened for 1 minute. A creature made of material such as stone, crystal, or metal has disadvantage on its saving throw against this spell.\n\nWhile a creature is deafened in this way, it is wreathed in thundering energy; it takes 2d8 thunder damage at the start of its turn, and its speed is halved. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a sliver of metal from a gong", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "rotting-corpse", - "fields": { - "name": "Rotting Corpse", - "desc": "Your familiarity with the foul effects of death allows you to prevent a dead body from being returned to life using anything but the most powerful forms of magic.\n\nYou cast this spell by touching a creature that died within the last 24 hours. The body immediately decomposes to a state that prevents the body from being returned to life by the [raise dead](https://api.open5e.com/spells/raise-dead) spell (though a [resurrection](https://api.open5e.com/spells/resurrection) spell still works). At the end of this spell’s duration, the body decomposes to a rancid slime, and it can’t be returned to life except through a [true resurrection](https://api.open5e.com/spells/true-resurrection) spell.\n", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can affect one additional corpse for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a rotting piece of flesh from an undead creature", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "3 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "rune-of-imprisonment", - "fields": { - "name": "Rune of Imprisonment", - "desc": "You trace a glowing black rune in the air which streaks toward and envelops its target. Make a ranged spell attack against the target. On a successful hit, the rune absorbs the target creature, leaving only the glowing rune hanging in the space the target occupied. The subject can take no actions while imprisoned, nor can the subject be targeted or affected by any means. Any spell durations or conditions affecting the creature are postponed until the creature is freed. A dying creature does not lose hit points or stabilize until freed.\n\nA creature adjacent to the rune can use a move action to attempt to disrupt its energies; doing so allows the imprisoned creature to make a Wisdom saving throw. On a success, this disruption negates the imprisonment and ends the effect. Disruption can be attempted only once per round.", - "document": "deepm", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "ink", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "salt-lash", - "fields": { - "name": "Salt Lash", - "desc": "You create a long, thin blade of razor-sharp salt crystals. You can wield it as a longsword, using your spellcasting ability to modify your weapon attack rolls. The sword deals 2d8 slashing damage on a hit, and any creature struck by the blade must make a successful Constitution saving throw or be stunned by searing pain until the start of your next turn. Constructs and undead are immune to the blade’s secondary (stun) effect; plants and creatures composed mostly of water, such as water elementals, also take an additional 2d8 necrotic damage if they fail the saving throw.\n\nThe spell lasts until you stop concentrating on it, the duration expires, or you let go of the blade for any reason.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of salt worth 1 sp, which is consumed during the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "sand-ship", - "fields": { - "name": "Sand Ship", - "desc": "Casting **sand ship** on a water vessel up to the size of a small sailing ship transforms it into a vessel capable of sailing on sand as easily as water. The vessel still needs a trained crew and relies on wind or oars for propulsion, but it moves at its normal speed across sand instead of water for the duration of the spell. It can sail only over sand, not soil or solid rock. For the duration of the spell, the vessel doesn’t float; it must be beached or resting on the bottom of a body of water (partially drawn up onto a beach, for example) when the spell is cast, or it sinks into the water.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a boat or ship of 10,000 gp value or less", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sanguine-horror", - "fields": { - "name": "Sanguine Horror", - "desc": "When you cast this spell, you prick yourself with the material component, taking 1 piercing damage. The spell fails if this damage is prevented or negated in any way. From the drop of blood, you conjure a [blood elemental](https://api.open5e.com/monsters/blood-elemental). The blood elemental is friendly to you and your companions for the duration. It disappears when it’s reduced to 0 hit points or when the spell ends.\n\nRoll initiative for the elemental, which has its own turns. It obeys verbal commands from you (no action required by you). If you don’t issue any commands to the blood elemental, it defends itself but otherwise takes no actions. If your concentration is broken, the blood elemental doesn’t disappear, but you lose control of it and it becomes hostile to you and your companions. An uncontrolled blood elemental cannot be dismissed by you, and it disappears 1 hour after you summoned it.", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "5 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a miniature dagger", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "scale-rot", - "fields": { - "name": "Scale Rot", - "desc": "You summon death and decay to plague your enemies. For dragons, this act often takes the form of attacking a foe’s armor and scales, as a way of weakening an enemy dragon and leaving it plagued by self-doubt and fear. (This enchantment is useful against any armored creature, not just dragons.)\n\nOne creature of your choice within range that has natural armor must make a Constitution saving throw. If it fails, attacks against that creature’s Armor Class are made with advantage, and the creature can’t regain hit points through any means while the spell remains in effect. An affected creature can end the spell by making a successful Constitution saving throw, which also makes the creature immune to further castings of **scale rot** for 24 hours.\n", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the number of affected targets increases by one for each slot level above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of rotten meat", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "scentless", - "fields": { - "name": "Scentless", - "desc": "You touch a willing creature or object that is not being worn or carried. For the duration, the target gives off no odor. A creature that relies on smell has disadvantage on Wisdom (Perception) checks to detect the target and Wisdom (Survival) checks to track the target. The target is invisible to a creature that relies solely on smell to sense its surroundings. This spell has no effect on targets with unusually strong scents, such as ghasts.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "1 ounce of pure water", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "screaming-ray", - "fields": { - "name": "Screaming Ray", - "desc": "You create a ray of psychic energy to attack your enemies. Make a ranged spell attack against a creature. On a hit, the target takes 1d4 psychic damage and is deafened until the end of your next turn. If the target succeeds on a Constitution saving throw, it is not deafened.\n", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you create one additional ray for each slot level above 1st. You can direct the rays at one target or several.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "1d4", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "scribe", - "fields": { - "name": "Scribe", - "desc": "This spell enables you to create a copy of a one-page written work by placing a blank piece of paper or parchment near the work that you are copying. All the writing, illustrations, and other elements in the original are reproduced in the new document, in your handwriting or drawing style. The new medium must be large enough to accommodate the original source. Any magical properties of the original aren’t reproduced, so you can’t use scribe to make copies of spell scrolls or magic books.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "scry-ambush", - "fields": { - "name": "Scry Ambush", - "desc": "You foresee your foe’s strike a split second before it occurs. When you cast this spell successfully, you also designate a number of your allies that can see or hear you equal to your spellcasting ability modifier + your proficiency bonus. Those allies are also not surprised by the attack and can act normally in the first round of combat.\n\nIf you would be surprised, you must make a check using your spellcasting ability at the moment your reaction would be triggered. The check DC is equal to the current initiative count. On a failed check, you are surprised and can’t use your reaction to cast this spell until after your next turn. On a successful check, you can use your reaction to cast this spell immediately.", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sculpt-snow", - "fields": { - "name": "Sculpt Snow", - "desc": "When you **cast sculpt** snow in an area filled with snow, you can create one Large object, two Medium objects, or four smaller objects from snow. With a casting time of 1 action, your sculptings bear only a crude resemblance to generic creatures or objects. If you increase the casting time to 1 minute, your creations take on a more realistic appearance and can even vaguely resemble specific creatures; the resemblance isn’t strong enough to fool anyone, but the creature can be recognized. The sculptures are as durable as a typical snowman.\n\nSculptures created by this spell can be animated with [animate objects](https://api.open5e.com/spells/animate-objects) or comparable magic. Animated sculptures gain the AC, hit points, and other attributes provided by that spell. When they attack, they deal normal damage plus a similar amount of cold damage; an animated Medium sculpture, for example, deals 2d6 + 1 bludgeoning damage plus 2d6 + 1 cold damage.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can sculpt one additional Large object for each slot level above 2nd. Two Large objects can be replaced with one Huge object.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "seal-of-sanctuary", - "fields": { - "name": "Seal of Sanctuary", - "desc": "You inscribe an angelic seal on the ground, the floor, or other solid surface of a structure. The seal creates a spherical sanctuary with a radius of 50 feet, centered on the seal. For the duration, aberrations, elementals, fey, fiends, and undead that approach to within 5 feet of the boundary know they are about to come into contact with a deadly barrier. If such a creature moves so as to touch the boundary, or tries to cross the boundary by any means, including teleportation and extradimensional travel, it must make a Charisma saving throw. On a failed save, it takes 10d8 radiant damage, is repelled to 5 feet outside the boundary, and can’t target anything inside the boundary with attacks, spells, or abilities until the spell ends. On a successful save, the creature takes half as much radiant damage and can cross the boundary. If the creature is a fiend that isn’t on its home plane, it is immediately destroyed (no saving throw) instead of taking damage.\n\nAberrations, elementals, fey, and undead that are within 50 feet of the seal (inside the boundary) have disadvantage on ability checks, attack rolls, and saving throws, and each such creature takes 2d8 radiant damage at the start of its turn.\n\nCreatures other than aberrations, elementals, fey, fiends, and undead can’t be charmed or frightened while within 50 feet of the seal.\n\nThe seal has AC 18, 50 hit points, resistance to bludgeoning, piercing, and slashing damage, and immunity to psychic and poison damage. Ranged attacks against the seal are made with disadvantage. If it is scribed on the surface of an object that is later destroyed (such as a wooden door), the seal is not damaged and remains in place, perhaps suspended in midair. The spell ends only if the seal is reduced to 0 hit points.", - "document": "deepm", - "level": 7, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "incense and special inks worth 250 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "10d8", - "damage_types": [ - "radiant" - ], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "searing-sun", - "fields": { - "name": "Searing Sun", - "desc": "This spell intensifies the light and heat of the sun, so that it burns exposed flesh. You must be able to see the sun when you cast the spell. The searing sunlight affects a cylindrical area 50 feet in radius and 200 feet high, centered on the a point within range. Each creature that starts its turn in that area takes 5d8 fire damage, or half the damage with a successful Constitution saving throw. A creature that’s shaded by a solid object —such as an awning, a building, or an overhanging boulder— has advantage on the saving throw. On your turn, you can use an action to move the center of the cylinder up to 20 feet along the ground in any direction.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "200 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a magnifying lens", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "see-beyond", - "fields": { - "name": "See Beyond", - "desc": "This spell enables a willing creature you touch to see through any obstructions as if they were transparent. For the duration, the target can see into and through opaque objects, creatures, spells, and effects that obstruct line of sight to a range of 30 feet. Inside that distance, the creature can choose what it perceives as opaque and what it perceives as transparent as freely and as naturally as it can shift its focus from nearby to distant objects.\n\nAlthough the creature can see any target within 30 feet of itself, all other requirements must still be satisfied before casting a spell or making an attack against that target. For example, the creature can see an enemy that has total cover but can’t shoot that enemy with an arrow because the cover physically prevents it. That enemy could be targeted by a [geas](https://api.open5e.com/spells/geas) spell, however, because [geas](https://api.open5e.com/spells/geas) needs only a visible target.", - "document": "deepm", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a transparent crystal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "seed-of-destruction", - "fields": { - "name": "Seed of Destruction", - "desc": "This spell impregnates a living creature with a rapidly gestating [hydra](https://api.open5e.com/spells/hydra) that consumes the target from within before emerging to wreak havoc on the world. Make a ranged spell attack against a living creature within range that you can see. On a hit, you implant a five‑headed embryonic growth into the creature. Roll 1d3 + 1 to determine how many rounds it takes the embryo to mature.\n\nDuring the rounds when the embryo is gestating, the affected creature takes 5d4 slashing damage at the start of its turn, or half the damage with a successful Constitution saving throw.\n\nWhen the gestation period has elapsed, a tiny hydra erupts from the target’s abdomen at the start of your turn. The hydra appears in an unoccupied space adjacent to the target and immediately grows into a full-size Huge aberration. Nearby creatures are pushed away to clear a sufficient space as the hydra grows. This creature is a standard hydra, but with the ability to cast [bane](https://api.open5e.com/spells/bane) as an action (spell save DC 11) requiring no spell components. Roll initiative for the hydra, which takes its own turns. It obeys verbal commands that you issue to it (no action required by you). If you don’t give it a command or it can’t follow your command, the hydra attacks the nearest living creature.\n\nAt the end of each of the hydra’s turns, you must make a DC 15 Charisma saving throw. On a successful save, the hydra remains under your control and friendly to you and your companions. On a failed save, your control ends, the hydra becomes hostile to all creatures, and it attacks the nearest creature to the best of its ability.\n\nThe hydra disappears at the end of the spell’s duration, or its existence can be cut short with a [wish](https://api.open5e.com/spells/wish) spell or comparable magic, but nothing less. The embryo can be destroyed before it reaches maturity by using a [dispel magic](https://api.open5e.com/spells/dispel-magic) spell under the normal rules for dispelling high-level magic.", - "document": "deepm", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "five teeth from a still-living humanoid and a vial of the caster’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "5d4", - "damage_types": [ - "slashing" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "seeping-death", - "fields": { - "name": "Seeping Death", - "desc": "Your touch inflicts a virulent, flesh-eating disease. Make a melee spell attack against a creature within your reach. On a hit, the creature’s Dexterity score is reduced by 1d4, and it is afflicted with the seeping death disease for the duration.\n\nSince this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease’s effects apply to it and can end the spell early.\n\n***Seeping Death.*** The creature’s flesh is slowly liquefied by a lingering necrotic pestilence. At the end of each long rest, the diseased creature must succeed on a Constitution saving throw or its Dexterity score is reduced by 1d4. The reduction lasts until the target finishes a long rest after the disease is cured. If the disease reduces the creature’s Dexterity to 0, the creature dies.", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "3 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "seers-reaction", - "fields": { - "name": "Seer’s Reaction", - "desc": "Your foreknowledge allows you to act before others, because you knew what was going to happen. When you cast this spell, make a new initiative roll with a +5 bonus. If the result is higher than your current initiative, your place in the initiative order changes accordingly. If the result is also higher than the current place in the initiative order, you take your next turn immediately and then use the higher number starting in the next round.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "semblance-of-dread", - "fields": { - "name": "Semblance of Dread", - "desc": "You adopt the visage of the faceless god Nyarlathotep. For the duration, any creature within 10 feet of you and able to see you can’t willingly move closer to you unless it makes a successful Wisdom saving throw at the start of its turn. Constructs and undead are immune to this effect.\n\nFor the duration of the spell, you also gain vulnerability to radiant damage and have advantage on saving throws against effects that cause the frightened condition.", - "document": "deepm", - "level": 0, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "shade", - "fields": { - "name": "Shade", - "desc": "You create a magical screen across your eyes. While the screen remains, you are immune to blindness caused by visible effects, such as [color spray](https://api.open5e.com/spells/color-spray). The spell doesn’t alleviate blindness that’s already been inflicted on you. If you normally suffer penalties on attacks or ability checks while in sunlight, those penalties don’t apply while you’re under the effect of this spell.\n", - "document": "deepm", - "level": 2, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 10 minutes for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "shadow-armor", - "fields": { - "name": "Shadow Armor", - "desc": "You can siphon energy from the plane of shadow to protect yourself from an immediate threat. As a reaction, you pull shadows around yourself to distort reality. The attack against you is made with disadvantage, and you have resistance to radiant damage until the start of your next turn.", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shadow-bite", - "fields": { - "name": "Shadow Bite", - "desc": "You create a momentary needle of cold, sharp pain in a creature within range. The target must make a successful Constitution saving throw or take 1d6 necrotic damage immediately and have its speed halved until the start of your next turn.", - "document": "deepm", - "level": 0, - "school": "illusion", - "higher_level": "This spell’s damage increases to 2d6 when you reach 5th level, 3d6 when you reach 11th level, and 4d6 when you reach 17th level.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shadow-blindness", - "fields": { - "name": "Shadow Blindness", - "desc": "You make a melee spell attack against a creature you touch that has darkvision as an innate ability; on a hit, the target’s darkvision is negated until the spell ends. This spell has no effect against darkvision that derives from a spell or a magic item. The target retains all of its other senses.", - "document": "deepm", - "level": 0, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shadow-hands", - "fields": { - "name": "Shadow Hands", - "desc": "A freezing blast of shadow explodes out from you in a 10-foot cone. Any creature caught in the shadow takes 2d4 necrotic damage and is frightened; a successful Wisdom saving throw halves the damage and negates the frightened condition.\n", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage dealt by the attack increases by 2d4 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shadow-monsters", - "fields": { - "name": "Shadow Monsters", - "desc": "You choose up to two creatures within range. Each creature must make a Wisdom saving throw. On a failed save, the creature perceives its allies as hostile, shadowy monsters, and it must attack its nearest ally. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 4, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a doll", - "material_cost": null, - "material_consumed": false, - "target_count": 2, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "shadow-puppets", - "fields": { - "name": "Shadow Puppets", - "desc": "You animate the shadow of a creature within range, causing it to attack that creature. As a bonus action when you cast the spell, or as an action on subsequent rounds while you maintain concentration, make a melee spell attack against the creature. If it hits, the target takes 2d8 psychic damage and must make a successful Intelligence saving throw or be incapacitated until the start of your next turn.\n", - "document": "deepm", - "level": 2, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of powdered lead", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": true, - "damage_roll": "2d8", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "shadow-trove", - "fields": { - "name": "Shadow Trove", - "desc": "You paint a small door approximately 2 feet square on a hard surface to create a portal into the void of space. The portal “peels off” the surface you painted it on and follows you when you move, always floating in the air within 5 feet of you. An icy chill flows out from the portal. You can place up to 750 pounds of nonliving matter in the portal, where it stays suspended in the frigid void until you withdraw it. Items that are still inside the shadow trove when the duration ends spill out onto the ground. You can designate a number of creatures up to your Intelligence modifier who have access to the shadow trove; only you and those creatures can move objects into the portal.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 2 hours for each slot level above 3rd.", - "target_type": "creature", - "range": "5 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "ink made from the blood of a raven", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shadows-brought-to-light", - "fields": { - "name": "Shadows Brought to Light", - "desc": "If a creature you designate within range fails a Charisma saving throw, you cause the target’s shadow to come to life and reveal one of the creature’s most scandalous secrets: some fact that the target would not want widely known (GM’s choice). When casting the spell, you choose whether everyone present will hear the secret, in which case the shadow speaks loudly in a twisted version of the target’s voice, or if the secret is whispered only to you. The shadow speaks in the target’s native language.\n\nIf the target does not have a scandalous secret or does not have a spoken language, the spell fails as if the creature’s saving throw had succeeded.\n\nIf the secret was spoken aloud, the target takes a −2 penalty to Charisma checks involving anyone who was present when it was revealed. This penalty lasts until you finish a long rest.\n\n***Ritual Focus.*** If you expend your ritual focus, the target has disadvantage on Charisma checks instead of taking the −2 penalty.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shadowy-retribution", - "fields": { - "name": "Shadowy Retribution", - "desc": "You fill a small silver cup with your own blood (taking 1d4 piercing damage) while chanting vile curses in the dark. Once the chant is completed, you consume the blood and swear an oath of vengeance against any who harm you.\n\nIf you are reduced to 0 hit points, your oath is invoked; a shadow materializes within 5 feet of you. The shadow attacks the creature that reduced you to 0 hit points, ignoring all other targets, until it or the target is slain, at which point the shadow dissipates into nothing.\n", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, an additional shadow is conjured for each slot level above 4th.\n\n***Ritual Focus.*** If you expend your ritual focus, the spell summons a banshee instead of a shadow. If you also use a higher-level spell slot, additional undead are still shadows.", - "target_type": "point", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small silver cup filled with the caster’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "12 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shared-sacrifice", - "fields": { - "name": "Shared Sacrifice", - "desc": "You and up to five of your allies within range contribute part of your life force to create a pool that can be used for healing. Each target takes 5 necrotic damage (which can’t be reduced but can be healed normally), and those donated hit points are channeled into a reservoir of life essence. As an action, any creature who contributed to the pool of hit points can heal another creature by touching it and drawing hit points from the pool into the injured creature. The injured creature heals a number of hit points equal to your spellcasting ability modifier, and the hit points in the pool decrease by the same amount. This process can be repeated until the pool is exhausted or the spell’s duration expires.", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "5", - "damage_types": [ - "necrotic" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sheen-of-ice", - "fields": { - "name": "Sheen of Ice", - "desc": "A small icy globe shoots from your finger to a point within range and then explodes in a spray of ice. Each creature within 20 feet of that point must make a successful Dexterity saving throw or become coated in ice for 1 minute. Ice-coated creatures move at half speed. An invisible creature becomes outlined by the ice so that it loses the benefits of invisibility while the ice remains. The spell ends for a specific creature if that creature takes 5 or more fire damage.", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "water within a glass globe", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shifting-the-odds", - "fields": { - "name": "Shifting the Odds", - "desc": "By wrapping yourself in strands of chaotic energy, you gain advantage on the next attack roll or ability check that you make. Fate is a cruel mistress, however, and her scales must always be balanced. The second attack roll or ability check (whichever occurs first) that you make after casting **shifting the odds** is made with disadvantage.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shiver", - "fields": { - "name": "Shiver", - "desc": "You fill a humanoid creature with such cold that its teeth begin to chatter and its body shakes uncontrollably. Roll 5d8; the total is the maximum hit points of a creature this spell can affect. The affected creature must succeed on a Constitution saving throw, or it cannot cast a spell or load a missile weapon until the end of your next turn. Once a creature has been affected by this spell, it is immune to further castings of this spell for 24 hours.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "The maximum hit points you can affect increases by 4d8 when you reach 5th level (9d8), 11th level (13d8), and 17th level (17d8).", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "humanoid tooth", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shroud-of-death", - "fields": { - "name": "Shroud of Death", - "desc": "You call up a black veil of necrotic energy that devours the living. You draw on the life energy of all living creatures within 30 feet of you that you can see. When you cast the spell, every living creature within 30 feet of you that you can see takes 1 necrotic damage, and all those hit points transfer to you as temporary hit points. The damage and the temporary hit points increase to 2 per creature at the start of your second turn concentrating on the spell, 3 per creature at the start of your third turn, and so on. All living creatures you can see within 30 feet of you at the start of each of your turns are affected. A creature can avoid the effect by moving more than 30 feet away from you or by getting out of your line of sight, but it becomes susceptible again if the necessary conditions are met. The temporary hit points last until the spell ends.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of ice", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1", - "damage_types": [ - "necrotic" - ], - "duration": "10 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "sidestep-arrow", - "fields": { - "name": "Sidestep Arrow", - "desc": "With a few perfectly timed steps, you interpose a foe between you and danger. You cast this spell when an enemy makes a ranged attack or a ranged spell attack against you but before the attack is resolved. At least one other foe must be within 10 feet of you when you cast **sidestep arrow**. As part of casting the spell, you can move up to 15 feet to a place where an enemy lies between you and the attacker. If no such location is available, the spell has no effect. You must be able to move (not restrained or grappled or prevented from moving for any other reason), and this move does not provoke opportunity attacks. After you move, the ranged attack is resolved with the intervening foe as the target instead of you.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sign-of-koth", - "fields": { - "name": "Sign of Koth", - "desc": "You invoke the twilight citadels of Koth to create a field of magical energy in the shape of a 60-foot-radius, 60-foot‑tall cylinder centered on you. The only visible evidence of this field is a black rune that appears on every doorway, window, or other portal inside the area.\n\nChoose one of the following creature types: aberration, beast, celestial, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead. The sign affects creatures of the chosen type (including you, if applicable) in the following ways:\n* The creatures can’t willingly enter the cylinder’s area by nonmagical means; the cylinder acts as an invisible, impenetrable wall of force. If an affected creature tries to enter the cylinder’s area by using teleportation, a dimensional shortcut, or other magical means, it must make a successful Charisma saving throw or the attempt fails.\n* They cannot hear any sounds that originate inside the cylinder.\n* They have disadvantage on attack rolls against targets inside the cylinder.\n* They can’t charm, frighten, or possess creatures inside the cylinder.\nCreatures that aren’t affected by the field and that take a short rest inside it regain twice the usual number of hit points for each Hit Die spent at the end of the rest.\n\nWhen you cast this spell, you can choose to reverse its magic; doing this will prevent affected creatures from leaving the area instead of from entering it, make them unable to hear sounds that originate outside the cylinder, and so forth. In this case, the field provides no benefit for taking a short rest.\n", - "document": "deepm", - "level": 7, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the radius increases by 30 feet for each slot level above 7th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a platinum dagger and a powdered black pearl worth 500 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "silhouette", - "fields": { - "name": "Silhouette", - "desc": "You create a shadow play against a screen or wall. The surface can encompass up to 100 square feet. The number of creatures that can see the shadow play equals your Intelligence score. The shadowy figures make no sound but they can dance, run, move, kiss, fight, and so forth. Most of the figures are generic types—a rabbit, a dwarf—but a number of them equal to your Intelligence modifier can be recognizable as specific individuals.", - "document": "deepm", - "level": 0, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "sir-mittinzs-move-curse", - "fields": { - "name": "Sir Mittinz’s Move Curse", - "desc": "When you are within range of a cursed creature or object, you can transfer the curse to a different creature or object that’s also within range. The curse must be transferred from object to object or from creature to creature.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "20 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a finely crafted hollow glass sphere and incense worth 50 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sleep-of-the-deep", - "fields": { - "name": "Sleep of the Deep", - "desc": "Your magic haunts the dreams of others. Choose a sleeping creature that you are aware of within range. Creatures that don’t sleep, such as elves, can’t be targeted. The creature must succeed on a Wisdom saving throw or it garners no benefit from the rest, and when it awakens, it gains one level of exhaustion and is afflicted with short‑term madness.\n", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of black sand, a tallow candle, and a drop of cephalopod ink", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "slippery-fingers", - "fields": { - "name": "Slippery Fingers", - "desc": "You set a series of small events in motion that cause the targeted creature to drop one nonmagical item of your choice that it’s currently holding, unless it makes a successful Charisma saving throw.", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "slither", - "fields": { - "name": "Slither", - "desc": "You momentarily become a shadow (a humanoid-shaped absence of light, not the undead creature of that name). You can slide under a door, through a keyhole, or through any other tiny opening. All of your equipment is transformed with you, and you can move up to your full speed during the spell’s duration. While in this form, you have advantage on Dexterity (Stealth) checks made in darkness or dim light and you are immune to nonmagical bludgeoning, piercing, and slashing damage. You can dismiss this spell by using an action to do so.\n\nIf you return to your normal form while in a space too small for you (such as a mouse hole, sewer pipe, or the like), you take 4d6 force damage and are pushed to the nearest space within 50 feet big enough to hold you. If the distance is greater than 50 feet, you take an extra 1d6 force damage for every additional 10 feet traveled.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target an additional willing creature that you touch for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "ashes from a wooden statue of you, made into ink and used to draw your portrait, worth 50 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "snow-boulder", - "fields": { - "name": "Snow Boulder", - "desc": "A ball of snow forms 5 feet away from you and rolls in the direction you point at a speed of 30 feet, growing larger as it moves. To roll the boulder into a creature, you must make a successful ranged spell attack. If the boulder hits, the creature must make a successful Dexterity saving throw or be knocked prone and take the damage indicated below. Hitting a creature doesn’t stop the snow boulder’s movement or impede its growth, as long as you continue to maintain concentration on the effect. When the spell ends, the boulder stops moving.\n\n| Round | Size | Damage |\n|-|-|-|\n| 1 | Small | 1d6 bludgeoning |\n| 2 | Medium | 2d6 bludgeoning |\n| 3 | Large | 4d6 bludgeoning |\n| 4 | Huge | 6d6 bludgeoning |\n\n", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of snow", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "4 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "snow-fort", - "fields": { - "name": "Snow Fort", - "desc": "This spell creates a simple “fort” from packed snow. The snow fort springs from the ground in an unoccupied space within range. It encircles a 10-foot area with sloping walls 4 feet high. The fort provides half cover (+2 AC) against ranged and melee attacks coming from outside the fort. The walls have AC 12, 30 hit points per side, are immune to cold, necrotic, poison, and psychic damage, and are vulnerable to fire damage. A damaged wall can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis, up to a maximum of 30 points.\n\nThe spell also creates a dozen snowballs that can be thrown (range 20/60) and that deal 1d4 bludgeoning damage plus 1d4 cold damage on a hit.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a ring carved from chalk or white stone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "snowy-coat", - "fields": { - "name": "Snowy Coat", - "desc": "This spell makes a slight alteration to a target creature’s appearance that gives it advantage on Dexterity (Stealth) checks to hide in snowy terrain. In addition, the target can use a bonus action to make itself invisible in snowy terrain for 1 minute. The spell ends at the end of the minute or when the creature attacks or casts a spell.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "song-of-the-forest", - "fields": { - "name": "Song of the Forest", - "desc": "You attune your senses to the natural world, so that you detect every sound that occurs within 60 feet: wind blowing through branches, falling leaves, grazing deer, trickling streams, and more. You can clearly picture the source of each sound in your mind. The spell gives you tremorsense out to a range of 10 feet. In addition, you have advantage on Wisdom (Perception) checks that rely on hearing. Creatures that make no noise or that are magically silent cannot be detected by this spell’s effect.\n\n**Song of the forest** functions only in natural environments; it fails if cast underground, in a city, or in a building that isolates the caster from nature (GM’s discretion).\n\n***Ritual Focus.*** If you expend your ritual focus, the spell also gives you blindsight out to a range of 30 feet.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dried leaf, crumpled and released", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "speak-with-inanimate-object", - "fields": { - "name": "Speak with Inanimate Object", - "desc": "You awaken a spirit that resides inside an inanimate object such as a rock, a sign, or a table, and can ask it up to three yes-or-no questions. The spirit is indifferent toward you unless you have done something to harm or help it. The spirit can give you information about its environment and about things it has observed (with its limited senses), and it can act as a spy for you in certain situations. The spell ends when its duration expires or after you have received answers to three questions.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "spin", - "fields": { - "name": "Spin", - "desc": "You designate a creature you can see within range and tell it to spin. The creature can resist this command with a successful Wisdom saving throw. On a failed save, the creature spins in place for the duration of the spell. A spinning creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A creature that has spun for 1 round or longer becomes dizzy and has disadvantage on attack rolls and ability checks until 1 round after it stops spinning.", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "spinning-axes", - "fields": { - "name": "Spinning Axes", - "desc": "Spinning axes made of luminous force burst out from you to strike all creatures within 10 feet of you. Each of those creatures takes 5d8 force damage, or half the damage with a successful Dexterity saving throw. Creatures damaged by this spell that aren’t undead or constructs begin bleeding. A bleeding creature takes 2d6 necrotic damage at the end of each of its turns for 1 minute. A creature can stop the bleeding for itself or another creature by using an action to make a successful Wisdom (Medicine) check against your spell save DC or by applying any amount of magical healing.\n", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an iron ring", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "spiteful-weapon", - "fields": { - "name": "Spiteful Weapon", - "desc": "You create a connection between the target of the spell, an attacker that injured the target during the last 24 hours, and the melee weapon that caused the injury, all of which must be within range when the spell is cast.\n\nFor the duration of the spell, whenever the attacker takes damage while holding the weapon, the target must make a Charisma saving throw. On a failed save, the target takes the same amount and type of damage, or half as much damage on a successful one. The attacker can use the weapon on itself and thus cause the target to take identical damage. A self-inflicted wound hits automatically, but damage is still rolled randomly.\n\nOnce the connection is established, it lasts for the duration of the spell regardless of range, so long as all three elements remain on the same plane. The spell ends immediately if the attacker receives any healing.\n", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "The target has disadvantage on its Charisma saving throws if **spiteful weapon** is cast using a spell slot of 5th level or higher.", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a melee weapon that has been used to injure the target", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "spur-mount", - "fields": { - "name": "Spur Mount", - "desc": "You urge your mount to a sudden burst of speed. Until the end of your next turn, you can direct your mount to use the Dash or Disengage action as a bonus action. This spell has no effect on a creature that you are not riding.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an apple or a sugar cube", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "staff-of-violet-fire", - "fields": { - "name": "Staff of Violet Fire", - "desc": "You create a quarterstaff of pure necrotic energy that blazes with intense purple light; it appears in your chosen hand. If you let it go, it disappears, though you can evoke it again as a bonus action if you have maintained concentration on the spell.\n\nThis staff is an extremely unstable and impermanent magic item; it has 10 charges and does not require attunement. The wielder can use one of three effects:\n\n* By using your action to make a melee attack and expending 1 charge, you can attack with it. On a hit, the target takes 5d10 necrotic damage.\n* By expending 2 charges, you can release bolts of necrotic fire against up to 3 targets as ranged attacks for 1d8+4 necrotic damage each.\n\nThe staff disappears and the spell ends when all the staff's charges have been expended or if you stop concentrating on the spell.\n", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the melee damage increases by 1d10 for every two slot levels above 4th, or you add one additional ranged bolt for every two slot levels above 4th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "mummy dust", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "necrotic" - ], - "duration": "special", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "stanch", - "fields": { - "name": "Stanch", - "desc": "The target’s blood coagulates rapidly, so that a dying target stabilizes and any ongoing bleeding or wounding effect on the target ends. The target can't be the source of blood for any spell or effect that requires even a drop of blood.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "starburst", - "fields": { - "name": "Starburst", - "desc": "You cause a mote of starlight to appear and explode in a 5-foot cube you can see within range. If a creature is in the cube, it must succeed on a Charisma saving throw or take 1d8 radiant damage.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "This spell’s damage increases to 2d8 when you reach 5th level, 3d8 when you reach 11th level, and 4d8 when you reach 17th level.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "starfall", - "fields": { - "name": "Starfall", - "desc": "You cause bolts of shimmering starlight to fall from the heavens, striking up to five creatures that you can see within range. Each bolt strikes one target, dealing 6d6 radiant damage, knocking the target prone, and blinding it until the start of your next turn. A creature that makes a successful Dexterity saving throw takes half the damage, is not knocked prone, and is not blinded. If you name fewer than five targets, excess bolts strike the ground harmlessly.\n", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can create one additional bolt for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "starry-vision", - "fields": { - "name": "Starry Vision", - "desc": "This spell acts as [compelling fate](https://api.open5e.com/spells/compelling-fate), except as noted above (**starry** vision can be cast as a reaction, has twice the range of [compelling fate](https://api.open5e.com/spells/compelling-fate), and lasts up to 1 minute). At the end of each of its turns, the target repeats the Charisma saving throw, ending the effect on a success.\n", - "document": "deepm", - "level": 7, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the bonus to AC increases by 1 for each slot level above 7th.", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a sprinkle of gold dust worth 400 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "stars-heart", - "fields": { - "name": "Star's Heart", - "desc": "This spell increases gravity tenfold in a 50-foot radius centered on you. Each creature in the area other than you drops whatever it’s holding, falls prone, becomes incapacitated, and can’t move. If a solid object (such as the ground) is encountered when a flying or levitating creature falls, the creature takes three times the normal falling damage. Any creature except you that enters the area or starts its turn there must make a successful Strength saving throw or fall prone and become incapacitated and unable to move. A creature that starts its turn prone and incapacitated makes a Strength saving throw. On a failed save, the creature takes 8d6 bludgeoning damage; on a successful save, it takes 4d6 bludgeoning damage, it’s no longer incapacitated, and it can move at half speed.\n\nAll ranged weapon attacks inside the area have a normal range of 5 feet and a maximum range of 10 feet. The same applies to spells that create missiles that have mass, such as [flaming sphere](https://api.open5e.com/spells/flaming-sphere). A creature under the influence of a [freedom of movement](https://api.open5e.com/spells/freedom-of-movement) spell or comparable magic has advantage on the Strength saving throws required by this spell, and its speed isn’t reduced once it recovers from being incapacitated.", - "document": "deepm", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "50 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an ioun stone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "steal-warmth", - "fields": { - "name": "Steal Warmth", - "desc": "When you cast **steal warmth** after taking cold damage, you select a living creature within 5 feet of you. That creature takes the cold damage instead, or half the damage with a successful Constitution saving throw. You regain hit points equal to the amount of cold damage taken by the target.\n", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the distance to the target you can affect with this spell increases by 5 feet for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "steam-blast", - "fields": { - "name": "Steam Blast", - "desc": "You unleash a burst of superheated steam in a 15-foot radius around you. All other creatures in the area take 5d8 fire damage, or half as much damage on a successful Dexterity saving throw. Nonmagical fires smaller than a bonfire are extinguished, and everything becomes wet.\n", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a tiny copper kettle or boiler", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "steam-whistle", - "fields": { - "name": "Steam Whistle", - "desc": "You open your mouth and unleash a shattering scream. All other creatures in a 30-foot radius around you take 10d10 thunder damage and are deafened for 1d8 hours. A successful Constitution saving throw halves the damage and reduces the deafness to 1 round.", - "document": "deepm", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small brass whistle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "stench-of-rot", - "fields": { - "name": "Stench of Rot", - "desc": "Choose one creature you can see within range that isn’t a construct or an undead. The target must succeed on a Charisma saving throw or become cursed for the duration of the spell. While cursed, the target reeks of death and rot, and nothing short of magic can mask or remove the smell. The target has disadvantage on all Charisma checks and on Constitution saving throws to maintain concentration on spells. A creature with the Keen Smell trait, or a similar trait indicating the creature has a strong sense of smell, can add your spellcasting ability modifier to its Wisdom (Perception) or Wisdom (Survival) checks to find the target. A [remove curse](https://api.open5e.com/spells/remove-curse) spell or similar magic ends the spell early.\n", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration increases by 1 hour for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a live maggot", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "storm-of-wings", - "fields": { - "name": "Storm of Wings", - "desc": "You create a storm of spectral birds, bats, or flying insects in a 15-foot-radius sphere on a point you can see within range. The storm spreads around corners, and its area is lightly obscured. Each creature in the storm when it appears and each a creature that starts its turn in the storm is affected by the storm.\n As a bonus action on your turn, you can move the storm up to 30 feet. As an action on your turn, you can change the storm from one type to another, such as from a storm of bats to a storm of insects.\n ***Bats.*** The creature takes 4d6 necrotic damage, and its speed is halved while within the storm as the bats cling to it and drain its blood.\n ***Birds.*** The creature takes 4d6 slashing damage, and has disadvantage on attack rolls while within the storm as the birds fly in the way of the creature's attacks.\n ***Insects.*** The creature takes 4d6 poison damage, and it must make a Constitution saving throw each time it casts a spell while within the storm. On a failed save, the creature fails to cast the spell, losing the action but not the spell slot.", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of honey", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 15, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "sudden-dawn", - "fields": { - "name": "Sudden Dawn", - "desc": "You call upon morning to arrive ahead of schedule. With a sharp word, you create a 30-foot-radius cylinder of light centered on a point on the ground within range. The cylinder extends vertically for 100 feet or until it reaches an obstruction, such as a ceiling. The area inside the cylinder is brightly lit.", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "100 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "cylinder", - "shape_magnitude": 30, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "summon-eldritch-servitor", - "fields": { - "name": "Summon Eldritch Servitor", - "desc": "You summon eldritch aberrations that appear in unoccupied spaces you can see within range. Choose one of the following options for what appears:\n* Two [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng)\n* One [shantak](https://api.open5e.com/monsters/shantak)\n\nWhen the summoned creatures appear, you must make a Charisma saving throw. On a success, the creatures are friendly to you and your allies. On a failure, the creatures are friendly to no one and attack the nearest creatures, pursuing and fighting for as long as possible.\n\nRoll initiative for the summoned creatures, which take their own turns as a group. If friendly to you, they obey your verbal commands (no action required by you to issue a command), or they attack the nearest living creature if they are not commanded otherwise.\n\nEach round when you maintain concentration on the spell, you must make a successful DC 15 Wisdom saving throw at the end of your turn or take 1d4 psychic damage. If the total of this damage exceeds your Wisdom score, you gain 1 point of Void taint and you are afflicted with a form of short-term madness. The same penalty applies when the damage exceeds twice your Wisdom score, three times your Wisdom score, and so forth, if you maintain concentration for that long.\n\nA summoned creature disappears when it drops to 0 hit points or when the spell ends. If you stop concentrating on the spell before 1 hour has elapsed, the creatures become uncontrolled and hostile until they disappear 1d6 rounds later or until they are killed.\n", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a 7th- or 8th-level spell slot, you can summon four [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng) or a [hound of Tindalos](https://api.open5e.com/monsters/hound-of-tindalos). When you cast it with a 9th-level spell slot, you can summon five [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng) or a [nightgaunt](https://api.open5e.com/monsters/nightgaunt).", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of the caster’s blood and a silver dagger", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "summon-star", - "fields": { - "name": "Summon Star", - "desc": "You summon a friendly star from the heavens to do your bidding. It appears in an unoccupied space you can see within range and takes the form of a glowing humanoid with long white hair. All creatures other than you who view the star must make a successful Wisdom saving throw or be charmed for the duration of the spell. A creature charmed in this way can repeat the Wisdom saving throw at the end of each of its turns. On a success, the creature is no longer charmed and is immune to the effect of this casting of the spell. In all other ways, the star is equivalent to a [deva](https://api.open5e.com/monsters/deva). It understands and obeys verbal commands you give it. If you do not give the star a command, it defends itself and attacks the last creature that attacked it. The star disappears when it drops to 0 hit points or when the spell ends.", - "document": "deepm", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "surge-dampener", - "fields": { - "name": "Surge Dampener", - "desc": "Using your strength of will, you cause one creature other than yourself that you touch to become so firmly entrenched within reality that it is protected from the effects of a chaos magic surge. The protected creature can make a DC 13 Charisma saving throw to negate the effect of a chaos magic surge that does not normally allow a saving throw, or it gains advantage on a saving throw that is normally allowed. Once the protected creature makes a successful saving throw allowed by **surge dampener**, the spell ends.", - "document": "deepm", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute, until expended", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "surprise-blessing", - "fields": { - "name": "Surprise Blessing", - "desc": "You touch a willing creature and choose one of the conditions listed below that the creature is currently subjected to. The condition’s normal effect on the target is suspended, and the indicated effect applies instead. This spell’s effect on the target lasts for the duration of the original condition or until the spell ends. If this spell ends before the original condition’s duration expires, you become affected by the condition for as long as it lasts, even if you were not the original recipient of the condition.\n\n***Blinded:*** The target gains truesight out to a range of 10 feet and can see 10 feet into the Ethereal Plane.\n\n***Charmed:*** The target’s Charisma score becomes 19, unless it is already higher than 19, and it gains immunity to charm effects.\n\n***Frightened:*** The target emits a 10-foot-radius aura of dread. Each creature the target designates that starts its turn in the aura must make a successful Wisdom saving throw or be frightened of the target. A creature frightened in this way that starts its turn outside the aura repeats the saving throw, ending the condition on itself on a success.\n\n***Paralyzed:*** The target can use one extra bonus action or reaction per round.\n\n***Petrified:*** The target gains a +2 bonus to AC.\n\n***Poisoned:*** The target heals 2d6 hit points at the start of its next turn, and it gains immunity to poison damage and the poisoned condition.\n\n***Stunned:*** The target has advantage on Intelligence, Wisdom, and Charisma saving throws.", - "document": "deepm", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "symbol-of-sorcery", - "fields": { - "name": "Symbol of Sorcery", - "desc": "You draw an arcane symbol on an object, wall, or other surface at least 5 feet wide. When a creature other than you approaches within 5 feet of the symbol, that act triggers an arcane explosion. Each creature in a 60-foot cone must make a successful Wisdom saving throw or be stunned. A stunned creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a successful save. After this symbol explodes or when the duration expires, its power is spent and the spell ends.", - "document": "deepm", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a stick of incense worth 20 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": "cone", - "shape_magnitude": 60, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "talons-of-a-hungry-land", - "fields": { - "name": "Talons of a Hungry Land", - "desc": "You cause three parallel lines of thick, flared obsidian spikes to erupt from the ground. They appear within range on a solid surface, last for the duration, and provide three‐quarters cover to creatures behind them. You can make lines (up to 60 feet long, 10 feet high, and 5 feet thick) or form a circle (20 feet in diameter, up to 15 feet high and 5 feet thick).\n\nWhen the lines appear, each creature in their area must make a Dexterity saving throw. Creatures takes 8d8 slashing damage, or half as much damage on a successful save.\n\nA creature can move through the lines at the risk of cutting itself on the exposed edges. For every 1 foot a creature moves through the lines, it must spend 4 feet of movement. Furthermore, the first time a creature enters the lines on a turn or ends its turn there, the creature must make a Dexterity saving throw. It takes 8d8 slashing damage on a failure, or half as much damage on a success.\n\nWhen you stop concentrating on the spell, you can cause the obsidian spikes to explode, dealing 5d8 slashing damage to any creature within 15 feet, or half as much damage on a successful Dexterity save.\n", - "document": "deepm", - "level": 7, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage from all effects of the lines increases by 1d8 for each slot level above 7th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "8d8", - "damage_types": [ - "slashing" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "targeting-foreknowledge", - "fields": { - "name": "Targeting Foreknowledge", - "desc": "Twisting the knife, slapping with the butt of the spear, slashing out again as you recover from a lunge, and countless other double-strike maneuvers are skillful ways to get more from your weapon. By casting this spell as a bonus action after making a successful melee weapon attack, you deal an extra 2d6 damage of the weapon’s type to the target. In addition, if your weapon attack roll was a 19 or higher, it is a critical hit and increases the weapon’s damage dice as normal. The extra damage from this spell is not increased on a critical hit.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "thin-the-ice", - "fields": { - "name": "Thin the Ice", - "desc": "You target a point within range. That point becomes the top center of a cylinder 10 feet in radius and 40 feet deep. All ice inside that area melts immediately. The uppermost layer of ice seems to remain intact and sturdy, but it covers a 40-foot-deep pit filled with ice water. A successful Wisdom (Survival) check or passive Perception check against your spell save DC notices the thin ice. If a creature weighing more than 20 pounds (or a greater weight specified by you when casting the spell) treads over the cylinder or is already standing on it, the ice gives way. Unless the creature makes a successful Dexterity saving throw, it falls into the icy water, taking 2d6 cold damage plus whatever other problems are caused by water, by armor, or by being drenched in a freezing environment. The water gradually refreezes normally.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of sunstone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "thousand-darts", - "fields": { - "name": "Thousand Darts", - "desc": "You launch thousands of needlelike darts in a 5-foot‐wide line that is 120 feet long. Each creature in the line takes 6d6 piercing damage, or half as much damage if it makes a successful Dexterity saving throw. The first creature struck by the darts makes the saving throw with disadvantage.\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a set of mithral darts worth 25 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "piercing" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "throes-of-ecstasy", - "fields": { - "name": "Throes of Ecstasy", - "desc": "Choose a humanoid that you can see within range. The target must succeed on a Constitution saving throw or become overcome with euphoria, rendering it incapacitated for the duration. The target automatically fails Wisdom saving throws, and attack rolls against the target have advantage. At the end of each of its turns, the target can make another Constitution saving throw. On a successful save, the spell ends on the target and it gains one level of exhaustion. If the spell continues for its maximum duration, the target gains three levels of exhaustion when the spell ends.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional humanoid for each slot level above 3rd. The humanoids must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a hazel or oak wand", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "thunder-bolt", - "fields": { - "name": "Thunder Bolt", - "desc": "You cast a knot of thunder at one enemy. Make a ranged spell attack against the target. If it hits, the target takes 1d8 thunder damage and can’t use reactions until the start of your next turn.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "thunderclap", - "fields": { - "name": "Thunderclap", - "desc": "You clap your hands, emitting a peal of thunder. Each creature within 20 feet of you takes 8d4 thunder damage and is deafened for 1d8 rounds, or it takes half as much damage and isn’t deafened if it makes a successful Constitution saving throw. On a saving throw that fails by 5 or more, the creature is also stunned for 1 round.\n\nThis spell doesn’t function in an area affected by a [silence](https://api.open5e.com/spells/silence) spell. Very brittle material such as crystal might be shattered if it’s within range, at the GM’s discretion; a character holding such an object can protect it from harm by making a successful Dexterity saving throw.", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d4", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "thunderous-charge", - "fields": { - "name": "Thunderous Charge", - "desc": "With a thunderous battle cry, you move up to 10 feet in a straight line and make a melee weapon attack. If it hits, you can choose to either gain a +5 bonus on the attack’s damage or shove the target 10 feet.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the distance you can move increases by 10 feet, and the attack deals an additional 1d6 thunder damage, for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "thunderous-stampede", - "fields": { - "name": "Thunderous Stampede", - "desc": "This spell acts as [thunderous charge](https://api.open5e.com/spells/thunderous-charge), but affecting up to three targets within range, including yourself. A target other than you must use its reaction to move and attack under the effect of thunderous stampede.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the distance your targets can move increases by 10 feet, and the attack deals an additional 1d6 thunder damage, for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "thunderous-wave", - "fields": { - "name": "Thunderous Wave", - "desc": "You initiate a shock wave centered at a point you designate within range. The wave explodes outward into a 30-foot-radius sphere. This force deals no damage directly, but every creature the wave passes through must make a Strength saving throw. On a failed save, a creature is pushed 30 feet and knocked prone; if it strikes a solid obstruction, it also takes 5d6 bludgeoning damage. On a successful save, a creature is pushed 15 feet and not knocked prone, and it takes 2d6 bludgeoning damage if it strikes an obstruction. The spell also emits a thunderous boom that can be heard within 400 feet.", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "5d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "thunderstorm", - "fields": { - "name": "Thunderstorm", - "desc": "You touch a willing creature, and it becomes surrounded by a roiling storm cloud 30 feet in diameter, erupting with (harmless) thunder and lightning. The creature gains a flying speed of 60 feet. The cloud heavily obscures the creature inside it from view, though it is transparent to the creature itself.", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of lightning-fused glass", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "tidal-barrier", - "fields": { - "name": "Tidal Barrier", - "desc": "A swirling wave of seawater surrounds you, crashing and rolling in a 10-foot radius around your space. The area is difficult terrain, and a creature that starts its turn there or that enters it for the first time on a turn must make a Strength saving throw. On a failed save, the creature is pushed 10 feet away from you and its speed is reduced to 0 until the start of its next turn.", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of driftwood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "time-in-a-bottle", - "fields": { - "name": "Time in a Bottle", - "desc": "You designate a spot within your sight. Time comes under your control in a 20-foot radius centered on that spot. You can freeze it, reverse it, or move it forward by as much as 1 minute as long as you maintain concentration. Nothing and no one, yourself included, can enter the field or affect what happens inside it. You can choose to end the effect at any moment as an action on your turn.", - "document": "deepm", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Sight", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "time-jump", - "fields": { - "name": "Time Jump", - "desc": "You touch a construct and throw it forward in time if it fails a Constitution saving throw. The construct disappears for 1d4 + 1 rounds, during which time it cannot act or be acted upon in any way. When the construct returns, it is unaware that any time has passed.", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "time-loop", - "fields": { - "name": "Time Loop", - "desc": "You capture a creature within range in a loop of time. The target is teleported to the space where it began its most recent turn. The target then makes a Wisdom saving throw. On a successful save, the spell ends. On a failed save, the creature must repeat the activities it undertook on its previous turn, following the sequence of moves and actions to the best of its ability. It doesn’t need to move along the same path or attack the same target, but if it moved and then attacked on its previous turn, its only option is to move and then attack on this turn. If the space where the target began its previous turn is occupied or if it’s impossible for the target to take the same action (if it cast a spell but is now unable to do so, for example), the target becomes incapacitated.\n\nAn affected target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. For as long as the spell lasts, the target teleports back to its starting point at the start of each of its turns, and it must repeat the same sequence of moves and actions.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a metal loop", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "time-slippage", - "fields": { - "name": "Time Slippage", - "desc": "You ensnare a creature within range in an insidious trap, causing different parts of its body to function at different speeds. The creature must make an Intelligence saving throw. On a failed save, it is stunned until the end of its next turn. On a success, the creature’s speed is halved and it has disadvantage on attack rolls and saving throws until the end of its next turn. The creature repeats the saving throw at the end of each of its turns, with the same effects for success and failure. In addition, the creature has disadvantage on Strength or Dexterity saving throws but advantage on Constitution or Charisma saving throws for the spell’s duration (a side effect of the chronal anomaly suffusing its body). The spell ends if the creature makes three successful saves in a row.", - "document": "deepm", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "the heart of a chaotic creature of challenge rating 5 or higher, worth 500 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "time-step", - "fields": { - "name": "Time Step", - "desc": "You briefly step forward in time. You disappear from your location and reappear at the start of your next turn in a location of your choice that you can see within 30 feet of the space you disappeared from. You can’t be affected by anything that happens during the time you’re missing, and you aren’t aware of anything that happens during that time.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "time-vortex", - "fields": { - "name": "Time Vortex", - "desc": "This spell destabilizes the flow of time, enabling you to create a vortex of temporal fluctuations that are visible as a spherical distortion with a 10-foot radius, centered on a point within range. Each creature in the area when you cast the spell must succeed on a Wisdom saving throw or be affected by the time vortex. While the spell lasts, a creature that enters the sphere or starts its turn inside the sphere must also succeed on a Wisdom saving throw or be affected. On a successful save, it becomes immune to this casting of the spell.\n\nAn affected creature can’t take reactions and rolls a d10 at the start of its turn to determine its behavior for that turn.\n\n| D10 | EFFECT |\n|-|-|\n| 1–2 | The creature is affected as if by a slow spell until the start of its next turn. |\n| 3–5 | The creature is stunned until the start of its next turn. |\n| 6–8 | The creature’s current initiative result is reduced by 5. The creature begins using this new initiative result in the next round. Multiple occurrences of this effect for the same creature are cumulative. |\n| 9–10 | The creature’s speed is halved (round up to the nearest 5-foot increment) until the start of its next turn. |\n\nYou can move the temporal vortex 10 feet each round as a bonus action. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "timely-distraction", - "fields": { - "name": "Timely Distraction", - "desc": "You call forth a swirling, crackling wave of constantly shifting pops, flashes, and swept-up debris. This chaos can confound one creature. If the target gets a failure on a Wisdom saving throw, roll a d4 and consult the following table to determine the result. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Otherwise, the spell ends when its duration expires.\n\n| D4 | Effect |\n|-|-|\n| 1 | Blinded |\n| 2 | Stunned |\n| 3 | Deafened |\n| 4 | Prone |\n\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of sand or dirt thrown in the air", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "3 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "tireless", - "fields": { - "name": "Tireless", - "desc": "You grant machinelike stamina to a creature you touch for the duration of the spell. The target requires no food or drink or rest. It can move at three times its normal speed overland and perform three times the usual amount of labor. The target is not protected from fatigue or exhaustion caused by a magical effect.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "an ever-wound spring worth 50 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "tongue-of-sand", - "fields": { - "name": "Tongue of Sand", - "desc": "**Tongue of sand** is similar in many ways to [magic mouth](https://api.open5e.com/spells/magic-mouth). When you cast it, you implant a message in a quantity of sand. The sand must fill a space no smaller than 4 square feet and at least 2 inches deep. The message can be up to 25 words. You also decide the conditions that trigger the speaking of the message. When the message is triggered, a mouth forms in the sand and delivers the message in a raspy, whispered voice that can be heard by creatures within 10 feet of the sand.\n\nAdditionally, **tongue of sand** has the ability to interact in a simple, brief manner with creatures who hear its message. For up to 10 minutes after the message is triggered, questions addressed to the sand will be answered as you would answer them. Each answer can be no more than ten words long, and the spell ends after a second question is answered.", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "tongue-tied", - "fields": { - "name": "Tongue Tied", - "desc": "You make a choking motion while pointing at a target, which must make a successful Wisdom saving throw or become unable to communicate verbally. The target’s speech becomes garbled, and it has disadvantage on Charisma checks that require speech. The creature can cast a spell that has a verbal component only by making a successful Constitution check against your spell save DC. On a failed check, the creature’s action is used but the spell slot isn’t expended.", - "document": "deepm", - "level": 5, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "torrent-of-fire", - "fields": { - "name": "Torrent of Fire", - "desc": "You harness the power of fire contained in ley lines with this spell. You create a 60-foot cone of flame. Creatures in the cone take 6d6 fire damage, or half as much damage with a successful Dexterity saving throw. You can then flow along the flames, reappearing anywhere inside the cone’s area. This repositioning doesn’t count as movement and doesn’t trigger opportunity attacks.", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of obsidian", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 60, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "touch-of-the-unliving", - "fields": { - "name": "Touch of the Unliving", - "desc": "Make a melee spell attack against a creature you can reach. On a hit, the target takes 2d6 necrotic damage and, if it is not an undead creature, it is paralyzed until the end of its next turn. Until the spell ends, you can make the attack again on each of your turns as an action.\n", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "tracer", - "fields": { - "name": "Tracer", - "desc": "When you cast this spell and as a bonus action on each of your turns until the spell ends, you can imbue a piece of ammunition you fire from a ranged weapon with a tiny, invisible beacon. If a ranged attack roll with an imbued piece of ammunition hits a target, the beacon is transferred to the target. The weapon that fired the ammunition is attuned to the beacon and becomes warm to the touch when it points in the direction of the target as long as the target is on the same plane of existence as you. You can have only one *tracer* target at a time. If you put a *tracer* on a different target, the effect on the previous target ends.\n A creature must succeed on an Intelligence (Arcana) check against your spell save DC to notice the magical beacon.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of bright paint", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "treasure-chasm", - "fields": { - "name": "Treasure Chasm", - "desc": "You cause the glint of a golden coin to haze over the vision of one creature in range. The target creature must make a Wisdom saving throw. If it fails, it sees a gorge, trench, or other hole in the ground, at a spot within range chosen by you, which is filled with gold and treasure. On its next turn, the creature must move toward that spot. When it reaches the spot, it becomes incapacitated, as it devotes all its attention to scooping imaginary treasure into its pockets or a pouch.\n\nAn affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The effect also ends if the creature takes damage from you or one of your allies.\n\nCreatures with the dragon type have disadvantage on the initial saving throw but have advantage on saving throws against this spell made after reaching the designated spot.", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a gold coin", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "tree-heal", - "fields": { - "name": "Tree Heal", - "desc": "You touch a plant and it regains 1d4 hit points. Alternatively, you can cure it of one disease or remove pests from it. Once you cast this spell on a plant or plant creature, you can't cast it on that target again for 24 hours. This spell can be used only on plants and plant creatures.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "tree-running", - "fields": { - "name": "Tree Running", - "desc": "One willing creature you touch gains a climbing speed equal to its walking speed. This climbing speed functions only while the creature is in contact with a living plant or fungus that’s growing from the ground. The creature can cling to an appropriate surface with just one hand or with just its feet, leaving its hands free to wield weapons or cast spells. The plant doesn’t give under the creature’s weight, so the creature can walk on the tiniest of tree branches, stand on a leaf, or run across the waving top of a field of wheat without bending a stalk or touching the ground.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "a maple catkin", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "tree-speak", - "fields": { - "name": "Tree Speak", - "desc": "You touch a tree and ask one question about anything that might have happened in its immediate vicinity (such as “Who passed by here?”). You get a mental sensation of the response, which lasts for the duration of the spell. Trees do not have a humanoid’s sense of time, so the tree might speak about something that happened last night or a hundred years ago. The sensation you receive might include sight, hearing, vibration, or smell, all from the tree’s perspective. Trees are particularly attentive to anything that might harm the forest and always report such activities when questioned.\n\nIf you cast this spell on a tree that contains a creature that can merge with trees, such as a dryad, you can freely communicate with the merged creature for the duration of the spell.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "trench", - "fields": { - "name": "Trench", - "desc": "By making a scooping gesture, you cause the ground to slowly sink in an area 5 feet wide and 60 feet long, originating from a point within range. When the casting is finished, a 5-foot-deep trench is the result.\n\nThe spell works only on flat, open ground (not on stone or paved surfaces) that is not occupied by creatures or objects.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can increase the width of the trench by 5 feet or the length by 30 feet for each slot level above 2nd. You can make a different choice (width or length) for each slot level above 2nd.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "trick-question", - "fields": { - "name": "Trick Question", - "desc": "You pose a question that can be answered by one word, directed at a creature that can hear you. The target must make a successful Wisdom saving throw or be compelled to answer your question truthfully. When the answer is given, the target knows that you used magic to compel it.", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "triumph-of-ice", - "fields": { - "name": "Triumph of Ice", - "desc": "You transform one of the four elements—air, earth, fire, or water—into ice or snow. The affected area is a sphere with a radius of 100 feet, centered on you. The specific effect depends on the element you choose.\n* ***Air.*** Vapor condenses into snowfall. If the effect of a [fog cloud](https://api.open5e.com/spells/fog-cloud) spell, a [stinking cloud](https://api.open5e.com/spells/stinking-cloud), or similar magic is in the area, this spell negates it. A creature of elemental air within range takes 8d6 cold damage—and, if airborne, it must make a successful Constitution saving throw at the start of its turn to avoid being knocked prone (no falling damage).\n* ***Earth.*** Soil freezes into permafrost to a depth of 10 feet. A creature burrowing through the area has its speed halved until the area thaws, unless it can burrow through solid rock. A creature of elemental earth within range must make a successful Constitution saving throw or take 8d6 cold damage.\n* ***Fire.*** Flames or other sources of extreme heat (such as molten lava) on the ground within range transform into shards of ice, and the area they occupy becomes difficult terrain. Each creature in the previously burning area takes 2d6 slashing damage when the spell is cast and 1d6 slashing damage for every 5 feet it moves in the area (unless it is not hindered by icy terrain) until the spell ends; a successful Dexterity saving throw reduces the slashing damage by half. A creature of elemental fire within range must make a successful Constitution saving throw or take 8d6 cold damage and be stunned for 1d6 rounds.\n* ***Water.*** Open water (a pond, lake, or river) freezes to a depth of 4 feet. A creature on the surface of the water when it freezes must make a successful Dexterity saving throw to avoid being trapped in the ice. A trapped creature can free itself by using an action to make a successful Strength (Athletics) check. A creature of elemental water within range takes no damage from the spell but is paralyzed for 1d6 rounds unless it makes a successful Constitution saving throw, and it treats the affected area as difficult terrain.", - "document": "deepm", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a stone extracted from glacial ice", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "twist-the-skein", - "fields": { - "name": "Twist the Skein", - "desc": "You tweak a strand of a creature’s fate as it attempts an attack roll, saving throw, or skill check. Roll a d20 and subtract 10 to produce a number from 10 to –9. Add that number to the creature’s roll. This adjustment can turn a failure into a success or vice versa, or it might not change the outcome at all.", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "umbral-storm", - "fields": { - "name": "Umbral Storm", - "desc": "You create a channel to a region of the Plane of Shadow that is inimical to life and order. A storm of dark, raging entropy fills a 20-foot-radius sphere centered on a point you can see within range. Any creature that starts its turn in the storm or enters it for the first time on its turn takes 6d8 necrotic damage and gains one level of exhaustion; a successful Constitution saving throw halves the damage and prevents the exhaustion.\n\nYou can use a bonus action on your turn to move the area of the storm 30 feet in any direction.", - "document": "deepm", - "level": 9, - "school": "necromancy", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "uncontrollable-transformation", - "fields": { - "name": "Uncontrollable Transformation", - "desc": "You infuse your body with raw chaos and will it to adopt a helpful mutation. Roll a d10 and consult the Uncontrollable Transformation table below to determine what mutation occurs. You can try to control the shifting of your body to gain a mutation you prefer, but doing so is taxing; you can roll a d10 twice and choose the result you prefer, but you gain one level of exhaustion. At the end of the spell, your body returns to its normal form.\n", - "document": "deepm", - "level": 7, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you gain an additional mutation for each slot level above 7th. You gain one level of exhaustion for each mutation you try to control.\n ## Uncontrollable Transformation \n| D10 | Mutation |\n|-|-|\n| 1 | A spindly third arm sprouts from your shoulder. As a bonus action, you can use it to attack with a light weapon. You have advantage on Dexterity (Sleight of Hand) checks and any checks that require the manipulation of tools. |\n| 2 | Your skin is covered by rough scales that increase your AC by 1 and give you resistance to a random damage type (roll on the Damage Type table). |\n| 3 | A puckered orifice grows on your back. You can forcefully expel air from it, granting you a flying speed of 30 feet. You must land at the end of your turn. In addition, as a bonus action, you can try to push a creature away with a blast of air. The target is pushed 5 feet away from you if it fails a Strength saving throw with a DC equal to 10 + your Constitution modifier. |\n| 4 | A second face appears on the back of your head. You gain darkvision out to a range of 120 feet and advantage on sight‐based and scent-based Wisdom (Perception) checks. You become adept at carrying on conversations with yourself. |\n| 5 | You grow gills that not only allow you to breathe underwater but also filter poison out of the air. You gain immunity to inhaled poisons. |\n| 6 | Your hindquarters elongate, and you grow a second set of legs. Your base walking speed increases by 10 feet, and your carrying capacity becomes your Strength score multiplied by 20. |\n| 7 | You become incorporeal and can move through other creatures and objects as if they were difficult terrain. You take 1d10 force damage if you end your turn inside an object. You can’t pick up or interact with physical objects that you weren’t carrying when you became incorporeal. |\n| 8 | Your limbs elongate and flatten into prehensile paddles. You gain a swimming speed equal to your base walking speed and have advantage on Strength (Athletics) checks made to climb or swim. In addition, your unarmed strikes deal 1d6 bludgeoning damage. |\n| 9 | Your head fills with a light gas and swells to four times its normal size, causing your hair to fall out. You have advantage on Intelligence and Wisdom ability checks and can levitate up to 5 feet above the ground. |\n| 10 | You grow three sets of feathered wings that give you a flying speed equal to your walking speed and the ability to hover. |\n\n ## Damage Type \n\n| d10 | Damage Type |\n|-|-|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |\n\n", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "the bill of a platypus", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "undermine-armor", - "fields": { - "name": "Undermine Armor", - "desc": "You unravel the bonds of reality that hold a suit of armor together. A target wearing armor must succeed on a Constitution saving throw or its armor softens to the consistency of candle wax, decreasing the target’s AC by 2.\n\n**Undermine armor** has no effect on creatures that aren’t wearing armor.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "unholy-defiance", - "fields": { - "name": "Unholy Defiance", - "desc": "Until the spell ends, undead creatures within range have advantage on saving throws against effects that turn undead. If an undead creature within this area has the Turning Defiance trait, that creature can roll a d4 when it makes a saving throw against an effect that turns undead and add the number rolled to the saving throw.", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of earth from a grave", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "unleash-effigy", - "fields": { - "name": "Unleash Effigy", - "desc": "You cause a stone statue that you can see within 60 feet of you to animate as your ally. The statue has the statistics of a [stone golem](https://api.open5e.com/monsters/stone-golem). It takes a turn immediately after your turn. As a bonus action on your turn, you can order the golem to move and attack, provided you’re within 60 feet of it. Without orders from you, the statue does nothing.\n\nWhenever the statue has 75 hit points or fewer at the start of your turn or it is more than 60 feet from you at the start of your turn, you must make a successful DC 16 spellcasting check or the statue goes berserk. On each of its turns, the berserk statue attacks you or one of your allies. If no creature is near enough to be attacked, the statue dashes toward the nearest one instead. Once the statue goes berserk, it remains berserk until it’s destroyed.\n\nWhen the spell ends, the animated statue reverts to a normal, mundane statue.", - "document": "deepm", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "unluck-on-that", - "fields": { - "name": "Unluck On That", - "desc": "By uttering a swift curse (“Unluck on that!”), you bring misfortune to the target’s attempt; the affected creature has disadvantage on the roll.\n", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the range of the spell increases by 5 feet for each slot level above 1st.", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "unseen-strangler", - "fields": { - "name": "Unseen Strangler", - "desc": "You conjure an immaterial, tentacled aberration in an unoccupied space you can see within range, and you specify a password that the phantom recognizes. The entity remains where you conjured it until the spell ends, until you dismiss it as an action, or until you move more than 80 feet from it.\n\nThe strangler is invisible to all creatures except you, and it can’t be harmed. When a Small or larger creature approaches within 30 feet of it without speaking the password that you specified, the strangler starts whispering your name. This whispering is always audible to you, regardless of other sounds in the area, as long as you’re conscious. The strangler sees invisible creatures and can see into the Ethereal Plane. It ignores illusions.\n\nIf any creatures hostile to you are within 5 feet of the strangler at the start of your turn, the strangler attacks one of them with a tentacle. It makes a melee weapon attack with a bonus equal to your spellcasting ability modifier + your proficiency bonus. On a hit, it deals 3d6 bludgeoning damage, and a Large or smaller creature is grappled (escape DC = your spellcasting ability modifier + your proficiency bonus). Until this grapple ends, the target is restrained, and the strangler can’t attack another target. If the strangler scores a critical hit, the target begins to suffocate and can’t speak until the grapple ends.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of sulfur and a live rodent", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "vine-trestle", - "fields": { - "name": "Vine Trestle", - "desc": "You cause a vine to sprout from the ground and crawl across a surface or rise into the air in a direction chosen by you. The vine must sprout from a solid surface (such as the ground or a wall), and it is strong enough to support 600 pounds of weight along its entire length. The vine collapses immediately if that 600-pound limit is exceeded. A vine that collapses from weight or damage instantly disintegrates.\n\nThe vine has many small shoots, so it can be climbed with a successful DC 5 Strength (Athletics) check. It has AC 8, hit points equal to 5 × your spellcasting level, and a damage threshold of 5.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the vine can support an additional 30 pounds, and its damage threshold increases by 1 for each slot level above 2nd.\n\n***Ritual Focus.*** If you expend your ritual focus, the vine is permanent until destroyed or dispelled.", - "target_type": "point", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a 1-inch piece of green vine that is consumed in the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "visage-of-madness", - "fields": { - "name": "Visage of Madness", - "desc": "When you cast this spell, your face momentarily becomes that of a demon lord, frightful enough to drive enemies mad. Every foe that’s within 30 feet of you and that can see you must make a Wisdom saving throw. On a failed save, a creature claws savagely at its eyes, dealing piercing damage to itself equal to 1d6 + the creature’s Strength modifier. The creature is also stunned until the end of its next turn and blinded for 1d4 rounds. A creature that rolls maximum damage against itself (a 6 on the d6) is blinded permanently.", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "vital-mark", - "fields": { - "name": "Vital Mark", - "desc": "You mark an unattended magic item (including weapons and armor) with a clearly visible stain of your blood. The exact appearance of the bloodstain is up to you. The item’s magical abilities don’t function for anyone else as long as the bloodstain remains on it. For example, a **+1 flaming longsword** with a vital mark functions as a nonmagical longsword in the hands of anyone but the caster, but it still functions as a **+1 flaming longsword** for the caster who placed the bloodstain on it. A [wand of magic missiles](https://api.open5e.com/spells/wand-of-magic-missiles) would be no more than a stick in the hands of anyone but the caster.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher on the same item for 28 consecutive days, the effect becomes permanent until dispelled.", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "void-rift", - "fields": { - "name": "Void Rift", - "desc": "You speak a hideous string of Void Speech that leaves your mouth bloodied, causing a rift into nothingness to tear open. The rift takes the form of a 10-foot-radius sphere, and it forms around a point you can see within range. The area within 40 feet of the sphere’s outer edge becomes difficult terrain as the Void tries to draw everything into itself. A creature that starts its turn within 40 feet of the sphere or that enters that area for the first time on its turn must succeed on a Strength saving throw or be pulled 15 feet toward the rift. A creature that starts its turn in the rift or that comes into contact with it for the first time on its turn takes 8d10 necrotic damage. Creatures inside the rift are blinded and deafened. Unattended objects within 40 feet of the rift are drawn 15 feet toward it at the start of your turn, and they take damage as creatures if they come into contact with it.\n\nWhile concentrating on the spell, you take 2d6 necrotic damage at the end of each of your turns.", - "document": "deepm", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a black opal worth 500 gp, carved with a Void glyph", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "8d10", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 10, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "void-strike", - "fields": { - "name": "Void Strike", - "desc": "With a short phrase of Void Speech, you gather writhing darkness around your hand. When you cast the spell, and as an action on subsequent turns while you maintain concentration, you can unleash a bolt of darkness at a creature within range. Make a ranged spell attack. If the target is in dim light or darkness, you have advantage on the roll. On a hit, the target takes 5d8 necrotic damage and is frightened of you until the start of your next turn.\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast the spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "5d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "volley-shield", - "fields": { - "name": "Volley Shield", - "desc": "You touch a willing creature and create a shimmering shield of energy to protect it. The shield grants the target a +5 bonus to AC and gives it resistance against nonmagical bludgeoning, piercing, and slashing damage for the duration of the spell.\n\nIn addition, the shield can reflect hostile spells back at their casters. When the target makes a successful saving throw against a hostile spell, the caster of the spell immediately becomes the spell’s new target. The caster is entitled to the appropriate saving throw against the returned spell, if any, and is affected by the spell as if it came from a spellcaster of the caster’s level.", - "document": "deepm", - "level": 7, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "vomit-tentacles", - "fields": { - "name": "Vomit Tentacles", - "desc": "Your jaws distend and dozens of thin, slimy tentacles emerge from your mouth to grasp and bind your opponents. Make a melee spell attack against a foe within 15 feet of you. On a hit, the target takes bludgeoning damage equal to 2d6 + your Strength modifier and is grappled (escape DC equal to your spell save DC). Until this grapple ends, the target is restrained and it takes the same damage at the start of each of your turns. You can grapple only one creature at a time.\n\nThe Armor Class of the tentacles is equal to yours. If they take slashing damage equal to 5 + your Constitution modifier from a single attack, enough tentacles are severed to enable a grappled creature to escape. Severed tentacles are replaced by new ones at the start of your turn. Damage dealt to the tentacles doesn’t affect your hit points.\n\nWhile the spell is in effect, you are incapable of speech and can’t cast spells that have verbal components.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of a tentacle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "5 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "voorish-sign", - "fields": { - "name": "Voorish Sign", - "desc": "For the duration, invisible creatures and objects within 20 feet of you become visible to you, and you have advantage on saving throws against effects that cause the frightened condition. The effect moves with you, remaining centered on you until the duration expires.\n", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the radius increases by 5 feet for every two slot levels above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "waft", - "fields": { - "name": "Waft", - "desc": "This spell was first invented by dragon parents to assist their offspring when learning to fly. You gain a flying speed of 60 feet for 1 round. At the start of your next turn, you float rapidly down and land gently on a solid surface beneath you.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a topaz worth at least 10 gp", - "material_cost": "10.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "walk-the-twisted-path", - "fields": { - "name": "Walk the Twisted Path", - "desc": "When you cast this spell, you and up to five creatures you can see within 20 feet of you enter a shifting landscape of endless walls and corridors that connect to many places throughout the world.\n\nYou can find your way to a destination within 100 miles, as long as you know for certain that your destination exists (though you don’t need to have seen or visited it before), and you must make a successful DC 20 Intelligence check. If you have the ability to retrace a path you have previously taken without making a check (as a minotaur or a goristro can), this check automatically succeeds. On a failed check, you don't find your path this round, and you and your companions each take 4d6 psychic damage as the madness of the shifting maze exacts its toll. You must repeat the check at the start of each of your turns until you find your way to your destination or until you die. In either event, the spell ends.\n\nWhen the spell ends, you and those traveling with you appear in a safe location at your destination.\n", - "document": "deepm", - "level": 6, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can bring along two additional creatures or travel an additional 100 miles for each slot level above 6th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a map", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "walking-wall", - "fields": { - "name": "Walking Wall", - "desc": "This spell creates a wall of swinging axes from the pile of miniature axes you provide when casting the spell. The wall fills a rectangle 10 feet wide, 10 feet high, and 20 feet long. The wall has a base speed of 50 feet, but it can’t take the Dash action. It can make up to four attacks per round on your turn, using your spell attack modifier to hit and with a reach of 10 feet. You direct the wall’s movement and attacks as a bonus action. If you choose not to direct it, the wall continues trying to execute the last command you gave it. The wall can’t use reactions. Each successful attack deals 4d6 slashing damage, and the damage is considered magical.\n\nThe wall has AC 12 and 200 hit points, and is immune to necrotic, poison, psychic, and piercing damage. If it is reduced to 0 hit points or when the spell’s duration ends, the wall disappears and the miniature axes fall to the ground in a tidy heap.", - "document": "deepm", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "100 miniature axes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wall-of-time", - "fields": { - "name": "Wall of Time", - "desc": "You create a wall of shimmering, transparent blocks on a solid surface within range. You can make a straight wall up to 60 feet long, 20 feet high, and 1 foot thick, or a cylindrical wall up to 20 feet high, 1 foot thick, and 20 feet in diameter. Nonmagical ranged attacks that cross the wall vanish into the time stream with no other effect. Ranged spell attacks and ranged weapon attacks made with magic weapons that pass through the wall are made with disadvantage. A creature that intentionally enters or passes through the wall is affected as if it had just failed its initial saving throw against a [slow](https://api.open5e.com/spells/slow) spell.", - "document": "deepm", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an hourglass", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "warning-shout", - "fields": { - "name": "Warning Shout", - "desc": "You sense danger before it happens and call out a warning to an ally. One creature you can see and that can hear you gains advantage on its initiative roll.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "warp-mind-and-matter", - "fields": { - "name": "Warp Mind and Matter", - "desc": "A creature you can see within range undergoes a baleful transmogrification. The target must make a successful Wisdom saving throw or suffer a flesh warp and be afflicted with a form of indefinite madness.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "root of deadly nightshade and a drop of the caster’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until cured or dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "weapon-of-blood", - "fields": { - "name": "Weapon of Blood", - "desc": "When you cast this spell, you inflict 1d4 slashing damage on yourself that can’t be healed until after the blade created by this spell is destroyed or the spell ends. The trickling blood transforms into a dagger of red metal that functions as a **+1 dagger**.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd to 5th level, the self-inflicted wound deals 3d4 slashing damage and the spell produces a **+2 dagger**. When you cast this spell using a spell slot of 6th to 8th level, the self-inflicted wound deals 6d4 slashing damage and the spell produces a **+2 dagger of wounding**. When you cast this spell using a 9th-level spell slot, the self-inflicted wound deals 9d4 slashing damage and the spell produces a **+3 dagger of wounding**.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of iron shavings", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "weilers-ward", - "fields": { - "name": "Weiler’s Ward", - "desc": "You create four small orbs of faerie magic that float around your head and give off dim light out to a radius of 15 feet. Whenever a Large or smaller enemy enters that area of dim light, or starts its turn in the area, you can use your reaction to attack it with one or more of the orbs. The enemy creature makes a Charisma saving throw. On a failed save, the creature is pushed 20 feet directly away from you, and each orb you used in the attack explodes violently, dealing 1d6 force damage to the creature.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the number of orbs increases by one for each slot level above 2nd.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a lock of hair from a fey creature", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wild-shield", - "fields": { - "name": "Wild Shield", - "desc": "You surround yourself with the forces of chaos. Wild lights and strange sounds engulf you, making stealth impossible. While **wild shield** is active, you can use a reaction to repel a spell of 4th level or lower that targets you or whose area you are within. A repelled spell has no effect on you, but doing this causes the chance of a chaos magic surge as if you had cast a spell, with you considered the caster for any effect of the surge.\n\n**Wild shield** ends when the duration expires or when it absorbs 4 levels of spells. If you try to repel a spell whose level exceeds the number of levels remaining, make an ability check using your spellcasting ability. The DC equals 10 + the spell’s level – the number of levels **wild shield** can still repel. If the check succeeds, the spell is repelled; if the check fails, the spell has its full effect. The chance of a chaos magic surge exists regardless of whether the spell is repelled.\n", - "document": "deepm", - "level": 4, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can repel one additional spell level for each slot level above 4th.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "wind-lash", - "fields": { - "name": "Wind Lash", - "desc": "Your swift gesture creates a solid lash of howling wind. Make a melee spell attack against the target. On a hit, the target takes 1d8 slashing damage from the shearing wind and is pushed 5 feet away from you.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "The spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "20 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "slashing" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "wind-of-the-hereafter", - "fields": { - "name": "Wind of the Hereafter", - "desc": "You create a 30-foot-radius sphere of roiling wind that carries the choking stench of death. The sphere is centered on a point you choose within range. The wind blows around corners. When a creature starts its turn in the sphere, it takes 8d8 necrotic damage, or half as much damage if it makes a successful Constitution saving throw. Creatures are affected even if they hold their breath or don’t need to breathe.\n\nThe sphere moves 10 feet away from you at the start of each of your turns, drifting along the surface of the ground. It is not heavier than air but drifts in a straight line for the duration of the spell, even if that carries it over a cliff or gully. If the sphere meets a wall or other impassable obstacle, it turns to the left or right (select randomly).", - "document": "deepm", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of air from a tomb", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d8", - "damage_types": [ - "necrotic" - ], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wind-tunnel", - "fields": { - "name": "Wind Tunnel", - "desc": "You create a swirling tunnel of strong wind extending from yourself in a direction you choose. The tunnel is a line 60 feet long and 10 feet wide. The wind blows from you toward the end of the line, which is stationary once created. A creature in the line moving with the wind (away from you) adds 10 feet to its speed, and ranged weapon attacks launched with the wind don’t have disadvantage because of long range. Creatures in the line moving against the wind (toward you) spend 2 feet of movement for every 1 foot they move, and ranged weapon attacks launched along the line against the wind are made with disadvantage.\n\nThe wind tunnel immediately disperses gas or vapor, and it extinguishes candles, torches, and similar unprotected flames in the line. It causes protected flames, such as those of lanterns, to dance wildly and has a 50 percent chance of extinguishing them.", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a paper straw", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "winterdark", - "fields": { - "name": "Winterdark", - "desc": "This spell invokes the deepest part of night on the winter solstice. You target a 40-foot-radius, 60-foot-high cylinder centered on a point within range, which is plunged into darkness and unbearable cold. Each creature in the area when you cast the spell and at the start of its turn must make a successful Constitution saving throw or take 1d6 cold damage and gain one level of exhaustion. Creatures immune to cold damage are also immune to the exhaustion effect, as are creatures wearing cold weather gear or otherwise adapted for a cold environment.\n\nAs a bonus action, you can move the center of the effect 20 feet.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "winters-radiance", - "fields": { - "name": "Winter's Radiance", - "desc": "When you cast this spell, the piercing rays of a day’s worth of sunlight reflecting off fresh snow blankets the area. A creature caught in the spell’s area must succeed on a Constitution saving throw or have disadvantage on ranged attacks and Wisdom (Perception) checks for the duration of the spell. In addition, an affected creature’s vision is hampered such that foes it targets are treated as having three-quarters cover.", - "document": "deepm", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "400 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of polished glass", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wintry-glide", - "fields": { - "name": "Wintry Glide", - "desc": "Upon casting wintry glide, you can travel via ice or snow without crossing the intervening space. If you are adjacent to a mass of ice or snow, you can enter it by expending 5 feet of movement. By expending another 5 feet of movement, you can immediately exit from that mass at any point—within 500 feet—that’s part of the contiguous mass of ice or snow. When you enter the ice or snow, you instantly know the extent of the material within 500 feet. You must have at least 10 feet of movement available when you cast the spell, or it fails.\n\nIf the mass of ice or snow is destroyed while you are transiting it, you must make a successful Constitution saving throw against your spell save DC to avoid taking 4d6 bludgeoning damage and falling prone at the midpoint of a line between your entrance point and your intended exit point.", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "withered-sight", - "fields": { - "name": "Withered Sight", - "desc": "You cause the eyes of a creature you can see within range to lose acuity. The target must make a Constitution saving throw. On a failed save, the creature has disadvantage on Wisdom (Perception) checks and all attack rolls for the duration of the spell. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This spell has no effect on a creature that is blind or that doesn’t use its eyes to see.\n", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dried lizard's eye", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wolfsong", - "fields": { - "name": "Wolfsong", - "desc": "You emit a howl that can be heard clearly from 300 feet away outdoors. The howl can convey a message of up to nine words, which can be understood by all dogs and wolves in that area, as well as (if you choose) one specific creature of any kind that you name when casting the spell.\n\nIf you cast the spell indoors and aboveground, the howl can be heard out to 200 feet from you. If you cast the spell underground, the howl can be heard from 100 feet away. A creature that understands the message is not compelled to act in a particular way, though the nature of the message might suggest or even dictate a course of action.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can name another specific recipient for each slot level above 2nd.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "word-of-misfortune", - "fields": { - "name": "Word of Misfortune", - "desc": "You hiss a word of Void Speech. Choose one creature you can see within range. The next time the target makes a saving throw during the spell’s duration, it must roll a d4 and subtract the result from the total of the saving throw. The spell then ends.", - "document": "deepm", - "level": 0, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute.", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wresting-wind", - "fields": { - "name": "Wresting Wind", - "desc": "By blowing a pinch of confetti from your cupped hand, you create a burst of air that can rip weapons and other items out of the hands of your enemies. Each enemy in a 20-foot radius centered on a point you target within range must make a successful Strength saving throw or drop anything held in its hands. The objects land 10 feet away from the creatures that dropped them, in random directions.", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of paper confetti", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "writhing-arms", - "fields": { - "name": "Writhing Arms", - "desc": "Your arms become constantly writhing tentacles. You can use your action to make a melee spell attack against any target within range. The target takes 1d10 necrotic damage and is grappled (escape DC is your spell save DC). If the target does not escape your grapple, you can use your action on each subsequent turn to deal 1d10 necrotic damage to the target automatically.\n\nAlthough you control the tentacles, they make it difficult to manipulate items. You cannot wield weapons or hold objects, including material components, while under the effects of this spell.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage you deal with your tentacle attack increases by 1d10 for each slot level above 1st.", - "target_type": "object", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d10", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "yellow-sign", - "fields": { - "name": "Yellow Sign", - "desc": "You attempt to afflict a humanoid you can see within range with memories of distant, alien realms and their peculiar inhabitants. The target must make a successful Wisdom saving throw or be afflicted with a form of long-term madness and be charmed by you for the duration of the spell or until you or one of your allies harms it in any way. While charmed in this way, the creature regards you as a sacred monarch. If you or an ally of yours is fighting the creature, it has advantage on its saving throw.\n\nA successful [remove curse](https://api.open5e.com/spells/remove-curse) spell ends both effects.", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1d10 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -} -] + { + "model": "api_v2.spell", + "pk": "deepm_abhorrent-apparition", + "fields": { + "name": "Abhorrent Apparition", + "desc": "You imbue a terrifying visage onto a gourd and toss it ahead of you to a spot of your choosing within range. Each creature within 15 feet of that spot takes 6d8 psychic damage and becomes frightened of you for 1 minute; a successful Wisdom saving throw halves the damage and negates the fright. A creature frightened in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 4, + "school": "illusion", + "higher_level": "If you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": false, + "material": true, + "material_specified": "a gourd with a face carved on it", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_accelerate", + "fields": { + "name": "Accelerate", + "desc": "Choose up to three willing creatures within range, which can include you. For the duration of the spell, each target’s walking speed is doubled. Each target can also use a bonus action on each of its turns to take the Dash action, and it has advantage on Dexterity saving throws.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a toy top", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_acid-gate", + "fields": { + "name": "Acid Gate", + "desc": "You create a portal of swirling, acidic green vapor in an unoccupied space you can see. This portal connects with a target destination within 100 miles that you are personally familiar with and have seen with your own eyes, such as your wizard’s tower or an inn you have stayed at. You and up to three creatures of your choice can enter the portal and pass through it, arriving at the target destination (or within 10 feet of it, if it is currently occupied). If the target destination doesn’t exist or is inaccessible, the spell automatically fails and the gate doesn’t form.\n\nAny creature that tries to move through the gate, other than those selected by you when the spell was cast, takes 10d6 acid damage and is teleported 1d100 × 10 feet in a random, horizontal direction. If the creature makes a successful Intelligence saving throw, it can’t be teleported by this portal, but it still takes acid damage when it enters the acid-filled portal and every time it ends its turn in contact with it.\n", + "document": "deepm", + "level": 7, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you can allow one additional creature to use the gate for each slot level above 7th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of acid and a polished silver mirror worth 125 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "acid" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_acid-rain", + "fields": { + "name": "Acid Rain", + "desc": "You unleash a storm of swirling acid in a cylinder 20 feet wide and 30 feet high, centered on a point you can see. The area is heavily obscured by the driving acidfall. A creature that starts its turn in the area or that enters the area for the first time on its turn takes 6d6 acid damage, or half as much damage if it makes a successful Dexterity saving throw. A creature takes half as much damage from the acid (as if it had made a successful saving throw) at the start of its first turn after leaving the affected area.\n", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d6 for each slot level above 5th.", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of acid", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "acid" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_adjust-position", + "fields": { + "name": "Adjust Position", + "desc": "You adjust the location of an ally to a better tactical position. You move one willing creature within range 5 feet. This movement does not provoke opportunity attacks. The creature moves bodily through the intervening space (as opposed to teleporting), so there can be no physical obstacle (such as a wall or a door) in the path.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target an additional willing creature for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_afflict-line", + "fields": { + "name": "Afflict Line", + "desc": "You invoke the darkest curses upon your victim and his or her descendants. This spell does not require that you have a clear path to your target, only that your target is within range. The target must make a successful Wisdom saving throw or be cursed until the magic is dispelled. While cursed, the victim has disadvantage on ability checks and saving throws made with the ability score that you used when you cast the spell. In addition, the target’s firstborn offspring is also targeted by the curse. That individual is allowed a saving throw of its own if it is currently alive, or it makes one upon its birth if it is not yet born when the spell is cast. If the target’s firstborn has already died, the curse passes to the target’s next oldest offspring.\n\n**Ritual Focus.** If you expend your ritual focus, the curse becomes hereditary, passing from firstborn to firstborn for the entire length of the family’s lineage until one of them successfully saves against the curse and throws off your dark magic.", + "document": "deepm", + "level": 9, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "1 mile", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a statuette carved in the likeness of the victim worth 1,250 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent; one generation", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_agonizing-mark", + "fields": { + "name": "Agonizing Mark", + "desc": "You choose a creature you can see within range to mark as your prey, and a ray of black energy issues forth from you. Until the spell ends, each time you deal damage to the target it must make a Charisma saving throw. On a failed save, it falls prone as its body is filled with torturous agony.", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_alchemical-form", + "fields": { + "name": "Alchemical Form", + "desc": "You transform into an amoebic form composed of highly acidic and poisonous alchemical jelly. While in this form:\n* you are immune to acid and poison damage and to the poisoned and stunned conditions;\n* you have resistance to nonmagical fire, piercing, and slashing damage;\n* you can’t speak, cast spells, use items or weapons, or manipulate objects;\n* your gear melds into your body and reappears when the spell ends;\n* you don't need to breathe;\n* your speed is 20 feet;\n* your size doesn’t change, but you can move through and between obstructions as if you were two size categories smaller; and\n* you gain the following action: **Melee Weapon Attack:** spellcasting ability modifier + proficiency bonus to hit, range 5 ft., one target; **Hit:** 4d6 acid or poison damage (your choice), and the target must make a successful Constitution saving throw or be poisoned until the start of your next turn.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of acid, poison, or alchemist's fire", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ale-dritch-blast", + "fields": { + "name": "Ale-dritch Blast", + "desc": "A stream of ice-cold ale blasts from your outstretched hands toward a creature or object within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage and it must make a successful Constitution saving throw or be poisoned until the end of its next turn. A targeted creature has disadvantage on the saving throw if it has drunk any alcohol within the last hour.", + "document": "deepm", + "level": 0, + "school": "conjuration", + "higher_level": "The damage increases when you reach higher levels: 2d8 at 5th level, 3d8 at 11th level, and 4d8 at 17th level.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ally-aegis", + "fields": { + "name": "Ally Aegis", + "desc": "When you see an ally within range in imminent danger, you can use your reaction to protect that creature with a shield of magical force. Until the start of your next turn, your ally has a +5 bonus to AC and is immune to force damage. In addition, if your ally must make a saving throw against an enemy’s spell that deals damage, the ally takes half as much damage on a failed saving throw and no damage on a successful save. Ally aegis offers no protection, however, against psychic damage from any source.\n", + "document": "deepm", + "level": 6, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can target one additional ally for each slot level above 6th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_alone", + "fields": { + "name": "Alone", + "desc": "You cause a creature within range to believe its allies have been banished to a different realm. The target must succeed on a Wisdom saving throw, or it treats its allies as if they were invisible and silenced. The affected creature cannot target, perceive, or otherwise interact with its allies for the duration of the spell. If one of its allies hits it with a melee attack, the affected creature can make another Wisdom saving throw. On a successful save, the spell ends.", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_alter-arrows-fortune", + "fields": { + "name": "Alter Arrow’s Fortune", + "desc": "You clap your hands, setting off a chain of tiny events that culminate in throwing off an enemy’s aim. When an enemy makes a ranged attack with a weapon or a spell that hits one of your allies, this spell causes the enemy to reroll the attack roll unless the enemy makes a successful Charisma saving throw. The attack is resolved using the lower of the two rolls (effectively giving the enemy disadvantage on the attack).", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_altheas-travel-tent", + "fields": { + "name": "Althea’s Travel Tent", + "desc": "You touch an ordinary, properly pitched canvas tent to create a space where you and a companion can sleep in comfort. From the outside, the tent appears normal, but inside it has a small foyer and a larger bedchamber. The foyer contains a writing desk with a chair; the bedchamber holds a soft bed large enough to sleep two, a small nightstand with a candle, and a small clothes rack. The floor of both rooms is a clean, dry, hard-packed version of the local ground. When the spell ends, the tent and the ground return to normal, and any creatures inside the tent are expelled to the nearest unoccupied spaces.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When the spell is cast using a 3rd-level slot, the foyer becomes a dining area with seats for six and enough floor space for six people to sleep, if they bring their own bedding. The sleeping room is unchanged. With a 4th-level slot, the temperature inside the tent is comfortable regardless of the outside temperature, and the dining area includes a small kitchen. With a 5th-level slot, an unseen servant is conjured to prepare and serve food (from your supplies). With a 6th-level slot, a third room is added that has three two-person beds. With a slot of 7th level or higher, the dining area and second sleeping area can each accommodate eight persons.", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a canvas tent", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_amplify-gravity", + "fields": { + "name": "Amplify Gravity", + "desc": "This spell intensifies gravity in a 50-foot-radius area within range. Inside the area, damage from falling is quadrupled (2d6 per 5 feet fallen) and maximum damage from falling is 40d6. Any creature on the ground in the area when the spell is cast must make a successful Strength saving throw or be knocked prone; the same applies to a creature that enters the area or ends its turn in the area. A prone creature in the area must make a successful Strength saving throw to stand up. A creature on the ground in the area moves at half speed and has disadvantage on Dexterity checks and ranged attack rolls.", + "document": "deepm", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of lead", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_analyze-device", + "fields": { + "name": "Analyze Device", + "desc": "You discover all mechanical properties, mechanisms, and functions of a single construct or clockwork device, including how to activate or deactivate those functions, if appropriate.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a set of clockworker’s tools", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ancestors-strength", + "fields": { + "name": "Ancestor’s Strength", + "desc": "Choose a willing creature you can see and touch. Its muscles bulge and become invigorated. For the duration, the target is considered one size category larger for determining its carrying capacity, the maximum weight it can lift, push, or pull, and its ability to break objects. It also has advantage on Strength checks.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_anchoring-rope", + "fields": { + "name": "Anchoring Rope", + "desc": "You create a spectral lanyard. One end is tied around your waist, and the other end is magically anchored in the air at a point you select within range. You can choose to make the rope from 5 to 30 feet long, and it can support up to 800 pounds. The point where the end of the rope is anchored in midair can’t be moved after the spell is cast. If this spell is cast as a reaction while you are falling, you stop at a point of your choosing in midair and take no falling damage. You can dismiss the rope as a bonus action.\n", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional rope for every two slot levels above 1st. Each rope must be attached to a different creature.", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ancient-shade", + "fields": { + "name": "Ancient Shade", + "desc": "You grant the semblance of life and intelligence to a pile of bones (or even bone dust) of your choice within range, allowing the ancient spirit to answer the questions you pose. These remains can be the remnants of undead, including animated but unintelligent undead, such as skeletons and zombies. (Intelligent undead are not affected.) Though it can have died centuries ago, the older the spirit called, the less it remembers of its mortal life.\n\nUntil the spell ends, you can ask the ancient spirit up to five questions if it died within the past year, four questions if it died within ten years, three within one hundred years, two within one thousand years, and but a single question for spirits more than one thousand years dead. The ancient shade knows only what it knew in life, including languages. Answers are usually brief, cryptic, or repetitive, and the corpse is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This spell doesn’t return the creature’s soul to its body, only its animating spirit. Thus, the corpse can’t learn new information, doesn’t comprehend anything that has happened since it died, and can’t speculate about future events.", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "object", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "burning candles of planar origin worth 500 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_angelic-guardian", + "fields": { + "name": "Angelic Guardian", + "desc": "You conjure a minor celestial manifestation to protect a creature you can see within range. A faintly glowing image resembling a human head and shoulders hovers within 5 feet of the target for the duration. The manifestation moves to interpose itself between the target and any incoming attacks, granting the target a +2 bonus to AC.\n\nAlso, the first time the target gets a failure on a Dexterity saving throw while the spell is active, it can use its reaction to reroll the save. The spell then ends.", + "document": "deepm", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_animate-ghoul", + "fields": { + "name": "Animate Ghoul", + "desc": "You raise one Medium or Small humanoid corpse as a ghoul under your control. Any class levels or abilities the creature had in life are gone, replaced by the standard ghoul stat block.\n", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "When you cast this spell using a 3rd-level spell slot, it can be used on the corpse of a Large humanoid to create a Large ghoul. When you cast this spell using a spell slot of 4th level or higher, this spell creates a ghast, but the material component changes to an onyx gemstone worth at least 200 gp.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "piece of rotting flesh and an onyx gemstone worth 100 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_animate-greater-undead", + "fields": { + "name": "Animate Greater Undead", + "desc": "**Animate greater undead** creates an undead servant from a pile of bones or from the corpse of a Large or Huge humanoid within range. The spell imbues the target with a foul mimicry of life, raising it as an undead skeleton or zombie. A skeleton uses the stat block of a minotaur skeleton, or a zombie uses the stat block of an ogre zombie, unless a more appropriate stat block is available.\n\nThe creature is under your control for 24 hours, after which it stops obeying your commands. To maintain control of the creature for another 24 hours, you must cast this spell on it again while you have it controlled. Casting the spell for this purpose reasserts your control over up to four creatures you have previously animated rather than animating a new one.\n", + "document": "deepm", + "level": 6, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can reanimate one additional creature for each slot level above 6th.", + "target_type": "creature", + "range": "15 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pint of blood, a pound of flesh, and an ounce of bone dust, all of which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_animated-scroll", + "fields": { + "name": "Animated Scroll", + "desc": "The paper or parchment must be folded into the shape of an animal before casting the spell. It then becomes an animated paper animal of the kind the folded paper most closely resembles. The creature uses the stat block of any beast that has a challenge rating of 0. It is made of paper, not flesh and bone, but it can do anything the real creature can do: a paper owl can fly and attack with its talons, a paper frog can swim without disintegrating in water, and so forth. It follows your commands to the best of its ability, including carrying messages to a recipient whose location you know.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "The duration increases by 24 hours at 5th level (48 hours), 11th level (72 hours), and 17th level (96 hours).", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "intricately folded paper or parchment", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_anticipate-arcana", + "fields": { + "name": "Anticipate Arcana", + "desc": "Your foresight gives you an instant to ready your defenses against a magical attack. When you cast **anticipate arcana**, you have advantage on saving throws against spells and other magical effects until the start of your next turn.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_anticipate-attack", + "fields": { + "name": "Anticipate Attack", + "desc": "In a flash of foreknowledge, you spot an oncoming attack with enough time to avoid it. Upon casting this spell, you can move up to half your speed without provoking opportunity attacks. The oncoming attack still occurs but misses automatically if you are no longer within the attack’s range, are in a space that's impossible for the attack to hit, or can’t be targeted by that attack in your new position. If none of those circumstances apply but the situation has changed—you have moved into a position where you have cover, for example—then the attack is made after taking the new situation into account.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_anticipate-weakness", + "fields": { + "name": "Anticipate Weakness", + "desc": "With a quick glance into the future, you pinpoint where a gap is about to open in your foe’s defense, and then you strike. After casting **anticipate weakness**, you have advantage on attack rolls until the end of your turn.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_arcane-sight", + "fields": { + "name": "Arcane Sight", + "desc": "The recipient of this spell gains the benefits of both [true seeing](https://api.open5e.com/spells/true-seeing) and [detect magic](https://api.open5e.com/spells/detect-magic) until the spell ends, and also knows the name and effect of every spell he or she witnesses during the spell’s duration.", + "document": "deepm", + "level": 8, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of clear quartz", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_as-you-were", + "fields": { + "name": "As You Were", + "desc": "When cast on a dead or undead body, **as you were** returns that creature to the appearance it had in life while it was healthy and uninjured. The target must have a physical body; the spell fails if the target is normally noncorporeal.\n\nIf as you were is cast on a corpse, its effect is identical to that of [gentle repose](https://api.open5e.com/spells/gentle-repose), except that the corpse’s appearance is restored to that of a healthy, uninjured (albeit dead) person.\n\nIf the target is an undead creature, it also is restored to the appearance it had in life, even if it died from disease or from severe wounds, or centuries ago. The target looks, smells, and sounds (if it can speak) as it did in life. Friends and family can tell something is wrong only with a successful Wisdom (Insight) check against your spell save DC, and only if they have reason to be suspicious. (Knowing that the person should be dead is sufficient reason.) Spells and abilities that detect undead are also fooled, but the creature remains susceptible to Turn Undead as normal.\n\nThis spell doesn’t confer the ability to speak on undead that normally can’t speak. The creature eats, drinks, and breathes as a living creature does; it can mimic sleep, but it has no more need for it than it had before.\n\nThe effect lasts for a number of hours equal to your caster level. You can use an action to end the spell early. Any amount of radiant or necrotic damage dealt to the creature, or any effect that reduces its Constitution, also ends the spell.\n\nIf this spell is cast on an undead creature that isn’t your ally or under your control, it makes a Charisma saving throw to resist the effect.", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of flesh from a creature of the target’s race", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ashen-memories", + "fields": { + "name": "Ashen Memories", + "desc": "You touch the ashes, embers, or soot left behind by a fire and receive a vision of one significant event that occurred in the area while the fire was burning. For example, if you were to touch the cold embers of a campfire, you might witness a snippet of a conversation that occurred around the fire. Similarly, touching the ashes of a burned letter might grant you a vision of the person who destroyed the letter or the contents of the letter. You have no control over what information the spell reveals, but your vision usually is tied to the most meaningful event related to the fire. The GM determines the details of what is revealed.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_aspect-of-the-dragon", + "fields": { + "name": "Aspect of the Dragon", + "desc": "This spell draws out the ancient nature within your blood, allowing you to assume the form of any dragon-type creature of challenge 10 or less.\n\nYou assume the hit points and Hit Dice of the new form. When you revert to your normal form, you return to the number of hit points you had before you transformed. If you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. As long as the excess damage doesn’t reduce your normal form to 0 hit points, you aren’t knocked unconscious.\n\nYou retain the benefits of any features from your class, race, or other source and can use them, provided that your new form is physically capable of doing so. You can speak only if the dragon can normally speak.\n\nWhen you transform, you choose whether your equipment falls to the ground, merges into the new form, or is worn by it. Worn equipment functions normally, but equipment doesn’t change shape or size to match the new form. Any equipment that the new form can’t wear must either fall to the ground or merge into the new form. The GM has final say on whether the new form can wear or use a particular piece of equipment. Equipment that merges has no effect in that state.", + "document": "deepm", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dragon scale", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_aspect-of-the-serpent", + "fields": { + "name": "Aspect of the Serpent", + "desc": "A creature you touch takes on snakelike aspects for the duration of the spell. Its tongue becomes long and forked, its canine teeth become fangs with venom sacs, and its pupils become sharply vertical. The target gains darkvision with a range of 60 feet and blindsight with a range of 30 feet. As a bonus action when you cast the spell, the target can make a ranged weapon attack with a normal range of 60 feet that deals 2d6 poison damage on a hit.\n\nAs an action, the target can make a bite attack using either Strength or Dexterity (Melee Weapon Attack: range 5 ft., one creature; Hit: 2d6 piercing damage), and the creature must make a successful DC 14 Constitution saving throw or be paralyzed for 1 minute. A creature paralyzed in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success).\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, both the ranged attack and bite attack damage increase by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dried snakeskin", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_aura-of-protection-or-destruction", + "fields": { + "name": "Aura of Protection or Destruction", + "desc": "When you cast this spell, you radiate an otherworldly energy that warps the fate of all creatures within 30 feet of you. Decide whether to call upon either a celestial or a fiend for aid. Choosing a celestial charges a 30-foot-radius around you with an aura of nonviolence; until the start of your next turn, every attack roll made by or against a creature inside the aura is treated as a natural 1. Choosing a fiend charges the area with an aura of violence; until the start of your next turn, every attack roll made by or against a creature inside the aura, including you, is treated as a natural 20.\n", + "document": "deepm", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can extend the duration by 1 round for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_auspicious-warning", + "fields": { + "name": "Auspicious Warning", + "desc": "Just in time, you call out a fortunate warning to a creature within range. The target rolls a d4 and adds the number rolled to an attack roll, ability check, or saving throw that it has just made and uses the new result for determining success or failure.", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_avoid-grievous-injury", + "fields": { + "name": "Avoid Grievous Injury", + "desc": "You cast this spell when a foe strikes you with a critical hit but before damage dice are rolled. The critical hit against you becomes a normal hit.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_avronins-astral-assembly", + "fields": { + "name": "Avronin’s Astral Assembly", + "desc": "You alert a number of creatures that you are familiar with, up to your spellcasting ability modifier (minimum of 1), of your intent to communicate with them through spiritual projection. The invitation can extend any distance and even cross to other planes of existence. Once notified, the creatures can choose to accept this communication at any time during the duration of the spell.\n\nWhen a creature accepts, its spirit is projected into one of the gems used in casting the spell. The material body it leaves behind falls unconscious and doesn't need food or air. The creature's consciousness is present in the room with you, and its normal form appears as an astral projection within 5 feet of the gem its spirit occupies. You can see and hear all the creatures who have joined in the assembly, and they can see and hear you and each other as if they were present (which they are, astrally). They can't interact with anything physically.\n\nA creature can end the spell's effect on itself voluntarily at any time, as can you. When the effect ends or the duration expires, a creature's spirit returns to its body and it regains consciousness. A creature that withdraws voluntarily from the assembly can't rejoin it even if the spell is still active. If a gem is broken while occupied by a creature's astral self, the spirit in the gem returns to its body and the creature suffers two levels of exhaustion.", + "document": "deepm", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Unlimited", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a spool of fine copper wire and a gem worth at least 100 gp for each target", + "material_cost": "100.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_awaken-object", + "fields": { + "name": "Awaken Object", + "desc": "After spending the casting time enchanting a ruby along with a Large or smaller nonmagical object in humanoid form, you touch the ruby to the object. The ruby dissolves into the object, which becomes a living construct imbued with sentience. If the object has no face, a humanoid face appears on it in an appropriate location. The awakened object's statistics are determined by its size, as shown on the table below. An awakened object can use an action to make a melee weapon attack against a target within 5 feet of it. It has free will, acts independently, and speaks one language you know. It is initially friendly to anyone who assisted in its creation.\n\nAn awakened object's speed is 30 feet. If it has no apparent legs or other means of moving, it gains a flying speed of 30 feet and it can hover. Its sight and hearing are equivalent to a typical human's senses. Intelligence, Wisdom, and Charisma can be adjusted up or down by the GM to fit unusual circumstances. A beautiful statue might awaken with increased Charisma, for example, or the bust of a great philosopher could have surprisingly high Wisdom.\n\nAn awakened object needs no air, food, water, or sleep. Damage to an awakened object can be healed or mechanically repaired.\n\n| Size | HP | AC | Attack | Str | Dex | Con | Int | Wis | Cha |\n|-|-|-|-|-|-|-|-|-|-|\n| T | 20 | 18 | +8 to hit, 1d4 + 4 damage | 4 | 18 | 10 | 2d6 | 2d6 | 2d6 |\n| S | 25 | 16 | +6 to hit, 1d8 + 2 damage | 6 | 14 | 10 | 3d6 | 2d6 | 2d6 |\n| M | 40 | 13 | +5 to hit, 2d6 + 1 damage | 10 | 12 | 10 | 3d6 | 3d6 | 2d6 |\n| L | 50 | 10 | +6 to hit, 2d10 + 2 damage | 14 | 10 | 10 | 3d6 | 3d6 | 2d6 + 2 |\n\n", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a ruby worth at least 1,000 gp, which the spell consumes", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bad-timing", + "fields": { + "name": "Bad Timing", + "desc": "You point toward a creature that you can see and twist strands of chaotic energy around its fate. If the target gets a failure on a Charisma saving throw, the next attack roll or ability check the creature attempts within 10 minutes is made with disadvantage.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_batsense", + "fields": { + "name": "Batsense", + "desc": "For the duration of the spell, a creature you touch can produce and interpret squeaking sounds used for echolocation, giving it blindsight out to a range of 60 feet. The target cannot use its blindsight while deafened, and its blindsight doesn't penetrate areas of magical silence. While using blindsight, the target has disadvantage on Dexterity (Stealth) checks that rely on being silent. Additionally, the target has advantage on Wisdom (Perception) checks that rely on hearing.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a bit of fur from a bat’s ear", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_become-nightwing", + "fields": { + "name": "Become Nightwing", + "desc": "This spell imbues you with wings of shadow. For the duration of the spell, you gain a flying speed of 60 feet and a new attack action: Nightwing Breath.\n\n***Nightwing Breath (Recharge 4–6).*** You exhale shadow‐substance in a 30-foot cone. Each creature in the area takes 5d6 necrotic damage, or half the damage with a successful Dexterity saving throw.", + "document": "deepm", + "level": 6, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a crow’s eye", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d6", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_beguiling-bet", + "fields": { + "name": "Beguiling Bet", + "desc": "You issue a challenge against one creature you can see within range, which must make a successful Wisdom saving throw or become charmed. On a failed save, you can make an ability check as a bonus action. For example, you could make a Strength (Athletics) check to climb a difficult surface or to jump as high as possible; you could make a Dexterity (Acrobatics) check to perform a backflip; or you could make a Charisma (Performance) check to sing a high note or to extemporize a clever rhyme. You can choose to use your spellcasting ability modifier in place of the usual ability modifier for this check, and you add your proficiency bonus if you're proficient in the skill being used.\n\nThe charmed creature must use its next action (which can be a legendary action) to make the same ability check in a contest against your check. Even if the creature can't perform the action—it may not be close enough to a wall to climb it, or it might not have appendages suitable for strumming a lute—it must still attempt the action to the best of its capability. If you win the contest, the spell (and the contest) continues, with you making a new ability check as a bonus action on your turn. The spell ends when it expires or when the creature wins the contest. ", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for every two slot levels above 2nd. Each creature must be within 30 feet of another creature when you cast the spell.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_benediction", + "fields": { + "name": "Benediction", + "desc": "You call down a blessing in the name of an angel of protection. A creature you can see within range shimmers with a faint white light. The next time the creature takes damage, it rolls a d4 and reduces the damage by the result. The spell then ends.", + "document": "deepm", + "level": 0, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bestial-fury", + "fields": { + "name": "Bestial Fury", + "desc": "You instill primal fury into a creature you can see within range. The target must make a Charisma saving throw; a creature can choose to fail this saving throw. On a failure, the target must use its action to attack its nearest enemy it can see with unarmed strikes or natural weapons. For the duration, the target’s attacks deal an extra 1d6 damage of the same type dealt by its weapon, and the target can’t be charmed or frightened. If there are no enemies within reach, the target can use its action to repeat the saving throw, ending the effect on a success.\n\nThis spell has no effect on undead or constructs.\n", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_binding-oath", + "fields": { + "name": "Binding Oath", + "desc": "You seal an agreement between two or more willing creatures with an oath in the name of the god of justice, using ceremonial blessings during which both the oath and the consequences of breaking it are set: if any of the sworn break this vow, they are struck by a curse. For each individual that does so, you choose one of the options given in the [bestow curse](https://api.open5e.com/spells/bestow-curse) spell. When the oath is broken, all participants are immediately aware that this has occurred, but they know no other details.\n\nThe curse effect of binding oath can’t be dismissed by [dispel magic](https://api.open5e.com/spells/dispel-magic), but it can be removed with [dispel evil and good](https://api.open5e.com/spells/dispel-evil-and-good)[remove curse](https://api.open5e.com/remove-curse), or [wish](https://api.open5e.com/spells/wish). Remove curse functions only if the spell slot used to cast it is equal to or higher than the spell slot used to cast **binding oath**. Depending on the nature of the oath, one creature’s breaking it may or may not invalidate the oath for the other targets. If the oath is completely broken, the spell ends for every affected creature, but curse effects already bestowed remain until dispelled.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_biting-arrow", + "fields": { + "name": "Biting Arrow", + "desc": "As part of the action used to cast this spell, you make a ranged weapon attack with a bow, a crossbow, or a thrown weapon. The effect is limited to a range of 120 feet despite the weapon’s range, and the attack is made with disadvantage if the target is in the weapon’s long range.\n\nIf the weapon attack hits, it deals damage as usual. In addition, the target becomes coated in thin frost until the start of your next turn. If the target uses its reaction before the start of your next turn, it immediately takes 1d6 cold damage and the spell ends.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "The spell’s damage, for both the ranged attack and the cold damage, increases by 1d6 when you reach 5th level (+1d6 and 2d6), 11th level (+2d6 and 3d6), and 17th level (+3d6 and 4d6).", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "an arrow or a thrown weapon", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "cold" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bitter-chains", + "fields": { + "name": "Bitter Chains", + "desc": "The spiked ring in your hand expands into a long, barbed chain to ensnare a creature you touch. Make a melee spell attack against the target. On a hit, the target is bound in metal chains for the duration. While bound, the target can move only at half speed and has disadvantage on attack rolls, saving throws, and Dexterity checks. If it moves more than 5 feet during a turn, it takes 3d6 piercing damage from the barbs.\n\nThe creature can escape from the chains by using an action and making a successful Strength or Dexterity check against your spell save DC, or if the chains are destroyed. The chains have AC 18 and 20 hit points.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a spiked metal ring", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": true, + "damage_roll": "3d6", + "damage_types": [ + "piercing" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_black-goats-blessing", + "fields": { + "name": "Black Goat’s Blessing", + "desc": "You raise your hand with fingers splayed and utter an incantation of the Black Goat with a Thousand Young. Your magic is blessed with the eldritch virility of the All‑Mother. The target has disadvantage on saving throws against spells you cast until the end of your next turn.", + "document": "deepm", + "level": 0, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_black-hand", + "fields": { + "name": "Black Hand", + "desc": "You gather the powers of darkness into your fist and fling dark, paralyzing flame at a target within 30 feet. If you make a successful ranged spell attack, this spell siphons vitality from the target into you. For the duration, the target has disadvantage (and you have advantage) on attack rolls, ability checks, and saving throws made with Strength, Dexterity, or Constitution. An affected target makes a Constitution saving throw (with disadvantage) at the end of its turn, ending the effect on a success.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_black-ribbons", + "fields": { + "name": "Black Ribbons", + "desc": "You pull pieces of the plane of shadow into your own reality, causing a 20-foot cube to fill with inky ribbons that turn the area into difficult terrain and wrap around nearby creatures. Any creature that ends its turn in the area becomes restrained by the ribbons until the end of its next turn, unless it makes a successful Dexterity saving throw. Once a creature succeeds on this saving throw, it can’t be restrained again by the ribbons, but it’s still affected by the difficult terrain.", + "document": "deepm", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "40 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of ribbon", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_black-sunshine", + "fields": { + "name": "Black Sunshine", + "desc": "You hold up a flawed pearl and it disappears, leaving behind a magic orb in your hand that pulses with dim purple light. Allies that you designate become invisible if they're within 60 feet of you and if light from the orb can reach the space they occupy. An invisible creature still casts a faint, purple shadow.\n\nThe orb can be used as a thrown weapon to attack an enemy. On a hit, the orb explodes in a flash of light and the spell ends. The targeted enemy and each creature within 10 feet of it must make a successful Dexterity saving throw or be blinded for 1 minute. A creature blinded in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "deepm", + "level": 8, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a discolored pearl, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_black-swan-storm", + "fields": { + "name": "Black Swan Storm", + "desc": "You call forth a whirlwind of black feathers that fills a 5-foot cube within range. The feathers deal 2d8 force damage to creatures in the cube’s area and radiate darkness, causing the illumination level within 20 feet of the cube to drop by one step (from bright light to dim light, and from dim light to darkness). Creatures that make a successful Dexterity saving throw take half the damage and are still affected by the change in light.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the feathers deal an extra 1d8 force damage for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a feather from a black swan", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_black-well", + "fields": { + "name": "Black Well", + "desc": "You summon a seething sphere of dark energy 5 feet in diameter at a point within range. The sphere pulls creatures toward it and devours the life force of those it envelops. Every creature other than you that starts its turn within 90 feet of the black well must make a successful Strength saving throw or be pulled 50 feet toward the well. A creature pulled into the well takes 6d8 necrotic damage and is stunned; a successful Constitution saving throw halves the damage and causes the creature to become incapacitated. A creature that starts its turn inside the well also makes a Constitution saving throw; the creature is stunned on a failed save or incapacitated on a success. An incapacitated creature that leaves the well recovers immediately and can take actions and reactions on that turn. A creature takes damage only upon entering the well—it takes no additional damage for remaining there—but if it leaves the well and is pulled back in again, it takes damage again. A total of nine Medium creatures, three Large creatures, or one Huge creature can be inside the well’s otherdimensional space at one time. When the spell’s duration ends, all creatures inside it tumble out in a heap, landing prone.\n", + "document": "deepm", + "level": 6, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage dealt by the well increases by 1d8—and the well pulls creatures an additional 5 feet—for each slot level above 6th.", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blade-of-my-brother", + "fields": { + "name": "Blade of my Brother", + "desc": "You touch a melee weapon that was used by an ally who is now dead, and it leaps into the air and flies to another ally (chosen by you) within 15 feet of you. The weapon enters that ally’s space and moves when the ally moves. If the weapon or the ally is forced to move more than 5 feet from the other, the spell ends.\n\nThe weapon acts on your turn by making an attack if a target presents itself. Its attack modifier equals your spellcasting level + the weapon’s inherent magical bonus, if any; it receives only its own inherent magical bonus to damage. The weapon fights for up to 4 rounds or until your concentration is broken, after which the spell ends and it falls to the ground.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "melee weapon owned by a dead ally of the target", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "4 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blade-of-wrath", + "fields": { + "name": "Blade of Wrath", + "desc": "You create a sword of pure white fire in your free hand. The blade is similar in size and shape to a longsword, and it lasts for the duration. The blade disappears if you let go of it, but you can call it forth again as a bonus action.\n\nYou can use your action to make a melee spell attack with the blade. On a hit, the target takes 2d8 fire damage and 2d8 radiant damage. An aberration, fey, fiend, or undead creature damaged by the blade must succeed on a Wisdom saving throw or be frightened until the start of your next turn.\n\nThe blade sheds bright light in a 20-foot radius and dim light for an additional 20 feet.\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, either the fire damage or the radiant damage (your choice) increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a rebuke of evil, written in Celestial", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": true, + "damage_roll": "2d8", + "damage_types": [ + "fire" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blazing-chariot", + "fields": { + "name": "Blazing Chariot", + "desc": "Calling upon the might of the angels, you conjure a flaming chariot made of gold and mithral in an unoccupied 10-foot‐square space you can see within range. Two horses made of fire and light pull the chariot. You and up to three other Medium or smaller creatures you designate can board the chariot (at the cost of 5 feet of movement) and are unharmed by the flames. Any other creature that touches the chariot or hits it (or a creature riding in it) with a melee attack while within 5 feet of the chariot takes 3d6 fire damage and 3d6 radiant damage. The chariot has AC 18 and 50 hit points, is immune to fire, poison, psychic, and radiant damage, and has resistance to all other nonmagical damage. The horses are not separate creatures but are part of the chariot. The chariot vanishes if it is reduced to 0 hit points, and any creature riding it falls out. The chariot has a speed of 50 feet and a flying speed of 40 feet.\n\nOn your turn, you can guide the chariot in place of your own movement. You can use a bonus action to direct it to take the Dash, Disengage, or Dodge action. As an action, you can use the chariot to overrun creatures in its path. On this turn, the chariot can enter a hostile creature’s space. The creature takes damage as if it had touched the chariot, is shunted to the nearest unoccupied space that it can occupy, and must make a successful Strength saving throw or fall prone in that space.", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small golden wheel worth 250 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "fire" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bleating-call", + "fields": { + "name": "Bleating Call", + "desc": "You create a sound on a point within range. The sound’s volume can range from a whisper to a scream, and it can be any sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.\n\nEach creature that starts its turn within 30 feet of the sound and can hear it must make a Wisdom saving throw. On a failed save, the target must take the Dash or Disengage action and move toward the sound by the safest available route on each of its turns. When it arrives to the source of the sound, the target must use its action to examine the sound. Once it has examined the sound, the target determines the sound is illusory and can no longer hear it, ending the spell’s effects on that target and preventing the target from being affected by the sound again for the duration of the spell. If a target takes damage from you or a creature friendly to you, it is no longer under the effects of this spell.\n\nCreatures that can’t be charmed are immune to this spell.", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "a bit of fur or hair from a young beast or humanoid", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bleed", + "fields": { + "name": "Bleed", + "desc": "Crackling energy coats the blade of one weapon you are carrying that deals slashing damage. Until the spell ends, when you hit a creature with the weapon, the weapon deals an extra 1d4 necrotic damage and the creature must make a Constitution saving throw. On a failed save, the creature suffers a bleeding wound. Each time you hit a creature with this weapon while it suffers from a bleeding wound, your weapon deals an extra 1 necrotic damage for each time you have previously hit the creature with this weapon (to a maximum of 10 necrotic damage).\n\nAny creature can take an action to stanch the bleeding wound by succeeding on a Wisdom (Medicine) check against your spell save DC. The wound also closes if the target receives magical healing. This spell has no effect on undead or constructs.", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bless-the-dead", + "fields": { + "name": "Bless the Dead", + "desc": "You grant a blessing to one deceased creature, enabling it to cross over to the realm of the dead in peace. A creature that benefits from **bless the dead** can’t become undead. The spell has no effect on living creatures or the undead.", + "document": "deepm", + "level": 0, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blessed-halo", + "fields": { + "name": "Blessed Halo", + "desc": "A nimbus of golden light surrounds your head for the duration. The halo sheds bright light in a 20-foot radius and dim light for an additional 20 feet.\n\nThis spell grants you a pool of 10 points of healing. When you cast the spell and as an action on subsequent turns during the spell’s duration, you can expend points from this pool to restore an equal number of hit points to one creature within 20 feet that you can see.\n\nAdditionally, you have advantage on Charisma checks made against good creatures within 20 feet.\n\nIf any of the light created by this spell overlaps an area of magical darkness created by a spell of 2nd level or lower, the spell that created the darkness is dispelled.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the spell’s pool of healing points increases by 5 for each spell slot above 2nd, and the spell dispels magical darkness created by a spell of a level equal to the slot used to cast this spell.", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blizzard", + "fields": { + "name": "Blizzard", + "desc": "A howling storm of thick snow and ice crystals appears in a cylinder 40 feet high and 40 feet in diameter within range. The area is heavily obscured by the swirling snow. When the storm appears, each creature in the area takes 8d8 cold damage, or half as much damage with a successful Constitution saving throw. A creature also makes this saving throw and takes damage when it enters the area for the first time on a turn or ends its turn there. In addition, a creature that takes cold damage from this spell has disadvantage on Constitution saving throws to maintain concentration until the start of its next turn.", + "document": "deepm", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d8", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blood-and-steel", + "fields": { + "name": "Blood and Steel", + "desc": "When you cast this spell, you cut your hand and take 1d4 slashing damage that can’t be healed until you take a long rest. You then touch a construct; it must make a successful Constitution saving throw or be charmed by you for the duration. If you or your allies are fighting the construct, it has advantage on the saving throw. Even constructs that are immune to charm effects can be affected by this spell.\n\nWhile the construct is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as, “Attack the ghouls,” “Block the bridge,” or, “Fetch that bucket.” If the construct completes the order and doesn’t receive further direction from you, it defends itself.\n\nYou can use your action to take total and precise control of the target. Until the end of your next turn, the construct takes only the actions you specify and does nothing you haven’t ordered it to do. During this time, you can also cause the construct to use a reaction, but doing this requires you to use your own reaction as well.\n\nEach time the construct takes damage, it makes a new Constitution saving throw against the spell. If the saving throw succeeds, the spell ends.\n\nIf the construct is already under your control when the spell is cast, it gains an Intelligence of 10 (unless its own Intelligence is higher, in which case it retains the higher score) for 4 hours. The construct is capable of acting independently, though it remains loyal to you for the spell’s duration. You can also grant the target a bonus equal to your Intelligence modifier on one skill in which you have proficiency.\n", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a 5th‑level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blood-armor", + "fields": { + "name": "Blood Armor", + "desc": "When you strike a foe with a melee weapon attack, you can immediately cast **blood armor** as a bonus action. The foe you struck must contain blood; if the target doesn’t bleed, the spell ends without effect. The blood flowing from your foe magically increases in volume and forms a suit of armor around you, granting you an Armor Class of 18 + your Dexterity modifier for the spell’s duration. This armor has no Strength requirement, doesn’t hinder spellcasting, and doesn’t incur disadvantage on Dexterity (Stealth) checks.\n\nIf the creature you struck was a celestial, **blood armor** also grants you advantage on Charisma saving throws for the duration of the spell.", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "you must have just struck a foe with a melee weapon", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blood-lure", + "fields": { + "name": "Blood Lure", + "desc": "You point at any location (a jar, a bowl, even a puddle) within range that contains at least a pint of blood. Each creature that feeds on blood and is within 60 feet of that location must make a Charisma saving throw. (This includes undead, such as vampires.) A creature that has Keen Smell or any similar scent-boosting ability has disadvantage on the saving throw, while undead have advantage on the saving throw. On a failed save, the creature is attracted to the blood and must move toward it unless impeded.\n\nOnce an affected creature reaches the blood, it tries to consume it, foregoing all other actions while the blood is present. A successful attack against an affected creature ends the effect, as does the consumption of the blood, which requires an action by an affected creature.", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a container or pool of blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blood-offering", + "fields": { + "name": "Blood Offering", + "desc": "You touch the corpse of a creature that isn’t undead or a construct and consume its life force. You must have dealt damage to the creature before it died, and it must have been dead for no more than 1 hour. You regain a number of hit points equal to 1d4 × the creature's challenge rating (minimum of 1d4). The creature can be restored to life only by means of a [true resurrection](https://api.open5e.com/spells/true-resurrection) or a [wish](https://api.open5e.com/spells/wish) spell.", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blood-puppet", + "fields": { + "name": "Blood Puppet", + "desc": "With a sample of its blood, you are able to magically control a creature’s actions, like a marionette on magical strings. Choose a creature you can see within range whose blood you hold. The target must succeed on a Constitution saving throw, or you gain control over its physical activity (as long as you interact with the blood material component each round). As a bonus action on your turn, you can direct the creature to perform various activities. You can specify a simple and general course of action, such as, “Attack that creature,” “Run over there,” or, “Fetch that object.” If the creature completes the order and doesn’t receive further direction from you, it defends and preserves itself to the best of its ability. The target is aware of being controlled. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a drop of blood from the target", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blood-scarab", + "fields": { + "name": "Blood Scarab", + "desc": "Your blood is absorbed into the beetle’s exoskeleton to form a beautiful, rubylike scarab that flies toward a creature of your choice within range. The target must make a successful Constitution saving throw or take 1d6 necrotic damage. You gain temporary hit points equal to the necrotic damage dealt.\n", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the number of scarabs increases by one for each slot level above 1st. You can direct the scarabs at the same target or at different targets. Each target makes a single saving throw, regardless of the number of scarabs targeting it.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a drop of the caster’s blood, and the exoskeleton of a scarab beetle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blood-spoor", + "fields": { + "name": "Blood Spoor", + "desc": "By touching a drop of your quarry’s blood (spilled or drawn within the past hour), you can follow the creature’s trail unerringly across any surface or under water, no matter how fast you are moving. If your quarry takes flight, you can follow its trail along the ground—or through the air, if you have the means to fly.\n\nIf your quarry moves magically (such as by way of a [dimension door](https://api.open5e.com/spells/dimension-door) or a [teleport](https://api.open5e.com/spells/teleport) spell), you sense its trail as a straight path leading from where the magical movement started to where it ended. Such a route might lead through lethal or impassable barriers. This spell even reveals the route of a creature using [pass without trace](https://api.open5e.com/spells/pass-without-trace), but it fails to locate a creature protected by [nondetection](https://api.open5e.com/spells/nondetection) or by other effects that prevent [scrying](https://api.open5e.com/spells/scrying) spells or cause [divination](https://api.open5e.com/spells/divination) spells to fail. If your quarry moves to another plane, its trail ends without trace, but **blood spoor** picks up the trail again if the caster moves to the same plane as the quarry before the spell’s duration expires.", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of the quarry’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blood-tide", + "fields": { + "name": "Blood Tide", + "desc": "When you cast this spell, a creature you designate within range must succeed on a Constitution saving throw or bleed from its nose, eyes, ears, and mouth. This bleeding deals no damage but imposes a –2 penalty on the creature’s Intelligence, Charisma, and Wisdom checks. **Blood tide** has no effect on undead or constructs.\n\nA bleeding creature might attract the attention of creatures such as stirges, sharks, or giant mosquitoes, depending on the circumstances.\n\nA [cure wounds](https://api.open5e.com/spells/cure-wounds) spell stops the bleeding before the duration of blood tide expires, as does a successful DC 10 Wisdom (Medicine) check.", + "document": "deepm", + "level": 0, + "school": "necromancy", + "higher_level": "The spell’s duration increases to 2 minutes when you reach 5th level, to 10 minutes when you reach 11th level, and to 1 hour when you reach 17th level.", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "4 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_blood-to-acid", + "fields": { + "name": "Blood to Acid", + "desc": "When you cast this spell, you designate a creature within range and convert its blood into virulent acid. The target must make a Constitution saving throw. On a failed save, it takes 10d12 acid damage and is stunned by the pain for 1d4 rounds. On a successful save, it takes half the damage and isn’t stunned.\n\nCreatures without blood, such as constructs and plants, are not affected by this spell. If **blood to acid** is cast on a creature composed mainly of blood, such as a [blood elemental](https://api.open5e.com/monsters/blood-elemental) or a [blood zombie](https://api.open5e.com/monsters/blood-zombie), the creature is slain by the spell if its saving throw fails.", + "document": "deepm", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d12", + "damage_types": [ + "acid" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bloodhound", + "fields": { + "name": "Bloodhound", + "desc": "You touch a willing creature to grant it an enhanced sense of smell. For the duration, that creature has advantage on Wisdom (Perception) checks that rely on smell and Wisdom (Survival) checks to follow tracks.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a 3rd-level spell slot, you also grant the target blindsight out to a range of 30 feet for the duration.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of ammonia", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bloodshot", + "fields": { + "name": "Bloodshot", + "desc": "You launch a jet of boiling blood from your eyes at a creature within range. You take 1d6 necrotic damage and make a ranged spell attack against the target. If the attack hits, the target takes 2d10 fire damage plus 2d8 psychic damage.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the fire damage increases by 1d10 for each slot level above 2nd.", + "target_type": "creature", + "range": "40 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "2d10", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bloody-hands", + "fields": { + "name": "Bloody Hands", + "desc": "You cause the hands (or other appropriate body parts, such as claws or tentacles) of a creature within range to bleed profusely. The target must succeed on a Constitution saving throw or take 1 necrotic damage each round and suffer disadvantage on all melee and ranged attack rolls that require the use of its hands for the spell’s duration.\n\nCasting any spell that has somatic or material components while under the influence of this spell requires a DC 10 Constitution saving throw. On a failed save, the spell is not cast but it is not lost; the casting can be attempted again in the next round.", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bloody-smite", + "fields": { + "name": "Bloody Smite", + "desc": "The next time during the spell’s duration that you hit a creature with a melee weapon attack, your weapon pulses with a dull red light, and the attack deals an extra 1d6 necrotic damage to the target. Until the spell ends, the target must make a Constitution saving throw at the start of each of its turns. On a failed save, it takes 1d6 necrotic damage, it bleeds profusely from the mouth, and it can’t speak intelligibly or cast spells that have a verbal component. On a successful save, the spell ends. If the target or an ally within 5 feet of it uses an action to tend the wound and makes a successful Wisdom (Medicine) check against your spell save DC, or if the target receives magical healing, the spell ends.", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bloom", + "fields": { + "name": "Bloom", + "desc": "You plant a silver acorn in solid ground and spend an hour chanting a litany of praises to the natural world, after which the land within 1 mile of the acorn becomes extremely fertile, regardless of its previous state. Any seeds planted in the area grow at twice the natural rate. Food harvested regrows within a week. After one year, the land slowly reverts to its normal fertility, unable to stave off the march of nature.\n\nChoose one of the following effects, which appears and grows immediately:\n* A field planted with vegetables of your choice, ready for harvest.\n* A thick forest of stout trees and ample undergrowth.\n* A grassland with wildflowers and fodder for grazing.\n* An orchard of fruit trees of your choice, growing in orderly rows and ready for harvest.\nLiving creatures that take a short rest within the area of a bloom spell receive the maximum hit points for Hit Dice expended. **Bloom** counters the effects of a [desolation](https://api.open5e.com/spells/desolation) spell.\n\n***Ritual Focus.*** If you expend your ritual focus, the duration becomes permanent.", + "document": "deepm", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "1 mile", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a silver acorn worth 500 gp, which is consumed in the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 year", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_boiling-blood", + "fields": { + "name": "Boiling Blood", + "desc": "You cause the blood within a creature’s body to boil with supernatural heat. Choose one creature that you can see within range that isn’t a construct or an undead. The target must make a Constitution saving throw. On a successful save, it takes 2d6 fire damage and the spell ends. On a failed save, the creature takes 4d6 fire damage and is blinded. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends. On a failure, the creature takes an additional 2d6 fire damage and remains blinded.\n", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_boiling-oil", + "fields": { + "name": "Boiling Oil", + "desc": "You conjure a shallow, 15-foot-radius pool of boiling oil centered on a point within range. The pool is difficult terrain, and any creature that enters the pool or starts its turn there must make a Dexterity saving throw. On a failed save, the creature takes 3d8 fire damage and falls prone. On a successful save, a creature takes half as much damage and doesn’t fall prone.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of oil", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bolster-undead", + "fields": { + "name": "Bolster Undead", + "desc": "You suffuse an area with negative energy to increase the difficulty of harming or affecting undead creatures.\n\nChoose up to three undead creatures within range. When a targeted creature makes a saving throw against being turned or against spells or effects that deal radiant damage, the target has advantage on the saving throw.\n", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional undead creature for each slot level above 1st.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a sprinkle of unholy water", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_booster-shot", + "fields": { + "name": "Booster Shot", + "desc": "You imbue a two-handed ranged weapon (typically a shortbow, longbow, light crossbow, or heavy crossbow) that you touch with a random magical benefit. While the spell lasts, a projectile fired from the weapon has an effect that occurs on a hit in addition to its normal damage. Roll a d6 to determine the additional effect for each casting of this spell.\n\n| D6 | EFFECT |\n|-|-|\n| 1 | 2d10 acid damage to all creatures within 10 feet of the target |\n| 2 | 2d10 lightning damage to the target and 1d10 lightning damage to all creatures in a 5-foot-wide line between the weapon and the target |\n| 3 | 2d10 necrotic damage to the target, and the target has disadvantage on its first attack roll before the start of the weapon user’s next turn |\n| 4 | 2d10 cold damage to the target and 1d10 cold damage to all other creatures in a 60-foot cone in front of the weapon |\n| 5 | 2d10 force damage to the target, and the target is pushed 20 feet |\n| 6 | 2d10 psychic damage to the target, and the target is stunned until the start of the weapon user’s next turn |\n\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, all damage increases by 1d10 for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "line", + "shape_magnitude": 60, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_boreass-breath", + "fields": { + "name": "Boreas’s Breath", + "desc": "You freeze standing water in a 20-foot cube or running water in a 10-foot cube centered on you. The water turns to solid ice. The surface becomes difficult terrain, and any creature that ends its turn on the ice must make a successful DC 10 Dexterity saving throw or fall prone.\n\nCreatures that are partially submerged in the water when it freezes become restrained. While restrained in this way, a creature takes 1d6 cold damage at the end of its turn. It can break free by using an action to make a successful Strength check against your spell save DC.\n\nCreatures that are fully submerged in the water when it freezes become incapacitated and cannot breathe. While incapacitated in this way, a creature takes 2d6 cold damage at the end of its turn. A trapped creature makes a DC 20 Strength saving throw after taking this damage at the end of its turn, breaking free from the ice on a success.\n\nThe ice has AC 10 and 15 hit points. It is vulnerable to fire damage, has resistance to nonmagical slashing and piercing damage, and is immune to cold, necrotic, poison, psychic, and thunder damage.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the size of the cube increases by 10 feet for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bottled-arcana", + "fields": { + "name": "Bottled Arcana", + "desc": "By touching an empty, stoppered glass container such as a vial or flask, you magically enable it to hold a single spell. To be captured, the spell must be cast within 1 round of casting **bottled arcana** and it must be intentionally cast into the container. The container can hold one spell of 3rd level or lower. The spell can be held in the container for as much as 24 hours, after which the container reverts to a mundane vessel and any magic inside it dissipates harmlessly.\n\nAs an action, any creature can unstop the container, thereby releasing the spell. If the spell has a range of self, the creature opening the container is affected; otherwise, the creature opening the container designates the target according to the captured spell’s description. If a creature opens the container unwittingly (not knowing that the container holds a spell), the spell targets the creature opening the container or is centered on its space instead (whichever is more appropriate). [Dispel magic](https://api.open5e.com/spells/dispel-magic) cast on the container targets **bottled arcana**, not the spell inside. If **bottled arcana** is dispelled, the container becomes mundane and the spell inside dissipates harmlessly.\n\nUntil the spell in the container is released, its caster can’t regain the spell slot used to cast that spell. Once the spell is released, its caster regains the use of that slot normally.\n", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the level of the spell the container can hold increases by one for every slot level above 5th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an empty glass container", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "see below", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_bottomless-stomach", + "fields": { + "name": "Bottomless Stomach", + "desc": "When you cast this spell, you gain the ability to consume dangerous substances and contain them in an extradimensional reservoir in your stomach. The spell allows you to swallow most liquids, such as acids, alcohol, poison, and even quicksilver, and hold them safely in your stomach. You are unaffected by swallowing the substance, but the spell doesn’t give you resistance or immunity to the substance in general; for example, you could safely drink a bucket of a black dragon’s acidic spittle, but you’d still be burned if you were caught in the dragon’s breath attack or if that bucket of acid were dumped over your head.\n\nThe spell allows you to store up to 10 gallons of liquid at one time. The liquid doesn’t need to all be of the same type, and different types don’t mix while in your stomach. Any liquid in excess of 10 gallons has its normal effect when you try to swallow it.\n\nAt any time before you stop concentrating on the spell, you can regurgitate up to 1 gallon of liquid stored in your stomach as a bonus action. The liquid is vomited into an adjacent 5-foot square. A target in that square must succeed on a DC 15 Dexterity saving throw or be affected by the liquid. The GM determines the exact effect based on the type of liquid regurgitated, using 1d6 damage of the appropriate type as the baseline.\n\nWhen you stop concentrating on the spell, its duration expires, or it’s dispelled, the extradimensional reservoir and the liquid it contains cease to exist.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_breathtaking-wind", + "fields": { + "name": "Breathtaking Wind", + "desc": "You target a creature with a blast of wintry air. That creature must make a successful Constitution saving throw or become unable to speak or cast spells with a vocal component for the duration of the spell.", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_breeze-compass", + "fields": { + "name": "Breeze Compass", + "desc": "When you cast **breeze compass**, you must clearly imagine or mentally describe a location. It doesn’t need to be a location you’ve been to as long as you know it exists on the Material Plane. Within moments, a gentle breeze arises and blows along the most efficient path toward that destination. Only you can sense this breeze, and whenever it brings you to a decision point (a fork in a passageway, for example), you must make a successful DC 8 Intelligence (Arcana) check to deduce which way the breeze indicates you should go. On a failed check, the spell ends. The breeze guides you around cliffs, lava pools, and other natural obstacles, but it doesn’t avoid enemies or hostile creatures.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a magnetized needle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_brimstone-infusion", + "fields": { + "name": "Brimstone Infusion", + "desc": "You infuse an ordinary flask of alchemist's fire with magical brimstone. While so enchanted, the alchemist's fire can be thrown 40 feet instead of 20, and it does 2d6 fire damage instead of 1d4. The Dexterity saving throw to extinguish the flames uses your spell save DC instead of DC 10. Infused alchemist's fire returns to its normal properties after 24 hours.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a flask of alchemist's fire and 5 gp worth of brimstone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_brittling", + "fields": { + "name": "Brittling", + "desc": "This spell uses biting cold to make a metal or stone object you touch become brittle and more easily shattered. The object’s hit points are reduced by a number equal to your level as a spellcaster, and Strength checks to shatter or break the object are made with advantage if they occur within 1 minute of the spell’s casting. If the object isn’t shattered during this time, it reverts to the state it was in before the spell was cast.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an icicle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_broken-charge", + "fields": { + "name": "Broken Charge", + "desc": "When an enemy that you can see moves to within 5 feet of you, you utter a perplexing word that alters the foe’s course. The enemy must make a successful Wisdom saving throw or take 2d4 psychic damage and use the remainder of its speed to move in a direction of your choosing.\n", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the target takes an additional 2d4 psychic damage for each slot level above 1st.", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_by-the-light-of-the-moon", + "fields": { + "name": "By the Light of the Moon", + "desc": "The area within 30 feet of you becomes bathed in magical moonlight. In addition to providing dim light, it highlights objects and locations that are hidden or that hold a useful clue. Until the spell ends, all Wisdom (Perception) and Intelligence (Investigation) checks made in the area are made with advantage.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_by-the-light-of-the-watchful-moon", + "fields": { + "name": "By the Light of the Watchful Moon", + "desc": "Regardless of the time of day or your location, you command the watchful gaze of the moon to illuminate threats to you and your allies. Shafts of bright moonlight, each 5 feet wide, shine down from the sky (or from the ceiling if you are indoors), illuminating all spaces within range that contain threats, whether they are enemies, traps, or hidden hazards. An enemy creature that makes a successful Charisma saving throw resists the effect and is not picked out by the moon’s glow.\n\nThe glow does not make invisible creatures visible, but it does indicate an invisible creature’s general location (somewhere within the 5-foot beam). The light continues to illuminate any target that moves, but a target that moves out of the spell’s area is no longer illuminated. A threat that enters the area after the spell is cast is not subject to the spell’s effect.", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_call-shadow-mastiff", + "fields": { + "name": "Call Shadow Mastiff", + "desc": "You conjure a [shadow mastiff](https://api.open5e.com/monsters/shadow-mastiff) from the plane of shadow. This creature obeys your verbal commands to aid you in battle or to seek out a specific creature. It has the body of a large dog with a smooth black coat, 2 feet high at the shoulder and weighing 200 pounds.\n\nThe mastiff is friendly to you and your companions. Roll initiative for the mastiff; it acts on its own turn. It obeys simple, verbal commands from you, within its ability to act. Giving a command takes no action on your part.\n\nThe mastiff disappears when it drops to 0 hit points or when the spell ends.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dog’s tooth", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_calm-of-the-storm", + "fields": { + "name": "Calm of the Storm", + "desc": "While visualizing the world as you wish it was, you lay your hands upon a creature other than yourself and undo the effect of a chaos magic surge that affected the creature within the last minute. Reality reshapes itself as if the surge never happened, but only for that creature.\n", + "document": "deepm", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the time since the chaos magic surge can be 1 minute longer for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an amethyst worth 250 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_candles-insight", + "fields": { + "name": "Candle’s Insight", + "desc": "**Candle’s insight** is cast on its target as the component candle is lit. The candle burns for up to 10 minutes unless it’s extinguished normally or by the spell’s effect. While the candle burns, the caster can question the spell’s target, and the candle reveals whether the target speaks truthfully. An intentionally misleading or partial answer causes the flame to flicker and dim. An outright lie causes the flame to flare and then go out, ending the spell. The candle judges honesty, not absolute truth; the flame burns steadily through even an outrageously false statement, as long as the target believes it’s true.\n\n**Candle’s insight** is used across society: by merchants while negotiating deals, by inquisitors investigating heresy, and by monarchs as they interview foreign diplomats. In some societies, casting candle’s insight without the consent of the spell’s target is considered a serious breach of hospitality.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a blessed candle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_carmello-voltas-irksome-preserves", + "fields": { + "name": "Carmello-Volta’s Irksome Preserves", + "desc": "At your command, delicious fruit jam oozes from a small mechanical device (such as a crossbow trigger, a lock, or a clockwork toy), rendering the device inoperable until the spell ends and the device is cleaned with a damp cloth. Cleaning away the jam takes an action, but doing so has no effect until the spell ends. One serving of the jam can be collected in a suitable container. If it's eaten (as a bonus action) within 24 hours, the jam restores 1d4 hit points. The jam's flavor is determined by the material component.\n\nThe spell can affect constructs, with two limitations. First, the target creature negates the effect with a successful Dexterity saving throw. Second, unless the construct is Tiny, only one component (an eye, a knee, an elbow, and so forth) can be disabled. The affected construct has disadvantage on attack rolls and ability checks that depend on the disabled component until the spell ends and the jam is removed.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small berry or a piece of fruit", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_catapult", + "fields": { + "name": "Catapult", + "desc": "You magically hurl an object or creature weighing 500 pounds or less 40 feet through the air in a direction of your choosing (including straight up). Objects hurled at specific targets require a spell attack roll to hit. A thrown creature takes 6d10 bludgeoning damage from the force of the throw, plus any appropriate falling damage, and lands prone. If the target of the spell is thrown against another creature, the total damage is divided evenly between them and both creatures are knocked prone.\n", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d10, the distance thrown increases by 10 feet, and the weight thrown increases by 100 pounds for each slot level above 6th.", + "target_type": "object", + "range": "400 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small platinum lever and fulcrum worth 400 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "6d10", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_catch-the-breath", + "fields": { + "name": "Catch the Breath", + "desc": "You can cast this spell as a reaction when you’re targeted by a breath weapon. Doing so gives you advantage on your saving throw against the breath weapon. If your saving throw succeeds, you take no damage from the attack even if a successful save normally only halves the damage.\n\nWhether your saving throw succeeded or failed, you absorb and store energy from the attack. On your next turn, you can make a ranged spell attack against a target within 60 feet. On a hit, the target takes 3d10 force damage. If you opt not to make this attack, the stored energy dissipates harmlessly.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage done by your attack increases by 1d10 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "3d10", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_caustic-blood", + "fields": { + "name": "Caustic Blood", + "desc": "Your blood becomes caustic when exposed to the air. When you take piercing or slashing damage, you can use your reaction to select up to three creatures within 30 feet of you. Each target takes 1d10 acid damage unless it makes a successful Dexterity saving throw.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the number of targets increases by one for each slot level above 2nd, to a maximum of six targets.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "1d10", + "damage_types": [ + "acid" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_caustic-torrent", + "fields": { + "name": "Caustic Torrent", + "desc": "A swirling jet of acid sprays from you in a direction you choose. The acid fills a line 60 feet long and 5 feet wide. Each creature in the line takes 14d6 acid damage, or half as much damage if it makes a successful Dexterity saving throw. A creature reduced to 0 hit points by this spell is killed, and its body is liquefied. In addition, each creature other than you that’s in the line or within 5 feet of it is poisoned for 1 minute by toxic fumes. Creatures that don’t breathe or that are immune to acid damage aren’t poisoned. A poisoned creature can repeat the Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "deepm", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a chip of bone pitted by acid", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "14d6", + "damage_types": [ + "acid" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_caustic-touch", + "fields": { + "name": "Caustic Touch", + "desc": "Your hand sweats profusely and becomes coated in a film of caustic slime. Make a melee spell attack against a creature you touch. On a hit, the target takes 1d8 acid damage. If the target was concentrating on a spell, it has disadvantage on its Constitution saving throw to maintain concentration.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "This spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "acid" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_celebration", + "fields": { + "name": "Celebration", + "desc": "You create a 30-foot-radius area around a point that you choose within range. An intelligent creature that enters the area or starts its turn there must make a Wisdom saving throw. On a failed save, the creature starts to engage in celebratory revelry: drinking, singing, laughing, and dancing. Affected creatures are reluctant to leave the area until the spell ends, preferring to continue the festivities. They forsake appointments, cease caring about their woes, and generally behave in a cordial (if not hedonistic) manner. This preoccupation with merrymaking occurs regardless of an affected creature’s agenda or alignment. Assassins procrastinate, servants join in the celebration rather than working, and guards abandon their posts.\n\nThe effect ends on a creature when it is attacked, takes damage, or is forced to leave the area. A creature that makes a successful saving throw can enter or leave the area without danger of being enchanted. A creature that fails the saving throw and is forcibly removed from the area must repeat the saving throw if it returns to the area.\n", + "document": "deepm", + "level": 7, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the spell lasts for an additional hour for each slot level above 7th.\n\n***Ritual Focus.*** If you expend your ritual focus, an unaffected intelligent creature must make a new saving throw every time it starts its turn in the area, even if it has previously succeeded on a save against the spell.", + "target_type": "area", + "range": "90 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small party favor", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_chains-of-the-goddess", + "fields": { + "name": "Chains of the Goddess", + "desc": "Choose a creature you can see within 90 feet. The target must make a successful Wisdom saving throw or be restrained by chains of psychic force and take 6d8 bludgeoning damage. A restrained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a successful save. While restrained in this way, the creature also takes 6d8 bludgeoning damage at the start of each of your turns.", + "document": "deepm", + "level": 5, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "1 foot of iron chain", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_chains-of-torment", + "fields": { + "name": "Chains of Torment", + "desc": "You are surrounded by an aura of dim light in a 10-foot radius as you conjure an iron chain that extends out to a creature you can see within 30 feet. The creature must make a successful Dexterity saving throw or be grappled (escape DC equal to your spell save DC). While grappled in this way, the creature is also restrained. A creature that’s restrained at the start of its turn takes 4d6 psychic damage. You can have only one creature restrained in this way at a time.\n\nAs an action, you can scan the mind of the creature that’s restrained by your chain. If the creature gets a failure on a Wisdom saving throw, you learn one discrete piece of information of your choosing known by the creature (such as a name, a password, or an important number). The effect is otherwise harmless.\n", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the psychic damage increases by 1d6 for each slot level above 4th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an iron chain link dipped in blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_champions-weapon", + "fields": { + "name": "Champion’s Weapon", + "desc": "A spectral version of a melee weapon of your choice materializes in your hand. It has standard statistics for a weapon of its kind, but it deals force damage instead of its normal damage type and it sheds dim light in a 10-foot radius. You have proficiency with this weapon for the spell’s duration. The weapon can be wielded only by the caster; the spell ends if the weapon is held by a creature other than you or if you start your turn more than 10 feet from the weapon.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the weapon deals an extra 1d8 force damage for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_chaotic-form", + "fields": { + "name": "Chaotic Form", + "desc": "You cause the form of a willing creature to become malleable, dripping and flowing according to the target’s will as if the creature were a vaguely humanoid-shaped ooze. The creature is not affected by difficult terrain, it has advantage on Dexterity (Acrobatics) checks made to escape a grapple, and it suffers no penalties when squeezing through spaces one size smaller than itself. The target’s movement is halved while it is affected by **chaotic form**.\n", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration increases by 10 minutes for each slot level above 4th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_chaotic-vitality", + "fields": { + "name": "Chaotic Vitality", + "desc": "Make a melee spell attack against a creature that has a number of Hit Dice no greater than your level and has at least 1 hit point. On a hit, you conjure pulsating waves of chaotic energy within the creature and yourself. After a brief moment that seems to last forever, your hit point total changes, as does the creature’s. Roll a d100 and increase or decrease the number rolled by any number up to your spellcasting level, then find the result on the Hit Point Flux table. Apply that result both to yourself and the target creature. Any hit points gained beyond a creature’s normal maximum are temporary hit points that last for 1 round per caster level.\n\nFor example, a 3rd-level spellcaster who currently has 17 of her maximum 30 hit points casts **chaotic vitality** on a creature with 54 hit points and rolls a 75 on the Hit Point Flux table. The two creatures have a combined total of 71 hit points. A result of 75 indicates that both creatures get 50 percent of the total, so the spellcaster and the target end up with 35 hit points each. In the spellcaster’s case, 5 of those hit points are temporary and will last for 3 rounds.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the maximum Hit Dice of the affected creature increases by 2 for each slot level above 2nd.\n ## Hit Point Flux \n| SIZE | HP |\n|-|-|\n| 01–09 | 0 |\n| 10–39 | 1 |\n| 40–69 | 25 percent of total |\n| 70–84 | 50 percent of total |\n| 85–94 | 75 percent of total |\n| 95–99 | 100 percent of total |\n| 100 | 200 percent of total, and both creatures gain the effect of a haste spell that lasts for 1 round per caster level |\n\n", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_chaotic-world", + "fields": { + "name": "Chaotic World", + "desc": "You throw a handful of colored cloth into the air while screaming a litany of disjointed phrases. A moment later, a 30-foot cube centered on a point within range fills with multicolored light, cacophonous sound, overpowering scents, and other confusing sensory information. The effect is dizzying and overwhelming. Each enemy within the cube must make a successful Intelligence saving throw or become blinded and deafened, and fall prone. An affected enemy cannot stand up or recover from the blindness or deafness while within the area, but all three conditions end immediately for a creature that leaves the spell’s area.", + "document": "deepm", + "level": 6, + "school": "illusion", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "seven irregular pieces of colored cloth that you throw into the air", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 30, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_chilling-words", + "fields": { + "name": "Chilling Words", + "desc": "You utter a short phrase and designate a creature within range to be affected by it. The target must make a Wisdom saving throw to avoid the spell. On a failed save, the target is susceptible to the phrase for the duration of the spell. At any later time while the spell is in effect, you and any of your allies within range when you cast the spell can use an action to utter the phrase, which causes the target to freeze in fear. Each of you can use the phrase against the target once only, and the target must be within 30 feet of the speaker for the phrase to be effective.\n\nWhen the target hears the phrase, it must make a successful Constitution saving throw or take 1d6 psychic damage and become restrained for 1 round. Whether this saving throw succeeds or fails, the target can’t be affected by the phrase for 1 minute afterward.\n\nYou can end the spell early by making a final utterance of the phrase (even if you’ve used the phrase on this target previously). On hearing this final utterance, the target takes 4d6 psychic damage and is restrained for 1 minute or, with a successful Constitution saving throw, it takes half the damage and is restrained for 1 round.", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a strip of paper with writing on it", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "psychic" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_chronal-lance", + "fields": { + "name": "Chronal Lance", + "desc": "You inflict the ravages of aging on up to three creatures within range, temporarily discomfiting them and making them appear elderly for a time. Each target must make a successful Wisdom saving throw, or its walking speed is halved (round up to the nearest 5-foot increment) and it has disadvantage on Dexterity checks (but not saving throws). An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_circle-of-wind", + "fields": { + "name": "Circle of Wind", + "desc": "Light wind encircles you, leaving you in the center of a mild vortex. For the duration, you gain a +2 bonus to your AC against ranged attacks. You also have advantage on saving throws against extreme environmental heat and against harmful gases, vapors, and inhaled poisons.", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a crystal ring", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_clash-of-glaciers", + "fields": { + "name": "Clash of Glaciers", + "desc": "You conjure up icy boulders that crush creatures in a line 100 feet long. Each creature in the area takes 5d6 bludgeoning damage plus 5d6 cold damage, or half the damage with a successful Dexterity saving throw.\n", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d6 for each slot level above 5th. You decide whether each extra die deals bludgeoning or cold damage.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of cracked glass", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_claws-of-darkness", + "fields": { + "name": "Claws of Darkness", + "desc": "You shape shadows into claws that grow from your fingers and drip inky blackness. The claws have a reach of 10 feet. While the spell lasts, you can make a melee spell attack with them that deals 1d10 cold damage.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_claws-of-the-earth-dragon", + "fields": { + "name": "Claws of the Earth Dragon", + "desc": "You summon the power of the earth dragon and shoot a ray at one target within 60 feet. The target falls prone and takes 6d8 bludgeoning damage from being slammed to the ground. If the target was flying or levitating, it takes an additional 1d6 bludgeoning damage per 10 feet it falls. If the target makes a successful Strength saving throw, damage is halved, it doesn’t fall, and it isn’t knocked prone.\n", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage done by the attack increases by 1d8 and the range increases by 10 feet for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_clearing-the-field", + "fields": { + "name": "Clearing the Field", + "desc": "With a harsh word and a vicious chopping motion, you cause every tree, shrub, and stump within 40 feet of you to sink into the ground, leaving the vacated area clear of plant life that might otherwise hamper movement or obscure sight. Overgrown areas that counted as difficult terrain become clear ground and no longer hamper movement. The original plant life instantly rises from the ground again when the spell ends or is dispelled. Plant creatures are not affected by **clearing the field**.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the spell lasts for an additional hour for each slot level above 2nd.\n\n***Ritual Focus.*** If you expend your ritual focus, plant creatures in the area must make a successful Constitution saving throw or be affected as though by a [enlarge/reduce](https://api.open5e.com/spells/enlargereduce) spell.", + "target_type": "area", + "range": "40 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_cloak-of-shadow", + "fields": { + "name": "Cloak of Shadow", + "desc": "You cloak yourself in shadow, giving you advantage on Dexterity (Stealth) checks against creatures that rely on sight.", + "document": "deepm", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_clockwork-bolt", + "fields": { + "name": "Clockwork Bolt", + "desc": "You imbue an arrow or crossbow bolt with clockwork magic just as you fire it at your target; spinning blades materialize on the missile after it strikes to further mutilate your enemy.\n\nAs part of the action used to cast this spell, you make a ranged weapon attack with a bow or a crossbow against one creature within range. If the attack hits, the missile embeds in the target. Unless the target (or an ally of it within 5 feet) uses an action to remove the projectile (which deals no additional damage), the target takes an additional 1d8 slashing damage at the end of its next turn from spinning blades that briefly sprout from the missile’s shaft. Afterward, the projectile reverts to normal.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "This spell deals more damage when you reach higher levels. At 5th level, the ranged attack deals an extra 1d8 slashing damage to the target, and the target takes an additional 1d8 slashing damage (2d8 total) if the embedded ammunition isn’t removed. Both damage amounts increase by 1d8 again at 11th level and at 17th level.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an arrow or crossbow bolt", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d8", + "damage_types": [ + "slashing" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_closing-in", + "fields": { + "name": "Closing In", + "desc": "Choose a creature you can see within range. The target must succeed on a Wisdom saving throw, which it makes with disadvantage if it’s in an enclosed space. On a failed save, the creature believes the world around it is closing in and threatening to crush it. Even in open or clear terrain, the creature feels as though it is sinking into a pit, or that the land is rising around it. The creature has disadvantage on ability checks and attack rolls for the duration, and it takes 2d6 psychic damage at the end of each of its turns. An affected creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_cobra-fangs", + "fields": { + "name": "Cobra Fangs", + "desc": "The spell causes the target to grow great, snake-like fangs. An unwilling creature must make a Wisdom saving throw to avoid the effect. The spell fails if the target already has a bite attack that deals poison damage.\n\nIf the target doesn’t have a bite attack, it gains one. The target is proficient with the bite, and it adds its Strength modifier to the attack and damage rolls. The damage is piercing and the damage die is a d4.\n\nWhen the target hits a creature with its bite attack, the creature must make a Constitution saving throw, taking 3d6 poison damage on a failed save, or half as much damage on a successful one.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the target’s bite counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of snake venom or a patch of snakeskin", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_compelled-movement", + "fields": { + "name": "Compelled Movement", + "desc": "Choose two living creatures (not constructs or undead) you can see within range. Each must make a Charisma saving throw. On a failed save, a creature is compelled to use its movement to move toward the other creature. Its route must be as direct as possible, but it avoids dangerous terrain and enemies. If the creatures are within 5 feet of each other at the end of either one’s turn, their bodies fuse together. Fused creatures still take their own turns, but they can’t move, can’t use reactions, and have disadvantage on attack rolls, Dexterity saving throws, and Constitution checks to maintain concentration.\n\nA fused creature can use its action to make a Charisma saving throw. On a success, the creature breaks free and can move as it wants. It can become fused again, however, if it’s within 5 feet of a creature that’s still under the spell’s effect at the end of either creature’s turn.\n\n**Compelled movement** doesn’t affect a creature that can’t be charmed or that is incorporeal.\n", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the number of creatures you can affect increases by one for every two slot levels above 3rd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "the embalmed body of a millipede with its right legs removed, worth at least 50 gp", + "material_cost": "50.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_compelling-fate", + "fields": { + "name": "Compelling Fate", + "desc": "You view the actions of a single creature you can see through the influence of the stars, and you read what is written there. If the target fails a Charisma saving throw, you can predict that creature’s actions. This has the following effects:\n* You have advantage on attack rolls against the target.\n* For every 5 feet the target moves, you can move 5 feet (up to your normal movement) on the target’s turn when it has completed its movement. This is deducted from your next turn’s movement.\n* As a reaction at the start of the target’s turn, you can warn yourself and allies that can hear you of the target’s offensive intentions; any creature targeted by the target’s next attack gains a +2 bonus to AC or to its saving throw against that attack.\n", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration is extended by 1 round for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a sprinkling of silver dust worth 20 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_comprehend-wild-shape", + "fields": { + "name": "Comprehend Wild Shape", + "desc": "Give one of the carved totems to an ally while keeping the other yourself. For the duration of the spell, you and whoever holds the other totem can communicate while either of you is in a beast shape. This isn’t a telepathic link; you simply understand each other’s verbal communication, similar to the effect of a speak with animals spell. This effect doesn’t allow a druid in beast shape to cast spells.\n", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can increase the number of target creatures by two for each slot level above 2nd. Each creature must receive a matching carved totem.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "two or more matching carved totems", + "material_cost": null, + "material_consumed": false, + "target_count": 2, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_confound-senses", + "fields": { + "name": "Confound Senses", + "desc": "This spell befuddles the minds of up to six creatures that you can see within range, causing the creatures to see images of shifting terrain. Each target that fails an Intelligence saving throw is reduced to half speed until the spell ends because of confusion over its surroundings, and it makes ranged attack rolls with disadvantage.\n\nAffected creatures also find it impossible to keep track of their location. They automatically fail Wisdom (Survival) checks to avoid getting lost. Whenever an affected creature must choose between one or more paths, it chooses at random and immediately forgets which direction it came from.", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a broken compass", + "material_cost": null, + "material_consumed": false, + "target_count": 6, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_conjure-fey-hound", + "fields": { + "name": "Conjure Fey Hound", + "desc": "You summon a fey hound to fight by your side. A [hound of the night](https://api.open5e.com/monsters/hound-of-the-night) appears in an unoccupied space that you can see within range. The hound disappears when it drops to 0 hit points or when the spell ends.\n\nThe summoned hound is friendly to you and your companions. Roll initiative for the summoned hound, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the hound, it stands by your side and attacks nearby creatures that are hostile to you but otherwise takes no actions.\n", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you summon two hounds. When you cast this spell using a 9th-level spell slot, you summon three hounds.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a wooden or metal whistle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_conjure-forest-defender", + "fields": { + "name": "Conjure Forest Defender", + "desc": "When you cast this spell in a forest, you fasten sticks and twigs around a body. The body comes to life as a [forest defender](https://api.open5e.com/monsters/forest-defender). The forest defender is friendly to you and your companions. Roll initiative for the forest defender, which has its own turns. It obeys any verbal or mental commands that you issue to it (no action required by you), as long as you remain within its line of sight. If you don’t issue any commands to the forest defender, if you are out of its line of sight, or if you are unconscious, it defends itself from hostile creatures but otherwise takes no actions. A body sacrificed to form the forest defender is permanently destroyed and can be restored to life only by means of a [true resurrection](https://api.open5e.com/spells/true-resurrection) or a [wish](https://api.open5e.com/spells/wish) spell. You can have only one forest defender under your control at a time. If you cast this spell again, the previous forest defender crumbles to dust.\n", + "document": "deepm", + "level": 6, + "school": "conjuration", + "higher_level": "When you cast this spell using a 9th‐level spell slot, you summon two forest defenders instead of one, and you can control up to two forest defenders at a time.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "one humanoid body, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until destroyed", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_conjure-greater-spectral-dead", + "fields": { + "name": "Conjure Greater Spectral Dead", + "desc": "You summon an incorporeal undead creature that appears in an unoccupied space you can see within range. You choose one of the following options for what appears:\n* One [wraith](https://api.open5e.com/monsters/wraith)\n* One [spectral guardian](https://api.open5e.com/monsters/spectral-guardian)\n* One [wolf spirit swarm](https://api.open5e.com/monsters/wolf-spirit-swarm)\nSummoned creatures disappear when they drop to 0 hit points or when the spell ends.\n\nThe summoned creature doesn’t attack you or your companions for the duration. Roll initiative for the summoned creature, which has its own turns. The creature attacks your enemies and tries to stay within 60 feet of you, but it otherwise controls its own actions. The summoned creature despises being bound and might harm or impede you and your companions by any means at its disposal other than direct attacks if the opportunity arises. At the beginning of the creature’s turn, you can use your reaction to verbally command it. The creature obeys your commands for that turn, and you take 1d6 psychic damage at the end of the turn. If your concentration is broken, the creature doesn’t disappear. Instead, you can no longer command it, it becomes hostile to you and your companions, and it attacks you and your allies if it believes it has a chance to win the fight or to inflict meaningful harm; otherwise it flees. You can’t dismiss the uncontrolled creature, but it disappears 1 hour after you summoned it.\n", + "document": "deepm", + "level": 7, + "school": "conjuration", + "higher_level": "When you cast this spell using a 9th‐level spell slot, you summon a [deathwisp](https://api.open5e.com/monsters/deathwisp) or two [ghosts](https://api.open5e.com/monsters/ghost) instead.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of bone dust, a crystal prism worth at least 100 gp, and a platinum coin", + "material_cost": "100.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_conjure-minor-voidborn", + "fields": { + "name": "Conjure Minor Voidborn", + "desc": "You summon fiends or aberrations that appear in unoccupied spaces you can see within range. You choose one of the following options:\n* One creature of challenge rating 2 or lower\n* Two creatures of challenge rating 1 or lower\n* Four creatures of challenge rating 1/2 or lower\n* Eight creatures of challenge rating 1/4 or lower\nSummoned creatures disappear when they drop to 0 hit points or when the spell ends.\n\nThe summoned creatures do not directly attack you or your companions. Roll initiative for the summoned creatures as a group; they take their own turns on their initiative result. They attack your enemies and try to stay within 90 feet of you, but they control their own actions. The summoned creatures despise being bound, so they might harm or impede you and your companions with secondary effects (but not direct attacks) if the opportunity arises. At the beginning of the creatures’ turn, you can use your reaction to verbally command them. They obey your commands on that turn, and you take 1d6 psychic damage at the end of the turn.\n\nIf your concentration is broken, the spell ends but the creatures don’t disappear. Instead, you can no longer command them, and they become hostile to you and your companions. They will attack you and your allies if they believe they have a chance to win the fight or to inflict meaningful harm, but they won’t fight if they fear it would mean their own death. You can’t dismiss the creatures, but they disappear 1 hour after being summoned.\n", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a 7th‑or 9th-level spell slot, you choose one of the summoning options above, and more creatures appear­—twice as many with a 7th-level spell slot and three times as many with a 9th-level spell slot.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_conjure-scarab-swarm", + "fields": { + "name": "Conjure Scarab Swarm", + "desc": "You summon swarms of scarab beetles to attack your foes. Two swarms of insects (beetles) appear in unoccupied spaces that you can see within range.\n\nEach swarm disappears when it drops to 0 hit points or when the spell ends. The swarms are friendly to you and your allies. Make one initiative roll for both swarms, which have their own turns. They obey verbal commands that you issue to them (no action required by you). If you don’t issue any commands to them, they defend themselves from hostile creatures but otherwise take no actions.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a beetle carapace", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_conjure-shadow-titan", + "fields": { + "name": "Conjure Shadow Titan", + "desc": "You summon a shadow titan, which appears in an unoccupied space that you can see within range. The shadow titan’s statistics are identical to a [stone giant’s](https://api.open5e.com/monsters/stone-giant), with two differences: its camouflage ability works in dim light instead of rocky terrain, and the “rocks” it hurls are composed of shadow-stuff and cause cold damage.\n\nThe shadow titan is friendly to you and your companions. Roll initiative for the shadow titan; it acts on its own turn. It obeys verbal or telepathic commands that you issue to it (giving a command takes no action on your part). If you don’t issue any commands to the shadow titan, it defends itself from hostile creatures but otherwise takes no actions.\n\nThe shadow titan disappears when it drops to 0 hit points or when the spell ends.", + "document": "deepm", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_conjure-spectral-dead", + "fields": { + "name": "Conjure Spectral Dead", + "desc": "You summon a [shroud](https://api.open5e.com/monsters/shroud) to do your bidding. The creature appears in an unoccupied space that you can see within range. The creature is friendly to you and your allies for the duration. Roll initiative for the creature, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the creature, it defends itself from hostile creatures but otherwise takes no actions. The creature disappears when it drops to 0 hit points or when the spell ends.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a 3rd-level spell slot, you can choose to summon two [shrouds](https://api.open5e.com/monsters/shroud) or one [specter](https://api.open5e.com/monsters/specter). When you cast this spell with a spell slot of 4th level or higher, you can choose to summon four [shrouds](https://api.open5e.com/monsters/shroud) or one [will-o’-wisp](https://api.open5e.com/monsters/will-o-wisp).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of bone dust, a crystal prism, and a silver coin", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_conjure-undead", + "fields": { + "name": "Conjure Undead", + "desc": "You summon a [shadow](https://api.open5e.com/monsters/shadow) to do your bidding. The creature appears in an unoccupied space that you can see within range. The creature is friendly to you and your allies for the duration. Roll initiative for the shadow, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the creature, it defends itself from hostile creatures but otherwise takes no actions. The shadow disappears when the spell ends.\n", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a 4th-level spell slot, you can choose to summon a [wight](https://api.open5e.com/monsters/wight) or a [shadow](https://api.open5e.com/monsters/shadow). When you cast this spell with a spell slot of 5th level or higher, you can choose to summon a [ghost](https://api.open5e.com/monsters/ghost), a [shadow](https://api.open5e.com/monsters/shadow), or a [wight](https://api.open5e.com/monsters/wight).", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a humanoid skull", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_conjure-voidborn", + "fields": { + "name": "Conjure Voidborn", + "desc": "You summon a fiend or aberration of challenge rating 6 or lower, which appears in an unoccupied space that you can see within range. The creature disappears when it drops to 0 hit points or when the spell ends.\n\nRoll initiative for the creature, which takes its own turns. It attacks the nearest creature on its turn. At the start of the fiend’s turn, you can use your reaction to command the creature by speaking in Void Speech. It obeys your verbal command, and you take 2d6 psychic damage at the end of the creature’s turn.\n\nIf your concentration is broken, the spell ends but the creature doesn’t disappear. Instead, you can no longer issue commands to the fiend, and it becomes hostile to you and your companions. It will attack you and your allies if it believes it has a chance to win the fight or to inflict meaningful harm, but it won’t fight if it fears doing so would mean its own death. You can’t dismiss the creature, but it disappears 1 hour after you summoned it.\n", + "document": "deepm", + "level": 7, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the challenge rating increases by 1 for each slot level above 7th.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_consult-the-storm", + "fields": { + "name": "Consult the Storm", + "desc": "You ask a question of an entity connected to storms, such as an elemental, a deity, or a primal spirit, and the entity replies with destructive fury.\n\nAs part of the casting of the spell, you must speak a question consisting of fifteen words or fewer. Choose a point within range. A short, truthful answer to your question booms from that point. It can be heard clearly by any creature within 600 feet. Each creature within 15 feet of the point takes 7d6 thunder damage, or half as much damage with a successful Constitution saving throw.\n", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "7d6", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_converse-with-dragon", + "fields": { + "name": "Converse With Dragon", + "desc": "You gain limited telepathy, allowing you to communicate with any creature within 120 feet of you that has the dragon type, regardless of the creature’s languages. A dragon can choose to make a Charisma saving throw to prevent telepathic contact with itself.\n\nThis spell doesn’t change a dragon’s disposition toward you or your allies, it only opens a channel of communication. In some cases, unwanted telepathic contact can worsen the dragon’s attitude toward you.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_costly-victory", + "fields": { + "name": "Costly Victory", + "desc": "You select up to ten enemies you can see that are within range. Each target must make a Wisdom saving throw. On a failed save, that creature is cursed to burst into flame if it reduces one of your allies to 0 hit points before this spell’s duration expires. The affected creature takes 6d8 fire damage and 6d8 radiant damage when it bursts into flame.\n\nIf the affected creature is wearing flammable material (or is made of flammable material, such as a plant creature), it catches on fire and continues burning; the creature takes fire damage equal to your spellcasting ability modifier at the end of each of its turns until the creature or one of its allies within 5 feet of it uses an action to extinguish the fire.", + "document": "deepm", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "fire" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_create-ring-servant", + "fields": { + "name": "Create Ring Servant", + "desc": "You touch two metal rings and infuse them with life, creating a short-lived but sentient construct known as a [ring servant](https://api.open5e.com/monsters/ring-servant). The ring servant appears adjacent to you. It reverts form, changing back into the rings used to cast the spell, when it drops to 0 hit points or when the spell ends.\n\nThe ring servant is friendly to you and your companions for the duration. Roll initiative for the ring servant, which acts on its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the ring servant, it defends itself and you from hostile creatures but otherwise takes no actions.", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "two metal rings", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_create-thunderstaff", + "fields": { + "name": "Create Thunderstaff", + "desc": "After you cast **create thunderstaff** on a normal quarterstaff, the staff must then be mounted in a noisy location, such as a busy marketplace, and left there for 60 days. During that time, the staff gradually absorbs ambient sound.\n\nAfter 60 days, the staff is fully charged and can’t absorb any more sound. At that point, it becomes a **thunderstaff**, a +1 quarterstaff that has 10 charges. When you hit on a melee attack with the staff and expend 1 charge, the target takes an extra 1d8 thunder damage. You can cast a [thunderwave](https://api.open5e.com/spells/thunderwave) spell from the staff as a bonus action by expending 2 charges. The staff cannot be recharged.\n\nIf the final charge is not expended within 60 days, the staff becomes nonmagical again.", + "document": "deepm", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a quarterstaff", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d8", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_creeping-ice", + "fields": { + "name": "Creeping Ice", + "desc": "You create a sheet of ice that covers a 5-foot square within range and lasts for the spell’s duration. The iced area is difficult terrain.\n\nA creature in the area where you cast the spell must make a successful Strength saving throw or be restrained by ice that rapidly encases it. A creature restrained by the ice takes 2d6 cold damage at the start of its turn. A restrained creature can use an action to make a Strength check against your spell save DC, freeing itself on a success, but it has disadvantage on this check. The creature can also be freed (and the spell ended) by dealing at least 20 damage to the ice. The restrained creature takes half the damage from any attacks against the ice.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th to 6th level, the area increases to a 10-foot square, the ice deals 4d6 cold damage, and 40 damage is needed to melt each 5-foot square. When you cast this spell using a spell slot of 7th level or higher, the area increases to a 20-foot square, the ice deals 6d6 cold damage, and 60 damage is needed to melt each 5-foot square.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_crushing-curse", + "fields": { + "name": "Crushing Curse", + "desc": "You speak a word of Void Speech. Choose a creature you can see within range. If the target can hear you, it must succeed on a Wisdom saving throw or take 1d6 psychic damage and be deafened for 1 minute, except that it can still hear Void Speech. A creature deafened in this way can repeat the saving throw at the end of each of its turns, ending the effect on a success.", + "document": "deepm", + "level": 0, + "school": "enchantment", + "higher_level": "This spell’s damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_crushing-trample", + "fields": { + "name": "Crushing Trample", + "desc": "Upon casting this spell, you are filled with a desire to overrun your foes. You immediately move up to twice your speed in a straight line, trampling every foe in your path that is of your size category or smaller. If you try to move through the space of an enemy whose size is larger than yours, your movement (and the spell) ends. Each enemy whose space you move through must make a successful Strength saving throw or be knocked prone and take 4d6 bludgeoning damage. If you have hooves, add your Strength modifier (minimum of +1) to the damage.\n\nYou move through the spaces of foes whether or not they succeed on their Strength saving throws. You do not provoke opportunity attacks while moving under the effect of **crushing trample**.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_cure-beast", + "fields": { + "name": "Cure Beast", + "desc": "A beast of your choice that you can see within range regains a number of hit points equal to 1d6 + your spellcasting modifier.\n", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d6 for each slot level above 1st.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_curse-of-boreas", + "fields": { + "name": "Curse of Boreas", + "desc": "You designate a creature within range that you can see. If the target fails a Charisma saving throw, it and its equipment are frozen solid, becoming an inert statue of ice. The creature is effectively paralyzed, but mental activity does not cease, and signs of life are detectable; the creature still breathes and its heart continues to beat, though both acts are almost imperceptible. If the ice statue is broken or damaged while frozen, the creature will have matching damage or injury when returned to its original state. [Dispel magic](https://api.open5e.com/spells/dispel-magic) can’t end this spell, but it can allow the target to speak (but not move or cast spells) for a number of rounds equal to the spell slot used. [Greater restoration](https://api.open5e.com/spells/greater-restoration) or more potent magic is needed to free a creature from the ice.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_curse-of-dust", + "fields": { + "name": "Curse of Dust", + "desc": "You cast a curse on a creature within range that you’re familiar with, causing it to be unsatiated by food no matter how much it eats. This effect isn’t merely an issue of perception; the target physically can’t draw sustenance from food. Within minutes after the spell is cast, the target feels constant hunger no matter how much food it consumes. The target must make a Constitution saving throw 24 hours after the spell is cast and every 24 hours thereafter. On a failed save, the target gains one level of exhaustion. The effect ends when the duration expires or when the target makes two consecutive successful saves.", + "document": "deepm", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "500 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of spoiled food", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_curse-of-incompetence", + "fields": { + "name": "Curse of Incompetence", + "desc": "By making mocking gestures toward one creature within\nrange that can see you, you leave the creature incapable of\nperforming at its best. If the target fails on an Intelligence\nsaving throw, roll a d4 and refer to the following table to\ndetermine what the target does on its turn. An affected\ntarget repeats the saving throw at the end of each of its\nturns, ending the effect on itself on a success or applying\nthe result of another roll on the table on a failure.\n\n| D4 | RESULT |\n|-|-|\n| 1 | Target spends its turn shouting mocking words at caster and takes a -5 penalty to its initiative roll. |\n| 2 | Target stands transfixed and blinking, takes no action. |\n| 3 | Target flees or fights (50 percent chance of each). |\n| 4 | Target charges directly at caster, enraged. |\n\n", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_curse-of-the-grave", + "fields": { + "name": "Curse of the Grave", + "desc": "You tap your connection to death to curse a humanoid, making the grim pull of the grave stronger on that creature’s soul.\n\nChoose one humanoid you can see within range. The target must succeed on a Constitution saving throw or become cursed. A [remove curse](https://api.open5e.com/spells/remove-curse) spell or similar magic ends this curse. While cursed in this way, the target suffers the following effects:\n\n* The target fails death saving throws on any roll but a 20.\n* If the target dies while cursed, it rises 1 round later as a vampire spawn under your control and is no longer cursed.\n* The target, as a vampire spawn, seeks you out in an attempt to serve its new master. You can have only one vampire spawn under your control at a time through this spell. If you create another, the existing one turns to dust. If you or your companions do anything harmful to the target, it can make a Wisdom saving throw. On a success, it is no longer under your control.", + "document": "deepm", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of dirt from a freshly dug grave", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_curse-of-yig", + "fields": { + "name": "Curse of Yig", + "desc": "This spell transforms a Small, Medium, or Large creature that you can see within range into a [servant of Yig](https://api.open5e.com/monsters/servant-of-yig). An unwilling creature can attempt a Wisdom saving throw, negating the effect with a success. A willing creature is automatically affected and remains so for as long as you maintain concentration on the spell.\n\nThe transformation lasts for the duration or until the target drops to 0 hit points or dies. The target’s statistics, including mental ability scores, are replaced by the statistics of a servant of Yig. The transformed creature’s alignment becomes neutral evil, and it is both friendly to you and reverent toward the Father of Serpents. Its equipment is unchanged. If the transformed creature was unwilling, it makes a Wisdom saving throw at the end of each of its turns. On a successful save, the spell ends, the creature’s alignment and personality return to normal, and it regains its former attitude toward you and toward Yig.\n\nWhen it reverts to its normal form, the creature has the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form.", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of snake venom", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_curse-ring", + "fields": { + "name": "Curse Ring", + "desc": "You lay a curse upon a ring you touch that isn’t being worn or carried. When you cast this spell, select one of the possible effects of [bestow curse](https://api.open5e.com/spells/bestow-curse). The next creature that willingly wears the ring suffers the chosen effect with no saving throw. The curse transfers from the ring to the wearer once the ring is put on; the ring becomes a mundane ring that can be taken off, but the curse remains on the creature that wore the ring until the curse is removed or dispelled. An [identify](https://api.open5e.com/spells/identify) spell cast on the cursed ring reveals the fact that it is cursed.", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "250 gp worth of diamond dust, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent until discharged", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_cursed-gift", + "fields": { + "name": "Cursed Gift", + "desc": "**Cursed gift** imbues an object with a harmful magical effect that you or another creature in physical contact with you is currently suffering from. If you give this object to a creature that freely accepts it during the duration of the spell, the recipient must make a Charisma saving throw. On a failed save, the harmful effect is transferred to the recipient for the duration of the spell (or until the effect ends). Returning the object to you, destroying it, or giving it to someone else has no effect. Remove curse and comparable magic can relieve the individual who received the item, but the harmful effect still returns to the previous victim when this spell ends if the effect’s duration has not expired.\n", + "document": "deepm", + "level": 4, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration increases by 24 hours for each slot level above 4th.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an object worth at least 75 gp", + "material_cost": "75.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_cynophobia", + "fields": { + "name": "Cynophobia", + "desc": "Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or develop an overriding fear of canids, such as dogs, wolves, foxes, and worgs. For the duration, the first time the target sees a canid, the target must succeed on a Wisdom saving throw or become frightened of that canid until the end of its next turn. Each time the target sees a different canid, it must make the saving throw. In addition, the target has disadvantage on ability checks and attack rolls while a canid is within 10 feet of it.\n", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a 5th-level spell slot, the duration is 24 hours. When you use a 7th-level spell slot, the duration is 1 month. When you use a spell slot of 8th or 9th level, the spell lasts until it is dispelled.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dog’s tooth", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_daggerhawk", + "fields": { + "name": "Daggerhawk", + "desc": "When **daggerhawk** is cast on a nonmagical dagger, a ghostly hawk appears around the weapon. The hawk and dagger fly into the air and make a melee attack against one creature you select within 60 feet, using your spell attack modifier and dealing piercing damage equal to 1d4 + your Intelligence modifier on a hit. On your subsequent turns, you can use an action to cause the daggerhawk to attack the same target. The daggerhawk has AC 14 and, although it’s invulnerable to all damage, a successful attack against it that deals bludgeoning, force, or slashing damage sends the daggerhawk tumbling, so it can’t attack again until after your next turn.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dagger", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_dark-dementing", + "fields": { + "name": "Dark Dementing", + "desc": "A dark shadow creeps across the target’s mind and leaves a small bit of shadow essence behind, triggering a profound fear of the dark. A creature you designate within range must make a Charisma saving throw. If it fails, the target becomes frightened of you for the duration. A frightened creature can repeat the saving throw each time it takes damage, ending the effect on a success. While frightened in this way, the creature will not willingly enter or attack into a space that isn’t brightly lit. If it’s in dim light or darkness, the creature must either move toward bright light or create its own (by lighting a lantern, casting a [light](https://api.open5e.com/spells/light) spell, or the like).", + "document": "deepm", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a moonstone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_dark-heraldry", + "fields": { + "name": "Dark Heraldry", + "desc": "Dark entities herald your entry into combat, instilling an existential dread in your enemies. Designate a number of creatures up to your spellcasting ability modifier (minimum of one) that you can see within range and that have an alignment different from yours. Each of those creatures takes 5d8 psychic damage and becomes frightened of you; a creature that makes a successful Wisdom saving throw takes half as much damage and is not frightened.\n\nA creature frightened in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success. The creature makes this saving throw with disadvantage if you can see it.\n", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_dark-maw", + "fields": { + "name": "Dark Maw", + "desc": "Thick, penumbral ichor drips from your shadow-stained mouth, filling your mouth with giant shadow fangs. Make a melee spell attack against the target. On a hit, the target takes 1d8 necrotic damage as your shadowy fangs sink into it. If you have a bite attack (such as from a racial trait or a spell like [alter self](https://api.open5e.com/spells/after-self)), you can add your spellcasting ability modifier to the damage roll but not to your temporary hit points.\n\nIf you hit a humanoid target, you gain 1d4 temporary hit points until the start of your next turn.", + "document": "deepm", + "level": 0, + "school": "necromancy", + "higher_level": "This spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_dark-path", + "fields": { + "name": "Dark Path", + "desc": "You conjure a shadowy road between two points within range to create a bridge or path. This effect can bridge a chasm or create a smooth path through difficult terrain. The dark path is 10 feet wide and up to 50 feet long. It can support up to 500 pounds of weight at one time. A creature that adds more weight than the path can support sinks through the path as if it didn’t exist.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a lodestone", + "material_cost": null, + "material_consumed": false, + "target_count": 2, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_darkbolt", + "fields": { + "name": "Darkbolt", + "desc": "You utter a quick invocation to create a black nimbus around your hand, then hurl three rays of darkness at one or more targets in range. The rays can be divided between targets however you like. Make a ranged spell attack for each target (not each ray); each ray that hits deals 1d10 cold damage. A target that was hit by one or more rays must make a successful Constitution saving throw or be unable to use reactions until the start of its next turn.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_dead-walking", + "fields": { + "name": "Dead Walking", + "desc": "As part of the casting of this spell, you place a copper piece under your tongue. This spell makes up to six willing creatures you can see within range invisible to undead for the duration. Anything a target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for all targets if one target attacks or casts a spell.", + "document": "deepm", + "level": 2, + "school": "illusion", + "higher_level": "When you cast this spell using a 3rd-level spell slot, it lasts for 1 hour without requiring your concentration. When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 hour for each slot level above 3rd.", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a copper piece", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_deadly-sting", + "fields": { + "name": "Deadly Sting", + "desc": "You grow a 10-foot-long tail as supple as a whip, tipped with a horrible stinger. During the spell’s duration, you can use the stinger to make a melee spell attack with a reach of 10 feet. On a hit, the target takes 1d4 piercing damage plus 4d10 poison damage, and a creature must make a successful Constitution saving throw or become vulnerable to poison damage for the duration of the spell.", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a thorn", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "1d4", + "damage_types": [ + "piercing" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_death-gods-touch", + "fields": { + "name": "Death God’s Touch", + "desc": "This spell allows you to shred the life force of a creature you touch. You become invisible and make a melee spell attack against the target. On a hit, the target takes 10d10 necrotic damage. If this damage reduces the target to 0 hit points, the target dies. Whether the attack hits or misses, you remain invisible until the start of your next turn.\n", + "document": "deepm", + "level": 7, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 2d10 for each slot level above 7th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "10d10", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_decay", + "fields": { + "name": "Decay", + "desc": "Make a melee spell attack against a creature you touch. On a hit, the target takes 1d10 necrotic damage. If the target is a Tiny or Small nonmagical object that isn’t being worn or carried by a creature, it automatically takes maximum damage from the spell.", + "document": "deepm", + "level": 0, + "school": "necromancy", + "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of ash", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d10", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_decelerate", + "fields": { + "name": "Decelerate", + "desc": "You slow the flow of time around a creature within range that you can see. The creature must make a successful Wisdom saving throw, or its walking speed is halved (round up to the nearest 5-foot increment). The creature can repeat the saving throw at the end of each of its turns, ending the effect on a success. Until the spell ends, on a failed save the target’s speed is halved again at the start of each of your turns. For example, if a creature with a speed of 30 feet fails its initial saving throw, its speed drops to 15 feet. At the start of your next turn, the creature’s speed drops to 10 feet on a failed save, then to 5 feet on the following round on another failed save. **Decelerate** can’t reduce a creature’s speed to less than 5 feet.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can affect an additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a toy top", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_deep-breath", + "fields": { + "name": "Deep Breath", + "desc": "The recipient of this spell can breathe and function normally in thin atmosphere, suffering no ill effect at altitudes of up to 20,000 feet. If more than one creature is touched during the casting, the duration is divided evenly among all creatures touched.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 2 hours for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "2 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_defile-healing", + "fields": { + "name": "Defile Healing", + "desc": "You attempt to reverse the energy of a healing spell so that it deals damage instead of healing. If the healing spell is being cast with a spell slot of 5th level or lower, the slot is expended but the spell restores no hit points. In addition, each creature that was targeted by the healing spell takes necrotic damage equal to the healing it would have received, or half as much damage with a successful Constitution saving throw.\n", + "document": "deepm", + "level": 7, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 8th level, it can reverse a healing spell being cast using a spell slot of 6th level or lower. If you use a 9th-level spell slot, it can reverse a healing spell being cast using a spell slot of 7th level or lower.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_delay-potion", + "fields": { + "name": "Delay Potion", + "desc": "Upon casting this spell, you delay the next potion you consume from taking effect for up to 1 hour. You must consume the potion within 1 round of casting **delay potion**; otherwise the spell has no effect. At any point during **delay potion’s** duration, you can use a bonus action to cause the potion to go into effect. When the potion is activated, it works as if you had just drunk it. While the potion is delayed, it has no effect at all and you can consume and benefit from other potions normally.\n\nYou can delay only one potion at a time. If you try to delay the effect of a second potion, the spell fails, the first potion has no effect, and the second potion has its normal effect when you drink it.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour (see below)", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_delayed-healing", + "fields": { + "name": "Delayed Healing", + "desc": "Touch a living creature (not a construct or undead) as you cast the spell. The next time that creature takes damage, it immediately regains hit points equal to 1d4 + your spellcasting ability modifier (minimum of 1).\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a bloodstone worth 100 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_demon-within", + "fields": { + "name": "Demon Within", + "desc": "One humanoid of your choice within range becomes a gateway for a demon to enter the plane of existence you are on. You choose the demon’s type from among those of challenge rating of 4 or lower. The target must make a Wisdom saving throw. On a success, the gateway fails to open, and the spell has no effect. On a failed save, the target takes 4d6 force damage from the demon’s attempt to claw its way through the gate. For the spell’s duration, you can use a bonus action to further agitate the demon, dealing an additional 2d6 force damage to the target each time.\n\nIf the target drops to 0 hit points while affected by this spell, the demon tears through the body and appears in the same space as its now incapacitated or dead victim. You do not control this demon; it is free to either attack or leave the area as it chooses. The demon disappears after 24 hours or when it drops to 0 hit points.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of blood from a humanoid killed within the previous 24 hours", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "force" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_desiccating-breath", + "fields": { + "name": "Desiccating Breath", + "desc": "You spew forth a cloud of black dust that draws all moisture from a 30-foot cone. Each animal in the cone takes 4d10 necrotic damage, or half as much damage if it makes a successful Constitution saving throw. The damage is 6d10 for plants and plant creatures, also halved on a successful Constitution saving throw.", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a clump of dried clay", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d10", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_desolation", + "fields": { + "name": "Desolation", + "desc": "You plant an obsidian acorn in solid ground and spend an hour chanting a litany of curses to the natural world, after which the land within 1 mile of the acorn becomes infertile, regardless of its previous state. Nothing will grow there, and all plant life in the area dies over the course of a day. Plant creatures are not affected. Spells that summon plants, such as [entangle](https://api.open5e.com/spells/entangle), require an ability check using the caster’s spellcasting ability against your spell save DC. On a successful check, the spell functions normally; if the check fails, the spell is countered by **desolation**.\n\nAfter one year, the land slowly reverts to its normal fertility, unable to stave off the march of nature.\n\nA living creature that finishes a short rest within the area of a **desolation** spell halves the result of any Hit Dice it expends. Desolation counters the effects of a [bloom](https://api.open5e.com/spells/bloom) spell.\n\n***Ritual Focus.*** If you expend your ritual focus, the duration becomes permanent.", + "document": "deepm", + "level": 8, + "school": "necromancy", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an obsidian acorn worth 500 gp, which is consumed in the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 year", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_destructive-resonance", + "fields": { + "name": "Destructive Resonance", + "desc": "You shout a scathing string of Void Speech that assaults the minds of those before you. Each creature in a 15-foot cone that can hear you takes 4d6 psychic damage, or half that damage with a successful Wisdom saving throw. A creature damaged by this spell can’t take reactions until the start of its next turn.\n", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 15, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_detect-dragons", + "fields": { + "name": "Detect Dragons", + "desc": "You can detect the presence of dragons and other draconic creatures within your line of sight and 120 feet, regardless of disguises, illusions, and alteration magic such as polymorph. The information you uncover depends on the number of consecutive rounds you spend an action studying a subject or area. On the first round of examination, you detect whether any draconic creatures are present, but not their number, location, identity, or type. On the second round, you learn the number of such creatures as well as the general condition of the most powerful one. On the third and subsequent rounds, you make a DC 15 Intelligence (Arcana) check; if it succeeds, you learn the age, type, and location of one draconic creature. Note that the spell provides no information on the turn in which it is cast, unless you have the means to take a second action that turn.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_devas-wings", + "fields": { + "name": "Deva’s Wings", + "desc": "You touch a willing creature. The target grows feathery wings of pure white that grant it a flying speed of 60 feet and the ability to hover. When the target takes the Attack action, it can use a bonus action to make a melee weapon attack with the wings, with a reach of 10 feet. If the wing attack hits, the target takes bludgeoning damage equal to 1d6 + your spellcasting ability modifier and must make a successful Strength saving throw or fall prone. When the spell ends, the wings disappear, and the target falls if it was aloft.\n", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional target for each slot level above 4th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a wing feather from any bird", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_dimensional-shove", + "fields": { + "name": "Dimensional Shove", + "desc": "This spell pushes a creature you touch through a dimensional portal, causing it to disappear and then reappear a short distance away. If the target fails a Wisdom saving throw, it disappears from its current location and reappears 30 feet away from you in a direction of your choice. This travel can take it through walls, creatures, or other solid surfaces, but the target can't reappear inside a solid object or not on solid ground; instead, it reappears in the nearest safe, unoccupied space along the path of travel.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the target is shoved an additional 30 feet for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_disquieting-gaze", + "fields": { + "name": "Disquieting Gaze", + "desc": "Your eyes burn with scintillating motes of unholy crimson light. Until the spell ends, you have advantage on Charisma (Intimidation) checks made against creatures that can see you, and you have advantage on spell attack rolls that deal necrotic damage to creatures that can see your eyes.", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_disruptive-aura", + "fields": { + "name": "Disruptive Aura", + "desc": "A warping, prismatic aura surrounds and outlines each creature inside a 10-foot cube within range. The aura sheds dim light out to 10 feet, and the the locations of hidden or invisible creatures are outlined. If a creature in the area tries to cast a spell or use a magic item, it must make a Wisdom saving throw. On a successful save, the spell or item functions normally. On a failed save, the effect of the spell or the item is suppressed for the duration of the aura. Time spent suppressed counts against the duration of the spell’s or item’s effect.\n", + "document": "deepm", + "level": 8, + "school": "evocation", + "higher_level": "When you cast this spell using a 9th‐level spell slot, the cube is 20 feet on a side.", + "target_type": "creature", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_distracting-divination", + "fields": { + "name": "Distracting Divination", + "desc": "Foresight tells you when and how to be just distracting enough to foil an enemy spellcaster. When an adjacent enemy tries to cast a spell, make a melee spell attack against that enemy. On a hit, the enemy’s spell fails and has no effect; the enemy’s action is used up but the spell slot isn’t expended.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_distraction-cascade", + "fields": { + "name": "Distraction Cascade", + "desc": "With a flash of foresight, you throw a foe off balance. Choose one creature you can see that your ally has just declared as the target of an attack. Unless that creature makes a successful Charisma saving throw, attacks against it are made with advantage until the end of this turn.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_doom-of-blue-crystal", + "fields": { + "name": "Doom of Blue Crystal", + "desc": "You are surrounded by a field of glowing, blue energy lasting 3 rounds. Creatures within 5 feet of you, including yourself, must make a Constitution saving throw when the spell is cast and again at the start of each of your turns while the spell is in effect. A creature whose saving throw fails is restrained; a restrained creature whose saving throw fails is paralyzed; and a paralyzed creature whose saving throw fails is petrified and transforms into a statue of blue crystal. As with all concentration spells, you can end the field at any time (no action required). If you are turned to crystal, the spell ends after all affected creatures make their saving throws. Restrained and paralyzed creatures recover immediately when the spell ends, but petrification is permanent.\n\nCreatures turned to crystal can see, hear, and smell normally, but they don’t need to eat or breathe. If shatter is cast on a crystal creature, it must succeed on a Constitution saving throw against the caster’s spell save DC or be killed.\n\nCreatures transformed into blue crystal can be restored with dispel magic, greater restoration, or comparable magic.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a blue crystal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "3 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_doom-of-consuming-fire", + "fields": { + "name": "Doom of Consuming Fire", + "desc": "You are wreathed in cold, purple fire that damages creatures near you. You take 1d6 cold damage each round for the duration of the spell. Creatures within 5 feet of you when you cast the spell and at the start of each of your turns while the spell is in effect take 1d8 cold damage.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a 3rd-level spell slot, the purple fire extends 10 feet from you, you take 1d8 cold damage, and other creatures take 1d10 cold damage. When you cast this spell using a 4th‐level slot, the fire extends 15 feet from you, you take1d10 cold damage, and other creatures take 1d12 cold damage. When you cast this spell using a slot of 5th level or higher, the fire extends to 20 feet, you take 1d12 cold damage, and other creatures take 1d20 cold damage.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dead coal or a fistful of ashes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_doom-of-dancing-blades", + "fields": { + "name": "Doom of Dancing Blades", + "desc": "When you cast **doom of dancing blades**, you create 1d4 illusory copies of your weapon that float in the air 5 feet from you. These images move with you, spinning, shifting, and mimicking your attacks. When you are hit by a melee attack but the attack roll exceeded your Armor Class by 3 or less, one illusory weapon parries the attack; you take no damage and the illusory weapon is destroyed. When you are hit by a melee attack that an illusory weapon can’t parry (the attack roll exceeds your AC by 4 or more), you take only half as much damage from the attack, and an illusory weapon is destroyed. Spells and effects that affect an area or don’t require an attack roll affect you normally and don’t destroy any illusory weapons.\n\nIf you make a melee attack that scores a critical hit while **doom of dancing blades** is in effect on you, all your illusory weapons also strike the target and deal 1d8 bludgeoning, piercing, or slashing damage (your choice) each.\n\nThe spell ends when its duration expires or when all your illusory weapons are destroyed or expended.\n\nAn attacker must be able to see the illusory weapons to be affected. The spell has no effect if you are invisible or in total darkness or if the attacker is blinded.", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_doom-of-disenchantment", + "fields": { + "name": "Doom of Disenchantment", + "desc": "When you cast **doom of disenchantment**, your armor and shield glow with light. When a creature hits you with an attack, the spell counters any magic that provides the attack with a bonus to hit or to damage. For example, a +1 weapon would still be considered magical, but it gets neither +1 to hit nor +1 to damage on any attack against you.\n\nThe spell also suppresses other magical properties of the attack. A [sword of wounding](https://api.open5e.com/magicitems/sword-of-wounding), for example, can’t cause ongoing wounds on you, and you recover hit points lost to the weapon's damage normally. If the attack was a spell, it’s affected as if you had cast [counterspell](https://api.open5e.com/spells/counterspell), using Charisma as your spellcasting ability. Spells with a duration of instantaneous, however, are unaffected.", + "document": "deepm", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_doom-of-serpent-coils", + "fields": { + "name": "Doom of Serpent Coils", + "desc": "You drink a dose of venom or other poison and spread the effect to other living things around you. If the poison normally allows a saving throw, your save automatically fails. You suffer the effect of the poison normally before spreading the poison to all other living creatures within 10 feet of you. Instead of making the usual saving throw against the poison, each creature around you makes a Constitution saving throw against the spell. On a successful save, a target suffers no damage or other effect from the poison and is immune to further castings of **doom of serpent coils** for 24 hours. On a failed save, a target doesn't suffer the poison’s usual effect; instead, it takes 4d6 poison damage and is poisoned. While poisoned in this way, a creature repeats the saving throw at the end of each of its turns. On a subsequent failed save, it takes 4d6 poison damage and is still poisoned. On a subsequent successful save, it is no longer poisoned and is immune to further castings of **doom of serpent coils** for 24 hours.\n\nMultiple castings of this spell have no additional effect on creatures that are already poisoned by it. The effect can be ended by [protection from poison](https://api.open5e.com/spells/protection-from-poison) or comparable magic.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of poison", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "poison" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_doom-of-the-cracked-shield", + "fields": { + "name": "Doom of the Cracked Shield", + "desc": "Doom of the cracked shield is cast on a melee weapon. The next time that weapon is used, it destroys the target’s nonmagical shield or damages nonmagical armor, in addition to the normal effect of the attack. If the foe is using a nonmagical shield, it breaks into pieces. If the foe doesn’t use a shield, its nonmagical armor takes a -2 penalty to AC. If the target doesn’t use armor or a shield, the spell is expended with no effect.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_doom-of-the-earthen-maw", + "fields": { + "name": "Doom of the Earthen Maw", + "desc": "The ground within 30 feet of a point you designate turns into filthy and slippery muck. This spell affects sand, earth, mud, and ice, but not stone, wood, or other material. For the duration, the ground in the affected area is difficult terrain. A creature in the area when you cast the spell must succeed on a Strength saving throw or be restrained by the mud until the spell ends. A restrained creature can free itself by using an action to make a successful Strength saving throw. A creature that frees itself or that enters the area after the spell was cast is affected by the difficult terrain but doesn’t become restrained.\n\nEach round, a restrained creature sinks deeper into the muck. A Medium or smaller creature that is restrained for 3 rounds becomes submerged at the end of its third turn. A Large creature becomes submerged after 4 rounds. Submerged creatures begin suffocating if they aren’t holding their breath. A creature that is still submerged when the spell ends is sealed beneath the newly solidified ground. The creature can escape only if someone else digs it out or it has a burrowing speed.", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_doom-of-the-slippery-rogue", + "fields": { + "name": "Doom of the Slippery Rogue", + "desc": "A **doom of the slippery rogue** spell covers a 20-foot-by-20-foot section of wall or floor within range with a thin coating of grease. If a vertical surface is affected, each climber on that surface must make a successful DC 20 Strength (Athletics) check or immediately fall from the surface unless it is held in place by ropes or other climbing gear. A creature standing on an affected floor falls prone unless it makes a successful Dexterity saving throw. Creatures that try to climb or move through the affected area can move no faster than half speed (this is cumulative with the usual reduction for climbing), and any movement must be followed by a Strength saving throw (for climbing) or a Dexterity saving throw (for walking). On a failed save, the moving creature falls or falls prone.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "40 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "bacon fat", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_douse-light", + "fields": { + "name": "Douse Light", + "desc": "With a simple gesture, you can put out a single small source of light within range. This spell extinguishes a torch, a candle, a lantern, or a [light](https://api.open5e.com/spells/light) or [dancing lights](https://api.open5e.com/spells/dancing-lights) cantrip.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_draconic-smite", + "fields": { + "name": "Draconic Smite", + "desc": "The next time you hit a creature with a melee weapon attack during the spell’s duration, your weapon takes on the form of a silver dragon’s head. Your attack deals an extra 1d6 cold damage, and up to four other creatures of your choosing within 30 feet of the attack’s target must each make a successful Constitution saving throw or take 1d6 cold damage.\n", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the extra cold damage and the cold damage dealt to the secondary creatures increases by 1d6 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_dragon-breath", + "fields": { + "name": "Dragon Breath", + "desc": "You summon draconic power to gain a breath weapon. When you cast dragon breath, you can immediately exhale a cone or line of elemental energy, depending on the type of dragon you select. While the spell remains active, roll a d6 at the start of your turn. On a roll of 5 or 6, you can take a bonus action that turn to use the breath weapon again.\n\nWhen you cast the spell, choose one of the dragon types listed below. Your choice determines the affected area and the damage of the breath attack for the spell’s duration.\n\n| Dragon Type | Area | Damage |\n|-|-|-|\n| Black | 30-foot line, 5 feet wide | 6d6 acid damage |\n| Blue | 30-foot line, 5 feet wide | 6d6 lightning damage |\n| Green | 15-foot cone | 6d6 poison damage |\n| Red | 15-foot cone | 6d6 fire damage |\n| White | 15-foot cone | 6d6 cold damage |\n\n", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 2d6 for each slot level above 5th.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of a dragon’s tooth", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "line", + "shape_magnitude": 15, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_dragon-roar", + "fields": { + "name": "Dragon Roar", + "desc": "Your voice is amplified to assault the mind of one creature. The target must make a Charisma saving throw. If it fails, the target takes 1d4 psychic damage and is frightened until the start of your next turn. A target can be affected by your dragon roar only once per 24 hours.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "This spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "1d4", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_drown", + "fields": { + "name": "Drown", + "desc": "You cause a creature's lungs to fill with seawater. Unless the target makes a successful Constitution saving throw, it immediately begins suffocating. A suffocating creature can’t speak or perform verbal spell components. It can hold its breath, and thereafter can survive for a number of rounds equal to its Constitution modifier (minimum of 1 round), after which it drops to 0 hit points and is dying. Huge or larger creatures are unaffected, as are creatures that can breathe water or that don’t require air.\n\nA suffocating (not dying) creature can repeat the saving throw at the end of each of its turns, ending the effect on a success.\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.\n\nNOTE: Midgard Heroes Handbook has a very different [drown-heroes-handbook/drown](https://api.open5e.com/spells/drown) spell.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small piece of flotsam or seaweed", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_dryads-kiss", + "fields": { + "name": "Dryad’s Kiss", + "desc": "You perform an ancient incantation that summons flora from the fey realm. A creature you can see within range is covered with small, purple buds and takes 3d8 necrotic damage; a successful Wisdom saving throw negates the damage but doesn’t prevent the plant growth. The buds can be removed by the target or an ally of the target within 5 feet who uses an action to make a successful Intelligence (Nature) or Wisdom (Medicine) check against your spell save DC, or by a [greater restoration](https://api.open5e.com/spells/greater-restoration) or [blight](https://api.open5e.com/spells/blight) spell. While the buds remain, whenever the target takes damage from a source other than this spell, one bud blossoms into a purple and yellow flower that deals an extra 1d8 necrotic damage to the target. Once four blossoms have formed in this way, the buds can no longer be removed by nonmagical means. The buds and blossoms wilt and fall away when the spell ends, provided the creature is still alive.\n\nIf a creature affected by this spell dies, sweet-smelling blossoms quickly cover its body. The flowers wilt and die after one month.\n", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "If this spell is cast using a spell slot of 5th level or higher, the number of targets increases by one for every two slot levels above 3rd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a flower petal or a drop of blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_earthskimmer", + "fields": { + "name": "Earthskimmer", + "desc": "You cause earth and stone to rise up beneath your feet, lifting you up to 5 feet. For the duration, you can use your movement to cause the slab to skim along the ground or other solid, horizontal surface at a speed of 60 feet. This movement ignores difficult terrain. If you are pushed or moved against your will by any means other than teleporting, the slab moves with you.\n\nUntil the end of your turn, you can enter the space of a creature up to one size larger than yourself when you take the Dash action. The creature must make a Strength saving throw. It takes 4d6 bludgeoning damage and is knocked prone on a failed save, or takes half as much damage and isn’t knocked prone on a succesful one.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of shale or slate", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_earworm-melody", + "fields": { + "name": "Earworm Melody", + "desc": "You sing or play a catchy tune that only one creature of your choice within range can hear. Unless the creature makes a successful Wisdom saving throw, the verse becomes ingrained in its head. If the target is concentrating on a spell, it must make a Constitution check with disadvantage against your spell save DC in order to maintain concentration.\n\nFor the spell’s duration, the target takes 2d4 psychic damage at the start of each of its turns as the melody plays over and over in its mind. The target repeats the saving throw at the end of each of its turns, ending the effect on a success. On a failed save, the target must also repeat the Constitution check with disadvantage if it is concentrating on a spell.\n", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "If you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d4 for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_echoes-of-steel", + "fields": { + "name": "Echoes of Steel", + "desc": "When you hit a creature with a melee weapon attack, you can use a bonus action to cast echoes of steel. All creatures you designate within 30 feet of you take thunder damage equal to the damage from the melee attack, or half as much damage with a successful Constitution saving throw.", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ectoplasm", + "fields": { + "name": "Ectoplasm", + "desc": "You call forth an ectoplasmic manifestation of Medium size that appears in an unoccupied space of your choice within range that you can see. The manifestation lasts for the spell’s duration. Any creature that ends its turn within 5 feet of the manifestation takes 2d6 psychic damage, or half the damage with a successful Wisdom saving throw.\n\nAs a bonus action, you can move the manifestation up to 30 feet. It can move through a creature’s space but can’t remain in the same space as that creature. If it enters a creature’s space, that creature takes 2d6 psychic damage, or half the damage with a successful Wisdom saving throw. On a failed save, the creature also has disadvantage on Dexterity checks until the end of its next turn.\n\nWhen you move the manifestation, it can flow through a gap as small as 1 square inch, over barriers up to 5 feet tall, and across pits up to 10 feet wide. The manifestation sheds dim light in a 10-foot radius. It also leaves a thin film of ectoplasmic residue on everything it touches or moves through. This residue doesn’t illuminate the surroundings but does glow dimly enough to show the manifestation’s path. The residue dissipates 1 round after it is deposited.\n", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of bone dust", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_eidetic-memory", + "fields": { + "name": "Eidetic Memory", + "desc": "When you cast this spell, you can recall any piece of information you’ve ever read or heard in the past. This ability translates into a +10 bonus on Intelligence checks for the duration of the spell.", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a string tied in a knot", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_eldritch-communion", + "fields": { + "name": "Eldritch Communion", + "desc": "You contact a Great Old One and ask one question that can be answered with a one-sentence reply no more than twenty words long. You must ask your question before the spell ends. There is a 25 percent chance that the answer contains a falsehood or is misleading in some way. (The GM determines this secretly.)\n\nGreat Old Ones have vast knowledge, but they aren’t omniscient, so if your question pertains to information beyond the Old One’s knowledge, the answer might be vacuous, gibberish, or an angry, “I don’t know.”\n\nThis also reveals the presence of all aberrations within 300 feet of you. There is a 1-in-6 chance that each aberration you become aware of also becomes aware of you.\n\nIf you cast **eldritch communion** two or more times before taking a long rest, there is a cumulative 25 percent chance for each casting after the first that you receive no answer and become afflicted with short-term madness.", + "document": "deepm", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "corvid entrails, a dried opium poppy, and a glass dagger", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_elemental-horns", + "fields": { + "name": "Elemental Horns", + "desc": "The target of this spell must be a creature that has horns, or the spell fails. **Elemental horns** causes the touched creature’s horns to crackle with elemental energy. Select one of the following energy types when casting this spell: acid, cold, fire, lightning, or radiant. The creature’s gore attack deals 3d6 damage of the chosen type in addition to any other damage the attack normally deals.\n\nAlthough commonly seen among tieflings and minotaurs, this spell is rarely employed by other races.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 2d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a brass wand", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_elemental-twist", + "fields": { + "name": "Elemental Twist", + "desc": "During this spell’s duration, reality shifts around you whenever you cast a spell that deals acid, cold, fire, lightning, poison, or thunder damage. Assign each damage type a number and roll a d6 to determine the type of damage this casting of the spell deals. In addition, the spell’s damage increases by 1d6. All other properties or effects of the spell are unchanged.", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a thin piece of copper twisted around itself", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_emanation-of-yoth", + "fields": { + "name": "Emanation of Yoth", + "desc": "You call forth a [ghost](https://api.open5e.com/monsters/ghost)// that takes the form of a spectral, serpentlike assassin. It appears in an unoccupied space that you can see within range. The ghost disappears when it’s reduced to 0 hit points or when the spell ends.\n\nThe ghost is friendly to you and your companions for the duration of the spell. Roll initiative for the ghost, which takes its own turns. It obeys verbal commands that you issue to it (no action required by you). If you don’t issue a command to it, the ghost defends itself from hostile creatures but doesn’t move or take other actions.\n\nYou are immune to the ghost’s Horrifying Visage action but can willingly become the target of the ghost’s Possession ability. You can end this effect on yourself as a bonus action.\n", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 6th or 7th level, you call forth two ghosts. If you cast it using a spell slot of 8th or 9th level, you call forth three ghosts.", + "target_type": "point", + "range": "90 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a fistful of grave earth and a vial of child’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_enchant-ring", + "fields": { + "name": "Enchant Ring", + "desc": "You enchant a ring you touch that isn’t being worn or carried. The next creature that willingly wears the ring becomes charmed by you for 1 week or until it is harmed by you or one of your allies. If the creature dons the ring while directly threatened by you or one of your allies, the spell fails.\n\nThe charmed creature regards you as a friend. When the spell ends, it doesn’t know it was charmed by you, but it does realize that its attitude toward you has changed (possibly greatly) in a short time. How the creature reacts to you and regards you in the future is up to the GM.", + "document": "deepm", + "level": 6, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "500 gp worth of diamond dust, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent until discharged", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_encroaching-shadows", + "fields": { + "name": "Encroaching Shadows", + "desc": "You cause menacing shadows to invade an area 200 feet on a side and 50 feet high, centered on a point within range. Illumination in the area drops one step (from bright light to dim, or from dim light to darkness). Any spell that creates light in the area that is cast using a lower-level spell slot than was used to cast encroaching shadows is dispelled, and a spell that creates light doesn’t function in the area if that spell is cast using a spell slot of 5th level or lower. Nonmagical effects can’t increase the level of illumination in the affected area.\n\nA spell that creates darkness or shadow takes effect in the area as if the spell slot expended was one level higher than the spell slot actually used.\n", + "document": "deepm", + "level": 6, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the effect lasts for an additional 12 hours for each slot level above 6th.\n\n***Ritual Focus.*** If you expend your ritual focus, the spell’s duration increases by 12 hours, and it cannot be dispelled by a spell that creates light, even if that spell is cast using a higher-level spell slot.", + "target_type": "area", + "range": "150 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of blood smeared on a silver rod worth 100 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "12 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_encrypt-decrypt", + "fields": { + "name": "Encrypt / Decrypt", + "desc": "By touching a page of written information, you can encode its contents. All creatures that try to read the information when its contents are encoded see the markings on the page as nothing but gibberish. The effect ends when either **encrypt / decrypt** or [dispel magic](https://api.open5e.com/spells/dispel-magic) is cast on the encoded writing, which turns it back into its normal state.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_endow-attribute", + "fields": { + "name": "Endow Attribute", + "desc": "You touch a creature with a ring that has been etched with symbols representing a particular ability (Strength, Dexterity, and so forth). The creature must make a successful Constitution saving throw or lose one-fifth (rounded down) of its points from that ability score. Those points are absorbed into the ring and stored there for the spell’s duration. If you then use an action to touch the ring to another creature on a later turn, the absorbed ability score points transfer to that creature. Once the points are transferred to another creature, you don’t need to maintain concentration on the spell; the recipient creature retains the transferred ability score points for the remainder of the hour.\n\nThe spell ends if you lose concentration before the transfer takes place, if either the target or the recipient dies, or if either the target or the recipient is affected by a successful [dispel magic](https://api.open5e.com/spells/dispel-magic) spell. When the spell ends, the ability score points return to the original owner. Before then, that creature can’t regain the stolen attribute points, even with greater restoration or comparable magic.\n", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "If you cast this spell using a spell slot of 7th or 8th level, the duration is 8 hours. If you use a 9th‐level spell slot, the duration is 24 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a ring worth at least 200 gp, which the spell consumes", + "material_cost": "200.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_energy-absorption", + "fields": { + "name": "Energy Absorption", + "desc": "A creature you touch has resistance to acid, cold, fire, force, lightning, and thunder damage until the spell ends.\n\nIf the spell is used against an unwilling creature, you must make a melee spell attack with a reach of 5 feet. If the attack hits, for the duration of the spell the affected creature must make a saving throw using its spellcasting ability whenever it casts a spell that deals one of the given damage types. On a failed save, the spell is not cast but its slot is expended; on a successful save, the spell is cast but its damage is halved before applying the effects of saving throws, resistance, and other factors.", + "document": "deepm", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_energy-foreknowledge", + "fields": { + "name": "Energy Foreknowledge", + "desc": "When you cast this spell, you gain resistance to every type of energy listed above that is dealt by the spell hitting you. This resistance lasts until the end of your next turn.\n", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can include one additional ally in its effect for each slot level above 4th. Affected allies must be within 15 feet of you.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_enhance-greed", + "fields": { + "name": "Enhance Greed", + "desc": "You detect precious metals, gems, and jewelry within 60 feet. You do not discern their exact location, only their presence and direction. Their exact location is revealed if you are within 10 feet of the spot.\n\n**Enhance greed** penetrates barriers but is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of dirt or wood.\n", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 1 minute, and another 10 feet can be added to its range, for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_entomb", + "fields": { + "name": "Entomb", + "desc": "You cause slabs of rock to burst out of the ground or other stone surface to form a hollow, 10-foot cube within range. A creature inside the cube when it forms must make a successful Dexterity saving throw or be trapped inside the stone tomb. The tomb is airtight, with enough air for a single Medium or Small creature to breathe for 8 hours. If more than one creature is trapped inside, divide the time evenly between all the occupants. A Large creature counts as four Medium creatures. If the creature is still trapped inside when the air runs out, it begins to suffocate.\n\nThe tomb has AC 18 and 50 hit points. It is resistant to fire, cold, lightning, bludgeoning, and slashing damage, is immune to poison and psychic damage, and is vulnerable to thunder damage. When reduced to 0 hit points, the tomb crumbles into harmless powder.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a chip of granite", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_entropic-damage-field", + "fields": { + "name": "Entropic Damage Field", + "desc": "By twisting a length of silver wire around your finger, you tie your fate to those around you. When you take damage, that damage is divided equally between you and all creatures in range who get a failure on a Charisma saving throw. Any leftover damage that can’t be divided equally is taken by you. Creatures that approach to within 60 feet of you after the spell was cast are also affected. A creature is allowed a new saving throw against this spell each time you take damage, and a successful save ends the spell’s effect on that creature.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a silver wire", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_essence-instability", + "fields": { + "name": "Essence Instability", + "desc": "You cause the target to radiate a harmful aura. Both the target and every creature beginning or ending its turn within 20 feet of the target suffer 2d6 poison damage per round. The target can make a Constitution saving throw each round to negate the damage and end the affliction. Success means the target no longer takes damage from the aura, but the aura still persists around the target for the full duration.\n\nCreatures affected by the aura must make a successful Constitution saving throw each round to negate the damage. The aura moves with the original target and is unaffected by [gust of wind](https://api.open5e.com/spells/gust-of-wind) and similar spells.\n\nThe aura does not detect as magical or poison, and is invisible, odorless, and intangible (though the spell’s presence can be detected on the original target). [Protection from poison](https://api.open5e.com/spells/protection-from-poison) negates the spell’s effects on targets but will not dispel the aura. A foot of metal or stone, two inches of lead, or a force effect such as [mage armor](https://api.open5e.com/spells/mage-armor) or [wall of force](https://api.open5e.com/spells/wall-of-force) will block it.\n", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the aura lasts 1 minute longer and the poison damage increases by 1d6 for each slot level above 5th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_evercold", + "fields": { + "name": "Evercold", + "desc": "You target a creature within the spell’s range, and that creature must make a successful Wisdom saving throw or take 1d6 cold damage. In addition, the target is cursed to feel as if it’s exposed to extreme cold. For the duration of **evercold**, the target must make a successful DC 10 Constitution saving throw at the end of each hour or gain one level of exhaustion. The target has advantage on the hourly saving throws if wearing suitable cold-weather clothing, but it has disadvantage on saving throws against other spells and magic that deal cold damage (regardless of its clothing) for the spell’s duration.\n\nThe spell can be ended by its caster or by [dispel magic](https://api.open5e.com/spells/dispel-magic) or [remove curse](https://api.open5e.com/spells/remove-curse).", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an insect that froze to death", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_exsanguinate", + "fields": { + "name": "Exsanguinate", + "desc": "You cause the body of a creature within range to become engorged with blood or ichor. The target must make a Constitution saving throw. On a successful save, it takes 2d6 bludgeoning damage. On a failed save, it takes 4d6 bludgeoning damage each round, it is incapacitated, and it cannot speak, as it vomits up torrents of blood or ichor. In addition, its hit point maximum is reduced by an amount equal to the damage taken. The target dies if this effect reduces its hit point maximum to 0.\n\nAt the end of each of its turns, a creature can make a Constitution saving throw, ending the effect on a success—except for the reduction of its hit point maximum, which lasts until the creature finishes a long rest.\n", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can target one additional creature for each slot level above 5th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a desiccated horse heart", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_exsanguinating-cloud", + "fields": { + "name": "Exsanguinating Cloud", + "desc": "When you cast this spell, a rose-colored mist billows up in a 20-foot radius, centered on a point you indicate within range, making the area heavily obscured and draining blood from living creatures in the cloud. The cloud spreads around corners. It lasts for the duration or until strong wind disperses it, ending the spell.\n\nThis cloud leaches the blood or similar fluid from creatures in the area. It doesn’t affect undead or constructs. Any creature in the cloud when it’s created or at the start of your turn takes 6d6 necrotic damage and gains one level of exhaustion; a successful Constitution saving throw halves the damage and prevents the exhaustion.", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "point", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "necrotic" + ], + "duration": "5 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_extract-knowledge", + "fields": { + "name": "Extract Knowledge", + "desc": "By touching a recently deceased corpse, you gain one specific bit of knowledge from it that was known to the creature in life. You must form a question in your mind as part of casting the spell; if the corpse has an answer to your question, it reveals the information to you telepathically. The answer is always brief—no more than a sentence—and very specific to the framed question. It doesn’t matter whether the creature was your friend or enemy; the spell compels it to answer in any case.", + "document": "deepm", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a blank page", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_fault-line", + "fields": { + "name": "Fault Line", + "desc": "The ground thrusts sharply upward along a 5-foot-wide, 60‐foot-long line that you designate. All spaces affected by the spell become difficult terrain. In addition, all creatures in the affected area are knocked prone and take 8d6 bludgeoning damage. Creatures that make a successful Dexterity saving throw take half as much damage and are not knocked prone. This spell doesn’t damage permanent structures.", + "document": "deepm", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_feather-field", + "fields": { + "name": "Feather Field", + "desc": "A magical barrier of chaff in the form of feathers appears and protects you. Until the start of your next turn, you have a +5 bonus to AC against ranged attacks by magic weapons.\n", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "When you cast **feather field** using a spell slot of 2nd level or higher, the duration is increased by 1 round for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "fletching from an arrow", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_feather-travel", + "fields": { + "name": "Feather Travel", + "desc": "The target of **feather travel** (along with its clothing and other gear) transforms into a feather and drifts on the wind. The drifting creature has a limited ability to control its travel. It can move only in the direction the wind is blowing and at the speed of the wind. It can, however, shift up, down, or sideways 5 feet per round as if caught by a gust, allowing the creature to aim for an open window or doorway, to avoid a flame, or to steer around an animal or another creature. When the spell ends, the feather settles gently to the ground and transforms back into the original creature.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, two additional creatures can be transformed per slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a feather", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_fey-crown", + "fields": { + "name": "Fey Crown", + "desc": "By channeling the ancient wards of the Seelie Court, you create a crown of five flowers on your head. While wearing this crown, you have advantage on saving throws against spells and other magical effects and are immune to being charmed. As a bonus action, you can choose a creature within 30 feet of you (including yourself). Until the end of its next turn, the chosen creature is invisible and has advantage on saving throws against spells and other magical effects. Each time a chosen creature becomes invisible, one of the blossoms in the crown closes. After the last of the blossoms closes, the spell ends at the start of your next turn and the crown disappears.\n", + "document": "deepm", + "level": 5, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the crown can have one additional flower for each slot level above 5th. One additional flower is required as a material component for each additional flower in the crown.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "five flowers of different colors", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_find-kin", + "fields": { + "name": "Find Kin", + "desc": "You touch one willing creature or make a melee spell attack against an unwilling creature, which is entitled to a Wisdom saving throw. On a failed save, or automatically if the target is willing, you learn the identity, appearance, and location of one randomly selected living relative of the target.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a freshly dug up tree root that is consumed by the spell", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_fire-darts", + "fields": { + "name": "Fire Darts", + "desc": "When this spell is cast on any fire that’s at least as large as a small campfire or cooking fire, three darts of flame shoot out from the fire toward creatures within 30 feet of the fire. Darts can be directed against the same or separate targets as the caster chooses. Each dart deals 4d6 fire damage, or half as much damage if its target makes a successful Dexterity saving throw.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "20 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a fire the size of a small campfire or larger", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_fire-under-the-tongue", + "fields": { + "name": "Fire Under the Tongue", + "desc": "You can ingest a nonmagical fire up to the size of a normal campfire that is within range. The fire is stored harmlessly in your mouth and dissipates without effect if it is not used before the spell ends. You can spit out the stored fire as an action. If you try to hit a particular target, then treat this as a ranged attack with a range of 5 feet. Campfire-sized flames deal 2d6 fire damage, while torch-sized flames deal 1d6 fire damage. Once you have spit it out, the fire goes out immediately unless it hits flammable material that can keep it fed.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "5 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_firewalk", + "fields": { + "name": "Firewalk", + "desc": "The creature you cast **firewalk** on becomes immune to fire damage. In addition, that creature can walk along any burning surface, such as a burning wall or burning oil spread on water, as if it were solid and horizontal. Even if there is no other surface to walk on, the creature can walk along the tops of the flames.\n", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, two additional creatures can be affected for each slot level above 6th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_fist-of-iron", + "fields": { + "name": "Fist of Iron", + "desc": "You transform your naked hand into iron. Your unarmed attacks deal 1d6 bludgeoning damage and are considered magical.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_flame-wave", + "fields": { + "name": "Flame Wave", + "desc": "A rushing burst of fire rips out from you in a rolling wave, filling a 40-foot cone. Each creature in the area must make a Dexterity saving throw. A creature takes 6d8 fire damage and is pushed 20 feet away from you on a failed save; on a successful save, the creature takes half as much damage and isn’t pushed.\n", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of tar, pitch, or oil", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 40, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_flesh-to-paper", + "fields": { + "name": "Flesh to Paper", + "desc": "A willing creature you touch becomes as thin as a sheet of paper until the spell ends. Anything the target is wearing or carrying is also flattened. The target can’t cast spells or attack, and attack rolls against it are made with disadvantage. It has advantage on Dexterity (Stealth) checks while next to a wall or similar flat surface. The target can move through a space as narrow as 1 inch without squeezing. If it occupies the same space as an object or a creature when the spell ends, the creature is shunted to the nearest unoccupied space and takes force damage equal to twice the number of feet it was moved.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_flickering-fate", + "fields": { + "name": "Flickering Fate", + "desc": "You or a creature that you touch can see a few seconds into the future. When the spell is cast, each other creature within 30 feet of the target must make a Wisdom saving throw. Those that fail must declare, in initiative order, what their next action will be. The target of the spell declares his or her action last, after hearing what all other creatures will do. Each creature that declared an action must follow its declaration as closely as possible when its turn comes. For the duration of the spell, the target has advantage on attack rolls, ability checks, and saving throws, and creatures that declared their actions have disadvantage on attack rolls against the target.", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_fluctuating-alignment", + "fields": { + "name": "Fluctuating Alignment", + "desc": "You channel the force of chaos to taint your target’s mind. A target that gets a failure on a Wisdom saving throw must roll 1d20 and consult the Alignment Fluctuation table to find its new alignment, and it must roll again after every minute of the spell’s duration. The target’s alignment stops fluctuating and returns to normal when the spell ends. These changes do not make the affected creature friendly or hostile toward the caster, but they can cause creatures to behave in unpredictable ways.\n ## Alignment Fluctuation \n| D20 | Alignment |\n|-|-|\n| 1-2 | Chaotic good |\n| 3-4 | Chaotic neutral |\n| 5-7 | Chaotic evil |\n| 8-9 | Neutral evil |\n| 10-11 | Lawful evil |\n| 12-14 | Lawful good |\n| 15-16 | Lawful neutral |\n| 17-18 | Neutral good |\n| 19-20 | Neutral |\n\n", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_flurry", + "fields": { + "name": "Flurry", + "desc": "A flurry of snow surrounds you and extends to a 5-foot radius around you. While it lasts, anyone trying to see into, out of, or through the affected area (including you) has disadvantage on Wisdom (Perception) checks and attack rolls.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a fleck of quartz", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_forest-native", + "fields": { + "name": "Forest Native", + "desc": "While in a forest, you touch a willing creature and infuse it with the forest’s energy, creating a bond between the creature and the environment. For the duration of the spell, as long as the creature remains within the forest, its movement is not hindered by difficult terrain composed of natural vegetation. In addition, the creature has advantage on saving throws against environmental effects such as excessive heat or cold or high altitude.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a clump of soil from a forest", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_forest-sanctuary", + "fields": { + "name": "Forest Sanctuary", + "desc": "While in a forest, you create a protective, 200-foot cube centered on a point you can see within range. The atmosphere inside the cube has the lighting, temperature, and moisture that is most ideal for the forest, regardless of the lighting or weather outside the area. The cube is transparent, and creatures and objects can move freely through it. The cube protects the area inside it from storms, strong winds, and floods, including those created by magic such as [control weather](https://api.open5e.com/spells/control-weather)[control water](https://api.open5e.com/spells/control-water), or [meteor swarm](https://api.open5e.com/spells/meteor-swarm). Such spells can’t be cast while the spellcaster is in the cube.\n\nYou can create a permanently protected area by casting this spell at the same location every day for one year.", + "document": "deepm", + "level": 9, + "school": "abjuration", + "higher_level": "", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a bowl of fresh rainwater and a tree branch", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": "cube", + "shape_magnitude": 200, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_foretell-distraction", + "fields": { + "name": "Foretell Distraction", + "desc": "Thanks to your foreknowledge, you know exactly when your foe will take his or her eyes off you. Casting this spell has the same effect as making a successful Dexterity (Stealth) check, provided cover or concealment is available within 10 feet of you. It doesn’t matter whether enemies can see you when you cast the spell; they glance away at just the right moment. You can move up to 10 feet as part of casting the spell, provided you’re able to move (not restrained or grappled or reduced to a speed of less than 10 feet for any other reason). This move doesn’t count as part of your normal movement. After the spell is cast, you must be in a position where you can remain hidden: a lightly obscured space, for example, or a space where you have total cover. Otherwise, enemies see you again immediately and you’re not hidden.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_form-of-the-gods", + "fields": { + "name": "Form of the Gods", + "desc": "By drawing on the energy of the gods, you can temporarily assume the form of your patron’s avatar. Form of the gods transforms you into an entirely new shape and brings about the following changes (summarized below and in the [avatar form](https://api.open5e.com/monsters/avatar-form) stat block).\n* Your size becomes Large, unless you were already at least that big.\n* You gain resistance to nonmagical bludgeoning, piercing, and slashing damage and to one other damage type of your choice.\n* You gain a Multiattack action option, allowing you to make two slam attacks and a bite.\n* Your ability scores change to reflect your new form, as shown in the stat block.\n\nYou remain in this form until you stop concentrating on the spell or until you drop to 0 hit points, at which time you revert to your natural form.", + "document": "deepm", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a holy symbol", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_freeze-blood", + "fields": { + "name": "Freeze Blood", + "desc": "When you cast **freeze blood** as a successful melee spell attack against a living creature with a circulatory system, the creature’s blood freezes. For the spell’s duration, the affected creature’s speed is halved and it takes 2d6 cold damage at the start of each of its turns. If the creature takes bludgeoning damage from a critical hit, the attack’s damage dice are rolled three times instead of twice. At the end of each of its turns, the creature can make a Constitution saving throw, ending the effect on a success.\n\nNOTE: This was previously a 5th-level spell that did 4d10 cold damage.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_freeze-potion", + "fields": { + "name": "Freeze Potion", + "desc": "A blue spark flies from your hand and strikes a potion vial, drinking horn, waterskin, or similar container, instantly freezing the contents. The substance melts normally thereafter and is not otherwise harmed, but it can’t be consumed while it’s frozen.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the range increases by 5 feet for each slot level above 1st.", + "target_type": "object", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_freezing-fog", + "fields": { + "name": "Freezing Fog", + "desc": "The spell creates a 20-foot-radius sphere of mist similar to a [fog cloud](https://api.open5e.com/spells/fog-cloud) spell centered on a point you can see within range. The cloud spreads around corners, and the area it occupies is heavily obscured. A wind of moderate or greater velocity (at least 10 miles per hour) disperses it in 1 round. The fog is freezing cold; any creature that ends its turn in the area must make a Constitution saving throw. It takes 2d6 cold damage and gains one level of exhaustion on a failed save, or takes half as much damage and no exhaustion on a successful one.\n", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "point", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "cold" + ], + "duration": "5 minutes", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_frenzied-bolt", + "fields": { + "name": "Frenzied Bolt", + "desc": "You direct a bolt of rainbow colors toward a creature of your choice within range. If the bolt hits, the target takes 3d8 damage, of a type determined by rolling on the Random Damage Type table. If your attack roll (not the adjusted result) was odd, the bolt leaps to a new target of your choice within range that has not already been targeted by frenzied bolt, requiring a new spell attack roll to hit. The bolt continues leaping to new targets until you roll an even number on your spell attack roll, miss a target, or run out of potential targets. You and your allies are legal targets for this spell if you are particularly lucky—or unlucky.", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create an additional bolt for each slot level above 2nd. Each potential target can be hit only once by each casting of the spell, not once per bolt.\n \n **Random Damage Type** \n \n| d10 | Damage Type | \n|--------------|---------| \n| 1 | Acid | \n| 2 | Cold | \n| 3 | Fire | \n| 4 | Force | \n| 5 | Lightning | \n| 6 | Necrotic | \n| 7 | Poision | \n| 8 | Psychic | \n| 9 | Radiant | \n| 10 | Thunder | \n \n", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_frostbite", + "fields": { + "name": "Frostbite", + "desc": "Biting cold settles onto a creature you can see. The creature must make a Constitution saving throw. On a failed save, the creature takes 4d8 cold damage. In addition, for the duration of the spell, the creature’s speed is halved, it has disadvantage on attack rolls and ability checks, and it takes another 4d8 cold damage at the start of each of its turns.\n\nAn affected creature can repeat the saving throw at the start of each of its turns. The effect ends when the creature makes its third successful save.\n\nCreatures that are immune to cold damage are unaffected by **frostbite**.\n", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can target two additional creatures for each slot level above 5th.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a strip of dried flesh that has been frozen at least once", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d8", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_frostbitten-fingers", + "fields": { + "name": "Frostbitten Fingers", + "desc": "You fire a ray of intense cold that instantly induces frostbite. With a successful ranged spell attack, this spell causes one of the target’s hands to lose sensation. When the spell is cast, the target must make a successful Dexterity saving throw to maintain its grip on any object with the affected hand. The saving throw must be repeated every time the target tries to manipulate, wield, or pick up an item with the affected hand. Additionally, the target has disadvantage on Dexterity checks or Strength checks that require the use of both hands.\n\nAfter every 10 minutes of being affected by frostbitten fingers, the target must make a successful Constitution saving throw, or take 1d6 cold damage and lose one of the fingers on the affected hand, beginning with the pinkie.", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_frozen-razors", + "fields": { + "name": "Frozen Razors", + "desc": "Razor-sharp blades of ice erupt from the ground or other surface, filling a 20-foot cube centered on a point you can see within range. For the duration, the area is lightly obscured and is difficult terrain. A creature that moves more than 5 feet into or inside the area on a turn takes 2d6 slashing damage and 3d6 cold damage, or half as much damage if it makes a successful Dexterity saving throw. A creature that takes cold damage from frozen razors is reduced to half speed until the start of its next turn.\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "water from a melted icicle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "slashing" + ], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_furious-hooves", + "fields": { + "name": "Furious Hooves", + "desc": "You enhance the feet or hooves of a creature you touch, imbuing it with power and swiftness. The target doubles its walking speed or increases it by 30 feet, whichever addition is smaller. In addition to any attacks the creature can normally make, this spell grants two hoof attacks, each of which deals bludgeoning damage equal to 1d6 + plus the target’s Strength modifier (or 1d8 if the target of the spell is Large). For the duration of the spell, the affected creature automatically deals this bludgeoning damage to the target of its successful shove attack.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a nail", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_fusillade-of-ice", + "fields": { + "name": "Fusillade of Ice", + "desc": "You unleash a spray of razor-sharp ice shards. Each creature in the 30-foot cone takes 4d6 cold damage and 3d6 piercing damage, or half as much damage with a successful Dexterity saving throw.\n", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by your choice of 1d6 cold damage or 1d6 piercing damage for each slot level above 4th. You can make a different choice (cold damage or piercing damage) for each slot level above 4th. Casting this spell with a spell slot of 6th level or higher increases the range to a 60-foot cone.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dagger shaped like an icicle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "7d6", + "damage_types": [ + "cold", + "piercing" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_gear-barrage", + "fields": { + "name": "Gear Barrage", + "desc": "You create a burst of magically propelled gears. Each creature within a 60-foot cone takes 3d8 slashing damage, or half as much damage with a successful Dexterity saving throw. Constructs have disadvantage on the saving throw.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of gears and sprockets worth 5 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "slashing" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 60, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ghoul-kings-cloak", + "fields": { + "name": "Ghoul King’s Cloak", + "desc": "You touch a creature, giving it some of the power of a ghoul king. The target gains the following benefits for the duration:\n* Its Armor Class increases by 2, to a maximum of 20.\n* When it uses the Attack action to make a melee weapon attack or a ranged weapon attack, it can make one additional attack of the same kind.\n* It is immune to necrotic damage and radiant damage.\n* It can’t be reduced to less than 1 hit point.", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "When you cast this spell using a 9th-level spell slot, the spell lasts for 10 minutes and doesn’t require concentration.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_gird-the-spirit", + "fields": { + "name": "Gird the Spirit", + "desc": "Your magic protects the target creature from the lifesapping energies of the undead. For the duration, the target has immunity to effects from undead creatures that reduce its ability scores, such as a shadow's Strength Drain, or its hit point maximum, such as a specter's Life Drain. This spell doesn't prevent damage from those attacks; it prevents only the reduction in ability score or hit point maximum.", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_glacial-cascade", + "fields": { + "name": "Glacial Cascade", + "desc": "By harnessing the power of ice and frost, you emanate pure cold, filling a 30-foot-radius sphere. Creatures other than you in the sphere take 10d8 cold damage, or half as much damage with a successful Constitution saving throw. A creature killed by this spell is transformed into ice, leaving behind no trace of its original body.", + "document": "deepm", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of alexandrite", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_glacial-fog", + "fields": { + "name": "Glacial Fog", + "desc": "As you cast this spell, a 30-foot-radius sphere centered on a point within range becomes covered in a frigid fog. Each creature that is in the area at the start of its turn while the spell remains in effect must make a Constitution saving throw. On a failed save, a creature takes 12d6 cold damage and gains one level of exhaustion, and it has disadvantage on Perception checks until the start of its next turn. On a successful save, the creature takes half the damage and ignores the other effects.\n\nStored devices and tools are all frozen by the fog: crossbow mechanisms become sluggish, weapons are stuck in scabbards, potions turn to ice, bag cords freeze together, and so forth. Such items require the application of heat for 1 round or longer in order to become useful again.\n", + "document": "deepm", + "level": 7, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 1d6 for each slot level above 7th.", + "target_type": "point", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "crystalline statue of a polar bear worth at least 25 gp", + "material_cost": "25.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "12d6", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_gliding-step", + "fields": { + "name": "Gliding Step", + "desc": "Provided you’re not carrying more of a load than your carrying capacity permits, you can walk on the surface of snow rather than wading through it, and you ignore its effect on movement. Ice supports your weight no matter how thin it is, and you can travel on ice as if you were wearing ice skates. You still leave tracks normally while under these effects.\n", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 10 minutes for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_glimpse-of-the-void", + "fields": { + "name": "Glimpse of the Void", + "desc": "Muttering Void Speech, you force images of terror and nonexistence upon your foes. Each creature in a 30-foot cube centered on a point within range must make an Intelligence saving throw. On a failed save, the creature goes insane for the duration. While insane, a creature takes no actions other than to shriek, wail, gibber, and babble unintelligibly. The GM controls the creature’s movement, which is erratic.", + "document": "deepm", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a scrap of parchment with Void glyph scrawlings", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 30, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_gloomwrought-barrier", + "fields": { + "name": "Gloomwrought Barrier", + "desc": "When you cast this spell, you erect a barrier of energy drawn from the realm of death and shadow. This barrier is a wall 20 feet high and 60 feet long, or a ring 20 feet high and 20 feet in diameter. The wall is transparent when viewed from one side of your choice and translucent—lightly obscuring the area beyond it—from the other. A creature that tries to move through the wall must make a successful Wisdom saving throw or stop in front of the wall and become frightened until the start of the creature’s next turn, when it can try again to move through. Once a creature makes a successful saving throw against the wall, it is immune to the effect of this barrier.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of obsidian", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_gluey-globule", + "fields": { + "name": "Gluey Globule", + "desc": "You make a ranged spell attack to hurl a large globule of sticky, magical glue at a creature within 120 feet. If the attack hits, the target creature is restrained. A restrained creature can break free by using an action to make a successful Strength saving throw. When the creature breaks free, it takes 2d6 slashing damage from the glue tearing its skin. If your ranged spell attack roll was a critical hit or exceeded the target’s AC by 5 or more, the Strength saving throw is made with disadvantage. The target can also be freed by an application of universal solvent or by taking 20 acid damage. The glue dissolves when the creature breaks free or at the end of 1 minute.\n\nAlternatively, **gluey globule** can also be used to glue an object to a solid surface or to another object. In this case, the spell works like a single application of [sovereign glue](https://api.open5e.com/spells/sovereign-glue) and lasts for 1 hour.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of glue", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": true, + "damage_roll": "2d6", + "damage_types": [ + "slashing" + ], + "duration": "1 minute or 1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_glyph-of-shifting", + "fields": { + "name": "Glyph of Shifting", + "desc": "You create a hidden glyph by tracing it on a surface or object that you touch. When you cast the spell, you can also choose a location that's known to you, within 5 miles, and on the same plane of existence, to serve as the destination for the glyph's shifting effect.\n The glyph is triggered when it's touched by a creature that's not aware of its presence. The triggering creature must make a successful Wisdom saving throw or be teleported to the glyph's destination. If no destination was set, the creature takes 4d4 force damage and is knocked prone.\n The glyph disappears after being triggered or when the spell's duration expires.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, its duration increases by 24 hours and the maximum distance to the destination increases by 5 miles for each slot level above 2nd.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "powdered diamond worth at least 50 gp, which the spell consumes", + "material_cost": "50.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "4d4", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_goats-hoof-charm", + "fields": { + "name": "Goat's Hoof Charm", + "desc": "A creature you touch traverses craggy slopes with the surefootedness of a mountain goat. When ascending a slope that would normally be difficult terrain for it, the target can move at its full speed instead. The target also gains a +2 bonus on Dexterity checks and saving throws to prevent falling, to catch a ledge or otherwise stop a fall, or to move along a narrow ledge.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can increase the duration by 1 minute, or you can affect one additional creature, for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a goat’s hoof", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_going-in-circles", + "fields": { + "name": "Going in Circles", + "desc": "You make natural terrain in a 1-mile cube difficult to traverse. A creature in the affected area has disadvantage on Wisdom (Survival) checks to follow tracks or travel safely through the area as paths through the terrain seem to twist and turn nonsensically. The terrain itself isn't changed, only the perception of those inside it. A creature who succeeds on two Wisdom (Survival) checks while within the terrain discerns the illusion for what it is and sees the illusory twists and turns superimposed on the terrain. A creature that reenters the area after exiting it before the spell ends is affected by the spell even if it previously succeeded in traversing the terrain. A creature with truesight can see through the illusion and is unaffected by the spell. A creature that casts find the path automatically succeeds in discovering a way out of the terrain.\n When you cast this spell, you can designate a password. A creature that speaks the password as it enters the area automatically sees the illusion and is unaffected by the spell.\n If you cast this spell on the same spot every day for one year, the illusion lasts until it is dispelled.", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Sight", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of the target terrain", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_gordolays-pleasant-aroma", + "fields": { + "name": "Gordolay’s Pleasant Aroma", + "desc": "You create an intoxicating aroma that fills the area within 30 feet of a point you can see within range. Creatures in this area smell something they find so pleasing that it’s distracting. Each creature in the area that makes an attack roll must first make a Wisdom saving throw; on a failed save, the attack is made with disadvantage. Only a creature’s first attack in a round is affected this way; subsequent attacks are resolved normally. On a successful save, a creature becomes immune to the effect of this particular scent, but they can be affected again by a new casting of the spell.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "a few flower petals or a piece of fruit, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_grasp-of-the-tupilak", + "fields": { + "name": "Grasp of the Tupilak", + "desc": "This spell functions only against an arcane or divine spellcaster that prepares spells in advance and that has at least one unexpended spell slot of 6th level or lower. If you make a successful melee attack against such a creature before the spell ends, in addition to the usual effect of that attack, the target takes 2d4 necrotic damage and one or more of the victim’s available spell slots are transferred to you, to be used as your own. Roll a d6; the result equals the total levels of the slots transferred. Spell slots of the highest possible level are transferred before lower-level slots.\n\nFor example, if you roll a 5 and the target has at least one 5th-level spell slot available, that slot transfers to you. If the target’s highest available spell slot is 3rd level, then you might receive a 3rd-level slot and a 2nd-level slot, or a 3rd-level slot and two 1st-level slots if no 2nd-level slot is available.\n\nIf the target has no available spell slots of an appropriate level—for example, if you roll a 2 and the target has expended all of its 1st- and 2nd-level spell slots—then **grasp of the tupilak** has no effect, including causing no necrotic damage. If a stolen spell slot is of a higher level than you’re able to use, treat it as of the highest level you can use.\n\nUnused stolen spell slots disappear, returning whence they came, when you take a long rest or when the creature you stole them from receives the benefit of [remove curse](https://api.open5e.com/spells/remove-curse)[greater restoration](https://api.open5e.com/greater-restoration), or comparable magic.", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "tupilak idol", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "necrotic" + ], + "duration": "1 hour or until triggered", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_greater-maze", + "fields": { + "name": "Greater Maze", + "desc": "This spell functions as [maze](https://api.open5e.com/spells/maze), but the target must make a Dexterity saving throw each time it starts its turn in the maze. The target takes 4d6 psychic damage on a failed save, or half as much damage on a success.\n\nEscaping this maze is especially difficult. To do so, the target must use an action to make a DC 20 Intelligence check. It escapes when it makes its second successful check.", + "document": "deepm", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "psychic" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_greater-seal-of-sanctuary", + "fields": { + "name": "Greater Seal of Sanctuary", + "desc": "You inscribe an angelic seal on the ground, the floor, or other solid surface of a structure. The seal creates a spherical sanctuary with a radius of 100 feet, centered on the seal. For the duration, aberrations, elementals, fey, fiends, and undead that approach to within 5 feet of the boundary know they are about to come into contact with a deadly barrier. If such a creature moves so as to touch the boundary, or tries to cross the boundary by any means, including teleportation and extradimensional travel, it must make a Charisma saving throw. On a failed save, it takes 15d8 radiant damage, is repelled to 5 feet outside the boundary, and can’t target anything inside the boundary with attacks, spells, or abilities until the spell ends. On a successful save, the creature takes half as much radiant damage and can cross the boundary. If the creature is a fiend that isn’t on its home plane, it is immediately destroyed (no saving throw) instead of taking damage.\n\nAberrations, elementals, fey, and undead that are within 100 feet of the seal (inside the boundary) have disadvantage on ability checks, attack rolls, and saving throws, and each such creature takes 4d8 radiant damage at the start of its turn.\n\nCreatures other than aberrations, elementals, fey, fiends, and undead can’t be charmed or frightened while within 100 feet of the seal.\n\nThe seal has AC 18, 75 hit points, resistance to bludgeoning, piercing, and slashing damage, and immunity to psychic and poison damage. Ranged attacks against the seal are made with disadvantage. If it is scribed on the surface of an object that is later destroyed (such as a wooden door), the seal is not damaged and remains in place, perhaps suspended in midair. The spell ends only if the seal itself is reduced to 0 hit points.", + "document": "deepm", + "level": 9, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "incense and special inks worth 500 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "15d8", + "damage_types": [ + "radiant" + ], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_green-decay", + "fields": { + "name": "Green Decay", + "desc": "Your touch inflicts a nauseating, alien rot. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with the supernatural disease green decay (see below), and creatures within 15 feet of the target who can see it must make a successful Constitution saving throw or become poisoned until the end of their next turn.\n\nYou lose concentration on this spell if you can’t see the target at the end of your turn.\n\n***Green Decay.*** The flesh of a creature that has this disease is slowly consumed by a virulent extraterrestrial fungus. While the disease persists, the creature has disadvantage on Charisma and Wisdom checks and on Wisdom saving throws, and it has vulnerability to acid, fire, and necrotic damage. An affected creature must make a Constitution saving throw at the end of each of its turns. On a failed save, the creature takes 1d6 necrotic damage, and its hit point maximum is reduced by an amount equal to the necrotic damage taken. If the creature gets three successes on these saving throws before it gets three failures, the disease ends immediately (but the damage and the hit point maximum reduction remain in effect). If the creature gets three failures on these saving throws before it gets three successes, the disease lasts for the duration of the spell, and no further saving throws are allowed.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "1d6", + "damage_types": [ + "necrotic" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_grudge-match", + "fields": { + "name": "Grudge Match", + "desc": "This spell affects any creatures you designate within range, as long as the group contains an equal number of allies and enemies. If the number of allies and enemies targeted isn’t the same, the spell fails. For the duration of the spell, each target gains a +2 bonus on saving throws, attack rolls, ability checks, skill checks, and weapon damage rolls made involving other targets of the spell. All affected creatures can identify fellow targets of the spell by sight. If an affected creature makes any of the above rolls against a non-target, it takes a -2 penalty on that roll.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration increases by 1 round for each slot level above 2nd.", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_guest-of-honor", + "fields": { + "name": "Guest of Honor", + "desc": "You whisper words of encouragement, and a creature that you touch gains confidence along with approval from strangers. For the spell’s duration, the target puts its best foot forward and strangers associate the creature with positive feelings. The target adds 1d4 to all Charisma (Persuasion) checks made to influence the attitudes of others.\n", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the effect lasts for an additional 10 minutes for each slot level above 1st.\n\n***Ritual Focus.*** If you expend your ritual focus, the effect lasts for 24 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a signet ring worth 25 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_guiding-star", + "fields": { + "name": "Guiding Star", + "desc": "By observing the stars or the position of the sun, you are able to determine the cardinal directions, as well as the direction and distance to a stated destination. You can’t become directionally disoriented or lose track of the destination. The spell doesn’t, however, reveal the best route to your destination or warn you about deep gorges, flooded rivers, or other impassable or treacherous terrain.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_hamstring", + "fields": { + "name": "Hamstring", + "desc": "You create an arrow of eldritch energy and send it at a target you can see within range. Make a ranged spell attack against the target. On a hit, the target takes 1d4 force damage, and it can’t take reactions until the end of its next turn.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "The spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d4", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_hard-heart", + "fields": { + "name": "Hard Heart", + "desc": "You imbue your touch with the power to make a creature aloof, hardhearted, and unfeeling. The creature you touch as part of casting this spell must make a Wisdom saving throw; a creature can choose to fail this saving throw unless it’s currently charmed. On a successful save, this spell fails. On a failed save, the target becomes immune to being charmed for the duration; if it’s currently charmed, that effect ends. In addition, Charisma checks against the target are made with disadvantage for the spell’s duration.\n", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd or 4th level, the duration increases to 1 hour. If you use a spell slot of 5th level or higher, the duration is 8 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an iron key", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_harry", + "fields": { + "name": "Harry", + "desc": "You instill an irresistible sense of insecurity and terror in the target. The target must make a Wisdom saving throw. On a failed save, the target has disadvantage on Dexterity (Stealth) checks to avoid your notice and is frightened of you while you are within its line of sight. While you are within 1 mile of the target, you have advantage on Wisdom (Survival) checks to track the target, and the target can't take a long rest, terrified you are just around the corner. The target can repeat the saving throw once every 10 minutes, ending the spell on a success.\n On a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "When you cast this spell with a 6th-level spell slot, the duration is concentration, up to 8 hours and the target can repeat the saving throw once each hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 24 hours, and the target can repeat the saving throw every 8 hours.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a bit of fur from a game animal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_harrying-hounds", + "fields": { + "name": "Harrying Hounds", + "desc": "When you cast this spell, choose a direction (north, south, northeast, or the like). Each creature in a 20-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it. When an affected creature travels, it travels at a fast pace in the opposite direction of the direction you chose as it believes a pack of dogs or wolves follows it from the chosen direction.\n When an affected creature isn't traveling, it is frightened of your chosen direction. The affected creature occasionally hears howls or sees glowing eyes in the darkness at the edge of its vision in that direction. An affected creature will not stop at a destination, instead pacing half-circles around the destination until the effect ends, terrified the pack will overcome it if it stops moving.\n An affected creature can make a Wisdom saving throw at the end of each 4-hour period, ending the effect on itself on a success. An affected creature moves along the safest available route unless it has nowhere to move, such as if it arrives at the edge of a cliff. When an affected creature can't safely move in the opposite direction of your chosen direction, it cowers in place, defending itself from hostile creatures but otherwise taking no actions. In such circumstances, the affected creature can repeat the saving throw every minute, ending the effect on itself on a success. The spell's effect is suspended when an affected creature is engaged in combat, allowing it to move as necessary to face hostile creatures.", + "document": "deepm", + "level": 5, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the duration increases by 4 hours for each slot level above 5th. If an affected creature travels for more than 8 hours, it risks exhaustion as if on a forced march.", + "target_type": "creature", + "range": "180 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a tuft of fur from a hunting dog", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_harsh-light-of-summers-glare", + "fields": { + "name": "Harsh Light of Summer’s Glare", + "desc": "You emit a burst of brilliant light, which bears down oppressively upon all creatures within range that can see you. Creatures with darkvision that fail a Constitution saving throw are blinded and stunned. Creatures without darkvision that fail a Constitution saving throw are blinded. This is not a gaze attack, and it cannot be avoided by averting one’s eyes or wearing a blindfold.", + "document": "deepm", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_heart-seeking-arrow", + "fields": { + "name": "Heart-Seeking Arrow", + "desc": "The next time you make a ranged weapon attack during the spell's duration, the weapon's ammunition—or the weapon itself if it's a thrown weapon—seeks its target's vital organs. Make the attack roll as normal. On a hit, the weapon deals an extra 6d6 damage of the same type dealt by the weapon, or half as much damage on a miss as it streaks unerringly toward its target. If this attack reduces the target to 0 hit points, the target has disadvantage on its next death saving throw, and, if it dies, it can be restored to life only by means of a true resurrection or a wish spell. This spell has no effect on undead or constructs.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the extra damage on a hit increases by 1d6 for each slot level above 4th.", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_heart-to-heart", + "fields": { + "name": "Heart to Heart", + "desc": "For the duration, you and the creature you touch remain stable and unconscious if reduced to 0 hit points while the other has 1 or more hit points. If you touch a dying creature, it becomes stable but remains unconscious while it has 0 hit points. If both of you are reduced to 0 hit points, you must both make death saving throws, as normal. If you or the target regain hit points, either of you can choose to split those hit points between the two of you if both of you are within 60 feet of each other.", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of your blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_heartache", + "fields": { + "name": "Heartache", + "desc": "You force an enemy to experience pangs of unrequited love and emotional distress. These feelings manifest with such intensity that the creature takes 5d6 psychic damage on a failed Charisma saving throw, or half the damage on a successful save.\n", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target an additional enemy for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a silver locket", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "5d6", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_heartstop", + "fields": { + "name": "Heartstop", + "desc": "You slow the beating of a willing target’s heart to the rate of one beat per minute. The creature’s breathing almost stops. To a casual or brief observer, the subject appears dead. At the end of the spell, the creature returns to normal with no ill effects.", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_heartstrike", + "fields": { + "name": "Heartstrike", + "desc": "The spirits of ancient archers carry your missiles straight to their targets. You have advantage on ranged weapon attacks until the start of your next turn, and you can ignore penalties for your enemies having half cover or three-quarters cover, and for an area being lightly obscured, when making those attacks.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an arrow, bolt, or other missile", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_heavenly-crown", + "fields": { + "name": "Heavenly Crown", + "desc": "A glowing, golden crown appears on your head and sheds dim light in a 30-foot radius. When you cast the spell (and as a bonus action on subsequent turns, until the spell ends), you can target one willing creature within 30 feet of you that you can see. If the target can hear you, it can use its reaction to make one melee weapon attack and then move up to half its speed, or vice versa.", + "document": "deepm", + "level": 6, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small golden crown worth 50 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_hedrens-birds-of-clay", + "fields": { + "name": "Hedren’s Birds of Clay", + "desc": "You create a number of clay pigeons equal to 1d4 + your spellcasting modifier (minimum of one) that swirl around you. When you are the target of a ranged weapon attack or a ranged spell attack and before the attack roll is made, you can use your reaction to shout “Pull!” When you do, one clay pigeon maneuvers to block the incoming attack. If the attack roll is less than 10 + your proficiency bonus, the attack misses. Otherwise, make a check with your spellcasting ability modifier and compare it to the attack roll. If your roll is higher, the attack is intercepted and has no effect. Regardless of whether the attack is intercepted, one clay pigeon is expended. The spell ends when the last clay pigeon is used.\n", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, add 1 to your to your roll for each slot level above 3rd when determining if an attack misses or when making a check to intercept the attack.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a clay figurine shaped like a bird", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_hematomancy", + "fields": { + "name": "Hematomancy", + "desc": "You can learn information about a creature whose blood you possess. The target must make a Wisdom saving throw. If the target knows you’re casting the spell, it can fail the saving throw voluntarily if it wants you to learn the information. On a successful save, the target isn’t affected, and you can’t use this spell against it again for 24 hours. On a failed save, or if the blood belongs to a dead creature, you learn the following information:\n* The target’s most common name (if any).\n* The target’s creature type (and subtype, if any), gender, and which of its ability scores is highest (though not the exact numerical score).\n* The target’s current status (alive, dead, sick, wounded, healthy, etc.).\n* The circumstances of the target shedding the blood you’re holding (bleeding wound, splatter from an attack, how long ago it was shed, etc.).\nAlternatively, you can forgo all of the above information and instead use the blood as a beacon to track the target. For 1 hour, as long as you are on the same plane of existence as the creature, you know the direction and distance to the target’s location at the time you cast this spell. While moving toward the location, if you are presented with a choice of paths, the spell automatically indicates which path provides the shortest and most direct route to the location.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of a creature’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_heros-steel", + "fields": { + "name": "Hero's Steel", + "desc": "You infuse the metal of a melee weapon you touch with the fearsome aura of a mighty hero. The weapon’s wielder has advantage on Charisma (Intimidation) checks made while aggressively brandishing the weapon. In addition, an opponent that currently has 30 or fewer hit points and is struck by the weapon must make a successful Charisma saving throw or be stunned for 1 round. If the creature has more than 30 hit points but fewer than the weapon’s wielder currently has, it becomes frightened instead; a frightened creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a successful save. A creature that succeeds on the saving throw is immune to castings of this spell on the same weapon for 24 hours.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a warrior's amulet worth 5 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_hide-in-ones-shadow", + "fields": { + "name": "Hide in One’s Shadow", + "desc": "When you touch a willing creature with a piece of charcoal while casting this spell, the target and everything it carries blends into and becomes part of the target’s shadow, which remains discernible, although its body seems to disappear. The shadow is incorporeal, has no weight, and is immune to all but psychic and radiant damage. The target remains aware of its surroundings and can move, but only as a shadow could move—flowing along surfaces as if the creature were moving normally. The creature can step out of the shadow at will, resuming its physical shape in the shadow’s space and ending the spell.\n\nThis spell cannot be cast in an area devoid of light, where a shadow would not normally appear. Even a faint light source, such as moonlight or starlight, is sufficient. If that light source is removed, or if the shadow is flooded with light in such a way that the physical creature wouldn’t cast a shadow, the spell ends and the creature reappears in the shadow’s space.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "charcoal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "3 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_hoarfrost", + "fields": { + "name": "Hoarfrost", + "desc": "A melee weapon you are holding is imbued with cold. For the duration, a rime of frost covers the weapon and light vapor rises from it if the temperature is above freezing. The weapon becomes magical and deals an extra 1d4 cold damage on a successful hit. The spell ends after 1 minute, or earlier if you make a successful attack with the weapon or let go of it.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "The spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a melee weapon", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_hobble", + "fields": { + "name": "Hobble", + "desc": "You create an ethereal trap in the space of a creature you can see within range. The target must succeed on a Dexterity saving throw or its speed is halved until the end of its next turn.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a broken rabbit’s foot", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_hobble-mount", + "fields": { + "name": "Hobble Mount", + "desc": "When you cast **hobble mount** as a successful melee spell attack against a horse, wolf, or other four-legged or two-legged beast being ridden as a mount, that beast is disabled so that it can’t move at its normal speed without incurring injury. An affected creature that moves more than half its base speed in a turn takes 2d6 bludgeoning damage.\n\nThis spell has no effect on a creature that your GM deems to not be a mount.\n", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 2d6 for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_holy-ground", + "fields": { + "name": "Holy Ground", + "desc": "You invoke divine powers to bless the ground within 60 feet of you. Creatures slain in the affected area cannot be raised as undead by magic or by the abilities of monsters, even if the corpse is later removed from the area. Any spell of 4th level or lower that would summon or animate undead within the area fails automatically. Such spells cast with spell slots of 5th level or higher function normally.\n", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the level of spells that are prevented from functioning increases by 1 for each slot level above 5th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of holy water that is consumed in the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_hone-blade", + "fields": { + "name": "Hone Blade", + "desc": "You magically sharpen the edge of any bladed weapon or object you are touching. The target weapon gets a +1 bonus to damage on its next successful hit.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a chip of whetstone or lodestone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_hunger-of-leng", + "fields": { + "name": "Hunger of Leng", + "desc": "You curse a creature that you can see in range with an insatiable, ghoulish appetite. If it has a digestive system, the creature must make a successful Wisdom saving throw or be compelled to consume the flesh of living creatures for the duration.\n\nThe target gains a bite attack and moves to and attacks the closest creature that isn’t an undead or a construct. The target is proficient with the bite, and it adds its Strength modifier to the attack and damage rolls. The damage is piercing and the damage die is a d4. If the target is larger than Medium, its damage die increases by 1d4 for each size category it is above Medium. In addition, the target has advantage on melee attack rolls against any creature that doesn’t have all of its hit points.\n\nIf there isn’t a viable creature within range for the target to attack, it deals piercing damage to itself equal to 2d4 + its Strength modifier. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. If the target has two consecutive failures, **hunger of Leng** lasts its full duration with no further saving throws allowed.", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of salt and a drop of the caster’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_hunters-endurance", + "fields": { + "name": "Hunter's Endurance", + "desc": "You call on the land to sustain you as you hunt your quarry. Describe or name a creature that is familiar to you. If you aren't familiar with the target creature, you must use a fingernail, lock of hair, bit of fur, or drop of blood from it as a material component to target that creature with this spell. Until the spell ends, you have advantage on all Wisdom (Perception) and Wisdom (Survival) checks to find and track the target, and you must actively pursue the target as if under a geas. In addition, you don't suffer from exhaustion levels you gain from pursuing your quarry, such as from lack of rest or environmental hazards between you and the target, while the spell is active. When the spell ends, you suffer from all levels of exhaustion that were suspended by the spell. The spell ends only after 24 hours, when the target is dead, when the target is on a different plane, or when the target is restrained in your line of sight.", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a fingernail, lock of hair, bit of fur, or drop of blood from the target, if unfamiliar", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_hunting-stand", + "fields": { + "name": "Hunting Stand", + "desc": "You make a camouflaged shelter nestled in the branches of a tree or among a collection of stones. The shelter is a 10-foot cube centered on a point within range. It can hold as many as nine Medium or smaller creatures. The atmosphere inside the shelter is comfortable and dry, regardless of the weather outside. The shelter's camouflage provides a modicum of concealment to its inhabitants; a creature outside the shelter has disadvantage on Wisdom (Perception) and Intelligence (Investigation) checks to detect or locate a creature within the shelter.", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a crude model of the stand", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ice-fortress", + "fields": { + "name": "Ice Fortress", + "desc": "A gleaming fortress of ice springs from a square area of ground that you can see within range. It is a 10-foot cube (including floor and roof). The fortress can’t overlap any other structures, but any creatures in its space are harmlessly lifted up as the ice rises into position. The walls are made of ice (AC 13), have 120 hit points each, and are immune to cold, necrotic, poison, and psychic damage. Reducing a wall to 0 hit points destroys it and has a 50 percent chance to cause the roof to collapse. A damaged wall can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis.\n\nEach wall has two arrow slits. One wall also includes an ice door with an [arcane lock](https://api.open5e.com/spells/arcane-lock). You designate at the time of the fort’s creation which creatures can enter the fortification. The door has AC 18 and 60 hit points, or it can be broken open with a successful DC 25 Strength (Athletics) check (DC 15 if the [arcane lock](https://api.open5e.com/spells/arcane-lock) is dispelled).\n\nThe fortress catches and reflects light, so that creatures outside the fortress who rely on sight have disadvantage on Perception checks and attack rolls made against those within the fortress if it’s in an area of bright sunlight.\n", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can increase the length or width of the fortification by 5 feet for every slot level above 5th. You can make a different choice (width or length) for each slot level above 5th.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a miniature keep carved from ice or glass that is consumed in the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled or destroyed", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ice-hammer", + "fields": { + "name": "Ice Hammer", + "desc": "When you cast **ice hammer**, a warhammer fashioned from ice appears in your hands. This weapon functions as a standard warhammer in all ways, and it deals an extra 1d10 cold damage on a hit. You can drop the warhammer or give it to another creature.\n\nThe warhammer melts and is destroyed when it or its user accumulates 20 or more fire damage, or when the spell ends.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional hammer for each slot level above 2nd. Alternatively, you can create half as many hammers (round down), but each is oversized (1d10 bludgeoning damage, or 1d12 if wielded with two hands, plus 2d8 cold damage). Medium or smaller creatures have disadvantage when using oversized weapons, even if they are proficient with them.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a miniature hammer carved from ice or glass", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ice-soldiers", + "fields": { + "name": "Ice Soldiers", + "desc": "You pour water from the vial and cause two [ice soldiers](https://api.open5e.com/monsters/ice-soldier) to appear within range. The ice soldiers cannot form if there is no space available for them. The ice soldiers act immediately on your turn. You can mentally command them (no action required by you) to move and act where and how you desire. If you command an ice soldier to attack, it attacks that creature exclusively until the target is dead, at which time the soldier melts into a puddle of water. If an ice soldier moves farther than 30 feet from you, it immediately melts.\n", + "document": "deepm", + "level": 7, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you create one additional ice soldier.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "vial of water", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_icicle-daggers", + "fields": { + "name": "Icicle Daggers", + "desc": "When you cast this spell, three icicles appear in your hand. Each icicle has the same properties as a dagger but deals an extra 1d4 cold damage on a hit.\n\nThe icicle daggers melt a few seconds after leaving your hand, making it impossible for other creatures to wield them. If the surrounding temperature is at or below freezing, the daggers last for 1 hour. They melt instantly if you take 10 or more fire damage.\n", + "document": "deepm", + "level": 1, + "school": "conjuration", + "higher_level": "If you cast this spell using a spell slot of 2nd level or higher, you can create two additional daggers for each slot level above 1st. If you cast this spell using a spell slot of 4th level or higher, daggers that leave your hand don’t melt until the start of your next turn.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a miniature dagger shaped like an icicle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous or special", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_icy-grasp-of-the-void", + "fields": { + "name": "Icy Grasp of the Void", + "desc": "You summon the cold, inky darkness of the Void into being around a creature that you can see. The target takes 10d10 cold damage and is restrained for the duration; a successful Constitution saving throw halves the damage and negates the restrained condition. A restrained creature gains one level of exhaustion at the start of each of its turns. Creatures immune to cold and that do not breathe do not gain exhaustion. A creature restrained in this way can repeat the saving throw at the end of each of its turns, ending the spell on a success.", + "document": "deepm", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d10", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_icy-manipulation", + "fields": { + "name": "Icy Manipulation", + "desc": "One creature you can see within range must make a Constitution saving throw. On a failed save, the creature is petrified (frozen solid). A petrified creature can repeat the saving throw at the end of each of its turns, ending the effect on itself if it makes two successful saves. If a petrified creature gets two failures on the saving throw (not counting the original failure that caused the petrification), the petrification becomes permenant.\n\nThe petrification also becomes permanent if you maintain concentration on this spell for a full minute. A permanently petrified/frozen creature can be restored to normal with [greater restoration](https://api.open5e.com/spells/greater-restoration) or comparable magic, or by casting this spell on the creature again and maintaining concentration for a full minute.\n\nIf the frozen creature is damaged or broken before it recovers from being petrified, the injury carries over to its normal state.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of ice preserved from the plane of elemental ice", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ill-fated-word", + "fields": { + "name": "Ill-Fated Word", + "desc": "You call out a distracting epithet to a creature, worsening its chance to succeed at whatever it's doing. Roll a d4 and subtract the number rolled from an attack roll, ability check, or saving throw that the target has just made; the target uses the lowered result to determine the outcome of its roll.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_illuminate-spoor", + "fields": { + "name": "Illuminate Spoor", + "desc": "You touch a set of tracks created by a single creature. That set of tracks and all other tracks made by the same creature give off a faint glow. You and up to three creatures you designate when you cast this spell can see the glow. A creature that can see the glow automatically succeeds on Wisdom (Survival) checks to track that creature. If the tracks are covered by obscuring objects such as leaves or mud, you and the creatures you designate have advantage on Wisdom (Survival) checks to follow the tracks.\n If the creature leaving the tracks changes its tracks, such as by adding or removing footwear, the glow stops where the tracks change. Until the spell ends, you can use an action to touch and illuminate a new set of tracks.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 8 hours. When you use a spell slot of 5th level or higher, the duration is concentration, up to 24 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a firefly", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_impending-ally", + "fields": { + "name": "Impending Ally", + "desc": "You summon a duplicate of yourself as an ally who appears in an unoccupied space you can see within range. You control this ally, whose turn comes immediately after yours. When you or the ally uses a class feature, spell slot, or other expendable resource, it’s considered expended for both of you. When the spell ends, or if you are killed, the ally disappears immediately.\n", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration is extended by 1 round for every two slot levels above 3rd.", + "target_type": "point", + "range": "40 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a broken chain link", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "2 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_innocuous-aspect", + "fields": { + "name": "Innocuous Aspect", + "desc": "An area of false vision encompasses all creatures within 20 feet of you. You and each creature in the area that you choose to affect take on the appearance of a harmless creature or object, chosen by you. Each image is identical, and only appearance is affected. Sound, movement, or physical inspection can reveal the ruse.\n\nA creature that uses its action to study the image visually can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, that creature sees through the image.", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a paper ring", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_insightful-maneuver", + "fields": { + "name": "Insightful Maneuver", + "desc": "With a flash of insight, you know how to take advantage of your foe’s vulnerabilities. Until the end of your turn, the target has vulnerability to one type of damage (your choice). Additionally, if the target has any other vulnerabilities, you learn them.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_inspiring-speech", + "fields": { + "name": "Inspiring Speech", + "desc": "The verbal component of this spell is a 10-minute-long, rousing speech. At the end of the speech, all your allies within the affected area who heard the speech gain a +1 bonus on attack rolls and advantage on saving throws for 1 hour against effects that cause the charmed or frightened condition. Additionally, each recipient gains temporary hit points equal to your spellcasting ability modifier. If you move farther than 1 mile from your allies or you die, this spell ends. A character can be affected by only one casting of this spell at a time; subsequent, overlapping castings have no additional effect and don't extend the spell's duration.", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_instant-fortification", + "fields": { + "name": "Instant Fortification", + "desc": "Through this spell, you transform a miniature statuette of a keep into an actual fort. The fortification springs from the ground in an unoccupied space within range. It is a 10- foot cube (including floor and roof).\n\nEach wall has two arrow slits. One wall also includes a metal door with an [arcane lock](https://api.open5e.com/spells/arcane-lock) effect on it. You designate at the time of the fort’s creation which creatures can ignore the lock and enter the fortification. The door has AC 20 and 60 hit points, and it can be broken open with a successful DC 25 Strength (Athletics) check. The walls are made of stone (AC 15) and are immune to necrotic, poison, and psychic damage. Each 5-foot-square section of wall has 90 hit points. Reducing a section of wall to 0 hit points destroys it, allowing access to the inside of the fortification.\n", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can increase the length or width of the fortification by 5 feet for each slot level above 5th. You can make a different choice (width or length) for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a statuette of a keep worth 250 gp, which is consumed in the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_instant-siege-weapon", + "fields": { + "name": "Instant Siege Weapon", + "desc": "With this spell, you instantly transform raw materials into a siege engine of Large size or smaller (the GM has information on this topic). The raw materials for the spell don’t need to be the actual components a siege weapon is normally built from; they just need to be manufactured goods made of the appropriate substances (typically including some form of finished wood and a few bits of worked metal) and have a gold piece value of no less than the weapon’s hit points.\n\nFor example, a mangonel has 100 hit points. **Instant siege weapon** will fashion any collection of raw materials worth at least 100 gp into a mangonel. Those materials might be lumber and fittings salvaged from a small house, or 100 gp worth of finished goods such as three wagons or two heavy crossbows. The spell also creates enough ammunition for ten shots, if the siege engine uses ammunition.\n", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 6th level, a Huge siege engine can be made; at 8th level, a Gargantuan siege engine can be made. In addition, for each slot level above 4th, the spell creates another ten shots’ worth of ammunition.", + "target_type": "point", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "raw materials with a value in gp equal to the hit points of the siege weapon to be created", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_instant-snare", + "fields": { + "name": "Instant Snare", + "desc": "You create a snare on a point you can see within range. You can leave the snare as a magical trap, or you can use your reaction to trigger the trap when a Large or smaller creature you can see moves within 10 feet of the snare. If you leave the snare as a trap, a creature must succeed on an Intelligence (Investigation) or Wisdom (Perception) check against your spell save DC to find the trap.\n When a Large or smaller creature moves within 5 feet of the snare, the trap triggers. The creature must succeed on a Dexterity saving throw or be magically pulled into the air. The creature is restrained and hangs upside down 5 feet above the snare's location for 1 minute. A restrained creature can repeat the saving throw at the end of each of its turns, escaping the snare on a success. Alternatively, a creature, including the restrained target, can use its action to make an Intelligence (Arcana) check against your spell save DC. On a success, the restrained creature is freed, and the snare resets itself 1 minute later. If the creature succeeds on the check by 5 or more, the snare is destroyed instead.\n This spell alerts you with a ping in your mind when the trap is triggered if you are within 1 mile of the snare. This ping awakens you if you are sleeping.", + "document": "deepm", + "level": 2, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional snare for each slot level above 3rd. When you receive the mental ping that a trap was triggered, you know which snare was triggered if you have more than one.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a loop of twine", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ire-of-the-mountain", + "fields": { + "name": "Ire of the Mountain", + "desc": "An **ire of the mountain** spell melts nonmagical objects that are made primarily of metal. Choose one metal object weighing 10 pounds or less that you can see within range. Tendrils of blistering air writhe toward the target. A creature holding or wearing the item must make a Dexterity saving throw. On a successful save, the creature takes 1d8 fire damage and the spell has no further effect. On a failed save, the targeted object melts and is destroyed, and the creature takes 4d8 fire damage if it is wearing the object, or 2d8 fire damage if it is holding the object. If the object is not being held or worn by a creature, it is automatically melted and rendered useless. This spell cannot affect magic items.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional object for each slot level above 3rd.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of coal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "1d8", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_iron-hand", + "fields": { + "name": "Iron Hand", + "desc": "**Iron hand** is a common spell among metalsmiths and other crafters who work with heat. When you use this spell, one of your arms becomes immune to fire damage, allowing you to grasp red-hot metal, scoop up molten glass with your fingers, or reach deep into a roaring fire to pick up an object. In addition, if you take the Dodge action while you’re protected by **iron hand**, you have resistance to fire damage until the start of your next turn.", + "document": "deepm", + "level": 0, + "school": "abjuration", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_kareefs-entreaty", + "fields": { + "name": "Kareef’s Entreaty", + "desc": "Your kind words offer hope and support to a fallen comrade. Choose a willing creature you can see within range that is about to make a death saving throw. The creature gains advantage on the saving throw, and if the result of the saving throw is 18 or higher, the creature regains 3d4 hit points immediately.\n", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the creature adds 1 to its death saving throw for every two slot levels above 1st and regains an additional 1d4 hit points for each slot level above 1st if its saving throw result is 18 or higher.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_keening-wail", + "fields": { + "name": "Keening Wail", + "desc": "You emit an unholy shriek from beyond the grave. Each creature in a 15-foot cone must make a Constitution saving throw. A creature takes 6d6 necrotic damage on a failed save, or half as much damage on a successful one. If a creature with 50 hit points or fewer fails the saving throw by 5 or more, it is instead reduced to 0 hit points. This wail has no effect on constructs and undead.\n", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a ringed lock of hair from an undead creature", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 15, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_killing-fields", + "fields": { + "name": "Killing Fields", + "desc": "You invoke primal spirits of nature to transform natural terrain in a 100-foot cube in range into a private hunting preserve. The area can't include manufactured structures and if such a structure exists in the area, the spell ends.\n While you are conscious and within the area, you are aware of the presence and direction, though not exact location, of each beast and monstrosity with an Intelligence of 3 or lower in the area. When a beast or monstrosity with an Intelligence of 3 or lower tries to leave the area, it must make a Wisdom saving throw. On a failure, it is disoriented, uncertain of its surroundings or direction, and remains within the area for 1 hour. On a success, it leaves the area.\n When you cast this spell, you can specify individuals that are helped by the area's effects. All other creatures in the area are hindered by the area's effects. You can also specify a password that, when spoken aloud, gives the speaker the benefits of being helped by the area's effects.\n *Killing fields* creates the following effects within the area.\n ***Pack Hunters.*** A helped creature has advantage on attack rolls against a hindered creature if at least one helped ally is within 5 feet of the hindered creature and the helped ally isn't incapacitated. Slaying. Once per turn, when a helped creature hits with any weapon, the weapon deals an extra 1d6 damage of its type to a hindered creature. Tracking. A helped creature has advantage on Wisdom (Survival) and Dexterity (Stealth) checks against a hindered creature.\n You can create a permanent killing field by casting this spell in the same location every day for one year. Structures built in the area after the killing field is permanent don't end the spell.", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a game animal, which must be sacrificed as part of casting the spell", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": "cube", + "shape_magnitude": 100, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_kiss-of-the-succubus", + "fields": { + "name": "Kiss of the Succubus", + "desc": "You kiss a willing creature or one you have charmed or held spellbound through spells or abilities such as [dominate person](https://api.open5e.com/spells/dominate-person). The target must make a Constitution saving throw. A creature takes 5d10 psychic damage on a failed save, or half as much damage on a successful one. The target’s hit point maximum is reduced by an amount equal to the damage taken; this reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_kobolds-fury", + "fields": { + "name": "Kobold’s Fury", + "desc": "Your touch infuses the rage of a threatened kobold into the target. The target has advantage on melee weapon attacks until the end of its next turn. In addition, its next successful melee weapon attack against a creature larger than itself does an additional 2d8 damage.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a kobold scale", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_labyrinth-mastery", + "fields": { + "name": "Labyrinth Mastery", + "desc": "Upon casting this spell, you immediately gain a sense of your surroundings. If you are in a physical maze or any similar structure with multiple paths and dead ends, this spell guides you to the nearest exit, although not necessarily along the fastest or shortest route.\n\nIn addition, while the spell is guiding you out of such a structure, you have advantage on ability checks to avoid being surprised and on initiative rolls.\n\nYou gain a perfect memory of all portions of the structure you move through during the spell’s duration. If you revisit such a portion, you recognize that you’ve been there before and automatically notice any changes to the environment.\n\nAlso, while under the effect of this spell, you can exit any [maze](https://api.open5e.com/spells/maze) spell (and its lesser and greater varieties) as an action without needing to make an Intelligence check.", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of blank parchment", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_labyrinthine-howl", + "fields": { + "name": "Labyrinthine Howl", + "desc": "You let loose the howl of a ravenous beast, causing each enemy within range that can hear you to make a Wisdom saving throw. On a failed save, a creature believes it has been transported into a labyrinth and is under attack by savage beasts. An affected creature must choose either to face the beasts or to curl into a ball for protection. A creature that faces the beasts takes 7d8 psychic damage, and then the spell ends on it. A creature that curls into a ball falls prone and is stunned until the end of your next turn.\n", + "document": "deepm", + "level": 5, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 2d8 for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dead mouse", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "7d8", + "damage_types": [ + "psychic" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_lacerate", + "fields": { + "name": "Lacerate", + "desc": "You make a swift cutting motion through the air to lacerate a creature you can see within range. The target must make a Constitution saving throw. It takes 4d8 slashing damage on a failed save, or half as much damage on a successful one. If the saving throw fails by 5 or more, the wound erupts with a violent spray of blood, and the target gains one level of exhaustion.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a shard of bone or crystal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d8", + "damage_types": [ + "slashing" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_lair-sense", + "fields": { + "name": "Lair Sense", + "desc": "You set up a magical boundary around your lair. The boundary can’t exceed the dimensions of a 100-foot cube, but within that maximum, you can shape it as you like—to follow the walls of a building or cave, for example. While the spell lasts, you instantly become aware of any Tiny or larger creature that enters the enclosed area. You know the creature’s type but nothing else about it. You are also aware when creatures leave the area.\n\nThis awareness is enough to wake you from sleep, and you receive the knowledge as long as you’re on the same plane of existence as your lair.\n", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, add 50 feet to the maximum dimensions of the cube and add 12 hours to the spell’s duration for each slot level above 2nd.", + "target_type": "creature", + "range": "120 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "treasure worth at least 500 gp, which is not consumed in casting", + "material_cost": "500.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": "cube", + "shape_magnitude": 100, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_last-rays-of-the-dying-sun", + "fields": { + "name": "Last Rays of the Dying Sun", + "desc": "A burst of searing heat explodes from you, dealing 6d6 fire damage to all enemies within range. Immediately afterward, a wave of frigid cold rolls across the same area, dealing 6d6 cold damage to enemies. A creature that makes a successful Dexterity saving throw takes half the damage.\n", + "document": "deepm", + "level": 7, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 8th or 9th level, the damage from both waves increases by 1d6 for each slot level above 7th.", + "target_type": "area", + "range": "40 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_lava-stone", + "fields": { + "name": "Lava Stone", + "desc": "When you cast **lava stone** on a piece of sling ammo, the stone or bullet becomes intensely hot. As a bonus action, you can launch the heated stone with a sling: the stone increases in size and melts into a glob of lava while in flight. Make a ranged spell attack against the target. If it hits, the target takes 1d8 bludgeoning damage plus 6d6 fire damage. The target takes additional fire damage at the start of each of your next three turns, starting with 4d6, then 2d6, and then 1d6. The additional damage can be avoided if the target or an ally within 5 feet of the target scrapes off the lava. This is done by using an action to make a successful Wisdom (Medicine) check against your spellcasting save DC. The spell ends if the heated sling stone isn’t used immediately.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a sling stone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_lay-to-rest", + "fields": { + "name": "Lay to Rest", + "desc": "A pulse of searing light rushes out from you. Each undead creature within 15 feet of you must make a Constitution saving throw. A target takes 8d6 radiant damage on a failed save, or half as much damage on a successful one.\n An undead creature reduced to 0 hit points by this spell disintegrates in a burst of radiant motes, leaving anything it was wearing or carrying in a space it formerly occupied.", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of grave dirt", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "radiant" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_legend-killer", + "fields": { + "name": "Legend Killer", + "desc": "You tap into the life force of a creature that is capable of performing legendary actions. When you cast the spell, the target must make a successful Constitution saving throw or lose the ability to take legendary actions for the spell’s duration. A creature can’t use legendary resistance to automatically succeed on the saving throw against this spell. An affected creature can repeat the saving throw at the end of each of its turns, regaining 1 legendary action on a successful save. The target continues repeating the saving throw until the spell ends or it regains all its legendary actions.", + "document": "deepm", + "level": 7, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a silver scroll describing the spell’s target worth at least 1,000 gp, which the spell consumes", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_legion", + "fields": { + "name": "Legion", + "desc": "You call down a legion of shadowy soldiers in a 10-foot cube. Their features resemble a mockery of once-living creatures. Whenever a creature starts its turn inside the cube or within 5 feet of it, or enters the cube for the first time on its turn, the conjured shades make an attack using your melee spell attack modifier; on a hit, the target takes 3d8 necrotic damage. The space inside the cube is difficult terrain.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a toy soldier", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_legion-of-rabid-squirrels", + "fields": { + "name": "Legion of Rabid Squirrels", + "desc": "While in a forest, you call a legion of rabid squirrels to descend from the nearby trees at a point you can see within range. The squirrels form into a swarm that uses the statistics of a [swarm of poisonous snakes](https://api.open5e.com/monsters/swarm-of-poisonous-snakes), except it has a climbing speed of 30 feet rather than a swimming speed. The legion of squirrels is friendly to you and your companions. Roll initiative for the legion, which has its own turns. The legion of squirrels obeys your verbal commands (no action required by you). If you don’t issue any commands to the legion, it defends itself from hostile creatures but otherwise takes no actions. If you command it to move farther than 60 feet from you, the spell ends and the legion disperses back into the forest. A canid, such as a dog, wolf, fox, or worg, has disadvantage on attack rolls against targets other than the legion of rabid squirrels while the swarm is within 60 feet of the creature. When the spell ends, the squirrels disperse back into the forest.\n", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the legion’s poison damage increases by 1d6 for each slot level above 3rd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an acorn or nut", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_lesser-maze", + "fields": { + "name": "Lesser Maze", + "desc": "This spell functions as [maze](https://api.open5e.com/spells/maze), but the target can resist being sent to the extradimensional prison with a successful Intelligence saving throw. In addition, the maze is easier to navigate, requiring only a DC 12 Intelligence check to escape.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_life-drain", + "fields": { + "name": "Life Drain", + "desc": "With a snarled word of Void Speech, you create a swirling vortex of purple energy. Choose a point you can see within range. Creatures within 15 feet of the point take 10d6 necrotic damage, or half that damage with a successful Constitution saving throw. For each creature damaged by the spell, you can choose one other creature within range, including yourself, that is not a construct or undead. The secondary targets regain hit points equal to half the necrotic damage you dealt.\n", + "document": "deepm", + "level": 6, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the vortex’s damage increases by 1d6 for each slot level above 6th.", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_life-from-death", + "fields": { + "name": "Life from Death", + "desc": "Your touch can siphon energy from undead to heal your wounds. Make a melee spell attack against an undead creature within your reach. On a hit, the target takes 2d6 radiant damage, and you or an ally within 30 feet of you regains hit points equal to half the amount of radiant damage dealt. If used on an ally, this effect can restore the ally to no more than half of the ally's hit point maximum. This effect can't heal an undead or a construct. Until the spell ends, you can make the attack again on each of your turns as an action.", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "2d6", + "damage_types": [ + "radiant" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_life-hack", + "fields": { + "name": "Life Hack", + "desc": "Choose up to five creatures that you can see within range. Each of the creatures gains access to a pool of temporary hit points that it can draw upon over the spell’s duration or until the pool is used up. The pool contains 120 temporary hit points. The number of temporary hit points each individual creature can draw is determined by dividing 120 by the number of creatures with access to the pool. Hit points are drawn as a bonus action by the creature gaining the temporary hit points. Any number can be drawn at once, up to the maximum allowed.\n\nA creature can’t draw temporary hit points from the pool while it has temporary hit points from any source, including a previous casting of this spell.", + "document": "deepm", + "level": 8, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a ruby worth 500 gp, which is consumed during the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_life-sense", + "fields": { + "name": "Life Sense", + "desc": "For the duration, you can sense the location of any creature that isn’t a construct or an undead within 30 feet of you, regardless of impediments to your other senses. This spell doesn’t sense creatures that are dead. A creature trying to hide its life force from you can make a Charisma saving throw. On a success, you can’t sense the creature with this casting of the spell. If you cast the spell again, the creature must make the saving throw again to remain hidden from your senses.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a clear piece of quartz", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_life-transference-arrow", + "fields": { + "name": "Life Transference Arrow", + "desc": "You create a glowing arrow of necrotic magic and command it to strike a creature you can see within range. The arrow can have one of two effects; you choose which at the moment of casting. If you make a successful ranged spell attack, you and the target experience the desired effect. If the attack misses, the spell fails.\n* The arrow deals 2d6 necrotic damage to the target, and you heal the same amount of hit points.\n* You take 2d6 necrotic damage, and the target heals the same amount of hit points.\n", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the spell’s damage and hit points healed increase by 1d6 for each slot level above 1st.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_litany-of-sure-hands", + "fields": { + "name": "Litany of Sure Hands", + "desc": "This spell allows a creature within range to quickly perform a simple task (other than attacking or casting a spell) as a bonus action on its turn. Examples include finding an item in a backpack, drinking a potion, and pulling a rope. Other actions may also fall into this category, depending on the GM's ruling. The target also ignores the loading property of weapons.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_living-shadows", + "fields": { + "name": "Living Shadows", + "desc": "You whisper sibilant words of void speech that cause shadows to writhe with unholy life. Choose a point you can see within range. Writhing shadows spread out in a 15-foot-radius sphere centered on that point, grasping at creatures in the area. A creature that starts its turn in the area or that enters the area for the first time on its turn must make a successful Strength saving throw or be restrained by the shadows. A creature that starts its turn restrained by the shadows must make a successful Constitution saving throw or gain one level of exhaustion.\n\nA restrained creature can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.", + "document": "deepm", + "level": 5, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 15, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_lock-armor", + "fields": { + "name": "Lock Armor", + "desc": "You target a piece of metal equipment or a metal construct. If the target is a creature wearing metal armor or is a construct, it makes a Wisdom saving throw to negate the effect. On a failed save, the spell causes metal to cling to metal, making it impossible to move pieces against each other. This effectively paralyzes a creature that is made of metal or that is wearing metal armor with moving pieces; for example, scale mail would lock up because the scales must slide across each other, but a breastplate would be unaffected. Limited movement might still be possible, depending on how extensive the armor is, and speech is usually not affected. Metal constructs are paralyzed. An affected creature or construct can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A grease spell dispels lock armor on everything in its area.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of rust and metal shavings", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_looping-trail", + "fields": { + "name": "Looping Trail", + "desc": "You touch a trail no more than 1 mile in length, reconfiguring it to give it switchbacks and curves that make the trail loop back on itself. For the duration, the trail makes subtle changes in its configuration and in the surrounding environment to give the impression of forward progression along a continuous path. A creature on the trail must succeed on a Wisdom (Survival) check to notice that the trail is leading it in a closed loop.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of rope twisted into a loop", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_lovesick", + "fields": { + "name": "Lovesick", + "desc": "This spell causes creatures to behave unpredictably, as they randomly experience the full gamut of emotions of someone who has fallen head over heels in love. Each creature in a 10-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\n\nAn affected target can’t take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|-|-|\n| 1-3 | The creature spends its turn moping like a lovelorn teenager; it doesn’t move or take actions. |\n| 4–5 | The creature bursts into tears, takes the Dash action, and uses all its movement to run off in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. |\n| 6 | The creature uses its action to remove one item of clothing or piece of armor. Each round spent removing pieces of armor reduces its AC by 1. |\n| 7–8 | The creature drops anything it is holding in its hands and passionately embraces a randomly determined creature. Treat this as a grapple attempt which uses the Attack action. |\n| 9 | The creature flies into a jealous rage and uses its action to make a melee attack against a randomly determined creature. |\n| 10 | The creature can act and move normally. |\n\nAt the end of each of its turns, an affected target can make a Wisdom saving throw, ending the effect on itself on a successful save.\n", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of red rose petals", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 10, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_maddening-whispers", + "fields": { + "name": "Maddening Whispers", + "desc": "You whisper a string of Void Speech toward a target within range that can hear you. The target must succeed on a Charisma saving throw or be incapacitated. While incapacitated by this spell, the target’s speed is 0, and it can’t benefit from increases to its speed. To maintain the effect for the duration, you must use your action on subsequent turns to continue whispering; otherwise, the spell ends. The spell also ends if the target takes damage.", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_maim", + "fields": { + "name": "Maim", + "desc": "Your hands become claws bathed in necrotic energy. Make a melee spell attack against a creature you can reach. On a hit, the target takes 4d6 necrotic damage and a section of its body of your choosing withers:\n ***Upper Limb.*** The target has disadvantage on Strength checks, and, if it has the Multiattack action, it has disadvantage on its first attack roll each round.\n ***Lower Limb.*** The target's speed is reduced by 10 feet, and it has disadvantage on Dexterity checks.\n ***Body.*** Choose one damage type: bludgeoning, piercing, or slashing. The target loses its resistance to that damage type. If the target doesn't have resistance to the chosen damage type, it is vulnerable to that damage type instead.\n The effect is permanent until removed by *remove curse*, *greater restoration*, or similar magic.", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "4d6", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_malevolent-waves", + "fields": { + "name": "Malevolent Waves", + "desc": "You create an invisible miasma that fills the area within 30 feet of you. All your allies have advantage on Dexterity (Stealth) checks they make within 30 feet of you, and all your enemies are poisoned while within that radius.", + "document": "deepm", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a profane object that has been bathed in blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_mammons-due", + "fields": { + "name": "Mammon’s Due", + "desc": "You summon a cylindrical sinkhole filled with burning ash and grasping arms made of molten metal at a point on the ground you can see within range. The sinkhole is 20 feet deep and 50 feet in diameter, and is difficult terrain. A creature that’s in the area when the spell is cast, or that begins its turn in the area or enters it during its turn, takes 10d6 fire damage and must make a Strength or Dexterity (creature’s choice) saving throw. On a failed save, the creature is restrained by the molten arms, which try to drag it below the surface of the ash.\n\nA creature that’s restrained by the arms at the start of your turn must make a successful Strength saving throw or be pulled 5 feet farther down into the ash. A creature pulled below the surface is blinded, deafened, and can’t breathe. To escape, a creature must use an action to make a successful Strength or Dexterity check against your spell save DC. On a successful check, the creature is no longer restrained and can move through the difficult terrain of the ash pit. It doesn’t need to make a Strength or Dexterity saving throw this turn to not be grabbed by the arms again, but it must make the saving throw as normal if it’s still in the ash pit at the start of its next turn.\n\nThe diameter of the ash pit increases by 10 feet at the start of each of your turns for the duration of the spell. The ash pit remains after the spell ends, but the grasping arms disappear and restrained creatures are freed automatically. As the ash slowly cools, it deals 1d6 less fire damage for each hour that passes after the spell ends.", + "document": "deepm", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "500 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "11 gilded human skulls worth 150 gp each, which are consumed by the spell", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_mark-prey", + "fields": { + "name": "Mark Prey", + "desc": "You choose a creature you can see within range as your prey. Until the spell ends, you have advantage on Wisdom (Perception) and Wisdom (Survival) checks to find or track your prey. In addition, the target is outlined in light that only you can see. Any attack roll you make against your prey has advantage if you can see it, and your prey can't benefit from being invisible against you. If the target drops to 0 hit points before this spell ends, you can use a bonus action on a subsequent turn to mark a new target as your prey.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 4th level, you can maintain your concentration on the spell for up to 8 hours. When you use a spell slot of 5th level or higher, you can maintain your concentration on the spell for up to 24 hours.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_mass-hobble-mount", + "fields": { + "name": "Mass Hobble Mount", + "desc": "When you cast **mass hobble mount**, you make separate ranged spell attacks against up to six horses, wolves, or other four-legged or two-legged beasts being ridden as mounts within 60 feet of you. The targets can be different types of beasts and can have different numbers of legs. Each beast hit by your spell is disabled so that it can’t move at its normal speed without incurring injury. An affected creature that moves more than half its base speed in a turn takes 4d6 bludgeoning damage.\n\nThis spell has no effect on a creature that your GM deems to not be a mount.\n", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_mass-surge-dampener", + "fields": { + "name": "Mass Surge Dampener", + "desc": "Using your strength of will, you protect up to three creatures other than yourself from the effect of a chaos magic surge. A protected creature can make a DC 13 Charisma saving throw to negate the effect of a chaos magic surge that does not normally allow a saving throw, or it gains advantage on a saving throw that is normally allowed. Once a protected creature makes a successful saving throw allowed by **mass surge dampener**, the spell’s effect ends for that creature.", + "document": "deepm", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute, or until expended", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_maw-of-needles", + "fields": { + "name": "Maw of Needles", + "desc": "A spiny array of needle-like fangs protrudes from your gums, giving you a spiny bite. For the duration, you can use your action to make a melee spell attack with the bite. On a hit, the target takes 2d6 piercing damage and must succeed on a Dexterity saving throw or some of the spines in your mouth break off, sticking in the target. Until this spell ends, the target must succeed on a Constitution saving throw at the start of each of its turns or take 1d6 piercing damage from the spines. If you hit a target that has your spines stuck in it, your attack deals extra damage equal to your spellcasting ability modifier, and more spines don’t break off in the target. Your spines can stick in only one target at a time. If your spines stick into another target, the spines on the previous target crumble to dust, ending the effect on that target.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage of the spiny bite and the spines increases by 1d6 for every two slot levels above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": true, + "damage_roll": "2d6", + "damage_types": [ + "piercing" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_memento-mori", + "fields": { + "name": "Memento Mori", + "desc": "You transform yourself into a horrifying vision of death, rotted and crawling with maggots, exuding the stench of the grave. Each creature that can see you must succeed on a Charisma saving throw or be stunned until the end of your next turn.\n\nA creature that succeeds on the saving throw is immune to further castings of this spell for 24 hours.", + "document": "deepm", + "level": 0, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_mephitic-croak", + "fields": { + "name": "Mephitic Croak", + "desc": "You release an intensely loud burp of acidic gas in a 15-foot cone. Creatures in the area take 2d6 acid damage plus 2d6 thunder damage, or half as much damage with a successful Dexterity saving throw. A creature whose Dexterity saving throw fails must also make a successful Constitution saving throw or be stunned and poisoned until the start of your next turn.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, both acid and thunder damage increase by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dead toad and a dram of arsenic worth 10 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 15, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_mind-exchange", + "fields": { + "name": "Mind Exchange", + "desc": "One humanoid of your choice that you can see within range must make a Charisma saving throw. On a failed save, you project your mind into the body of the target. You use the target’s statistics but don’t gain access to its knowledge, class features, or proficiencies, retaining your own instead. Meanwhile, the target’s mind is shunted into your body, where it uses your statistics but likewise retains its own knowledge, class features, and proficiencies.\n\nThe exchange lasts until either of the the two bodies drops to 0 hit points, until you end it as a bonus action, or until you are forced out of the target body by an effect such as a [dispel magic](https://api.open5e.com/spells/dispel-magic) or [dispel evil and good](https://api.open5e.com/spells/dispel-evil-and-good) spell (the latter spell defeats **mind exchange** even though possession by a humanoid isn’t usually affected by that spell). When the effect of this spell ends, both switched minds return to their original bodies. The target of the spell is immune to mind exchange for 24 hours after succeeding on the saving throw or after the exchange ends.\n\nThe effects of the exchange can be made permanent with a [wish](https://api.open5e.com/spells/wish) spell or comparable magic.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a prism and silver coin", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_mire", + "fields": { + "name": "Mire", + "desc": "When you cast mire, you create a 10-foot-diameter pit of quicksand, sticky mud, or a similar dangerous natural hazard suited to the region. A creature that’s in the area when the spell is cast or that enters the affected area must make a successful Strength saving throw or sink up to its waist and be restrained by the mire. From that point on, the mire acts as quicksand, but the DC for Strength checks to escape from the quicksand is equal to your spell save DC. A creature outside the mire trying to pull another creature free receives a +5 bonus on its Strength check.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of sand mixed with water", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_misstep", + "fields": { + "name": "Misstep", + "desc": "You gesture to a creature within range that you can see. If the target fails a Wisdom saving throw, it uses its reaction to move 5 feet in a direction you dictate. This movement does not provoke opportunity attacks. The spell automatically fails if you direct the target into a dangerous area such as a pit trap, a bonfire, or off the edge of a cliff, or if the target has already used its reaction.", + "document": "deepm", + "level": 0, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_mist-of-wonders", + "fields": { + "name": "Mist of Wonders", + "desc": "A colorful mist surrounds you out to a radius of 30 feet. Creatures inside the mist see odd shapes in it and hear random sounds that don’t make sense. The very concepts of order and logic don’t seem to exist inside the mist.\n\nAny 1st-level spell that’s cast in the mist by another caster or that travels through the mist is affected by its strange nature. The caster must make a Constitution saving throw when casting the spell. On a failed save, the spell transforms into another 1st-level spell the caster knows (chosen by the GM from those available), even if that spell is not currently prepared. The altered spell’s slot level or its original target or targeted area can’t be changed. Cantrips are unaffected. If (in the GM’s judgment) none of the caster’s spells known of that level can be transformed, the spell being cast simply fails.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, it affects any spell cast using a spell slot of any lower level. For instance, using a 6th-level slot enables you to transform a spell of 5th level or lower into another spell of the same level.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_monstrous-empathy", + "fields": { + "name": "Monstrous Empathy", + "desc": "This spell lets you forge a connection with a monstrosity. Choose a monstrosity that you can see within range. It must see and hear you. If the monstrosity’s Intelligence is 4 or higher, the spell fails. Otherwise, the monstrosity must succeed on a Wisdom saving throw or be charmed by you for the spell’s duration. If you or one of your companions harms the target, the spell ends.\n", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional monstrosity for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a morsel of food", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_moon-trap", + "fields": { + "name": "Moon Trap", + "desc": "While casting this spell under the light of the moon, you inscribe a glyph that covers a 10-foot-square area on a flat, stationary surface such as a floor or a wall. Once the spell is complete, the glyph is invisible in moonlight but glows with a faint white light in darkness.\n\nAny creature that touches the glyph, except those you designate during the casting of the spell, must make a successful Wisdom saving throw or be drawn into an inescapable maze until the sun rises.\n\nThe glyph lasts until the next sunrise, at which time it flares with bright light, and any creature trapped inside returns to the space it last occupied, unharmed. If that space has become occupied or dangerous, the creature appears in the nearest safe unoccupied space.", + "document": "deepm", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "powdered silver worth 250 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "up to 8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_mosquito-bane", + "fields": { + "name": "Mosquito Bane", + "desc": "This spell kills any insects or swarms of insects within range that have a total of 25 hit points or fewer.\n", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the number of hit points affected increases by 15 for each slot level above 1st. Thus, a 2nd-level spell kills insects or swarms that have up to 40 hit points, a 3rd-level spell kills those with 55 hit points or fewer, and so forth, up to a maximum of 85 hit points for a slot of 6th level or higher.", + "target_type": "point", + "range": "50 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_mud-pack", + "fields": { + "name": "Mud Pack", + "desc": "This spell covers you or a willing creature you touch in mud consistent with the surrounding terrain. For the duration, the spell protects the target from extreme cold and heat, allowing the target to automatically succeed on Constitution saving throws against environmental hazards related to temperature. In addition, the target has advantage on Dexterity (Stealth) checks while traveling at a slow pace in the terrain related to the component for this spell.\n\nIf the target is subject to heavy precipitation for 1 minute, the precipitation removes the mud, ending the spell.\n", + "document": "deepm", + "level": 1, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is 8 hours and you can target up to ten willing creatures within 30 feet of you.", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a clump of mud", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_negative-image", + "fields": { + "name": "Negative Image", + "desc": "You create a shadow-tunnel between your location and one other creature you can see within range. You and that creature instantly swap positions. If the target creature is unwilling to exchange places with you, it can resist the effect by making a Charisma saving throw. On a successful save, the spell has no effect.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of reflective obsidian", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_nether-weapon", + "fields": { + "name": "Nether Weapon", + "desc": "You whisper in Void Speech and touch a weapon. Until the spell ends, the weapon turns black, becomes magical if it wasn’t before, and deals 2d6 necrotic damage (in addition to its normal damage) on a successful hit. A creature that takes necrotic damage from the enchanted weapon can’t regain hit points until the start of your next turn.\n", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "ink, chalk, or some other writing medium", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_night-terrors", + "fields": { + "name": "Night Terrors", + "desc": "You amplify the fear that lurks in the heart of all creatures. Select a target point you can see within the spell’s range. Every creature within 20 feet of that point becomes frightened until the start of your next turn and must make a successful Wisdom saving throw or become paralyzed. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Creatures immune to being frightened are not affected by **night terrors**.", + "document": "deepm", + "level": 4, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a crow’s eye", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_nightfall", + "fields": { + "name": "Nightfall", + "desc": "You call upon night to arrive ahead of schedule. With a sharp word, you create a 30-foot-radius cylinder of night centered on a point on the ground within range. The cylinder extends vertically for 100 feet or until it reaches an obstruction, such as a ceiling. The area inside the cylinder is normal darkness, and thus heavily obscured. Creatures inside the darkened cylinder can see illuminated areas outside the cylinder normally.", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "100 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "cylinder", + "shape_magnitude": 30, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_nip-at-the-heels", + "fields": { + "name": "Nip at the Heels", + "desc": "You create an illusory pack of wild dogs that bark and nip at one creature you can see within range, which must make a Wisdom saving throw. On a failed save, the target has disadvantage on ability checks and attack rolls for the duration as it is distracted by the dogs. At the end of each of its turns, the target can make a Wisdom saving throw, ending the effect on itself on a successful save. A target that is at least 10 feet off the ground (in a tree, flying, and so forth) has advantage on the saving throw, staying just out of reach of the jumping and barking dogs.\n", + "document": "deepm", + "level": 2, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dog’s tooth", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_not-dead-yet", + "fields": { + "name": "Not Dead Yet", + "desc": "You cast this spell while touching the cloth doll against the intact corpse of a Medium or smaller humanoid that died within the last hour. At the end of the casting, the body reanimates as an undead creature under your control. While the spell lasts, your consciousness resides in the animated body. You can use an action to manipulate the body’s limbs in order to make it move, and you can see and hear through the body’s eyes and ears, but your own body becomes unconscious. The animated body can neither attack nor defend itself. This spell doesn’t change the appearance of the corpse, so further measures might be needed if the body is to be used in a way that involves fooling observers into believing it’s still alive. The spell ends instantly, and your consciousness returns to your body, if either your real body or the animated body takes any damage.\n\nYou can’t use any of the target’s abilities except for nonmagical movement and darkvision. You don’t have access to its knowledge, proficiencies, or anything else that was held in its now dead mind, and you can’t make it speak.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a cloth doll filled with herbs and diamond dust worth 100 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_not-this-day", + "fields": { + "name": "Not This Day!", + "desc": "The creature you touch gains protection against either a specific damage type (slashing, poison, fire, radiant, and the like) or a category of creature (giant, beast, elemental, monstrosity, and so forth) that you name when the spell is cast. For the next 24 hours, the target has advantage on saving throws involving that type of damage or kind of creature, including death saving throws if the attack that dropped the target to 0 hit points is affected by this spell. A character can be under the effect of only a single **not this day!** spell at one time; a second casting on the same target cancels the preexisting protection.", + "document": "deepm", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_orb-of-light", + "fields": { + "name": "Orb of Light", + "desc": "An orb of light the size of your hand shoots from your fingertips toward a creature within range, which takes 3d8 radiant damage and is blinded for 1 round. A target that makes a successful Dexterity saving throw takes half the damage and is not blinded.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "radiant" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_outflanking-boon", + "fields": { + "name": "Outflanking Boon", + "desc": "This spell targets one enemy, which must make a Wisdom saving throw. On a failed save, an illusory ally of yours appears in a space from which it threatens to make a melee attack against the target. Your allies gain advantage on melee attacks against the target for the duration because of the distracting effect of the illusion. An affected target repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the spell targets one additional enemy for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_paragon-of-chaos", + "fields": { + "name": "Paragon of Chaos", + "desc": "You become a humanoid-shaped swirling mass of color and sound. You gain resistance to bludgeoning, piercing, and slashing damage, and immunity to poison and psychic damage. You are also immune to the following conditions: exhaustion, paralyzed, petrified, poisoned, and unconscious. Finally, you gain truesight to 30 feet and can teleport 30 feet as a move.\n\nEach round, as a bonus action, you can cause an automatic chaos magic surge, choosing either yourself or another creature you can see within 60 feet as the caster for the purpose of resolving the effect. You must choose the target before rolling percentile dice to determine the nature of the surge. The DC of any required saving throw is calculated as if you were the caster.", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_pendulum", + "fields": { + "name": "Pendulum", + "desc": "You give the touched creature an aspect of regularity in its motions and fortunes. If the target gets a failure on a Wisdom saving throw, then for the duration of the spell it doesn’t make d20 rolls—to determine the results of attack rolls, ability checks, and saving throws it instead follows the sequence 20, 1, 19, 2, 18, 3, 17, 4, and so on.", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small pendulum or metronome made of brass and rosewood worth 10 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_phantom-dragon", + "fields": { + "name": "Phantom Dragon", + "desc": "You tap your dragon magic to make an ally appear as a draconic beast. The target of the spell appears to be a dragon of size Large or smaller. When seeing this illusion, observers make a Wisdom saving throw to see through it.\n\nYou can use an action to make the illusory dragon seem ferocious. Choose one creature within 30 feet of the illusory dragon to make a Wisdom saving throw. If it fails, the creature is frightened. The creature remains frightened until it uses an action to make a successful Wisdom saving throw or the spell’s duration expires.\n", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, increase the number of targets the illusion can affect by one for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of dragon egg shell", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_pitfall", + "fields": { + "name": "Pitfall", + "desc": "A pit opens under a Huge or smaller creature you can see within range that does not have a flying speed. This pit isn’t a simple hole in the floor or ground, but a passage to an extradimensional space. The target must succeed on a Dexterity saving throw or fall into the pit, which closes over it. At the end of your next turn, a new portal opens 20 feet above where the pit was located, and the creature falls out. It lands prone and takes 6d6 bludgeoning damage.\n\nIf the original target makes a successful saving throw, you can use a bonus action on your turn to reopen the pit in any location within range that you can see. The spell ends when a creature has fallen through the pit and taken damage, or when the duration expires.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_poisoned-volley", + "fields": { + "name": "Poisoned Volley", + "desc": "By drawing back and releasing an imaginary bowstring, you summon forth dozens of glowing green arrows. The arrows dissipate when they hit, but all creatures in a 20-foot square within range take 3d8 poison damage and become poisoned. A creature that makes a successful Constitution saving throw takes half as much damage and is not poisoned.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_potency-of-the-pack", + "fields": { + "name": "Potency of the Pack", + "desc": "You bestow lupine traits on a group of living creatures that you designate within range. Choose one of the following benefits to be gained by all targets for the duration:\n\n* ***Thick Fur.*** Each target sprouts fur over its entire body, giving it a +2 bonus to Armor Class.\n* ***Keen Hearing and Smell.*** Each target has advantage on Wisdom (Perception) checks that rely on hearing or smell.\n* ***Pack Tactics.*** Each affected creature has advantage on an attack roll against a target if at least one of the attacker’s allies (also under the effect of this spell) is within 5 feet of the target of the attack and the ally isn’t incapacitated.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 minute for each slot level above 3rd.", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a few hairs from a wolf", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_power-word-kneel", + "fields": { + "name": "Power Word Kneel", + "desc": "When you shout this word of power, creatures within 20 feet of a point you specify are compelled to kneel down facing you. A kneeling creature is treated as prone. Up to 55 hit points of creatures are affected, beginning with those that have the fewest hit points. A kneeling creature makes a Wisdom saving throw at the end of its turn, ending the effect on itself on a successful save. The effect ends immediately on any creature that takes damage while kneeling.", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an emerald worth at least 100 gp", + "material_cost": "100.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_power-word-pain", + "fields": { + "name": "Power Word Pain", + "desc": "When you utter this word of power, one creature within 60 feet of you takes 4d10 force damage. At the start of each of its turns, the creature must make a successful Constitution saving throw or take an extra 4d10 force damage. The effect ends on a successful save.", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a quill jabbed into your own body", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d10", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_primal-infusion", + "fields": { + "name": "Primal Infusion", + "desc": "You channel the fury of nature, drawing on its power. Until the spell ends, you gain the following benefits:\n* You gain 30 temporary hit points. If any of these remain when the spell ends, they are lost.\n* You have advantage on attack rolls when one of your allies is within 5 feet of the target and the ally isn’t incapacitated.\n* Your weapon attacks deal an extra 1d10 damage of the same type dealt by the weapon on a hit.\n* You gain a +2 bonus to AC.\n* You have proficiency on Constitution saving throws.", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a bit of fur from a carnivorous animal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_prismatic-ray", + "fields": { + "name": "Prismatic Ray", + "desc": "A ray of shifting color springs from your hand. Make a ranged spell attack against a single creature you can see within range. The ray’s effect and the saving throw that applies to it depend on which color is dominant when the beam strikes its target, determined by rolling a d8.\n\n| d8 | Color | Effect | Saving Throw |\n|-|-|-|-|\n| 1 | Red | 8d10 fire damage | Dexterity |\n| 2 | Orange | 8d10 acid damage | Dexterity |\n| 3 | Yellow | 8d10 lightning damage | Dexterity |\n| 4 | Green | Target Poisoned | Constitution |\n| 5 | Blue | Target Deafened | Constitution |\n| 6 | Indigo | Target Frightened | Wisdom |\n| 7 | Violet | Target Stunned | Constitution |\n| 8 | Shifting Ray | Target Blinded | Constitution |\n\nA target takes half as much damage on a successful Dexterity saving throw. A successful Constitution or Wisdom saving throw negates the effect of a ray that inflicts a condition on the target; on a failed save, the target is affected for 5 rounds or until the effect is negated. If the result of your attack roll is a critical hit, you can choose the color of the beam that hits the target, but the attack does not deal additional damage.", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_protection-from-the-void", + "fields": { + "name": "Protection from the Void", + "desc": "Until the spell ends, one willing creature you touch has resistance to necrotic and psychic damage and has advantage on saving throws against Void spells.", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small bar of silver worth 15 sp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_protective-ice", + "fields": { + "name": "Protective Ice", + "desc": "When you cast **protective ice**, you encase a willing target in icy, medium armor equivalent to a breastplate (AC 14). A creature without the appropriate armor proficiency has the usual penalties. If the target is already wearing armor, it only uses the better of the two armor classes.\n\nA creature striking a target encased in **protective ice** with a melee attack while within 5 feet of it takes 1d6 cold damage.\n\nIf the armor’s wearer takes fire damage, an equal amount of damage is done to the armor, which has 30 hit points and is damaged only when its wearer takes fire damage. Damaged ice can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis, but the armor can’t have more than 30 points repaired.\n", + "document": "deepm", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a 4th-level spell slot, it creates splint armor (AC 17, 40 hit points). If you cast this spell using a 5th-level spell slot, it creates plate armor (AC 18, 50 hit points). The armor’s hit points increase by 10 for each spell slot above 5th, but the AC remains 18. Additionally, if you cast this spell using a spell slot of 4th level or higher, the armor deals an extra +2 cold damage for each spell slot above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a seed encased in ice or glass", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "cold" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_puff-of-smoke", + "fields": { + "name": "Puff of Smoke", + "desc": "By harnessing the elemental power of fire, you warp nearby air into obscuring smoke. One creature you can see within range must make a Dexterity saving throw. If it fails, the creature is blinded until the start of your next turn. **Puff of smoke** has no effect on creatures that have tremorsense or blindsight.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_pummelstone", + "fields": { + "name": "Pummelstone", + "desc": "You cause a fist-sized chunk of stone to appear and hurl itself against the spell’s target. Make a ranged spell attack. On a hit, the target takes 1d6 bludgeoning damage and must roll a d4 when it makes an attack roll or ability check during its next turn, subtracting the result of the d4 from the attack or check roll.", + "document": "deepm", + "level": 0, + "school": "conjuration", + "higher_level": "The spell’s damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pebble", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_pyroclasm", + "fields": { + "name": "Pyroclasm", + "desc": "You point toward an area of ground or a similar surface within range. A geyser of lava erupts from the chosen spot. The geyser is 5 feet in diameter and 40 feet high. Each creature in the cylinder when it erupts or at the start of your turn takes 10d8 fire damage, or half as much damage if it makes a successful Dexterity saving throw.\n\nThe geyser also forms a pool of lava at its base. Initially, the pool is the same size as the geyser, but at the start of each of your turns for the duration, the pool’s radius increases by 5 feet. A creature in the pool of lava (but not in the geyser) at the start of your turn takes 5d8 fire damage.\n\nWhen a creature leaves the pool of lava, its speed is reduced by half and it has disadvantage on Dexterity saving throws, caused by a hardening layer of lava. These penalties last until the creature uses an action to break the hardened stone away from itself.\n\nIf you maintain concentration on **pyroclasm** for a full minute, the lava geyser and pool harden into permanent, nonmagical stone. A creature in either area when the stone hardens is restrained until the stone is broken away.", + "document": "deepm", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "500 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a shard of obsidian", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "10d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_quick-time", + "fields": { + "name": "Quick Time", + "desc": "You make one living creature or plant within range move rapidly in time compared to you. The target becomes one year older. For example, you could cast this spell on a seedling, which causes the plant to sprout from the soil, or you could cast this spell on a newly hatched duckling, causing it to become a full-grown duck. If the target is a creature with an Intelligence of 3 or higher, it must succeed on a Constitution saving throw to resist the aging. It can choose to fail the saving throw.\n", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you increase the target’s age by one additional year for each slot level above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "any seed", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_quicken", + "fields": { + "name": "Quicken", + "desc": "You touch one willing creature. Once before the duration of the spell expires, the target can roll a d4 and add the number rolled to an initiative roll or Dexterity saving throw it has just made. The spell then ends.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_quicksilver-mantle", + "fields": { + "name": "Quicksilver Mantle", + "desc": "You transform an ordinary cloak into a highly reflective, silvery garment. This mantle increases your AC by 2 and grants advantage on saving throws against gaze attacks. In addition, whenever you are struck by a ray such as a [ray of enfeeblement](https://api.open5e.com/spells/ray-of-enfeeblement), [scorching ray](https://api.open5e.com/spells/scorching-ray), or even [disintegrate](https://api.open5e.com/spells/disintegrate), roll 1d4. On a result of 4, the cloak deflects the ray, which instead strikes a randomly selected target within 10 feet of you. The cloak deflects only the first ray that strikes it each round; rays after the first affect you as normal.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a nonmagical cloak and a dram of quicksilver worth 10 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_quintessence", + "fields": { + "name": "Quintessence", + "desc": "By calling upon an archangel, you become infused with celestial essence and take on angelic features such as golden skin, glowing eyes, and ethereal wings. For the duration of the spell, your Armor Class can’t be lower than 20, you can’t be frightened, and you are immune to necrotic damage.\n\nIn addition, each hostile creature that starts its turn within 120 feet of you or enters that area for the first time on a turn must succeed on a Wisdom saving throw or be frightened for 1 minute. A creature frightened in this way is restrained. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature’s saving throw is successful or if the effect ends for it, the creature is immune to the frightening effect of the spell until you cast **quintessence** again.", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_raid-the-lair", + "fields": { + "name": "Raid the Lair", + "desc": "You create an invisible circle of protective energy centered on yourself with a radius of 10 feet. This field moves with you. The caster and all allies within the energy field are protected against dragons’ lair actions.\n* Attack rolls resulting directly from lair actions are made with disadvantage.\n* Saving throws resulting directly from lair actions are made with advantage, and damage done by these lair actions is halved.\n* Lair actions occur on an initiative count 10 lower than normal.\n\nThe caster has advantage on Constitution saving throws to maintain concentration on this spell.", + "document": "deepm", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of the dragon whose lair you are raiding", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_rain-of-blades", + "fields": { + "name": "Rain of Blades", + "desc": "You call down a rain of swords, spears, and axes. The blades fill 150 square feet (six 5-foot squares, a circle 15 feet in diameter, or any other pattern you want as long as it forms one contiguous space at least 5 feet wide in all places. The blades deal 6d6 slashing damage to each creature in the area at the moment the spell is cast, or half as much damage on a successful Dexterity saving throw. An intelligent undead injured by the blades is frightened for 1d4 rounds if it fails a Charisma saving throw. Most of the blades break or are driven into the ground on impact, but enough survive intact that any single piercing or slashing melee weapon can be salvaged from the affected area and used normally if it is claimed before the spell ends. When the duration expires, all the blades (including the one that was salvaged) disappear.\n", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, an unbroken blade can be picked up and used as a magical +1 weapon until it disappears.", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "shard of metal from a weapon", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "4 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ray-of-alchemical-negation", + "fields": { + "name": "Ray of Alchemical Negation", + "desc": "You launch a ray of blazing, polychromatic energy from your fingertips. Make a ranged spell attack against an alchemical item or a trap that uses alchemy to achieve its ends, such as a trap that sprays acid, releases poisonous gas, or triggers an explosion of alchemist’s fire. A hit destroys the alchemical reagents, rendering them harmless. The attack is made against the most suitable object Armor Class.\n\nThis spell can also be used against a creature within range that is wholly or partially composed of acidic, poisonous, or alchemical components, such as an alchemical golem or an ochre jelly. In that case, a hit deals 6d6 force damage, and the target must make a successful Constitution saving throw or it deals only half as much damage with its acidic, poisonous, or alchemical attacks for 1 minute. A creature whose damage is halved can repeat the saving throw at the end of each of its turns, ending the effect on a success.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ray-of-life-suppression", + "fields": { + "name": "Ray of Life Suppression", + "desc": "You launch a swirling ray of disruptive energy at a creature within range. Make a ranged spell attack. On a hit, the creature takes 6d8 necrotic damage and its maximum hit points are reduced by an equal amount. This reduction lasts until the creature finishes a short or long rest, or until it receives the benefit of a [greater restoration](https://api.open5e.com/spells/greater-restoration) spell or comparable magic.\n\nThis spell has no effect on constructs or undead.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "6d8", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_reaver-spirit", + "fields": { + "name": "Reaver Spirit", + "desc": "You inspire allies to fight with the savagery of berserkers. You and any allies you can see within range have advantage on Strength checks and Strength saving throws; resistance to bludgeoning, piercing, and slashing damage from nonmagical attacks; and a +2 bonus to damage with melee weapons.\n\nWhen the spell ends, each affected creature must succeed on a Constitution saving throw or gain 1d4 levels of exhaustion.\n", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bonus to damage increases by 1 for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_reposition", + "fields": { + "name": "Reposition", + "desc": "You designate up to three friendly creatures (one of which can be yourself) within range. Each target teleports to an unoccupied space of its choosing that it can see within 30 feet of itself.", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the spell targets one additional friendly creature for each slot level above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_reset", + "fields": { + "name": "Reset", + "desc": "Choose up to four creatures within range. If a target is your ally, it can reroll initiative, keeping whichever of the two results it prefers. If a target is your enemy, it must make a successful Wisdom saving throw or reroll initiative, keeping whichever of the two results you prefer. Changes to the initiative order go into effect at the start of the next round.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can affect one additional creature for each slot level above 4th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 4, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_reverberate", + "fields": { + "name": "Reverberate", + "desc": "You touch the ground at your feet with the metal ring, creating an impact that shakes the earth ahead of you. Creatures and unattended objects touching the ground in a 15-foot cone emanating from you take 4d6 thunder damage, and creatures fall prone; a creature that makes a successful Dexterity saving throw takes half the damage and does not fall prone.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a metal ring", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 15, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_revive-beast", + "fields": { + "name": "Revive Beast", + "desc": "You touch a beast that has died within the last minute. That beast returns to life with 1 hit point. This spell can’t return to life a beast that has died of old age, nor can it restore any missing body parts.", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "emeralds worth 100 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_right-the-stars", + "fields": { + "name": "Right the Stars", + "desc": "You subtly warp the flow of space and time to enhance your conjurations with cosmic potency. Until the spell ends, the maximum duration of any conjuration spell you cast that requires concentration is doubled, any creature that you summon or create with a conjuration spell has 30 temporary hit points, and you have advantage on Charisma checks and Charisma saving throws.", + "document": "deepm", + "level": 7, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "seven black candles and a circle of powdered charred bone or basalt", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ring-strike", + "fields": { + "name": "Ring Strike", + "desc": "You infuse two metal rings with magic, causing them to revolve in a slow orbit around your head or hand. For the duration, when you hit a target within 60 feet of you with an attack, you can launch one of the rings to strike the target as well. The target takes 1d10 bludgeoning damage and must succeed on a Strength saving throw or be pushed 5 feet directly away from you. The ring is destroyed when it strikes.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect up to two additional rings for each spell slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "two metal rings", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "1d10", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_ring-ward", + "fields": { + "name": "Ring Ward", + "desc": "The iron ring you use to cast the spell becomes a faintly shimmering circlet of energy that spins slowly around you at a radius of 15 feet. For the duration, you and your allies inside the protected area have advantage on saving throws against spells, and all affected creatures gain resistance to one type of damage of your choice.", + "document": "deepm", + "level": 7, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an iron ring worth 200 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_riptide", + "fields": { + "name": "Riptide", + "desc": "With a sweeping gesture, you cause water to swell up into a 20-foot tall, 20-foot radius cylinder centered on a point on the ground that you can see. Each creature in the cylinder must make a Strength saving throw. On a failed save, the creature is restrained and suspended in the cylinder; on a successful save, the creature moves to just outside the nearest edge of the cylinder.\n\nAt the start of your next turn, you can direct the current of the swell as it dissipates. Choose one of the following options.\n\n* ***Riptide.*** The water in the cylinder flows in a direction you choose, sweeping along each creature in the cylinder. An affected creature takes 3d8 bludgeoning damage and is pushed 40 feet in the chosen direction, landing prone.\n* ***Undertow.*** The water rushes downward, pulling each creature in the cylinder into an unoccupied space at the center. Each creature is knocked prone and must make a successful Constitution saving throw or be stunned until the start of your next turn.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 round", + "shape_type": "cylinder", + "shape_magnitude": 20, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_rolling-thunder", + "fields": { + "name": "Rolling Thunder", + "desc": "A tremendous bell note explodes from your outstretched hand and rolls forward in a line 30 feet long and 5 feet wide. Each creature in the line must make a successful Constitution saving throw or be deafened for 1 minute. A creature made of material such as stone, crystal, or metal has disadvantage on its saving throw against this spell.\n\nWhile a creature is deafened in this way, it is wreathed in thundering energy; it takes 2d8 thunder damage at the start of its turn, and its speed is halved. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a sliver of metal from a gong", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_rotting-corpse", + "fields": { + "name": "Rotting Corpse", + "desc": "Your familiarity with the foul effects of death allows you to prevent a dead body from being returned to life using anything but the most powerful forms of magic.\n\nYou cast this spell by touching a creature that died within the last 24 hours. The body immediately decomposes to a state that prevents the body from being returned to life by the [raise dead](https://api.open5e.com/spells/raise-dead) spell (though a [resurrection](https://api.open5e.com/spells/resurrection) spell still works). At the end of this spell’s duration, the body decomposes to a rancid slime, and it can’t be returned to life except through a [true resurrection](https://api.open5e.com/spells/true-resurrection) spell.\n", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can affect one additional corpse for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a rotting piece of flesh from an undead creature", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "3 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_rune-of-imprisonment", + "fields": { + "name": "Rune of Imprisonment", + "desc": "You trace a glowing black rune in the air which streaks toward and envelops its target. Make a ranged spell attack against the target. On a successful hit, the rune absorbs the target creature, leaving only the glowing rune hanging in the space the target occupied. The subject can take no actions while imprisoned, nor can the subject be targeted or affected by any means. Any spell durations or conditions affecting the creature are postponed until the creature is freed. A dying creature does not lose hit points or stabilize until freed.\n\nA creature adjacent to the rune can use a move action to attempt to disrupt its energies; doing so allows the imprisoned creature to make a Wisdom saving throw. On a success, this disruption negates the imprisonment and ends the effect. Disruption can be attempted only once per round.", + "document": "deepm", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "ink", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_salt-lash", + "fields": { + "name": "Salt Lash", + "desc": "You create a long, thin blade of razor-sharp salt crystals. You can wield it as a longsword, using your spellcasting ability to modify your weapon attack rolls. The sword deals 2d8 slashing damage on a hit, and any creature struck by the blade must make a successful Constitution saving throw or be stunned by searing pain until the start of your next turn. Constructs and undead are immune to the blade’s secondary (stun) effect; plants and creatures composed mostly of water, such as water elementals, also take an additional 2d8 necrotic damage if they fail the saving throw.\n\nThe spell lasts until you stop concentrating on it, the duration expires, or you let go of the blade for any reason.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of salt worth 1 sp, which is consumed during the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_sand-ship", + "fields": { + "name": "Sand Ship", + "desc": "Casting **sand ship** on a water vessel up to the size of a small sailing ship transforms it into a vessel capable of sailing on sand as easily as water. The vessel still needs a trained crew and relies on wind or oars for propulsion, but it moves at its normal speed across sand instead of water for the duration of the spell. It can sail only over sand, not soil or solid rock. For the duration of the spell, the vessel doesn’t float; it must be beached or resting on the bottom of a body of water (partially drawn up onto a beach, for example) when the spell is cast, or it sinks into the water.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a boat or ship of 10,000 gp value or less", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_sanguine-horror", + "fields": { + "name": "Sanguine Horror", + "desc": "When you cast this spell, you prick yourself with the material component, taking 1 piercing damage. The spell fails if this damage is prevented or negated in any way. From the drop of blood, you conjure a [blood elemental](https://api.open5e.com/monsters/blood-elemental). The blood elemental is friendly to you and your companions for the duration. It disappears when it’s reduced to 0 hit points or when the spell ends.\n\nRoll initiative for the elemental, which has its own turns. It obeys verbal commands from you (no action required by you). If you don’t issue any commands to the blood elemental, it defends itself but otherwise takes no actions. If your concentration is broken, the blood elemental doesn’t disappear, but you lose control of it and it becomes hostile to you and your companions. An uncontrolled blood elemental cannot be dismissed by you, and it disappears 1 hour after you summoned it.", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "5 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a miniature dagger", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_scale-rot", + "fields": { + "name": "Scale Rot", + "desc": "You summon death and decay to plague your enemies. For dragons, this act often takes the form of attacking a foe’s armor and scales, as a way of weakening an enemy dragon and leaving it plagued by self-doubt and fear. (This enchantment is useful against any armored creature, not just dragons.)\n\nOne creature of your choice within range that has natural armor must make a Constitution saving throw. If it fails, attacks against that creature’s Armor Class are made with advantage, and the creature can’t regain hit points through any means while the spell remains in effect. An affected creature can end the spell by making a successful Constitution saving throw, which also makes the creature immune to further castings of **scale rot** for 24 hours.\n", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the number of affected targets increases by one for each slot level above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of rotten meat", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_scentless", + "fields": { + "name": "Scentless", + "desc": "You touch a willing creature or object that is not being worn or carried. For the duration, the target gives off no odor. A creature that relies on smell has disadvantage on Wisdom (Perception) checks to detect the target and Wisdom (Survival) checks to track the target. The target is invisible to a creature that relies solely on smell to sense its surroundings. This spell has no effect on targets with unusually strong scents, such as ghasts.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "1 ounce of pure water", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_screaming-ray", + "fields": { + "name": "Screaming Ray", + "desc": "You create a ray of psychic energy to attack your enemies. Make a ranged spell attack against a creature. On a hit, the target takes 1d4 psychic damage and is deafened until the end of your next turn. If the target succeeds on a Constitution saving throw, it is not deafened.\n", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you create one additional ray for each slot level above 1st. You can direct the rays at one target or several.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "1d4", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_scribe", + "fields": { + "name": "Scribe", + "desc": "This spell enables you to create a copy of a one-page written work by placing a blank piece of paper or parchment near the work that you are copying. All the writing, illustrations, and other elements in the original are reproduced in the new document, in your handwriting or drawing style. The new medium must be large enough to accommodate the original source. Any magical properties of the original aren’t reproduced, so you can’t use scribe to make copies of spell scrolls or magic books.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_scry-ambush", + "fields": { + "name": "Scry Ambush", + "desc": "You foresee your foe’s strike a split second before it occurs. When you cast this spell successfully, you also designate a number of your allies that can see or hear you equal to your spellcasting ability modifier + your proficiency bonus. Those allies are also not surprised by the attack and can act normally in the first round of combat.\n\nIf you would be surprised, you must make a check using your spellcasting ability at the moment your reaction would be triggered. The check DC is equal to the current initiative count. On a failed check, you are surprised and can’t use your reaction to cast this spell until after your next turn. On a successful check, you can use your reaction to cast this spell immediately.", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_sculpt-snow", + "fields": { + "name": "Sculpt Snow", + "desc": "When you **cast sculpt** snow in an area filled with snow, you can create one Large object, two Medium objects, or four smaller objects from snow. With a casting time of 1 action, your sculptings bear only a crude resemblance to generic creatures or objects. If you increase the casting time to 1 minute, your creations take on a more realistic appearance and can even vaguely resemble specific creatures; the resemblance isn’t strong enough to fool anyone, but the creature can be recognized. The sculptures are as durable as a typical snowman.\n\nSculptures created by this spell can be animated with [animate objects](https://api.open5e.com/spells/animate-objects) or comparable magic. Animated sculptures gain the AC, hit points, and other attributes provided by that spell. When they attack, they deal normal damage plus a similar amount of cold damage; an animated Medium sculpture, for example, deals 2d6 + 1 bludgeoning damage plus 2d6 + 1 cold damage.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can sculpt one additional Large object for each slot level above 2nd. Two Large objects can be replaced with one Huge object.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_seal-of-sanctuary", + "fields": { + "name": "Seal of Sanctuary", + "desc": "You inscribe an angelic seal on the ground, the floor, or other solid surface of a structure. The seal creates a spherical sanctuary with a radius of 50 feet, centered on the seal. For the duration, aberrations, elementals, fey, fiends, and undead that approach to within 5 feet of the boundary know they are about to come into contact with a deadly barrier. If such a creature moves so as to touch the boundary, or tries to cross the boundary by any means, including teleportation and extradimensional travel, it must make a Charisma saving throw. On a failed save, it takes 10d8 radiant damage, is repelled to 5 feet outside the boundary, and can’t target anything inside the boundary with attacks, spells, or abilities until the spell ends. On a successful save, the creature takes half as much radiant damage and can cross the boundary. If the creature is a fiend that isn’t on its home plane, it is immediately destroyed (no saving throw) instead of taking damage.\n\nAberrations, elementals, fey, and undead that are within 50 feet of the seal (inside the boundary) have disadvantage on ability checks, attack rolls, and saving throws, and each such creature takes 2d8 radiant damage at the start of its turn.\n\nCreatures other than aberrations, elementals, fey, fiends, and undead can’t be charmed or frightened while within 50 feet of the seal.\n\nThe seal has AC 18, 50 hit points, resistance to bludgeoning, piercing, and slashing damage, and immunity to psychic and poison damage. Ranged attacks against the seal are made with disadvantage. If it is scribed on the surface of an object that is later destroyed (such as a wooden door), the seal is not damaged and remains in place, perhaps suspended in midair. The spell ends only if the seal is reduced to 0 hit points.", + "document": "deepm", + "level": 7, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "incense and special inks worth 250 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "10d8", + "damage_types": [ + "radiant" + ], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_searing-sun", + "fields": { + "name": "Searing Sun", + "desc": "This spell intensifies the light and heat of the sun, so that it burns exposed flesh. You must be able to see the sun when you cast the spell. The searing sunlight affects a cylindrical area 50 feet in radius and 200 feet high, centered on the a point within range. Each creature that starts its turn in that area takes 5d8 fire damage, or half the damage with a successful Constitution saving throw. A creature that’s shaded by a solid object —such as an awning, a building, or an overhanging boulder— has advantage on the saving throw. On your turn, you can use an action to move the center of the cylinder up to 20 feet along the ground in any direction.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "200 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a magnifying lens", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_see-beyond", + "fields": { + "name": "See Beyond", + "desc": "This spell enables a willing creature you touch to see through any obstructions as if they were transparent. For the duration, the target can see into and through opaque objects, creatures, spells, and effects that obstruct line of sight to a range of 30 feet. Inside that distance, the creature can choose what it perceives as opaque and what it perceives as transparent as freely and as naturally as it can shift its focus from nearby to distant objects.\n\nAlthough the creature can see any target within 30 feet of itself, all other requirements must still be satisfied before casting a spell or making an attack against that target. For example, the creature can see an enemy that has total cover but can’t shoot that enemy with an arrow because the cover physically prevents it. That enemy could be targeted by a [geas](https://api.open5e.com/spells/geas) spell, however, because [geas](https://api.open5e.com/spells/geas) needs only a visible target.", + "document": "deepm", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a transparent crystal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_seed-of-destruction", + "fields": { + "name": "Seed of Destruction", + "desc": "This spell impregnates a living creature with a rapidly gestating [hydra](https://api.open5e.com/spells/hydra) that consumes the target from within before emerging to wreak havoc on the world. Make a ranged spell attack against a living creature within range that you can see. On a hit, you implant a five‑headed embryonic growth into the creature. Roll 1d3 + 1 to determine how many rounds it takes the embryo to mature.\n\nDuring the rounds when the embryo is gestating, the affected creature takes 5d4 slashing damage at the start of its turn, or half the damage with a successful Constitution saving throw.\n\nWhen the gestation period has elapsed, a tiny hydra erupts from the target’s abdomen at the start of your turn. The hydra appears in an unoccupied space adjacent to the target and immediately grows into a full-size Huge aberration. Nearby creatures are pushed away to clear a sufficient space as the hydra grows. This creature is a standard hydra, but with the ability to cast [bane](https://api.open5e.com/spells/bane) as an action (spell save DC 11) requiring no spell components. Roll initiative for the hydra, which takes its own turns. It obeys verbal commands that you issue to it (no action required by you). If you don’t give it a command or it can’t follow your command, the hydra attacks the nearest living creature.\n\nAt the end of each of the hydra’s turns, you must make a DC 15 Charisma saving throw. On a successful save, the hydra remains under your control and friendly to you and your companions. On a failed save, your control ends, the hydra becomes hostile to all creatures, and it attacks the nearest creature to the best of its ability.\n\nThe hydra disappears at the end of the spell’s duration, or its existence can be cut short with a [wish](https://api.open5e.com/spells/wish) spell or comparable magic, but nothing less. The embryo can be destroyed before it reaches maturity by using a [dispel magic](https://api.open5e.com/spells/dispel-magic) spell under the normal rules for dispelling high-level magic.", + "document": "deepm", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "five teeth from a still-living humanoid and a vial of the caster’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "5d4", + "damage_types": [ + "slashing" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_seeping-death", + "fields": { + "name": "Seeping Death", + "desc": "Your touch inflicts a virulent, flesh-eating disease. Make a melee spell attack against a creature within your reach. On a hit, the creature’s Dexterity score is reduced by 1d4, and it is afflicted with the seeping death disease for the duration.\n\nSince this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease’s effects apply to it and can end the spell early.\n\n***Seeping Death.*** The creature’s flesh is slowly liquefied by a lingering necrotic pestilence. At the end of each long rest, the diseased creature must succeed on a Constitution saving throw or its Dexterity score is reduced by 1d4. The reduction lasts until the target finishes a long rest after the disease is cured. If the disease reduces the creature’s Dexterity to 0, the creature dies.", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "3 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_seers-reaction", + "fields": { + "name": "Seer’s Reaction", + "desc": "Your foreknowledge allows you to act before others, because you knew what was going to happen. When you cast this spell, make a new initiative roll with a +5 bonus. If the result is higher than your current initiative, your place in the initiative order changes accordingly. If the result is also higher than the current place in the initiative order, you take your next turn immediately and then use the higher number starting in the next round.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_semblance-of-dread", + "fields": { + "name": "Semblance of Dread", + "desc": "You adopt the visage of the faceless god Nyarlathotep. For the duration, any creature within 10 feet of you and able to see you can’t willingly move closer to you unless it makes a successful Wisdom saving throw at the start of its turn. Constructs and undead are immune to this effect.\n\nFor the duration of the spell, you also gain vulnerability to radiant damage and have advantage on saving throws against effects that cause the frightened condition.", + "document": "deepm", + "level": 0, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shade", + "fields": { + "name": "Shade", + "desc": "You create a magical screen across your eyes. While the screen remains, you are immune to blindness caused by visible effects, such as [color spray](https://api.open5e.com/spells/color-spray). The spell doesn’t alleviate blindness that’s already been inflicted on you. If you normally suffer penalties on attacks or ability checks while in sunlight, those penalties don’t apply while you’re under the effect of this spell.\n", + "document": "deepm", + "level": 2, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 10 minutes for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shadow-armor", + "fields": { + "name": "Shadow Armor", + "desc": "You can siphon energy from the plane of shadow to protect yourself from an immediate threat. As a reaction, you pull shadows around yourself to distort reality. The attack against you is made with disadvantage, and you have resistance to radiant damage until the start of your next turn.", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shadow-bite", + "fields": { + "name": "Shadow Bite", + "desc": "You create a momentary needle of cold, sharp pain in a creature within range. The target must make a successful Constitution saving throw or take 1d6 necrotic damage immediately and have its speed halved until the start of your next turn.", + "document": "deepm", + "level": 0, + "school": "illusion", + "higher_level": "This spell’s damage increases to 2d6 when you reach 5th level, 3d6 when you reach 11th level, and 4d6 when you reach 17th level.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shadow-blindness", + "fields": { + "name": "Shadow Blindness", + "desc": "You make a melee spell attack against a creature you touch that has darkvision as an innate ability; on a hit, the target’s darkvision is negated until the spell ends. This spell has no effect against darkvision that derives from a spell or a magic item. The target retains all of its other senses.", + "document": "deepm", + "level": 0, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shadow-hands", + "fields": { + "name": "Shadow Hands", + "desc": "A freezing blast of shadow explodes out from you in a 10-foot cone. Any creature caught in the shadow takes 2d4 necrotic damage and is frightened; a successful Wisdom saving throw halves the damage and negates the frightened condition.\n", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage dealt by the attack increases by 2d4 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shadow-monsters", + "fields": { + "name": "Shadow Monsters", + "desc": "You choose up to two creatures within range. Each creature must make a Wisdom saving throw. On a failed save, the creature perceives its allies as hostile, shadowy monsters, and it must attack its nearest ally. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 4, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a doll", + "material_cost": null, + "material_consumed": false, + "target_count": 2, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shadow-puppets", + "fields": { + "name": "Shadow Puppets", + "desc": "You animate the shadow of a creature within range, causing it to attack that creature. As a bonus action when you cast the spell, or as an action on subsequent rounds while you maintain concentration, make a melee spell attack against the creature. If it hits, the target takes 2d8 psychic damage and must make a successful Intelligence saving throw or be incapacitated until the start of your next turn.\n", + "document": "deepm", + "level": 2, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of powdered lead", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": true, + "damage_roll": "2d8", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shadow-trove", + "fields": { + "name": "Shadow Trove", + "desc": "You paint a small door approximately 2 feet square on a hard surface to create a portal into the void of space. The portal “peels off” the surface you painted it on and follows you when you move, always floating in the air within 5 feet of you. An icy chill flows out from the portal. You can place up to 750 pounds of nonliving matter in the portal, where it stays suspended in the frigid void until you withdraw it. Items that are still inside the shadow trove when the duration ends spill out onto the ground. You can designate a number of creatures up to your Intelligence modifier who have access to the shadow trove; only you and those creatures can move objects into the portal.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 2 hours for each slot level above 3rd.", + "target_type": "creature", + "range": "5 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "ink made from the blood of a raven", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shadows-brought-to-light", + "fields": { + "name": "Shadows Brought to Light", + "desc": "If a creature you designate within range fails a Charisma saving throw, you cause the target’s shadow to come to life and reveal one of the creature’s most scandalous secrets: some fact that the target would not want widely known (GM’s choice). When casting the spell, you choose whether everyone present will hear the secret, in which case the shadow speaks loudly in a twisted version of the target’s voice, or if the secret is whispered only to you. The shadow speaks in the target’s native language.\n\nIf the target does not have a scandalous secret or does not have a spoken language, the spell fails as if the creature’s saving throw had succeeded.\n\nIf the secret was spoken aloud, the target takes a −2 penalty to Charisma checks involving anyone who was present when it was revealed. This penalty lasts until you finish a long rest.\n\n***Ritual Focus.*** If you expend your ritual focus, the target has disadvantage on Charisma checks instead of taking the −2 penalty.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shadowy-retribution", + "fields": { + "name": "Shadowy Retribution", + "desc": "You fill a small silver cup with your own blood (taking 1d4 piercing damage) while chanting vile curses in the dark. Once the chant is completed, you consume the blood and swear an oath of vengeance against any who harm you.\n\nIf you are reduced to 0 hit points, your oath is invoked; a shadow materializes within 5 feet of you. The shadow attacks the creature that reduced you to 0 hit points, ignoring all other targets, until it or the target is slain, at which point the shadow dissipates into nothing.\n", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, an additional shadow is conjured for each slot level above 4th.\n\n***Ritual Focus.*** If you expend your ritual focus, the spell summons a banshee instead of a shadow. If you also use a higher-level spell slot, additional undead are still shadows.", + "target_type": "point", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small silver cup filled with the caster’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "12 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shared-sacrifice", + "fields": { + "name": "Shared Sacrifice", + "desc": "You and up to five of your allies within range contribute part of your life force to create a pool that can be used for healing. Each target takes 5 necrotic damage (which can’t be reduced but can be healed normally), and those donated hit points are channeled into a reservoir of life essence. As an action, any creature who contributed to the pool of hit points can heal another creature by touching it and drawing hit points from the pool into the injured creature. The injured creature heals a number of hit points equal to your spellcasting ability modifier, and the hit points in the pool decrease by the same amount. This process can be repeated until the pool is exhausted or the spell’s duration expires.", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "5", + "damage_types": [ + "necrotic" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_sheen-of-ice", + "fields": { + "name": "Sheen of Ice", + "desc": "A small icy globe shoots from your finger to a point within range and then explodes in a spray of ice. Each creature within 20 feet of that point must make a successful Dexterity saving throw or become coated in ice for 1 minute. Ice-coated creatures move at half speed. An invisible creature becomes outlined by the ice so that it loses the benefits of invisibility while the ice remains. The spell ends for a specific creature if that creature takes 5 or more fire damage.", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "water within a glass globe", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shifting-the-odds", + "fields": { + "name": "Shifting the Odds", + "desc": "By wrapping yourself in strands of chaotic energy, you gain advantage on the next attack roll or ability check that you make. Fate is a cruel mistress, however, and her scales must always be balanced. The second attack roll or ability check (whichever occurs first) that you make after casting **shifting the odds** is made with disadvantage.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shiver", + "fields": { + "name": "Shiver", + "desc": "You fill a humanoid creature with such cold that its teeth begin to chatter and its body shakes uncontrollably. Roll 5d8; the total is the maximum hit points of a creature this spell can affect. The affected creature must succeed on a Constitution saving throw, or it cannot cast a spell or load a missile weapon until the end of your next turn. Once a creature has been affected by this spell, it is immune to further castings of this spell for 24 hours.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "The maximum hit points you can affect increases by 4d8 when you reach 5th level (9d8), 11th level (13d8), and 17th level (17d8).", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "humanoid tooth", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_shroud-of-death", + "fields": { + "name": "Shroud of Death", + "desc": "You call up a black veil of necrotic energy that devours the living. You draw on the life energy of all living creatures within 30 feet of you that you can see. When you cast the spell, every living creature within 30 feet of you that you can see takes 1 necrotic damage, and all those hit points transfer to you as temporary hit points. The damage and the temporary hit points increase to 2 per creature at the start of your second turn concentrating on the spell, 3 per creature at the start of your third turn, and so on. All living creatures you can see within 30 feet of you at the start of each of your turns are affected. A creature can avoid the effect by moving more than 30 feet away from you or by getting out of your line of sight, but it becomes susceptible again if the necessary conditions are met. The temporary hit points last until the spell ends.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of ice", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1", + "damage_types": [ + "necrotic" + ], + "duration": "10 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_sidestep-arrow", + "fields": { + "name": "Sidestep Arrow", + "desc": "With a few perfectly timed steps, you interpose a foe between you and danger. You cast this spell when an enemy makes a ranged attack or a ranged spell attack against you but before the attack is resolved. At least one other foe must be within 10 feet of you when you cast **sidestep arrow**. As part of casting the spell, you can move up to 15 feet to a place where an enemy lies between you and the attacker. If no such location is available, the spell has no effect. You must be able to move (not restrained or grappled or prevented from moving for any other reason), and this move does not provoke opportunity attacks. After you move, the ranged attack is resolved with the intervening foe as the target instead of you.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_sign-of-koth", + "fields": { + "name": "Sign of Koth", + "desc": "You invoke the twilight citadels of Koth to create a field of magical energy in the shape of a 60-foot-radius, 60-foot‑tall cylinder centered on you. The only visible evidence of this field is a black rune that appears on every doorway, window, or other portal inside the area.\n\nChoose one of the following creature types: aberration, beast, celestial, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead. The sign affects creatures of the chosen type (including you, if applicable) in the following ways:\n* The creatures can’t willingly enter the cylinder’s area by nonmagical means; the cylinder acts as an invisible, impenetrable wall of force. If an affected creature tries to enter the cylinder’s area by using teleportation, a dimensional shortcut, or other magical means, it must make a successful Charisma saving throw or the attempt fails.\n* They cannot hear any sounds that originate inside the cylinder.\n* They have disadvantage on attack rolls against targets inside the cylinder.\n* They can’t charm, frighten, or possess creatures inside the cylinder.\nCreatures that aren’t affected by the field and that take a short rest inside it regain twice the usual number of hit points for each Hit Die spent at the end of the rest.\n\nWhen you cast this spell, you can choose to reverse its magic; doing this will prevent affected creatures from leaving the area instead of from entering it, make them unable to hear sounds that originate outside the cylinder, and so forth. In this case, the field provides no benefit for taking a short rest.\n", + "document": "deepm", + "level": 7, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the radius increases by 30 feet for each slot level above 7th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a platinum dagger and a powdered black pearl worth 500 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_silhouette", + "fields": { + "name": "Silhouette", + "desc": "You create a shadow play against a screen or wall. The surface can encompass up to 100 square feet. The number of creatures that can see the shadow play equals your Intelligence score. The shadowy figures make no sound but they can dance, run, move, kiss, fight, and so forth. Most of the figures are generic types—a rabbit, a dwarf—but a number of them equal to your Intelligence modifier can be recognizable as specific individuals.", + "document": "deepm", + "level": 0, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_sir-mittinzs-move-curse", + "fields": { + "name": "Sir Mittinz’s Move Curse", + "desc": "When you are within range of a cursed creature or object, you can transfer the curse to a different creature or object that’s also within range. The curse must be transferred from object to object or from creature to creature.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "20 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a finely crafted hollow glass sphere and incense worth 50 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_sleep-of-the-deep", + "fields": { + "name": "Sleep of the Deep", + "desc": "Your magic haunts the dreams of others. Choose a sleeping creature that you are aware of within range. Creatures that don’t sleep, such as elves, can’t be targeted. The creature must succeed on a Wisdom saving throw or it garners no benefit from the rest, and when it awakens, it gains one level of exhaustion and is afflicted with short‑term madness.\n", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of black sand, a tallow candle, and a drop of cephalopod ink", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_slippery-fingers", + "fields": { + "name": "Slippery Fingers", + "desc": "You set a series of small events in motion that cause the targeted creature to drop one nonmagical item of your choice that it’s currently holding, unless it makes a successful Charisma saving throw.", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_slither", + "fields": { + "name": "Slither", + "desc": "You momentarily become a shadow (a humanoid-shaped absence of light, not the undead creature of that name). You can slide under a door, through a keyhole, or through any other tiny opening. All of your equipment is transformed with you, and you can move up to your full speed during the spell’s duration. While in this form, you have advantage on Dexterity (Stealth) checks made in darkness or dim light and you are immune to nonmagical bludgeoning, piercing, and slashing damage. You can dismiss this spell by using an action to do so.\n\nIf you return to your normal form while in a space too small for you (such as a mouse hole, sewer pipe, or the like), you take 4d6 force damage and are pushed to the nearest space within 50 feet big enough to hold you. If the distance is greater than 50 feet, you take an extra 1d6 force damage for every additional 10 feet traveled.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target an additional willing creature that you touch for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "ashes from a wooden statue of you, made into ink and used to draw your portrait, worth 50 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_snow-boulder", + "fields": { + "name": "Snow Boulder", + "desc": "A ball of snow forms 5 feet away from you and rolls in the direction you point at a speed of 30 feet, growing larger as it moves. To roll the boulder into a creature, you must make a successful ranged spell attack. If the boulder hits, the creature must make a successful Dexterity saving throw or be knocked prone and take the damage indicated below. Hitting a creature doesn’t stop the snow boulder’s movement or impede its growth, as long as you continue to maintain concentration on the effect. When the spell ends, the boulder stops moving.\n\n| Round | Size | Damage |\n|-|-|-|\n| 1 | Small | 1d6 bludgeoning |\n| 2 | Medium | 2d6 bludgeoning |\n| 3 | Large | 4d6 bludgeoning |\n| 4 | Huge | 6d6 bludgeoning |\n\n", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of snow", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "4 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_snow-fort", + "fields": { + "name": "Snow Fort", + "desc": "This spell creates a simple “fort” from packed snow. The snow fort springs from the ground in an unoccupied space within range. It encircles a 10-foot area with sloping walls 4 feet high. The fort provides half cover (+2 AC) against ranged and melee attacks coming from outside the fort. The walls have AC 12, 30 hit points per side, are immune to cold, necrotic, poison, and psychic damage, and are vulnerable to fire damage. A damaged wall can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis, up to a maximum of 30 points.\n\nThe spell also creates a dozen snowballs that can be thrown (range 20/60) and that deal 1d4 bludgeoning damage plus 1d4 cold damage on a hit.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a ring carved from chalk or white stone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_snowy-coat", + "fields": { + "name": "Snowy Coat", + "desc": "This spell makes a slight alteration to a target creature’s appearance that gives it advantage on Dexterity (Stealth) checks to hide in snowy terrain. In addition, the target can use a bonus action to make itself invisible in snowy terrain for 1 minute. The spell ends at the end of the minute or when the creature attacks or casts a spell.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_song-of-the-forest", + "fields": { + "name": "Song of the Forest", + "desc": "You attune your senses to the natural world, so that you detect every sound that occurs within 60 feet: wind blowing through branches, falling leaves, grazing deer, trickling streams, and more. You can clearly picture the source of each sound in your mind. The spell gives you tremorsense out to a range of 10 feet. In addition, you have advantage on Wisdom (Perception) checks that rely on hearing. Creatures that make no noise or that are magically silent cannot be detected by this spell’s effect.\n\n**Song of the forest** functions only in natural environments; it fails if cast underground, in a city, or in a building that isolates the caster from nature (GM’s discretion).\n\n***Ritual Focus.*** If you expend your ritual focus, the spell also gives you blindsight out to a range of 30 feet.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dried leaf, crumpled and released", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_speak-with-inanimate-object", + "fields": { + "name": "Speak with Inanimate Object", + "desc": "You awaken a spirit that resides inside an inanimate object such as a rock, a sign, or a table, and can ask it up to three yes-or-no questions. The spirit is indifferent toward you unless you have done something to harm or help it. The spirit can give you information about its environment and about things it has observed (with its limited senses), and it can act as a spy for you in certain situations. The spell ends when its duration expires or after you have received answers to three questions.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_spin", + "fields": { + "name": "Spin", + "desc": "You designate a creature you can see within range and tell it to spin. The creature can resist this command with a successful Wisdom saving throw. On a failed save, the creature spins in place for the duration of the spell. A spinning creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A creature that has spun for 1 round or longer becomes dizzy and has disadvantage on attack rolls and ability checks until 1 round after it stops spinning.", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_spinning-axes", + "fields": { + "name": "Spinning Axes", + "desc": "Spinning axes made of luminous force burst out from you to strike all creatures within 10 feet of you. Each of those creatures takes 5d8 force damage, or half the damage with a successful Dexterity saving throw. Creatures damaged by this spell that aren’t undead or constructs begin bleeding. A bleeding creature takes 2d6 necrotic damage at the end of each of its turns for 1 minute. A creature can stop the bleeding for itself or another creature by using an action to make a successful Wisdom (Medicine) check against your spell save DC or by applying any amount of magical healing.\n", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an iron ring", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_spiteful-weapon", + "fields": { + "name": "Spiteful Weapon", + "desc": "You create a connection between the target of the spell, an attacker that injured the target during the last 24 hours, and the melee weapon that caused the injury, all of which must be within range when the spell is cast.\n\nFor the duration of the spell, whenever the attacker takes damage while holding the weapon, the target must make a Charisma saving throw. On a failed save, the target takes the same amount and type of damage, or half as much damage on a successful one. The attacker can use the weapon on itself and thus cause the target to take identical damage. A self-inflicted wound hits automatically, but damage is still rolled randomly.\n\nOnce the connection is established, it lasts for the duration of the spell regardless of range, so long as all three elements remain on the same plane. The spell ends immediately if the attacker receives any healing.\n", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "The target has disadvantage on its Charisma saving throws if **spiteful weapon** is cast using a spell slot of 5th level or higher.", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a melee weapon that has been used to injure the target", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_spur-mount", + "fields": { + "name": "Spur Mount", + "desc": "You urge your mount to a sudden burst of speed. Until the end of your next turn, you can direct your mount to use the Dash or Disengage action as a bonus action. This spell has no effect on a creature that you are not riding.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an apple or a sugar cube", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_staff-of-violet-fire", + "fields": { + "name": "Staff of Violet Fire", + "desc": "You create a quarterstaff of pure necrotic energy that blazes with intense purple light; it appears in your chosen hand. If you let it go, it disappears, though you can evoke it again as a bonus action if you have maintained concentration on the spell.\n\nThis staff is an extremely unstable and impermanent magic item; it has 10 charges and does not require attunement. The wielder can use one of three effects:\n\n* By using your action to make a melee attack and expending 1 charge, you can attack with it. On a hit, the target takes 5d10 necrotic damage.\n* By expending 2 charges, you can release bolts of necrotic fire against up to 3 targets as ranged attacks for 1d8+4 necrotic damage each.\n\nThe staff disappears and the spell ends when all the staff's charges have been expended or if you stop concentrating on the spell.\n", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the melee damage increases by 1d10 for every two slot levels above 4th, or you add one additional ranged bolt for every two slot levels above 4th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "mummy dust", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "necrotic" + ], + "duration": "special", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_stanch", + "fields": { + "name": "Stanch", + "desc": "The target’s blood coagulates rapidly, so that a dying target stabilizes and any ongoing bleeding or wounding effect on the target ends. The target can't be the source of blood for any spell or effect that requires even a drop of blood.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_starburst", + "fields": { + "name": "Starburst", + "desc": "You cause a mote of starlight to appear and explode in a 5-foot cube you can see within range. If a creature is in the cube, it must succeed on a Charisma saving throw or take 1d8 radiant damage.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "This spell’s damage increases to 2d8 when you reach 5th level, 3d8 when you reach 11th level, and 4d8 when you reach 17th level.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_starfall", + "fields": { + "name": "Starfall", + "desc": "You cause bolts of shimmering starlight to fall from the heavens, striking up to five creatures that you can see within range. Each bolt strikes one target, dealing 6d6 radiant damage, knocking the target prone, and blinding it until the start of your next turn. A creature that makes a successful Dexterity saving throw takes half the damage, is not knocked prone, and is not blinded. If you name fewer than five targets, excess bolts strike the ground harmlessly.\n", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can create one additional bolt for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_starry-vision", + "fields": { + "name": "Starry Vision", + "desc": "This spell acts as [compelling fate](https://api.open5e.com/spells/compelling-fate), except as noted above (**starry** vision can be cast as a reaction, has twice the range of [compelling fate](https://api.open5e.com/spells/compelling-fate), and lasts up to 1 minute). At the end of each of its turns, the target repeats the Charisma saving throw, ending the effect on a success.\n", + "document": "deepm", + "level": 7, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the bonus to AC increases by 1 for each slot level above 7th.", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a sprinkle of gold dust worth 400 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_stars-heart", + "fields": { + "name": "Star's Heart", + "desc": "This spell increases gravity tenfold in a 50-foot radius centered on you. Each creature in the area other than you drops whatever it’s holding, falls prone, becomes incapacitated, and can’t move. If a solid object (such as the ground) is encountered when a flying or levitating creature falls, the creature takes three times the normal falling damage. Any creature except you that enters the area or starts its turn there must make a successful Strength saving throw or fall prone and become incapacitated and unable to move. A creature that starts its turn prone and incapacitated makes a Strength saving throw. On a failed save, the creature takes 8d6 bludgeoning damage; on a successful save, it takes 4d6 bludgeoning damage, it’s no longer incapacitated, and it can move at half speed.\n\nAll ranged weapon attacks inside the area have a normal range of 5 feet and a maximum range of 10 feet. The same applies to spells that create missiles that have mass, such as [flaming sphere](https://api.open5e.com/spells/flaming-sphere). A creature under the influence of a [freedom of movement](https://api.open5e.com/spells/freedom-of-movement) spell or comparable magic has advantage on the Strength saving throws required by this spell, and its speed isn’t reduced once it recovers from being incapacitated.", + "document": "deepm", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "50 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an ioun stone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_steal-warmth", + "fields": { + "name": "Steal Warmth", + "desc": "When you cast **steal warmth** after taking cold damage, you select a living creature within 5 feet of you. That creature takes the cold damage instead, or half the damage with a successful Constitution saving throw. You regain hit points equal to the amount of cold damage taken by the target.\n", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the distance to the target you can affect with this spell increases by 5 feet for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_steam-blast", + "fields": { + "name": "Steam Blast", + "desc": "You unleash a burst of superheated steam in a 15-foot radius around you. All other creatures in the area take 5d8 fire damage, or half as much damage on a successful Dexterity saving throw. Nonmagical fires smaller than a bonfire are extinguished, and everything becomes wet.\n", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a tiny copper kettle or boiler", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_steam-whistle", + "fields": { + "name": "Steam Whistle", + "desc": "You open your mouth and unleash a shattering scream. All other creatures in a 30-foot radius around you take 10d10 thunder damage and are deafened for 1d8 hours. A successful Constitution saving throw halves the damage and reduces the deafness to 1 round.", + "document": "deepm", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small brass whistle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_stench-of-rot", + "fields": { + "name": "Stench of Rot", + "desc": "Choose one creature you can see within range that isn’t a construct or an undead. The target must succeed on a Charisma saving throw or become cursed for the duration of the spell. While cursed, the target reeks of death and rot, and nothing short of magic can mask or remove the smell. The target has disadvantage on all Charisma checks and on Constitution saving throws to maintain concentration on spells. A creature with the Keen Smell trait, or a similar trait indicating the creature has a strong sense of smell, can add your spellcasting ability modifier to its Wisdom (Perception) or Wisdom (Survival) checks to find the target. A [remove curse](https://api.open5e.com/spells/remove-curse) spell or similar magic ends the spell early.\n", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration increases by 1 hour for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a live maggot", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_storm-of-wings", + "fields": { + "name": "Storm of Wings", + "desc": "You create a storm of spectral birds, bats, or flying insects in a 15-foot-radius sphere on a point you can see within range. The storm spreads around corners, and its area is lightly obscured. Each creature in the storm when it appears and each a creature that starts its turn in the storm is affected by the storm.\n As a bonus action on your turn, you can move the storm up to 30 feet. As an action on your turn, you can change the storm from one type to another, such as from a storm of bats to a storm of insects.\n ***Bats.*** The creature takes 4d6 necrotic damage, and its speed is halved while within the storm as the bats cling to it and drain its blood.\n ***Birds.*** The creature takes 4d6 slashing damage, and has disadvantage on attack rolls while within the storm as the birds fly in the way of the creature's attacks.\n ***Insects.*** The creature takes 4d6 poison damage, and it must make a Constitution saving throw each time it casts a spell while within the storm. On a failed save, the creature fails to cast the spell, losing the action but not the spell slot.", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of honey", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 15, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_sudden-dawn", + "fields": { + "name": "Sudden Dawn", + "desc": "You call upon morning to arrive ahead of schedule. With a sharp word, you create a 30-foot-radius cylinder of light centered on a point on the ground within range. The cylinder extends vertically for 100 feet or until it reaches an obstruction, such as a ceiling. The area inside the cylinder is brightly lit.", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "100 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "cylinder", + "shape_magnitude": 30, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_summon-eldritch-servitor", + "fields": { + "name": "Summon Eldritch Servitor", + "desc": "You summon eldritch aberrations that appear in unoccupied spaces you can see within range. Choose one of the following options for what appears:\n* Two [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng)\n* One [shantak](https://api.open5e.com/monsters/shantak)\n\nWhen the summoned creatures appear, you must make a Charisma saving throw. On a success, the creatures are friendly to you and your allies. On a failure, the creatures are friendly to no one and attack the nearest creatures, pursuing and fighting for as long as possible.\n\nRoll initiative for the summoned creatures, which take their own turns as a group. If friendly to you, they obey your verbal commands (no action required by you to issue a command), or they attack the nearest living creature if they are not commanded otherwise.\n\nEach round when you maintain concentration on the spell, you must make a successful DC 15 Wisdom saving throw at the end of your turn or take 1d4 psychic damage. If the total of this damage exceeds your Wisdom score, you gain 1 point of Void taint and you are afflicted with a form of short-term madness. The same penalty applies when the damage exceeds twice your Wisdom score, three times your Wisdom score, and so forth, if you maintain concentration for that long.\n\nA summoned creature disappears when it drops to 0 hit points or when the spell ends. If you stop concentrating on the spell before 1 hour has elapsed, the creatures become uncontrolled and hostile until they disappear 1d6 rounds later or until they are killed.\n", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a 7th- or 8th-level spell slot, you can summon four [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng) or a [hound of Tindalos](https://api.open5e.com/monsters/hound-of-tindalos). When you cast it with a 9th-level spell slot, you can summon five [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng) or a [nightgaunt](https://api.open5e.com/monsters/nightgaunt).", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of the caster’s blood and a silver dagger", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_summon-star", + "fields": { + "name": "Summon Star", + "desc": "You summon a friendly star from the heavens to do your bidding. It appears in an unoccupied space you can see within range and takes the form of a glowing humanoid with long white hair. All creatures other than you who view the star must make a successful Wisdom saving throw or be charmed for the duration of the spell. A creature charmed in this way can repeat the Wisdom saving throw at the end of each of its turns. On a success, the creature is no longer charmed and is immune to the effect of this casting of the spell. In all other ways, the star is equivalent to a [deva](https://api.open5e.com/monsters/deva). It understands and obeys verbal commands you give it. If you do not give the star a command, it defends itself and attacks the last creature that attacked it. The star disappears when it drops to 0 hit points or when the spell ends.", + "document": "deepm", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_surge-dampener", + "fields": { + "name": "Surge Dampener", + "desc": "Using your strength of will, you cause one creature other than yourself that you touch to become so firmly entrenched within reality that it is protected from the effects of a chaos magic surge. The protected creature can make a DC 13 Charisma saving throw to negate the effect of a chaos magic surge that does not normally allow a saving throw, or it gains advantage on a saving throw that is normally allowed. Once the protected creature makes a successful saving throw allowed by **surge dampener**, the spell ends.", + "document": "deepm", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute, until expended", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_surprise-blessing", + "fields": { + "name": "Surprise Blessing", + "desc": "You touch a willing creature and choose one of the conditions listed below that the creature is currently subjected to. The condition’s normal effect on the target is suspended, and the indicated effect applies instead. This spell’s effect on the target lasts for the duration of the original condition or until the spell ends. If this spell ends before the original condition’s duration expires, you become affected by the condition for as long as it lasts, even if you were not the original recipient of the condition.\n\n***Blinded:*** The target gains truesight out to a range of 10 feet and can see 10 feet into the Ethereal Plane.\n\n***Charmed:*** The target’s Charisma score becomes 19, unless it is already higher than 19, and it gains immunity to charm effects.\n\n***Frightened:*** The target emits a 10-foot-radius aura of dread. Each creature the target designates that starts its turn in the aura must make a successful Wisdom saving throw or be frightened of the target. A creature frightened in this way that starts its turn outside the aura repeats the saving throw, ending the condition on itself on a success.\n\n***Paralyzed:*** The target can use one extra bonus action or reaction per round.\n\n***Petrified:*** The target gains a +2 bonus to AC.\n\n***Poisoned:*** The target heals 2d6 hit points at the start of its next turn, and it gains immunity to poison damage and the poisoned condition.\n\n***Stunned:*** The target has advantage on Intelligence, Wisdom, and Charisma saving throws.", + "document": "deepm", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_symbol-of-sorcery", + "fields": { + "name": "Symbol of Sorcery", + "desc": "You draw an arcane symbol on an object, wall, or other surface at least 5 feet wide. When a creature other than you approaches within 5 feet of the symbol, that act triggers an arcane explosion. Each creature in a 60-foot cone must make a successful Wisdom saving throw or be stunned. A stunned creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a successful save. After this symbol explodes or when the duration expires, its power is spent and the spell ends.", + "document": "deepm", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a stick of incense worth 20 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": "cone", + "shape_magnitude": 60, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_talons-of-a-hungry-land", + "fields": { + "name": "Talons of a Hungry Land", + "desc": "You cause three parallel lines of thick, flared obsidian spikes to erupt from the ground. They appear within range on a solid surface, last for the duration, and provide three‐quarters cover to creatures behind them. You can make lines (up to 60 feet long, 10 feet high, and 5 feet thick) or form a circle (20 feet in diameter, up to 15 feet high and 5 feet thick).\n\nWhen the lines appear, each creature in their area must make a Dexterity saving throw. Creatures takes 8d8 slashing damage, or half as much damage on a successful save.\n\nA creature can move through the lines at the risk of cutting itself on the exposed edges. For every 1 foot a creature moves through the lines, it must spend 4 feet of movement. Furthermore, the first time a creature enters the lines on a turn or ends its turn there, the creature must make a Dexterity saving throw. It takes 8d8 slashing damage on a failure, or half as much damage on a success.\n\nWhen you stop concentrating on the spell, you can cause the obsidian spikes to explode, dealing 5d8 slashing damage to any creature within 15 feet, or half as much damage on a successful Dexterity save.\n", + "document": "deepm", + "level": 7, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage from all effects of the lines increases by 1d8 for each slot level above 7th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "8d8", + "damage_types": [ + "slashing" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_targeting-foreknowledge", + "fields": { + "name": "Targeting Foreknowledge", + "desc": "Twisting the knife, slapping with the butt of the spear, slashing out again as you recover from a lunge, and countless other double-strike maneuvers are skillful ways to get more from your weapon. By casting this spell as a bonus action after making a successful melee weapon attack, you deal an extra 2d6 damage of the weapon’s type to the target. In addition, if your weapon attack roll was a 19 or higher, it is a critical hit and increases the weapon’s damage dice as normal. The extra damage from this spell is not increased on a critical hit.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_thin-the-ice", + "fields": { + "name": "Thin the Ice", + "desc": "You target a point within range. That point becomes the top center of a cylinder 10 feet in radius and 40 feet deep. All ice inside that area melts immediately. The uppermost layer of ice seems to remain intact and sturdy, but it covers a 40-foot-deep pit filled with ice water. A successful Wisdom (Survival) check or passive Perception check against your spell save DC notices the thin ice. If a creature weighing more than 20 pounds (or a greater weight specified by you when casting the spell) treads over the cylinder or is already standing on it, the ice gives way. Unless the creature makes a successful Dexterity saving throw, it falls into the icy water, taking 2d6 cold damage plus whatever other problems are caused by water, by armor, or by being drenched in a freezing environment. The water gradually refreezes normally.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of sunstone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_thousand-darts", + "fields": { + "name": "Thousand Darts", + "desc": "You launch thousands of needlelike darts in a 5-foot‐wide line that is 120 feet long. Each creature in the line takes 6d6 piercing damage, or half as much damage if it makes a successful Dexterity saving throw. The first creature struck by the darts makes the saving throw with disadvantage.\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a set of mithral darts worth 25 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "piercing" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_throes-of-ecstasy", + "fields": { + "name": "Throes of Ecstasy", + "desc": "Choose a humanoid that you can see within range. The target must succeed on a Constitution saving throw or become overcome with euphoria, rendering it incapacitated for the duration. The target automatically fails Wisdom saving throws, and attack rolls against the target have advantage. At the end of each of its turns, the target can make another Constitution saving throw. On a successful save, the spell ends on the target and it gains one level of exhaustion. If the spell continues for its maximum duration, the target gains three levels of exhaustion when the spell ends.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional humanoid for each slot level above 3rd. The humanoids must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a hazel or oak wand", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_thunder-bolt", + "fields": { + "name": "Thunder Bolt", + "desc": "You cast a knot of thunder at one enemy. Make a ranged spell attack against the target. If it hits, the target takes 1d8 thunder damage and can’t use reactions until the start of your next turn.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_thunderclap", + "fields": { + "name": "Thunderclap", + "desc": "You clap your hands, emitting a peal of thunder. Each creature within 20 feet of you takes 8d4 thunder damage and is deafened for 1d8 rounds, or it takes half as much damage and isn’t deafened if it makes a successful Constitution saving throw. On a saving throw that fails by 5 or more, the creature is also stunned for 1 round.\n\nThis spell doesn’t function in an area affected by a [silence](https://api.open5e.com/spells/silence) spell. Very brittle material such as crystal might be shattered if it’s within range, at the GM’s discretion; a character holding such an object can protect it from harm by making a successful Dexterity saving throw.", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d4", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_thunderous-charge", + "fields": { + "name": "Thunderous Charge", + "desc": "With a thunderous battle cry, you move up to 10 feet in a straight line and make a melee weapon attack. If it hits, you can choose to either gain a +5 bonus on the attack’s damage or shove the target 10 feet.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the distance you can move increases by 10 feet, and the attack deals an additional 1d6 thunder damage, for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_thunderous-stampede", + "fields": { + "name": "Thunderous Stampede", + "desc": "This spell acts as [thunderous charge](https://api.open5e.com/spells/thunderous-charge), but affecting up to three targets within range, including yourself. A target other than you must use its reaction to move and attack under the effect of thunderous stampede.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the distance your targets can move increases by 10 feet, and the attack deals an additional 1d6 thunder damage, for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_thunderous-wave", + "fields": { + "name": "Thunderous Wave", + "desc": "You initiate a shock wave centered at a point you designate within range. The wave explodes outward into a 30-foot-radius sphere. This force deals no damage directly, but every creature the wave passes through must make a Strength saving throw. On a failed save, a creature is pushed 30 feet and knocked prone; if it strikes a solid obstruction, it also takes 5d6 bludgeoning damage. On a successful save, a creature is pushed 15 feet and not knocked prone, and it takes 2d6 bludgeoning damage if it strikes an obstruction. The spell also emits a thunderous boom that can be heard within 400 feet.", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "5d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_thunderstorm", + "fields": { + "name": "Thunderstorm", + "desc": "You touch a willing creature, and it becomes surrounded by a roiling storm cloud 30 feet in diameter, erupting with (harmless) thunder and lightning. The creature gains a flying speed of 60 feet. The cloud heavily obscures the creature inside it from view, though it is transparent to the creature itself.", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of lightning-fused glass", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_tidal-barrier", + "fields": { + "name": "Tidal Barrier", + "desc": "A swirling wave of seawater surrounds you, crashing and rolling in a 10-foot radius around your space. The area is difficult terrain, and a creature that starts its turn there or that enters it for the first time on a turn must make a Strength saving throw. On a failed save, the creature is pushed 10 feet away from you and its speed is reduced to 0 until the start of its next turn.", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of driftwood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_time-in-a-bottle", + "fields": { + "name": "Time in a Bottle", + "desc": "You designate a spot within your sight. Time comes under your control in a 20-foot radius centered on that spot. You can freeze it, reverse it, or move it forward by as much as 1 minute as long as you maintain concentration. Nothing and no one, yourself included, can enter the field or affect what happens inside it. You can choose to end the effect at any moment as an action on your turn.", + "document": "deepm", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Sight", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_time-jump", + "fields": { + "name": "Time Jump", + "desc": "You touch a construct and throw it forward in time if it fails a Constitution saving throw. The construct disappears for 1d4 + 1 rounds, during which time it cannot act or be acted upon in any way. When the construct returns, it is unaware that any time has passed.", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_time-loop", + "fields": { + "name": "Time Loop", + "desc": "You capture a creature within range in a loop of time. The target is teleported to the space where it began its most recent turn. The target then makes a Wisdom saving throw. On a successful save, the spell ends. On a failed save, the creature must repeat the activities it undertook on its previous turn, following the sequence of moves and actions to the best of its ability. It doesn’t need to move along the same path or attack the same target, but if it moved and then attacked on its previous turn, its only option is to move and then attack on this turn. If the space where the target began its previous turn is occupied or if it’s impossible for the target to take the same action (if it cast a spell but is now unable to do so, for example), the target becomes incapacitated.\n\nAn affected target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. For as long as the spell lasts, the target teleports back to its starting point at the start of each of its turns, and it must repeat the same sequence of moves and actions.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a metal loop", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_time-slippage", + "fields": { + "name": "Time Slippage", + "desc": "You ensnare a creature within range in an insidious trap, causing different parts of its body to function at different speeds. The creature must make an Intelligence saving throw. On a failed save, it is stunned until the end of its next turn. On a success, the creature’s speed is halved and it has disadvantage on attack rolls and saving throws until the end of its next turn. The creature repeats the saving throw at the end of each of its turns, with the same effects for success and failure. In addition, the creature has disadvantage on Strength or Dexterity saving throws but advantage on Constitution or Charisma saving throws for the spell’s duration (a side effect of the chronal anomaly suffusing its body). The spell ends if the creature makes three successful saves in a row.", + "document": "deepm", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "the heart of a chaotic creature of challenge rating 5 or higher, worth 500 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_time-step", + "fields": { + "name": "Time Step", + "desc": "You briefly step forward in time. You disappear from your location and reappear at the start of your next turn in a location of your choice that you can see within 30 feet of the space you disappeared from. You can’t be affected by anything that happens during the time you’re missing, and you aren’t aware of anything that happens during that time.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_time-vortex", + "fields": { + "name": "Time Vortex", + "desc": "This spell destabilizes the flow of time, enabling you to create a vortex of temporal fluctuations that are visible as a spherical distortion with a 10-foot radius, centered on a point within range. Each creature in the area when you cast the spell must succeed on a Wisdom saving throw or be affected by the time vortex. While the spell lasts, a creature that enters the sphere or starts its turn inside the sphere must also succeed on a Wisdom saving throw or be affected. On a successful save, it becomes immune to this casting of the spell.\n\nAn affected creature can’t take reactions and rolls a d10 at the start of its turn to determine its behavior for that turn.\n\n| D10 | EFFECT |\n|-|-|\n| 1–2 | The creature is affected as if by a slow spell until the start of its next turn. |\n| 3–5 | The creature is stunned until the start of its next turn. |\n| 6–8 | The creature’s current initiative result is reduced by 5. The creature begins using this new initiative result in the next round. Multiple occurrences of this effect for the same creature are cumulative. |\n| 9–10 | The creature’s speed is halved (round up to the nearest 5-foot increment) until the start of its next turn. |\n\nYou can move the temporal vortex 10 feet each round as a bonus action. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_timely-distraction", + "fields": { + "name": "Timely Distraction", + "desc": "You call forth a swirling, crackling wave of constantly shifting pops, flashes, and swept-up debris. This chaos can confound one creature. If the target gets a failure on a Wisdom saving throw, roll a d4 and consult the following table to determine the result. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Otherwise, the spell ends when its duration expires.\n\n| D4 | Effect |\n|-|-|\n| 1 | Blinded |\n| 2 | Stunned |\n| 3 | Deafened |\n| 4 | Prone |\n\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of sand or dirt thrown in the air", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "3 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_tireless", + "fields": { + "name": "Tireless", + "desc": "You grant machinelike stamina to a creature you touch for the duration of the spell. The target requires no food or drink or rest. It can move at three times its normal speed overland and perform three times the usual amount of labor. The target is not protected from fatigue or exhaustion caused by a magical effect.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "an ever-wound spring worth 50 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_tongue-of-sand", + "fields": { + "name": "Tongue of Sand", + "desc": "**Tongue of sand** is similar in many ways to [magic mouth](https://api.open5e.com/spells/magic-mouth). When you cast it, you implant a message in a quantity of sand. The sand must fill a space no smaller than 4 square feet and at least 2 inches deep. The message can be up to 25 words. You also decide the conditions that trigger the speaking of the message. When the message is triggered, a mouth forms in the sand and delivers the message in a raspy, whispered voice that can be heard by creatures within 10 feet of the sand.\n\nAdditionally, **tongue of sand** has the ability to interact in a simple, brief manner with creatures who hear its message. For up to 10 minutes after the message is triggered, questions addressed to the sand will be answered as you would answer them. Each answer can be no more than ten words long, and the spell ends after a second question is answered.", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_tongue-tied", + "fields": { + "name": "Tongue Tied", + "desc": "You make a choking motion while pointing at a target, which must make a successful Wisdom saving throw or become unable to communicate verbally. The target’s speech becomes garbled, and it has disadvantage on Charisma checks that require speech. The creature can cast a spell that has a verbal component only by making a successful Constitution check against your spell save DC. On a failed check, the creature’s action is used but the spell slot isn’t expended.", + "document": "deepm", + "level": 5, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_torrent-of-fire", + "fields": { + "name": "Torrent of Fire", + "desc": "You harness the power of fire contained in ley lines with this spell. You create a 60-foot cone of flame. Creatures in the cone take 6d6 fire damage, or half as much damage with a successful Dexterity saving throw. You can then flow along the flames, reappearing anywhere inside the cone’s area. This repositioning doesn’t count as movement and doesn’t trigger opportunity attacks.", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of obsidian", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 60, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_touch-of-the-unliving", + "fields": { + "name": "Touch of the Unliving", + "desc": "Make a melee spell attack against a creature you can reach. On a hit, the target takes 2d6 necrotic damage and, if it is not an undead creature, it is paralyzed until the end of its next turn. Until the spell ends, you can make the attack again on each of your turns as an action.\n", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_tracer", + "fields": { + "name": "Tracer", + "desc": "When you cast this spell and as a bonus action on each of your turns until the spell ends, you can imbue a piece of ammunition you fire from a ranged weapon with a tiny, invisible beacon. If a ranged attack roll with an imbued piece of ammunition hits a target, the beacon is transferred to the target. The weapon that fired the ammunition is attuned to the beacon and becomes warm to the touch when it points in the direction of the target as long as the target is on the same plane of existence as you. You can have only one *tracer* target at a time. If you put a *tracer* on a different target, the effect on the previous target ends.\n A creature must succeed on an Intelligence (Arcana) check against your spell save DC to notice the magical beacon.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of bright paint", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_treasure-chasm", + "fields": { + "name": "Treasure Chasm", + "desc": "You cause the glint of a golden coin to haze over the vision of one creature in range. The target creature must make a Wisdom saving throw. If it fails, it sees a gorge, trench, or other hole in the ground, at a spot within range chosen by you, which is filled with gold and treasure. On its next turn, the creature must move toward that spot. When it reaches the spot, it becomes incapacitated, as it devotes all its attention to scooping imaginary treasure into its pockets or a pouch.\n\nAn affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The effect also ends if the creature takes damage from you or one of your allies.\n\nCreatures with the dragon type have disadvantage on the initial saving throw but have advantage on saving throws against this spell made after reaching the designated spot.", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a gold coin", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_tree-heal", + "fields": { + "name": "Tree Heal", + "desc": "You touch a plant and it regains 1d4 hit points. Alternatively, you can cure it of one disease or remove pests from it. Once you cast this spell on a plant or plant creature, you can't cast it on that target again for 24 hours. This spell can be used only on plants and plant creatures.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_tree-running", + "fields": { + "name": "Tree Running", + "desc": "One willing creature you touch gains a climbing speed equal to its walking speed. This climbing speed functions only while the creature is in contact with a living plant or fungus that’s growing from the ground. The creature can cling to an appropriate surface with just one hand or with just its feet, leaving its hands free to wield weapons or cast spells. The plant doesn’t give under the creature’s weight, so the creature can walk on the tiniest of tree branches, stand on a leaf, or run across the waving top of a field of wheat without bending a stalk or touching the ground.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "a maple catkin", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_tree-speak", + "fields": { + "name": "Tree Speak", + "desc": "You touch a tree and ask one question about anything that might have happened in its immediate vicinity (such as “Who passed by here?”). You get a mental sensation of the response, which lasts for the duration of the spell. Trees do not have a humanoid’s sense of time, so the tree might speak about something that happened last night or a hundred years ago. The sensation you receive might include sight, hearing, vibration, or smell, all from the tree’s perspective. Trees are particularly attentive to anything that might harm the forest and always report such activities when questioned.\n\nIf you cast this spell on a tree that contains a creature that can merge with trees, such as a dryad, you can freely communicate with the merged creature for the duration of the spell.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_trench", + "fields": { + "name": "Trench", + "desc": "By making a scooping gesture, you cause the ground to slowly sink in an area 5 feet wide and 60 feet long, originating from a point within range. When the casting is finished, a 5-foot-deep trench is the result.\n\nThe spell works only on flat, open ground (not on stone or paved surfaces) that is not occupied by creatures or objects.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can increase the width of the trench by 5 feet or the length by 30 feet for each slot level above 2nd. You can make a different choice (width or length) for each slot level above 2nd.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_trick-question", + "fields": { + "name": "Trick Question", + "desc": "You pose a question that can be answered by one word, directed at a creature that can hear you. The target must make a successful Wisdom saving throw or be compelled to answer your question truthfully. When the answer is given, the target knows that you used magic to compel it.", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_triumph-of-ice", + "fields": { + "name": "Triumph of Ice", + "desc": "You transform one of the four elements—air, earth, fire, or water—into ice or snow. The affected area is a sphere with a radius of 100 feet, centered on you. The specific effect depends on the element you choose.\n* ***Air.*** Vapor condenses into snowfall. If the effect of a [fog cloud](https://api.open5e.com/spells/fog-cloud) spell, a [stinking cloud](https://api.open5e.com/spells/stinking-cloud), or similar magic is in the area, this spell negates it. A creature of elemental air within range takes 8d6 cold damage—and, if airborne, it must make a successful Constitution saving throw at the start of its turn to avoid being knocked prone (no falling damage).\n* ***Earth.*** Soil freezes into permafrost to a depth of 10 feet. A creature burrowing through the area has its speed halved until the area thaws, unless it can burrow through solid rock. A creature of elemental earth within range must make a successful Constitution saving throw or take 8d6 cold damage.\n* ***Fire.*** Flames or other sources of extreme heat (such as molten lava) on the ground within range transform into shards of ice, and the area they occupy becomes difficult terrain. Each creature in the previously burning area takes 2d6 slashing damage when the spell is cast and 1d6 slashing damage for every 5 feet it moves in the area (unless it is not hindered by icy terrain) until the spell ends; a successful Dexterity saving throw reduces the slashing damage by half. A creature of elemental fire within range must make a successful Constitution saving throw or take 8d6 cold damage and be stunned for 1d6 rounds.\n* ***Water.*** Open water (a pond, lake, or river) freezes to a depth of 4 feet. A creature on the surface of the water when it freezes must make a successful Dexterity saving throw to avoid being trapped in the ice. A trapped creature can free itself by using an action to make a successful Strength (Athletics) check. A creature of elemental water within range takes no damage from the spell but is paralyzed for 1d6 rounds unless it makes a successful Constitution saving throw, and it treats the affected area as difficult terrain.", + "document": "deepm", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a stone extracted from glacial ice", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_twist-the-skein", + "fields": { + "name": "Twist the Skein", + "desc": "You tweak a strand of a creature’s fate as it attempts an attack roll, saving throw, or skill check. Roll a d20 and subtract 10 to produce a number from 10 to –9. Add that number to the creature’s roll. This adjustment can turn a failure into a success or vice versa, or it might not change the outcome at all.", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_umbral-storm", + "fields": { + "name": "Umbral Storm", + "desc": "You create a channel to a region of the Plane of Shadow that is inimical to life and order. A storm of dark, raging entropy fills a 20-foot-radius sphere centered on a point you can see within range. Any creature that starts its turn in the storm or enters it for the first time on its turn takes 6d8 necrotic damage and gains one level of exhaustion; a successful Constitution saving throw halves the damage and prevents the exhaustion.\n\nYou can use a bonus action on your turn to move the area of the storm 30 feet in any direction.", + "document": "deepm", + "level": 9, + "school": "necromancy", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_uncontrollable-transformation", + "fields": { + "name": "Uncontrollable Transformation", + "desc": "You infuse your body with raw chaos and will it to adopt a helpful mutation. Roll a d10 and consult the Uncontrollable Transformation table below to determine what mutation occurs. You can try to control the shifting of your body to gain a mutation you prefer, but doing so is taxing; you can roll a d10 twice and choose the result you prefer, but you gain one level of exhaustion. At the end of the spell, your body returns to its normal form.\n", + "document": "deepm", + "level": 7, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you gain an additional mutation for each slot level above 7th. You gain one level of exhaustion for each mutation you try to control.\n ## Uncontrollable Transformation \n| D10 | Mutation |\n|-|-|\n| 1 | A spindly third arm sprouts from your shoulder. As a bonus action, you can use it to attack with a light weapon. You have advantage on Dexterity (Sleight of Hand) checks and any checks that require the manipulation of tools. |\n| 2 | Your skin is covered by rough scales that increase your AC by 1 and give you resistance to a random damage type (roll on the Damage Type table). |\n| 3 | A puckered orifice grows on your back. You can forcefully expel air from it, granting you a flying speed of 30 feet. You must land at the end of your turn. In addition, as a bonus action, you can try to push a creature away with a blast of air. The target is pushed 5 feet away from you if it fails a Strength saving throw with a DC equal to 10 + your Constitution modifier. |\n| 4 | A second face appears on the back of your head. You gain darkvision out to a range of 120 feet and advantage on sight‐based and scent-based Wisdom (Perception) checks. You become adept at carrying on conversations with yourself. |\n| 5 | You grow gills that not only allow you to breathe underwater but also filter poison out of the air. You gain immunity to inhaled poisons. |\n| 6 | Your hindquarters elongate, and you grow a second set of legs. Your base walking speed increases by 10 feet, and your carrying capacity becomes your Strength score multiplied by 20. |\n| 7 | You become incorporeal and can move through other creatures and objects as if they were difficult terrain. You take 1d10 force damage if you end your turn inside an object. You can’t pick up or interact with physical objects that you weren’t carrying when you became incorporeal. |\n| 8 | Your limbs elongate and flatten into prehensile paddles. You gain a swimming speed equal to your base walking speed and have advantage on Strength (Athletics) checks made to climb or swim. In addition, your unarmed strikes deal 1d6 bludgeoning damage. |\n| 9 | Your head fills with a light gas and swells to four times its normal size, causing your hair to fall out. You have advantage on Intelligence and Wisdom ability checks and can levitate up to 5 feet above the ground. |\n| 10 | You grow three sets of feathered wings that give you a flying speed equal to your walking speed and the ability to hover. |\n\n ## Damage Type \n\n| d10 | Damage Type |\n|-|-|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |\n\n", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "the bill of a platypus", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_undermine-armor", + "fields": { + "name": "Undermine Armor", + "desc": "You unravel the bonds of reality that hold a suit of armor together. A target wearing armor must succeed on a Constitution saving throw or its armor softens to the consistency of candle wax, decreasing the target’s AC by 2.\n\n**Undermine armor** has no effect on creatures that aren’t wearing armor.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_unholy-defiance", + "fields": { + "name": "Unholy Defiance", + "desc": "Until the spell ends, undead creatures within range have advantage on saving throws against effects that turn undead. If an undead creature within this area has the Turning Defiance trait, that creature can roll a d4 when it makes a saving throw against an effect that turns undead and add the number rolled to the saving throw.", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of earth from a grave", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_unleash-effigy", + "fields": { + "name": "Unleash Effigy", + "desc": "You cause a stone statue that you can see within 60 feet of you to animate as your ally. The statue has the statistics of a [stone golem](https://api.open5e.com/monsters/stone-golem). It takes a turn immediately after your turn. As a bonus action on your turn, you can order the golem to move and attack, provided you’re within 60 feet of it. Without orders from you, the statue does nothing.\n\nWhenever the statue has 75 hit points or fewer at the start of your turn or it is more than 60 feet from you at the start of your turn, you must make a successful DC 16 spellcasting check or the statue goes berserk. On each of its turns, the berserk statue attacks you or one of your allies. If no creature is near enough to be attacked, the statue dashes toward the nearest one instead. Once the statue goes berserk, it remains berserk until it’s destroyed.\n\nWhen the spell ends, the animated statue reverts to a normal, mundane statue.", + "document": "deepm", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_unluck-on-that", + "fields": { + "name": "Unluck On That", + "desc": "By uttering a swift curse (“Unluck on that!”), you bring misfortune to the target’s attempt; the affected creature has disadvantage on the roll.\n", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the range of the spell increases by 5 feet for each slot level above 1st.", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_unseen-strangler", + "fields": { + "name": "Unseen Strangler", + "desc": "You conjure an immaterial, tentacled aberration in an unoccupied space you can see within range, and you specify a password that the phantom recognizes. The entity remains where you conjured it until the spell ends, until you dismiss it as an action, or until you move more than 80 feet from it.\n\nThe strangler is invisible to all creatures except you, and it can’t be harmed. When a Small or larger creature approaches within 30 feet of it without speaking the password that you specified, the strangler starts whispering your name. This whispering is always audible to you, regardless of other sounds in the area, as long as you’re conscious. The strangler sees invisible creatures and can see into the Ethereal Plane. It ignores illusions.\n\nIf any creatures hostile to you are within 5 feet of the strangler at the start of your turn, the strangler attacks one of them with a tentacle. It makes a melee weapon attack with a bonus equal to your spellcasting ability modifier + your proficiency bonus. On a hit, it deals 3d6 bludgeoning damage, and a Large or smaller creature is grappled (escape DC = your spellcasting ability modifier + your proficiency bonus). Until this grapple ends, the target is restrained, and the strangler can’t attack another target. If the strangler scores a critical hit, the target begins to suffocate and can’t speak until the grapple ends.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of sulfur and a live rodent", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_vine-trestle", + "fields": { + "name": "Vine Trestle", + "desc": "You cause a vine to sprout from the ground and crawl across a surface or rise into the air in a direction chosen by you. The vine must sprout from a solid surface (such as the ground or a wall), and it is strong enough to support 600 pounds of weight along its entire length. The vine collapses immediately if that 600-pound limit is exceeded. A vine that collapses from weight or damage instantly disintegrates.\n\nThe vine has many small shoots, so it can be climbed with a successful DC 5 Strength (Athletics) check. It has AC 8, hit points equal to 5 × your spellcasting level, and a damage threshold of 5.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the vine can support an additional 30 pounds, and its damage threshold increases by 1 for each slot level above 2nd.\n\n***Ritual Focus.*** If you expend your ritual focus, the vine is permanent until destroyed or dispelled.", + "target_type": "point", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a 1-inch piece of green vine that is consumed in the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_visage-of-madness", + "fields": { + "name": "Visage of Madness", + "desc": "When you cast this spell, your face momentarily becomes that of a demon lord, frightful enough to drive enemies mad. Every foe that’s within 30 feet of you and that can see you must make a Wisdom saving throw. On a failed save, a creature claws savagely at its eyes, dealing piercing damage to itself equal to 1d6 + the creature’s Strength modifier. The creature is also stunned until the end of its next turn and blinded for 1d4 rounds. A creature that rolls maximum damage against itself (a 6 on the d6) is blinded permanently.", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_vital-mark", + "fields": { + "name": "Vital Mark", + "desc": "You mark an unattended magic item (including weapons and armor) with a clearly visible stain of your blood. The exact appearance of the bloodstain is up to you. The item’s magical abilities don’t function for anyone else as long as the bloodstain remains on it. For example, a **+1 flaming longsword** with a vital mark functions as a nonmagical longsword in the hands of anyone but the caster, but it still functions as a **+1 flaming longsword** for the caster who placed the bloodstain on it. A [wand of magic missiles](https://api.open5e.com/spells/wand-of-magic-missiles) would be no more than a stick in the hands of anyone but the caster.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher on the same item for 28 consecutive days, the effect becomes permanent until dispelled.", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_void-rift", + "fields": { + "name": "Void Rift", + "desc": "You speak a hideous string of Void Speech that leaves your mouth bloodied, causing a rift into nothingness to tear open. The rift takes the form of a 10-foot-radius sphere, and it forms around a point you can see within range. The area within 40 feet of the sphere’s outer edge becomes difficult terrain as the Void tries to draw everything into itself. A creature that starts its turn within 40 feet of the sphere or that enters that area for the first time on its turn must succeed on a Strength saving throw or be pulled 15 feet toward the rift. A creature that starts its turn in the rift or that comes into contact with it for the first time on its turn takes 8d10 necrotic damage. Creatures inside the rift are blinded and deafened. Unattended objects within 40 feet of the rift are drawn 15 feet toward it at the start of your turn, and they take damage as creatures if they come into contact with it.\n\nWhile concentrating on the spell, you take 2d6 necrotic damage at the end of each of your turns.", + "document": "deepm", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a black opal worth 500 gp, carved with a Void glyph", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "8d10", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 10, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_void-strike", + "fields": { + "name": "Void Strike", + "desc": "With a short phrase of Void Speech, you gather writhing darkness around your hand. When you cast the spell, and as an action on subsequent turns while you maintain concentration, you can unleash a bolt of darkness at a creature within range. Make a ranged spell attack. If the target is in dim light or darkness, you have advantage on the roll. On a hit, the target takes 5d8 necrotic damage and is frightened of you until the start of your next turn.\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast the spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "5d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_volley-shield", + "fields": { + "name": "Volley Shield", + "desc": "You touch a willing creature and create a shimmering shield of energy to protect it. The shield grants the target a +5 bonus to AC and gives it resistance against nonmagical bludgeoning, piercing, and slashing damage for the duration of the spell.\n\nIn addition, the shield can reflect hostile spells back at their casters. When the target makes a successful saving throw against a hostile spell, the caster of the spell immediately becomes the spell’s new target. The caster is entitled to the appropriate saving throw against the returned spell, if any, and is affected by the spell as if it came from a spellcaster of the caster’s level.", + "document": "deepm", + "level": 7, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_vomit-tentacles", + "fields": { + "name": "Vomit Tentacles", + "desc": "Your jaws distend and dozens of thin, slimy tentacles emerge from your mouth to grasp and bind your opponents. Make a melee spell attack against a foe within 15 feet of you. On a hit, the target takes bludgeoning damage equal to 2d6 + your Strength modifier and is grappled (escape DC equal to your spell save DC). Until this grapple ends, the target is restrained and it takes the same damage at the start of each of your turns. You can grapple only one creature at a time.\n\nThe Armor Class of the tentacles is equal to yours. If they take slashing damage equal to 5 + your Constitution modifier from a single attack, enough tentacles are severed to enable a grappled creature to escape. Severed tentacles are replaced by new ones at the start of your turn. Damage dealt to the tentacles doesn’t affect your hit points.\n\nWhile the spell is in effect, you are incapable of speech and can’t cast spells that have verbal components.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of a tentacle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "5 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_voorish-sign", + "fields": { + "name": "Voorish Sign", + "desc": "For the duration, invisible creatures and objects within 20 feet of you become visible to you, and you have advantage on saving throws against effects that cause the frightened condition. The effect moves with you, remaining centered on you until the duration expires.\n", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the radius increases by 5 feet for every two slot levels above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_waft", + "fields": { + "name": "Waft", + "desc": "This spell was first invented by dragon parents to assist their offspring when learning to fly. You gain a flying speed of 60 feet for 1 round. At the start of your next turn, you float rapidly down and land gently on a solid surface beneath you.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a topaz worth at least 10 gp", + "material_cost": "10.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_walk-the-twisted-path", + "fields": { + "name": "Walk the Twisted Path", + "desc": "When you cast this spell, you and up to five creatures you can see within 20 feet of you enter a shifting landscape of endless walls and corridors that connect to many places throughout the world.\n\nYou can find your way to a destination within 100 miles, as long as you know for certain that your destination exists (though you don’t need to have seen or visited it before), and you must make a successful DC 20 Intelligence check. If you have the ability to retrace a path you have previously taken without making a check (as a minotaur or a goristro can), this check automatically succeeds. On a failed check, you don't find your path this round, and you and your companions each take 4d6 psychic damage as the madness of the shifting maze exacts its toll. You must repeat the check at the start of each of your turns until you find your way to your destination or until you die. In either event, the spell ends.\n\nWhen the spell ends, you and those traveling with you appear in a safe location at your destination.\n", + "document": "deepm", + "level": 6, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can bring along two additional creatures or travel an additional 100 miles for each slot level above 6th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a map", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_walking-wall", + "fields": { + "name": "Walking Wall", + "desc": "This spell creates a wall of swinging axes from the pile of miniature axes you provide when casting the spell. The wall fills a rectangle 10 feet wide, 10 feet high, and 20 feet long. The wall has a base speed of 50 feet, but it can’t take the Dash action. It can make up to four attacks per round on your turn, using your spell attack modifier to hit and with a reach of 10 feet. You direct the wall’s movement and attacks as a bonus action. If you choose not to direct it, the wall continues trying to execute the last command you gave it. The wall can’t use reactions. Each successful attack deals 4d6 slashing damage, and the damage is considered magical.\n\nThe wall has AC 12 and 200 hit points, and is immune to necrotic, poison, psychic, and piercing damage. If it is reduced to 0 hit points or when the spell’s duration ends, the wall disappears and the miniature axes fall to the ground in a tidy heap.", + "document": "deepm", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "100 miniature axes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_wall-of-time", + "fields": { + "name": "Wall of Time", + "desc": "You create a wall of shimmering, transparent blocks on a solid surface within range. You can make a straight wall up to 60 feet long, 20 feet high, and 1 foot thick, or a cylindrical wall up to 20 feet high, 1 foot thick, and 20 feet in diameter. Nonmagical ranged attacks that cross the wall vanish into the time stream with no other effect. Ranged spell attacks and ranged weapon attacks made with magic weapons that pass through the wall are made with disadvantage. A creature that intentionally enters or passes through the wall is affected as if it had just failed its initial saving throw against a [slow](https://api.open5e.com/spells/slow) spell.", + "document": "deepm", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an hourglass", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_warning-shout", + "fields": { + "name": "Warning Shout", + "desc": "You sense danger before it happens and call out a warning to an ally. One creature you can see and that can hear you gains advantage on its initiative roll.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_warp-mind-and-matter", + "fields": { + "name": "Warp Mind and Matter", + "desc": "A creature you can see within range undergoes a baleful transmogrification. The target must make a successful Wisdom saving throw or suffer a flesh warp and be afflicted with a form of indefinite madness.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "root of deadly nightshade and a drop of the caster’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until cured or dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_weapon-of-blood", + "fields": { + "name": "Weapon of Blood", + "desc": "When you cast this spell, you inflict 1d4 slashing damage on yourself that can’t be healed until after the blade created by this spell is destroyed or the spell ends. The trickling blood transforms into a dagger of red metal that functions as a **+1 dagger**.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd to 5th level, the self-inflicted wound deals 3d4 slashing damage and the spell produces a **+2 dagger**. When you cast this spell using a spell slot of 6th to 8th level, the self-inflicted wound deals 6d4 slashing damage and the spell produces a **+2 dagger of wounding**. When you cast this spell using a 9th-level spell slot, the self-inflicted wound deals 9d4 slashing damage and the spell produces a **+3 dagger of wounding**.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of iron shavings", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_weilers-ward", + "fields": { + "name": "Weiler’s Ward", + "desc": "You create four small orbs of faerie magic that float around your head and give off dim light out to a radius of 15 feet. Whenever a Large or smaller enemy enters that area of dim light, or starts its turn in the area, you can use your reaction to attack it with one or more of the orbs. The enemy creature makes a Charisma saving throw. On a failed save, the creature is pushed 20 feet directly away from you, and each orb you used in the attack explodes violently, dealing 1d6 force damage to the creature.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the number of orbs increases by one for each slot level above 2nd.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a lock of hair from a fey creature", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_wild-shield", + "fields": { + "name": "Wild Shield", + "desc": "You surround yourself with the forces of chaos. Wild lights and strange sounds engulf you, making stealth impossible. While **wild shield** is active, you can use a reaction to repel a spell of 4th level or lower that targets you or whose area you are within. A repelled spell has no effect on you, but doing this causes the chance of a chaos magic surge as if you had cast a spell, with you considered the caster for any effect of the surge.\n\n**Wild shield** ends when the duration expires or when it absorbs 4 levels of spells. If you try to repel a spell whose level exceeds the number of levels remaining, make an ability check using your spellcasting ability. The DC equals 10 + the spell’s level – the number of levels **wild shield** can still repel. If the check succeeds, the spell is repelled; if the check fails, the spell has its full effect. The chance of a chaos magic surge exists regardless of whether the spell is repelled.\n", + "document": "deepm", + "level": 4, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can repel one additional spell level for each slot level above 4th.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_wind-lash", + "fields": { + "name": "Wind Lash", + "desc": "Your swift gesture creates a solid lash of howling wind. Make a melee spell attack against the target. On a hit, the target takes 1d8 slashing damage from the shearing wind and is pushed 5 feet away from you.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "The spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "20 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "slashing" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_wind-of-the-hereafter", + "fields": { + "name": "Wind of the Hereafter", + "desc": "You create a 30-foot-radius sphere of roiling wind that carries the choking stench of death. The sphere is centered on a point you choose within range. The wind blows around corners. When a creature starts its turn in the sphere, it takes 8d8 necrotic damage, or half as much damage if it makes a successful Constitution saving throw. Creatures are affected even if they hold their breath or don’t need to breathe.\n\nThe sphere moves 10 feet away from you at the start of each of your turns, drifting along the surface of the ground. It is not heavier than air but drifts in a straight line for the duration of the spell, even if that carries it over a cliff or gully. If the sphere meets a wall or other impassable obstacle, it turns to the left or right (select randomly).", + "document": "deepm", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of air from a tomb", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d8", + "damage_types": [ + "necrotic" + ], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_wind-tunnel", + "fields": { + "name": "Wind Tunnel", + "desc": "You create a swirling tunnel of strong wind extending from yourself in a direction you choose. The tunnel is a line 60 feet long and 10 feet wide. The wind blows from you toward the end of the line, which is stationary once created. A creature in the line moving with the wind (away from you) adds 10 feet to its speed, and ranged weapon attacks launched with the wind don’t have disadvantage because of long range. Creatures in the line moving against the wind (toward you) spend 2 feet of movement for every 1 foot they move, and ranged weapon attacks launched along the line against the wind are made with disadvantage.\n\nThe wind tunnel immediately disperses gas or vapor, and it extinguishes candles, torches, and similar unprotected flames in the line. It causes protected flames, such as those of lanterns, to dance wildly and has a 50 percent chance of extinguishing them.", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a paper straw", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_winterdark", + "fields": { + "name": "Winterdark", + "desc": "This spell invokes the deepest part of night on the winter solstice. You target a 40-foot-radius, 60-foot-high cylinder centered on a point within range, which is plunged into darkness and unbearable cold. Each creature in the area when you cast the spell and at the start of its turn must make a successful Constitution saving throw or take 1d6 cold damage and gain one level of exhaustion. Creatures immune to cold damage are also immune to the exhaustion effect, as are creatures wearing cold weather gear or otherwise adapted for a cold environment.\n\nAs a bonus action, you can move the center of the effect 20 feet.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_winters-radiance", + "fields": { + "name": "Winter's Radiance", + "desc": "When you cast this spell, the piercing rays of a day’s worth of sunlight reflecting off fresh snow blankets the area. A creature caught in the spell’s area must succeed on a Constitution saving throw or have disadvantage on ranged attacks and Wisdom (Perception) checks for the duration of the spell. In addition, an affected creature’s vision is hampered such that foes it targets are treated as having three-quarters cover.", + "document": "deepm", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "400 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of polished glass", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_wintry-glide", + "fields": { + "name": "Wintry Glide", + "desc": "Upon casting wintry glide, you can travel via ice or snow without crossing the intervening space. If you are adjacent to a mass of ice or snow, you can enter it by expending 5 feet of movement. By expending another 5 feet of movement, you can immediately exit from that mass at any point—within 500 feet—that’s part of the contiguous mass of ice or snow. When you enter the ice or snow, you instantly know the extent of the material within 500 feet. You must have at least 10 feet of movement available when you cast the spell, or it fails.\n\nIf the mass of ice or snow is destroyed while you are transiting it, you must make a successful Constitution saving throw against your spell save DC to avoid taking 4d6 bludgeoning damage and falling prone at the midpoint of a line between your entrance point and your intended exit point.", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_withered-sight", + "fields": { + "name": "Withered Sight", + "desc": "You cause the eyes of a creature you can see within range to lose acuity. The target must make a Constitution saving throw. On a failed save, the creature has disadvantage on Wisdom (Perception) checks and all attack rolls for the duration of the spell. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This spell has no effect on a creature that is blind or that doesn’t use its eyes to see.\n", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dried lizard's eye", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_wolfsong", + "fields": { + "name": "Wolfsong", + "desc": "You emit a howl that can be heard clearly from 300 feet away outdoors. The howl can convey a message of up to nine words, which can be understood by all dogs and wolves in that area, as well as (if you choose) one specific creature of any kind that you name when casting the spell.\n\nIf you cast the spell indoors and aboveground, the howl can be heard out to 200 feet from you. If you cast the spell underground, the howl can be heard from 100 feet away. A creature that understands the message is not compelled to act in a particular way, though the nature of the message might suggest or even dictate a course of action.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can name another specific recipient for each slot level above 2nd.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_word-of-misfortune", + "fields": { + "name": "Word of Misfortune", + "desc": "You hiss a word of Void Speech. Choose one creature you can see within range. The next time the target makes a saving throw during the spell’s duration, it must roll a d4 and subtract the result from the total of the saving throw. The spell then ends.", + "document": "deepm", + "level": 0, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute.", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_wresting-wind", + "fields": { + "name": "Wresting Wind", + "desc": "By blowing a pinch of confetti from your cupped hand, you create a burst of air that can rip weapons and other items out of the hands of your enemies. Each enemy in a 20-foot radius centered on a point you target within range must make a successful Strength saving throw or drop anything held in its hands. The objects land 10 feet away from the creatures that dropped them, in random directions.", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of paper confetti", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_writhing-arms", + "fields": { + "name": "Writhing Arms", + "desc": "Your arms become constantly writhing tentacles. You can use your action to make a melee spell attack against any target within range. The target takes 1d10 necrotic damage and is grappled (escape DC is your spell save DC). If the target does not escape your grapple, you can use your action on each subsequent turn to deal 1d10 necrotic damage to the target automatically.\n\nAlthough you control the tentacles, they make it difficult to manipulate items. You cannot wield weapons or hold objects, including material components, while under the effects of this spell.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage you deal with your tentacle attack increases by 1d10 for each slot level above 1st.", + "target_type": "object", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d10", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "deepm_yellow-sign", + "fields": { + "name": "Yellow Sign", + "desc": "You attempt to afflict a humanoid you can see within range with memories of distant, alien realms and their peculiar inhabitants. The target must make a successful Wisdom saving throw or be afflicted with a form of long-term madness and be charmed by you for the duration of the spell or until you or one of your allies harms it in any way. While charmed in this way, the creature regards you as a sacred monarch. If you or an ally of yours is fighting the creature, it has advantage on its saving throw.\n\nA successful [remove curse](https://api.open5e.com/spells/remove-curse) spell ends both effects.", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1d10 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + } +] \ No newline at end of file diff --git a/data/v2/kobold-press/deepm/SpellCastingOption.json b/data/v2/kobold-press/deepm/SpellCastingOption.json index 89e2d9ec..a36e9882 100644 --- a/data/v2/kobold-press/deepm/SpellCastingOption.json +++ b/data/v2/kobold-press/deepm/SpellCastingOption.json @@ -1,25202 +1,25202 @@ [ -{ - "model": "api_v2.spellcastingoption", - "pk": 2246, - "fields": { - "parent": "abhorrent-apparition", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2248, - "fields": { - "parent": "abhorrent-apparition", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2249, - "fields": { - "parent": "abhorrent-apparition", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2250, - "fields": { - "parent": "abhorrent-apparition", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2251, - "fields": { - "parent": "abhorrent-apparition", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2252, - "fields": { - "parent": "abhorrent-apparition", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2253, - "fields": { - "parent": "accelerate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2255, - "fields": { - "parent": "accelerate", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2256, - "fields": { - "parent": "accelerate", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2257, - "fields": { - "parent": "accelerate", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2258, - "fields": { - "parent": "accelerate", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2259, - "fields": { - "parent": "accelerate", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2260, - "fields": { - "parent": "accelerate", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2261, - "fields": { - "parent": "acid-gate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2263, - "fields": { - "parent": "acid-gate", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2264, - "fields": { - "parent": "acid-gate", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2265, - "fields": { - "parent": "acid-rain", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2267, - "fields": { - "parent": "acid-rain", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2268, - "fields": { - "parent": "acid-rain", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2269, - "fields": { - "parent": "acid-rain", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2270, - "fields": { - "parent": "acid-rain", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2271, - "fields": { - "parent": "adjust-position", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2273, - "fields": { - "parent": "adjust-position", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2274, - "fields": { - "parent": "adjust-position", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2275, - "fields": { - "parent": "adjust-position", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2276, - "fields": { - "parent": "adjust-position", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2277, - "fields": { - "parent": "adjust-position", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2278, - "fields": { - "parent": "adjust-position", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2279, - "fields": { - "parent": "adjust-position", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2280, - "fields": { - "parent": "adjust-position", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2281, - "fields": { - "parent": "afflict-line", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2282, - "fields": { - "parent": "afflict-line", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2283, - "fields": { - "parent": "agonizing-mark", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2284, - "fields": { - "parent": "alchemical-form", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2285, - "fields": { - "parent": "ale-dritch-blast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2286, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2287, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2288, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2289, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2290, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2291, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2292, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2293, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2294, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2295, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2296, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2297, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2298, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2299, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2300, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2301, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2302, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2303, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2304, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2305, - "fields": { - "parent": "ale-dritch-blast", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2306, - "fields": { - "parent": "ally-aegis", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2308, - "fields": { - "parent": "ally-aegis", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2309, - "fields": { - "parent": "ally-aegis", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2310, - "fields": { - "parent": "ally-aegis", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2311, - "fields": { - "parent": "alone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2312, - "fields": { - "parent": "alter-arrows-fortune", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2313, - "fields": { - "parent": "altheas-travel-tent", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2314, - "fields": { - "parent": "altheas-travel-tent", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2316, - "fields": { - "parent": "altheas-travel-tent", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2317, - "fields": { - "parent": "altheas-travel-tent", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2318, - "fields": { - "parent": "altheas-travel-tent", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2319, - "fields": { - "parent": "altheas-travel-tent", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2320, - "fields": { - "parent": "altheas-travel-tent", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2321, - "fields": { - "parent": "altheas-travel-tent", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2322, - "fields": { - "parent": "altheas-travel-tent", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2323, - "fields": { - "parent": "amplify-gravity", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2324, - "fields": { - "parent": "analyze-device", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2325, - "fields": { - "parent": "ancestors-strength", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2326, - "fields": { - "parent": "anchoring-rope", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2328, - "fields": { - "parent": "anchoring-rope", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 1, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2329, - "fields": { - "parent": "anchoring-rope", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2330, - "fields": { - "parent": "anchoring-rope", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2331, - "fields": { - "parent": "anchoring-rope", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2332, - "fields": { - "parent": "anchoring-rope", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2333, - "fields": { - "parent": "anchoring-rope", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2334, - "fields": { - "parent": "anchoring-rope", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2335, - "fields": { - "parent": "anchoring-rope", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2336, - "fields": { - "parent": "ancient-shade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2337, - "fields": { - "parent": "angelic-guardian", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2338, - "fields": { - "parent": "animate-ghoul", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2340, - "fields": { - "parent": "animate-ghoul", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2341, - "fields": { - "parent": "animate-ghoul", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2342, - "fields": { - "parent": "animate-ghoul", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2343, - "fields": { - "parent": "animate-ghoul", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2344, - "fields": { - "parent": "animate-ghoul", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2345, - "fields": { - "parent": "animate-ghoul", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2346, - "fields": { - "parent": "animate-ghoul", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2347, - "fields": { - "parent": "animate-greater-undead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2349, - "fields": { - "parent": "animate-greater-undead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2350, - "fields": { - "parent": "animate-greater-undead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2351, - "fields": { - "parent": "animate-greater-undead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2352, - "fields": { - "parent": "animated-scroll", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2353, - "fields": { - "parent": "animated-scroll", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2354, - "fields": { - "parent": "animated-scroll", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2355, - "fields": { - "parent": "animated-scroll", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2356, - "fields": { - "parent": "animated-scroll", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2357, - "fields": { - "parent": "animated-scroll", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2358, - "fields": { - "parent": "animated-scroll", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2359, - "fields": { - "parent": "animated-scroll", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2360, - "fields": { - "parent": "animated-scroll", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2361, - "fields": { - "parent": "animated-scroll", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2362, - "fields": { - "parent": "animated-scroll", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2363, - "fields": { - "parent": "animated-scroll", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2364, - "fields": { - "parent": "animated-scroll", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2365, - "fields": { - "parent": "animated-scroll", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2366, - "fields": { - "parent": "animated-scroll", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2367, - "fields": { - "parent": "animated-scroll", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2368, - "fields": { - "parent": "animated-scroll", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2369, - "fields": { - "parent": "animated-scroll", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": "96 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2370, - "fields": { - "parent": "animated-scroll", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": "96 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2371, - "fields": { - "parent": "animated-scroll", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": "96 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2372, - "fields": { - "parent": "animated-scroll", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": "96 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2373, - "fields": { - "parent": "anticipate-arcana", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2374, - "fields": { - "parent": "anticipate-attack", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2375, - "fields": { - "parent": "anticipate-weakness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2376, - "fields": { - "parent": "arcane-sight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2377, - "fields": { - "parent": "as-you-were", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2378, - "fields": { - "parent": "ashen-memories", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2379, - "fields": { - "parent": "ashen-memories", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2380, - "fields": { - "parent": "aspect-of-the-dragon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2381, - "fields": { - "parent": "aspect-of-the-serpent", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2383, - "fields": { - "parent": "aspect-of-the-serpent", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2384, - "fields": { - "parent": "aspect-of-the-serpent", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2385, - "fields": { - "parent": "aspect-of-the-serpent", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2386, - "fields": { - "parent": "aspect-of-the-serpent", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2387, - "fields": { - "parent": "aspect-of-the-serpent", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2388, - "fields": { - "parent": "aspect-of-the-serpent", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2389, - "fields": { - "parent": "aura-of-protection-or-destruction", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2391, - "fields": { - "parent": "aura-of-protection-or-destruction", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "1 round", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2392, - "fields": { - "parent": "aura-of-protection-or-destruction", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "2 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2393, - "fields": { - "parent": "aura-of-protection-or-destruction", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2394, - "fields": { - "parent": "aura-of-protection-or-destruction", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "4 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2395, - "fields": { - "parent": "aura-of-protection-or-destruction", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2396, - "fields": { - "parent": "aura-of-protection-or-destruction", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2397, - "fields": { - "parent": "auspicious-warning", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2398, - "fields": { - "parent": "avoid-grievous-injury", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2399, - "fields": { - "parent": "avronins-astral-assembly", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2400, - "fields": { - "parent": "avronins-astral-assembly", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2401, - "fields": { - "parent": "awaken-object", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2402, - "fields": { - "parent": "bad-timing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2403, - "fields": { - "parent": "batsense", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2404, - "fields": { - "parent": "become-nightwing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2405, - "fields": { - "parent": "beguiling-bet", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2407, - "fields": { - "parent": "beguiling-bet", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 1, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2408, - "fields": { - "parent": "beguiling-bet", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2409, - "fields": { - "parent": "beguiling-bet", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2410, - "fields": { - "parent": "beguiling-bet", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2411, - "fields": { - "parent": "beguiling-bet", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2412, - "fields": { - "parent": "beguiling-bet", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2413, - "fields": { - "parent": "beguiling-bet", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2414, - "fields": { - "parent": "benediction", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2415, - "fields": { - "parent": "bestial-fury", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2417, - "fields": { - "parent": "bestial-fury", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2418, - "fields": { - "parent": "bestial-fury", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2419, - "fields": { - "parent": "bestial-fury", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2420, - "fields": { - "parent": "bestial-fury", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2421, - "fields": { - "parent": "bestial-fury", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2422, - "fields": { - "parent": "bestial-fury", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2423, - "fields": { - "parent": "bestial-fury", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2424, - "fields": { - "parent": "binding-oath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2425, - "fields": { - "parent": "biting-arrow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2426, - "fields": { - "parent": "biting-arrow", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2427, - "fields": { - "parent": "biting-arrow", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2428, - "fields": { - "parent": "biting-arrow", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2429, - "fields": { - "parent": "biting-arrow", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2430, - "fields": { - "parent": "biting-arrow", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2431, - "fields": { - "parent": "biting-arrow", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2432, - "fields": { - "parent": "biting-arrow", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2433, - "fields": { - "parent": "biting-arrow", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2434, - "fields": { - "parent": "biting-arrow", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2435, - "fields": { - "parent": "biting-arrow", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2436, - "fields": { - "parent": "biting-arrow", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2437, - "fields": { - "parent": "biting-arrow", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2438, - "fields": { - "parent": "biting-arrow", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2439, - "fields": { - "parent": "biting-arrow", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2440, - "fields": { - "parent": "biting-arrow", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2441, - "fields": { - "parent": "biting-arrow", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2442, - "fields": { - "parent": "biting-arrow", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2443, - "fields": { - "parent": "biting-arrow", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2444, - "fields": { - "parent": "biting-arrow", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2445, - "fields": { - "parent": "biting-arrow", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2446, - "fields": { - "parent": "bitter-chains", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2447, - "fields": { - "parent": "black-goats-blessing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2448, - "fields": { - "parent": "black-hand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2449, - "fields": { - "parent": "black-ribbons", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2450, - "fields": { - "parent": "black-sunshine", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2451, - "fields": { - "parent": "black-swan-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2453, - "fields": { - "parent": "black-swan-storm", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2454, - "fields": { - "parent": "black-swan-storm", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2455, - "fields": { - "parent": "black-swan-storm", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2456, - "fields": { - "parent": "black-swan-storm", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2457, - "fields": { - "parent": "black-swan-storm", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2458, - "fields": { - "parent": "black-swan-storm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2459, - "fields": { - "parent": "black-swan-storm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2460, - "fields": { - "parent": "black-well", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2462, - "fields": { - "parent": "black-well", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2463, - "fields": { - "parent": "black-well", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2464, - "fields": { - "parent": "black-well", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2465, - "fields": { - "parent": "blade-of-my-brother", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2466, - "fields": { - "parent": "blade-of-wrath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2468, - "fields": { - "parent": "blade-of-wrath", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2469, - "fields": { - "parent": "blade-of-wrath", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2470, - "fields": { - "parent": "blade-of-wrath", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2471, - "fields": { - "parent": "blade-of-wrath", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2472, - "fields": { - "parent": "blade-of-wrath", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2473, - "fields": { - "parent": "blade-of-wrath", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2474, - "fields": { - "parent": "blazing-chariot", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2475, - "fields": { - "parent": "bleating-call", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2476, - "fields": { - "parent": "bleed", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2477, - "fields": { - "parent": "bless-the-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2478, - "fields": { - "parent": "blessed-halo", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2480, - "fields": { - "parent": "blessed-halo", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2481, - "fields": { - "parent": "blessed-halo", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2482, - "fields": { - "parent": "blessed-halo", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2483, - "fields": { - "parent": "blessed-halo", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2484, - "fields": { - "parent": "blessed-halo", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2485, - "fields": { - "parent": "blessed-halo", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2486, - "fields": { - "parent": "blessed-halo", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2487, - "fields": { - "parent": "blizzard", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2488, - "fields": { - "parent": "blood-and-steel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2490, - "fields": { - "parent": "blood-and-steel", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2491, - "fields": { - "parent": "blood-and-steel", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2492, - "fields": { - "parent": "blood-and-steel", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2493, - "fields": { - "parent": "blood-and-steel", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2494, - "fields": { - "parent": "blood-and-steel", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2495, - "fields": { - "parent": "blood-armor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2496, - "fields": { - "parent": "blood-lure", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2497, - "fields": { - "parent": "blood-offering", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2498, - "fields": { - "parent": "blood-puppet", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2499, - "fields": { - "parent": "blood-scarab", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2501, - "fields": { - "parent": "blood-scarab", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2502, - "fields": { - "parent": "blood-scarab", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2503, - "fields": { - "parent": "blood-scarab", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2504, - "fields": { - "parent": "blood-scarab", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2505, - "fields": { - "parent": "blood-scarab", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2506, - "fields": { - "parent": "blood-scarab", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2507, - "fields": { - "parent": "blood-scarab", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2508, - "fields": { - "parent": "blood-scarab", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2509, - "fields": { - "parent": "blood-spoor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2510, - "fields": { - "parent": "blood-tide", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2511, - "fields": { - "parent": "blood-tide", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2512, - "fields": { - "parent": "blood-tide", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2513, - "fields": { - "parent": "blood-tide", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2514, - "fields": { - "parent": "blood-tide", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2515, - "fields": { - "parent": "blood-tide", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2516, - "fields": { - "parent": "blood-tide", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2517, - "fields": { - "parent": "blood-tide", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2518, - "fields": { - "parent": "blood-tide", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2519, - "fields": { - "parent": "blood-tide", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2520, - "fields": { - "parent": "blood-tide", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2521, - "fields": { - "parent": "blood-tide", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2522, - "fields": { - "parent": "blood-tide", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2523, - "fields": { - "parent": "blood-tide", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2524, - "fields": { - "parent": "blood-tide", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2525, - "fields": { - "parent": "blood-tide", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2526, - "fields": { - "parent": "blood-tide", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2527, - "fields": { - "parent": "blood-tide", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2528, - "fields": { - "parent": "blood-tide", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2529, - "fields": { - "parent": "blood-tide", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2530, - "fields": { - "parent": "blood-tide", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2531, - "fields": { - "parent": "blood-to-acid", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2532, - "fields": { - "parent": "bloodhound", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2534, - "fields": { - "parent": "bloodhound", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2535, - "fields": { - "parent": "bloodhound", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2536, - "fields": { - "parent": "bloodhound", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2537, - "fields": { - "parent": "bloodhound", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2538, - "fields": { - "parent": "bloodhound", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2539, - "fields": { - "parent": "bloodhound", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2540, - "fields": { - "parent": "bloodhound", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2541, - "fields": { - "parent": "bloodhound", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2542, - "fields": { - "parent": "bloodshot", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2544, - "fields": { - "parent": "bloodshot", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2545, - "fields": { - "parent": "bloodshot", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2546, - "fields": { - "parent": "bloodshot", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2547, - "fields": { - "parent": "bloodshot", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2548, - "fields": { - "parent": "bloodshot", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2549, - "fields": { - "parent": "bloodshot", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2550, - "fields": { - "parent": "bloodshot", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2551, - "fields": { - "parent": "bloody-hands", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2552, - "fields": { - "parent": "bloody-smite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2553, - "fields": { - "parent": "bloom", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2554, - "fields": { - "parent": "bloom", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2555, - "fields": { - "parent": "boiling-blood", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2557, - "fields": { - "parent": "boiling-blood", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2558, - "fields": { - "parent": "boiling-blood", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2559, - "fields": { - "parent": "boiling-blood", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2560, - "fields": { - "parent": "boiling-blood", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2561, - "fields": { - "parent": "boiling-blood", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2562, - "fields": { - "parent": "boiling-oil", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2564, - "fields": { - "parent": "boiling-oil", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2565, - "fields": { - "parent": "boiling-oil", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2566, - "fields": { - "parent": "boiling-oil", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2567, - "fields": { - "parent": "boiling-oil", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2568, - "fields": { - "parent": "boiling-oil", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2569, - "fields": { - "parent": "boiling-oil", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2570, - "fields": { - "parent": "boiling-oil", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2571, - "fields": { - "parent": "bolster-undead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2573, - "fields": { - "parent": "bolster-undead", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2574, - "fields": { - "parent": "bolster-undead", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2575, - "fields": { - "parent": "bolster-undead", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2576, - "fields": { - "parent": "bolster-undead", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2577, - "fields": { - "parent": "bolster-undead", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2578, - "fields": { - "parent": "bolster-undead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2579, - "fields": { - "parent": "bolster-undead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2580, - "fields": { - "parent": "bolster-undead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2581, - "fields": { - "parent": "booster-shot", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2583, - "fields": { - "parent": "booster-shot", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2584, - "fields": { - "parent": "booster-shot", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2585, - "fields": { - "parent": "booster-shot", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2586, - "fields": { - "parent": "booster-shot", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2587, - "fields": { - "parent": "booster-shot", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2588, - "fields": { - "parent": "booster-shot", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2589, - "fields": { - "parent": "boreass-breath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2590, - "fields": { - "parent": "boreass-breath", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2592, - "fields": { - "parent": "boreass-breath", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2593, - "fields": { - "parent": "boreass-breath", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2594, - "fields": { - "parent": "boreass-breath", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2595, - "fields": { - "parent": "boreass-breath", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2596, - "fields": { - "parent": "boreass-breath", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2597, - "fields": { - "parent": "boreass-breath", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2598, - "fields": { - "parent": "boreass-breath", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2599, - "fields": { - "parent": "bottled-arcana", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2601, - "fields": { - "parent": "bottled-arcana", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2602, - "fields": { - "parent": "bottled-arcana", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2603, - "fields": { - "parent": "bottled-arcana", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2604, - "fields": { - "parent": "bottled-arcana", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2605, - "fields": { - "parent": "bottomless-stomach", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2606, - "fields": { - "parent": "breathtaking-wind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2607, - "fields": { - "parent": "breeze-compass", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2608, - "fields": { - "parent": "brimstone-infusion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2609, - "fields": { - "parent": "brittling", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2610, - "fields": { - "parent": "broken-charge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2612, - "fields": { - "parent": "broken-charge", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2613, - "fields": { - "parent": "broken-charge", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2614, - "fields": { - "parent": "broken-charge", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2615, - "fields": { - "parent": "broken-charge", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2616, - "fields": { - "parent": "broken-charge", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2617, - "fields": { - "parent": "broken-charge", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2618, - "fields": { - "parent": "broken-charge", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2619, - "fields": { - "parent": "broken-charge", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2620, - "fields": { - "parent": "by-the-light-of-the-moon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2621, - "fields": { - "parent": "by-the-light-of-the-watchful-moon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2622, - "fields": { - "parent": "call-shadow-mastiff", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2623, - "fields": { - "parent": "calm-of-the-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2625, - "fields": { - "parent": "calm-of-the-storm", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2626, - "fields": { - "parent": "calm-of-the-storm", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2627, - "fields": { - "parent": "calm-of-the-storm", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2628, - "fields": { - "parent": "calm-of-the-storm", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2629, - "fields": { - "parent": "calm-of-the-storm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2630, - "fields": { - "parent": "calm-of-the-storm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2631, - "fields": { - "parent": "candles-insight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2632, - "fields": { - "parent": "carmello-voltas-irksome-preserves", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2633, - "fields": { - "parent": "catapult", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2635, - "fields": { - "parent": "catapult", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2636, - "fields": { - "parent": "catapult", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2637, - "fields": { - "parent": "catapult", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2638, - "fields": { - "parent": "catch-the-breath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2640, - "fields": { - "parent": "catch-the-breath", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2641, - "fields": { - "parent": "catch-the-breath", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2642, - "fields": { - "parent": "catch-the-breath", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2643, - "fields": { - "parent": "catch-the-breath", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2644, - "fields": { - "parent": "catch-the-breath", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2645, - "fields": { - "parent": "catch-the-breath", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2646, - "fields": { - "parent": "caustic-blood", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2648, - "fields": { - "parent": "caustic-blood", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2649, - "fields": { - "parent": "caustic-blood", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2650, - "fields": { - "parent": "caustic-blood", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2651, - "fields": { - "parent": "caustic-blood", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2652, - "fields": { - "parent": "caustic-blood", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2653, - "fields": { - "parent": "caustic-blood", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2654, - "fields": { - "parent": "caustic-blood", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2655, - "fields": { - "parent": "caustic-torrent", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2656, - "fields": { - "parent": "caustic-touch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2657, - "fields": { - "parent": "caustic-touch", - "type": "player_level_1", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2658, - "fields": { - "parent": "caustic-touch", - "type": "player_level_2", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2659, - "fields": { - "parent": "caustic-touch", - "type": "player_level_3", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2660, - "fields": { - "parent": "caustic-touch", - "type": "player_level_4", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2661, - "fields": { - "parent": "caustic-touch", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2662, - "fields": { - "parent": "caustic-touch", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2663, - "fields": { - "parent": "caustic-touch", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2664, - "fields": { - "parent": "caustic-touch", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2665, - "fields": { - "parent": "caustic-touch", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2666, - "fields": { - "parent": "caustic-touch", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2667, - "fields": { - "parent": "caustic-touch", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2668, - "fields": { - "parent": "caustic-touch", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2669, - "fields": { - "parent": "caustic-touch", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2670, - "fields": { - "parent": "caustic-touch", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2671, - "fields": { - "parent": "caustic-touch", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2672, - "fields": { - "parent": "caustic-touch", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2673, - "fields": { - "parent": "caustic-touch", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2674, - "fields": { - "parent": "caustic-touch", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2675, - "fields": { - "parent": "caustic-touch", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2676, - "fields": { - "parent": "caustic-touch", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2677, - "fields": { - "parent": "celebration", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2678, - "fields": { - "parent": "celebration", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2680, - "fields": { - "parent": "celebration", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2681, - "fields": { - "parent": "celebration", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2682, - "fields": { - "parent": "chains-of-the-goddess", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2683, - "fields": { - "parent": "chains-of-torment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2685, - "fields": { - "parent": "chains-of-torment", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2686, - "fields": { - "parent": "chains-of-torment", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2687, - "fields": { - "parent": "chains-of-torment", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2688, - "fields": { - "parent": "chains-of-torment", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2689, - "fields": { - "parent": "chains-of-torment", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2690, - "fields": { - "parent": "champions-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2692, - "fields": { - "parent": "champions-weapon", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2693, - "fields": { - "parent": "champions-weapon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2694, - "fields": { - "parent": "champions-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2695, - "fields": { - "parent": "champions-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2696, - "fields": { - "parent": "champions-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2697, - "fields": { - "parent": "champions-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2698, - "fields": { - "parent": "champions-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2699, - "fields": { - "parent": "chaotic-form", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2701, - "fields": { - "parent": "chaotic-form", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "20 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2702, - "fields": { - "parent": "chaotic-form", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2703, - "fields": { - "parent": "chaotic-form", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "40 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2704, - "fields": { - "parent": "chaotic-form", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "50 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2705, - "fields": { - "parent": "chaotic-form", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "60 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2706, - "fields": { - "parent": "chaotic-vitality", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2708, - "fields": { - "parent": "chaotic-vitality", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2709, - "fields": { - "parent": "chaotic-vitality", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2710, - "fields": { - "parent": "chaotic-vitality", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2711, - "fields": { - "parent": "chaotic-vitality", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2712, - "fields": { - "parent": "chaotic-vitality", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2713, - "fields": { - "parent": "chaotic-vitality", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2714, - "fields": { - "parent": "chaotic-vitality", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2715, - "fields": { - "parent": "chaotic-world", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2716, - "fields": { - "parent": "chilling-words", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2717, - "fields": { - "parent": "chronal-lance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2719, - "fields": { - "parent": "chronal-lance", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2720, - "fields": { - "parent": "chronal-lance", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2721, - "fields": { - "parent": "chronal-lance", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2722, - "fields": { - "parent": "chronal-lance", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2723, - "fields": { - "parent": "chronal-lance", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2724, - "fields": { - "parent": "chronal-lance", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2725, - "fields": { - "parent": "chronal-lance", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2726, - "fields": { - "parent": "chronal-lance", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 11, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2727, - "fields": { - "parent": "circle-of-wind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2728, - "fields": { - "parent": "clash-of-glaciers", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2730, - "fields": { - "parent": "clash-of-glaciers", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2731, - "fields": { - "parent": "clash-of-glaciers", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2732, - "fields": { - "parent": "clash-of-glaciers", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2733, - "fields": { - "parent": "clash-of-glaciers", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2734, - "fields": { - "parent": "claws-of-darkness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2735, - "fields": { - "parent": "claws-of-the-earth-dragon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2737, - "fields": { - "parent": "claws-of-the-earth-dragon", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": "70 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2738, - "fields": { - "parent": "claws-of-the-earth-dragon", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": "80 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2739, - "fields": { - "parent": "claws-of-the-earth-dragon", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": "90 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2740, - "fields": { - "parent": "claws-of-the-earth-dragon", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": "100 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2741, - "fields": { - "parent": "clearing-the-field", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2742, - "fields": { - "parent": "clearing-the-field", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2744, - "fields": { - "parent": "clearing-the-field", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2745, - "fields": { - "parent": "clearing-the-field", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2746, - "fields": { - "parent": "clearing-the-field", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2747, - "fields": { - "parent": "clearing-the-field", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2748, - "fields": { - "parent": "clearing-the-field", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2749, - "fields": { - "parent": "clearing-the-field", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2750, - "fields": { - "parent": "clearing-the-field", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2751, - "fields": { - "parent": "cloak-of-shadow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2752, - "fields": { - "parent": "clockwork-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2753, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2754, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2755, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2756, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2757, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2758, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2759, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2760, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2761, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2762, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2763, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2764, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2765, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2766, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2767, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2768, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2769, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2770, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2771, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2772, - "fields": { - "parent": "clockwork-bolt", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2773, - "fields": { - "parent": "closing-in", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2775, - "fields": { - "parent": "closing-in", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2776, - "fields": { - "parent": "closing-in", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2777, - "fields": { - "parent": "closing-in", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2778, - "fields": { - "parent": "closing-in", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2779, - "fields": { - "parent": "closing-in", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2780, - "fields": { - "parent": "closing-in", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2781, - "fields": { - "parent": "cobra-fangs", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2783, - "fields": { - "parent": "cobra-fangs", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2784, - "fields": { - "parent": "cobra-fangs", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2785, - "fields": { - "parent": "cobra-fangs", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2786, - "fields": { - "parent": "cobra-fangs", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2787, - "fields": { - "parent": "cobra-fangs", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2788, - "fields": { - "parent": "cobra-fangs", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2789, - "fields": { - "parent": "cobra-fangs", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2790, - "fields": { - "parent": "cobra-fangs", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2791, - "fields": { - "parent": "compelled-movement", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2793, - "fields": { - "parent": "compelled-movement", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2794, - "fields": { - "parent": "compelled-movement", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2795, - "fields": { - "parent": "compelled-movement", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2796, - "fields": { - "parent": "compelled-movement", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2797, - "fields": { - "parent": "compelled-movement", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2798, - "fields": { - "parent": "compelled-movement", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2799, - "fields": { - "parent": "compelling-fate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2801, - "fields": { - "parent": "compelling-fate", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2802, - "fields": { - "parent": "compelling-fate", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2803, - "fields": { - "parent": "compelling-fate", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2804, - "fields": { - "parent": "compelling-fate", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2805, - "fields": { - "parent": "compelling-fate", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2806, - "fields": { - "parent": "compelling-fate", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2807, - "fields": { - "parent": "comprehend-wild-shape", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2809, - "fields": { - "parent": "comprehend-wild-shape", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2810, - "fields": { - "parent": "comprehend-wild-shape", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2811, - "fields": { - "parent": "comprehend-wild-shape", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2812, - "fields": { - "parent": "comprehend-wild-shape", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2813, - "fields": { - "parent": "comprehend-wild-shape", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2814, - "fields": { - "parent": "comprehend-wild-shape", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2815, - "fields": { - "parent": "comprehend-wild-shape", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2816, - "fields": { - "parent": "confound-senses", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2817, - "fields": { - "parent": "conjure-fey-hound", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2819, - "fields": { - "parent": "conjure-fey-hound", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2820, - "fields": { - "parent": "conjure-fey-hound", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2821, - "fields": { - "parent": "conjure-fey-hound", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2822, - "fields": { - "parent": "conjure-fey-hound", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2823, - "fields": { - "parent": "conjure-forest-defender", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2825, - "fields": { - "parent": "conjure-forest-defender", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2826, - "fields": { - "parent": "conjure-forest-defender", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2827, - "fields": { - "parent": "conjure-forest-defender", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2828, - "fields": { - "parent": "conjure-greater-spectral-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2830, - "fields": { - "parent": "conjure-greater-spectral-dead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2831, - "fields": { - "parent": "conjure-greater-spectral-dead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2832, - "fields": { - "parent": "conjure-minor-voidborn", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2834, - "fields": { - "parent": "conjure-minor-voidborn", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2835, - "fields": { - "parent": "conjure-minor-voidborn", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2836, - "fields": { - "parent": "conjure-minor-voidborn", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2837, - "fields": { - "parent": "conjure-minor-voidborn", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2838, - "fields": { - "parent": "conjure-scarab-swarm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2839, - "fields": { - "parent": "conjure-shadow-titan", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2840, - "fields": { - "parent": "conjure-spectral-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2842, - "fields": { - "parent": "conjure-spectral-dead", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2843, - "fields": { - "parent": "conjure-spectral-dead", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2844, - "fields": { - "parent": "conjure-spectral-dead", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2845, - "fields": { - "parent": "conjure-spectral-dead", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2846, - "fields": { - "parent": "conjure-spectral-dead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2847, - "fields": { - "parent": "conjure-spectral-dead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2848, - "fields": { - "parent": "conjure-spectral-dead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2849, - "fields": { - "parent": "conjure-undead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2851, - "fields": { - "parent": "conjure-undead", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2852, - "fields": { - "parent": "conjure-undead", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2853, - "fields": { - "parent": "conjure-undead", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2854, - "fields": { - "parent": "conjure-undead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2855, - "fields": { - "parent": "conjure-undead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2856, - "fields": { - "parent": "conjure-undead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2857, - "fields": { - "parent": "conjure-voidborn", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2859, - "fields": { - "parent": "conjure-voidborn", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2860, - "fields": { - "parent": "conjure-voidborn", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2861, - "fields": { - "parent": "consult-the-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2863, - "fields": { - "parent": "consult-the-storm", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2864, - "fields": { - "parent": "consult-the-storm", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2865, - "fields": { - "parent": "consult-the-storm", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2866, - "fields": { - "parent": "consult-the-storm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2867, - "fields": { - "parent": "consult-the-storm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2868, - "fields": { - "parent": "converse-with-dragon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2869, - "fields": { - "parent": "costly-victory", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2870, - "fields": { - "parent": "create-ring-servant", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2871, - "fields": { - "parent": "create-thunderstaff", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2872, - "fields": { - "parent": "creeping-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2874, - "fields": { - "parent": "creeping-ice", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2875, - "fields": { - "parent": "creeping-ice", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2876, - "fields": { - "parent": "creeping-ice", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2877, - "fields": { - "parent": "creeping-ice", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2878, - "fields": { - "parent": "creeping-ice", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2879, - "fields": { - "parent": "creeping-ice", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2880, - "fields": { - "parent": "creeping-ice", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2881, - "fields": { - "parent": "crushing-curse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2882, - "fields": { - "parent": "crushing-curse", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2883, - "fields": { - "parent": "crushing-curse", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2884, - "fields": { - "parent": "crushing-curse", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2885, - "fields": { - "parent": "crushing-curse", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2886, - "fields": { - "parent": "crushing-curse", - "type": "player_level_5", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2887, - "fields": { - "parent": "crushing-curse", - "type": "player_level_6", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2888, - "fields": { - "parent": "crushing-curse", - "type": "player_level_7", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2889, - "fields": { - "parent": "crushing-curse", - "type": "player_level_8", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2890, - "fields": { - "parent": "crushing-curse", - "type": "player_level_9", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2891, - "fields": { - "parent": "crushing-curse", - "type": "player_level_10", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2892, - "fields": { - "parent": "crushing-curse", - "type": "player_level_11", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2893, - "fields": { - "parent": "crushing-curse", - "type": "player_level_12", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2894, - "fields": { - "parent": "crushing-curse", - "type": "player_level_13", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2895, - "fields": { - "parent": "crushing-curse", - "type": "player_level_14", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2896, - "fields": { - "parent": "crushing-curse", - "type": "player_level_15", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2897, - "fields": { - "parent": "crushing-curse", - "type": "player_level_16", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2898, - "fields": { - "parent": "crushing-curse", - "type": "player_level_17", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2899, - "fields": { - "parent": "crushing-curse", - "type": "player_level_18", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2900, - "fields": { - "parent": "crushing-curse", - "type": "player_level_19", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2901, - "fields": { - "parent": "crushing-curse", - "type": "player_level_20", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2902, - "fields": { - "parent": "crushing-trample", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2903, - "fields": { - "parent": "cure-beast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2905, - "fields": { - "parent": "cure-beast", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2906, - "fields": { - "parent": "cure-beast", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2907, - "fields": { - "parent": "cure-beast", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2908, - "fields": { - "parent": "cure-beast", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2909, - "fields": { - "parent": "cure-beast", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2910, - "fields": { - "parent": "cure-beast", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2911, - "fields": { - "parent": "cure-beast", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2912, - "fields": { - "parent": "cure-beast", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2913, - "fields": { - "parent": "curse-of-boreas", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2914, - "fields": { - "parent": "curse-of-dust", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2915, - "fields": { - "parent": "curse-of-incompetence", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2916, - "fields": { - "parent": "curse-of-the-grave", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2917, - "fields": { - "parent": "curse-of-yig", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2918, - "fields": { - "parent": "curse-of-yig", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2919, - "fields": { - "parent": "curse-ring", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2920, - "fields": { - "parent": "cursed-gift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2922, - "fields": { - "parent": "cursed-gift", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2923, - "fields": { - "parent": "cursed-gift", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "3 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2924, - "fields": { - "parent": "cursed-gift", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "4 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2925, - "fields": { - "parent": "cursed-gift", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "5 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2926, - "fields": { - "parent": "cursed-gift", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "6 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2927, - "fields": { - "parent": "cynophobia", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2929, - "fields": { - "parent": "cynophobia", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2930, - "fields": { - "parent": "cynophobia", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2931, - "fields": { - "parent": "cynophobia", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2932, - "fields": { - "parent": "cynophobia", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 month", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2933, - "fields": { - "parent": "cynophobia", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 month", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2934, - "fields": { - "parent": "cynophobia", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2935, - "fields": { - "parent": "daggerhawk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2936, - "fields": { - "parent": "dark-dementing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2937, - "fields": { - "parent": "dark-heraldry", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2939, - "fields": { - "parent": "dark-heraldry", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2940, - "fields": { - "parent": "dark-heraldry", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2941, - "fields": { - "parent": "dark-heraldry", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2942, - "fields": { - "parent": "dark-heraldry", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2943, - "fields": { - "parent": "dark-heraldry", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2944, - "fields": { - "parent": "dark-heraldry", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2945, - "fields": { - "parent": "dark-maw", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2946, - "fields": { - "parent": "dark-maw", - "type": "player_level_1", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2947, - "fields": { - "parent": "dark-maw", - "type": "player_level_2", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2948, - "fields": { - "parent": "dark-maw", - "type": "player_level_3", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2949, - "fields": { - "parent": "dark-maw", - "type": "player_level_4", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2950, - "fields": { - "parent": "dark-maw", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2951, - "fields": { - "parent": "dark-maw", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2952, - "fields": { - "parent": "dark-maw", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2953, - "fields": { - "parent": "dark-maw", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2954, - "fields": { - "parent": "dark-maw", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2955, - "fields": { - "parent": "dark-maw", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2956, - "fields": { - "parent": "dark-maw", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2957, - "fields": { - "parent": "dark-maw", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2958, - "fields": { - "parent": "dark-maw", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2959, - "fields": { - "parent": "dark-maw", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2960, - "fields": { - "parent": "dark-maw", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2961, - "fields": { - "parent": "dark-maw", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2962, - "fields": { - "parent": "dark-maw", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2963, - "fields": { - "parent": "dark-maw", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2964, - "fields": { - "parent": "dark-maw", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2965, - "fields": { - "parent": "dark-maw", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2966, - "fields": { - "parent": "dark-path", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2967, - "fields": { - "parent": "darkbolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2969, - "fields": { - "parent": "darkbolt", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2970, - "fields": { - "parent": "darkbolt", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2971, - "fields": { - "parent": "darkbolt", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2972, - "fields": { - "parent": "darkbolt", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2973, - "fields": { - "parent": "darkbolt", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2974, - "fields": { - "parent": "darkbolt", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2975, - "fields": { - "parent": "darkbolt", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2976, - "fields": { - "parent": "dead-walking", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2978, - "fields": { - "parent": "dead-walking", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2979, - "fields": { - "parent": "dead-walking", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2980, - "fields": { - "parent": "dead-walking", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2981, - "fields": { - "parent": "dead-walking", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2982, - "fields": { - "parent": "dead-walking", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2983, - "fields": { - "parent": "dead-walking", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2984, - "fields": { - "parent": "dead-walking", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2985, - "fields": { - "parent": "deadly-sting", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2986, - "fields": { - "parent": "death-gods-touch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2988, - "fields": { - "parent": "death-gods-touch", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2989, - "fields": { - "parent": "death-gods-touch", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2990, - "fields": { - "parent": "decay", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2991, - "fields": { - "parent": "decay", - "type": "player_level_1", - "damage_roll": "1d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2992, - "fields": { - "parent": "decay", - "type": "player_level_2", - "damage_roll": "1d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2993, - "fields": { - "parent": "decay", - "type": "player_level_3", - "damage_roll": "1d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2994, - "fields": { - "parent": "decay", - "type": "player_level_4", - "damage_roll": "1d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2995, - "fields": { - "parent": "decay", - "type": "player_level_5", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2996, - "fields": { - "parent": "decay", - "type": "player_level_6", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2997, - "fields": { - "parent": "decay", - "type": "player_level_7", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2998, - "fields": { - "parent": "decay", - "type": "player_level_8", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 2999, - "fields": { - "parent": "decay", - "type": "player_level_9", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3000, - "fields": { - "parent": "decay", - "type": "player_level_10", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3001, - "fields": { - "parent": "decay", - "type": "player_level_11", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3002, - "fields": { - "parent": "decay", - "type": "player_level_12", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3003, - "fields": { - "parent": "decay", - "type": "player_level_13", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3004, - "fields": { - "parent": "decay", - "type": "player_level_14", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3005, - "fields": { - "parent": "decay", - "type": "player_level_15", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3006, - "fields": { - "parent": "decay", - "type": "player_level_16", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3007, - "fields": { - "parent": "decay", - "type": "player_level_17", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3008, - "fields": { - "parent": "decay", - "type": "player_level_18", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3009, - "fields": { - "parent": "decay", - "type": "player_level_19", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3010, - "fields": { - "parent": "decay", - "type": "player_level_20", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3011, - "fields": { - "parent": "decelerate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3013, - "fields": { - "parent": "decelerate", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3014, - "fields": { - "parent": "decelerate", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3015, - "fields": { - "parent": "decelerate", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3016, - "fields": { - "parent": "decelerate", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3017, - "fields": { - "parent": "decelerate", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3018, - "fields": { - "parent": "decelerate", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3019, - "fields": { - "parent": "decelerate", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3020, - "fields": { - "parent": "deep-breath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3022, - "fields": { - "parent": "deep-breath", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3023, - "fields": { - "parent": "deep-breath", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3024, - "fields": { - "parent": "deep-breath", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3025, - "fields": { - "parent": "deep-breath", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "10 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3026, - "fields": { - "parent": "deep-breath", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "12 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3027, - "fields": { - "parent": "deep-breath", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "14 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3028, - "fields": { - "parent": "deep-breath", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "16 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3029, - "fields": { - "parent": "deep-breath", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "18 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3030, - "fields": { - "parent": "defile-healing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3032, - "fields": { - "parent": "defile-healing", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3033, - "fields": { - "parent": "defile-healing", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3034, - "fields": { - "parent": "delay-potion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3035, - "fields": { - "parent": "delayed-healing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3037, - "fields": { - "parent": "delayed-healing", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3038, - "fields": { - "parent": "delayed-healing", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3039, - "fields": { - "parent": "delayed-healing", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3040, - "fields": { - "parent": "delayed-healing", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3041, - "fields": { - "parent": "delayed-healing", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3042, - "fields": { - "parent": "delayed-healing", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3043, - "fields": { - "parent": "demon-within", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3044, - "fields": { - "parent": "desiccating-breath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3045, - "fields": { - "parent": "desolation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3046, - "fields": { - "parent": "desolation", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3047, - "fields": { - "parent": "destructive-resonance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3049, - "fields": { - "parent": "destructive-resonance", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3050, - "fields": { - "parent": "destructive-resonance", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3051, - "fields": { - "parent": "destructive-resonance", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3052, - "fields": { - "parent": "destructive-resonance", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3053, - "fields": { - "parent": "destructive-resonance", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3054, - "fields": { - "parent": "destructive-resonance", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3055, - "fields": { - "parent": "destructive-resonance", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3056, - "fields": { - "parent": "detect-dragons", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3057, - "fields": { - "parent": "devas-wings", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3059, - "fields": { - "parent": "devas-wings", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3060, - "fields": { - "parent": "devas-wings", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3061, - "fields": { - "parent": "devas-wings", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3062, - "fields": { - "parent": "devas-wings", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3063, - "fields": { - "parent": "devas-wings", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3064, - "fields": { - "parent": "dimensional-shove", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3066, - "fields": { - "parent": "dimensional-shove", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3067, - "fields": { - "parent": "dimensional-shove", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3068, - "fields": { - "parent": "dimensional-shove", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3069, - "fields": { - "parent": "dimensional-shove", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3070, - "fields": { - "parent": "dimensional-shove", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3071, - "fields": { - "parent": "dimensional-shove", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3072, - "fields": { - "parent": "disquieting-gaze", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3073, - "fields": { - "parent": "disruptive-aura", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3075, - "fields": { - "parent": "disruptive-aura", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3076, - "fields": { - "parent": "distracting-divination", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3077, - "fields": { - "parent": "distraction-cascade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3078, - "fields": { - "parent": "doom-of-blue-crystal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3079, - "fields": { - "parent": "doom-of-consuming-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3081, - "fields": { - "parent": "doom-of-consuming-fire", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3082, - "fields": { - "parent": "doom-of-consuming-fire", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3083, - "fields": { - "parent": "doom-of-consuming-fire", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3084, - "fields": { - "parent": "doom-of-consuming-fire", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3085, - "fields": { - "parent": "doom-of-consuming-fire", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3086, - "fields": { - "parent": "doom-of-consuming-fire", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3087, - "fields": { - "parent": "doom-of-consuming-fire", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3088, - "fields": { - "parent": "doom-of-dancing-blades", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3089, - "fields": { - "parent": "doom-of-disenchantment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3090, - "fields": { - "parent": "doom-of-serpent-coils", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3091, - "fields": { - "parent": "doom-of-the-cracked-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3092, - "fields": { - "parent": "doom-of-the-earthen-maw", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3093, - "fields": { - "parent": "doom-of-the-slippery-rogue", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3094, - "fields": { - "parent": "douse-light", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3095, - "fields": { - "parent": "draconic-smite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3097, - "fields": { - "parent": "draconic-smite", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3098, - "fields": { - "parent": "draconic-smite", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3099, - "fields": { - "parent": "draconic-smite", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3100, - "fields": { - "parent": "draconic-smite", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3101, - "fields": { - "parent": "draconic-smite", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3102, - "fields": { - "parent": "draconic-smite", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3103, - "fields": { - "parent": "draconic-smite", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3104, - "fields": { - "parent": "draconic-smite", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3105, - "fields": { - "parent": "dragon-breath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3107, - "fields": { - "parent": "dragon-breath", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3108, - "fields": { - "parent": "dragon-breath", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3109, - "fields": { - "parent": "dragon-breath", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3110, - "fields": { - "parent": "dragon-breath", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3111, - "fields": { - "parent": "dragon-roar", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3112, - "fields": { - "parent": "dragon-roar", - "type": "player_level_1", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3113, - "fields": { - "parent": "dragon-roar", - "type": "player_level_2", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3114, - "fields": { - "parent": "dragon-roar", - "type": "player_level_3", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3115, - "fields": { - "parent": "dragon-roar", - "type": "player_level_4", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3116, - "fields": { - "parent": "dragon-roar", - "type": "player_level_5", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3117, - "fields": { - "parent": "dragon-roar", - "type": "player_level_6", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3118, - "fields": { - "parent": "dragon-roar", - "type": "player_level_7", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3119, - "fields": { - "parent": "dragon-roar", - "type": "player_level_8", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3120, - "fields": { - "parent": "dragon-roar", - "type": "player_level_9", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3121, - "fields": { - "parent": "dragon-roar", - "type": "player_level_10", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3122, - "fields": { - "parent": "dragon-roar", - "type": "player_level_11", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3123, - "fields": { - "parent": "dragon-roar", - "type": "player_level_12", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3124, - "fields": { - "parent": "dragon-roar", - "type": "player_level_13", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3125, - "fields": { - "parent": "dragon-roar", - "type": "player_level_14", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3126, - "fields": { - "parent": "dragon-roar", - "type": "player_level_15", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3127, - "fields": { - "parent": "dragon-roar", - "type": "player_level_16", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3128, - "fields": { - "parent": "dragon-roar", - "type": "player_level_17", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3129, - "fields": { - "parent": "dragon-roar", - "type": "player_level_18", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3130, - "fields": { - "parent": "dragon-roar", - "type": "player_level_19", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3131, - "fields": { - "parent": "dragon-roar", - "type": "player_level_20", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3132, - "fields": { - "parent": "drown", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3134, - "fields": { - "parent": "drown", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3135, - "fields": { - "parent": "drown", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3136, - "fields": { - "parent": "drown", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3137, - "fields": { - "parent": "drown", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3138, - "fields": { - "parent": "drown", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3139, - "fields": { - "parent": "drown", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3140, - "fields": { - "parent": "dryads-kiss", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3142, - "fields": { - "parent": "dryads-kiss", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3143, - "fields": { - "parent": "dryads-kiss", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3144, - "fields": { - "parent": "dryads-kiss", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3145, - "fields": { - "parent": "dryads-kiss", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3146, - "fields": { - "parent": "dryads-kiss", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3147, - "fields": { - "parent": "dryads-kiss", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3148, - "fields": { - "parent": "earthskimmer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3149, - "fields": { - "parent": "earworm-melody", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3151, - "fields": { - "parent": "earworm-melody", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3152, - "fields": { - "parent": "earworm-melody", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3153, - "fields": { - "parent": "earworm-melody", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3154, - "fields": { - "parent": "earworm-melody", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3155, - "fields": { - "parent": "earworm-melody", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3156, - "fields": { - "parent": "earworm-melody", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3157, - "fields": { - "parent": "earworm-melody", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3158, - "fields": { - "parent": "earworm-melody", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3159, - "fields": { - "parent": "echoes-of-steel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3160, - "fields": { - "parent": "ectoplasm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3162, - "fields": { - "parent": "ectoplasm", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3163, - "fields": { - "parent": "ectoplasm", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3164, - "fields": { - "parent": "ectoplasm", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3165, - "fields": { - "parent": "ectoplasm", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3166, - "fields": { - "parent": "ectoplasm", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3167, - "fields": { - "parent": "ectoplasm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3168, - "fields": { - "parent": "ectoplasm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3169, - "fields": { - "parent": "eidetic-memory", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3170, - "fields": { - "parent": "eidetic-memory", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3171, - "fields": { - "parent": "eldritch-communion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3172, - "fields": { - "parent": "eldritch-communion", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3173, - "fields": { - "parent": "elemental-horns", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3175, - "fields": { - "parent": "elemental-horns", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3176, - "fields": { - "parent": "elemental-horns", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3177, - "fields": { - "parent": "elemental-horns", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3178, - "fields": { - "parent": "elemental-horns", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3179, - "fields": { - "parent": "elemental-horns", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3180, - "fields": { - "parent": "elemental-horns", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3181, - "fields": { - "parent": "elemental-horns", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3182, - "fields": { - "parent": "elemental-twist", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3183, - "fields": { - "parent": "emanation-of-yoth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3184, - "fields": { - "parent": "emanation-of-yoth", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3186, - "fields": { - "parent": "emanation-of-yoth", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3187, - "fields": { - "parent": "emanation-of-yoth", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3188, - "fields": { - "parent": "emanation-of-yoth", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3189, - "fields": { - "parent": "emanation-of-yoth", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3190, - "fields": { - "parent": "emanation-of-yoth", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3191, - "fields": { - "parent": "enchant-ring", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3192, - "fields": { - "parent": "encroaching-shadows", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3193, - "fields": { - "parent": "encroaching-shadows", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3195, - "fields": { - "parent": "encroaching-shadows", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3196, - "fields": { - "parent": "encroaching-shadows", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "36 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3197, - "fields": { - "parent": "encroaching-shadows", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3198, - "fields": { - "parent": "encrypt-decrypt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3199, - "fields": { - "parent": "endow-attribute", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3201, - "fields": { - "parent": "endow-attribute", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3202, - "fields": { - "parent": "endow-attribute", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3203, - "fields": { - "parent": "endow-attribute", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3204, - "fields": { - "parent": "endow-attribute", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3205, - "fields": { - "parent": "endow-attribute", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3206, - "fields": { - "parent": "energy-absorption", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3207, - "fields": { - "parent": "energy-foreknowledge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3209, - "fields": { - "parent": "energy-foreknowledge", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3210, - "fields": { - "parent": "energy-foreknowledge", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3211, - "fields": { - "parent": "energy-foreknowledge", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3212, - "fields": { - "parent": "energy-foreknowledge", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3213, - "fields": { - "parent": "energy-foreknowledge", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3214, - "fields": { - "parent": "enhance-greed", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3216, - "fields": { - "parent": "enhance-greed", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "11 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3217, - "fields": { - "parent": "enhance-greed", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "12 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3218, - "fields": { - "parent": "enhance-greed", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "13 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3219, - "fields": { - "parent": "enhance-greed", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "14 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3220, - "fields": { - "parent": "enhance-greed", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "15 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3221, - "fields": { - "parent": "enhance-greed", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "16 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3222, - "fields": { - "parent": "enhance-greed", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "17 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3223, - "fields": { - "parent": "entomb", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3224, - "fields": { - "parent": "entropic-damage-field", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3225, - "fields": { - "parent": "essence-instability", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3227, - "fields": { - "parent": "essence-instability", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3228, - "fields": { - "parent": "essence-instability", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3229, - "fields": { - "parent": "essence-instability", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3230, - "fields": { - "parent": "essence-instability", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3231, - "fields": { - "parent": "evercold", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3232, - "fields": { - "parent": "exsanguinate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3234, - "fields": { - "parent": "exsanguinate", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3235, - "fields": { - "parent": "exsanguinate", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3236, - "fields": { - "parent": "exsanguinate", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3237, - "fields": { - "parent": "exsanguinate", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3238, - "fields": { - "parent": "exsanguinating-cloud", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3239, - "fields": { - "parent": "extract-knowledge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3240, - "fields": { - "parent": "extract-knowledge", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3241, - "fields": { - "parent": "fault-line", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3242, - "fields": { - "parent": "feather-field", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3244, - "fields": { - "parent": "feather-field", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": "2 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3245, - "fields": { - "parent": "feather-field", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3246, - "fields": { - "parent": "feather-field", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "4 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3247, - "fields": { - "parent": "feather-field", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3248, - "fields": { - "parent": "feather-field", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3249, - "fields": { - "parent": "feather-field", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "7 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3250, - "fields": { - "parent": "feather-field", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3251, - "fields": { - "parent": "feather-field", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "9 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3252, - "fields": { - "parent": "feather-travel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3254, - "fields": { - "parent": "feather-travel", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3255, - "fields": { - "parent": "feather-travel", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3256, - "fields": { - "parent": "feather-travel", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3257, - "fields": { - "parent": "feather-travel", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3258, - "fields": { - "parent": "feather-travel", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3259, - "fields": { - "parent": "feather-travel", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3260, - "fields": { - "parent": "feather-travel", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3261, - "fields": { - "parent": "fey-crown", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3263, - "fields": { - "parent": "fey-crown", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3264, - "fields": { - "parent": "fey-crown", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3265, - "fields": { - "parent": "fey-crown", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3266, - "fields": { - "parent": "fey-crown", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3267, - "fields": { - "parent": "find-kin", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3268, - "fields": { - "parent": "find-kin", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3269, - "fields": { - "parent": "fire-darts", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3271, - "fields": { - "parent": "fire-darts", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3272, - "fields": { - "parent": "fire-darts", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3273, - "fields": { - "parent": "fire-darts", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3274, - "fields": { - "parent": "fire-darts", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3275, - "fields": { - "parent": "fire-darts", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3276, - "fields": { - "parent": "fire-darts", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3277, - "fields": { - "parent": "fire-darts", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3278, - "fields": { - "parent": "fire-under-the-tongue", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3279, - "fields": { - "parent": "firewalk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3281, - "fields": { - "parent": "firewalk", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3282, - "fields": { - "parent": "firewalk", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3283, - "fields": { - "parent": "firewalk", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3284, - "fields": { - "parent": "fist-of-iron", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3285, - "fields": { - "parent": "flame-wave", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3287, - "fields": { - "parent": "flame-wave", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3288, - "fields": { - "parent": "flame-wave", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3289, - "fields": { - "parent": "flame-wave", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3290, - "fields": { - "parent": "flame-wave", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3291, - "fields": { - "parent": "flame-wave", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3292, - "fields": { - "parent": "flesh-to-paper", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3294, - "fields": { - "parent": "flesh-to-paper", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3295, - "fields": { - "parent": "flesh-to-paper", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3296, - "fields": { - "parent": "flesh-to-paper", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3297, - "fields": { - "parent": "flesh-to-paper", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3298, - "fields": { - "parent": "flesh-to-paper", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3299, - "fields": { - "parent": "flesh-to-paper", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3300, - "fields": { - "parent": "flickering-fate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3301, - "fields": { - "parent": "fluctuating-alignment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3302, - "fields": { - "parent": "flurry", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3303, - "fields": { - "parent": "forest-native", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3304, - "fields": { - "parent": "forest-sanctuary", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3305, - "fields": { - "parent": "foretell-distraction", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3306, - "fields": { - "parent": "form-of-the-gods", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3307, - "fields": { - "parent": "freeze-blood", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3308, - "fields": { - "parent": "freeze-potion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3310, - "fields": { - "parent": "freeze-potion", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3311, - "fields": { - "parent": "freeze-potion", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "35 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3312, - "fields": { - "parent": "freeze-potion", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "40 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3313, - "fields": { - "parent": "freeze-potion", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "45 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3314, - "fields": { - "parent": "freeze-potion", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "50 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3315, - "fields": { - "parent": "freeze-potion", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "55 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3316, - "fields": { - "parent": "freeze-potion", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "60 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3317, - "fields": { - "parent": "freeze-potion", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "65 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3318, - "fields": { - "parent": "freezing-fog", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3320, - "fields": { - "parent": "freezing-fog", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3321, - "fields": { - "parent": "freezing-fog", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3322, - "fields": { - "parent": "freezing-fog", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3323, - "fields": { - "parent": "freezing-fog", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3324, - "fields": { - "parent": "freezing-fog", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3325, - "fields": { - "parent": "freezing-fog", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3326, - "fields": { - "parent": "frenzied-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3328, - "fields": { - "parent": "frenzied-bolt", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3329, - "fields": { - "parent": "frenzied-bolt", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3330, - "fields": { - "parent": "frenzied-bolt", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3331, - "fields": { - "parent": "frenzied-bolt", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3332, - "fields": { - "parent": "frenzied-bolt", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3333, - "fields": { - "parent": "frenzied-bolt", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3334, - "fields": { - "parent": "frenzied-bolt", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3335, - "fields": { - "parent": "frostbite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3337, - "fields": { - "parent": "frostbite", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3338, - "fields": { - "parent": "frostbite", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3339, - "fields": { - "parent": "frostbite", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3340, - "fields": { - "parent": "frostbite", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3341, - "fields": { - "parent": "frostbitten-fingers", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3342, - "fields": { - "parent": "frozen-razors", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3344, - "fields": { - "parent": "frozen-razors", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3345, - "fields": { - "parent": "frozen-razors", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3346, - "fields": { - "parent": "frozen-razors", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3347, - "fields": { - "parent": "frozen-razors", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3348, - "fields": { - "parent": "frozen-razors", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3349, - "fields": { - "parent": "frozen-razors", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3350, - "fields": { - "parent": "furious-hooves", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3351, - "fields": { - "parent": "fusillade-of-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3353, - "fields": { - "parent": "fusillade-of-ice", - "type": "slot_level_5", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3354, - "fields": { - "parent": "fusillade-of-ice", - "type": "slot_level_6", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3355, - "fields": { - "parent": "fusillade-of-ice", - "type": "slot_level_7", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3356, - "fields": { - "parent": "fusillade-of-ice", - "type": "slot_level_8", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3357, - "fields": { - "parent": "fusillade-of-ice", - "type": "slot_level_9", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3358, - "fields": { - "parent": "gear-barrage", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3359, - "fields": { - "parent": "ghoul-kings-cloak", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3361, - "fields": { - "parent": "ghoul-kings-cloak", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3362, - "fields": { - "parent": "gird-the-spirit", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3363, - "fields": { - "parent": "glacial-cascade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3364, - "fields": { - "parent": "glacial-fog", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3366, - "fields": { - "parent": "glacial-fog", - "type": "slot_level_8", - "damage_roll": "13d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3367, - "fields": { - "parent": "glacial-fog", - "type": "slot_level_9", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3368, - "fields": { - "parent": "gliding-step", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3370, - "fields": { - "parent": "gliding-step", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": "20 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3371, - "fields": { - "parent": "gliding-step", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3372, - "fields": { - "parent": "gliding-step", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "40 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3373, - "fields": { - "parent": "gliding-step", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "50 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3374, - "fields": { - "parent": "gliding-step", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "60 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3375, - "fields": { - "parent": "gliding-step", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "70 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3376, - "fields": { - "parent": "gliding-step", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "80 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3377, - "fields": { - "parent": "gliding-step", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "90 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3378, - "fields": { - "parent": "glimpse-of-the-void", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3379, - "fields": { - "parent": "gloomwrought-barrier", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3380, - "fields": { - "parent": "gluey-globule", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3381, - "fields": { - "parent": "glyph-of-shifting", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3383, - "fields": { - "parent": "glyph-of-shifting", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3384, - "fields": { - "parent": "glyph-of-shifting", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3385, - "fields": { - "parent": "glyph-of-shifting", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3386, - "fields": { - "parent": "glyph-of-shifting", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3387, - "fields": { - "parent": "glyph-of-shifting", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3388, - "fields": { - "parent": "glyph-of-shifting", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3389, - "fields": { - "parent": "glyph-of-shifting", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3390, - "fields": { - "parent": "goats-hoof-charm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3392, - "fields": { - "parent": "goats-hoof-charm", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": "2 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3393, - "fields": { - "parent": "goats-hoof-charm", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": "3 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3394, - "fields": { - "parent": "goats-hoof-charm", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": "4 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3395, - "fields": { - "parent": "goats-hoof-charm", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": "5 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3396, - "fields": { - "parent": "goats-hoof-charm", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": "6 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3397, - "fields": { - "parent": "goats-hoof-charm", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": "7 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3398, - "fields": { - "parent": "goats-hoof-charm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": "8 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3399, - "fields": { - "parent": "goats-hoof-charm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": "9 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3400, - "fields": { - "parent": "going-in-circles", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3401, - "fields": { - "parent": "gordolays-pleasant-aroma", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3402, - "fields": { - "parent": "grasp-of-the-tupilak", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3403, - "fields": { - "parent": "greater-maze", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3404, - "fields": { - "parent": "greater-seal-of-sanctuary", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3405, - "fields": { - "parent": "greater-seal-of-sanctuary", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3406, - "fields": { - "parent": "green-decay", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3407, - "fields": { - "parent": "green-decay", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3408, - "fields": { - "parent": "grudge-match", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3410, - "fields": { - "parent": "grudge-match", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "2 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3411, - "fields": { - "parent": "grudge-match", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3412, - "fields": { - "parent": "grudge-match", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "4 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3413, - "fields": { - "parent": "grudge-match", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3414, - "fields": { - "parent": "grudge-match", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3415, - "fields": { - "parent": "grudge-match", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "7 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3416, - "fields": { - "parent": "grudge-match", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3417, - "fields": { - "parent": "guest-of-honor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3418, - "fields": { - "parent": "guest-of-honor", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3420, - "fields": { - "parent": "guest-of-honor", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3421, - "fields": { - "parent": "guest-of-honor", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3422, - "fields": { - "parent": "guest-of-honor", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3423, - "fields": { - "parent": "guest-of-honor", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3424, - "fields": { - "parent": "guest-of-honor", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3425, - "fields": { - "parent": "guest-of-honor", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3426, - "fields": { - "parent": "guest-of-honor", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3427, - "fields": { - "parent": "guest-of-honor", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3428, - "fields": { - "parent": "guiding-star", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3429, - "fields": { - "parent": "guiding-star", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3430, - "fields": { - "parent": "hamstring", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3431, - "fields": { - "parent": "hamstring", - "type": "player_level_1", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3432, - "fields": { - "parent": "hamstring", - "type": "player_level_2", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3433, - "fields": { - "parent": "hamstring", - "type": "player_level_3", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3434, - "fields": { - "parent": "hamstring", - "type": "player_level_4", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3435, - "fields": { - "parent": "hamstring", - "type": "player_level_5", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3436, - "fields": { - "parent": "hamstring", - "type": "player_level_6", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3437, - "fields": { - "parent": "hamstring", - "type": "player_level_7", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3438, - "fields": { - "parent": "hamstring", - "type": "player_level_8", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3439, - "fields": { - "parent": "hamstring", - "type": "player_level_9", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3440, - "fields": { - "parent": "hamstring", - "type": "player_level_10", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3441, - "fields": { - "parent": "hamstring", - "type": "player_level_11", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3442, - "fields": { - "parent": "hamstring", - "type": "player_level_12", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3443, - "fields": { - "parent": "hamstring", - "type": "player_level_13", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3444, - "fields": { - "parent": "hamstring", - "type": "player_level_14", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3445, - "fields": { - "parent": "hamstring", - "type": "player_level_15", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3446, - "fields": { - "parent": "hamstring", - "type": "player_level_16", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3447, - "fields": { - "parent": "hamstring", - "type": "player_level_17", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3448, - "fields": { - "parent": "hamstring", - "type": "player_level_18", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3449, - "fields": { - "parent": "hamstring", - "type": "player_level_19", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3450, - "fields": { - "parent": "hamstring", - "type": "player_level_20", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3451, - "fields": { - "parent": "hard-heart", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3453, - "fields": { - "parent": "hard-heart", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3454, - "fields": { - "parent": "hard-heart", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3455, - "fields": { - "parent": "hard-heart", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3456, - "fields": { - "parent": "hard-heart", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3457, - "fields": { - "parent": "hard-heart", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3458, - "fields": { - "parent": "hard-heart", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3459, - "fields": { - "parent": "hard-heart", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3460, - "fields": { - "parent": "hard-heart", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3461, - "fields": { - "parent": "harry", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3463, - "fields": { - "parent": "harry", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3464, - "fields": { - "parent": "harry", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3465, - "fields": { - "parent": "harry", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3466, - "fields": { - "parent": "harry", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3467, - "fields": { - "parent": "harry", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3468, - "fields": { - "parent": "harrying-hounds", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3470, - "fields": { - "parent": "harrying-hounds", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "12 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3471, - "fields": { - "parent": "harrying-hounds", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "16 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3472, - "fields": { - "parent": "harrying-hounds", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "20 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3473, - "fields": { - "parent": "harrying-hounds", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3474, - "fields": { - "parent": "harsh-light-of-summers-glare", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3475, - "fields": { - "parent": "heart-seeking-arrow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3477, - "fields": { - "parent": "heart-seeking-arrow", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3478, - "fields": { - "parent": "heart-seeking-arrow", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3479, - "fields": { - "parent": "heart-seeking-arrow", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3480, - "fields": { - "parent": "heart-seeking-arrow", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3481, - "fields": { - "parent": "heart-seeking-arrow", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3482, - "fields": { - "parent": "heart-to-heart", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3483, - "fields": { - "parent": "heartache", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3485, - "fields": { - "parent": "heartache", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3486, - "fields": { - "parent": "heartache", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3487, - "fields": { - "parent": "heartache", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3488, - "fields": { - "parent": "heartache", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3489, - "fields": { - "parent": "heartache", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3490, - "fields": { - "parent": "heartache", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3491, - "fields": { - "parent": "heartache", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3492, - "fields": { - "parent": "heartstop", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3493, - "fields": { - "parent": "heartstrike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3494, - "fields": { - "parent": "heavenly-crown", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3495, - "fields": { - "parent": "hedrens-birds-of-clay", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3497, - "fields": { - "parent": "hedrens-birds-of-clay", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3498, - "fields": { - "parent": "hedrens-birds-of-clay", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3499, - "fields": { - "parent": "hedrens-birds-of-clay", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3500, - "fields": { - "parent": "hedrens-birds-of-clay", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3501, - "fields": { - "parent": "hedrens-birds-of-clay", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3502, - "fields": { - "parent": "hedrens-birds-of-clay", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3503, - "fields": { - "parent": "hematomancy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3504, - "fields": { - "parent": "heros-steel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3505, - "fields": { - "parent": "hide-in-ones-shadow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3506, - "fields": { - "parent": "hoarfrost", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3507, - "fields": { - "parent": "hoarfrost", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3508, - "fields": { - "parent": "hoarfrost", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3509, - "fields": { - "parent": "hoarfrost", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3510, - "fields": { - "parent": "hoarfrost", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3511, - "fields": { - "parent": "hoarfrost", - "type": "player_level_5", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3512, - "fields": { - "parent": "hoarfrost", - "type": "player_level_6", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3513, - "fields": { - "parent": "hoarfrost", - "type": "player_level_7", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3514, - "fields": { - "parent": "hoarfrost", - "type": "player_level_8", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3515, - "fields": { - "parent": "hoarfrost", - "type": "player_level_9", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3516, - "fields": { - "parent": "hoarfrost", - "type": "player_level_10", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3517, - "fields": { - "parent": "hoarfrost", - "type": "player_level_11", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3518, - "fields": { - "parent": "hoarfrost", - "type": "player_level_12", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3519, - "fields": { - "parent": "hoarfrost", - "type": "player_level_13", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3520, - "fields": { - "parent": "hoarfrost", - "type": "player_level_14", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3521, - "fields": { - "parent": "hoarfrost", - "type": "player_level_15", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3522, - "fields": { - "parent": "hoarfrost", - "type": "player_level_16", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3523, - "fields": { - "parent": "hoarfrost", - "type": "player_level_17", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3524, - "fields": { - "parent": "hoarfrost", - "type": "player_level_18", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3525, - "fields": { - "parent": "hoarfrost", - "type": "player_level_19", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3526, - "fields": { - "parent": "hoarfrost", - "type": "player_level_20", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3527, - "fields": { - "parent": "hobble", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3528, - "fields": { - "parent": "hobble-mount", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3530, - "fields": { - "parent": "hobble-mount", - "type": "slot_level_2", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3531, - "fields": { - "parent": "hobble-mount", - "type": "slot_level_3", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3532, - "fields": { - "parent": "hobble-mount", - "type": "slot_level_4", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3533, - "fields": { - "parent": "hobble-mount", - "type": "slot_level_5", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3534, - "fields": { - "parent": "hobble-mount", - "type": "slot_level_6", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3535, - "fields": { - "parent": "hobble-mount", - "type": "slot_level_7", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3536, - "fields": { - "parent": "hobble-mount", - "type": "slot_level_8", - "damage_roll": "16d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3537, - "fields": { - "parent": "hobble-mount", - "type": "slot_level_9", - "damage_roll": "18d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3538, - "fields": { - "parent": "holy-ground", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3540, - "fields": { - "parent": "holy-ground", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3541, - "fields": { - "parent": "holy-ground", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3542, - "fields": { - "parent": "holy-ground", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3543, - "fields": { - "parent": "holy-ground", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3544, - "fields": { - "parent": "hone-blade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3545, - "fields": { - "parent": "hunger-of-leng", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3546, - "fields": { - "parent": "hunters-endurance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3547, - "fields": { - "parent": "hunting-stand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3548, - "fields": { - "parent": "ice-fortress", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3550, - "fields": { - "parent": "ice-fortress", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3551, - "fields": { - "parent": "ice-fortress", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3552, - "fields": { - "parent": "ice-fortress", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3553, - "fields": { - "parent": "ice-fortress", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3554, - "fields": { - "parent": "ice-hammer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3556, - "fields": { - "parent": "ice-hammer", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3557, - "fields": { - "parent": "ice-hammer", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3558, - "fields": { - "parent": "ice-hammer", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3559, - "fields": { - "parent": "ice-hammer", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3560, - "fields": { - "parent": "ice-hammer", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3561, - "fields": { - "parent": "ice-hammer", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3562, - "fields": { - "parent": "ice-hammer", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3563, - "fields": { - "parent": "ice-soldiers", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3565, - "fields": { - "parent": "ice-soldiers", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3566, - "fields": { - "parent": "ice-soldiers", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3567, - "fields": { - "parent": "icicle-daggers", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3569, - "fields": { - "parent": "icicle-daggers", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3570, - "fields": { - "parent": "icicle-daggers", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3571, - "fields": { - "parent": "icicle-daggers", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3572, - "fields": { - "parent": "icicle-daggers", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3573, - "fields": { - "parent": "icicle-daggers", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3574, - "fields": { - "parent": "icicle-daggers", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3575, - "fields": { - "parent": "icicle-daggers", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3576, - "fields": { - "parent": "icicle-daggers", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3577, - "fields": { - "parent": "icy-grasp-of-the-void", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3578, - "fields": { - "parent": "icy-manipulation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3579, - "fields": { - "parent": "ill-fated-word", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3580, - "fields": { - "parent": "illuminate-spoor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3582, - "fields": { - "parent": "illuminate-spoor", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3583, - "fields": { - "parent": "illuminate-spoor", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3584, - "fields": { - "parent": "illuminate-spoor", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3585, - "fields": { - "parent": "illuminate-spoor", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3586, - "fields": { - "parent": "illuminate-spoor", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3587, - "fields": { - "parent": "illuminate-spoor", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3588, - "fields": { - "parent": "illuminate-spoor", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3589, - "fields": { - "parent": "illuminate-spoor", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3590, - "fields": { - "parent": "impending-ally", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3592, - "fields": { - "parent": "impending-ally", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3593, - "fields": { - "parent": "impending-ally", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3594, - "fields": { - "parent": "impending-ally", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3595, - "fields": { - "parent": "impending-ally", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3596, - "fields": { - "parent": "impending-ally", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3597, - "fields": { - "parent": "impending-ally", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3598, - "fields": { - "parent": "innocuous-aspect", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3599, - "fields": { - "parent": "insightful-maneuver", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3600, - "fields": { - "parent": "inspiring-speech", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3601, - "fields": { - "parent": "instant-fortification", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3602, - "fields": { - "parent": "instant-fortification", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3604, - "fields": { - "parent": "instant-fortification", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3605, - "fields": { - "parent": "instant-fortification", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3606, - "fields": { - "parent": "instant-fortification", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3607, - "fields": { - "parent": "instant-fortification", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3608, - "fields": { - "parent": "instant-siege-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3609, - "fields": { - "parent": "instant-siege-weapon", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3611, - "fields": { - "parent": "instant-siege-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3612, - "fields": { - "parent": "instant-siege-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3613, - "fields": { - "parent": "instant-siege-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3614, - "fields": { - "parent": "instant-siege-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3615, - "fields": { - "parent": "instant-siege-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3616, - "fields": { - "parent": "instant-snare", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3618, - "fields": { - "parent": "instant-snare", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3619, - "fields": { - "parent": "instant-snare", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3620, - "fields": { - "parent": "instant-snare", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3621, - "fields": { - "parent": "instant-snare", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3622, - "fields": { - "parent": "instant-snare", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3623, - "fields": { - "parent": "instant-snare", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3624, - "fields": { - "parent": "instant-snare", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3625, - "fields": { - "parent": "ire-of-the-mountain", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3627, - "fields": { - "parent": "ire-of-the-mountain", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3628, - "fields": { - "parent": "ire-of-the-mountain", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3629, - "fields": { - "parent": "ire-of-the-mountain", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3630, - "fields": { - "parent": "ire-of-the-mountain", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3631, - "fields": { - "parent": "ire-of-the-mountain", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3632, - "fields": { - "parent": "ire-of-the-mountain", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3633, - "fields": { - "parent": "iron-hand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3634, - "fields": { - "parent": "kareefs-entreaty", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3636, - "fields": { - "parent": "kareefs-entreaty", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3637, - "fields": { - "parent": "kareefs-entreaty", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3638, - "fields": { - "parent": "kareefs-entreaty", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3639, - "fields": { - "parent": "kareefs-entreaty", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3640, - "fields": { - "parent": "kareefs-entreaty", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3641, - "fields": { - "parent": "kareefs-entreaty", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3642, - "fields": { - "parent": "kareefs-entreaty", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3643, - "fields": { - "parent": "kareefs-entreaty", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3644, - "fields": { - "parent": "keening-wail", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3646, - "fields": { - "parent": "keening-wail", - "type": "slot_level_5", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3647, - "fields": { - "parent": "keening-wail", - "type": "slot_level_6", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3648, - "fields": { - "parent": "keening-wail", - "type": "slot_level_7", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3649, - "fields": { - "parent": "keening-wail", - "type": "slot_level_8", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3650, - "fields": { - "parent": "keening-wail", - "type": "slot_level_9", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3651, - "fields": { - "parent": "killing-fields", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3652, - "fields": { - "parent": "kiss-of-the-succubus", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3654, - "fields": { - "parent": "kiss-of-the-succubus", - "type": "slot_level_6", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3655, - "fields": { - "parent": "kiss-of-the-succubus", - "type": "slot_level_7", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3656, - "fields": { - "parent": "kiss-of-the-succubus", - "type": "slot_level_8", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3657, - "fields": { - "parent": "kiss-of-the-succubus", - "type": "slot_level_9", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3658, - "fields": { - "parent": "kobolds-fury", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3659, - "fields": { - "parent": "labyrinth-mastery", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3660, - "fields": { - "parent": "labyrinthine-howl", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3662, - "fields": { - "parent": "labyrinthine-howl", - "type": "slot_level_6", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3663, - "fields": { - "parent": "labyrinthine-howl", - "type": "slot_level_7", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3664, - "fields": { - "parent": "labyrinthine-howl", - "type": "slot_level_8", - "damage_roll": "13d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3665, - "fields": { - "parent": "labyrinthine-howl", - "type": "slot_level_9", - "damage_roll": "15d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3666, - "fields": { - "parent": "lacerate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3668, - "fields": { - "parent": "lacerate", - "type": "slot_level_3", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3669, - "fields": { - "parent": "lacerate", - "type": "slot_level_4", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3670, - "fields": { - "parent": "lacerate", - "type": "slot_level_5", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3671, - "fields": { - "parent": "lacerate", - "type": "slot_level_6", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3672, - "fields": { - "parent": "lacerate", - "type": "slot_level_7", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3673, - "fields": { - "parent": "lacerate", - "type": "slot_level_8", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3674, - "fields": { - "parent": "lacerate", - "type": "slot_level_9", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3675, - "fields": { - "parent": "lair-sense", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3676, - "fields": { - "parent": "lair-sense", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3678, - "fields": { - "parent": "lair-sense", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "36 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3679, - "fields": { - "parent": "lair-sense", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3680, - "fields": { - "parent": "lair-sense", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "60 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3681, - "fields": { - "parent": "lair-sense", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3682, - "fields": { - "parent": "lair-sense", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "84 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3683, - "fields": { - "parent": "lair-sense", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "96 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3684, - "fields": { - "parent": "lair-sense", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "108 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3685, - "fields": { - "parent": "last-rays-of-the-dying-sun", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3687, - "fields": { - "parent": "last-rays-of-the-dying-sun", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3688, - "fields": { - "parent": "last-rays-of-the-dying-sun", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3689, - "fields": { - "parent": "lava-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3690, - "fields": { - "parent": "lay-to-rest", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3691, - "fields": { - "parent": "legend-killer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3692, - "fields": { - "parent": "legion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3693, - "fields": { - "parent": "legion-of-rabid-squirrels", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3695, - "fields": { - "parent": "legion-of-rabid-squirrels", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3696, - "fields": { - "parent": "legion-of-rabid-squirrels", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3697, - "fields": { - "parent": "legion-of-rabid-squirrels", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3698, - "fields": { - "parent": "legion-of-rabid-squirrels", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3699, - "fields": { - "parent": "legion-of-rabid-squirrels", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3700, - "fields": { - "parent": "legion-of-rabid-squirrels", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3701, - "fields": { - "parent": "lesser-maze", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3702, - "fields": { - "parent": "life-drain", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3704, - "fields": { - "parent": "life-drain", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3705, - "fields": { - "parent": "life-drain", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3706, - "fields": { - "parent": "life-drain", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3707, - "fields": { - "parent": "life-from-death", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3709, - "fields": { - "parent": "life-from-death", - "type": "slot_level_4", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3710, - "fields": { - "parent": "life-from-death", - "type": "slot_level_5", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3711, - "fields": { - "parent": "life-from-death", - "type": "slot_level_6", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3712, - "fields": { - "parent": "life-from-death", - "type": "slot_level_7", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3713, - "fields": { - "parent": "life-from-death", - "type": "slot_level_8", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3714, - "fields": { - "parent": "life-from-death", - "type": "slot_level_9", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3715, - "fields": { - "parent": "life-hack", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3716, - "fields": { - "parent": "life-sense", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3717, - "fields": { - "parent": "life-transference-arrow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3719, - "fields": { - "parent": "life-transference-arrow", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3720, - "fields": { - "parent": "life-transference-arrow", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3721, - "fields": { - "parent": "life-transference-arrow", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3722, - "fields": { - "parent": "life-transference-arrow", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3723, - "fields": { - "parent": "life-transference-arrow", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3724, - "fields": { - "parent": "life-transference-arrow", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3725, - "fields": { - "parent": "life-transference-arrow", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3726, - "fields": { - "parent": "life-transference-arrow", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3727, - "fields": { - "parent": "litany-of-sure-hands", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3728, - "fields": { - "parent": "living-shadows", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3729, - "fields": { - "parent": "lock-armor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3731, - "fields": { - "parent": "lock-armor", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3732, - "fields": { - "parent": "lock-armor", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3733, - "fields": { - "parent": "lock-armor", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3734, - "fields": { - "parent": "lock-armor", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3735, - "fields": { - "parent": "lock-armor", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3736, - "fields": { - "parent": "lock-armor", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3737, - "fields": { - "parent": "lock-armor", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3738, - "fields": { - "parent": "looping-trail", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3739, - "fields": { - "parent": "lovesick", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3741, - "fields": { - "parent": "lovesick", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3742, - "fields": { - "parent": "lovesick", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3743, - "fields": { - "parent": "lovesick", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3744, - "fields": { - "parent": "lovesick", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3745, - "fields": { - "parent": "lovesick", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3746, - "fields": { - "parent": "maddening-whispers", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3747, - "fields": { - "parent": "maim", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3748, - "fields": { - "parent": "malevolent-waves", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3749, - "fields": { - "parent": "mammons-due", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3750, - "fields": { - "parent": "mammons-due", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3751, - "fields": { - "parent": "mark-prey", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3753, - "fields": { - "parent": "mark-prey", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3754, - "fields": { - "parent": "mark-prey", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3755, - "fields": { - "parent": "mark-prey", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3756, - "fields": { - "parent": "mark-prey", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3757, - "fields": { - "parent": "mark-prey", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3758, - "fields": { - "parent": "mark-prey", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3759, - "fields": { - "parent": "mark-prey", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3760, - "fields": { - "parent": "mass-hobble-mount", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3762, - "fields": { - "parent": "mass-hobble-mount", - "type": "slot_level_4", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3763, - "fields": { - "parent": "mass-hobble-mount", - "type": "slot_level_5", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3764, - "fields": { - "parent": "mass-hobble-mount", - "type": "slot_level_6", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3765, - "fields": { - "parent": "mass-hobble-mount", - "type": "slot_level_7", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3766, - "fields": { - "parent": "mass-hobble-mount", - "type": "slot_level_8", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3767, - "fields": { - "parent": "mass-hobble-mount", - "type": "slot_level_9", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3768, - "fields": { - "parent": "mass-surge-dampener", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3769, - "fields": { - "parent": "mass-surge-dampener", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3770, - "fields": { - "parent": "maw-of-needles", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3772, - "fields": { - "parent": "maw-of-needles", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3773, - "fields": { - "parent": "maw-of-needles", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3774, - "fields": { - "parent": "maw-of-needles", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3775, - "fields": { - "parent": "maw-of-needles", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3776, - "fields": { - "parent": "maw-of-needles", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3777, - "fields": { - "parent": "maw-of-needles", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3778, - "fields": { - "parent": "maw-of-needles", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3779, - "fields": { - "parent": "maw-of-needles", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3780, - "fields": { - "parent": "memento-mori", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3781, - "fields": { - "parent": "mephitic-croak", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3783, - "fields": { - "parent": "mephitic-croak", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3784, - "fields": { - "parent": "mephitic-croak", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3785, - "fields": { - "parent": "mephitic-croak", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3786, - "fields": { - "parent": "mephitic-croak", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3787, - "fields": { - "parent": "mephitic-croak", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3788, - "fields": { - "parent": "mephitic-croak", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3789, - "fields": { - "parent": "mephitic-croak", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3790, - "fields": { - "parent": "mind-exchange", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3791, - "fields": { - "parent": "mind-exchange", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3792, - "fields": { - "parent": "mire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3793, - "fields": { - "parent": "misstep", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3794, - "fields": { - "parent": "mist-of-wonders", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3796, - "fields": { - "parent": "mist-of-wonders", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3797, - "fields": { - "parent": "mist-of-wonders", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3798, - "fields": { - "parent": "mist-of-wonders", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3799, - "fields": { - "parent": "mist-of-wonders", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3800, - "fields": { - "parent": "mist-of-wonders", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3801, - "fields": { - "parent": "mist-of-wonders", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3802, - "fields": { - "parent": "mist-of-wonders", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3803, - "fields": { - "parent": "monstrous-empathy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3805, - "fields": { - "parent": "monstrous-empathy", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3806, - "fields": { - "parent": "monstrous-empathy", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3807, - "fields": { - "parent": "monstrous-empathy", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3808, - "fields": { - "parent": "monstrous-empathy", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3809, - "fields": { - "parent": "monstrous-empathy", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3810, - "fields": { - "parent": "monstrous-empathy", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3811, - "fields": { - "parent": "moon-trap", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3812, - "fields": { - "parent": "mosquito-bane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3814, - "fields": { - "parent": "mosquito-bane", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3815, - "fields": { - "parent": "mosquito-bane", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3816, - "fields": { - "parent": "mosquito-bane", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3817, - "fields": { - "parent": "mosquito-bane", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3818, - "fields": { - "parent": "mosquito-bane", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3819, - "fields": { - "parent": "mosquito-bane", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3820, - "fields": { - "parent": "mosquito-bane", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3821, - "fields": { - "parent": "mosquito-bane", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3822, - "fields": { - "parent": "mud-pack", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3823, - "fields": { - "parent": "mud-pack", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3825, - "fields": { - "parent": "mud-pack", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3826, - "fields": { - "parent": "mud-pack", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3827, - "fields": { - "parent": "mud-pack", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3828, - "fields": { - "parent": "mud-pack", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3829, - "fields": { - "parent": "mud-pack", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3830, - "fields": { - "parent": "mud-pack", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3831, - "fields": { - "parent": "mud-pack", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3832, - "fields": { - "parent": "mud-pack", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3833, - "fields": { - "parent": "negative-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3834, - "fields": { - "parent": "nether-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3836, - "fields": { - "parent": "nether-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3837, - "fields": { - "parent": "nether-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3838, - "fields": { - "parent": "nether-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3839, - "fields": { - "parent": "nether-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3840, - "fields": { - "parent": "nether-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3841, - "fields": { - "parent": "night-terrors", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3842, - "fields": { - "parent": "nightfall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3843, - "fields": { - "parent": "nightfall", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3844, - "fields": { - "parent": "nip-at-the-heels", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3846, - "fields": { - "parent": "nip-at-the-heels", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3847, - "fields": { - "parent": "nip-at-the-heels", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3848, - "fields": { - "parent": "nip-at-the-heels", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3849, - "fields": { - "parent": "nip-at-the-heels", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3850, - "fields": { - "parent": "nip-at-the-heels", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3851, - "fields": { - "parent": "nip-at-the-heels", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3852, - "fields": { - "parent": "nip-at-the-heels", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3853, - "fields": { - "parent": "not-dead-yet", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3854, - "fields": { - "parent": "not-dead-yet", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3855, - "fields": { - "parent": "not-this-day", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3856, - "fields": { - "parent": "orb-of-light", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3858, - "fields": { - "parent": "orb-of-light", - "type": "slot_level_3", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3859, - "fields": { - "parent": "orb-of-light", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3860, - "fields": { - "parent": "orb-of-light", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3861, - "fields": { - "parent": "orb-of-light", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3862, - "fields": { - "parent": "orb-of-light", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3863, - "fields": { - "parent": "orb-of-light", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3864, - "fields": { - "parent": "orb-of-light", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3865, - "fields": { - "parent": "outflanking-boon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3867, - "fields": { - "parent": "outflanking-boon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3868, - "fields": { - "parent": "outflanking-boon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3869, - "fields": { - "parent": "outflanking-boon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3870, - "fields": { - "parent": "outflanking-boon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3871, - "fields": { - "parent": "outflanking-boon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3872, - "fields": { - "parent": "outflanking-boon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3873, - "fields": { - "parent": "paragon-of-chaos", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3874, - "fields": { - "parent": "pendulum", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3875, - "fields": { - "parent": "phantom-dragon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3877, - "fields": { - "parent": "phantom-dragon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3878, - "fields": { - "parent": "phantom-dragon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3879, - "fields": { - "parent": "phantom-dragon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3880, - "fields": { - "parent": "phantom-dragon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3881, - "fields": { - "parent": "phantom-dragon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3882, - "fields": { - "parent": "phantom-dragon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3883, - "fields": { - "parent": "pitfall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3884, - "fields": { - "parent": "poisoned-volley", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3886, - "fields": { - "parent": "poisoned-volley", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3887, - "fields": { - "parent": "poisoned-volley", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3888, - "fields": { - "parent": "poisoned-volley", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3889, - "fields": { - "parent": "poisoned-volley", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3890, - "fields": { - "parent": "poisoned-volley", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3891, - "fields": { - "parent": "poisoned-volley", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3892, - "fields": { - "parent": "poisoned-volley", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3893, - "fields": { - "parent": "potency-of-the-pack", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3895, - "fields": { - "parent": "potency-of-the-pack", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3896, - "fields": { - "parent": "potency-of-the-pack", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3897, - "fields": { - "parent": "potency-of-the-pack", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3898, - "fields": { - "parent": "potency-of-the-pack", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3899, - "fields": { - "parent": "potency-of-the-pack", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3900, - "fields": { - "parent": "potency-of-the-pack", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3901, - "fields": { - "parent": "power-word-kneel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3902, - "fields": { - "parent": "power-word-pain", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3903, - "fields": { - "parent": "primal-infusion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3904, - "fields": { - "parent": "prismatic-ray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3905, - "fields": { - "parent": "protection-from-the-void", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3906, - "fields": { - "parent": "protective-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3908, - "fields": { - "parent": "protective-ice", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3909, - "fields": { - "parent": "protective-ice", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3910, - "fields": { - "parent": "protective-ice", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3911, - "fields": { - "parent": "protective-ice", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3912, - "fields": { - "parent": "protective-ice", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3913, - "fields": { - "parent": "protective-ice", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3914, - "fields": { - "parent": "puff-of-smoke", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3915, - "fields": { - "parent": "pummelstone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3916, - "fields": { - "parent": "pummelstone", - "type": "player_level_1", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3917, - "fields": { - "parent": "pummelstone", - "type": "player_level_2", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3918, - "fields": { - "parent": "pummelstone", - "type": "player_level_3", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3919, - "fields": { - "parent": "pummelstone", - "type": "player_level_4", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3920, - "fields": { - "parent": "pummelstone", - "type": "player_level_5", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3921, - "fields": { - "parent": "pummelstone", - "type": "player_level_6", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3922, - "fields": { - "parent": "pummelstone", - "type": "player_level_7", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3923, - "fields": { - "parent": "pummelstone", - "type": "player_level_8", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3924, - "fields": { - "parent": "pummelstone", - "type": "player_level_9", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3925, - "fields": { - "parent": "pummelstone", - "type": "player_level_10", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3926, - "fields": { - "parent": "pummelstone", - "type": "player_level_11", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3927, - "fields": { - "parent": "pummelstone", - "type": "player_level_12", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3928, - "fields": { - "parent": "pummelstone", - "type": "player_level_13", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3929, - "fields": { - "parent": "pummelstone", - "type": "player_level_14", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3930, - "fields": { - "parent": "pummelstone", - "type": "player_level_15", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3931, - "fields": { - "parent": "pummelstone", - "type": "player_level_16", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3932, - "fields": { - "parent": "pummelstone", - "type": "player_level_17", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3933, - "fields": { - "parent": "pummelstone", - "type": "player_level_18", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3934, - "fields": { - "parent": "pummelstone", - "type": "player_level_19", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3935, - "fields": { - "parent": "pummelstone", - "type": "player_level_20", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3936, - "fields": { - "parent": "pyroclasm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3937, - "fields": { - "parent": "quick-time", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3939, - "fields": { - "parent": "quick-time", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3940, - "fields": { - "parent": "quick-time", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3941, - "fields": { - "parent": "quick-time", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3942, - "fields": { - "parent": "quick-time", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3943, - "fields": { - "parent": "quick-time", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3944, - "fields": { - "parent": "quicken", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3945, - "fields": { - "parent": "quicksilver-mantle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3946, - "fields": { - "parent": "quintessence", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3947, - "fields": { - "parent": "raid-the-lair", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3948, - "fields": { - "parent": "rain-of-blades", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3950, - "fields": { - "parent": "rain-of-blades", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3951, - "fields": { - "parent": "rain-of-blades", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3952, - "fields": { - "parent": "rain-of-blades", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3953, - "fields": { - "parent": "rain-of-blades", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3954, - "fields": { - "parent": "ray-of-alchemical-negation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3955, - "fields": { - "parent": "ray-of-life-suppression", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3956, - "fields": { - "parent": "reaver-spirit", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3958, - "fields": { - "parent": "reaver-spirit", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3959, - "fields": { - "parent": "reaver-spirit", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3960, - "fields": { - "parent": "reaver-spirit", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3961, - "fields": { - "parent": "reaver-spirit", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3962, - "fields": { - "parent": "reaver-spirit", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3963, - "fields": { - "parent": "reaver-spirit", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3964, - "fields": { - "parent": "reposition", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3966, - "fields": { - "parent": "reposition", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3967, - "fields": { - "parent": "reposition", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3968, - "fields": { - "parent": "reposition", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3969, - "fields": { - "parent": "reposition", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3970, - "fields": { - "parent": "reposition", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3971, - "fields": { - "parent": "reset", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3973, - "fields": { - "parent": "reset", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3974, - "fields": { - "parent": "reset", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3975, - "fields": { - "parent": "reset", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3976, - "fields": { - "parent": "reset", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3977, - "fields": { - "parent": "reset", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3978, - "fields": { - "parent": "reverberate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3980, - "fields": { - "parent": "reverberate", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3981, - "fields": { - "parent": "reverberate", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3982, - "fields": { - "parent": "reverberate", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3983, - "fields": { - "parent": "reverberate", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3984, - "fields": { - "parent": "reverberate", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3985, - "fields": { - "parent": "reverberate", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3986, - "fields": { - "parent": "reverberate", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3987, - "fields": { - "parent": "revive-beast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3988, - "fields": { - "parent": "right-the-stars", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3989, - "fields": { - "parent": "ring-strike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3991, - "fields": { - "parent": "ring-strike", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3992, - "fields": { - "parent": "ring-strike", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3993, - "fields": { - "parent": "ring-strike", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3994, - "fields": { - "parent": "ring-strike", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3995, - "fields": { - "parent": "ring-strike", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3996, - "fields": { - "parent": "ring-strike", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3997, - "fields": { - "parent": "ring-strike", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3998, - "fields": { - "parent": "ring-strike", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3999, - "fields": { - "parent": "ring-ward", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4000, - "fields": { - "parent": "riptide", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4001, - "fields": { - "parent": "rolling-thunder", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4003, - "fields": { - "parent": "rolling-thunder", - "type": "slot_level_3", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4004, - "fields": { - "parent": "rolling-thunder", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4005, - "fields": { - "parent": "rolling-thunder", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4006, - "fields": { - "parent": "rolling-thunder", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4007, - "fields": { - "parent": "rolling-thunder", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4008, - "fields": { - "parent": "rolling-thunder", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4009, - "fields": { - "parent": "rolling-thunder", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4010, - "fields": { - "parent": "rotting-corpse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4012, - "fields": { - "parent": "rotting-corpse", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4013, - "fields": { - "parent": "rotting-corpse", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4014, - "fields": { - "parent": "rotting-corpse", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4015, - "fields": { - "parent": "rotting-corpse", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4016, - "fields": { - "parent": "rotting-corpse", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4017, - "fields": { - "parent": "rotting-corpse", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4018, - "fields": { - "parent": "rotting-corpse", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4019, - "fields": { - "parent": "rune-of-imprisonment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4020, - "fields": { - "parent": "salt-lash", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4021, - "fields": { - "parent": "sand-ship", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4022, - "fields": { - "parent": "sand-ship", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4023, - "fields": { - "parent": "sanguine-horror", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4024, - "fields": { - "parent": "scale-rot", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4026, - "fields": { - "parent": "scale-rot", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4027, - "fields": { - "parent": "scale-rot", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4028, - "fields": { - "parent": "scale-rot", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4029, - "fields": { - "parent": "scale-rot", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4030, - "fields": { - "parent": "scale-rot", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4031, - "fields": { - "parent": "scentless", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4032, - "fields": { - "parent": "screaming-ray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4034, - "fields": { - "parent": "screaming-ray", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4035, - "fields": { - "parent": "screaming-ray", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4036, - "fields": { - "parent": "screaming-ray", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4037, - "fields": { - "parent": "screaming-ray", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4038, - "fields": { - "parent": "screaming-ray", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4039, - "fields": { - "parent": "screaming-ray", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4040, - "fields": { - "parent": "screaming-ray", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4041, - "fields": { - "parent": "screaming-ray", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4042, - "fields": { - "parent": "scribe", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4043, - "fields": { - "parent": "scry-ambush", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4044, - "fields": { - "parent": "sculpt-snow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4046, - "fields": { - "parent": "sculpt-snow", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4047, - "fields": { - "parent": "sculpt-snow", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4048, - "fields": { - "parent": "sculpt-snow", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4049, - "fields": { - "parent": "sculpt-snow", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4050, - "fields": { - "parent": "sculpt-snow", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4051, - "fields": { - "parent": "sculpt-snow", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4052, - "fields": { - "parent": "sculpt-snow", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4053, - "fields": { - "parent": "seal-of-sanctuary", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4054, - "fields": { - "parent": "seal-of-sanctuary", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4055, - "fields": { - "parent": "searing-sun", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4056, - "fields": { - "parent": "see-beyond", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4057, - "fields": { - "parent": "seed-of-destruction", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4058, - "fields": { - "parent": "seed-of-destruction", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4059, - "fields": { - "parent": "seeping-death", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4060, - "fields": { - "parent": "seers-reaction", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4061, - "fields": { - "parent": "semblance-of-dread", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4062, - "fields": { - "parent": "shade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4064, - "fields": { - "parent": "shade", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "20 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4065, - "fields": { - "parent": "shade", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4066, - "fields": { - "parent": "shade", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "40 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4067, - "fields": { - "parent": "shade", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "50 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4068, - "fields": { - "parent": "shade", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "60 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4069, - "fields": { - "parent": "shade", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "70 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4070, - "fields": { - "parent": "shade", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "80 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4071, - "fields": { - "parent": "shadow-armor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4072, - "fields": { - "parent": "shadow-bite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4073, - "fields": { - "parent": "shadow-bite", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4074, - "fields": { - "parent": "shadow-bite", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4075, - "fields": { - "parent": "shadow-bite", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4076, - "fields": { - "parent": "shadow-bite", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4077, - "fields": { - "parent": "shadow-bite", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4078, - "fields": { - "parent": "shadow-bite", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4079, - "fields": { - "parent": "shadow-bite", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4080, - "fields": { - "parent": "shadow-bite", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4081, - "fields": { - "parent": "shadow-bite", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4082, - "fields": { - "parent": "shadow-bite", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4083, - "fields": { - "parent": "shadow-bite", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4084, - "fields": { - "parent": "shadow-bite", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4085, - "fields": { - "parent": "shadow-bite", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4086, - "fields": { - "parent": "shadow-bite", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4087, - "fields": { - "parent": "shadow-bite", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4088, - "fields": { - "parent": "shadow-bite", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4089, - "fields": { - "parent": "shadow-bite", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4090, - "fields": { - "parent": "shadow-bite", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4091, - "fields": { - "parent": "shadow-bite", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4092, - "fields": { - "parent": "shadow-bite", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4093, - "fields": { - "parent": "shadow-blindness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4094, - "fields": { - "parent": "shadow-hands", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4096, - "fields": { - "parent": "shadow-hands", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4097, - "fields": { - "parent": "shadow-hands", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4098, - "fields": { - "parent": "shadow-hands", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4099, - "fields": { - "parent": "shadow-hands", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4100, - "fields": { - "parent": "shadow-hands", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4101, - "fields": { - "parent": "shadow-hands", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4102, - "fields": { - "parent": "shadow-hands", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4103, - "fields": { - "parent": "shadow-hands", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4104, - "fields": { - "parent": "shadow-monsters", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4106, - "fields": { - "parent": "shadow-monsters", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4107, - "fields": { - "parent": "shadow-monsters", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4108, - "fields": { - "parent": "shadow-monsters", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4109, - "fields": { - "parent": "shadow-monsters", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4110, - "fields": { - "parent": "shadow-monsters", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4111, - "fields": { - "parent": "shadow-puppets", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4113, - "fields": { - "parent": "shadow-puppets", - "type": "slot_level_3", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4114, - "fields": { - "parent": "shadow-puppets", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4115, - "fields": { - "parent": "shadow-puppets", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4116, - "fields": { - "parent": "shadow-puppets", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4117, - "fields": { - "parent": "shadow-puppets", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4118, - "fields": { - "parent": "shadow-puppets", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4119, - "fields": { - "parent": "shadow-puppets", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4120, - "fields": { - "parent": "shadow-trove", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4121, - "fields": { - "parent": "shadow-trove", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4123, - "fields": { - "parent": "shadow-trove", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4124, - "fields": { - "parent": "shadow-trove", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4125, - "fields": { - "parent": "shadow-trove", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4126, - "fields": { - "parent": "shadow-trove", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "9 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4127, - "fields": { - "parent": "shadow-trove", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "11 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4128, - "fields": { - "parent": "shadow-trove", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "13 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4129, - "fields": { - "parent": "shadows-brought-to-light", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4130, - "fields": { - "parent": "shadows-brought-to-light", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4131, - "fields": { - "parent": "shadowy-retribution", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4132, - "fields": { - "parent": "shadowy-retribution", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4134, - "fields": { - "parent": "shadowy-retribution", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4135, - "fields": { - "parent": "shadowy-retribution", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4136, - "fields": { - "parent": "shadowy-retribution", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4137, - "fields": { - "parent": "shadowy-retribution", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4138, - "fields": { - "parent": "shadowy-retribution", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4139, - "fields": { - "parent": "shared-sacrifice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4140, - "fields": { - "parent": "sheen-of-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4141, - "fields": { - "parent": "shifting-the-odds", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4142, - "fields": { - "parent": "shiver", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4143, - "fields": { - "parent": "shiver", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4144, - "fields": { - "parent": "shiver", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4145, - "fields": { - "parent": "shiver", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4146, - "fields": { - "parent": "shiver", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4147, - "fields": { - "parent": "shiver", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4148, - "fields": { - "parent": "shiver", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4149, - "fields": { - "parent": "shiver", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4150, - "fields": { - "parent": "shiver", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4151, - "fields": { - "parent": "shiver", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4152, - "fields": { - "parent": "shiver", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4153, - "fields": { - "parent": "shiver", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4154, - "fields": { - "parent": "shiver", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4155, - "fields": { - "parent": "shiver", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4156, - "fields": { - "parent": "shiver", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4157, - "fields": { - "parent": "shiver", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4158, - "fields": { - "parent": "shiver", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4159, - "fields": { - "parent": "shiver", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4160, - "fields": { - "parent": "shiver", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4161, - "fields": { - "parent": "shiver", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4162, - "fields": { - "parent": "shiver", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4163, - "fields": { - "parent": "shroud-of-death", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4164, - "fields": { - "parent": "sidestep-arrow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4165, - "fields": { - "parent": "sign-of-koth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4167, - "fields": { - "parent": "sign-of-koth", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4168, - "fields": { - "parent": "sign-of-koth", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4169, - "fields": { - "parent": "silhouette", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4170, - "fields": { - "parent": "sir-mittinzs-move-curse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4171, - "fields": { - "parent": "sir-mittinzs-move-curse", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4172, - "fields": { - "parent": "sleep-of-the-deep", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4173, - "fields": { - "parent": "sleep-of-the-deep", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4175, - "fields": { - "parent": "sleep-of-the-deep", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4176, - "fields": { - "parent": "sleep-of-the-deep", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4177, - "fields": { - "parent": "sleep-of-the-deep", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4178, - "fields": { - "parent": "sleep-of-the-deep", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4179, - "fields": { - "parent": "sleep-of-the-deep", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4180, - "fields": { - "parent": "sleep-of-the-deep", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4181, - "fields": { - "parent": "slippery-fingers", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4182, - "fields": { - "parent": "slither", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4184, - "fields": { - "parent": "slither", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4185, - "fields": { - "parent": "slither", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4186, - "fields": { - "parent": "slither", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4187, - "fields": { - "parent": "slither", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4188, - "fields": { - "parent": "slither", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4189, - "fields": { - "parent": "slither", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4190, - "fields": { - "parent": "slither", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4191, - "fields": { - "parent": "snow-boulder", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4192, - "fields": { - "parent": "snow-fort", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4193, - "fields": { - "parent": "snowy-coat", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4195, - "fields": { - "parent": "snowy-coat", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4196, - "fields": { - "parent": "snowy-coat", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4197, - "fields": { - "parent": "snowy-coat", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4198, - "fields": { - "parent": "snowy-coat", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4199, - "fields": { - "parent": "snowy-coat", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4200, - "fields": { - "parent": "snowy-coat", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4201, - "fields": { - "parent": "snowy-coat", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4202, - "fields": { - "parent": "snowy-coat", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4203, - "fields": { - "parent": "song-of-the-forest", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4204, - "fields": { - "parent": "song-of-the-forest", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4205, - "fields": { - "parent": "speak-with-inanimate-object", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4206, - "fields": { - "parent": "speak-with-inanimate-object", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4207, - "fields": { - "parent": "spin", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4208, - "fields": { - "parent": "spinning-axes", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4210, - "fields": { - "parent": "spinning-axes", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4211, - "fields": { - "parent": "spinning-axes", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4212, - "fields": { - "parent": "spinning-axes", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4213, - "fields": { - "parent": "spinning-axes", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4214, - "fields": { - "parent": "spinning-axes", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4215, - "fields": { - "parent": "spiteful-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4217, - "fields": { - "parent": "spiteful-weapon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4218, - "fields": { - "parent": "spiteful-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4219, - "fields": { - "parent": "spiteful-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4220, - "fields": { - "parent": "spiteful-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4221, - "fields": { - "parent": "spiteful-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4222, - "fields": { - "parent": "spiteful-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4223, - "fields": { - "parent": "spur-mount", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4224, - "fields": { - "parent": "staff-of-violet-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4226, - "fields": { - "parent": "staff-of-violet-fire", - "type": "slot_level_5", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4227, - "fields": { - "parent": "staff-of-violet-fire", - "type": "slot_level_6", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4228, - "fields": { - "parent": "staff-of-violet-fire", - "type": "slot_level_7", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4229, - "fields": { - "parent": "staff-of-violet-fire", - "type": "slot_level_8", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4230, - "fields": { - "parent": "staff-of-violet-fire", - "type": "slot_level_9", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4231, - "fields": { - "parent": "stanch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4232, - "fields": { - "parent": "starburst", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4233, - "fields": { - "parent": "starburst", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4234, - "fields": { - "parent": "starburst", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4235, - "fields": { - "parent": "starburst", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4236, - "fields": { - "parent": "starburst", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4237, - "fields": { - "parent": "starburst", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4238, - "fields": { - "parent": "starburst", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4239, - "fields": { - "parent": "starburst", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4240, - "fields": { - "parent": "starburst", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4241, - "fields": { - "parent": "starburst", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4242, - "fields": { - "parent": "starburst", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4243, - "fields": { - "parent": "starburst", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4244, - "fields": { - "parent": "starburst", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4245, - "fields": { - "parent": "starburst", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4246, - "fields": { - "parent": "starburst", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4247, - "fields": { - "parent": "starburst", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4248, - "fields": { - "parent": "starburst", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4249, - "fields": { - "parent": "starburst", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4250, - "fields": { - "parent": "starburst", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4251, - "fields": { - "parent": "starburst", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4252, - "fields": { - "parent": "starburst", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4253, - "fields": { - "parent": "starfall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4255, - "fields": { - "parent": "starfall", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4256, - "fields": { - "parent": "starfall", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4257, - "fields": { - "parent": "starfall", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4258, - "fields": { - "parent": "starfall", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4259, - "fields": { - "parent": "starry-vision", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4261, - "fields": { - "parent": "starry-vision", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4262, - "fields": { - "parent": "starry-vision", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4263, - "fields": { - "parent": "stars-heart", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4264, - "fields": { - "parent": "steal-warmth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4266, - "fields": { - "parent": "steal-warmth", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4267, - "fields": { - "parent": "steal-warmth", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4268, - "fields": { - "parent": "steal-warmth", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4269, - "fields": { - "parent": "steal-warmth", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4270, - "fields": { - "parent": "steal-warmth", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4271, - "fields": { - "parent": "steal-warmth", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4272, - "fields": { - "parent": "steam-blast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4274, - "fields": { - "parent": "steam-blast", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4275, - "fields": { - "parent": "steam-blast", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4276, - "fields": { - "parent": "steam-blast", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4277, - "fields": { - "parent": "steam-blast", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4278, - "fields": { - "parent": "steam-blast", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4279, - "fields": { - "parent": "steam-whistle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4280, - "fields": { - "parent": "stench-of-rot", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4282, - "fields": { - "parent": "stench-of-rot", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4283, - "fields": { - "parent": "stench-of-rot", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4284, - "fields": { - "parent": "stench-of-rot", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4285, - "fields": { - "parent": "stench-of-rot", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4286, - "fields": { - "parent": "stench-of-rot", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4287, - "fields": { - "parent": "stench-of-rot", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4288, - "fields": { - "parent": "stench-of-rot", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4289, - "fields": { - "parent": "storm-of-wings", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4290, - "fields": { - "parent": "sudden-dawn", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4291, - "fields": { - "parent": "sudden-dawn", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4292, - "fields": { - "parent": "summon-eldritch-servitor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4293, - "fields": { - "parent": "summon-eldritch-servitor", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4295, - "fields": { - "parent": "summon-eldritch-servitor", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4296, - "fields": { - "parent": "summon-eldritch-servitor", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4297, - "fields": { - "parent": "summon-eldritch-servitor", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4298, - "fields": { - "parent": "summon-eldritch-servitor", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4299, - "fields": { - "parent": "summon-star", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4300, - "fields": { - "parent": "surge-dampener", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4301, - "fields": { - "parent": "surge-dampener", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4302, - "fields": { - "parent": "surprise-blessing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4303, - "fields": { - "parent": "symbol-of-sorcery", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4304, - "fields": { - "parent": "talons-of-a-hungry-land", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4306, - "fields": { - "parent": "talons-of-a-hungry-land", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4307, - "fields": { - "parent": "talons-of-a-hungry-land", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4308, - "fields": { - "parent": "targeting-foreknowledge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4309, - "fields": { - "parent": "thin-the-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4310, - "fields": { - "parent": "thousand-darts", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4312, - "fields": { - "parent": "thousand-darts", - "type": "slot_level_4", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4313, - "fields": { - "parent": "thousand-darts", - "type": "slot_level_5", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4314, - "fields": { - "parent": "thousand-darts", - "type": "slot_level_6", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4315, - "fields": { - "parent": "thousand-darts", - "type": "slot_level_7", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4316, - "fields": { - "parent": "thousand-darts", - "type": "slot_level_8", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4317, - "fields": { - "parent": "thousand-darts", - "type": "slot_level_9", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4318, - "fields": { - "parent": "throes-of-ecstasy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4320, - "fields": { - "parent": "throes-of-ecstasy", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4321, - "fields": { - "parent": "throes-of-ecstasy", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4322, - "fields": { - "parent": "throes-of-ecstasy", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4323, - "fields": { - "parent": "throes-of-ecstasy", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4324, - "fields": { - "parent": "throes-of-ecstasy", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4325, - "fields": { - "parent": "throes-of-ecstasy", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4326, - "fields": { - "parent": "thunder-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4327, - "fields": { - "parent": "thunderclap", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4328, - "fields": { - "parent": "thunderous-charge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4330, - "fields": { - "parent": "thunderous-charge", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4331, - "fields": { - "parent": "thunderous-charge", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4332, - "fields": { - "parent": "thunderous-charge", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4333, - "fields": { - "parent": "thunderous-charge", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4334, - "fields": { - "parent": "thunderous-charge", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4335, - "fields": { - "parent": "thunderous-charge", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4336, - "fields": { - "parent": "thunderous-charge", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4337, - "fields": { - "parent": "thunderous-charge", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4338, - "fields": { - "parent": "thunderous-stampede", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4340, - "fields": { - "parent": "thunderous-stampede", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4341, - "fields": { - "parent": "thunderous-stampede", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4342, - "fields": { - "parent": "thunderous-stampede", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4343, - "fields": { - "parent": "thunderous-stampede", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4344, - "fields": { - "parent": "thunderous-stampede", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4345, - "fields": { - "parent": "thunderous-stampede", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4346, - "fields": { - "parent": "thunderous-stampede", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4347, - "fields": { - "parent": "thunderous-wave", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4348, - "fields": { - "parent": "thunderstorm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4349, - "fields": { - "parent": "tidal-barrier", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4350, - "fields": { - "parent": "time-in-a-bottle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4351, - "fields": { - "parent": "time-jump", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4352, - "fields": { - "parent": "time-loop", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4353, - "fields": { - "parent": "time-slippage", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4354, - "fields": { - "parent": "time-step", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4355, - "fields": { - "parent": "time-vortex", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4357, - "fields": { - "parent": "time-vortex", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4358, - "fields": { - "parent": "time-vortex", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4359, - "fields": { - "parent": "time-vortex", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4360, - "fields": { - "parent": "time-vortex", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4361, - "fields": { - "parent": "time-vortex", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4362, - "fields": { - "parent": "timely-distraction", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4363, - "fields": { - "parent": "tireless", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4364, - "fields": { - "parent": "tongue-of-sand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4365, - "fields": { - "parent": "tongue-of-sand", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4366, - "fields": { - "parent": "tongue-tied", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4367, - "fields": { - "parent": "torrent-of-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4368, - "fields": { - "parent": "touch-of-the-unliving", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4370, - "fields": { - "parent": "touch-of-the-unliving", - "type": "slot_level_4", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4371, - "fields": { - "parent": "touch-of-the-unliving", - "type": "slot_level_5", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4372, - "fields": { - "parent": "touch-of-the-unliving", - "type": "slot_level_6", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4373, - "fields": { - "parent": "touch-of-the-unliving", - "type": "slot_level_7", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4374, - "fields": { - "parent": "touch-of-the-unliving", - "type": "slot_level_8", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4375, - "fields": { - "parent": "touch-of-the-unliving", - "type": "slot_level_9", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4376, - "fields": { - "parent": "tracer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4377, - "fields": { - "parent": "treasure-chasm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4378, - "fields": { - "parent": "tree-heal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4379, - "fields": { - "parent": "tree-running", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4380, - "fields": { - "parent": "tree-speak", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4381, - "fields": { - "parent": "trench", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4383, - "fields": { - "parent": "trench", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4384, - "fields": { - "parent": "trench", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4385, - "fields": { - "parent": "trench", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4386, - "fields": { - "parent": "trench", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4387, - "fields": { - "parent": "trench", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4388, - "fields": { - "parent": "trench", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4389, - "fields": { - "parent": "trench", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4390, - "fields": { - "parent": "trick-question", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4391, - "fields": { - "parent": "triumph-of-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4392, - "fields": { - "parent": "twist-the-skein", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4393, - "fields": { - "parent": "umbral-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4394, - "fields": { - "parent": "uncontrollable-transformation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4395, - "fields": { - "parent": "uncontrollable-transformation", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4397, - "fields": { - "parent": "uncontrollable-transformation", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4398, - "fields": { - "parent": "uncontrollable-transformation", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4399, - "fields": { - "parent": "undermine-armor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4400, - "fields": { - "parent": "unholy-defiance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4401, - "fields": { - "parent": "unleash-effigy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4402, - "fields": { - "parent": "unluck-on-that", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4404, - "fields": { - "parent": "unluck-on-that", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "30 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4405, - "fields": { - "parent": "unluck-on-that", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "35 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4406, - "fields": { - "parent": "unluck-on-that", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "40 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4407, - "fields": { - "parent": "unluck-on-that", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "45 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4408, - "fields": { - "parent": "unluck-on-that", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "50 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4409, - "fields": { - "parent": "unluck-on-that", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "55 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4410, - "fields": { - "parent": "unluck-on-that", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "60 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4411, - "fields": { - "parent": "unluck-on-that", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "65 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4412, - "fields": { - "parent": "unseen-strangler", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4413, - "fields": { - "parent": "unseen-strangler", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4414, - "fields": { - "parent": "vine-trestle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4415, - "fields": { - "parent": "vine-trestle", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4417, - "fields": { - "parent": "vine-trestle", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4418, - "fields": { - "parent": "vine-trestle", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4419, - "fields": { - "parent": "vine-trestle", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4420, - "fields": { - "parent": "vine-trestle", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4421, - "fields": { - "parent": "vine-trestle", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4422, - "fields": { - "parent": "vine-trestle", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4423, - "fields": { - "parent": "vine-trestle", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4424, - "fields": { - "parent": "visage-of-madness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4425, - "fields": { - "parent": "vital-mark", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4426, - "fields": { - "parent": "vital-mark", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4428, - "fields": { - "parent": "vital-mark", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4429, - "fields": { - "parent": "vital-mark", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4430, - "fields": { - "parent": "vital-mark", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4431, - "fields": { - "parent": "vital-mark", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4432, - "fields": { - "parent": "vital-mark", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4433, - "fields": { - "parent": "vital-mark", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4434, - "fields": { - "parent": "void-rift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4435, - "fields": { - "parent": "void-strike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4437, - "fields": { - "parent": "void-strike", - "type": "slot_level_4", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4438, - "fields": { - "parent": "void-strike", - "type": "slot_level_5", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4439, - "fields": { - "parent": "void-strike", - "type": "slot_level_6", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4440, - "fields": { - "parent": "void-strike", - "type": "slot_level_7", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4441, - "fields": { - "parent": "void-strike", - "type": "slot_level_8", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4442, - "fields": { - "parent": "void-strike", - "type": "slot_level_9", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4443, - "fields": { - "parent": "volley-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4444, - "fields": { - "parent": "vomit-tentacles", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4445, - "fields": { - "parent": "voorish-sign", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4447, - "fields": { - "parent": "voorish-sign", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4448, - "fields": { - "parent": "voorish-sign", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4449, - "fields": { - "parent": "voorish-sign", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4450, - "fields": { - "parent": "voorish-sign", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4451, - "fields": { - "parent": "voorish-sign", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4452, - "fields": { - "parent": "voorish-sign", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4453, - "fields": { - "parent": "voorish-sign", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4454, - "fields": { - "parent": "voorish-sign", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4455, - "fields": { - "parent": "waft", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4456, - "fields": { - "parent": "walk-the-twisted-path", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4458, - "fields": { - "parent": "walk-the-twisted-path", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4459, - "fields": { - "parent": "walk-the-twisted-path", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4460, - "fields": { - "parent": "walk-the-twisted-path", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4461, - "fields": { - "parent": "walking-wall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4462, - "fields": { - "parent": "wall-of-time", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4463, - "fields": { - "parent": "warning-shout", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4464, - "fields": { - "parent": "warp-mind-and-matter", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4465, - "fields": { - "parent": "warp-mind-and-matter", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4466, - "fields": { - "parent": "weapon-of-blood", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4468, - "fields": { - "parent": "weapon-of-blood", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4469, - "fields": { - "parent": "weapon-of-blood", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4470, - "fields": { - "parent": "weapon-of-blood", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4471, - "fields": { - "parent": "weapon-of-blood", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4472, - "fields": { - "parent": "weapon-of-blood", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4473, - "fields": { - "parent": "weapon-of-blood", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4474, - "fields": { - "parent": "weapon-of-blood", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4475, - "fields": { - "parent": "weapon-of-blood", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4476, - "fields": { - "parent": "weilers-ward", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4478, - "fields": { - "parent": "weilers-ward", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4479, - "fields": { - "parent": "weilers-ward", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4480, - "fields": { - "parent": "weilers-ward", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4481, - "fields": { - "parent": "weilers-ward", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4482, - "fields": { - "parent": "weilers-ward", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4483, - "fields": { - "parent": "weilers-ward", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4484, - "fields": { - "parent": "weilers-ward", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4485, - "fields": { - "parent": "wild-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4487, - "fields": { - "parent": "wild-shield", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4488, - "fields": { - "parent": "wild-shield", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4489, - "fields": { - "parent": "wild-shield", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4490, - "fields": { - "parent": "wild-shield", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4491, - "fields": { - "parent": "wild-shield", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4492, - "fields": { - "parent": "wind-lash", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4493, - "fields": { - "parent": "wind-lash", - "type": "player_level_1", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4494, - "fields": { - "parent": "wind-lash", - "type": "player_level_2", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4495, - "fields": { - "parent": "wind-lash", - "type": "player_level_3", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4496, - "fields": { - "parent": "wind-lash", - "type": "player_level_4", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4497, - "fields": { - "parent": "wind-lash", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4498, - "fields": { - "parent": "wind-lash", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4499, - "fields": { - "parent": "wind-lash", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4500, - "fields": { - "parent": "wind-lash", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4501, - "fields": { - "parent": "wind-lash", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4502, - "fields": { - "parent": "wind-lash", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4503, - "fields": { - "parent": "wind-lash", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4504, - "fields": { - "parent": "wind-lash", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4505, - "fields": { - "parent": "wind-lash", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4506, - "fields": { - "parent": "wind-lash", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4507, - "fields": { - "parent": "wind-lash", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4508, - "fields": { - "parent": "wind-lash", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4509, - "fields": { - "parent": "wind-lash", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4510, - "fields": { - "parent": "wind-lash", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4511, - "fields": { - "parent": "wind-lash", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4512, - "fields": { - "parent": "wind-lash", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4513, - "fields": { - "parent": "wind-of-the-hereafter", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4514, - "fields": { - "parent": "wind-tunnel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4515, - "fields": { - "parent": "winterdark", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4516, - "fields": { - "parent": "winters-radiance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4517, - "fields": { - "parent": "wintry-glide", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4518, - "fields": { - "parent": "withered-sight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4520, - "fields": { - "parent": "withered-sight", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4521, - "fields": { - "parent": "withered-sight", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4522, - "fields": { - "parent": "withered-sight", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4523, - "fields": { - "parent": "withered-sight", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4524, - "fields": { - "parent": "withered-sight", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4525, - "fields": { - "parent": "withered-sight", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4526, - "fields": { - "parent": "withered-sight", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4527, - "fields": { - "parent": "withered-sight", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4528, - "fields": { - "parent": "wolfsong", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4530, - "fields": { - "parent": "wolfsong", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4531, - "fields": { - "parent": "wolfsong", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4532, - "fields": { - "parent": "wolfsong", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4533, - "fields": { - "parent": "wolfsong", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4534, - "fields": { - "parent": "wolfsong", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4535, - "fields": { - "parent": "wolfsong", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4536, - "fields": { - "parent": "wolfsong", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4537, - "fields": { - "parent": "wolfsong", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4538, - "fields": { - "parent": "word-of-misfortune", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4539, - "fields": { - "parent": "wresting-wind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4540, - "fields": { - "parent": "writhing-arms", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4542, - "fields": { - "parent": "writhing-arms", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4543, - "fields": { - "parent": "writhing-arms", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4544, - "fields": { - "parent": "writhing-arms", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4545, - "fields": { - "parent": "writhing-arms", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4546, - "fields": { - "parent": "writhing-arms", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4547, - "fields": { - "parent": "writhing-arms", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4548, - "fields": { - "parent": "writhing-arms", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4549, - "fields": { - "parent": "writhing-arms", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4550, - "fields": { - "parent": "yellow-sign", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -} -] + { + "model": "api_v2.spellcastingoption", + "pk": 2246, + "fields": { + "parent": "deepm_abhorrent-apparition", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2248, + "fields": { + "parent": "deepm_abhorrent-apparition", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2249, + "fields": { + "parent": "deepm_abhorrent-apparition", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2250, + "fields": { + "parent": "deepm_abhorrent-apparition", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2251, + "fields": { + "parent": "deepm_abhorrent-apparition", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2252, + "fields": { + "parent": "deepm_abhorrent-apparition", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2253, + "fields": { + "parent": "deepm_accelerate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2255, + "fields": { + "parent": "deepm_accelerate", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2256, + "fields": { + "parent": "deepm_accelerate", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2257, + "fields": { + "parent": "deepm_accelerate", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2258, + "fields": { + "parent": "deepm_accelerate", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2259, + "fields": { + "parent": "deepm_accelerate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2260, + "fields": { + "parent": "deepm_accelerate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2261, + "fields": { + "parent": "deepm_acid-gate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2263, + "fields": { + "parent": "deepm_acid-gate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2264, + "fields": { + "parent": "deepm_acid-gate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2265, + "fields": { + "parent": "deepm_acid-rain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2267, + "fields": { + "parent": "deepm_acid-rain", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2268, + "fields": { + "parent": "deepm_acid-rain", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2269, + "fields": { + "parent": "deepm_acid-rain", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2270, + "fields": { + "parent": "deepm_acid-rain", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2271, + "fields": { + "parent": "deepm_adjust-position", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2273, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2274, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2275, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2276, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2277, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2278, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2279, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2280, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2281, + "fields": { + "parent": "deepm_afflict-line", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2282, + "fields": { + "parent": "deepm_afflict-line", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2283, + "fields": { + "parent": "deepm_agonizing-mark", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2284, + "fields": { + "parent": "deepm_alchemical-form", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2285, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2286, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2287, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2288, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2289, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2290, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2291, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2292, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2293, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2294, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2295, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2296, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2297, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2298, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2299, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2300, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2301, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2302, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2303, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2304, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2305, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2306, + "fields": { + "parent": "deepm_ally-aegis", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2308, + "fields": { + "parent": "deepm_ally-aegis", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2309, + "fields": { + "parent": "deepm_ally-aegis", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2310, + "fields": { + "parent": "deepm_ally-aegis", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2311, + "fields": { + "parent": "deepm_alone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2312, + "fields": { + "parent": "deepm_alter-arrows-fortune", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2313, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2314, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2316, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2317, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2318, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2319, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2320, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2321, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2322, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2323, + "fields": { + "parent": "deepm_amplify-gravity", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2324, + "fields": { + "parent": "deepm_analyze-device", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2325, + "fields": { + "parent": "deepm_ancestors-strength", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2326, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2328, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 1, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2329, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2330, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2331, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2332, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2333, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2334, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2335, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2336, + "fields": { + "parent": "deepm_ancient-shade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2337, + "fields": { + "parent": "deepm_angelic-guardian", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2338, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2340, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2341, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2342, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2343, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2344, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2345, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2346, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2347, + "fields": { + "parent": "deepm_animate-greater-undead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2349, + "fields": { + "parent": "deepm_animate-greater-undead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2350, + "fields": { + "parent": "deepm_animate-greater-undead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2351, + "fields": { + "parent": "deepm_animate-greater-undead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2352, + "fields": { + "parent": "deepm_animated-scroll", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2353, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2354, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2355, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2356, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2357, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2358, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2359, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2360, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2361, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2362, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2363, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2364, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2365, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2366, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2367, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2368, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2369, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": "96 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2370, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": "96 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2371, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": "96 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2372, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": "96 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2373, + "fields": { + "parent": "deepm_anticipate-arcana", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2374, + "fields": { + "parent": "deepm_anticipate-attack", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2375, + "fields": { + "parent": "deepm_anticipate-weakness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2376, + "fields": { + "parent": "deepm_arcane-sight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2377, + "fields": { + "parent": "deepm_as-you-were", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2378, + "fields": { + "parent": "deepm_ashen-memories", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2379, + "fields": { + "parent": "deepm_ashen-memories", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2380, + "fields": { + "parent": "deepm_aspect-of-the-dragon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2381, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2383, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2384, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2385, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2386, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2387, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2388, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2389, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2391, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "1 round", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2392, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "2 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2393, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2394, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "4 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2395, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2396, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2397, + "fields": { + "parent": "deepm_auspicious-warning", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2398, + "fields": { + "parent": "deepm_avoid-grievous-injury", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2399, + "fields": { + "parent": "deepm_avronins-astral-assembly", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2400, + "fields": { + "parent": "deepm_avronins-astral-assembly", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2401, + "fields": { + "parent": "deepm_awaken-object", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2402, + "fields": { + "parent": "deepm_bad-timing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2403, + "fields": { + "parent": "deepm_batsense", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2404, + "fields": { + "parent": "deepm_become-nightwing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2405, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2407, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 1, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2408, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2409, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2410, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2411, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2412, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2413, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2414, + "fields": { + "parent": "deepm_benediction", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2415, + "fields": { + "parent": "deepm_bestial-fury", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2417, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2418, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2419, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2420, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2421, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2422, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2423, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2424, + "fields": { + "parent": "deepm_binding-oath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2425, + "fields": { + "parent": "deepm_biting-arrow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2426, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2427, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2428, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2429, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2430, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2431, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2432, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2433, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2434, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2435, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2436, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2437, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2438, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2439, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2440, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2441, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2442, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2443, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2444, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2445, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2446, + "fields": { + "parent": "deepm_bitter-chains", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2447, + "fields": { + "parent": "deepm_black-goats-blessing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2448, + "fields": { + "parent": "deepm_black-hand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2449, + "fields": { + "parent": "deepm_black-ribbons", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2450, + "fields": { + "parent": "deepm_black-sunshine", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2451, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2453, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2454, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2455, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2456, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2457, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2458, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2459, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2460, + "fields": { + "parent": "deepm_black-well", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2462, + "fields": { + "parent": "deepm_black-well", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2463, + "fields": { + "parent": "deepm_black-well", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2464, + "fields": { + "parent": "deepm_black-well", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2465, + "fields": { + "parent": "deepm_blade-of-my-brother", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2466, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2468, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2469, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2470, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2471, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2472, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2473, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2474, + "fields": { + "parent": "deepm_blazing-chariot", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2475, + "fields": { + "parent": "deepm_bleating-call", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2476, + "fields": { + "parent": "deepm_bleed", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2477, + "fields": { + "parent": "deepm_bless-the-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2478, + "fields": { + "parent": "deepm_blessed-halo", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2480, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2481, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2482, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2483, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2484, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2485, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2486, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2487, + "fields": { + "parent": "deepm_blizzard", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2488, + "fields": { + "parent": "deepm_blood-and-steel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2490, + "fields": { + "parent": "deepm_blood-and-steel", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2491, + "fields": { + "parent": "deepm_blood-and-steel", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2492, + "fields": { + "parent": "deepm_blood-and-steel", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2493, + "fields": { + "parent": "deepm_blood-and-steel", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2494, + "fields": { + "parent": "deepm_blood-and-steel", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2495, + "fields": { + "parent": "deepm_blood-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2496, + "fields": { + "parent": "deepm_blood-lure", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2497, + "fields": { + "parent": "deepm_blood-offering", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2498, + "fields": { + "parent": "deepm_blood-puppet", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2499, + "fields": { + "parent": "deepm_blood-scarab", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2501, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2502, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2503, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2504, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2505, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2506, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2507, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2508, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2509, + "fields": { + "parent": "deepm_blood-spoor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2510, + "fields": { + "parent": "deepm_blood-tide", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2511, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2512, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2513, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2514, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2515, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2516, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2517, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2518, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2519, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2520, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2521, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2522, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2523, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2524, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2525, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2526, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2527, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2528, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2529, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2530, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2531, + "fields": { + "parent": "deepm_blood-to-acid", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2532, + "fields": { + "parent": "deepm_bloodhound", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2534, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2535, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2536, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2537, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2538, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2539, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2540, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2541, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2542, + "fields": { + "parent": "deepm_bloodshot", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2544, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2545, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2546, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2547, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2548, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2549, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2550, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2551, + "fields": { + "parent": "deepm_bloody-hands", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2552, + "fields": { + "parent": "deepm_bloody-smite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2553, + "fields": { + "parent": "deepm_bloom", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2554, + "fields": { + "parent": "deepm_bloom", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2555, + "fields": { + "parent": "deepm_boiling-blood", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2557, + "fields": { + "parent": "deepm_boiling-blood", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2558, + "fields": { + "parent": "deepm_boiling-blood", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2559, + "fields": { + "parent": "deepm_boiling-blood", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2560, + "fields": { + "parent": "deepm_boiling-blood", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2561, + "fields": { + "parent": "deepm_boiling-blood", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2562, + "fields": { + "parent": "deepm_boiling-oil", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2564, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2565, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2566, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2567, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2568, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2569, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2570, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2571, + "fields": { + "parent": "deepm_bolster-undead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2573, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2574, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2575, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2576, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2577, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2578, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2579, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2580, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2581, + "fields": { + "parent": "deepm_booster-shot", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2583, + "fields": { + "parent": "deepm_booster-shot", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2584, + "fields": { + "parent": "deepm_booster-shot", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2585, + "fields": { + "parent": "deepm_booster-shot", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2586, + "fields": { + "parent": "deepm_booster-shot", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2587, + "fields": { + "parent": "deepm_booster-shot", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2588, + "fields": { + "parent": "deepm_booster-shot", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2589, + "fields": { + "parent": "deepm_boreass-breath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2590, + "fields": { + "parent": "deepm_boreass-breath", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2592, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2593, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2594, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2595, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2596, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2597, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2598, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2599, + "fields": { + "parent": "deepm_bottled-arcana", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2601, + "fields": { + "parent": "deepm_bottled-arcana", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2602, + "fields": { + "parent": "deepm_bottled-arcana", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2603, + "fields": { + "parent": "deepm_bottled-arcana", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2604, + "fields": { + "parent": "deepm_bottled-arcana", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2605, + "fields": { + "parent": "deepm_bottomless-stomach", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2606, + "fields": { + "parent": "deepm_breathtaking-wind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2607, + "fields": { + "parent": "deepm_breeze-compass", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2608, + "fields": { + "parent": "deepm_brimstone-infusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2609, + "fields": { + "parent": "deepm_brittling", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2610, + "fields": { + "parent": "deepm_broken-charge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2612, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2613, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2614, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2615, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2616, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2617, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2618, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2619, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2620, + "fields": { + "parent": "deepm_by-the-light-of-the-moon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2621, + "fields": { + "parent": "deepm_by-the-light-of-the-watchful-moon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2622, + "fields": { + "parent": "deepm_call-shadow-mastiff", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2623, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2625, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2626, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2627, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2628, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2629, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2630, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2631, + "fields": { + "parent": "deepm_candles-insight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2632, + "fields": { + "parent": "deepm_carmello-voltas-irksome-preserves", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2633, + "fields": { + "parent": "deepm_catapult", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2635, + "fields": { + "parent": "deepm_catapult", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2636, + "fields": { + "parent": "deepm_catapult", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2637, + "fields": { + "parent": "deepm_catapult", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2638, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2640, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2641, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2642, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2643, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2644, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2645, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2646, + "fields": { + "parent": "deepm_caustic-blood", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2648, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2649, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2650, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2651, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2652, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2653, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2654, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2655, + "fields": { + "parent": "deepm_caustic-torrent", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2656, + "fields": { + "parent": "deepm_caustic-touch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2657, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_1", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2658, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_2", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2659, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_3", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2660, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_4", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2661, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2662, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2663, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2664, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2665, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2666, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2667, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2668, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2669, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2670, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2671, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2672, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2673, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2674, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2675, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2676, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2677, + "fields": { + "parent": "deepm_celebration", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2678, + "fields": { + "parent": "deepm_celebration", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2680, + "fields": { + "parent": "deepm_celebration", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2681, + "fields": { + "parent": "deepm_celebration", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2682, + "fields": { + "parent": "deepm_chains-of-the-goddess", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2683, + "fields": { + "parent": "deepm_chains-of-torment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2685, + "fields": { + "parent": "deepm_chains-of-torment", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2686, + "fields": { + "parent": "deepm_chains-of-torment", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2687, + "fields": { + "parent": "deepm_chains-of-torment", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2688, + "fields": { + "parent": "deepm_chains-of-torment", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2689, + "fields": { + "parent": "deepm_chains-of-torment", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2690, + "fields": { + "parent": "deepm_champions-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2692, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2693, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2694, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2695, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2696, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2697, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2698, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2699, + "fields": { + "parent": "deepm_chaotic-form", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2701, + "fields": { + "parent": "deepm_chaotic-form", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "20 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2702, + "fields": { + "parent": "deepm_chaotic-form", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2703, + "fields": { + "parent": "deepm_chaotic-form", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "40 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2704, + "fields": { + "parent": "deepm_chaotic-form", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "50 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2705, + "fields": { + "parent": "deepm_chaotic-form", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "60 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2706, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2708, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2709, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2710, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2711, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2712, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2713, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2714, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2715, + "fields": { + "parent": "deepm_chaotic-world", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2716, + "fields": { + "parent": "deepm_chilling-words", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2717, + "fields": { + "parent": "deepm_chronal-lance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2719, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2720, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2721, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2722, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2723, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2724, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2725, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2726, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 11, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2727, + "fields": { + "parent": "deepm_circle-of-wind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2728, + "fields": { + "parent": "deepm_clash-of-glaciers", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2730, + "fields": { + "parent": "deepm_clash-of-glaciers", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2731, + "fields": { + "parent": "deepm_clash-of-glaciers", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2732, + "fields": { + "parent": "deepm_clash-of-glaciers", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2733, + "fields": { + "parent": "deepm_clash-of-glaciers", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2734, + "fields": { + "parent": "deepm_claws-of-darkness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2735, + "fields": { + "parent": "deepm_claws-of-the-earth-dragon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2737, + "fields": { + "parent": "deepm_claws-of-the-earth-dragon", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": "70 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2738, + "fields": { + "parent": "deepm_claws-of-the-earth-dragon", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": "80 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2739, + "fields": { + "parent": "deepm_claws-of-the-earth-dragon", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": "90 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2740, + "fields": { + "parent": "deepm_claws-of-the-earth-dragon", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": "100 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2741, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2742, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2744, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2745, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2746, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2747, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2748, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2749, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2750, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2751, + "fields": { + "parent": "deepm_cloak-of-shadow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2752, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2753, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2754, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2755, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2756, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2757, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2758, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2759, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2760, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2761, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2762, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2763, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2764, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2765, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2766, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2767, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2768, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2769, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2770, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2771, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2772, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2773, + "fields": { + "parent": "deepm_closing-in", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2775, + "fields": { + "parent": "deepm_closing-in", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2776, + "fields": { + "parent": "deepm_closing-in", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2777, + "fields": { + "parent": "deepm_closing-in", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2778, + "fields": { + "parent": "deepm_closing-in", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2779, + "fields": { + "parent": "deepm_closing-in", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2780, + "fields": { + "parent": "deepm_closing-in", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2781, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2783, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2784, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2785, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2786, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2787, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2788, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2789, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2790, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2791, + "fields": { + "parent": "deepm_compelled-movement", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2793, + "fields": { + "parent": "deepm_compelled-movement", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2794, + "fields": { + "parent": "deepm_compelled-movement", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2795, + "fields": { + "parent": "deepm_compelled-movement", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2796, + "fields": { + "parent": "deepm_compelled-movement", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2797, + "fields": { + "parent": "deepm_compelled-movement", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2798, + "fields": { + "parent": "deepm_compelled-movement", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2799, + "fields": { + "parent": "deepm_compelling-fate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2801, + "fields": { + "parent": "deepm_compelling-fate", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2802, + "fields": { + "parent": "deepm_compelling-fate", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2803, + "fields": { + "parent": "deepm_compelling-fate", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2804, + "fields": { + "parent": "deepm_compelling-fate", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2805, + "fields": { + "parent": "deepm_compelling-fate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2806, + "fields": { + "parent": "deepm_compelling-fate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2807, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2809, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2810, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2811, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2812, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2813, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2814, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2815, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2816, + "fields": { + "parent": "deepm_confound-senses", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2817, + "fields": { + "parent": "deepm_conjure-fey-hound", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2819, + "fields": { + "parent": "deepm_conjure-fey-hound", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2820, + "fields": { + "parent": "deepm_conjure-fey-hound", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2821, + "fields": { + "parent": "deepm_conjure-fey-hound", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2822, + "fields": { + "parent": "deepm_conjure-fey-hound", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2823, + "fields": { + "parent": "deepm_conjure-forest-defender", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2825, + "fields": { + "parent": "deepm_conjure-forest-defender", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2826, + "fields": { + "parent": "deepm_conjure-forest-defender", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2827, + "fields": { + "parent": "deepm_conjure-forest-defender", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2828, + "fields": { + "parent": "deepm_conjure-greater-spectral-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2830, + "fields": { + "parent": "deepm_conjure-greater-spectral-dead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2831, + "fields": { + "parent": "deepm_conjure-greater-spectral-dead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2832, + "fields": { + "parent": "deepm_conjure-minor-voidborn", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2834, + "fields": { + "parent": "deepm_conjure-minor-voidborn", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2835, + "fields": { + "parent": "deepm_conjure-minor-voidborn", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2836, + "fields": { + "parent": "deepm_conjure-minor-voidborn", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2837, + "fields": { + "parent": "deepm_conjure-minor-voidborn", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2838, + "fields": { + "parent": "deepm_conjure-scarab-swarm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2839, + "fields": { + "parent": "deepm_conjure-shadow-titan", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2840, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2842, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2843, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2844, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2845, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2846, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2847, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2848, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2849, + "fields": { + "parent": "deepm_conjure-undead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2851, + "fields": { + "parent": "deepm_conjure-undead", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2852, + "fields": { + "parent": "deepm_conjure-undead", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2853, + "fields": { + "parent": "deepm_conjure-undead", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2854, + "fields": { + "parent": "deepm_conjure-undead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2855, + "fields": { + "parent": "deepm_conjure-undead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2856, + "fields": { + "parent": "deepm_conjure-undead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2857, + "fields": { + "parent": "deepm_conjure-voidborn", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2859, + "fields": { + "parent": "deepm_conjure-voidborn", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2860, + "fields": { + "parent": "deepm_conjure-voidborn", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2861, + "fields": { + "parent": "deepm_consult-the-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2863, + "fields": { + "parent": "deepm_consult-the-storm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2864, + "fields": { + "parent": "deepm_consult-the-storm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2865, + "fields": { + "parent": "deepm_consult-the-storm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2866, + "fields": { + "parent": "deepm_consult-the-storm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2867, + "fields": { + "parent": "deepm_consult-the-storm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2868, + "fields": { + "parent": "deepm_converse-with-dragon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2869, + "fields": { + "parent": "deepm_costly-victory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2870, + "fields": { + "parent": "deepm_create-ring-servant", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2871, + "fields": { + "parent": "deepm_create-thunderstaff", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2872, + "fields": { + "parent": "deepm_creeping-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2874, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2875, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2876, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2877, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2878, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2879, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2880, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2881, + "fields": { + "parent": "deepm_crushing-curse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2882, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2883, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2884, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2885, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2886, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_5", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2887, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_6", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2888, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_7", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2889, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_8", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2890, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_9", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2891, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_10", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2892, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_11", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2893, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_12", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2894, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_13", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2895, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_14", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2896, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_15", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2897, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_16", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2898, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_17", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2899, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_18", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2900, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_19", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2901, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_20", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2902, + "fields": { + "parent": "deepm_crushing-trample", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2903, + "fields": { + "parent": "deepm_cure-beast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2905, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2906, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2907, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2908, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2909, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2910, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2911, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2912, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2913, + "fields": { + "parent": "deepm_curse-of-boreas", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2914, + "fields": { + "parent": "deepm_curse-of-dust", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2915, + "fields": { + "parent": "deepm_curse-of-incompetence", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2916, + "fields": { + "parent": "deepm_curse-of-the-grave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2917, + "fields": { + "parent": "deepm_curse-of-yig", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2918, + "fields": { + "parent": "deepm_curse-of-yig", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2919, + "fields": { + "parent": "deepm_curse-ring", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2920, + "fields": { + "parent": "deepm_cursed-gift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2922, + "fields": { + "parent": "deepm_cursed-gift", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2923, + "fields": { + "parent": "deepm_cursed-gift", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "3 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2924, + "fields": { + "parent": "deepm_cursed-gift", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "4 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2925, + "fields": { + "parent": "deepm_cursed-gift", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "5 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2926, + "fields": { + "parent": "deepm_cursed-gift", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "6 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2927, + "fields": { + "parent": "deepm_cynophobia", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2929, + "fields": { + "parent": "deepm_cynophobia", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2930, + "fields": { + "parent": "deepm_cynophobia", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2931, + "fields": { + "parent": "deepm_cynophobia", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2932, + "fields": { + "parent": "deepm_cynophobia", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 month", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2933, + "fields": { + "parent": "deepm_cynophobia", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 month", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2934, + "fields": { + "parent": "deepm_cynophobia", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2935, + "fields": { + "parent": "deepm_daggerhawk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2936, + "fields": { + "parent": "deepm_dark-dementing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2937, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2939, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2940, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2941, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2942, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2943, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2944, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2945, + "fields": { + "parent": "deepm_dark-maw", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2946, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_1", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2947, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_2", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2948, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_3", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2949, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_4", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2950, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2951, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2952, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2953, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2954, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2955, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2956, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2957, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2958, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2959, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2960, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2961, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2962, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2963, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2964, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2965, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2966, + "fields": { + "parent": "deepm_dark-path", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2967, + "fields": { + "parent": "deepm_darkbolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2969, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2970, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2971, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2972, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2973, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2974, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2975, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2976, + "fields": { + "parent": "deepm_dead-walking", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2978, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2979, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2980, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2981, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2982, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2983, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2984, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2985, + "fields": { + "parent": "deepm_deadly-sting", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2986, + "fields": { + "parent": "deepm_death-gods-touch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2988, + "fields": { + "parent": "deepm_death-gods-touch", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2989, + "fields": { + "parent": "deepm_death-gods-touch", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2990, + "fields": { + "parent": "deepm_decay", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2991, + "fields": { + "parent": "deepm_decay", + "type": "player_level_1", + "damage_roll": "1d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2992, + "fields": { + "parent": "deepm_decay", + "type": "player_level_2", + "damage_roll": "1d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2993, + "fields": { + "parent": "deepm_decay", + "type": "player_level_3", + "damage_roll": "1d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2994, + "fields": { + "parent": "deepm_decay", + "type": "player_level_4", + "damage_roll": "1d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2995, + "fields": { + "parent": "deepm_decay", + "type": "player_level_5", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2996, + "fields": { + "parent": "deepm_decay", + "type": "player_level_6", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2997, + "fields": { + "parent": "deepm_decay", + "type": "player_level_7", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2998, + "fields": { + "parent": "deepm_decay", + "type": "player_level_8", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 2999, + "fields": { + "parent": "deepm_decay", + "type": "player_level_9", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3000, + "fields": { + "parent": "deepm_decay", + "type": "player_level_10", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3001, + "fields": { + "parent": "deepm_decay", + "type": "player_level_11", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3002, + "fields": { + "parent": "deepm_decay", + "type": "player_level_12", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3003, + "fields": { + "parent": "deepm_decay", + "type": "player_level_13", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3004, + "fields": { + "parent": "deepm_decay", + "type": "player_level_14", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3005, + "fields": { + "parent": "deepm_decay", + "type": "player_level_15", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3006, + "fields": { + "parent": "deepm_decay", + "type": "player_level_16", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3007, + "fields": { + "parent": "deepm_decay", + "type": "player_level_17", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3008, + "fields": { + "parent": "deepm_decay", + "type": "player_level_18", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3009, + "fields": { + "parent": "deepm_decay", + "type": "player_level_19", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3010, + "fields": { + "parent": "deepm_decay", + "type": "player_level_20", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3011, + "fields": { + "parent": "deepm_decelerate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3013, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3014, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3015, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3016, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3017, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3018, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3019, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3020, + "fields": { + "parent": "deepm_deep-breath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3022, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3023, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3024, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3025, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "10 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3026, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "12 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3027, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "14 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3028, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "16 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3029, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "18 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3030, + "fields": { + "parent": "deepm_defile-healing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3032, + "fields": { + "parent": "deepm_defile-healing", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3033, + "fields": { + "parent": "deepm_defile-healing", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3034, + "fields": { + "parent": "deepm_delay-potion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3035, + "fields": { + "parent": "deepm_delayed-healing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3037, + "fields": { + "parent": "deepm_delayed-healing", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3038, + "fields": { + "parent": "deepm_delayed-healing", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3039, + "fields": { + "parent": "deepm_delayed-healing", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3040, + "fields": { + "parent": "deepm_delayed-healing", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3041, + "fields": { + "parent": "deepm_delayed-healing", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3042, + "fields": { + "parent": "deepm_delayed-healing", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3043, + "fields": { + "parent": "deepm_demon-within", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3044, + "fields": { + "parent": "deepm_desiccating-breath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3045, + "fields": { + "parent": "deepm_desolation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3046, + "fields": { + "parent": "deepm_desolation", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3047, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3049, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3050, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3051, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3052, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3053, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3054, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3055, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3056, + "fields": { + "parent": "deepm_detect-dragons", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3057, + "fields": { + "parent": "deepm_devas-wings", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3059, + "fields": { + "parent": "deepm_devas-wings", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3060, + "fields": { + "parent": "deepm_devas-wings", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3061, + "fields": { + "parent": "deepm_devas-wings", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3062, + "fields": { + "parent": "deepm_devas-wings", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3063, + "fields": { + "parent": "deepm_devas-wings", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3064, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3066, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3067, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3068, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3069, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3070, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3071, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3072, + "fields": { + "parent": "deepm_disquieting-gaze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3073, + "fields": { + "parent": "deepm_disruptive-aura", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3075, + "fields": { + "parent": "deepm_disruptive-aura", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3076, + "fields": { + "parent": "deepm_distracting-divination", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3077, + "fields": { + "parent": "deepm_distraction-cascade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3078, + "fields": { + "parent": "deepm_doom-of-blue-crystal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3079, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3081, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3082, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3083, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3084, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3085, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3086, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3087, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3088, + "fields": { + "parent": "deepm_doom-of-dancing-blades", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3089, + "fields": { + "parent": "deepm_doom-of-disenchantment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3090, + "fields": { + "parent": "deepm_doom-of-serpent-coils", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3091, + "fields": { + "parent": "deepm_doom-of-the-cracked-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3092, + "fields": { + "parent": "deepm_doom-of-the-earthen-maw", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3093, + "fields": { + "parent": "deepm_doom-of-the-slippery-rogue", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3094, + "fields": { + "parent": "deepm_douse-light", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3095, + "fields": { + "parent": "deepm_draconic-smite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3097, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3098, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3099, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3100, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3101, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3102, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3103, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3104, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3105, + "fields": { + "parent": "deepm_dragon-breath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3107, + "fields": { + "parent": "deepm_dragon-breath", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3108, + "fields": { + "parent": "deepm_dragon-breath", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3109, + "fields": { + "parent": "deepm_dragon-breath", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3110, + "fields": { + "parent": "deepm_dragon-breath", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3111, + "fields": { + "parent": "deepm_dragon-roar", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3112, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_1", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3113, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_2", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3114, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_3", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3115, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_4", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3116, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_5", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3117, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_6", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3118, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_7", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3119, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_8", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3120, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_9", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3121, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_10", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3122, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_11", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3123, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_12", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3124, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_13", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3125, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_14", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3126, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_15", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3127, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_16", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3128, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_17", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3129, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_18", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3130, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_19", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3131, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_20", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3132, + "fields": { + "parent": "deepm_drown", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3134, + "fields": { + "parent": "deepm_drown", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3135, + "fields": { + "parent": "deepm_drown", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3136, + "fields": { + "parent": "deepm_drown", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3137, + "fields": { + "parent": "deepm_drown", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3138, + "fields": { + "parent": "deepm_drown", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3139, + "fields": { + "parent": "deepm_drown", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3140, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3142, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3143, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3144, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3145, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3146, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3147, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3148, + "fields": { + "parent": "deepm_earthskimmer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3149, + "fields": { + "parent": "deepm_earworm-melody", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3151, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3152, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3153, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3154, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3155, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3156, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3157, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3158, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3159, + "fields": { + "parent": "deepm_echoes-of-steel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3160, + "fields": { + "parent": "deepm_ectoplasm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3162, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3163, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3164, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3165, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3166, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3167, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3168, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3169, + "fields": { + "parent": "deepm_eidetic-memory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3170, + "fields": { + "parent": "deepm_eidetic-memory", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3171, + "fields": { + "parent": "deepm_eldritch-communion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3172, + "fields": { + "parent": "deepm_eldritch-communion", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3173, + "fields": { + "parent": "deepm_elemental-horns", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3175, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3176, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3177, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3178, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3179, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3180, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3181, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3182, + "fields": { + "parent": "deepm_elemental-twist", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3183, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3184, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3186, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3187, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3188, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3189, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3190, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3191, + "fields": { + "parent": "deepm_enchant-ring", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3192, + "fields": { + "parent": "deepm_encroaching-shadows", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3193, + "fields": { + "parent": "deepm_encroaching-shadows", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3195, + "fields": { + "parent": "deepm_encroaching-shadows", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3196, + "fields": { + "parent": "deepm_encroaching-shadows", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "36 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3197, + "fields": { + "parent": "deepm_encroaching-shadows", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3198, + "fields": { + "parent": "deepm_encrypt-decrypt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3199, + "fields": { + "parent": "deepm_endow-attribute", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3201, + "fields": { + "parent": "deepm_endow-attribute", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3202, + "fields": { + "parent": "deepm_endow-attribute", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3203, + "fields": { + "parent": "deepm_endow-attribute", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3204, + "fields": { + "parent": "deepm_endow-attribute", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3205, + "fields": { + "parent": "deepm_endow-attribute", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3206, + "fields": { + "parent": "deepm_energy-absorption", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3207, + "fields": { + "parent": "deepm_energy-foreknowledge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3209, + "fields": { + "parent": "deepm_energy-foreknowledge", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3210, + "fields": { + "parent": "deepm_energy-foreknowledge", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3211, + "fields": { + "parent": "deepm_energy-foreknowledge", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3212, + "fields": { + "parent": "deepm_energy-foreknowledge", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3213, + "fields": { + "parent": "deepm_energy-foreknowledge", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3214, + "fields": { + "parent": "deepm_enhance-greed", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3216, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "11 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3217, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "12 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3218, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "13 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3219, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "14 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3220, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "15 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3221, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "16 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3222, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "17 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3223, + "fields": { + "parent": "deepm_entomb", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3224, + "fields": { + "parent": "deepm_entropic-damage-field", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3225, + "fields": { + "parent": "deepm_essence-instability", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3227, + "fields": { + "parent": "deepm_essence-instability", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3228, + "fields": { + "parent": "deepm_essence-instability", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3229, + "fields": { + "parent": "deepm_essence-instability", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3230, + "fields": { + "parent": "deepm_essence-instability", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3231, + "fields": { + "parent": "deepm_evercold", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3232, + "fields": { + "parent": "deepm_exsanguinate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3234, + "fields": { + "parent": "deepm_exsanguinate", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3235, + "fields": { + "parent": "deepm_exsanguinate", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3236, + "fields": { + "parent": "deepm_exsanguinate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3237, + "fields": { + "parent": "deepm_exsanguinate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3238, + "fields": { + "parent": "deepm_exsanguinating-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3239, + "fields": { + "parent": "deepm_extract-knowledge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3240, + "fields": { + "parent": "deepm_extract-knowledge", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3241, + "fields": { + "parent": "deepm_fault-line", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3242, + "fields": { + "parent": "deepm_feather-field", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3244, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": "2 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3245, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3246, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "4 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3247, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3248, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3249, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "7 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3250, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3251, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "9 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3252, + "fields": { + "parent": "deepm_feather-travel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3254, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3255, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3256, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3257, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3258, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3259, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3260, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3261, + "fields": { + "parent": "deepm_fey-crown", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3263, + "fields": { + "parent": "deepm_fey-crown", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3264, + "fields": { + "parent": "deepm_fey-crown", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3265, + "fields": { + "parent": "deepm_fey-crown", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3266, + "fields": { + "parent": "deepm_fey-crown", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3267, + "fields": { + "parent": "deepm_find-kin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3268, + "fields": { + "parent": "deepm_find-kin", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3269, + "fields": { + "parent": "deepm_fire-darts", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3271, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3272, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3273, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3274, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3275, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3276, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3277, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3278, + "fields": { + "parent": "deepm_fire-under-the-tongue", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3279, + "fields": { + "parent": "deepm_firewalk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3281, + "fields": { + "parent": "deepm_firewalk", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3282, + "fields": { + "parent": "deepm_firewalk", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3283, + "fields": { + "parent": "deepm_firewalk", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3284, + "fields": { + "parent": "deepm_fist-of-iron", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3285, + "fields": { + "parent": "deepm_flame-wave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3287, + "fields": { + "parent": "deepm_flame-wave", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3288, + "fields": { + "parent": "deepm_flame-wave", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3289, + "fields": { + "parent": "deepm_flame-wave", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3290, + "fields": { + "parent": "deepm_flame-wave", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3291, + "fields": { + "parent": "deepm_flame-wave", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3292, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3294, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3295, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3296, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3297, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3298, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3299, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3300, + "fields": { + "parent": "deepm_flickering-fate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3301, + "fields": { + "parent": "deepm_fluctuating-alignment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3302, + "fields": { + "parent": "deepm_flurry", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3303, + "fields": { + "parent": "deepm_forest-native", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3304, + "fields": { + "parent": "deepm_forest-sanctuary", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3305, + "fields": { + "parent": "deepm_foretell-distraction", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3306, + "fields": { + "parent": "deepm_form-of-the-gods", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3307, + "fields": { + "parent": "deepm_freeze-blood", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3308, + "fields": { + "parent": "deepm_freeze-potion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3310, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3311, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "35 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3312, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "40 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3313, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "45 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3314, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "50 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3315, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "55 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3316, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "60 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3317, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "65 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3318, + "fields": { + "parent": "deepm_freezing-fog", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3320, + "fields": { + "parent": "deepm_freezing-fog", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3321, + "fields": { + "parent": "deepm_freezing-fog", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3322, + "fields": { + "parent": "deepm_freezing-fog", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3323, + "fields": { + "parent": "deepm_freezing-fog", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3324, + "fields": { + "parent": "deepm_freezing-fog", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3325, + "fields": { + "parent": "deepm_freezing-fog", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3326, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3328, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3329, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3330, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3331, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3332, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3333, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3334, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3335, + "fields": { + "parent": "deepm_frostbite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3337, + "fields": { + "parent": "deepm_frostbite", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3338, + "fields": { + "parent": "deepm_frostbite", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3339, + "fields": { + "parent": "deepm_frostbite", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3340, + "fields": { + "parent": "deepm_frostbite", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3341, + "fields": { + "parent": "deepm_frostbitten-fingers", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3342, + "fields": { + "parent": "deepm_frozen-razors", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3344, + "fields": { + "parent": "deepm_frozen-razors", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3345, + "fields": { + "parent": "deepm_frozen-razors", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3346, + "fields": { + "parent": "deepm_frozen-razors", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3347, + "fields": { + "parent": "deepm_frozen-razors", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3348, + "fields": { + "parent": "deepm_frozen-razors", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3349, + "fields": { + "parent": "deepm_frozen-razors", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3350, + "fields": { + "parent": "deepm_furious-hooves", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3351, + "fields": { + "parent": "deepm_fusillade-of-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3353, + "fields": { + "parent": "deepm_fusillade-of-ice", + "type": "slot_level_5", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3354, + "fields": { + "parent": "deepm_fusillade-of-ice", + "type": "slot_level_6", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3355, + "fields": { + "parent": "deepm_fusillade-of-ice", + "type": "slot_level_7", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3356, + "fields": { + "parent": "deepm_fusillade-of-ice", + "type": "slot_level_8", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3357, + "fields": { + "parent": "deepm_fusillade-of-ice", + "type": "slot_level_9", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3358, + "fields": { + "parent": "deepm_gear-barrage", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3359, + "fields": { + "parent": "deepm_ghoul-kings-cloak", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3361, + "fields": { + "parent": "deepm_ghoul-kings-cloak", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3362, + "fields": { + "parent": "deepm_gird-the-spirit", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3363, + "fields": { + "parent": "deepm_glacial-cascade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3364, + "fields": { + "parent": "deepm_glacial-fog", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3366, + "fields": { + "parent": "deepm_glacial-fog", + "type": "slot_level_8", + "damage_roll": "13d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3367, + "fields": { + "parent": "deepm_glacial-fog", + "type": "slot_level_9", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3368, + "fields": { + "parent": "deepm_gliding-step", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3370, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": "20 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3371, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3372, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "40 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3373, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "50 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3374, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "60 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3375, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "70 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3376, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "80 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3377, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "90 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3378, + "fields": { + "parent": "deepm_glimpse-of-the-void", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3379, + "fields": { + "parent": "deepm_gloomwrought-barrier", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3380, + "fields": { + "parent": "deepm_gluey-globule", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3381, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3383, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3384, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3385, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3386, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3387, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3388, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3389, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3390, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3392, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": "2 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3393, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": "3 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3394, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": "4 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3395, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": "5 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3396, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": "6 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3397, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": "7 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3398, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": "8 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3399, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": "9 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3400, + "fields": { + "parent": "deepm_going-in-circles", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3401, + "fields": { + "parent": "deepm_gordolays-pleasant-aroma", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3402, + "fields": { + "parent": "deepm_grasp-of-the-tupilak", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3403, + "fields": { + "parent": "deepm_greater-maze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3404, + "fields": { + "parent": "deepm_greater-seal-of-sanctuary", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3405, + "fields": { + "parent": "deepm_greater-seal-of-sanctuary", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3406, + "fields": { + "parent": "deepm_green-decay", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3407, + "fields": { + "parent": "deepm_green-decay", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3408, + "fields": { + "parent": "deepm_grudge-match", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3410, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "2 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3411, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3412, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "4 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3413, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3414, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3415, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "7 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3416, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3417, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3418, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3420, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3421, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3422, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3423, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3424, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3425, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3426, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3427, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3428, + "fields": { + "parent": "deepm_guiding-star", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3429, + "fields": { + "parent": "deepm_guiding-star", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3430, + "fields": { + "parent": "deepm_hamstring", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3431, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_1", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3432, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_2", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3433, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_3", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3434, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_4", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3435, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_5", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3436, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_6", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3437, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_7", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3438, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_8", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3439, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_9", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3440, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_10", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3441, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_11", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3442, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_12", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3443, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_13", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3444, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_14", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3445, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_15", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3446, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_16", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3447, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_17", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3448, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_18", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3449, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_19", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3450, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_20", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3451, + "fields": { + "parent": "deepm_hard-heart", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3453, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3454, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3455, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3456, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3457, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3458, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3459, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3460, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3461, + "fields": { + "parent": "deepm_harry", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3463, + "fields": { + "parent": "deepm_harry", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3464, + "fields": { + "parent": "deepm_harry", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3465, + "fields": { + "parent": "deepm_harry", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3466, + "fields": { + "parent": "deepm_harry", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3467, + "fields": { + "parent": "deepm_harry", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3468, + "fields": { + "parent": "deepm_harrying-hounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3470, + "fields": { + "parent": "deepm_harrying-hounds", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "12 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3471, + "fields": { + "parent": "deepm_harrying-hounds", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "16 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3472, + "fields": { + "parent": "deepm_harrying-hounds", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "20 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3473, + "fields": { + "parent": "deepm_harrying-hounds", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3474, + "fields": { + "parent": "deepm_harsh-light-of-summers-glare", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3475, + "fields": { + "parent": "deepm_heart-seeking-arrow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3477, + "fields": { + "parent": "deepm_heart-seeking-arrow", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3478, + "fields": { + "parent": "deepm_heart-seeking-arrow", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3479, + "fields": { + "parent": "deepm_heart-seeking-arrow", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3480, + "fields": { + "parent": "deepm_heart-seeking-arrow", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3481, + "fields": { + "parent": "deepm_heart-seeking-arrow", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3482, + "fields": { + "parent": "deepm_heart-to-heart", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3483, + "fields": { + "parent": "deepm_heartache", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3485, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3486, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3487, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3488, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3489, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3490, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3491, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3492, + "fields": { + "parent": "deepm_heartstop", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3493, + "fields": { + "parent": "deepm_heartstrike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3494, + "fields": { + "parent": "deepm_heavenly-crown", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3495, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3497, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3498, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3499, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3500, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3501, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3502, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3503, + "fields": { + "parent": "deepm_hematomancy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3504, + "fields": { + "parent": "deepm_heros-steel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3505, + "fields": { + "parent": "deepm_hide-in-ones-shadow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3506, + "fields": { + "parent": "deepm_hoarfrost", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3507, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3508, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3509, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3510, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3511, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_5", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3512, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_6", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3513, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_7", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3514, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_8", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3515, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_9", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3516, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_10", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3517, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_11", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3518, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_12", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3519, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_13", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3520, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_14", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3521, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_15", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3522, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_16", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3523, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_17", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3524, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_18", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3525, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_19", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3526, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_20", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3527, + "fields": { + "parent": "deepm_hobble", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3528, + "fields": { + "parent": "deepm_hobble-mount", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3530, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_2", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3531, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_3", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3532, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_4", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3533, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_5", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3534, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_6", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3535, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_7", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3536, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_8", + "damage_roll": "16d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3537, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_9", + "damage_roll": "18d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3538, + "fields": { + "parent": "deepm_holy-ground", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3540, + "fields": { + "parent": "deepm_holy-ground", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3541, + "fields": { + "parent": "deepm_holy-ground", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3542, + "fields": { + "parent": "deepm_holy-ground", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3543, + "fields": { + "parent": "deepm_holy-ground", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3544, + "fields": { + "parent": "deepm_hone-blade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3545, + "fields": { + "parent": "deepm_hunger-of-leng", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3546, + "fields": { + "parent": "deepm_hunters-endurance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3547, + "fields": { + "parent": "deepm_hunting-stand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3548, + "fields": { + "parent": "deepm_ice-fortress", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3550, + "fields": { + "parent": "deepm_ice-fortress", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3551, + "fields": { + "parent": "deepm_ice-fortress", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3552, + "fields": { + "parent": "deepm_ice-fortress", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3553, + "fields": { + "parent": "deepm_ice-fortress", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3554, + "fields": { + "parent": "deepm_ice-hammer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3556, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3557, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3558, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3559, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3560, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3561, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3562, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3563, + "fields": { + "parent": "deepm_ice-soldiers", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3565, + "fields": { + "parent": "deepm_ice-soldiers", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3566, + "fields": { + "parent": "deepm_ice-soldiers", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3567, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3569, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3570, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3571, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3572, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3573, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3574, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3575, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3576, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3577, + "fields": { + "parent": "deepm_icy-grasp-of-the-void", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3578, + "fields": { + "parent": "deepm_icy-manipulation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3579, + "fields": { + "parent": "deepm_ill-fated-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3580, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3582, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3583, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3584, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3585, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3586, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3587, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3588, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3589, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3590, + "fields": { + "parent": "deepm_impending-ally", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3592, + "fields": { + "parent": "deepm_impending-ally", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3593, + "fields": { + "parent": "deepm_impending-ally", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3594, + "fields": { + "parent": "deepm_impending-ally", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3595, + "fields": { + "parent": "deepm_impending-ally", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3596, + "fields": { + "parent": "deepm_impending-ally", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3597, + "fields": { + "parent": "deepm_impending-ally", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3598, + "fields": { + "parent": "deepm_innocuous-aspect", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3599, + "fields": { + "parent": "deepm_insightful-maneuver", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3600, + "fields": { + "parent": "deepm_inspiring-speech", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3601, + "fields": { + "parent": "deepm_instant-fortification", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3602, + "fields": { + "parent": "deepm_instant-fortification", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3604, + "fields": { + "parent": "deepm_instant-fortification", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3605, + "fields": { + "parent": "deepm_instant-fortification", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3606, + "fields": { + "parent": "deepm_instant-fortification", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3607, + "fields": { + "parent": "deepm_instant-fortification", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3608, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3609, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3611, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3612, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3613, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3614, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3615, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3616, + "fields": { + "parent": "deepm_instant-snare", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3618, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3619, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3620, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3621, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3622, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3623, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3624, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3625, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3627, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3628, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3629, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3630, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3631, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3632, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3633, + "fields": { + "parent": "deepm_iron-hand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3634, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3636, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3637, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3638, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3639, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3640, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3641, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3642, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3643, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3644, + "fields": { + "parent": "deepm_keening-wail", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3646, + "fields": { + "parent": "deepm_keening-wail", + "type": "slot_level_5", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3647, + "fields": { + "parent": "deepm_keening-wail", + "type": "slot_level_6", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3648, + "fields": { + "parent": "deepm_keening-wail", + "type": "slot_level_7", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3649, + "fields": { + "parent": "deepm_keening-wail", + "type": "slot_level_8", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3650, + "fields": { + "parent": "deepm_keening-wail", + "type": "slot_level_9", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3651, + "fields": { + "parent": "deepm_killing-fields", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3652, + "fields": { + "parent": "deepm_kiss-of-the-succubus", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3654, + "fields": { + "parent": "deepm_kiss-of-the-succubus", + "type": "slot_level_6", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3655, + "fields": { + "parent": "deepm_kiss-of-the-succubus", + "type": "slot_level_7", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3656, + "fields": { + "parent": "deepm_kiss-of-the-succubus", + "type": "slot_level_8", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3657, + "fields": { + "parent": "deepm_kiss-of-the-succubus", + "type": "slot_level_9", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3658, + "fields": { + "parent": "deepm_kobolds-fury", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3659, + "fields": { + "parent": "deepm_labyrinth-mastery", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3660, + "fields": { + "parent": "deepm_labyrinthine-howl", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3662, + "fields": { + "parent": "deepm_labyrinthine-howl", + "type": "slot_level_6", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3663, + "fields": { + "parent": "deepm_labyrinthine-howl", + "type": "slot_level_7", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3664, + "fields": { + "parent": "deepm_labyrinthine-howl", + "type": "slot_level_8", + "damage_roll": "13d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3665, + "fields": { + "parent": "deepm_labyrinthine-howl", + "type": "slot_level_9", + "damage_roll": "15d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3666, + "fields": { + "parent": "deepm_lacerate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3668, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_3", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3669, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_4", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3670, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_5", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3671, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_6", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3672, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_7", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3673, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_8", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3674, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_9", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3675, + "fields": { + "parent": "deepm_lair-sense", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3676, + "fields": { + "parent": "deepm_lair-sense", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3678, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "36 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3679, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3680, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "60 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3681, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3682, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "84 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3683, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "96 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3684, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "108 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3685, + "fields": { + "parent": "deepm_last-rays-of-the-dying-sun", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3687, + "fields": { + "parent": "deepm_last-rays-of-the-dying-sun", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3688, + "fields": { + "parent": "deepm_last-rays-of-the-dying-sun", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3689, + "fields": { + "parent": "deepm_lava-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3690, + "fields": { + "parent": "deepm_lay-to-rest", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3691, + "fields": { + "parent": "deepm_legend-killer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3692, + "fields": { + "parent": "deepm_legion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3693, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3695, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3696, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3697, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3698, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3699, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3700, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3701, + "fields": { + "parent": "deepm_lesser-maze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3702, + "fields": { + "parent": "deepm_life-drain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3704, + "fields": { + "parent": "deepm_life-drain", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3705, + "fields": { + "parent": "deepm_life-drain", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3706, + "fields": { + "parent": "deepm_life-drain", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3707, + "fields": { + "parent": "deepm_life-from-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3709, + "fields": { + "parent": "deepm_life-from-death", + "type": "slot_level_4", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3710, + "fields": { + "parent": "deepm_life-from-death", + "type": "slot_level_5", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3711, + "fields": { + "parent": "deepm_life-from-death", + "type": "slot_level_6", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3712, + "fields": { + "parent": "deepm_life-from-death", + "type": "slot_level_7", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3713, + "fields": { + "parent": "deepm_life-from-death", + "type": "slot_level_8", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3714, + "fields": { + "parent": "deepm_life-from-death", + "type": "slot_level_9", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3715, + "fields": { + "parent": "deepm_life-hack", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3716, + "fields": { + "parent": "deepm_life-sense", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3717, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3719, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3720, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3721, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3722, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3723, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3724, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3725, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3726, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3727, + "fields": { + "parent": "deepm_litany-of-sure-hands", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3728, + "fields": { + "parent": "deepm_living-shadows", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3729, + "fields": { + "parent": "deepm_lock-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3731, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3732, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3733, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3734, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3735, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3736, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3737, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3738, + "fields": { + "parent": "deepm_looping-trail", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3739, + "fields": { + "parent": "deepm_lovesick", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3741, + "fields": { + "parent": "deepm_lovesick", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3742, + "fields": { + "parent": "deepm_lovesick", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3743, + "fields": { + "parent": "deepm_lovesick", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3744, + "fields": { + "parent": "deepm_lovesick", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3745, + "fields": { + "parent": "deepm_lovesick", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3746, + "fields": { + "parent": "deepm_maddening-whispers", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3747, + "fields": { + "parent": "deepm_maim", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3748, + "fields": { + "parent": "deepm_malevolent-waves", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3749, + "fields": { + "parent": "deepm_mammons-due", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3750, + "fields": { + "parent": "deepm_mammons-due", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3751, + "fields": { + "parent": "deepm_mark-prey", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3753, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3754, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3755, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3756, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3757, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3758, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3759, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3760, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3762, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "slot_level_4", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3763, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "slot_level_5", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3764, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "slot_level_6", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3765, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "slot_level_7", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3766, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "slot_level_8", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3767, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "slot_level_9", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3768, + "fields": { + "parent": "deepm_mass-surge-dampener", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3769, + "fields": { + "parent": "deepm_mass-surge-dampener", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3770, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3772, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3773, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3774, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3775, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3776, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3777, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3778, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3779, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3780, + "fields": { + "parent": "deepm_memento-mori", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3781, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3783, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3784, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3785, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3786, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3787, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3788, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3789, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3790, + "fields": { + "parent": "deepm_mind-exchange", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3791, + "fields": { + "parent": "deepm_mind-exchange", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3792, + "fields": { + "parent": "deepm_mire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3793, + "fields": { + "parent": "deepm_misstep", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3794, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3796, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3797, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3798, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3799, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3800, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3801, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3802, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3803, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3805, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3806, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3807, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3808, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3809, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3810, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3811, + "fields": { + "parent": "deepm_moon-trap", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3812, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3814, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3815, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3816, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3817, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3818, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3819, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3820, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3821, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3822, + "fields": { + "parent": "deepm_mud-pack", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3823, + "fields": { + "parent": "deepm_mud-pack", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3825, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3826, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3827, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3828, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3829, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3830, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3831, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3832, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3833, + "fields": { + "parent": "deepm_negative-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3834, + "fields": { + "parent": "deepm_nether-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3836, + "fields": { + "parent": "deepm_nether-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3837, + "fields": { + "parent": "deepm_nether-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3838, + "fields": { + "parent": "deepm_nether-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3839, + "fields": { + "parent": "deepm_nether-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3840, + "fields": { + "parent": "deepm_nether-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3841, + "fields": { + "parent": "deepm_night-terrors", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3842, + "fields": { + "parent": "deepm_nightfall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3843, + "fields": { + "parent": "deepm_nightfall", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3844, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3846, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3847, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3848, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3849, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3850, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3851, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3852, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3853, + "fields": { + "parent": "deepm_not-dead-yet", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3854, + "fields": { + "parent": "deepm_not-dead-yet", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3855, + "fields": { + "parent": "deepm_not-this-day", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3856, + "fields": { + "parent": "deepm_orb-of-light", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3858, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_3", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3859, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3860, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3861, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3862, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3863, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3864, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3865, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3867, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3868, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3869, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3870, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3871, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3872, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3873, + "fields": { + "parent": "deepm_paragon-of-chaos", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3874, + "fields": { + "parent": "deepm_pendulum", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3875, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3877, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3878, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3879, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3880, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3881, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3882, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3883, + "fields": { + "parent": "deepm_pitfall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3884, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3886, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3887, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3888, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3889, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3890, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3891, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3892, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3893, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3895, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3896, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3897, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3898, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3899, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3900, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3901, + "fields": { + "parent": "deepm_power-word-kneel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3902, + "fields": { + "parent": "deepm_power-word-pain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3903, + "fields": { + "parent": "deepm_primal-infusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3904, + "fields": { + "parent": "deepm_prismatic-ray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3905, + "fields": { + "parent": "deepm_protection-from-the-void", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3906, + "fields": { + "parent": "deepm_protective-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3908, + "fields": { + "parent": "deepm_protective-ice", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3909, + "fields": { + "parent": "deepm_protective-ice", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3910, + "fields": { + "parent": "deepm_protective-ice", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3911, + "fields": { + "parent": "deepm_protective-ice", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3912, + "fields": { + "parent": "deepm_protective-ice", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3913, + "fields": { + "parent": "deepm_protective-ice", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3914, + "fields": { + "parent": "deepm_puff-of-smoke", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3915, + "fields": { + "parent": "deepm_pummelstone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3916, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_1", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3917, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_2", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3918, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_3", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3919, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_4", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3920, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_5", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3921, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_6", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3922, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_7", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3923, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_8", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3924, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_9", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3925, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_10", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3926, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_11", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3927, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_12", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3928, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_13", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3929, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_14", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3930, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_15", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3931, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_16", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3932, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_17", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3933, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_18", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3934, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_19", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3935, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_20", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3936, + "fields": { + "parent": "deepm_pyroclasm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3937, + "fields": { + "parent": "deepm_quick-time", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3939, + "fields": { + "parent": "deepm_quick-time", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3940, + "fields": { + "parent": "deepm_quick-time", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3941, + "fields": { + "parent": "deepm_quick-time", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3942, + "fields": { + "parent": "deepm_quick-time", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3943, + "fields": { + "parent": "deepm_quick-time", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3944, + "fields": { + "parent": "deepm_quicken", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3945, + "fields": { + "parent": "deepm_quicksilver-mantle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3946, + "fields": { + "parent": "deepm_quintessence", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3947, + "fields": { + "parent": "deepm_raid-the-lair", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3948, + "fields": { + "parent": "deepm_rain-of-blades", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3950, + "fields": { + "parent": "deepm_rain-of-blades", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3951, + "fields": { + "parent": "deepm_rain-of-blades", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3952, + "fields": { + "parent": "deepm_rain-of-blades", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3953, + "fields": { + "parent": "deepm_rain-of-blades", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3954, + "fields": { + "parent": "deepm_ray-of-alchemical-negation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3955, + "fields": { + "parent": "deepm_ray-of-life-suppression", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3956, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3958, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3959, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3960, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3961, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3962, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3963, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3964, + "fields": { + "parent": "deepm_reposition", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3966, + "fields": { + "parent": "deepm_reposition", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3967, + "fields": { + "parent": "deepm_reposition", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3968, + "fields": { + "parent": "deepm_reposition", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3969, + "fields": { + "parent": "deepm_reposition", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3970, + "fields": { + "parent": "deepm_reposition", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3971, + "fields": { + "parent": "deepm_reset", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3973, + "fields": { + "parent": "deepm_reset", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3974, + "fields": { + "parent": "deepm_reset", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3975, + "fields": { + "parent": "deepm_reset", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3976, + "fields": { + "parent": "deepm_reset", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3977, + "fields": { + "parent": "deepm_reset", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3978, + "fields": { + "parent": "deepm_reverberate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3980, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3981, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3982, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3983, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3984, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3985, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3986, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3987, + "fields": { + "parent": "deepm_revive-beast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3988, + "fields": { + "parent": "deepm_right-the-stars", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3989, + "fields": { + "parent": "deepm_ring-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3991, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3992, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3993, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3994, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3995, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3996, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3997, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3998, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3999, + "fields": { + "parent": "deepm_ring-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4000, + "fields": { + "parent": "deepm_riptide", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4001, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4003, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_3", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4004, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4005, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4006, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4007, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4008, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4009, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4010, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4012, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4013, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4014, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4015, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4016, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4017, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4018, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4019, + "fields": { + "parent": "deepm_rune-of-imprisonment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4020, + "fields": { + "parent": "deepm_salt-lash", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4021, + "fields": { + "parent": "deepm_sand-ship", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4022, + "fields": { + "parent": "deepm_sand-ship", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4023, + "fields": { + "parent": "deepm_sanguine-horror", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4024, + "fields": { + "parent": "deepm_scale-rot", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4026, + "fields": { + "parent": "deepm_scale-rot", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4027, + "fields": { + "parent": "deepm_scale-rot", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4028, + "fields": { + "parent": "deepm_scale-rot", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4029, + "fields": { + "parent": "deepm_scale-rot", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4030, + "fields": { + "parent": "deepm_scale-rot", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4031, + "fields": { + "parent": "deepm_scentless", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4032, + "fields": { + "parent": "deepm_screaming-ray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4034, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4035, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4036, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4037, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4038, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4039, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4040, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4041, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4042, + "fields": { + "parent": "deepm_scribe", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4043, + "fields": { + "parent": "deepm_scry-ambush", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4044, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4046, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4047, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4048, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4049, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4050, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4051, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4052, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4053, + "fields": { + "parent": "deepm_seal-of-sanctuary", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4054, + "fields": { + "parent": "deepm_seal-of-sanctuary", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4055, + "fields": { + "parent": "deepm_searing-sun", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4056, + "fields": { + "parent": "deepm_see-beyond", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4057, + "fields": { + "parent": "deepm_seed-of-destruction", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4058, + "fields": { + "parent": "deepm_seed-of-destruction", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4059, + "fields": { + "parent": "deepm_seeping-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4060, + "fields": { + "parent": "deepm_seers-reaction", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4061, + "fields": { + "parent": "deepm_semblance-of-dread", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4062, + "fields": { + "parent": "deepm_shade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4064, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "20 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4065, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4066, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "40 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4067, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "50 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4068, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "60 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4069, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "70 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4070, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "80 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4071, + "fields": { + "parent": "deepm_shadow-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4072, + "fields": { + "parent": "deepm_shadow-bite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4073, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4074, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4075, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4076, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4077, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4078, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4079, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4080, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4081, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4082, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4083, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4084, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4085, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4086, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4087, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4088, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4089, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4090, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4091, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4092, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4093, + "fields": { + "parent": "deepm_shadow-blindness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4094, + "fields": { + "parent": "deepm_shadow-hands", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4096, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4097, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4098, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4099, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4100, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4101, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4102, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4103, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4104, + "fields": { + "parent": "deepm_shadow-monsters", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4106, + "fields": { + "parent": "deepm_shadow-monsters", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4107, + "fields": { + "parent": "deepm_shadow-monsters", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4108, + "fields": { + "parent": "deepm_shadow-monsters", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4109, + "fields": { + "parent": "deepm_shadow-monsters", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4110, + "fields": { + "parent": "deepm_shadow-monsters", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4111, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4113, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_3", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4114, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4115, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4116, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4117, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4118, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4119, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4120, + "fields": { + "parent": "deepm_shadow-trove", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4121, + "fields": { + "parent": "deepm_shadow-trove", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4123, + "fields": { + "parent": "deepm_shadow-trove", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4124, + "fields": { + "parent": "deepm_shadow-trove", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4125, + "fields": { + "parent": "deepm_shadow-trove", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4126, + "fields": { + "parent": "deepm_shadow-trove", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "9 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4127, + "fields": { + "parent": "deepm_shadow-trove", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "11 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4128, + "fields": { + "parent": "deepm_shadow-trove", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "13 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4129, + "fields": { + "parent": "deepm_shadows-brought-to-light", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4130, + "fields": { + "parent": "deepm_shadows-brought-to-light", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4131, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4132, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4134, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4135, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4136, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4137, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4138, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4139, + "fields": { + "parent": "deepm_shared-sacrifice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4140, + "fields": { + "parent": "deepm_sheen-of-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4141, + "fields": { + "parent": "deepm_shifting-the-odds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4142, + "fields": { + "parent": "deepm_shiver", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4143, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4144, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4145, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4146, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4147, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4148, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4149, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4150, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4151, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4152, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4153, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4154, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4155, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4156, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4157, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4158, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4159, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4160, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4161, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4162, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4163, + "fields": { + "parent": "deepm_shroud-of-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4164, + "fields": { + "parent": "deepm_sidestep-arrow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4165, + "fields": { + "parent": "deepm_sign-of-koth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4167, + "fields": { + "parent": "deepm_sign-of-koth", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4168, + "fields": { + "parent": "deepm_sign-of-koth", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4169, + "fields": { + "parent": "deepm_silhouette", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4170, + "fields": { + "parent": "deepm_sir-mittinzs-move-curse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4171, + "fields": { + "parent": "deepm_sir-mittinzs-move-curse", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4172, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4173, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4175, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4176, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4177, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4178, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4179, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4180, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4181, + "fields": { + "parent": "deepm_slippery-fingers", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4182, + "fields": { + "parent": "deepm_slither", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4184, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4185, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4186, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4187, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4188, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4189, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4190, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4191, + "fields": { + "parent": "deepm_snow-boulder", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4192, + "fields": { + "parent": "deepm_snow-fort", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4193, + "fields": { + "parent": "deepm_snowy-coat", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4195, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4196, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4197, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4198, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4199, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4200, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4201, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4202, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4203, + "fields": { + "parent": "deepm_song-of-the-forest", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4204, + "fields": { + "parent": "deepm_song-of-the-forest", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4205, + "fields": { + "parent": "deepm_speak-with-inanimate-object", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4206, + "fields": { + "parent": "deepm_speak-with-inanimate-object", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4207, + "fields": { + "parent": "deepm_spin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4208, + "fields": { + "parent": "deepm_spinning-axes", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4210, + "fields": { + "parent": "deepm_spinning-axes", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4211, + "fields": { + "parent": "deepm_spinning-axes", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4212, + "fields": { + "parent": "deepm_spinning-axes", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4213, + "fields": { + "parent": "deepm_spinning-axes", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4214, + "fields": { + "parent": "deepm_spinning-axes", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4215, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4217, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4218, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4219, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4220, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4221, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4222, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4223, + "fields": { + "parent": "deepm_spur-mount", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4224, + "fields": { + "parent": "deepm_staff-of-violet-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4226, + "fields": { + "parent": "deepm_staff-of-violet-fire", + "type": "slot_level_5", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4227, + "fields": { + "parent": "deepm_staff-of-violet-fire", + "type": "slot_level_6", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4228, + "fields": { + "parent": "deepm_staff-of-violet-fire", + "type": "slot_level_7", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4229, + "fields": { + "parent": "deepm_staff-of-violet-fire", + "type": "slot_level_8", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4230, + "fields": { + "parent": "deepm_staff-of-violet-fire", + "type": "slot_level_9", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4231, + "fields": { + "parent": "deepm_stanch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4232, + "fields": { + "parent": "deepm_starburst", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4233, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4234, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4235, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4236, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4237, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4238, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4239, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4240, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4241, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4242, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4243, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4244, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4245, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4246, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4247, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4248, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4249, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4250, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4251, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4252, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4253, + "fields": { + "parent": "deepm_starfall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4255, + "fields": { + "parent": "deepm_starfall", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4256, + "fields": { + "parent": "deepm_starfall", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4257, + "fields": { + "parent": "deepm_starfall", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4258, + "fields": { + "parent": "deepm_starfall", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4259, + "fields": { + "parent": "deepm_starry-vision", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4261, + "fields": { + "parent": "deepm_starry-vision", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4262, + "fields": { + "parent": "deepm_starry-vision", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4263, + "fields": { + "parent": "deepm_stars-heart", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4264, + "fields": { + "parent": "deepm_steal-warmth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4266, + "fields": { + "parent": "deepm_steal-warmth", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4267, + "fields": { + "parent": "deepm_steal-warmth", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4268, + "fields": { + "parent": "deepm_steal-warmth", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4269, + "fields": { + "parent": "deepm_steal-warmth", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4270, + "fields": { + "parent": "deepm_steal-warmth", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4271, + "fields": { + "parent": "deepm_steal-warmth", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4272, + "fields": { + "parent": "deepm_steam-blast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4274, + "fields": { + "parent": "deepm_steam-blast", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4275, + "fields": { + "parent": "deepm_steam-blast", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4276, + "fields": { + "parent": "deepm_steam-blast", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4277, + "fields": { + "parent": "deepm_steam-blast", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4278, + "fields": { + "parent": "deepm_steam-blast", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4279, + "fields": { + "parent": "deepm_steam-whistle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4280, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4282, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4283, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4284, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4285, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4286, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4287, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4288, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4289, + "fields": { + "parent": "deepm_storm-of-wings", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4290, + "fields": { + "parent": "deepm_sudden-dawn", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4291, + "fields": { + "parent": "deepm_sudden-dawn", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4292, + "fields": { + "parent": "deepm_summon-eldritch-servitor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4293, + "fields": { + "parent": "deepm_summon-eldritch-servitor", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4295, + "fields": { + "parent": "deepm_summon-eldritch-servitor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4296, + "fields": { + "parent": "deepm_summon-eldritch-servitor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4297, + "fields": { + "parent": "deepm_summon-eldritch-servitor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4298, + "fields": { + "parent": "deepm_summon-eldritch-servitor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4299, + "fields": { + "parent": "deepm_summon-star", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4300, + "fields": { + "parent": "deepm_surge-dampener", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4301, + "fields": { + "parent": "deepm_surge-dampener", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4302, + "fields": { + "parent": "deepm_surprise-blessing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4303, + "fields": { + "parent": "deepm_symbol-of-sorcery", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4304, + "fields": { + "parent": "deepm_talons-of-a-hungry-land", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4306, + "fields": { + "parent": "deepm_talons-of-a-hungry-land", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4307, + "fields": { + "parent": "deepm_talons-of-a-hungry-land", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4308, + "fields": { + "parent": "deepm_targeting-foreknowledge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4309, + "fields": { + "parent": "deepm_thin-the-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4310, + "fields": { + "parent": "deepm_thousand-darts", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4312, + "fields": { + "parent": "deepm_thousand-darts", + "type": "slot_level_4", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4313, + "fields": { + "parent": "deepm_thousand-darts", + "type": "slot_level_5", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4314, + "fields": { + "parent": "deepm_thousand-darts", + "type": "slot_level_6", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4315, + "fields": { + "parent": "deepm_thousand-darts", + "type": "slot_level_7", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4316, + "fields": { + "parent": "deepm_thousand-darts", + "type": "slot_level_8", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4317, + "fields": { + "parent": "deepm_thousand-darts", + "type": "slot_level_9", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4318, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4320, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4321, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4322, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4323, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4324, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4325, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4326, + "fields": { + "parent": "deepm_thunder-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4327, + "fields": { + "parent": "deepm_thunderclap", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4328, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4330, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4331, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4332, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4333, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4334, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4335, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4336, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4337, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4338, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4340, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4341, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4342, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4343, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4344, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4345, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4346, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4347, + "fields": { + "parent": "deepm_thunderous-wave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4348, + "fields": { + "parent": "deepm_thunderstorm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4349, + "fields": { + "parent": "deepm_tidal-barrier", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4350, + "fields": { + "parent": "deepm_time-in-a-bottle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4351, + "fields": { + "parent": "deepm_time-jump", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4352, + "fields": { + "parent": "deepm_time-loop", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4353, + "fields": { + "parent": "deepm_time-slippage", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4354, + "fields": { + "parent": "deepm_time-step", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4355, + "fields": { + "parent": "deepm_time-vortex", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4357, + "fields": { + "parent": "deepm_time-vortex", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4358, + "fields": { + "parent": "deepm_time-vortex", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4359, + "fields": { + "parent": "deepm_time-vortex", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4360, + "fields": { + "parent": "deepm_time-vortex", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4361, + "fields": { + "parent": "deepm_time-vortex", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4362, + "fields": { + "parent": "deepm_timely-distraction", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4363, + "fields": { + "parent": "deepm_tireless", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4364, + "fields": { + "parent": "deepm_tongue-of-sand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4365, + "fields": { + "parent": "deepm_tongue-of-sand", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4366, + "fields": { + "parent": "deepm_tongue-tied", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4367, + "fields": { + "parent": "deepm_torrent-of-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4368, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4370, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "slot_level_4", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4371, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "slot_level_5", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4372, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "slot_level_6", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4373, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "slot_level_7", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4374, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "slot_level_8", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4375, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "slot_level_9", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4376, + "fields": { + "parent": "deepm_tracer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4377, + "fields": { + "parent": "deepm_treasure-chasm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4378, + "fields": { + "parent": "deepm_tree-heal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4379, + "fields": { + "parent": "deepm_tree-running", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4380, + "fields": { + "parent": "deepm_tree-speak", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4381, + "fields": { + "parent": "deepm_trench", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4383, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4384, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4385, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4386, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4387, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4388, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4389, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4390, + "fields": { + "parent": "deepm_trick-question", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4391, + "fields": { + "parent": "deepm_triumph-of-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4392, + "fields": { + "parent": "deepm_twist-the-skein", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4393, + "fields": { + "parent": "deepm_umbral-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4394, + "fields": { + "parent": "deepm_uncontrollable-transformation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4395, + "fields": { + "parent": "deepm_uncontrollable-transformation", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4397, + "fields": { + "parent": "deepm_uncontrollable-transformation", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4398, + "fields": { + "parent": "deepm_uncontrollable-transformation", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4399, + "fields": { + "parent": "deepm_undermine-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4400, + "fields": { + "parent": "deepm_unholy-defiance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4401, + "fields": { + "parent": "deepm_unleash-effigy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4402, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4404, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "30 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4405, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "35 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4406, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "40 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4407, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "45 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4408, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "50 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4409, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "55 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4410, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "60 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4411, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "65 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4412, + "fields": { + "parent": "deepm_unseen-strangler", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4413, + "fields": { + "parent": "deepm_unseen-strangler", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4414, + "fields": { + "parent": "deepm_vine-trestle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4415, + "fields": { + "parent": "deepm_vine-trestle", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4417, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4418, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4419, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4420, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4421, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4422, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4423, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4424, + "fields": { + "parent": "deepm_visage-of-madness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4425, + "fields": { + "parent": "deepm_vital-mark", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4426, + "fields": { + "parent": "deepm_vital-mark", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4428, + "fields": { + "parent": "deepm_vital-mark", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4429, + "fields": { + "parent": "deepm_vital-mark", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4430, + "fields": { + "parent": "deepm_vital-mark", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4431, + "fields": { + "parent": "deepm_vital-mark", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4432, + "fields": { + "parent": "deepm_vital-mark", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4433, + "fields": { + "parent": "deepm_vital-mark", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4434, + "fields": { + "parent": "deepm_void-rift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4435, + "fields": { + "parent": "deepm_void-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4437, + "fields": { + "parent": "deepm_void-strike", + "type": "slot_level_4", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4438, + "fields": { + "parent": "deepm_void-strike", + "type": "slot_level_5", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4439, + "fields": { + "parent": "deepm_void-strike", + "type": "slot_level_6", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4440, + "fields": { + "parent": "deepm_void-strike", + "type": "slot_level_7", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4441, + "fields": { + "parent": "deepm_void-strike", + "type": "slot_level_8", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4442, + "fields": { + "parent": "deepm_void-strike", + "type": "slot_level_9", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4443, + "fields": { + "parent": "deepm_volley-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4444, + "fields": { + "parent": "deepm_vomit-tentacles", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4445, + "fields": { + "parent": "deepm_voorish-sign", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4447, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4448, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4449, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4450, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4451, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4452, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4453, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4454, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4455, + "fields": { + "parent": "deepm_waft", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4456, + "fields": { + "parent": "deepm_walk-the-twisted-path", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4458, + "fields": { + "parent": "deepm_walk-the-twisted-path", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4459, + "fields": { + "parent": "deepm_walk-the-twisted-path", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4460, + "fields": { + "parent": "deepm_walk-the-twisted-path", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4461, + "fields": { + "parent": "deepm_walking-wall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4462, + "fields": { + "parent": "deepm_wall-of-time", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4463, + "fields": { + "parent": "deepm_warning-shout", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4464, + "fields": { + "parent": "deepm_warp-mind-and-matter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4465, + "fields": { + "parent": "deepm_warp-mind-and-matter", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4466, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4468, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4469, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4470, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4471, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4472, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4473, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4474, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4475, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4476, + "fields": { + "parent": "deepm_weilers-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4478, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4479, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4480, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4481, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4482, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4483, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4484, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4485, + "fields": { + "parent": "deepm_wild-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4487, + "fields": { + "parent": "deepm_wild-shield", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4488, + "fields": { + "parent": "deepm_wild-shield", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4489, + "fields": { + "parent": "deepm_wild-shield", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4490, + "fields": { + "parent": "deepm_wild-shield", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4491, + "fields": { + "parent": "deepm_wild-shield", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4492, + "fields": { + "parent": "deepm_wind-lash", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4493, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_1", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4494, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_2", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4495, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_3", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4496, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_4", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4497, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4498, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4499, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4500, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4501, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4502, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4503, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4504, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4505, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4506, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4507, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4508, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4509, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4510, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4511, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4512, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4513, + "fields": { + "parent": "deepm_wind-of-the-hereafter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4514, + "fields": { + "parent": "deepm_wind-tunnel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4515, + "fields": { + "parent": "deepm_winterdark", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4516, + "fields": { + "parent": "deepm_winters-radiance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4517, + "fields": { + "parent": "deepm_wintry-glide", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4518, + "fields": { + "parent": "deepm_withered-sight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4520, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4521, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4522, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4523, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4524, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4525, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4526, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4527, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4528, + "fields": { + "parent": "deepm_wolfsong", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4530, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4531, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4532, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4533, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4534, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4535, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4536, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4537, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4538, + "fields": { + "parent": "deepm_word-of-misfortune", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4539, + "fields": { + "parent": "deepm_wresting-wind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4540, + "fields": { + "parent": "deepm_writhing-arms", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4542, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4543, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4544, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4545, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4546, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4547, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4548, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4549, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4550, + "fields": { + "parent": "deepm_yellow-sign", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + } +] \ No newline at end of file diff --git a/data/v2/kobold-press/deepmx/Spell.json b/data/v2/kobold-press/deepmx/Spell.json index 7c7f8543..d1a444f1 100644 --- a/data/v2/kobold-press/deepmx/Spell.json +++ b/data/v2/kobold-press/deepmx/Spell.json @@ -1,2004 +1,2004 @@ [ -{ - "model": "api_v2.spell", - "pk": "absolute-command", - "fields": { - "name": "Absolute Command", - "desc": "Deep Magic: clockwork You can control a construct you have built with a challenge rating of 6 or less. You can manipulate objects with your construct as precisely as its construction allows, and you perceive its surroundings through its sensory inputs as if you inhabited its body. The construct uses the caster's Proficiency bonus (modified by the construct's Strength and Dexterity scores). You can use the manipulators of the construct to perform any number of skill-based tasks, using the construct's Strength and Dexterity modifiers when using skills based on those particular abilities. Your body remains immobile, as if paralyzed, for the duration of the spell. The construct must remain within 100 feet of you. If it moves beyond this distance, the spell immediately ends and the caster's mind returns to his or her body.", - "document": "deepmx", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using higher-level spell slots, you may control a construct with a challenge rating 2 higher for each slot level you use above 4th. The construct's range also increases by 10 feet for each slot level.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "amplify-ley-field", - "fields": { - "name": "Amplify Ley Field", - "desc": "You create a faintly shimmering field of charged energy around yourself. Within that area, the intensity of ley lines you're able to draw on increases from weak to strong, or from strong to titanic. If no ley lines are near enough for you to draw on, you can treat the area of the spell itself as an unlocked, weak ley line.", - "document": "deepmx", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "animate-construct", - "fields": { - "name": "Animate Construct", - "desc": "Deep Magic: clockwork This spell animates a carefully prepared construct of Tiny size. The object acts immediately, on your turn, and can attack your opponents to the best of its ability. You can direct it not to attack, to attack particular enemies, or to perform other actions. You choose the object to animate, and you can change that choice each time you cast the spell. The cost of the body to be animated is 10 gp x its hit points. The body can be reused any number of times, provided it isn't severely damaged or destroyed. If no prepared construct body is available, you can animate a mass of loose metal or stone instead. Before casting, the loose objects must be arranged in a suitable shape (taking up to a minute), and the construct's hit points are halved. An animated construct has a Constitution of 10, Intelligence and Wisdom 3, and Charisma 1. Other characteristics are determined by the construct's size as follows. Size HP AC Attack STR DEX Spell Slot Tiny 15 12 +3, 1d4+4 4 16 1st Small 25 13 +4, 1d8+2 6 14 2nd Medium 40 14 +5, 2d6+1 10 12 3rd Large 50 15 +6, 2d10+2 14 10 4th Huge 80 16 +8, 2d12+4 18 8 5th Gargantuan 100 17 +10, 4d8+6 20 6 6th", - "document": "deepmx", - "level": 1, - "school": "transmutation", - "higher_level": "Casting this spell using higher level spell slots allows you to increase the size of the construct animated, as shown on the table.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "anomalous-object", - "fields": { - "name": "Anomalous Object", - "desc": "Deep Magic: temporal By touching an object, you retrieve another version of the object from elsewhere in time. If the object is attended, you must succeed on a melee spell attack roll against the creature holding or controlling the object. Any effect that affects the original object also affects the duplicate (charges spent, damage taken, etc.) and any effect that affects the duplicate also affects the original object. If either object is destroyed, both are destroyed. This spell does not affect sentient items or unique artifacts.", - "document": "deepmx", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "armored-heart", - "fields": { - "name": "Armored Heart", - "desc": "Deep Magic: clockwork The targeted creature gains resistance to bludgeoning, slashing, and piercing damage. This resistance can be overcome with adamantine or magical weapons.", - "document": "deepmx", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "armored-shell", - "fields": { - "name": "Armored Shell", - "desc": "Deep Magic: clockwork This spell creates a suit of magical studded leather armor (AC 12). It does not grant you proficiency in its use. Casters without the appropriate armor proficiency suffer disadvantage on any ability check, saving throw, or attack roll that involves Strength or Dexterity and cannot cast spells.", - "document": "deepmx", - "level": 1, - "school": "conjuration", - "higher_level": "Casting armored shell using a higher-level spell slot creates stronger armor: a chain shirt (AC 13) at level 2, scale mail (AC 14) at level 3, chain mail (AC 16) at level 4, and plate armor (AC 18) at level 5.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "banshee-wail", - "fields": { - "name": "Banshee Wail", - "desc": "You emit a soul-shattering wail. Every creature within a 30-foot cone who hears the wail must make a Wisdom saving throw. Those that fail take 6d10 psychic damage and become frightened of you; a frightened creature repeats the saving throw at the end of its turn, ending the effect on itself on a success. Those that succeed take 3d10 psychic damage and aren't frightened. This spell has no effect on constructs and undead.", - "document": "deepmx", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "beguiling-gift", - "fields": { - "name": "Beguiling Gift", - "desc": "Deep Magic: hieroglyph You implant a powerful suggestion into an item as you hand it to someone. If the person you hand it to accepts it willingly, they must make a successful Wisdom saving throw or use the object as it's meant to be used at their first opportunity: writing with a pen, consuming food or drink, wearing clothing, drawing a weapon, etc. After the first use, they're under no compulsion to continue using the object or even to keep it.", - "document": "deepmx", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "borrowing", - "fields": { - "name": "Borrowing", - "desc": "By touching a target, you gain one sense, movement type and speed, feat, language, immunity, or extraordinary ability of the target for the duration of the spell. The target also retains the use of the borrowed ability. An unwilling target prevents the effect with a successful Constitution saving throw. The target can be a living creature or one that's been dead no longer than 1 minute; a corpse makes no saving throw. You can possess only one borrowed power at a time.", - "document": "deepmx", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level, its duration increases to 1 hour. Additionally, the target loses the stolen power for the duration of the spell.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "call-the-hunter", - "fields": { - "name": "Call the Hunter", - "desc": "Deep Magic: clockwork You detach a portion of your soul to become the embodiment of justice in the form of a clockwork outsider known as a Zelekhut who will serve at your commands for the duration, so long as those commands are consistent with its desire to punish wrongdoers. You may give the creature commands as a bonus action; it acts either immediately before or after you.", - "document": "deepmx", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "circle-of-devestation", - "fields": { - "name": "Circle of Devestation", - "desc": "You create a 10-foot tall, 20-foot radius ring of destructive energy around a point you can see within range. The area inside the ring is difficult terrain. When you cast the spell and as a bonus action on each of your turns, you can choose one of the following damage types: cold, fire, lightning, necrotic, or radiant. Creatures and objects that touch the ring, that are inside it when it's created, or that end their turn inside the ring take 6d6 damage of the chosen type, or half damage with a successful Constitution saving throw. A creature or object reduced to 0 hit points by the spell is reduced to fine ash. At the start of each of your subsequent turns, the ring's radius expands by 20 feet. Any creatures or objects touched by the expanding ring are subject to its effects immediately.", - "document": "deepmx", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "1 mile", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "cloying-darkness", - "fields": { - "name": "Cloying Darkness", - "desc": "You reach out with a hand of decaying shadows. Make a ranged spell attack. If it hits, the target takes 2d8 necrotic damage and must make a Constitution saving throw. If it fails, its visual organs are enveloped in shadow until the start of your next turn, causing it to treat all lighting as if it's one step lower in intensity (it treats bright light as dim, dim light as darkness, and darkness as magical darkness).", - "document": "deepmx", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "2d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "cosmic-alignment", - "fields": { - "name": "Cosmic Alignment", - "desc": "Deep Magic: illumination You arrange the forces of the cosmos to your benefit. Choose a cosmic event from the Comprehension of the Starry Sky ability that affects spellcasting (conjunction, eclipse, or nova; listed after the spell). You cast spells as if under the effect of the cosmic event until the next sunrise or 24 hours have passed. When the ability requires you to expend your insight, you expend your ritual focus instead. This spell must be cast outdoors, and the casting of this spell is obvious to everyone within 100 miles of its casting when an appropriate symbol, such as a flaming comet, appears in the sky above your location while you are casting the spell. Conjunction: Planetary conjunctions destabilize minds and emotions. You can give one creature you can see disadvantage on a saving throw against one enchantment or illusion spell cast by you. Eclipse: Eclipses plunge the world into darkness and strengthen connections to the shadow plane. When you cast a spell of 5th level or lower that causes necrotic damage, you can reroll a number of damage dice up to your Intelligence modifier (minimum of one). You must use the new rolls. Nova: The nova is a powerful aid to divination spells. You can treat one divination spell you cast as though you had used a spell slot one level higher than the slot actually used.", - "document": "deepmx", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "cruor-of-visions", - "fields": { - "name": "Cruor of Visions", - "desc": "You prick your finger with a bone needle as you cast this spell, taking 1 necrotic damage. This drop of blood must be caught in a container such as a platter or a bowl, where it grows into a pool 1 foot in diameter. This pool acts as a crystal ball for the purpose of scrying. If you place a drop (or dried flakes) of another creature's blood in the cruor of visions, the creature has disadvantage on any Wisdom saving throw to resist scrying. Additionally, you can treat the pool of blood as a crystal ball of telepathy (see the crystal ball description in the Fifth Edition rules). I When you cast this spell using a spell slot of 7th level or higher, the pool of blood acts as either a crystal ball of mind reading or a crystal ball of true seeing (your choice when the spell is cast).", - "document": "deepmx", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "extract-foyson", - "fields": { - "name": "Extract Foyson", - "desc": "You extract the goodness in food, pulling all the nutrition out of three days' worth of meals and concentrating it into about a tablespoon of bland, flourlike powder. The flour can be mixed with liquid and drunk or baked into elven bread. Foyson used in this way still imparts all the nutritional value of the original food, for the amount consumed. The original food appears unchanged and though it's still filling, it has no nutritional value. Someone eating nothing but foyson-free food will eventually starve.", - "document": "deepmx", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, an additional three meals' worth of food can be extracted for each slot level above 1st. Ritual Focus. If you expend your ritual focus, you can choose to have each day's worth of foyson take the form of a slice of delicious elven bread.", - "target_type": "object", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "find-the-flaw", - "fields": { - "name": "Find the Flaw", - "desc": "Deep Magic: clockwork You touch one creature. The next attack roll that creature makes against a clockwork or metal construct, or any machine, is a critical hit.", - "document": "deepmx", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "gear-shield", - "fields": { - "name": "Gear Shield", - "desc": "Deep Magic: clockwork You cause a handful of gears to orbit the target's body. These shield the spell's target from incoming attacks, granting a +2 bonus to AC and to Dexterity and Constitution saving throws for the duration, without hindering the subject's movement, vision, or outgoing attacks.", - "document": "deepmx", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "gift-of-azathoth", - "fields": { - "name": "Gift of Azathoth", - "desc": "Deep Magic: void magic A willing creature you touch is imbued with the persistence of ultimate Chaos. Until the spell ends, the target has advantage on the first three death saving throws it attempts.", - "document": "deepmx", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 5th, 6th, or 7th level, the duration increases to 48 hours. When you cast this spell using a spell slot of 8th or 9th level, the duration increases to 72 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours or until the target attempts a third death saving throw", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "greater-ley-pulse", - "fields": { - "name": "Greater Ley Pulse", - "desc": "You set up ley energy vibrations in a 20-foot cube within range, and name one type of damage. Each creature in the area must succeed on a Wisdom saving throw or lose immunity to the chosen damage type for the duration.", - "document": "deepmx", - "level": 7, - "school": "transmutation", - "higher_level": "When you cast this spell using a 9th-level spell slot, choose two damage types instead of one.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "gremlins", - "fields": { - "name": "Gremlins", - "desc": "Deep Magic: clockwork You target a construct and summon a plague of invisible spirits to harass it. The target resists the spell and negates its effect with a successful Wisdom saving throw. While the spell remains in effect, the construct has disadvantage on attack rolls, ability checks, and saving throws, and it takes 3d8 force damage at the start of each of its turns as it is magically disassembled by the spirits.", - "document": "deepmx", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th or higher, the damage increases by 1d8 for each slot above 4th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "force" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "grinding-gears", - "fields": { - "name": "Grinding Gears", - "desc": "Deep Magic: clockwork You designate a spot within range, and massive gears emerge from the ground at that spot, creating difficult terrain in a 20-foot radius. Creatures that move in the area must make successful Dexterity saving throws after every 10 feet of movement or when they stand up. Failure indicates that the creature falls prone and takes 1d8 points of bludgeoning damage.", - "document": "deepmx", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "1d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hearth-charm", - "fields": { - "name": "Hearth Charm", - "desc": "This spell makes flammable material burn twice as long as normal.", - "document": "deepmx", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hellforging", - "fields": { - "name": "Hellforging", - "desc": "Deep Magic: clockwork You spend an hour calling forth a disembodied evil spirit. At the end of that time, the summoned spirit must make a Charisma saving throw. If the saving throw succeeds, you take 2d10 psychic damage plus 2d10 necrotic damage from waves of uncontrolled energy rippling out from the disembodied spirit. You can maintain the spell, forcing the subject to repeat the saving throw at the end of each of your turns, with the same consequence to you for each failure. If you choose not to maintain the spell or are unable to do so, the evil spirit returns to its place of torment and cannot be recalled. If the saving throw fails, the summoned spirit is transferred into the waiting soul gem and immediately animates the constructed body. The subject is now a hellforged; it loses all of its previous racial traits and gains gearforged traits except as follows: Vulnerability: Hellforged are vulnerable to radiant damage. Evil Mind: Hellforged have disadvantage on saving throws against spells and abilities of evil fiends or aberrations that effect the mind or behavior. Past Life: The hellforged retains only a vague sense of who it was in its former existence, but these memories are enough for it to gain proficiency in one skill. Languages: Hellforged speak Common, Machine Speech, and Infernal or Abyssal Up to four other spellcasters of at least 5th level can assist you in the ritual. Each assistant increases the DC of the Charisma saving throw by 1. In the event of a failed saving throw, the spellcaster and each assistant take damage. An assistant who drops out of the casting can't rejoin.", - "document": "deepmx", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hods-gift", - "fields": { - "name": "Hod's Gift", - "desc": "The target gains blindsight to a range of 60 feet.", - "document": "deepmx", - "level": 5, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the duration is increased by 1 hour for every slot above 5th level.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "imbue-spell", - "fields": { - "name": "Imbue Spell", - "desc": "Deep Magic: clockwork You imbue a spell of 1st thru 3rd level that has a casting time of instantaneous onto a gear worth 100 gp per level of spell you are imbuing. At the end of the ritual, the gear is placed into a piece of clockwork that includes a timer or trigger mechanism. When the timer or trigger goes off, the spell is cast. If the range of the spell was Touch, it effects only a target touching the device. If the spell had a range in feet, the spell is cast on the closest viable target within range, based on the nature of the spell. Spells with a range of Self or Sight can't be imbued. If the gear is placed with a timer, it activates when the time elapses regardless of whether a legitimate target is available.", - "document": "deepmx", - "level": 5, - "school": "transmutation", - "higher_level": "You can perform this ritual as a 7th-level spell to imbue a spell of 4th or 5th level.", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "jotuns-jest", - "fields": { - "name": "Jotun's Jest", - "desc": "Giants never tire of having fun with this spell. It causes a weapon or other item to vastly increase in size, temporarily becoming sized for a Gargantuan creature. The item weighs 12 times its original weight and in most circumstances cannot be used effectively by creatures smaller than Gargantuan size. The item retains its usual qualities (including magical powers and effects) and returns to normal size when the spell ends.", - "document": "deepmx", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "land-bond", - "fields": { - "name": "Land Bond", - "desc": "You touch a willing creature and infuse it with ley energy, creating a bond between the creature and the land. For the duration of the spell, if the target is in contact with the ground, the target has advantage on saving throws and ability checks made to avoid being moved or knocked prone against its will. Additionally, the creature ignores nonmagical difficult terrain and is immune to effects from extreme environments such as heat, cold (but not cold or fire damage), and altitude.", - "document": "deepmx", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lesser-ley-pulse", - "fields": { - "name": "Lesser Ley Pulse", - "desc": "You set up ley energy vibrations in a 10-foot cube within range, and name one type of damage. Each creature in the area must make a successful Wisdom saving throw or lose resistance to the chosen damage type for the duration of the spell.", - "document": "deepmx", - "level": 5, - "school": "transmutation", - "higher_level": "When you cast this spell using a 7th-level spell slot, choose two damage types instead of one.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ley-disruption", - "fields": { - "name": "Ley Disruption", - "desc": "You create a 15-foot-radius sphere filled with disruptive ley energy. The sphere is centered around a point you can see within range. Surfaces inside the sphere shift erratically, becoming difficult terrain for the duration. Any creature in the area when it appears, that starts its turn in the area, or that enters the area for the first time on a turn must succeed on a Dexterity saving throw or fall prone. If you cast this spell in an area within the influence of a ley line, creatures have disadvantage on their saving throws against its effect. Special. A geomancer with a bound ley line is “within the influence of a ley line” for purposes of ley disruption as long as he or she is on the same plane as the bound line.", - "document": "deepmx", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "50 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 15, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ley-energy-bolt", - "fields": { - "name": "Ley Energy Bolt", - "desc": "You transform ambient ley power into a crackling bolt of energy 100 feet long and 5 feet wide. Each creature in the line takes 5d8 force damage, or half damage with a successful Dexterity saving throw. The bolt passes through the first inanimate object in its path, and creatures on the other side of the obstacle receive no bonus to their saving throw from cover. The bolt stops if it strikes a second object.", - "document": "deepmx", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bolt's damage increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ley-leech", - "fields": { - "name": "Ley Leech", - "desc": "You channel destructive ley energy through your touch. Make a melee spell attack against a creature within your reach. The target takes 8d10 necrotic damage and must succeed on a Constitution saving throw or have disadvantage on attack rolls, saving throws, and ability checks. An affected creature repeats the saving throw at the end of its turn, ending the effect on itself with a success. This spell has no effect against constructs or undead.", - "document": "deepmx", - "level": 5, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the spell's damage increases by 1d10 for each slot level above 5th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "8d10", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ley-sense", - "fields": { - "name": "Ley Sense", - "desc": "You tune your senses to the pulse of ambient ley energy flowing through the world. For the duration, you gain tremorsense with a range of 20 feet and you are instantly aware of the presence of any ley line within 5 miles. You know the distance and direction to every ley line within that range.", - "document": "deepmx", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ley-storm", - "fields": { - "name": "Ley Storm", - "desc": "A roiling stormcloud of ley energy forms, centered around a point you can see and extending horizontally to a radius of 360 feet, with a thickness of 30 feet. Shifting color shoots through the writhing cloud, and thunder roars out of it. Each creature under the cloud at the moment when it's created (no more than 5,000 feet beneath it) takes 2d6 thunder damage and is disruptive aura spell. Rounds 5-10. Flashes of multicolored light burst through and out of the cloud, causing creatures to have disadvantage on Wisdom (Perception) checks that rely on sight while they are beneath the cloud. In addition, each round, you trigger a burst of energy that fills a 20-foot sphere centered on a point you can see beneath the cloud. Each creature in the sphere takes 4d8 force damage (no saving throw). Special. A geomancer who casts this spell regains 4d10 hit points.", - "document": "deepmx", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "Special", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "thunder" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ley-surge", - "fields": { - "name": "Ley Surge", - "desc": "You unleash the power of a ley line within 5 miles, releasing a spark that flares into a 30-foot sphere centered around a point within 150 feet of you. Each creature in the sphere takes 14d6 force damage and is stunned for 1 minute; a successful Constitution saving throw halves the damage and negates the stun. A stunned creature repeats the saving throw at the end of its turn, ending the effect on itself on a success. Special. A geomancer with a bound ley line can cast this spell as long as he or she is on the same plane as the bound line.", - "document": "deepmx", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "14d6", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ley-whip", - "fields": { - "name": "Ley Whip", - "desc": "You channel the power of a ley line within 1 mile into a crackling tendril of multicolored ley energy. The tendril extends from your hand but doesn't interfere with your ability to hold or manipulate objects. When you cast the spell and as a bonus action on subsequent turns, you can direct the tendril to strike a target within 50 feet of you. Make a melee spell attack; on a hit, the tendril does 3d8 force damage and the target must make a Strength saving throw. If the saving throw fails, you can push the target away or pull it closer, up to 10 feet in either direction. Special. A geomancer with a bound ley line can cast this spell as long as he or she is on the same plane as the bound line.", - "document": "deepmx", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lokis-gift", - "fields": { - "name": "Loki's Gift", - "desc": "Loki's gift makes even the most barefaced lie seem strangely plausible: you gain advantage to Charisma (Deception) checks for whatever you're currently saying. If your Deception check fails, the creature knows that you tried to manipulate it with magic. If you lie to a creature that has a friendly attitude toward you and it fails a Charisma saving throw, you can also coax him or her to reveal a potentially embarrassing secret. The secret can involve wrongdoing (adultery, cheating at tafl, a secret fear, etc.) but not something life-threatening or dishonorable enough to earn the subject repute as a nithling. The verbal component of this spell is the lie you are telling.", - "document": "deepmx", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "machine-sacrifice", - "fields": { - "name": "Machine Sacrifice", - "desc": "Deep Magic: clockwork You sacrifice a willing construct you can see to imbue a willing target with construct traits. The target gains resistance to all nonmagical damage and gains immunity to the blinded, charmed, deafened, frightened, petrified, and poisoned conditions.", - "document": "deepmx", - "level": 8, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "machine-speech", - "fields": { - "name": "Machine Speech", - "desc": "Deep Magic: clockwork Your voice, and to a lesser extent your mind, changes to communicate only in the whirring clicks of machine speech. Until the end of your next turn, all clockwork spells you cast have advantage on their attack rolls or the targets have disadvantage on their saving throws.", - "document": "deepmx", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "machines-load", - "fields": { - "name": "Machine's Load", - "desc": "Deep Magic: clockwork You touch a creature and give it the capacity to carry, lift, push, or drag weight as if it were one size category larger. If you're using the encumbrance rules, the target is not subject to penalties for weight. Furthermore, the subject can carry loads that would normally be unwieldy.", - "document": "deepmx", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot higher than 1st, you can touch one additional creature for each spell level.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mass-blade-ward", - "fields": { - "name": "Mass Blade Ward", - "desc": "You make a protective gesture toward your allies. Choose three creatures that you can see within range. Until the end of your next turn, the targets have resistance against bludgeoning, piercing, and slashing damage from weapon attacks. If a target moves farther than 30 feet from you, the effect ends for that creature.", - "document": "deepmx", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mass-repair-metal", - "fields": { - "name": "Mass Repair Metal", - "desc": "Deep Magic: clockwork As repair metal, but you can affect all metal within range. You repair 1d8 + 5 damage to a metal object or construct by sealing up rents and bending metal back into place.", - "document": "deepmx", - "level": 5, - "school": "transmutation", - "higher_level": "Casting mass repair metal as a 6th-level spell repairs 2d8 + 10 damage.", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mechanical-union", - "fields": { - "name": "Mechanical Union", - "desc": "Deep Magic: clockwork You can take control of a construct by voice or mental commands. The construct makes a Wisdom saving throw to resist the spell, and it gets advantage on the saving throw if its CR equals or exceeds your level in the class used to cast this spell. Once a command is given, the construct does everything it can to complete the command. Giving a new command takes an action. Constructs will risk harm, even go into combat, on your orders but will not self-destruct; giving such an order ends the spell.", - "document": "deepmx", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "molechs-blessing", - "fields": { - "name": "Molech's Blessing", - "desc": "Deep Magic: clockwork ritual You call upon the dark blessings of the furnace god Molech. In an hour-long ritual begun at midnight, you dedicate a living being to Molech by branding the deity's symbol onto the victim's forehead. If the ritual is completed and the victim fails to make a successful Wisdom saving throw (or the victim chooses not to make one), the being is transformed into an avatar of Molech under your control. The avatar is 8 feet tall and appears to be made of black iron wreathed in flames. Its eyes, mouth, and a portion of its torso are cut away to show the churning fire inside that crackles with wailing voices. The avatar has all the statistics and abilities of an earth elemental, with the following differences: Alignment is Neutral Evil; Speed is 50 feet and it cannot burrow or use earth glide; it gains the fire form ability of a fire elemental, but it cannot squeeze through small spaces; its Slam does an additional 1d10 fire damage. This transformation lasts for 24 hours. At the end of that time, the subject returns to its normal state and takes 77 (14d10) fire damage, or half damage with a successful DC 15 Constitution saving throw.", - "document": "deepmx", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "77", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "move-the-cosmic-wheel", - "fields": { - "name": "Move the Cosmic Wheel", - "desc": "Deep Magic: clockwork You wind your music box and call forth a piece of another plane of existence with which you are familiar, either through personal experience or intense study. The magic creates a bubble of space with a 30-foot radius within range of you and at a spot you designate. The portion of your plane that's inside the bubble swaps places with a corresponding portion of the plane your music box is attuned with. There is a 10% chance that the portion of the plane you summon arrives with native creatures on it. Inanimate objects and non-ambulatory life (like trees) are cut off at the edge of the bubble, while living creatures that don't fit inside the bubble are shunted outside of it before the swap occurs. Otherwise, creatures from both planes that are caught inside the bubble are sent along with their chunk of reality to the other plane for the duration of the spell unless they make a successful Charisma saving throw when the spell is cast; with a successful save, a creature can choose whether to shift planes with the bubble or leap outside of it a moment before the shift occurs. Any natural reaction between the two planes occurs normally (fire spreads, water flows, etc.) while energy (such as necrotic energy) leaks slowly across the edge of the sphere (no more than a foot or two per hour). Otherwise, creatures and effects can move freely across the boundary of the sphere; for the duration of the spell, it becomes a part of its new location to the fullest extent possible, given the natures of the two planes. The two displaced bubbles shift back to their original places automatically after 24 hours. Note that the amount of preparation involved (acquiring and attuning the music box) precludes this spell from being cast on the spur of the moment. Because of its unpredictable and potentially wide-ranging effect, it's also advisable to discuss your interest in this spell with your GM before adding it to your character's repertoire.", - "document": "deepmx", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "overclock", - "fields": { - "name": "Overclock", - "desc": "Deep Magic: clockwork You cause a targeted piece of clockwork to speed up past the point of control for the duration of the spell. The targeted clockwork can't cast spells with verbal components or even communicate effectively (all its utterances sound like grinding gears). At the start of each of its turns, the target must make a Wisdom saving throw. If the saving throw fails, the clockwork moves at three times its normal speed in a random direction and its turn ends; it can't perform any other actions. If the saving throw succeeds, then until the end of its turn, the clockwork's speed is doubled and it gains an additional action, which must be Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object. When the spell ends, the clockwork takes 2d8 force damage. It also must be rewound or refueled and it needs to have its daily maintenance performed immediately, if it relies on any of those things.", - "document": "deepmx", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "force" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "power-word-restore", - "fields": { - "name": "Power Word Restore", - "desc": "Deep Magic: clockwork You speak a word of power, and energy washes over a single construct you touch. The construct regains all of its lost hit points, all negative conditions on the construct end, and it can use a reaction to stand up, if it was prone.", - "document": "deepmx", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "read-memory", - "fields": { - "name": "Read Memory", - "desc": "Deep Magic: clockwork You copy the memories of one memory gear into your own mind. You recall these memories as if you had experienced them but without any emotional attachment or context.", - "document": "deepmx", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "repair-metal", - "fields": { - "name": "Repair Metal", - "desc": "Deep Magic: clockwork A damaged construct or metal object regains 1d8 + 5 hit points when this spell is cast on it.", - "document": "deepmx", - "level": 2, - "school": "transmutation", - "higher_level": "The spell restores 2d8 + 10 hit points at 4th level, 3d8 + 15 at 6th level, and 4d8 + 20 at 8th level.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "risen-road", - "fields": { - "name": "Risen Road", - "desc": "When you cast this spell, you open a glowing portal into the plane of shadow. The portal remains open for 1 minute, until 10 creatures step through it, or until you collapse it (no action required). Stepping through the portal places you on a shadow road leading to a destination within 50 miles, or in a direction specified by you. The road is in ideal condition. You and your companions can travel it safely at a normal pace, but you can't rest on the road; if you stop for more than 10 minutes, the spell expires and dumps you back into the real world at a random spot within 10 miles of your starting point. The spell expires 2d6 hours after being cast. When that happens, travelers on the road are safely deposited near their specified destination or 50 miles from their starting point in the direction that was specified when the spell was cast. Travelers never incur exhaustion no matter how many hours they spent walking or riding on the shadow road. The temporary shadow road ceases to exist; anything left behind is lost in the shadow realm. Each casting of risen road creates a new shadow road. A small chance exists that a temporary shadow road might intersect with an existing shadow road, opening the possibility for meeting other travelers or monsters, or for choosing a different destination mid-journey. The likelihood is entirely up to the GM.", - "document": "deepmx", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "2-12 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "robe-of-shards", - "fields": { - "name": "Robe of Shards", - "desc": "Deep Magic: clockwork You create a robe of metal shards, gears, and cogs that provides a base AC of 14 + your Dexterity modifier. As a bonus action while protected by a robe of shards, you can command bits of metal from a fallen foe to be absorbed by your robe; each infusion of metal increases your AC by 1, to a maximum of 18 + Dexterity modifier. You can also use a bonus action to dispel the robe, causing it to explode into a shower of flying metal that does 8d6 slashing damage, +1d6 per point of basic (non-Dexterity) AC above 14, to all creatures within 30 feet of you.", - "document": "deepmx", - "level": 6, - "school": "abjuration", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shadow-realm-gateway", - "fields": { - "name": "Shadow Realm Gateway", - "desc": "By drawing a circle of black chalk up to 15 feet in diameter and chanting for one minute, you open a portal directly into the Shadow Realm. The portal fills the chalk circle and appears as a vortex of inky blackness; nothing can be seen through it. Any object or creature that passes through the portal instantly arrives safely in the Shadow Realm. The portal remains open for one minute or until you lose concentration on it, and it can be used to travel between the Shadow Realm and the chalk circle, in both directions, as many times as desired during the spell's duration. This spell can only be cast as a ritual.", - "document": "deepmx", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shield-of-star-and-shadow", - "fields": { - "name": "Shield of Star and Shadow", - "desc": "You wrap yourself in a protective shroud of the night sky made from swirling shadows punctuated with twinkling motes of light. The shroud grants you resistance against either radiant or necrotic damage (choose when the spell is cast). You also shed dim light in a 10-foot radius. You can end the spell early by using an action to dismiss it.", - "document": "deepmx", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "snowblind-stare", - "fields": { - "name": "Snowblind Stare", - "desc": "Your eyes burn with a bright, cold light that inflicts snow blindness on a creature you target within 30 feet of you. If the target fails a Constitution saving throw, it suffers the first stage of snow blindness (see [Conditions](https://api.open5e.com/sections/conditions)), or the second stage of snow blindness if it already has the first stage. The target recovers as described in [Conditions](https://api.open5e.com/sections/conditions).", - "document": "deepmx", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "2 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "soothsayers-shield", - "fields": { - "name": "Soothsayer's Shield", - "desc": "This spell can be cast when you are hit by an enemy's attack. Until the start of your next turn, you have a +4 bonus to AC, including against the triggering attack.", - "document": "deepmx", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "soul-of-the-machine", - "fields": { - "name": "Soul of the Machine", - "desc": "Deep Magic: clockwork One willing creature you touch becomes immune to mind-altering effects and psychic damage for the spell's duration.", - "document": "deepmx", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sphere-of-order", - "fields": { - "name": "Sphere of Order", - "desc": "Deep Magic: clockwork You surround yourself with the perfect order of clockwork. Chaotic creatures that start their turn in the area or enter it on their turn take 5d8 psychic damage. The damage is 8d8 for Chaotic aberrations, celestials, elementals, and fiends. A successful Wisdom saving throw halves the damage, but Chaotic creatures (the only ones affected by the spell) make the saving throw with disadvantage.", - "document": "deepmx", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "spire-of-stone", - "fields": { - "name": "Spire of Stone", - "desc": "You cause a spire of rock to burst out of the ground, floor, or another surface beneath your feet. The spire is as wide as your space, and lifting you, it can rise up to 20 feet in height. When the spire appears, a creature within 5 feet of you must succeed on a Dexterity saving throw or fall prone. As a bonus action on your turn, you can cause the spire to rise or descend up to 20 feet to a maximum height of 40 feet. If you move off of the spire, it immediately collapses back into the ground. When the spire disappears, it leaves the surface from which it sprang unharmed. You can create a new spire as a bonus action for the duration of the spell.", - "document": "deepmx", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "strength-of-the-underworld", - "fields": { - "name": "Strength of the Underworld", - "desc": "You call on the power of the dark gods of the afterlife to strengthen the target's undead energy. The spell's target has advantage on saving throws against Turn Undead while the spell lasts. If this spell is cast on a corpse that died from darakhul fever, the corpse gains a +5 bonus on its roll to determine whether it rises as a darakhul.", - "document": "deepmx", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "summon-old-ones-avatar", - "fields": { - "name": "Summon Old One's Avatar", - "desc": "Deep Magic: void magic You summon a worldly incarnation of a Great Old One, which appears in an unoccupied space you can see within range. This avatar manifests as a Void speaker (Creature Codex NPC) augmented by boons from the Void. Choose one of the following options for the type of avatar that appears (other options might be available if the GM allows): Avatar of Cthulhu. The Void speaker is a goat-man with the ability to cast black goat's blessing and unseen strangler at will. Avatar of Yog-Sothoth. The Void speaker is a human with 1d4 + 1 flesh warps and the ability to cast gift of Azathoth and thunderwave at will. When the avatar appears, you must make a Charisma saving throw. If it succeeds, the avatar is friendly to you and your allies. If it fails, the avatar is friendly to no one and attacks the nearest creature to it, pursuing and fighting for as long as possible. Roll initiative for the avatar, which takes its own turn. If friendly to you, it obeys verbal commands you issue to it (no action required by you). If the avatar has no command, it attacks the nearest creature. Each round you maintain concentration on the spell, you must make a successful DC 15 Wisdom saving throw or take 1d6 psychic damage. If the cumulative total of this damage exceeds your Wisdom score, you gain one point of Void taint and you are afflicted with a short-term madness. The same penalty recurs when the damage exceeds twice your Wisdom, three times your Wisdom, etc. The avatar disappears when it drops to 0 hit points or when the spell ends. If you stop concentrating on the spell before an hour has elapsed, the avatar becomes uncontrolled and hostile and doesn't disappear until 1d6 rounds later or it's killed.", - "document": "deepmx", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "tick-stop", - "fields": { - "name": "Tick Stop", - "desc": "Deep Magic: clockwork You speak a word and the target construct can take one action or bonus action on its next turn, but not both. The construct is immune to further tick stops from the same caster for 24 hours.", - "document": "deepmx", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "timeless-engine", - "fields": { - "name": "Timeless Engine", - "desc": "Deep Magic: clockwork You halt the normal processes of degradation and wear in a nonmagical clockwork device, making normal maintenance unnecessary and slowing fuel consumption to 1/10th of normal. For magical devices and constructs, the spell greatly reduces wear. A magical clockwork device, machine, or creature that normally needs daily maintenance only needs care once a year; if it previously needed monthly maintenance, it now requires attention only once a decade.", - "document": "deepmx", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "winding-key", - "fields": { - "name": "Winding Key", - "desc": "Deep Magic: clockwork You target a construct, giving it an extra action or move on each of its turns.", - "document": "deepmx", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "wotans-rede", - "fields": { - "name": "Wotan's Rede", - "desc": "You recite a poem in the Northern tongue, sent to your lips by Wotan himself, to gain supernatural insight or advice. Your next Intelligence or Charisma check within 1 minute is made with advantage, and you can include twice your proficiency bonus. At the GM's discretion, this spell can instead provide a piece of general advice equivalent to an contact other plane.", - "document": "deepmx", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "write-memory", - "fields": { - "name": "Write Memory", - "desc": "Deep Magic: clockwork You copy your memories, or those learned from the spell read memory, onto an empty memory gear.", - "document": "deepmx", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -} -] + { + "model": "api_v2.spell", + "pk": "deepmx_absolute-command", + "fields": { + "name": "Absolute Command", + "desc": "Deep Magic: clockwork You can control a construct you have built with a challenge rating of 6 or less. You can manipulate objects with your construct as precisely as its construction allows, and you perceive its surroundings through its sensory inputs as if you inhabited its body. The construct uses the caster's Proficiency bonus (modified by the construct's Strength and Dexterity scores). You can use the manipulators of the construct to perform any number of skill-based tasks, using the construct's Strength and Dexterity modifiers when using skills based on those particular abilities. Your body remains immobile, as if paralyzed, for the duration of the spell. The construct must remain within 100 feet of you. If it moves beyond this distance, the spell immediately ends and the caster's mind returns to his or her body.", + "document": "deepmx", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using higher-level spell slots, you may control a construct with a challenge rating 2 higher for each slot level you use above 4th. The construct's range also increases by 10 feet for each slot level.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_amplify-ley-field", + "fields": { + "name": "Amplify Ley Field", + "desc": "You create a faintly shimmering field of charged energy around yourself. Within that area, the intensity of ley lines you're able to draw on increases from weak to strong, or from strong to titanic. If no ley lines are near enough for you to draw on, you can treat the area of the spell itself as an unlocked, weak ley line.", + "document": "deepmx", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_animate-construct", + "fields": { + "name": "Animate Construct", + "desc": "Deep Magic: clockwork This spell animates a carefully prepared construct of Tiny size. The object acts immediately, on your turn, and can attack your opponents to the best of its ability. You can direct it not to attack, to attack particular enemies, or to perform other actions. You choose the object to animate, and you can change that choice each time you cast the spell. The cost of the body to be animated is 10 gp x its hit points. The body can be reused any number of times, provided it isn't severely damaged or destroyed. If no prepared construct body is available, you can animate a mass of loose metal or stone instead. Before casting, the loose objects must be arranged in a suitable shape (taking up to a minute), and the construct's hit points are halved. An animated construct has a Constitution of 10, Intelligence and Wisdom 3, and Charisma 1. Other characteristics are determined by the construct's size as follows. Size HP AC Attack STR DEX Spell Slot Tiny 15 12 +3, 1d4+4 4 16 1st Small 25 13 +4, 1d8+2 6 14 2nd Medium 40 14 +5, 2d6+1 10 12 3rd Large 50 15 +6, 2d10+2 14 10 4th Huge 80 16 +8, 2d12+4 18 8 5th Gargantuan 100 17 +10, 4d8+6 20 6 6th", + "document": "deepmx", + "level": 1, + "school": "transmutation", + "higher_level": "Casting this spell using higher level spell slots allows you to increase the size of the construct animated, as shown on the table.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_anomalous-object", + "fields": { + "name": "Anomalous Object", + "desc": "Deep Magic: temporal By touching an object, you retrieve another version of the object from elsewhere in time. If the object is attended, you must succeed on a melee spell attack roll against the creature holding or controlling the object. Any effect that affects the original object also affects the duplicate (charges spent, damage taken, etc.) and any effect that affects the duplicate also affects the original object. If either object is destroyed, both are destroyed. This spell does not affect sentient items or unique artifacts.", + "document": "deepmx", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_armored-heart", + "fields": { + "name": "Armored Heart", + "desc": "Deep Magic: clockwork The targeted creature gains resistance to bludgeoning, slashing, and piercing damage. This resistance can be overcome with adamantine or magical weapons.", + "document": "deepmx", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_armored-shell", + "fields": { + "name": "Armored Shell", + "desc": "Deep Magic: clockwork This spell creates a suit of magical studded leather armor (AC 12). It does not grant you proficiency in its use. Casters without the appropriate armor proficiency suffer disadvantage on any ability check, saving throw, or attack roll that involves Strength or Dexterity and cannot cast spells.", + "document": "deepmx", + "level": 1, + "school": "conjuration", + "higher_level": "Casting armored shell using a higher-level spell slot creates stronger armor: a chain shirt (AC 13) at level 2, scale mail (AC 14) at level 3, chain mail (AC 16) at level 4, and plate armor (AC 18) at level 5.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_banshee-wail", + "fields": { + "name": "Banshee Wail", + "desc": "You emit a soul-shattering wail. Every creature within a 30-foot cone who hears the wail must make a Wisdom saving throw. Those that fail take 6d10 psychic damage and become frightened of you; a frightened creature repeats the saving throw at the end of its turn, ending the effect on itself on a success. Those that succeed take 3d10 psychic damage and aren't frightened. This spell has no effect on constructs and undead.", + "document": "deepmx", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_beguiling-gift", + "fields": { + "name": "Beguiling Gift", + "desc": "Deep Magic: hieroglyph You implant a powerful suggestion into an item as you hand it to someone. If the person you hand it to accepts it willingly, they must make a successful Wisdom saving throw or use the object as it's meant to be used at their first opportunity: writing with a pen, consuming food or drink, wearing clothing, drawing a weapon, etc. After the first use, they're under no compulsion to continue using the object or even to keep it.", + "document": "deepmx", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_borrowing", + "fields": { + "name": "Borrowing", + "desc": "By touching a target, you gain one sense, movement type and speed, feat, language, immunity, or extraordinary ability of the target for the duration of the spell. The target also retains the use of the borrowed ability. An unwilling target prevents the effect with a successful Constitution saving throw. The target can be a living creature or one that's been dead no longer than 1 minute; a corpse makes no saving throw. You can possess only one borrowed power at a time.", + "document": "deepmx", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level, its duration increases to 1 hour. Additionally, the target loses the stolen power for the duration of the spell.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_call-the-hunter", + "fields": { + "name": "Call the Hunter", + "desc": "Deep Magic: clockwork You detach a portion of your soul to become the embodiment of justice in the form of a clockwork outsider known as a Zelekhut who will serve at your commands for the duration, so long as those commands are consistent with its desire to punish wrongdoers. You may give the creature commands as a bonus action; it acts either immediately before or after you.", + "document": "deepmx", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_circle-of-devestation", + "fields": { + "name": "Circle of Devestation", + "desc": "You create a 10-foot tall, 20-foot radius ring of destructive energy around a point you can see within range. The area inside the ring is difficult terrain. When you cast the spell and as a bonus action on each of your turns, you can choose one of the following damage types: cold, fire, lightning, necrotic, or radiant. Creatures and objects that touch the ring, that are inside it when it's created, or that end their turn inside the ring take 6d6 damage of the chosen type, or half damage with a successful Constitution saving throw. A creature or object reduced to 0 hit points by the spell is reduced to fine ash. At the start of each of your subsequent turns, the ring's radius expands by 20 feet. Any creatures or objects touched by the expanding ring are subject to its effects immediately.", + "document": "deepmx", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "1 mile", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_cloying-darkness", + "fields": { + "name": "Cloying Darkness", + "desc": "You reach out with a hand of decaying shadows. Make a ranged spell attack. If it hits, the target takes 2d8 necrotic damage and must make a Constitution saving throw. If it fails, its visual organs are enveloped in shadow until the start of your next turn, causing it to treat all lighting as if it's one step lower in intensity (it treats bright light as dim, dim light as darkness, and darkness as magical darkness).", + "document": "deepmx", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "2d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_cosmic-alignment", + "fields": { + "name": "Cosmic Alignment", + "desc": "Deep Magic: illumination You arrange the forces of the cosmos to your benefit. Choose a cosmic event from the Comprehension of the Starry Sky ability that affects spellcasting (conjunction, eclipse, or nova; listed after the spell). You cast spells as if under the effect of the cosmic event until the next sunrise or 24 hours have passed. When the ability requires you to expend your insight, you expend your ritual focus instead. This spell must be cast outdoors, and the casting of this spell is obvious to everyone within 100 miles of its casting when an appropriate symbol, such as a flaming comet, appears in the sky above your location while you are casting the spell. Conjunction: Planetary conjunctions destabilize minds and emotions. You can give one creature you can see disadvantage on a saving throw against one enchantment or illusion spell cast by you. Eclipse: Eclipses plunge the world into darkness and strengthen connections to the shadow plane. When you cast a spell of 5th level or lower that causes necrotic damage, you can reroll a number of damage dice up to your Intelligence modifier (minimum of one). You must use the new rolls. Nova: The nova is a powerful aid to divination spells. You can treat one divination spell you cast as though you had used a spell slot one level higher than the slot actually used.", + "document": "deepmx", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_cruor-of-visions", + "fields": { + "name": "Cruor of Visions", + "desc": "You prick your finger with a bone needle as you cast this spell, taking 1 necrotic damage. This drop of blood must be caught in a container such as a platter or a bowl, where it grows into a pool 1 foot in diameter. This pool acts as a crystal ball for the purpose of scrying. If you place a drop (or dried flakes) of another creature's blood in the cruor of visions, the creature has disadvantage on any Wisdom saving throw to resist scrying. Additionally, you can treat the pool of blood as a crystal ball of telepathy (see the crystal ball description in the Fifth Edition rules). I When you cast this spell using a spell slot of 7th level or higher, the pool of blood acts as either a crystal ball of mind reading or a crystal ball of true seeing (your choice when the spell is cast).", + "document": "deepmx", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_extract-foyson", + "fields": { + "name": "Extract Foyson", + "desc": "You extract the goodness in food, pulling all the nutrition out of three days' worth of meals and concentrating it into about a tablespoon of bland, flourlike powder. The flour can be mixed with liquid and drunk or baked into elven bread. Foyson used in this way still imparts all the nutritional value of the original food, for the amount consumed. The original food appears unchanged and though it's still filling, it has no nutritional value. Someone eating nothing but foyson-free food will eventually starve.", + "document": "deepmx", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, an additional three meals' worth of food can be extracted for each slot level above 1st. Ritual Focus. If you expend your ritual focus, you can choose to have each day's worth of foyson take the form of a slice of delicious elven bread.", + "target_type": "object", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_find-the-flaw", + "fields": { + "name": "Find the Flaw", + "desc": "Deep Magic: clockwork You touch one creature. The next attack roll that creature makes against a clockwork or metal construct, or any machine, is a critical hit.", + "document": "deepmx", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_gear-shield", + "fields": { + "name": "Gear Shield", + "desc": "Deep Magic: clockwork You cause a handful of gears to orbit the target's body. These shield the spell's target from incoming attacks, granting a +2 bonus to AC and to Dexterity and Constitution saving throws for the duration, without hindering the subject's movement, vision, or outgoing attacks.", + "document": "deepmx", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_gift-of-azathoth", + "fields": { + "name": "Gift of Azathoth", + "desc": "Deep Magic: void magic A willing creature you touch is imbued with the persistence of ultimate Chaos. Until the spell ends, the target has advantage on the first three death saving throws it attempts.", + "document": "deepmx", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 5th, 6th, or 7th level, the duration increases to 48 hours. When you cast this spell using a spell slot of 8th or 9th level, the duration increases to 72 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours or until the target attempts a third death saving throw", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_greater-ley-pulse", + "fields": { + "name": "Greater Ley Pulse", + "desc": "You set up ley energy vibrations in a 20-foot cube within range, and name one type of damage. Each creature in the area must succeed on a Wisdom saving throw or lose immunity to the chosen damage type for the duration.", + "document": "deepmx", + "level": 7, + "school": "transmutation", + "higher_level": "When you cast this spell using a 9th-level spell slot, choose two damage types instead of one.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_gremlins", + "fields": { + "name": "Gremlins", + "desc": "Deep Magic: clockwork You target a construct and summon a plague of invisible spirits to harass it. The target resists the spell and negates its effect with a successful Wisdom saving throw. While the spell remains in effect, the construct has disadvantage on attack rolls, ability checks, and saving throws, and it takes 3d8 force damage at the start of each of its turns as it is magically disassembled by the spirits.", + "document": "deepmx", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th or higher, the damage increases by 1d8 for each slot above 4th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "force" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_grinding-gears", + "fields": { + "name": "Grinding Gears", + "desc": "Deep Magic: clockwork You designate a spot within range, and massive gears emerge from the ground at that spot, creating difficult terrain in a 20-foot radius. Creatures that move in the area must make successful Dexterity saving throws after every 10 feet of movement or when they stand up. Failure indicates that the creature falls prone and takes 1d8 points of bludgeoning damage.", + "document": "deepmx", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "1d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_hearth-charm", + "fields": { + "name": "Hearth Charm", + "desc": "This spell makes flammable material burn twice as long as normal.", + "document": "deepmx", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_hellforging", + "fields": { + "name": "Hellforging", + "desc": "Deep Magic: clockwork You spend an hour calling forth a disembodied evil spirit. At the end of that time, the summoned spirit must make a Charisma saving throw. If the saving throw succeeds, you take 2d10 psychic damage plus 2d10 necrotic damage from waves of uncontrolled energy rippling out from the disembodied spirit. You can maintain the spell, forcing the subject to repeat the saving throw at the end of each of your turns, with the same consequence to you for each failure. If you choose not to maintain the spell or are unable to do so, the evil spirit returns to its place of torment and cannot be recalled. If the saving throw fails, the summoned spirit is transferred into the waiting soul gem and immediately animates the constructed body. The subject is now a hellforged; it loses all of its previous racial traits and gains gearforged traits except as follows: Vulnerability: Hellforged are vulnerable to radiant damage. Evil Mind: Hellforged have disadvantage on saving throws against spells and abilities of evil fiends or aberrations that effect the mind or behavior. Past Life: The hellforged retains only a vague sense of who it was in its former existence, but these memories are enough for it to gain proficiency in one skill. Languages: Hellforged speak Common, Machine Speech, and Infernal or Abyssal Up to four other spellcasters of at least 5th level can assist you in the ritual. Each assistant increases the DC of the Charisma saving throw by 1. In the event of a failed saving throw, the spellcaster and each assistant take damage. An assistant who drops out of the casting can't rejoin.", + "document": "deepmx", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_hods-gift", + "fields": { + "name": "Hod's Gift", + "desc": "The target gains blindsight to a range of 60 feet.", + "document": "deepmx", + "level": 5, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the duration is increased by 1 hour for every slot above 5th level.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_imbue-spell", + "fields": { + "name": "Imbue Spell", + "desc": "Deep Magic: clockwork You imbue a spell of 1st thru 3rd level that has a casting time of instantaneous onto a gear worth 100 gp per level of spell you are imbuing. At the end of the ritual, the gear is placed into a piece of clockwork that includes a timer or trigger mechanism. When the timer or trigger goes off, the spell is cast. If the range of the spell was Touch, it effects only a target touching the device. If the spell had a range in feet, the spell is cast on the closest viable target within range, based on the nature of the spell. Spells with a range of Self or Sight can't be imbued. If the gear is placed with a timer, it activates when the time elapses regardless of whether a legitimate target is available.", + "document": "deepmx", + "level": 5, + "school": "transmutation", + "higher_level": "You can perform this ritual as a 7th-level spell to imbue a spell of 4th or 5th level.", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_jotuns-jest", + "fields": { + "name": "Jotun's Jest", + "desc": "Giants never tire of having fun with this spell. It causes a weapon or other item to vastly increase in size, temporarily becoming sized for a Gargantuan creature. The item weighs 12 times its original weight and in most circumstances cannot be used effectively by creatures smaller than Gargantuan size. The item retains its usual qualities (including magical powers and effects) and returns to normal size when the spell ends.", + "document": "deepmx", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_land-bond", + "fields": { + "name": "Land Bond", + "desc": "You touch a willing creature and infuse it with ley energy, creating a bond between the creature and the land. For the duration of the spell, if the target is in contact with the ground, the target has advantage on saving throws and ability checks made to avoid being moved or knocked prone against its will. Additionally, the creature ignores nonmagical difficult terrain and is immune to effects from extreme environments such as heat, cold (but not cold or fire damage), and altitude.", + "document": "deepmx", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_lesser-ley-pulse", + "fields": { + "name": "Lesser Ley Pulse", + "desc": "You set up ley energy vibrations in a 10-foot cube within range, and name one type of damage. Each creature in the area must make a successful Wisdom saving throw or lose resistance to the chosen damage type for the duration of the spell.", + "document": "deepmx", + "level": 5, + "school": "transmutation", + "higher_level": "When you cast this spell using a 7th-level spell slot, choose two damage types instead of one.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_ley-disruption", + "fields": { + "name": "Ley Disruption", + "desc": "You create a 15-foot-radius sphere filled with disruptive ley energy. The sphere is centered around a point you can see within range. Surfaces inside the sphere shift erratically, becoming difficult terrain for the duration. Any creature in the area when it appears, that starts its turn in the area, or that enters the area for the first time on a turn must succeed on a Dexterity saving throw or fall prone. If you cast this spell in an area within the influence of a ley line, creatures have disadvantage on their saving throws against its effect. Special. A geomancer with a bound ley line is “within the influence of a ley line” for purposes of ley disruption as long as he or she is on the same plane as the bound line.", + "document": "deepmx", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "50 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 15, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_ley-energy-bolt", + "fields": { + "name": "Ley Energy Bolt", + "desc": "You transform ambient ley power into a crackling bolt of energy 100 feet long and 5 feet wide. Each creature in the line takes 5d8 force damage, or half damage with a successful Dexterity saving throw. The bolt passes through the first inanimate object in its path, and creatures on the other side of the obstacle receive no bonus to their saving throw from cover. The bolt stops if it strikes a second object.", + "document": "deepmx", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bolt's damage increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_ley-leech", + "fields": { + "name": "Ley Leech", + "desc": "You channel destructive ley energy through your touch. Make a melee spell attack against a creature within your reach. The target takes 8d10 necrotic damage and must succeed on a Constitution saving throw or have disadvantage on attack rolls, saving throws, and ability checks. An affected creature repeats the saving throw at the end of its turn, ending the effect on itself with a success. This spell has no effect against constructs or undead.", + "document": "deepmx", + "level": 5, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the spell's damage increases by 1d10 for each slot level above 5th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "8d10", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_ley-sense", + "fields": { + "name": "Ley Sense", + "desc": "You tune your senses to the pulse of ambient ley energy flowing through the world. For the duration, you gain tremorsense with a range of 20 feet and you are instantly aware of the presence of any ley line within 5 miles. You know the distance and direction to every ley line within that range.", + "document": "deepmx", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_ley-storm", + "fields": { + "name": "Ley Storm", + "desc": "A roiling stormcloud of ley energy forms, centered around a point you can see and extending horizontally to a radius of 360 feet, with a thickness of 30 feet. Shifting color shoots through the writhing cloud, and thunder roars out of it. Each creature under the cloud at the moment when it's created (no more than 5,000 feet beneath it) takes 2d6 thunder damage and is disruptive aura spell. Rounds 5-10. Flashes of multicolored light burst through and out of the cloud, causing creatures to have disadvantage on Wisdom (Perception) checks that rely on sight while they are beneath the cloud. In addition, each round, you trigger a burst of energy that fills a 20-foot sphere centered on a point you can see beneath the cloud. Each creature in the sphere takes 4d8 force damage (no saving throw). Special. A geomancer who casts this spell regains 4d10 hit points.", + "document": "deepmx", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "Special", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "thunder" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_ley-surge", + "fields": { + "name": "Ley Surge", + "desc": "You unleash the power of a ley line within 5 miles, releasing a spark that flares into a 30-foot sphere centered around a point within 150 feet of you. Each creature in the sphere takes 14d6 force damage and is stunned for 1 minute; a successful Constitution saving throw halves the damage and negates the stun. A stunned creature repeats the saving throw at the end of its turn, ending the effect on itself on a success. Special. A geomancer with a bound ley line can cast this spell as long as he or she is on the same plane as the bound line.", + "document": "deepmx", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "14d6", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_ley-whip", + "fields": { + "name": "Ley Whip", + "desc": "You channel the power of a ley line within 1 mile into a crackling tendril of multicolored ley energy. The tendril extends from your hand but doesn't interfere with your ability to hold or manipulate objects. When you cast the spell and as a bonus action on subsequent turns, you can direct the tendril to strike a target within 50 feet of you. Make a melee spell attack; on a hit, the tendril does 3d8 force damage and the target must make a Strength saving throw. If the saving throw fails, you can push the target away or pull it closer, up to 10 feet in either direction. Special. A geomancer with a bound ley line can cast this spell as long as he or she is on the same plane as the bound line.", + "document": "deepmx", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_lokis-gift", + "fields": { + "name": "Loki's Gift", + "desc": "Loki's gift makes even the most barefaced lie seem strangely plausible: you gain advantage to Charisma (Deception) checks for whatever you're currently saying. If your Deception check fails, the creature knows that you tried to manipulate it with magic. If you lie to a creature that has a friendly attitude toward you and it fails a Charisma saving throw, you can also coax him or her to reveal a potentially embarrassing secret. The secret can involve wrongdoing (adultery, cheating at tafl, a secret fear, etc.) but not something life-threatening or dishonorable enough to earn the subject repute as a nithling. The verbal component of this spell is the lie you are telling.", + "document": "deepmx", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_machine-sacrifice", + "fields": { + "name": "Machine Sacrifice", + "desc": "Deep Magic: clockwork You sacrifice a willing construct you can see to imbue a willing target with construct traits. The target gains resistance to all nonmagical damage and gains immunity to the blinded, charmed, deafened, frightened, petrified, and poisoned conditions.", + "document": "deepmx", + "level": 8, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_machine-speech", + "fields": { + "name": "Machine Speech", + "desc": "Deep Magic: clockwork Your voice, and to a lesser extent your mind, changes to communicate only in the whirring clicks of machine speech. Until the end of your next turn, all clockwork spells you cast have advantage on their attack rolls or the targets have disadvantage on their saving throws.", + "document": "deepmx", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_machines-load", + "fields": { + "name": "Machine's Load", + "desc": "Deep Magic: clockwork You touch a creature and give it the capacity to carry, lift, push, or drag weight as if it were one size category larger. If you're using the encumbrance rules, the target is not subject to penalties for weight. Furthermore, the subject can carry loads that would normally be unwieldy.", + "document": "deepmx", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot higher than 1st, you can touch one additional creature for each spell level.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_mass-blade-ward", + "fields": { + "name": "Mass Blade Ward", + "desc": "You make a protective gesture toward your allies. Choose three creatures that you can see within range. Until the end of your next turn, the targets have resistance against bludgeoning, piercing, and slashing damage from weapon attacks. If a target moves farther than 30 feet from you, the effect ends for that creature.", + "document": "deepmx", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_mass-repair-metal", + "fields": { + "name": "Mass Repair Metal", + "desc": "Deep Magic: clockwork As repair metal, but you can affect all metal within range. You repair 1d8 + 5 damage to a metal object or construct by sealing up rents and bending metal back into place.", + "document": "deepmx", + "level": 5, + "school": "transmutation", + "higher_level": "Casting mass repair metal as a 6th-level spell repairs 2d8 + 10 damage.", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_mechanical-union", + "fields": { + "name": "Mechanical Union", + "desc": "Deep Magic: clockwork You can take control of a construct by voice or mental commands. The construct makes a Wisdom saving throw to resist the spell, and it gets advantage on the saving throw if its CR equals or exceeds your level in the class used to cast this spell. Once a command is given, the construct does everything it can to complete the command. Giving a new command takes an action. Constructs will risk harm, even go into combat, on your orders but will not self-destruct; giving such an order ends the spell.", + "document": "deepmx", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_molechs-blessing", + "fields": { + "name": "Molech's Blessing", + "desc": "Deep Magic: clockwork ritual You call upon the dark blessings of the furnace god Molech. In an hour-long ritual begun at midnight, you dedicate a living being to Molech by branding the deity's symbol onto the victim's forehead. If the ritual is completed and the victim fails to make a successful Wisdom saving throw (or the victim chooses not to make one), the being is transformed into an avatar of Molech under your control. The avatar is 8 feet tall and appears to be made of black iron wreathed in flames. Its eyes, mouth, and a portion of its torso are cut away to show the churning fire inside that crackles with wailing voices. The avatar has all the statistics and abilities of an earth elemental, with the following differences: Alignment is Neutral Evil; Speed is 50 feet and it cannot burrow or use earth glide; it gains the fire form ability of a fire elemental, but it cannot squeeze through small spaces; its Slam does an additional 1d10 fire damage. This transformation lasts for 24 hours. At the end of that time, the subject returns to its normal state and takes 77 (14d10) fire damage, or half damage with a successful DC 15 Constitution saving throw.", + "document": "deepmx", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "77", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_move-the-cosmic-wheel", + "fields": { + "name": "Move the Cosmic Wheel", + "desc": "Deep Magic: clockwork You wind your music box and call forth a piece of another plane of existence with which you are familiar, either through personal experience or intense study. The magic creates a bubble of space with a 30-foot radius within range of you and at a spot you designate. The portion of your plane that's inside the bubble swaps places with a corresponding portion of the plane your music box is attuned with. There is a 10% chance that the portion of the plane you summon arrives with native creatures on it. Inanimate objects and non-ambulatory life (like trees) are cut off at the edge of the bubble, while living creatures that don't fit inside the bubble are shunted outside of it before the swap occurs. Otherwise, creatures from both planes that are caught inside the bubble are sent along with their chunk of reality to the other plane for the duration of the spell unless they make a successful Charisma saving throw when the spell is cast; with a successful save, a creature can choose whether to shift planes with the bubble or leap outside of it a moment before the shift occurs. Any natural reaction between the two planes occurs normally (fire spreads, water flows, etc.) while energy (such as necrotic energy) leaks slowly across the edge of the sphere (no more than a foot or two per hour). Otherwise, creatures and effects can move freely across the boundary of the sphere; for the duration of the spell, it becomes a part of its new location to the fullest extent possible, given the natures of the two planes. The two displaced bubbles shift back to their original places automatically after 24 hours. Note that the amount of preparation involved (acquiring and attuning the music box) precludes this spell from being cast on the spur of the moment. Because of its unpredictable and potentially wide-ranging effect, it's also advisable to discuss your interest in this spell with your GM before adding it to your character's repertoire.", + "document": "deepmx", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_overclock", + "fields": { + "name": "Overclock", + "desc": "Deep Magic: clockwork You cause a targeted piece of clockwork to speed up past the point of control for the duration of the spell. The targeted clockwork can't cast spells with verbal components or even communicate effectively (all its utterances sound like grinding gears). At the start of each of its turns, the target must make a Wisdom saving throw. If the saving throw fails, the clockwork moves at three times its normal speed in a random direction and its turn ends; it can't perform any other actions. If the saving throw succeeds, then until the end of its turn, the clockwork's speed is doubled and it gains an additional action, which must be Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object. When the spell ends, the clockwork takes 2d8 force damage. It also must be rewound or refueled and it needs to have its daily maintenance performed immediately, if it relies on any of those things.", + "document": "deepmx", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "force" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_power-word-restore", + "fields": { + "name": "Power Word Restore", + "desc": "Deep Magic: clockwork You speak a word of power, and energy washes over a single construct you touch. The construct regains all of its lost hit points, all negative conditions on the construct end, and it can use a reaction to stand up, if it was prone.", + "document": "deepmx", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_read-memory", + "fields": { + "name": "Read Memory", + "desc": "Deep Magic: clockwork You copy the memories of one memory gear into your own mind. You recall these memories as if you had experienced them but without any emotional attachment or context.", + "document": "deepmx", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_repair-metal", + "fields": { + "name": "Repair Metal", + "desc": "Deep Magic: clockwork A damaged construct or metal object regains 1d8 + 5 hit points when this spell is cast on it.", + "document": "deepmx", + "level": 2, + "school": "transmutation", + "higher_level": "The spell restores 2d8 + 10 hit points at 4th level, 3d8 + 15 at 6th level, and 4d8 + 20 at 8th level.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_risen-road", + "fields": { + "name": "Risen Road", + "desc": "When you cast this spell, you open a glowing portal into the plane of shadow. The portal remains open for 1 minute, until 10 creatures step through it, or until you collapse it (no action required). Stepping through the portal places you on a shadow road leading to a destination within 50 miles, or in a direction specified by you. The road is in ideal condition. You and your companions can travel it safely at a normal pace, but you can't rest on the road; if you stop for more than 10 minutes, the spell expires and dumps you back into the real world at a random spot within 10 miles of your starting point. The spell expires 2d6 hours after being cast. When that happens, travelers on the road are safely deposited near their specified destination or 50 miles from their starting point in the direction that was specified when the spell was cast. Travelers never incur exhaustion no matter how many hours they spent walking or riding on the shadow road. The temporary shadow road ceases to exist; anything left behind is lost in the shadow realm. Each casting of risen road creates a new shadow road. A small chance exists that a temporary shadow road might intersect with an existing shadow road, opening the possibility for meeting other travelers or monsters, or for choosing a different destination mid-journey. The likelihood is entirely up to the GM.", + "document": "deepmx", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "2-12 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_robe-of-shards", + "fields": { + "name": "Robe of Shards", + "desc": "Deep Magic: clockwork You create a robe of metal shards, gears, and cogs that provides a base AC of 14 + your Dexterity modifier. As a bonus action while protected by a robe of shards, you can command bits of metal from a fallen foe to be absorbed by your robe; each infusion of metal increases your AC by 1, to a maximum of 18 + Dexterity modifier. You can also use a bonus action to dispel the robe, causing it to explode into a shower of flying metal that does 8d6 slashing damage, +1d6 per point of basic (non-Dexterity) AC above 14, to all creatures within 30 feet of you.", + "document": "deepmx", + "level": 6, + "school": "abjuration", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_shadow-realm-gateway", + "fields": { + "name": "Shadow Realm Gateway", + "desc": "By drawing a circle of black chalk up to 15 feet in diameter and chanting for one minute, you open a portal directly into the Shadow Realm. The portal fills the chalk circle and appears as a vortex of inky blackness; nothing can be seen through it. Any object or creature that passes through the portal instantly arrives safely in the Shadow Realm. The portal remains open for one minute or until you lose concentration on it, and it can be used to travel between the Shadow Realm and the chalk circle, in both directions, as many times as desired during the spell's duration. This spell can only be cast as a ritual.", + "document": "deepmx", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_shield-of-star-and-shadow", + "fields": { + "name": "Shield of Star and Shadow", + "desc": "You wrap yourself in a protective shroud of the night sky made from swirling shadows punctuated with twinkling motes of light. The shroud grants you resistance against either radiant or necrotic damage (choose when the spell is cast). You also shed dim light in a 10-foot radius. You can end the spell early by using an action to dismiss it.", + "document": "deepmx", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_snowblind-stare", + "fields": { + "name": "Snowblind Stare", + "desc": "Your eyes burn with a bright, cold light that inflicts snow blindness on a creature you target within 30 feet of you. If the target fails a Constitution saving throw, it suffers the first stage of snow blindness (see [Conditions](https://api.open5e.com/sections/conditions)), or the second stage of snow blindness if it already has the first stage. The target recovers as described in [Conditions](https://api.open5e.com/sections/conditions).", + "document": "deepmx", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "2 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_soothsayers-shield", + "fields": { + "name": "Soothsayer's Shield", + "desc": "This spell can be cast when you are hit by an enemy's attack. Until the start of your next turn, you have a +4 bonus to AC, including against the triggering attack.", + "document": "deepmx", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_soul-of-the-machine", + "fields": { + "name": "Soul of the Machine", + "desc": "Deep Magic: clockwork One willing creature you touch becomes immune to mind-altering effects and psychic damage for the spell's duration.", + "document": "deepmx", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_sphere-of-order", + "fields": { + "name": "Sphere of Order", + "desc": "Deep Magic: clockwork You surround yourself with the perfect order of clockwork. Chaotic creatures that start their turn in the area or enter it on their turn take 5d8 psychic damage. The damage is 8d8 for Chaotic aberrations, celestials, elementals, and fiends. A successful Wisdom saving throw halves the damage, but Chaotic creatures (the only ones affected by the spell) make the saving throw with disadvantage.", + "document": "deepmx", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_spire-of-stone", + "fields": { + "name": "Spire of Stone", + "desc": "You cause a spire of rock to burst out of the ground, floor, or another surface beneath your feet. The spire is as wide as your space, and lifting you, it can rise up to 20 feet in height. When the spire appears, a creature within 5 feet of you must succeed on a Dexterity saving throw or fall prone. As a bonus action on your turn, you can cause the spire to rise or descend up to 20 feet to a maximum height of 40 feet. If you move off of the spire, it immediately collapses back into the ground. When the spire disappears, it leaves the surface from which it sprang unharmed. You can create a new spire as a bonus action for the duration of the spell.", + "document": "deepmx", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_strength-of-the-underworld", + "fields": { + "name": "Strength of the Underworld", + "desc": "You call on the power of the dark gods of the afterlife to strengthen the target's undead energy. The spell's target has advantage on saving throws against Turn Undead while the spell lasts. If this spell is cast on a corpse that died from darakhul fever, the corpse gains a +5 bonus on its roll to determine whether it rises as a darakhul.", + "document": "deepmx", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_summon-old-ones-avatar", + "fields": { + "name": "Summon Old One's Avatar", + "desc": "Deep Magic: void magic You summon a worldly incarnation of a Great Old One, which appears in an unoccupied space you can see within range. This avatar manifests as a Void speaker (Creature Codex NPC) augmented by boons from the Void. Choose one of the following options for the type of avatar that appears (other options might be available if the GM allows): Avatar of Cthulhu. The Void speaker is a goat-man with the ability to cast black goat's blessing and unseen strangler at will. Avatar of Yog-Sothoth. The Void speaker is a human with 1d4 + 1 flesh warps and the ability to cast gift of Azathoth and thunderwave at will. When the avatar appears, you must make a Charisma saving throw. If it succeeds, the avatar is friendly to you and your allies. If it fails, the avatar is friendly to no one and attacks the nearest creature to it, pursuing and fighting for as long as possible. Roll initiative for the avatar, which takes its own turn. If friendly to you, it obeys verbal commands you issue to it (no action required by you). If the avatar has no command, it attacks the nearest creature. Each round you maintain concentration on the spell, you must make a successful DC 15 Wisdom saving throw or take 1d6 psychic damage. If the cumulative total of this damage exceeds your Wisdom score, you gain one point of Void taint and you are afflicted with a short-term madness. The same penalty recurs when the damage exceeds twice your Wisdom, three times your Wisdom, etc. The avatar disappears when it drops to 0 hit points or when the spell ends. If you stop concentrating on the spell before an hour has elapsed, the avatar becomes uncontrolled and hostile and doesn't disappear until 1d6 rounds later or it's killed.", + "document": "deepmx", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_tick-stop", + "fields": { + "name": "Tick Stop", + "desc": "Deep Magic: clockwork You speak a word and the target construct can take one action or bonus action on its next turn, but not both. The construct is immune to further tick stops from the same caster for 24 hours.", + "document": "deepmx", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_timeless-engine", + "fields": { + "name": "Timeless Engine", + "desc": "Deep Magic: clockwork You halt the normal processes of degradation and wear in a nonmagical clockwork device, making normal maintenance unnecessary and slowing fuel consumption to 1/10th of normal. For magical devices and constructs, the spell greatly reduces wear. A magical clockwork device, machine, or creature that normally needs daily maintenance only needs care once a year; if it previously needed monthly maintenance, it now requires attention only once a decade.", + "document": "deepmx", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_winding-key", + "fields": { + "name": "Winding Key", + "desc": "Deep Magic: clockwork You target a construct, giving it an extra action or move on each of its turns.", + "document": "deepmx", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_wotans-rede", + "fields": { + "name": "Wotan's Rede", + "desc": "You recite a poem in the Northern tongue, sent to your lips by Wotan himself, to gain supernatural insight or advice. Your next Intelligence or Charisma check within 1 minute is made with advantage, and you can include twice your proficiency bonus. At the GM's discretion, this spell can instead provide a piece of general advice equivalent to an contact other plane.", + "document": "deepmx", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "deepmx_write-memory", + "fields": { + "name": "Write Memory", + "desc": "Deep Magic: clockwork You copy your memories, or those learned from the spell read memory, onto an empty memory gear.", + "document": "deepmx", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + } +] \ No newline at end of file diff --git a/data/v2/kobold-press/deepmx/SpellCastingOption.json b/data/v2/kobold-press/deepmx/SpellCastingOption.json index 599a77e4..3454beb5 100644 --- a/data/v2/kobold-press/deepmx/SpellCastingOption.json +++ b/data/v2/kobold-press/deepmx/SpellCastingOption.json @@ -1,2030 +1,2030 @@ [ -{ - "model": "api_v2.spellcastingoption", - "pk": 4726, - "fields": { - "parent": "absolute-command", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4728, - "fields": { - "parent": "absolute-command", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4729, - "fields": { - "parent": "absolute-command", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4730, - "fields": { - "parent": "absolute-command", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4731, - "fields": { - "parent": "absolute-command", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4732, - "fields": { - "parent": "absolute-command", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4733, - "fields": { - "parent": "amplify-ley-field", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4734, - "fields": { - "parent": "animate-construct", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4736, - "fields": { - "parent": "animate-construct", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4737, - "fields": { - "parent": "animate-construct", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4738, - "fields": { - "parent": "animate-construct", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4739, - "fields": { - "parent": "animate-construct", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4740, - "fields": { - "parent": "animate-construct", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4741, - "fields": { - "parent": "animate-construct", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4742, - "fields": { - "parent": "animate-construct", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4743, - "fields": { - "parent": "animate-construct", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4744, - "fields": { - "parent": "anomalous-object", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4745, - "fields": { - "parent": "armored-heart", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4746, - "fields": { - "parent": "armored-shell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4748, - "fields": { - "parent": "armored-shell", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4749, - "fields": { - "parent": "armored-shell", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4750, - "fields": { - "parent": "armored-shell", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4751, - "fields": { - "parent": "armored-shell", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4752, - "fields": { - "parent": "armored-shell", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4753, - "fields": { - "parent": "armored-shell", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4754, - "fields": { - "parent": "armored-shell", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4755, - "fields": { - "parent": "armored-shell", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4756, - "fields": { - "parent": "banshee-wail", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4757, - "fields": { - "parent": "beguiling-gift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4758, - "fields": { - "parent": "borrowing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4760, - "fields": { - "parent": "borrowing", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4761, - "fields": { - "parent": "borrowing", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4762, - "fields": { - "parent": "borrowing", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4763, - "fields": { - "parent": "borrowing", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4764, - "fields": { - "parent": "borrowing", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4765, - "fields": { - "parent": "borrowing", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4766, - "fields": { - "parent": "call-the-hunter", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4767, - "fields": { - "parent": "circle-of-devestation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4768, - "fields": { - "parent": "cloying-darkness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4770, - "fields": { - "parent": "cloying-darkness", - "type": "slot_level_2", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4771, - "fields": { - "parent": "cloying-darkness", - "type": "slot_level_3", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4772, - "fields": { - "parent": "cloying-darkness", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4773, - "fields": { - "parent": "cloying-darkness", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4774, - "fields": { - "parent": "cloying-darkness", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4775, - "fields": { - "parent": "cloying-darkness", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4776, - "fields": { - "parent": "cloying-darkness", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4777, - "fields": { - "parent": "cloying-darkness", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4778, - "fields": { - "parent": "cosmic-alignment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4779, - "fields": { - "parent": "cosmic-alignment", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4780, - "fields": { - "parent": "cruor-of-visions", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4781, - "fields": { - "parent": "extract-foyson", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4782, - "fields": { - "parent": "extract-foyson", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4784, - "fields": { - "parent": "extract-foyson", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4785, - "fields": { - "parent": "extract-foyson", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4786, - "fields": { - "parent": "extract-foyson", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4787, - "fields": { - "parent": "extract-foyson", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4788, - "fields": { - "parent": "extract-foyson", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4789, - "fields": { - "parent": "extract-foyson", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4790, - "fields": { - "parent": "extract-foyson", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4791, - "fields": { - "parent": "extract-foyson", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4792, - "fields": { - "parent": "find-the-flaw", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4793, - "fields": { - "parent": "gear-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4794, - "fields": { - "parent": "gift-of-azathoth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4796, - "fields": { - "parent": "gift-of-azathoth", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4797, - "fields": { - "parent": "gift-of-azathoth", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4798, - "fields": { - "parent": "gift-of-azathoth", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4799, - "fields": { - "parent": "gift-of-azathoth", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4800, - "fields": { - "parent": "gift-of-azathoth", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4801, - "fields": { - "parent": "gift-of-azathoth", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4802, - "fields": { - "parent": "gift-of-azathoth", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4803, - "fields": { - "parent": "greater-ley-pulse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4805, - "fields": { - "parent": "greater-ley-pulse", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4806, - "fields": { - "parent": "greater-ley-pulse", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4807, - "fields": { - "parent": "gremlins", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4809, - "fields": { - "parent": "gremlins", - "type": "slot_level_5", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4810, - "fields": { - "parent": "gremlins", - "type": "slot_level_6", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4811, - "fields": { - "parent": "gremlins", - "type": "slot_level_7", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4812, - "fields": { - "parent": "gremlins", - "type": "slot_level_8", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4813, - "fields": { - "parent": "gremlins", - "type": "slot_level_9", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4814, - "fields": { - "parent": "grinding-gears", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4815, - "fields": { - "parent": "hearth-charm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4816, - "fields": { - "parent": "hellforging", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4817, - "fields": { - "parent": "hellforging", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4818, - "fields": { - "parent": "hods-gift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4820, - "fields": { - "parent": "hods-gift", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4821, - "fields": { - "parent": "hods-gift", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4822, - "fields": { - "parent": "hods-gift", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4823, - "fields": { - "parent": "hods-gift", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4824, - "fields": { - "parent": "imbue-spell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4825, - "fields": { - "parent": "imbue-spell", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4827, - "fields": { - "parent": "imbue-spell", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4828, - "fields": { - "parent": "imbue-spell", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4829, - "fields": { - "parent": "imbue-spell", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4830, - "fields": { - "parent": "imbue-spell", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4831, - "fields": { - "parent": "jotuns-jest", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4832, - "fields": { - "parent": "land-bond", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4833, - "fields": { - "parent": "lesser-ley-pulse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4835, - "fields": { - "parent": "lesser-ley-pulse", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4836, - "fields": { - "parent": "lesser-ley-pulse", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4837, - "fields": { - "parent": "lesser-ley-pulse", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4838, - "fields": { - "parent": "lesser-ley-pulse", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4839, - "fields": { - "parent": "ley-disruption", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4840, - "fields": { - "parent": "ley-energy-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4842, - "fields": { - "parent": "ley-energy-bolt", - "type": "slot_level_4", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4843, - "fields": { - "parent": "ley-energy-bolt", - "type": "slot_level_5", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4844, - "fields": { - "parent": "ley-energy-bolt", - "type": "slot_level_6", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4845, - "fields": { - "parent": "ley-energy-bolt", - "type": "slot_level_7", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4846, - "fields": { - "parent": "ley-energy-bolt", - "type": "slot_level_8", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4847, - "fields": { - "parent": "ley-energy-bolt", - "type": "slot_level_9", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4848, - "fields": { - "parent": "ley-leech", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4850, - "fields": { - "parent": "ley-leech", - "type": "slot_level_6", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4851, - "fields": { - "parent": "ley-leech", - "type": "slot_level_7", - "damage_roll": "10d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4852, - "fields": { - "parent": "ley-leech", - "type": "slot_level_8", - "damage_roll": "11d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4853, - "fields": { - "parent": "ley-leech", - "type": "slot_level_9", - "damage_roll": "12d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4854, - "fields": { - "parent": "ley-sense", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4855, - "fields": { - "parent": "ley-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4856, - "fields": { - "parent": "ley-surge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4857, - "fields": { - "parent": "ley-whip", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4858, - "fields": { - "parent": "lokis-gift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4859, - "fields": { - "parent": "machine-sacrifice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4860, - "fields": { - "parent": "machine-speech", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4861, - "fields": { - "parent": "machines-load", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4863, - "fields": { - "parent": "machines-load", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4864, - "fields": { - "parent": "machines-load", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4865, - "fields": { - "parent": "machines-load", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4866, - "fields": { - "parent": "machines-load", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4867, - "fields": { - "parent": "machines-load", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4868, - "fields": { - "parent": "machines-load", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4869, - "fields": { - "parent": "machines-load", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4870, - "fields": { - "parent": "machines-load", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4871, - "fields": { - "parent": "mass-blade-ward", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4872, - "fields": { - "parent": "mass-repair-metal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4874, - "fields": { - "parent": "mass-repair-metal", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4875, - "fields": { - "parent": "mass-repair-metal", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4876, - "fields": { - "parent": "mass-repair-metal", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4877, - "fields": { - "parent": "mass-repair-metal", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4878, - "fields": { - "parent": "mechanical-union", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4879, - "fields": { - "parent": "molechs-blessing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4880, - "fields": { - "parent": "move-the-cosmic-wheel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4881, - "fields": { - "parent": "overclock", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4882, - "fields": { - "parent": "power-word-restore", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4883, - "fields": { - "parent": "read-memory", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4884, - "fields": { - "parent": "repair-metal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4886, - "fields": { - "parent": "repair-metal", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4887, - "fields": { - "parent": "repair-metal", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4888, - "fields": { - "parent": "repair-metal", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4889, - "fields": { - "parent": "repair-metal", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4890, - "fields": { - "parent": "repair-metal", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4891, - "fields": { - "parent": "repair-metal", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4892, - "fields": { - "parent": "repair-metal", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4893, - "fields": { - "parent": "risen-road", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4894, - "fields": { - "parent": "robe-of-shards", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4895, - "fields": { - "parent": "shadow-realm-gateway", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4896, - "fields": { - "parent": "shadow-realm-gateway", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4897, - "fields": { - "parent": "shield-of-star-and-shadow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4898, - "fields": { - "parent": "snowblind-stare", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4899, - "fields": { - "parent": "soothsayers-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4900, - "fields": { - "parent": "soul-of-the-machine", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4901, - "fields": { - "parent": "sphere-of-order", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4902, - "fields": { - "parent": "spire-of-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4903, - "fields": { - "parent": "strength-of-the-underworld", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4904, - "fields": { - "parent": "summon-old-ones-avatar", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4905, - "fields": { - "parent": "summon-old-ones-avatar", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4906, - "fields": { - "parent": "tick-stop", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4907, - "fields": { - "parent": "timeless-engine", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4908, - "fields": { - "parent": "winding-key", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4909, - "fields": { - "parent": "wotans-rede", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4910, - "fields": { - "parent": "wotans-rede", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4911, - "fields": { - "parent": "write-memory", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -} -] + { + "model": "api_v2.spellcastingoption", + "pk": 4726, + "fields": { + "parent": "deepmx_absolute-command", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4728, + "fields": { + "parent": "deepmx_absolute-command", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4729, + "fields": { + "parent": "deepmx_absolute-command", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4730, + "fields": { + "parent": "deepmx_absolute-command", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4731, + "fields": { + "parent": "deepmx_absolute-command", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4732, + "fields": { + "parent": "deepmx_absolute-command", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4733, + "fields": { + "parent": "deepmx_amplify-ley-field", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4734, + "fields": { + "parent": "deepmx_animate-construct", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4736, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4737, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4738, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4739, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4740, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4741, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4742, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4743, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4744, + "fields": { + "parent": "deepmx_anomalous-object", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4745, + "fields": { + "parent": "deepmx_armored-heart", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4746, + "fields": { + "parent": "deepmx_armored-shell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4748, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4749, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4750, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4751, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4752, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4753, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4754, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4755, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4756, + "fields": { + "parent": "deepmx_banshee-wail", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4757, + "fields": { + "parent": "deepmx_beguiling-gift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4758, + "fields": { + "parent": "deepmx_borrowing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4760, + "fields": { + "parent": "deepmx_borrowing", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4761, + "fields": { + "parent": "deepmx_borrowing", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4762, + "fields": { + "parent": "deepmx_borrowing", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4763, + "fields": { + "parent": "deepmx_borrowing", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4764, + "fields": { + "parent": "deepmx_borrowing", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4765, + "fields": { + "parent": "deepmx_borrowing", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4766, + "fields": { + "parent": "deepmx_call-the-hunter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4767, + "fields": { + "parent": "deepmx_circle-of-devestation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4768, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4770, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_2", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4771, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_3", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4772, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4773, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4774, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4775, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4776, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4777, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4778, + "fields": { + "parent": "deepmx_cosmic-alignment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4779, + "fields": { + "parent": "deepmx_cosmic-alignment", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4780, + "fields": { + "parent": "deepmx_cruor-of-visions", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4781, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4782, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4784, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4785, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4786, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4787, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4788, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4789, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4790, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4791, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4792, + "fields": { + "parent": "deepmx_find-the-flaw", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4793, + "fields": { + "parent": "deepmx_gear-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4794, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4796, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4797, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4798, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4799, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4800, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4801, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4802, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4803, + "fields": { + "parent": "deepmx_greater-ley-pulse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4805, + "fields": { + "parent": "deepmx_greater-ley-pulse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4806, + "fields": { + "parent": "deepmx_greater-ley-pulse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4807, + "fields": { + "parent": "deepmx_gremlins", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4809, + "fields": { + "parent": "deepmx_gremlins", + "type": "slot_level_5", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4810, + "fields": { + "parent": "deepmx_gremlins", + "type": "slot_level_6", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4811, + "fields": { + "parent": "deepmx_gremlins", + "type": "slot_level_7", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4812, + "fields": { + "parent": "deepmx_gremlins", + "type": "slot_level_8", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4813, + "fields": { + "parent": "deepmx_gremlins", + "type": "slot_level_9", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4814, + "fields": { + "parent": "deepmx_grinding-gears", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4815, + "fields": { + "parent": "deepmx_hearth-charm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4816, + "fields": { + "parent": "deepmx_hellforging", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4817, + "fields": { + "parent": "deepmx_hellforging", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4818, + "fields": { + "parent": "deepmx_hods-gift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4820, + "fields": { + "parent": "deepmx_hods-gift", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4821, + "fields": { + "parent": "deepmx_hods-gift", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4822, + "fields": { + "parent": "deepmx_hods-gift", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4823, + "fields": { + "parent": "deepmx_hods-gift", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4824, + "fields": { + "parent": "deepmx_imbue-spell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4825, + "fields": { + "parent": "deepmx_imbue-spell", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4827, + "fields": { + "parent": "deepmx_imbue-spell", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4828, + "fields": { + "parent": "deepmx_imbue-spell", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4829, + "fields": { + "parent": "deepmx_imbue-spell", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4830, + "fields": { + "parent": "deepmx_imbue-spell", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4831, + "fields": { + "parent": "deepmx_jotuns-jest", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4832, + "fields": { + "parent": "deepmx_land-bond", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4833, + "fields": { + "parent": "deepmx_lesser-ley-pulse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4835, + "fields": { + "parent": "deepmx_lesser-ley-pulse", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4836, + "fields": { + "parent": "deepmx_lesser-ley-pulse", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4837, + "fields": { + "parent": "deepmx_lesser-ley-pulse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4838, + "fields": { + "parent": "deepmx_lesser-ley-pulse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4839, + "fields": { + "parent": "deepmx_ley-disruption", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4840, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4842, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "slot_level_4", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4843, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "slot_level_5", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4844, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "slot_level_6", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4845, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "slot_level_7", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4846, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "slot_level_8", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4847, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "slot_level_9", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4848, + "fields": { + "parent": "deepmx_ley-leech", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4850, + "fields": { + "parent": "deepmx_ley-leech", + "type": "slot_level_6", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4851, + "fields": { + "parent": "deepmx_ley-leech", + "type": "slot_level_7", + "damage_roll": "10d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4852, + "fields": { + "parent": "deepmx_ley-leech", + "type": "slot_level_8", + "damage_roll": "11d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4853, + "fields": { + "parent": "deepmx_ley-leech", + "type": "slot_level_9", + "damage_roll": "12d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4854, + "fields": { + "parent": "deepmx_ley-sense", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4855, + "fields": { + "parent": "deepmx_ley-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4856, + "fields": { + "parent": "deepmx_ley-surge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4857, + "fields": { + "parent": "deepmx_ley-whip", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4858, + "fields": { + "parent": "deepmx_lokis-gift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4859, + "fields": { + "parent": "deepmx_machine-sacrifice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4860, + "fields": { + "parent": "deepmx_machine-speech", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4861, + "fields": { + "parent": "deepmx_machines-load", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4863, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4864, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4865, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4866, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4867, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4868, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4869, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4870, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4871, + "fields": { + "parent": "deepmx_mass-blade-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4872, + "fields": { + "parent": "deepmx_mass-repair-metal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4874, + "fields": { + "parent": "deepmx_mass-repair-metal", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4875, + "fields": { + "parent": "deepmx_mass-repair-metal", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4876, + "fields": { + "parent": "deepmx_mass-repair-metal", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4877, + "fields": { + "parent": "deepmx_mass-repair-metal", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4878, + "fields": { + "parent": "deepmx_mechanical-union", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4879, + "fields": { + "parent": "deepmx_molechs-blessing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4880, + "fields": { + "parent": "deepmx_move-the-cosmic-wheel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4881, + "fields": { + "parent": "deepmx_overclock", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4882, + "fields": { + "parent": "deepmx_power-word-restore", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4883, + "fields": { + "parent": "deepmx_read-memory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4884, + "fields": { + "parent": "deepmx_repair-metal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4886, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4887, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4888, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4889, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4890, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4891, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4892, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4893, + "fields": { + "parent": "deepmx_risen-road", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4894, + "fields": { + "parent": "deepmx_robe-of-shards", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4895, + "fields": { + "parent": "deepmx_shadow-realm-gateway", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4896, + "fields": { + "parent": "deepmx_shadow-realm-gateway", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4897, + "fields": { + "parent": "deepmx_shield-of-star-and-shadow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4898, + "fields": { + "parent": "deepmx_snowblind-stare", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4899, + "fields": { + "parent": "deepmx_soothsayers-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4900, + "fields": { + "parent": "deepmx_soul-of-the-machine", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4901, + "fields": { + "parent": "deepmx_sphere-of-order", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4902, + "fields": { + "parent": "deepmx_spire-of-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4903, + "fields": { + "parent": "deepmx_strength-of-the-underworld", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4904, + "fields": { + "parent": "deepmx_summon-old-ones-avatar", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4905, + "fields": { + "parent": "deepmx_summon-old-ones-avatar", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4906, + "fields": { + "parent": "deepmx_tick-stop", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4907, + "fields": { + "parent": "deepmx_timeless-engine", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4908, + "fields": { + "parent": "deepmx_winding-key", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4909, + "fields": { + "parent": "deepmx_wotans-rede", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4910, + "fields": { + "parent": "deepmx_wotans-rede", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4911, + "fields": { + "parent": "deepmx_write-memory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + } +] \ No newline at end of file diff --git a/data/v2/kobold-press/kp/Spell.json b/data/v2/kobold-press/kp/Spell.json index 41d419e7..9ce782e2 100644 --- a/data/v2/kobold-press/kp/Spell.json +++ b/data/v2/kobold-press/kp/Spell.json @@ -1,971 +1,971 @@ [ -{ - "model": "api_v2.spell", - "pk": "ambush", - "fields": { - "name": "Ambush", - "desc": "The forest floor swirls and shifts around you to welcome you into its embrace. While in a forest, you have advantage on Dexterity (Stealth) checks to Hide. While hidden in a forest, you have advantage on your next Initiative check. The spell ends if you attack or cast a spell.", - "document": "kp", - "level": 1, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The spell ends if you or any target of this spell attacks or casts a spell.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true + { + "model": "api_v2.spell", + "pk": "kp_ambush", + "fields": { + "name": "Ambush", + "desc": "The forest floor swirls and shifts around you to welcome you into its embrace. While in a forest, you have advantage on Dexterity (Stealth) checks to Hide. While hidden in a forest, you have advantage on your next Initiative check. The spell ends if you attack or cast a spell.", + "document": "kp", + "level": 1, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The spell ends if you or any target of this spell attacks or casts a spell.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "kp_blood-strike", + "fields": { + "name": "Blood Strike", + "desc": "By performing this ritual, you can cast a spell on one nearby creature and have it affect a different, more distant creature. Both targets must be related by blood (no more distantly than first cousins). Neither of them needs to be a willing target. The blood strike ritual is completed first, taking 10 minutes to cast on yourself. Then the spell to be transferred is immediately cast by you on the initial target, which must be close enough to touch no matter what the spell's normal range is. The secondary target must be within 1 mile and on the same plane of existence as you. If the second spell allows a saving throw, it's made by the secondary target, not the initial target. If the saving throw succeeds, any portion of the spell that's avoided or negated by the secondary target affects the initial target instead. A creature can be the secondary target of blood strike only once every 24 hours; subsequent attempts during that time take full effect against the initial target with no chance to affect the secondary target. Only spells that have a single target can be transferred via blood stike. For example, a lesser restoration) currently affecting the initial creature and transfer it to the secondary creature, which then makes any applicable saving throw against the effect. If the saving throw fails or there is no saving throw, the affliction transfers completely and no longer affects the initial target. If the saving throw succeeds, the initial creature is still afflicted and also suffers anew any damage or conditions associated with first exposure to the affliction.", + "document": "kp", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special (see below)", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_conjure-manabane-swarm", + "fields": { + "name": "Conjure Manabane Swarm", + "desc": "Deep Magic: summoning You summon a swarm of manabane scarabs that has just 40 hit points. The swarm appears at a spot you choose within 60 feet and attacks the closest enemy. You can conjure the swarm to appear in an enemy's space. If you prefer, you can summon two full-strength, standard swarms of insects (including beetles, centipedes, spiders, or wasps) instead.", + "document": "kp", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_curse-of-formlessness", + "fields": { + "name": "Curse of Formlessness", + "desc": "A creature you touch must make a successful Constitution saving throw or be cursed with a shifting, amorphous form. Spells that change the target creature's shape (such as polymorph) do not end the curse, but they do hold the creature in a stable form, temporarily mitigating it until the end of that particular spell's duration; shapechange and stoneskin have similar effects. While under the effect of the curse of formlessness, the target creature is resistant to slashing and piercing damage and ignores the additional damage done by critical hits, but it can neither hold nor use any item, nor can it cast spells or activate magic items. Its movement is halved, and winged flight becomes impossible. Any armor, clothing, helmet, or ring becomes useless. Large items that are carried or worn, such as armor, backpacks, or clothing, become hindrances, so the target has disadvantage on Dexterity checks and saving throws while such items are in place. A creature under the effect of a curse of formlessness can try to hold itself together through force of will. The afflicted creature uses its action to repeat the saving throw; if it succeeds, the afflicted creature negates the penalties from the spell until the start of its next turn.", + "document": "kp", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_delay-passing", + "fields": { + "name": "Delay Passing", + "desc": "You draw forth the ebbing life force of a creature and question it. Upon casting this spell, you must touch a creature that dropped to 0 hit points since your last turn. If it fails a Wisdom saving throw, you temporarily prevent its spirit from passing into the next realm. You are able to hear the spirit, though the spirit doesn't appear to any creature without the ability to see invisible creatures. The spirit communicates directly with your psyche and cannot see or hear anything but what you tell it. You can ask the spirit a number of questions equal to your proficiency bonus. Questions must be asked directly; a delay of more than 10 seconds between the spirit answering one question and you asking another allows the spirit to escape into the afterlife. The corpse's knowledge is limited to what it knew during life, including the languages it spoke. The spirit cannot lie to you, but it can refuse to answer a question that would harm its living family or friends, or truthfully answer that it doesn't know. Once the spirit answers your allotment of questions, it passes on.", + "document": "kp", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_doom-of-ancient-decrepitude", + "fields": { + "name": "Doom of Ancient Decrepitude", + "desc": "You generate an entropic field that rapidly ages every creature in the area of effect. The field covers a sphere with a 20-foot radius centered on you. Every creature inside the sphere when it's created, including you, must make a successful Constitution saving throw or gain 2 levels of exhaustion from sudden, traumatic aging. A creature that ends its turn in the field must repeat the saving throw, gaining 1 level of exhaustion per subsequent failure. You have advantage on these saving throws. An affected creature sheds 1 level of exhaustion at the end of its turn, if it started the turn outside the spell's area of effect (or the spell has ended). Only 1 level of exhaustion can be removed this way; all remaining levels are removed when the creature completes a short or long rest. A creature that died from gaining 6 levels of exhaustion, however, remains dead.", + "document": "kp", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_doom-of-voracity", + "fields": { + "name": "Doom of Voracity", + "desc": "You create a ripple of dark energy that destroys everything it touches. You create a 10-foot-radius, 10-foot-deep cylindrical extra-dimensional hole on a horizontal surface of sufficient size. Since it extends into another dimension, the pit has no weight and does not otherwise displace the original underlying material. You can create the pit in the deck of a ship as easily as in a dungeon floor or the ground of a forest. Any creature standing in the original conjured space, or on an expanded space as it grows, must succeed on a Dexterity saving throw to avoid falling in. The sloped pit edges crumble continuously, and any creature adjacent to the pit when it expands must succeed on a Dexterity saving throw to avoid falling in. Creatures subjected to a successful pushing effect (such as by a spell like incapacitated for 2 rounds. When the spell ends, creatures within the pit must make a Constitution saving throw. Those who succeed rise up with the bottom of the pit until they are standing on the original surface. Those who fail also rise up but are stunned for 2 rounds.", + "document": "kp", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, increase the depth of the pit by 10 feet for each slot level above 3rd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_feed-the-worms", + "fields": { + "name": "Feed the Worms", + "desc": "You draw forth the ebbing life force of a creature and use it to feed the worms. Upon casting this spell, you touch a creature that dropped to 0 hit points since your last turn. If it fails a Constitution saving throw, its body is completely consumed by worms in moments, leaving no remains. In its place is a swarm of worms (treat as a standard swarm of insects) that considers all other creatures except you as enemies. The swarm remains until it's killed.", + "document": "kp", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until destroyed", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_greater-ley-protection", + "fields": { + "name": "Greater Ley Protection", + "desc": "Deep Magic: forest-bound You create a 20-foot cube of antimagic within range that specifically protects against ley line magic. Ley line spells and magical effects up to level 7 that target a creature within the cube have no effect on that target. Any active ley line spells or magical effects up to level 7 on a creature or an object in the cube is suppressed while the creature or object is in it. The area of a ley line spell or magical effect up to level 7 can't extend into the cube. If the cube overlaps an area of ley line magic, such as greater ley pulse, the part of the area that is covered by the cube is suppressed. The cube has no effect on other types of magic or spells. You can exclude specific individuals within the cube from the protection.", + "document": "kp", + "level": 7, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 9th level or higher, its duration is concentration, up to 1 hour.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "line", + "shape_magnitude": 20, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_hirvsths-call", + "fields": { + "name": "Hirvsth's Call", + "desc": "Deep Magic: Rothenian You summon a spectral herd of ponies to drag off a creature that you can see in range. The target must be no bigger than Large and must make a Dexterity saving throw. On a successful save, the spell has no effect. On a failed save, a spectral rope wraps around the target and pulls it 60 feet in a direction of your choosing as the herd races off. The ponies continue running in the chosen direction for the duration of the spell but will alter course to avoid impassable obstacles. Once you choose the direction, you cannot change it. The ponies ignore difficult terrain and are immune to damage. The target is prone and immobilized but can use its action to make a Strength or Dexterity check against your spell DC to escape the spectral bindings. The target takes 1d6 bludgeoning damage for every 20 feet it is dragged by the ponies. The herd moves 60 feet each round at the beginning of your turn.", + "document": "kp", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, one additional creature can be targeted for each slot level above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_incantation-of-lies-made-truth", + "fields": { + "name": "Incantation of Lies Made Truth", + "desc": "This ritual must be cast during a solar eclipse. It can target a person, an organization (including a city), or a kingdom. If targeting an organization or a kingdom, the incantation requires an object epitomizing the entity as part of the material component, such as a crown, mayoral seal, standard, or primary relic. If targeting a person, the primary performer must hold a vial of the person's blood. Over the course of the incantation, the components are mixed and the primary caster inscribes a false history and a sum of knowledge concerning the target into the book using the mockingbird quills. When the incantation is completed, whatever the caster wrote in the book becomes known and accepted as truth by the target. The target can attempt a Wisdom saving throw to negate this effect. If the target was a city or a kingdom, the saving throw is made with advantage by its current leader or ruler. If the saving throw fails, all citizens or members of the target organization or kingdom believe the account written in the book to be fact. Any information contrary to what was written in the book is forgotten within an hour, but individuals who make a sustained study of such information can attempt a Wisdom saving throw to retain the contradictory knowledge. Books containing contradictory information are considered obsolete or purposely misleading. Permanent structures such as statues of heroes who've been written out of existence are believed to be purely artistic endeavors or so old that no one remembers their identities anymore. The effects of this ritual can be reversed by washing the written words from the book using universal solvent and then burning the book to ashes in a magical fire. Incantation of lies made truth is intended to be a villainous motivator in a campaign, with the player characters fighting to uncover the truth and reverse the spell's effect. The GM should take care not to remove too much player agency with this ritual. The creatures affected should be predominantly NPCs, with PCs and even select NPCs able to resist it. Reversing the effect of the ritual can be the entire basis of a campaign.", + "document": "kp", + "level": 9, + "school": "enchantment", + "higher_level": "", + "target_type": "object", + "range": "1000 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_jeweled-fissure", + "fields": { + "name": "Jeweled Fissure", + "desc": "Deep Magic: dragon With a sweeping gesture, you cause jagged crystals to burst from the ground and hurtle directly upward. Choose an origin point within the spell's range that you can see. Starting from that point, the crystals burst out of the ground along a 30-foot line. All creatures in that line and up to 100 feet above it take 2d8 thunder damage plus 2d8 piercing damage; a successful Dexterity saving throw negates the piercing damage. A creature that fails the saving throw is impaled by a chunk of crystal that halves the creature's speed, prevents it from flying, and causes it to fall to the ground if it was flying. To remove a crystal, the creature or an ally within 5 feet of it must use an action and make a successful DC 13 Strength check. If the check succeeds, the impaled creature takes 1d8 piercing damage and its speed and flying ability are restored to normal.", + "document": "kp", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "1d8", + "damage_types": [ + "piercing" + ], + "duration": "instantaneous", + "shape_type": "line", + "shape_magnitude": 30, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_lesser-ley-protection", + "fields": { + "name": "Lesser Ley Protection", + "desc": "Deep Magic: forest-bound You create a 10-foot cube of antimagic within range that specifically protects against ley line magic. Ley line spells and magical effects up to level 5 that target a creature within the cube have no effect on that target. Any active ley line spells or magical effects up to level 5 on a creature or an object in the cube is suppressed while the creature or object is in it. The area of a ley line spell or magical effect up to level 5 can't extend into the cube. If the cube overlaps an area of ley line magic, such as lesser ley pulse, the part of the area that is covered by the cube is suppressed. The cube has no effect on other types of magic or spells. You can exclude specific individuals within the cube from the protection.", + "document": "kp", + "level": 5, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, its duration is concentration, up to 1 hour.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "line", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_ley-disturbance", + "fields": { + "name": "Ley Disturbance", + "desc": "Deep Magic: forest-bound While in your bound forest, you tune your senses to any disturbances of ley energy flowing through it. For the duration, you are aware of any ley line manipulation or ley spell casting within 5 miles of you. You know the approximate distance and general direction to each disturbance within that range, but you don't know its exact location. This doesn't allow you to locate the ley lines themselves, just any use or modification of them.", + "document": "kp", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_locate-red-portal", + "fields": { + "name": "Locate Red Portal", + "desc": "For the duration, you can sense the presence of any dimensional portals within range and whether they are one-way or two-way. If you sense a portal using this spell, you can use your action to peer through the portal to determine its destination. You gain a glimpse of the area at the other end of the shadow road. If the destination is not somewhere you have previously visited, you can make a DC 25 Intelligence (Arcana, History or Nature-whichever is most relevant) check to determine to where and when the portal leads.", + "document": "kp", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_moons-respite", + "fields": { + "name": "Moon's Respite", + "desc": "You touch a creature who must be present for the entire casting. A beam of moonlight shines down from above, bathing the target in radiant light. The spell fails if you can't see the open sky. If the target has any levels of shadow corruption, the moonlight burns away some of the Shadow tainting it. The creature must make a Constitution saving throw against a DC of 10 + the number of shadow corruption levels it has. The creature takes 2d10 radiant damage per level of shadow corruption and removes 1 level of shadow corruption on a failed saving throw, or half as much damage and removes 2 levels of shadow corruption on a success.", + "document": "kp", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d10", + "damage_types": [ + "radiant" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_morphic-flux", + "fields": { + "name": "Morphic Flux", + "desc": "When you cast this spell, your body becomes highly mutable, your flesh constantly shifting and quivering, occasionally growing extra parts-limbs and eyes-only to reabsorb them soon afterward. While under the effect of this spell, you have resistance to slashing and piercing damage and ignore the additional damage done by critical hits. You can squeeze through Tiny spaces without penalty. In addition, once per round, as a bonus action, you can make an unarmed attack with a newly- grown limb. Treat it as a standard unarmed attack, but you choose whether it does bludgeoning, piercing, or slashing damage.", + "document": "kp", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_open-red-portal", + "fields": { + "name": "Open Red Portal", + "desc": "You must tap the power of a titanic or strong ley line to cast this spell (see the Ley Initiate feat). You open a new two-way Red Portal on the shadow road, leading to a precise location of your choosing on any plane of existence. If located on the Prime Material Plane, this destination can be in the present day or up to 1,000 years in the past. The portal lasts for the duration. Deities and other planar rulers can prevent portals from opening in their presence or anywhere within their domains.", + "document": "kp", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_peruns-doom", + "fields": { + "name": "Perun's Doom", + "desc": "Deep Magic: Rothenian A powerful wind swirls from your outstretched hand toward a point you choose within range, where it explodes with a low roar into vortex of air. Each creature in a 20-foot-radius cylinder centered on that point must make a Strength saving throw. On a failed save, the creature takes 3d8 bludgeoning damage, is pulled to the center of the cylinder, and thrown 50 feet upward into the air. If a creature hits a solid obstruction, such as a stone ceiling, when it's thrown upward, it takes bludgeoning damage as if it had fallen (50 feet - the distance it's traveled upward). For example, if a creature hits the ceiling after rising only 10 feet, it takes bludgeoning damage as if it had fallen (50 feet - 10 feet =) 40 feet, or 4d6 bludgeoning damage.", + "document": "kp", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, increase the distance affected creatures are thrown into the air by 10 feet for each slot above 3rd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": "cylinder", + "shape_magnitude": 20, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_reset-red-portal", + "fields": { + "name": "Reset Red Portal", + "desc": "When you cast this spell, you can reset the destination of a Red Portal within range, diverting the shadow road so it leads to a location of your choosing. This destination must be in the present day. You can specify the target destination in general terms such as the City of the Fire Snakes, Mammon's home, the Halls of Avarice, or in the Eleven Hells, and anyone stepping through the portal while the spell is in effect will appear in or near that destination. If you reset the destination to the City of the Fire Snakes, for example, the portal might now lead to the first inner courtyard inside the city, or to the marketplace just outside at the GM's discretion. Once the spell's duration expires, the Red Portal resets to its original destination (50% chance) or to a new random destination (roll on the Destinations table).", + "document": "kp", + "level": 5, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can specify a destination up to 100 years in the past for each slot level beyond 5th.", + "target_type": "object", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_sanguine-spear", + "fields": { + "name": "Sanguine Spear", + "desc": "You draw blood from the corpse of a creature that has been dead for no more than 24 hours and magically fashion it into a spear of frozen blood. This functions as a +1 spear that does cold damage instead of piercing damage. If the spear leaves your hand for more than 1 round, it melts and the spell ends.", + "document": "kp", + "level": 2, + "school": "transmutation", + "higher_level": "If the spell is cast with a 4th-level spell slot, it creates a +2 spear. A 6th-level spell slot creates a +3 spear.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_scattered-images", + "fields": { + "name": "Scattered Images", + "desc": "When you cast this spell, you create illusory doubles that move when you move but in different directions, distracting and misdirecting your opponents. When scattered images is cast, 1d4 + 2 images are created. Images behave exactly as those created with mirror image, with the exceptions described here. These images remain in your space, acting as invisible or the attacker is blind, the spell has no effect.", + "document": "kp", + "level": 4, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_seal-red-portal", + "fields": { + "name": "Seal Red Portal", + "desc": "You seal a Red Portal or other dimensional gate within range, rendering it inoperable until this spell is dispelled. While the portal remains sealed in this way, it cannot be found with the locate Red Portal spell.", + "document": "kp", + "level": 6, + "school": "abjuration", + "higher_level": "", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_selfish-wish", + "fields": { + "name": "Selfish Wish", + "desc": "The selfish wish grants the desires of a supplicant in exchange for power. Like a wish for a great increase in Strength may come with an equal reduction in Intelligence). In exchange for casting the selfish wish, the caster also receives an influx of power. The caster receives the following bonuses for 2 minutes: Doubled speed one extra action each round (as haste) Armor class increases by 3", + "document": "kp", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_shadow-spawn", + "fields": { + "name": "Shadow Spawn", + "desc": "Casting this spell consumes the corpse of a creature and creates a shadowy duplicate of it. The creature returns as a shadow beast. The shadow beast has dim memories of its former life and retains free will; casters are advised to be ready to make an attractive offer to the newly-risen shadow beast, to gain its cooperation.", + "document": "kp", + "level": 6, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_shadow-tree", + "fields": { + "name": "Shadow Tree", + "desc": "This spell temporarily draws a willow tree from the Shadow Realm to the location you designate within range. The tree is 5 feet in diameter and 20 feet tall.\n When you cast the spell, you can specify individuals who can interact with the tree. All other creatures see the tree as a shadow version of itself and can't grasp or climb it, passing through its shadowy substance. A creature that can interact with the tree and that has Sunlight Sensitivity or Sunlight Hypersensitivity is protected from sunlight while within 20 feet of the tree. A creature that can interact with the tree can climb into its branches, giving the creature half cover.", + "document": "kp", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_shadows-brand", + "fields": { + "name": "Shadow's Brand", + "desc": "You draw a rune or inscription no larger than your hand on the target. The target must succeed on a Constitution saving throw or be branded with the mark on a location of your choosing. The brand appears as an unintelligible mark to most creatures. Those who understand the Umbral language recognize it as a mark indicating the target is an enemy of the shadow fey. Shadow fey who view the brand see it outlined in a faint glow. The brand can be hidden by mundane means, such as clothing, but it can be removed only by the *remove curse* spell.\n While branded, the target has disadvantage on ability checks when interacting socially with shadow fey.", + "document": "kp", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_stigmata-of-the-red-goddess", + "fields": { + "name": "Stigmata of the Red Goddess", + "desc": "You cut yourself and bleed as tribute to Marena, gaining power as long as the blood continues flowing. The stigmata typically appears as blood running from the eyes or ears, or from wounds manifesting on the neck or chest. You take 1 piercing damage at the beginning of each turn and gain a +2 bonus on damage rolls. Any healing received by you, magical or otherwise, ends the spell.", + "document": "kp", + "level": 2, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage you take at the start of each of your turns and the bonus damage you do both increase by 1 for each slot level above 2nd, and the duration increases by 1 round for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "3 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_the-black-gods-blessing", + "fields": { + "name": "The Black God's Blessing", + "desc": "Chernobog doesn't care that the Night Cauldron only focuses on one aspect of his dominion. After all, eternal night leads perfectly well to destruction and murder, especially by the desperate fools seeking to survive in the new, lightless world. Having devotees at the forefront of the mayhem suits him, so he allows a small measure of his power to infuse worthy souls. After contacting the Black God, the ritual caster makes a respectful yet forceful demand for him to deposit some of his power into the creature that is the target of the ritual. For Chernobog to comply with this demand, the caster must make a successful DC 20 spellcasting check. If the check fails, the spell fails and the caster and the spell's target become permanently vulnerable to fire; this vulnerability can be ended with remove curse or comparable magic. If the spell succeeds, the target creature gains darkvision (60 feet) and immunity to cold. Chernobog retains the privilege of revoking these gifts if the recipient ever wavers in devotion to him.", + "document": "kp", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_wield-soul", + "fields": { + "name": "Wield Soul", + "desc": "You draw forth the ebbing life force of a creature and use its arcane power. Upon casting this spell, you must touch a creature that dropped to 0 hit points since your last turn. If it fails a Wisdom saving throw, you gain knowledge of spells, innate spells, and similar abilities it could have used today were it still alive. Expended spells and abilities aren't revealed. Choose one of these spells or abilities with a casting time no longer than 1 action. Until you complete a long rest, you can use this spell or ability once, as a bonus action, using the creature's spell save DC or spellcasting ability bonus.", + "document": "kp", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "kp_winged-spies", + "fields": { + "name": "Winged Spies", + "desc": "This spell summons a swarm of ravens or other birds-or a swarm of bats if cast at night or underground-to serve you as spies. The swarm moves out as you direct, but it won't patrol farther away than the spell's range. Commands must be simple, such as “search the valley to the east for travelers” or “search everywhere for humans on horses.” The GM can judge how clear and effective your instructions are and use that estimation in determining what the spies report. You can recall the spies at any time by whispering into the air, but the spell ends when the swarm returns to you and reports. You must receive the swarm's report before the spell expires, or you gain nothing. The swarm doesn't fight for you; it avoids danger if possible but defends itself if it must. You know if the swarm is destroyed, and the spell ends.", + "document": "kp", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "10 miles", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } } -}, -{ - "model": "api_v2.spell", - "pk": "blood-strike", - "fields": { - "name": "Blood Strike", - "desc": "By performing this ritual, you can cast a spell on one nearby creature and have it affect a different, more distant creature. Both targets must be related by blood (no more distantly than first cousins). Neither of them needs to be a willing target. The blood strike ritual is completed first, taking 10 minutes to cast on yourself. Then the spell to be transferred is immediately cast by you on the initial target, which must be close enough to touch no matter what the spell's normal range is. The secondary target must be within 1 mile and on the same plane of existence as you. If the second spell allows a saving throw, it's made by the secondary target, not the initial target. If the saving throw succeeds, any portion of the spell that's avoided or negated by the secondary target affects the initial target instead. A creature can be the secondary target of blood strike only once every 24 hours; subsequent attempts during that time take full effect against the initial target with no chance to affect the secondary target. Only spells that have a single target can be transferred via blood stike. For example, a lesser restoration) currently affecting the initial creature and transfer it to the secondary creature, which then makes any applicable saving throw against the effect. If the saving throw fails or there is no saving throw, the affliction transfers completely and no longer affects the initial target. If the saving throw succeeds, the initial creature is still afflicted and also suffers anew any damage or conditions associated with first exposure to the affliction.", - "document": "kp", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special (see below)", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-manabane-swarm", - "fields": { - "name": "Conjure Manabane Swarm", - "desc": "Deep Magic: summoning You summon a swarm of manabane scarabs that has just 40 hit points. The swarm appears at a spot you choose within 60 feet and attacks the closest enemy. You can conjure the swarm to appear in an enemy's space. If you prefer, you can summon two full-strength, standard swarms of insects (including beetles, centipedes, spiders, or wasps) instead.", - "document": "kp", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "curse-of-formlessness", - "fields": { - "name": "Curse of Formlessness", - "desc": "A creature you touch must make a successful Constitution saving throw or be cursed with a shifting, amorphous form. Spells that change the target creature's shape (such as polymorph) do not end the curse, but they do hold the creature in a stable form, temporarily mitigating it until the end of that particular spell's duration; shapechange and stoneskin have similar effects. While under the effect of the curse of formlessness, the target creature is resistant to slashing and piercing damage and ignores the additional damage done by critical hits, but it can neither hold nor use any item, nor can it cast spells or activate magic items. Its movement is halved, and winged flight becomes impossible. Any armor, clothing, helmet, or ring becomes useless. Large items that are carried or worn, such as armor, backpacks, or clothing, become hindrances, so the target has disadvantage on Dexterity checks and saving throws while such items are in place. A creature under the effect of a curse of formlessness can try to hold itself together through force of will. The afflicted creature uses its action to repeat the saving throw; if it succeeds, the afflicted creature negates the penalties from the spell until the start of its next turn.", - "document": "kp", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "delay-passing", - "fields": { - "name": "Delay Passing", - "desc": "You draw forth the ebbing life force of a creature and question it. Upon casting this spell, you must touch a creature that dropped to 0 hit points since your last turn. If it fails a Wisdom saving throw, you temporarily prevent its spirit from passing into the next realm. You are able to hear the spirit, though the spirit doesn't appear to any creature without the ability to see invisible creatures. The spirit communicates directly with your psyche and cannot see or hear anything but what you tell it. You can ask the spirit a number of questions equal to your proficiency bonus. Questions must be asked directly; a delay of more than 10 seconds between the spirit answering one question and you asking another allows the spirit to escape into the afterlife. The corpse's knowledge is limited to what it knew during life, including the languages it spoke. The spirit cannot lie to you, but it can refuse to answer a question that would harm its living family or friends, or truthfully answer that it doesn't know. Once the spirit answers your allotment of questions, it passes on.", - "document": "kp", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "doom-of-ancient-decrepitude", - "fields": { - "name": "Doom of Ancient Decrepitude", - "desc": "You generate an entropic field that rapidly ages every creature in the area of effect. The field covers a sphere with a 20-foot radius centered on you. Every creature inside the sphere when it's created, including you, must make a successful Constitution saving throw or gain 2 levels of exhaustion from sudden, traumatic aging. A creature that ends its turn in the field must repeat the saving throw, gaining 1 level of exhaustion per subsequent failure. You have advantage on these saving throws. An affected creature sheds 1 level of exhaustion at the end of its turn, if it started the turn outside the spell's area of effect (or the spell has ended). Only 1 level of exhaustion can be removed this way; all remaining levels are removed when the creature completes a short or long rest. A creature that died from gaining 6 levels of exhaustion, however, remains dead.", - "document": "kp", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "doom-of-voracity", - "fields": { - "name": "Doom of Voracity", - "desc": "You create a ripple of dark energy that destroys everything it touches. You create a 10-foot-radius, 10-foot-deep cylindrical extra-dimensional hole on a horizontal surface of sufficient size. Since it extends into another dimension, the pit has no weight and does not otherwise displace the original underlying material. You can create the pit in the deck of a ship as easily as in a dungeon floor or the ground of a forest. Any creature standing in the original conjured space, or on an expanded space as it grows, must succeed on a Dexterity saving throw to avoid falling in. The sloped pit edges crumble continuously, and any creature adjacent to the pit when it expands must succeed on a Dexterity saving throw to avoid falling in. Creatures subjected to a successful pushing effect (such as by a spell like incapacitated for 2 rounds. When the spell ends, creatures within the pit must make a Constitution saving throw. Those who succeed rise up with the bottom of the pit until they are standing on the original surface. Those who fail also rise up but are stunned for 2 rounds.", - "document": "kp", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, increase the depth of the pit by 10 feet for each slot level above 3rd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "feed-the-worms", - "fields": { - "name": "Feed the Worms", - "desc": "You draw forth the ebbing life force of a creature and use it to feed the worms. Upon casting this spell, you touch a creature that dropped to 0 hit points since your last turn. If it fails a Constitution saving throw, its body is completely consumed by worms in moments, leaving no remains. In its place is a swarm of worms (treat as a standard swarm of insects) that considers all other creatures except you as enemies. The swarm remains until it's killed.", - "document": "kp", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until destroyed", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "greater-ley-protection", - "fields": { - "name": "Greater Ley Protection", - "desc": "Deep Magic: forest-bound You create a 20-foot cube of antimagic within range that specifically protects against ley line magic. Ley line spells and magical effects up to level 7 that target a creature within the cube have no effect on that target. Any active ley line spells or magical effects up to level 7 on a creature or an object in the cube is suppressed while the creature or object is in it. The area of a ley line spell or magical effect up to level 7 can't extend into the cube. If the cube overlaps an area of ley line magic, such as greater ley pulse, the part of the area that is covered by the cube is suppressed. The cube has no effect on other types of magic or spells. You can exclude specific individuals within the cube from the protection.", - "document": "kp", - "level": 7, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 9th level or higher, its duration is concentration, up to 1 hour.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "line", - "shape_magnitude": 20, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hirvsths-call", - "fields": { - "name": "Hirvsth's Call", - "desc": "Deep Magic: Rothenian You summon a spectral herd of ponies to drag off a creature that you can see in range. The target must be no bigger than Large and must make a Dexterity saving throw. On a successful save, the spell has no effect. On a failed save, a spectral rope wraps around the target and pulls it 60 feet in a direction of your choosing as the herd races off. The ponies continue running in the chosen direction for the duration of the spell but will alter course to avoid impassable obstacles. Once you choose the direction, you cannot change it. The ponies ignore difficult terrain and are immune to damage. The target is prone and immobilized but can use its action to make a Strength or Dexterity check against your spell DC to escape the spectral bindings. The target takes 1d6 bludgeoning damage for every 20 feet it is dragged by the ponies. The herd moves 60 feet each round at the beginning of your turn.", - "document": "kp", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, one additional creature can be targeted for each slot level above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "incantation-of-lies-made-truth", - "fields": { - "name": "Incantation of Lies Made Truth", - "desc": "This ritual must be cast during a solar eclipse. It can target a person, an organization (including a city), or a kingdom. If targeting an organization or a kingdom, the incantation requires an object epitomizing the entity as part of the material component, such as a crown, mayoral seal, standard, or primary relic. If targeting a person, the primary performer must hold a vial of the person's blood. Over the course of the incantation, the components are mixed and the primary caster inscribes a false history and a sum of knowledge concerning the target into the book using the mockingbird quills. When the incantation is completed, whatever the caster wrote in the book becomes known and accepted as truth by the target. The target can attempt a Wisdom saving throw to negate this effect. If the target was a city or a kingdom, the saving throw is made with advantage by its current leader or ruler. If the saving throw fails, all citizens or members of the target organization or kingdom believe the account written in the book to be fact. Any information contrary to what was written in the book is forgotten within an hour, but individuals who make a sustained study of such information can attempt a Wisdom saving throw to retain the contradictory knowledge. Books containing contradictory information are considered obsolete or purposely misleading. Permanent structures such as statues of heroes who've been written out of existence are believed to be purely artistic endeavors or so old that no one remembers their identities anymore. The effects of this ritual can be reversed by washing the written words from the book using universal solvent and then burning the book to ashes in a magical fire. Incantation of lies made truth is intended to be a villainous motivator in a campaign, with the player characters fighting to uncover the truth and reverse the spell's effect. The GM should take care not to remove too much player agency with this ritual. The creatures affected should be predominantly NPCs, with PCs and even select NPCs able to resist it. Reversing the effect of the ritual can be the entire basis of a campaign.", - "document": "kp", - "level": 9, - "school": "enchantment", - "higher_level": "", - "target_type": "object", - "range": "1000 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "jeweled-fissure", - "fields": { - "name": "Jeweled Fissure", - "desc": "Deep Magic: dragon With a sweeping gesture, you cause jagged crystals to burst from the ground and hurtle directly upward. Choose an origin point within the spell's range that you can see. Starting from that point, the crystals burst out of the ground along a 30-foot line. All creatures in that line and up to 100 feet above it take 2d8 thunder damage plus 2d8 piercing damage; a successful Dexterity saving throw negates the piercing damage. A creature that fails the saving throw is impaled by a chunk of crystal that halves the creature's speed, prevents it from flying, and causes it to fall to the ground if it was flying. To remove a crystal, the creature or an ally within 5 feet of it must use an action and make a successful DC 13 Strength check. If the check succeeds, the impaled creature takes 1d8 piercing damage and its speed and flying ability are restored to normal.", - "document": "kp", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "1d8", - "damage_types": [ - "piercing" - ], - "duration": "instantaneous", - "shape_type": "line", - "shape_magnitude": 30, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lesser-ley-protection", - "fields": { - "name": "Lesser Ley Protection", - "desc": "Deep Magic: forest-bound You create a 10-foot cube of antimagic within range that specifically protects against ley line magic. Ley line spells and magical effects up to level 5 that target a creature within the cube have no effect on that target. Any active ley line spells or magical effects up to level 5 on a creature or an object in the cube is suppressed while the creature or object is in it. The area of a ley line spell or magical effect up to level 5 can't extend into the cube. If the cube overlaps an area of ley line magic, such as lesser ley pulse, the part of the area that is covered by the cube is suppressed. The cube has no effect on other types of magic or spells. You can exclude specific individuals within the cube from the protection.", - "document": "kp", - "level": 5, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, its duration is concentration, up to 1 hour.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "line", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ley-disturbance", - "fields": { - "name": "Ley Disturbance", - "desc": "Deep Magic: forest-bound While in your bound forest, you tune your senses to any disturbances of ley energy flowing through it. For the duration, you are aware of any ley line manipulation or ley spell casting within 5 miles of you. You know the approximate distance and general direction to each disturbance within that range, but you don't know its exact location. This doesn't allow you to locate the ley lines themselves, just any use or modification of them.", - "document": "kp", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "locate-red-portal", - "fields": { - "name": "Locate Red Portal", - "desc": "For the duration, you can sense the presence of any dimensional portals within range and whether they are one-way or two-way. If you sense a portal using this spell, you can use your action to peer through the portal to determine its destination. You gain a glimpse of the area at the other end of the shadow road. If the destination is not somewhere you have previously visited, you can make a DC 25 Intelligence (Arcana, History or Nature-whichever is most relevant) check to determine to where and when the portal leads.", - "document": "kp", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "moons-respite", - "fields": { - "name": "Moon's Respite", - "desc": "You touch a creature who must be present for the entire casting. A beam of moonlight shines down from above, bathing the target in radiant light. The spell fails if you can't see the open sky. If the target has any levels of shadow corruption, the moonlight burns away some of the Shadow tainting it. The creature must make a Constitution saving throw against a DC of 10 + the number of shadow corruption levels it has. The creature takes 2d10 radiant damage per level of shadow corruption and removes 1 level of shadow corruption on a failed saving throw, or half as much damage and removes 2 levels of shadow corruption on a success.", - "document": "kp", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d10", - "damage_types": [ - "radiant" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "morphic-flux", - "fields": { - "name": "Morphic Flux", - "desc": "When you cast this spell, your body becomes highly mutable, your flesh constantly shifting and quivering, occasionally growing extra parts-limbs and eyes-only to reabsorb them soon afterward. While under the effect of this spell, you have resistance to slashing and piercing damage and ignore the additional damage done by critical hits. You can squeeze through Tiny spaces without penalty. In addition, once per round, as a bonus action, you can make an unarmed attack with a newly- grown limb. Treat it as a standard unarmed attack, but you choose whether it does bludgeoning, piercing, or slashing damage.", - "document": "kp", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "open-red-portal", - "fields": { - "name": "Open Red Portal", - "desc": "You must tap the power of a titanic or strong ley line to cast this spell (see the Ley Initiate feat). You open a new two-way Red Portal on the shadow road, leading to a precise location of your choosing on any plane of existence. If located on the Prime Material Plane, this destination can be in the present day or up to 1,000 years in the past. The portal lasts for the duration. Deities and other planar rulers can prevent portals from opening in their presence or anywhere within their domains.", - "document": "kp", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "peruns-doom", - "fields": { - "name": "Perun's Doom", - "desc": "Deep Magic: Rothenian A powerful wind swirls from your outstretched hand toward a point you choose within range, where it explodes with a low roar into vortex of air. Each creature in a 20-foot-radius cylinder centered on that point must make a Strength saving throw. On a failed save, the creature takes 3d8 bludgeoning damage, is pulled to the center of the cylinder, and thrown 50 feet upward into the air. If a creature hits a solid obstruction, such as a stone ceiling, when it's thrown upward, it takes bludgeoning damage as if it had fallen (50 feet - the distance it's traveled upward). For example, if a creature hits the ceiling after rising only 10 feet, it takes bludgeoning damage as if it had fallen (50 feet - 10 feet =) 40 feet, or 4d6 bludgeoning damage.", - "document": "kp", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, increase the distance affected creatures are thrown into the air by 10 feet for each slot above 3rd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": "cylinder", - "shape_magnitude": 20, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "reset-red-portal", - "fields": { - "name": "Reset Red Portal", - "desc": "When you cast this spell, you can reset the destination of a Red Portal within range, diverting the shadow road so it leads to a location of your choosing. This destination must be in the present day. You can specify the target destination in general terms such as the City of the Fire Snakes, Mammon's home, the Halls of Avarice, or in the Eleven Hells, and anyone stepping through the portal while the spell is in effect will appear in or near that destination. If you reset the destination to the City of the Fire Snakes, for example, the portal might now lead to the first inner courtyard inside the city, or to the marketplace just outside at the GM's discretion. Once the spell's duration expires, the Red Portal resets to its original destination (50% chance) or to a new random destination (roll on the Destinations table).", - "document": "kp", - "level": 5, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can specify a destination up to 100 years in the past for each slot level beyond 5th.", - "target_type": "object", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sanguine-spear", - "fields": { - "name": "Sanguine Spear", - "desc": "You draw blood from the corpse of a creature that has been dead for no more than 24 hours and magically fashion it into a spear of frozen blood. This functions as a +1 spear that does cold damage instead of piercing damage. If the spear leaves your hand for more than 1 round, it melts and the spell ends.", - "document": "kp", - "level": 2, - "school": "transmutation", - "higher_level": "If the spell is cast with a 4th-level spell slot, it creates a +2 spear. A 6th-level spell slot creates a +3 spear.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "scattered-images", - "fields": { - "name": "Scattered Images", - "desc": "When you cast this spell, you create illusory doubles that move when you move but in different directions, distracting and misdirecting your opponents. When scattered images is cast, 1d4 + 2 images are created. Images behave exactly as those created with mirror image, with the exceptions described here. These images remain in your space, acting as invisible or the attacker is blind, the spell has no effect.", - "document": "kp", - "level": 4, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "seal-red-portal", - "fields": { - "name": "Seal Red Portal", - "desc": "You seal a Red Portal or other dimensional gate within range, rendering it inoperable until this spell is dispelled. While the portal remains sealed in this way, it cannot be found with the locate Red Portal spell.", - "document": "kp", - "level": 6, - "school": "abjuration", - "higher_level": "", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "selfish-wish", - "fields": { - "name": "Selfish Wish", - "desc": "The selfish wish grants the desires of a supplicant in exchange for power. Like a wish for a great increase in Strength may come with an equal reduction in Intelligence). In exchange for casting the selfish wish, the caster also receives an influx of power. The caster receives the following bonuses for 2 minutes: Doubled speed one extra action each round (as haste) Armor class increases by 3", - "document": "kp", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shadow-spawn", - "fields": { - "name": "Shadow Spawn", - "desc": "Casting this spell consumes the corpse of a creature and creates a shadowy duplicate of it. The creature returns as a shadow beast. The shadow beast has dim memories of its former life and retains free will; casters are advised to be ready to make an attractive offer to the newly-risen shadow beast, to gain its cooperation.", - "document": "kp", - "level": 6, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shadow-tree", - "fields": { - "name": "Shadow Tree", - "desc": "This spell temporarily draws a willow tree from the Shadow Realm to the location you designate within range. The tree is 5 feet in diameter and 20 feet tall.\n When you cast the spell, you can specify individuals who can interact with the tree. All other creatures see the tree as a shadow version of itself and can't grasp or climb it, passing through its shadowy substance. A creature that can interact with the tree and that has Sunlight Sensitivity or Sunlight Hypersensitivity is protected from sunlight while within 20 feet of the tree. A creature that can interact with the tree can climb into its branches, giving the creature half cover.", - "document": "kp", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shadows-brand", - "fields": { - "name": "Shadow's Brand", - "desc": "You draw a rune or inscription no larger than your hand on the target. The target must succeed on a Constitution saving throw or be branded with the mark on a location of your choosing. The brand appears as an unintelligible mark to most creatures. Those who understand the Umbral language recognize it as a mark indicating the target is an enemy of the shadow fey. Shadow fey who view the brand see it outlined in a faint glow. The brand can be hidden by mundane means, such as clothing, but it can be removed only by the *remove curse* spell.\n While branded, the target has disadvantage on ability checks when interacting socially with shadow fey.", - "document": "kp", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "stigmata-of-the-red-goddess", - "fields": { - "name": "Stigmata of the Red Goddess", - "desc": "You cut yourself and bleed as tribute to Marena, gaining power as long as the blood continues flowing. The stigmata typically appears as blood running from the eyes or ears, or from wounds manifesting on the neck or chest. You take 1 piercing damage at the beginning of each turn and gain a +2 bonus on damage rolls. Any healing received by you, magical or otherwise, ends the spell.", - "document": "kp", - "level": 2, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage you take at the start of each of your turns and the bonus damage you do both increase by 1 for each slot level above 2nd, and the duration increases by 1 round for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "3 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "the-black-gods-blessing", - "fields": { - "name": "The Black God's Blessing", - "desc": "Chernobog doesn't care that the Night Cauldron only focuses on one aspect of his dominion. After all, eternal night leads perfectly well to destruction and murder, especially by the desperate fools seeking to survive in the new, lightless world. Having devotees at the forefront of the mayhem suits him, so he allows a small measure of his power to infuse worthy souls. After contacting the Black God, the ritual caster makes a respectful yet forceful demand for him to deposit some of his power into the creature that is the target of the ritual. For Chernobog to comply with this demand, the caster must make a successful DC 20 spellcasting check. If the check fails, the spell fails and the caster and the spell's target become permanently vulnerable to fire; this vulnerability can be ended with remove curse or comparable magic. If the spell succeeds, the target creature gains darkvision (60 feet) and immunity to cold. Chernobog retains the privilege of revoking these gifts if the recipient ever wavers in devotion to him.", - "document": "kp", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "wield-soul", - "fields": { - "name": "Wield Soul", - "desc": "You draw forth the ebbing life force of a creature and use its arcane power. Upon casting this spell, you must touch a creature that dropped to 0 hit points since your last turn. If it fails a Wisdom saving throw, you gain knowledge of spells, innate spells, and similar abilities it could have used today were it still alive. Expended spells and abilities aren't revealed. Choose one of these spells or abilities with a casting time no longer than 1 action. Until you complete a long rest, you can use this spell or ability once, as a bonus action, using the creature's spell save DC or spellcasting ability bonus.", - "document": "kp", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "winged-spies", - "fields": { - "name": "Winged Spies", - "desc": "This spell summons a swarm of ravens or other birds-or a swarm of bats if cast at night or underground-to serve you as spies. The swarm moves out as you direct, but it won't patrol farther away than the spell's range. Commands must be simple, such as “search the valley to the east for travelers” or “search everywhere for humans on horses.” The GM can judge how clear and effective your instructions are and use that estimation in determining what the spies report. You can recall the spies at any time by whispering into the air, but the spell ends when the swarm returns to you and reports. You must receive the swarm's report before the spell expires, or you gain nothing. The swarm doesn't fight for you; it avoids danger if possible but defends itself if it must. You know if the swarm is destroyed, and the spell ends.", - "document": "kp", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "10 miles", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -} -] +] \ No newline at end of file diff --git a/data/v2/kobold-press/kp/SpellCastingOption.json b/data/v2/kobold-press/kp/SpellCastingOption.json index e52db952..504bb92e 100644 --- a/data/v2/kobold-press/kp/SpellCastingOption.json +++ b/data/v2/kobold-press/kp/SpellCastingOption.json @@ -1,1010 +1,1010 @@ [ -{ - "model": "api_v2.spellcastingoption", - "pk": 4912, - "fields": { - "parent": "ambush", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4914, - "fields": { - "parent": "ambush", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4915, - "fields": { - "parent": "ambush", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4916, - "fields": { - "parent": "ambush", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4917, - "fields": { - "parent": "ambush", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4918, - "fields": { - "parent": "ambush", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4919, - "fields": { - "parent": "ambush", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4920, - "fields": { - "parent": "ambush", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4921, - "fields": { - "parent": "ambush", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4922, - "fields": { - "parent": "blood-strike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4923, - "fields": { - "parent": "blood-strike", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4924, - "fields": { - "parent": "conjure-manabane-swarm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4925, - "fields": { - "parent": "curse-of-formlessness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4926, - "fields": { - "parent": "delay-passing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4927, - "fields": { - "parent": "doom-of-ancient-decrepitude", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4928, - "fields": { - "parent": "doom-of-voracity", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4930, - "fields": { - "parent": "doom-of-voracity", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4931, - "fields": { - "parent": "doom-of-voracity", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4932, - "fields": { - "parent": "doom-of-voracity", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4933, - "fields": { - "parent": "doom-of-voracity", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4934, - "fields": { - "parent": "doom-of-voracity", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4935, - "fields": { - "parent": "doom-of-voracity", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4936, - "fields": { - "parent": "feed-the-worms", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4937, - "fields": { - "parent": "greater-ley-protection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4939, - "fields": { - "parent": "greater-ley-protection", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4940, - "fields": { - "parent": "greater-ley-protection", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4941, - "fields": { - "parent": "hirvsths-call", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4943, - "fields": { - "parent": "hirvsths-call", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4944, - "fields": { - "parent": "hirvsths-call", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4945, - "fields": { - "parent": "hirvsths-call", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4946, - "fields": { - "parent": "hirvsths-call", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4947, - "fields": { - "parent": "hirvsths-call", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4948, - "fields": { - "parent": "incantation-of-lies-made-truth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4949, - "fields": { - "parent": "incantation-of-lies-made-truth", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4950, - "fields": { - "parent": "jeweled-fissure", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4951, - "fields": { - "parent": "lesser-ley-protection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4953, - "fields": { - "parent": "lesser-ley-protection", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4954, - "fields": { - "parent": "lesser-ley-protection", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4955, - "fields": { - "parent": "lesser-ley-protection", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4956, - "fields": { - "parent": "lesser-ley-protection", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4957, - "fields": { - "parent": "ley-disturbance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4958, - "fields": { - "parent": "locate-red-portal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4959, - "fields": { - "parent": "moons-respite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4960, - "fields": { - "parent": "moons-respite", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4961, - "fields": { - "parent": "morphic-flux", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4962, - "fields": { - "parent": "open-red-portal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4963, - "fields": { - "parent": "peruns-doom", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4965, - "fields": { - "parent": "peruns-doom", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4966, - "fields": { - "parent": "peruns-doom", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4967, - "fields": { - "parent": "peruns-doom", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4968, - "fields": { - "parent": "peruns-doom", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4969, - "fields": { - "parent": "peruns-doom", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4970, - "fields": { - "parent": "peruns-doom", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4971, - "fields": { - "parent": "reset-red-portal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4973, - "fields": { - "parent": "reset-red-portal", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4974, - "fields": { - "parent": "reset-red-portal", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4975, - "fields": { - "parent": "reset-red-portal", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4976, - "fields": { - "parent": "reset-red-portal", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4977, - "fields": { - "parent": "sanguine-spear", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4979, - "fields": { - "parent": "sanguine-spear", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4980, - "fields": { - "parent": "sanguine-spear", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4981, - "fields": { - "parent": "sanguine-spear", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4982, - "fields": { - "parent": "sanguine-spear", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4983, - "fields": { - "parent": "sanguine-spear", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4984, - "fields": { - "parent": "sanguine-spear", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4985, - "fields": { - "parent": "sanguine-spear", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4986, - "fields": { - "parent": "scattered-images", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4987, - "fields": { - "parent": "seal-red-portal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4988, - "fields": { - "parent": "selfish-wish", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4989, - "fields": { - "parent": "shadow-spawn", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4990, - "fields": { - "parent": "shadow-tree", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4991, - "fields": { - "parent": "shadows-brand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4992, - "fields": { - "parent": "stigmata-of-the-red-goddess", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4994, - "fields": { - "parent": "stigmata-of-the-red-goddess", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "4 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4995, - "fields": { - "parent": "stigmata-of-the-red-goddess", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4996, - "fields": { - "parent": "stigmata-of-the-red-goddess", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4997, - "fields": { - "parent": "stigmata-of-the-red-goddess", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "7 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4998, - "fields": { - "parent": "stigmata-of-the-red-goddess", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4999, - "fields": { - "parent": "stigmata-of-the-red-goddess", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "9 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5000, - "fields": { - "parent": "stigmata-of-the-red-goddess", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "10 rounds", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5001, - "fields": { - "parent": "the-black-gods-blessing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5002, - "fields": { - "parent": "the-black-gods-blessing", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5003, - "fields": { - "parent": "wield-soul", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5004, - "fields": { - "parent": "winged-spies", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -} -] + { + "model": "api_v2.spellcastingoption", + "pk": 4912, + "fields": { + "parent": "kp_ambush", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4914, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4915, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4916, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4917, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4918, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4919, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4920, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4921, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4922, + "fields": { + "parent": "kp_blood-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4923, + "fields": { + "parent": "kp_blood-strike", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4924, + "fields": { + "parent": "kp_conjure-manabane-swarm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4925, + "fields": { + "parent": "kp_curse-of-formlessness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4926, + "fields": { + "parent": "kp_delay-passing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4927, + "fields": { + "parent": "kp_doom-of-ancient-decrepitude", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4928, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4930, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4931, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4932, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4933, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4934, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4935, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4936, + "fields": { + "parent": "kp_feed-the-worms", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4937, + "fields": { + "parent": "kp_greater-ley-protection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4939, + "fields": { + "parent": "kp_greater-ley-protection", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4940, + "fields": { + "parent": "kp_greater-ley-protection", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4941, + "fields": { + "parent": "kp_hirvsths-call", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4943, + "fields": { + "parent": "kp_hirvsths-call", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4944, + "fields": { + "parent": "kp_hirvsths-call", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4945, + "fields": { + "parent": "kp_hirvsths-call", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4946, + "fields": { + "parent": "kp_hirvsths-call", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4947, + "fields": { + "parent": "kp_hirvsths-call", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4948, + "fields": { + "parent": "kp_incantation-of-lies-made-truth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4949, + "fields": { + "parent": "kp_incantation-of-lies-made-truth", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4950, + "fields": { + "parent": "kp_jeweled-fissure", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4951, + "fields": { + "parent": "kp_lesser-ley-protection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4953, + "fields": { + "parent": "kp_lesser-ley-protection", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4954, + "fields": { + "parent": "kp_lesser-ley-protection", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4955, + "fields": { + "parent": "kp_lesser-ley-protection", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4956, + "fields": { + "parent": "kp_lesser-ley-protection", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4957, + "fields": { + "parent": "kp_ley-disturbance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4958, + "fields": { + "parent": "kp_locate-red-portal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4959, + "fields": { + "parent": "kp_moons-respite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4960, + "fields": { + "parent": "kp_moons-respite", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4961, + "fields": { + "parent": "kp_morphic-flux", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4962, + "fields": { + "parent": "kp_open-red-portal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4963, + "fields": { + "parent": "kp_peruns-doom", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4965, + "fields": { + "parent": "kp_peruns-doom", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4966, + "fields": { + "parent": "kp_peruns-doom", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4967, + "fields": { + "parent": "kp_peruns-doom", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4968, + "fields": { + "parent": "kp_peruns-doom", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4969, + "fields": { + "parent": "kp_peruns-doom", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4970, + "fields": { + "parent": "kp_peruns-doom", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4971, + "fields": { + "parent": "kp_reset-red-portal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4973, + "fields": { + "parent": "kp_reset-red-portal", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4974, + "fields": { + "parent": "kp_reset-red-portal", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4975, + "fields": { + "parent": "kp_reset-red-portal", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4976, + "fields": { + "parent": "kp_reset-red-portal", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4977, + "fields": { + "parent": "kp_sanguine-spear", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4979, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4980, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4981, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4982, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4983, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4984, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4985, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4986, + "fields": { + "parent": "kp_scattered-images", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4987, + "fields": { + "parent": "kp_seal-red-portal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4988, + "fields": { + "parent": "kp_selfish-wish", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4989, + "fields": { + "parent": "kp_shadow-spawn", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4990, + "fields": { + "parent": "kp_shadow-tree", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4991, + "fields": { + "parent": "kp_shadows-brand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4992, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4994, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "4 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4995, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4996, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4997, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "7 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4998, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4999, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "9 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5000, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "10 rounds", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5001, + "fields": { + "parent": "kp_the-black-gods-blessing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5002, + "fields": { + "parent": "kp_the-black-gods-blessing", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5003, + "fields": { + "parent": "kp_wield-soul", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5004, + "fields": { + "parent": "kp_winged-spies", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + } +] \ No newline at end of file diff --git a/data/v2/kobold-press/toh/Spell.json b/data/v2/kobold-press/toh/Spell.json index 80f8db1e..7bd0b595 100644 --- a/data/v2/kobold-press/toh/Spell.json +++ b/data/v2/kobold-press/toh/Spell.json @@ -1,2873 +1,2873 @@ [ -{ - "model": "api_v2.spell", - "pk": "ambush-chute", - "fields": { - "name": "Ambush Chute", - "desc": "You touch a wooden, plaster, or stone surface and create a passage with two trapdoors. The first trapdoor appears where you touch the surface, and the other appears at a point you can see up to 30 feet away. The two trapdoors can be wooden with a metal ring handle, or they can match the surrounding surfaces, each with a small notch for opening the door. The two trapdoors are connected by an extradimensional passage that is up to 5 feet wide, up to 5 feet tall, and up to 30 feet long. The trapdoors don't need to be on the same surface, allowing the passage to connect two separated locations, such as the two sides of a chasm or river. The passage is always straight and level for creatures inside it, and the creatures exit the tunnel in such a way that allows them to maintain the same orientation as when they entered the passage. No more than five creatures can transit the passage at the same time.\n When the spell ends and the trapdoors disappear, any creatures or objects still in the passage created by the spell are safely ejected to an unoccupied space nearest the end of the passage closest to them.", - "document": "toh", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the length of the passage and the distance you can place the second trapdoor increases by 10 feet for each slot level above 3rd.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "armored-formation", - "fields": { - "name": "Armored Formation", - "desc": "You bolster the defenses of those nearby. Choose up to twelve willing creatures in range. When an affected creature is within 5 feet of at least one other affected creature, they create a formation. The formation must be a contiguous grouping of affected creatures, and each affected creature must be within 5 feet of at least one other affected creature within the formation. If the formation ever has less than two affected creatures, it ends, and an affected creature that moves further than 5 feet from other creatures in formation is no longer in that formation. Affected creatures don't have to all be in the same formation, and they can create or end as many formations of various sizes as they want for the duration of the spell. Each creature in a formation gains a bonus depending on how many affected creatures are in that formation.\n ***Two or More Creatures.*** Each creature gains a +2 bonus to AC.\n ***Four or More Creatures.*** Each creature gains a +2 bonus to AC, and when it hits with any weapon, it deals an extra 1d6 damage of the weapon's type.\n ***Six or More Creatures.*** Each creature gains a +3 bonus to AC, and when it hits with any weapon, it deals an extra 2d6 damage of the weapon's type.", - "document": "toh", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "babble", - "fields": { - "name": "Babble", - "desc": "This spell causes the speech of affected creatures to sound like nonsense. Each creature in a 30-foot-radius sphere centered on a point you choose within range must succeed on an Intelligence saving throw when you cast this spell or be affected by it.\n An affected creature cannot communicate in any spoken language that it knows. When it speaks, the words come out as gibberish. Spells with verbal components cannot be cast. The spell does not affect telepathic communication, nonverbal communication, or sounds emitted by any creature that does not have a spoken language. As an action, a creature under the effect of this spell can attempt another Intelligence saving throw against the effect. On a successful save, the spell ends.", - "document": "toh", - "level": 5, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "battle-mind", - "fields": { - "name": "Battle Mind", - "desc": "You gain a preternatural sense of the surrounding area, allowing you insights you can share with comrades to provide them with an edge in combat. You gain advantage on Wisdom (Perception) checks made when determining surprise at the beginning of a combat encounter. If you are not surprised, then neither are your allies. When you are engaged in combat while the spell is active, you can use a bonus action on your turn to produce one of the following effects (allies must be able to see or hear you in order to benefit):\n* One ally gains advantage on its next attack roll, saving throw, or ability check.\n* An enemy has disadvantage on the next attack roll it makes against you or an ally.\n* You divine the location of an invisible or hidden creature and impart that knowledge to any allies who can see or hear you. This knowledge does not negate any advantages the creature has, it only allows your allies to be aware of its location at the time. If the creature moves after being detected, its new location is not imparted to your allies.\n* Three allies who can see and hear you on your turn are given the benefit of a *bless*, *guidance*, or *resistance spell* on their turns; you choose the benefit individually for each ally. An ally must use the benefit on its turn, or the benefit is lost.", - "document": "toh", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "beast-within", - "fields": { - "name": "Beast Within", - "desc": "You imbue a willing creature with a touch of lycanthropy. The target gains a few bestial qualities appropriate to the type of lycanthrope you choose, such as tufts of fur, elongated claws, a fang-lined maw or tusks, and similar features. For the duration, the target has resistance to bludgeoning, piercing, and slashing damage from nonmagical attacks that aren't silvered. In addition, the target has advantage on Wisdom (Perception) checks that rely on hearing or smell. Finally, the creature can use its new claws and jaw or tusks to make unarmed strikes. The claws deal slashing damage equal to 1d4 + the target's Strength modifier on a hit. The bite deals piercing damage equal to 1d6 + the target's Strength modifier on a hit. The target's bite doesn't inflict lycanthropy.", - "document": "toh", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each spell slot above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "betraying-bauble", - "fields": { - "name": "Betraying Bauble", - "desc": "When you cast this spell, you touch a pair of objects. Each object must be small enough to fit in one hand. While holding one of the objects, you can sense the direction to the other object's location.\n If the paired object is in motion, you know the direction and relative speed of its movement (walking, running, galloping, or similar). When the two objects are within 30 feet of each other, they vibrate faintly unless they are touching. If you aren't holding either item and the spell hasn't ended, you can sense the direction of the closest of the two objects within 1,000 feet of you, and you can sense if it is in motion. If neither object is within 1,000 feet of you, you sense the closest object as soon as you come within 1,000 feet of one of them. If an inch or more of lead blocks a direct path between you and an affected object, you can't sense that object.", - "document": "toh", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bloodlust", - "fields": { - "name": "Bloodlust", - "desc": "You imbue a willing creature that you can see within range with vitality and fury. The target gains 1d6 temporary hit points, has advantage on Strength checks, and deals an extra 1d6 damage when it hits with a weapon attack. When the spell ends, the target suffers one level of exhaustion for 1 minute.", - "document": "toh", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "blunted-edge", - "fields": { - "name": "Blunted Edge", - "desc": "Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or have disadvantage on weapon attack rolls. In addition, when an affected creature rolls damage dice for a successful attack, it must roll the weapon's damage dice twice and use the lower total. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "bolster-fortifications", - "fields": { - "name": "Bolster Fortifications", - "desc": "You create a ward that bolsters a structure or a collection of structures that occupy up to 2,500 square feet of floor space. The bolstered structures can be up to 20 feet tall and shaped as you desire. You can ward several small buildings in a stronghold by dividing the area among them, as long as you can walk into each contiguous area while you are casting the spell. For the purpose of this spell, “structures” include walls, such as the palisade that might surround a small fort, provided the wall is no more than 20 feet tall.\n For the duration, each structure you bolstered has a damage threshold of 5. If a structure already has a damage threshold, that threshold increases by 5.\n This spell protects only the walls, support beams, roofs, and similar that make up the core components of the structure. It doesn't bolster objects within the structures, such as furniture.\n The protected structure or structures radiate magic. A *dispel magic* cast on a structure removes the bolstering from only that structure. You can create a permanently bolstered structure or collection of structures by casting this spell there every day for one year.", - "document": "toh", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the square feet of floor space you can bolster increases by 500 and the damage threshold increases by 2 for each slot level above 3rd.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bound-haze", - "fields": { - "name": "Bound Haze", - "desc": "You cause a swirling gyre of dust, small rocks, and wind to encircle a creature you can see within range. The target must succeed on a Dexterity saving throw or have disadvantage on attack rolls and on Wisdom (Perception) checks. At the end of each of its turns, the target can make a Dexterity saving throw. On a success, the spell ends.\n In addition, if the target is within a cloud or gas, such as the area of a *fog cloud* spell or a dretch's Fetid Cloud, the affected target has disadvantage on this spell's saving throws and on any saving throws associated with being in the cloud or gas, such as the saving throw to reduce the poison damage the target might take from starting its turn in the area of a *cloudkill* spell.", - "document": "toh", - "level": 3, - "school": "conjuration", - "higher_level": "If you cast this spell using a spell slot of 4th level or higher, the duration is 1 minute, and the spell doesn't require concentration.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "burst-stone", - "fields": { - "name": "Burst Stone", - "desc": "You cause the ground at a point you can see within range to explode. The ground must be sand, earth, or unworked rock. Each creature within 10 feet of that point must make a Dexterity saving throw. On a failed save, the creature takes 4d8 bludgeoning damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone. The area then becomes difficult terrain with a 5-foot-deep pit centered on the point you chose.", - "document": "toh", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "butterfly-effect", - "fields": { - "name": "Butterfly Effect", - "desc": "You cause a cloud of illusory butterflies to swarm around a target you can see within range. The target must succeed on a Charisma saving throw or be charmed for the duration. While charmed, the target can't take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|------|-------------------|\n| 1 | The creature uses all its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. The creature doesn't take an action this turn. |\n| 2-6 | The creature doesn't take an action this turn. |\n| 7-8 | The creature uses its action to make a melee attack against a randomly determined creature within its reach. If there is no creature within its reach, the creature does nothing this turn. |\n| 9-10 | The creature can act and move normally. |\n\nAt the end of each of its turns, and each time it takes damage, the target can make another Charisma saving throw. On a success, the spell ends on the target.", - "document": "toh", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "calm-beasts", - "fields": { - "name": "Calm Beasts", - "desc": "You attempt to calm aggressive or frightened animals. Each beast in a 20-foot-radius sphere centered on a point you choose within range must make a Charisma saving throw. If a creature fails its saving throw, choose one of the following two effects.\n ***Suppress Hold.*** You can suppress any effect causing the target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime.\n ***Suppress Hostility.*** You can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its allies being harmed. When the spell ends, the creature becomes hostile again, unless the GM rules otherwise.", - "document": "toh", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "clear-the-board", - "fields": { - "name": "Clear the Board", - "desc": "You send your allies and your enemies to opposite sides of the battlefield. Pick a cardinal direction. With a shout and a gesture, you and up to five willing friendly creatures within range are teleported up to 90 feet in that direction to spaces you can see. At the same time, up to six hostile creatures within range must make a Wisdom saving throw. On a failed save, the hostile creature is teleported up to 90 feet in the opposite direction of where you teleport yourself and the friendly creatures to spaces you can see. You can't teleport a target into dangerous terrain, such as lava or off the edge of a cliff, and each target must be teleported to an unoccupied space that is on the ground or on a floor.", - "document": "toh", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-construct", - "fields": { - "name": "Conjure Construct", - "desc": "You summon a construct of challenge rating 5 or lower to harry your foes. It appears in an unoccupied space you can see within range. It disappears when it drops to 0 hit points or when the spell ends.\n The construct is friendly to you and your companions for the duration. Roll initiative for the construct, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the construct, it defends itself from hostile creatures but otherwise takes no actions.\n If your concentration is broken, the construct doesn't disappear. Instead, you lose control of the construct, it becomes hostile toward you and your companions, and it might attack. An uncontrolled construct can't be dismissed by you, and it disappears 1 hour after you summoned it.\n The construct deals double damage to objects and structures.\n The GM has the construct's statistics.", - "document": "toh", - "level": 6, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the challenge rating increases by 1 for each slot level above 6th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-spectral-allies", - "fields": { - "name": "Conjure Spectral Allies", - "desc": "You sprinkle some graveyard dirt before you and call forth vengeful spirits. The spirits erupt from the ground at a point you choose within range and sweep outward. Each creature in a 30-foot-radius sphere centered on that point must make a Wisdom saving throw. On a failed save, a creature takes 6d10 necrotic damage and becomes frightened for 1 minute. On a successful save, the creature takes half as much damage and isn't frightened.\n At the end of each of its turns, a creature frightened by this spell can make another saving throw. On a success, this spell ends on the creature.", - "document": "toh", - "level": 7, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 1d10 for each slot level above 7th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "6d10", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "convey-inner-peace", - "fields": { - "name": "Convey Inner Peace", - "desc": "You imbue yourself and up to five willing creatures within range with the ability to enter a meditative trance like an elf. Once before the spell ends, an affected creature can complete a long rest in 4 hours, meditating as an elf does while in trance. After resting in this way, each creature gains the same benefit it would normally gain from 8 hours of rest.", - "document": "toh", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "crown-of-thorns", - "fields": { - "name": "Crown of Thorns", - "desc": "You create a psychic binding on the mind of a creature within range. Until this spell ends, the creature must make a Charisma saving throw each time it casts a spell. On a failed save, it takes 2d6 psychic damage, and it fails to cast the spell. It doesn't expend a spell slot if it fails to cast the spell.", - "document": "toh", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "damaging-intel", - "fields": { - "name": "Damaging Intel", - "desc": "You study a creature you can see within range, learning its weaknesses. The creature must make a Charisma saving throw. If it fails, you learn its damage vulnerabilities, damage resistances, and damage immunities, and the next attack one of your allies in range makes against the target before the end of your next turn has advantage.", - "document": "toh", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "deadly-salvo", - "fields": { - "name": "Deadly Salvo", - "desc": "When you cast this spell, the ammunition flies from your hand with a loud bang, targeting up to five creatures or objects you can see within range. You can launch the bullets at one target or several. Make a ranged spell attack for each bullet. On a hit, the target takes 3d6 piercing damage. This damage can experience a burst, as described in the gunpowder weapon property (see the Adventuring Gear chapter), but this spell counts as a single effect for the purposes of determining how many times the damage can burst, regardless of the number of targets affected.", - "document": "toh", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "3d6", - "damage_types": [ - "piercing" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "divine-retribution", - "fields": { - "name": "Divine Retribution", - "desc": "With a last word before you fall unconscious, this spell inflicts radiant damage to your attacker equal to 1d8 + the amount of damage you took from the triggering attack. If the attacker is a fiend or undead, it takes an extra 1d8 radiant damage. The creature then must succeed on a Constitution saving throw or become stunned for 1 minute. At the end of each of its turns, the creature can make another Constitution saving throw. On a successful save, it is no longer stunned.", - "document": "toh", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "1d8", - "damage_types": [ - "radiant" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "dreamwine", - "fields": { - "name": "Dreamwine", - "desc": "You imbue a bottle of wine with fey magic. While casting this spell, you and up to seven other creatures can drink the imbued wine. At the completion of the casting, each creature that drank the wine can see invisible creatures and objects as if they were visible, can see into the Ethereal plane, and has advantage on Charisma checks and saving throws for the duration. Ethereal creatures and objects appear ghostly and translucent.", - "document": "toh", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "emerald-eyes", - "fields": { - "name": "Emerald Eyes", - "desc": "You attempt to convince a creature to enter a paranoid, murderous rage. Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or be convinced those around it intend to steal anything and everything it possesses, from its position of employment, to the affections of its loved ones, to its monetary wealth and possessions, no matter how trusted those nearby might be or how ludicrous such a theft might seem. While affected by this spell, the target must use its action to attack the nearest creature other than itself or you. If the target starts its turn with no other creature near enough to move to and attack, the target can make another Wisdom saving throw. On a success, the target's head clears momentarily and it can act freely that turn. If the target starts its turn a second time with no other creature near enough to move to and attack, it can make another Wisdom saving throw. On a success, the spell ends on the target.\n Each time the target takes damage, it can make another Wisdom saving throw. On a success, the spell ends on the target.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "enchanted-bloom", - "fields": { - "name": "Enchanted Bloom", - "desc": "You spend an hour anointing a rose with scented oils and imbuing it with fey magic. The first creature other than you that touches the rose before the spell ends pricks itself on the thorns and must make a Charisma saving throw. On a failed save, the creature falls into a deep slumber for 24 hours, and it can be awoken only by the greater restoration spell or similar magic or if you choose to end the spell as an action. While slumbering, the creature doesn't need to eat or drink, and it doesn't age.\n Each time the creature takes damage, it makes a new Charisma saving throw. On a success, the spell ends on the creature.", - "document": "toh", - "level": 5, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of a higher level, the duration of the slumber increases to 7 days with a 6th-level slot, to 30 days with a 7th-level slot, to 180 days with an 8th-level slot, and to a year with a 9th-level spell slot.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "eruption", - "fields": { - "name": "Eruption", - "desc": "You create a furiously erupting volcano centered on a point you can see within range. The ground heaves violently as a cinder cone that is 2 feet wide and 5 feet tall bursts up from it. Each creature within 30 feet of the cinder cone when it appears must make a Strength saving throw. On a failed save, a creature takes 8d6 bludgeoning damage and is knocked prone. On a successful save, a creature takes half as much damage and isn't knocked prone.\n Each round you maintain concentration on this spell, the cinder cone produces additional effects on your turn.\n ***Round 2.*** Smoke pours from the cinder cone. Each creature within 10 feet of the cinder cone when the smoke appears takes 4d6 poison damage. Afterwards, each creature that enters the smoky area for the first time on a turn or starts its turn there takes 2d6 poison damage. The smoke spreads around corners, and its area is heavily obscured. A wind of moderate or greater speed (at least 10 miles per hour) disperses the smoke until the start of your next turn, when the smoke reforms.\n ***Round 3.*** Lava bubbles out from the cinder cone, spreading out to cover the ground within 20 feet of the cinder cone. Each creature and object in the area when the lava appears takes 10d10 fire damage and is on fire. Afterwards, each creature that enters the lava for the first time on a turn or starts its turn there takes 5d10 fire damage. In addition, the smoke spreads to fill a 20-foot-radius sphere centered on the cinder cone.\n ***Round 4.*** The lava continues spreading and covers the ground within 30 feet of the cinder cone in lava that is 1-foot-deep. The lava-covered ground becomes difficult terrain. In addition, the smoke fills a 30-footradius sphere centered on the cinder cone.\n ***Round 5.*** The lava expands to cover the ground within 40 feet of the cinder cone, and the smoke fills a 40-foot radius sphere centered on the cinder cone. In addition, the cinder cone begins spewing hot rocks. Choose up to three creatures within 90 feet of the cinder cone. Each target must succeed on a Dexterity saving throw or take 3d6 bludgeoning damage and 3d6 fire damage.\n ***Rounds 6-10.*** The lava and smoke continue to expand in size by 10 feet each round. In addition, each round you can direct the cinder cone to spew hot rocks at three targets, as described in Round 5.\n When the spell ends, the volcano ceases erupting, but the smoke and lava remain for 1 minute before cooling and dispersing. The landscape is permanently altered by the spell.", - "document": "toh", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "feint", - "fields": { - "name": "Feint", - "desc": "You create a momentary, flickering duplicate of yourself just as you make an attack against a creature. You have advantage on the next attack roll you make against the target before the end of your next turn as it's distracted by your illusory copy.", - "document": "toh", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fey-food", - "fields": { - "name": "Fey Food", - "desc": "You enchant up to 1 pound of food or 1 gallon of drink within range with fey magic. Choose one of the effects below. For the duration, any creature that consumes the enchanted food or drink, up to four creatures per pound of food or gallon of drink, must succeed on a Charisma saving throw or succumb to the chosen effect.\n ***Slumber.*** The creature falls asleep and is unconscious for 1 hour. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n ***Friendly Face.*** The creature is charmed by you for 1 hour. If you or your allies do anything harmful to it, the creature can make another Charisma saving throw. On a success, the spell ends on the creature.\n ***Muddled Memory.*** The creature remembers only fragments of the events of the past hour. A remove curse or greater restoration spell cast on the creature restores the creature's memory.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can enchant an additional pound of food or gallon of drink for each slot level over 3rd.", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fey-touched-blade", - "fields": { - "name": "Fey-Touched Blade", - "desc": "You touch a nonmagical weapon and imbue it with the magic of the fey. Choose one of the following damage types: force, psychic, necrotic, or radiant. Until the spell ends, the weapon becomes a magic weapon and deals an extra 1d4 damage of the chosen type to any target it hits.", - "document": "toh", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can imbue one additional weapon for each slot level above 2nd.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "forced-reposition", - "fields": { - "name": "Forced Reposition", - "desc": "One creature of your choice that you can see within range is teleported to an unoccupied space you can see up to 60 feet above you. The space can be open air or a balcony, ledge, or other surface above you. An unwilling creature that succeeds on a Constitution saving throw is unaffected. A creature teleported to open air immediately falls, taking falling damage as normal, unless it can fly or it has some other method of catching itself or preventing a fall. A creature can't be teleported into a solid object.", - "document": "toh", - "level": 4, - "school": "conjuration", - "higher_level": "If you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The targets must be within 30 feet of each other when you target them, but they don't need to be teleported to the same locations.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "furious-wail", - "fields": { - "name": "Furious Wail", - "desc": "You let out a scream of white-hot fury that pierces the minds of up to five creatures within range. Each target must make a Charisma saving throw. On a failed save, it takes 10d10 + 30 psychic damage and is stunned until the end of its next turn. On a success, it takes half as much damage.", - "document": "toh", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "10d10+30", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fuse-armor", - "fields": { - "name": "Fuse Armor", - "desc": "Choose a manufactured metal object with movable parts, such as a drawbridge pulley or winch or a suit of heavy or medium metal armor, that you can see within range. You cause the object's moveable parts to fuse together for the duration. The object's movable aspects can't be moved: a pulley's wheel won't turn and the joints of armor won't bend.\n A creature wearing armor affected by this spell has its speed reduced by 10 feet and has disadvantage on weapon attacks and ability checks that use Strength or Dexterity. At the end of each of its turns, the creature wearing the armor can make a Strength saving throw. On a success, the spell ends on the armor.\n A creature in physical contact with an affected object that isn't a suit of armor can use its action to make a Strength check against your spell save DC. On a success, the spell ends on the object.\n If you target a construct with this spell, it must succeed on a Strength saving throw or have its speed reduced by 10 feet and have disadvantage on weapon attacks. At the end of each of its turns, the construct can make another Strength saving throw. On a success, the spell ends on the construct.", - "document": "toh", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional object for each slot level above 2nd. The objects must be within 30 feet of each other when you target them.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "gale", - "fields": { - "name": "Gale", - "desc": "You summon a storm to batter your oncoming enemies. Until the spell ends, freezing rain and turbulent winds fill a 20-foot-tall cylinder with a 300- foot radius centered on a point you choose within range. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.\n The spell's area is heavily obscured, and exposed flames in the area are doused. The ground in the area becomes slick, difficult terrain, and a flying creature in the area must land at the end of its turn or fall. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a Constitution saving throw as the wind and rain assail it. On a failed save, the creature takes 1d6 cold damage.\n If a creature is concentrating in the spell's area, the creature must make a successful Constitution saving throw against your spell save DC or lose concentration.", - "document": "toh", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "1 mile", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "glare", - "fields": { - "name": "Glare", - "desc": "You cast a disdainful glare at up to two creatures you can see within range. Each target must succeed on a Wisdom saving throw or take no actions on its next turn as it reassesses its life choices. If a creature fails the saving throw by 5 or more, it can't take actions on its next two turns.", - "document": "toh", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 2, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "high-ground", - "fields": { - "name": "High Ground", - "desc": "With a word, you gesture across an area and cause the terrain to rise up into a 10-foot-tall hillock at a point you choose within range. You must be outdoors to cast this spell. The hillock is up to 30 feet long and up to 15 feet wide, and it must be in a line. If the hillock cuts through a creature's space when it appears, the creature is pushed to one side of the hillock or to the top of the hillock (your choice). The ranged attack distance for a creature on top of the hillock is doubled, provided the target is at a lower elevation than the creature on the hillock. At the GM's discretion, creatures on top of the hillock gain any additional bonuses or penalties that higher elevation might provide, such as advantage on attacks against those on lower elevations, being easier to spot, longer sight distance, or similar.\n The steep sides of the hillock are difficult to climb. A creature at the bottom of the hillock that attempts to move up to the top must succeed on a Strength (Athletics) or Dexterity (Acrobatics) check against your spell save DC to climb to the top of the hillock.\n This spell can't manipulate stone construction, and rocks and structures shift to accommodate the hillock. If the hillock's formation would make a structure unstable, the hillock fails to form in the structure's spaces. Similarly, this spell doesn't directly affect plant growth. The hillock carries any plants along with it.", - "document": "toh", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell at 4th level or higher, you can increase the width of the hillock by 5 feet or the length by 10 feet for each slot above 3rd.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "immolating-gibbet", - "fields": { - "name": "Immolating Gibbet", - "desc": "You cause up to three creatures you can see within range to be yanked into the air where their blood turns to fire, burning them from within. Each target must succeed on a Dexterity saving throw or be magically pulled up to 60 into the air. The creature is restrained there until the spell ends. A restrained creature must make a Constitution saving throw at the start of each of its turns. The creature takes 7d6 fire damage on a failed save, or half as much damage on a successful one.\n At the end of each of its turns, a restrained creature can make another Dexterity saving throw. On a success, the spell ends on the creature, and the creature falls to the ground, taking falling damage as normal. Alternatively, the restrained creature or someone else who can reach it can use an action to make an Intelligence (Arcana) check against your spell save DC. On a success, the restrained effect ends, and the creature falls to the ground, taking falling damage as normal.", - "document": "toh", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "7d6", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "inexorable-summons", - "fields": { - "name": "Inexorable Summons", - "desc": "You reach out toward a creature and call to it. The target teleports to an unoccupied space that you can see within 5 feet of you. An unwilling creature can make a Wisdom saving throw, and if it succeeds, it isn't affected by this spell. You can't teleport a target into dangerous terrain, such as lava, and the target must be teleported to a space on the ground or on a floor.", - "document": "toh", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "instant-armored-vehicle", - "fields": { - "name": "Instant Armored Vehicle", - "desc": "You transform a handful of materials into a Huge armored vehicle. The vehicle can take whatever form you want, but it has AC 18 and 100 hit points. If it is reduced to 0 hit points, it is destroyed. If it is a ground vehicle, it has a speed of 90 feet. If it is an airborne vehicle, it has a flying speed of 45 feet. If it is a waterborne vehicle, it has a speed of 2 miles per hour. The vehicle can hold up to four Medium creatures within it.\n A creature inside it has three-quarters cover from attacks outside the vehicle, which contains arrow slits, portholes, and other small openings. A creature piloting the armored vehicle can take the Careen action. To do so, the vehicle must move at least 10 feet in a straight line and enter or pass through the space of at least one Large or smaller creature. This movement doesn't provoke opportunity attacks. Each creature in the armored vehicle's path must make a Dexterity saving throw against your spell save DC. On a failed save, the creature takes 5d8 bludgeoning damage and is knocked prone. On a successful save, the creature can choose to be pushed 5 feet away from the space through which the vehicle passed. A creature that chooses not to be pushed suffers the consequences of a failed saving throw. If the creature piloting the armored vehicle isn't proficient in land, water, or air vehicles (whichever is appropriate for the vehicle's type), each target has advantage on the saving throw against the Careen action.", - "document": "toh", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "invested-champion", - "fields": { - "name": "Invested Champion", - "desc": "You touch one creature and choose either to become its champion, or for it to become yours. If you choose a creature to become your champion, it fights on your behalf. While this spell is in effect, you can cast any spell with a range of touch on your champion as if the spell had a range of 60 feet. Your champion's attacks are considered magical, and you can use a bonus action on your turn to encourage your champion, granting it advantage on its next attack roll.\n If you become the champion of another creature, you gain advantage on all attack rolls against creatures that have attacked your charge within the last round. If you are wielding a shield, and a creature within 5 feet of you attacks your charge, you can use your reaction to impose disadvantage on the attack roll, as if you had the Protection fighting style. If you already have the Protection fighting style, then in addition to imposing disadvantage, you can also push an enemy 5 feet in any direction away from your charge when you take your reaction. You can use a bonus action on your turn to reroll the damage for any successful attack against a creature that is threatening your charge.\n Whichever version of the spell is cast, if the distance between the champion and its designated ally increases to more than 60 feet, the spell ends.", - "document": "toh", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "iron-gut", - "fields": { - "name": "Iron Gut", - "desc": "For the duration, one willing creature you touch has resistance to poison damage and advantage on saving throws against poison. When the affected creature makes a Constitution saving throw against an effect that deals poison damage or that would cause the creature to become poisoned, the creature can choose to succeed on the saving throw. If it does so, the spell ends on the creature.\n While affected by this spell, a creature can't gain any benefit from consuming magical foodstuffs, such as those produced by the goodberry and heroes' feast spells, and it doesn't suffer ill effects from consuming potentially harmful, nonmagical foodstuffs, such as spoiled food or non-potable water. The creature is affected normally by other consumable magic items, such as potions. The creature can identify poisoned food by a sour taste, with deadlier poisons tasting more sour.", - "document": "toh", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "up to 1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "jagged-forcelance", - "fields": { - "name": "Jagged Forcelance", - "desc": "You create a magical tether of pulsing, golden force between two willing creatures you can see within range. The two creatures must be within 15 feet of each other. The tether remains as long as each tethered creature ends its turn within 15 feet of the other tethered creature. If a tethered creature ends its turn more than 15 feet away from its tethered partner, the spell ends. Though the tether appears as a thin line, its effect extends the full height of the tethered creatures and can affect prone or hovering creatures, provided the hovering creature hovers no higher than the tallest tethered creature.\n Any creature that touches the tether or ends its turn in a space the tether passes through must make a Strength saving throw. On a failure, a creature takes 3d6 force damage and is knocked prone. On a success, a creature takes half as much damage and isn't knocked prone. A creature that makes this saving throw, whether it succeeds or fails, can't be affected by the tether again until the start of your next turn.", - "document": "toh", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the maximum distance between the tethered creatures increases by 5 feet, and the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "jarring-growl", - "fields": { - "name": "Jarring Growl", - "desc": "You loose a growl from deep within the pit of your stomach, causing others who can hear it to become unnerved. You have advantage on Charisma (Intimidation) checks you make before the beginning of your next turn. In addition, each creature within 5 feet of you must make a Wisdom saving throw. On a failure, you have advantage on attack rolls against that creature until the end of your turn. You are aware of which creatures failed their saving throws.", - "document": "toh", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lance", - "fields": { - "name": "Lance", - "desc": "You create a shimmering lance of force and hurl it toward a creature you can see within range. Make a ranged spell attack against the target. On a hit, the target takes 5d6 force damage, and it is restrained by the lance until the end of its next turn.", - "document": "toh", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "5d6", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "less-fool-i", - "fields": { - "name": "Less Fool, I", - "desc": "A creature you touch becomes less susceptible to lies and magical influence. For the duration, other creatures have disadvantage on Charisma checks to influence the protected creature, and the creature has advantage on spells that cause it to become charmed or frightened.", - "document": "toh", - "level": 1, - "school": "divination", - "higher_level": "If you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 1 hour. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the duration is 1 year. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "life-burst", - "fields": { - "name": "Life Burst", - "desc": "You make a jubilant shout when you cast this spell, releasing your stores of divine energy in a wave of healing. You distribute the remaining power of your Lay on Hands to allies within 30 feet of you, restoring hit points and curing diseases and poisons. This healing energy removes diseases and poisons first (starting with the nearest ally), removing 5 hit points from the hit point total for each disease or poison cured, until all the points are spent or all diseases and poisons are cured. If any hit points remain, you regain hit points equal to that amount.\n This spell expends all of the healing energy in your Lay on Hands, which replenishes, as normal, when you finish a long rest.", - "document": "toh", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lightless-torch", - "fields": { - "name": "Lightless Torch", - "desc": "You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds a shadowy miasma in a 30-foot radius. A creature with darkvision inside the radius sees the area as if it were filled with bright light. The miasma doesn't shed light, and a creature with darkvision inside the radius can still see outside the radius as normal. A creature with darkvision outside the radius or a creature without darkvision sees only that the object is surrounded by wisps of shadow.\n Completely covering the affected object with an opaque object, such as a bowl or a helm, blocks the effect. Though the effect doesn't shed light, it can be dispelled if the area of a darkness spell overlaps the area of this spell.\n If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.", - "document": "toh", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 2 hours for each slot level above 1st.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "long-game", - "fields": { - "name": "Long Game", - "desc": "While casting this spell, you must engage your target in conversation. At the completion of the casting, the target must make a Charisma saving throw. If it fails, you place a latent magical effect in the target's mind for the duration. If the target succeeds on the saving throw, it realizes that you used magic to affect its mind and might become hostile toward you, at the GM's discretion.\n Once before the spell ends, you can use an action to trigger the magical effect in the target's mind, provided you are on the same plane of existence as the target. When the effect is triggered, the target takes 5d8 psychic damage plus an extra 1d8 psychic damage for every 24 hours that has passed since you cast the spell, up to a total of 12d8 psychic damage. The spell has no effect on the target if it ends before you trigger the magical effect.\n *A greater restoration* or *wish* spell cast on the target ends the spell early. You know if the spell is ended early, provided you are on the same plane of existence as the target.", - "document": "toh", - "level": 7, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "psychic" - ], - "duration": "7 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "magma-spray", - "fields": { - "name": "Magma Spray", - "desc": "A 5-foot-diameter, 5-foot-tall cylindrical fountain of magma erupts from the ground in a space of your choice within range. A creature in that space takes 3d8 fire damage, or half as much damage with a successful Dexterity saving throw. A creature that enters the area on its turn or ends its turn there also takes 3d8 fire damage, or half as much damage with a successful Dexterity saving throw. A creature can take this damage only once per turn.\n A creature killed by this spell is reduced to ash.", - "document": "toh", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "40 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "mantle-of-the-brave", - "fields": { - "name": "Mantle of the Brave", - "desc": "You touch up to four individuals, bolstering their courage. The next time a creature affected by this spell must make a saving throw against a spell or effect that would cause the frightened condition, it has advantage on the roll. Once a creature has received this benefit, the spell ends for that creature.", - "document": "toh", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "martyrs-rally", - "fields": { - "name": "Martyr's Rally", - "desc": "With a hopeful rallying cry just as you fall unconscious, you rouse your allies to action. Each ally within 60 feet of you that can see and hear you has advantage on attack rolls for the duration. If you regain hit points, the spell immediately ends.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mass-faerie-fire", - "fields": { - "name": "Mass Faerie Fire", - "desc": "You can place up to three 20-foot cubes each centered on a point you can see within range. Each object in a cube is outlined in blue, green, or violet light (your choice). Any creature in a cube when the spell is cast is also outlined in light if it fails a Dexterity saving throw. A creature in the area of more than one cube is affected only once. Each affected object and creature sheds dim light in a 10-foot radius for the duration.\n Any attack roll against an affected object or creature has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.", - "document": "toh", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "misdirection", - "fields": { - "name": "Misdirection", - "desc": "You create a brief flash of light, loud sound, or other distraction that interrupts a creature's attack. When a creature you can see within range makes an attack, you can impose disadvantage on its attack roll.", - "document": "toh", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mud", - "fields": { - "name": "Mud", - "desc": "The ground in a 20-foot radius centered on a point within range becomes thick, viscous mud. The area becomes difficult terrain for the duration. When a creature enters the affected area for the first time on a turn or starts its turn there, the creature must make a Strength saving throw. On a failed save, its movement speed is reduced to 0 until the start of its next turn.", - "document": "toh", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "muted-foe", - "fields": { - "name": "Muted Foe", - "desc": "You touch a nonmagical weapon. The next time a creature hits with the affected weapon before the spell ends, the weapon booms with a thunderous peal as the weapon strikes. The attack deals an extra 1d6 thunder damage to the target, and the target becomes deafened, immune to thunder damage, and unable to cast spells with verbal components for 1 minute. At the end of each of its turns, the target can make a Wisdom saving throw. On a success, the effect ends.", - "document": "toh", - "level": 1, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the extra damage increases by 1d6 for each slot level above 1st.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "never-surrender", - "fields": { - "name": "Never Surrender", - "desc": "When the target is reduced to 0 hit points, it can fight looming death to stay in the fight. The target doesn't fall unconscious but must still make death saving throws, as normal. The target doesn't need to make a death saving throw until the end of its next turn, but it has disadvantage on that first death saving throw. In addition, massive damage required to kill the target outright must equal or exceed twice the target's hit point maximum instead. If the target regains 1 or more hit points, this spell ends.", - "document": "toh", - "level": 3, - "school": "abjuration", - "higher_level": "If you cast this spell using a spell slot of 6th level or higher, the target doesn't have disadvantage on its first death saving throw.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "oathbound-implement", - "fields": { - "name": "Oathbound Implement", - "desc": "You place a magical oath upon a creature you can see within range, compelling it to complete a specific task or service that involves using a weapon as you decide. If the creature can understand you, it must succeed on a Wisdom saving throw or become bound by the task. When acting to complete the directed task, the target has advantage on the first attack roll it makes on each of its turns using a weapon. If the target attempts to use a weapon for a purpose other than completing the specific task or service, it has disadvantage on attack rolls with a weapon and must roll the weapon's damage dice twice, using the lower total.\n Completing the task ends the spell early. Should you issue a suicidal task, the spell ends. You can end the spell early by using an action to dismiss it. A *remove curse*, *greater restoration*, or *wish* spell also ends it.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "outmaneuver", - "fields": { - "name": "Outmaneuver", - "desc": "When a creature provokes an opportunity attack from an ally you can see within range, you can force the creature to make a Wisdom saving throw. On a failed save, the creature's movement is reduced to 0, and you can move up to your speed toward the creature without provoking opportunity attacks. This spell doesn't interrupt your ally's opportunity attack, which happens before the effects of this spell.", - "document": "toh", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "oversized-paws", - "fields": { - "name": "Oversized Paws", - "desc": "Until this spell ends, the hands and feet of one willing creature within range become oversized and more powerful. For the duration, the creature adds 1d4 to damage it deals with its unarmed strike.", - "document": "toh", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each spell slot above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "pincer", - "fields": { - "name": "Pincer", - "desc": "You force your enemies into a tight spot. Choose two points you can see within range. The points must be at least 30 feet apart from each other. Each point then emits a thunderous boom in a 30-foot cone in the direction of the other point. The boom is audible out to 300 feet.\n Each creature within a cone must make a Constitution saving throw. On a failed save, a creature takes 5d10 thunder damage and is pushed up to 10 feet away from the point that emitted the cone. On a successful save, the creature takes half as much damage and isn't pushed. Objects that aren't being worn or carried within each cone are automatically pushed.", - "document": "toh", - "level": 6, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d10 for each slot level above 6th.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 2, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "pipers-lure", - "fields": { - "name": "Piper's Lure", - "desc": "You touch a nonmagical pipe or horn instrument and imbue it with magic that lures creatures toward it. Each creature that enters or starts its turn within 150 feet of the affected object must succeed on a Wisdom saving throw or be charmed for 10 minutes. A creature charmed by this spell must take the Dash action and move toward the affected object by the safest available route on each of its turns. Once a charmed creature moves within 5 feet of the object, it is also incapacitated as it stares at the object and sways in place to a mesmerizing tune only it can hear. If the object is moved, the charmed creature attempts to follow it.\n For every 10 minutes that elapse, the creature can make a new Wisdom saving throw. On a success, the spell ends on that creature. If a charmed creature is attacked, the spell ends immediately on that creature. Once a creature has been charmed by this spell, it can't be charmed by it again for 24 hours.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "portal-jaunt", - "fields": { - "name": "Portal Jaunt", - "desc": "You touch a specially prepared key to a door or gate, turning it into a one-way portal to another such door within range. This spell works with any crafted door, doorway, archway, or any other artificial opening, but not natural or accidental openings such as cave entrances or cracks in walls. You must be aware of your destination or be able to see it from where you cast the spell.\n On completing the spell, the touched door opens, revealing a shimmering image of the location beyond the destination door. You can move through the door, emerging instantly out of the destination door. You can also allow one other willing creature to pass through the portal instead. Anything you carry moves through the door with you, including other creatures, willing or unwilling.\n For the purpose of this spell, any locks, bars, or magical effects such as arcane lock are ineffectual for the spell's duration. You can travel only to a side of the door you can see or have physically visited in the past (divinations such as clairvoyance count as seeing). Once you or a willing creature passes through, both doors shut, ending the spell. If you or another creature does not move through the portal within 1 round, the spell ends.", - "document": "toh", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the range increases by 100 feet and the duration increases by 1 round for each slot level above 3rd. Each round added to the duration allows one additional creature to move through the portal before the spell ends.", - "target_type": "creature", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "portal-trap", - "fields": { - "name": "Portal Trap", - "desc": "You create a magical portal on a surface in an unoccupied space you can see within range. The portal occupies up to 5 square feet of the surface and is instantly covered with an illusion. The illusion looks like the surrounding terrain or surface features, such as mortared stone if the portal is placed on a stone wall, or a simple image of your choice like those created by the *minor illusion* spell. A creature that touches, steps on, or otherwise interacts with or enters the portal must succeed on a Wisdom saving throw or be teleported to an unoccupied space up to 30 feet away in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. The creature can't be teleported into a solid object.\n Physical interaction with the illusion reveals it to be an illusion, but such touching triggers the portal's effect. A creature that uses an action to examine the area where the portal is located can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC.", - "document": "toh", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional portal for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "power-word-fling", - "fields": { - "name": "Power Word Fling", - "desc": "You mutter a word of power that causes a creature you can see within range to be flung vertically or horizontally. The creature must succeed on a Strength saving throw or be thrown up to 15 feet vertically or horizontally. If the target impacts a surface, such as a ceiling or wall, it stops moving and takes 3d6 bludgeoning damage. If the target was thrown vertically, it plummets to the ground, taking falling damage as normal, unless it has a flying speed or other method of preventing a fall. If the target impacts a creature, the target stops moving and takes 3d6 bludgeoning damage, and the creature the target hits must succeed on a Strength saving throw or be knocked prone. After the target is thrown horizontally or it falls from being thrown vertically, regardless of whether it impacted a surface, it is knocked prone.\n As a bonus action on each of your subsequent turns, you can attempt to fling the same creature again. The target must succeed on another Strength saving throw or be thrown.", - "document": "toh", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the distance you can fling the target increases by 5 feet, and the damage from impacting a surface or creature increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "power-word-rend", - "fields": { - "name": "Power Word Rend", - "desc": "You speak a word of power that causes the internal organs of a creature you can see within range to rupture. The target must make a Constitution saving throw. It takes 4d6 + 20 force damage on a failed save, or half as much damage on a successful one. If the target is below half its hit point maximum, it has disadvantage on this saving throw. This spell has no effect on creatures without vital internal organs, such as constructs, oozes, and undead.", - "document": "toh", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d6+20", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "reapers-knell", - "fields": { - "name": "Reaper's Knell", - "desc": "As the bell rings, a burst of necrotic energy ripples out in a 20-foot-radius sphere from a point you can see within range. Each creature in that area must make a Wisdom saving throw. On a failed save, the creature is marked with necrotic energy for the duration. If a marked creature is reduced to 0 hit points or dies before the spell ends, you regain hit points equal to 2d8 + your spellcasting ability modifier. Alternatively, you can choose for one ally you can see within range to regain the hit points instead.", - "document": "toh", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the healing increases by 1d8 for each slot level above 4th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "rebounding-bolt", - "fields": { - "name": "Rebounding Bolt", - "desc": "You fire a vibrant blue beam of energy at a creature you can see within range. The beam then bounces to a creature of your choice within 30 feet of the target, losing some of its vibrancy and continuing to bounce to other creatures of your choice until it sputters out. Each subsequent target must be within 30 feet of the target affected before it, and the beam can't bounce to a target it has already affected.\n Each target must make a Constitution saving throw. The first target takes 5d6 force damage on a failed save, or half as much damage on a successful one. The beam loses some of its power then bounces to the second target. The beam deals 1d6 force damage less (4d6, then 3d6, then 2d6, then 1d6) to each subsequent target with the final target taking 1d6 force damage on a failed save, or half as much damage on a successful one.", - "document": "toh", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd. This increase allows the beam to jump an additional time, reducing the damage it deals by 1d6 with each bounce as normal.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "5d6", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "repulsing-wall", - "fields": { - "name": "Repulsing Wall", - "desc": "You create a shimmering wall of light on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is translucent, and creatures have disadvantage on Wisdom (Perception) checks to look through the wall.\n One side of the wall, selected by you when you cast this spell, deals 5d8 radiant damage when a creature enters the wall for the first time on a turn or ends its turn there. A creature attempting to pass through the wall must make a Strength saving throw. On a failed save, a creature is pushed 10 feet away from the wall and falls prone. A creature that is undead, a fiend, or vulnerable to radiant damage has disadvantage on this saving throw. The other side of the wall deals no damage and doesn't restrict movement through it.", - "document": "toh", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "retribution", - "fields": { - "name": "Retribution", - "desc": "You wrap yourself in shimmering ethereal armor. The next time a creature hits you with a melee attack, it takes force damage equal to half the damage it dealt to you, and it must make a Strength saving throw. On a failed save, the creature is pushed up to 5 feet away from you. Then the spell ends.", - "document": "toh", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "rockfall-ward", - "fields": { - "name": "Rockfall Ward", - "desc": "You temporarily halt the fall of up to a 10-foot cube of nonmagical objects or debris, saving those who might have been crushed. The falling material's rate of descent slows to 60 feet per round and comes to a stop 5 feet above the ground, where it hovers until the spell ends. This spell can't prevent missile weapons from striking a target, and it can't slow the descent of an object larger than a 10-foot cube. However, at the GM's discretion, it can slow the descent of a section of a larger object, such as the wall of a falling building or a section of sail and rigging tied to a falling mast.", - "document": "toh", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the cube of debris and objects you can halt increases by 5 feet for each slot level above 1st.", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sacrifice-pawn", - "fields": { - "name": "Sacrifice Pawn", - "desc": "Sometimes one must fall so others might rise. When a friendly creature you can see within range drops to 0 hit points, you can harness its escaping life energy to heal yourself. You regain hit points equal to the fallen creature's level (or CR for a creature without a level) + your spellcasting ability modifier.", - "document": "toh", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sacrificial-healing", - "fields": { - "name": "Sacrificial Healing", - "desc": "You heal another creature's wounds by taking them upon yourself or transferring them to another willing creature in range. Roll 4d8. The number rolled is the amount of damage healed by the target and the damage you take, as its wounds close and similar damage appears on your body (or the body of the other willing target of the spell).", - "document": "toh", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "safe-transposition", - "fields": { - "name": "Safe Transposition", - "desc": "You cast this spell when an ally below half its hit point maximum within range is attacked. You swap places with your ally, each of you instantly teleporting into the space the other just occupied. If there isn't room for you in the new space or for your ally in your former space, this spell fails. After the two of you teleport, the triggering attack roll is compared to your AC to determine if it hits you.", - "document": "toh", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "secret-blind", - "fields": { - "name": "Secret Blind", - "desc": "A 5-foot-radius immobile sphere springs into existence around you and remains stationary for the duration. You and up to four Medium or smaller creatures can occupy the sphere. If its area includes a larger creature or more than five creatures, each larger creature and excess creature is pushed to an unoccupied space outside of the sphere.\n Creatures and objects within the sphere when you cast this spell may move through it freely. All other creatures and objects are barred from passing through the sphere after it forms. Spells and other magical effects can't extend through the sphere, with the exception of transmutation or conjuration spells and magical effects that allow you or the creatures inside the sphere to willingly leave it, such as the *dimension door* and *teleport* spells. The atmosphere inside the sphere is cool, dry, and filled with air, regardless of the conditions outside.\n Until the effect ends, you can command the interior to be dimly lit or dark. The sphere is opaque from the outside and covered in an illusion that makes it appear as the surrounding terrain, but it is transparent from the inside. Physical interaction with the illusion reveals it to be an illusion as the creature touches the cool, firm surface of the sphere. A creature that uses an action to examine the sphere can determine it is covered by an illusion with a successful Intelligence (Investigation) check against your spell save DC.\n The effect ends if you leave its area, or if the sphere is hit with the *disintegration* spell or a successful *dispel magic* spell.", - "document": "toh", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 5, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shared-frenzy", - "fields": { - "name": "Shared Frenzy", - "desc": "You yell defiantly as part of casting this spell to encourage a battle fury among your allies. Each friendly creature in range must make a Charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, it has resistance to bludgeoning, piercing, and slashing damage and has advantage on attack rolls for the duration. However, attack rolls made against an affected creature have advantage.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, this spell no longer causes creatures to have advantage against the spell's targets.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "shocking-volley", - "fields": { - "name": "Shocking Volley", - "desc": "You draw back and release an imaginary bowstring while aiming at a point you can see within range. Bolts of arrow-shaped lightning shoot from the imaginary bow, and each creature within 20 feet of that point must make a Dexterity saving throw. On a failed save, a creature takes 2d8 lightning damage and is incapacitated until the end of its next turn. On a successful save, a creature takes half as much damage.", - "document": "toh", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "lightning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sightburst", - "fields": { - "name": "Sightburst", - "desc": "A wave of echoing sound emanates from you. Until the start of your next turn, you have blindsight out to a range of 100 feet, and you know the location of any natural hazards within that area. You have advantage on saving throws made against hazards detected with this spell.", - "document": "toh", - "level": 2, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 1 minute. When you use a spell slot of 5th level or higher, the duration is concentration, up to 10 minutes. When you use a spell slot of 7th level or higher, the duration is concentration, up to 1 hour.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "silvershout", - "fields": { - "name": "Silvershout", - "desc": "You unleash a shout that coats all creatures in a 30'foot cone in silver dust. If a creature in that area is a shapeshifter, the dust covering it glows. In addition, each creature in the area must make a Constitution saving throw. On a failed save, weapon attacks against that creature are considered to be silvered for the purposes of overcoming resistance and immunity to nonmagical attacks that aren't silvered for 1 minute.", - "document": "toh", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "smelting-blast", - "fields": { - "name": "Smelting Blast", - "desc": "You unleash a bolt of red-hot liquid metal at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 2d8 fire damage and must succeed on a Constitution saving throw or be coated in cooling, liquid metal for the duration. A creature coated in liquid metal takes 1d8 fire damage at the start of each of its turns as the metal scorches while it cools. At the end of each of its turns, the creature can make another Constitution saving throw. On a success, the spell ends and the liquid metal disappears.", - "document": "toh", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "2d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sneer", - "fields": { - "name": "Sneer", - "desc": "You curl your lip in disgust at a creature you can see within range. The target must succeed on a Charisma saving throw or take psychic damage equal to 2d4 + your spellcasting ability modifier.", - "document": "toh", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "spiked-barricade", - "fields": { - "name": "Spiked Barricade", - "desc": "With a word, you create a barricade of pointed, wooden poles, also known as a cheval de frise, to block your enemies' progress. The barricade is composed of six 5-foot cube barriers made of wooden spikes mounted on central, horizontal beams.\n Each barrier doesn't need to be contiguous with another barrier, but each barrier must appear in an unoccupied space within range. Each barrier is difficult terrain, and a barrier provides half cover to a creature behind it. When a creature enters a barrier's area for the first time on a turn or starts its turn there, the creature must succeed on a Strength saving throw or take 3d6 piercing damage.\n The barriers are objects made of wood that can be damaged and destroyed. Each barrier has AC 13, 20 hit points, and is vulnerable to bludgeoning and fire damage. Reducing a barrier to 0 hit points destroys it.\n If you maintain your concentration on this spell for its whole duration, the barriers become permanent and can't be dispelled. Otherwise, the barriers disappear when the spell ends.", - "document": "toh", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the number of barriers you create increases by two for each slot level above 3rd.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "spite", - "fields": { - "name": "Spite", - "desc": "You prick your finger and anoint your forehead with your own blood, taking 1 piercing damage and warding yourself against hostile attacks. The first time a creature hits you with an attack during this spell's duration, it takes 3d6 psychic damage. Then the spell ends.", - "document": "toh", - "level": 2, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "psychic" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "steam-gout", - "fields": { - "name": "Steam Gout", - "desc": "You create a gout of billowing steam in a 40-foottall cylinder with a 5-foot radius centered on a point on the ground you can see within range. Exposed flames in the area are doused. Each creature in the area when the gout first appears must make a Dexterity saving throw. On a failed save, the creature takes 2d8 fire damage and falls prone. On a successful save, the creature takes half as much damage and doesn't fall prone.\n The gout then covers the area in a sheen of slippery water. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a Dexterity saving throw. On a failed save, it falls prone.", - "document": "toh", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8, and you can create one additional gout of steam for each slot level above 3rd. A creature in the area of more than one gout of steam is affected only once.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": "cylinder", - "shape_magnitude": 5, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "stone-aegis", - "fields": { - "name": "Stone Aegis", - "desc": "A rocky coating covers your body, protecting you. Until the start of your next turn, you gain 5 temporary hit points and a +2 bonus to Armor Class, including against the triggering attack.\n At the start of each of your subsequent turns, you can use a bonus action to extend the duration of the AC bonus until the start of your following turn, for up to 1 minute.", - "document": "toh", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "up to 1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "stone-fetch", - "fields": { - "name": "Stone Fetch", - "desc": "You create a stony duplicate of yourself, which rises out of the ground and appears next to you. The duplicate looks like a stone carving of you, including the clothing you're wearing and equipment you're carrying at the time of the casting. It uses the statistics of an earth elemental.\n For the duration, you have a telepathic link with the duplicate. You can use this telepathic link to issue commands to the duplicate while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as “Run over there” or “Fetch that object.” If the duplicate completes the order and doesn't receive further direction from you, it takes the Dodge or Hide action (your choice) on its turn. The duplicate can't attack, but it can speak in a gravelly version of your voice and mimic your mannerisms with exact detail.\n As a bonus action, you can see through the duplicate's eyes and hear what it hears as if you were in the duplicate's space, gaining the benefits of the earth elemental's darkvision and tremorsense until the start of your next turn. During this time, you are deaf and blind with regard to your own senses. As an action while sharing the duplicate's senses, you can make the duplicate explode in a shower of jagged chunks of rock, destroying the duplicate and ending the spell. Each creature within 10 feet of the duplicate must make a Dexterity saving throw. A creature takes 4d10 slashing damage on a failed save, or half as much damage on a successful one.\n The duplicate explodes at the end of the duration, if you didn't cause it to explode before then. If the duplicate is killed before it explodes, you suffer one level of exhaustion.", - "document": "toh", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the explosion damage increases by 1d10 for each slot level above 4th. In addition, when you cast this spell using a spell slot of 6th level or higher, the duration is 1 hour. When you cast this spell using a spell slot of 8th level or higher, the duration is 8 hours. Using a spell slot of 6th level or higher grants a duration that doesn't require concentration.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d10", - "damage_types": [ - "slashing" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "sudden-slue", - "fields": { - "name": "Sudden Slue", - "desc": "With a growl, you call forth dozens of bears to overrun all creatures in a 20-foot cube within range. Each creature in the area must make a Dexterity saving throw. On a failed save, a creature takes 6d6 bludgeoning damage and is knocked prone. On a successful save, a creature takes half the damage and isn't knocked prone. The bears disappear after making their charge.", - "document": "toh", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sudden-stampede", - "fields": { - "name": "Sudden Stampede", - "desc": "You conjure up a multitude of fey spirits that manifest as galloping horses. These horses run in a 10-foot'wide, 60-foot-long line, in a given direction starting from a point within range, trampling all creatures in their path, before vanishing again. Each creature in the line takes 6d10 bludgeoning damage and is knocked prone. A successful Dexterity saving throw reduces the damage by half, and the creature is not knocked prone.", - "document": "toh", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d10", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "toadstool-ring", - "fields": { - "name": "Toadstool Ring", - "desc": "You coax a toadstool ring to sprout from the ground. A creature of your choice can sit in the center of the ring and meditate for the duration, catching glimpses of the past, present, and future. The creature can ask up to three questions: one about the past, one about the present, and one about the future. The GM offers truthful answers in the form of dreamlike visions that may be subject to interpretation. When the spell ends, the toadstools turn black and dissolve back into the earth.\n If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that the meditating creature gets a random vision unrelated to the question. The GM makes this roll in secret.", - "document": "toh", - "level": 6, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "toothless-beast", - "fields": { - "name": "Toothless Beast", - "desc": "You hinder the natural attacks of a creature you can see within range. The creature must make a Wisdom saving throw. On a failed save, any time the creature attacks with a bite, claw, slam, or other weapon that isn't manufactured, it must roll the weapon's damage dice twice and use the lower total. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target. This spell has no effect on constructs.", - "document": "toh", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "trollish-charge", - "fields": { - "name": "Trollish Charge", - "desc": "You veil a willing creature you can see within range in an illusion others perceive as their worst nightmares given flesh. When the affected creature moves at least 10 feet straight toward a creature and attacks it, that creature must succeed on a Wisdom saving throw or become frightened for 1 minute. If the affected creature’s attack hits the frightened target, the affected creature can roll the attack’s damage dice twice and use the higher total.\n At the end of each of its turns, a creature frightened by this spell can make another Wisdom saving throw. On a success, the creature is no longer frightened and can’t be frightened by this spell again for 24 hours.", - "document": "toh", - "level": 4, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "vine-carpet", - "fields": { - "name": "Vine Carpet", - "desc": "You cause a thick carpet of vines to grow from a point on the ground within range. The vines cover objects and prone creatures within 20 feet of that point. While covered in this way, objects and creatures have total cover as long as they remain motionless. A creature that moves while beneath the carpet has only three-quarters cover from attacks on the other side of the carpet. A covered creature that stands up from prone stands atop the carpet and is no longer covered. The carpet of vines is plush enough that a Large or smaller creature can walk across it without harming or detecting those covered by it.\n When the spell ends, the vines wither away into nothingness, revealing any objects and creatures that were still covered.", - "document": "toh", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "war-horn", - "fields": { - "name": "War Horn", - "desc": "You blow a blast on your war horn, sending a ripple of fear through your enemies and bolstering your allies. Choose up to three hostile creatures in range and up to three friendly creatures in range. Each hostile target must succeed on a Wisdom saving throw or become frightened for the duration. At the end of each of its turns, a frightened creature can make another Wisdom saving throw. On a success, the spell ends on that creature.\n Each friendly target gains a number of temporary hit points equal to 2d4 + your spellcasting ability modifier and has advantage on the next attack roll it makes before the spell ends. The temporary hit points last for 1 hour.", - "document": "toh", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "wild-hunt", - "fields": { - "name": "Wild Hunt", - "desc": "While casting this spell, you must chant and drum, calling forth the spirit of the hunt. Up to nine other creatures can join you in the chant.\n For the duration, each creature that participated in the chant is filled with the fervent bloodlust of the wild hunt and gains several benefits. The creature is immune to being charmed and frightened, it deals one extra die of damage on the first weapon or spell attack it makes on each of its turns, it has advantage on Strength or Dexterity saving throws (the creature's choice), and its Armor Class increases by 1.\n When this spell ends, a creature affected by it suffers one level of exhaustion.", - "document": "toh", - "level": 7, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -} -] + { + "model": "api_v2.spell", + "pk": "toh_ambush-chute", + "fields": { + "name": "Ambush Chute", + "desc": "You touch a wooden, plaster, or stone surface and create a passage with two trapdoors. The first trapdoor appears where you touch the surface, and the other appears at a point you can see up to 30 feet away. The two trapdoors can be wooden with a metal ring handle, or they can match the surrounding surfaces, each with a small notch for opening the door. The two trapdoors are connected by an extradimensional passage that is up to 5 feet wide, up to 5 feet tall, and up to 30 feet long. The trapdoors don't need to be on the same surface, allowing the passage to connect two separated locations, such as the two sides of a chasm or river. The passage is always straight and level for creatures inside it, and the creatures exit the tunnel in such a way that allows them to maintain the same orientation as when they entered the passage. No more than five creatures can transit the passage at the same time.\n When the spell ends and the trapdoors disappear, any creatures or objects still in the passage created by the spell are safely ejected to an unoccupied space nearest the end of the passage closest to them.", + "document": "toh", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the length of the passage and the distance you can place the second trapdoor increases by 10 feet for each slot level above 3rd.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_armored-formation", + "fields": { + "name": "Armored Formation", + "desc": "You bolster the defenses of those nearby. Choose up to twelve willing creatures in range. When an affected creature is within 5 feet of at least one other affected creature, they create a formation. The formation must be a contiguous grouping of affected creatures, and each affected creature must be within 5 feet of at least one other affected creature within the formation. If the formation ever has less than two affected creatures, it ends, and an affected creature that moves further than 5 feet from other creatures in formation is no longer in that formation. Affected creatures don't have to all be in the same formation, and they can create or end as many formations of various sizes as they want for the duration of the spell. Each creature in a formation gains a bonus depending on how many affected creatures are in that formation.\n ***Two or More Creatures.*** Each creature gains a +2 bonus to AC.\n ***Four or More Creatures.*** Each creature gains a +2 bonus to AC, and when it hits with any weapon, it deals an extra 1d6 damage of the weapon's type.\n ***Six or More Creatures.*** Each creature gains a +3 bonus to AC, and when it hits with any weapon, it deals an extra 2d6 damage of the weapon's type.", + "document": "toh", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_babble", + "fields": { + "name": "Babble", + "desc": "This spell causes the speech of affected creatures to sound like nonsense. Each creature in a 30-foot-radius sphere centered on a point you choose within range must succeed on an Intelligence saving throw when you cast this spell or be affected by it.\n An affected creature cannot communicate in any spoken language that it knows. When it speaks, the words come out as gibberish. Spells with verbal components cannot be cast. The spell does not affect telepathic communication, nonverbal communication, or sounds emitted by any creature that does not have a spoken language. As an action, a creature under the effect of this spell can attempt another Intelligence saving throw against the effect. On a successful save, the spell ends.", + "document": "toh", + "level": 5, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_battle-mind", + "fields": { + "name": "Battle Mind", + "desc": "You gain a preternatural sense of the surrounding area, allowing you insights you can share with comrades to provide them with an edge in combat. You gain advantage on Wisdom (Perception) checks made when determining surprise at the beginning of a combat encounter. If you are not surprised, then neither are your allies. When you are engaged in combat while the spell is active, you can use a bonus action on your turn to produce one of the following effects (allies must be able to see or hear you in order to benefit):\n* One ally gains advantage on its next attack roll, saving throw, or ability check.\n* An enemy has disadvantage on the next attack roll it makes against you or an ally.\n* You divine the location of an invisible or hidden creature and impart that knowledge to any allies who can see or hear you. This knowledge does not negate any advantages the creature has, it only allows your allies to be aware of its location at the time. If the creature moves after being detected, its new location is not imparted to your allies.\n* Three allies who can see and hear you on your turn are given the benefit of a *bless*, *guidance*, or *resistance spell* on their turns; you choose the benefit individually for each ally. An ally must use the benefit on its turn, or the benefit is lost.", + "document": "toh", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_beast-within", + "fields": { + "name": "Beast Within", + "desc": "You imbue a willing creature with a touch of lycanthropy. The target gains a few bestial qualities appropriate to the type of lycanthrope you choose, such as tufts of fur, elongated claws, a fang-lined maw or tusks, and similar features. For the duration, the target has resistance to bludgeoning, piercing, and slashing damage from nonmagical attacks that aren't silvered. In addition, the target has advantage on Wisdom (Perception) checks that rely on hearing or smell. Finally, the creature can use its new claws and jaw or tusks to make unarmed strikes. The claws deal slashing damage equal to 1d4 + the target's Strength modifier on a hit. The bite deals piercing damage equal to 1d6 + the target's Strength modifier on a hit. The target's bite doesn't inflict lycanthropy.", + "document": "toh", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each spell slot above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_betraying-bauble", + "fields": { + "name": "Betraying Bauble", + "desc": "When you cast this spell, you touch a pair of objects. Each object must be small enough to fit in one hand. While holding one of the objects, you can sense the direction to the other object's location.\n If the paired object is in motion, you know the direction and relative speed of its movement (walking, running, galloping, or similar). When the two objects are within 30 feet of each other, they vibrate faintly unless they are touching. If you aren't holding either item and the spell hasn't ended, you can sense the direction of the closest of the two objects within 1,000 feet of you, and you can sense if it is in motion. If neither object is within 1,000 feet of you, you sense the closest object as soon as you come within 1,000 feet of one of them. If an inch or more of lead blocks a direct path between you and an affected object, you can't sense that object.", + "document": "toh", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_bloodlust", + "fields": { + "name": "Bloodlust", + "desc": "You imbue a willing creature that you can see within range with vitality and fury. The target gains 1d6 temporary hit points, has advantage on Strength checks, and deals an extra 1d6 damage when it hits with a weapon attack. When the spell ends, the target suffers one level of exhaustion for 1 minute.", + "document": "toh", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_blunted-edge", + "fields": { + "name": "Blunted Edge", + "desc": "Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or have disadvantage on weapon attack rolls. In addition, when an affected creature rolls damage dice for a successful attack, it must roll the weapon's damage dice twice and use the lower total. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_bolster-fortifications", + "fields": { + "name": "Bolster Fortifications", + "desc": "You create a ward that bolsters a structure or a collection of structures that occupy up to 2,500 square feet of floor space. The bolstered structures can be up to 20 feet tall and shaped as you desire. You can ward several small buildings in a stronghold by dividing the area among them, as long as you can walk into each contiguous area while you are casting the spell. For the purpose of this spell, “structures” include walls, such as the palisade that might surround a small fort, provided the wall is no more than 20 feet tall.\n For the duration, each structure you bolstered has a damage threshold of 5. If a structure already has a damage threshold, that threshold increases by 5.\n This spell protects only the walls, support beams, roofs, and similar that make up the core components of the structure. It doesn't bolster objects within the structures, such as furniture.\n The protected structure or structures radiate magic. A *dispel magic* cast on a structure removes the bolstering from only that structure. You can create a permanently bolstered structure or collection of structures by casting this spell there every day for one year.", + "document": "toh", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the square feet of floor space you can bolster increases by 500 and the damage threshold increases by 2 for each slot level above 3rd.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_bound-haze", + "fields": { + "name": "Bound Haze", + "desc": "You cause a swirling gyre of dust, small rocks, and wind to encircle a creature you can see within range. The target must succeed on a Dexterity saving throw or have disadvantage on attack rolls and on Wisdom (Perception) checks. At the end of each of its turns, the target can make a Dexterity saving throw. On a success, the spell ends.\n In addition, if the target is within a cloud or gas, such as the area of a *fog cloud* spell or a dretch's Fetid Cloud, the affected target has disadvantage on this spell's saving throws and on any saving throws associated with being in the cloud or gas, such as the saving throw to reduce the poison damage the target might take from starting its turn in the area of a *cloudkill* spell.", + "document": "toh", + "level": 3, + "school": "conjuration", + "higher_level": "If you cast this spell using a spell slot of 4th level or higher, the duration is 1 minute, and the spell doesn't require concentration.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_burst-stone", + "fields": { + "name": "Burst Stone", + "desc": "You cause the ground at a point you can see within range to explode. The ground must be sand, earth, or unworked rock. Each creature within 10 feet of that point must make a Dexterity saving throw. On a failed save, the creature takes 4d8 bludgeoning damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone. The area then becomes difficult terrain with a 5-foot-deep pit centered on the point you chose.", + "document": "toh", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_butterfly-effect", + "fields": { + "name": "Butterfly Effect", + "desc": "You cause a cloud of illusory butterflies to swarm around a target you can see within range. The target must succeed on a Charisma saving throw or be charmed for the duration. While charmed, the target can't take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|------|-------------------|\n| 1 | The creature uses all its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. The creature doesn't take an action this turn. |\n| 2-6 | The creature doesn't take an action this turn. |\n| 7-8 | The creature uses its action to make a melee attack against a randomly determined creature within its reach. If there is no creature within its reach, the creature does nothing this turn. |\n| 9-10 | The creature can act and move normally. |\n\nAt the end of each of its turns, and each time it takes damage, the target can make another Charisma saving throw. On a success, the spell ends on the target.", + "document": "toh", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_calm-beasts", + "fields": { + "name": "Calm Beasts", + "desc": "You attempt to calm aggressive or frightened animals. Each beast in a 20-foot-radius sphere centered on a point you choose within range must make a Charisma saving throw. If a creature fails its saving throw, choose one of the following two effects.\n ***Suppress Hold.*** You can suppress any effect causing the target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime.\n ***Suppress Hostility.*** You can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its allies being harmed. When the spell ends, the creature becomes hostile again, unless the GM rules otherwise.", + "document": "toh", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_clear-the-board", + "fields": { + "name": "Clear the Board", + "desc": "You send your allies and your enemies to opposite sides of the battlefield. Pick a cardinal direction. With a shout and a gesture, you and up to five willing friendly creatures within range are teleported up to 90 feet in that direction to spaces you can see. At the same time, up to six hostile creatures within range must make a Wisdom saving throw. On a failed save, the hostile creature is teleported up to 90 feet in the opposite direction of where you teleport yourself and the friendly creatures to spaces you can see. You can't teleport a target into dangerous terrain, such as lava or off the edge of a cliff, and each target must be teleported to an unoccupied space that is on the ground or on a floor.", + "document": "toh", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_conjure-construct", + "fields": { + "name": "Conjure Construct", + "desc": "You summon a construct of challenge rating 5 or lower to harry your foes. It appears in an unoccupied space you can see within range. It disappears when it drops to 0 hit points or when the spell ends.\n The construct is friendly to you and your companions for the duration. Roll initiative for the construct, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the construct, it defends itself from hostile creatures but otherwise takes no actions.\n If your concentration is broken, the construct doesn't disappear. Instead, you lose control of the construct, it becomes hostile toward you and your companions, and it might attack. An uncontrolled construct can't be dismissed by you, and it disappears 1 hour after you summoned it.\n The construct deals double damage to objects and structures.\n The GM has the construct's statistics.", + "document": "toh", + "level": 6, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the challenge rating increases by 1 for each slot level above 6th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_conjure-spectral-allies", + "fields": { + "name": "Conjure Spectral Allies", + "desc": "You sprinkle some graveyard dirt before you and call forth vengeful spirits. The spirits erupt from the ground at a point you choose within range and sweep outward. Each creature in a 30-foot-radius sphere centered on that point must make a Wisdom saving throw. On a failed save, a creature takes 6d10 necrotic damage and becomes frightened for 1 minute. On a successful save, the creature takes half as much damage and isn't frightened.\n At the end of each of its turns, a creature frightened by this spell can make another saving throw. On a success, this spell ends on the creature.", + "document": "toh", + "level": 7, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 1d10 for each slot level above 7th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "6d10", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_convey-inner-peace", + "fields": { + "name": "Convey Inner Peace", + "desc": "You imbue yourself and up to five willing creatures within range with the ability to enter a meditative trance like an elf. Once before the spell ends, an affected creature can complete a long rest in 4 hours, meditating as an elf does while in trance. After resting in this way, each creature gains the same benefit it would normally gain from 8 hours of rest.", + "document": "toh", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_crown-of-thorns", + "fields": { + "name": "Crown of Thorns", + "desc": "You create a psychic binding on the mind of a creature within range. Until this spell ends, the creature must make a Charisma saving throw each time it casts a spell. On a failed save, it takes 2d6 psychic damage, and it fails to cast the spell. It doesn't expend a spell slot if it fails to cast the spell.", + "document": "toh", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_damaging-intel", + "fields": { + "name": "Damaging Intel", + "desc": "You study a creature you can see within range, learning its weaknesses. The creature must make a Charisma saving throw. If it fails, you learn its damage vulnerabilities, damage resistances, and damage immunities, and the next attack one of your allies in range makes against the target before the end of your next turn has advantage.", + "document": "toh", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_deadly-salvo", + "fields": { + "name": "Deadly Salvo", + "desc": "When you cast this spell, the ammunition flies from your hand with a loud bang, targeting up to five creatures or objects you can see within range. You can launch the bullets at one target or several. Make a ranged spell attack for each bullet. On a hit, the target takes 3d6 piercing damage. This damage can experience a burst, as described in the gunpowder weapon property (see the Adventuring Gear chapter), but this spell counts as a single effect for the purposes of determining how many times the damage can burst, regardless of the number of targets affected.", + "document": "toh", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "3d6", + "damage_types": [ + "piercing" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_divine-retribution", + "fields": { + "name": "Divine Retribution", + "desc": "With a last word before you fall unconscious, this spell inflicts radiant damage to your attacker equal to 1d8 + the amount of damage you took from the triggering attack. If the attacker is a fiend or undead, it takes an extra 1d8 radiant damage. The creature then must succeed on a Constitution saving throw or become stunned for 1 minute. At the end of each of its turns, the creature can make another Constitution saving throw. On a successful save, it is no longer stunned.", + "document": "toh", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "1d8", + "damage_types": [ + "radiant" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_dreamwine", + "fields": { + "name": "Dreamwine", + "desc": "You imbue a bottle of wine with fey magic. While casting this spell, you and up to seven other creatures can drink the imbued wine. At the completion of the casting, each creature that drank the wine can see invisible creatures and objects as if they were visible, can see into the Ethereal plane, and has advantage on Charisma checks and saving throws for the duration. Ethereal creatures and objects appear ghostly and translucent.", + "document": "toh", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_emerald-eyes", + "fields": { + "name": "Emerald Eyes", + "desc": "You attempt to convince a creature to enter a paranoid, murderous rage. Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or be convinced those around it intend to steal anything and everything it possesses, from its position of employment, to the affections of its loved ones, to its monetary wealth and possessions, no matter how trusted those nearby might be or how ludicrous such a theft might seem. While affected by this spell, the target must use its action to attack the nearest creature other than itself or you. If the target starts its turn with no other creature near enough to move to and attack, the target can make another Wisdom saving throw. On a success, the target's head clears momentarily and it can act freely that turn. If the target starts its turn a second time with no other creature near enough to move to and attack, it can make another Wisdom saving throw. On a success, the spell ends on the target.\n Each time the target takes damage, it can make another Wisdom saving throw. On a success, the spell ends on the target.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_enchanted-bloom", + "fields": { + "name": "Enchanted Bloom", + "desc": "You spend an hour anointing a rose with scented oils and imbuing it with fey magic. The first creature other than you that touches the rose before the spell ends pricks itself on the thorns and must make a Charisma saving throw. On a failed save, the creature falls into a deep slumber for 24 hours, and it can be awoken only by the greater restoration spell or similar magic or if you choose to end the spell as an action. While slumbering, the creature doesn't need to eat or drink, and it doesn't age.\n Each time the creature takes damage, it makes a new Charisma saving throw. On a success, the spell ends on the creature.", + "document": "toh", + "level": 5, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of a higher level, the duration of the slumber increases to 7 days with a 6th-level slot, to 30 days with a 7th-level slot, to 180 days with an 8th-level slot, and to a year with a 9th-level spell slot.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_eruption", + "fields": { + "name": "Eruption", + "desc": "You create a furiously erupting volcano centered on a point you can see within range. The ground heaves violently as a cinder cone that is 2 feet wide and 5 feet tall bursts up from it. Each creature within 30 feet of the cinder cone when it appears must make a Strength saving throw. On a failed save, a creature takes 8d6 bludgeoning damage and is knocked prone. On a successful save, a creature takes half as much damage and isn't knocked prone.\n Each round you maintain concentration on this spell, the cinder cone produces additional effects on your turn.\n ***Round 2.*** Smoke pours from the cinder cone. Each creature within 10 feet of the cinder cone when the smoke appears takes 4d6 poison damage. Afterwards, each creature that enters the smoky area for the first time on a turn or starts its turn there takes 2d6 poison damage. The smoke spreads around corners, and its area is heavily obscured. A wind of moderate or greater speed (at least 10 miles per hour) disperses the smoke until the start of your next turn, when the smoke reforms.\n ***Round 3.*** Lava bubbles out from the cinder cone, spreading out to cover the ground within 20 feet of the cinder cone. Each creature and object in the area when the lava appears takes 10d10 fire damage and is on fire. Afterwards, each creature that enters the lava for the first time on a turn or starts its turn there takes 5d10 fire damage. In addition, the smoke spreads to fill a 20-foot-radius sphere centered on the cinder cone.\n ***Round 4.*** The lava continues spreading and covers the ground within 30 feet of the cinder cone in lava that is 1-foot-deep. The lava-covered ground becomes difficult terrain. In addition, the smoke fills a 30-footradius sphere centered on the cinder cone.\n ***Round 5.*** The lava expands to cover the ground within 40 feet of the cinder cone, and the smoke fills a 40-foot radius sphere centered on the cinder cone. In addition, the cinder cone begins spewing hot rocks. Choose up to three creatures within 90 feet of the cinder cone. Each target must succeed on a Dexterity saving throw or take 3d6 bludgeoning damage and 3d6 fire damage.\n ***Rounds 6-10.*** The lava and smoke continue to expand in size by 10 feet each round. In addition, each round you can direct the cinder cone to spew hot rocks at three targets, as described in Round 5.\n When the spell ends, the volcano ceases erupting, but the smoke and lava remain for 1 minute before cooling and dispersing. The landscape is permanently altered by the spell.", + "document": "toh", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_feint", + "fields": { + "name": "Feint", + "desc": "You create a momentary, flickering duplicate of yourself just as you make an attack against a creature. You have advantage on the next attack roll you make against the target before the end of your next turn as it's distracted by your illusory copy.", + "document": "toh", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_fey-food", + "fields": { + "name": "Fey Food", + "desc": "You enchant up to 1 pound of food or 1 gallon of drink within range with fey magic. Choose one of the effects below. For the duration, any creature that consumes the enchanted food or drink, up to four creatures per pound of food or gallon of drink, must succeed on a Charisma saving throw or succumb to the chosen effect.\n ***Slumber.*** The creature falls asleep and is unconscious for 1 hour. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n ***Friendly Face.*** The creature is charmed by you for 1 hour. If you or your allies do anything harmful to it, the creature can make another Charisma saving throw. On a success, the spell ends on the creature.\n ***Muddled Memory.*** The creature remembers only fragments of the events of the past hour. A remove curse or greater restoration spell cast on the creature restores the creature's memory.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can enchant an additional pound of food or gallon of drink for each slot level over 3rd.", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_fey-touched-blade", + "fields": { + "name": "Fey-Touched Blade", + "desc": "You touch a nonmagical weapon and imbue it with the magic of the fey. Choose one of the following damage types: force, psychic, necrotic, or radiant. Until the spell ends, the weapon becomes a magic weapon and deals an extra 1d4 damage of the chosen type to any target it hits.", + "document": "toh", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can imbue one additional weapon for each slot level above 2nd.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_forced-reposition", + "fields": { + "name": "Forced Reposition", + "desc": "One creature of your choice that you can see within range is teleported to an unoccupied space you can see up to 60 feet above you. The space can be open air or a balcony, ledge, or other surface above you. An unwilling creature that succeeds on a Constitution saving throw is unaffected. A creature teleported to open air immediately falls, taking falling damage as normal, unless it can fly or it has some other method of catching itself or preventing a fall. A creature can't be teleported into a solid object.", + "document": "toh", + "level": 4, + "school": "conjuration", + "higher_level": "If you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The targets must be within 30 feet of each other when you target them, but they don't need to be teleported to the same locations.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_furious-wail", + "fields": { + "name": "Furious Wail", + "desc": "You let out a scream of white-hot fury that pierces the minds of up to five creatures within range. Each target must make a Charisma saving throw. On a failed save, it takes 10d10 + 30 psychic damage and is stunned until the end of its next turn. On a success, it takes half as much damage.", + "document": "toh", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "10d10+30", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_fuse-armor", + "fields": { + "name": "Fuse Armor", + "desc": "Choose a manufactured metal object with movable parts, such as a drawbridge pulley or winch or a suit of heavy or medium metal armor, that you can see within range. You cause the object's moveable parts to fuse together for the duration. The object's movable aspects can't be moved: a pulley's wheel won't turn and the joints of armor won't bend.\n A creature wearing armor affected by this spell has its speed reduced by 10 feet and has disadvantage on weapon attacks and ability checks that use Strength or Dexterity. At the end of each of its turns, the creature wearing the armor can make a Strength saving throw. On a success, the spell ends on the armor.\n A creature in physical contact with an affected object that isn't a suit of armor can use its action to make a Strength check against your spell save DC. On a success, the spell ends on the object.\n If you target a construct with this spell, it must succeed on a Strength saving throw or have its speed reduced by 10 feet and have disadvantage on weapon attacks. At the end of each of its turns, the construct can make another Strength saving throw. On a success, the spell ends on the construct.", + "document": "toh", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional object for each slot level above 2nd. The objects must be within 30 feet of each other when you target them.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_gale", + "fields": { + "name": "Gale", + "desc": "You summon a storm to batter your oncoming enemies. Until the spell ends, freezing rain and turbulent winds fill a 20-foot-tall cylinder with a 300- foot radius centered on a point you choose within range. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.\n The spell's area is heavily obscured, and exposed flames in the area are doused. The ground in the area becomes slick, difficult terrain, and a flying creature in the area must land at the end of its turn or fall. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a Constitution saving throw as the wind and rain assail it. On a failed save, the creature takes 1d6 cold damage.\n If a creature is concentrating in the spell's area, the creature must make a successful Constitution saving throw against your spell save DC or lose concentration.", + "document": "toh", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "1 mile", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_glare", + "fields": { + "name": "Glare", + "desc": "You cast a disdainful glare at up to two creatures you can see within range. Each target must succeed on a Wisdom saving throw or take no actions on its next turn as it reassesses its life choices. If a creature fails the saving throw by 5 or more, it can't take actions on its next two turns.", + "document": "toh", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 2, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_high-ground", + "fields": { + "name": "High Ground", + "desc": "With a word, you gesture across an area and cause the terrain to rise up into a 10-foot-tall hillock at a point you choose within range. You must be outdoors to cast this spell. The hillock is up to 30 feet long and up to 15 feet wide, and it must be in a line. If the hillock cuts through a creature's space when it appears, the creature is pushed to one side of the hillock or to the top of the hillock (your choice). The ranged attack distance for a creature on top of the hillock is doubled, provided the target is at a lower elevation than the creature on the hillock. At the GM's discretion, creatures on top of the hillock gain any additional bonuses or penalties that higher elevation might provide, such as advantage on attacks against those on lower elevations, being easier to spot, longer sight distance, or similar.\n The steep sides of the hillock are difficult to climb. A creature at the bottom of the hillock that attempts to move up to the top must succeed on a Strength (Athletics) or Dexterity (Acrobatics) check against your spell save DC to climb to the top of the hillock.\n This spell can't manipulate stone construction, and rocks and structures shift to accommodate the hillock. If the hillock's formation would make a structure unstable, the hillock fails to form in the structure's spaces. Similarly, this spell doesn't directly affect plant growth. The hillock carries any plants along with it.", + "document": "toh", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell at 4th level or higher, you can increase the width of the hillock by 5 feet or the length by 10 feet for each slot above 3rd.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_immolating-gibbet", + "fields": { + "name": "Immolating Gibbet", + "desc": "You cause up to three creatures you can see within range to be yanked into the air where their blood turns to fire, burning them from within. Each target must succeed on a Dexterity saving throw or be magically pulled up to 60 into the air. The creature is restrained there until the spell ends. A restrained creature must make a Constitution saving throw at the start of each of its turns. The creature takes 7d6 fire damage on a failed save, or half as much damage on a successful one.\n At the end of each of its turns, a restrained creature can make another Dexterity saving throw. On a success, the spell ends on the creature, and the creature falls to the ground, taking falling damage as normal. Alternatively, the restrained creature or someone else who can reach it can use an action to make an Intelligence (Arcana) check against your spell save DC. On a success, the restrained effect ends, and the creature falls to the ground, taking falling damage as normal.", + "document": "toh", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "7d6", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_inexorable-summons", + "fields": { + "name": "Inexorable Summons", + "desc": "You reach out toward a creature and call to it. The target teleports to an unoccupied space that you can see within 5 feet of you. An unwilling creature can make a Wisdom saving throw, and if it succeeds, it isn't affected by this spell. You can't teleport a target into dangerous terrain, such as lava, and the target must be teleported to a space on the ground or on a floor.", + "document": "toh", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_instant-armored-vehicle", + "fields": { + "name": "Instant Armored Vehicle", + "desc": "You transform a handful of materials into a Huge armored vehicle. The vehicle can take whatever form you want, but it has AC 18 and 100 hit points. If it is reduced to 0 hit points, it is destroyed. If it is a ground vehicle, it has a speed of 90 feet. If it is an airborne vehicle, it has a flying speed of 45 feet. If it is a waterborne vehicle, it has a speed of 2 miles per hour. The vehicle can hold up to four Medium creatures within it.\n A creature inside it has three-quarters cover from attacks outside the vehicle, which contains arrow slits, portholes, and other small openings. A creature piloting the armored vehicle can take the Careen action. To do so, the vehicle must move at least 10 feet in a straight line and enter or pass through the space of at least one Large or smaller creature. This movement doesn't provoke opportunity attacks. Each creature in the armored vehicle's path must make a Dexterity saving throw against your spell save DC. On a failed save, the creature takes 5d8 bludgeoning damage and is knocked prone. On a successful save, the creature can choose to be pushed 5 feet away from the space through which the vehicle passed. A creature that chooses not to be pushed suffers the consequences of a failed saving throw. If the creature piloting the armored vehicle isn't proficient in land, water, or air vehicles (whichever is appropriate for the vehicle's type), each target has advantage on the saving throw against the Careen action.", + "document": "toh", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_invested-champion", + "fields": { + "name": "Invested Champion", + "desc": "You touch one creature and choose either to become its champion, or for it to become yours. If you choose a creature to become your champion, it fights on your behalf. While this spell is in effect, you can cast any spell with a range of touch on your champion as if the spell had a range of 60 feet. Your champion's attacks are considered magical, and you can use a bonus action on your turn to encourage your champion, granting it advantage on its next attack roll.\n If you become the champion of another creature, you gain advantage on all attack rolls against creatures that have attacked your charge within the last round. If you are wielding a shield, and a creature within 5 feet of you attacks your charge, you can use your reaction to impose disadvantage on the attack roll, as if you had the Protection fighting style. If you already have the Protection fighting style, then in addition to imposing disadvantage, you can also push an enemy 5 feet in any direction away from your charge when you take your reaction. You can use a bonus action on your turn to reroll the damage for any successful attack against a creature that is threatening your charge.\n Whichever version of the spell is cast, if the distance between the champion and its designated ally increases to more than 60 feet, the spell ends.", + "document": "toh", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_iron-gut", + "fields": { + "name": "Iron Gut", + "desc": "For the duration, one willing creature you touch has resistance to poison damage and advantage on saving throws against poison. When the affected creature makes a Constitution saving throw against an effect that deals poison damage or that would cause the creature to become poisoned, the creature can choose to succeed on the saving throw. If it does so, the spell ends on the creature.\n While affected by this spell, a creature can't gain any benefit from consuming magical foodstuffs, such as those produced by the goodberry and heroes' feast spells, and it doesn't suffer ill effects from consuming potentially harmful, nonmagical foodstuffs, such as spoiled food or non-potable water. The creature is affected normally by other consumable magic items, such as potions. The creature can identify poisoned food by a sour taste, with deadlier poisons tasting more sour.", + "document": "toh", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "up to 1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_jagged-forcelance", + "fields": { + "name": "Jagged Forcelance", + "desc": "You create a magical tether of pulsing, golden force between two willing creatures you can see within range. The two creatures must be within 15 feet of each other. The tether remains as long as each tethered creature ends its turn within 15 feet of the other tethered creature. If a tethered creature ends its turn more than 15 feet away from its tethered partner, the spell ends. Though the tether appears as a thin line, its effect extends the full height of the tethered creatures and can affect prone or hovering creatures, provided the hovering creature hovers no higher than the tallest tethered creature.\n Any creature that touches the tether or ends its turn in a space the tether passes through must make a Strength saving throw. On a failure, a creature takes 3d6 force damage and is knocked prone. On a success, a creature takes half as much damage and isn't knocked prone. A creature that makes this saving throw, whether it succeeds or fails, can't be affected by the tether again until the start of your next turn.", + "document": "toh", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the maximum distance between the tethered creatures increases by 5 feet, and the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_jarring-growl", + "fields": { + "name": "Jarring Growl", + "desc": "You loose a growl from deep within the pit of your stomach, causing others who can hear it to become unnerved. You have advantage on Charisma (Intimidation) checks you make before the beginning of your next turn. In addition, each creature within 5 feet of you must make a Wisdom saving throw. On a failure, you have advantage on attack rolls against that creature until the end of your turn. You are aware of which creatures failed their saving throws.", + "document": "toh", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_lance", + "fields": { + "name": "Lance", + "desc": "You create a shimmering lance of force and hurl it toward a creature you can see within range. Make a ranged spell attack against the target. On a hit, the target takes 5d6 force damage, and it is restrained by the lance until the end of its next turn.", + "document": "toh", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "5d6", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_less-fool-i", + "fields": { + "name": "Less Fool, I", + "desc": "A creature you touch becomes less susceptible to lies and magical influence. For the duration, other creatures have disadvantage on Charisma checks to influence the protected creature, and the creature has advantage on spells that cause it to become charmed or frightened.", + "document": "toh", + "level": 1, + "school": "divination", + "higher_level": "If you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 1 hour. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the duration is 1 year. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_life-burst", + "fields": { + "name": "Life Burst", + "desc": "You make a jubilant shout when you cast this spell, releasing your stores of divine energy in a wave of healing. You distribute the remaining power of your Lay on Hands to allies within 30 feet of you, restoring hit points and curing diseases and poisons. This healing energy removes diseases and poisons first (starting with the nearest ally), removing 5 hit points from the hit point total for each disease or poison cured, until all the points are spent or all diseases and poisons are cured. If any hit points remain, you regain hit points equal to that amount.\n This spell expends all of the healing energy in your Lay on Hands, which replenishes, as normal, when you finish a long rest.", + "document": "toh", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_lightless-torch", + "fields": { + "name": "Lightless Torch", + "desc": "You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds a shadowy miasma in a 30-foot radius. A creature with darkvision inside the radius sees the area as if it were filled with bright light. The miasma doesn't shed light, and a creature with darkvision inside the radius can still see outside the radius as normal. A creature with darkvision outside the radius or a creature without darkvision sees only that the object is surrounded by wisps of shadow.\n Completely covering the affected object with an opaque object, such as a bowl or a helm, blocks the effect. Though the effect doesn't shed light, it can be dispelled if the area of a darkness spell overlaps the area of this spell.\n If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.", + "document": "toh", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 2 hours for each slot level above 1st.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_long-game", + "fields": { + "name": "Long Game", + "desc": "While casting this spell, you must engage your target in conversation. At the completion of the casting, the target must make a Charisma saving throw. If it fails, you place a latent magical effect in the target's mind for the duration. If the target succeeds on the saving throw, it realizes that you used magic to affect its mind and might become hostile toward you, at the GM's discretion.\n Once before the spell ends, you can use an action to trigger the magical effect in the target's mind, provided you are on the same plane of existence as the target. When the effect is triggered, the target takes 5d8 psychic damage plus an extra 1d8 psychic damage for every 24 hours that has passed since you cast the spell, up to a total of 12d8 psychic damage. The spell has no effect on the target if it ends before you trigger the magical effect.\n *A greater restoration* or *wish* spell cast on the target ends the spell early. You know if the spell is ended early, provided you are on the same plane of existence as the target.", + "document": "toh", + "level": 7, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "psychic" + ], + "duration": "7 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_magma-spray", + "fields": { + "name": "Magma Spray", + "desc": "A 5-foot-diameter, 5-foot-tall cylindrical fountain of magma erupts from the ground in a space of your choice within range. A creature in that space takes 3d8 fire damage, or half as much damage with a successful Dexterity saving throw. A creature that enters the area on its turn or ends its turn there also takes 3d8 fire damage, or half as much damage with a successful Dexterity saving throw. A creature can take this damage only once per turn.\n A creature killed by this spell is reduced to ash.", + "document": "toh", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "40 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_mantle-of-the-brave", + "fields": { + "name": "Mantle of the Brave", + "desc": "You touch up to four individuals, bolstering their courage. The next time a creature affected by this spell must make a saving throw against a spell or effect that would cause the frightened condition, it has advantage on the roll. Once a creature has received this benefit, the spell ends for that creature.", + "document": "toh", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_martyrs-rally", + "fields": { + "name": "Martyr's Rally", + "desc": "With a hopeful rallying cry just as you fall unconscious, you rouse your allies to action. Each ally within 60 feet of you that can see and hear you has advantage on attack rolls for the duration. If you regain hit points, the spell immediately ends.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_mass-faerie-fire", + "fields": { + "name": "Mass Faerie Fire", + "desc": "You can place up to three 20-foot cubes each centered on a point you can see within range. Each object in a cube is outlined in blue, green, or violet light (your choice). Any creature in a cube when the spell is cast is also outlined in light if it fails a Dexterity saving throw. A creature in the area of more than one cube is affected only once. Each affected object and creature sheds dim light in a 10-foot radius for the duration.\n Any attack roll against an affected object or creature has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.", + "document": "toh", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_misdirection", + "fields": { + "name": "Misdirection", + "desc": "You create a brief flash of light, loud sound, or other distraction that interrupts a creature's attack. When a creature you can see within range makes an attack, you can impose disadvantage on its attack roll.", + "document": "toh", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_mud", + "fields": { + "name": "Mud", + "desc": "The ground in a 20-foot radius centered on a point within range becomes thick, viscous mud. The area becomes difficult terrain for the duration. When a creature enters the affected area for the first time on a turn or starts its turn there, the creature must make a Strength saving throw. On a failed save, its movement speed is reduced to 0 until the start of its next turn.", + "document": "toh", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_muted-foe", + "fields": { + "name": "Muted Foe", + "desc": "You touch a nonmagical weapon. The next time a creature hits with the affected weapon before the spell ends, the weapon booms with a thunderous peal as the weapon strikes. The attack deals an extra 1d6 thunder damage to the target, and the target becomes deafened, immune to thunder damage, and unable to cast spells with verbal components for 1 minute. At the end of each of its turns, the target can make a Wisdom saving throw. On a success, the effect ends.", + "document": "toh", + "level": 1, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the extra damage increases by 1d6 for each slot level above 1st.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_never-surrender", + "fields": { + "name": "Never Surrender", + "desc": "When the target is reduced to 0 hit points, it can fight looming death to stay in the fight. The target doesn't fall unconscious but must still make death saving throws, as normal. The target doesn't need to make a death saving throw until the end of its next turn, but it has disadvantage on that first death saving throw. In addition, massive damage required to kill the target outright must equal or exceed twice the target's hit point maximum instead. If the target regains 1 or more hit points, this spell ends.", + "document": "toh", + "level": 3, + "school": "abjuration", + "higher_level": "If you cast this spell using a spell slot of 6th level or higher, the target doesn't have disadvantage on its first death saving throw.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_oathbound-implement", + "fields": { + "name": "Oathbound Implement", + "desc": "You place a magical oath upon a creature you can see within range, compelling it to complete a specific task or service that involves using a weapon as you decide. If the creature can understand you, it must succeed on a Wisdom saving throw or become bound by the task. When acting to complete the directed task, the target has advantage on the first attack roll it makes on each of its turns using a weapon. If the target attempts to use a weapon for a purpose other than completing the specific task or service, it has disadvantage on attack rolls with a weapon and must roll the weapon's damage dice twice, using the lower total.\n Completing the task ends the spell early. Should you issue a suicidal task, the spell ends. You can end the spell early by using an action to dismiss it. A *remove curse*, *greater restoration*, or *wish* spell also ends it.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_outmaneuver", + "fields": { + "name": "Outmaneuver", + "desc": "When a creature provokes an opportunity attack from an ally you can see within range, you can force the creature to make a Wisdom saving throw. On a failed save, the creature's movement is reduced to 0, and you can move up to your speed toward the creature without provoking opportunity attacks. This spell doesn't interrupt your ally's opportunity attack, which happens before the effects of this spell.", + "document": "toh", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_oversized-paws", + "fields": { + "name": "Oversized Paws", + "desc": "Until this spell ends, the hands and feet of one willing creature within range become oversized and more powerful. For the duration, the creature adds 1d4 to damage it deals with its unarmed strike.", + "document": "toh", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each spell slot above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_pincer", + "fields": { + "name": "Pincer", + "desc": "You force your enemies into a tight spot. Choose two points you can see within range. The points must be at least 30 feet apart from each other. Each point then emits a thunderous boom in a 30-foot cone in the direction of the other point. The boom is audible out to 300 feet.\n Each creature within a cone must make a Constitution saving throw. On a failed save, a creature takes 5d10 thunder damage and is pushed up to 10 feet away from the point that emitted the cone. On a successful save, the creature takes half as much damage and isn't pushed. Objects that aren't being worn or carried within each cone are automatically pushed.", + "document": "toh", + "level": 6, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d10 for each slot level above 6th.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 2, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_pipers-lure", + "fields": { + "name": "Piper's Lure", + "desc": "You touch a nonmagical pipe or horn instrument and imbue it with magic that lures creatures toward it. Each creature that enters or starts its turn within 150 feet of the affected object must succeed on a Wisdom saving throw or be charmed for 10 minutes. A creature charmed by this spell must take the Dash action and move toward the affected object by the safest available route on each of its turns. Once a charmed creature moves within 5 feet of the object, it is also incapacitated as it stares at the object and sways in place to a mesmerizing tune only it can hear. If the object is moved, the charmed creature attempts to follow it.\n For every 10 minutes that elapse, the creature can make a new Wisdom saving throw. On a success, the spell ends on that creature. If a charmed creature is attacked, the spell ends immediately on that creature. Once a creature has been charmed by this spell, it can't be charmed by it again for 24 hours.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_portal-jaunt", + "fields": { + "name": "Portal Jaunt", + "desc": "You touch a specially prepared key to a door or gate, turning it into a one-way portal to another such door within range. This spell works with any crafted door, doorway, archway, or any other artificial opening, but not natural or accidental openings such as cave entrances or cracks in walls. You must be aware of your destination or be able to see it from where you cast the spell.\n On completing the spell, the touched door opens, revealing a shimmering image of the location beyond the destination door. You can move through the door, emerging instantly out of the destination door. You can also allow one other willing creature to pass through the portal instead. Anything you carry moves through the door with you, including other creatures, willing or unwilling.\n For the purpose of this spell, any locks, bars, or magical effects such as arcane lock are ineffectual for the spell's duration. You can travel only to a side of the door you can see or have physically visited in the past (divinations such as clairvoyance count as seeing). Once you or a willing creature passes through, both doors shut, ending the spell. If you or another creature does not move through the portal within 1 round, the spell ends.", + "document": "toh", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the range increases by 100 feet and the duration increases by 1 round for each slot level above 3rd. Each round added to the duration allows one additional creature to move through the portal before the spell ends.", + "target_type": "creature", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_portal-trap", + "fields": { + "name": "Portal Trap", + "desc": "You create a magical portal on a surface in an unoccupied space you can see within range. The portal occupies up to 5 square feet of the surface and is instantly covered with an illusion. The illusion looks like the surrounding terrain or surface features, such as mortared stone if the portal is placed on a stone wall, or a simple image of your choice like those created by the *minor illusion* spell. A creature that touches, steps on, or otherwise interacts with or enters the portal must succeed on a Wisdom saving throw or be teleported to an unoccupied space up to 30 feet away in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. The creature can't be teleported into a solid object.\n Physical interaction with the illusion reveals it to be an illusion, but such touching triggers the portal's effect. A creature that uses an action to examine the area where the portal is located can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC.", + "document": "toh", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional portal for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_power-word-fling", + "fields": { + "name": "Power Word Fling", + "desc": "You mutter a word of power that causes a creature you can see within range to be flung vertically or horizontally. The creature must succeed on a Strength saving throw or be thrown up to 15 feet vertically or horizontally. If the target impacts a surface, such as a ceiling or wall, it stops moving and takes 3d6 bludgeoning damage. If the target was thrown vertically, it plummets to the ground, taking falling damage as normal, unless it has a flying speed or other method of preventing a fall. If the target impacts a creature, the target stops moving and takes 3d6 bludgeoning damage, and the creature the target hits must succeed on a Strength saving throw or be knocked prone. After the target is thrown horizontally or it falls from being thrown vertically, regardless of whether it impacted a surface, it is knocked prone.\n As a bonus action on each of your subsequent turns, you can attempt to fling the same creature again. The target must succeed on another Strength saving throw or be thrown.", + "document": "toh", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the distance you can fling the target increases by 5 feet, and the damage from impacting a surface or creature increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_power-word-rend", + "fields": { + "name": "Power Word Rend", + "desc": "You speak a word of power that causes the internal organs of a creature you can see within range to rupture. The target must make a Constitution saving throw. It takes 4d6 + 20 force damage on a failed save, or half as much damage on a successful one. If the target is below half its hit point maximum, it has disadvantage on this saving throw. This spell has no effect on creatures without vital internal organs, such as constructs, oozes, and undead.", + "document": "toh", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d6+20", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_reapers-knell", + "fields": { + "name": "Reaper's Knell", + "desc": "As the bell rings, a burst of necrotic energy ripples out in a 20-foot-radius sphere from a point you can see within range. Each creature in that area must make a Wisdom saving throw. On a failed save, the creature is marked with necrotic energy for the duration. If a marked creature is reduced to 0 hit points or dies before the spell ends, you regain hit points equal to 2d8 + your spellcasting ability modifier. Alternatively, you can choose for one ally you can see within range to regain the hit points instead.", + "document": "toh", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the healing increases by 1d8 for each slot level above 4th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_rebounding-bolt", + "fields": { + "name": "Rebounding Bolt", + "desc": "You fire a vibrant blue beam of energy at a creature you can see within range. The beam then bounces to a creature of your choice within 30 feet of the target, losing some of its vibrancy and continuing to bounce to other creatures of your choice until it sputters out. Each subsequent target must be within 30 feet of the target affected before it, and the beam can't bounce to a target it has already affected.\n Each target must make a Constitution saving throw. The first target takes 5d6 force damage on a failed save, or half as much damage on a successful one. The beam loses some of its power then bounces to the second target. The beam deals 1d6 force damage less (4d6, then 3d6, then 2d6, then 1d6) to each subsequent target with the final target taking 1d6 force damage on a failed save, or half as much damage on a successful one.", + "document": "toh", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd. This increase allows the beam to jump an additional time, reducing the damage it deals by 1d6 with each bounce as normal.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "5d6", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_repulsing-wall", + "fields": { + "name": "Repulsing Wall", + "desc": "You create a shimmering wall of light on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is translucent, and creatures have disadvantage on Wisdom (Perception) checks to look through the wall.\n One side of the wall, selected by you when you cast this spell, deals 5d8 radiant damage when a creature enters the wall for the first time on a turn or ends its turn there. A creature attempting to pass through the wall must make a Strength saving throw. On a failed save, a creature is pushed 10 feet away from the wall and falls prone. A creature that is undead, a fiend, or vulnerable to radiant damage has disadvantage on this saving throw. The other side of the wall deals no damage and doesn't restrict movement through it.", + "document": "toh", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_retribution", + "fields": { + "name": "Retribution", + "desc": "You wrap yourself in shimmering ethereal armor. The next time a creature hits you with a melee attack, it takes force damage equal to half the damage it dealt to you, and it must make a Strength saving throw. On a failed save, the creature is pushed up to 5 feet away from you. Then the spell ends.", + "document": "toh", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_rockfall-ward", + "fields": { + "name": "Rockfall Ward", + "desc": "You temporarily halt the fall of up to a 10-foot cube of nonmagical objects or debris, saving those who might have been crushed. The falling material's rate of descent slows to 60 feet per round and comes to a stop 5 feet above the ground, where it hovers until the spell ends. This spell can't prevent missile weapons from striking a target, and it can't slow the descent of an object larger than a 10-foot cube. However, at the GM's discretion, it can slow the descent of a section of a larger object, such as the wall of a falling building or a section of sail and rigging tied to a falling mast.", + "document": "toh", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the cube of debris and objects you can halt increases by 5 feet for each slot level above 1st.", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_sacrifice-pawn", + "fields": { + "name": "Sacrifice Pawn", + "desc": "Sometimes one must fall so others might rise. When a friendly creature you can see within range drops to 0 hit points, you can harness its escaping life energy to heal yourself. You regain hit points equal to the fallen creature's level (or CR for a creature without a level) + your spellcasting ability modifier.", + "document": "toh", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_sacrificial-healing", + "fields": { + "name": "Sacrificial Healing", + "desc": "You heal another creature's wounds by taking them upon yourself or transferring them to another willing creature in range. Roll 4d8. The number rolled is the amount of damage healed by the target and the damage you take, as its wounds close and similar damage appears on your body (or the body of the other willing target of the spell).", + "document": "toh", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_safe-transposition", + "fields": { + "name": "Safe Transposition", + "desc": "You cast this spell when an ally below half its hit point maximum within range is attacked. You swap places with your ally, each of you instantly teleporting into the space the other just occupied. If there isn't room for you in the new space or for your ally in your former space, this spell fails. After the two of you teleport, the triggering attack roll is compared to your AC to determine if it hits you.", + "document": "toh", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_secret-blind", + "fields": { + "name": "Secret Blind", + "desc": "A 5-foot-radius immobile sphere springs into existence around you and remains stationary for the duration. You and up to four Medium or smaller creatures can occupy the sphere. If its area includes a larger creature or more than five creatures, each larger creature and excess creature is pushed to an unoccupied space outside of the sphere.\n Creatures and objects within the sphere when you cast this spell may move through it freely. All other creatures and objects are barred from passing through the sphere after it forms. Spells and other magical effects can't extend through the sphere, with the exception of transmutation or conjuration spells and magical effects that allow you or the creatures inside the sphere to willingly leave it, such as the *dimension door* and *teleport* spells. The atmosphere inside the sphere is cool, dry, and filled with air, regardless of the conditions outside.\n Until the effect ends, you can command the interior to be dimly lit or dark. The sphere is opaque from the outside and covered in an illusion that makes it appear as the surrounding terrain, but it is transparent from the inside. Physical interaction with the illusion reveals it to be an illusion as the creature touches the cool, firm surface of the sphere. A creature that uses an action to examine the sphere can determine it is covered by an illusion with a successful Intelligence (Investigation) check against your spell save DC.\n The effect ends if you leave its area, or if the sphere is hit with the *disintegration* spell or a successful *dispel magic* spell.", + "document": "toh", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 5, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_shared-frenzy", + "fields": { + "name": "Shared Frenzy", + "desc": "You yell defiantly as part of casting this spell to encourage a battle fury among your allies. Each friendly creature in range must make a Charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, it has resistance to bludgeoning, piercing, and slashing damage and has advantage on attack rolls for the duration. However, attack rolls made against an affected creature have advantage.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, this spell no longer causes creatures to have advantage against the spell's targets.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_shocking-volley", + "fields": { + "name": "Shocking Volley", + "desc": "You draw back and release an imaginary bowstring while aiming at a point you can see within range. Bolts of arrow-shaped lightning shoot from the imaginary bow, and each creature within 20 feet of that point must make a Dexterity saving throw. On a failed save, a creature takes 2d8 lightning damage and is incapacitated until the end of its next turn. On a successful save, a creature takes half as much damage.", + "document": "toh", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "lightning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_sightburst", + "fields": { + "name": "Sightburst", + "desc": "A wave of echoing sound emanates from you. Until the start of your next turn, you have blindsight out to a range of 100 feet, and you know the location of any natural hazards within that area. You have advantage on saving throws made against hazards detected with this spell.", + "document": "toh", + "level": 2, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 1 minute. When you use a spell slot of 5th level or higher, the duration is concentration, up to 10 minutes. When you use a spell slot of 7th level or higher, the duration is concentration, up to 1 hour.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_silvershout", + "fields": { + "name": "Silvershout", + "desc": "You unleash a shout that coats all creatures in a 30'foot cone in silver dust. If a creature in that area is a shapeshifter, the dust covering it glows. In addition, each creature in the area must make a Constitution saving throw. On a failed save, weapon attacks against that creature are considered to be silvered for the purposes of overcoming resistance and immunity to nonmagical attacks that aren't silvered for 1 minute.", + "document": "toh", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_smelting-blast", + "fields": { + "name": "Smelting Blast", + "desc": "You unleash a bolt of red-hot liquid metal at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 2d8 fire damage and must succeed on a Constitution saving throw or be coated in cooling, liquid metal for the duration. A creature coated in liquid metal takes 1d8 fire damage at the start of each of its turns as the metal scorches while it cools. At the end of each of its turns, the creature can make another Constitution saving throw. On a success, the spell ends and the liquid metal disappears.", + "document": "toh", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "2d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_sneer", + "fields": { + "name": "Sneer", + "desc": "You curl your lip in disgust at a creature you can see within range. The target must succeed on a Charisma saving throw or take psychic damage equal to 2d4 + your spellcasting ability modifier.", + "document": "toh", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_spiked-barricade", + "fields": { + "name": "Spiked Barricade", + "desc": "With a word, you create a barricade of pointed, wooden poles, also known as a cheval de frise, to block your enemies' progress. The barricade is composed of six 5-foot cube barriers made of wooden spikes mounted on central, horizontal beams.\n Each barrier doesn't need to be contiguous with another barrier, but each barrier must appear in an unoccupied space within range. Each barrier is difficult terrain, and a barrier provides half cover to a creature behind it. When a creature enters a barrier's area for the first time on a turn or starts its turn there, the creature must succeed on a Strength saving throw or take 3d6 piercing damage.\n The barriers are objects made of wood that can be damaged and destroyed. Each barrier has AC 13, 20 hit points, and is vulnerable to bludgeoning and fire damage. Reducing a barrier to 0 hit points destroys it.\n If you maintain your concentration on this spell for its whole duration, the barriers become permanent and can't be dispelled. Otherwise, the barriers disappear when the spell ends.", + "document": "toh", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the number of barriers you create increases by two for each slot level above 3rd.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_spite", + "fields": { + "name": "Spite", + "desc": "You prick your finger and anoint your forehead with your own blood, taking 1 piercing damage and warding yourself against hostile attacks. The first time a creature hits you with an attack during this spell's duration, it takes 3d6 psychic damage. Then the spell ends.", + "document": "toh", + "level": 2, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "psychic" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_steam-gout", + "fields": { + "name": "Steam Gout", + "desc": "You create a gout of billowing steam in a 40-foottall cylinder with a 5-foot radius centered on a point on the ground you can see within range. Exposed flames in the area are doused. Each creature in the area when the gout first appears must make a Dexterity saving throw. On a failed save, the creature takes 2d8 fire damage and falls prone. On a successful save, the creature takes half as much damage and doesn't fall prone.\n The gout then covers the area in a sheen of slippery water. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a Dexterity saving throw. On a failed save, it falls prone.", + "document": "toh", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8, and you can create one additional gout of steam for each slot level above 3rd. A creature in the area of more than one gout of steam is affected only once.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": "cylinder", + "shape_magnitude": 5, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_stone-aegis", + "fields": { + "name": "Stone Aegis", + "desc": "A rocky coating covers your body, protecting you. Until the start of your next turn, you gain 5 temporary hit points and a +2 bonus to Armor Class, including against the triggering attack.\n At the start of each of your subsequent turns, you can use a bonus action to extend the duration of the AC bonus until the start of your following turn, for up to 1 minute.", + "document": "toh", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "up to 1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_stone-fetch", + "fields": { + "name": "Stone Fetch", + "desc": "You create a stony duplicate of yourself, which rises out of the ground and appears next to you. The duplicate looks like a stone carving of you, including the clothing you're wearing and equipment you're carrying at the time of the casting. It uses the statistics of an earth elemental.\n For the duration, you have a telepathic link with the duplicate. You can use this telepathic link to issue commands to the duplicate while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as “Run over there” or “Fetch that object.” If the duplicate completes the order and doesn't receive further direction from you, it takes the Dodge or Hide action (your choice) on its turn. The duplicate can't attack, but it can speak in a gravelly version of your voice and mimic your mannerisms with exact detail.\n As a bonus action, you can see through the duplicate's eyes and hear what it hears as if you were in the duplicate's space, gaining the benefits of the earth elemental's darkvision and tremorsense until the start of your next turn. During this time, you are deaf and blind with regard to your own senses. As an action while sharing the duplicate's senses, you can make the duplicate explode in a shower of jagged chunks of rock, destroying the duplicate and ending the spell. Each creature within 10 feet of the duplicate must make a Dexterity saving throw. A creature takes 4d10 slashing damage on a failed save, or half as much damage on a successful one.\n The duplicate explodes at the end of the duration, if you didn't cause it to explode before then. If the duplicate is killed before it explodes, you suffer one level of exhaustion.", + "document": "toh", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the explosion damage increases by 1d10 for each slot level above 4th. In addition, when you cast this spell using a spell slot of 6th level or higher, the duration is 1 hour. When you cast this spell using a spell slot of 8th level or higher, the duration is 8 hours. Using a spell slot of 6th level or higher grants a duration that doesn't require concentration.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d10", + "damage_types": [ + "slashing" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_sudden-slue", + "fields": { + "name": "Sudden Slue", + "desc": "With a growl, you call forth dozens of bears to overrun all creatures in a 20-foot cube within range. Each creature in the area must make a Dexterity saving throw. On a failed save, a creature takes 6d6 bludgeoning damage and is knocked prone. On a successful save, a creature takes half the damage and isn't knocked prone. The bears disappear after making their charge.", + "document": "toh", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_sudden-stampede", + "fields": { + "name": "Sudden Stampede", + "desc": "You conjure up a multitude of fey spirits that manifest as galloping horses. These horses run in a 10-foot'wide, 60-foot-long line, in a given direction starting from a point within range, trampling all creatures in their path, before vanishing again. Each creature in the line takes 6d10 bludgeoning damage and is knocked prone. A successful Dexterity saving throw reduces the damage by half, and the creature is not knocked prone.", + "document": "toh", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d10", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_toadstool-ring", + "fields": { + "name": "Toadstool Ring", + "desc": "You coax a toadstool ring to sprout from the ground. A creature of your choice can sit in the center of the ring and meditate for the duration, catching glimpses of the past, present, and future. The creature can ask up to three questions: one about the past, one about the present, and one about the future. The GM offers truthful answers in the form of dreamlike visions that may be subject to interpretation. When the spell ends, the toadstools turn black and dissolve back into the earth.\n If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that the meditating creature gets a random vision unrelated to the question. The GM makes this roll in secret.", + "document": "toh", + "level": 6, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_toothless-beast", + "fields": { + "name": "Toothless Beast", + "desc": "You hinder the natural attacks of a creature you can see within range. The creature must make a Wisdom saving throw. On a failed save, any time the creature attacks with a bite, claw, slam, or other weapon that isn't manufactured, it must roll the weapon's damage dice twice and use the lower total. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target. This spell has no effect on constructs.", + "document": "toh", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_trollish-charge", + "fields": { + "name": "Trollish Charge", + "desc": "You veil a willing creature you can see within range in an illusion others perceive as their worst nightmares given flesh. When the affected creature moves at least 10 feet straight toward a creature and attacks it, that creature must succeed on a Wisdom saving throw or become frightened for 1 minute. If the affected creature’s attack hits the frightened target, the affected creature can roll the attack’s damage dice twice and use the higher total.\n At the end of each of its turns, a creature frightened by this spell can make another Wisdom saving throw. On a success, the creature is no longer frightened and can’t be frightened by this spell again for 24 hours.", + "document": "toh", + "level": 4, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "toh_vine-carpet", + "fields": { + "name": "Vine Carpet", + "desc": "You cause a thick carpet of vines to grow from a point on the ground within range. The vines cover objects and prone creatures within 20 feet of that point. While covered in this way, objects and creatures have total cover as long as they remain motionless. A creature that moves while beneath the carpet has only three-quarters cover from attacks on the other side of the carpet. A covered creature that stands up from prone stands atop the carpet and is no longer covered. The carpet of vines is plush enough that a Large or smaller creature can walk across it without harming or detecting those covered by it.\n When the spell ends, the vines wither away into nothingness, revealing any objects and creatures that were still covered.", + "document": "toh", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_war-horn", + "fields": { + "name": "War Horn", + "desc": "You blow a blast on your war horn, sending a ripple of fear through your enemies and bolstering your allies. Choose up to three hostile creatures in range and up to three friendly creatures in range. Each hostile target must succeed on a Wisdom saving throw or become frightened for the duration. At the end of each of its turns, a frightened creature can make another Wisdom saving throw. On a success, the spell ends on that creature.\n Each friendly target gains a number of temporary hit points equal to 2d4 + your spellcasting ability modifier and has advantage on the next attack roll it makes before the spell ends. The temporary hit points last for 1 hour.", + "document": "toh", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "toh_wild-hunt", + "fields": { + "name": "Wild Hunt", + "desc": "While casting this spell, you must chant and drum, calling forth the spirit of the hunt. Up to nine other creatures can join you in the chant.\n For the duration, each creature that participated in the chant is filled with the fervent bloodlust of the wild hunt and gains several benefits. The creature is immune to being charmed and frightened, it deals one extra die of damage on the first weapon or spell attack it makes on each of its turns, it has advantage on Strength or Dexterity saving throws (the creature's choice), and its Armor Class increases by 1.\n When this spell ends, a creature affected by it suffers one level of exhaustion.", + "document": "toh", + "level": 7, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + } +] \ No newline at end of file diff --git a/data/v2/kobold-press/toh/SpellCastingOption.json b/data/v2/kobold-press/toh/SpellCastingOption.json index 91074310..f3dbb09e 100644 --- a/data/v2/kobold-press/toh/SpellCastingOption.json +++ b/data/v2/kobold-press/toh/SpellCastingOption.json @@ -1,4298 +1,4298 @@ [ -{ - "model": "api_v2.spellcastingoption", - "pk": 1, - "fields": { - "parent": "ambush-chute", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 3, - "fields": { - "parent": "ambush-chute", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4, - "fields": { - "parent": "ambush-chute", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5, - "fields": { - "parent": "ambush-chute", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6, - "fields": { - "parent": "ambush-chute", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 7, - "fields": { - "parent": "ambush-chute", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 8, - "fields": { - "parent": "ambush-chute", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 9, - "fields": { - "parent": "armored-formation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 10, - "fields": { - "parent": "babble", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 11, - "fields": { - "parent": "battle-mind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 12, - "fields": { - "parent": "battle-mind", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 13, - "fields": { - "parent": "beast-within", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 15, - "fields": { - "parent": "beast-within", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 16, - "fields": { - "parent": "beast-within", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 17, - "fields": { - "parent": "beast-within", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 18, - "fields": { - "parent": "beast-within", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 19, - "fields": { - "parent": "beast-within", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 20, - "fields": { - "parent": "betraying-bauble", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 21, - "fields": { - "parent": "bloodlust", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 22, - "fields": { - "parent": "blunted-edge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 24, - "fields": { - "parent": "blunted-edge", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 25, - "fields": { - "parent": "blunted-edge", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 26, - "fields": { - "parent": "blunted-edge", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 27, - "fields": { - "parent": "blunted-edge", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 28, - "fields": { - "parent": "blunted-edge", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 29, - "fields": { - "parent": "blunted-edge", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 30, - "fields": { - "parent": "bolster-fortifications", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 32, - "fields": { - "parent": "bolster-fortifications", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 33, - "fields": { - "parent": "bolster-fortifications", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 34, - "fields": { - "parent": "bolster-fortifications", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 35, - "fields": { - "parent": "bolster-fortifications", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 36, - "fields": { - "parent": "bolster-fortifications", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 37, - "fields": { - "parent": "bolster-fortifications", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 38, - "fields": { - "parent": "bound-haze", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 40, - "fields": { - "parent": "bound-haze", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 41, - "fields": { - "parent": "bound-haze", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 42, - "fields": { - "parent": "bound-haze", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 43, - "fields": { - "parent": "bound-haze", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 44, - "fields": { - "parent": "bound-haze", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 45, - "fields": { - "parent": "bound-haze", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 46, - "fields": { - "parent": "burst-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 48, - "fields": { - "parent": "burst-stone", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 49, - "fields": { - "parent": "burst-stone", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 50, - "fields": { - "parent": "burst-stone", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 51, - "fields": { - "parent": "burst-stone", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 52, - "fields": { - "parent": "burst-stone", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 53, - "fields": { - "parent": "burst-stone", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 54, - "fields": { - "parent": "butterfly-effect", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 56, - "fields": { - "parent": "butterfly-effect", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 57, - "fields": { - "parent": "butterfly-effect", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 58, - "fields": { - "parent": "butterfly-effect", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 59, - "fields": { - "parent": "butterfly-effect", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 60, - "fields": { - "parent": "butterfly-effect", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 61, - "fields": { - "parent": "butterfly-effect", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 62, - "fields": { - "parent": "butterfly-effect", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 63, - "fields": { - "parent": "calm-beasts", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 64, - "fields": { - "parent": "clear-the-board", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 65, - "fields": { - "parent": "conjure-construct", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 67, - "fields": { - "parent": "conjure-construct", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 68, - "fields": { - "parent": "conjure-construct", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 69, - "fields": { - "parent": "conjure-construct", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 70, - "fields": { - "parent": "conjure-spectral-allies", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 72, - "fields": { - "parent": "conjure-spectral-allies", - "type": "slot_level_8", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 73, - "fields": { - "parent": "conjure-spectral-allies", - "type": "slot_level_9", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 74, - "fields": { - "parent": "convey-inner-peace", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 75, - "fields": { - "parent": "crown-of-thorns", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 76, - "fields": { - "parent": "damaging-intel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 77, - "fields": { - "parent": "deadly-salvo", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 78, - "fields": { - "parent": "divine-retribution", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 80, - "fields": { - "parent": "divine-retribution", - "type": "slot_level_2", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 81, - "fields": { - "parent": "divine-retribution", - "type": "slot_level_3", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 82, - "fields": { - "parent": "divine-retribution", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 83, - "fields": { - "parent": "divine-retribution", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 84, - "fields": { - "parent": "divine-retribution", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 85, - "fields": { - "parent": "divine-retribution", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 86, - "fields": { - "parent": "divine-retribution", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 87, - "fields": { - "parent": "divine-retribution", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 88, - "fields": { - "parent": "dreamwine", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 89, - "fields": { - "parent": "emerald-eyes", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 91, - "fields": { - "parent": "emerald-eyes", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 92, - "fields": { - "parent": "emerald-eyes", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 93, - "fields": { - "parent": "emerald-eyes", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 94, - "fields": { - "parent": "emerald-eyes", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 95, - "fields": { - "parent": "emerald-eyes", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 96, - "fields": { - "parent": "emerald-eyes", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 97, - "fields": { - "parent": "enchanted-bloom", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 99, - "fields": { - "parent": "enchanted-bloom", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "7 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 100, - "fields": { - "parent": "enchanted-bloom", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "30 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 101, - "fields": { - "parent": "enchanted-bloom", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "180 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 102, - "fields": { - "parent": "enchanted-bloom", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 103, - "fields": { - "parent": "eruption", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 104, - "fields": { - "parent": "feint", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 105, - "fields": { - "parent": "fey-food", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 107, - "fields": { - "parent": "fey-food", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 108, - "fields": { - "parent": "fey-food", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 109, - "fields": { - "parent": "fey-food", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 110, - "fields": { - "parent": "fey-food", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 111, - "fields": { - "parent": "fey-food", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 112, - "fields": { - "parent": "fey-food", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 113, - "fields": { - "parent": "fey-touched-blade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 115, - "fields": { - "parent": "fey-touched-blade", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 116, - "fields": { - "parent": "fey-touched-blade", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 117, - "fields": { - "parent": "fey-touched-blade", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 118, - "fields": { - "parent": "fey-touched-blade", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 119, - "fields": { - "parent": "fey-touched-blade", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 120, - "fields": { - "parent": "fey-touched-blade", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 121, - "fields": { - "parent": "fey-touched-blade", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 122, - "fields": { - "parent": "forced-reposition", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 124, - "fields": { - "parent": "forced-reposition", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 125, - "fields": { - "parent": "forced-reposition", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 126, - "fields": { - "parent": "forced-reposition", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 127, - "fields": { - "parent": "forced-reposition", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 128, - "fields": { - "parent": "forced-reposition", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 129, - "fields": { - "parent": "furious-wail", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 130, - "fields": { - "parent": "fuse-armor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 132, - "fields": { - "parent": "fuse-armor", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 133, - "fields": { - "parent": "fuse-armor", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 134, - "fields": { - "parent": "fuse-armor", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 135, - "fields": { - "parent": "fuse-armor", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 136, - "fields": { - "parent": "fuse-armor", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 137, - "fields": { - "parent": "fuse-armor", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 138, - "fields": { - "parent": "fuse-armor", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 139, - "fields": { - "parent": "gale", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 140, - "fields": { - "parent": "glare", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 141, - "fields": { - "parent": "high-ground", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 143, - "fields": { - "parent": "high-ground", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 144, - "fields": { - "parent": "high-ground", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 145, - "fields": { - "parent": "high-ground", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 146, - "fields": { - "parent": "high-ground", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 147, - "fields": { - "parent": "high-ground", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 148, - "fields": { - "parent": "high-ground", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 149, - "fields": { - "parent": "immolating-gibbet", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 150, - "fields": { - "parent": "inexorable-summons", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 151, - "fields": { - "parent": "instant-armored-vehicle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 152, - "fields": { - "parent": "invested-champion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 153, - "fields": { - "parent": "iron-gut", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 155, - "fields": { - "parent": "iron-gut", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 156, - "fields": { - "parent": "iron-gut", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 157, - "fields": { - "parent": "iron-gut", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 158, - "fields": { - "parent": "iron-gut", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 159, - "fields": { - "parent": "iron-gut", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 160, - "fields": { - "parent": "iron-gut", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 161, - "fields": { - "parent": "jagged-forcelance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 163, - "fields": { - "parent": "jagged-forcelance", - "type": "slot_level_4", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 164, - "fields": { - "parent": "jagged-forcelance", - "type": "slot_level_5", - "damage_roll": "13d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 165, - "fields": { - "parent": "jagged-forcelance", - "type": "slot_level_6", - "damage_roll": "18d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 166, - "fields": { - "parent": "jagged-forcelance", - "type": "slot_level_7", - "damage_roll": "23d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 167, - "fields": { - "parent": "jagged-forcelance", - "type": "slot_level_8", - "damage_roll": "28d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 168, - "fields": { - "parent": "jagged-forcelance", - "type": "slot_level_9", - "damage_roll": "33d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 169, - "fields": { - "parent": "jarring-growl", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 170, - "fields": { - "parent": "lance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 171, - "fields": { - "parent": "less-fool-i", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 173, - "fields": { - "parent": "less-fool-i", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 174, - "fields": { - "parent": "less-fool-i", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 175, - "fields": { - "parent": "less-fool-i", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 176, - "fields": { - "parent": "less-fool-i", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 177, - "fields": { - "parent": "less-fool-i", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 178, - "fields": { - "parent": "less-fool-i", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 179, - "fields": { - "parent": "less-fool-i", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 180, - "fields": { - "parent": "less-fool-i", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 181, - "fields": { - "parent": "life-burst", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 182, - "fields": { - "parent": "lightless-torch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 184, - "fields": { - "parent": "lightless-torch", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 185, - "fields": { - "parent": "lightless-torch", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 186, - "fields": { - "parent": "lightless-torch", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 187, - "fields": { - "parent": "lightless-torch", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "9 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 188, - "fields": { - "parent": "lightless-torch", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "11 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 189, - "fields": { - "parent": "lightless-torch", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "13 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 190, - "fields": { - "parent": "lightless-torch", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "15 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 191, - "fields": { - "parent": "lightless-torch", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "17 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 192, - "fields": { - "parent": "long-game", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 193, - "fields": { - "parent": "magma-spray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 195, - "fields": { - "parent": "magma-spray", - "type": "slot_level_3", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 196, - "fields": { - "parent": "magma-spray", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 197, - "fields": { - "parent": "magma-spray", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 198, - "fields": { - "parent": "magma-spray", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 199, - "fields": { - "parent": "magma-spray", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 200, - "fields": { - "parent": "magma-spray", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 201, - "fields": { - "parent": "magma-spray", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 202, - "fields": { - "parent": "mantle-of-the-brave", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 203, - "fields": { - "parent": "martyrs-rally", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 204, - "fields": { - "parent": "mass-faerie-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 205, - "fields": { - "parent": "misdirection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 206, - "fields": { - "parent": "mud", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 207, - "fields": { - "parent": "muted-foe", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 209, - "fields": { - "parent": "muted-foe", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 210, - "fields": { - "parent": "muted-foe", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 211, - "fields": { - "parent": "muted-foe", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 212, - "fields": { - "parent": "muted-foe", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 213, - "fields": { - "parent": "muted-foe", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 214, - "fields": { - "parent": "muted-foe", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 215, - "fields": { - "parent": "muted-foe", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 216, - "fields": { - "parent": "muted-foe", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 217, - "fields": { - "parent": "never-surrender", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 219, - "fields": { - "parent": "never-surrender", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 220, - "fields": { - "parent": "never-surrender", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 221, - "fields": { - "parent": "never-surrender", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 222, - "fields": { - "parent": "never-surrender", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 223, - "fields": { - "parent": "never-surrender", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 224, - "fields": { - "parent": "never-surrender", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 225, - "fields": { - "parent": "oathbound-implement", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 226, - "fields": { - "parent": "outmaneuver", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 227, - "fields": { - "parent": "oversized-paws", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 229, - "fields": { - "parent": "oversized-paws", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 230, - "fields": { - "parent": "oversized-paws", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 231, - "fields": { - "parent": "oversized-paws", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 232, - "fields": { - "parent": "oversized-paws", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 233, - "fields": { - "parent": "oversized-paws", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 234, - "fields": { - "parent": "oversized-paws", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 235, - "fields": { - "parent": "oversized-paws", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 236, - "fields": { - "parent": "pincer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 238, - "fields": { - "parent": "pincer", - "type": "slot_level_7", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 239, - "fields": { - "parent": "pincer", - "type": "slot_level_8", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 240, - "fields": { - "parent": "pincer", - "type": "slot_level_9", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 241, - "fields": { - "parent": "pipers-lure", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 242, - "fields": { - "parent": "portal-jaunt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 244, - "fields": { - "parent": "portal-jaunt", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 rounds", - "range": "400 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 245, - "fields": { - "parent": "portal-jaunt", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": "500 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 246, - "fields": { - "parent": "portal-jaunt", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 rounds", - "range": "600 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 247, - "fields": { - "parent": "portal-jaunt", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": "700 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 248, - "fields": { - "parent": "portal-jaunt", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": "800 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 249, - "fields": { - "parent": "portal-jaunt", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 rounds", - "range": "900 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 250, - "fields": { - "parent": "portal-trap", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 252, - "fields": { - "parent": "portal-trap", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 253, - "fields": { - "parent": "portal-trap", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 254, - "fields": { - "parent": "portal-trap", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 255, - "fields": { - "parent": "portal-trap", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 256, - "fields": { - "parent": "portal-trap", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 257, - "fields": { - "parent": "portal-trap", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 258, - "fields": { - "parent": "portal-trap", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 259, - "fields": { - "parent": "power-word-fling", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 261, - "fields": { - "parent": "power-word-fling", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 262, - "fields": { - "parent": "power-word-fling", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 263, - "fields": { - "parent": "power-word-fling", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 264, - "fields": { - "parent": "power-word-fling", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 265, - "fields": { - "parent": "power-word-fling", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 266, - "fields": { - "parent": "power-word-fling", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 267, - "fields": { - "parent": "power-word-rend", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 269, - "fields": { - "parent": "power-word-rend", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 270, - "fields": { - "parent": "power-word-rend", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 271, - "fields": { - "parent": "power-word-rend", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 272, - "fields": { - "parent": "power-word-rend", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 273, - "fields": { - "parent": "power-word-rend", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 274, - "fields": { - "parent": "reapers-knell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 276, - "fields": { - "parent": "reapers-knell", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 277, - "fields": { - "parent": "reapers-knell", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 278, - "fields": { - "parent": "reapers-knell", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 279, - "fields": { - "parent": "reapers-knell", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 280, - "fields": { - "parent": "reapers-knell", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 281, - "fields": { - "parent": "rebounding-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 283, - "fields": { - "parent": "rebounding-bolt", - "type": "slot_level_4", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 284, - "fields": { - "parent": "rebounding-bolt", - "type": "slot_level_5", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 285, - "fields": { - "parent": "rebounding-bolt", - "type": "slot_level_6", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 286, - "fields": { - "parent": "rebounding-bolt", - "type": "slot_level_7", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 287, - "fields": { - "parent": "rebounding-bolt", - "type": "slot_level_8", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 288, - "fields": { - "parent": "rebounding-bolt", - "type": "slot_level_9", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 289, - "fields": { - "parent": "repulsing-wall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 291, - "fields": { - "parent": "repulsing-wall", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 292, - "fields": { - "parent": "repulsing-wall", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 293, - "fields": { - "parent": "repulsing-wall", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 294, - "fields": { - "parent": "repulsing-wall", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 295, - "fields": { - "parent": "repulsing-wall", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 296, - "fields": { - "parent": "retribution", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 297, - "fields": { - "parent": "rockfall-ward", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 299, - "fields": { - "parent": "rockfall-ward", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 300, - "fields": { - "parent": "rockfall-ward", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 301, - "fields": { - "parent": "rockfall-ward", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 302, - "fields": { - "parent": "rockfall-ward", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 303, - "fields": { - "parent": "rockfall-ward", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 304, - "fields": { - "parent": "rockfall-ward", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 305, - "fields": { - "parent": "rockfall-ward", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 306, - "fields": { - "parent": "rockfall-ward", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 307, - "fields": { - "parent": "sacrifice-pawn", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 308, - "fields": { - "parent": "sacrificial-healing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 309, - "fields": { - "parent": "safe-transposition", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 310, - "fields": { - "parent": "secret-blind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 311, - "fields": { - "parent": "shared-frenzy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 313, - "fields": { - "parent": "shared-frenzy", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 314, - "fields": { - "parent": "shared-frenzy", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 315, - "fields": { - "parent": "shared-frenzy", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 316, - "fields": { - "parent": "shared-frenzy", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 317, - "fields": { - "parent": "shared-frenzy", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 318, - "fields": { - "parent": "shared-frenzy", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 319, - "fields": { - "parent": "shocking-volley", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 321, - "fields": { - "parent": "shocking-volley", - "type": "slot_level_3", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 322, - "fields": { - "parent": "shocking-volley", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 323, - "fields": { - "parent": "shocking-volley", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 324, - "fields": { - "parent": "shocking-volley", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 325, - "fields": { - "parent": "shocking-volley", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 326, - "fields": { - "parent": "shocking-volley", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 327, - "fields": { - "parent": "shocking-volley", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 328, - "fields": { - "parent": "sightburst", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 330, - "fields": { - "parent": "sightburst", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "1 minute", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 331, - "fields": { - "parent": "sightburst", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "1 minute", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 332, - "fields": { - "parent": "sightburst", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 333, - "fields": { - "parent": "sightburst", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 334, - "fields": { - "parent": "sightburst", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 335, - "fields": { - "parent": "sightburst", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 336, - "fields": { - "parent": "sightburst", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 337, - "fields": { - "parent": "silvershout", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 338, - "fields": { - "parent": "smelting-blast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 340, - "fields": { - "parent": "smelting-blast", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 341, - "fields": { - "parent": "smelting-blast", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 342, - "fields": { - "parent": "smelting-blast", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 343, - "fields": { - "parent": "smelting-blast", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 344, - "fields": { - "parent": "smelting-blast", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 345, - "fields": { - "parent": "smelting-blast", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 346, - "fields": { - "parent": "smelting-blast", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 347, - "fields": { - "parent": "sneer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 348, - "fields": { - "parent": "spiked-barricade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 350, - "fields": { - "parent": "spiked-barricade", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 351, - "fields": { - "parent": "spiked-barricade", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 352, - "fields": { - "parent": "spiked-barricade", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 353, - "fields": { - "parent": "spiked-barricade", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 354, - "fields": { - "parent": "spiked-barricade", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 355, - "fields": { - "parent": "spiked-barricade", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 356, - "fields": { - "parent": "spite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 358, - "fields": { - "parent": "spite", - "type": "slot_level_3", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 359, - "fields": { - "parent": "spite", - "type": "slot_level_4", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 360, - "fields": { - "parent": "spite", - "type": "slot_level_5", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 361, - "fields": { - "parent": "spite", - "type": "slot_level_6", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 362, - "fields": { - "parent": "spite", - "type": "slot_level_7", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 363, - "fields": { - "parent": "spite", - "type": "slot_level_8", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 364, - "fields": { - "parent": "spite", - "type": "slot_level_9", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 365, - "fields": { - "parent": "steam-gout", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 367, - "fields": { - "parent": "steam-gout", - "type": "slot_level_4", - "damage_roll": "3d8", - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 368, - "fields": { - "parent": "steam-gout", - "type": "slot_level_5", - "damage_roll": "4d8", - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 369, - "fields": { - "parent": "steam-gout", - "type": "slot_level_6", - "damage_roll": "5d8", - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 370, - "fields": { - "parent": "steam-gout", - "type": "slot_level_7", - "damage_roll": "6d8", - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 371, - "fields": { - "parent": "steam-gout", - "type": "slot_level_8", - "damage_roll": "7d8", - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 372, - "fields": { - "parent": "steam-gout", - "type": "slot_level_9", - "damage_roll": "8d8", - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 373, - "fields": { - "parent": "stone-aegis", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 374, - "fields": { - "parent": "stone-fetch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 376, - "fields": { - "parent": "stone-fetch", - "type": "slot_level_5", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 377, - "fields": { - "parent": "stone-fetch", - "type": "slot_level_6", - "damage_roll": "6d10", - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 378, - "fields": { - "parent": "stone-fetch", - "type": "slot_level_7", - "damage_roll": "7d10", - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 379, - "fields": { - "parent": "stone-fetch", - "type": "slot_level_8", - "damage_roll": "8d10", - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 380, - "fields": { - "parent": "stone-fetch", - "type": "slot_level_9", - "damage_roll": "9d10", - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 381, - "fields": { - "parent": "sudden-slue", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 382, - "fields": { - "parent": "sudden-stampede", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 383, - "fields": { - "parent": "toadstool-ring", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 384, - "fields": { - "parent": "toothless-beast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 386, - "fields": { - "parent": "toothless-beast", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 387, - "fields": { - "parent": "toothless-beast", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 388, - "fields": { - "parent": "toothless-beast", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 389, - "fields": { - "parent": "toothless-beast", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 390, - "fields": { - "parent": "toothless-beast", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 391, - "fields": { - "parent": "toothless-beast", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 392, - "fields": { - "parent": "toothless-beast", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 393, - "fields": { - "parent": "trollish-charge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 395, - "fields": { - "parent": "trollish-charge", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 396, - "fields": { - "parent": "trollish-charge", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 397, - "fields": { - "parent": "trollish-charge", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 398, - "fields": { - "parent": "trollish-charge", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 399, - "fields": { - "parent": "trollish-charge", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 400, - "fields": { - "parent": "vine-carpet", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 401, - "fields": { - "parent": "war-horn", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 402, - "fields": { - "parent": "wild-hunt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -} -] + { + "model": "api_v2.spellcastingoption", + "pk": 1, + "fields": { + "parent": "toh_ambush-chute", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 3, + "fields": { + "parent": "toh_ambush-chute", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4, + "fields": { + "parent": "toh_ambush-chute", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5, + "fields": { + "parent": "toh_ambush-chute", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6, + "fields": { + "parent": "toh_ambush-chute", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 7, + "fields": { + "parent": "toh_ambush-chute", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 8, + "fields": { + "parent": "toh_ambush-chute", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 9, + "fields": { + "parent": "toh_armored-formation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 10, + "fields": { + "parent": "toh_babble", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 11, + "fields": { + "parent": "toh_battle-mind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 12, + "fields": { + "parent": "toh_battle-mind", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 13, + "fields": { + "parent": "toh_beast-within", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 15, + "fields": { + "parent": "toh_beast-within", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 16, + "fields": { + "parent": "toh_beast-within", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 17, + "fields": { + "parent": "toh_beast-within", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 18, + "fields": { + "parent": "toh_beast-within", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 19, + "fields": { + "parent": "toh_beast-within", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 20, + "fields": { + "parent": "toh_betraying-bauble", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 21, + "fields": { + "parent": "toh_bloodlust", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 22, + "fields": { + "parent": "toh_blunted-edge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 24, + "fields": { + "parent": "toh_blunted-edge", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 25, + "fields": { + "parent": "toh_blunted-edge", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 26, + "fields": { + "parent": "toh_blunted-edge", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 27, + "fields": { + "parent": "toh_blunted-edge", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 28, + "fields": { + "parent": "toh_blunted-edge", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 29, + "fields": { + "parent": "toh_blunted-edge", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 30, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 32, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 33, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 34, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 35, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 36, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 37, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 38, + "fields": { + "parent": "toh_bound-haze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 40, + "fields": { + "parent": "toh_bound-haze", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 41, + "fields": { + "parent": "toh_bound-haze", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 42, + "fields": { + "parent": "toh_bound-haze", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 43, + "fields": { + "parent": "toh_bound-haze", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 44, + "fields": { + "parent": "toh_bound-haze", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 45, + "fields": { + "parent": "toh_bound-haze", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 46, + "fields": { + "parent": "toh_burst-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 48, + "fields": { + "parent": "toh_burst-stone", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 49, + "fields": { + "parent": "toh_burst-stone", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 50, + "fields": { + "parent": "toh_burst-stone", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 51, + "fields": { + "parent": "toh_burst-stone", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 52, + "fields": { + "parent": "toh_burst-stone", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 53, + "fields": { + "parent": "toh_burst-stone", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 54, + "fields": { + "parent": "toh_butterfly-effect", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 56, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 57, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 58, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 59, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 60, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 61, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 62, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 63, + "fields": { + "parent": "toh_calm-beasts", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 64, + "fields": { + "parent": "toh_clear-the-board", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 65, + "fields": { + "parent": "toh_conjure-construct", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 67, + "fields": { + "parent": "toh_conjure-construct", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 68, + "fields": { + "parent": "toh_conjure-construct", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 69, + "fields": { + "parent": "toh_conjure-construct", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 70, + "fields": { + "parent": "toh_conjure-spectral-allies", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 72, + "fields": { + "parent": "toh_conjure-spectral-allies", + "type": "slot_level_8", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 73, + "fields": { + "parent": "toh_conjure-spectral-allies", + "type": "slot_level_9", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 74, + "fields": { + "parent": "toh_convey-inner-peace", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 75, + "fields": { + "parent": "toh_crown-of-thorns", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 76, + "fields": { + "parent": "toh_damaging-intel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 77, + "fields": { + "parent": "toh_deadly-salvo", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 78, + "fields": { + "parent": "toh_divine-retribution", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 80, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_2", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 81, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_3", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 82, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 83, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 84, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 85, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 86, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 87, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 88, + "fields": { + "parent": "toh_dreamwine", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 89, + "fields": { + "parent": "toh_emerald-eyes", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 91, + "fields": { + "parent": "toh_emerald-eyes", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 92, + "fields": { + "parent": "toh_emerald-eyes", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 93, + "fields": { + "parent": "toh_emerald-eyes", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 94, + "fields": { + "parent": "toh_emerald-eyes", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 95, + "fields": { + "parent": "toh_emerald-eyes", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 96, + "fields": { + "parent": "toh_emerald-eyes", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 97, + "fields": { + "parent": "toh_enchanted-bloom", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 99, + "fields": { + "parent": "toh_enchanted-bloom", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "7 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 100, + "fields": { + "parent": "toh_enchanted-bloom", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "30 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 101, + "fields": { + "parent": "toh_enchanted-bloom", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "180 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 102, + "fields": { + "parent": "toh_enchanted-bloom", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 103, + "fields": { + "parent": "toh_eruption", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 104, + "fields": { + "parent": "toh_feint", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 105, + "fields": { + "parent": "toh_fey-food", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 107, + "fields": { + "parent": "toh_fey-food", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 108, + "fields": { + "parent": "toh_fey-food", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 109, + "fields": { + "parent": "toh_fey-food", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 110, + "fields": { + "parent": "toh_fey-food", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 111, + "fields": { + "parent": "toh_fey-food", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 112, + "fields": { + "parent": "toh_fey-food", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 113, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 115, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 116, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 117, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 118, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 119, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 120, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 121, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 122, + "fields": { + "parent": "toh_forced-reposition", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 124, + "fields": { + "parent": "toh_forced-reposition", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 125, + "fields": { + "parent": "toh_forced-reposition", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 126, + "fields": { + "parent": "toh_forced-reposition", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 127, + "fields": { + "parent": "toh_forced-reposition", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 128, + "fields": { + "parent": "toh_forced-reposition", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 129, + "fields": { + "parent": "toh_furious-wail", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 130, + "fields": { + "parent": "toh_fuse-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 132, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 133, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 134, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 135, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 136, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 137, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 138, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 139, + "fields": { + "parent": "toh_gale", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 140, + "fields": { + "parent": "toh_glare", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 141, + "fields": { + "parent": "toh_high-ground", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 143, + "fields": { + "parent": "toh_high-ground", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 144, + "fields": { + "parent": "toh_high-ground", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 145, + "fields": { + "parent": "toh_high-ground", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 146, + "fields": { + "parent": "toh_high-ground", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 147, + "fields": { + "parent": "toh_high-ground", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 148, + "fields": { + "parent": "toh_high-ground", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 149, + "fields": { + "parent": "toh_immolating-gibbet", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 150, + "fields": { + "parent": "toh_inexorable-summons", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 151, + "fields": { + "parent": "toh_instant-armored-vehicle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 152, + "fields": { + "parent": "toh_invested-champion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 153, + "fields": { + "parent": "toh_iron-gut", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 155, + "fields": { + "parent": "toh_iron-gut", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 156, + "fields": { + "parent": "toh_iron-gut", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 157, + "fields": { + "parent": "toh_iron-gut", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 158, + "fields": { + "parent": "toh_iron-gut", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 159, + "fields": { + "parent": "toh_iron-gut", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 160, + "fields": { + "parent": "toh_iron-gut", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 161, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 163, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "slot_level_4", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 164, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "slot_level_5", + "damage_roll": "13d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 165, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "slot_level_6", + "damage_roll": "18d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 166, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "slot_level_7", + "damage_roll": "23d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 167, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "slot_level_8", + "damage_roll": "28d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 168, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "slot_level_9", + "damage_roll": "33d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 169, + "fields": { + "parent": "toh_jarring-growl", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 170, + "fields": { + "parent": "toh_lance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 171, + "fields": { + "parent": "toh_less-fool-i", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 173, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 174, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 175, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 176, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 177, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 178, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 179, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 180, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 181, + "fields": { + "parent": "toh_life-burst", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 182, + "fields": { + "parent": "toh_lightless-torch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 184, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 185, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 186, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 187, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "9 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 188, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "11 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 189, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "13 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 190, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "15 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 191, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "17 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 192, + "fields": { + "parent": "toh_long-game", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 193, + "fields": { + "parent": "toh_magma-spray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 195, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_3", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 196, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 197, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 198, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 199, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 200, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 201, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 202, + "fields": { + "parent": "toh_mantle-of-the-brave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 203, + "fields": { + "parent": "toh_martyrs-rally", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 204, + "fields": { + "parent": "toh_mass-faerie-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 205, + "fields": { + "parent": "toh_misdirection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 206, + "fields": { + "parent": "toh_mud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 207, + "fields": { + "parent": "toh_muted-foe", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 209, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 210, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 211, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 212, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 213, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 214, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 215, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 216, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 217, + "fields": { + "parent": "toh_never-surrender", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 219, + "fields": { + "parent": "toh_never-surrender", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 220, + "fields": { + "parent": "toh_never-surrender", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 221, + "fields": { + "parent": "toh_never-surrender", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 222, + "fields": { + "parent": "toh_never-surrender", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 223, + "fields": { + "parent": "toh_never-surrender", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 224, + "fields": { + "parent": "toh_never-surrender", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 225, + "fields": { + "parent": "toh_oathbound-implement", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 226, + "fields": { + "parent": "toh_outmaneuver", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 227, + "fields": { + "parent": "toh_oversized-paws", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 229, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 230, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 231, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 232, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 233, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 234, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 235, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 236, + "fields": { + "parent": "toh_pincer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 238, + "fields": { + "parent": "toh_pincer", + "type": "slot_level_7", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 239, + "fields": { + "parent": "toh_pincer", + "type": "slot_level_8", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 240, + "fields": { + "parent": "toh_pincer", + "type": "slot_level_9", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 241, + "fields": { + "parent": "toh_pipers-lure", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 242, + "fields": { + "parent": "toh_portal-jaunt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 244, + "fields": { + "parent": "toh_portal-jaunt", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 rounds", + "range": "400 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 245, + "fields": { + "parent": "toh_portal-jaunt", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": "500 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 246, + "fields": { + "parent": "toh_portal-jaunt", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 rounds", + "range": "600 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 247, + "fields": { + "parent": "toh_portal-jaunt", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": "700 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 248, + "fields": { + "parent": "toh_portal-jaunt", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": "800 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 249, + "fields": { + "parent": "toh_portal-jaunt", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 rounds", + "range": "900 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 250, + "fields": { + "parent": "toh_portal-trap", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 252, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 253, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 254, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 255, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 256, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 257, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 258, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 259, + "fields": { + "parent": "toh_power-word-fling", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 261, + "fields": { + "parent": "toh_power-word-fling", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 262, + "fields": { + "parent": "toh_power-word-fling", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 263, + "fields": { + "parent": "toh_power-word-fling", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 264, + "fields": { + "parent": "toh_power-word-fling", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 265, + "fields": { + "parent": "toh_power-word-fling", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 266, + "fields": { + "parent": "toh_power-word-fling", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 267, + "fields": { + "parent": "toh_power-word-rend", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 269, + "fields": { + "parent": "toh_power-word-rend", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 270, + "fields": { + "parent": "toh_power-word-rend", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 271, + "fields": { + "parent": "toh_power-word-rend", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 272, + "fields": { + "parent": "toh_power-word-rend", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 273, + "fields": { + "parent": "toh_power-word-rend", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 274, + "fields": { + "parent": "toh_reapers-knell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 276, + "fields": { + "parent": "toh_reapers-knell", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 277, + "fields": { + "parent": "toh_reapers-knell", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 278, + "fields": { + "parent": "toh_reapers-knell", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 279, + "fields": { + "parent": "toh_reapers-knell", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 280, + "fields": { + "parent": "toh_reapers-knell", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 281, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 283, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "slot_level_4", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 284, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "slot_level_5", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 285, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "slot_level_6", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 286, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "slot_level_7", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 287, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "slot_level_8", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 288, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "slot_level_9", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 289, + "fields": { + "parent": "toh_repulsing-wall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 291, + "fields": { + "parent": "toh_repulsing-wall", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 292, + "fields": { + "parent": "toh_repulsing-wall", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 293, + "fields": { + "parent": "toh_repulsing-wall", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 294, + "fields": { + "parent": "toh_repulsing-wall", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 295, + "fields": { + "parent": "toh_repulsing-wall", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 296, + "fields": { + "parent": "toh_retribution", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 297, + "fields": { + "parent": "toh_rockfall-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 299, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 300, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 301, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 302, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 303, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 304, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 305, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 306, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 307, + "fields": { + "parent": "toh_sacrifice-pawn", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 308, + "fields": { + "parent": "toh_sacrificial-healing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 309, + "fields": { + "parent": "toh_safe-transposition", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 310, + "fields": { + "parent": "toh_secret-blind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 311, + "fields": { + "parent": "toh_shared-frenzy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 313, + "fields": { + "parent": "toh_shared-frenzy", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 314, + "fields": { + "parent": "toh_shared-frenzy", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 315, + "fields": { + "parent": "toh_shared-frenzy", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 316, + "fields": { + "parent": "toh_shared-frenzy", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 317, + "fields": { + "parent": "toh_shared-frenzy", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 318, + "fields": { + "parent": "toh_shared-frenzy", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 319, + "fields": { + "parent": "toh_shocking-volley", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 321, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_3", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 322, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 323, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 324, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 325, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 326, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 327, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 328, + "fields": { + "parent": "toh_sightburst", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 330, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "1 minute", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 331, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "1 minute", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 332, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 333, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 334, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 335, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 336, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 337, + "fields": { + "parent": "toh_silvershout", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 338, + "fields": { + "parent": "toh_smelting-blast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 340, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 341, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 342, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 343, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 344, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 345, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 346, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 347, + "fields": { + "parent": "toh_sneer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 348, + "fields": { + "parent": "toh_spiked-barricade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 350, + "fields": { + "parent": "toh_spiked-barricade", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 351, + "fields": { + "parent": "toh_spiked-barricade", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 352, + "fields": { + "parent": "toh_spiked-barricade", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 353, + "fields": { + "parent": "toh_spiked-barricade", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 354, + "fields": { + "parent": "toh_spiked-barricade", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 355, + "fields": { + "parent": "toh_spiked-barricade", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 356, + "fields": { + "parent": "toh_spite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 358, + "fields": { + "parent": "toh_spite", + "type": "slot_level_3", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 359, + "fields": { + "parent": "toh_spite", + "type": "slot_level_4", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 360, + "fields": { + "parent": "toh_spite", + "type": "slot_level_5", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 361, + "fields": { + "parent": "toh_spite", + "type": "slot_level_6", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 362, + "fields": { + "parent": "toh_spite", + "type": "slot_level_7", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 363, + "fields": { + "parent": "toh_spite", + "type": "slot_level_8", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 364, + "fields": { + "parent": "toh_spite", + "type": "slot_level_9", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 365, + "fields": { + "parent": "toh_steam-gout", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 367, + "fields": { + "parent": "toh_steam-gout", + "type": "slot_level_4", + "damage_roll": "3d8", + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 368, + "fields": { + "parent": "toh_steam-gout", + "type": "slot_level_5", + "damage_roll": "4d8", + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 369, + "fields": { + "parent": "toh_steam-gout", + "type": "slot_level_6", + "damage_roll": "5d8", + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 370, + "fields": { + "parent": "toh_steam-gout", + "type": "slot_level_7", + "damage_roll": "6d8", + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 371, + "fields": { + "parent": "toh_steam-gout", + "type": "slot_level_8", + "damage_roll": "7d8", + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 372, + "fields": { + "parent": "toh_steam-gout", + "type": "slot_level_9", + "damage_roll": "8d8", + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 373, + "fields": { + "parent": "toh_stone-aegis", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 374, + "fields": { + "parent": "toh_stone-fetch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 376, + "fields": { + "parent": "toh_stone-fetch", + "type": "slot_level_5", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 377, + "fields": { + "parent": "toh_stone-fetch", + "type": "slot_level_6", + "damage_roll": "6d10", + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 378, + "fields": { + "parent": "toh_stone-fetch", + "type": "slot_level_7", + "damage_roll": "7d10", + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 379, + "fields": { + "parent": "toh_stone-fetch", + "type": "slot_level_8", + "damage_roll": "8d10", + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 380, + "fields": { + "parent": "toh_stone-fetch", + "type": "slot_level_9", + "damage_roll": "9d10", + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 381, + "fields": { + "parent": "toh_sudden-slue", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 382, + "fields": { + "parent": "toh_sudden-stampede", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 383, + "fields": { + "parent": "toh_toadstool-ring", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 384, + "fields": { + "parent": "toh_toothless-beast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 386, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 387, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 388, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 389, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 390, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 391, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 392, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 393, + "fields": { + "parent": "toh_trollish-charge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 395, + "fields": { + "parent": "toh_trollish-charge", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 396, + "fields": { + "parent": "toh_trollish-charge", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 397, + "fields": { + "parent": "toh_trollish-charge", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 398, + "fields": { + "parent": "toh_trollish-charge", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 399, + "fields": { + "parent": "toh_trollish-charge", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 400, + "fields": { + "parent": "toh_vine-carpet", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 401, + "fields": { + "parent": "toh_war-horn", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 402, + "fields": { + "parent": "toh_wild-hunt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + } +] \ No newline at end of file diff --git a/data/v2/kobold-press/wz/Spell.json b/data/v2/kobold-press/wz/Spell.json index 609d1b98..b28c02e6 100644 --- a/data/v2/kobold-press/wz/Spell.json +++ b/data/v2/kobold-press/wz/Spell.json @@ -1,1351 +1,1351 @@ [ -{ - "model": "api_v2.spell", - "pk": "abrupt-hug", - "fields": { - "name": "Abrupt Hug", - "desc": "You or the creature taking the Attack action can immediately make an unarmed strike. In addition to dealing damage with the unarmed strike, the target can grapple the creature it hit with the unarmed strike.", - "document": "wz", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false + { + "model": "api_v2.spell", + "pk": "wz_abrupt-hug", + "fields": { + "name": "Abrupt Hug", + "desc": "You or the creature taking the Attack action can immediately make an unarmed strike. In addition to dealing damage with the unarmed strike, the target can grapple the creature it hit with the unarmed strike.", + "document": "wz", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_avert-evil-eye", + "fields": { + "name": "Avert Evil Eye", + "desc": "The evil eye takes many forms. Any incident of bad luck can be blamed on it, especially if a character recently displayed arrogance or selfishness. When avert evil eye is cast, the recipient has a small degree of protection against the evil eye for up to 1 hour. While the spell lasts, the target of the spell has advantage on saving throws against being blinded, charmed, cursed, and frightened. During the spell's duration, the target can also cancel disadvantage on one d20 roll the target is about to make, but doing so ends the spell's effect.", + "document": "wz", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_bardo", + "fields": { + "name": "Bardo", + "desc": "You capture some of the fading life essence of the triggering creature, drawing on the energy of the tenuous moment between life and death. You can then use this essence to immediately harm or help a different creature you can see within range. If you choose to harm, the target must make a Wisdom saving throw. The target takes psychic damage equal to 6d8 + your spellcasting ability modifier on a failed save, or half as much damage on a successful one. If you choose to help, the target regains hit points equal to 3d8 + your spellcasting ability modifier. This spell can't be triggered by the death of a construct or an undead creature, and it can't restore hit points to constructs or undead.", + "document": "wz", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_battle-chant", + "fields": { + "name": "Battle Chant", + "desc": "You bless up all allied creatures of your choice within range. Whenever a target lands a successful hit before the spell ends, the target can add 1 to the damage roll. When cast by multiple casters chanting in unison, the same increases to 2 points added to the damage roll.", + "document": "wz", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can extend the range by 10 feet for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_bombardment-of-stings", + "fields": { + "name": "Bombardment of Stings", + "desc": "Each creature in a 30-foot cone must make a Dexterity saving throw. On a failed save, a creature takes 4d6 piercing damage and is poisoned for 1 minute. On a successful save, a creature takes half as much damage and isn't poisoned. At the end of each of its turns, a poisoned target can make a Constitution saving throw. On a success, the condition ends on the target.", + "document": "wz", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "piercing" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_charming-aesthetics", + "fields": { + "name": "Charming Aesthetics", + "desc": "You affect a group of the same plants or animals within range, giving them a harmless and attractive appearance. If a creature studies one of the enchanted plants or animals, it must make a Wisdom saving throw. If it fails the saving throw, it is charmed by the plant or animal until the spell ends or until another creature other than one of its allies does anything harmful to it. While the creature is charmed and stays within sight of the enchanted plants or animals, it has disadvantage on Wisdom (Perception) checks as well as checks to notice signs of danger. If the charmed creature attempts to move out of sight of the spell's subject, it must make a second Wisdom saving throw. If it fails the saving throw, it refuses to move out of sight of the spell's subject. It can repeat this save once per minute. If it succeeds, it can move away, but it remains charmed.", + "document": "wz", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional group of plants or animals for each slot level above 4th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 day", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_child-of-light-and-darkness", + "fields": { + "name": "Child of Light and Darkness", + "desc": "Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 1-10, you take the form of a humanoid made of pure, searing light. On a roll of 11-20, you take the form of a humanoid made of bone-chilling darkness. In both forms, you have immunity to bludgeoning, piercing, and slashing damage from nonmagical attacks, and a creature that attacks you has disadvantage on the attack roll. You gain additional benefits while in each form: Light Form. You shed bright light in a 60-foot radius and dim light for an additional 60 feet, you are immune to fire damage, and you have resistance to radiant damage. Once per turn, as a bonus action, you can teleport to a space you can see within the light you shed. Darkness Form. You are immune to cold damage, and you have resistance to necrotic damage. Once per turn, as a bonus action, you can target up to three Large or smaller creatures within 30 feet of you. Each target must succeed on a Strength saving throw or be pulled or pushed (your choice) up to 20 feet straight toward or away from you.", + "document": "wz", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_commanders-pavilion", + "fields": { + "name": "Commander's Pavilion", + "desc": "Creates a command tent 30 feet by 30 feet with a peak height of 20 feet. It is filled with items a military commander might require of a headquarters tent on a campaign, such as maps of the area, a spyglass, a sandglass, materials for correspondence, references for coding and decoding messages, books on history and strategy relevant to the area, banners, spare uniforms, and badges of rank. Such minor mundane items dissipate once the spell's effect ends. Recasting the spell on subsequent days maintains the existing tent for another 24 hours.", + "document": "wz", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_devouring-darkness", + "fields": { + "name": "Devouring Darkness", + "desc": "Terrifying and nightmarish monsters exist within the unknown void of the in-between. Choose up to six points you can see within range. Voidlike, magical darkness spreads from each point to fill a 10-footradius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and no light, magical or nonmagical, can illuminate it.\n Each creature inside a sphere when this spell is cast must make a Dexterity saving throw. On a failed save, the creature takes 6d10 piercing damage and 5d6 psychic damage and is restrained until it breaks free as unseen entities bite and tear at it from the Void. Once a successful save, the creature takes half as much damage and isn't restrained. A restrained creature can use its action to make a Strength check against your spell save DC. If it succeeds, it is no longer restrained.\n When a creature enters a sphere for the first time on a turn or starts its turn in a sphere, that creature must make an Intelligence saving throw. The creature takes 5d6 psychic damage on a failed save, or half as much damage on a successful one.\n Once created, the spheres can't be moved. A creature in overlapping spheres doesn't suffer additional effects for being in more than one sphere at a time.", + "document": "wz", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 6, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d10", + "damage_types": [ + "piercing" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "wz_door-of-the-far-traveler", + "fields": { + "name": "Door of the Far Traveler", + "desc": "You conjure a door to the destination of your choice that lasts for the duration or until dispelled. You sketch the outline of the door with chalk on any hard surface (a wall, a cliffside, the deck of a ship, etc.) and scribe sigils of power around its outline. The doorway must be at least 1 foot wide by 2 feet tall and can be no larger than 5 feet wide by 10 feet tall. Once the door is drawn, place the knob appropriately; it attaches magically to the surface and your drawing becomes a real door to the spell's destination. The doorway remains functional for the spell's duration. During that time, anyone can open or close the door and pass through it in either direction.\n The destination can be on any plane of existence. It must be familiar to you, and your level of familiarity with it determines the accuracy of the spell (determined by the GM). If it's a place you've visited, you can expect 100 percent accuracy. If it's been described to you by someone who was there, you might arrive in the wrong room or even the wrong structure, depending on how detailed their description was. If you've only heard about the destination third-hand, you may end up in a similar structure that's in a very different locale.\n *Door of the far traveler* doesn't create a doorway at the destination. It connects to an existing, working door. It can't, for example, take you to an open field or a forest with no structures (unless someone built a doorframe with a door in that spot for this specific purpose!). While the spell is in effect, the pre-existing doorway connects only to the area you occupied while casting the spell. If you connected to an existing doorway between a home's parlor and library, for example, and your door leads into the library, then people can still walk through that doorway from the parlor into the library normally. Anyone trying to go the other direction, however, arrives wherever you came from instead of in the parlor.\n Before casting the spell, you must spend one hour etching magical symbols onto the doorknob that will serve as the spell's material component to attune it to your desired destination. Once prepared, the knob remains attuned to that destination until it's used or you spend another hour attuning it to a different location.\n *The door of the far traveler* is dispelled if you remove the knob from the door. You can do this as a bonus action from either side of the door, provided it's shut. If the spell's duration expires naturally, the knob falls to the ground on whichever side of the door you're on. Once the spell ends, the knob loses its attunement to any location and another hour must be spent attuning it before it can be used again.", + "document": "wz", + "level": 8, + "school": "conjuration", + "higher_level": "If you cast this spell using a 9thlevel slot, the duration increases to 12 hours.", + "target_type": "area", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "6 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_eternal-echo", + "fields": { + "name": "Eternal Echo", + "desc": "You gain a portentous voice of compelling power, commanding all undead within 60 feet that fail a Wisdom saving throw. This overrides any prior loyalty to spellcasters such as necromancers or evil priests, and it can nullify the effect of a Turn Undead result from a cleric.", + "document": "wz", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "concentration", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_ethereal-stairs", + "fields": { + "name": "Ethereal Stairs", + "desc": "You create a staircase out of the nothingness of the air. A shimmering staircase 10 feet wide appears and remains for the duration. The staircase ascends at a 45-degree angle to a point as much as 60 feet above the ground. The staircase consists only of steps with no apparent support, unless you choose to have it resemble a stone or wooden structure. Even then, its magical nature is obvious, as it has no color and is translucent, and only the steps have solidity; the rest of it is no more solid than air. The staircase can support up to 10 tons of weight. It can be straight, spiral, or switchback. Its bottom must connect to solid ground, but its top need not connect to anything.", + "document": "wz", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the staircase extends an additional 20 feet for each slot level above 5th.", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "wz_exchanged-knowledge", + "fields": { + "name": "Exchanged Knowledge", + "desc": "When you cast this spell, you open a conduit to the Castle Library, granting access to difficult-to-obtain information. For the spell's duration, you double your proficiency bonus whenever you make an Intelligence check to recall information about any subject. Additionally, you can gain advantage on an Intelligence check to recall information. To do so, you must either sacrifice another lore-filled book or succeed on a Charisma saving throw. On a failed save, the spell ends, and you have disadvantage on all Intelligence checks to recall information for 1 week. A wish spell ends this effect.", + "document": "wz", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_hedgehog-dozen", + "fields": { + "name": "Hedgehog Dozen", + "desc": "Eleven illusory duplicates of the touched creature appear in its space. A creature affected by hedgehog dozen seems to have a dozen arms, shields, and weapons-a swarm of partially overlapping, identical creatures. Until the spell ends, these duplicates move with the target and mimic its actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates. While surrounded by duplicates, a creature gains advantage against any opponent because of the bewildering number of weapons and movements. Each time a creature targets you with an attack during the spell's duration, roll a d8 to determine whether the attack instead targets one of your duplicates. On a roll of 1, it strikes you. On any other roll it removes one of your duplicates; when you have only five duplicates remaining, the spell ends. A creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false as with truesight.", + "document": "wz", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_hypnagogia", + "fields": { + "name": "Hypnagogia", + "desc": "You alter the mental state of one creature you can see within range. The target must make an Intelligence saving throw. If it fails, choose one of the following effects. At the end of each of its turns, the target can make another Intelligence saving throw. On a success, the spell ends on the target. A creature with an Intelligence score of 4 or less isn't affected by this spell.\n ***Sleep Paralysis.*** Overwhelming heaviness and fatigue overcome the creature, slowing it. The creature's speed is halved, and it has disadvantage on weapon attacks.\n ***Phantasmata.*** The creature imagines vivid and terrifying hallucinations centered on a point of your choice within range. For the duration, the creature is frightened, and it must take the Dash action and move away from the point you chose by the safest available route on each of its turns, unless there is nowhere to move.\n ***False Awakening.*** The creature enters a trancelike state of consciousness in which it's not fully aware of its surroundings. It can't take reactions, and it must roll a d4 at the beginning of its turn to determine its behavior. Each time the target takes damage, it makes a new Intelligence saving throw. On a success, the spell ends on the target.\n\n| d4 | Behavior | \n|-----|-----------| \n| 1 | The creature takes the Dash action and uses all of its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. | \n| 2 | The creature uses its action to pantomime preparing for its day: brushing teeth and hair, bathing, eating, or similar activity. | \n| 3 | The creature moves up to its speed toward a randomly determined creature and uses its action to make one melee attack against that creature. If there is no creature within range, the creature does nothing this turn. | \n| 4 | The creature does nothing this turn. |", + "document": "wz", + "level": 4, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "wz_hypnic-jerk", + "fields": { + "name": "Hypnic Jerk", + "desc": "Strange things happen in the mind and body in that moment between waking and sleeping. One of the most common is being startled awake by a sudden feeling of falling. With a snap of your fingers, you trigger that sensation in a creature you can see within range. The target must succeed on a Wisdom saving throw or take 1d6 force damage. If the target fails the saving throw by 5 or more, it drops one object it is holding. A dropped object lands in the creature's space.", + "document": "wz", + "level": 0, + "school": "illusion", + "higher_level": "The spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_inconspicuous-facade", + "fields": { + "name": "Inconspicuous Facade", + "desc": "By means of this spell, you make a target building seem much less important or ostentatious than it is. You can give the target an unremarkable appearance or one that blends in with nearby buildings. By its nature, this spell does not allow you to specify features that would make the building stand out. You also cannot make a building look more opulent to match surrounding buildings. You can make the building appear smaller or larger that its actual size to better fit into its environs. However, these size changes are noticeable with cursory physical inspection as an object will pass through extra illusory space or bump into a seemingly smaller section of the building. A creature can use its action to inspect the building and make an Intelligence (Investigation) check against your spell save DC. If it succeeds, it becomes aware the building has been disguised. In addition to you dispelling inconspicuous facade, the spell ends if the target building is destroyed.", + "document": "wz", + "level": 4, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_march-of-the-dead", + "fields": { + "name": "March of the Dead", + "desc": "This spell animates the recently dead to remove them from a battlefield. Choose one corpse of a Medium or Small humanoid per level of the caster (within range). Your spell imbues the targets with an animating spirit, raising them as construct creatures similar in appearance to flesh golems, though with the strength and abilities of zombies. Dwarves use this to return the bodies of the fallen to clan tombs and to deny the corpses the foul attention of ghouls, necromancers, and similar foes. On each of your turns, you can use a bonus action to mentally command all the creatures you made with this spell if the creatures are within 60 feet of you. You decide what action the creatures will take and where they will move during the next day; you cannot command them to guard. If you issue no commands, the creatures only defend themselves against hostile creatures. Once given an order and direction of march, the creatures continue to follow it until they arrive at the destination you named or until 24 hours have elapsed when the spell ends and the corpses fall lifeless once more. To tell creatures to move for another 24 hours, you must cast this spell on the creatures again before the current 24-hour period ends. This use of the spell reasserts your control over up to 50 creatures you have animated with this spell rather than animating a new one.", + "document": "wz", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional construct creatures for each slot level above 3rd (two creatures/level at 4th, three creatures/level at 5th). Each of the creatures must come from a different corpse.", + "target_type": "creature", + "range": "50 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_mind-maze", + "fields": { + "name": "Mind Maze", + "desc": "Choose a creature you can see within range. It must succeed on an Intelligence saving throw or be mentally trapped in an imagined maze of mirrors for the duration. While trapped in this way, the creature is incapacitated, but it imagines itself alone and wandering through the maze. Externally, it appears dazed as it turns in place and reaches out at nonexistent barriers. Each time the target takes damage, it makes another Intelligence saving throw. On a success, the spell ends.", + "document": "wz", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "up to 1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_mirror-realm", + "fields": { + "name": "Mirror Realm", + "desc": "You transform a mirror into a magical doorway to an extradimensional realm. You and any creatures you designate when you cast the spell can move through the doorway into the realm beyond. For the spell's duration, the mirror remains anchored in the plane of origin, where it can't be broken or otherwise damaged by any mundane means. No creatures other than those you designate can pass through the mirror or see into the mirror realm.\n The realm within the mirror is an exact reflection of the location you left. The temperature is comfortable, and any environmental threats (lava, poisonous gas, or similar) are inert, harmless facsimiles of the real thing. Likewise, magic items reflected in the mirror realm have no magical properties, but those carried into it work normally. Food, drink, and other beneficial items within the mirror realm (reflections of originals in the real world) function as normal, real items; food can be eaten, wine can be drunk, and so on. Only items that were reflected in the mirror at the moment the spell was cast exist inside the mirror realm. Items placed in front of the mirror afterward don't appear in the mirror realm, and creatures never do unless they are allowed in by you. Items found in the mirror realm dissolve into nothingness when they leave it, but the effects of food and drink remain.\n Sound passes through the mirror in both directions. Creatures in the mirror realm can see what's happening in the world, but creatures in the world see only what the mirror reflects. Objects can cross the mirror boundary only while worn or carried by a creature, and spells can't cross it at all. You can't stand in the mirror realm and shoot arrows or cast spells at targets in the world or vice versa.\n The boundaries of the mirror realm are the same as the room or location in the plane of origin, but the mirror realm can't exceed 50,000 square feet (for simplicity, imagine 50 cubes, each cube being 10 feet on a side). If the original space is larger than this, such as an open field or a forest, the boundary is demarcated with an impenetrable, gray fog.\n Any creature still inside the mirror realm when the spell ends is expelled through the mirror into the nearest empty space.\n If this spell is cast in the same spot every day for a year, it becomes permanent. Once permanent, the mirror can't be moved or destroyed through mundane means. You can allow new creatures into the mirror realm (and disallow previous creatures) by recasting the spell within range of the permanent mirror. Casting the spell elsewhere doesn't affect the creation or the existence of a permanent mirror realm; a determined spellcaster could have multiple permanent mirror realms to use as storage spaces, hiding spots, and spy vantages.", + "document": "wz", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": true, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_obfuscate-object", + "fields": { + "name": "Obfuscate Object", + "desc": "While you are in dim light, you cause an object in range to become unobtrusively obscured from the sight of other creatures. For the duration, you have advantage on Dexterity (Sleight of Hand) checks to hide the object. The object can't be larger than a shortsword, and it must be on your person, held in your hand, or otherwise unattended.", + "document": "wz", + "level": 0, + "school": "illusion", + "higher_level": "You can affect two objects when you reach 5th level, three objects at 11th level, and four objects at 17th level.", + "target_type": "object", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_order-of-revenge", + "fields": { + "name": "Order of Revenge", + "desc": "You touch a weapon or a bundle of 30 ammunition, imbuing them with spell energy. Any creature damaged by a touched, affected weapon leaves an invisibly glowing trail of their path until the spell expires. The caster may see this trail by casting revenge's eye or see invisible. Any other caster may see the trail by casting see invisible. Casting dispel magic on an affected creature causes that creature to stop generating a trail, and the trail fades over the next hour.", + "document": "wz", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast the spell using a slot of 4th level or higher, you can target one additional weapon or bundle of ammunition for each slot level above fourth.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour/caster level", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_pierce-the-veil", + "fields": { + "name": "Pierce the Veil", + "desc": "By sketching a shimmering, ethereal doorway in the air and knocking three times, you call forth an otherworldly entity to provide insight or advice. The door swings open and the entity, wreathed in shadow or otherwise obscured, appears at the threshold. It answers up to five questions truthfully and to the best of its ability, but its answers aren't necessarily clear or direct. The entity can't pass through the doorway or interact with anything on your side of the doorway other than by speaking its responses.\n Likewise, creatures on your side of the doorway can't pass through it to the other side or interact with the other side in any way other than asking questions. In addition, the spell allows you and the creature to understand each other's words even if you have no language in common, the same as if you were both under the effects of the comprehend languages spell.\n When you cast this spell, you must request a specific, named entity, a specific type of creature, or a creature from a specific plane of existence. The target creature can't be native to the plane you are on when you cast the spell. After making this request, make an ability check using your spellcasting ability. The DC is 12 if you request a creature from a specific plane; 16 if you request a specific type of creature; or 20 if you request a specific entity. (The GM can choose to make this check for you secretly.) If the spellcasting check fails, the creature that responds to your summons is any entity of the GM's choosing, from any plane. No matter what, the creature is always of a type with an Intelligence of at least 8 and the ability to speak and to hear.", + "document": "wz", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_pratfall", + "fields": { + "name": "Pratfall", + "desc": "You cause a small bit of bad luck to befall a creature, making it look humorously foolish. You create one of the following effects within range: A small, oily puddle appears under the feet of your target, causing it to lose balance. The target must succeed on a Dexterity saving throw or be unable use a bonus action on its next turn as it regains its footing. Tiny particles blow in your target's face, causing it to sneeze. The target must succeed on a Constitution saving throw or have disadvantage on its first attack roll on its next turn. Strobing lights flash briefly before your target's eyes, causing difficulties with its vision. The target must succeed on a Constitution saving throw or its passive Perception is halved until the end of its next turn. The target feels the sensation of a quick, mild clap against its ears, briefly disorienting it. The target must succeed on a Constitution saving throw to maintain its concentration. An invisible force sharply tugs on the target's trousers, causing the clothing to slip down. The target must make a Dexterity saving throw. On a failed save, the target has disadvantage on its next attack roll with a two-handed weapon or loses its shield bonus to its Armor Class until the end of its next turn as it uses one hand to gather its slipping clothing. Only one of these effects can be used on a single creature at a time.", + "document": "wz", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_putrescent-faerie-circle", + "fields": { + "name": "Putrescent Faerie Circle", + "desc": "You create a 20-foot-diameter circle of loosely-packed toadstools that spew sickly white spores and ooze a tarry substance. At the start of each of your turns, each creature within the circle must make a Constitution saving throw. A creature takes 4d8 necrotic damage on a failed save, or half as much damage on a successful one. If a creature attempts to pass through the ring of toadstools, the toadstools release a cloud of spores, and the creature must make a Constitution saving throw. On a failure, the creature takes 8d8 poison damage and is poisoned for 1 minute. On a success, the creature takes half as much damage and isn't poisoned. While a creature is poisoned, it is paralyzed. It can attempt a new Constitution saving throw at the end of each of its turns to remove the paralyzed condition (but not the poisoned condition).", + "document": "wz", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_reassemble", + "fields": { + "name": "Reassemble", + "desc": "You touch an undead creature (dust and bones suffice) destroyed not more than 10 hours ago; the creature is surrounded by purple fire for 1 round and is returned to life with full hit points. This spell has no effect on any creatures except undead, and it cannot restore a lich whose phylactery has been destroyed, a vampire destroyed by sunlight, any undead whose remains are destroyed by fire, acid, or holy water, or any remains affected by a gentle repose spell. This spell doesn't remove magical effects. If they aren't removed prior to casting, they return when the undead creature comes back to life. This spell closes all mortal wounds but doesn't restore missing body parts. If the creature doesn't have body parts or organs necessary for survival, the spell fails. Sudden reassembly is an ordeal involving enormous expenditure of necrotic energy; ley line casters within 5 miles are aware that some great shift in life forces has occurred and a sense of its direction. The target takes a -4 penalty to all attacks, saves, and ability checks. Every time it finishes a long rest, the penalty is reduced by 1 until it disappears.", + "document": "wz", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_reciprocating-portal", + "fields": { + "name": "Reciprocating Portal", + "desc": "With a gesture and a muttered word, you cause an inky black, circular portal to open on the ground beneath one or more creatures. You can create one 15-foot-diameter portal, two 10-foot-diameter portals, or six 5-foot-diameter portals. A creature that's standing where you create a portal must make a Dexterity saving throw. On a failed save, the creature falls through the portal, disappears into a demiplane where it is stunned as it falls endlessly, and the portal closes.\n At the start of your next turn, the creatures that failed their saving throws fall through matching portals directly above their previous locations. A falling creature lands prone in the space it once occupied or the nearest unoccupied space and takes falling damage as if it fell 60 feet, regardless of the distance between the exit portal and the ground. Flying and levitating creatures can't be affected by this spell.", + "document": "wz", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_remove-insulation", + "fields": { + "name": "Remove Insulation", + "desc": "You target a creature within range, and that creature must succeed on a Fortitude saving throw or become less resistant to lightning damage. A creature with immunity to lightning damage has advantage on this saving throw. On a failure, a creature with immunity to lightning damage instead has resistance to lightning damage for the spell's duration, and a creature with resistance to lightning damage loses its resistance for the duration. A creature without resistance to lightning damage that fails its saving throw takes double damage from lightning for the spell's duration. Remove curse or similar magic ends this spell.", + "document": "wz", + "level": 4, + "school": "necromancy", + "higher_level": "If you cast this spell using a spell slot of 6th level or higher, the duration is 24 hours. If you use a spell slot of 8th level or higher, a creature with immunity to lightning damage no longer has advantage on its saving throw. If you use a spell slot of 9th level or higher, the spell lasts until it is dispelled.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_revenges-eye", + "fields": { + "name": "Revenge's Eye", + "desc": "You touch a creature's visual organs and grant them the ability to see the trail left by creatures damaged by a weapon you cast invisible creatures; it only reveals trails left by those affected by order of revenge also cast by the spellcaster.", + "document": "wz", + "level": 2, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target +1 creature for each slot level above second.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_rise-of-the-green", + "fields": { + "name": "Rise of the Green", + "desc": "The spell gives life to existing plants in range. If there are no plants in range, the spell creates undergrowth and trees that persist for the duration. One of the trees becomes a treant friendly to you and your companions. Roll initiative for the treant, which has its own turn. It obeys any verbal commands that you issue to it. If you don't issue it any commands, it defends itself from hostile creatures but otherwise takes no actions. The animated undergrowth creates difficult terrain for your enemies. Additionally, at the beginning of each of your turns, all creatures that are on the ground in range must succeed on a Strength saving throw or become restrained until the spell ends. A restrained creature can use an action to make a Strength (Athletics) check against your spell save DC, ending the effect on itself on a success. If a creature is restrained by plants at the beginning of your turn, it takes 1d6 bludgeoning damage. Finally, the trees swing at each enemy in range, requiring each creature to make a Dexterity saving throw. A creature takes 6d6 bludgeoning damage on a failed save or half as much damage on a successful one. You can use a bonus action to recenter the spell on yourself. This does not grow additional trees in areas that previously had none.", + "document": "wz", + "level": 8, + "school": "evocation", + "higher_level": "When you cast this spell using a 9th-level slot, an additional tree becomes a treant, the undergrowth deals an additional 1d6 bludgeoning damage, and the trees inflict an additional 2d6 bludgeoning damage.", + "target_type": "creature", + "range": "180 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_rive", + "fields": { + "name": "Rive", + "desc": "You pull on the filaments of transition and possibility to tear at your enemies. Choose a creature you can see within range and make a ranged spell attack. On a hit, the target takes 5d8 cold damage as strands of icy nothingness whip from your outstretched hand to envelop it. If the target isn't native to the plane you're on, it takes an extra 3d6 psychic damage and must succeed on a Constitution saving throw or be stunned until the end of its next turn.", + "document": "wz", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "5d8", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_shadow-adaptation", + "fields": { + "name": "Shadow Adaptation", + "desc": "Your flesh and clothing pale and become faded as your body takes on a tiny fragment of the Shadow Realm. For the duration of this spell, you are immune to shadow corruption and have resistance to necrotic damage. In addition, you have advantage on saving throws against effects that reduce your Strength score or hit point maximum, such as a shadow's Strength Drain or the harm spell.", + "document": "wz", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_skull-road", + "fields": { + "name": "Skull Road", + "desc": "You conjure a portal linking an unoccupied space you can see within range to an imprecise location on the plane of Evermaw. The portal is a circular opening, which you can make 5-20 feet in diameter. You can orient the portal in any direction you choose. The portal lasts for the duration. If your casting is at 5th level, this opens a pathway to the River of Tears, to the Vitreous Mire, or to the Plains of Bone-travel to a settlement can take up to 7 days (1d6+1). If cast at 7th level, the skull road spell opens a portal to a small settlement of gnolls, ghouls, or shadows on the plane near the Eternal Palace of Mot or a similar settlement. Undead casters can use this spell in the reverse direction, opening a portal from Evermaw to the mortal world, though with similar restrictions. At 5th level, the portal opens in a dark forest, cavern, or ruins far from habitation. At 7th level, the skull road leads directly to a tomb, cemetery, or mass grave near a humanoid settlement of some kind.", + "document": "wz", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_storm-of-axes", + "fields": { + "name": "Storm of Axes", + "desc": "Deep Magic: battle You conjure up dozens of axes and direct them in a pattern in chopping, whirling mayhem. The blades fill eight 5-foot squares in a line 40 feet long or in a double-strength line 20 feet long and 10 deep. The axes cause 6d8 slashing damage to creatures in the area at the moment the spell is cast or half damage with a successful Dexterity saving throw. By maintaining concentration, you can move the swarm of axes up to 20 feet per round in any direction you wish. If the storm of axes moves into spaces containing creatures, they immediately must make another Dexterity saving throw or suffer damage again.", + "document": "wz", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "concentration + 1 round", + "shape_type": "line", + "shape_magnitude": 5, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_subliminal-aversion", + "fields": { + "name": "Subliminal Aversion", + "desc": "You ward a creature within range against attacks by making the choice to hit them painful. When the warded creature is hit with a melee attack from within 5 feet of it, the attacker takes 1d4 psychic damage.", + "document": "wz", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d4", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_summon-clockwork-beast", + "fields": { + "name": "Summon Clockwork Beast", + "desc": "Deep Magic: clockwork Once per day, you can cast this ritual to summon a Tiny clockwork beast doesn't require air, food, drink, or sleep. When its hit points are reduced to 0, it crumbles into a heap of gears and springs.", + "document": "wz", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "10 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_suppress-regeneration", + "fields": { + "name": "Suppress Regeneration", + "desc": "You temporarily remove the ability to regenerate from a creature you can see within range. The target must make a Constitution saving throw. On a failed save, the target can't regain hit points from the Regeneration trait or similar spell or trait for the duration. The target can receive magical healing or regain hit points from other traits, spells, or actions, as normal. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends on the target.", + "document": "wz", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "wz_threshold-slip", + "fields": { + "name": "Threshold Slip", + "desc": "The threshold of a doorway, the sill of a window, the junction where the floor meets the wall, the intersection of two walls—these are all points of travel for you. When you cast this spell, you can step into the junction of two surfaces, slip through the boundary of the Material Plane, and reappear in an unoccupied space with another junction you can see within 60 feet.\n You can take one willing creature of your size or smaller that you're touching with you. The target junction must have unoccupied spaces for both of you to enter when you reappear or the spell fails.", + "document": "wz", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_toxic-pollen", + "fields": { + "name": "Toxic Pollen", + "desc": "Upon casting this spell, one type of plant within range gains the ability to puff a cloud of pollen based on conditions you supply during casting. If the conditions are met, an affected plant sprays a pollen cloud in a 10-foot-radius sphere centered on it. Creatures in the area must succeed on a Constitution saving throw or become poisoned for 1 minute. At the end of a poisoned creature's turn, it can make a Constitution saving throw. On a success, it is no longer poisoned. A plant can only release this pollen once within the duration.", + "document": "wz", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 year", + "shape_type": "sphere", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_vagrants-nondescript-cloak", + "fields": { + "name": "Vagrant's Nondescript Cloak", + "desc": "You touch a creature. The creature is warded against the effects of locate creature, the caster may determine if the affected creature is within 1,000 feet but cannot determine the direction to the target of vagrant's nondescript cloak. If the creature is already affected by one of the warded spells, then both the effect and vagrant's nondescript cloak end immediately.", + "document": "wz", + "level": 2, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of third level or higher, you can target +1 creature for each slot level above second.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_vengeful-panopy-of-the-ley-line-ignited", + "fields": { + "name": "Vengeful Panopy of the Ley Line Ignited", + "desc": "Deep Magic: ley line While bound to a ley line, you draw directly from its power, becoming cloaked in a magical heliotropic fire that sheds dim light in a 10-foot radius. Additionally, each round, including the round it is cast, you may make a ranged spell attack as an action. On a hit, the target takes 6d6 force damage. Every 3 minutes the effect is active, your bond with the ley line is reduced by one step; a bond to a Titanic ley line becomes effectively a Strong, then a Weak, and after 10 minutes, the bond is broken. The strength of the bond is only restored after a long rest; if the bond was broken, it can only be restored at the next weakest level for a week. A bond broken from a Weak ley line cannot be restored for two weeks. Some believe this spell damages ley lines, and there is some evidence to support this claim. Additionally, whenever a creature within 5 feet hits you with a melee attack, the cloak erupts with a heliotropic flare. The attacker takes 3d6 force damage.", + "document": "wz", + "level": 6, + "school": "evocation", + "higher_level": "When casting this spell using a spell slot of 6th level, the damage from all effects of the spell increase by 1d6 for each slot level above 6th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "6d6", + "damage_types": [ + "force" + ], + "duration": "10 minutes", + "shape_type": "line", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_who-goes-there", + "fields": { + "name": "Who Goes There?", + "desc": "You sift the surrounding air for sound wave remnants of recent conversations to discern passwords or other important information gleaned from a conversation, such as by guards on a picket line. The spell creates a cloud of words in the caster's mind, assigning relevance to them. Selecting the correct word or phrase is not foolproof, but you can make an educated guess. You make a Wisdom (Perception) check against the target person's Wisdom score (DC 10, if not specified) to successfully pick the key word or phrase.", + "document": "wz", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "wz_zymurgic-aura", + "fields": { + "name": "Zymurgic Aura", + "desc": "A wave of putrefaction surges from you, targeting creatures of your choice within a 30-foot radius around you, speeding the rate of decay in those it touches. The target must make a Constitution saving throw. It takes 10d6 necrotic damage on a failed save or half as much on a successful save. Its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature takes a long rest.", + "document": "wz", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } } -}, -{ - "model": "api_v2.spell", - "pk": "avert-evil-eye", - "fields": { - "name": "Avert Evil Eye", - "desc": "The evil eye takes many forms. Any incident of bad luck can be blamed on it, especially if a character recently displayed arrogance or selfishness. When avert evil eye is cast, the recipient has a small degree of protection against the evil eye for up to 1 hour. While the spell lasts, the target of the spell has advantage on saving throws against being blinded, charmed, cursed, and frightened. During the spell's duration, the target can also cancel disadvantage on one d20 roll the target is about to make, but doing so ends the spell's effect.", - "document": "wz", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bardo", - "fields": { - "name": "Bardo", - "desc": "You capture some of the fading life essence of the triggering creature, drawing on the energy of the tenuous moment between life and death. You can then use this essence to immediately harm or help a different creature you can see within range. If you choose to harm, the target must make a Wisdom saving throw. The target takes psychic damage equal to 6d8 + your spellcasting ability modifier on a failed save, or half as much damage on a successful one. If you choose to help, the target regains hit points equal to 3d8 + your spellcasting ability modifier. This spell can't be triggered by the death of a construct or an undead creature, and it can't restore hit points to constructs or undead.", - "document": "wz", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "battle-chant", - "fields": { - "name": "Battle Chant", - "desc": "You bless up all allied creatures of your choice within range. Whenever a target lands a successful hit before the spell ends, the target can add 1 to the damage roll. When cast by multiple casters chanting in unison, the same increases to 2 points added to the damage roll.", - "document": "wz", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can extend the range by 10 feet for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bombardment-of-stings", - "fields": { - "name": "Bombardment of Stings", - "desc": "Each creature in a 30-foot cone must make a Dexterity saving throw. On a failed save, a creature takes 4d6 piercing damage and is poisoned for 1 minute. On a successful save, a creature takes half as much damage and isn't poisoned. At the end of each of its turns, a poisoned target can make a Constitution saving throw. On a success, the condition ends on the target.", - "document": "wz", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "piercing" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "charming-aesthetics", - "fields": { - "name": "Charming Aesthetics", - "desc": "You affect a group of the same plants or animals within range, giving them a harmless and attractive appearance. If a creature studies one of the enchanted plants or animals, it must make a Wisdom saving throw. If it fails the saving throw, it is charmed by the plant or animal until the spell ends or until another creature other than one of its allies does anything harmful to it. While the creature is charmed and stays within sight of the enchanted plants or animals, it has disadvantage on Wisdom (Perception) checks as well as checks to notice signs of danger. If the charmed creature attempts to move out of sight of the spell's subject, it must make a second Wisdom saving throw. If it fails the saving throw, it refuses to move out of sight of the spell's subject. It can repeat this save once per minute. If it succeeds, it can move away, but it remains charmed.", - "document": "wz", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional group of plants or animals for each slot level above 4th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 day", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "child-of-light-and-darkness", - "fields": { - "name": "Child of Light and Darkness", - "desc": "Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 1-10, you take the form of a humanoid made of pure, searing light. On a roll of 11-20, you take the form of a humanoid made of bone-chilling darkness. In both forms, you have immunity to bludgeoning, piercing, and slashing damage from nonmagical attacks, and a creature that attacks you has disadvantage on the attack roll. You gain additional benefits while in each form: Light Form. You shed bright light in a 60-foot radius and dim light for an additional 60 feet, you are immune to fire damage, and you have resistance to radiant damage. Once per turn, as a bonus action, you can teleport to a space you can see within the light you shed. Darkness Form. You are immune to cold damage, and you have resistance to necrotic damage. Once per turn, as a bonus action, you can target up to three Large or smaller creatures within 30 feet of you. Each target must succeed on a Strength saving throw or be pulled or pushed (your choice) up to 20 feet straight toward or away from you.", - "document": "wz", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "commanders-pavilion", - "fields": { - "name": "Commander's Pavilion", - "desc": "Creates a command tent 30 feet by 30 feet with a peak height of 20 feet. It is filled with items a military commander might require of a headquarters tent on a campaign, such as maps of the area, a spyglass, a sandglass, materials for correspondence, references for coding and decoding messages, books on history and strategy relevant to the area, banners, spare uniforms, and badges of rank. Such minor mundane items dissipate once the spell's effect ends. Recasting the spell on subsequent days maintains the existing tent for another 24 hours.", - "document": "wz", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "devouring-darkness", - "fields": { - "name": "Devouring Darkness", - "desc": "Terrifying and nightmarish monsters exist within the unknown void of the in-between. Choose up to six points you can see within range. Voidlike, magical darkness spreads from each point to fill a 10-footradius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and no light, magical or nonmagical, can illuminate it.\n Each creature inside a sphere when this spell is cast must make a Dexterity saving throw. On a failed save, the creature takes 6d10 piercing damage and 5d6 psychic damage and is restrained until it breaks free as unseen entities bite and tear at it from the Void. Once a successful save, the creature takes half as much damage and isn't restrained. A restrained creature can use its action to make a Strength check against your spell save DC. If it succeeds, it is no longer restrained.\n When a creature enters a sphere for the first time on a turn or starts its turn in a sphere, that creature must make an Intelligence saving throw. The creature takes 5d6 psychic damage on a failed save, or half as much damage on a successful one.\n Once created, the spheres can't be moved. A creature in overlapping spheres doesn't suffer additional effects for being in more than one sphere at a time.", - "document": "wz", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 6, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d10", - "damage_types": [ - "piercing" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "door-of-the-far-traveler", - "fields": { - "name": "Door of the Far Traveler", - "desc": "You conjure a door to the destination of your choice that lasts for the duration or until dispelled. You sketch the outline of the door with chalk on any hard surface (a wall, a cliffside, the deck of a ship, etc.) and scribe sigils of power around its outline. The doorway must be at least 1 foot wide by 2 feet tall and can be no larger than 5 feet wide by 10 feet tall. Once the door is drawn, place the knob appropriately; it attaches magically to the surface and your drawing becomes a real door to the spell's destination. The doorway remains functional for the spell's duration. During that time, anyone can open or close the door and pass through it in either direction.\n The destination can be on any plane of existence. It must be familiar to you, and your level of familiarity with it determines the accuracy of the spell (determined by the GM). If it's a place you've visited, you can expect 100 percent accuracy. If it's been described to you by someone who was there, you might arrive in the wrong room or even the wrong structure, depending on how detailed their description was. If you've only heard about the destination third-hand, you may end up in a similar structure that's in a very different locale.\n *Door of the far traveler* doesn't create a doorway at the destination. It connects to an existing, working door. It can't, for example, take you to an open field or a forest with no structures (unless someone built a doorframe with a door in that spot for this specific purpose!). While the spell is in effect, the pre-existing doorway connects only to the area you occupied while casting the spell. If you connected to an existing doorway between a home's parlor and library, for example, and your door leads into the library, then people can still walk through that doorway from the parlor into the library normally. Anyone trying to go the other direction, however, arrives wherever you came from instead of in the parlor.\n Before casting the spell, you must spend one hour etching magical symbols onto the doorknob that will serve as the spell's material component to attune it to your desired destination. Once prepared, the knob remains attuned to that destination until it's used or you spend another hour attuning it to a different location.\n *The door of the far traveler* is dispelled if you remove the knob from the door. You can do this as a bonus action from either side of the door, provided it's shut. If the spell's duration expires naturally, the knob falls to the ground on whichever side of the door you're on. Once the spell ends, the knob loses its attunement to any location and another hour must be spent attuning it before it can be used again.", - "document": "wz", - "level": 8, - "school": "conjuration", - "higher_level": "If you cast this spell using a 9thlevel slot, the duration increases to 12 hours.", - "target_type": "area", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "6 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "eternal-echo", - "fields": { - "name": "Eternal Echo", - "desc": "You gain a portentous voice of compelling power, commanding all undead within 60 feet that fail a Wisdom saving throw. This overrides any prior loyalty to spellcasters such as necromancers or evil priests, and it can nullify the effect of a Turn Undead result from a cleric.", - "document": "wz", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "concentration", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ethereal-stairs", - "fields": { - "name": "Ethereal Stairs", - "desc": "You create a staircase out of the nothingness of the air. A shimmering staircase 10 feet wide appears and remains for the duration. The staircase ascends at a 45-degree angle to a point as much as 60 feet above the ground. The staircase consists only of steps with no apparent support, unless you choose to have it resemble a stone or wooden structure. Even then, its magical nature is obvious, as it has no color and is translucent, and only the steps have solidity; the rest of it is no more solid than air. The staircase can support up to 10 tons of weight. It can be straight, spiral, or switchback. Its bottom must connect to solid ground, but its top need not connect to anything.", - "document": "wz", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the staircase extends an additional 20 feet for each slot level above 5th.", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "exchanged-knowledge", - "fields": { - "name": "Exchanged Knowledge", - "desc": "When you cast this spell, you open a conduit to the Castle Library, granting access to difficult-to-obtain information. For the spell's duration, you double your proficiency bonus whenever you make an Intelligence check to recall information about any subject. Additionally, you can gain advantage on an Intelligence check to recall information. To do so, you must either sacrifice another lore-filled book or succeed on a Charisma saving throw. On a failed save, the spell ends, and you have disadvantage on all Intelligence checks to recall information for 1 week. A wish spell ends this effect.", - "document": "wz", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hedgehog-dozen", - "fields": { - "name": "Hedgehog Dozen", - "desc": "Eleven illusory duplicates of the touched creature appear in its space. A creature affected by hedgehog dozen seems to have a dozen arms, shields, and weapons-a swarm of partially overlapping, identical creatures. Until the spell ends, these duplicates move with the target and mimic its actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates. While surrounded by duplicates, a creature gains advantage against any opponent because of the bewildering number of weapons and movements. Each time a creature targets you with an attack during the spell's duration, roll a d8 to determine whether the attack instead targets one of your duplicates. On a roll of 1, it strikes you. On any other roll it removes one of your duplicates; when you have only five duplicates remaining, the spell ends. A creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false as with truesight.", - "document": "wz", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hypnagogia", - "fields": { - "name": "Hypnagogia", - "desc": "You alter the mental state of one creature you can see within range. The target must make an Intelligence saving throw. If it fails, choose one of the following effects. At the end of each of its turns, the target can make another Intelligence saving throw. On a success, the spell ends on the target. A creature with an Intelligence score of 4 or less isn't affected by this spell.\n ***Sleep Paralysis.*** Overwhelming heaviness and fatigue overcome the creature, slowing it. The creature's speed is halved, and it has disadvantage on weapon attacks.\n ***Phantasmata.*** The creature imagines vivid and terrifying hallucinations centered on a point of your choice within range. For the duration, the creature is frightened, and it must take the Dash action and move away from the point you chose by the safest available route on each of its turns, unless there is nowhere to move.\n ***False Awakening.*** The creature enters a trancelike state of consciousness in which it's not fully aware of its surroundings. It can't take reactions, and it must roll a d4 at the beginning of its turn to determine its behavior. Each time the target takes damage, it makes a new Intelligence saving throw. On a success, the spell ends on the target.\n\n| d4 | Behavior | \n|-----|-----------| \n| 1 | The creature takes the Dash action and uses all of its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. | \n| 2 | The creature uses its action to pantomime preparing for its day: brushing teeth and hair, bathing, eating, or similar activity. | \n| 3 | The creature moves up to its speed toward a randomly determined creature and uses its action to make one melee attack against that creature. If there is no creature within range, the creature does nothing this turn. | \n| 4 | The creature does nothing this turn. |", - "document": "wz", - "level": 4, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hypnic-jerk", - "fields": { - "name": "Hypnic Jerk", - "desc": "Strange things happen in the mind and body in that moment between waking and sleeping. One of the most common is being startled awake by a sudden feeling of falling. With a snap of your fingers, you trigger that sensation in a creature you can see within range. The target must succeed on a Wisdom saving throw or take 1d6 force damage. If the target fails the saving throw by 5 or more, it drops one object it is holding. A dropped object lands in the creature's space.", - "document": "wz", - "level": 0, - "school": "illusion", - "higher_level": "The spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "inconspicuous-facade", - "fields": { - "name": "Inconspicuous Facade", - "desc": "By means of this spell, you make a target building seem much less important or ostentatious than it is. You can give the target an unremarkable appearance or one that blends in with nearby buildings. By its nature, this spell does not allow you to specify features that would make the building stand out. You also cannot make a building look more opulent to match surrounding buildings. You can make the building appear smaller or larger that its actual size to better fit into its environs. However, these size changes are noticeable with cursory physical inspection as an object will pass through extra illusory space or bump into a seemingly smaller section of the building. A creature can use its action to inspect the building and make an Intelligence (Investigation) check against your spell save DC. If it succeeds, it becomes aware the building has been disguised. In addition to you dispelling inconspicuous facade, the spell ends if the target building is destroyed.", - "document": "wz", - "level": 4, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "march-of-the-dead", - "fields": { - "name": "March of the Dead", - "desc": "This spell animates the recently dead to remove them from a battlefield. Choose one corpse of a Medium or Small humanoid per level of the caster (within range). Your spell imbues the targets with an animating spirit, raising them as construct creatures similar in appearance to flesh golems, though with the strength and abilities of zombies. Dwarves use this to return the bodies of the fallen to clan tombs and to deny the corpses the foul attention of ghouls, necromancers, and similar foes. On each of your turns, you can use a bonus action to mentally command all the creatures you made with this spell if the creatures are within 60 feet of you. You decide what action the creatures will take and where they will move during the next day; you cannot command them to guard. If you issue no commands, the creatures only defend themselves against hostile creatures. Once given an order and direction of march, the creatures continue to follow it until they arrive at the destination you named or until 24 hours have elapsed when the spell ends and the corpses fall lifeless once more. To tell creatures to move for another 24 hours, you must cast this spell on the creatures again before the current 24-hour period ends. This use of the spell reasserts your control over up to 50 creatures you have animated with this spell rather than animating a new one.", - "document": "wz", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional construct creatures for each slot level above 3rd (two creatures/level at 4th, three creatures/level at 5th). Each of the creatures must come from a different corpse.", - "target_type": "creature", - "range": "50 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mind-maze", - "fields": { - "name": "Mind Maze", - "desc": "Choose a creature you can see within range. It must succeed on an Intelligence saving throw or be mentally trapped in an imagined maze of mirrors for the duration. While trapped in this way, the creature is incapacitated, but it imagines itself alone and wandering through the maze. Externally, it appears dazed as it turns in place and reaches out at nonexistent barriers. Each time the target takes damage, it makes another Intelligence saving throw. On a success, the spell ends.", - "document": "wz", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "up to 1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mirror-realm", - "fields": { - "name": "Mirror Realm", - "desc": "You transform a mirror into a magical doorway to an extradimensional realm. You and any creatures you designate when you cast the spell can move through the doorway into the realm beyond. For the spell's duration, the mirror remains anchored in the plane of origin, where it can't be broken or otherwise damaged by any mundane means. No creatures other than those you designate can pass through the mirror or see into the mirror realm.\n The realm within the mirror is an exact reflection of the location you left. The temperature is comfortable, and any environmental threats (lava, poisonous gas, or similar) are inert, harmless facsimiles of the real thing. Likewise, magic items reflected in the mirror realm have no magical properties, but those carried into it work normally. Food, drink, and other beneficial items within the mirror realm (reflections of originals in the real world) function as normal, real items; food can be eaten, wine can be drunk, and so on. Only items that were reflected in the mirror at the moment the spell was cast exist inside the mirror realm. Items placed in front of the mirror afterward don't appear in the mirror realm, and creatures never do unless they are allowed in by you. Items found in the mirror realm dissolve into nothingness when they leave it, but the effects of food and drink remain.\n Sound passes through the mirror in both directions. Creatures in the mirror realm can see what's happening in the world, but creatures in the world see only what the mirror reflects. Objects can cross the mirror boundary only while worn or carried by a creature, and spells can't cross it at all. You can't stand in the mirror realm and shoot arrows or cast spells at targets in the world or vice versa.\n The boundaries of the mirror realm are the same as the room or location in the plane of origin, but the mirror realm can't exceed 50,000 square feet (for simplicity, imagine 50 cubes, each cube being 10 feet on a side). If the original space is larger than this, such as an open field or a forest, the boundary is demarcated with an impenetrable, gray fog.\n Any creature still inside the mirror realm when the spell ends is expelled through the mirror into the nearest empty space.\n If this spell is cast in the same spot every day for a year, it becomes permanent. Once permanent, the mirror can't be moved or destroyed through mundane means. You can allow new creatures into the mirror realm (and disallow previous creatures) by recasting the spell within range of the permanent mirror. Casting the spell elsewhere doesn't affect the creation or the existence of a permanent mirror realm; a determined spellcaster could have multiple permanent mirror realms to use as storage spaces, hiding spots, and spy vantages.", - "document": "wz", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": true, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "obfuscate-object", - "fields": { - "name": "Obfuscate Object", - "desc": "While you are in dim light, you cause an object in range to become unobtrusively obscured from the sight of other creatures. For the duration, you have advantage on Dexterity (Sleight of Hand) checks to hide the object. The object can't be larger than a shortsword, and it must be on your person, held in your hand, or otherwise unattended.", - "document": "wz", - "level": 0, - "school": "illusion", - "higher_level": "You can affect two objects when you reach 5th level, three objects at 11th level, and four objects at 17th level.", - "target_type": "object", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "order-of-revenge", - "fields": { - "name": "Order of Revenge", - "desc": "You touch a weapon or a bundle of 30 ammunition, imbuing them with spell energy. Any creature damaged by a touched, affected weapon leaves an invisibly glowing trail of their path until the spell expires. The caster may see this trail by casting revenge's eye or see invisible. Any other caster may see the trail by casting see invisible. Casting dispel magic on an affected creature causes that creature to stop generating a trail, and the trail fades over the next hour.", - "document": "wz", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast the spell using a slot of 4th level or higher, you can target one additional weapon or bundle of ammunition for each slot level above fourth.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour/caster level", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "pierce-the-veil", - "fields": { - "name": "Pierce the Veil", - "desc": "By sketching a shimmering, ethereal doorway in the air and knocking three times, you call forth an otherworldly entity to provide insight or advice. The door swings open and the entity, wreathed in shadow or otherwise obscured, appears at the threshold. It answers up to five questions truthfully and to the best of its ability, but its answers aren't necessarily clear or direct. The entity can't pass through the doorway or interact with anything on your side of the doorway other than by speaking its responses.\n Likewise, creatures on your side of the doorway can't pass through it to the other side or interact with the other side in any way other than asking questions. In addition, the spell allows you and the creature to understand each other's words even if you have no language in common, the same as if you were both under the effects of the comprehend languages spell.\n When you cast this spell, you must request a specific, named entity, a specific type of creature, or a creature from a specific plane of existence. The target creature can't be native to the plane you are on when you cast the spell. After making this request, make an ability check using your spellcasting ability. The DC is 12 if you request a creature from a specific plane; 16 if you request a specific type of creature; or 20 if you request a specific entity. (The GM can choose to make this check for you secretly.) If the spellcasting check fails, the creature that responds to your summons is any entity of the GM's choosing, from any plane. No matter what, the creature is always of a type with an Intelligence of at least 8 and the ability to speak and to hear.", - "document": "wz", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "pratfall", - "fields": { - "name": "Pratfall", - "desc": "You cause a small bit of bad luck to befall a creature, making it look humorously foolish. You create one of the following effects within range: A small, oily puddle appears under the feet of your target, causing it to lose balance. The target must succeed on a Dexterity saving throw or be unable use a bonus action on its next turn as it regains its footing. Tiny particles blow in your target's face, causing it to sneeze. The target must succeed on a Constitution saving throw or have disadvantage on its first attack roll on its next turn. Strobing lights flash briefly before your target's eyes, causing difficulties with its vision. The target must succeed on a Constitution saving throw or its passive Perception is halved until the end of its next turn. The target feels the sensation of a quick, mild clap against its ears, briefly disorienting it. The target must succeed on a Constitution saving throw to maintain its concentration. An invisible force sharply tugs on the target's trousers, causing the clothing to slip down. The target must make a Dexterity saving throw. On a failed save, the target has disadvantage on its next attack roll with a two-handed weapon or loses its shield bonus to its Armor Class until the end of its next turn as it uses one hand to gather its slipping clothing. Only one of these effects can be used on a single creature at a time.", - "document": "wz", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "putrescent-faerie-circle", - "fields": { - "name": "Putrescent Faerie Circle", - "desc": "You create a 20-foot-diameter circle of loosely-packed toadstools that spew sickly white spores and ooze a tarry substance. At the start of each of your turns, each creature within the circle must make a Constitution saving throw. A creature takes 4d8 necrotic damage on a failed save, or half as much damage on a successful one. If a creature attempts to pass through the ring of toadstools, the toadstools release a cloud of spores, and the creature must make a Constitution saving throw. On a failure, the creature takes 8d8 poison damage and is poisoned for 1 minute. On a success, the creature takes half as much damage and isn't poisoned. While a creature is poisoned, it is paralyzed. It can attempt a new Constitution saving throw at the end of each of its turns to remove the paralyzed condition (but not the poisoned condition).", - "document": "wz", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "reassemble", - "fields": { - "name": "Reassemble", - "desc": "You touch an undead creature (dust and bones suffice) destroyed not more than 10 hours ago; the creature is surrounded by purple fire for 1 round and is returned to life with full hit points. This spell has no effect on any creatures except undead, and it cannot restore a lich whose phylactery has been destroyed, a vampire destroyed by sunlight, any undead whose remains are destroyed by fire, acid, or holy water, or any remains affected by a gentle repose spell. This spell doesn't remove magical effects. If they aren't removed prior to casting, they return when the undead creature comes back to life. This spell closes all mortal wounds but doesn't restore missing body parts. If the creature doesn't have body parts or organs necessary for survival, the spell fails. Sudden reassembly is an ordeal involving enormous expenditure of necrotic energy; ley line casters within 5 miles are aware that some great shift in life forces has occurred and a sense of its direction. The target takes a -4 penalty to all attacks, saves, and ability checks. Every time it finishes a long rest, the penalty is reduced by 1 until it disappears.", - "document": "wz", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "reciprocating-portal", - "fields": { - "name": "Reciprocating Portal", - "desc": "With a gesture and a muttered word, you cause an inky black, circular portal to open on the ground beneath one or more creatures. You can create one 15-foot-diameter portal, two 10-foot-diameter portals, or six 5-foot-diameter portals. A creature that's standing where you create a portal must make a Dexterity saving throw. On a failed save, the creature falls through the portal, disappears into a demiplane where it is stunned as it falls endlessly, and the portal closes.\n At the start of your next turn, the creatures that failed their saving throws fall through matching portals directly above their previous locations. A falling creature lands prone in the space it once occupied or the nearest unoccupied space and takes falling damage as if it fell 60 feet, regardless of the distance between the exit portal and the ground. Flying and levitating creatures can't be affected by this spell.", - "document": "wz", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "remove-insulation", - "fields": { - "name": "Remove Insulation", - "desc": "You target a creature within range, and that creature must succeed on a Fortitude saving throw or become less resistant to lightning damage. A creature with immunity to lightning damage has advantage on this saving throw. On a failure, a creature with immunity to lightning damage instead has resistance to lightning damage for the spell's duration, and a creature with resistance to lightning damage loses its resistance for the duration. A creature without resistance to lightning damage that fails its saving throw takes double damage from lightning for the spell's duration. Remove curse or similar magic ends this spell.", - "document": "wz", - "level": 4, - "school": "necromancy", - "higher_level": "If you cast this spell using a spell slot of 6th level or higher, the duration is 24 hours. If you use a spell slot of 8th level or higher, a creature with immunity to lightning damage no longer has advantage on its saving throw. If you use a spell slot of 9th level or higher, the spell lasts until it is dispelled.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "revenges-eye", - "fields": { - "name": "Revenge's Eye", - "desc": "You touch a creature's visual organs and grant them the ability to see the trail left by creatures damaged by a weapon you cast invisible creatures; it only reveals trails left by those affected by order of revenge also cast by the spellcaster.", - "document": "wz", - "level": 2, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target +1 creature for each slot level above second.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "rise-of-the-green", - "fields": { - "name": "Rise of the Green", - "desc": "The spell gives life to existing plants in range. If there are no plants in range, the spell creates undergrowth and trees that persist for the duration. One of the trees becomes a treant friendly to you and your companions. Roll initiative for the treant, which has its own turn. It obeys any verbal commands that you issue to it. If you don't issue it any commands, it defends itself from hostile creatures but otherwise takes no actions. The animated undergrowth creates difficult terrain for your enemies. Additionally, at the beginning of each of your turns, all creatures that are on the ground in range must succeed on a Strength saving throw or become restrained until the spell ends. A restrained creature can use an action to make a Strength (Athletics) check against your spell save DC, ending the effect on itself on a success. If a creature is restrained by plants at the beginning of your turn, it takes 1d6 bludgeoning damage. Finally, the trees swing at each enemy in range, requiring each creature to make a Dexterity saving throw. A creature takes 6d6 bludgeoning damage on a failed save or half as much damage on a successful one. You can use a bonus action to recenter the spell on yourself. This does not grow additional trees in areas that previously had none.", - "document": "wz", - "level": 8, - "school": "evocation", - "higher_level": "When you cast this spell using a 9th-level slot, an additional tree becomes a treant, the undergrowth deals an additional 1d6 bludgeoning damage, and the trees inflict an additional 2d6 bludgeoning damage.", - "target_type": "creature", - "range": "180 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "rive", - "fields": { - "name": "Rive", - "desc": "You pull on the filaments of transition and possibility to tear at your enemies. Choose a creature you can see within range and make a ranged spell attack. On a hit, the target takes 5d8 cold damage as strands of icy nothingness whip from your outstretched hand to envelop it. If the target isn't native to the plane you're on, it takes an extra 3d6 psychic damage and must succeed on a Constitution saving throw or be stunned until the end of its next turn.", - "document": "wz", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "5d8", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shadow-adaptation", - "fields": { - "name": "Shadow Adaptation", - "desc": "Your flesh and clothing pale and become faded as your body takes on a tiny fragment of the Shadow Realm. For the duration of this spell, you are immune to shadow corruption and have resistance to necrotic damage. In addition, you have advantage on saving throws against effects that reduce your Strength score or hit point maximum, such as a shadow's Strength Drain or the harm spell.", - "document": "wz", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "skull-road", - "fields": { - "name": "Skull Road", - "desc": "You conjure a portal linking an unoccupied space you can see within range to an imprecise location on the plane of Evermaw. The portal is a circular opening, which you can make 5-20 feet in diameter. You can orient the portal in any direction you choose. The portal lasts for the duration. If your casting is at 5th level, this opens a pathway to the River of Tears, to the Vitreous Mire, or to the Plains of Bone-travel to a settlement can take up to 7 days (1d6+1). If cast at 7th level, the skull road spell opens a portal to a small settlement of gnolls, ghouls, or shadows on the plane near the Eternal Palace of Mot or a similar settlement. Undead casters can use this spell in the reverse direction, opening a portal from Evermaw to the mortal world, though with similar restrictions. At 5th level, the portal opens in a dark forest, cavern, or ruins far from habitation. At 7th level, the skull road leads directly to a tomb, cemetery, or mass grave near a humanoid settlement of some kind.", - "document": "wz", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "storm-of-axes", - "fields": { - "name": "Storm of Axes", - "desc": "Deep Magic: battle You conjure up dozens of axes and direct them in a pattern in chopping, whirling mayhem. The blades fill eight 5-foot squares in a line 40 feet long or in a double-strength line 20 feet long and 10 deep. The axes cause 6d8 slashing damage to creatures in the area at the moment the spell is cast or half damage with a successful Dexterity saving throw. By maintaining concentration, you can move the swarm of axes up to 20 feet per round in any direction you wish. If the storm of axes moves into spaces containing creatures, they immediately must make another Dexterity saving throw or suffer damage again.", - "document": "wz", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "concentration + 1 round", - "shape_type": "line", - "shape_magnitude": 5, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "subliminal-aversion", - "fields": { - "name": "Subliminal Aversion", - "desc": "You ward a creature within range against attacks by making the choice to hit them painful. When the warded creature is hit with a melee attack from within 5 feet of it, the attacker takes 1d4 psychic damage.", - "document": "wz", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d4", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "summon-clockwork-beast", - "fields": { - "name": "Summon Clockwork Beast", - "desc": "Deep Magic: clockwork Once per day, you can cast this ritual to summon a Tiny clockwork beast doesn't require air, food, drink, or sleep. When its hit points are reduced to 0, it crumbles into a heap of gears and springs.", - "document": "wz", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "10 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "suppress-regeneration", - "fields": { - "name": "Suppress Regeneration", - "desc": "You temporarily remove the ability to regenerate from a creature you can see within range. The target must make a Constitution saving throw. On a failed save, the target can't regain hit points from the Regeneration trait or similar spell or trait for the duration. The target can receive magical healing or regain hit points from other traits, spells, or actions, as normal. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends on the target.", - "document": "wz", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "threshold-slip", - "fields": { - "name": "Threshold Slip", - "desc": "The threshold of a doorway, the sill of a window, the junction where the floor meets the wall, the intersection of two walls—these are all points of travel for you. When you cast this spell, you can step into the junction of two surfaces, slip through the boundary of the Material Plane, and reappear in an unoccupied space with another junction you can see within 60 feet.\n You can take one willing creature of your size or smaller that you're touching with you. The target junction must have unoccupied spaces for both of you to enter when you reappear or the spell fails.", - "document": "wz", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "toxic-pollen", - "fields": { - "name": "Toxic Pollen", - "desc": "Upon casting this spell, one type of plant within range gains the ability to puff a cloud of pollen based on conditions you supply during casting. If the conditions are met, an affected plant sprays a pollen cloud in a 10-foot-radius sphere centered on it. Creatures in the area must succeed on a Constitution saving throw or become poisoned for 1 minute. At the end of a poisoned creature's turn, it can make a Constitution saving throw. On a success, it is no longer poisoned. A plant can only release this pollen once within the duration.", - "document": "wz", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 year", - "shape_type": "sphere", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "vagrants-nondescript-cloak", - "fields": { - "name": "Vagrant's Nondescript Cloak", - "desc": "You touch a creature. The creature is warded against the effects of locate creature, the caster may determine if the affected creature is within 1,000 feet but cannot determine the direction to the target of vagrant's nondescript cloak. If the creature is already affected by one of the warded spells, then both the effect and vagrant's nondescript cloak end immediately.", - "document": "wz", - "level": 2, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of third level or higher, you can target +1 creature for each slot level above second.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "vengeful-panopy-of-the-ley-line-ignited", - "fields": { - "name": "Vengeful Panopy of the Ley Line Ignited", - "desc": "Deep Magic: ley line While bound to a ley line, you draw directly from its power, becoming cloaked in a magical heliotropic fire that sheds dim light in a 10-foot radius. Additionally, each round, including the round it is cast, you may make a ranged spell attack as an action. On a hit, the target takes 6d6 force damage. Every 3 minutes the effect is active, your bond with the ley line is reduced by one step; a bond to a Titanic ley line becomes effectively a Strong, then a Weak, and after 10 minutes, the bond is broken. The strength of the bond is only restored after a long rest; if the bond was broken, it can only be restored at the next weakest level for a week. A bond broken from a Weak ley line cannot be restored for two weeks. Some believe this spell damages ley lines, and there is some evidence to support this claim. Additionally, whenever a creature within 5 feet hits you with a melee attack, the cloak erupts with a heliotropic flare. The attacker takes 3d6 force damage.", - "document": "wz", - "level": 6, - "school": "evocation", - "higher_level": "When casting this spell using a spell slot of 6th level, the damage from all effects of the spell increase by 1d6 for each slot level above 6th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "6d6", - "damage_types": [ - "force" - ], - "duration": "10 minutes", - "shape_type": "line", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "who-goes-there", - "fields": { - "name": "Who Goes There?", - "desc": "You sift the surrounding air for sound wave remnants of recent conversations to discern passwords or other important information gleaned from a conversation, such as by guards on a picket line. The spell creates a cloud of words in the caster's mind, assigning relevance to them. Selecting the correct word or phrase is not foolproof, but you can make an educated guess. You make a Wisdom (Perception) check against the target person's Wisdom score (DC 10, if not specified) to successfully pick the key word or phrase.", - "document": "wz", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "zymurgic-aura", - "fields": { - "name": "Zymurgic Aura", - "desc": "A wave of putrefaction surges from you, targeting creatures of your choice within a 30-foot radius around you, speeding the rate of decay in those it touches. The target must make a Constitution saving throw. It takes 10d6 necrotic damage on a failed save or half as much on a successful save. Its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature takes a long rest.", - "document": "wz", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -} -] +] \ No newline at end of file diff --git a/data/v2/kobold-press/wz/SpellCastingOption.json b/data/v2/kobold-press/wz/SpellCastingOption.json index 9908275a..91139570 100644 --- a/data/v2/kobold-press/wz/SpellCastingOption.json +++ b/data/v2/kobold-press/wz/SpellCastingOption.json @@ -1,1934 +1,1934 @@ [ -{ - "model": "api_v2.spellcastingoption", - "pk": 4551, - "fields": { - "parent": "abrupt-hug", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4552, - "fields": { - "parent": "avert-evil-eye", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4553, - "fields": { - "parent": "bardo", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4554, - "fields": { - "parent": "battle-chant", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4555, - "fields": { - "parent": "battle-chant", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4557, - "fields": { - "parent": "battle-chant", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "70 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4558, - "fields": { - "parent": "battle-chant", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "80 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4559, - "fields": { - "parent": "battle-chant", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "90 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4560, - "fields": { - "parent": "battle-chant", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "100 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4561, - "fields": { - "parent": "battle-chant", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "110 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4562, - "fields": { - "parent": "battle-chant", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "120 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4563, - "fields": { - "parent": "battle-chant", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "130 feet" - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4564, - "fields": { - "parent": "bombardment-of-stings", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4566, - "fields": { - "parent": "bombardment-of-stings", - "type": "slot_level_3", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4567, - "fields": { - "parent": "bombardment-of-stings", - "type": "slot_level_4", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4568, - "fields": { - "parent": "bombardment-of-stings", - "type": "slot_level_5", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4569, - "fields": { - "parent": "bombardment-of-stings", - "type": "slot_level_6", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4570, - "fields": { - "parent": "bombardment-of-stings", - "type": "slot_level_7", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4571, - "fields": { - "parent": "bombardment-of-stings", - "type": "slot_level_8", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4572, - "fields": { - "parent": "bombardment-of-stings", - "type": "slot_level_9", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4573, - "fields": { - "parent": "charming-aesthetics", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4575, - "fields": { - "parent": "charming-aesthetics", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4576, - "fields": { - "parent": "charming-aesthetics", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4577, - "fields": { - "parent": "charming-aesthetics", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4578, - "fields": { - "parent": "charming-aesthetics", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4579, - "fields": { - "parent": "charming-aesthetics", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4580, - "fields": { - "parent": "charming-aesthetics", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4581, - "fields": { - "parent": "child-of-light-and-darkness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4582, - "fields": { - "parent": "commanders-pavilion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4583, - "fields": { - "parent": "commanders-pavilion", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4584, - "fields": { - "parent": "devouring-darkness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4585, - "fields": { - "parent": "door-of-the-far-traveler", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4587, - "fields": { - "parent": "door-of-the-far-traveler", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "12 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4588, - "fields": { - "parent": "eternal-echo", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4589, - "fields": { - "parent": "ethereal-stairs", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4591, - "fields": { - "parent": "ethereal-stairs", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4592, - "fields": { - "parent": "ethereal-stairs", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4593, - "fields": { - "parent": "ethereal-stairs", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4594, - "fields": { - "parent": "ethereal-stairs", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4595, - "fields": { - "parent": "exchanged-knowledge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4596, - "fields": { - "parent": "hedgehog-dozen", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4597, - "fields": { - "parent": "hypnagogia", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4599, - "fields": { - "parent": "hypnagogia", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4600, - "fields": { - "parent": "hypnagogia", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4601, - "fields": { - "parent": "hypnagogia", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4602, - "fields": { - "parent": "hypnagogia", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4603, - "fields": { - "parent": "hypnagogia", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4604, - "fields": { - "parent": "hypnic-jerk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4605, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4606, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4607, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4608, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4609, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_5", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4610, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_6", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4611, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_7", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4612, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_8", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4613, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_9", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4614, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_10", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4615, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_11", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4616, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_12", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4617, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_13", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4618, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_14", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4619, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_15", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4620, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_16", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4621, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_17", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4622, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_18", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4623, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_19", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4624, - "fields": { - "parent": "hypnic-jerk", - "type": "player_level_20", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4625, - "fields": { - "parent": "inconspicuous-facade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4626, - "fields": { - "parent": "march-of-the-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4628, - "fields": { - "parent": "march-of-the-dead", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4629, - "fields": { - "parent": "march-of-the-dead", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4630, - "fields": { - "parent": "march-of-the-dead", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4631, - "fields": { - "parent": "march-of-the-dead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4632, - "fields": { - "parent": "march-of-the-dead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4633, - "fields": { - "parent": "march-of-the-dead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4634, - "fields": { - "parent": "mind-maze", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4635, - "fields": { - "parent": "mirror-realm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4636, - "fields": { - "parent": "mirror-realm", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4637, - "fields": { - "parent": "obfuscate-object", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4638, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4639, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4640, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4641, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4642, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4643, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4644, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4645, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4646, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4647, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4648, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4649, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4650, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4651, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4652, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4653, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4654, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4655, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4656, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4657, - "fields": { - "parent": "obfuscate-object", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4658, - "fields": { - "parent": "order-of-revenge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4660, - "fields": { - "parent": "order-of-revenge", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4661, - "fields": { - "parent": "order-of-revenge", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4662, - "fields": { - "parent": "order-of-revenge", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4663, - "fields": { - "parent": "order-of-revenge", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4664, - "fields": { - "parent": "order-of-revenge", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4665, - "fields": { - "parent": "order-of-revenge", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4666, - "fields": { - "parent": "pierce-the-veil", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4667, - "fields": { - "parent": "pierce-the-veil", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4668, - "fields": { - "parent": "pratfall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4669, - "fields": { - "parent": "putrescent-faerie-circle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4670, - "fields": { - "parent": "reassemble", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4671, - "fields": { - "parent": "reciprocating-portal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4672, - "fields": { - "parent": "remove-insulation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4674, - "fields": { - "parent": "remove-insulation", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4675, - "fields": { - "parent": "remove-insulation", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4676, - "fields": { - "parent": "remove-insulation", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4677, - "fields": { - "parent": "remove-insulation", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4678, - "fields": { - "parent": "remove-insulation", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4679, - "fields": { - "parent": "revenges-eye", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4681, - "fields": { - "parent": "revenges-eye", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4682, - "fields": { - "parent": "revenges-eye", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4683, - "fields": { - "parent": "revenges-eye", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4684, - "fields": { - "parent": "revenges-eye", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4685, - "fields": { - "parent": "revenges-eye", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4686, - "fields": { - "parent": "revenges-eye", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4687, - "fields": { - "parent": "revenges-eye", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4688, - "fields": { - "parent": "rise-of-the-green", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4690, - "fields": { - "parent": "rise-of-the-green", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4691, - "fields": { - "parent": "rive", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4692, - "fields": { - "parent": "shadow-adaptation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4693, - "fields": { - "parent": "skull-road", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4694, - "fields": { - "parent": "storm-of-axes", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4695, - "fields": { - "parent": "subliminal-aversion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4696, - "fields": { - "parent": "summon-clockwork-beast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4697, - "fields": { - "parent": "summon-clockwork-beast", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4698, - "fields": { - "parent": "suppress-regeneration", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4700, - "fields": { - "parent": "suppress-regeneration", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4701, - "fields": { - "parent": "suppress-regeneration", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4702, - "fields": { - "parent": "suppress-regeneration", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4703, - "fields": { - "parent": "suppress-regeneration", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4704, - "fields": { - "parent": "suppress-regeneration", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4705, - "fields": { - "parent": "suppress-regeneration", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4706, - "fields": { - "parent": "suppress-regeneration", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4707, - "fields": { - "parent": "suppress-regeneration", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4708, - "fields": { - "parent": "threshold-slip", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4709, - "fields": { - "parent": "toxic-pollen", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4710, - "fields": { - "parent": "vagrants-nondescript-cloak", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4712, - "fields": { - "parent": "vagrants-nondescript-cloak", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4713, - "fields": { - "parent": "vagrants-nondescript-cloak", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4714, - "fields": { - "parent": "vagrants-nondescript-cloak", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4715, - "fields": { - "parent": "vagrants-nondescript-cloak", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4716, - "fields": { - "parent": "vagrants-nondescript-cloak", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4717, - "fields": { - "parent": "vagrants-nondescript-cloak", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4718, - "fields": { - "parent": "vagrants-nondescript-cloak", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4719, - "fields": { - "parent": "vengeful-panopy-of-the-ley-line-ignited", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4721, - "fields": { - "parent": "vengeful-panopy-of-the-ley-line-ignited", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4722, - "fields": { - "parent": "vengeful-panopy-of-the-ley-line-ignited", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4723, - "fields": { - "parent": "vengeful-panopy-of-the-ley-line-ignited", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4724, - "fields": { - "parent": "who-goes-there", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 4725, - "fields": { - "parent": "zymurgic-aura", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -} -] + { + "model": "api_v2.spellcastingoption", + "pk": 4551, + "fields": { + "parent": "wz_abrupt-hug", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4552, + "fields": { + "parent": "wz_avert-evil-eye", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4553, + "fields": { + "parent": "wz_bardo", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4554, + "fields": { + "parent": "wz_battle-chant", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4555, + "fields": { + "parent": "wz_battle-chant", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4557, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "70 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4558, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "80 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4559, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "90 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4560, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "100 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4561, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "110 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4562, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "120 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4563, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "130 feet" + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4564, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4566, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_3", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4567, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_4", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4568, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_5", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4569, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_6", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4570, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_7", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4571, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_8", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4572, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_9", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4573, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4575, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4576, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4577, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4578, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4579, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4580, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4581, + "fields": { + "parent": "wz_child-of-light-and-darkness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4582, + "fields": { + "parent": "wz_commanders-pavilion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4583, + "fields": { + "parent": "wz_commanders-pavilion", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4584, + "fields": { + "parent": "wz_devouring-darkness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4585, + "fields": { + "parent": "wz_door-of-the-far-traveler", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4587, + "fields": { + "parent": "wz_door-of-the-far-traveler", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "12 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4588, + "fields": { + "parent": "wz_eternal-echo", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4589, + "fields": { + "parent": "wz_ethereal-stairs", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4591, + "fields": { + "parent": "wz_ethereal-stairs", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4592, + "fields": { + "parent": "wz_ethereal-stairs", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4593, + "fields": { + "parent": "wz_ethereal-stairs", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4594, + "fields": { + "parent": "wz_ethereal-stairs", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4595, + "fields": { + "parent": "wz_exchanged-knowledge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4596, + "fields": { + "parent": "wz_hedgehog-dozen", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4597, + "fields": { + "parent": "wz_hypnagogia", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4599, + "fields": { + "parent": "wz_hypnagogia", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4600, + "fields": { + "parent": "wz_hypnagogia", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4601, + "fields": { + "parent": "wz_hypnagogia", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4602, + "fields": { + "parent": "wz_hypnagogia", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4603, + "fields": { + "parent": "wz_hypnagogia", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4604, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4605, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4606, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4607, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4608, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4609, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_5", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4610, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_6", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4611, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_7", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4612, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_8", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4613, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_9", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4614, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_10", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4615, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_11", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4616, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_12", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4617, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_13", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4618, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_14", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4619, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_15", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4620, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_16", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4621, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_17", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4622, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_18", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4623, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_19", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4624, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_20", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4625, + "fields": { + "parent": "wz_inconspicuous-facade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4626, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4628, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4629, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4630, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4631, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4632, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4633, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4634, + "fields": { + "parent": "wz_mind-maze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4635, + "fields": { + "parent": "wz_mirror-realm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4636, + "fields": { + "parent": "wz_mirror-realm", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4637, + "fields": { + "parent": "wz_obfuscate-object", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4638, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4639, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4640, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4641, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4642, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4643, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4644, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4645, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4646, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4647, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4648, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4649, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4650, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4651, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4652, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4653, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4654, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4655, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4656, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4657, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4658, + "fields": { + "parent": "wz_order-of-revenge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4660, + "fields": { + "parent": "wz_order-of-revenge", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4661, + "fields": { + "parent": "wz_order-of-revenge", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4662, + "fields": { + "parent": "wz_order-of-revenge", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4663, + "fields": { + "parent": "wz_order-of-revenge", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4664, + "fields": { + "parent": "wz_order-of-revenge", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4665, + "fields": { + "parent": "wz_order-of-revenge", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4666, + "fields": { + "parent": "wz_pierce-the-veil", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4667, + "fields": { + "parent": "wz_pierce-the-veil", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4668, + "fields": { + "parent": "wz_pratfall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4669, + "fields": { + "parent": "wz_putrescent-faerie-circle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4670, + "fields": { + "parent": "wz_reassemble", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4671, + "fields": { + "parent": "wz_reciprocating-portal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4672, + "fields": { + "parent": "wz_remove-insulation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4674, + "fields": { + "parent": "wz_remove-insulation", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4675, + "fields": { + "parent": "wz_remove-insulation", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4676, + "fields": { + "parent": "wz_remove-insulation", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4677, + "fields": { + "parent": "wz_remove-insulation", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4678, + "fields": { + "parent": "wz_remove-insulation", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4679, + "fields": { + "parent": "wz_revenges-eye", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4681, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4682, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4683, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4684, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4685, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4686, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4687, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4688, + "fields": { + "parent": "wz_rise-of-the-green", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4690, + "fields": { + "parent": "wz_rise-of-the-green", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4691, + "fields": { + "parent": "wz_rive", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4692, + "fields": { + "parent": "wz_shadow-adaptation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4693, + "fields": { + "parent": "wz_skull-road", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4694, + "fields": { + "parent": "wz_storm-of-axes", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4695, + "fields": { + "parent": "wz_subliminal-aversion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4696, + "fields": { + "parent": "wz_summon-clockwork-beast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4697, + "fields": { + "parent": "wz_summon-clockwork-beast", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4698, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4700, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4701, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4702, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4703, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4704, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4705, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4706, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4707, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4708, + "fields": { + "parent": "wz_threshold-slip", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4709, + "fields": { + "parent": "wz_toxic-pollen", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4710, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4712, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4713, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4714, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4715, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4716, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4717, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4718, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4719, + "fields": { + "parent": "wz_vengeful-panopy-of-the-ley-line-ignited", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4721, + "fields": { + "parent": "wz_vengeful-panopy-of-the-ley-line-ignited", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4722, + "fields": { + "parent": "wz_vengeful-panopy-of-the-ley-line-ignited", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4723, + "fields": { + "parent": "wz_vengeful-panopy-of-the-ley-line-ignited", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4724, + "fields": { + "parent": "wz_who-goes-there", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 4725, + "fields": { + "parent": "wz_zymurgic-aura", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + } +] \ No newline at end of file diff --git a/data/v2/open5e/open5e/Spell.json b/data/v2/open5e/open5e/Spell.json index 84874a1b..8cf4cf69 100644 --- a/data/v2/open5e/open5e/Spell.json +++ b/data/v2/open5e/open5e/Spell.json @@ -1,66 +1,66 @@ [ -{ - "model": "api_v2.spell", - "pk": "eye-bite", - "fields": { - "name": "Eye bite", - "desc": "For the spell's Duration, your eyes turn black and veins of dark energy lace your cheeks. One creature of your choice within 60 feet of you that you can see must succeed on a Wisdom saving throw or be affected by one of the listed Effects of your choice for the Duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of Eyebite.\n\nAsleep: The target is rendered Unconscious. It wakes up if it takes any damage or if another creature uses its action to jostle the sleeper awake.\n\nPanicked: The target is Frightened of you. On each of its turns, the Frightened creature must take the Dash action and move away from you by the safest and shortest possible route, unless there is no place to move. If the target is at least 60 feet away from you and can no longer see you, this effect ends.\n\nSickened: The target has disadvantage on Attack rolls and Ability Checks. At the end of each of its turns, it can make another Wisdom saving throw. If it succeeds, the effect ends.\n\n*(This Open5e spell replaces a like-named non-SRD spell from an official source.*", - "document": "open5e", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true + { + "model": "api_v2.spell", + "pk": "open5e_eye-bite", + "fields": { + "name": "Eye bite", + "desc": "For the spell's Duration, your eyes turn black and veins of dark energy lace your cheeks. One creature of your choice within 60 feet of you that you can see must succeed on a Wisdom saving throw or be affected by one of the listed Effects of your choice for the Duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of Eyebite.\n\nAsleep: The target is rendered Unconscious. It wakes up if it takes any damage or if another creature uses its action to jostle the sleeper awake.\n\nPanicked: The target is Frightened of you. On each of its turns, the Frightened creature must take the Dash action and move away from you by the safest and shortest possible route, unless there is no place to move. If the target is at least 60 feet away from you and can no longer see you, this effect ends.\n\nSickened: The target has disadvantage on Attack rolls and Ability Checks. At the end of each of its turns, it can make another Wisdom saving throw. If it succeeds, the effect ends.\n\n*(This Open5e spell replaces a like-named non-SRD spell from an official source.*", + "document": "open5e", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "open5e_ray-of-sickness", + "fields": { + "name": "Ray of Sickness", + "desc": "A ray of green light appears at your fingertip, arcing towards a target within range.\n\nMake a ranged spell attack against the target. On a hit, the target takes 2d8 poison damage and must make a Constitution saving throw. On a failed save, it is also poisoned until the end of your next turn.\n\n*(This Open5e spell replaces a like-named non-SRD spell from an official source.*", + "document": "open5e", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "2d8", + "damage_types": [ + "poison" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } } -}, -{ - "model": "api_v2.spell", - "pk": "ray-of-sickness", - "fields": { - "name": "Ray of Sickness", - "desc": "A ray of green light appears at your fingertip, arcing towards a target within range.\n\nMake a ranged spell attack against the target. On a hit, the target takes 2d8 poison damage and must make a Constitution saving throw. On a failed save, it is also poisoned until the end of your next turn.\n\n*(This Open5e spell replaces a like-named non-SRD spell from an official source.*", - "document": "open5e", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "2d8", - "damage_types": [ - "poison" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -} -] +] \ No newline at end of file diff --git a/data/v2/open5e/open5e/SpellCastingOption.json b/data/v2/open5e/open5e/SpellCastingOption.json index ae0d8f91..2a115b09 100644 --- a/data/v2/open5e/open5e/SpellCastingOption.json +++ b/data/v2/open5e/open5e/SpellCastingOption.json @@ -1,122 +1,122 @@ [ -{ - "model": "api_v2.spellcastingoption", - "pk": 6139, - "fields": { - "parent": "eye-bite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null + { + "model": "api_v2.spellcastingoption", + "pk": 6139, + "fields": { + "parent": "open5e_eye-bite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6140, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6142, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_2", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6143, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_3", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6144, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6145, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6146, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6147, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6148, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6149, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6140, - "fields": { - "parent": "ray-of-sickness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6142, - "fields": { - "parent": "ray-of-sickness", - "type": "slot_level_2", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6143, - "fields": { - "parent": "ray-of-sickness", - "type": "slot_level_3", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6144, - "fields": { - "parent": "ray-of-sickness", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6145, - "fields": { - "parent": "ray-of-sickness", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6146, - "fields": { - "parent": "ray-of-sickness", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6147, - "fields": { - "parent": "ray-of-sickness", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6148, - "fields": { - "parent": "ray-of-sickness", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6149, - "fields": { - "parent": "ray-of-sickness", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -} -] +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/Spell.json b/data/v2/wizards-of-the-coast/srd/Spell.json index f1f3e7c7..caa1b7f7 100644 --- a/data/v2/wizards-of-the-coast/srd/Spell.json +++ b/data/v2/wizards-of-the-coast/srd/Spell.json @@ -1,10018 +1,10018 @@ [ -{ - "model": "api_v2.spell", - "pk": "acid-arrow", - "fields": { - "name": "Acid Arrow", - "desc": "A shimmering green arrow streaks toward a target within range and bursts in a spray of acid. Make a ranged spell attack against the target. On a hit, the target takes 4d4 acid damage immediately and 2d4 acid damage at the end of its next turn. On a miss, the arrow splashes the target with acid for half as much of the initial damage and no damage at the end of its next turn.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d4 for each slot level above 2nd.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Powdered rhubarb leaf and an adder's stomach.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "4d4", - "damage_types": [ - "acid" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "acid-splash", - "fields": { - "name": "Acid Splash", - "desc": "You hurl a bubble of acid. Choose one creature within range, or choose two creatures within range that are within 5 feet of each other. A target must succeed on a dexterity saving throw or take 1d6 acid damage.", - "document": "srd", - "level": 0, - "school": "conjuration", - "higher_level": "This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "aid", - "fields": { - "name": "Aid", - "desc": "Your spell bolsters your allies with toughness and resolve. Choose up to three creatures within range. Each target's hit point maximum and current hit points increase by 5 for the duration.", - "document": "srd", - "level": 2, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, a target's hit points increase by an additional 5 for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny strip of white cloth.", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "alarm", - "fields": { - "name": "Alarm", - "desc": "You set an alarm against unwanted intrusion. Choose a door, a window, or an area within range that is no larger than a 20-foot cube. Until the spell ends, an alarm alerts you whenever a Tiny or larger creature touches or enters the warded area. \n\nWhen you cast the spell, you can designate creatures that won't set off the alarm. You also choose whether the alarm is mental or audible. A mental alarm alerts you with a ping in your mind if you are within 1 mile of the warded area. This ping awakens you if you are sleeping. An audible alarm produces the sound of a hand bell for 10 seconds within 60 feet.", - "document": "srd", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny bell and a piece of fine silver wire.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "alter-self", - "fields": { - "name": "Alter Self", - "desc": "You assume a different form. When you cast the spell, choose one of the following options, the effects of which last for the duration of the spell. While the spell lasts, you can end one option as an action to gain the benefits of a different one.\n\n**Aquatic Adaptation.** You adapt your body to an aquatic environment, sprouting gills and growing webbing between your fingers. You can breathe underwater and gain a swimming speed equal to your walking speed.\n\n**Change Appearance.** You transform your appearance. You decide what you look like, including your height, weight, facial features, sound of your voice, hair length, coloration, and distinguishing characteristics, if any. You can make yourself appear as a member of another race, though none of your statistics change. You also can't appear as a creature of a different size than you, and your basic shape stays the same; if you're bipedal, you can't use this spell to become quadrupedal, for instance. At any time for the duration of the spell, you can use your action to change your appearance in this way again.\n\n**Natural Weapons.** You grow claws, fangs, spines, horns, or a different natural weapon of your choice. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage, as appropriate to the natural weapon you chose, and you are proficient with your unarmed strikes. Finally, the natural weapon is magic and you have a +1 bonus to the attack and damage rolls you make using it.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "animal-friendship", - "fields": { - "name": "Animal Friendship", - "desc": "This spell lets you convince a beast that you mean it no harm. Choose a beast that you can see within range. It must see and hear you. If the beast's Intelligence is 4 or higher, the spell fails. Otherwise, the beast must succeed on a Wisdom saving throw or be charmed by you for the spell's duration. If you or one of your companions harms the target, the spells ends.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional beast for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A morsel of food.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "animal-messenger", - "fields": { - "name": "Animal Messenger", - "desc": "By means of this spell, you use an animal to deliver a message. Choose a Tiny beast you can see within range, such as a squirrel, a blue jay, or a bat. You specify a location, which you must have visited, and a recipient who matches a general description, such as \"a man or woman dressed in the uniform of the town guard\" or \"a red-haired dwarf wearing a pointed hat.\" You also speak a message of up to twenty-five words. The target beast travels for the duration of the spell toward the specified location, covering about 50 miles per 24 hours for a flying messenger, or 25 miles for other animals. \n\nWhen the messenger arrives, it delivers your message to the creature that you described, replicating the sound of your voice. The messenger speaks only to a creature matching the description you gave. If the messenger doesn't reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.", - "document": "srd", - "level": 2, - "school": "enchantment", - "higher_level": "If you cast this spell using a spell slot of 3nd level or higher, the duration of the spell increases by 48 hours for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A morsel of food.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "animal-shapes", - "fields": { - "name": "Animal Shapes", - "desc": "Your magic turns others into beasts. Choose any number of willing creatures that you can see within range. You transform each target into the form of a Large or smaller beast with a challenge rating of 4 or lower. On subsequent turns, you can use your action to transform affected creatures into new forms. \n\nThe transformation lasts for the duration for each target, or until the target drops to 0 hit points or dies. You can choose a different form for each target. A target's game statistics are replaced by the statistics of the chosen beast, though the target retains its alignment and Intelligence, Wisdom, and Charisma scores. The target assumes the hit points of its new form, and when it reverts to its normal form, it returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak or cast spells. \n\nThe target's gear melds into the new form. The target can't activate, wield, or otherwise benefit from any of its equipment.", - "document": "srd", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "animate-dead", - "fields": { - "name": "Animate Dead", - "desc": "This spell creates an undead servant. Choose a pile of bones or a corpse of a Medium or Small humanoid within range. Your spell imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a skeleton if you chose bones or a zombie if you chose a corpse (the DM has the creature's game statistics). \n\nOn each of your turns, you can use a bonus action to mentally command any creature you made with this spell if the creature is within 60 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete. \n\nThe creature is under your control for 24 hours, after which it stops obeying any command you've given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature again before the current 24-hour period ends. This use of the spell reasserts your control over up to four creatures you have animated with this spell, rather than animating a new one.", - "document": "srd", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional undead creatures for each slot level above 3rd. Each of the creatures must come from a different corpse or pile of bones.", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of blood, a piece of flesh, and a pinch of bone dust.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "animate-objects", - "fields": { - "name": "Animate Objects", - "desc": "Objects come to life at your command. Choose up to ten nonmagical objects within range that are not being worn or carried. Medium targets count as two objects, Large targets count as four objects, Huge targets count as eight objects. You can't animate any object larger than Huge. Each target animates and becomes a creature under your control until the spell ends or until reduced to 0 hit points. \nAs a bonus action, you can mentally command any creature you made with this spell if the creature is within 500 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.\n### Animated Object Statistics \n| Size | HP | AC | Attack | Str | Dex |\n|--------|----|----|----------------------------|-----|-----|\n| Tiny | 20 | 18 | +8 to hit, 1d4 + 4 damage | 4 | 18 |\n| Small | 25 | 16 | +6 to hit, 1d8 + 2 damage | 6 | 14 |\n| Medium | 40 | 13 | +5 to hit, 2d6 + 1 damage | 10 | 12 |\n| Large | 50 | 10 | +6 to hit, 2d10 + 2 damage | 14 | 10 |\n| Huge | 80 | 10 | +8 to hit, 2d12 + 4 damage | 18 | 6 | \n\nAn animated object is a construct with AC, hit points, attacks, Strength, and Dexterity determined by its size. Its Constitution is 10 and its Intelligence and Wisdom are 3, and its Charisma is 1. Its speed is 30 feet; if the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or a larger object, such as a chain bolted to a wall, its speed is 0. It has blindsight with a radius of 30 feet and is blind beyond that distance. When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form. If you command an object to attack, it can make a single melee attack against a creature within 5 feet of it. It makes a slam attack with an attack bonus and bludgeoning damage determined by its size. The DM might rule that a specific object inflicts slashing or piercing damage based on its form.", - "document": "srd", - "level": 5, - "school": "transmutation", - "higher_level": "If you cast this spell using a spell slot of 6th level or higher, you can animate two additional objects for each slot level above 5th.", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "antilife-shell", - "fields": { - "name": "Antilife Shell", - "desc": "A shimmering barrier extends out from you in a 10-foot radius and moves with you, remaining centered on you and hedging out creatures other than undead and constructs. The barrier lasts for the duration. The barrier prevents an affected creature from passing or reaching through. An affected creature can cast spells or make attacks with ranged or reach weapons through the barrier. If you move so that an affected creature is forced to pass through the barrier, the spell ends.", - "document": "srd", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "antimagic-field", - "fields": { - "name": "Antimagic Field", - "desc": "A 10-foot-radius invisible sphere of antimagic surrounds you. This area is divorced from the magical energy that suffuses the multiverse. Within the sphere, spells can't be cast, summoned creatures disappear, and even magic items become mundane. Until the spell ends, the sphere moves with you, centered on you. Spells and other magical effects, except those created by an artifact or a deity, are suppressed in the sphere and can't protrude into it. A slot expended to cast a suppressed spell is consumed. While an effect is suppressed, it doesn't function, but the time it spends suppressed counts against its duration.\n\n**Targeted Effects.** Spells and other magical effects, such as magic missile and charm person, that target a creature or an object in the sphere have no effect on that target.\n\n**Areas of Magic.** The area of another spell or magical effect, such as fireball, can't extend into the sphere. If the sphere overlaps an area of magic, the part of the area that is covered by the sphere is suppressed. For example, the flames created by a wall of fire are suppressed within the sphere, creating a gap in the wall if the overlap is large enough.\n\n**Spells.** Any active spell or other magical effect on a creature or an object in the sphere is suppressed while the creature or object is in it.\n\n**Magic Items.** The properties and powers of magic items are suppressed in the sphere. For example, a +1 longsword in the sphere functions as a nonmagical longsword. A magic weapon's properties and powers are suppressed if it is used against a target in the sphere or wielded by an attacker in the sphere. If a magic weapon or a piece of magic ammunition fully leaves the sphere (for example, if you fire a magic arrow or throw a magic spear at a target outside the sphere), the magic of the item ceases to be suppressed as soon as it exits.\n\n**Magical Travel.** Teleportation and planar travel fail to work in the sphere, whether the sphere is the destination or the departure point for such magical travel. A portal to another location, world, or plane of existence, as well as an opening to an extradimensional space such as that created by the rope trick spell, temporarily closes while in the sphere.\n\n**Creatures and Objects.** A creature or object summoned or created by magic temporarily winks out of existence in the sphere. Such a creature instantly reappears once the space the creature occupied is no longer within the sphere.\n\n**Dispel Magic.** Spells and magical effects such as dispel magic have no effect on the sphere. Likewise, the spheres created by different antimagic field spells don't nullify each other.", - "document": "srd", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of powdered iron or iron filings.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": "sphere", - "shape_magnitude": 10, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "antipathysympathy", - "fields": { - "name": "Antipathy/Sympathy", - "desc": "This spell attracts or repels creatures of your choice. You target something within range, either a Huge or smaller object or creature or an area that is no larger than a 200-foot cube. Then specify a kind of intelligent creature, such as red dragons, goblins, or vampires. You invest the target with an aura that either attracts or repels the specified creatures for the duration. Choose antipathy or sympathy as the aura's effect.\n\n**Antipathy.** The enchantment causes creatures of the kind you designated to feel an intense urge to leave the area and avoid the target. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a wisdom saving throw or become frightened. The creature remains frightened while it can see the target or is within 60 feet of it. While frightened by the target, the creature must use its movement to move to the nearest safe spot from which it can't see the target. If the creature moves more than 60 feet from the target and can't see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.\n\n **Sympathy.** The enchantment causes the specified creatures to feel an intense urge to approach the target while within 60 feet of it or able to see it. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a wisdom saving throw or use its movement on each of its turns to enter the area or move within reach of the target. When the creature has done so, it can't willingly move away from the target. If the target damages or otherwise harms an affected creature, the affected creature can make a wisdom saving throw to end the effect, as described below.\n\n**Ending the Effect.** If an affected creature ends its turn while not within 60 feet of the target or able to see it, the creature makes a wisdom saving throw. On a successful save, the creature is no longer affected by the target and recognizes the feeling of repugnance or attraction as magical. In addition, a creature affected by the spell is allowed another wisdom saving throw every 24 hours while the spell persists. A creature that successfully saves against this effect is immune to it for 1 minute, after which time it can be affected again.", - "document": "srd", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Either a lump of alum soaked in vinegar for the antipathy effect or a drop of honey for the sympathy effect.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": "cube", - "shape_magnitude": 200, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "arcane-eye", - "fields": { - "name": "Arcane Eye", - "desc": "You create an invisible, magical eye within range that hovers in the air for the duration. You mentally receive visual information from the eye, which has normal vision and darkvision out to 30 feet. The eye can look in every direction. As an action, you can move the eye up to 30 feet in any direction. There is no limit to how far away from you the eye can move, but it can't enter another plane of existence. A solid barrier blocks the eye's movement, but the eye can pass through an opening as small as 1 inch in diameter.", - "document": "srd", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of bat fur.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "arcane-hand", - "fields": { - "name": "Arcane Hand", - "desc": "You create a Large hand of shimmering, translucent force in an unoccupied space that you can see within range. The hand lasts for the spell's duration, and it moves at your command, mimicking the movements of your own hand. The hand is an object that has AC 20 and hit points equal to your hit point maximum. If it drops to 0 hit points, the spell ends. It has a Strength of 26 (+8) and a Dexterity of 10 (+0). The hand doesn't fill its space. When you cast the spell and as a bonus action on your subsequent turns, you can move the hand up to 60 feet and then cause one of the following effects with it.\n\n**Clenched Fist.** The hand strikes one creature or object within 5 feet of it. Make a melee spell attack for the hand using your game statistics. On a hit, the target takes 4d8 force damage.\n\n**Forceful Hand.** The hand attempts to push a creature within 5 feet of it in a direction you choose. Make a check with the hand's Strength contested by the Strength (Athletics) check of the target. If the target is Medium or smaller, you have advantage on the check. If you succeed, the hand pushes the target up to 5 feet plus a number of feet equal to five times your spellcasting ability modifier. The hand moves with the target to remain within 5 feet of it.\n\n**Grasping Hand.** The hand attempts to grapple a Huge or smaller creature within 5 feet of it. You use the hand's Strength score to resolve the grapple. If the target is Medium or smaller, you have advantage on the check. While the hand is grappling the target, you can use a bonus action to have the hand crush it. When you do so, the target takes bludgeoning damage equal to 2d6 + your spellcasting ability modifier\n\n **Interposing Hand.** The hand interposes itself between you and a creature you choose until you give the hand a different command. The hand moves to stay between you and the target, providing you with half cover against the target. The target can't move through the hand's space if its Strength score is less than or equal to the hand's Strength score. If its Strength score is higher than the hand's Strength score, the target can move toward you through the hand's space, but that space is difficult terrain for the target.", - "document": "srd", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage from the clenched fist option increases by 2d8 and the damage from the grasping hand increases by 2d6 for each slot level above 5th.", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An eggshell and a snakeskin glove.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "4d8", - "damage_types": [ - "force" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "arcane-lock", - "fields": { - "name": "Arcane Lock", - "desc": "You touch a closed door, window, gate, chest, or other entryway, and it becomes locked for the duration. You and the creatures you designate when you cast this spell can open the object normally. You can also set a password that, when spoken within 5 feet of the object, suppresses this spell for 1 minute. Otherwise, it is impassable until it is broken or the spell is dispelled or suppressed. Casting knock on the object suppresses arcane lock for 10 minutes. While affected by this spell, the object is more difficult to break or force open; the DC to break it or pick any locks on it increases by 10.", - "document": "srd", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Gold dust worth at least 25gp, which the spell consumes.", - "material_cost": "25.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "arcane-sword", - "fields": { - "name": "Arcane Sword", - "desc": "You create a sword-shaped plane of force that hovers within range. It lasts for the duration. When the sword appears, you make a melee spell attack against a target of your choice within 5 feet of the sword. On a hit, the target takes 3d10 force damage. Until the spell ends, you can use a bonus action on each of your turns to move the sword up to 20 feet to a spot you can see and repeat this attack against the same target or a different one.", - "document": "srd", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A miniature platinum sword with a grip and pommel of copper and zinc, worth 250 gp.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "3d10", - "damage_types": [ - "force" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "arcanists-magic-aura", - "fields": { - "name": "Arcanist's Magic Aura", - "desc": "You place an illusion on a creature or an object you touch so that divination spells reveal false information about it. The target can be a willing creature or an object that isn't being carried or worn by another creature. When you cast the spell, choose one or both of the following effects. The effect lasts for the duration. If you cast this spell on the same creature or object every day for 30 days, placing the same effect on it each time, the illusion lasts until it is dispelled.\n\n**False Aura.** You change the way the target appears to spells and magical effects, such as detect magic, that detect magical auras. You can make a nonmagical object appear magical, a magical object appear nonmagical, or change the object's magical aura so that it appears to belong to a specific school of magic that you choose. When you use this effect on an object, you can make the false magic apparent to any creature that handles the item.\n\n**Mask.** You change the way the target appears to spells and magical effects that detect creature types, such as a paladin's Divine Sense or the trigger of a symbol spell. You choose a creature type and other spells and magical effects treat the target as if it were a creature of that type or of that alignment.", - "document": "srd", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small square of silk.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "astral-projection", - "fields": { - "name": "Astral Projection", - "desc": "You and up to eight willing creatures within range project your astral bodies into the Astral Plane (the spell fails and the casting is wasted if you are already on that plane). The material body you leave behind is unconscious and in a state of suspended animation; it doesn't need food or air and doesn't age. Your astral body resembles your mortal form in almost every way, replicating your game statistics and possessions. The principal difference is the addition of a silvery cord that extends from between your shoulder blades and trails behind you, fading to invisibility after 1 foot. This cord is your tether to your material body. As long as the tether remains intact, you can find your way home. If the cord is cut-something that can happen only when an effect specifically states that it does-your soul and body are separated, killing you instantly. Your astral form can freely travel through the Astral Plane and can pass through portals there leading to any other plane. If you enter a new plane or return to the plane you were on when casting this spell, your body and possessions are transported along the silver cord, allowing you to re-enter your body as you enter the new plane. Your astral form is a separate incarnation. Any damage or other effects that apply to it have no effect on your physical body, nor do they persist when you return to it. The spell ends for you and your companions when you use your action to dismiss it. When the spell ends, the affected creature returns to its physical body, and it awakens. The spell might also end early for you or one of your companions. A successful dispel magic spell used against an astral or physical body ends the spell for that creature. If a creature's original body or its astral form drops to 0 hit points, the spell ends for that creature. If the spell ends and the silver cord is intact, the cord pulls the creature's astral form back to its body, ending its state of suspended animation. If you are returned to your body prematurely, your companions remain in their astral forms and must find their own way back to their bodies, usually by dropping to 0 hit points.", - "document": "srd", - "level": 9, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "For each creature you affect with this spell, you must provide one jacinth worth at least 1,000gp and one ornately carved bar of silver worth at least 100gp, all of which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "augury", - "fields": { - "name": "Augury", - "desc": "By casting gem-inlaid sticks, rolling dragon bones, laying out ornate cards, or employing some other divining tool, you receive an omen from an otherworldly entity about the results of a specific course of action that you plan to take within the next 30 minutes. The DM chooses from the following possible omens: \n- Weal, for good results \n- Woe, for bad results \n- Weal and woe, for both good and bad results \n- Nothing, for results that aren't especially good or bad The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion. If you cast the spell two or more times before completing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.", - "document": "srd", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Specially marked sticks, bones, or similar tokens worth at least 25gp.", - "material_cost": "25.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "awaken", - "fields": { - "name": "Awaken", - "desc": "After spending the casting time tracing magical pathways within a precious gemstone, you touch a Huge or smaller beast or plant. The target must have either no Intelligence score or an Intelligence of 3 or less. The target gains an Intelligence of 10. The target also gains the ability to speak one language you know. If the target is a plant, it gains the ability to move its limbs, roots, vines, creepers, and so forth, and it gains senses similar to a human's. Your DM chooses statistics appropriate for the awakened plant, such as the statistics for the awakened shrub or the awakened tree. The awakened beast or plant is charmed by you for 30 days or until you or your companions do anything harmful to it. When the charmed condition ends, the awakened creature chooses whether to remain friendly to you, based on how you treated it while it was charmed.", - "document": "srd", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An agate worth at least 1,000 gp, which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "bane", - "fields": { - "name": "Bane", - "desc": "Up to three creatures of your choice that you can see within range must make charisma saving throws. Whenever a target that fails this saving throw makes an attack roll or a saving throw before the spell ends, the target must roll a d4 and subtract the number rolled from the attack roll or saving throw.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of blood.", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "banishment", - "fields": { - "name": "Banishment", - "desc": "You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a charisma saving throw or be banished. If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.", - "document": "srd", - "level": 4, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An item distasteful to the target.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "barkskin", - "fields": { - "name": "Barkskin", - "desc": "You touch a willing creature. Until the spell ends, the target's skin has a rough, bark-like appearance, and the target's AC can't be less than 16, regardless of what kind of armor it is wearing.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A handful of oak bark.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "beacon-of-hope", - "fields": { - "name": "Beacon of Hope", - "desc": "This spell bestows hope and vitality. Choose any number of creatures within range. For the duration, each target has advantage on wisdom saving throws and death saving throws, and regains the maximum number of hit points possible from any healing.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "bestow-curse", - "fields": { - "name": "Bestow Curse", - "desc": "You touch a creature, and that creature must succeed on a wisdom saving throw or become cursed for the duration of the spell. When you cast this spell, choose the nature of the curse from the following options: \n- Choose one ability score. While cursed, the target has disadvantage on ability checks and saving throws made with that ability score. \n- While cursed, the target has disadvantage on attack rolls against you. \n- While cursed, the target must make a wisdom saving throw at the start of each of its turns. If it fails, it wastes its action that turn doing nothing. \n- While the target is cursed, your attacks and spells deal an extra 1d8 necrotic damage to the target. A remove curse spell ends this effect. At the DM's option, you may choose an alternative curse effect, but it should be no more powerful than those described above. The DM has final say on such a curse's effect.", - "document": "srd", - "level": 3, - "school": "necromancy", - "higher_level": "If you cast this spell using a spell slot of 4th level or higher, the duration is concentration, up to 10 minutes. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the spell lasts until it is dispelled. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "black-tentacles", - "fields": { - "name": "Black Tentacles", - "desc": "Squirming, ebony tentacles fill a 20-foot square on ground that you can see within range. For the duration, these tentacles turn the ground in the area into difficult terrain. When a creature enters the affected area for the first time on a turn or starts its turn there, the creature must succeed on a Dexterity saving throw or take 3d6 bludgeoning damage and be restrained by the tentacles until the spell ends. A creature that starts its turn in the area and is already restrained by the tentacles takes 3d6 bludgeoning damage. A creature restrained by the tentacles can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A piece of tentacle from a giant octopus or a giant squid", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "blade-barrier", - "fields": { - "name": "Blade Barrier", - "desc": "You create a vertical wall of whirling, razor-sharp blades made of magical energy. The wall appears within range and lasts for the duration. You can make a straight wall up to 100 feet long, 20 feet high, and 5 feet thick, or a ringed wall up to 60 feet in diameter, 20 feet high, and 5 feet thick. The wall provides three-quarters cover to creatures behind it, and its space is difficult terrain. When a creature enters the wall's area for the first time on a turn or starts its turn there, the creature must make a dexterity saving throw. On a failed save, the creature takes 6d10 slashing damage. On a successful save, the creature takes half as much damage.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d10", - "damage_types": [ - "slashing" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "bless", - "fields": { - "name": "Bless", - "desc": "You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll a d4 and add the number rolled to the attack roll or saving throw.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A sprinkling of holy water.", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "blight", - "fields": { - "name": "Blight", - "desc": "Necromantic energy washes over a creature of your choice that you can see within range, draining moisture and vitality from it. The target must make a constitution saving throw. The target takes 8d8 necrotic damage on a failed save, or half as much damage on a successful one. The spell has no effect on undead or constructs. If you target a plant creature or a magical plant, it makes the saving throw with disadvantage, and the spell deals maximum damage to it. If you target a nonmagical plant that isn't a creature, such as a tree or shrub, it doesn't make a saving throw; it simply withers and dies.", - "document": "srd", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level of higher, the damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d8", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "blindnessdeafness", - "fields": { - "name": "Blindness/Deafness", - "desc": "You can blind or deafen a foe. Choose one creature that you can see within range to make a constitution saving throw. If it fails, the target is either blinded or deafened (your choice) for the duration. At the end of each of its turns, the target can make a constitution saving throw. On a success, the spell ends.", - "document": "srd", - "level": 2, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "blink", - "fields": { - "name": "Blink", - "desc": "Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 11 or higher, you vanish from your current plane of existence and appear in the Ethereal Plane (the spell fails and the casting is wasted if you were already on that plane). At the start of your next turn, and when the spell ends if you are on the Ethereal Plane, you return to an unoccupied space of your choice that you can see within 10 feet of the space you vanished from. If no unoccupied space is available within that range, you appear in the nearest unoccupied space (chosen at random if more than one space is equally near). You can dismiss this spell as an action. While on the Ethereal Plane, you can see and hear the plane you originated from, which is cast in shades of gray, and you can't see anything there more than 60 feet away. You can only affect and be affected by other creatures on the Ethereal Plane. Creatures that aren't there can't perceive you or interact with you, unless they have the ability to do so.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "blur", - "fields": { - "name": "Blur", - "desc": "Your body becomes blurred, shifting and wavering to all who can see you. For the duration, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight.", - "document": "srd", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "branding-smite", - "fields": { - "name": "Branding Smite", - "desc": "The next time you hit a creature with a weapon attack before this spell ends, the weapon gleams with astral radiance as you strike. The attack deals an extra 2d6 radiant damage to the target, which becomes visible if it's invisible, and the target sheds dim light in a 5-­--foot radius and can't become invisible until the spell ends.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the extra damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "burning-hands", - "fields": { - "name": "Burning Hands", - "desc": "As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one. The fire ignites any flammable objects in the area that aren't being worn or carried.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 15, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "call-lightning", - "fields": { - "name": "Call Lightning", - "desc": "A storm cloud appears in the shape of a cylinder that is 10 feet tall with a 60-foot radius, centered on a point you can see 100 feet directly above you. The spell fails if you can't see a point in the air where the storm cloud could appear (for example, if you are in a room that can't accommodate the cloud). When you cast the spell, choose a point you can see within range. A bolt of lightning flashes down from the cloud to that point. Each creature within 5 feet of that point must make a dexterity saving throw. A creature takes 3d10 lightning damage on a failed save, or half as much damage on a successful one. On each of your turns until the spell ends, you can use your action to call down lightning in this way again, targeting the same point or a different one. If you are outdoors in stormy conditions when you cast this spell, the spell gives you control over the existing storm instead of creating a new one. Under such conditions, the spell's damage increases by 1d10.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th or higher level, the damage increases by 1d10 for each slot level above 3rd.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d10", - "damage_types": [ - "lightning" - ], - "duration": "10 minutes", - "shape_type": "cylinder", - "shape_magnitude": 60, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "calm-emotions", - "fields": { - "name": "Calm Emotions", - "desc": "You attempt to suppress strong emotions in a group of people. Each humanoid in a 20-foot-radius sphere centered on a point you choose within range must make a charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, choose one of the following two effects. You can suppress any effect causing a target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime. Alternatively, you can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its friends being harmed. When the spell ends, the creature becomes hostile again, unless the DM rules otherwise.", - "document": "srd", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "chain-lightning", - "fields": { - "name": "Chain Lightning", - "desc": "You create a bolt of lightning that arcs toward a target of your choice that you can see within range. Three bolts then leap from that target to as many as three other targets, each of which must be within 30 feet of the first target. A target can be a creature or an object and can be targeted by only one of the bolts. A target must make a dexterity saving throw. The target takes 10d8 lightning damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, one additional bolt leaps from the first target to another target for each slot level above 6th.", - "target_type": "creature", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fur; a piece of amber, glass, or a crystal rod; and three silver pins.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "10d8", - "damage_types": [ - "lightning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "charm-person", - "fields": { - "name": "Charm Person", - "desc": "You attempt to charm a humanoid you can see within range. It must make a wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "chill-touch", - "fields": { - "name": "Chill Touch", - "desc": "You create a ghostly, skeletal hand in the space of a creature within range. Make a ranged spell attack against the creature to assail it with the chill of the grave. On a hit, the target takes 1d8 necrotic damage, and it can't regain hit points until the start of your next turn. Until then, the hand clings to the target. If you hit an undead target, it also has disadvantage on attack rolls against you until the end of your next turn.", - "document": "srd", - "level": 0, - "school": "necromancy", - "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "circle-of-death", - "fields": { - "name": "Circle of Death", - "desc": "A sphere of negative energy ripples out in a 60-foot-radius sphere from a point within range. Each creature in that area must make a constitution saving throw. A target takes 8d6 necrotic damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "level": 6, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 2d6 for each slot level above 6th.", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "The powder of a crushed black pearl worth at least 500 gp.", - "material_cost": "500.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 60, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "clairvoyance", - "fields": { - "name": "Clairvoyance", - "desc": "You create an invisible sensor within range in a location familiar to you (a place you have visited or seen before) or in an obvious location that is unfamiliar to you (such as behind a door, around a corner, or in a grove of trees). The sensor remains in place for the duration, and it can't be attacked or otherwise interacted with. When you cast the spell, you choose seeing or hearing. You can use the chosen sense through the sensor as if you were in its space. As your action, you can switch between seeing and hearing. A creature that can see the sensor (such as a creature benefiting from see invisibility or truesight) sees a luminous, intangible orb about the size of your fist.", - "document": "srd", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "1 mile", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A focus worth at least 100gp, either a jeweled horn for hearing or a glass eye for seeing.", - "material_cost": "100.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "clone", - "fields": { - "name": "Clone", - "desc": "This spell grows an inert duplicate of a living creature as a safeguard against death. This clone forms inside a sealed vessel and grows to full size and maturity after 120 days; you can also choose to have the clone be a younger version of the same creature. It remains inert and endures indefinitely, as long as its vessel remains undisturbed. At any time after the clone matures, if the original creature dies, its soul transfers to the clone, provided that the soul is free and willing to return. The clone is physically identical to the original and has the same personality, memories, and abilities, but none of the original's equipment. The original creature's physical remains, if they still exist, become inert and can't thereafter be restored to life, since the creature's soul is elsewhere.", - "document": "srd", - "level": 8, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A diamond worth at least 1,000 gp and at least 1 cubic inch of flesh of the creature that is to be cloned, which the spell consumes, and a vessel worth at least 2,000 gp that has a sealable lid and is large enough to hold a Medium creature, such as a huge urn, coffin, mud-filled cyst in the ground, or crystal container filled with salt water.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "cloudkill", - "fields": { - "name": "Cloudkill", - "desc": "You create a 20-foot-radius sphere of poisonous, yellow-green fog centered on a point you choose within range. The fog spreads around corners. It lasts for the duration or until strong wind disperses the fog, ending the spell. Its area is heavily obscured. When a creature enters the spell's area for the first time on a turn or starts its turn there, that creature must make a constitution saving throw. The creature takes 5d8 poison damage on a failed save, or half as much damage on a successful one. Creatures are affected even if they hold their breath or don't need to breathe. The fog moves 10 feet away from you at the start of each of your turns, rolling along the surface of the ground. The vapors, being heavier than air, sink to the lowest level of the land, even pouring down openings.", - "document": "srd", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "poison" - ], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "color-spray", - "fields": { - "name": "Color Spray", - "desc": "A dazzling array of flashing, colored light springs from your hand. Roll 6d10; the total is how many hit points of creatures this spell can effect. Creatures in a 15-foot cone originating from you are affected in ascending order of their current hit points (ignoring unconscious creatures and creatures that can't see). Starting with the creature that has the lowest current hit points, each creature affected by this spell is blinded until the spell ends. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.", - "document": "srd", - "level": 1, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d10 for each slot level above 1st.", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of powder or sand that is colored red, yellow, and blue.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": "cone", - "shape_magnitude": 15, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "command", - "fields": { - "name": "Command", - "desc": "You speak a one-word command to a creature you can see within range. The target must succeed on a wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it. Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends\n\n **Approach.** The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.\n\n**Drop** The target drops whatever it is holding and then ends its turn.\n\n**Flee.** The target spends its turn moving away from you by the fastest available means.\n\n**Grovel.** The target falls prone and then ends its turn.\n\n**Halt.** The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "commune", - "fields": { - "name": "Commune", - "desc": "You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question. Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead. If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.", - "document": "srd", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Incense and a vial of holy or unholy water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "commune-with-nature", - "fields": { - "name": "Commune with Nature", - "desc": "You briefly become one with nature and gain knowledge of the surrounding territory. In the outdoors, the spell gives you knowledge of the land within 3 miles of you. In caves and other natural underground settings, the radius is limited to 300 feet. The spell doesn't function where nature has been replaced by construction, such as in dungeons and towns. You instantly gain knowledge of up to three facts of your choice about any of the following subjects as they relate to the area: \n- terrain and bodies of water \n- prevalent plants, minerals, animals, or peoples \n- powerful celestials, fey, fiends, elementals, or undead \n- influence from other planes of existence \n- buildings For example, you could determine the location of powerful undead in the area, the location of major sources of safe drinking water, and the location of any nearby towns.", - "document": "srd", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "comprehend-languages", - "fields": { - "name": "Comprehend Languages", - "desc": "For the duration, you understand the literal meaning of any spoken language that you hear. You also understand any written language that you see, but you must be touching the surface on which the words are written. It takes about 1 minute to read one page of text. This spell doesn't decode secret messages in a text or a glyph, such as an arcane sigil, that isn't part of a written language.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of soot and salt.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "compulsion", - "fields": { - "name": "Compulsion", - "desc": "Creatures of your choice that you can see within range and that can hear you must make a Wisdom saving throw. A target automatically succeeds on this saving throw if it can't be charmed. On a failed save, a target is affected by this spell. Until the spell ends, you can use a bonus action on each of your turns to designate a direction that is horizontal to you. Each affected target must use as much of its movement as possible to move in that direction on its next turn. It can take its action before it moves. After moving in this way, it can make another Wisdom saving throw to try to end the effect. A target isn't compelled to move into an obviously deadly hazard, such as a fire or pit, but it will provoke opportunity attacks to move in the designated direction.", - "document": "srd", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "cone-of-cold", - "fields": { - "name": "Cone of Cold", - "desc": "A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one. A creature killed by this spell becomes a frozen statue until it thaws.", - "document": "srd", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small crystal or glass cone.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d8", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 60, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "confusion", - "fields": { - "name": "Confusion", - "desc": "This spell assaults and twists creatures' minds, spawning delusions and provoking uncontrolled action. Each creature in a 10 foot radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\n\nAn affected target can't take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|---|---|\n| 1 | The creature uses all its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. The creature doesn’t take an action this turn. |\n| 2-6 | The creature doesn’t move or take actions this turn. |\n| 7-8 | The creature uses its action to make a melee attack against a randomly determined creature within its reach. If there is no creature within its reach, the creature does nothing this turn. |\n| 9-10 | The creature can act and move normally. |\n\nAt the end of each of its turns, an affected target can make a Wisdom saving throw. If it succeeds, this effect ends for that target.", - "document": "srd", - "level": 4, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Three walnut shells.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-animals", - "fields": { - "name": "Conjure Animals", - "desc": "You summon fey spirits that take the form of beasts and appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears: \n- One beast of challenge rating 2 or lower \n- Two beasts of challenge rating 1 or lower \n- Four beasts of challenge rating 1/2 or lower \n- Eight beasts of challenge rating 1/4 or lower \n- Each beast is also considered fey, and it disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 5th-level slot, three times as many with a 7th-level, and four times as many with a 9th-level slot.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-celestial", - "fields": { - "name": "Conjure Celestial", - "desc": "You summon a celestial of challenge rating 4 or lower, which appears in an unoccupied space that you can see within range. The celestial disappears when it drops to 0 hit points or when the spell ends. The celestial is friendly to you and your companions for the duration. Roll initiative for the celestial, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the celestial, it defends itself from hostile creatures but otherwise takes no actions. The DM has the celestial's statistics.", - "document": "srd", - "level": 7, - "school": "conjuration", - "higher_level": "When you cast this spell using a 9th-level spell slot, you summon a celestial of challenge rating 5 or lower.", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-elemental", - "fields": { - "name": "Conjure Elemental", - "desc": "You call forth an elemental servant. Choose an area of air, earth, fire, or water that fills a 10-foot cube within range. An elemental of challenge rating 5 or lower appropriate to the area you chose appears in an unoccupied space within 10 feet of it. For example, a fire elemental emerges from a bonfire, and an earth elemental rises up from the ground. The elemental disappears when it drops to 0 hit points or when the spell ends. The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions. If your concentration is broken, the elemental doesn't disappear. Instead, you lose control of the elemental, it becomes hostile toward you and your companions, and it might attack. An uncontrolled elemental can't be dismissed by you, and it disappears 1 hour after you summoned it. The DM has the elemental's statistics.", - "document": "srd", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the challenge rating increases by 1 for each slot level above 5th.", - "target_type": "area", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Burning incense for air, soft clay for earth, sulfur and phosphorus for fire, or water and sand for water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-fey", - "fields": { - "name": "Conjure Fey", - "desc": "You summon a fey creature of challenge rating 6 or lower, or a fey spirit that takes the form of a beast of challenge rating 6 or lower. It appears in an unoccupied space that you can see within range. The fey creature disappears when it drops to 0 hit points or when the spell ends. The fey creature is friendly to you and your companions for the duration. Roll initiative for the creature, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the fey creature, it defends itself from hostile creatures but otherwise takes no actions. If your concentration is broken, the fey creature doesn't disappear. Instead, you lose control of the fey creature, it becomes hostile toward you and your companions, and it might attack. An uncontrolled fey creature can't be dismissed by you, and it disappears 1 hour after you summoned it. The DM has the fey creature's statistics.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the challenge rating increases by 1 for each slot level above 6th.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-minor-elementals", - "fields": { - "name": "Conjure Minor Elementals", - "desc": "You summon elementals that appear in unoccupied spaces that you can see within range. You choose one the following options for what appears: \n- One elemental of challenge rating 2 or lower \n- Two elementals of challenge rating 1 or lower \n- Four elementals of challenge rating 1/2 or lower \n- Eight elementals of challenge rating 1/4 or lower. An elemental summoned by this spell disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "conjure-woodland-beings", - "fields": { - "name": "Conjure Woodland Beings", - "desc": "You summon fey creatures that appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears: \n- One fey creature of challenge rating 2 or lower \n- Two fey creatures of challenge rating 1 or lower \n- Four fey creatures of challenge rating 1/2 or lower \n- Eight fey creatures of challenge rating 1/4 or lower A summoned creature disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which have their own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "One holly berry per creature summoned.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "contact-other-plane", - "fields": { - "name": "Contact Other Plane", - "desc": "You mentally contact a demigod, the spirit of a long-dead sage, or some other mysterious entity from another plane. Contacting this extraplanar intelligence can strain or even break your mind. When you cast this spell, make a DC 15 intelligence saving throw. On a failure, you take 6d6 psychic damage and are insane until you finish a long rest. While insane, you can't take actions, can't understand what other creatures say, can't read, and speak only in gibberish. A greater restoration spell cast on you ends this effect. On a successful save, you can ask the entity up to five questions. You must ask your questions before the spell ends. The DM answers each question with one word, such as \"yes,\" \"no,\" \"maybe,\" \"never,\" \"irrelevant,\" or \"unclear\" (if the entity doesn't know the answer to the question). If a one-word answer would be misleading, the DM might instead offer a short phrase as an answer.", - "document": "srd", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "contagion", - "fields": { - "name": "Contagion", - "desc": "Your touch inflicts disease. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with a disease of your choice from any of the ones described below. At the end of each of the target's turns, it must make a constitution saving throw. After failing three of these saving throws, the disease's effects last for the duration, and the creature stops making these saves. After succeeding on three of these saving throws, the creature recovers from the disease, and the spell ends. Since this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease's effects apply to it.\n\n**Blinding Sickness.** Pain grips the creature's mind, and its eyes turn milky white. The creature has disadvantage on wisdom checks and wisdom saving throws and is blinded.\n\n**Filth Fever.** A raging fever sweeps through the creature's body. The creature has disadvantage on strength checks, strength saving throws, and attack rolls that use Strength.\n\n**Flesh Rot.** The creature's flesh decays. The creature has disadvantage on Charisma checks and vulnerability to all damage.\n\n**Mindfire.** The creature's mind becomes feverish. The creature has disadvantage on intelligence checks and intelligence saving throws, and the creature behaves as if under the effects of the confusion spell during combat.\n\n**Seizure.** The creature is overcome with shaking. The creature has disadvantage on dexterity checks, dexterity saving throws, and attack rolls that use Dexterity.\n\n**Slimy Doom.** The creature begins to bleed uncontrollably. The creature has disadvantage on constitution checks and constitution saving throws. In addition, whenever the creature takes damage, it is stunned until the end of its next turn.", - "document": "srd", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "7 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "contingency", - "fields": { - "name": "Contingency", - "desc": "Choose a spell of 5th level or lower that you can cast, that has a casting time of 1 action, and that can target you. You cast that spell-called the contingent spell-as part of casting contingency, expending spell slots for both, but the contingent spell doesn't come into effect. Instead, it takes effect when a certain circumstance occurs. You describe that circumstance when you cast the two spells. For example, a contingency cast with water breathing might stipulate that water breathing comes into effect when you are engulfed in water or a similar liquid. The contingent spell takes effect immediately after the circumstance is met for the first time, whether or not you want it to. and then contingency ends. The contingent spell takes effect only on you, even if it can normally target others. You can use only one contingency spell at a time. If you cast this spell again, the effect of another contingency spell on you ends. Also, contingency ends on you if its material component is ever not on your person.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A statuette of yourself carved from ivory and decorated with gems worth at least 1,500 gp.", - "material_cost": "1500.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "continual-flame", - "fields": { - "name": "Continual Flame", - "desc": "A flame, equivalent in brightness to a torch, springs forth from an object that you touch. The effect looks like a regular flame, but it creates no heat and doesn't use oxygen. A continual flame can be covered or hidden but not smothered or quenched.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Ruby dust worth 50 gp, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "control-water", - "fields": { - "name": "Control Water", - "desc": "Until the spell ends, you control any freestanding water inside an area you choose that is a cube up to 100 feet on a side. You can choose from any of the following effects when you cast this spell. As an action on your turn, you can repeat the same effect or choose a different one.\n\n**Flood.** You cause the water level of all standing water in the area to rise by as much as 20 feet. If the area includes a shore, the flooding water spills over onto dry land. instead create a 20-foot tall wave that travels from one side of the area to the other and then crashes down. Any Huge or smaller vehicles in the wave's path are carried with it to the other side. Any Huge or smaller vehicles struck by the wave have a 25 percent chance of capsizing. The water level remains elevated until the spell ends or you choose a different effect. If this effect produced a wave, the wave repeats on the start of your next turn while the flood effect lasts\n\n **Part Water.** You cause water in the area to move apart and create a trench. The trench extends across the spell's area, and the separated water forms a wall to either side. The trench remains until the spell ends or you choose a different effect. The water then slowly fills in the trench over the course of the next round until the normal water level is restored.\n\n**Redirect Flow.** You cause flowing water in the area to move in a direction you choose, even if the water has to flow over obstacles, up walls, or in other unlikely directions. The water in the area moves as you direct it, but once it moves beyond the spell's area, it resumes its flow based on the terrain conditions. The water continues to move in the direction you chose until the spell ends or you choose a different effect.\n\n**Whirlpool.** This effect requires a body of water at least 50 feet square and 25 feet deep. You cause a whirlpool to form in the center of the area. The whirlpool forms a vortex that is 5 feet wide at the base, up to 50 feet wide at the top, and 25 feet tall. Any creature or object in the water and within 25 feet of the vortex is pulled 10 feet toward it. A creature can swim away from the vortex by making a Strength (Athletics) check against your spell save DC. When a creature enters the vortex for the first time on a turn or starts its turn there, it must make a strength saving throw. On a failed save, the creature takes 2d8 bludgeoning damage and is caught in the vortex until the spell ends. On a successful save, the creature takes half damage, and isn't caught in the vortex. A creature caught in the vortex can use its action to try to swim away from the vortex as described above, but has disadvantage on the Strength (Athletics) check to do so. The first time each turn that an object enters the vortex, the object takes 2d8 bludgeoning damage; this damage occurs each round it remains in the vortex.", - "document": "srd", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of water and a pinch of dust.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "control-weather", - "fields": { - "name": "Control Weather", - "desc": "You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early. When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal. When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.", - "document": "srd", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Burning incense and bits of earth and wood mixed in water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "counterspell", - "fields": { - "name": "Counterspell", - "desc": "You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "create-food-and-water", - "fields": { - "name": "Create Food and Water", - "desc": "You create 45 pounds of food and 30 gallons of water on the ground or in containers within range, enough to sustain up to fifteen humanoids or five steeds for 24 hours. The food is bland but nourishing, and spoils if uneaten after 24 hours. The water is clean and doesn't go bad.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "create-or-destroy-water", - "fields": { - "name": "Create or Destroy Water", - "desc": "You either create or destroy water.\n\n**Create Water.** You create up to 10 gallons of clean water within range in an open container. Alternatively, the water falls as rain in a 30-foot cube within range\n\n **Destroy Water.** You destroy up to 10 gallons of water in an open container within range. Alternatively, you destroy fog in a 30-foot cube within range.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet, for each slot level above 1st.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of water if creating water, or a few grains of sand if destroying it.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 30, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "create-undead", - "fields": { - "name": "Create Undead", - "desc": "You can cast this spell only at night. Choose up to three corpses of Medium or Small humanoids within range. Each corpse becomes a ghoul under your control. (The DM has game statistics for these creatures.) As a bonus action on each of your turns, you can mentally command any creature you animated with this spell if the creature is within 120 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete. The creature is under your control for 24 hours, after which it stops obeying any command you have given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature before the current 24-hour period ends. This use of the spell reasserts your control over up to three creatures you have animated with this spell, rather than animating new ones.", - "document": "srd", - "level": 6, - "school": "necromancy", - "higher_level": "When you cast this spell using a 7th-level spell slot, you can animate or reassert control over four ghouls. When you cast this spell using an 8th-level spell slot, you can animate or reassert control over five ghouls or two ghasts or wights. When you cast this spell using a 9th-level spell slot, you can animate or reassert control over six ghouls, three ghasts or wights, or two mummies.", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "One clay pot filled with grave dirt, one clay pot filled with brackish water, and one 150 gp black onyx stone for each corpse.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "creation", - "fields": { - "name": "Creation", - "desc": "You pull wisps of shadow material from the Shadowfell to create a nonliving object of vegetable matter within 'range': soft goods, rope, wood, or something similar. You can also use this spell to create mineral objects such as stone, crystal, or metal. The object created must be no larger than a 5-foot cube, and the object must be of a form and material that you have seen before. The duration depends on the object's material. If the object is composed of multiple materials, use the shortest duration\n\n **Vegetable matter** 1 day **Stone or crystal** 12 hours **Precious metals** 1 hour **Gems** 10 minutes **Adamantine or mithral** 1 minute Using any material created by this spell as another spell's material component causes that spell to fail.", - "document": "srd", - "level": 5, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the cube increases by 5 feet for each slot level above 5th.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny piece of matter of the same type of the item you plan to create.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "cure-wounds", - "fields": { - "name": "Cure Wounds", - "desc": "A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "dancing-lights", - "fields": { - "name": "Dancing Lights", - "desc": "You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius. As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of phosphorus or wychwood, or a glowworm.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "darkness", - "fields": { - "name": "Darkness", - "desc": "Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it. If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness. If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "Bat fur and a drop of pitch or piece of coal.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 15, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "darkvision", - "fields": { - "name": "Darkvision", - "desc": "You touch a willing creature to grant it the ability to see in the dark. For the duration, that creature has darkvision out to a range of 60 feet.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Either a pinch of dried carrot or an agate.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "daylight", - "fields": { - "name": "Daylight", - "desc": "A 60-foot-radius sphere of light spreads out from a point you choose within range. The sphere is bright light and sheds dim light for an additional 60 feet. If you chose a point on an object you are holding or one that isn't being worn or carried, the light shines from the object and moves with it. Completely covering the affected object with an opaque object, such as a bowl or a helm, blocks the light. If any of this spell's area overlaps with an area of darkness created by a spell of 3rd level or lower, the spell that created the darkness is dispelled.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": "sphere", - "shape_magnitude": 60, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "death-ward", - "fields": { - "name": "Death Ward", - "desc": "You touch a creature and grant it a measure of protection from death. The first time the target would drop to 0 hit points as a result of taking damage, the target instead drops to 1 hit point, and the spell ends. If the spell is still in effect when the target is subjected to an effect that would kill it instantaneously without dealing damage, that effect is instead negated against the target, and the spell ends.", - "document": "srd", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "delayed-blast-fireball", - "fields": { - "name": "Delayed Blast Fireball", - "desc": "A beam of yellow light flashes from your pointing finger, then condenses to linger at a chosen point within range as a glowing bead for the duration. When the spell ends, either because your concentration is broken or because you decide to end it, the bead blossoms with a low roar into an explosion of flame that spreads around corners. Each creature in a 20-foot-radius sphere centered on that point must make a dexterity saving throw. A creature takes fire damage equal to the total accumulated damage on a failed save, or half as much damage on a successful one. The spell's base damage is 12d6. If at the end of your turn the bead has not yet detonated, the damage increases by 1d6. If the glowing bead is touched before the interval has expired, the creature touching it must make a dexterity saving throw. On a failed save, the spell ends immediately, causing the bead to erupt in flame. On a successful save, the creature can throw the bead up to 40 feet. When it strikes a creature or a solid object, the spell ends, and the bead explodes. The fire damages objects in the area and ignites flammable objects that aren't being worn or carried.", - "document": "srd", - "level": 7, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the base damage increases by 1d6 for each slot level above 7th.", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny ball of bat guano and sulfur.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "demiplane", - "fields": { - "name": "Demiplane", - "desc": "You create a shadowy door on a flat solid surface that you can see within range. The door is large enough to allow Medium creatures to pass through unhindered. When opened, the door leads to a demiplane that appears to be an empty room 30 feet in each dimension, made of wood or stone. When the spell ends, the door disappears, and any creatures or objects inside the demiplane remain trapped there, as the door also disappears from the other side. Each time you cast this spell, you can create a new demiplane, or have the shadowy door connect to a demiplane you created with a previous casting of this spell. Additionally, if you know the nature and contents of a demiplane created by a casting of this spell by another creature, you can have the shadowy door connect to its demiplane instead.", - "document": "srd", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "detect-evil-and-good", - "fields": { - "name": "Detect Evil and Good", - "desc": "For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "detect-magic", - "fields": { - "name": "Detect Magic", - "desc": "For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "detect-poison-and-disease", - "fields": { - "name": "Detect Poison and Disease", - "desc": "For the duration, you can sense the presence and location of poisons, poisonous creatures, and diseases within 30 feet of you. You also identify the kind of poison, poisonous creature, or disease in each case. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A yew leaf.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "detect-thoughts", - "fields": { - "name": "Detect Thoughts", - "desc": "For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected. You initially learn the surface thoughts of the creature-what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends. Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation. You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language. Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.", - "document": "srd", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A copper coin.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dimension-door", - "fields": { - "name": "Dimension Door", - "desc": "You teleport yourself from your current location to any other spot within range. You arrive at exactly the spot desired. It can be a place you can see, one you can visualize, or one you can describe by stating distance and direction, such as \"200 feet straight downward\" or \"upward to the northwest at a 45-degree angle, 300 feet.\" You can bring along objects as long as their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller who is carrying gear up to its carrying capacity. The creature must be within 5 feet of you when you cast this spell. If you would arrive in a place already occupied by an object or a creature, you and any creature traveling with you each take 4d6 force damage, and the spell fails to teleport you.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "500 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "disguise-self", - "fields": { - "name": "Disguise Self", - "desc": "You make yourself - including your clothing, armor, weapons, and other belongings on your person - look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you. The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair. To discern that you are disguised, a creature can use its action to inspect your apperance and must succeed on an Intelligence (Investigation) check against your spell save DC.", - "document": "srd", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "disintegrate", - "fields": { - "name": "Disintegrate", - "desc": "A thin green ray springs from your pointing finger to a target that you can see within range. The target can be a creature, an object, or a creation of magical force, such as the wall created by wall of force. A creature targeted by this spell must make a dexterity saving throw. On a failed save, the target takes 10d6 + 40 force damage. If this damage reduces the target to 0 hit points, it is disintegrated. A disintegrated creature and everything it is wearing and carrying, except magic items, are reduced to a pile of fine gray dust. The creature can be restored to life only by means of a true resurrection or a wish spell. This spell automatically disintegrates a Large or smaller nonmagical object or a creation of magical force. If the target is a Huge or larger object or creation of force, this spell disintegrates a 10-foot-cube portion of it. A magic item is unaffected by this spell.", - "document": "srd", - "level": 6, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 3d6 for each slot level above 6th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A lodestone and a pinch of dust.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "10d6+40", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "dispel-evil-and-good", - "fields": { - "name": "Dispel Evil and Good", - "desc": "Shimmering energy surrounds and protects you from fey, undead, and creatures originating from beyond the Material Plane. For the duration, celestials, elementals, fey, fiends, and undead have disadvantage on attack rolls against you. You can end the spell early by using either of the following special functions.\n\n**Break Enchantment.** As your action, you touch a creature you can reach that is charmed, frightened, or possessed by a celestial, an elemental, a fey, a fiend, or an undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.\n\n**Dismissal.** As your action, make a melee spell attack against a celestial, an elemental, a fey, a fiend, or an undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.", - "document": "srd", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Holy water or powdered silver and iron.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dispel-magic", - "fields": { - "name": "Dispel Magic", - "desc": "Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "divination", - "fields": { - "name": "Divination", - "desc": "Your magic and an offering put you in contact with a god or a god's servants. You ask a single question concerning a specific goal, event, or activity to occur within 7 days. The DM offers a truthful reply. The reply might be a short phrase, a cryptic rhyme, or an omen. The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion. If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.", - "document": "srd", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Incense and a sacrificial offering appropriate to your religion, together worth at least 25gp, which the spell consumes.", - "material_cost": "25.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "divine-favor", - "fields": { - "name": "Divine Favor", - "desc": "Your prayer empowers you with divine radiance. Until the spell ends, your weapon attacks deal an extra 1d4 radiant damage on a hit.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "divine-word", - "fields": { - "name": "Divine Word", - "desc": "You utter a divine word, imbued with the power that shaped the world at the dawn of creation. Choose any number of creatures you can see within range. Each creature that can hear you must make a Charisma saving throw. On a failed save, a creature suffers an effect based on its current hit points: \n- 50hp or less: deafened for 1 minute \n- 40 hp or less: deafened and blinded for 10 minutes \n- 30 hp or less: blinded, deafened and dazed for 1 hour \n- 20 hp or less: killed instantly. Regardless of its current hit points, a celestial, an elemental, a fey, or a fiend that fails its save is forced back to its plane of origin (if it isn't there already) and can't return to your current plane for 24 hours by any means short of a wish spell.", - "document": "srd", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "dominate-beast", - "fields": { - "name": "Dominate Beast", - "desc": "You attempt to beguile a beast that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the beast is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", - "document": "srd", - "level": 4, - "school": "enchantment", - "higher_level": "When you cast this spell with a 5th-­level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-­level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dominate-monster", - "fields": { - "name": "Dominate Monster", - "desc": "You attempt to beguile a creature that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the creature is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", - "document": "srd", - "level": 8, - "school": "enchantment", - "higher_level": "When you cast this spell with a 9th-level spell slot, the duration is concentration, up to 8 hours.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dominate-person", - "fields": { - "name": "Dominate Person", - "desc": "You attempt to beguile a humanoid that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the target is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", - "document": "srd", - "level": 5, - "school": "enchantment", - "higher_level": "When you cast this spell using a 6th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 7th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 8 hours.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "dream", - "fields": { - "name": "Dream", - "desc": "This spell shapes a creature's dreams. Choose a creature known to you as the target of this spell. The target must be on the same plane of existence as you. Creatures that don't sleep, such as elves, can't be contacted by this spell. You, or a willing creature you touch, enters a trance state, acting as a messenger. While in the trance, the messenger is aware of his or her surroundings, but can't take actions or move. If the target is asleep, the messenger appears in the target's dreams and can converse with the target as long as it remains asleep, through the duration of the spell. The messenger can also shape the environment of the dream, creating landscapes, objects, and other images. The messenger can emerge from the trance at any time, ending the effect of the spell early. The target recalls the dream perfectly upon waking. If the target is awake when you cast the spell, the messenger knows it, and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the messenger appears in the target's dreams. You can make the messenger appear monstrous and terrifying to the target. If you do, the messenger can deliver a message of no more than ten words and then the target must make a wisdom saving throw. On a failed save, echoes of the phantasmal monstrosity spawn a nightmare that lasts the duration of the target's sleep and prevents the target from gaining any benefit from that rest. In addition, when the target wakes up, it takes 3d6 psychic damage. If you have a body part, lock of hair, clipping from a nail, or similar portion of the target's body, the target makes its saving throw with disadvantage.", - "document": "srd", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Special", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A handful of sand, a dab of ink, and a writing quill plucked from a sleeping bird.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "psychic" - ], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "druidcraft", - "fields": { - "name": "Druidcraft", - "desc": "Whispering to the spirits of nature, you create one of the following effects within range: \n- You create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, falling snowflakes for snow, and so on. This effect persists for 1 round. \n- You instantly make a flower blossom, a seed pod open, or a leaf bud bloom. \n- You create an instantaneous, harmless sensory effect, such as falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-­--foot cube. \n- You instantly light or snuff out a candle, a torch, or a small campfire.", - "document": "srd", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "earthquake", - "fields": { - "name": "Earthquake", - "desc": "You create a seismic disturbance at a point on the ground that you can see within range. For the duration, an intense tremor rips through the ground in a 100-foot-radius circle centered on that point and shakes creatures and structures in contact with the ground in that area. The ground in the area becomes difficult terrain. Each creature on the ground that is concentrating must make a constitution saving throw. On a failed save, the creature's concentration is broken. When you cast this spell and at the end of each turn you spend concentrating on it, each creature on the ground in the area must make a dexterity saving throw. On a failed save, the creature is knocked prone. This spell can have additional effects depending on the terrain in the area, as determined by the DM. \n\n**Fissures.** Fissures open throughout the spell's area at the start of your next turn after you cast the spell. A total of 1d6 such fissures open in locations chosen by the DM. Each is 1d10 × 10 feet deep, 10 feet wide, and extends from one edge of the spell's area to the opposite side. A creature standing on a spot where a fissure opens must succeed on a dexterity saving throw or fall in. A creature that successfully saves moves with the fissure's edge as it opens. A fissure that opens beneath a structure causes it to automatically collapse (see below). \n\n**Structures.** The tremor deals 50 bludgeoning damage to any structure in contact with the ground in the area when you cast the spell and at the start of each of your turns until the spell ends. If a structure drops to 0 hit points, it collapses and potentially damages nearby creatures. A creature within half the distance of a structure's height must make a dexterity saving throw. On a failed save, the creature takes 5d6 bludgeoning damage, is knocked prone, and is buried in the rubble, requiring a DC 20 Strength (Athletics) check as an action to escape. The DM can adjust the DC higher or lower, depending on the nature of the rubble. On a successful save, the creature takes half as much damage and doesn't fall prone or become buried.", - "document": "srd", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "500 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of dirt, a piece of rock, and a lump of clay.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "5d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "eldritch-blast", - "fields": { - "name": "Eldritch Blast", - "desc": "A beam of crackling energy streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 force damage. The spell creates more than one beam when you reach higher levels: two beams at 5th level, three beams at 11th level, and four beams at 17th level. You can direct the beams at the same target or at different ones. Make a separate attack roll for each beam.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d10", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "enhance-ability", - "fields": { - "name": "Enhance Ability", - "desc": "You touch a creature and bestow upon it a magical enhancement. Choose one of the following effects; the target gains that effect until the spell ends.\n\n**Bear's Endurance.** The target has advantage on constitution checks. It also gains 2d6 temporary hit points, which are lost when the spell ends.\n\n**Bull's Strength.** The target has advantage on strength checks, and his or her carrying capacity doubles.\n\n**Cat's Grace.** The target has advantage on dexterity checks. It also doesn't take damage from falling 20 feet or less if it isn't incapacitated.\n\n**Eagle's Splendor.** The target has advantage on Charisma checks\n\n **Fox's Cunning.** The target has advantage on intelligence checks.\n\n**Owl's Wisdom.** The target has advantage on wisdom checks.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Fur or a feather from a beast.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "enlargereduce", - "fields": { - "name": "Enlarge/Reduce", - "desc": "You cause a creature or an object you can see within range to grow larger or smaller for the duration. Choose either a creature or an object that is neither worn nor carried. If the target is unwilling, it can make a Constitution saving throw. On a success, the spell has no effect. If the target is a creature, everything it is wearing and carrying changes size with it. Any item dropped by an affected creature returns to normal size at once. \n\n**Enlarge.** The target's size doubles in all dimensions, and its weight is multiplied by eight. This growth increases its size by one category-from Medium to Large, for example. If there isn't enough room for the target to double its size, the creature or object attains the maximum possible size in the space available. Until the spell ends, the target also has advantage on Strength checks and Strength saving throws. The target's weapons also grow to match its new size. While these weapons are enlarged, the target's attacks with them deal 1d4 extra damage. \n\n**Reduce.** The target's size is halved in all dimensions, and its weight is reduced to one-­eighth of normal. This reduction decreases its size by one category-from Medium to Small, for example. Until the spell ends, the target also has disadvantage on Strength checks and Strength saving throws. The target's weapons also shrink to match its new size. While these weapons are reduced, the target's attacks with them deal 1d4 less damage (this can't reduce the damage below 1).", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch iron powder.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "entangle", - "fields": { - "name": "Entangle", - "desc": "Grasping weeds and vines sprout from the ground in a 20-foot square starting form a point within range. For the duration, these plants turn the ground in the area into difficult terrain. A creature in the area when you cast the spell must succeed on a strength saving throw or be restrained by the entangling plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself. When the spell ends, the conjured plants wilt away.", - "document": "srd", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "enthrall", - "fields": { - "name": "Enthrall", - "desc": "You weave a distracting string of words, causing creatures of your choice that you can see within range and that can hear you to make a wisdom saving throw. Any creature that can't be charmed succeeds on this saving throw automatically, and if you or your companions are fighting a creature, it has advantage on the save. On a failed save, the target has disadvantage on Wisdom (Perception) checks made to perceive any creature other than you until the spell ends or until the target can no longer hear you. The spell ends if you are incapacitated or can no longer speak.", - "document": "srd", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "etherealness", - "fields": { - "name": "Etherealness", - "desc": "You step into the border regions of the Ethereal Plane, in the area where it overlaps with your current plane. You remain in the Border Ethereal for the duration or until you use your action to dismiss the spell. During this time, you can move in any direction. If you move up or down, every foot of movement costs an extra foot. You can see and hear the plane you originated from, but everything there looks gray, and you can't see anything more than 60 feet away. While on the Ethereal Plane, you can only affect and be affected by other creatures on that plane. Creatures that aren't on the Ethereal Plane can't perceive you and can't interact with you, unless a special ability or magic has given them the ability to do so. You ignore all objects and effects that aren't on the Ethereal Plane, allowing you to move through objects you perceive on the plane you originated from. When the spell ends, you immediately return to the plane you originated from in the spot you currently occupy. If you occupy the same spot as a solid object or creature when this happens, you are immediately shunted to the nearest unoccupied space that you can occupy and take force damage equal to twice the number of feet you are moved. This spell has no effect if you cast it while you are on the Ethereal Plane or a plane that doesn't border it, such as one of the Outer Planes.", - "document": "srd", - "level": 7, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you can target up to three willing creatures (including you) for each slot level above 7th. The creatures must be within 10 feet of you when you cast the spell.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "expeditious-retreat", - "fields": { - "name": "Expeditious Retreat", - "desc": "This spell allows you to move at an incredible pace. When you cast this spell, and then as a bonus action on each of your turns until the spell ends, you can take the Dash action.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "eyebite", - "fields": { - "name": "Eyebite", - "desc": "For the spell's duration, your eyes become an inky void imbued with dread power. One creature of your choice within 60 feet of you that you can see must succeed on a wisdom saving throw or be affected by one of the following effects of your choice for the duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of eyebite.\n\n**Asleep.** The target falls unconscious. It wakes up if it takes any damage or if another creature uses its action to shake the sleeper awake.\n\n**Panicked.** The target is frightened of you. On each of its turns, the frightened creature must take the Dash action and move away from you by the safest and shortest available route, unless there is nowhere to move. If the target moves to a place at least 60 feet away from you where it can no longer see you, this effect ends\n\n **Sickened.** The target has disadvantage on attack rolls and ability checks. At the end of each of its turns, it can make another wisdom saving throw. If it succeeds, the effect ends.", - "document": "srd", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "fabricate", - "fields": { - "name": "Fabricate", - "desc": "You convert raw materials into products of the same material. For example, you can fabricate a wooden bridge from a clump of trees, a rope from a patch of hemp, and clothes from flax or wool. Choose raw materials that you can see within range. You can fabricate a Large or smaller object (contained within a 10-foot cube, or eight connected 5-foot cubes), given a sufficient quantity of raw material. If you are working with metal, stone, or another mineral substance, however, the fabricated object can be no larger than Medium (contained within a single 5-foot cube). The quality of objects made by the spell is commensurate with the quality of the raw materials. Creatures or magic items can't be created or transmuted by this spell. You also can't use it to create items that ordinarily require a high degree of craftsmanship, such as jewelry, weapons, glass, or armor, unless you have proficiency with the type of artisan's tools used to craft such objects.", - "document": "srd", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "faerie-fire", - "fields": { - "name": "Faerie Fire", - "desc": "Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius. Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "faithful-hound", - "fields": { - "name": "Faithful Hound", - "desc": "You conjure a phantom watchdog in an unoccupied space that you can see within range, where it remains for the duration, until you dismiss it as an action, or until you move more than 100 feet away from it. The hound is invisible to all creatures except you and can't be harmed. When a Small or larger creature comes within 30 feet of it without first speaking the password that you specify when you cast this spell, the hound starts barking loudly. The hound sees invisible creatures and can see into the Ethereal Plane. It ignores illusions. At the start of each of your turns, the hound attempts to bite one creature within 5 feet of it that is hostile to you. The hound's attack bonus is equal to your spellcasting ability modifier + your proficiency bonus. On a hit, it deals 4d8 piercing damage.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny silver whistle, a piece of bone, and a thread", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "false-life", - "fields": { - "name": "False Life", - "desc": "Bolstering yourself with a necromantic facsimile of life, you gain 1d4 + 4 temporary hit points for the duration.", - "document": "srd", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you gain 5 additional temporary hit points for each slot level above 1st.", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small amount of alcohol or distilled spirits.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fear", - "fields": { - "name": "Fear", - "desc": "You project a phantasmal image of a creature's worst fears. Each creature in a 30-foot cone must succeed on a wisdom saving throw or drop whatever it is holding and become frightened for the duration. While frightened by this spell, a creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. If the creature ends its turn in a location where it doesn't have line of sight to you, the creature can make a wisdom saving throw. On a successful save, the spell ends for that creature.", - "document": "srd", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A white feather or the heart of a hen.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "feather-fall", - "fields": { - "name": "Feather Fall", - "desc": "Choose up to five falling creatures within range. A falling creature's rate of descent slows to 60 feet per round until the spell ends. If the creature lands before the spell ends, it takes no falling damage and can land on its feet, and the spell ends for that creature.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "A small feather or a piece of down.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "feeblemind", - "fields": { - "name": "Feeblemind", - "desc": "You blast the mind of a creature that you can see within range, attempting to shatter its intellect and personality. The target takes 4d6 psychic damage and must make an intelligence saving throw. On a failed save, the creature's Intelligence and Charisma scores become 1. The creature can't cast spells, activate magic items, understand language, or communicate in any intelligible way. The creature can, however, identify its friends, follow them, and even protect them. At the end of every 30 days, the creature can repeat its saving throw against this spell. If it succeeds on its saving throw, the spell ends. The spell can also be ended by greater restoration, heal, or wish.", - "document": "srd", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A handful of clay, crystal, glass, or mineral spheres.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "find-familiar", - "fields": { - "name": "Find Familiar", - "desc": "You gain the service of a familiar, a spirit that takes an animal form you choose: bat, cat, crab, frog (toad), hawk, lizard, octopus, owl, poisonous snake, fish (quipper), rat, raven, sea horse, spider, or weasel. Appearing in an unoccupied space within range, the familiar has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of a beast. Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal. When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again. While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses. As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you. You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature. Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your attack modifier for the roll.", - "document": "srd", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "10 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "10 gp worth of charcoal, incense, and herbs that must be consumed by fire in a brass brazier", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "find-steed", - "fields": { - "name": "Find Steed", - "desc": "You summon a spirit that assumes the form of an unusually intelligent, strong, and loyal steed, creating a long-lasting bond with it. Appearing in an unoccupied space within range, the steed takes on a form that you choose, such as a warhorse, a pony, a camel, an elk, or a mastiff. (Your DM might allow other animals to be summoned as steeds.) The steed has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of its normal type. Additionally, if your steed has an Intelligence of 5 or less, its Intelligence becomes 6, and it gains the ability to understand one language of your choice that you speak. Your steed serves you as a mount, both in combat and out, and you have an instinctive bond with it that allows you to fight as a seamless unit. While mounted on your steed, you can make any spell you cast that targets only you also target your steed. When the steed drops to 0 hit points, it disappears, leaving behind no physical form. You can also dismiss your steed at any time as an action, causing it to disappear. In either case, casting this spell again summons the same steed, restored to its hit point maximum. While your steed is within 1 mile of you, you can communicate with it telepathically. You can't have more than one steed bonded by this spell at a time. As an action, you can release the steed from its bond at any time, causing it to disappear.", - "document": "srd", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "find-the-path", - "fields": { - "name": "Find the Path", - "desc": "This spell allows you to find the shortest, most direct physical route to a specific fixed location that you are familiar with on the same plane of existence. If you name a destination on another plane of existence, a destination that moves (such as a mobile fortress), or a destination that isn't specific (such as \"a green dragon's lair\"), the spell fails. For the duration, as long as you are on the same plane of existence as the destination, you know how far it is and in what direction it lies. While you are traveling there, whenever you are presented with a choice of paths along the way, you automatically determine which path is the shortest and most direct route (but not necessarily the safest route) to the destination.", - "document": "srd", - "level": 6, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A set of divinatory tools-such as bones, ivory sticks, cards, teeth, or carved runes-worth 100gp and an object from the location you wish to find.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "find-traps", - "fields": { - "name": "Find Traps", - "desc": "You sense the presence of any trap within range that is within line of sight. A trap, for the purpose of this spell, includes anything that would inflict a sudden or unexpected effect you consider harmful or undesirable, which was specifically intended as such by its creator. Thus, the spell would sense an area affected by the alarm spell, a glyph of warding, or a mechanical pit trap, but it would not reveal a natural weakness in the floor, an unstable ceiling, or a hidden sinkhole. This spell merely reveals that a trap is present. You don't learn the location of each trap, but you do learn the general nature of the danger posed by a trap you sense.", - "document": "srd", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "finger-of-death", - "fields": { - "name": "Finger of Death", - "desc": "You send negative energy coursing through a creature that you can see within range, causing it searing pain. The target must make a constitution saving throw. It takes 7d8 + 30 necrotic damage on a failed save, or half as much damage on a successful one. A humanoid killed by this spell rises at the start of your next turn as a zombie that is permanently under your command, following your verbal orders to the best of its ability.", - "document": "srd", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "7d8+30", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fire-bolt", - "fields": { - "name": "Fire Bolt", - "desc": "You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d10", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fire-shield", - "fields": { - "name": "Fire Shield", - "desc": "Thin and vaporous flame surround your body for the duration of the spell, radiating a bright light bright light in a 10-foot radius and dim light for an additional 10 feet. You can end the spell using an action to make it disappear. The flames are around you a heat shield or cold, your choice. The heat shield gives you cold damage resistance and the cold resistance to fire damage. In addition, whenever a creature within 5 feet of you hits you with a melee attack, flames spring from the shield. The attacker then suffers 2d8 points of fire damage or cold, depending on the model.", - "document": "srd", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A little phosphorus or a firefly.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fire-storm", - "fields": { - "name": "Fire Storm", - "desc": "A storm made up of sheets of roaring flame appears in a location you choose within range. The area of the storm consists of up to ten 10-foot cubes, which you can arrange as you wish. Each cube must have at least one face adjacent to the face of another cube. Each creature in the area must make a dexterity saving throw. It takes 7d10 fire damage on a failed save, or half as much damage on a successful one. The fire damages objects in the area and ignites flammable objects that aren't being worn or carried. If you choose, plant life in the area is unaffected by this spell.", - "document": "srd", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "7d10", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fireball", - "fields": { - "name": "Fireball", - "desc": "A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one. The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny ball of bat guano and sulfur.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "flame-blade", - "fields": { - "name": "Flame Blade", - "desc": "You evoke a fiery blade in your free hand. The blade is similar in size and shape to a scimitar, and it lasts for the duration. If you let go of the blade, it disappears, but you can evoke the blade again as a bonus action. You can use your action to make a melee spell attack with the fiery blade. On a hit, the target takes 3d6 fire damage. The flaming blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for every two slot levels above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Leaf of sumac.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "3d6", - "damage_types": [ - "fire" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "flame-strike", - "fields": { - "name": "Flame Strike", - "desc": "A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high cylinder centered on a point within range must make a dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Pinch of sulfur.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "flaming-sphere", - "fields": { - "name": "Flaming Sphere", - "desc": "A 5-foot-diameter sphere of fire appears in an unoccupied space of your choice within range and lasts for the duration. Any creature that ends its turn within 5 feet of the sphere must make a dexterity saving throw. The creature takes 2d6 fire damage on a failed save, or half as much damage on a successful one. As a bonus action, you can move the sphere up to 30 feet. If you ram the sphere into a creature, that creature must make the saving throw against the sphere's damage, and the sphere stops moving this turn. When you move the sphere, you can direct it over barriers up to 5 feet tall and jump it across pits up to 10 feet wide. The sphere ignites flammable objects not being worn or carried, and it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", - "document": "srd", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of tallow, a pinch of brimstone, and a dusting of powdered iron.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "flesh-to-stone", - "fields": { - "name": "Flesh to Stone", - "desc": "You attempt to turn one creature that you can see within range into stone. If the target's body is made of flesh, the creature must make a constitution saving throw. On a failed save, it is restrained as its flesh begins to harden. On a successful save, the creature isn't affected. A creature restrained by this spell must make another constitution saving throw at the end of each of its turns. If it successfully saves against this spell three times, the spell ends. If it fails its saves three times, it is turned to stone and subjected to the petrified condition for the duration. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind. If the creature is physically broken while petrified, it suffers from similar deformities if it reverts to its original state. If you maintain your concentration on this spell for the entire possible duration, the creature is turned to stone until the effect is removed.", - "document": "srd", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of lime, water, and earth.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "floating-disk", - "fields": { - "name": "Floating Disk", - "desc": "This spell creates a circular, horizontal plane of force, 3 feet in diameter and 1 inch thick, that floats 3 feet above the ground in an unoccupied space of your choice that you can see within range. The disk remains for the duration, and can hold up to 500 pounds. If more weight is placed on it, the spell ends, and everything on the disk falls to the ground. The disk is immobile while you are within 20 feet of it. If you move more than 20 feet away from it, the disk follows you so that it remains within 20 feet of you. If can move across uneven terrain, up or down stairs, slopes and the like, but it can't cross an elevation change of 10 feet or more. For example, the disk can't move across a 10-foot-deep pit, nor could it leave such a pit if it was created at the bottom. If you move more than 100 feet away from the disk (typically because it can't move around an obstacle to follow you), the spell ends.", - "document": "srd", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of mercury.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "fly", - "fields": { - "name": "Fly", - "desc": "You touch a willing creature. The target gains a flying speed of 60 feet for the duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A wing feather from any bird.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "fog-cloud", - "fields": { - "name": "Fog Cloud", - "desc": "You create a 20-foot-radius sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.", - "document": "srd", - "level": 1, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "forbiddance", - "fields": { - "name": "Forbiddance", - "desc": "You create a ward against magical travel that protects up to 40,000 square feet of floor space to a height of 30 feet above the floor. For the duration, creatures can't teleport into the area or use portals, such as those created by the gate spell, to enter the area. The spell proofs the area against planar travel, and therefore prevents creatures from accessing the area by way of the Astral Plane, Ethereal Plane, Feywild, Shadowfell, or the plane shift spell. In addition, the spell damages types of creatures that you choose when you cast it. Choose one or more of the following: celestials, elementals, fey, fiends, and undead. When a chosen creature enters the spell's area for the first time on a turn or starts its turn there, the creature takes 5d10 radiant or necrotic damage (your choice when you cast this spell). When you cast this spell, you can designate a password. A creature that speaks the password as it enters the area takes no damage from the spell. The spell's area can't overlap with the area of another forbiddance spell. If you cast forbiddance every day for 30 days in the same location, the spell lasts until it is dispelled, and the material components are consumed on the last casting.", - "document": "srd", - "level": 6, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A sprinkling of holy water, rare incense, and powdered ruby worth at least 1,000 gp.", - "material_cost": "1000.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "necrotic", - "radiant" - ], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "forcecage", - "fields": { - "name": "Forcecage", - "desc": "An immobile, invisible, cube-shaped prison composed of magical force springs into existence around an area you choose within range. The prison can be a cage or a solid box, as you choose. A prison in the shape of a cage can be up to 20 feet on a side and is made from 1/2-inch diameter bars spaced 1/2 inch apart. A prison in the shape of a box can be up to 10 feet on a side, creating a solid barrier that prevents any matter from passing through it and blocking any spells cast into or out from the area. When you cast the spell, any creature that is completely inside the cage's area is trapped. Creatures only partially within the area, or those too large to fit inside the area, are pushed away from the center of the area until they are completely outside the area. A creature inside the cage can't leave it by nonmagical means. If the creature tries to use teleportation or interplanar travel to leave the cage, it must first make a charisma saving throw. On a success, the creature can use that magic to exit the cage. On a failure, the creature can't exit the cage and wastes the use of the spell or effect. The cage also extends into the Ethereal Plane, blocking ethereal travel. This spell can't be dispelled by dispel magic.", - "document": "srd", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Ruby dust worth 1,500 gp.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "foresight", - "fields": { - "name": "Foresight", - "desc": "You touch a willing creature and bestow a limited ability to see into the immediate future. For the duration, the target can't be surprised and has advantage on attack rolls, ability checks, and saving throws. Additionally, other creatures have disadvantage on attack rolls against the target for the duration. This spell immediately ends if you cast it again before its duration ends.", - "document": "srd", - "level": 9, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A hummingbird feather.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "freedom-of-movement", - "fields": { - "name": "Freedom of Movement", - "desc": "You touch a willing creature. For the duration, the target's movement is unaffected by difficult terrain, and spells and other magical effects can neither reduce the target's speed nor cause the target to be paralyzed or restrained. The target can also spend 5 feet of movement to automatically escape from nonmagical restraints, such as manacles or a creature that has it grappled. Finally, being underwater imposes no penalties on the target's movement or attacks.", - "document": "srd", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A leather strap, bound around the arm or a similar appendage.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "freezing-sphere", - "fields": { - "name": "Freezing Sphere", - "desc": "A frigid globe of cold energy streaks from your fingertips to a point of your choice within range, where it explodes in a 60-foot-radius sphere. Each creature within the area must make a constitution saving throw. On a failed save, a creature takes 10d6 cold damage. On a successful save, it takes half as much damage. If the globe strikes a body of water or a liquid that is principally water (not including water-based creatures), it freezes the liquid to a depth of 6 inches over an area 30 feet square. This ice lasts for 1 minute. Creatures that were swimming on the surface of frozen water are trapped in the ice. A trapped creature can use an action to make a Strength check against your spell save DC to break free. You can refrain from firing the globe after completing the spell, if you wish. A small globe about the size of a sling stone, cool to the touch, appears in your hand. At any time, you or a creature you give the globe to can throw the globe (to a range of 40 feet) or hurl it with a sling (to the sling's normal range). It shatters on impact, with the same effect as the normal casting of the spell. You can also set the globe down without shattering it. After 1 minute, if the globe hasn't already shattered, it explodes.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d6 for each slot level above 6th.", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small crystal sphere.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 60, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "gaseous-form", - "fields": { - "name": "Gaseous Form", - "desc": "You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected. While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated. While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of gauze and a wisp of smoke.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "gate", - "fields": { - "name": "Gate", - "desc": "You conjure a portal linking an unoccupied space you can see within range to a precise location on a different plane of existence. The portal is a circular opening, which you can make 5 to 20 feet in diameter. You can orient the portal in any direction you choose. The portal lasts for the duration. The portal has a front and a back on each plane where it appears. Travel through the portal is possible only by moving through its front. Anything that does so is instantly transported to the other plane, appearing in the unoccupied space nearest to the portal. Deities and other planar rulers can prevent portals created by this spell from opening in their presence or anywhere within their domains. When you cast this spell, you can speak the name of a specific creature (a pseudonym, title, or nickname doesn't work). If that creature is on a plane other than the one you are on, the portal opens in the named creature's immediate vicinity and draws the creature through it to the nearest unoccupied space on your side of the portal. You gain no special power over the creature, and it is free to act as the DM deems appropriate. It might leave, attack you, or help you.", - "document": "srd", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A diamond worth at least 5,000gp.", - "material_cost": "5000.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "geas", - "fields": { - "name": "Geas", - "desc": "You place a magical command on a creature that you can see within range, forcing it to carry out some service or refrain from some action or course of activity as you decide. If the creature can understand you, it must succeed on a wisdom saving throw or become charmed by you for the duration. While the creature is charmed by you, it takes 5d10 psychic damage each time it acts in a manner directly counter to your instructions, but no more than once each day. A creature that can't understand you is unaffected by the spell. You can issue any command you choose, short of an activity that would result in certain death. Should you issue a suicidal command, the spell ends. You can end the spell early by using an action to dismiss it. A remove curse, greater restoration, or wish spell also ends it.", - "document": "srd", - "level": 5, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 7th or 8th level, the duration is 1 year. When you cast this spell using a spell slot of 9th level, the spell lasts until it is ended by one of the spells mentioned above.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "psychic" - ], - "duration": "30 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "gentle-repose", - "fields": { - "name": "Gentle Repose", - "desc": "You touch a corpse or other remains. For the duration, the target is protected from decay and can't become undead. The spell also effectively extends the time limit on raising the target from the dead, since days spent under the influence of this spell don't count against the time limit of spells such as raise dead.", - "document": "srd", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of salt and one copper piece placed on each of the corpse's eyes, which must remain there for the duration.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "giant-insect", - "fields": { - "name": "Giant Insect", - "desc": "You transform up to ten centipedes, three spiders, five wasps, or one scorpion within range into giant versions of their natural forms for the duration. A centipede becomes a giant centipede, a spider becomes a giant spider, a wasp becomes a giant wasp, and a scorpion becomes a giant scorpion. Each creature obeys your verbal commands, and in combat, they act on your turn each round. The DM has the statistics for these creatures and resolves their actions and movement. A creature remains in its giant size for the duration, until it drops to 0 hit points, or until you use an action to dismiss the effect on it. The DM might allow you to choose different targets. For example, if you transform a bee, its giant version might have the same statistics as a giant wasp.", - "document": "srd", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "glibness", - "fields": { - "name": "Glibness", - "desc": "Until the spell ends, when you make a Charisma check, you can replace the number you roll with a 15. Additionally, no matter what you say, magic that would determine if you are telling the truth indicates that you are being truthful.", - "document": "srd", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "globe-of-invulnerability", - "fields": { - "name": "Globe of Invulnerability", - "desc": "An immobile, faintly shimmering barrier springs into existence in a 10-foot radius around you and remains for the duration. Any spell of 5th level or lower cast from outside the barrier can't affect creatures or objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such spells.", - "document": "srd", - "level": 6, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the barrier blocks spells of one level higher for each slot level above 6th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A glass or crystal bead that shatters when the spell ends.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "glyph-of-warding", - "fields": { - "name": "Glyph of Warding", - "desc": "When you cast this spell, you inscribe a glyph that harms other creatures, either upon a surface (such as a table or a section of floor or wall) or within an object that can be closed (such as a book, a scroll, or a treasure chest) to conceal the glyph. If you choose a surface, the glyph can cover an area of the surface no larger than 10 feet in diameter. If you choose an object, that object must remain in its place; if the object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered. The glyph is nearly invisible and requires a successful Intelligence (Investigation) check against your spell save DC to be found. You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or standing on the glyph, removing another object covering the glyph, approaching within a certain distance of the glyph, or manipulating the object on which the glyph is inscribed. For glyphs inscribed within an object, the most common triggers include opening that object, approaching within a certain distance of the object, or seeing or reading the glyph. Once a glyph is triggered, this spell ends. You can further refine the trigger so the spell activates only under certain circumstances or according to physical characteristics (such as height or weight), creature kind (for example, the ward could be set to affect aberrations or drow), or alignment. You can also set conditions for creatures that don't trigger the glyph, such as those who say a certain password. When you inscribe the glyph, choose explosive runes or a spell glyph.\n\n**Explosive Runes.** When triggered, the glyph erupts with magical energy in a 20-­foot-­radius sphere centered on the glyph. The sphere spreads around corners. Each creature in the area must make a Dexterity saving throw. A creature takes 5d8 acid, cold, fire, lightning, or thunder damage on a failed saving throw (your choice when you create the glyph), or half as much damage on a successful one.\n\n**Spell Glyph.** You can store a prepared spell of 3rd level or lower in the glyph by casting it as part of creating the glyph. The spell must target a single creature or an area. The spell being stored has no immediate effect when cast in this way. When the glyph is triggered, the stored spell is cast. If the spell has a target, it targets the creature that triggered the glyph. If the spell affects an area, the area is centered on that creature. If the spell summons hostile creatures or creates harmful objects or traps, they appear as close as possible to the intruder and attack it. If the spell requires concentration, it lasts until the end of its full duration.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage of an explosive runes glyph increases by 1d8 for each slot level above 3rd. If you create a spell glyph, you can store any spell of up to the same level as the slot you use for the glyph of warding.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Incense and powdered diamond worth at least 200 gp, which the spell consumes.", - "material_cost": "200.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "acid", - "cold", - "fire", - "lightning", - "thunder" - ], - "duration": "until dispelled or triggered", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "goodberry", - "fields": { - "name": "Goodberry", - "desc": "Up to ten berries appear in your hand and are infused with magic for the duration. A creature can use its action to eat one berry. Eating a berry restores 1 hit point, and the berry provides enough nourishment to sustain a creature for one day. The berries lose their potency if they have not been consumed within 24 hours of the casting of this spell.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A sprig of mistletoe.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "grease", - "fields": { - "name": "Grease", - "desc": "Slick grease covers the ground in a 10-foot square centered on a point within range and turns it into difficult terrain for the duration. When the grease appears, each creature standing in its area must succeed on a dexterity saving throw or fall prone. A creature that enters the area or ends its turn there must also succeed on a dexterity saving throw or fall prone.", - "document": "srd", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of pork rind or butter.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "greater-invisibility", - "fields": { - "name": "Greater Invisibility", - "desc": "You or a creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person.", - "document": "srd", - "level": 4, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "greater-restoration", - "fields": { - "name": "Greater Restoration", - "desc": "You imbue a creature you touch with positive energy to undo a debilitating effect. You can reduce the target's exhaustion level by one, or end one of the following effects on the target: \n- One effect that charmed or petrified the target \n- One curse, including the target's attunement to a cursed magic item \n- Any reduction to one of the target's ability scores \n- One effect reducing the target's hit point maximum", - "document": "srd", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Diamond dust worth at least 100gp, which the spell consumes.", - "material_cost": "100.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "guardian-of-faith", - "fields": { - "name": "Guardian of Faith", - "desc": "A Large spectral guardian appears and hovers for the duration in an unoccupied space of your choice that you can see within range. The guardian occupies that space and is indistinct except for a gleaming sword and shield emblazoned with the symbol of your deity. Any creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "20", - "damage_types": [ - "radiant" - ], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "guards-and-wards", - "fields": { - "name": "Guards and Wards", - "desc": "You create a ward that protects up to 2,500 square feet of floor space (an area 50 feet square, or one hundred 5-foot squares or twenty-five 10-foot squares). The warded area can be up to 20 feet tall, and shaped as you desire. You can ward several stories of a stronghold by dividing the area among them, as long as you can walk into each contiguous area while you are casting the spell. When you cast this spell, you can specify individuals that are unaffected by any or all of the effects that you choose. You can also specify a password that, when spoken aloud, makes the speaker immune to these effects. Guards and wards creates the following effects within the warded area.\n\n**Corridors.** Fog fills all the warded corridors, making them heavily obscured. In addition, at each intersection or branching passage offering a choice of direction, there is a 50 percent chance that a creature other than you will believe it is going in the opposite direction from the one it chooses.\n\n**Doors.** All doors in the warded area are magically locked, as if sealed by an arcane lock spell. In addition, you can cover up to ten doors with an illusion (equivalent to the illusory object function of the minor illusion spell) to make them appear as plain sections of wall\n\n **Stairs.** Webs fill all stairs in the warded area from top to bottom, as the web spell. These strands regrow in 10 minutes if they are burned or torn away while guards and wards lasts.\n\n**Other Spell Effect.** You can place your choice of one of the following magical effects within the warded area of the stronghold. \n- Place dancing lights in four corridors. You can designate a simple program that the lights repeat as long as guards and wards lasts. \n- Place magic mouth in two locations. \n- Place stinking cloud in two locations. The vapors appear in the places you designate; they return within 10 minutes if dispersed by wind while guards and wards lasts. \n- Place a constant gust of wind in one corridor or room. \n- Place a suggestion in one location. You select an area of up to 5 feet square, and any creature that enters or passes through the area receives the suggestion mentally. The whole warded area radiates magic. A dispel magic cast on a specific effect, if successful, removes only that effect. You can create a permanently guarded and warded structure by casting this spell there every day for one year.", - "document": "srd", - "level": 6, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Burning incense, a small measure of brimstone and oil, a knotted string, a small amount of umber hulk blood, and a small silver rod worth at least 10 gp.", - "material_cost": "10.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "guidance", - "fields": { - "name": "Guidance", - "desc": "You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one ability check of its choice. It can roll the die before or after making the ability check. The spell then ends.", - "document": "srd", - "level": 0, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "guiding-bolt", - "fields": { - "name": "Guiding Bolt", - "desc": "A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "4d6", - "damage_types": [ - "radiant" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "gust-of-wind", - "fields": { - "name": "Gust of Wind", - "desc": "A line of strong wind 60 feet long and 10 feet wide blasts from you in a direction you choose for the spell's duration. Each creature that starts its turn in the line must succeed on a strength saving throw or be pushed 15 feet away from you in a direction following the line. Any creature in the line must spend 2 feet of movement for every 1 foot it moves when moving closer to you. The gust disperses gas or vapor, and it extinguishes candles, torches, and similar unprotected flames in the area. It causes protected flames, such as those of lanterns, to dance wildly and has a 50 percent chance to extinguish them. As a bonus action on each of your turns before the spell ends, you can change the direction in which the line blasts from you.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A legume seed.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hallow", - "fields": { - "name": "Hallow", - "desc": "You touch a point and infuse an area around it with holy (or unholy) power. The area can have a radius up to 60 feet, and the spell fails if the radius includes an area already under the effect a hallow spell. The affected area is subject to the following effects. First, celestials, elementals, fey, fiends, and undead can't enter the area, nor can such creatures charm, frighten, or possess creatures within it. Any creature charmed, frightened, or possessed by such a creature is no longer charmed, frightened, or possessed upon entering the area. You can exclude one or more of those types of creatures from this effect. Second, you can bind an extra effect to the area. Choose the effect from the following list, or choose an effect offered by the DM. Some of these effects apply to creatures in the area; you can designate whether the effect applies to all creatures, creatures that follow a specific deity or leader, or creatures of a specific sort, such as ores or trolls. When a creature that would be affected enters the spell's area for the first time on a turn or starts its turn there, it can make a charisma saving throw. On a success, the creature ignores the extra effect until it leaves the area.\n\n**Courage.** Affected creatures can't be frightened while in the area.\n\n**Darkness.** Darkness fills the area. Normal light, as well as magical light created by spells of a lower level than the slot you used to cast this spell, can't illuminate the area\n\n **Daylight.** Bright light fills the area. Magical darkness created by spells of a lower level than the slot you used to cast this spell can't extinguish the light.\n\n**Energy Protection.** Affected creatures in the area have resistance to one damage type of your choice, except for bludgeoning, piercing, or slashing\n\n **Energy Vulnerability.** Affected creatures in the area have vulnerability to one damage type of your choice, except for bludgeoning, piercing, or slashing.\n\n**Everlasting Rest.** Dead bodies interred in the area can't be turned into undead.\n\n**Extradimensional Interference.** Affected creatures can't move or travel using teleportation or by extradimensional or interplanar means.\n\n**Fear.** Affected creatures are frightened while in the area.\n\n**Silence.** No sound can emanate from within the area, and no sound can reach into it.\n\n**Tongues.** Affected creatures can communicate with any other creature in the area, even if they don't share a common language.", - "document": "srd", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Herbs, oils, and incense worth at least 1,000 gp, which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "hallucinatory-terrain", - "fields": { - "name": "Hallucinatory Terrain", - "desc": "You make natural terrain in a 150-foot cube in range look, sound, and smell like some other sort of natural terrain. Thus, open fields or a road can be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road. Manufactured structures, equipment, and creatures within the area aren't changed in appearance.\n\nThe tactile characteristics of the terrain are unchanged, so creatures entering the area are likely to see through the illusion. If the difference isn't obvious by touch, a creature carefully examining the illusion can attempt an Intelligence (Investigation) check against your spell save DC to disbelieve it. A creature who discerns the illusion for what it is, sees it as a vague image superimposed on the terrain.", - "document": "srd", - "level": 4, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A stone, a twig, and a bit of green plant.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": "cube", - "shape_magnitude": 150, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "harm", - "fields": { - "name": "Harm", - "desc": "You unleash a virulent disease on a creature that you can see within range. The target must make a constitution saving throw. On a failed save, it takes 14d6 necrotic damage, or half as much damage on a successful save. The damage can't reduce the target's hit points below 1. If the target fails the saving throw, its hit point maximum is reduced for 1 hour by an amount equal to the necrotic damage it took. Any effect that removes a disease allows a creature's hit point maximum to return to normal before that time passes.", - "document": "srd", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "14d6", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "haste", - "fields": { - "name": "Haste", - "desc": "Choose a willing creature that you can see within range. Until the spell ends, the target's speed is doubled, it gains a +2 bonus to AC, it has advantage on dexterity saving throws, and it gains an additional action on each of its turns. That action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action. When the spell ends, the target can't move or take actions until after its next turn, as a wave of lethargy sweeps over it.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A shaving of licorice root.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "heal", - "fields": { - "name": "Heal", - "desc": "Choose a creature that you can see within range. A surge of positive energy washes through the creature, causing it to regain 70 hit points. This spell also ends blindness, deafness, and any diseases affecting the target. This spell has no effect on constructs or undead.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the amount of healing increases by 10 for each slot level above 6th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "healing-word", - "fields": { - "name": "Healing Word", - "desc": "A creature of your choice that you can see within range regains hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d4 for each slot level above 1st.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "heat-metal", - "fields": { - "name": "Heat Metal", - "desc": "Choose a manufactured metal object, such as a metal weapon or a suit of heavy or medium metal armor, that you can see within range. You cause the object to glow red-hot. Any creature in physical contact with the object takes 2d8 fire damage when you cast the spell. Until the spell ends, you can use a bonus action on each of your subsequent turns to cause this damage again. If a creature is holding or wearing the object and takes the damage from it, the creature must succeed on a constitution saving throw or drop the object if it can. If it doesn't drop the object, it has disadvantage on attack rolls and ability checks until the start of your next turn.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A piece of iron and a flame.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hellish-rebuke", - "fields": { - "name": "Hellish Rebuke", - "desc": "You point your finger, and the creature that damaged you is momentarily surrounded by hellish flames. The creature must make a Dexterity saving throw. It takes 2d10 fire damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "2d10", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "heroes-feast", - "fields": { - "name": "Heroes' Feast", - "desc": "You bring forth a great feast, including magnificent food and drink. The feast takes 1 hour to consume and disappears at the end of that time, and the beneficial effects don't set in until this hour is over. Up to twelve other creatures can partake of the feast. A creature that partakes of the feast gains several benefits. The creature is cured of all diseases and poison, becomes immune to poison and being frightened, and makes all wisdom saving throws with advantage. Its hit point maximum also increases by 2d10, and it gains the same number of hit points. These benefits last for 24 hours.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A gem-encrusted bowl worth at least 1,000gp, which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "heroism", - "fields": { - "name": "Heroism", - "desc": "A willing creature you touch is imbued with bravery. Until the spell ends, the creature is immune to being frightened and gains temporary hit points equal to your spellcasting ability modifier at the start of each of its turns. When the spell ends, the target loses any remaining temporary hit points from this spell.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hideous-laughter", - "fields": { - "name": "Hideous Laughter", - "desc": "A creature of your choice that you can see within range perceives everything as hilariously funny and falls into fits of laughter if this spell affects it. The target must succeed on a wisdom saving throw or fall prone, becoming incapacitated and unable to stand up for the duration. A creature with an Intelligence score of 4 or less isn't affected. At the end of each of its turns, and each time it takes damage, the target can make another wisdom saving throw. The target had advantage on the saving throw if it's triggered by damage. On a success, the spell ends.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Tiny tarts and a feather that is waved in the air.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hold-monster", - "fields": { - "name": "Hold Monster", - "desc": "Choose a creature you can see within range. The target must make a saving throw of Wisdom or be paralyzed for the duration of the spell. This spell has no effect against the undead. At the end of each round, the target can make a new saving throw of Wisdom. If successful, the spell ends for the creature.", - "document": "srd", - "level": 5, - "school": "enchantment", - "higher_level": "When you cast this spell using a level 6 or higher location, you can target an additional creature for each level of location beyond the fifth. The creatures must be within 30 feet o f each other when you target them.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small piece of iron.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hold-person", - "fields": { - "name": "Hold Person", - "desc": "Choose a humanoid that you can see within range. The target must succeed on a wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another wisdom saving throw. On a success, the spell ends on the target.", - "document": "srd", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small, straight piece of iron.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "holy-aura", - "fields": { - "name": "Holy Aura", - "desc": "Divine light washes out from you and coalesces in a soft radiance in a 30-foot radius around you. Creatures of your choice in that radius when you cast this spell shed dim light in a 5-foot radius and have advantage on all saving throws, and other creatures have disadvantage on attack rolls against them until the spell ends. In addition, when a fiend or an undead hits an affected creature with a melee attack, the aura flashes with brilliant light. The attacker must succeed on a constitution saving throw or be blinded until the spell ends.", - "document": "srd", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny reliquary worth at least 1,000gp containing a sacred relic, such as a scrap of cloth from a saint's robe or a piece of parchment from a religious text.", - "material_cost": "1000.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hunters-mark", - "fields": { - "name": "Hunter's Mark", - "desc": "You choose a creature you can see within range and mystically mark it as your quarry. Until the spell ends, you deal an extra 1d6 damage to the target whenever you hit it with a weapon attack, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find it. If the target drops to 0 hit points before this spell ends, you can use a bonus action on a subsequent turn of yours to mark a new creature.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": " When you cast this spell using a spell slot of 3rd or 4th level, you can maintain your concentration on the spell for up to 8 hours. When you use a spell slot of 5th level or higher, you can maintain your concentration on the spell for up to 24 hours.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "hypnotic-pattern", - "fields": { - "name": "Hypnotic Pattern", - "desc": "You create a twisting pattern of colors that weaves through the air inside a 30-foot cube within range. The pattern appears for a moment and vanishes. Each creature in the area who sees the pattern must make a wisdom saving throw. On a failed save, the creature becomes charmed for the duration. While charmed by this spell, the creature is incapacitated and has a speed of 0. The spell ends for an affected creature if it takes any damage or if someone else uses an action to shake the creature out of its stupor.", - "document": "srd", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "A glowing stick of incense or a crystal vial filled with phosphorescent material.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 30, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "ice-storm", - "fields": { - "name": "Ice Storm", - "desc": "A hail of rock-hard ice pounds to the ground in a 20-foot-radius, 40-foot-high cylinder centered on a point within range. Each creature in the cylinder must make a dexterity saving throw. A creature takes 2d8 bludgeoning damage and 4d6 cold damage on a failed save, or half as much damage on a successful one. Hailstones turn the storm's area of effect into difficult terrain until the end of your next turn.", - "document": "srd", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the bludgeoning damage increases by 1d8 for each slot level above 4th.", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of dust and a few drops of water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "identify", - "fields": { - "name": "Identify", - "desc": "You choose one object that you must touch throughout the casting of the spell. If it is a magic item or some other magic-imbued object, you learn its properties and how to use them, whether it requires attunement to use, and how many charges it has, if any. You learn whether any spells are affecting the item and what they are. If the item was created by a spell, you learn which spell created it. If you instead touch a creature throughout the casting, you learn what spells, if any, are currently affecting it.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pearl worth at least 100gp and an owl feather.", - "material_cost": "100.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "illusory-script", - "fields": { - "name": "Illusory Script", - "desc": "You write on parchment, paper, or some other suitable writing material and imbue it with a potent illusion that lasts for the duration. To you and any creatures you designate when you cast the spell, the writing appears normal, written in your hand, and conveys whatever meaning you intended when you wrote the text. To all others, the writing appears as if it were written in an unknown or magical script that is unintelligible. Alternatively, you can cause the writing to appear to be an entirely different message, written in a different hand and language, though the language must be one you know. Should the spell be dispelled, the original script and the illusion both disappear. A creature with truesight can read the hidden message.", - "document": "srd", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "A lead-based ink worth at least 10gp, which this spell consumes.", - "material_cost": "10.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "imprisonment", - "fields": { - "name": "Imprisonment", - "desc": "You create a magical restraint to hold a creature that you can see within range. The target must succeed on a wisdom saving throw or be bound by the spell; if it succeeds, it is immune to this spell if you cast it again. While affected by this spell, the creature doesn't need to breathe, eat, or drink, and it doesn't age. Divination spells can't locate or perceive the target. When you cast the spell, you choose one of the following forms of imprisonment.\n\n**Burial.** The target is entombed far beneath the earth in a sphere of magical force that is just large enough to contain the target. Nothing can pass through the sphere, nor can any creature teleport or use planar travel to get into or out of it. The special component for this version of the spell is a small mithral orb.\n\n**Chaining.** Heavy chains, firmly rooted in the ground, hold the target in place. The target is restrained until the spell ends, and it can't move or be moved by any means until then. The special component for this version of the spell is a fine chain of precious metal.\n\n**Hedged Prison.** The spell transports the target into a tiny demiplane that is warded against teleportation and planar travel. The demiplane can be a labyrinth, a cage, a tower, or any similar confined structure or area of your choice. The special component for this version of the spell is a miniature representation of the prison made from jade.\n\n**Minimus Containment.** The target shrinks to a height of 1 inch and is imprisoned inside a gemstone or similar object. Light can pass through the gemstone normally (allowing the target to see out and other creatures to see in), but nothing else can pass through, even by means of teleportation or planar travel. The gemstone can't be cut or broken while the spell remains in effect. The special component for this version of the spell is a large, transparent gemstone, such as a corundum, diamond, or ruby.\n\n**Slumber.** The target falls asleep and can't be awoken. The special component for this version of the spell consists of rare soporific herbs.\n\n**Ending the Spell.** During the casting of the spell, in any of its versions, you can specify a condition that will cause the spell to end and release the target. The condition can be as specific or as elaborate as you choose, but the DM must agree that the condition is reasonable and has a likelihood of coming to pass. The conditions can be based on a creature's name, identity, or deity but otherwise must be based on observable actions or qualities and not based on intangibles such as level, class, or hit points. A dispel magic spell can end the spell only if it is cast as a 9th-level spell, targeting either the prison or the special component used to create it. You can use a particular special component to create only one prison at a time. If you cast the spell again using the same component, the target of the first casting is immediately freed from its binding.", - "document": "srd", - "level": 9, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A vellum depiction or a carved statuette in the likeness of the target, and a special component that varies according to the version of the spell you choose, worth at least 500gp per Hit Die of the target.", - "material_cost": "500.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "incendiary-cloud", - "fields": { - "name": "Incendiary Cloud", - "desc": "A swirling cloud of smoke shot through with white-hot embers appears in a 20-foot-radius sphere centered on a point within range. The cloud spreads around corners and is heavily obscured. It lasts for the duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. When the cloud appears, each creature in it must make a dexterity saving throw. A creature takes 10d8 fire damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there. The cloud moves 10 feet directly away from you in a direction that you choose at the start of each of your turns.", - "document": "srd", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "10d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "inflict-wounds", - "fields": { - "name": "Inflict Wounds", - "desc": "Make a melee spell attack against a creature you can reach. On a hit, the target takes 3d10 necrotic damage.", - "document": "srd", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d10", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "insect-plague", - "fields": { - "name": "Insect Plague", - "desc": "Swarming, biting locusts fill a 20-foot-radius sphere centered on a point you choose within range. The sphere spreads around corners. The sphere remains for the duration, and its area is lightly obscured. The sphere's area is difficult terrain. When the area appears, each creature in it must make a constitution saving throw. A creature takes 4d10 piercing damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.", - "document": "srd", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A few grains of sugar, some kernels of grain, and a smear of fat.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d10", - "damage_types": [ - "piercing" - ], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "instant-summons", - "fields": { - "name": "Instant Summons", - "desc": "You touch an object weighing 10 pounds or less whose longest dimension is 6 feet or less. The spell leaves an invisible mark on its surface and invisibly inscribes the name of the item on the sapphire you use as the material component. Each time you cast this spell, you must use a different sapphire. At any time thereafter, you can use your action to speak the item's name and crush the sapphire. The item instantly appears in your hand regardless of physical or planar distances, and the spell ends. If another creature is holding or carrying the item, crushing the sapphire doesn't transport the item to you, but instead you learn who the creature possessing the object is and roughly where that creature is located at that moment. Dispel magic or a similar effect successfully applied to the sapphire ends this spell's effect.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A sapphire worth 1,000 gp.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "invisibility", - "fields": { - "name": "Invisibility", - "desc": "A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.", - "document": "srd", - "level": 2, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An eyelash encased in gum arabic.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "irresistible-dance", - "fields": { - "name": "Irresistible Dance", - "desc": "Choose one creature that you can see within range. The target begins a comic dance in place: shuffling, tapping its feet, and capering for the duration. Creatures that can't be charmed are immune to this spell. A dancing creature must use all its movement to dance without leaving its space and has disadvantage on dexterity saving throws and attack rolls. While the target is affected by this spell, other creatures have advantage on attack rolls against it. As an action, a dancing creature makes a wisdom saving throw to regain control of itself. On a successful save, the spell ends.", - "document": "srd", - "level": 6, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "jump", - "fields": { - "name": "Jump", - "desc": "You touch a creature. The creature's jump distance is tripled until the spell ends.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A grasshopper's hind leg.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "knock", - "fields": { - "name": "Knock", - "desc": "Choose an object that you can see within range. The object can be a door, a box, a chest, a set of manacles, a padlock, or another object that contains a mundane or magical means that prevents access. A target that is held shut by a mundane lock or that is stuck or barred becomes unlocked, unstuck, or unbarred. If the object has multiple locks, only one of them is unlocked. If you choose a target that is held shut with arcane lock, that spell is suppressed for 10 minutes, during which time the target can be opened and shut normally. When you cast the spell, a loud knock, audible from as far away as 300 feet, emanates from the target object.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "legend-lore", - "fields": { - "name": "Legend Lore", - "desc": "Name or describe a person, place, or object. The spell brings to your mind a brief summary of the significant lore about the thing you named. The lore might consist of current tales, forgotten stories, or even secret lore that has never been widely known. If the thing you named isn't of legendary importance, you gain no information. The more information you already have about the thing, the more precise and detailed the information you receive is. The information you learn is accurate but might be couched in figurative language. For example, if you have a mysterious magic axe on hand, the spell might yield this information: \"Woe to the evildoer whose hand touches the axe, for even the haft slices the hand of the evil ones. Only a true Child of Stone, lover and beloved of Moradin, may awaken the true powers of the axe, and only with the sacred word Rudnogg on the lips.\"", - "document": "srd", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Incense worth 250 inches that fate consumes and four sticks of ivory worth 50 gp each.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lesser-restoration", - "fields": { - "name": "Lesser Restoration", - "desc": "You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.", - "document": "srd", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "levitate", - "fields": { - "name": "Levitate", - "desc": "One creature or object of your choice that you can see within range rises vertically, up to 20 feet, and remains suspended there for the duration. The spell can levitate a target that weighs up to 500 pounds. An unwilling creature that succeeds on a constitution saving throw is unaffected. The target can move only by pushing or pulling against a fixed object or surface within reach (such as a wall or a ceiling), which allows it to move as if it were climbing. You can change the target's altitude by up to 20 feet in either direction on your turn. If you are the target, you can move up or down as part of your move. Otherwise, you can use your action to move the target, which must remain within the spell's range. When the spell ends, the target floats gently to the ground if it is still aloft.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Either a small leather loop or a piece of golden wire bent into a cup shape with a long shank on one end.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "light", - "fields": { - "name": "Light", - "desc": "You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action. If you target an object held or worn by a hostile creature, that creature must succeed on a dexterity saving throw to avoid the spell.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "A firefly or phosphorescent moss.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "lightning-bolt", - "fields": { - "name": "Lightning Bolt", - "desc": "A stroke of lightning forming a line 100 feet long and 5 feet wide blasts out from you in a direction you choose. Each creature in the line must make a dexterity saving throw. A creature takes 8d6 lightning damage on a failed save, or half as much damage on a successful one. The lightning ignites flammable objects in the area that aren't being worn or carried.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fur and a rod of amber, crystal, or glass.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "lightning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "locate-animals-or-plants", - "fields": { - "name": "Locate Animals or Plants", - "desc": "Describe or name a specific kind of beast or plant. Concentrating on the voice of nature in your surroundings, you learn the direction and distance to the closest creature or plant of that kind within 5 miles, if any are present.", - "document": "srd", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fur from a bloodhound.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "locate-creature", - "fields": { - "name": "Locate Creature", - "desc": "Describe or name a creature that is familiar to you. You sense the direction to the creature's location, as long as that creature is within 1,000 feet of you. If the creature is moving, you know the direction of its movement. The spell can locate a specific creature known to you, or the nearest creature of a specific kind (such as a human or a unicorn), so long as you have seen such a creature up close-within 30 feet-at least once. If the creature you described or named is in a different form, such as being under the effects of a polymorph spell, this spell doesn't locate the creature. This spell can't locate a creature if running water at least 10 feet wide blocks a direct path between you and the creature.", - "document": "srd", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fur from a bloodhound.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "locate-object", - "fields": { - "name": "Locate Object", - "desc": "Describe or name an object that is familiar to you. You sense the direction to the object's location, as long as that object is within 1,000 feet of you. If the object is in motion, you know the direction of its movement. The spell can locate a specific object known to you, as long as you have seen it up close-within 30 feet-at least once. Alternatively, the spell can locate the nearest object of a particular kind, such as a certain kind of apparel, jewelry, furniture, tool, or weapon. This spell can't locate an object if any thickness of lead, even a thin sheet, blocks a direct path between you and the object.", - "document": "srd", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A forked twig.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "longstrider", - "fields": { - "name": "Longstrider", - "desc": "You touch a creature. The target's speed increases by 10 feet until the spell ends.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each spell slot above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of dirt.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mage-armor", - "fields": { - "name": "Mage Armor", - "desc": "You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.", - "document": "srd", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A piece of cured leather.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mage-hand", - "fields": { - "name": "Mage Hand", - "desc": "A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again. You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it. The hand can't attack, activate magic items, or carry more than 10 pounds.", - "document": "srd", - "level": 0, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "magic-circle", - "fields": { - "name": "Magic Circle", - "desc": "You create a 10-­--foot-­--radius, 20-­--foot-­--tall cylinder of magical energy centered on a point on the ground that you can see within range. Glowing runes appear wherever the cylinder intersects with the floor or other surface. Choose one or more of the following types of creatures: celestials, elementals, fey, fiends, or undead. The circle affects a creature of the chosen type in the following ways: \n- The creature can't willingly enter the cylinder by nonmagical means. If the creature tries to use teleportation or interplanar travel to do so, it must first succeed on a charisma saving throw. \n- The creature has disadvantage on attack rolls against targets within the cylinder. \n- Targets within the cylinder can't be charmed, frightened, or possessed by the creature.\nWhen you cast this spell, you can elect to cause its magic to operate in the reverse direction, preventing a creature of the specified type from leaving the cylinder and protecting targets outside it.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 hour for each slot level above 3rd.", - "target_type": "point", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Holy water or powdered silver and iron worth at least 100 gp, which the spell consumes.", - "material_cost": "100.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "magic-jar", - "fields": { - "name": "Magic Jar", - "desc": "Your body falls into a catatonic state as your soul leaves it and enters the container you used for the spell's material component. While your soul inhabits the container, you are aware of your surroundings as if you were in the container's space. You can't move or use reactions. The only action you can take is to project your soul up to 100 feet out of the container, either returning to your living body (and ending the spell) or attempting to possess a humanoids body. You can attempt to possess any humanoid within 100 feet of you that you can see (creatures warded by a protection from evil and good or magic circle spell can't be possessed). The target must make a charisma saving throw. On a failure, your soul moves into the target's body, and the target's soul becomes trapped in the container. On a success, the target resists your efforts to possess it, and you can't attempt to possess it again for 24 hours. Once you possess a creature's body, you control it. Your game statistics are replaced by the statistics of the creature, though you retain your alignment and your Intelligence, Wisdom, and Charisma scores. You retain the benefit of your own class features. If the target has any class levels, you can't use any of its class features. Meanwhile, the possessed creature's soul can perceive from the container using its own senses, but it can't move or take actions at all. While possessing a body, you can use your action to return from the host body to the container if it is within 100 feet of you, returning the host creature's soul to its body. If the host body dies while you're in it, the creature dies, and you must make a charisma saving throw against your own spellcasting DC. On a success, you return to the container if it is within 100 feet of you. Otherwise, you die. If the container is destroyed or the spell ends, your soul immediately returns to your body. If your body is more than 100 feet away from you or if your body is dead when you attempt to return to it, you die. If another creature's soul is in the container when it is destroyed, the creature's soul returns to its body if the body is alive and within 100 feet. Otherwise, that creature dies. When the spell ends, the container is destroyed.", - "document": "srd", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A gem, crystal, reliquary, or some other ornamental container worth at least 500 gp.", - "material_cost": "500.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "magic-missile", - "fields": { - "name": "Magic Missile", - "desc": "You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "magic-mouth", - "fields": { - "name": "Magic Mouth", - "desc": "You implant a message within an object in range, a message that is uttered when a trigger condition is met. Choose an object that you can see and that isn't being worn or carried by another creature. Then speak the message, which must be 25 words or less, though it can be delivered over as long as 10 minutes. Finally, determine the circumstance that will trigger the spell to deliver your message. When that circumstance occurs, a magical mouth appears on the object and recites the message in your voice and at the same volume you spoke. If the object you chose has a mouth or something that looks like a mouth (for example, the mouth of a statue), the magical mouth appears there so that the words appear to come from the object's mouth. When you cast this spell, you can have the spell end after it delivers its message, or it can remain and repeat its message whenever the trigger occurs. The triggering circumstance can be as general or as detailed as you like, though it must be based on visual or audible conditions that occur within 30 feet of the object. For example, you could instruct the mouth to speak when any creature moves within 30 feet of the object or when a silver bell rings within 30 feet of it.", - "document": "srd", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small bit of honeycomb and jade dust worth at least 10 gp, which the spell consumes", - "material_cost": "10.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "magic-weapon", - "fields": { - "name": "Magic Weapon", - "desc": "You touch a nonmagical weapon. Until the spell ends, that weapon becomes a magic weapon with a +1 bonus to attack rolls and damage rolls.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bonus increases to +2. When you use a spell slot of 6th level or higher, the bonus increases to +3.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "magnificent-mansion", - "fields": { - "name": "Magnificent Mansion", - "desc": "You conjure an extradimensional dwelling in range that lasts for the duration. You choose where its one entrance is located. The entrance shimmers faintly and is 5 feet wide and 10 feet tall. You and any creature you designate when you cast the spell can enter the extradimensional dwelling as long as the portal remains open. You can open or close the portal if you are within 30 feet of it. While closed, the portal is invisible. Beyond the portal is a magnificent foyer with numerous chambers beyond. The atmosphere is clean, fresh, and warm. You can create any floor plan you like, but the space can't exceed 50 cubes, each cube being 10 feet on each side. The place is furnished and decorated as you choose. It contains sufficient food to serve a nine course banquet for up to 100 people. A staff of 100 near-transparent servants attends all who enter. You decide the visual appearance of these servants and their attire. They are completely obedient to your orders. Each servant can perform any task a normal human servant could perform, but they can't attack or take any action that would directly harm another creature. Thus the servants can fetch things, clean, mend, fold clothes, light fires, serve food, pour wine, and so on. The servants can go anywhere in the mansion but can't leave it. Furnishings and other objects created by this spell dissipate into smoke if removed from the mansion. When the spell ends, any creatures inside the extradimensional space are expelled into the open spaces nearest to the entrance.", - "document": "srd", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A miniature portal carved from ivory, a small piece of polished marble, and a tiny silver spoon, each item worth at least 5 gp.", - "material_cost": "5.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "major-image", - "fields": { - "name": "Major Image", - "desc": "You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench). As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.", - "document": "srd", - "level": 3, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fleece.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "mass-cure-wounds", - "fields": { - "name": "Mass Cure Wounds", - "desc": "A wave of healing energy washes out from a point of your choice within range. Choose up to six creatures in a 30-foot-radius sphere centered on that point. Each target regains hit points equal to 3d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the healing increases by 1d8 for each slot level above 5th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mass-heal", - "fields": { - "name": "Mass Heal", - "desc": "A flood of healing energy flows from you into injured creatures around you. You restore up to 700 hit points, divided as you choose among any number of creatures that you can see within range. Creatures healed by this spell are also cured of all diseases and any effect making them blinded or deafened. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mass-healing-word", - "fields": { - "name": "Mass Healing Word", - "desc": "As you call out words of restoration, up to six creatures of your choice that you can see within range regain hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 6, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mass-suggestion", - "fields": { - "name": "Mass Suggestion", - "desc": "You suggest a course of activity (limited to a sentence or two) and magically influence up to twelve creatures of your choice that you can see within range and that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act automatically negates the effect of the spell. Each target must make a wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do. You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a group of soldiers give all their money to the first beggar they meet. If the condition isn't met before the spell ends, the activity isn't performed. If you or any of your companions damage a creature affected by this spell, the spell ends for that creature.", - "document": "srd", - "level": 6, - "school": "enchantment", - "higher_level": "When you cast this spell using a 7th-level spell slot, the duration is 10 days. When you use an 8th-level spell slot, the duration is 30 days. When you use a 9th-level spell slot, the duration is a year and a day.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "A snake's tongue and either a bit of honeycomb or a drop of sweet oil.", - "material_cost": null, - "material_consumed": false, - "target_count": 12, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "maze", - "fields": { - "name": "Maze", - "desc": "You banish a creature that you can see within range into a labyrinthine demiplane. The target remains there for the duration or until it escapes the maze. The target can use its action to attempt to escape. When it does so, it makes a DC 20 Intelligence check. If it succeeds, it escapes, and the spell ends (a minotaur or goristro demon automatically succeeds). When the spell ends, the target reappears in the space it left or, if that space is occupied, in the nearest unoccupied space.", - "document": "srd", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "meld-into-stone", - "fields": { - "name": "Meld into Stone", - "desc": "You step into a stone object or surface large enough to fully contain your body, melding yourself and all the equipment you carry with the stone for the duration. Using your movement, you step into the stone at a point you can touch. Nothing of your presence remains visible or otherwise detectable by nonmagical senses. While merged with the stone, you can't see what occurs outside it, and any Wisdom (Perception) checks you make to hear sounds outside it are made with disadvantage. You remain aware of the passage of time and can cast spells on yourself while merged in the stone. You can use your movement to leave the stone where you entered it, which ends the spell. You otherwise can't move. Minor physical damage to the stone doesn't harm you, but its partial destruction or a change in its shape (to the extent that you no longer fit within it) expels you and deals 6d6 bludgeoning damage to you. The stone's complete destruction (or transmutation into a different substance) expels you and deals 50 bludgeoning damage to you. If expelled, you fall prone in an unoccupied space closest to where you first entered.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mending", - "fields": { - "name": "Mending", - "desc": "This spell repairs a single break or tear in an object you touch, such as a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no longer than 1 foot in any dimension, you mend it, leaving no trace of the former damage. This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.", - "document": "srd", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Two lodestones.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "message", - "fields": { - "name": "Message", - "desc": "You point your finger toward a creature within range and whisper a message. The target (and only the target) hears the message and can reply in a whisper that only you can hear. You can cast this spell through solid objects if you are familiar with the target and know it is beyond the barrier. Magical silence, 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood blocks the spell. The spell doesn't have to follow a straight line and can travel freely around corners or through openings.", - "document": "srd", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A short piece of copper wire.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "meteor-swarm", - "fields": { - "name": "Meteor Swarm", - "desc": "Blazing orbs of fire plummet to the ground at four different points you can see within range. Each creature in a 40-foot-radius sphere centered on each point you choose must make a dexterity saving throw. The sphere spreads around corners. A creature takes 20d6 fire damage and 20d6 bludgeoning damage on a failed save, or half as much damage on a successful one. A creature in the area of more than one fiery burst is affected only once. The spell damages objects in the area and ignites flammable objects that aren't being worn or carried.", - "document": "srd", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "1 mile", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "20d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 40, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mind-blank", - "fields": { - "name": "Mind Blank", - "desc": "Until the spell ends, one willing creature you touch is immune to psychic damage, any effect that would sense its emotions or read its thoughts, divination spells, and the charmed condition. The spell even foils wish spells and spells or effects of similar power used to affect the target's mind or to gain information about the target.", - "document": "srd", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "minor-illusion", - "fields": { - "name": "Minor Illusion", - "desc": "You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again. If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends. If you create an image of an object-such as a chair, muddy footprints, or a small chest-it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it. If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.", - "document": "srd", - "level": 0, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "A bit of fleece.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mirage-arcane", - "fields": { - "name": "Mirage Arcane", - "desc": "You make terrain in an area up to 1 mile square look, sound, smell, and even feel like some other sort of terrain. The terrain's general shape remains the same, however. Open fields or a road could be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road. Similarly, you can alter the appearance of structures, or add them where none are present. The spell doesn't disguise, conceal, or add creatures. The illusion includes audible, visual, tactile, and olfactory elements, so it can turn clear ground into difficult terrain (or vice versa) or otherwise impede movement through the area. Any piece of the illusory terrain (such as a rock or stick) that is removed from the spell's area disappears immediately. Creatures with truesight can see through the illusion to the terrain's true form; however, all other elements of the illusion remain, so while the creature is aware of the illusion's presence, the creature can still physically interact with the illusion.", - "document": "srd", - "level": 7, - "school": "illusion", - "higher_level": "", - "target_type": "area", - "range": "Sight", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mirror-image", - "fields": { - "name": "Mirror Image", - "desc": "Three illusionary duplicates of yourself appear in your space. Until the end of the spell, duplicates move with you and imitate your actions, swapping their position so that it is impossible to determine which image is real. You can use your action to dispel the illusory duplicates. Whenever a creature is targeting you with an attack during the duration of the spell, roll 1d20 to determine if the attack does not target rather one of your duplicates. If you have three duplicates, you need 6 or more on your throw to lead the target of the attack to a duplicate. With two duplicates, you need 8 or more. With one duplicate, you need 11 or more. The CA of a duplicate is 10 + your Dexterity modifier. If an attack hits a duplicate, it is destroyed. A duplicate may be destroyed not just an attack on key. It ignores other damage and effects. The spell ends if the three duplicates are destroyed. A creature is unaffected by this fate if she can not see if it relies on a different meaning as vision, such as blind vision, or if it can perceive illusions as false, as with clear vision.", - "document": "srd", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "mislead", - "fields": { - "name": "Mislead", - "desc": "You become invisible at the same time that an illusory double of you appears where you are standing. The double lasts for the duration, but the invisibility ends if you attack or cast a spell. You can use your action to move your illusory double up to twice your speed and make it gesture, speak, and behave in whatever way you choose. You can see through its eyes and hear through its ears as if you were located where it is. On each of your turns as a bonus action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are blinded and deafened in regard to your own surroundings.", - "document": "srd", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "misty-step", - "fields": { - "name": "Misty Step", - "desc": "Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.", - "document": "srd", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "modify-memory", - "fields": { - "name": "Modify Memory", - "desc": "You attempt to reshape another creature's memories. One creature that you can see must make a wisdom saving throw. If you are fighting the creature, it has advantage on the saving throw. On a failed save, the target becomes charmed by you for the duration. The charmed target is incapacitated and unaware of its surroundings, though it can still hear you. If it takes any damage or is targeted by another spell, this spell ends, and none of the target's memories are modified. While this charm lasts, you can affect the target's memory of an event that it experienced within the last 24 hours and that lasted no more than 10 minutes. You can permanently eliminate all memory of the event, allow the target to recall the event with perfect clarity and exacting detail, change its memory of the details of the event, or create a memory of some other event. You must speak to the target to describe how its memories are affected, and it must be able to understand your language for the modified memories to take root. Its mind fills in any gaps in the details of your description. If the spell ends before you have finished describing the modified memories, the creature's memory isn't altered. Otherwise, the modified memories take hold when the spell ends. A modified memory doesn't necessarily affect how a creature behaves, particularly if the memory contradicts the creature's natural inclinations, alignment, or beliefs. An illogical modified memory, such as implanting a memory of how much the creature enjoyed dousing itself in acid, is dismissed, perhaps as a bad dream. The DM might deem a modified memory too nonsensical to affect a creature in a significant manner. A remove curse or greater restoration spell cast on the target restores the creature's true memory.", - "document": "srd", - "level": 5, - "school": "enchantment", - "higher_level": "If you cast this spell using a spell slot of 6th level or higher, you can alter the target's memories of an event that took place up to 7 days ago (6th level), 30 days ago (7th level), 1 year ago (8th level), or any time in the creature's past (9th level).", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "moonbeam", - "fields": { - "name": "Moonbeam", - "desc": "A silvery beam of pale light shines down in a 5-foot-radius, 40-foot-high cylinder centered on a point within range. Until the spell ends, dim light fills the cylinder. When a creature enters the spell's area for the first time on a turn or starts its turn there, it is engulfed in ghostly flames that cause searing pain, and it must make a constitution saving throw. It takes 2d10 radiant damage on a failed save, or half as much damage on a successful one. A shapechanger makes its saving throw with disadvantage. If it fails, it also instantly reverts to its original form and can't assume a different form until it leaves the spell's light. On each of your turns after you cast this spell, you can use an action to move the beam 60 feet in any direction.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d10 for each slot level above 2nd.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Several seeds of any moonseed plant and a piece of opalescent feldspar.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d10", - "damage_types": [ - "radiant" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "move-earth", - "fields": { - "name": "Move Earth", - "desc": "Choose an area of terrain no larger than 40 feet on a side within range. You can reshape dirt, sand, or clay in the area in any manner you choose for the duration. You can raise or lower the area's elevation, create or fill in a trench, erect or flatten a wall, or form a pillar. The extent of any such changes can't exceed half the area's largest dimension. So, if you affect a 40-foot square, you can create a pillar up to 20 feet high, raise or lower the square's elevation by up to 20 feet, dig a trench up to 20 feet deep, and so on. It takes 10 minutes for these changes to complete. At the end of every 10 minutes you spend concentrating on the spell, you can choose a new area of terrain to affect. Because the terrain's transformation occurs slowly, creatures in the area can't usually be trapped or injured by the ground's movement. This spell can't manipulate natural stone or stone construction. Rocks and structures shift to accommodate the new terrain. If the way you shape the terrain would make a structure unstable, it might collapse. Similarly, this spell doesn't directly affect plant growth. The moved earth carries any plants along with it.", - "document": "srd", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An iron blade and a small bag containing a mixture of soils-clay, loam, and sand.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "2 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "nondetection", - "fields": { - "name": "Nondetection", - "desc": "For the duration, you hide a target that you touch from divination magic. The target can be a willing creature or a place or an object no larger than 10 feet in any dimension. The target can't be targeted by any divination magic or perceived through magical scrying sensors.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of diamond dust worth 25 gp sprinkled over the target, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "pass-without-trace", - "fields": { - "name": "Pass without Trace", - "desc": "A veil of shadows and silence radiates from you, masking you and your companions from detection. For the duration, each creature you choose within 30 feet of you (including you) has a +10 bonus to Dexterity (Stealth) checks and can't be tracked except by magical means. A creature that receives this bonus leaves behind no tracks or other traces of its passage.", - "document": "srd", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Ashes from a burned leaf of mistletoe and a sprig of spruce.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "passwall", - "fields": { - "name": "Passwall", - "desc": "A passage appears at a point of your choice that you can see on a wooden, plaster, or stone surface (such as a wall, a ceiling, or a floor) within range, and lasts for the duration. You choose the opening's dimensions: up to 5 feet wide, 8 feet tall, and 20 feet deep. The passage creates no instability in a structure surrounding it. When the opening disappears, any creatures or objects still in the passage created by the spell are safely ejected to an unoccupied space nearest to the surface on which you cast the spell.", - "document": "srd", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of sesame seeds.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "phantasmal-killer", - "fields": { - "name": "Phantasmal Killer", - "desc": "You tap into the nightmares of a creature you can see within range and create an illusory manifestation of its deepest fears, visible only to that creature. The target must make a wisdom saving throw. On a failed save, the target becomes frightened for the duration. At the start of each of the target's turns before the spell ends, the target must succeed on a wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends.", - "document": "srd", - "level": 4, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d10 for each slot level above 4th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "phantom-steed", - "fields": { - "name": "Phantom Steed", - "desc": "A Large quasi-real, horselike creature appears on the ground in an unoccupied space of your choice within range. You decide the creature's appearance, but it is equipped with a saddle, bit, and bridle. Any of the equipment created by the spell vanishes in a puff of smoke if it is carried more than 10 feet away from the steed. For the duration, you or a creature you choose can ride the steed. The creature uses the statistics for a riding horse, except it has a speed of 100 feet and can travel 10 miles in an hour, or 13 miles at a fast pace. When the spell ends, the steed gradually fades, giving the rider 1 minute to dismount. The spell ends if you use an action to dismiss it or if the steed takes any damage.", - "document": "srd", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "planar-ally", - "fields": { - "name": "Planar Ally", - "desc": "You beseech an otherworldly entity for aid. The being must be known to you: a god, a primordial, a demon prince, or some other being of cosmic power. That entity sends a celestial, an elemental, or a fiend loyal to it to aid you, making the creature appear in an unoccupied space within range. If you know a specific creature's name, you can speak that name when you cast this spell to request that creature, though you might get a different creature anyway (DM's choice). When the creature appears, it is under no compulsion to behave in any particular way. You can ask the creature to perform a service in exchange for payment, but it isn't obliged to do so. The requested task could range from simple (fly us across the chasm, or help us fight a battle) to complex (spy on our enemies, or protect us during our foray into the dungeon). You must be able to communicate with the creature to bargain for its services. Payment can take a variety of forms. A celestial might require a sizable donation of gold or magic items to an allied temple, while a fiend might demand a living sacrifice or a gift of treasure. Some creatures might exchange their service for a quest undertaken by you. As a rule of thumb, a task that can be measured in minutes requires a payment worth 100 gp per minute. A task measured in hours requires 1,000 gp per hour. And a task measured in days (up to 10 days) requires 10,000 gp per day. The DM can adjust these payments based on the circumstances under which you cast the spell. If the task is aligned with the creature's ethos, the payment might be halved or even waived. Nonhazardous tasks typically require only half the suggested payment, while especially dangerous tasks might require a greater gift. Creatures rarely accept tasks that seem suicidal. After the creature completes the task, or when the agreed-upon duration of service expires, the creature returns to its home plane after reporting back to you, if appropriate to the task and if possible. If you are unable to agree on a price for the creature's service, the creature immediately returns to its home plane. A creature enlisted to join your group counts as a member of it, receiving a full share of experience points awarded.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "planar-binding", - "fields": { - "name": "Planar Binding", - "desc": "With this spell, you attempt to bind a celestial, an elemental, a fey, or a fiend to your service. The creature must be within range for the entire casting of the spell. (Typically, the creature is first summoned into the center of an inverted magic circle in order to keep it trapped while this spell is cast.) At the completion of the casting, the target must make a charisma saving throw. On a failed save, it is bound to serve you for the duration. If the creature was summoned or created by another spell, that spell's duration is extended to match the duration of this spell. A bound creature must follow your instructions to the best of its ability. You might command the creature to accompany you on an adventure, to guard a location, or to deliver a message. The creature obeys the letter of your instructions, but if the creature is hostile to you, it strives to twist your words to achieve its own objectives. If the creature carries out your instructions completely before the spell ends, it travels to you to report this fact if you are on the same plane of existence. If you are on a different plane of existence, it returns to the place where you bound it and remains there until the spell ends.", - "document": "srd", - "level": 5, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of a higher level, the duration increases to 10 days with a 6th-level slot, to 30 days with a 7th-level slot, to 180 days with an 8th-level slot, and to a year and a day with a 9th-level spell slot.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A jewel worth at least 1,000 gp, which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "plane-shift", - "fields": { - "name": "Plane Shift", - "desc": "You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion. Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle. You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.", - "document": "srd", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence.", - "material_cost": "250.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "plant-growth", - "fields": { - "name": "Plant Growth", - "desc": "This spell channels vitality into plants within a specific area. There are two possible uses for the spell, granting either immediate or long-term benefits. If you cast this spell using 1 action, choose a point within range. All normal plants in a 100-foot radius centered on that point become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves. You can exclude one or more areas of any size within the spell's area from being affected. If you cast this spell over 8 hours, you enrich the land. All plants in a half-mile radius centered on a point within range become enriched for 1 year. The plants yield twice the normal amount of food when harvested.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "poison-spray", - "fields": { - "name": "Poison Spray", - "desc": "You extend your hand toward a creature you can see within range and project a puff of noxious gas from your palm. The creature must succeed on a Constitution saving throw or take 1d12 poison damage.", - "document": "srd", - "level": 0, - "school": "conjuration", - "higher_level": "This spell's damage increases by 1d12 when you reach 5th level (2d12), 11th level (3d12), and 17th level (4d12).", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "polymorph", - "fields": { - "name": "Polymorph", - "desc": "This spell transforms a creature that you can see within range into a new form. An unwilling creature must make a wisdom saving throw to avoid the effect. A shapechanger automatically succeeds on this saving throw. The transformation lasts for the duration, or until the target drops to 0 hit points or dies. The new form can be any beast whose challenge rating is equal to or less than the target's (or the target's level, if it doesn't have a challenge rating). The target's game statistics, including mental ability scores, are replaced by the statistics of the chosen beast. It retains its alignment and personality. The target assumes the hit points of its new form. When it reverts to its normal form, the creature returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak, cast spells, or take any other action that requires hands or speech. The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its equipment.", - "document": "srd", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A caterpillar cocoon.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "power-word-kill", - "fields": { - "name": "Power Word Kill", - "desc": "You utter a word of power that can compel one creature you can see within range to die instantly. If the creature you choose has 100 hit points or fewer, it dies. Otherwise, the spell has no effect.", - "document": "srd", - "level": 9, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "power-word-stun", - "fields": { - "name": "Power Word Stun", - "desc": "You speak a word of power that can overwhelm the mind of one creature you can see within range, leaving it dumbfounded. If the target has 150 hit points or fewer, it is stunned. Otherwise, the spell has no effect. The stunned target must make a constitution saving throw at the end of each of its turns. On a successful save, this stunning effect ends.", - "document": "srd", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "prayer-of-healing", - "fields": { - "name": "Prayer of Healing", - "desc": "Up to six creatures of your choice that you can see within range each regain hit points equal to 2d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the healing increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 6, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "prestidigitation", - "fields": { - "name": "Prestidigitation", - "desc": "This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within 'range': \n- You create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor. \n- You instantaneously light or snuff out a candle, a torch, or a small campfire. \n- You instantaneously clean or soil an object no larger than 1 cubic foot. \n- You chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour. \n- You make a color, a small mark, or a symbol appear on an object or a surface for 1 hour. \n- You create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn. \nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.", - "document": "srd", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "prismatic-spray", - "fields": { - "name": "Prismatic Spray", - "desc": "Eight multicolored rays of light flash from your hand. Each ray is a different color and has a different power and purpose. Each creature in a 60-foot cone must make a dexterity saving throw. For each target, roll a d8 to determine which color ray affects it.\n\n**1. Red.** The target takes 10d6 fire damage on a failed save, or half as much damage on a successful one.\n\n**2. Orange.** The target takes 10d6 acid damage on a failed save, or half as much damage on a successful one.\n\n**3. Yellow.** The target takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**4. Green.** The target takes 10d6 poison damage on a failed save, or half as much damage on a successful one.\n\n**5. Blue.** The target takes 10d6 cold damage on a failed save, or half as much damage on a successful one.\n\n**6. Indigo.** On a failed save, the target is restrained. It must then make a constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the petrified condition. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind.\n\n**7. Violet.** On a failed save, the target is blinded. It must then make a wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of existence of the DM's choosing and is no longer blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.) \n\n**8. Special.** The target is struck by two rays. Roll twice more, rerolling any 8.", - "document": "srd", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 60, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "prismatic-wall", - "fields": { - "name": "Prismatic Wall", - "desc": "A shimmering, multicolored plane of light forms a vertical opaque wall-up to 90 feet long, 30 feet high, and 1 inch thick-centered on a point you can see within range. Alternatively, you can shape the wall into a sphere up to 30 feet in diameter centered on a point you choose within range. The wall remains in place for the duration. If you position the wall so that it passes through a space occupied by a creature, the spell fails, and your action and the spell slot are wasted. The wall sheds bright light out to a range of 100 feet and dim light for an additional 100 feet. You and creatures you designate at the time you cast the spell can pass through and remain near the wall without harm. If another creature that can see the wall moves to within 20 feet of it or starts its turn there, the creature must succeed on a constitution saving throw or become blinded for 1 minute. The wall consists of seven layers, each with a different color. When a creature attempts to reach into or pass through the wall, it does so one layer at a time through all the wall's layers. As it passes or reaches through each layer, the creature must make a dexterity saving throw or be affected by that layer's properties as described below. The wall can be destroyed, also one layer at a time, in order from red to violet, by means specific to each layer. Once a layer is destroyed, it remains so for the duration of the spell. A rod of cancellation destroys a prismatic wall, but an antimagic field has no effect on it.\n\n**1. Red.** The creature takes 10d6 fire damage on a failed save, or half as much damage on a successful one. While this layer is in place, nonmagical ranged attacks can't pass through the wall. The layer can be destroyed by dealing at least 25 cold damage to it.\n\n**2. Orange.** The creature takes 10d6 acid damage on a failed save, or half as much damage on a successful one. While this layer is in place, magical ranged attacks can't pass through the wall. The layer is destroyed by a strong wind.\n\n**3. Yellow.** The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 60 force damage to it.\n\n**4. Green.** The creature takes 10d6 poison damage on a failed save, or half as much damage on a successful one. A passwall spell, or another spell of equal or greater level that can open a portal on a solid surface, destroys this layer.\n\n**5. Blue.** The creature takes 10d6 cold damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 25 fire damage to it.\n\n**6. Indigo.** On a failed save, the creature is restrained. It must then make a constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the petrified condition. The successes and failures don't need to be consecutive; keep track of both until the creature collects three of a kind. While this layer is in place, spells can't be cast through the wall. The layer is destroyed by bright light shed by a daylight spell or a similar spell of equal or higher level.\n\n**7. Violet.** On a failed save, the creature is blinded. It must then make a wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of the DM's choosing and is no longer blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.) This layer is destroyed by a dispel magic spell or a similar spell of equal or higher level that can end spells and magical effects.", - "document": "srd", - "level": 9, - "school": "abjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "fire" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "private-sanctum", - "fields": { - "name": "Private Sanctum", - "desc": "You make an area within range magically secure. The area is a cube that can be as small as 5 feet to as large as 100 feet on each side. The spell lasts for the duration or until you use an action to dismiss it. When you cast the spell, you decide what sort of security the spell provides, choosing any or all of the following properties: \n- Sound can't pass through the barrier at the edge of the warded area. \n- The barrier of the warded area appears dark and foggy, preventing vision (including darkvision) through it. \n- Sensors created by divination spells can't appear inside the protected area or pass through the barrier at its perimeter. \n- Creatures in the area can't be targeted by divination spells. \n- Nothing can teleport into or out of the warded area. \n- Planar travel is blocked within the warded area. \nCasting this spell on the same spot every day for a year makes this effect permanent.", - "document": "srd", - "level": 4, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can increase the size of the cube by 100 feet for each slot level beyond 4th. Thus you could protect a cube that can be up to 200 feet on one side by using a spell slot of 5th level.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A thin sheet of lead, a piece of opaque glass, a wad of cotton or cloth, and powdered chrysolite.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "produce-flame", - "fields": { - "name": "Produce Flame", - "desc": "A flickering flame appears in your hand. The flame remains there for the duration and harms neither you nor your equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The spell ends if you dismiss it as an action or if you cast it again. You can also attack with the flame, although doing so ends the spell. When you cast this spell, or as an action on a later turn, you can hurl the flame at a creature within 30 feet of you. Make a ranged spell attack. On a hit, the target takes 1d8 fire damage.", - "document": "srd", - "level": 0, - "school": "conjuration", - "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "fire" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "programmed-illusion", - "fields": { - "name": "Programmed Illusion", - "desc": "You create an illusion of an object, a creature, or some other visible phenomenon within range that activates when a specific condition occurs. The illusion is imperceptible until then. It must be no larger than a 30-foot cube, and you decide when you cast the spell how the illusion behaves and what sounds it makes. This scripted performance can last up to 5 minutes. When the condition you specify occurs, the illusion springs into existence and performs in the manner you described. Once the illusion finishes performing, it disappears and remains dormant for 10 minutes. After this time, the illusion can be activated again. The triggering condition can be as general or as detailed as you like, though it must be based on visual or audible conditions that occur within 30 feet of the area. For example, you could create an illusion of yourself to appear and warn off others who attempt to open a trapped door, or you could set the illusion to trigger only when a creature says the correct word or phrase. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature.", - "document": "srd", - "level": 6, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fleece and jade dust worth at least 25 gp.", - "material_cost": "25.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": "cube", - "shape_magnitude": 30, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "project-image", - "fields": { - "name": "Project Image", - "desc": "You create an illusory copy of yourself that lasts for the duration. The copy can appear at any location within range that you have seen before, regardless of intervening obstacles. The illusion looks and sounds like you but is intangible. If the illusion takes any damage, it disappears, and the spell ends. You can use your action to move this illusion up to twice your speed, and make it gesture, speak, and behave in whatever way you choose. It mimics your mannerisms perfectly. You can see through its eyes and hear through its ears as if you were in its space. On your turn as a bonus action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are blinded and deafened in regard to your own surroundings. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature.", - "document": "srd", - "level": 7, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "500 miles", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small replica of you made from materials worth at least 5 gp.", - "material_cost": "5.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "protection-from-energy", - "fields": { - "name": "Protection from Energy", - "desc": "For the duration, the willing creature you touch has resistance to one damage type of your choice: acid, cold, fire, lightning, or thunder.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "protection-from-evil-and-good", - "fields": { - "name": "Protection from Evil and Good", - "desc": "Until the spell ends, one willing creature you touch is protected against certain types of creatures: aberrations, celestials, elementals, fey, fiends, and undead. The protection grants several benefits. Creatures of those types have disadvantage on attack rolls against the target. The target also can't be charmed, frightened, or possessed by them. If the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against the relevant effect.", - "document": "srd", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Holy water or powdered silver and iron, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "protection-from-poison", - "fields": { - "name": "Protection from Poison", - "desc": "You touch a creature. If it is poisoned, you neutralize the poison. If more than one poison afflicts the target, you neutralize one poison that you know is present, or you neutralize one at random. For the duration, the target has advantage on saving throws against being poisoned, and it has resistance to poison damage.", - "document": "srd", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "purify-food-and-drink", - "fields": { - "name": "Purify Food and Drink", - "desc": "All nonmagical food and drink within a 5-foot radius sphere centered on a point of your choice within range is purified and rendered free of poison and disease.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "10 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 5, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "raise-dead", - "fields": { - "name": "Raise Dead", - "desc": "You return a dead creature you touch to life, provided that it has been dead no longer than 10 days. If the creature's soul is both willing and at liberty to rejoin the body, the creature returns to life with 1 hit point. This spell also neutralizes any poisons and cures nonmagical diseases that affected the creature at the time it died. This spell doesn't, however, remove magical diseases, curses, or similar effects; if these aren't first removed prior to casting the spell, they take effect when the creature returns to life. The spell can't return an undead creature to life. This spell closes all mortal wounds, but it doesn't restore missing body parts. If the creature is lacking body parts or organs integral for its survival-its head, for instance-the spell automatically fails. Coming back from the dead is an ordeal. The target takes a -4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.", - "document": "srd", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A diamond worth at least 500gp, which the spell consumes.", - "material_cost": "500.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "ray-of-enfeeblement", - "fields": { - "name": "Ray of Enfeeblement", - "desc": "A black beam of enervating energy springs from your finger toward a creature within range. Make a ranged spell attack against the target. On a hit, the target deals only half damage with weapon attacks that use Strength until the spell ends. At the end of each of the target's turns, it can make a constitution saving throw against the spell. On a success, the spell ends.", - "document": "srd", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "ray-of-frost", - "fields": { - "name": "Ray of Frost", - "desc": "A frigid beam of blue-white light streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage, and its speed is reduced by 10 feet until the start of your next turn.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "regenerate", - "fields": { - "name": "Regenerate", - "desc": "You touch a creature and stimulate its natural healing ability. The target regains 4d8 + 15 hit points. For the duration of the spell, the target regains 1 hit point at the start of each of its turns (10 hit points each minute). The target's severed body members (fingers, legs, tails, and so on), if any, are restored after 2 minutes. If you have the severed part and hold it to the stump, the spell instantaneously causes the limb to knit to the stump.", - "document": "srd", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A prayer wheel and holy water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "reincarnate", - "fields": { - "name": "Reincarnate", - "desc": "You touch a dead humanoid or a piece of a dead humanoid. Provided that the creature has been dead no longer than 10 days, the spell forms a new adult body for it and then calls the soul to enter that body. If the target's soul isn't free or willing to do so, the spell fails. The magic fashions a new body for the creature to inhabit, which likely causes the creature's race to change. The DM rolls a d 100 and consults the following table to determine what form the creature takes when restored to life, or the DM chooses a form.\n\n**01-04** Dragonborn **05-13** Dwarf, hill **14-21** Dwarf, mountain **22-25** Elf, dark **26-34** Elf, high **35-42** Elf, wood **43-46** Gnome, forest **47-52** Gnome, rock **53-56** Half-elf **57-60** Half-orc **61-68** Halfling, lightfoot **69-76** Halfling, stout **77-96** Human **97-00** Tiefling \nThe reincarnated creature recalls its former life and experiences. It retains the capabilities it had in its original form, except it exchanges its original race for the new one and changes its racial traits accordingly.", - "document": "srd", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Rare oils and unguents worth at least 1,000 gp, which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "remove-curse", - "fields": { - "name": "Remove Curse", - "desc": "At your touch, all curses affecting one creature or object end. If the object is a cursed magic item, its curse remains, but the spell breaks its owner's attunement to the object so it can be removed or discarded.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "resilient-sphere", - "fields": { - "name": "Resilient Sphere", - "desc": "A sphere of shimmering force encloses a creature or object of Large size or smaller within range. An unwilling creature must make a dexterity saving throw. On a failed save, the creature is enclosed for the duration. Nothing-not physical objects, energy, or other spell effects-can pass through the barrier, in or out, though a creature in the sphere can breathe there. The sphere is immune to all damage, and a creature or object inside can't be damaged by attacks or effects originating from outside, nor can a creature inside the sphere damage anything outside it. The sphere is weightless and just large enough to contain the creature or object inside. An enclosed creature can use its action to push against the sphere's walls and thus roll the sphere at up to half the creature's speed. Similarly, the globe can be picked up and moved by other creatures. A disintegrate spell targeting the globe destroys it without harming anything inside it.", - "document": "srd", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A hemispherical piece of clear crystal and a matching hemispherical piece of gum arabic.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "resistance", - "fields": { - "name": "Resistance", - "desc": "You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one saving throw of its choice. It can roll the die before or after making the saving throw. The spell then ends.", - "document": "srd", - "level": 0, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A miniature cloak.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "resurrection", - "fields": { - "name": "Resurrection", - "desc": "You touch a dead creature that has been dead for no more than a century, that didn't die of old age, and that isn't undead. If its soul is free and willing, the target returns to life with all its hit points. This spell neutralizes any poisons and cures normal diseases afflicting the creature when it died. It doesn't, however, remove magical diseases, curses, and the like; if such effects aren't removed prior to casting the spell, they afflict the target on its return to life. This spell closes all mortal wounds and restores any missing body parts. Coming back from the dead is an ordeal. The target takes a -4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears. Casting this spell to restore life to a creature that has been dead for one year or longer taxes you greatly. Until you finish a long rest, you can't cast spells again, and you have disadvantage on all attack rolls, ability checks, and saving throws.", - "document": "srd", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A diamond worth at least 1,000gp, which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "reverse-gravity", - "fields": { - "name": "Reverse Gravity", - "desc": "This spell reverses gravity in a 50-foot-radius, 100-foot high cylinder centered on a point within range. All creatures and objects that aren't somehow anchored to the ground in the area fall upward and reach the top of the area when you cast this spell. A creature can make a dexterity saving throw to grab onto a fixed object it can reach, thus avoiding the fall. If some solid object (such as a ceiling) is encountered in this fall, falling objects and creatures strike it just as they would during a normal downward fall. If an object or creature reaches the top of the area without striking anything, it remains there, oscillating slightly, for the duration. At the end of the duration, affected objects and creatures fall back down.", - "document": "srd", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A lodestone and iron filings.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cylinder", - "shape_magnitude": 100, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "revivify", - "fields": { - "name": "Revivify", - "desc": "You touch a creature that has died within the last minute. That creature returns to life with 1 hit point. This spell can't return to life a creature that has died of old age, nor can it restore any missing body parts.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Diamonds worth 300gp, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "rope-trick", - "fields": { - "name": "Rope Trick", - "desc": "You touch a length of rope that is up to 60 feet long. One end of the rope then rises into the air until the whole rope hangs perpendicular to the ground. At the upper end of the rope, an invisible entrance opens to an extradimensional space that lasts until the spell ends. The extradimensional space can be reached by climbing to the top of the rope. The space can hold as many as eight Medium or smaller creatures. The rope can be pulled into the space, making the rope disappear from view outside the space. Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window centered on the rope. Anything inside the extradimensional space drops out when the spell ends.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Powdered corn extract and a twisted loop of parchment.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sacred-flame", - "fields": { - "name": "Sacred Flame", - "desc": "Flame-like radiance descends on a creature that you can see within range. The target must succeed on a dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sanctuary", - "fields": { - "name": "Sanctuary", - "desc": "You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a fireball. If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.", - "document": "srd", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small silver mirror.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "scorching-ray", - "fields": { - "name": "Scorching Ray", - "desc": "You create three rays of fire and hurl them at targets within range. You can hurl them at one target or several. Make a ranged spell attack for each ray. On a hit, the target takes 2d6 fire damage.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "2d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "scrying", - "fields": { - "name": "Scrying", - "desc": "You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n**Knowledge & Save Modifier** Secondhand (you have heard of the target) +5 Firsthand (you have met the target) +0 Familiar (you know the target well) -5 **Connection & Save Modifier** Likeness or picture -2 Possession or garment -4 Body part, lock of hair, bit of nail, or the like -10 \nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours. On a failed save, the spell creates an invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the duration. A creature that can see invisible objects sees the sensor as a luminous orb about the size of your fist. Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.", - "document": "srd", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.", - "material_cost": "1000.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "secret-chest", - "fields": { - "name": "Secret Chest", - "desc": "You hide a chest, and all its contents, on the Ethereal Plane. You must touch the chest and the miniature replica that serves as a material component for the spell. The chest can contain up to 12 cubic feet of nonliving material (3 feet by 2 feet by 2 feet). While the chest remains on the Ethereal Plane, you can use an action and touch the replica to recall the chest. It appears in an unoccupied space on the ground within 5 feet of you. You can send the chest back to the Ethereal Plane by using an action and touching both the chest and the replica. After 60 days, there is a cumulative 5 percent chance per day that the spell's effect ends. This effect ends if you cast this spell again, if the smaller replica chest is destroyed, or if you choose to end the spell as an action. If the spell ends and the larger chest is on the Ethereal Plane, it is irretrievably lost.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An exquisite chest, 3 feet by 2 feet by 2 feet, constructed from rare materials worth at least 5,000 gp, and a Tiny replica made from the same materials worth at least 50 gp.", - "material_cost": "5000.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "see-invisibility", - "fields": { - "name": "See Invisibility", - "desc": "For the duration of the spell, you see invisible creatures and objects as if they were visible, and you can see through Ethereal. The ethereal objects and creatures appear ghostly translucent.", - "document": "srd", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A dash of talc and a small amount of silver powder.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "seeming", - "fields": { - "name": "Seeming", - "desc": "This spell allows you to change the appearance of any number of creatures that you can see within range. You give each target you choose a new, illusory appearance. An unwilling target can make a charisma saving throw, and if it succeeds, it is unaffected by this spell. The spell disguises physical appearance as well as clothing, armor, weapons, and equipment. You can make each creature seem 1 foot shorter or taller and appear thin, fat, or in between. You can't change a target's body type, so you must choose a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you. The spell lasts for the duration, unless you use your action to dismiss it sooner. The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to a creature's outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel the creature's head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair. A creature can use its action to inspect a target and make an Intelligence (Investigation) check against your spell save DC. If it succeeds, it becomes aware that the target is disguised.", - "document": "srd", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sending", - "fields": { - "name": "Sending", - "desc": "You send a short message of twenty-five words or less to a creature with which you are familiar. The creature hears the message in its mind, recognizes you as the sender if it knows you, and can answer in a like manner immediately. The spell enables creatures with Intelligence scores of at least 1 to understand the meaning of your message. You can send the message across any distance and even to other planes of existence, but if the target is on a different plane than you, there is a 5 percent chance that the message doesn't arrive.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Unlimited", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A short piece of fine copper wire.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sequester", - "fields": { - "name": "Sequester", - "desc": "By means of this spell, a willing creature or an object can be hidden away, safe from detection for the duration. When you cast the spell and touch the target, it becomes invisible and can't be targeted by divination spells or perceived through scrying sensors created by divination spells. If the target is a creature, it falls into a state of suspended animation. Time ceases to flow for it, and it doesn't grow older. You can set a condition for the spell to end early. The condition can be anything you choose, but it must occur or be visible within 1 mile of the target. Examples include \"after 1,000 years\" or \"when the tarrasque awakens.\" This spell also ends if the target takes any damage.", - "document": "srd", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A powder composed of diamond, emerald, ruby, and sapphire dust worth at least 5,000 gp, which the spell consumes.", - "material_cost": "5000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shapechange", - "fields": { - "name": "Shapechange", - "desc": "You assume the form of a different creature for the duration. The new form can be of any creature with a challenge rating equal to your level or lower. The creature can't be a construct or an undead, and you must have seen the sort of creature at least once. You transform into an average example of that creature, one without any class levels or the Spellcasting trait. Your game statistics are replaced by the statistics of the chosen creature, though you retain your alignment and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus listed in its statistics is higher than yours, use the creature's bonus in place of yours. You can't use any legendary actions or lair actions of the new form. You assume the hit points and Hit Dice of the new form. When you revert to your normal form, you return to the number of hit points you had before you transformed. If you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious. You retain the benefit of any features from your class, race, or other source and can use them, provided that your new form is physically capable of doing so. You can't use any special senses you have (for example, darkvision) unless your new form also has that sense. You can only speak if the creature can normally speak. When you transform, you choose whether your equipment falls to the ground, merges into the new form, or is worn by it. Worn equipment functions as normal. The DM determines whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change shape or size to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge into your new form. Equipment that merges has no effect in that state. During this spell's duration, you can use your action to assume a different form following the same restrictions and rules for the original form, with one exception: if your new form has more hit points than your current one, your hit points remain at their current value.", - "document": "srd", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A jade circlet worth at least 1,500 gp, which you must place on your head before you cast the spell.", - "material_cost": "1500.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "shatter", - "fields": { - "name": "Shatter", - "desc": "A sudden loud ringing noise, painfully intense, erupts from a point of your choice within range. Each creature in a 10-­--foot-­--radius sphere centered on that point must make a Constitution saving throw. A creature takes 3d8 thunder damage on a failed save, or half as much damage on a successful one. A creature made of inorganic material such as stone,crystal, or metal has disadvantage on this saving throw. A nonmagical object that isn't being worn or carried also takes the damage if it's in the spell's area.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A burst of mica.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shield", - "fields": { - "name": "Shield", - "desc": "An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.", - "document": "srd", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shield-of-faith", - "fields": { - "name": "Shield of Faith", - "desc": "A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.", - "document": "srd", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small parchment with a bit of holy text written on it.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "shillelagh", - "fields": { - "name": "Shillelagh", - "desc": "The wood of a club or a quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.", - "document": "srd", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Mistletoe, a shamrock leaf, and a club or quarterstaff.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "shocking-grasp", - "fields": { - "name": "Shocking Grasp", - "desc": "Lightning springs from your hand to deliver a shock to a creature you try to touch. Make a melee spell attack against the target. You have advantage on the attack roll if the target is wearing armor made of metal. On a hit, the target takes 1d8 lightning damage, and it can't take reactions until the start of its next turn.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "lightning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "silence", - "fields": { - "name": "Silence", - "desc": "For the duration, no sound can be created within or pass through a 20-foot-radius sphere centered on a point you choose within range. Any creature or object entirely inside the sphere is immune to thunder damage, and creatures are deafened while entirely inside it. Casting a spell that includes a verbal component is impossible there.", - "document": "srd", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "silent-image", - "fields": { - "name": "Silent Image", - "desc": "You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 15-foot cube. The image appears at a spot within range and lasts for the duration. The image is purely visual; it isn't accompanied by sound, smell, or other sensory effects. You can use your action to cause the image to move to any spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image.", - "document": "srd", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fleece.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "cube", - "shape_magnitude": 15, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "simulacrum", - "fields": { - "name": "Simulacrum", - "desc": "You shape an illusory duplicate of one beast or humanoid that is within range for the entire casting time of the spell. The duplicate is a creature, partially real and formed from ice or snow, and it can take actions and otherwise be affected as a normal creature. It appears to be the same as the original, but it has half the creature's hit point maximum and is formed without any equipment. Otherwise, the illusion uses all the statistics of the creature it duplicates. The simulacrum is friendly to you and creatures you designate. It obeys your spoken commands, moving and acting in accordance with your wishes and acting on your turn in combat. The simulacrum lacks the ability to learn or become more powerful, so it never increases its level or other abilities, nor can it regain expended spell slots. If the simulacrum is damaged, you can repair it in an alchemical laboratory, using rare herbs and minerals worth 100 gp per hit point it regains. The simulacrum lasts until it drops to 0 hit points, at which point it reverts to snow and melts instantly. If you cast this spell again, any currently active duplicates you created with this spell are instantly destroyed.", - "document": "srd", - "level": 7, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Snow or ice in quantities sufficient to made a life-size copy of the duplicated creature; some hair, fingernail clippings, or other piece of that creature's body placed inside the snow or ice; and powdered ruby worth 1,500 gp, sprinkled over the duplicate and consumed by the spell.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sleep", - "fields": { - "name": "Sleep", - "desc": "This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures). Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected. Undead and creatures immune to being charmed aren't affected by this spell.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of fine sand, rose petals, or a cricket.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "sleet-storm", - "fields": { - "name": "Sleet Storm", - "desc": "Until the spell ends, freezing rain and sleet fall in a 20-foot-tall cylinder with a 40-foot radius centered on a point you choose within range. The area is heavily obscured, and exposed flames in the area are doused. The ground in the area is covered with slick ice, making it difficult terrain. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a dexterity saving throw. On a failed save, it falls prone. If a creature is concentrating in the spell's area, the creature must make a successful constitution saving throw against your spell save DC or lose concentration.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of dust and a few drops of water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cylinder", - "shape_magnitude": 40, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "slow", - "fields": { - "name": "Slow", - "desc": "You alter time around up to six creatures of your choice in a 40-foot cube within range. Each target must succeed on a wisdom saving throw or be affected by this spell for the duration. An affected target's speed is halved, it takes a -2 penalty to AC and dexterity saving throws, and it can't use reactions. On its turn, it can use either an action or a bonus action, not both. Regardless of the creature's abilities or magic items, it can't make more than one melee or ranged attack during its turn. If the creature attempts to cast a spell with a casting time of 1 action, roll a d20. On an 11 or higher, the spell doesn't take effect until the creature's next turn, and the creature must use its action on that turn to complete the spell. If it can't, the spell is wasted. A creature affected by this spell makes another wisdom saving throw at the end of its turn. On a successful save, the effect ends for it.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of molasses.", - "material_cost": null, - "material_consumed": false, - "target_count": 6, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 40, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "spare-the-dying", - "fields": { - "name": "Spare the Dying", - "desc": "You touch a living creature that has 0 hit points. The creature becomes stable. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 0, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "speak-with-animals", - "fields": { - "name": "Speak with Animals", - "desc": "You gain the ability to comprehend and verbally communicate with beasts for the duration. The knowledge and awareness of many beasts is limited by their intelligence, but at a minimum, beasts can give you information about nearby locations and monsters, including whatever they can perceive or have perceived within the past day. You might be able to persuade a beast to perform a small favor for you, at the DM's discretion.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "speak-with-dead", - "fields": { - "name": "Speak with Dead", - "desc": "You grant the semblance of life and intelligence to a corpse of your choice within range, allowing it to answer the questions you pose. The corpse must still have a mouth and can't be undead. The spell fails if the corpse was the target of this spell within the last 10 days. Until the spell ends, you can ask the corpse up to five questions. The corpse knows only what it knew in life, including the languages it knew. Answers are usually brief, cryptic, or repetitive, and the corpse is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This spell doesn't return the creature's soul to its body, only its animating spirit. Thus, the corpse can't learn new information, doesn't comprehend anything that has happened since it died, and can't speculate about future events.", - "document": "srd", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Burning incense.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "speak-with-plants", - "fields": { - "name": "Speak with Plants", - "desc": "You imbue plants within 30 feet of you with limited sentience and animation, giving them the ability to communicate with you and follow your simple commands. You can question plants about events in the spell's area within the past day, gaining information about creatures that have passed, weather, and other circumstances. You can also turn difficult terrain caused by plant growth (such as thickets and undergrowth) into ordinary terrain that lasts for the duration. Or you can turn ordinary terrain where plants are present into difficult terrain that lasts for the duration, causing vines and branches to hinder pursuers, for example. Plants might be able to perform other tasks on your behalf, at the DM's discretion. The spell doesn't enable plants to uproot themselves and move about, but they can freely move branches, tendrils, and stalks. If a plant creature is in the area, you can communicate with it as if you shared a common language, but you gain no magical ability to influence it. This spell can cause the plants created by the entangle spell to release a restrained creature.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "spider-climb", - "fields": { - "name": "Spider Climb", - "desc": "Until the spell ends, one willing creature you touch gains the ability to move up, down, and across vertical surfaces and upside down along ceilings, while leaving its hands free. The target also gains a climbing speed equal to its walking speed.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of bitumen and a spider.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "spike-growth", - "fields": { - "name": "Spike Growth", - "desc": "The ground in a 20-foot radius centered on a point within range twists and sprouts hard spikes and thorns. The area becomes difficult terrain for the duration. When a creature moves into or within the area, it takes 2d4 piercing damage for every 5 feet it travels. The development of land is camouflaged to look natural. Any creature that does not see the area when the spell is spell casts must make a Wisdom (Perception) check against your spell save DC to recognize the terrain as hazardous before entering it.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Seven sharp spines or seven twigs cut peak.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "piercing" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "spirit-guardians", - "fields": { - "name": "Spirit Guardians", - "desc": "You call forth spirits to protect you. They flit around you to a distance of 15 feet for the duration. If you are good or neutral, their spectral form appears angelic or fey (your choice). If you are evil, they appear fiendish. When you cast this spell, you can designate any number of creatures you can see to be unaffected by it. An affected creature's speed is halved in the area, and when the creature enters the area for the first time on a turn or starts its turn there, it must make a wisdom saving throw. On a failed save, the creature takes 3d8 radiant damage (if you are good or neutral) or 3d8 necrotic damage (if you are evil). On a successful save, the creature takes half as much damage.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A holy symbol.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "radiant" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "spiritual-weapon", - "fields": { - "name": "Spiritual Weapon", - "desc": "You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier. As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it. The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "stinking-cloud", - "fields": { - "name": "Stinking Cloud", - "desc": "You create a 20-foot-radius sphere of yellow, nauseating gas centered on a point within range. The cloud spreads around corners, and its area is heavily obscured. The cloud lingers in the air for the duration. Each creature that is completely within the cloud at the start of its turn must make a constitution saving throw against poison. On a failed save, the creature spends its action that turn retching and reeling. Creatures that don't need to breathe or are immune to poison automatically succeed on this saving throw. A moderate wind (at least 10 miles per hour) disperses the cloud after 4 rounds. A strong wind (at least 20 miles per hour) disperses it after 1 round.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A rotten egg or several skunk cabbage leaves.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "stone-shape", - "fields": { - "name": "Stone Shape", - "desc": "You touch a stone object of Medium size or smaller or a section of stone no more than 5 feet in any dimension and form it into any shape that suits your purpose. So, for example, you could shape a large rock into a weapon, idol, or coffer, or make a small passage through a wall, as long as the wall is less than 5 feet thick. You could also shape a stone door or its frame to seal the door shut. The object you create can have up to two hinges and a latch, but finer mechanical detail isn't possible.", - "document": "srd", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Soft clay, to be crudely worked into the desired shape for the stone object.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "stoneskin", - "fields": { - "name": "Stoneskin", - "desc": "This spell turns the flesh of a willing creature you touch as hard as stone. Until the spell ends, the target has resistance to nonmagical bludgeoning, piercing, and slashing damage.", - "document": "srd", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Diamond dust worth 100 gp, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "storm-of-vengeance", - "fields": { - "name": "Storm of Vengeance", - "desc": "A churning storm cloud forms, centered on a point you can see and spreading to a radius of 360 feet. Lightning flashes in the area, thunder booms, and strong winds roar. Each creature under the cloud (no more than 5,000 feet beneath the cloud) when it appears must make a constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 5 minutes. Each round you maintain concentration on this spell, the storm produces additional effects on your turn.\n\n**Round 2.** Acidic rain falls from the cloud. Each creature and object under the cloud takes 1d6 acid damage.\n\n**Round 3.** You call six bolts of lightning from the cloud to strike six creatures or objects of your choice beneath the cloud. A given creature or object can't be struck by more than one bolt. A struck creature must make a dexterity saving throw. The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**Round 4.** Hailstones rain down from the cloud. Each creature under the cloud takes 2d6 bludgeoning damage.\n\n**Round 5-10.** Gusts and freezing rain assail the area under the cloud. The area becomes difficult terrain and is heavily obscured. Each creature there takes 1d6 cold damage. Ranged weapon attacks in the area are impossible. The wind and rain count as a severe distraction for the purposes of maintaining concentration on spells. Finally, gusts of strong wind (ranging from 20 to 50 miles per hour) automatically disperse fog, mists, and similar phenomena in the area, whether mundane or magical.", - "document": "srd", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "Sight", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "thunder" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "suggestion", - "fields": { - "name": "Suggestion", - "desc": "You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell. The target must make a wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do. You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed. If you or any of your companions damage the target, the spell ends.", - "document": "srd", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "A snake's tongue and either a bit of honeycomb or a drop of sweet oil.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "sunbeam", - "fields": { - "name": "Sunbeam", - "desc": "A beam of brilliant light flashes out from your hand in a 5-foot-wide, 60-foot-long line. Each creature in the line must make a constitution saving throw. On a failed save, a creature takes 6d8 radiant damage and is blinded until your next turn. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw. You can create a new line of radiance as your action on any turn until the spell ends. For the duration, a mote of brilliant radiance shines in your hand. It sheds bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A magnifying glass.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "radiant" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "sunburst", - "fields": { - "name": "Sunburst", - "desc": "Brilliant sunlight flashes in a 60-foot radius centered on a point you choose within range. Each creature in that light must make a constitution saving throw. On a failed save, a creature takes 12d6 radiant damage and is blinded for 1 minute. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw. A creature blinded by this spell makes another constitution saving throw at the end of each of its turns. On a successful save, it is no longer blinded. This spell dispels any darkness in its area that was created by a spell.", - "document": "srd", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Fire and a piece of sunstone.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "12d6", - "damage_types": [ - "radiant" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "symbol", - "fields": { - "name": "Symbol", - "desc": "When you cast this spell, you inscribe a harmful glyph either on a surface (such as a section of floor, a wall, or a table) or within an object that can be closed to conceal the glyph (such as a book, a scroll, or a treasure chest). If you choose a surface, the glyph can cover an area of the surface no larger than 10 feet in diameter. If you choose an object, that object must remain in its place; if the object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered. The glyph is nearly invisible, requiring an Intelligence (Investigation) check against your spell save DC to find it. You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or stepping on the glyph, removing another object covering it, approaching within a certain distance of it, or manipulating the object that holds it. For glyphs inscribed within an object, the most common triggers are opening the object, approaching within a certain distance of it, or seeing or reading the glyph. You can further refine the trigger so the spell is activated only under certain circumstances or according to a creature's physical characteristics (such as height or weight), or physical kind (for example, the ward could be set to affect hags or shapechangers). You can also specify creatures that don't trigger the glyph, such as those who say a certain password. When you inscribe the glyph, choose one of the options below for its effect. Once triggered, the glyph glows, filling a 60-foot-radius sphere with dim light for 10 minutes, after which time the spell ends. Each creature in the sphere when the glyph activates is targeted by its effect, as is a creature that enters the sphere for the first time on a turn or ends its turn there.\n\n**Death.** Each target must make a constitution saving throw, taking 10d 10 necrotic damage on a failed save, or half as much damage on a successful save\n\n **Discord.** Each target must make a constitution saving throw. On a failed save, a target bickers and argues with other creatures for 1 minute. During this time, it is incapable of meaningful communication and has disadvantage on attack rolls and ability checks.\n\n**Fear.** Each target must make a wisdom saving throw and becomes frightened for 1 minute on a failed save. While frightened, the target drops whatever it is holding and must move at least 30 feet away from the glyph on each of its turns, if able.\n\n**Hopelessness.** Each target must make a charisma saving throw. On a failed save, the target is overwhelmed with despair for 1 minute. During this time, it can't attack or target any creature with harmful abilities, spells, or other magical effects.\n\n**Insanity.** Each target must make an intelligence saving throw. On a failed save, the target is driven insane for 1 minute. An insane creature can't take actions, can't understand what other creatures say, can't read, and speaks only in gibberish. The DM controls its movement, which is erratic.\n\n**Pain.** Each target must make a constitution saving throw and becomes incapacitated with excruciating pain for 1 minute on a failed save.\n\n**Sleep.** Each target must make a wisdom saving throw and falls unconscious for 10 minutes on a failed save. A creature awakens if it takes damage or if someone uses an action to shake or slap it awake.\n\n**Stunning.** Each target must make a wisdom saving throw and becomes stunned for 1 minute on a failed save.", - "document": "srd", - "level": 7, - "school": "abjuration", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Mercury, phosphorus, and powdered diamond and opal with a total value of at least 1,000 gp, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled or triggered", - "shape_type": "sphere", - "shape_magnitude": 60, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "telekinesis", - "fields": { - "name": "Telekinesis", - "desc": "You gain the ability to move or manipulate creatures or objects by thought. When you cast the spell, and as your action each round for the duration, you can exert your will on one creature or object that you can see within range, causing the appropriate effect below. You can affect the same target round after round, or choose a new one at any time. If you switch targets, the prior target is no longer affected by the spell.\n\n**Creature.** You can try to move a Huge or smaller creature. Make an ability check with your spellcasting ability contested by the creature's Strength check. If you win the contest, you move the creature up to 30 feet in any direction, including upward but not beyond the range of this spell. Until the end of your next turn, the creature is restrained in your telekinetic grip. A creature lifted upward is suspended in mid-air. On subsequent rounds, you can use your action to attempt to maintain your telekinetic grip on the creature by repeating the contest.\n\n**Object.** You can try to move an object that weighs up to 1,000 pounds. If the object isn't being worn or carried, you automatically move it up to 30 feet in any direction, but not beyond the range of this spell. If the object is worn or carried by a creature, you must make an ability check with your spellcasting ability contested by that creature's Strength check. If you succeed, you pull the object away from that creature and can move it up to 30 feet in any direction but not beyond the range of this spell. You can exert fine control on objects with your telekinetic grip, such as manipulating a simple tool, opening a door or a container, stowing or retrieving an item from an open container, or pouring the contents from a vial.", - "document": "srd", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "telepathic-bond", - "fields": { - "name": "Telepathic Bond", - "desc": "You forge a telepathic link among up to eight willing creatures of your choice within range, psychically linking each creature to all the others for the duration. Creatures with Intelligence scores of 2 or less aren't affected by this spell. Until the spell ends, the targets can communicate telepathically through the bond whether or not they have a common language. The communication is possible over any distance, though it can't extend to other planes of existence.", - "document": "srd", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Pieces of eggshell from two different kinds of creatures", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "teleport", - "fields": { - "name": "Teleport", - "desc": "This spell instantly transports you and up to eight willing creatures of your choice that you can see within range, or a single object that you can see within range, to a destination you select. If you target an object, it must be able to fit entirely inside a 10-foot cube, and it can't be held or carried by an unwilling creature. The destination you choose must be known to you, and it must be on the same plane of existence as you. Your familiarity with the destination determines whether you arrive there successfully. The DM rolls d100 and consults the table.\n\n**Familiarity.** \"Permanent circle\" means a permanent teleportation circle whose sigil sequence you know. \"Associated object\" means that you possess an object taken from the desired destination within the last six months, such as a book from a wizard's library, bed linen from a royal suite, or a chunk of marble from a lich's secret tomb. \"Very familiar\" is a place you have been very often, a place you have carefully studied, or a place you can see when you cast the spell. \"Seen casually\" is someplace you have seen more than once but with which you aren't very familiar. \"Viewed once\" is a place you have seen once, possibly using magic. \"Description\" is a place whose location and appearance you know through someone else's description, perhaps from a map. \"False destination\" is a place that doesn't exist. Perhaps you tried to scry an enemy's sanctum but instead viewed an illusion, or you are attempting to teleport to a familiar location that no longer exists.\n\n**On Target.** You and your group (or the target object) appear where you want to.\n\n**Off Target.** You and your group (or the target object) appear a random distance away from the destination in a random direction. Distance off target is 1d10 × 1d10 percent of the distance that was to be traveled. For example, if you tried to travel 120 miles, landed off target, and rolled a 5 and 3 on the two d10s, then you would be off target by 15 percent, or 18 miles. The GM determines the direction off target randomly by rolling a d8 and designating 1 as north, 2 as northeast, 3 as east, and so on around the points of the compass. If you were teleporting to a coastal city and wound up 18 miles out at sea, you could be in trouble.\n\n**Similar Area.** You and your group (or the target object) wind up in a different area that's visually or thematically similar to the target area. If you are heading for your home laboratory, for example, you might wind up in another wizard's laboratory or in an alchemical supply shop that has many of the same tools and implements as your laboratory. Generally, you appear in the closest similar place, but since the spell has no range limit, you could conceivably wind up anywhere on the plane.\n\n**Mishap.** The spell's unpredictable magic results in a difficult journey. Each teleporting creature (or the target object) takes 3d10 force damage, and the GM rerolls on the table to see where you wind up (multiple mishaps can occur, dealing damage each time).", - "document": "srd", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d10", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "teleportation-circle", - "fields": { - "name": "Teleportation Circle", - "desc": "As you cast the spell, you draw a 10-foot-diameter circle on the ground inscribed with sigils that link your location to a permanent teleportation circle of your choice whose sigil sequence you know and that is on the same plane of existence as you. A shimmering portal opens within the circle you drew and remains open until the end of your next turn. Any creature that enters the portal instantly appears within 5 feet of the destination circle or in the nearest unoccupied space if that space is occupied. Many major temples, guilds, and other important places have permanent teleportation circles inscribed somewhere within their confines. Each such circle includes a unique sigil sequence-a string of magical runes arranged in a particular pattern. When you first gain the ability to cast this spell, you learn the sigil sequences for two destinations on the Material Plane, determined by the DM. You can learn additional sigil sequences during your adventures. You can commit a new sigil sequence to memory after studying it for 1 minute. You can create a permanent teleportation circle by casting this spell in the same location every day for one year. You need not use the circle to teleport when you cast the spell in this way.", - "document": "srd", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "Rare chalks and inks infused with precious gems with 50 gp, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "thaumaturgy", - "fields": { - "name": "Thaumaturgy", - "desc": "You manifest a minor wonder, a sign of supernatural power, within range. You create one of the following magical effects within range. \n- Your voice booms up to three times as loud as normal for 1 minute. \n- You cause flames to flicker, brighten, dim, or change color for 1 minute. \n- You cause harmless tremors in the ground for 1 minute. \n- You create an instantaneous sound that originates from a point of your choice within range, such as a rumble of thunder, the cry of a raven, or ominous whispers. \n- You instantaneously cause an unlocked door or window to fly open or slam shut. \n- You alter the appearance of your eyes for 1 minute. \nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.", - "document": "srd", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "thunderwave", - "fields": { - "name": "Thunderwave", - "desc": "A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed. In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 15, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "time-stop", - "fields": { - "name": "Time Stop", - "desc": "You briefly stop the flow of time for everyone but yourself. No time passes for other creatures, while you take 1d4 + 1 turns in a row, during which you can use actions and move as normal. This spell ends if one of the actions you use during this period, or any effects that you create during this period, affects a creature other than you or an object being worn or carried by someone other than you. In addition, the spell ends if you move to a place more than 1,000 feet from the location where you cast it.", - "document": "srd", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "tiny-hut", - "fields": { - "name": "Tiny Hut", - "desc": "A 10-foot-radius immobile dome of force springs into existence around and above you and remains stationary for the duration. The spell ends if you leave its area. Nine creatures of Medium size or smaller can fit inside the dome with you. The spell fails if its area includes a larger creature or more than nine creatures. Creatures and objects within the dome when you cast this spell can move through it freely. All other creatures and objects are barred from passing through it. Spells and other magical effects can't extend through the dome or be cast through it. The atmosphere inside the space is comfortable and dry, regardless of the weather outside. Until the spell ends, you can command the interior to become dimly lit or dark. The dome is opaque from the outside, of any color you choose, but it is transparent from the inside.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small crystal bead.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "tongues", - "fields": { - "name": "Tongues", - "desc": "This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.", - "document": "srd", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "A small clay model of a ziggurat.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "transport-via-plants", - "fields": { - "name": "Transport via Plants", - "desc": "This spell creates a magical link between a Large or larger inanimate plant within range and another plant, at any distance, on the same plane of existence. You must have seen or touched the destination plant at least once before. For the duration, any creature can step into the target plant and exit from the destination plant by using 5 feet of movement.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "tree-stride", - "fields": { - "name": "Tree Stride", - "desc": "You gain the ability to enter a tree and move from inside it to inside another tree of the same kind within 500 feet. Both trees must be living and at least the same size as you. You must use 5 feet of movement to enter a tree. You instantly know the location of all other trees of the same kind within 500 feet and, as part of the move used to enter the tree, can either pass into one of those trees or step out of the tree you're in. You appear in a spot of your choice within 5 feet of the destination tree, using another 5 feet of movement. If you have no movement left, you appear within 5 feet of the tree you entered. You can use this transportation ability once per round for the duration. You must end each turn outside a tree.", - "document": "srd", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "true-polymorph", - "fields": { - "name": "True Polymorph", - "desc": "Choose one creature or nonmagical object that you can see within range. You transform the creature into a different creature, the creature into an object, or the object into a creature (the object must be neither worn nor carried by another creature). The transformation lasts for the duration, or until the target drops to 0 hit points or dies. If you concentrate on this spell for the full duration, the transformation lasts until it is dispelled. This spell has no effect on a shapechanger or a creature with 0 hit points. An unwilling creature can make a Wisdom saving throw, and if it succeeds, it isn't affected by this spell.\n\n**Creature into Creature.** If you turn a creature into another kind of creature, the new form can be any kind you choose whose challenge rating is equal to or less than the target's (or its level, if the target doesn't have a challenge rating). The target's game statistics, including mental ability scores, are replaced by the statistics of the new form. It retains its alignment and personality. The target assumes the hit points of its new form, and when it reverts to its normal form, the creature returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak, cast spells, or take any other action that requires hands or speech unless its new form is capable of such actions. The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its equipment.\n\n**Object into Creature.** You can turn an object into any kind of creature, as long as the creature's size is no larger than the object's size and the creature's challenge rating is 9 or lower. The creature is friendly to you and your companions. It acts on each of your turns. You decide what action it takes and how it moves. The DM has the creature's statistics and resolves all of its actions and movement. If the spell becomes permanent, you no longer control the creature. It might remain friendly to you, depending on how you have treated it.\n\n **Creature into Object.** If you turn a creature into an object, it transforms along with whatever it is wearing and carrying into that form. The creature's statistics become those of the object, and the creature has no memory of time spent in this form, after the spell ends and it returns to its normal form.", - "document": "srd", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of mercury, a dollop of gum arabic, and a wisp of smoke.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "true-resurrection", - "fields": { - "name": "True Resurrection", - "desc": "You touch a creature that has been dead for no longer than 200 years and that died for any reason except old age. If the creature's soul is free and willing, the creature is restored to life with all its hit points. This spell closes all wounds, neutralizes any poison, cures all diseases, and lifts any curses affecting the creature when it died. The spell replaces damaged or missing organs and limbs. The spell can even provide a new body if the original no longer exists, in which case you must speak the creature's name. The creature then appears in an unoccupied space you choose within 10 feet of you.", - "document": "srd", - "level": 9, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A sprinkle of holy water and diamonds worth at least 25,000gp, which the spell consumes.", - "material_cost": "25000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "true-seeing", - "fields": { - "name": "True Seeing", - "desc": "This spell gives the willing creature you touch the ability to see things as they actually are. For the duration, the creature has truesight, notices secret doors hidden by magic, and can see into the Ethereal Plane, all out to a range of 120 feet.", - "document": "srd", - "level": 6, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An ointment for the eyes that costs 25gp; is made from mushroom powder, saffron, and fat; and is consumed by the spell.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "true-strike", - "fields": { - "name": "True Strike", - "desc": "You extend your hand and point a finger at a target in range. Your magic grants you a brief insight into the target's defenses. On your next turn, you gain advantage on your first attack roll against the target, provided that this spell hasn't ended.", - "document": "srd", - "level": 0, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "unseen-servant", - "fields": { - "name": "Unseen Servant", - "desc": "This spell creates an invisible, mindless, shapeless force that performs simple tasks at your command until the spell ends. The servant springs into existence in an unoccupied space on the ground within range. It has AC 10, 1 hit point, and a Strength of 2, and it can't attack. If it drops to 0 hit points, the spell ends. Once on each of your turns as a bonus action, you can mentally command the servant to move up to 15 feet and interact with an object. The servant can perform simple tasks that a human servant could do, such as fetching things, cleaning, mending, folding clothes, lighting fires, serving food, and pouring wind. Once you give the command, the servant performs the task to the best of its ability until it completes the task, then waits for your next command. If you command the servant to perform a task that would move it more than 60 feet away from you, the spell ends.", - "document": "srd", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A piece of string and a bit of wood.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "vampiric-touch", - "fields": { - "name": "Vampiric Touch", - "desc": "The touch of your shadow-wreathed hand can siphon life force from others to heal your wounds. Make a melee spell attack against a creature within your reach. On a hit, the target takes 3d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt. Until the spell ends, you can make the attack again on each of your turns as an action.", - "document": "srd", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "3d6", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "vicious-mockery", - "fields": { - "name": "Vicious Mockery", - "desc": "You unleash a string of insults laced with subtle enchantments at a creature you can see within range. If the target can hear you (though it need not understand you), it must succeed on a Wisdom saving throw or take 1d4 psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn.", - "document": "srd", - "level": 0, - "school": "enchantment", - "higher_level": "This spell's damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "wall-of-fire", - "fields": { - "name": "Wall of Fire", - "desc": "You create a wall of fire on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts for the duration. When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire damage, or half as much damage on a successful save. One side of the wall, selected by you when you cast this spell, deals 5d8 fire damage to each creature that ends its turn within 10 feet o f that side or inside the wall. A creature takes the same damage when it enters the wall for the first time on a turn or ends its turn there. The other side o f the wall deals no damage. The other side of the wall deals no damage.", - "document": "srd", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a level spell slot 5 or more, the damage of the spell increases by 1d8 for each level of higher spell slot to 4.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small piece of phosphorus.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wall-of-force", - "fields": { - "name": "Wall of Force", - "desc": "An invisible wall of force springs into existence at a point you choose within range. The wall appears in any orientation you choose, as a horizontal or vertical barrier or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-by-10-foot panels. Each panel must be contiguous with another panel. In any form, the wall is 1/4 inch thick. It lasts for the duration. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice which side). Nothing can physically pass through the wall. It is immune to all damage and can't be dispelled by dispel magic. A disintegrate spell destroys the wall instantly, however. The wall also extends into the Ethereal Plane, blocking ethereal travel through the wall.", - "document": "srd", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of powder made by crushing a clear gemstone.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 10, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wall-of-ice", - "fields": { - "name": "Wall of Ice", - "desc": "You create a wall of ice on a solid surface within range. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-square panels. Each panel must be contiguous with another panel. In any form, the wall is 1 foot thick and lasts for the duration. If the wall cuts through a creature's space when it appears, the creature within its area is pushed to one side of the wall and must make a dexterity saving throw. On a failed save, the creature takes 10d6 cold damage, or half as much damage on a successful save. The wall is an object that can be damaged and thus breached. It has AC 12 and 30 hit points per 10-foot section, and it is vulnerable to fire damage. Reducing a 10-foot section of wall to 0 hit points destroys it and leaves behind a sheet of frigid air in the space the wall occupied. A creature moving through the sheet of frigid air for the first time on a turn must make a constitution saving throw. That creature takes 5d6 cold damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage the wall deals when it appears increases by 2d6, and the damage from passing through the sheet of frigid air increases by 1d6, for each slot level above 6th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small piece of quartz.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "cold" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wall-of-stone", - "fields": { - "name": "Wall of Stone", - "desc": "A nonmagical wall of solid stone springs into existence at a point you choose within range. The wall is 6 inches thick and is composed of ten 10-foot-by-10-foot panels. Each panel must be contiguous with at least one other panel. Alternatively, you can create 10-foot-by-20-foot panels that are only 3 inches thick. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice). If a creature would be surrounded on all sides by the wall (or the wall and another solid surface), that creature can make a dexterity saving throw. On a success, it can use its reaction to move up to its speed so that it is no longer enclosed by the wall. The wall can have any shape you desire, though it can't occupy the same space as a creature or object. The wall doesn't need to be vertical or rest on any firm foundation. It must, however, merge with and be solidly supported by existing stone. Thus, you can use this spell to bridge a chasm or create a ramp. If you create a span greater than 20 feet in length, you must halve the size of each panel to create supports. You can crudely shape the wall to create crenellations, battlements, and so on. The wall is an object made of stone that can be damaged and thus breached. Each panel has AC 15 and 30 hit points per inch of thickness. Reducing a panel to 0 hit points destroys it and might cause connected panels to collapse at the DM's discretion. If you maintain your concentration on this spell for its whole duration, the wall becomes permanent and can't be dispelled. Otherwise, the wall disappears when the spell ends.", - "document": "srd", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small block of granite.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wall-of-thorns", - "fields": { - "name": "Wall of Thorns", - "desc": "You create a wall of tough, pliable, tangled brush bristling with needle-sharp thorns. The wall appears within range on a solid surface and lasts for the duration. You choose to make the wall up to 60 feet long, 10 feet high, and 5 feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and 5 feet thick. The wall blocks line of sight. When the wall appears, each creature within its area must make a dexterity saving throw. On a failed save, a creature takes 7d8 piercing damage, or half as much damage on a successful save. A creature can move through the wall, albeit slowly and painfully. For every 1 foot a creature moves through the wall, it must spend 4 feet of movement. Furthermore, the first time a creature enters the wall on a turn or ends its turn there, the creature must make a dexterity saving throw. It takes 7d8 slashing damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, both types of damage increase by 1d8 for each slot level above 6th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A handful of thorns.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "7d8", - "damage_types": [ - "piercing" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "warding-bond", - "fields": { - "name": "Warding Bond", - "desc": "This spell wards a willing creature you touch and creates a mystic connection between you and the target until the spell ends. While the target is within 60 feet of you, it gains a +1 bonus to AC and saving throws, and it has resistance to all damage. Also, each time it takes damage, you take the same amount of damage. The spell ends if you drop to 0 hit points or if you and the target become separated by more than 60 feet. It also ends if the spell is cast again on either of the connected creatures. You can also dismiss the spell as an action.", - "document": "srd", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pair of platinum rings worth at least 50gp each, which you and the target must wear for the duration.", - "material_cost": "50.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "water-breathing", - "fields": { - "name": "Water Breathing", - "desc": "This spell gives a maximum of ten willing creatures within range and you can see, the ability to breathe underwater until the end of its term. Affected creatures also retain their normal breathing pattern.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A short piece of reed or straw.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "water-walk", - "fields": { - "name": "Water Walk", - "desc": "This spell grants the ability to move across any liquid surface-such as water, acid, mud, snow, quicksand, or lava-as if it were harmless solid ground (creatures crossing molten lava can still take damage from the heat). Up to ten willing creatures you can see within range gain this ability for the duration. If you target a creature submerged in a liquid, the spell carries the target to the surface of the liquid at a rate of 60 feet per round.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "web", - "fields": { - "name": "Web", - "desc": "You conjure a mass of thick, sticky webbing at a point of your choice within range. The webs fill a 20-foot cube from that point for the duration. The webs are difficult terrain and lightly obscure their area. If the webs aren't anchored between two solid masses (such as walls or trees) or layered across a floor, wall, or ceiling, the conjured web collapses on itself, and the spell ends at the start of your next turn. Webs layered over a flat surface have a depth of 5 feet. Each creature that starts its turn in the webs or that enters them during its turn must make a dexterity saving throw. On a failed save, the creature is restrained as long as it remains in the webs or until it breaks free. A creature restrained by the webs can use its action to make a Strength check against your spell save DC. If it succeeds, it is no longer restrained. The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", - "document": "srd", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of spiderweb.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "weird", - "fields": { - "name": "Weird", - "desc": "Drawing on the deepest fears of a group of creatures, you create illusory creatures in their minds, visible only to them. Each creature in a 30-foot-radius sphere centered on a point of your choice within range must make a wisdom saving throw. On a failed save, a creature becomes frightened for the duration. The illusion calls on the creature's deepest fears, manifesting its worst nightmares as an implacable threat. At the start of each of the frightened creature's turns, it must succeed on a wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends for that creature.", - "document": "srd", - "level": 9, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wind-walk", - "fields": { - "name": "Wind Walk", - "desc": "You and up to ten willing creatures you can see within range assume a gaseous form for the duration, appearing as wisps of cloud. While in this cloud form, a creature has a flying speed of 300 feet and has resistance to damage from nonmagical weapons. The only actions a creature can take in this form are the Dash action or to revert to its normal form. Reverting takes 1 minute, during which time a creature is incapacitated and can't move. Until the spell ends, a creature can revert to cloud form, which also requires the 1-minute transformation. If a creature is in cloud form and flying when the effect ends, the creature descends 60 feet per round for 1 minute until it lands, which it does safely. If it can't land after 1 minute, the creature falls the remaining distance.", - "document": "srd", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Fire and holy water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "wind-wall", - "fields": { - "name": "Wind Wall", - "desc": "A wall of strong wind rises from the ground at a point you choose within range. You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You can shape the wall in any way you choose so long as it makes one continuous path along the ground. The wall lasts for the duration. When the wall appears, each creature within its area must make a strength saving throw. A creature takes 3d8 bludgeoning damage on a failed save, or half as much damage on a successful one. The strong wind keeps fog, smoke, and other gases at bay. Small or smaller flying creatures or objects can't pass through the wall. Loose, lightweight materials brought into the wall fly upward. Arrows, bolts, and other ordinary projectiles launched at targets behind the wall are deflected upward and automatically miss. (Boulders hurled by giants or siege engines, and similar projectiles, are unaffected.) Creatures in gaseous form can't pass through it.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny fan and a feather of exotic origin.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } -}, -{ - "model": "api_v2.spell", - "pk": "wish", - "fields": { - "name": "Wish", - "desc": "Wish is the mightiest spell a mortal creature can cast. By simply speaking aloud, you can alter the very foundations of reality in accord with your desires. The basic use of this spell is to duplicate any other spell of 8th level or lower. You don't need to meet any requirements in that spell, including costly components. The spell simply takes effect. Alternatively, you can create one of the following effects of your choice: \n- You create one object of up to 25,000 gp in value that isn't a magic item. The object can be no more than 300 feet in any dimension, and it appears in an unoccupied space you can see on the ground. \n- You allow up to twenty creatures that you can see to regain all hit points, and you end all effects on them described in the greater restoration spell. \n- You grant up to ten creatures you can see resistance to a damage type you choose. \n- You grant up to ten creatures you can see immunity to a single spell or other magical effect for 8 hours. For instance, you could make yourself and all your companions immune to a lich's life drain attack. \n- You undo a single recent event by forcing a reroll of any roll made within the last round (including your last turn). Reality reshapes itself to accommodate the new result. For example, a wish spell could undo an opponent's successful save, a foe's critical hit, or a friend's failed save. You can force the reroll to be made with advantage or disadvantage, and you can choose whether to use the reroll or the original roll. \nYou might be able to achieve something beyond the scope of the above examples. State your wish to the DM as precisely as possible. The DM has great latitude in ruling what occurs in such an instance; the greater the wish, the greater the likelihood that something goes wrong. This spell might simply fail, the effect you desire might only be partly achieved, or you might suffer some unforeseen consequence as a result of how you worded the wish. For example, wishing that a villain were dead might propel you forward in time to a period when that villain is no longer alive, effectively removing you from the game. Similarly, wishing for a legendary magic item or artifact might instantly transport you to the presence of the item's current owner. The stress of casting this spell to produce any effect other than duplicating another spell weakens you. After enduring that stress, each time you cast a spell until you finish a long rest, you take 1d10 necrotic damage per level of that spell. This damage can't be reduced or prevented in any way. In addition, your Strength drops to 3, if it isn't 3 or lower already, for 2d4 days. For each of those days that you spend resting and doing nothing more than light activity, your remaining recovery time decreases by 2 days. Finally, there is a 33 percent chance that you are unable to cast wish ever again if you suffer this stress.", - "document": "srd", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "word-of-recall", - "fields": { - "name": "Word of Recall", - "desc": "You and up to five willing creatures within 5 feet of you instantly teleport to a previously designated sanctuary. You and any creatures that teleport with you appear in the nearest unoccupied space to the spot you designated when you prepared your sanctuary (see below). If you cast this spell without first preparing a sanctuary, the spell has no effect. You must designate a sanctuary by casting this spell within a location, such as a temple, dedicated to or strongly linked to your deity. If you attempt to cast the spell in this manner in an area that isn't dedicated to your deity, the spell has no effect.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "5 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } -}, -{ - "model": "api_v2.spell", - "pk": "zone-of-truth", - "fields": { - "name": "Zone of Truth", - "desc": "You create a magical zone that guards against deception in a 15-foot-radius sphere centered on a point of your choice within range. Until the spell ends, a creature that enters the spell's area for the first time on a turn or starts its turn there must make a Charisma saving throw. On a failed save, a creature can't speak a deliberate lie while in the radius. You know whether each creature succeeds or fails on its saving throw. An affected creature is aware of the fate and can avoid answering questions she would normally have responded with a lie. Such a creature can remain evasive in his answers as they remain within the limits of truth.", - "document": "srd", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 15, - "concentration": false - } -} -] + { + "model": "api_v2.spell", + "pk": "srd_acid-arrow", + "fields": { + "name": "Acid Arrow", + "desc": "A shimmering green arrow streaks toward a target within range and bursts in a spray of acid. Make a ranged spell attack against the target. On a hit, the target takes 4d4 acid damage immediately and 2d4 acid damage at the end of its next turn. On a miss, the arrow splashes the target with acid for half as much of the initial damage and no damage at the end of its next turn.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d4 for each slot level above 2nd.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Powdered rhubarb leaf and an adder's stomach.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "4d4", + "damage_types": [ + "acid" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_acid-splash", + "fields": { + "name": "Acid Splash", + "desc": "You hurl a bubble of acid. Choose one creature within range, or choose two creatures within range that are within 5 feet of each other. A target must succeed on a dexterity saving throw or take 1d6 acid damage.", + "document": "srd", + "level": 0, + "school": "conjuration", + "higher_level": "This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_aid", + "fields": { + "name": "Aid", + "desc": "Your spell bolsters your allies with toughness and resolve. Choose up to three creatures within range. Each target's hit point maximum and current hit points increase by 5 for the duration.", + "document": "srd", + "level": 2, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, a target's hit points increase by an additional 5 for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny strip of white cloth.", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_alarm", + "fields": { + "name": "Alarm", + "desc": "You set an alarm against unwanted intrusion. Choose a door, a window, or an area within range that is no larger than a 20-foot cube. Until the spell ends, an alarm alerts you whenever a Tiny or larger creature touches or enters the warded area. \n\nWhen you cast the spell, you can designate creatures that won't set off the alarm. You also choose whether the alarm is mental or audible. A mental alarm alerts you with a ping in your mind if you are within 1 mile of the warded area. This ping awakens you if you are sleeping. An audible alarm produces the sound of a hand bell for 10 seconds within 60 feet.", + "document": "srd", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny bell and a piece of fine silver wire.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_alter-self", + "fields": { + "name": "Alter Self", + "desc": "You assume a different form. When you cast the spell, choose one of the following options, the effects of which last for the duration of the spell. While the spell lasts, you can end one option as an action to gain the benefits of a different one.\n\n**Aquatic Adaptation.** You adapt your body to an aquatic environment, sprouting gills and growing webbing between your fingers. You can breathe underwater and gain a swimming speed equal to your walking speed.\n\n**Change Appearance.** You transform your appearance. You decide what you look like, including your height, weight, facial features, sound of your voice, hair length, coloration, and distinguishing characteristics, if any. You can make yourself appear as a member of another race, though none of your statistics change. You also can't appear as a creature of a different size than you, and your basic shape stays the same; if you're bipedal, you can't use this spell to become quadrupedal, for instance. At any time for the duration of the spell, you can use your action to change your appearance in this way again.\n\n**Natural Weapons.** You grow claws, fangs, spines, horns, or a different natural weapon of your choice. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage, as appropriate to the natural weapon you chose, and you are proficient with your unarmed strikes. Finally, the natural weapon is magic and you have a +1 bonus to the attack and damage rolls you make using it.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_animal-friendship", + "fields": { + "name": "Animal Friendship", + "desc": "This spell lets you convince a beast that you mean it no harm. Choose a beast that you can see within range. It must see and hear you. If the beast's Intelligence is 4 or higher, the spell fails. Otherwise, the beast must succeed on a Wisdom saving throw or be charmed by you for the spell's duration. If you or one of your companions harms the target, the spells ends.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional beast for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A morsel of food.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_animal-messenger", + "fields": { + "name": "Animal Messenger", + "desc": "By means of this spell, you use an animal to deliver a message. Choose a Tiny beast you can see within range, such as a squirrel, a blue jay, or a bat. You specify a location, which you must have visited, and a recipient who matches a general description, such as \"a man or woman dressed in the uniform of the town guard\" or \"a red-haired dwarf wearing a pointed hat.\" You also speak a message of up to twenty-five words. The target beast travels for the duration of the spell toward the specified location, covering about 50 miles per 24 hours for a flying messenger, or 25 miles for other animals. \n\nWhen the messenger arrives, it delivers your message to the creature that you described, replicating the sound of your voice. The messenger speaks only to a creature matching the description you gave. If the messenger doesn't reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.", + "document": "srd", + "level": 2, + "school": "enchantment", + "higher_level": "If you cast this spell using a spell slot of 3nd level or higher, the duration of the spell increases by 48 hours for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A morsel of food.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_animal-shapes", + "fields": { + "name": "Animal Shapes", + "desc": "Your magic turns others into beasts. Choose any number of willing creatures that you can see within range. You transform each target into the form of a Large or smaller beast with a challenge rating of 4 or lower. On subsequent turns, you can use your action to transform affected creatures into new forms. \n\nThe transformation lasts for the duration for each target, or until the target drops to 0 hit points or dies. You can choose a different form for each target. A target's game statistics are replaced by the statistics of the chosen beast, though the target retains its alignment and Intelligence, Wisdom, and Charisma scores. The target assumes the hit points of its new form, and when it reverts to its normal form, it returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak or cast spells. \n\nThe target's gear melds into the new form. The target can't activate, wield, or otherwise benefit from any of its equipment.", + "document": "srd", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_animate-dead", + "fields": { + "name": "Animate Dead", + "desc": "This spell creates an undead servant. Choose a pile of bones or a corpse of a Medium or Small humanoid within range. Your spell imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a skeleton if you chose bones or a zombie if you chose a corpse (the DM has the creature's game statistics). \n\nOn each of your turns, you can use a bonus action to mentally command any creature you made with this spell if the creature is within 60 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete. \n\nThe creature is under your control for 24 hours, after which it stops obeying any command you've given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature again before the current 24-hour period ends. This use of the spell reasserts your control over up to four creatures you have animated with this spell, rather than animating a new one.", + "document": "srd", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional undead creatures for each slot level above 3rd. Each of the creatures must come from a different corpse or pile of bones.", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of blood, a piece of flesh, and a pinch of bone dust.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_animate-objects", + "fields": { + "name": "Animate Objects", + "desc": "Objects come to life at your command. Choose up to ten nonmagical objects within range that are not being worn or carried. Medium targets count as two objects, Large targets count as four objects, Huge targets count as eight objects. You can't animate any object larger than Huge. Each target animates and becomes a creature under your control until the spell ends or until reduced to 0 hit points. \nAs a bonus action, you can mentally command any creature you made with this spell if the creature is within 500 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.\n### Animated Object Statistics \n| Size | HP | AC | Attack | Str | Dex |\n|--------|----|----|----------------------------|-----|-----|\n| Tiny | 20 | 18 | +8 to hit, 1d4 + 4 damage | 4 | 18 |\n| Small | 25 | 16 | +6 to hit, 1d8 + 2 damage | 6 | 14 |\n| Medium | 40 | 13 | +5 to hit, 2d6 + 1 damage | 10 | 12 |\n| Large | 50 | 10 | +6 to hit, 2d10 + 2 damage | 14 | 10 |\n| Huge | 80 | 10 | +8 to hit, 2d12 + 4 damage | 18 | 6 | \n\nAn animated object is a construct with AC, hit points, attacks, Strength, and Dexterity determined by its size. Its Constitution is 10 and its Intelligence and Wisdom are 3, and its Charisma is 1. Its speed is 30 feet; if the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or a larger object, such as a chain bolted to a wall, its speed is 0. It has blindsight with a radius of 30 feet and is blind beyond that distance. When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form. If you command an object to attack, it can make a single melee attack against a creature within 5 feet of it. It makes a slam attack with an attack bonus and bludgeoning damage determined by its size. The DM might rule that a specific object inflicts slashing or piercing damage based on its form.", + "document": "srd", + "level": 5, + "school": "transmutation", + "higher_level": "If you cast this spell using a spell slot of 6th level or higher, you can animate two additional objects for each slot level above 5th.", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_antilife-shell", + "fields": { + "name": "Antilife Shell", + "desc": "A shimmering barrier extends out from you in a 10-foot radius and moves with you, remaining centered on you and hedging out creatures other than undead and constructs. The barrier lasts for the duration. The barrier prevents an affected creature from passing or reaching through. An affected creature can cast spells or make attacks with ranged or reach weapons through the barrier. If you move so that an affected creature is forced to pass through the barrier, the spell ends.", + "document": "srd", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_antimagic-field", + "fields": { + "name": "Antimagic Field", + "desc": "A 10-foot-radius invisible sphere of antimagic surrounds you. This area is divorced from the magical energy that suffuses the multiverse. Within the sphere, spells can't be cast, summoned creatures disappear, and even magic items become mundane. Until the spell ends, the sphere moves with you, centered on you. Spells and other magical effects, except those created by an artifact or a deity, are suppressed in the sphere and can't protrude into it. A slot expended to cast a suppressed spell is consumed. While an effect is suppressed, it doesn't function, but the time it spends suppressed counts against its duration.\n\n**Targeted Effects.** Spells and other magical effects, such as magic missile and charm person, that target a creature or an object in the sphere have no effect on that target.\n\n**Areas of Magic.** The area of another spell or magical effect, such as fireball, can't extend into the sphere. If the sphere overlaps an area of magic, the part of the area that is covered by the sphere is suppressed. For example, the flames created by a wall of fire are suppressed within the sphere, creating a gap in the wall if the overlap is large enough.\n\n**Spells.** Any active spell or other magical effect on a creature or an object in the sphere is suppressed while the creature or object is in it.\n\n**Magic Items.** The properties and powers of magic items are suppressed in the sphere. For example, a +1 longsword in the sphere functions as a nonmagical longsword. A magic weapon's properties and powers are suppressed if it is used against a target in the sphere or wielded by an attacker in the sphere. If a magic weapon or a piece of magic ammunition fully leaves the sphere (for example, if you fire a magic arrow or throw a magic spear at a target outside the sphere), the magic of the item ceases to be suppressed as soon as it exits.\n\n**Magical Travel.** Teleportation and planar travel fail to work in the sphere, whether the sphere is the destination or the departure point for such magical travel. A portal to another location, world, or plane of existence, as well as an opening to an extradimensional space such as that created by the rope trick spell, temporarily closes while in the sphere.\n\n**Creatures and Objects.** A creature or object summoned or created by magic temporarily winks out of existence in the sphere. Such a creature instantly reappears once the space the creature occupied is no longer within the sphere.\n\n**Dispel Magic.** Spells and magical effects such as dispel magic have no effect on the sphere. Likewise, the spheres created by different antimagic field spells don't nullify each other.", + "document": "srd", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of powdered iron or iron filings.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": "sphere", + "shape_magnitude": 10, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_antipathysympathy", + "fields": { + "name": "Antipathy/Sympathy", + "desc": "This spell attracts or repels creatures of your choice. You target something within range, either a Huge or smaller object or creature or an area that is no larger than a 200-foot cube. Then specify a kind of intelligent creature, such as red dragons, goblins, or vampires. You invest the target with an aura that either attracts or repels the specified creatures for the duration. Choose antipathy or sympathy as the aura's effect.\n\n**Antipathy.** The enchantment causes creatures of the kind you designated to feel an intense urge to leave the area and avoid the target. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a wisdom saving throw or become frightened. The creature remains frightened while it can see the target or is within 60 feet of it. While frightened by the target, the creature must use its movement to move to the nearest safe spot from which it can't see the target. If the creature moves more than 60 feet from the target and can't see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.\n\n **Sympathy.** The enchantment causes the specified creatures to feel an intense urge to approach the target while within 60 feet of it or able to see it. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a wisdom saving throw or use its movement on each of its turns to enter the area or move within reach of the target. When the creature has done so, it can't willingly move away from the target. If the target damages or otherwise harms an affected creature, the affected creature can make a wisdom saving throw to end the effect, as described below.\n\n**Ending the Effect.** If an affected creature ends its turn while not within 60 feet of the target or able to see it, the creature makes a wisdom saving throw. On a successful save, the creature is no longer affected by the target and recognizes the feeling of repugnance or attraction as magical. In addition, a creature affected by the spell is allowed another wisdom saving throw every 24 hours while the spell persists. A creature that successfully saves against this effect is immune to it for 1 minute, after which time it can be affected again.", + "document": "srd", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Either a lump of alum soaked in vinegar for the antipathy effect or a drop of honey for the sympathy effect.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": "cube", + "shape_magnitude": 200, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_arcane-eye", + "fields": { + "name": "Arcane Eye", + "desc": "You create an invisible, magical eye within range that hovers in the air for the duration. You mentally receive visual information from the eye, which has normal vision and darkvision out to 30 feet. The eye can look in every direction. As an action, you can move the eye up to 30 feet in any direction. There is no limit to how far away from you the eye can move, but it can't enter another plane of existence. A solid barrier blocks the eye's movement, but the eye can pass through an opening as small as 1 inch in diameter.", + "document": "srd", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of bat fur.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_arcane-hand", + "fields": { + "name": "Arcane Hand", + "desc": "You create a Large hand of shimmering, translucent force in an unoccupied space that you can see within range. The hand lasts for the spell's duration, and it moves at your command, mimicking the movements of your own hand. The hand is an object that has AC 20 and hit points equal to your hit point maximum. If it drops to 0 hit points, the spell ends. It has a Strength of 26 (+8) and a Dexterity of 10 (+0). The hand doesn't fill its space. When you cast the spell and as a bonus action on your subsequent turns, you can move the hand up to 60 feet and then cause one of the following effects with it.\n\n**Clenched Fist.** The hand strikes one creature or object within 5 feet of it. Make a melee spell attack for the hand using your game statistics. On a hit, the target takes 4d8 force damage.\n\n**Forceful Hand.** The hand attempts to push a creature within 5 feet of it in a direction you choose. Make a check with the hand's Strength contested by the Strength (Athletics) check of the target. If the target is Medium or smaller, you have advantage on the check. If you succeed, the hand pushes the target up to 5 feet plus a number of feet equal to five times your spellcasting ability modifier. The hand moves with the target to remain within 5 feet of it.\n\n**Grasping Hand.** The hand attempts to grapple a Huge or smaller creature within 5 feet of it. You use the hand's Strength score to resolve the grapple. If the target is Medium or smaller, you have advantage on the check. While the hand is grappling the target, you can use a bonus action to have the hand crush it. When you do so, the target takes bludgeoning damage equal to 2d6 + your spellcasting ability modifier\n\n **Interposing Hand.** The hand interposes itself between you and a creature you choose until you give the hand a different command. The hand moves to stay between you and the target, providing you with half cover against the target. The target can't move through the hand's space if its Strength score is less than or equal to the hand's Strength score. If its Strength score is higher than the hand's Strength score, the target can move toward you through the hand's space, but that space is difficult terrain for the target.", + "document": "srd", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage from the clenched fist option increases by 2d8 and the damage from the grasping hand increases by 2d6 for each slot level above 5th.", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An eggshell and a snakeskin glove.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "4d8", + "damage_types": [ + "force" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_arcane-lock", + "fields": { + "name": "Arcane Lock", + "desc": "You touch a closed door, window, gate, chest, or other entryway, and it becomes locked for the duration. You and the creatures you designate when you cast this spell can open the object normally. You can also set a password that, when spoken within 5 feet of the object, suppresses this spell for 1 minute. Otherwise, it is impassable until it is broken or the spell is dispelled or suppressed. Casting knock on the object suppresses arcane lock for 10 minutes. While affected by this spell, the object is more difficult to break or force open; the DC to break it or pick any locks on it increases by 10.", + "document": "srd", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Gold dust worth at least 25gp, which the spell consumes.", + "material_cost": "25.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_arcane-sword", + "fields": { + "name": "Arcane Sword", + "desc": "You create a sword-shaped plane of force that hovers within range. It lasts for the duration. When the sword appears, you make a melee spell attack against a target of your choice within 5 feet of the sword. On a hit, the target takes 3d10 force damage. Until the spell ends, you can use a bonus action on each of your turns to move the sword up to 20 feet to a spot you can see and repeat this attack against the same target or a different one.", + "document": "srd", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A miniature platinum sword with a grip and pommel of copper and zinc, worth 250 gp.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "3d10", + "damage_types": [ + "force" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_arcanists-magic-aura", + "fields": { + "name": "Arcanist's Magic Aura", + "desc": "You place an illusion on a creature or an object you touch so that divination spells reveal false information about it. The target can be a willing creature or an object that isn't being carried or worn by another creature. When you cast the spell, choose one or both of the following effects. The effect lasts for the duration. If you cast this spell on the same creature or object every day for 30 days, placing the same effect on it each time, the illusion lasts until it is dispelled.\n\n**False Aura.** You change the way the target appears to spells and magical effects, such as detect magic, that detect magical auras. You can make a nonmagical object appear magical, a magical object appear nonmagical, or change the object's magical aura so that it appears to belong to a specific school of magic that you choose. When you use this effect on an object, you can make the false magic apparent to any creature that handles the item.\n\n**Mask.** You change the way the target appears to spells and magical effects that detect creature types, such as a paladin's Divine Sense or the trigger of a symbol spell. You choose a creature type and other spells and magical effects treat the target as if it were a creature of that type or of that alignment.", + "document": "srd", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small square of silk.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_astral-projection", + "fields": { + "name": "Astral Projection", + "desc": "You and up to eight willing creatures within range project your astral bodies into the Astral Plane (the spell fails and the casting is wasted if you are already on that plane). The material body you leave behind is unconscious and in a state of suspended animation; it doesn't need food or air and doesn't age. Your astral body resembles your mortal form in almost every way, replicating your game statistics and possessions. The principal difference is the addition of a silvery cord that extends from between your shoulder blades and trails behind you, fading to invisibility after 1 foot. This cord is your tether to your material body. As long as the tether remains intact, you can find your way home. If the cord is cut-something that can happen only when an effect specifically states that it does-your soul and body are separated, killing you instantly. Your astral form can freely travel through the Astral Plane and can pass through portals there leading to any other plane. If you enter a new plane or return to the plane you were on when casting this spell, your body and possessions are transported along the silver cord, allowing you to re-enter your body as you enter the new plane. Your astral form is a separate incarnation. Any damage or other effects that apply to it have no effect on your physical body, nor do they persist when you return to it. The spell ends for you and your companions when you use your action to dismiss it. When the spell ends, the affected creature returns to its physical body, and it awakens. The spell might also end early for you or one of your companions. A successful dispel magic spell used against an astral or physical body ends the spell for that creature. If a creature's original body or its astral form drops to 0 hit points, the spell ends for that creature. If the spell ends and the silver cord is intact, the cord pulls the creature's astral form back to its body, ending its state of suspended animation. If you are returned to your body prematurely, your companions remain in their astral forms and must find their own way back to their bodies, usually by dropping to 0 hit points.", + "document": "srd", + "level": 9, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "For each creature you affect with this spell, you must provide one jacinth worth at least 1,000gp and one ornately carved bar of silver worth at least 100gp, all of which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_augury", + "fields": { + "name": "Augury", + "desc": "By casting gem-inlaid sticks, rolling dragon bones, laying out ornate cards, or employing some other divining tool, you receive an omen from an otherworldly entity about the results of a specific course of action that you plan to take within the next 30 minutes. The DM chooses from the following possible omens: \n- Weal, for good results \n- Woe, for bad results \n- Weal and woe, for both good and bad results \n- Nothing, for results that aren't especially good or bad The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion. If you cast the spell two or more times before completing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.", + "document": "srd", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Specially marked sticks, bones, or similar tokens worth at least 25gp.", + "material_cost": "25.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_awaken", + "fields": { + "name": "Awaken", + "desc": "After spending the casting time tracing magical pathways within a precious gemstone, you touch a Huge or smaller beast or plant. The target must have either no Intelligence score or an Intelligence of 3 or less. The target gains an Intelligence of 10. The target also gains the ability to speak one language you know. If the target is a plant, it gains the ability to move its limbs, roots, vines, creepers, and so forth, and it gains senses similar to a human's. Your DM chooses statistics appropriate for the awakened plant, such as the statistics for the awakened shrub or the awakened tree. The awakened beast or plant is charmed by you for 30 days or until you or your companions do anything harmful to it. When the charmed condition ends, the awakened creature chooses whether to remain friendly to you, based on how you treated it while it was charmed.", + "document": "srd", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An agate worth at least 1,000 gp, which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_bane", + "fields": { + "name": "Bane", + "desc": "Up to three creatures of your choice that you can see within range must make charisma saving throws. Whenever a target that fails this saving throw makes an attack roll or a saving throw before the spell ends, the target must roll a d4 and subtract the number rolled from the attack roll or saving throw.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of blood.", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_banishment", + "fields": { + "name": "Banishment", + "desc": "You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a charisma saving throw or be banished. If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.", + "document": "srd", + "level": 4, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An item distasteful to the target.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_barkskin", + "fields": { + "name": "Barkskin", + "desc": "You touch a willing creature. Until the spell ends, the target's skin has a rough, bark-like appearance, and the target's AC can't be less than 16, regardless of what kind of armor it is wearing.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A handful of oak bark.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_beacon-of-hope", + "fields": { + "name": "Beacon of Hope", + "desc": "This spell bestows hope and vitality. Choose any number of creatures within range. For the duration, each target has advantage on wisdom saving throws and death saving throws, and regains the maximum number of hit points possible from any healing.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_bestow-curse", + "fields": { + "name": "Bestow Curse", + "desc": "You touch a creature, and that creature must succeed on a wisdom saving throw or become cursed for the duration of the spell. When you cast this spell, choose the nature of the curse from the following options: \n- Choose one ability score. While cursed, the target has disadvantage on ability checks and saving throws made with that ability score. \n- While cursed, the target has disadvantage on attack rolls against you. \n- While cursed, the target must make a wisdom saving throw at the start of each of its turns. If it fails, it wastes its action that turn doing nothing. \n- While the target is cursed, your attacks and spells deal an extra 1d8 necrotic damage to the target. A remove curse spell ends this effect. At the DM's option, you may choose an alternative curse effect, but it should be no more powerful than those described above. The DM has final say on such a curse's effect.", + "document": "srd", + "level": 3, + "school": "necromancy", + "higher_level": "If you cast this spell using a spell slot of 4th level or higher, the duration is concentration, up to 10 minutes. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the spell lasts until it is dispelled. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_black-tentacles", + "fields": { + "name": "Black Tentacles", + "desc": "Squirming, ebony tentacles fill a 20-foot square on ground that you can see within range. For the duration, these tentacles turn the ground in the area into difficult terrain. When a creature enters the affected area for the first time on a turn or starts its turn there, the creature must succeed on a Dexterity saving throw or take 3d6 bludgeoning damage and be restrained by the tentacles until the spell ends. A creature that starts its turn in the area and is already restrained by the tentacles takes 3d6 bludgeoning damage. A creature restrained by the tentacles can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A piece of tentacle from a giant octopus or a giant squid", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_blade-barrier", + "fields": { + "name": "Blade Barrier", + "desc": "You create a vertical wall of whirling, razor-sharp blades made of magical energy. The wall appears within range and lasts for the duration. You can make a straight wall up to 100 feet long, 20 feet high, and 5 feet thick, or a ringed wall up to 60 feet in diameter, 20 feet high, and 5 feet thick. The wall provides three-quarters cover to creatures behind it, and its space is difficult terrain. When a creature enters the wall's area for the first time on a turn or starts its turn there, the creature must make a dexterity saving throw. On a failed save, the creature takes 6d10 slashing damage. On a successful save, the creature takes half as much damage.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d10", + "damage_types": [ + "slashing" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_bless", + "fields": { + "name": "Bless", + "desc": "You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll a d4 and add the number rolled to the attack roll or saving throw.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A sprinkling of holy water.", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_blight", + "fields": { + "name": "Blight", + "desc": "Necromantic energy washes over a creature of your choice that you can see within range, draining moisture and vitality from it. The target must make a constitution saving throw. The target takes 8d8 necrotic damage on a failed save, or half as much damage on a successful one. The spell has no effect on undead or constructs. If you target a plant creature or a magical plant, it makes the saving throw with disadvantage, and the spell deals maximum damage to it. If you target a nonmagical plant that isn't a creature, such as a tree or shrub, it doesn't make a saving throw; it simply withers and dies.", + "document": "srd", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level of higher, the damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d8", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_blindnessdeafness", + "fields": { + "name": "Blindness/Deafness", + "desc": "You can blind or deafen a foe. Choose one creature that you can see within range to make a constitution saving throw. If it fails, the target is either blinded or deafened (your choice) for the duration. At the end of each of its turns, the target can make a constitution saving throw. On a success, the spell ends.", + "document": "srd", + "level": 2, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_blink", + "fields": { + "name": "Blink", + "desc": "Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 11 or higher, you vanish from your current plane of existence and appear in the Ethereal Plane (the spell fails and the casting is wasted if you were already on that plane). At the start of your next turn, and when the spell ends if you are on the Ethereal Plane, you return to an unoccupied space of your choice that you can see within 10 feet of the space you vanished from. If no unoccupied space is available within that range, you appear in the nearest unoccupied space (chosen at random if more than one space is equally near). You can dismiss this spell as an action. While on the Ethereal Plane, you can see and hear the plane you originated from, which is cast in shades of gray, and you can't see anything there more than 60 feet away. You can only affect and be affected by other creatures on the Ethereal Plane. Creatures that aren't there can't perceive you or interact with you, unless they have the ability to do so.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_blur", + "fields": { + "name": "Blur", + "desc": "Your body becomes blurred, shifting and wavering to all who can see you. For the duration, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight.", + "document": "srd", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_branding-smite", + "fields": { + "name": "Branding Smite", + "desc": "The next time you hit a creature with a weapon attack before this spell ends, the weapon gleams with astral radiance as you strike. The attack deals an extra 2d6 radiant damage to the target, which becomes visible if it's invisible, and the target sheds dim light in a 5-­--foot radius and can't become invisible until the spell ends.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the extra damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_burning-hands", + "fields": { + "name": "Burning Hands", + "desc": "As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one. The fire ignites any flammable objects in the area that aren't being worn or carried.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 15, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_call-lightning", + "fields": { + "name": "Call Lightning", + "desc": "A storm cloud appears in the shape of a cylinder that is 10 feet tall with a 60-foot radius, centered on a point you can see 100 feet directly above you. The spell fails if you can't see a point in the air where the storm cloud could appear (for example, if you are in a room that can't accommodate the cloud). When you cast the spell, choose a point you can see within range. A bolt of lightning flashes down from the cloud to that point. Each creature within 5 feet of that point must make a dexterity saving throw. A creature takes 3d10 lightning damage on a failed save, or half as much damage on a successful one. On each of your turns until the spell ends, you can use your action to call down lightning in this way again, targeting the same point or a different one. If you are outdoors in stormy conditions when you cast this spell, the spell gives you control over the existing storm instead of creating a new one. Under such conditions, the spell's damage increases by 1d10.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th or higher level, the damage increases by 1d10 for each slot level above 3rd.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d10", + "damage_types": [ + "lightning" + ], + "duration": "10 minutes", + "shape_type": "cylinder", + "shape_magnitude": 60, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_calm-emotions", + "fields": { + "name": "Calm Emotions", + "desc": "You attempt to suppress strong emotions in a group of people. Each humanoid in a 20-foot-radius sphere centered on a point you choose within range must make a charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, choose one of the following two effects. You can suppress any effect causing a target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime. Alternatively, you can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its friends being harmed. When the spell ends, the creature becomes hostile again, unless the DM rules otherwise.", + "document": "srd", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_chain-lightning", + "fields": { + "name": "Chain Lightning", + "desc": "You create a bolt of lightning that arcs toward a target of your choice that you can see within range. Three bolts then leap from that target to as many as three other targets, each of which must be within 30 feet of the first target. A target can be a creature or an object and can be targeted by only one of the bolts. A target must make a dexterity saving throw. The target takes 10d8 lightning damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, one additional bolt leaps from the first target to another target for each slot level above 6th.", + "target_type": "creature", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fur; a piece of amber, glass, or a crystal rod; and three silver pins.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "10d8", + "damage_types": [ + "lightning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_charm-person", + "fields": { + "name": "Charm Person", + "desc": "You attempt to charm a humanoid you can see within range. It must make a wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_chill-touch", + "fields": { + "name": "Chill Touch", + "desc": "You create a ghostly, skeletal hand in the space of a creature within range. Make a ranged spell attack against the creature to assail it with the chill of the grave. On a hit, the target takes 1d8 necrotic damage, and it can't regain hit points until the start of your next turn. Until then, the hand clings to the target. If you hit an undead target, it also has disadvantage on attack rolls against you until the end of your next turn.", + "document": "srd", + "level": 0, + "school": "necromancy", + "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_circle-of-death", + "fields": { + "name": "Circle of Death", + "desc": "A sphere of negative energy ripples out in a 60-foot-radius sphere from a point within range. Each creature in that area must make a constitution saving throw. A target takes 8d6 necrotic damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "level": 6, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 2d6 for each slot level above 6th.", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "The powder of a crushed black pearl worth at least 500 gp.", + "material_cost": "500.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 60, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_clairvoyance", + "fields": { + "name": "Clairvoyance", + "desc": "You create an invisible sensor within range in a location familiar to you (a place you have visited or seen before) or in an obvious location that is unfamiliar to you (such as behind a door, around a corner, or in a grove of trees). The sensor remains in place for the duration, and it can't be attacked or otherwise interacted with. When you cast the spell, you choose seeing or hearing. You can use the chosen sense through the sensor as if you were in its space. As your action, you can switch between seeing and hearing. A creature that can see the sensor (such as a creature benefiting from see invisibility or truesight) sees a luminous, intangible orb about the size of your fist.", + "document": "srd", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "1 mile", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A focus worth at least 100gp, either a jeweled horn for hearing or a glass eye for seeing.", + "material_cost": "100.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_clone", + "fields": { + "name": "Clone", + "desc": "This spell grows an inert duplicate of a living creature as a safeguard against death. This clone forms inside a sealed vessel and grows to full size and maturity after 120 days; you can also choose to have the clone be a younger version of the same creature. It remains inert and endures indefinitely, as long as its vessel remains undisturbed. At any time after the clone matures, if the original creature dies, its soul transfers to the clone, provided that the soul is free and willing to return. The clone is physically identical to the original and has the same personality, memories, and abilities, but none of the original's equipment. The original creature's physical remains, if they still exist, become inert and can't thereafter be restored to life, since the creature's soul is elsewhere.", + "document": "srd", + "level": 8, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A diamond worth at least 1,000 gp and at least 1 cubic inch of flesh of the creature that is to be cloned, which the spell consumes, and a vessel worth at least 2,000 gp that has a sealable lid and is large enough to hold a Medium creature, such as a huge urn, coffin, mud-filled cyst in the ground, or crystal container filled with salt water.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_cloudkill", + "fields": { + "name": "Cloudkill", + "desc": "You create a 20-foot-radius sphere of poisonous, yellow-green fog centered on a point you choose within range. The fog spreads around corners. It lasts for the duration or until strong wind disperses the fog, ending the spell. Its area is heavily obscured. When a creature enters the spell's area for the first time on a turn or starts its turn there, that creature must make a constitution saving throw. The creature takes 5d8 poison damage on a failed save, or half as much damage on a successful one. Creatures are affected even if they hold their breath or don't need to breathe. The fog moves 10 feet away from you at the start of each of your turns, rolling along the surface of the ground. The vapors, being heavier than air, sink to the lowest level of the land, even pouring down openings.", + "document": "srd", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "poison" + ], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_color-spray", + "fields": { + "name": "Color Spray", + "desc": "A dazzling array of flashing, colored light springs from your hand. Roll 6d10; the total is how many hit points of creatures this spell can effect. Creatures in a 15-foot cone originating from you are affected in ascending order of their current hit points (ignoring unconscious creatures and creatures that can't see). Starting with the creature that has the lowest current hit points, each creature affected by this spell is blinded until the spell ends. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.", + "document": "srd", + "level": 1, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d10 for each slot level above 1st.", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of powder or sand that is colored red, yellow, and blue.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": "cone", + "shape_magnitude": 15, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_command", + "fields": { + "name": "Command", + "desc": "You speak a one-word command to a creature you can see within range. The target must succeed on a wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it. Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends\n\n **Approach.** The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.\n\n**Drop** The target drops whatever it is holding and then ends its turn.\n\n**Flee.** The target spends its turn moving away from you by the fastest available means.\n\n**Grovel.** The target falls prone and then ends its turn.\n\n**Halt.** The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_commune", + "fields": { + "name": "Commune", + "desc": "You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question. Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead. If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.", + "document": "srd", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Incense and a vial of holy or unholy water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_commune-with-nature", + "fields": { + "name": "Commune with Nature", + "desc": "You briefly become one with nature and gain knowledge of the surrounding territory. In the outdoors, the spell gives you knowledge of the land within 3 miles of you. In caves and other natural underground settings, the radius is limited to 300 feet. The spell doesn't function where nature has been replaced by construction, such as in dungeons and towns. You instantly gain knowledge of up to three facts of your choice about any of the following subjects as they relate to the area: \n- terrain and bodies of water \n- prevalent plants, minerals, animals, or peoples \n- powerful celestials, fey, fiends, elementals, or undead \n- influence from other planes of existence \n- buildings For example, you could determine the location of powerful undead in the area, the location of major sources of safe drinking water, and the location of any nearby towns.", + "document": "srd", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_comprehend-languages", + "fields": { + "name": "Comprehend Languages", + "desc": "For the duration, you understand the literal meaning of any spoken language that you hear. You also understand any written language that you see, but you must be touching the surface on which the words are written. It takes about 1 minute to read one page of text. This spell doesn't decode secret messages in a text or a glyph, such as an arcane sigil, that isn't part of a written language.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of soot and salt.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_compulsion", + "fields": { + "name": "Compulsion", + "desc": "Creatures of your choice that you can see within range and that can hear you must make a Wisdom saving throw. A target automatically succeeds on this saving throw if it can't be charmed. On a failed save, a target is affected by this spell. Until the spell ends, you can use a bonus action on each of your turns to designate a direction that is horizontal to you. Each affected target must use as much of its movement as possible to move in that direction on its next turn. It can take its action before it moves. After moving in this way, it can make another Wisdom saving throw to try to end the effect. A target isn't compelled to move into an obviously deadly hazard, such as a fire or pit, but it will provoke opportunity attacks to move in the designated direction.", + "document": "srd", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_cone-of-cold", + "fields": { + "name": "Cone of Cold", + "desc": "A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one. A creature killed by this spell becomes a frozen statue until it thaws.", + "document": "srd", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small crystal or glass cone.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d8", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 60, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_confusion", + "fields": { + "name": "Confusion", + "desc": "This spell assaults and twists creatures' minds, spawning delusions and provoking uncontrolled action. Each creature in a 10 foot radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\n\nAn affected target can't take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|---|---|\n| 1 | The creature uses all its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. The creature doesn’t take an action this turn. |\n| 2-6 | The creature doesn’t move or take actions this turn. |\n| 7-8 | The creature uses its action to make a melee attack against a randomly determined creature within its reach. If there is no creature within its reach, the creature does nothing this turn. |\n| 9-10 | The creature can act and move normally. |\n\nAt the end of each of its turns, an affected target can make a Wisdom saving throw. If it succeeds, this effect ends for that target.", + "document": "srd", + "level": 4, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Three walnut shells.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_conjure-animals", + "fields": { + "name": "Conjure Animals", + "desc": "You summon fey spirits that take the form of beasts and appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears: \n- One beast of challenge rating 2 or lower \n- Two beasts of challenge rating 1 or lower \n- Four beasts of challenge rating 1/2 or lower \n- Eight beasts of challenge rating 1/4 or lower \n- Each beast is also considered fey, and it disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 5th-level slot, three times as many with a 7th-level, and four times as many with a 9th-level slot.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_conjure-celestial", + "fields": { + "name": "Conjure Celestial", + "desc": "You summon a celestial of challenge rating 4 or lower, which appears in an unoccupied space that you can see within range. The celestial disappears when it drops to 0 hit points or when the spell ends. The celestial is friendly to you and your companions for the duration. Roll initiative for the celestial, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the celestial, it defends itself from hostile creatures but otherwise takes no actions. The DM has the celestial's statistics.", + "document": "srd", + "level": 7, + "school": "conjuration", + "higher_level": "When you cast this spell using a 9th-level spell slot, you summon a celestial of challenge rating 5 or lower.", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_conjure-elemental", + "fields": { + "name": "Conjure Elemental", + "desc": "You call forth an elemental servant. Choose an area of air, earth, fire, or water that fills a 10-foot cube within range. An elemental of challenge rating 5 or lower appropriate to the area you chose appears in an unoccupied space within 10 feet of it. For example, a fire elemental emerges from a bonfire, and an earth elemental rises up from the ground. The elemental disappears when it drops to 0 hit points or when the spell ends. The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions. If your concentration is broken, the elemental doesn't disappear. Instead, you lose control of the elemental, it becomes hostile toward you and your companions, and it might attack. An uncontrolled elemental can't be dismissed by you, and it disappears 1 hour after you summoned it. The DM has the elemental's statistics.", + "document": "srd", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the challenge rating increases by 1 for each slot level above 5th.", + "target_type": "area", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Burning incense for air, soft clay for earth, sulfur and phosphorus for fire, or water and sand for water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_conjure-fey", + "fields": { + "name": "Conjure Fey", + "desc": "You summon a fey creature of challenge rating 6 or lower, or a fey spirit that takes the form of a beast of challenge rating 6 or lower. It appears in an unoccupied space that you can see within range. The fey creature disappears when it drops to 0 hit points or when the spell ends. The fey creature is friendly to you and your companions for the duration. Roll initiative for the creature, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the fey creature, it defends itself from hostile creatures but otherwise takes no actions. If your concentration is broken, the fey creature doesn't disappear. Instead, you lose control of the fey creature, it becomes hostile toward you and your companions, and it might attack. An uncontrolled fey creature can't be dismissed by you, and it disappears 1 hour after you summoned it. The DM has the fey creature's statistics.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the challenge rating increases by 1 for each slot level above 6th.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_conjure-minor-elementals", + "fields": { + "name": "Conjure Minor Elementals", + "desc": "You summon elementals that appear in unoccupied spaces that you can see within range. You choose one the following options for what appears: \n- One elemental of challenge rating 2 or lower \n- Two elementals of challenge rating 1 or lower \n- Four elementals of challenge rating 1/2 or lower \n- Eight elementals of challenge rating 1/4 or lower. An elemental summoned by this spell disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_conjure-woodland-beings", + "fields": { + "name": "Conjure Woodland Beings", + "desc": "You summon fey creatures that appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears: \n- One fey creature of challenge rating 2 or lower \n- Two fey creatures of challenge rating 1 or lower \n- Four fey creatures of challenge rating 1/2 or lower \n- Eight fey creatures of challenge rating 1/4 or lower A summoned creature disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which have their own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "One holly berry per creature summoned.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_contact-other-plane", + "fields": { + "name": "Contact Other Plane", + "desc": "You mentally contact a demigod, the spirit of a long-dead sage, or some other mysterious entity from another plane. Contacting this extraplanar intelligence can strain or even break your mind. When you cast this spell, make a DC 15 intelligence saving throw. On a failure, you take 6d6 psychic damage and are insane until you finish a long rest. While insane, you can't take actions, can't understand what other creatures say, can't read, and speak only in gibberish. A greater restoration spell cast on you ends this effect. On a successful save, you can ask the entity up to five questions. You must ask your questions before the spell ends. The DM answers each question with one word, such as \"yes,\" \"no,\" \"maybe,\" \"never,\" \"irrelevant,\" or \"unclear\" (if the entity doesn't know the answer to the question). If a one-word answer would be misleading, the DM might instead offer a short phrase as an answer.", + "document": "srd", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_contagion", + "fields": { + "name": "Contagion", + "desc": "Your touch inflicts disease. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with a disease of your choice from any of the ones described below. At the end of each of the target's turns, it must make a constitution saving throw. After failing three of these saving throws, the disease's effects last for the duration, and the creature stops making these saves. After succeeding on three of these saving throws, the creature recovers from the disease, and the spell ends. Since this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease's effects apply to it.\n\n**Blinding Sickness.** Pain grips the creature's mind, and its eyes turn milky white. The creature has disadvantage on wisdom checks and wisdom saving throws and is blinded.\n\n**Filth Fever.** A raging fever sweeps through the creature's body. The creature has disadvantage on strength checks, strength saving throws, and attack rolls that use Strength.\n\n**Flesh Rot.** The creature's flesh decays. The creature has disadvantage on Charisma checks and vulnerability to all damage.\n\n**Mindfire.** The creature's mind becomes feverish. The creature has disadvantage on intelligence checks and intelligence saving throws, and the creature behaves as if under the effects of the confusion spell during combat.\n\n**Seizure.** The creature is overcome with shaking. The creature has disadvantage on dexterity checks, dexterity saving throws, and attack rolls that use Dexterity.\n\n**Slimy Doom.** The creature begins to bleed uncontrollably. The creature has disadvantage on constitution checks and constitution saving throws. In addition, whenever the creature takes damage, it is stunned until the end of its next turn.", + "document": "srd", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "7 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_contingency", + "fields": { + "name": "Contingency", + "desc": "Choose a spell of 5th level or lower that you can cast, that has a casting time of 1 action, and that can target you. You cast that spell-called the contingent spell-as part of casting contingency, expending spell slots for both, but the contingent spell doesn't come into effect. Instead, it takes effect when a certain circumstance occurs. You describe that circumstance when you cast the two spells. For example, a contingency cast with water breathing might stipulate that water breathing comes into effect when you are engulfed in water or a similar liquid. The contingent spell takes effect immediately after the circumstance is met for the first time, whether or not you want it to. and then contingency ends. The contingent spell takes effect only on you, even if it can normally target others. You can use only one contingency spell at a time. If you cast this spell again, the effect of another contingency spell on you ends. Also, contingency ends on you if its material component is ever not on your person.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A statuette of yourself carved from ivory and decorated with gems worth at least 1,500 gp.", + "material_cost": "1500.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_continual-flame", + "fields": { + "name": "Continual Flame", + "desc": "A flame, equivalent in brightness to a torch, springs forth from an object that you touch. The effect looks like a regular flame, but it creates no heat and doesn't use oxygen. A continual flame can be covered or hidden but not smothered or quenched.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Ruby dust worth 50 gp, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_control-water", + "fields": { + "name": "Control Water", + "desc": "Until the spell ends, you control any freestanding water inside an area you choose that is a cube up to 100 feet on a side. You can choose from any of the following effects when you cast this spell. As an action on your turn, you can repeat the same effect or choose a different one.\n\n**Flood.** You cause the water level of all standing water in the area to rise by as much as 20 feet. If the area includes a shore, the flooding water spills over onto dry land. instead create a 20-foot tall wave that travels from one side of the area to the other and then crashes down. Any Huge or smaller vehicles in the wave's path are carried with it to the other side. Any Huge or smaller vehicles struck by the wave have a 25 percent chance of capsizing. The water level remains elevated until the spell ends or you choose a different effect. If this effect produced a wave, the wave repeats on the start of your next turn while the flood effect lasts\n\n **Part Water.** You cause water in the area to move apart and create a trench. The trench extends across the spell's area, and the separated water forms a wall to either side. The trench remains until the spell ends or you choose a different effect. The water then slowly fills in the trench over the course of the next round until the normal water level is restored.\n\n**Redirect Flow.** You cause flowing water in the area to move in a direction you choose, even if the water has to flow over obstacles, up walls, or in other unlikely directions. The water in the area moves as you direct it, but once it moves beyond the spell's area, it resumes its flow based on the terrain conditions. The water continues to move in the direction you chose until the spell ends or you choose a different effect.\n\n**Whirlpool.** This effect requires a body of water at least 50 feet square and 25 feet deep. You cause a whirlpool to form in the center of the area. The whirlpool forms a vortex that is 5 feet wide at the base, up to 50 feet wide at the top, and 25 feet tall. Any creature or object in the water and within 25 feet of the vortex is pulled 10 feet toward it. A creature can swim away from the vortex by making a Strength (Athletics) check against your spell save DC. When a creature enters the vortex for the first time on a turn or starts its turn there, it must make a strength saving throw. On a failed save, the creature takes 2d8 bludgeoning damage and is caught in the vortex until the spell ends. On a successful save, the creature takes half damage, and isn't caught in the vortex. A creature caught in the vortex can use its action to try to swim away from the vortex as described above, but has disadvantage on the Strength (Athletics) check to do so. The first time each turn that an object enters the vortex, the object takes 2d8 bludgeoning damage; this damage occurs each round it remains in the vortex.", + "document": "srd", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of water and a pinch of dust.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_control-weather", + "fields": { + "name": "Control Weather", + "desc": "You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early. When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal. When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.", + "document": "srd", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Burning incense and bits of earth and wood mixed in water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_counterspell", + "fields": { + "name": "Counterspell", + "desc": "You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_create-food-and-water", + "fields": { + "name": "Create Food and Water", + "desc": "You create 45 pounds of food and 30 gallons of water on the ground or in containers within range, enough to sustain up to fifteen humanoids or five steeds for 24 hours. The food is bland but nourishing, and spoils if uneaten after 24 hours. The water is clean and doesn't go bad.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_create-or-destroy-water", + "fields": { + "name": "Create or Destroy Water", + "desc": "You either create or destroy water.\n\n**Create Water.** You create up to 10 gallons of clean water within range in an open container. Alternatively, the water falls as rain in a 30-foot cube within range\n\n **Destroy Water.** You destroy up to 10 gallons of water in an open container within range. Alternatively, you destroy fog in a 30-foot cube within range.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet, for each slot level above 1st.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of water if creating water, or a few grains of sand if destroying it.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 30, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_create-undead", + "fields": { + "name": "Create Undead", + "desc": "You can cast this spell only at night. Choose up to three corpses of Medium or Small humanoids within range. Each corpse becomes a ghoul under your control. (The DM has game statistics for these creatures.) As a bonus action on each of your turns, you can mentally command any creature you animated with this spell if the creature is within 120 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete. The creature is under your control for 24 hours, after which it stops obeying any command you have given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature before the current 24-hour period ends. This use of the spell reasserts your control over up to three creatures you have animated with this spell, rather than animating new ones.", + "document": "srd", + "level": 6, + "school": "necromancy", + "higher_level": "When you cast this spell using a 7th-level spell slot, you can animate or reassert control over four ghouls. When you cast this spell using an 8th-level spell slot, you can animate or reassert control over five ghouls or two ghasts or wights. When you cast this spell using a 9th-level spell slot, you can animate or reassert control over six ghouls, three ghasts or wights, or two mummies.", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "One clay pot filled with grave dirt, one clay pot filled with brackish water, and one 150 gp black onyx stone for each corpse.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_creation", + "fields": { + "name": "Creation", + "desc": "You pull wisps of shadow material from the Shadowfell to create a nonliving object of vegetable matter within 'range': soft goods, rope, wood, or something similar. You can also use this spell to create mineral objects such as stone, crystal, or metal. The object created must be no larger than a 5-foot cube, and the object must be of a form and material that you have seen before. The duration depends on the object's material. If the object is composed of multiple materials, use the shortest duration\n\n **Vegetable matter** 1 day **Stone or crystal** 12 hours **Precious metals** 1 hour **Gems** 10 minutes **Adamantine or mithral** 1 minute Using any material created by this spell as another spell's material component causes that spell to fail.", + "document": "srd", + "level": 5, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the cube increases by 5 feet for each slot level above 5th.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny piece of matter of the same type of the item you plan to create.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_cure-wounds", + "fields": { + "name": "Cure Wounds", + "desc": "A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_dancing-lights", + "fields": { + "name": "Dancing Lights", + "desc": "You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius. As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of phosphorus or wychwood, or a glowworm.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_darkness", + "fields": { + "name": "Darkness", + "desc": "Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it. If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness. If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "Bat fur and a drop of pitch or piece of coal.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 15, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_darkvision", + "fields": { + "name": "Darkvision", + "desc": "You touch a willing creature to grant it the ability to see in the dark. For the duration, that creature has darkvision out to a range of 60 feet.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Either a pinch of dried carrot or an agate.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_daylight", + "fields": { + "name": "Daylight", + "desc": "A 60-foot-radius sphere of light spreads out from a point you choose within range. The sphere is bright light and sheds dim light for an additional 60 feet. If you chose a point on an object you are holding or one that isn't being worn or carried, the light shines from the object and moves with it. Completely covering the affected object with an opaque object, such as a bowl or a helm, blocks the light. If any of this spell's area overlaps with an area of darkness created by a spell of 3rd level or lower, the spell that created the darkness is dispelled.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": "sphere", + "shape_magnitude": 60, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_death-ward", + "fields": { + "name": "Death Ward", + "desc": "You touch a creature and grant it a measure of protection from death. The first time the target would drop to 0 hit points as a result of taking damage, the target instead drops to 1 hit point, and the spell ends. If the spell is still in effect when the target is subjected to an effect that would kill it instantaneously without dealing damage, that effect is instead negated against the target, and the spell ends.", + "document": "srd", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_delayed-blast-fireball", + "fields": { + "name": "Delayed Blast Fireball", + "desc": "A beam of yellow light flashes from your pointing finger, then condenses to linger at a chosen point within range as a glowing bead for the duration. When the spell ends, either because your concentration is broken or because you decide to end it, the bead blossoms with a low roar into an explosion of flame that spreads around corners. Each creature in a 20-foot-radius sphere centered on that point must make a dexterity saving throw. A creature takes fire damage equal to the total accumulated damage on a failed save, or half as much damage on a successful one. The spell's base damage is 12d6. If at the end of your turn the bead has not yet detonated, the damage increases by 1d6. If the glowing bead is touched before the interval has expired, the creature touching it must make a dexterity saving throw. On a failed save, the spell ends immediately, causing the bead to erupt in flame. On a successful save, the creature can throw the bead up to 40 feet. When it strikes a creature or a solid object, the spell ends, and the bead explodes. The fire damages objects in the area and ignites flammable objects that aren't being worn or carried.", + "document": "srd", + "level": 7, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the base damage increases by 1d6 for each slot level above 7th.", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny ball of bat guano and sulfur.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_demiplane", + "fields": { + "name": "Demiplane", + "desc": "You create a shadowy door on a flat solid surface that you can see within range. The door is large enough to allow Medium creatures to pass through unhindered. When opened, the door leads to a demiplane that appears to be an empty room 30 feet in each dimension, made of wood or stone. When the spell ends, the door disappears, and any creatures or objects inside the demiplane remain trapped there, as the door also disappears from the other side. Each time you cast this spell, you can create a new demiplane, or have the shadowy door connect to a demiplane you created with a previous casting of this spell. Additionally, if you know the nature and contents of a demiplane created by a casting of this spell by another creature, you can have the shadowy door connect to its demiplane instead.", + "document": "srd", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_detect-evil-and-good", + "fields": { + "name": "Detect Evil and Good", + "desc": "For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_detect-magic", + "fields": { + "name": "Detect Magic", + "desc": "For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_detect-poison-and-disease", + "fields": { + "name": "Detect Poison and Disease", + "desc": "For the duration, you can sense the presence and location of poisons, poisonous creatures, and diseases within 30 feet of you. You also identify the kind of poison, poisonous creature, or disease in each case. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A yew leaf.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_detect-thoughts", + "fields": { + "name": "Detect Thoughts", + "desc": "For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected. You initially learn the surface thoughts of the creature-what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends. Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation. You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language. Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.", + "document": "srd", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A copper coin.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_dimension-door", + "fields": { + "name": "Dimension Door", + "desc": "You teleport yourself from your current location to any other spot within range. You arrive at exactly the spot desired. It can be a place you can see, one you can visualize, or one you can describe by stating distance and direction, such as \"200 feet straight downward\" or \"upward to the northwest at a 45-degree angle, 300 feet.\" You can bring along objects as long as their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller who is carrying gear up to its carrying capacity. The creature must be within 5 feet of you when you cast this spell. If you would arrive in a place already occupied by an object or a creature, you and any creature traveling with you each take 4d6 force damage, and the spell fails to teleport you.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "500 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_disguise-self", + "fields": { + "name": "Disguise Self", + "desc": "You make yourself - including your clothing, armor, weapons, and other belongings on your person - look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you. The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair. To discern that you are disguised, a creature can use its action to inspect your apperance and must succeed on an Intelligence (Investigation) check against your spell save DC.", + "document": "srd", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_disintegrate", + "fields": { + "name": "Disintegrate", + "desc": "A thin green ray springs from your pointing finger to a target that you can see within range. The target can be a creature, an object, or a creation of magical force, such as the wall created by wall of force. A creature targeted by this spell must make a dexterity saving throw. On a failed save, the target takes 10d6 + 40 force damage. If this damage reduces the target to 0 hit points, it is disintegrated. A disintegrated creature and everything it is wearing and carrying, except magic items, are reduced to a pile of fine gray dust. The creature can be restored to life only by means of a true resurrection or a wish spell. This spell automatically disintegrates a Large or smaller nonmagical object or a creation of magical force. If the target is a Huge or larger object or creation of force, this spell disintegrates a 10-foot-cube portion of it. A magic item is unaffected by this spell.", + "document": "srd", + "level": 6, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 3d6 for each slot level above 6th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A lodestone and a pinch of dust.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "10d6+40", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_dispel-evil-and-good", + "fields": { + "name": "Dispel Evil and Good", + "desc": "Shimmering energy surrounds and protects you from fey, undead, and creatures originating from beyond the Material Plane. For the duration, celestials, elementals, fey, fiends, and undead have disadvantage on attack rolls against you. You can end the spell early by using either of the following special functions.\n\n**Break Enchantment.** As your action, you touch a creature you can reach that is charmed, frightened, or possessed by a celestial, an elemental, a fey, a fiend, or an undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.\n\n**Dismissal.** As your action, make a melee spell attack against a celestial, an elemental, a fey, a fiend, or an undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.", + "document": "srd", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Holy water or powdered silver and iron.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_dispel-magic", + "fields": { + "name": "Dispel Magic", + "desc": "Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_divination", + "fields": { + "name": "Divination", + "desc": "Your magic and an offering put you in contact with a god or a god's servants. You ask a single question concerning a specific goal, event, or activity to occur within 7 days. The DM offers a truthful reply. The reply might be a short phrase, a cryptic rhyme, or an omen. The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion. If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.", + "document": "srd", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Incense and a sacrificial offering appropriate to your religion, together worth at least 25gp, which the spell consumes.", + "material_cost": "25.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_divine-favor", + "fields": { + "name": "Divine Favor", + "desc": "Your prayer empowers you with divine radiance. Until the spell ends, your weapon attacks deal an extra 1d4 radiant damage on a hit.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_divine-word", + "fields": { + "name": "Divine Word", + "desc": "You utter a divine word, imbued with the power that shaped the world at the dawn of creation. Choose any number of creatures you can see within range. Each creature that can hear you must make a Charisma saving throw. On a failed save, a creature suffers an effect based on its current hit points: \n- 50hp or less: deafened for 1 minute \n- 40 hp or less: deafened and blinded for 10 minutes \n- 30 hp or less: blinded, deafened and dazed for 1 hour \n- 20 hp or less: killed instantly. Regardless of its current hit points, a celestial, an elemental, a fey, or a fiend that fails its save is forced back to its plane of origin (if it isn't there already) and can't return to your current plane for 24 hours by any means short of a wish spell.", + "document": "srd", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_dominate-beast", + "fields": { + "name": "Dominate Beast", + "desc": "You attempt to beguile a beast that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the beast is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", + "document": "srd", + "level": 4, + "school": "enchantment", + "higher_level": "When you cast this spell with a 5th-­level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-­level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_dominate-monster", + "fields": { + "name": "Dominate Monster", + "desc": "You attempt to beguile a creature that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the creature is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", + "document": "srd", + "level": 8, + "school": "enchantment", + "higher_level": "When you cast this spell with a 9th-level spell slot, the duration is concentration, up to 8 hours.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_dominate-person", + "fields": { + "name": "Dominate Person", + "desc": "You attempt to beguile a humanoid that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the target is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", + "document": "srd", + "level": 5, + "school": "enchantment", + "higher_level": "When you cast this spell using a 6th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 7th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 8 hours.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_dream", + "fields": { + "name": "Dream", + "desc": "This spell shapes a creature's dreams. Choose a creature known to you as the target of this spell. The target must be on the same plane of existence as you. Creatures that don't sleep, such as elves, can't be contacted by this spell. You, or a willing creature you touch, enters a trance state, acting as a messenger. While in the trance, the messenger is aware of his or her surroundings, but can't take actions or move. If the target is asleep, the messenger appears in the target's dreams and can converse with the target as long as it remains asleep, through the duration of the spell. The messenger can also shape the environment of the dream, creating landscapes, objects, and other images. The messenger can emerge from the trance at any time, ending the effect of the spell early. The target recalls the dream perfectly upon waking. If the target is awake when you cast the spell, the messenger knows it, and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the messenger appears in the target's dreams. You can make the messenger appear monstrous and terrifying to the target. If you do, the messenger can deliver a message of no more than ten words and then the target must make a wisdom saving throw. On a failed save, echoes of the phantasmal monstrosity spawn a nightmare that lasts the duration of the target's sleep and prevents the target from gaining any benefit from that rest. In addition, when the target wakes up, it takes 3d6 psychic damage. If you have a body part, lock of hair, clipping from a nail, or similar portion of the target's body, the target makes its saving throw with disadvantage.", + "document": "srd", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Special", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A handful of sand, a dab of ink, and a writing quill plucked from a sleeping bird.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "psychic" + ], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_druidcraft", + "fields": { + "name": "Druidcraft", + "desc": "Whispering to the spirits of nature, you create one of the following effects within range: \n- You create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, falling snowflakes for snow, and so on. This effect persists for 1 round. \n- You instantly make a flower blossom, a seed pod open, or a leaf bud bloom. \n- You create an instantaneous, harmless sensory effect, such as falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-­--foot cube. \n- You instantly light or snuff out a candle, a torch, or a small campfire.", + "document": "srd", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_earthquake", + "fields": { + "name": "Earthquake", + "desc": "You create a seismic disturbance at a point on the ground that you can see within range. For the duration, an intense tremor rips through the ground in a 100-foot-radius circle centered on that point and shakes creatures and structures in contact with the ground in that area. The ground in the area becomes difficult terrain. Each creature on the ground that is concentrating must make a constitution saving throw. On a failed save, the creature's concentration is broken. When you cast this spell and at the end of each turn you spend concentrating on it, each creature on the ground in the area must make a dexterity saving throw. On a failed save, the creature is knocked prone. This spell can have additional effects depending on the terrain in the area, as determined by the DM. \n\n**Fissures.** Fissures open throughout the spell's area at the start of your next turn after you cast the spell. A total of 1d6 such fissures open in locations chosen by the DM. Each is 1d10 × 10 feet deep, 10 feet wide, and extends from one edge of the spell's area to the opposite side. A creature standing on a spot where a fissure opens must succeed on a dexterity saving throw or fall in. A creature that successfully saves moves with the fissure's edge as it opens. A fissure that opens beneath a structure causes it to automatically collapse (see below). \n\n**Structures.** The tremor deals 50 bludgeoning damage to any structure in contact with the ground in the area when you cast the spell and at the start of each of your turns until the spell ends. If a structure drops to 0 hit points, it collapses and potentially damages nearby creatures. A creature within half the distance of a structure's height must make a dexterity saving throw. On a failed save, the creature takes 5d6 bludgeoning damage, is knocked prone, and is buried in the rubble, requiring a DC 20 Strength (Athletics) check as an action to escape. The DM can adjust the DC higher or lower, depending on the nature of the rubble. On a successful save, the creature takes half as much damage and doesn't fall prone or become buried.", + "document": "srd", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "500 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of dirt, a piece of rock, and a lump of clay.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "5d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_eldritch-blast", + "fields": { + "name": "Eldritch Blast", + "desc": "A beam of crackling energy streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 force damage. The spell creates more than one beam when you reach higher levels: two beams at 5th level, three beams at 11th level, and four beams at 17th level. You can direct the beams at the same target or at different ones. Make a separate attack roll for each beam.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d10", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_enhance-ability", + "fields": { + "name": "Enhance Ability", + "desc": "You touch a creature and bestow upon it a magical enhancement. Choose one of the following effects; the target gains that effect until the spell ends.\n\n**Bear's Endurance.** The target has advantage on constitution checks. It also gains 2d6 temporary hit points, which are lost when the spell ends.\n\n**Bull's Strength.** The target has advantage on strength checks, and his or her carrying capacity doubles.\n\n**Cat's Grace.** The target has advantage on dexterity checks. It also doesn't take damage from falling 20 feet or less if it isn't incapacitated.\n\n**Eagle's Splendor.** The target has advantage on Charisma checks\n\n **Fox's Cunning.** The target has advantage on intelligence checks.\n\n**Owl's Wisdom.** The target has advantage on wisdom checks.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Fur or a feather from a beast.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_enlargereduce", + "fields": { + "name": "Enlarge/Reduce", + "desc": "You cause a creature or an object you can see within range to grow larger or smaller for the duration. Choose either a creature or an object that is neither worn nor carried. If the target is unwilling, it can make a Constitution saving throw. On a success, the spell has no effect. If the target is a creature, everything it is wearing and carrying changes size with it. Any item dropped by an affected creature returns to normal size at once. \n\n**Enlarge.** The target's size doubles in all dimensions, and its weight is multiplied by eight. This growth increases its size by one category-from Medium to Large, for example. If there isn't enough room for the target to double its size, the creature or object attains the maximum possible size in the space available. Until the spell ends, the target also has advantage on Strength checks and Strength saving throws. The target's weapons also grow to match its new size. While these weapons are enlarged, the target's attacks with them deal 1d4 extra damage. \n\n**Reduce.** The target's size is halved in all dimensions, and its weight is reduced to one-­eighth of normal. This reduction decreases its size by one category-from Medium to Small, for example. Until the spell ends, the target also has disadvantage on Strength checks and Strength saving throws. The target's weapons also shrink to match its new size. While these weapons are reduced, the target's attacks with them deal 1d4 less damage (this can't reduce the damage below 1).", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch iron powder.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_entangle", + "fields": { + "name": "Entangle", + "desc": "Grasping weeds and vines sprout from the ground in a 20-foot square starting form a point within range. For the duration, these plants turn the ground in the area into difficult terrain. A creature in the area when you cast the spell must succeed on a strength saving throw or be restrained by the entangling plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself. When the spell ends, the conjured plants wilt away.", + "document": "srd", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_enthrall", + "fields": { + "name": "Enthrall", + "desc": "You weave a distracting string of words, causing creatures of your choice that you can see within range and that can hear you to make a wisdom saving throw. Any creature that can't be charmed succeeds on this saving throw automatically, and if you or your companions are fighting a creature, it has advantage on the save. On a failed save, the target has disadvantage on Wisdom (Perception) checks made to perceive any creature other than you until the spell ends or until the target can no longer hear you. The spell ends if you are incapacitated or can no longer speak.", + "document": "srd", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_etherealness", + "fields": { + "name": "Etherealness", + "desc": "You step into the border regions of the Ethereal Plane, in the area where it overlaps with your current plane. You remain in the Border Ethereal for the duration or until you use your action to dismiss the spell. During this time, you can move in any direction. If you move up or down, every foot of movement costs an extra foot. You can see and hear the plane you originated from, but everything there looks gray, and you can't see anything more than 60 feet away. While on the Ethereal Plane, you can only affect and be affected by other creatures on that plane. Creatures that aren't on the Ethereal Plane can't perceive you and can't interact with you, unless a special ability or magic has given them the ability to do so. You ignore all objects and effects that aren't on the Ethereal Plane, allowing you to move through objects you perceive on the plane you originated from. When the spell ends, you immediately return to the plane you originated from in the spot you currently occupy. If you occupy the same spot as a solid object or creature when this happens, you are immediately shunted to the nearest unoccupied space that you can occupy and take force damage equal to twice the number of feet you are moved. This spell has no effect if you cast it while you are on the Ethereal Plane or a plane that doesn't border it, such as one of the Outer Planes.", + "document": "srd", + "level": 7, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you can target up to three willing creatures (including you) for each slot level above 7th. The creatures must be within 10 feet of you when you cast the spell.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_expeditious-retreat", + "fields": { + "name": "Expeditious Retreat", + "desc": "This spell allows you to move at an incredible pace. When you cast this spell, and then as a bonus action on each of your turns until the spell ends, you can take the Dash action.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_eyebite", + "fields": { + "name": "Eyebite", + "desc": "For the spell's duration, your eyes become an inky void imbued with dread power. One creature of your choice within 60 feet of you that you can see must succeed on a wisdom saving throw or be affected by one of the following effects of your choice for the duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of eyebite.\n\n**Asleep.** The target falls unconscious. It wakes up if it takes any damage or if another creature uses its action to shake the sleeper awake.\n\n**Panicked.** The target is frightened of you. On each of its turns, the frightened creature must take the Dash action and move away from you by the safest and shortest available route, unless there is nowhere to move. If the target moves to a place at least 60 feet away from you where it can no longer see you, this effect ends\n\n **Sickened.** The target has disadvantage on attack rolls and ability checks. At the end of each of its turns, it can make another wisdom saving throw. If it succeeds, the effect ends.", + "document": "srd", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_fabricate", + "fields": { + "name": "Fabricate", + "desc": "You convert raw materials into products of the same material. For example, you can fabricate a wooden bridge from a clump of trees, a rope from a patch of hemp, and clothes from flax or wool. Choose raw materials that you can see within range. You can fabricate a Large or smaller object (contained within a 10-foot cube, or eight connected 5-foot cubes), given a sufficient quantity of raw material. If you are working with metal, stone, or another mineral substance, however, the fabricated object can be no larger than Medium (contained within a single 5-foot cube). The quality of objects made by the spell is commensurate with the quality of the raw materials. Creatures or magic items can't be created or transmuted by this spell. You also can't use it to create items that ordinarily require a high degree of craftsmanship, such as jewelry, weapons, glass, or armor, unless you have proficiency with the type of artisan's tools used to craft such objects.", + "document": "srd", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_faerie-fire", + "fields": { + "name": "Faerie Fire", + "desc": "Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius. Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_faithful-hound", + "fields": { + "name": "Faithful Hound", + "desc": "You conjure a phantom watchdog in an unoccupied space that you can see within range, where it remains for the duration, until you dismiss it as an action, or until you move more than 100 feet away from it. The hound is invisible to all creatures except you and can't be harmed. When a Small or larger creature comes within 30 feet of it without first speaking the password that you specify when you cast this spell, the hound starts barking loudly. The hound sees invisible creatures and can see into the Ethereal Plane. It ignores illusions. At the start of each of your turns, the hound attempts to bite one creature within 5 feet of it that is hostile to you. The hound's attack bonus is equal to your spellcasting ability modifier + your proficiency bonus. On a hit, it deals 4d8 piercing damage.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny silver whistle, a piece of bone, and a thread", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_false-life", + "fields": { + "name": "False Life", + "desc": "Bolstering yourself with a necromantic facsimile of life, you gain 1d4 + 4 temporary hit points for the duration.", + "document": "srd", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you gain 5 additional temporary hit points for each slot level above 1st.", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small amount of alcohol or distilled spirits.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_fear", + "fields": { + "name": "Fear", + "desc": "You project a phantasmal image of a creature's worst fears. Each creature in a 30-foot cone must succeed on a wisdom saving throw or drop whatever it is holding and become frightened for the duration. While frightened by this spell, a creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. If the creature ends its turn in a location where it doesn't have line of sight to you, the creature can make a wisdom saving throw. On a successful save, the spell ends for that creature.", + "document": "srd", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A white feather or the heart of a hen.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_feather-fall", + "fields": { + "name": "Feather Fall", + "desc": "Choose up to five falling creatures within range. A falling creature's rate of descent slows to 60 feet per round until the spell ends. If the creature lands before the spell ends, it takes no falling damage and can land on its feet, and the spell ends for that creature.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "A small feather or a piece of down.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_feeblemind", + "fields": { + "name": "Feeblemind", + "desc": "You blast the mind of a creature that you can see within range, attempting to shatter its intellect and personality. The target takes 4d6 psychic damage and must make an intelligence saving throw. On a failed save, the creature's Intelligence and Charisma scores become 1. The creature can't cast spells, activate magic items, understand language, or communicate in any intelligible way. The creature can, however, identify its friends, follow them, and even protect them. At the end of every 30 days, the creature can repeat its saving throw against this spell. If it succeeds on its saving throw, the spell ends. The spell can also be ended by greater restoration, heal, or wish.", + "document": "srd", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A handful of clay, crystal, glass, or mineral spheres.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_find-familiar", + "fields": { + "name": "Find Familiar", + "desc": "You gain the service of a familiar, a spirit that takes an animal form you choose: bat, cat, crab, frog (toad), hawk, lizard, octopus, owl, poisonous snake, fish (quipper), rat, raven, sea horse, spider, or weasel. Appearing in an unoccupied space within range, the familiar has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of a beast. Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal. When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again. While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses. As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you. You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature. Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your attack modifier for the roll.", + "document": "srd", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "10 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "10 gp worth of charcoal, incense, and herbs that must be consumed by fire in a brass brazier", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_find-steed", + "fields": { + "name": "Find Steed", + "desc": "You summon a spirit that assumes the form of an unusually intelligent, strong, and loyal steed, creating a long-lasting bond with it. Appearing in an unoccupied space within range, the steed takes on a form that you choose, such as a warhorse, a pony, a camel, an elk, or a mastiff. (Your DM might allow other animals to be summoned as steeds.) The steed has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of its normal type. Additionally, if your steed has an Intelligence of 5 or less, its Intelligence becomes 6, and it gains the ability to understand one language of your choice that you speak. Your steed serves you as a mount, both in combat and out, and you have an instinctive bond with it that allows you to fight as a seamless unit. While mounted on your steed, you can make any spell you cast that targets only you also target your steed. When the steed drops to 0 hit points, it disappears, leaving behind no physical form. You can also dismiss your steed at any time as an action, causing it to disappear. In either case, casting this spell again summons the same steed, restored to its hit point maximum. While your steed is within 1 mile of you, you can communicate with it telepathically. You can't have more than one steed bonded by this spell at a time. As an action, you can release the steed from its bond at any time, causing it to disappear.", + "document": "srd", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_find-the-path", + "fields": { + "name": "Find the Path", + "desc": "This spell allows you to find the shortest, most direct physical route to a specific fixed location that you are familiar with on the same plane of existence. If you name a destination on another plane of existence, a destination that moves (such as a mobile fortress), or a destination that isn't specific (such as \"a green dragon's lair\"), the spell fails. For the duration, as long as you are on the same plane of existence as the destination, you know how far it is and in what direction it lies. While you are traveling there, whenever you are presented with a choice of paths along the way, you automatically determine which path is the shortest and most direct route (but not necessarily the safest route) to the destination.", + "document": "srd", + "level": 6, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A set of divinatory tools-such as bones, ivory sticks, cards, teeth, or carved runes-worth 100gp and an object from the location you wish to find.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_find-traps", + "fields": { + "name": "Find Traps", + "desc": "You sense the presence of any trap within range that is within line of sight. A trap, for the purpose of this spell, includes anything that would inflict a sudden or unexpected effect you consider harmful or undesirable, which was specifically intended as such by its creator. Thus, the spell would sense an area affected by the alarm spell, a glyph of warding, or a mechanical pit trap, but it would not reveal a natural weakness in the floor, an unstable ceiling, or a hidden sinkhole. This spell merely reveals that a trap is present. You don't learn the location of each trap, but you do learn the general nature of the danger posed by a trap you sense.", + "document": "srd", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_finger-of-death", + "fields": { + "name": "Finger of Death", + "desc": "You send negative energy coursing through a creature that you can see within range, causing it searing pain. The target must make a constitution saving throw. It takes 7d8 + 30 necrotic damage on a failed save, or half as much damage on a successful one. A humanoid killed by this spell rises at the start of your next turn as a zombie that is permanently under your command, following your verbal orders to the best of its ability.", + "document": "srd", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "7d8+30", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_fire-bolt", + "fields": { + "name": "Fire Bolt", + "desc": "You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d10", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_fire-shield", + "fields": { + "name": "Fire Shield", + "desc": "Thin and vaporous flame surround your body for the duration of the spell, radiating a bright light bright light in a 10-foot radius and dim light for an additional 10 feet. You can end the spell using an action to make it disappear. The flames are around you a heat shield or cold, your choice. The heat shield gives you cold damage resistance and the cold resistance to fire damage. In addition, whenever a creature within 5 feet of you hits you with a melee attack, flames spring from the shield. The attacker then suffers 2d8 points of fire damage or cold, depending on the model.", + "document": "srd", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A little phosphorus or a firefly.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_fire-storm", + "fields": { + "name": "Fire Storm", + "desc": "A storm made up of sheets of roaring flame appears in a location you choose within range. The area of the storm consists of up to ten 10-foot cubes, which you can arrange as you wish. Each cube must have at least one face adjacent to the face of another cube. Each creature in the area must make a dexterity saving throw. It takes 7d10 fire damage on a failed save, or half as much damage on a successful one. The fire damages objects in the area and ignites flammable objects that aren't being worn or carried. If you choose, plant life in the area is unaffected by this spell.", + "document": "srd", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "7d10", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_fireball", + "fields": { + "name": "Fireball", + "desc": "A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one. The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny ball of bat guano and sulfur.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_flame-blade", + "fields": { + "name": "Flame Blade", + "desc": "You evoke a fiery blade in your free hand. The blade is similar in size and shape to a scimitar, and it lasts for the duration. If you let go of the blade, it disappears, but you can evoke the blade again as a bonus action. You can use your action to make a melee spell attack with the fiery blade. On a hit, the target takes 3d6 fire damage. The flaming blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for every two slot levels above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Leaf of sumac.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "3d6", + "damage_types": [ + "fire" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_flame-strike", + "fields": { + "name": "Flame Strike", + "desc": "A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high cylinder centered on a point within range must make a dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Pinch of sulfur.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_flaming-sphere", + "fields": { + "name": "Flaming Sphere", + "desc": "A 5-foot-diameter sphere of fire appears in an unoccupied space of your choice within range and lasts for the duration. Any creature that ends its turn within 5 feet of the sphere must make a dexterity saving throw. The creature takes 2d6 fire damage on a failed save, or half as much damage on a successful one. As a bonus action, you can move the sphere up to 30 feet. If you ram the sphere into a creature, that creature must make the saving throw against the sphere's damage, and the sphere stops moving this turn. When you move the sphere, you can direct it over barriers up to 5 feet tall and jump it across pits up to 10 feet wide. The sphere ignites flammable objects not being worn or carried, and it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", + "document": "srd", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of tallow, a pinch of brimstone, and a dusting of powdered iron.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_flesh-to-stone", + "fields": { + "name": "Flesh to Stone", + "desc": "You attempt to turn one creature that you can see within range into stone. If the target's body is made of flesh, the creature must make a constitution saving throw. On a failed save, it is restrained as its flesh begins to harden. On a successful save, the creature isn't affected. A creature restrained by this spell must make another constitution saving throw at the end of each of its turns. If it successfully saves against this spell three times, the spell ends. If it fails its saves three times, it is turned to stone and subjected to the petrified condition for the duration. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind. If the creature is physically broken while petrified, it suffers from similar deformities if it reverts to its original state. If you maintain your concentration on this spell for the entire possible duration, the creature is turned to stone until the effect is removed.", + "document": "srd", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of lime, water, and earth.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_floating-disk", + "fields": { + "name": "Floating Disk", + "desc": "This spell creates a circular, horizontal plane of force, 3 feet in diameter and 1 inch thick, that floats 3 feet above the ground in an unoccupied space of your choice that you can see within range. The disk remains for the duration, and can hold up to 500 pounds. If more weight is placed on it, the spell ends, and everything on the disk falls to the ground. The disk is immobile while you are within 20 feet of it. If you move more than 20 feet away from it, the disk follows you so that it remains within 20 feet of you. If can move across uneven terrain, up or down stairs, slopes and the like, but it can't cross an elevation change of 10 feet or more. For example, the disk can't move across a 10-foot-deep pit, nor could it leave such a pit if it was created at the bottom. If you move more than 100 feet away from the disk (typically because it can't move around an obstacle to follow you), the spell ends.", + "document": "srd", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of mercury.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_fly", + "fields": { + "name": "Fly", + "desc": "You touch a willing creature. The target gains a flying speed of 60 feet for the duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A wing feather from any bird.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_fog-cloud", + "fields": { + "name": "Fog Cloud", + "desc": "You create a 20-foot-radius sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.", + "document": "srd", + "level": 1, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_forbiddance", + "fields": { + "name": "Forbiddance", + "desc": "You create a ward against magical travel that protects up to 40,000 square feet of floor space to a height of 30 feet above the floor. For the duration, creatures can't teleport into the area or use portals, such as those created by the gate spell, to enter the area. The spell proofs the area against planar travel, and therefore prevents creatures from accessing the area by way of the Astral Plane, Ethereal Plane, Feywild, Shadowfell, or the plane shift spell. In addition, the spell damages types of creatures that you choose when you cast it. Choose one or more of the following: celestials, elementals, fey, fiends, and undead. When a chosen creature enters the spell's area for the first time on a turn or starts its turn there, the creature takes 5d10 radiant or necrotic damage (your choice when you cast this spell). When you cast this spell, you can designate a password. A creature that speaks the password as it enters the area takes no damage from the spell. The spell's area can't overlap with the area of another forbiddance spell. If you cast forbiddance every day for 30 days in the same location, the spell lasts until it is dispelled, and the material components are consumed on the last casting.", + "document": "srd", + "level": 6, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A sprinkling of holy water, rare incense, and powdered ruby worth at least 1,000 gp.", + "material_cost": "1000.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "necrotic", + "radiant" + ], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_forcecage", + "fields": { + "name": "Forcecage", + "desc": "An immobile, invisible, cube-shaped prison composed of magical force springs into existence around an area you choose within range. The prison can be a cage or a solid box, as you choose. A prison in the shape of a cage can be up to 20 feet on a side and is made from 1/2-inch diameter bars spaced 1/2 inch apart. A prison in the shape of a box can be up to 10 feet on a side, creating a solid barrier that prevents any matter from passing through it and blocking any spells cast into or out from the area. When you cast the spell, any creature that is completely inside the cage's area is trapped. Creatures only partially within the area, or those too large to fit inside the area, are pushed away from the center of the area until they are completely outside the area. A creature inside the cage can't leave it by nonmagical means. If the creature tries to use teleportation or interplanar travel to leave the cage, it must first make a charisma saving throw. On a success, the creature can use that magic to exit the cage. On a failure, the creature can't exit the cage and wastes the use of the spell or effect. The cage also extends into the Ethereal Plane, blocking ethereal travel. This spell can't be dispelled by dispel magic.", + "document": "srd", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Ruby dust worth 1,500 gp.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_foresight", + "fields": { + "name": "Foresight", + "desc": "You touch a willing creature and bestow a limited ability to see into the immediate future. For the duration, the target can't be surprised and has advantage on attack rolls, ability checks, and saving throws. Additionally, other creatures have disadvantage on attack rolls against the target for the duration. This spell immediately ends if you cast it again before its duration ends.", + "document": "srd", + "level": 9, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A hummingbird feather.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_freedom-of-movement", + "fields": { + "name": "Freedom of Movement", + "desc": "You touch a willing creature. For the duration, the target's movement is unaffected by difficult terrain, and spells and other magical effects can neither reduce the target's speed nor cause the target to be paralyzed or restrained. The target can also spend 5 feet of movement to automatically escape from nonmagical restraints, such as manacles or a creature that has it grappled. Finally, being underwater imposes no penalties on the target's movement or attacks.", + "document": "srd", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A leather strap, bound around the arm or a similar appendage.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_freezing-sphere", + "fields": { + "name": "Freezing Sphere", + "desc": "A frigid globe of cold energy streaks from your fingertips to a point of your choice within range, where it explodes in a 60-foot-radius sphere. Each creature within the area must make a constitution saving throw. On a failed save, a creature takes 10d6 cold damage. On a successful save, it takes half as much damage. If the globe strikes a body of water or a liquid that is principally water (not including water-based creatures), it freezes the liquid to a depth of 6 inches over an area 30 feet square. This ice lasts for 1 minute. Creatures that were swimming on the surface of frozen water are trapped in the ice. A trapped creature can use an action to make a Strength check against your spell save DC to break free. You can refrain from firing the globe after completing the spell, if you wish. A small globe about the size of a sling stone, cool to the touch, appears in your hand. At any time, you or a creature you give the globe to can throw the globe (to a range of 40 feet) or hurl it with a sling (to the sling's normal range). It shatters on impact, with the same effect as the normal casting of the spell. You can also set the globe down without shattering it. After 1 minute, if the globe hasn't already shattered, it explodes.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d6 for each slot level above 6th.", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small crystal sphere.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 60, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_gaseous-form", + "fields": { + "name": "Gaseous Form", + "desc": "You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected. While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated. While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of gauze and a wisp of smoke.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_gate", + "fields": { + "name": "Gate", + "desc": "You conjure a portal linking an unoccupied space you can see within range to a precise location on a different plane of existence. The portal is a circular opening, which you can make 5 to 20 feet in diameter. You can orient the portal in any direction you choose. The portal lasts for the duration. The portal has a front and a back on each plane where it appears. Travel through the portal is possible only by moving through its front. Anything that does so is instantly transported to the other plane, appearing in the unoccupied space nearest to the portal. Deities and other planar rulers can prevent portals created by this spell from opening in their presence or anywhere within their domains. When you cast this spell, you can speak the name of a specific creature (a pseudonym, title, or nickname doesn't work). If that creature is on a plane other than the one you are on, the portal opens in the named creature's immediate vicinity and draws the creature through it to the nearest unoccupied space on your side of the portal. You gain no special power over the creature, and it is free to act as the DM deems appropriate. It might leave, attack you, or help you.", + "document": "srd", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A diamond worth at least 5,000gp.", + "material_cost": "5000.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_geas", + "fields": { + "name": "Geas", + "desc": "You place a magical command on a creature that you can see within range, forcing it to carry out some service or refrain from some action or course of activity as you decide. If the creature can understand you, it must succeed on a wisdom saving throw or become charmed by you for the duration. While the creature is charmed by you, it takes 5d10 psychic damage each time it acts in a manner directly counter to your instructions, but no more than once each day. A creature that can't understand you is unaffected by the spell. You can issue any command you choose, short of an activity that would result in certain death. Should you issue a suicidal command, the spell ends. You can end the spell early by using an action to dismiss it. A remove curse, greater restoration, or wish spell also ends it.", + "document": "srd", + "level": 5, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 7th or 8th level, the duration is 1 year. When you cast this spell using a spell slot of 9th level, the spell lasts until it is ended by one of the spells mentioned above.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "psychic" + ], + "duration": "30 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_gentle-repose", + "fields": { + "name": "Gentle Repose", + "desc": "You touch a corpse or other remains. For the duration, the target is protected from decay and can't become undead. The spell also effectively extends the time limit on raising the target from the dead, since days spent under the influence of this spell don't count against the time limit of spells such as raise dead.", + "document": "srd", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of salt and one copper piece placed on each of the corpse's eyes, which must remain there for the duration.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_giant-insect", + "fields": { + "name": "Giant Insect", + "desc": "You transform up to ten centipedes, three spiders, five wasps, or one scorpion within range into giant versions of their natural forms for the duration. A centipede becomes a giant centipede, a spider becomes a giant spider, a wasp becomes a giant wasp, and a scorpion becomes a giant scorpion. Each creature obeys your verbal commands, and in combat, they act on your turn each round. The DM has the statistics for these creatures and resolves their actions and movement. A creature remains in its giant size for the duration, until it drops to 0 hit points, or until you use an action to dismiss the effect on it. The DM might allow you to choose different targets. For example, if you transform a bee, its giant version might have the same statistics as a giant wasp.", + "document": "srd", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_glibness", + "fields": { + "name": "Glibness", + "desc": "Until the spell ends, when you make a Charisma check, you can replace the number you roll with a 15. Additionally, no matter what you say, magic that would determine if you are telling the truth indicates that you are being truthful.", + "document": "srd", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_globe-of-invulnerability", + "fields": { + "name": "Globe of Invulnerability", + "desc": "An immobile, faintly shimmering barrier springs into existence in a 10-foot radius around you and remains for the duration. Any spell of 5th level or lower cast from outside the barrier can't affect creatures or objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such spells.", + "document": "srd", + "level": 6, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the barrier blocks spells of one level higher for each slot level above 6th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A glass or crystal bead that shatters when the spell ends.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_glyph-of-warding", + "fields": { + "name": "Glyph of Warding", + "desc": "When you cast this spell, you inscribe a glyph that harms other creatures, either upon a surface (such as a table or a section of floor or wall) or within an object that can be closed (such as a book, a scroll, or a treasure chest) to conceal the glyph. If you choose a surface, the glyph can cover an area of the surface no larger than 10 feet in diameter. If you choose an object, that object must remain in its place; if the object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered. The glyph is nearly invisible and requires a successful Intelligence (Investigation) check against your spell save DC to be found. You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or standing on the glyph, removing another object covering the glyph, approaching within a certain distance of the glyph, or manipulating the object on which the glyph is inscribed. For glyphs inscribed within an object, the most common triggers include opening that object, approaching within a certain distance of the object, or seeing or reading the glyph. Once a glyph is triggered, this spell ends. You can further refine the trigger so the spell activates only under certain circumstances or according to physical characteristics (such as height or weight), creature kind (for example, the ward could be set to affect aberrations or drow), or alignment. You can also set conditions for creatures that don't trigger the glyph, such as those who say a certain password. When you inscribe the glyph, choose explosive runes or a spell glyph.\n\n**Explosive Runes.** When triggered, the glyph erupts with magical energy in a 20-­foot-­radius sphere centered on the glyph. The sphere spreads around corners. Each creature in the area must make a Dexterity saving throw. A creature takes 5d8 acid, cold, fire, lightning, or thunder damage on a failed saving throw (your choice when you create the glyph), or half as much damage on a successful one.\n\n**Spell Glyph.** You can store a prepared spell of 3rd level or lower in the glyph by casting it as part of creating the glyph. The spell must target a single creature or an area. The spell being stored has no immediate effect when cast in this way. When the glyph is triggered, the stored spell is cast. If the spell has a target, it targets the creature that triggered the glyph. If the spell affects an area, the area is centered on that creature. If the spell summons hostile creatures or creates harmful objects or traps, they appear as close as possible to the intruder and attack it. If the spell requires concentration, it lasts until the end of its full duration.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage of an explosive runes glyph increases by 1d8 for each slot level above 3rd. If you create a spell glyph, you can store any spell of up to the same level as the slot you use for the glyph of warding.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Incense and powdered diamond worth at least 200 gp, which the spell consumes.", + "material_cost": "200.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "acid", + "cold", + "fire", + "lightning", + "thunder" + ], + "duration": "until dispelled or triggered", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_goodberry", + "fields": { + "name": "Goodberry", + "desc": "Up to ten berries appear in your hand and are infused with magic for the duration. A creature can use its action to eat one berry. Eating a berry restores 1 hit point, and the berry provides enough nourishment to sustain a creature for one day. The berries lose their potency if they have not been consumed within 24 hours of the casting of this spell.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A sprig of mistletoe.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_grease", + "fields": { + "name": "Grease", + "desc": "Slick grease covers the ground in a 10-foot square centered on a point within range and turns it into difficult terrain for the duration. When the grease appears, each creature standing in its area must succeed on a dexterity saving throw or fall prone. A creature that enters the area or ends its turn there must also succeed on a dexterity saving throw or fall prone.", + "document": "srd", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of pork rind or butter.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_greater-invisibility", + "fields": { + "name": "Greater Invisibility", + "desc": "You or a creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person.", + "document": "srd", + "level": 4, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_greater-restoration", + "fields": { + "name": "Greater Restoration", + "desc": "You imbue a creature you touch with positive energy to undo a debilitating effect. You can reduce the target's exhaustion level by one, or end one of the following effects on the target: \n- One effect that charmed or petrified the target \n- One curse, including the target's attunement to a cursed magic item \n- Any reduction to one of the target's ability scores \n- One effect reducing the target's hit point maximum", + "document": "srd", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Diamond dust worth at least 100gp, which the spell consumes.", + "material_cost": "100.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_guardian-of-faith", + "fields": { + "name": "Guardian of Faith", + "desc": "A Large spectral guardian appears and hovers for the duration in an unoccupied space of your choice that you can see within range. The guardian occupies that space and is indistinct except for a gleaming sword and shield emblazoned with the symbol of your deity. Any creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "20", + "damage_types": [ + "radiant" + ], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_guards-and-wards", + "fields": { + "name": "Guards and Wards", + "desc": "You create a ward that protects up to 2,500 square feet of floor space (an area 50 feet square, or one hundred 5-foot squares or twenty-five 10-foot squares). The warded area can be up to 20 feet tall, and shaped as you desire. You can ward several stories of a stronghold by dividing the area among them, as long as you can walk into each contiguous area while you are casting the spell. When you cast this spell, you can specify individuals that are unaffected by any or all of the effects that you choose. You can also specify a password that, when spoken aloud, makes the speaker immune to these effects. Guards and wards creates the following effects within the warded area.\n\n**Corridors.** Fog fills all the warded corridors, making them heavily obscured. In addition, at each intersection or branching passage offering a choice of direction, there is a 50 percent chance that a creature other than you will believe it is going in the opposite direction from the one it chooses.\n\n**Doors.** All doors in the warded area are magically locked, as if sealed by an arcane lock spell. In addition, you can cover up to ten doors with an illusion (equivalent to the illusory object function of the minor illusion spell) to make them appear as plain sections of wall\n\n **Stairs.** Webs fill all stairs in the warded area from top to bottom, as the web spell. These strands regrow in 10 minutes if they are burned or torn away while guards and wards lasts.\n\n**Other Spell Effect.** You can place your choice of one of the following magical effects within the warded area of the stronghold. \n- Place dancing lights in four corridors. You can designate a simple program that the lights repeat as long as guards and wards lasts. \n- Place magic mouth in two locations. \n- Place stinking cloud in two locations. The vapors appear in the places you designate; they return within 10 minutes if dispersed by wind while guards and wards lasts. \n- Place a constant gust of wind in one corridor or room. \n- Place a suggestion in one location. You select an area of up to 5 feet square, and any creature that enters or passes through the area receives the suggestion mentally. The whole warded area radiates magic. A dispel magic cast on a specific effect, if successful, removes only that effect. You can create a permanently guarded and warded structure by casting this spell there every day for one year.", + "document": "srd", + "level": 6, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Burning incense, a small measure of brimstone and oil, a knotted string, a small amount of umber hulk blood, and a small silver rod worth at least 10 gp.", + "material_cost": "10.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_guidance", + "fields": { + "name": "Guidance", + "desc": "You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one ability check of its choice. It can roll the die before or after making the ability check. The spell then ends.", + "document": "srd", + "level": 0, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_guiding-bolt", + "fields": { + "name": "Guiding Bolt", + "desc": "A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "4d6", + "damage_types": [ + "radiant" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_gust-of-wind", + "fields": { + "name": "Gust of Wind", + "desc": "A line of strong wind 60 feet long and 10 feet wide blasts from you in a direction you choose for the spell's duration. Each creature that starts its turn in the line must succeed on a strength saving throw or be pushed 15 feet away from you in a direction following the line. Any creature in the line must spend 2 feet of movement for every 1 foot it moves when moving closer to you. The gust disperses gas or vapor, and it extinguishes candles, torches, and similar unprotected flames in the area. It causes protected flames, such as those of lanterns, to dance wildly and has a 50 percent chance to extinguish them. As a bonus action on each of your turns before the spell ends, you can change the direction in which the line blasts from you.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A legume seed.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_hallow", + "fields": { + "name": "Hallow", + "desc": "You touch a point and infuse an area around it with holy (or unholy) power. The area can have a radius up to 60 feet, and the spell fails if the radius includes an area already under the effect a hallow spell. The affected area is subject to the following effects. First, celestials, elementals, fey, fiends, and undead can't enter the area, nor can such creatures charm, frighten, or possess creatures within it. Any creature charmed, frightened, or possessed by such a creature is no longer charmed, frightened, or possessed upon entering the area. You can exclude one or more of those types of creatures from this effect. Second, you can bind an extra effect to the area. Choose the effect from the following list, or choose an effect offered by the DM. Some of these effects apply to creatures in the area; you can designate whether the effect applies to all creatures, creatures that follow a specific deity or leader, or creatures of a specific sort, such as ores or trolls. When a creature that would be affected enters the spell's area for the first time on a turn or starts its turn there, it can make a charisma saving throw. On a success, the creature ignores the extra effect until it leaves the area.\n\n**Courage.** Affected creatures can't be frightened while in the area.\n\n**Darkness.** Darkness fills the area. Normal light, as well as magical light created by spells of a lower level than the slot you used to cast this spell, can't illuminate the area\n\n **Daylight.** Bright light fills the area. Magical darkness created by spells of a lower level than the slot you used to cast this spell can't extinguish the light.\n\n**Energy Protection.** Affected creatures in the area have resistance to one damage type of your choice, except for bludgeoning, piercing, or slashing\n\n **Energy Vulnerability.** Affected creatures in the area have vulnerability to one damage type of your choice, except for bludgeoning, piercing, or slashing.\n\n**Everlasting Rest.** Dead bodies interred in the area can't be turned into undead.\n\n**Extradimensional Interference.** Affected creatures can't move or travel using teleportation or by extradimensional or interplanar means.\n\n**Fear.** Affected creatures are frightened while in the area.\n\n**Silence.** No sound can emanate from within the area, and no sound can reach into it.\n\n**Tongues.** Affected creatures can communicate with any other creature in the area, even if they don't share a common language.", + "document": "srd", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Herbs, oils, and incense worth at least 1,000 gp, which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_hallucinatory-terrain", + "fields": { + "name": "Hallucinatory Terrain", + "desc": "You make natural terrain in a 150-foot cube in range look, sound, and smell like some other sort of natural terrain. Thus, open fields or a road can be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road. Manufactured structures, equipment, and creatures within the area aren't changed in appearance.\n\nThe tactile characteristics of the terrain are unchanged, so creatures entering the area are likely to see through the illusion. If the difference isn't obvious by touch, a creature carefully examining the illusion can attempt an Intelligence (Investigation) check against your spell save DC to disbelieve it. A creature who discerns the illusion for what it is, sees it as a vague image superimposed on the terrain.", + "document": "srd", + "level": 4, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A stone, a twig, and a bit of green plant.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": "cube", + "shape_magnitude": 150, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_harm", + "fields": { + "name": "Harm", + "desc": "You unleash a virulent disease on a creature that you can see within range. The target must make a constitution saving throw. On a failed save, it takes 14d6 necrotic damage, or half as much damage on a successful save. The damage can't reduce the target's hit points below 1. If the target fails the saving throw, its hit point maximum is reduced for 1 hour by an amount equal to the necrotic damage it took. Any effect that removes a disease allows a creature's hit point maximum to return to normal before that time passes.", + "document": "srd", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "14d6", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_haste", + "fields": { + "name": "Haste", + "desc": "Choose a willing creature that you can see within range. Until the spell ends, the target's speed is doubled, it gains a +2 bonus to AC, it has advantage on dexterity saving throws, and it gains an additional action on each of its turns. That action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action. When the spell ends, the target can't move or take actions until after its next turn, as a wave of lethargy sweeps over it.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A shaving of licorice root.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_heal", + "fields": { + "name": "Heal", + "desc": "Choose a creature that you can see within range. A surge of positive energy washes through the creature, causing it to regain 70 hit points. This spell also ends blindness, deafness, and any diseases affecting the target. This spell has no effect on constructs or undead.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the amount of healing increases by 10 for each slot level above 6th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_healing-word", + "fields": { + "name": "Healing Word", + "desc": "A creature of your choice that you can see within range regains hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d4 for each slot level above 1st.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_heat-metal", + "fields": { + "name": "Heat Metal", + "desc": "Choose a manufactured metal object, such as a metal weapon or a suit of heavy or medium metal armor, that you can see within range. You cause the object to glow red-hot. Any creature in physical contact with the object takes 2d8 fire damage when you cast the spell. Until the spell ends, you can use a bonus action on each of your subsequent turns to cause this damage again. If a creature is holding or wearing the object and takes the damage from it, the creature must succeed on a constitution saving throw or drop the object if it can. If it doesn't drop the object, it has disadvantage on attack rolls and ability checks until the start of your next turn.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A piece of iron and a flame.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_hellish-rebuke", + "fields": { + "name": "Hellish Rebuke", + "desc": "You point your finger, and the creature that damaged you is momentarily surrounded by hellish flames. The creature must make a Dexterity saving throw. It takes 2d10 fire damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "2d10", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_heroes-feast", + "fields": { + "name": "Heroes' Feast", + "desc": "You bring forth a great feast, including magnificent food and drink. The feast takes 1 hour to consume and disappears at the end of that time, and the beneficial effects don't set in until this hour is over. Up to twelve other creatures can partake of the feast. A creature that partakes of the feast gains several benefits. The creature is cured of all diseases and poison, becomes immune to poison and being frightened, and makes all wisdom saving throws with advantage. Its hit point maximum also increases by 2d10, and it gains the same number of hit points. These benefits last for 24 hours.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A gem-encrusted bowl worth at least 1,000gp, which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_heroism", + "fields": { + "name": "Heroism", + "desc": "A willing creature you touch is imbued with bravery. Until the spell ends, the creature is immune to being frightened and gains temporary hit points equal to your spellcasting ability modifier at the start of each of its turns. When the spell ends, the target loses any remaining temporary hit points from this spell.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_hideous-laughter", + "fields": { + "name": "Hideous Laughter", + "desc": "A creature of your choice that you can see within range perceives everything as hilariously funny and falls into fits of laughter if this spell affects it. The target must succeed on a wisdom saving throw or fall prone, becoming incapacitated and unable to stand up for the duration. A creature with an Intelligence score of 4 or less isn't affected. At the end of each of its turns, and each time it takes damage, the target can make another wisdom saving throw. The target had advantage on the saving throw if it's triggered by damage. On a success, the spell ends.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Tiny tarts and a feather that is waved in the air.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_hold-monster", + "fields": { + "name": "Hold Monster", + "desc": "Choose a creature you can see within range. The target must make a saving throw of Wisdom or be paralyzed for the duration of the spell. This spell has no effect against the undead. At the end of each round, the target can make a new saving throw of Wisdom. If successful, the spell ends for the creature.", + "document": "srd", + "level": 5, + "school": "enchantment", + "higher_level": "When you cast this spell using a level 6 or higher location, you can target an additional creature for each level of location beyond the fifth. The creatures must be within 30 feet o f each other when you target them.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small piece of iron.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_hold-person", + "fields": { + "name": "Hold Person", + "desc": "Choose a humanoid that you can see within range. The target must succeed on a wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another wisdom saving throw. On a success, the spell ends on the target.", + "document": "srd", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small, straight piece of iron.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_holy-aura", + "fields": { + "name": "Holy Aura", + "desc": "Divine light washes out from you and coalesces in a soft radiance in a 30-foot radius around you. Creatures of your choice in that radius when you cast this spell shed dim light in a 5-foot radius and have advantage on all saving throws, and other creatures have disadvantage on attack rolls against them until the spell ends. In addition, when a fiend or an undead hits an affected creature with a melee attack, the aura flashes with brilliant light. The attacker must succeed on a constitution saving throw or be blinded until the spell ends.", + "document": "srd", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny reliquary worth at least 1,000gp containing a sacred relic, such as a scrap of cloth from a saint's robe or a piece of parchment from a religious text.", + "material_cost": "1000.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_hunters-mark", + "fields": { + "name": "Hunter's Mark", + "desc": "You choose a creature you can see within range and mystically mark it as your quarry. Until the spell ends, you deal an extra 1d6 damage to the target whenever you hit it with a weapon attack, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find it. If the target drops to 0 hit points before this spell ends, you can use a bonus action on a subsequent turn of yours to mark a new creature.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": " When you cast this spell using a spell slot of 3rd or 4th level, you can maintain your concentration on the spell for up to 8 hours. When you use a spell slot of 5th level or higher, you can maintain your concentration on the spell for up to 24 hours.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_hypnotic-pattern", + "fields": { + "name": "Hypnotic Pattern", + "desc": "You create a twisting pattern of colors that weaves through the air inside a 30-foot cube within range. The pattern appears for a moment and vanishes. Each creature in the area who sees the pattern must make a wisdom saving throw. On a failed save, the creature becomes charmed for the duration. While charmed by this spell, the creature is incapacitated and has a speed of 0. The spell ends for an affected creature if it takes any damage or if someone else uses an action to shake the creature out of its stupor.", + "document": "srd", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "A glowing stick of incense or a crystal vial filled with phosphorescent material.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 30, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_ice-storm", + "fields": { + "name": "Ice Storm", + "desc": "A hail of rock-hard ice pounds to the ground in a 20-foot-radius, 40-foot-high cylinder centered on a point within range. Each creature in the cylinder must make a dexterity saving throw. A creature takes 2d8 bludgeoning damage and 4d6 cold damage on a failed save, or half as much damage on a successful one. Hailstones turn the storm's area of effect into difficult terrain until the end of your next turn.", + "document": "srd", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the bludgeoning damage increases by 1d8 for each slot level above 4th.", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of dust and a few drops of water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_identify", + "fields": { + "name": "Identify", + "desc": "You choose one object that you must touch throughout the casting of the spell. If it is a magic item or some other magic-imbued object, you learn its properties and how to use them, whether it requires attunement to use, and how many charges it has, if any. You learn whether any spells are affecting the item and what they are. If the item was created by a spell, you learn which spell created it. If you instead touch a creature throughout the casting, you learn what spells, if any, are currently affecting it.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pearl worth at least 100gp and an owl feather.", + "material_cost": "100.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_illusory-script", + "fields": { + "name": "Illusory Script", + "desc": "You write on parchment, paper, or some other suitable writing material and imbue it with a potent illusion that lasts for the duration. To you and any creatures you designate when you cast the spell, the writing appears normal, written in your hand, and conveys whatever meaning you intended when you wrote the text. To all others, the writing appears as if it were written in an unknown or magical script that is unintelligible. Alternatively, you can cause the writing to appear to be an entirely different message, written in a different hand and language, though the language must be one you know. Should the spell be dispelled, the original script and the illusion both disappear. A creature with truesight can read the hidden message.", + "document": "srd", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "A lead-based ink worth at least 10gp, which this spell consumes.", + "material_cost": "10.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_imprisonment", + "fields": { + "name": "Imprisonment", + "desc": "You create a magical restraint to hold a creature that you can see within range. The target must succeed on a wisdom saving throw or be bound by the spell; if it succeeds, it is immune to this spell if you cast it again. While affected by this spell, the creature doesn't need to breathe, eat, or drink, and it doesn't age. Divination spells can't locate or perceive the target. When you cast the spell, you choose one of the following forms of imprisonment.\n\n**Burial.** The target is entombed far beneath the earth in a sphere of magical force that is just large enough to contain the target. Nothing can pass through the sphere, nor can any creature teleport or use planar travel to get into or out of it. The special component for this version of the spell is a small mithral orb.\n\n**Chaining.** Heavy chains, firmly rooted in the ground, hold the target in place. The target is restrained until the spell ends, and it can't move or be moved by any means until then. The special component for this version of the spell is a fine chain of precious metal.\n\n**Hedged Prison.** The spell transports the target into a tiny demiplane that is warded against teleportation and planar travel. The demiplane can be a labyrinth, a cage, a tower, or any similar confined structure or area of your choice. The special component for this version of the spell is a miniature representation of the prison made from jade.\n\n**Minimus Containment.** The target shrinks to a height of 1 inch and is imprisoned inside a gemstone or similar object. Light can pass through the gemstone normally (allowing the target to see out and other creatures to see in), but nothing else can pass through, even by means of teleportation or planar travel. The gemstone can't be cut or broken while the spell remains in effect. The special component for this version of the spell is a large, transparent gemstone, such as a corundum, diamond, or ruby.\n\n**Slumber.** The target falls asleep and can't be awoken. The special component for this version of the spell consists of rare soporific herbs.\n\n**Ending the Spell.** During the casting of the spell, in any of its versions, you can specify a condition that will cause the spell to end and release the target. The condition can be as specific or as elaborate as you choose, but the DM must agree that the condition is reasonable and has a likelihood of coming to pass. The conditions can be based on a creature's name, identity, or deity but otherwise must be based on observable actions or qualities and not based on intangibles such as level, class, or hit points. A dispel magic spell can end the spell only if it is cast as a 9th-level spell, targeting either the prison or the special component used to create it. You can use a particular special component to create only one prison at a time. If you cast the spell again using the same component, the target of the first casting is immediately freed from its binding.", + "document": "srd", + "level": 9, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A vellum depiction or a carved statuette in the likeness of the target, and a special component that varies according to the version of the spell you choose, worth at least 500gp per Hit Die of the target.", + "material_cost": "500.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_incendiary-cloud", + "fields": { + "name": "Incendiary Cloud", + "desc": "A swirling cloud of smoke shot through with white-hot embers appears in a 20-foot-radius sphere centered on a point within range. The cloud spreads around corners and is heavily obscured. It lasts for the duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. When the cloud appears, each creature in it must make a dexterity saving throw. A creature takes 10d8 fire damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there. The cloud moves 10 feet directly away from you in a direction that you choose at the start of each of your turns.", + "document": "srd", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "10d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_inflict-wounds", + "fields": { + "name": "Inflict Wounds", + "desc": "Make a melee spell attack against a creature you can reach. On a hit, the target takes 3d10 necrotic damage.", + "document": "srd", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d10", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_insect-plague", + "fields": { + "name": "Insect Plague", + "desc": "Swarming, biting locusts fill a 20-foot-radius sphere centered on a point you choose within range. The sphere spreads around corners. The sphere remains for the duration, and its area is lightly obscured. The sphere's area is difficult terrain. When the area appears, each creature in it must make a constitution saving throw. A creature takes 4d10 piercing damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.", + "document": "srd", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A few grains of sugar, some kernels of grain, and a smear of fat.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d10", + "damage_types": [ + "piercing" + ], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_instant-summons", + "fields": { + "name": "Instant Summons", + "desc": "You touch an object weighing 10 pounds or less whose longest dimension is 6 feet or less. The spell leaves an invisible mark on its surface and invisibly inscribes the name of the item on the sapphire you use as the material component. Each time you cast this spell, you must use a different sapphire. At any time thereafter, you can use your action to speak the item's name and crush the sapphire. The item instantly appears in your hand regardless of physical or planar distances, and the spell ends. If another creature is holding or carrying the item, crushing the sapphire doesn't transport the item to you, but instead you learn who the creature possessing the object is and roughly where that creature is located at that moment. Dispel magic or a similar effect successfully applied to the sapphire ends this spell's effect.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A sapphire worth 1,000 gp.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_invisibility", + "fields": { + "name": "Invisibility", + "desc": "A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.", + "document": "srd", + "level": 2, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An eyelash encased in gum arabic.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_irresistible-dance", + "fields": { + "name": "Irresistible Dance", + "desc": "Choose one creature that you can see within range. The target begins a comic dance in place: shuffling, tapping its feet, and capering for the duration. Creatures that can't be charmed are immune to this spell. A dancing creature must use all its movement to dance without leaving its space and has disadvantage on dexterity saving throws and attack rolls. While the target is affected by this spell, other creatures have advantage on attack rolls against it. As an action, a dancing creature makes a wisdom saving throw to regain control of itself. On a successful save, the spell ends.", + "document": "srd", + "level": 6, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_jump", + "fields": { + "name": "Jump", + "desc": "You touch a creature. The creature's jump distance is tripled until the spell ends.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A grasshopper's hind leg.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_knock", + "fields": { + "name": "Knock", + "desc": "Choose an object that you can see within range. The object can be a door, a box, a chest, a set of manacles, a padlock, or another object that contains a mundane or magical means that prevents access. A target that is held shut by a mundane lock or that is stuck or barred becomes unlocked, unstuck, or unbarred. If the object has multiple locks, only one of them is unlocked. If you choose a target that is held shut with arcane lock, that spell is suppressed for 10 minutes, during which time the target can be opened and shut normally. When you cast the spell, a loud knock, audible from as far away as 300 feet, emanates from the target object.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_legend-lore", + "fields": { + "name": "Legend Lore", + "desc": "Name or describe a person, place, or object. The spell brings to your mind a brief summary of the significant lore about the thing you named. The lore might consist of current tales, forgotten stories, or even secret lore that has never been widely known. If the thing you named isn't of legendary importance, you gain no information. The more information you already have about the thing, the more precise and detailed the information you receive is. The information you learn is accurate but might be couched in figurative language. For example, if you have a mysterious magic axe on hand, the spell might yield this information: \"Woe to the evildoer whose hand touches the axe, for even the haft slices the hand of the evil ones. Only a true Child of Stone, lover and beloved of Moradin, may awaken the true powers of the axe, and only with the sacred word Rudnogg on the lips.\"", + "document": "srd", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Incense worth 250 inches that fate consumes and four sticks of ivory worth 50 gp each.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_lesser-restoration", + "fields": { + "name": "Lesser Restoration", + "desc": "You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.", + "document": "srd", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_levitate", + "fields": { + "name": "Levitate", + "desc": "One creature or object of your choice that you can see within range rises vertically, up to 20 feet, and remains suspended there for the duration. The spell can levitate a target that weighs up to 500 pounds. An unwilling creature that succeeds on a constitution saving throw is unaffected. The target can move only by pushing or pulling against a fixed object or surface within reach (such as a wall or a ceiling), which allows it to move as if it were climbing. You can change the target's altitude by up to 20 feet in either direction on your turn. If you are the target, you can move up or down as part of your move. Otherwise, you can use your action to move the target, which must remain within the spell's range. When the spell ends, the target floats gently to the ground if it is still aloft.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Either a small leather loop or a piece of golden wire bent into a cup shape with a long shank on one end.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_light", + "fields": { + "name": "Light", + "desc": "You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action. If you target an object held or worn by a hostile creature, that creature must succeed on a dexterity saving throw to avoid the spell.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "A firefly or phosphorescent moss.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_lightning-bolt", + "fields": { + "name": "Lightning Bolt", + "desc": "A stroke of lightning forming a line 100 feet long and 5 feet wide blasts out from you in a direction you choose. Each creature in the line must make a dexterity saving throw. A creature takes 8d6 lightning damage on a failed save, or half as much damage on a successful one. The lightning ignites flammable objects in the area that aren't being worn or carried.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fur and a rod of amber, crystal, or glass.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "lightning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_locate-animals-or-plants", + "fields": { + "name": "Locate Animals or Plants", + "desc": "Describe or name a specific kind of beast or plant. Concentrating on the voice of nature in your surroundings, you learn the direction and distance to the closest creature or plant of that kind within 5 miles, if any are present.", + "document": "srd", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fur from a bloodhound.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_locate-creature", + "fields": { + "name": "Locate Creature", + "desc": "Describe or name a creature that is familiar to you. You sense the direction to the creature's location, as long as that creature is within 1,000 feet of you. If the creature is moving, you know the direction of its movement. The spell can locate a specific creature known to you, or the nearest creature of a specific kind (such as a human or a unicorn), so long as you have seen such a creature up close-within 30 feet-at least once. If the creature you described or named is in a different form, such as being under the effects of a polymorph spell, this spell doesn't locate the creature. This spell can't locate a creature if running water at least 10 feet wide blocks a direct path between you and the creature.", + "document": "srd", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fur from a bloodhound.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_locate-object", + "fields": { + "name": "Locate Object", + "desc": "Describe or name an object that is familiar to you. You sense the direction to the object's location, as long as that object is within 1,000 feet of you. If the object is in motion, you know the direction of its movement. The spell can locate a specific object known to you, as long as you have seen it up close-within 30 feet-at least once. Alternatively, the spell can locate the nearest object of a particular kind, such as a certain kind of apparel, jewelry, furniture, tool, or weapon. This spell can't locate an object if any thickness of lead, even a thin sheet, blocks a direct path between you and the object.", + "document": "srd", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A forked twig.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_longstrider", + "fields": { + "name": "Longstrider", + "desc": "You touch a creature. The target's speed increases by 10 feet until the spell ends.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each spell slot above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of dirt.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_mage-armor", + "fields": { + "name": "Mage Armor", + "desc": "You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.", + "document": "srd", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A piece of cured leather.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_mage-hand", + "fields": { + "name": "Mage Hand", + "desc": "A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again. You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it. The hand can't attack, activate magic items, or carry more than 10 pounds.", + "document": "srd", + "level": 0, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_magic-circle", + "fields": { + "name": "Magic Circle", + "desc": "You create a 10-­--foot-­--radius, 20-­--foot-­--tall cylinder of magical energy centered on a point on the ground that you can see within range. Glowing runes appear wherever the cylinder intersects with the floor or other surface. Choose one or more of the following types of creatures: celestials, elementals, fey, fiends, or undead. The circle affects a creature of the chosen type in the following ways: \n- The creature can't willingly enter the cylinder by nonmagical means. If the creature tries to use teleportation or interplanar travel to do so, it must first succeed on a charisma saving throw. \n- The creature has disadvantage on attack rolls against targets within the cylinder. \n- Targets within the cylinder can't be charmed, frightened, or possessed by the creature.\nWhen you cast this spell, you can elect to cause its magic to operate in the reverse direction, preventing a creature of the specified type from leaving the cylinder and protecting targets outside it.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 hour for each slot level above 3rd.", + "target_type": "point", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Holy water or powdered silver and iron worth at least 100 gp, which the spell consumes.", + "material_cost": "100.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_magic-jar", + "fields": { + "name": "Magic Jar", + "desc": "Your body falls into a catatonic state as your soul leaves it and enters the container you used for the spell's material component. While your soul inhabits the container, you are aware of your surroundings as if you were in the container's space. You can't move or use reactions. The only action you can take is to project your soul up to 100 feet out of the container, either returning to your living body (and ending the spell) or attempting to possess a humanoids body. You can attempt to possess any humanoid within 100 feet of you that you can see (creatures warded by a protection from evil and good or magic circle spell can't be possessed). The target must make a charisma saving throw. On a failure, your soul moves into the target's body, and the target's soul becomes trapped in the container. On a success, the target resists your efforts to possess it, and you can't attempt to possess it again for 24 hours. Once you possess a creature's body, you control it. Your game statistics are replaced by the statistics of the creature, though you retain your alignment and your Intelligence, Wisdom, and Charisma scores. You retain the benefit of your own class features. If the target has any class levels, you can't use any of its class features. Meanwhile, the possessed creature's soul can perceive from the container using its own senses, but it can't move or take actions at all. While possessing a body, you can use your action to return from the host body to the container if it is within 100 feet of you, returning the host creature's soul to its body. If the host body dies while you're in it, the creature dies, and you must make a charisma saving throw against your own spellcasting DC. On a success, you return to the container if it is within 100 feet of you. Otherwise, you die. If the container is destroyed or the spell ends, your soul immediately returns to your body. If your body is more than 100 feet away from you or if your body is dead when you attempt to return to it, you die. If another creature's soul is in the container when it is destroyed, the creature's soul returns to its body if the body is alive and within 100 feet. Otherwise, that creature dies. When the spell ends, the container is destroyed.", + "document": "srd", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A gem, crystal, reliquary, or some other ornamental container worth at least 500 gp.", + "material_cost": "500.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_magic-missile", + "fields": { + "name": "Magic Missile", + "desc": "You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_magic-mouth", + "fields": { + "name": "Magic Mouth", + "desc": "You implant a message within an object in range, a message that is uttered when a trigger condition is met. Choose an object that you can see and that isn't being worn or carried by another creature. Then speak the message, which must be 25 words or less, though it can be delivered over as long as 10 minutes. Finally, determine the circumstance that will trigger the spell to deliver your message. When that circumstance occurs, a magical mouth appears on the object and recites the message in your voice and at the same volume you spoke. If the object you chose has a mouth or something that looks like a mouth (for example, the mouth of a statue), the magical mouth appears there so that the words appear to come from the object's mouth. When you cast this spell, you can have the spell end after it delivers its message, or it can remain and repeat its message whenever the trigger occurs. The triggering circumstance can be as general or as detailed as you like, though it must be based on visual or audible conditions that occur within 30 feet of the object. For example, you could instruct the mouth to speak when any creature moves within 30 feet of the object or when a silver bell rings within 30 feet of it.", + "document": "srd", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small bit of honeycomb and jade dust worth at least 10 gp, which the spell consumes", + "material_cost": "10.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_magic-weapon", + "fields": { + "name": "Magic Weapon", + "desc": "You touch a nonmagical weapon. Until the spell ends, that weapon becomes a magic weapon with a +1 bonus to attack rolls and damage rolls.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bonus increases to +2. When you use a spell slot of 6th level or higher, the bonus increases to +3.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_magnificent-mansion", + "fields": { + "name": "Magnificent Mansion", + "desc": "You conjure an extradimensional dwelling in range that lasts for the duration. You choose where its one entrance is located. The entrance shimmers faintly and is 5 feet wide and 10 feet tall. You and any creature you designate when you cast the spell can enter the extradimensional dwelling as long as the portal remains open. You can open or close the portal if you are within 30 feet of it. While closed, the portal is invisible. Beyond the portal is a magnificent foyer with numerous chambers beyond. The atmosphere is clean, fresh, and warm. You can create any floor plan you like, but the space can't exceed 50 cubes, each cube being 10 feet on each side. The place is furnished and decorated as you choose. It contains sufficient food to serve a nine course banquet for up to 100 people. A staff of 100 near-transparent servants attends all who enter. You decide the visual appearance of these servants and their attire. They are completely obedient to your orders. Each servant can perform any task a normal human servant could perform, but they can't attack or take any action that would directly harm another creature. Thus the servants can fetch things, clean, mend, fold clothes, light fires, serve food, pour wine, and so on. The servants can go anywhere in the mansion but can't leave it. Furnishings and other objects created by this spell dissipate into smoke if removed from the mansion. When the spell ends, any creatures inside the extradimensional space are expelled into the open spaces nearest to the entrance.", + "document": "srd", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A miniature portal carved from ivory, a small piece of polished marble, and a tiny silver spoon, each item worth at least 5 gp.", + "material_cost": "5.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_major-image", + "fields": { + "name": "Major Image", + "desc": "You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench). As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.", + "document": "srd", + "level": 3, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fleece.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_mass-cure-wounds", + "fields": { + "name": "Mass Cure Wounds", + "desc": "A wave of healing energy washes out from a point of your choice within range. Choose up to six creatures in a 30-foot-radius sphere centered on that point. Each target regains hit points equal to 3d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the healing increases by 1d8 for each slot level above 5th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_mass-heal", + "fields": { + "name": "Mass Heal", + "desc": "A flood of healing energy flows from you into injured creatures around you. You restore up to 700 hit points, divided as you choose among any number of creatures that you can see within range. Creatures healed by this spell are also cured of all diseases and any effect making them blinded or deafened. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_mass-healing-word", + "fields": { + "name": "Mass Healing Word", + "desc": "As you call out words of restoration, up to six creatures of your choice that you can see within range regain hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 6, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_mass-suggestion", + "fields": { + "name": "Mass Suggestion", + "desc": "You suggest a course of activity (limited to a sentence or two) and magically influence up to twelve creatures of your choice that you can see within range and that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act automatically negates the effect of the spell. Each target must make a wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do. You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a group of soldiers give all their money to the first beggar they meet. If the condition isn't met before the spell ends, the activity isn't performed. If you or any of your companions damage a creature affected by this spell, the spell ends for that creature.", + "document": "srd", + "level": 6, + "school": "enchantment", + "higher_level": "When you cast this spell using a 7th-level spell slot, the duration is 10 days. When you use an 8th-level spell slot, the duration is 30 days. When you use a 9th-level spell slot, the duration is a year and a day.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "A snake's tongue and either a bit of honeycomb or a drop of sweet oil.", + "material_cost": null, + "material_consumed": false, + "target_count": 12, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_maze", + "fields": { + "name": "Maze", + "desc": "You banish a creature that you can see within range into a labyrinthine demiplane. The target remains there for the duration or until it escapes the maze. The target can use its action to attempt to escape. When it does so, it makes a DC 20 Intelligence check. If it succeeds, it escapes, and the spell ends (a minotaur or goristro demon automatically succeeds). When the spell ends, the target reappears in the space it left or, if that space is occupied, in the nearest unoccupied space.", + "document": "srd", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_meld-into-stone", + "fields": { + "name": "Meld into Stone", + "desc": "You step into a stone object or surface large enough to fully contain your body, melding yourself and all the equipment you carry with the stone for the duration. Using your movement, you step into the stone at a point you can touch. Nothing of your presence remains visible or otherwise detectable by nonmagical senses. While merged with the stone, you can't see what occurs outside it, and any Wisdom (Perception) checks you make to hear sounds outside it are made with disadvantage. You remain aware of the passage of time and can cast spells on yourself while merged in the stone. You can use your movement to leave the stone where you entered it, which ends the spell. You otherwise can't move. Minor physical damage to the stone doesn't harm you, but its partial destruction or a change in its shape (to the extent that you no longer fit within it) expels you and deals 6d6 bludgeoning damage to you. The stone's complete destruction (or transmutation into a different substance) expels you and deals 50 bludgeoning damage to you. If expelled, you fall prone in an unoccupied space closest to where you first entered.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_mending", + "fields": { + "name": "Mending", + "desc": "This spell repairs a single break or tear in an object you touch, such as a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no longer than 1 foot in any dimension, you mend it, leaving no trace of the former damage. This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.", + "document": "srd", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Two lodestones.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_message", + "fields": { + "name": "Message", + "desc": "You point your finger toward a creature within range and whisper a message. The target (and only the target) hears the message and can reply in a whisper that only you can hear. You can cast this spell through solid objects if you are familiar with the target and know it is beyond the barrier. Magical silence, 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood blocks the spell. The spell doesn't have to follow a straight line and can travel freely around corners or through openings.", + "document": "srd", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A short piece of copper wire.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_meteor-swarm", + "fields": { + "name": "Meteor Swarm", + "desc": "Blazing orbs of fire plummet to the ground at four different points you can see within range. Each creature in a 40-foot-radius sphere centered on each point you choose must make a dexterity saving throw. The sphere spreads around corners. A creature takes 20d6 fire damage and 20d6 bludgeoning damage on a failed save, or half as much damage on a successful one. A creature in the area of more than one fiery burst is affected only once. The spell damages objects in the area and ignites flammable objects that aren't being worn or carried.", + "document": "srd", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "1 mile", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "20d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 40, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_mind-blank", + "fields": { + "name": "Mind Blank", + "desc": "Until the spell ends, one willing creature you touch is immune to psychic damage, any effect that would sense its emotions or read its thoughts, divination spells, and the charmed condition. The spell even foils wish spells and spells or effects of similar power used to affect the target's mind or to gain information about the target.", + "document": "srd", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_minor-illusion", + "fields": { + "name": "Minor Illusion", + "desc": "You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again. If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends. If you create an image of an object-such as a chair, muddy footprints, or a small chest-it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it. If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.", + "document": "srd", + "level": 0, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "A bit of fleece.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_mirage-arcane", + "fields": { + "name": "Mirage Arcane", + "desc": "You make terrain in an area up to 1 mile square look, sound, smell, and even feel like some other sort of terrain. The terrain's general shape remains the same, however. Open fields or a road could be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road. Similarly, you can alter the appearance of structures, or add them where none are present. The spell doesn't disguise, conceal, or add creatures. The illusion includes audible, visual, tactile, and olfactory elements, so it can turn clear ground into difficult terrain (or vice versa) or otherwise impede movement through the area. Any piece of the illusory terrain (such as a rock or stick) that is removed from the spell's area disappears immediately. Creatures with truesight can see through the illusion to the terrain's true form; however, all other elements of the illusion remain, so while the creature is aware of the illusion's presence, the creature can still physically interact with the illusion.", + "document": "srd", + "level": 7, + "school": "illusion", + "higher_level": "", + "target_type": "area", + "range": "Sight", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_mirror-image", + "fields": { + "name": "Mirror Image", + "desc": "Three illusionary duplicates of yourself appear in your space. Until the end of the spell, duplicates move with you and imitate your actions, swapping their position so that it is impossible to determine which image is real. You can use your action to dispel the illusory duplicates. Whenever a creature is targeting you with an attack during the duration of the spell, roll 1d20 to determine if the attack does not target rather one of your duplicates. If you have three duplicates, you need 6 or more on your throw to lead the target of the attack to a duplicate. With two duplicates, you need 8 or more. With one duplicate, you need 11 or more. The CA of a duplicate is 10 + your Dexterity modifier. If an attack hits a duplicate, it is destroyed. A duplicate may be destroyed not just an attack on key. It ignores other damage and effects. The spell ends if the three duplicates are destroyed. A creature is unaffected by this fate if she can not see if it relies on a different meaning as vision, such as blind vision, or if it can perceive illusions as false, as with clear vision.", + "document": "srd", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_mislead", + "fields": { + "name": "Mislead", + "desc": "You become invisible at the same time that an illusory double of you appears where you are standing. The double lasts for the duration, but the invisibility ends if you attack or cast a spell. You can use your action to move your illusory double up to twice your speed and make it gesture, speak, and behave in whatever way you choose. You can see through its eyes and hear through its ears as if you were located where it is. On each of your turns as a bonus action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are blinded and deafened in regard to your own surroundings.", + "document": "srd", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_misty-step", + "fields": { + "name": "Misty Step", + "desc": "Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.", + "document": "srd", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_modify-memory", + "fields": { + "name": "Modify Memory", + "desc": "You attempt to reshape another creature's memories. One creature that you can see must make a wisdom saving throw. If you are fighting the creature, it has advantage on the saving throw. On a failed save, the target becomes charmed by you for the duration. The charmed target is incapacitated and unaware of its surroundings, though it can still hear you. If it takes any damage or is targeted by another spell, this spell ends, and none of the target's memories are modified. While this charm lasts, you can affect the target's memory of an event that it experienced within the last 24 hours and that lasted no more than 10 minutes. You can permanently eliminate all memory of the event, allow the target to recall the event with perfect clarity and exacting detail, change its memory of the details of the event, or create a memory of some other event. You must speak to the target to describe how its memories are affected, and it must be able to understand your language for the modified memories to take root. Its mind fills in any gaps in the details of your description. If the spell ends before you have finished describing the modified memories, the creature's memory isn't altered. Otherwise, the modified memories take hold when the spell ends. A modified memory doesn't necessarily affect how a creature behaves, particularly if the memory contradicts the creature's natural inclinations, alignment, or beliefs. An illogical modified memory, such as implanting a memory of how much the creature enjoyed dousing itself in acid, is dismissed, perhaps as a bad dream. The DM might deem a modified memory too nonsensical to affect a creature in a significant manner. A remove curse or greater restoration spell cast on the target restores the creature's true memory.", + "document": "srd", + "level": 5, + "school": "enchantment", + "higher_level": "If you cast this spell using a spell slot of 6th level or higher, you can alter the target's memories of an event that took place up to 7 days ago (6th level), 30 days ago (7th level), 1 year ago (8th level), or any time in the creature's past (9th level).", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_moonbeam", + "fields": { + "name": "Moonbeam", + "desc": "A silvery beam of pale light shines down in a 5-foot-radius, 40-foot-high cylinder centered on a point within range. Until the spell ends, dim light fills the cylinder. When a creature enters the spell's area for the first time on a turn or starts its turn there, it is engulfed in ghostly flames that cause searing pain, and it must make a constitution saving throw. It takes 2d10 radiant damage on a failed save, or half as much damage on a successful one. A shapechanger makes its saving throw with disadvantage. If it fails, it also instantly reverts to its original form and can't assume a different form until it leaves the spell's light. On each of your turns after you cast this spell, you can use an action to move the beam 60 feet in any direction.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d10 for each slot level above 2nd.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Several seeds of any moonseed plant and a piece of opalescent feldspar.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d10", + "damage_types": [ + "radiant" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_move-earth", + "fields": { + "name": "Move Earth", + "desc": "Choose an area of terrain no larger than 40 feet on a side within range. You can reshape dirt, sand, or clay in the area in any manner you choose for the duration. You can raise or lower the area's elevation, create or fill in a trench, erect or flatten a wall, or form a pillar. The extent of any such changes can't exceed half the area's largest dimension. So, if you affect a 40-foot square, you can create a pillar up to 20 feet high, raise or lower the square's elevation by up to 20 feet, dig a trench up to 20 feet deep, and so on. It takes 10 minutes for these changes to complete. At the end of every 10 minutes you spend concentrating on the spell, you can choose a new area of terrain to affect. Because the terrain's transformation occurs slowly, creatures in the area can't usually be trapped or injured by the ground's movement. This spell can't manipulate natural stone or stone construction. Rocks and structures shift to accommodate the new terrain. If the way you shape the terrain would make a structure unstable, it might collapse. Similarly, this spell doesn't directly affect plant growth. The moved earth carries any plants along with it.", + "document": "srd", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An iron blade and a small bag containing a mixture of soils-clay, loam, and sand.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "2 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_nondetection", + "fields": { + "name": "Nondetection", + "desc": "For the duration, you hide a target that you touch from divination magic. The target can be a willing creature or a place or an object no larger than 10 feet in any dimension. The target can't be targeted by any divination magic or perceived through magical scrying sensors.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of diamond dust worth 25 gp sprinkled over the target, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_pass-without-trace", + "fields": { + "name": "Pass without Trace", + "desc": "A veil of shadows and silence radiates from you, masking you and your companions from detection. For the duration, each creature you choose within 30 feet of you (including you) has a +10 bonus to Dexterity (Stealth) checks and can't be tracked except by magical means. A creature that receives this bonus leaves behind no tracks or other traces of its passage.", + "document": "srd", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Ashes from a burned leaf of mistletoe and a sprig of spruce.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_passwall", + "fields": { + "name": "Passwall", + "desc": "A passage appears at a point of your choice that you can see on a wooden, plaster, or stone surface (such as a wall, a ceiling, or a floor) within range, and lasts for the duration. You choose the opening's dimensions: up to 5 feet wide, 8 feet tall, and 20 feet deep. The passage creates no instability in a structure surrounding it. When the opening disappears, any creatures or objects still in the passage created by the spell are safely ejected to an unoccupied space nearest to the surface on which you cast the spell.", + "document": "srd", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of sesame seeds.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_phantasmal-killer", + "fields": { + "name": "Phantasmal Killer", + "desc": "You tap into the nightmares of a creature you can see within range and create an illusory manifestation of its deepest fears, visible only to that creature. The target must make a wisdom saving throw. On a failed save, the target becomes frightened for the duration. At the start of each of the target's turns before the spell ends, the target must succeed on a wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends.", + "document": "srd", + "level": 4, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d10 for each slot level above 4th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_phantom-steed", + "fields": { + "name": "Phantom Steed", + "desc": "A Large quasi-real, horselike creature appears on the ground in an unoccupied space of your choice within range. You decide the creature's appearance, but it is equipped with a saddle, bit, and bridle. Any of the equipment created by the spell vanishes in a puff of smoke if it is carried more than 10 feet away from the steed. For the duration, you or a creature you choose can ride the steed. The creature uses the statistics for a riding horse, except it has a speed of 100 feet and can travel 10 miles in an hour, or 13 miles at a fast pace. When the spell ends, the steed gradually fades, giving the rider 1 minute to dismount. The spell ends if you use an action to dismiss it or if the steed takes any damage.", + "document": "srd", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_planar-ally", + "fields": { + "name": "Planar Ally", + "desc": "You beseech an otherworldly entity for aid. The being must be known to you: a god, a primordial, a demon prince, or some other being of cosmic power. That entity sends a celestial, an elemental, or a fiend loyal to it to aid you, making the creature appear in an unoccupied space within range. If you know a specific creature's name, you can speak that name when you cast this spell to request that creature, though you might get a different creature anyway (DM's choice). When the creature appears, it is under no compulsion to behave in any particular way. You can ask the creature to perform a service in exchange for payment, but it isn't obliged to do so. The requested task could range from simple (fly us across the chasm, or help us fight a battle) to complex (spy on our enemies, or protect us during our foray into the dungeon). You must be able to communicate with the creature to bargain for its services. Payment can take a variety of forms. A celestial might require a sizable donation of gold or magic items to an allied temple, while a fiend might demand a living sacrifice or a gift of treasure. Some creatures might exchange their service for a quest undertaken by you. As a rule of thumb, a task that can be measured in minutes requires a payment worth 100 gp per minute. A task measured in hours requires 1,000 gp per hour. And a task measured in days (up to 10 days) requires 10,000 gp per day. The DM can adjust these payments based on the circumstances under which you cast the spell. If the task is aligned with the creature's ethos, the payment might be halved or even waived. Nonhazardous tasks typically require only half the suggested payment, while especially dangerous tasks might require a greater gift. Creatures rarely accept tasks that seem suicidal. After the creature completes the task, or when the agreed-upon duration of service expires, the creature returns to its home plane after reporting back to you, if appropriate to the task and if possible. If you are unable to agree on a price for the creature's service, the creature immediately returns to its home plane. A creature enlisted to join your group counts as a member of it, receiving a full share of experience points awarded.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_planar-binding", + "fields": { + "name": "Planar Binding", + "desc": "With this spell, you attempt to bind a celestial, an elemental, a fey, or a fiend to your service. The creature must be within range for the entire casting of the spell. (Typically, the creature is first summoned into the center of an inverted magic circle in order to keep it trapped while this spell is cast.) At the completion of the casting, the target must make a charisma saving throw. On a failed save, it is bound to serve you for the duration. If the creature was summoned or created by another spell, that spell's duration is extended to match the duration of this spell. A bound creature must follow your instructions to the best of its ability. You might command the creature to accompany you on an adventure, to guard a location, or to deliver a message. The creature obeys the letter of your instructions, but if the creature is hostile to you, it strives to twist your words to achieve its own objectives. If the creature carries out your instructions completely before the spell ends, it travels to you to report this fact if you are on the same plane of existence. If you are on a different plane of existence, it returns to the place where you bound it and remains there until the spell ends.", + "document": "srd", + "level": 5, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of a higher level, the duration increases to 10 days with a 6th-level slot, to 30 days with a 7th-level slot, to 180 days with an 8th-level slot, and to a year and a day with a 9th-level spell slot.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A jewel worth at least 1,000 gp, which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_plane-shift", + "fields": { + "name": "Plane Shift", + "desc": "You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion. Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle. You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.", + "document": "srd", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence.", + "material_cost": "250.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_plant-growth", + "fields": { + "name": "Plant Growth", + "desc": "This spell channels vitality into plants within a specific area. There are two possible uses for the spell, granting either immediate or long-term benefits. If you cast this spell using 1 action, choose a point within range. All normal plants in a 100-foot radius centered on that point become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves. You can exclude one or more areas of any size within the spell's area from being affected. If you cast this spell over 8 hours, you enrich the land. All plants in a half-mile radius centered on a point within range become enriched for 1 year. The plants yield twice the normal amount of food when harvested.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_poison-spray", + "fields": { + "name": "Poison Spray", + "desc": "You extend your hand toward a creature you can see within range and project a puff of noxious gas from your palm. The creature must succeed on a Constitution saving throw or take 1d12 poison damage.", + "document": "srd", + "level": 0, + "school": "conjuration", + "higher_level": "This spell's damage increases by 1d12 when you reach 5th level (2d12), 11th level (3d12), and 17th level (4d12).", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_polymorph", + "fields": { + "name": "Polymorph", + "desc": "This spell transforms a creature that you can see within range into a new form. An unwilling creature must make a wisdom saving throw to avoid the effect. A shapechanger automatically succeeds on this saving throw. The transformation lasts for the duration, or until the target drops to 0 hit points or dies. The new form can be any beast whose challenge rating is equal to or less than the target's (or the target's level, if it doesn't have a challenge rating). The target's game statistics, including mental ability scores, are replaced by the statistics of the chosen beast. It retains its alignment and personality. The target assumes the hit points of its new form. When it reverts to its normal form, the creature returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak, cast spells, or take any other action that requires hands or speech. The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its equipment.", + "document": "srd", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A caterpillar cocoon.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_power-word-kill", + "fields": { + "name": "Power Word Kill", + "desc": "You utter a word of power that can compel one creature you can see within range to die instantly. If the creature you choose has 100 hit points or fewer, it dies. Otherwise, the spell has no effect.", + "document": "srd", + "level": 9, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_power-word-stun", + "fields": { + "name": "Power Word Stun", + "desc": "You speak a word of power that can overwhelm the mind of one creature you can see within range, leaving it dumbfounded. If the target has 150 hit points or fewer, it is stunned. Otherwise, the spell has no effect. The stunned target must make a constitution saving throw at the end of each of its turns. On a successful save, this stunning effect ends.", + "document": "srd", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_prayer-of-healing", + "fields": { + "name": "Prayer of Healing", + "desc": "Up to six creatures of your choice that you can see within range each regain hit points equal to 2d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the healing increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 6, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_prestidigitation", + "fields": { + "name": "Prestidigitation", + "desc": "This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within 'range': \n- You create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor. \n- You instantaneously light or snuff out a candle, a torch, or a small campfire. \n- You instantaneously clean or soil an object no larger than 1 cubic foot. \n- You chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour. \n- You make a color, a small mark, or a symbol appear on an object or a surface for 1 hour. \n- You create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn. \nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.", + "document": "srd", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_prismatic-spray", + "fields": { + "name": "Prismatic Spray", + "desc": "Eight multicolored rays of light flash from your hand. Each ray is a different color and has a different power and purpose. Each creature in a 60-foot cone must make a dexterity saving throw. For each target, roll a d8 to determine which color ray affects it.\n\n**1. Red.** The target takes 10d6 fire damage on a failed save, or half as much damage on a successful one.\n\n**2. Orange.** The target takes 10d6 acid damage on a failed save, or half as much damage on a successful one.\n\n**3. Yellow.** The target takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**4. Green.** The target takes 10d6 poison damage on a failed save, or half as much damage on a successful one.\n\n**5. Blue.** The target takes 10d6 cold damage on a failed save, or half as much damage on a successful one.\n\n**6. Indigo.** On a failed save, the target is restrained. It must then make a constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the petrified condition. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind.\n\n**7. Violet.** On a failed save, the target is blinded. It must then make a wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of existence of the DM's choosing and is no longer blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.) \n\n**8. Special.** The target is struck by two rays. Roll twice more, rerolling any 8.", + "document": "srd", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 60, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_prismatic-wall", + "fields": { + "name": "Prismatic Wall", + "desc": "A shimmering, multicolored plane of light forms a vertical opaque wall-up to 90 feet long, 30 feet high, and 1 inch thick-centered on a point you can see within range. Alternatively, you can shape the wall into a sphere up to 30 feet in diameter centered on a point you choose within range. The wall remains in place for the duration. If you position the wall so that it passes through a space occupied by a creature, the spell fails, and your action and the spell slot are wasted. The wall sheds bright light out to a range of 100 feet and dim light for an additional 100 feet. You and creatures you designate at the time you cast the spell can pass through and remain near the wall without harm. If another creature that can see the wall moves to within 20 feet of it or starts its turn there, the creature must succeed on a constitution saving throw or become blinded for 1 minute. The wall consists of seven layers, each with a different color. When a creature attempts to reach into or pass through the wall, it does so one layer at a time through all the wall's layers. As it passes or reaches through each layer, the creature must make a dexterity saving throw or be affected by that layer's properties as described below. The wall can be destroyed, also one layer at a time, in order from red to violet, by means specific to each layer. Once a layer is destroyed, it remains so for the duration of the spell. A rod of cancellation destroys a prismatic wall, but an antimagic field has no effect on it.\n\n**1. Red.** The creature takes 10d6 fire damage on a failed save, or half as much damage on a successful one. While this layer is in place, nonmagical ranged attacks can't pass through the wall. The layer can be destroyed by dealing at least 25 cold damage to it.\n\n**2. Orange.** The creature takes 10d6 acid damage on a failed save, or half as much damage on a successful one. While this layer is in place, magical ranged attacks can't pass through the wall. The layer is destroyed by a strong wind.\n\n**3. Yellow.** The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 60 force damage to it.\n\n**4. Green.** The creature takes 10d6 poison damage on a failed save, or half as much damage on a successful one. A passwall spell, or another spell of equal or greater level that can open a portal on a solid surface, destroys this layer.\n\n**5. Blue.** The creature takes 10d6 cold damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 25 fire damage to it.\n\n**6. Indigo.** On a failed save, the creature is restrained. It must then make a constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the petrified condition. The successes and failures don't need to be consecutive; keep track of both until the creature collects three of a kind. While this layer is in place, spells can't be cast through the wall. The layer is destroyed by bright light shed by a daylight spell or a similar spell of equal or higher level.\n\n**7. Violet.** On a failed save, the creature is blinded. It must then make a wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of the DM's choosing and is no longer blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.) This layer is destroyed by a dispel magic spell or a similar spell of equal or higher level that can end spells and magical effects.", + "document": "srd", + "level": 9, + "school": "abjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "fire" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_private-sanctum", + "fields": { + "name": "Private Sanctum", + "desc": "You make an area within range magically secure. The area is a cube that can be as small as 5 feet to as large as 100 feet on each side. The spell lasts for the duration or until you use an action to dismiss it. When you cast the spell, you decide what sort of security the spell provides, choosing any or all of the following properties: \n- Sound can't pass through the barrier at the edge of the warded area. \n- The barrier of the warded area appears dark and foggy, preventing vision (including darkvision) through it. \n- Sensors created by divination spells can't appear inside the protected area or pass through the barrier at its perimeter. \n- Creatures in the area can't be targeted by divination spells. \n- Nothing can teleport into or out of the warded area. \n- Planar travel is blocked within the warded area. \nCasting this spell on the same spot every day for a year makes this effect permanent.", + "document": "srd", + "level": 4, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can increase the size of the cube by 100 feet for each slot level beyond 4th. Thus you could protect a cube that can be up to 200 feet on one side by using a spell slot of 5th level.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A thin sheet of lead, a piece of opaque glass, a wad of cotton or cloth, and powdered chrysolite.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_produce-flame", + "fields": { + "name": "Produce Flame", + "desc": "A flickering flame appears in your hand. The flame remains there for the duration and harms neither you nor your equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The spell ends if you dismiss it as an action or if you cast it again. You can also attack with the flame, although doing so ends the spell. When you cast this spell, or as an action on a later turn, you can hurl the flame at a creature within 30 feet of you. Make a ranged spell attack. On a hit, the target takes 1d8 fire damage.", + "document": "srd", + "level": 0, + "school": "conjuration", + "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "fire" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_programmed-illusion", + "fields": { + "name": "Programmed Illusion", + "desc": "You create an illusion of an object, a creature, or some other visible phenomenon within range that activates when a specific condition occurs. The illusion is imperceptible until then. It must be no larger than a 30-foot cube, and you decide when you cast the spell how the illusion behaves and what sounds it makes. This scripted performance can last up to 5 minutes. When the condition you specify occurs, the illusion springs into existence and performs in the manner you described. Once the illusion finishes performing, it disappears and remains dormant for 10 minutes. After this time, the illusion can be activated again. The triggering condition can be as general or as detailed as you like, though it must be based on visual or audible conditions that occur within 30 feet of the area. For example, you could create an illusion of yourself to appear and warn off others who attempt to open a trapped door, or you could set the illusion to trigger only when a creature says the correct word or phrase. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature.", + "document": "srd", + "level": 6, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fleece and jade dust worth at least 25 gp.", + "material_cost": "25.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": "cube", + "shape_magnitude": 30, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_project-image", + "fields": { + "name": "Project Image", + "desc": "You create an illusory copy of yourself that lasts for the duration. The copy can appear at any location within range that you have seen before, regardless of intervening obstacles. The illusion looks and sounds like you but is intangible. If the illusion takes any damage, it disappears, and the spell ends. You can use your action to move this illusion up to twice your speed, and make it gesture, speak, and behave in whatever way you choose. It mimics your mannerisms perfectly. You can see through its eyes and hear through its ears as if you were in its space. On your turn as a bonus action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are blinded and deafened in regard to your own surroundings. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature.", + "document": "srd", + "level": 7, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "500 miles", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small replica of you made from materials worth at least 5 gp.", + "material_cost": "5.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_protection-from-energy", + "fields": { + "name": "Protection from Energy", + "desc": "For the duration, the willing creature you touch has resistance to one damage type of your choice: acid, cold, fire, lightning, or thunder.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_protection-from-evil-and-good", + "fields": { + "name": "Protection from Evil and Good", + "desc": "Until the spell ends, one willing creature you touch is protected against certain types of creatures: aberrations, celestials, elementals, fey, fiends, and undead. The protection grants several benefits. Creatures of those types have disadvantage on attack rolls against the target. The target also can't be charmed, frightened, or possessed by them. If the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against the relevant effect.", + "document": "srd", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Holy water or powdered silver and iron, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_protection-from-poison", + "fields": { + "name": "Protection from Poison", + "desc": "You touch a creature. If it is poisoned, you neutralize the poison. If more than one poison afflicts the target, you neutralize one poison that you know is present, or you neutralize one at random. For the duration, the target has advantage on saving throws against being poisoned, and it has resistance to poison damage.", + "document": "srd", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_purify-food-and-drink", + "fields": { + "name": "Purify Food and Drink", + "desc": "All nonmagical food and drink within a 5-foot radius sphere centered on a point of your choice within range is purified and rendered free of poison and disease.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "10 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 5, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_raise-dead", + "fields": { + "name": "Raise Dead", + "desc": "You return a dead creature you touch to life, provided that it has been dead no longer than 10 days. If the creature's soul is both willing and at liberty to rejoin the body, the creature returns to life with 1 hit point. This spell also neutralizes any poisons and cures nonmagical diseases that affected the creature at the time it died. This spell doesn't, however, remove magical diseases, curses, or similar effects; if these aren't first removed prior to casting the spell, they take effect when the creature returns to life. The spell can't return an undead creature to life. This spell closes all mortal wounds, but it doesn't restore missing body parts. If the creature is lacking body parts or organs integral for its survival-its head, for instance-the spell automatically fails. Coming back from the dead is an ordeal. The target takes a -4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.", + "document": "srd", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A diamond worth at least 500gp, which the spell consumes.", + "material_cost": "500.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_ray-of-enfeeblement", + "fields": { + "name": "Ray of Enfeeblement", + "desc": "A black beam of enervating energy springs from your finger toward a creature within range. Make a ranged spell attack against the target. On a hit, the target deals only half damage with weapon attacks that use Strength until the spell ends. At the end of each of the target's turns, it can make a constitution saving throw against the spell. On a success, the spell ends.", + "document": "srd", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_ray-of-frost", + "fields": { + "name": "Ray of Frost", + "desc": "A frigid beam of blue-white light streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage, and its speed is reduced by 10 feet until the start of your next turn.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_regenerate", + "fields": { + "name": "Regenerate", + "desc": "You touch a creature and stimulate its natural healing ability. The target regains 4d8 + 15 hit points. For the duration of the spell, the target regains 1 hit point at the start of each of its turns (10 hit points each minute). The target's severed body members (fingers, legs, tails, and so on), if any, are restored after 2 minutes. If you have the severed part and hold it to the stump, the spell instantaneously causes the limb to knit to the stump.", + "document": "srd", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A prayer wheel and holy water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_reincarnate", + "fields": { + "name": "Reincarnate", + "desc": "You touch a dead humanoid or a piece of a dead humanoid. Provided that the creature has been dead no longer than 10 days, the spell forms a new adult body for it and then calls the soul to enter that body. If the target's soul isn't free or willing to do so, the spell fails. The magic fashions a new body for the creature to inhabit, which likely causes the creature's race to change. The DM rolls a d 100 and consults the following table to determine what form the creature takes when restored to life, or the DM chooses a form.\n\n**01-04** Dragonborn **05-13** Dwarf, hill **14-21** Dwarf, mountain **22-25** Elf, dark **26-34** Elf, high **35-42** Elf, wood **43-46** Gnome, forest **47-52** Gnome, rock **53-56** Half-elf **57-60** Half-orc **61-68** Halfling, lightfoot **69-76** Halfling, stout **77-96** Human **97-00** Tiefling \nThe reincarnated creature recalls its former life and experiences. It retains the capabilities it had in its original form, except it exchanges its original race for the new one and changes its racial traits accordingly.", + "document": "srd", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Rare oils and unguents worth at least 1,000 gp, which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_remove-curse", + "fields": { + "name": "Remove Curse", + "desc": "At your touch, all curses affecting one creature or object end. If the object is a cursed magic item, its curse remains, but the spell breaks its owner's attunement to the object so it can be removed or discarded.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_resilient-sphere", + "fields": { + "name": "Resilient Sphere", + "desc": "A sphere of shimmering force encloses a creature or object of Large size or smaller within range. An unwilling creature must make a dexterity saving throw. On a failed save, the creature is enclosed for the duration. Nothing-not physical objects, energy, or other spell effects-can pass through the barrier, in or out, though a creature in the sphere can breathe there. The sphere is immune to all damage, and a creature or object inside can't be damaged by attacks or effects originating from outside, nor can a creature inside the sphere damage anything outside it. The sphere is weightless and just large enough to contain the creature or object inside. An enclosed creature can use its action to push against the sphere's walls and thus roll the sphere at up to half the creature's speed. Similarly, the globe can be picked up and moved by other creatures. A disintegrate spell targeting the globe destroys it without harming anything inside it.", + "document": "srd", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A hemispherical piece of clear crystal and a matching hemispherical piece of gum arabic.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_resistance", + "fields": { + "name": "Resistance", + "desc": "You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one saving throw of its choice. It can roll the die before or after making the saving throw. The spell then ends.", + "document": "srd", + "level": 0, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A miniature cloak.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_resurrection", + "fields": { + "name": "Resurrection", + "desc": "You touch a dead creature that has been dead for no more than a century, that didn't die of old age, and that isn't undead. If its soul is free and willing, the target returns to life with all its hit points. This spell neutralizes any poisons and cures normal diseases afflicting the creature when it died. It doesn't, however, remove magical diseases, curses, and the like; if such effects aren't removed prior to casting the spell, they afflict the target on its return to life. This spell closes all mortal wounds and restores any missing body parts. Coming back from the dead is an ordeal. The target takes a -4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears. Casting this spell to restore life to a creature that has been dead for one year or longer taxes you greatly. Until you finish a long rest, you can't cast spells again, and you have disadvantage on all attack rolls, ability checks, and saving throws.", + "document": "srd", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A diamond worth at least 1,000gp, which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_reverse-gravity", + "fields": { + "name": "Reverse Gravity", + "desc": "This spell reverses gravity in a 50-foot-radius, 100-foot high cylinder centered on a point within range. All creatures and objects that aren't somehow anchored to the ground in the area fall upward and reach the top of the area when you cast this spell. A creature can make a dexterity saving throw to grab onto a fixed object it can reach, thus avoiding the fall. If some solid object (such as a ceiling) is encountered in this fall, falling objects and creatures strike it just as they would during a normal downward fall. If an object or creature reaches the top of the area without striking anything, it remains there, oscillating slightly, for the duration. At the end of the duration, affected objects and creatures fall back down.", + "document": "srd", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A lodestone and iron filings.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cylinder", + "shape_magnitude": 100, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_revivify", + "fields": { + "name": "Revivify", + "desc": "You touch a creature that has died within the last minute. That creature returns to life with 1 hit point. This spell can't return to life a creature that has died of old age, nor can it restore any missing body parts.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Diamonds worth 300gp, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_rope-trick", + "fields": { + "name": "Rope Trick", + "desc": "You touch a length of rope that is up to 60 feet long. One end of the rope then rises into the air until the whole rope hangs perpendicular to the ground. At the upper end of the rope, an invisible entrance opens to an extradimensional space that lasts until the spell ends. The extradimensional space can be reached by climbing to the top of the rope. The space can hold as many as eight Medium or smaller creatures. The rope can be pulled into the space, making the rope disappear from view outside the space. Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window centered on the rope. Anything inside the extradimensional space drops out when the spell ends.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Powdered corn extract and a twisted loop of parchment.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_sacred-flame", + "fields": { + "name": "Sacred Flame", + "desc": "Flame-like radiance descends on a creature that you can see within range. The target must succeed on a dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_sanctuary", + "fields": { + "name": "Sanctuary", + "desc": "You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a fireball. If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.", + "document": "srd", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small silver mirror.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_scorching-ray", + "fields": { + "name": "Scorching Ray", + "desc": "You create three rays of fire and hurl them at targets within range. You can hurl them at one target or several. Make a ranged spell attack for each ray. On a hit, the target takes 2d6 fire damage.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "2d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_scrying", + "fields": { + "name": "Scrying", + "desc": "You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n**Knowledge & Save Modifier** Secondhand (you have heard of the target) +5 Firsthand (you have met the target) +0 Familiar (you know the target well) -5 **Connection & Save Modifier** Likeness or picture -2 Possession or garment -4 Body part, lock of hair, bit of nail, or the like -10 \nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours. On a failed save, the spell creates an invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the duration. A creature that can see invisible objects sees the sensor as a luminous orb about the size of your fist. Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.", + "document": "srd", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.", + "material_cost": "1000.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_secret-chest", + "fields": { + "name": "Secret Chest", + "desc": "You hide a chest, and all its contents, on the Ethereal Plane. You must touch the chest and the miniature replica that serves as a material component for the spell. The chest can contain up to 12 cubic feet of nonliving material (3 feet by 2 feet by 2 feet). While the chest remains on the Ethereal Plane, you can use an action and touch the replica to recall the chest. It appears in an unoccupied space on the ground within 5 feet of you. You can send the chest back to the Ethereal Plane by using an action and touching both the chest and the replica. After 60 days, there is a cumulative 5 percent chance per day that the spell's effect ends. This effect ends if you cast this spell again, if the smaller replica chest is destroyed, or if you choose to end the spell as an action. If the spell ends and the larger chest is on the Ethereal Plane, it is irretrievably lost.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An exquisite chest, 3 feet by 2 feet by 2 feet, constructed from rare materials worth at least 5,000 gp, and a Tiny replica made from the same materials worth at least 50 gp.", + "material_cost": "5000.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_see-invisibility", + "fields": { + "name": "See Invisibility", + "desc": "For the duration of the spell, you see invisible creatures and objects as if they were visible, and you can see through Ethereal. The ethereal objects and creatures appear ghostly translucent.", + "document": "srd", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A dash of talc and a small amount of silver powder.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_seeming", + "fields": { + "name": "Seeming", + "desc": "This spell allows you to change the appearance of any number of creatures that you can see within range. You give each target you choose a new, illusory appearance. An unwilling target can make a charisma saving throw, and if it succeeds, it is unaffected by this spell. The spell disguises physical appearance as well as clothing, armor, weapons, and equipment. You can make each creature seem 1 foot shorter or taller and appear thin, fat, or in between. You can't change a target's body type, so you must choose a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you. The spell lasts for the duration, unless you use your action to dismiss it sooner. The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to a creature's outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel the creature's head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair. A creature can use its action to inspect a target and make an Intelligence (Investigation) check against your spell save DC. If it succeeds, it becomes aware that the target is disguised.", + "document": "srd", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_sending", + "fields": { + "name": "Sending", + "desc": "You send a short message of twenty-five words or less to a creature with which you are familiar. The creature hears the message in its mind, recognizes you as the sender if it knows you, and can answer in a like manner immediately. The spell enables creatures with Intelligence scores of at least 1 to understand the meaning of your message. You can send the message across any distance and even to other planes of existence, but if the target is on a different plane than you, there is a 5 percent chance that the message doesn't arrive.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Unlimited", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A short piece of fine copper wire.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_sequester", + "fields": { + "name": "Sequester", + "desc": "By means of this spell, a willing creature or an object can be hidden away, safe from detection for the duration. When you cast the spell and touch the target, it becomes invisible and can't be targeted by divination spells or perceived through scrying sensors created by divination spells. If the target is a creature, it falls into a state of suspended animation. Time ceases to flow for it, and it doesn't grow older. You can set a condition for the spell to end early. The condition can be anything you choose, but it must occur or be visible within 1 mile of the target. Examples include \"after 1,000 years\" or \"when the tarrasque awakens.\" This spell also ends if the target takes any damage.", + "document": "srd", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A powder composed of diamond, emerald, ruby, and sapphire dust worth at least 5,000 gp, which the spell consumes.", + "material_cost": "5000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_shapechange", + "fields": { + "name": "Shapechange", + "desc": "You assume the form of a different creature for the duration. The new form can be of any creature with a challenge rating equal to your level or lower. The creature can't be a construct or an undead, and you must have seen the sort of creature at least once. You transform into an average example of that creature, one without any class levels or the Spellcasting trait. Your game statistics are replaced by the statistics of the chosen creature, though you retain your alignment and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus listed in its statistics is higher than yours, use the creature's bonus in place of yours. You can't use any legendary actions or lair actions of the new form. You assume the hit points and Hit Dice of the new form. When you revert to your normal form, you return to the number of hit points you had before you transformed. If you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious. You retain the benefit of any features from your class, race, or other source and can use them, provided that your new form is physically capable of doing so. You can't use any special senses you have (for example, darkvision) unless your new form also has that sense. You can only speak if the creature can normally speak. When you transform, you choose whether your equipment falls to the ground, merges into the new form, or is worn by it. Worn equipment functions as normal. The DM determines whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change shape or size to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge into your new form. Equipment that merges has no effect in that state. During this spell's duration, you can use your action to assume a different form following the same restrictions and rules for the original form, with one exception: if your new form has more hit points than your current one, your hit points remain at their current value.", + "document": "srd", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A jade circlet worth at least 1,500 gp, which you must place on your head before you cast the spell.", + "material_cost": "1500.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_shatter", + "fields": { + "name": "Shatter", + "desc": "A sudden loud ringing noise, painfully intense, erupts from a point of your choice within range. Each creature in a 10-­--foot-­--radius sphere centered on that point must make a Constitution saving throw. A creature takes 3d8 thunder damage on a failed save, or half as much damage on a successful one. A creature made of inorganic material such as stone,crystal, or metal has disadvantage on this saving throw. A nonmagical object that isn't being worn or carried also takes the damage if it's in the spell's area.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A burst of mica.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_shield", + "fields": { + "name": "Shield", + "desc": "An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.", + "document": "srd", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_shield-of-faith", + "fields": { + "name": "Shield of Faith", + "desc": "A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.", + "document": "srd", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small parchment with a bit of holy text written on it.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_shillelagh", + "fields": { + "name": "Shillelagh", + "desc": "The wood of a club or a quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.", + "document": "srd", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Mistletoe, a shamrock leaf, and a club or quarterstaff.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_shocking-grasp", + "fields": { + "name": "Shocking Grasp", + "desc": "Lightning springs from your hand to deliver a shock to a creature you try to touch. Make a melee spell attack against the target. You have advantage on the attack roll if the target is wearing armor made of metal. On a hit, the target takes 1d8 lightning damage, and it can't take reactions until the start of its next turn.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "lightning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_silence", + "fields": { + "name": "Silence", + "desc": "For the duration, no sound can be created within or pass through a 20-foot-radius sphere centered on a point you choose within range. Any creature or object entirely inside the sphere is immune to thunder damage, and creatures are deafened while entirely inside it. Casting a spell that includes a verbal component is impossible there.", + "document": "srd", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_silent-image", + "fields": { + "name": "Silent Image", + "desc": "You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 15-foot cube. The image appears at a spot within range and lasts for the duration. The image is purely visual; it isn't accompanied by sound, smell, or other sensory effects. You can use your action to cause the image to move to any spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image.", + "document": "srd", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fleece.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "cube", + "shape_magnitude": 15, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_simulacrum", + "fields": { + "name": "Simulacrum", + "desc": "You shape an illusory duplicate of one beast or humanoid that is within range for the entire casting time of the spell. The duplicate is a creature, partially real and formed from ice or snow, and it can take actions and otherwise be affected as a normal creature. It appears to be the same as the original, but it has half the creature's hit point maximum and is formed without any equipment. Otherwise, the illusion uses all the statistics of the creature it duplicates. The simulacrum is friendly to you and creatures you designate. It obeys your spoken commands, moving and acting in accordance with your wishes and acting on your turn in combat. The simulacrum lacks the ability to learn or become more powerful, so it never increases its level or other abilities, nor can it regain expended spell slots. If the simulacrum is damaged, you can repair it in an alchemical laboratory, using rare herbs and minerals worth 100 gp per hit point it regains. The simulacrum lasts until it drops to 0 hit points, at which point it reverts to snow and melts instantly. If you cast this spell again, any currently active duplicates you created with this spell are instantly destroyed.", + "document": "srd", + "level": 7, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Snow or ice in quantities sufficient to made a life-size copy of the duplicated creature; some hair, fingernail clippings, or other piece of that creature's body placed inside the snow or ice; and powdered ruby worth 1,500 gp, sprinkled over the duplicate and consumed by the spell.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_sleep", + "fields": { + "name": "Sleep", + "desc": "This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures). Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected. Undead and creatures immune to being charmed aren't affected by this spell.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of fine sand, rose petals, or a cricket.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_sleet-storm", + "fields": { + "name": "Sleet Storm", + "desc": "Until the spell ends, freezing rain and sleet fall in a 20-foot-tall cylinder with a 40-foot radius centered on a point you choose within range. The area is heavily obscured, and exposed flames in the area are doused. The ground in the area is covered with slick ice, making it difficult terrain. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a dexterity saving throw. On a failed save, it falls prone. If a creature is concentrating in the spell's area, the creature must make a successful constitution saving throw against your spell save DC or lose concentration.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of dust and a few drops of water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cylinder", + "shape_magnitude": 40, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_slow", + "fields": { + "name": "Slow", + "desc": "You alter time around up to six creatures of your choice in a 40-foot cube within range. Each target must succeed on a wisdom saving throw or be affected by this spell for the duration. An affected target's speed is halved, it takes a -2 penalty to AC and dexterity saving throws, and it can't use reactions. On its turn, it can use either an action or a bonus action, not both. Regardless of the creature's abilities or magic items, it can't make more than one melee or ranged attack during its turn. If the creature attempts to cast a spell with a casting time of 1 action, roll a d20. On an 11 or higher, the spell doesn't take effect until the creature's next turn, and the creature must use its action on that turn to complete the spell. If it can't, the spell is wasted. A creature affected by this spell makes another wisdom saving throw at the end of its turn. On a successful save, the effect ends for it.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of molasses.", + "material_cost": null, + "material_consumed": false, + "target_count": 6, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 40, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_spare-the-dying", + "fields": { + "name": "Spare the Dying", + "desc": "You touch a living creature that has 0 hit points. The creature becomes stable. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 0, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_speak-with-animals", + "fields": { + "name": "Speak with Animals", + "desc": "You gain the ability to comprehend and verbally communicate with beasts for the duration. The knowledge and awareness of many beasts is limited by their intelligence, but at a minimum, beasts can give you information about nearby locations and monsters, including whatever they can perceive or have perceived within the past day. You might be able to persuade a beast to perform a small favor for you, at the DM's discretion.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_speak-with-dead", + "fields": { + "name": "Speak with Dead", + "desc": "You grant the semblance of life and intelligence to a corpse of your choice within range, allowing it to answer the questions you pose. The corpse must still have a mouth and can't be undead. The spell fails if the corpse was the target of this spell within the last 10 days. Until the spell ends, you can ask the corpse up to five questions. The corpse knows only what it knew in life, including the languages it knew. Answers are usually brief, cryptic, or repetitive, and the corpse is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This spell doesn't return the creature's soul to its body, only its animating spirit. Thus, the corpse can't learn new information, doesn't comprehend anything that has happened since it died, and can't speculate about future events.", + "document": "srd", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Burning incense.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_speak-with-plants", + "fields": { + "name": "Speak with Plants", + "desc": "You imbue plants within 30 feet of you with limited sentience and animation, giving them the ability to communicate with you and follow your simple commands. You can question plants about events in the spell's area within the past day, gaining information about creatures that have passed, weather, and other circumstances. You can also turn difficult terrain caused by plant growth (such as thickets and undergrowth) into ordinary terrain that lasts for the duration. Or you can turn ordinary terrain where plants are present into difficult terrain that lasts for the duration, causing vines and branches to hinder pursuers, for example. Plants might be able to perform other tasks on your behalf, at the DM's discretion. The spell doesn't enable plants to uproot themselves and move about, but they can freely move branches, tendrils, and stalks. If a plant creature is in the area, you can communicate with it as if you shared a common language, but you gain no magical ability to influence it. This spell can cause the plants created by the entangle spell to release a restrained creature.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_spider-climb", + "fields": { + "name": "Spider Climb", + "desc": "Until the spell ends, one willing creature you touch gains the ability to move up, down, and across vertical surfaces and upside down along ceilings, while leaving its hands free. The target also gains a climbing speed equal to its walking speed.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of bitumen and a spider.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_spike-growth", + "fields": { + "name": "Spike Growth", + "desc": "The ground in a 20-foot radius centered on a point within range twists and sprouts hard spikes and thorns. The area becomes difficult terrain for the duration. When a creature moves into or within the area, it takes 2d4 piercing damage for every 5 feet it travels. The development of land is camouflaged to look natural. Any creature that does not see the area when the spell is spell casts must make a Wisdom (Perception) check against your spell save DC to recognize the terrain as hazardous before entering it.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Seven sharp spines or seven twigs cut peak.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "piercing" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_spirit-guardians", + "fields": { + "name": "Spirit Guardians", + "desc": "You call forth spirits to protect you. They flit around you to a distance of 15 feet for the duration. If you are good or neutral, their spectral form appears angelic or fey (your choice). If you are evil, they appear fiendish. When you cast this spell, you can designate any number of creatures you can see to be unaffected by it. An affected creature's speed is halved in the area, and when the creature enters the area for the first time on a turn or starts its turn there, it must make a wisdom saving throw. On a failed save, the creature takes 3d8 radiant damage (if you are good or neutral) or 3d8 necrotic damage (if you are evil). On a successful save, the creature takes half as much damage.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A holy symbol.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "radiant" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_spiritual-weapon", + "fields": { + "name": "Spiritual Weapon", + "desc": "You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier. As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it. The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_stinking-cloud", + "fields": { + "name": "Stinking Cloud", + "desc": "You create a 20-foot-radius sphere of yellow, nauseating gas centered on a point within range. The cloud spreads around corners, and its area is heavily obscured. The cloud lingers in the air for the duration. Each creature that is completely within the cloud at the start of its turn must make a constitution saving throw against poison. On a failed save, the creature spends its action that turn retching and reeling. Creatures that don't need to breathe or are immune to poison automatically succeed on this saving throw. A moderate wind (at least 10 miles per hour) disperses the cloud after 4 rounds. A strong wind (at least 20 miles per hour) disperses it after 1 round.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A rotten egg or several skunk cabbage leaves.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_stone-shape", + "fields": { + "name": "Stone Shape", + "desc": "You touch a stone object of Medium size or smaller or a section of stone no more than 5 feet in any dimension and form it into any shape that suits your purpose. So, for example, you could shape a large rock into a weapon, idol, or coffer, or make a small passage through a wall, as long as the wall is less than 5 feet thick. You could also shape a stone door or its frame to seal the door shut. The object you create can have up to two hinges and a latch, but finer mechanical detail isn't possible.", + "document": "srd", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Soft clay, to be crudely worked into the desired shape for the stone object.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_stoneskin", + "fields": { + "name": "Stoneskin", + "desc": "This spell turns the flesh of a willing creature you touch as hard as stone. Until the spell ends, the target has resistance to nonmagical bludgeoning, piercing, and slashing damage.", + "document": "srd", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Diamond dust worth 100 gp, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_storm-of-vengeance", + "fields": { + "name": "Storm of Vengeance", + "desc": "A churning storm cloud forms, centered on a point you can see and spreading to a radius of 360 feet. Lightning flashes in the area, thunder booms, and strong winds roar. Each creature under the cloud (no more than 5,000 feet beneath the cloud) when it appears must make a constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 5 minutes. Each round you maintain concentration on this spell, the storm produces additional effects on your turn.\n\n**Round 2.** Acidic rain falls from the cloud. Each creature and object under the cloud takes 1d6 acid damage.\n\n**Round 3.** You call six bolts of lightning from the cloud to strike six creatures or objects of your choice beneath the cloud. A given creature or object can't be struck by more than one bolt. A struck creature must make a dexterity saving throw. The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**Round 4.** Hailstones rain down from the cloud. Each creature under the cloud takes 2d6 bludgeoning damage.\n\n**Round 5-10.** Gusts and freezing rain assail the area under the cloud. The area becomes difficult terrain and is heavily obscured. Each creature there takes 1d6 cold damage. Ranged weapon attacks in the area are impossible. The wind and rain count as a severe distraction for the purposes of maintaining concentration on spells. Finally, gusts of strong wind (ranging from 20 to 50 miles per hour) automatically disperse fog, mists, and similar phenomena in the area, whether mundane or magical.", + "document": "srd", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "Sight", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "thunder" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_suggestion", + "fields": { + "name": "Suggestion", + "desc": "You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell. The target must make a wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do. You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed. If you or any of your companions damage the target, the spell ends.", + "document": "srd", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "A snake's tongue and either a bit of honeycomb or a drop of sweet oil.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_sunbeam", + "fields": { + "name": "Sunbeam", + "desc": "A beam of brilliant light flashes out from your hand in a 5-foot-wide, 60-foot-long line. Each creature in the line must make a constitution saving throw. On a failed save, a creature takes 6d8 radiant damage and is blinded until your next turn. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw. You can create a new line of radiance as your action on any turn until the spell ends. For the duration, a mote of brilliant radiance shines in your hand. It sheds bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A magnifying glass.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "radiant" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_sunburst", + "fields": { + "name": "Sunburst", + "desc": "Brilliant sunlight flashes in a 60-foot radius centered on a point you choose within range. Each creature in that light must make a constitution saving throw. On a failed save, a creature takes 12d6 radiant damage and is blinded for 1 minute. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw. A creature blinded by this spell makes another constitution saving throw at the end of each of its turns. On a successful save, it is no longer blinded. This spell dispels any darkness in its area that was created by a spell.", + "document": "srd", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Fire and a piece of sunstone.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "12d6", + "damage_types": [ + "radiant" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_symbol", + "fields": { + "name": "Symbol", + "desc": "When you cast this spell, you inscribe a harmful glyph either on a surface (such as a section of floor, a wall, or a table) or within an object that can be closed to conceal the glyph (such as a book, a scroll, or a treasure chest). If you choose a surface, the glyph can cover an area of the surface no larger than 10 feet in diameter. If you choose an object, that object must remain in its place; if the object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered. The glyph is nearly invisible, requiring an Intelligence (Investigation) check against your spell save DC to find it. You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or stepping on the glyph, removing another object covering it, approaching within a certain distance of it, or manipulating the object that holds it. For glyphs inscribed within an object, the most common triggers are opening the object, approaching within a certain distance of it, or seeing or reading the glyph. You can further refine the trigger so the spell is activated only under certain circumstances or according to a creature's physical characteristics (such as height or weight), or physical kind (for example, the ward could be set to affect hags or shapechangers). You can also specify creatures that don't trigger the glyph, such as those who say a certain password. When you inscribe the glyph, choose one of the options below for its effect. Once triggered, the glyph glows, filling a 60-foot-radius sphere with dim light for 10 minutes, after which time the spell ends. Each creature in the sphere when the glyph activates is targeted by its effect, as is a creature that enters the sphere for the first time on a turn or ends its turn there.\n\n**Death.** Each target must make a constitution saving throw, taking 10d 10 necrotic damage on a failed save, or half as much damage on a successful save\n\n **Discord.** Each target must make a constitution saving throw. On a failed save, a target bickers and argues with other creatures for 1 minute. During this time, it is incapable of meaningful communication and has disadvantage on attack rolls and ability checks.\n\n**Fear.** Each target must make a wisdom saving throw and becomes frightened for 1 minute on a failed save. While frightened, the target drops whatever it is holding and must move at least 30 feet away from the glyph on each of its turns, if able.\n\n**Hopelessness.** Each target must make a charisma saving throw. On a failed save, the target is overwhelmed with despair for 1 minute. During this time, it can't attack or target any creature with harmful abilities, spells, or other magical effects.\n\n**Insanity.** Each target must make an intelligence saving throw. On a failed save, the target is driven insane for 1 minute. An insane creature can't take actions, can't understand what other creatures say, can't read, and speaks only in gibberish. The DM controls its movement, which is erratic.\n\n**Pain.** Each target must make a constitution saving throw and becomes incapacitated with excruciating pain for 1 minute on a failed save.\n\n**Sleep.** Each target must make a wisdom saving throw and falls unconscious for 10 minutes on a failed save. A creature awakens if it takes damage or if someone uses an action to shake or slap it awake.\n\n**Stunning.** Each target must make a wisdom saving throw and becomes stunned for 1 minute on a failed save.", + "document": "srd", + "level": 7, + "school": "abjuration", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Mercury, phosphorus, and powdered diamond and opal with a total value of at least 1,000 gp, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled or triggered", + "shape_type": "sphere", + "shape_magnitude": 60, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_telekinesis", + "fields": { + "name": "Telekinesis", + "desc": "You gain the ability to move or manipulate creatures or objects by thought. When you cast the spell, and as your action each round for the duration, you can exert your will on one creature or object that you can see within range, causing the appropriate effect below. You can affect the same target round after round, or choose a new one at any time. If you switch targets, the prior target is no longer affected by the spell.\n\n**Creature.** You can try to move a Huge or smaller creature. Make an ability check with your spellcasting ability contested by the creature's Strength check. If you win the contest, you move the creature up to 30 feet in any direction, including upward but not beyond the range of this spell. Until the end of your next turn, the creature is restrained in your telekinetic grip. A creature lifted upward is suspended in mid-air. On subsequent rounds, you can use your action to attempt to maintain your telekinetic grip on the creature by repeating the contest.\n\n**Object.** You can try to move an object that weighs up to 1,000 pounds. If the object isn't being worn or carried, you automatically move it up to 30 feet in any direction, but not beyond the range of this spell. If the object is worn or carried by a creature, you must make an ability check with your spellcasting ability contested by that creature's Strength check. If you succeed, you pull the object away from that creature and can move it up to 30 feet in any direction but not beyond the range of this spell. You can exert fine control on objects with your telekinetic grip, such as manipulating a simple tool, opening a door or a container, stowing or retrieving an item from an open container, or pouring the contents from a vial.", + "document": "srd", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_telepathic-bond", + "fields": { + "name": "Telepathic Bond", + "desc": "You forge a telepathic link among up to eight willing creatures of your choice within range, psychically linking each creature to all the others for the duration. Creatures with Intelligence scores of 2 or less aren't affected by this spell. Until the spell ends, the targets can communicate telepathically through the bond whether or not they have a common language. The communication is possible over any distance, though it can't extend to other planes of existence.", + "document": "srd", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Pieces of eggshell from two different kinds of creatures", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_teleport", + "fields": { + "name": "Teleport", + "desc": "This spell instantly transports you and up to eight willing creatures of your choice that you can see within range, or a single object that you can see within range, to a destination you select. If you target an object, it must be able to fit entirely inside a 10-foot cube, and it can't be held or carried by an unwilling creature. The destination you choose must be known to you, and it must be on the same plane of existence as you. Your familiarity with the destination determines whether you arrive there successfully. The DM rolls d100 and consults the table.\n\n**Familiarity.** \"Permanent circle\" means a permanent teleportation circle whose sigil sequence you know. \"Associated object\" means that you possess an object taken from the desired destination within the last six months, such as a book from a wizard's library, bed linen from a royal suite, or a chunk of marble from a lich's secret tomb. \"Very familiar\" is a place you have been very often, a place you have carefully studied, or a place you can see when you cast the spell. \"Seen casually\" is someplace you have seen more than once but with which you aren't very familiar. \"Viewed once\" is a place you have seen once, possibly using magic. \"Description\" is a place whose location and appearance you know through someone else's description, perhaps from a map. \"False destination\" is a place that doesn't exist. Perhaps you tried to scry an enemy's sanctum but instead viewed an illusion, or you are attempting to teleport to a familiar location that no longer exists.\n\n**On Target.** You and your group (or the target object) appear where you want to.\n\n**Off Target.** You and your group (or the target object) appear a random distance away from the destination in a random direction. Distance off target is 1d10 × 1d10 percent of the distance that was to be traveled. For example, if you tried to travel 120 miles, landed off target, and rolled a 5 and 3 on the two d10s, then you would be off target by 15 percent, or 18 miles. The GM determines the direction off target randomly by rolling a d8 and designating 1 as north, 2 as northeast, 3 as east, and so on around the points of the compass. If you were teleporting to a coastal city and wound up 18 miles out at sea, you could be in trouble.\n\n**Similar Area.** You and your group (or the target object) wind up in a different area that's visually or thematically similar to the target area. If you are heading for your home laboratory, for example, you might wind up in another wizard's laboratory or in an alchemical supply shop that has many of the same tools and implements as your laboratory. Generally, you appear in the closest similar place, but since the spell has no range limit, you could conceivably wind up anywhere on the plane.\n\n**Mishap.** The spell's unpredictable magic results in a difficult journey. Each teleporting creature (or the target object) takes 3d10 force damage, and the GM rerolls on the table to see where you wind up (multiple mishaps can occur, dealing damage each time).", + "document": "srd", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d10", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_teleportation-circle", + "fields": { + "name": "Teleportation Circle", + "desc": "As you cast the spell, you draw a 10-foot-diameter circle on the ground inscribed with sigils that link your location to a permanent teleportation circle of your choice whose sigil sequence you know and that is on the same plane of existence as you. A shimmering portal opens within the circle you drew and remains open until the end of your next turn. Any creature that enters the portal instantly appears within 5 feet of the destination circle or in the nearest unoccupied space if that space is occupied. Many major temples, guilds, and other important places have permanent teleportation circles inscribed somewhere within their confines. Each such circle includes a unique sigil sequence-a string of magical runes arranged in a particular pattern. When you first gain the ability to cast this spell, you learn the sigil sequences for two destinations on the Material Plane, determined by the DM. You can learn additional sigil sequences during your adventures. You can commit a new sigil sequence to memory after studying it for 1 minute. You can create a permanent teleportation circle by casting this spell in the same location every day for one year. You need not use the circle to teleport when you cast the spell in this way.", + "document": "srd", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "Rare chalks and inks infused with precious gems with 50 gp, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_thaumaturgy", + "fields": { + "name": "Thaumaturgy", + "desc": "You manifest a minor wonder, a sign of supernatural power, within range. You create one of the following magical effects within range. \n- Your voice booms up to three times as loud as normal for 1 minute. \n- You cause flames to flicker, brighten, dim, or change color for 1 minute. \n- You cause harmless tremors in the ground for 1 minute. \n- You create an instantaneous sound that originates from a point of your choice within range, such as a rumble of thunder, the cry of a raven, or ominous whispers. \n- You instantaneously cause an unlocked door or window to fly open or slam shut. \n- You alter the appearance of your eyes for 1 minute. \nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.", + "document": "srd", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_thunderwave", + "fields": { + "name": "Thunderwave", + "desc": "A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed. In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 15, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_time-stop", + "fields": { + "name": "Time Stop", + "desc": "You briefly stop the flow of time for everyone but yourself. No time passes for other creatures, while you take 1d4 + 1 turns in a row, during which you can use actions and move as normal. This spell ends if one of the actions you use during this period, or any effects that you create during this period, affects a creature other than you or an object being worn or carried by someone other than you. In addition, the spell ends if you move to a place more than 1,000 feet from the location where you cast it.", + "document": "srd", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_tiny-hut", + "fields": { + "name": "Tiny Hut", + "desc": "A 10-foot-radius immobile dome of force springs into existence around and above you and remains stationary for the duration. The spell ends if you leave its area. Nine creatures of Medium size or smaller can fit inside the dome with you. The spell fails if its area includes a larger creature or more than nine creatures. Creatures and objects within the dome when you cast this spell can move through it freely. All other creatures and objects are barred from passing through it. Spells and other magical effects can't extend through the dome or be cast through it. The atmosphere inside the space is comfortable and dry, regardless of the weather outside. Until the spell ends, you can command the interior to become dimly lit or dark. The dome is opaque from the outside, of any color you choose, but it is transparent from the inside.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small crystal bead.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_tongues", + "fields": { + "name": "Tongues", + "desc": "This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.", + "document": "srd", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "A small clay model of a ziggurat.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_transport-via-plants", + "fields": { + "name": "Transport via Plants", + "desc": "This spell creates a magical link between a Large or larger inanimate plant within range and another plant, at any distance, on the same plane of existence. You must have seen or touched the destination plant at least once before. For the duration, any creature can step into the target plant and exit from the destination plant by using 5 feet of movement.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_tree-stride", + "fields": { + "name": "Tree Stride", + "desc": "You gain the ability to enter a tree and move from inside it to inside another tree of the same kind within 500 feet. Both trees must be living and at least the same size as you. You must use 5 feet of movement to enter a tree. You instantly know the location of all other trees of the same kind within 500 feet and, as part of the move used to enter the tree, can either pass into one of those trees or step out of the tree you're in. You appear in a spot of your choice within 5 feet of the destination tree, using another 5 feet of movement. If you have no movement left, you appear within 5 feet of the tree you entered. You can use this transportation ability once per round for the duration. You must end each turn outside a tree.", + "document": "srd", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_true-polymorph", + "fields": { + "name": "True Polymorph", + "desc": "Choose one creature or nonmagical object that you can see within range. You transform the creature into a different creature, the creature into an object, or the object into a creature (the object must be neither worn nor carried by another creature). The transformation lasts for the duration, or until the target drops to 0 hit points or dies. If you concentrate on this spell for the full duration, the transformation lasts until it is dispelled. This spell has no effect on a shapechanger or a creature with 0 hit points. An unwilling creature can make a Wisdom saving throw, and if it succeeds, it isn't affected by this spell.\n\n**Creature into Creature.** If you turn a creature into another kind of creature, the new form can be any kind you choose whose challenge rating is equal to or less than the target's (or its level, if the target doesn't have a challenge rating). The target's game statistics, including mental ability scores, are replaced by the statistics of the new form. It retains its alignment and personality. The target assumes the hit points of its new form, and when it reverts to its normal form, the creature returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak, cast spells, or take any other action that requires hands or speech unless its new form is capable of such actions. The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its equipment.\n\n**Object into Creature.** You can turn an object into any kind of creature, as long as the creature's size is no larger than the object's size and the creature's challenge rating is 9 or lower. The creature is friendly to you and your companions. It acts on each of your turns. You decide what action it takes and how it moves. The DM has the creature's statistics and resolves all of its actions and movement. If the spell becomes permanent, you no longer control the creature. It might remain friendly to you, depending on how you have treated it.\n\n **Creature into Object.** If you turn a creature into an object, it transforms along with whatever it is wearing and carrying into that form. The creature's statistics become those of the object, and the creature has no memory of time spent in this form, after the spell ends and it returns to its normal form.", + "document": "srd", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of mercury, a dollop of gum arabic, and a wisp of smoke.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_true-resurrection", + "fields": { + "name": "True Resurrection", + "desc": "You touch a creature that has been dead for no longer than 200 years and that died for any reason except old age. If the creature's soul is free and willing, the creature is restored to life with all its hit points. This spell closes all wounds, neutralizes any poison, cures all diseases, and lifts any curses affecting the creature when it died. The spell replaces damaged or missing organs and limbs. The spell can even provide a new body if the original no longer exists, in which case you must speak the creature's name. The creature then appears in an unoccupied space you choose within 10 feet of you.", + "document": "srd", + "level": 9, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A sprinkle of holy water and diamonds worth at least 25,000gp, which the spell consumes.", + "material_cost": "25000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_true-seeing", + "fields": { + "name": "True Seeing", + "desc": "This spell gives the willing creature you touch the ability to see things as they actually are. For the duration, the creature has truesight, notices secret doors hidden by magic, and can see into the Ethereal Plane, all out to a range of 120 feet.", + "document": "srd", + "level": 6, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An ointment for the eyes that costs 25gp; is made from mushroom powder, saffron, and fat; and is consumed by the spell.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_true-strike", + "fields": { + "name": "True Strike", + "desc": "You extend your hand and point a finger at a target in range. Your magic grants you a brief insight into the target's defenses. On your next turn, you gain advantage on your first attack roll against the target, provided that this spell hasn't ended.", + "document": "srd", + "level": 0, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_unseen-servant", + "fields": { + "name": "Unseen Servant", + "desc": "This spell creates an invisible, mindless, shapeless force that performs simple tasks at your command until the spell ends. The servant springs into existence in an unoccupied space on the ground within range. It has AC 10, 1 hit point, and a Strength of 2, and it can't attack. If it drops to 0 hit points, the spell ends. Once on each of your turns as a bonus action, you can mentally command the servant to move up to 15 feet and interact with an object. The servant can perform simple tasks that a human servant could do, such as fetching things, cleaning, mending, folding clothes, lighting fires, serving food, and pouring wind. Once you give the command, the servant performs the task to the best of its ability until it completes the task, then waits for your next command. If you command the servant to perform a task that would move it more than 60 feet away from you, the spell ends.", + "document": "srd", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A piece of string and a bit of wood.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_vampiric-touch", + "fields": { + "name": "Vampiric Touch", + "desc": "The touch of your shadow-wreathed hand can siphon life force from others to heal your wounds. Make a melee spell attack against a creature within your reach. On a hit, the target takes 3d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt. Until the spell ends, you can make the attack again on each of your turns as an action.", + "document": "srd", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "3d6", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_vicious-mockery", + "fields": { + "name": "Vicious Mockery", + "desc": "You unleash a string of insults laced with subtle enchantments at a creature you can see within range. If the target can hear you (though it need not understand you), it must succeed on a Wisdom saving throw or take 1d4 psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn.", + "document": "srd", + "level": 0, + "school": "enchantment", + "higher_level": "This spell's damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_wall-of-fire", + "fields": { + "name": "Wall of Fire", + "desc": "You create a wall of fire on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts for the duration. When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire damage, or half as much damage on a successful save. One side of the wall, selected by you when you cast this spell, deals 5d8 fire damage to each creature that ends its turn within 10 feet o f that side or inside the wall. A creature takes the same damage when it enters the wall for the first time on a turn or ends its turn there. The other side o f the wall deals no damage. The other side of the wall deals no damage.", + "document": "srd", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a level spell slot 5 or more, the damage of the spell increases by 1d8 for each level of higher spell slot to 4.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small piece of phosphorus.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_wall-of-force", + "fields": { + "name": "Wall of Force", + "desc": "An invisible wall of force springs into existence at a point you choose within range. The wall appears in any orientation you choose, as a horizontal or vertical barrier or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-by-10-foot panels. Each panel must be contiguous with another panel. In any form, the wall is 1/4 inch thick. It lasts for the duration. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice which side). Nothing can physically pass through the wall. It is immune to all damage and can't be dispelled by dispel magic. A disintegrate spell destroys the wall instantly, however. The wall also extends into the Ethereal Plane, blocking ethereal travel through the wall.", + "document": "srd", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of powder made by crushing a clear gemstone.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 10, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_wall-of-ice", + "fields": { + "name": "Wall of Ice", + "desc": "You create a wall of ice on a solid surface within range. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-square panels. Each panel must be contiguous with another panel. In any form, the wall is 1 foot thick and lasts for the duration. If the wall cuts through a creature's space when it appears, the creature within its area is pushed to one side of the wall and must make a dexterity saving throw. On a failed save, the creature takes 10d6 cold damage, or half as much damage on a successful save. The wall is an object that can be damaged and thus breached. It has AC 12 and 30 hit points per 10-foot section, and it is vulnerable to fire damage. Reducing a 10-foot section of wall to 0 hit points destroys it and leaves behind a sheet of frigid air in the space the wall occupied. A creature moving through the sheet of frigid air for the first time on a turn must make a constitution saving throw. That creature takes 5d6 cold damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage the wall deals when it appears increases by 2d6, and the damage from passing through the sheet of frigid air increases by 1d6, for each slot level above 6th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small piece of quartz.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "cold" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_wall-of-stone", + "fields": { + "name": "Wall of Stone", + "desc": "A nonmagical wall of solid stone springs into existence at a point you choose within range. The wall is 6 inches thick and is composed of ten 10-foot-by-10-foot panels. Each panel must be contiguous with at least one other panel. Alternatively, you can create 10-foot-by-20-foot panels that are only 3 inches thick. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice). If a creature would be surrounded on all sides by the wall (or the wall and another solid surface), that creature can make a dexterity saving throw. On a success, it can use its reaction to move up to its speed so that it is no longer enclosed by the wall. The wall can have any shape you desire, though it can't occupy the same space as a creature or object. The wall doesn't need to be vertical or rest on any firm foundation. It must, however, merge with and be solidly supported by existing stone. Thus, you can use this spell to bridge a chasm or create a ramp. If you create a span greater than 20 feet in length, you must halve the size of each panel to create supports. You can crudely shape the wall to create crenellations, battlements, and so on. The wall is an object made of stone that can be damaged and thus breached. Each panel has AC 15 and 30 hit points per inch of thickness. Reducing a panel to 0 hit points destroys it and might cause connected panels to collapse at the DM's discretion. If you maintain your concentration on this spell for its whole duration, the wall becomes permanent and can't be dispelled. Otherwise, the wall disappears when the spell ends.", + "document": "srd", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small block of granite.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_wall-of-thorns", + "fields": { + "name": "Wall of Thorns", + "desc": "You create a wall of tough, pliable, tangled brush bristling with needle-sharp thorns. The wall appears within range on a solid surface and lasts for the duration. You choose to make the wall up to 60 feet long, 10 feet high, and 5 feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and 5 feet thick. The wall blocks line of sight. When the wall appears, each creature within its area must make a dexterity saving throw. On a failed save, a creature takes 7d8 piercing damage, or half as much damage on a successful save. A creature can move through the wall, albeit slowly and painfully. For every 1 foot a creature moves through the wall, it must spend 4 feet of movement. Furthermore, the first time a creature enters the wall on a turn or ends its turn there, the creature must make a dexterity saving throw. It takes 7d8 slashing damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, both types of damage increase by 1d8 for each slot level above 6th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A handful of thorns.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "7d8", + "damage_types": [ + "piercing" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_warding-bond", + "fields": { + "name": "Warding Bond", + "desc": "This spell wards a willing creature you touch and creates a mystic connection between you and the target until the spell ends. While the target is within 60 feet of you, it gains a +1 bonus to AC and saving throws, and it has resistance to all damage. Also, each time it takes damage, you take the same amount of damage. The spell ends if you drop to 0 hit points or if you and the target become separated by more than 60 feet. It also ends if the spell is cast again on either of the connected creatures. You can also dismiss the spell as an action.", + "document": "srd", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pair of platinum rings worth at least 50gp each, which you and the target must wear for the duration.", + "material_cost": "50.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_water-breathing", + "fields": { + "name": "Water Breathing", + "desc": "This spell gives a maximum of ten willing creatures within range and you can see, the ability to breathe underwater until the end of its term. Affected creatures also retain their normal breathing pattern.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A short piece of reed or straw.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_water-walk", + "fields": { + "name": "Water Walk", + "desc": "This spell grants the ability to move across any liquid surface-such as water, acid, mud, snow, quicksand, or lava-as if it were harmless solid ground (creatures crossing molten lava can still take damage from the heat). Up to ten willing creatures you can see within range gain this ability for the duration. If you target a creature submerged in a liquid, the spell carries the target to the surface of the liquid at a rate of 60 feet per round.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_web", + "fields": { + "name": "Web", + "desc": "You conjure a mass of thick, sticky webbing at a point of your choice within range. The webs fill a 20-foot cube from that point for the duration. The webs are difficult terrain and lightly obscure their area. If the webs aren't anchored between two solid masses (such as walls or trees) or layered across a floor, wall, or ceiling, the conjured web collapses on itself, and the spell ends at the start of your next turn. Webs layered over a flat surface have a depth of 5 feet. Each creature that starts its turn in the webs or that enters them during its turn must make a dexterity saving throw. On a failed save, the creature is restrained as long as it remains in the webs or until it breaks free. A creature restrained by the webs can use its action to make a Strength check against your spell save DC. If it succeeds, it is no longer restrained. The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", + "document": "srd", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of spiderweb.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_weird", + "fields": { + "name": "Weird", + "desc": "Drawing on the deepest fears of a group of creatures, you create illusory creatures in their minds, visible only to them. Each creature in a 30-foot-radius sphere centered on a point of your choice within range must make a wisdom saving throw. On a failed save, a creature becomes frightened for the duration. The illusion calls on the creature's deepest fears, manifesting its worst nightmares as an implacable threat. At the start of each of the frightened creature's turns, it must succeed on a wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends for that creature.", + "document": "srd", + "level": 9, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_wind-walk", + "fields": { + "name": "Wind Walk", + "desc": "You and up to ten willing creatures you can see within range assume a gaseous form for the duration, appearing as wisps of cloud. While in this cloud form, a creature has a flying speed of 300 feet and has resistance to damage from nonmagical weapons. The only actions a creature can take in this form are the Dash action or to revert to its normal form. Reverting takes 1 minute, during which time a creature is incapacitated and can't move. Until the spell ends, a creature can revert to cloud form, which also requires the 1-minute transformation. If a creature is in cloud form and flying when the effect ends, the creature descends 60 feet per round for 1 minute until it lands, which it does safely. If it can't land after 1 minute, the creature falls the remaining distance.", + "document": "srd", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Fire and holy water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_wind-wall", + "fields": { + "name": "Wind Wall", + "desc": "A wall of strong wind rises from the ground at a point you choose within range. You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You can shape the wall in any way you choose so long as it makes one continuous path along the ground. The wall lasts for the duration. When the wall appears, each creature within its area must make a strength saving throw. A creature takes 3d8 bludgeoning damage on a failed save, or half as much damage on a successful one. The strong wind keeps fog, smoke, and other gases at bay. Small or smaller flying creatures or objects can't pass through the wall. Loose, lightweight materials brought into the wall fly upward. Arrows, bolts, and other ordinary projectiles launched at targets behind the wall are deflected upward and automatically miss. (Boulders hurled by giants or siege engines, and similar projectiles, are unaffected.) Creatures in gaseous form can't pass through it.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny fan and a feather of exotic origin.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } + }, + { + "model": "api_v2.spell", + "pk": "srd_wish", + "fields": { + "name": "Wish", + "desc": "Wish is the mightiest spell a mortal creature can cast. By simply speaking aloud, you can alter the very foundations of reality in accord with your desires. The basic use of this spell is to duplicate any other spell of 8th level or lower. You don't need to meet any requirements in that spell, including costly components. The spell simply takes effect. Alternatively, you can create one of the following effects of your choice: \n- You create one object of up to 25,000 gp in value that isn't a magic item. The object can be no more than 300 feet in any dimension, and it appears in an unoccupied space you can see on the ground. \n- You allow up to twenty creatures that you can see to regain all hit points, and you end all effects on them described in the greater restoration spell. \n- You grant up to ten creatures you can see resistance to a damage type you choose. \n- You grant up to ten creatures you can see immunity to a single spell or other magical effect for 8 hours. For instance, you could make yourself and all your companions immune to a lich's life drain attack. \n- You undo a single recent event by forcing a reroll of any roll made within the last round (including your last turn). Reality reshapes itself to accommodate the new result. For example, a wish spell could undo an opponent's successful save, a foe's critical hit, or a friend's failed save. You can force the reroll to be made with advantage or disadvantage, and you can choose whether to use the reroll or the original roll. \nYou might be able to achieve something beyond the scope of the above examples. State your wish to the DM as precisely as possible. The DM has great latitude in ruling what occurs in such an instance; the greater the wish, the greater the likelihood that something goes wrong. This spell might simply fail, the effect you desire might only be partly achieved, or you might suffer some unforeseen consequence as a result of how you worded the wish. For example, wishing that a villain were dead might propel you forward in time to a period when that villain is no longer alive, effectively removing you from the game. Similarly, wishing for a legendary magic item or artifact might instantly transport you to the presence of the item's current owner. The stress of casting this spell to produce any effect other than duplicating another spell weakens you. After enduring that stress, each time you cast a spell until you finish a long rest, you take 1d10 necrotic damage per level of that spell. This damage can't be reduced or prevented in any way. In addition, your Strength drops to 3, if it isn't 3 or lower already, for 2d4 days. For each of those days that you spend resting and doing nothing more than light activity, your remaining recovery time decreases by 2 days. Finally, there is a 33 percent chance that you are unable to cast wish ever again if you suffer this stress.", + "document": "srd", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_word-of-recall", + "fields": { + "name": "Word of Recall", + "desc": "You and up to five willing creatures within 5 feet of you instantly teleport to a previously designated sanctuary. You and any creatures that teleport with you appear in the nearest unoccupied space to the spot you designated when you prepared your sanctuary (see below). If you cast this spell without first preparing a sanctuary, the spell has no effect. You must designate a sanctuary by casting this spell within a location, such as a temple, dedicated to or strongly linked to your deity. If you attempt to cast the spell in this manner in an area that isn't dedicated to your deity, the spell has no effect.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "5 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } + }, + { + "model": "api_v2.spell", + "pk": "srd_zone-of-truth", + "fields": { + "name": "Zone of Truth", + "desc": "You create a magical zone that guards against deception in a 15-foot-radius sphere centered on a point of your choice within range. Until the spell ends, a creature that enters the spell's area for the first time on a turn or starts its turn there must make a Charisma saving throw. On a failed save, a creature can't speak a deliberate lie while in the radius. You know whether each creature succeeds or fails on its saving throw. An affected creature is aware of the fate and can avoid answering questions she would normally have responded with a lie. Such a creature can remain evasive in his answers as they remain within the limits of truth.", + "document": "srd", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 15, + "concentration": false + } + } +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json b/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json index 5f8e4492..96e09fee 100644 --- a/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json +++ b/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json @@ -1,12518 +1,12518 @@ [ -{ - "model": "api_v2.spellcastingoption", - "pk": 5005, - "fields": { - "parent": "acid-arrow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5007, - "fields": { - "parent": "acid-arrow", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5008, - "fields": { - "parent": "acid-arrow", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5009, - "fields": { - "parent": "acid-arrow", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5010, - "fields": { - "parent": "acid-arrow", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5011, - "fields": { - "parent": "acid-arrow", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5012, - "fields": { - "parent": "acid-arrow", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5013, - "fields": { - "parent": "acid-arrow", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5014, - "fields": { - "parent": "acid-splash", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5015, - "fields": { - "parent": "acid-splash", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5016, - "fields": { - "parent": "acid-splash", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5017, - "fields": { - "parent": "acid-splash", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5018, - "fields": { - "parent": "acid-splash", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5019, - "fields": { - "parent": "acid-splash", - "type": "player_level_5", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5020, - "fields": { - "parent": "acid-splash", - "type": "player_level_6", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5021, - "fields": { - "parent": "acid-splash", - "type": "player_level_7", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5022, - "fields": { - "parent": "acid-splash", - "type": "player_level_8", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5023, - "fields": { - "parent": "acid-splash", - "type": "player_level_9", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5024, - "fields": { - "parent": "acid-splash", - "type": "player_level_10", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5025, - "fields": { - "parent": "acid-splash", - "type": "player_level_11", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5026, - "fields": { - "parent": "acid-splash", - "type": "player_level_12", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5027, - "fields": { - "parent": "acid-splash", - "type": "player_level_13", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5028, - "fields": { - "parent": "acid-splash", - "type": "player_level_14", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5029, - "fields": { - "parent": "acid-splash", - "type": "player_level_15", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5030, - "fields": { - "parent": "acid-splash", - "type": "player_level_16", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5031, - "fields": { - "parent": "acid-splash", - "type": "player_level_17", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5032, - "fields": { - "parent": "acid-splash", - "type": "player_level_18", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5033, - "fields": { - "parent": "acid-splash", - "type": "player_level_19", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5034, - "fields": { - "parent": "acid-splash", - "type": "player_level_20", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5035, - "fields": { - "parent": "aid", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5037, - "fields": { - "parent": "aid", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5038, - "fields": { - "parent": "aid", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5039, - "fields": { - "parent": "aid", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5040, - "fields": { - "parent": "aid", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5041, - "fields": { - "parent": "aid", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5042, - "fields": { - "parent": "aid", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5043, - "fields": { - "parent": "aid", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5044, - "fields": { - "parent": "alarm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5045, - "fields": { - "parent": "alarm", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5046, - "fields": { - "parent": "alter-self", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5047, - "fields": { - "parent": "animal-friendship", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5049, - "fields": { - "parent": "animal-friendship", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5050, - "fields": { - "parent": "animal-friendship", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5051, - "fields": { - "parent": "animal-friendship", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5052, - "fields": { - "parent": "animal-friendship", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5053, - "fields": { - "parent": "animal-friendship", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5054, - "fields": { - "parent": "animal-friendship", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5055, - "fields": { - "parent": "animal-friendship", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5056, - "fields": { - "parent": "animal-friendship", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5057, - "fields": { - "parent": "animal-messenger", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5058, - "fields": { - "parent": "animal-messenger", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5060, - "fields": { - "parent": "animal-messenger", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "3 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5061, - "fields": { - "parent": "animal-messenger", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "5 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5062, - "fields": { - "parent": "animal-messenger", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "7 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5063, - "fields": { - "parent": "animal-messenger", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "9 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5064, - "fields": { - "parent": "animal-messenger", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "11 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5065, - "fields": { - "parent": "animal-messenger", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "13 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5066, - "fields": { - "parent": "animal-messenger", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "15 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5067, - "fields": { - "parent": "animal-shapes", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5068, - "fields": { - "parent": "animate-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5070, - "fields": { - "parent": "animate-dead", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5071, - "fields": { - "parent": "animate-dead", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5072, - "fields": { - "parent": "animate-dead", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5073, - "fields": { - "parent": "animate-dead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5074, - "fields": { - "parent": "animate-dead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5075, - "fields": { - "parent": "animate-dead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5076, - "fields": { - "parent": "animate-objects", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5078, - "fields": { - "parent": "animate-objects", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5079, - "fields": { - "parent": "animate-objects", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5080, - "fields": { - "parent": "animate-objects", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5081, - "fields": { - "parent": "animate-objects", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5082, - "fields": { - "parent": "antilife-shell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5083, - "fields": { - "parent": "antimagic-field", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5084, - "fields": { - "parent": "antipathysympathy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5085, - "fields": { - "parent": "arcane-eye", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5086, - "fields": { - "parent": "arcane-hand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5088, - "fields": { - "parent": "arcane-hand", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5089, - "fields": { - "parent": "arcane-hand", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5090, - "fields": { - "parent": "arcane-hand", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5091, - "fields": { - "parent": "arcane-hand", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5092, - "fields": { - "parent": "arcane-lock", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5093, - "fields": { - "parent": "arcane-sword", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5094, - "fields": { - "parent": "arcanists-magic-aura", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5095, - "fields": { - "parent": "astral-projection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5096, - "fields": { - "parent": "augury", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5097, - "fields": { - "parent": "augury", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5098, - "fields": { - "parent": "awaken", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5099, - "fields": { - "parent": "bane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5101, - "fields": { - "parent": "bane", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5102, - "fields": { - "parent": "bane", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5103, - "fields": { - "parent": "bane", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5104, - "fields": { - "parent": "bane", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5105, - "fields": { - "parent": "bane", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5106, - "fields": { - "parent": "bane", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5107, - "fields": { - "parent": "bane", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5108, - "fields": { - "parent": "bane", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 11, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5109, - "fields": { - "parent": "banishment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5111, - "fields": { - "parent": "banishment", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5112, - "fields": { - "parent": "banishment", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5113, - "fields": { - "parent": "banishment", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5114, - "fields": { - "parent": "banishment", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5115, - "fields": { - "parent": "banishment", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5116, - "fields": { - "parent": "barkskin", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5117, - "fields": { - "parent": "beacon-of-hope", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5118, - "fields": { - "parent": "bestow-curse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5120, - "fields": { - "parent": "bestow-curse", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5121, - "fields": { - "parent": "bestow-curse", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5122, - "fields": { - "parent": "bestow-curse", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5123, - "fields": { - "parent": "bestow-curse", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5124, - "fields": { - "parent": "bestow-curse", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5125, - "fields": { - "parent": "bestow-curse", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5126, - "fields": { - "parent": "black-tentacles", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5127, - "fields": { - "parent": "blade-barrier", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5128, - "fields": { - "parent": "bless", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5130, - "fields": { - "parent": "bless", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5131, - "fields": { - "parent": "bless", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5132, - "fields": { - "parent": "bless", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5133, - "fields": { - "parent": "bless", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5134, - "fields": { - "parent": "bless", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5135, - "fields": { - "parent": "bless", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5136, - "fields": { - "parent": "bless", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5137, - "fields": { - "parent": "bless", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 11, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5138, - "fields": { - "parent": "blight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5140, - "fields": { - "parent": "blight", - "type": "slot_level_5", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5141, - "fields": { - "parent": "blight", - "type": "slot_level_6", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5142, - "fields": { - "parent": "blight", - "type": "slot_level_7", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5143, - "fields": { - "parent": "blight", - "type": "slot_level_8", - "damage_roll": "12d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5144, - "fields": { - "parent": "blight", - "type": "slot_level_9", - "damage_roll": "13d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5145, - "fields": { - "parent": "blindnessdeafness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5147, - "fields": { - "parent": "blindnessdeafness", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5148, - "fields": { - "parent": "blindnessdeafness", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5149, - "fields": { - "parent": "blindnessdeafness", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5150, - "fields": { - "parent": "blindnessdeafness", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5151, - "fields": { - "parent": "blindnessdeafness", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5152, - "fields": { - "parent": "blindnessdeafness", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5153, - "fields": { - "parent": "blindnessdeafness", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5154, - "fields": { - "parent": "blink", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5155, - "fields": { - "parent": "blur", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5156, - "fields": { - "parent": "branding-smite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5158, - "fields": { - "parent": "branding-smite", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5159, - "fields": { - "parent": "branding-smite", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5160, - "fields": { - "parent": "branding-smite", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5161, - "fields": { - "parent": "branding-smite", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5162, - "fields": { - "parent": "branding-smite", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5163, - "fields": { - "parent": "branding-smite", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5164, - "fields": { - "parent": "branding-smite", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5165, - "fields": { - "parent": "burning-hands", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5167, - "fields": { - "parent": "burning-hands", - "type": "slot_level_2", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5168, - "fields": { - "parent": "burning-hands", - "type": "slot_level_3", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5169, - "fields": { - "parent": "burning-hands", - "type": "slot_level_4", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5170, - "fields": { - "parent": "burning-hands", - "type": "slot_level_5", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5171, - "fields": { - "parent": "burning-hands", - "type": "slot_level_6", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5172, - "fields": { - "parent": "burning-hands", - "type": "slot_level_7", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5173, - "fields": { - "parent": "burning-hands", - "type": "slot_level_8", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5174, - "fields": { - "parent": "burning-hands", - "type": "slot_level_9", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5175, - "fields": { - "parent": "call-lightning", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5177, - "fields": { - "parent": "call-lightning", - "type": "slot_level_4", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5178, - "fields": { - "parent": "call-lightning", - "type": "slot_level_5", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5179, - "fields": { - "parent": "call-lightning", - "type": "slot_level_6", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5180, - "fields": { - "parent": "call-lightning", - "type": "slot_level_7", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5181, - "fields": { - "parent": "call-lightning", - "type": "slot_level_8", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5182, - "fields": { - "parent": "call-lightning", - "type": "slot_level_9", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5183, - "fields": { - "parent": "calm-emotions", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5184, - "fields": { - "parent": "chain-lightning", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5186, - "fields": { - "parent": "chain-lightning", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5187, - "fields": { - "parent": "chain-lightning", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5188, - "fields": { - "parent": "chain-lightning", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5189, - "fields": { - "parent": "charm-person", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5191, - "fields": { - "parent": "charm-person", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5192, - "fields": { - "parent": "charm-person", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5193, - "fields": { - "parent": "charm-person", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5194, - "fields": { - "parent": "charm-person", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5195, - "fields": { - "parent": "charm-person", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5196, - "fields": { - "parent": "charm-person", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5197, - "fields": { - "parent": "charm-person", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5198, - "fields": { - "parent": "charm-person", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5199, - "fields": { - "parent": "chill-touch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5200, - "fields": { - "parent": "chill-touch", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5201, - "fields": { - "parent": "chill-touch", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5202, - "fields": { - "parent": "chill-touch", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5203, - "fields": { - "parent": "chill-touch", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5204, - "fields": { - "parent": "chill-touch", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5205, - "fields": { - "parent": "chill-touch", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5206, - "fields": { - "parent": "chill-touch", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5207, - "fields": { - "parent": "chill-touch", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5208, - "fields": { - "parent": "chill-touch", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5209, - "fields": { - "parent": "chill-touch", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5210, - "fields": { - "parent": "chill-touch", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5211, - "fields": { - "parent": "chill-touch", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5212, - "fields": { - "parent": "chill-touch", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5213, - "fields": { - "parent": "chill-touch", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5214, - "fields": { - "parent": "chill-touch", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5215, - "fields": { - "parent": "chill-touch", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5216, - "fields": { - "parent": "chill-touch", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5217, - "fields": { - "parent": "chill-touch", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5218, - "fields": { - "parent": "chill-touch", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5219, - "fields": { - "parent": "chill-touch", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5220, - "fields": { - "parent": "circle-of-death", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5222, - "fields": { - "parent": "circle-of-death", - "type": "slot_level_7", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5223, - "fields": { - "parent": "circle-of-death", - "type": "slot_level_8", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5224, - "fields": { - "parent": "circle-of-death", - "type": "slot_level_9", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5225, - "fields": { - "parent": "clairvoyance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5226, - "fields": { - "parent": "clone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5227, - "fields": { - "parent": "cloudkill", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5229, - "fields": { - "parent": "cloudkill", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5230, - "fields": { - "parent": "cloudkill", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5231, - "fields": { - "parent": "cloudkill", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5232, - "fields": { - "parent": "cloudkill", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5233, - "fields": { - "parent": "color-spray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5235, - "fields": { - "parent": "color-spray", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5236, - "fields": { - "parent": "color-spray", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5237, - "fields": { - "parent": "color-spray", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5238, - "fields": { - "parent": "color-spray", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5239, - "fields": { - "parent": "color-spray", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5240, - "fields": { - "parent": "color-spray", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5241, - "fields": { - "parent": "color-spray", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5242, - "fields": { - "parent": "color-spray", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5243, - "fields": { - "parent": "command", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5245, - "fields": { - "parent": "command", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5246, - "fields": { - "parent": "command", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5247, - "fields": { - "parent": "command", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5248, - "fields": { - "parent": "command", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5249, - "fields": { - "parent": "command", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5250, - "fields": { - "parent": "command", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5251, - "fields": { - "parent": "command", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5252, - "fields": { - "parent": "command", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5253, - "fields": { - "parent": "commune", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5254, - "fields": { - "parent": "commune", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5255, - "fields": { - "parent": "commune-with-nature", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5256, - "fields": { - "parent": "commune-with-nature", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5257, - "fields": { - "parent": "comprehend-languages", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5258, - "fields": { - "parent": "comprehend-languages", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5259, - "fields": { - "parent": "compulsion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5260, - "fields": { - "parent": "cone-of-cold", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5262, - "fields": { - "parent": "cone-of-cold", - "type": "slot_level_6", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5263, - "fields": { - "parent": "cone-of-cold", - "type": "slot_level_7", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5264, - "fields": { - "parent": "cone-of-cold", - "type": "slot_level_8", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5265, - "fields": { - "parent": "cone-of-cold", - "type": "slot_level_9", - "damage_roll": "12d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5266, - "fields": { - "parent": "confusion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5268, - "fields": { - "parent": "confusion", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5269, - "fields": { - "parent": "confusion", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5270, - "fields": { - "parent": "confusion", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5271, - "fields": { - "parent": "confusion", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5272, - "fields": { - "parent": "confusion", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5273, - "fields": { - "parent": "conjure-animals", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5275, - "fields": { - "parent": "conjure-animals", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5276, - "fields": { - "parent": "conjure-animals", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5277, - "fields": { - "parent": "conjure-animals", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5278, - "fields": { - "parent": "conjure-animals", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5279, - "fields": { - "parent": "conjure-animals", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5280, - "fields": { - "parent": "conjure-animals", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5281, - "fields": { - "parent": "conjure-celestial", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5283, - "fields": { - "parent": "conjure-celestial", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5284, - "fields": { - "parent": "conjure-celestial", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5285, - "fields": { - "parent": "conjure-elemental", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5287, - "fields": { - "parent": "conjure-elemental", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5288, - "fields": { - "parent": "conjure-elemental", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5289, - "fields": { - "parent": "conjure-elemental", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5290, - "fields": { - "parent": "conjure-elemental", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5291, - "fields": { - "parent": "conjure-fey", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5293, - "fields": { - "parent": "conjure-fey", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5294, - "fields": { - "parent": "conjure-fey", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5295, - "fields": { - "parent": "conjure-fey", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5296, - "fields": { - "parent": "conjure-minor-elementals", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5298, - "fields": { - "parent": "conjure-minor-elementals", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5299, - "fields": { - "parent": "conjure-minor-elementals", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5300, - "fields": { - "parent": "conjure-minor-elementals", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5301, - "fields": { - "parent": "conjure-minor-elementals", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5302, - "fields": { - "parent": "conjure-minor-elementals", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5303, - "fields": { - "parent": "conjure-woodland-beings", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5305, - "fields": { - "parent": "conjure-woodland-beings", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5306, - "fields": { - "parent": "conjure-woodland-beings", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5307, - "fields": { - "parent": "conjure-woodland-beings", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5308, - "fields": { - "parent": "conjure-woodland-beings", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5309, - "fields": { - "parent": "conjure-woodland-beings", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5310, - "fields": { - "parent": "contact-other-plane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5311, - "fields": { - "parent": "contact-other-plane", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5312, - "fields": { - "parent": "contagion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5313, - "fields": { - "parent": "contingency", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5314, - "fields": { - "parent": "continual-flame", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5315, - "fields": { - "parent": "control-water", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5316, - "fields": { - "parent": "control-weather", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5317, - "fields": { - "parent": "counterspell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5319, - "fields": { - "parent": "counterspell", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5320, - "fields": { - "parent": "counterspell", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5321, - "fields": { - "parent": "counterspell", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5322, - "fields": { - "parent": "counterspell", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5323, - "fields": { - "parent": "counterspell", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5324, - "fields": { - "parent": "counterspell", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5325, - "fields": { - "parent": "create-food-and-water", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5326, - "fields": { - "parent": "create-or-destroy-water", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5328, - "fields": { - "parent": "create-or-destroy-water", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5329, - "fields": { - "parent": "create-or-destroy-water", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5330, - "fields": { - "parent": "create-or-destroy-water", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5331, - "fields": { - "parent": "create-or-destroy-water", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5332, - "fields": { - "parent": "create-or-destroy-water", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5333, - "fields": { - "parent": "create-or-destroy-water", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5334, - "fields": { - "parent": "create-or-destroy-water", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5335, - "fields": { - "parent": "create-or-destroy-water", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5336, - "fields": { - "parent": "create-undead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5338, - "fields": { - "parent": "create-undead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5339, - "fields": { - "parent": "create-undead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5340, - "fields": { - "parent": "create-undead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5341, - "fields": { - "parent": "creation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5343, - "fields": { - "parent": "creation", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5344, - "fields": { - "parent": "creation", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5345, - "fields": { - "parent": "creation", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5346, - "fields": { - "parent": "creation", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5347, - "fields": { - "parent": "cure-wounds", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5349, - "fields": { - "parent": "cure-wounds", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5350, - "fields": { - "parent": "cure-wounds", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5351, - "fields": { - "parent": "cure-wounds", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5352, - "fields": { - "parent": "cure-wounds", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5353, - "fields": { - "parent": "cure-wounds", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5354, - "fields": { - "parent": "cure-wounds", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5355, - "fields": { - "parent": "cure-wounds", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5356, - "fields": { - "parent": "cure-wounds", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5357, - "fields": { - "parent": "dancing-lights", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5358, - "fields": { - "parent": "darkness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5359, - "fields": { - "parent": "darkvision", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5360, - "fields": { - "parent": "daylight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5361, - "fields": { - "parent": "death-ward", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5362, - "fields": { - "parent": "delayed-blast-fireball", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5364, - "fields": { - "parent": "delayed-blast-fireball", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5365, - "fields": { - "parent": "delayed-blast-fireball", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5366, - "fields": { - "parent": "demiplane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5367, - "fields": { - "parent": "detect-evil-and-good", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5368, - "fields": { - "parent": "detect-magic", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5369, - "fields": { - "parent": "detect-magic", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5370, - "fields": { - "parent": "detect-poison-and-disease", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5371, - "fields": { - "parent": "detect-poison-and-disease", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5372, - "fields": { - "parent": "detect-thoughts", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5373, - "fields": { - "parent": "dimension-door", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5374, - "fields": { - "parent": "disguise-self", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5375, - "fields": { - "parent": "disintegrate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5377, - "fields": { - "parent": "disintegrate", - "type": "slot_level_7", - "damage_roll": "13d6+40", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5378, - "fields": { - "parent": "disintegrate", - "type": "slot_level_8", - "damage_roll": "16d6+40", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5379, - "fields": { - "parent": "disintegrate", - "type": "slot_level_9", - "damage_roll": "19d6+40", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5380, - "fields": { - "parent": "dispel-evil-and-good", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5381, - "fields": { - "parent": "dispel-magic", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5383, - "fields": { - "parent": "dispel-magic", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5384, - "fields": { - "parent": "dispel-magic", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5385, - "fields": { - "parent": "dispel-magic", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5386, - "fields": { - "parent": "dispel-magic", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5387, - "fields": { - "parent": "dispel-magic", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5388, - "fields": { - "parent": "dispel-magic", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5389, - "fields": { - "parent": "divination", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5390, - "fields": { - "parent": "divination", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5391, - "fields": { - "parent": "divine-favor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5392, - "fields": { - "parent": "divine-word", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5393, - "fields": { - "parent": "dominate-beast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5395, - "fields": { - "parent": "dominate-beast", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5396, - "fields": { - "parent": "dominate-beast", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5397, - "fields": { - "parent": "dominate-beast", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5398, - "fields": { - "parent": "dominate-beast", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5399, - "fields": { - "parent": "dominate-beast", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5400, - "fields": { - "parent": "dominate-monster", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5402, - "fields": { - "parent": "dominate-monster", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5403, - "fields": { - "parent": "dominate-person", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5405, - "fields": { - "parent": "dominate-person", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5406, - "fields": { - "parent": "dominate-person", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5407, - "fields": { - "parent": "dominate-person", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5408, - "fields": { - "parent": "dominate-person", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5409, - "fields": { - "parent": "dream", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5410, - "fields": { - "parent": "druidcraft", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5411, - "fields": { - "parent": "earthquake", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5412, - "fields": { - "parent": "eldritch-blast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5413, - "fields": { - "parent": "enhance-ability", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5415, - "fields": { - "parent": "enhance-ability", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5416, - "fields": { - "parent": "enhance-ability", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5417, - "fields": { - "parent": "enhance-ability", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5418, - "fields": { - "parent": "enhance-ability", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5419, - "fields": { - "parent": "enhance-ability", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5420, - "fields": { - "parent": "enhance-ability", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5421, - "fields": { - "parent": "enhance-ability", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5422, - "fields": { - "parent": "enlargereduce", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5423, - "fields": { - "parent": "entangle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5424, - "fields": { - "parent": "enthrall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5425, - "fields": { - "parent": "etherealness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5427, - "fields": { - "parent": "etherealness", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5428, - "fields": { - "parent": "etherealness", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5429, - "fields": { - "parent": "expeditious-retreat", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5430, - "fields": { - "parent": "eyebite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5431, - "fields": { - "parent": "fabricate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5432, - "fields": { - "parent": "faerie-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5433, - "fields": { - "parent": "faithful-hound", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5434, - "fields": { - "parent": "false-life", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5436, - "fields": { - "parent": "false-life", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5437, - "fields": { - "parent": "false-life", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5438, - "fields": { - "parent": "false-life", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5439, - "fields": { - "parent": "false-life", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5440, - "fields": { - "parent": "false-life", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5441, - "fields": { - "parent": "false-life", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5442, - "fields": { - "parent": "false-life", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5443, - "fields": { - "parent": "false-life", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5444, - "fields": { - "parent": "fear", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5445, - "fields": { - "parent": "feather-fall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5446, - "fields": { - "parent": "feeblemind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5447, - "fields": { - "parent": "find-familiar", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5448, - "fields": { - "parent": "find-familiar", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5449, - "fields": { - "parent": "find-steed", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5450, - "fields": { - "parent": "find-the-path", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5451, - "fields": { - "parent": "find-traps", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5452, - "fields": { - "parent": "finger-of-death", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5453, - "fields": { - "parent": "fire-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5454, - "fields": { - "parent": "fire-bolt", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5455, - "fields": { - "parent": "fire-bolt", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5456, - "fields": { - "parent": "fire-bolt", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5457, - "fields": { - "parent": "fire-bolt", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5458, - "fields": { - "parent": "fire-bolt", - "type": "player_level_5", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5459, - "fields": { - "parent": "fire-bolt", - "type": "player_level_6", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5460, - "fields": { - "parent": "fire-bolt", - "type": "player_level_7", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5461, - "fields": { - "parent": "fire-bolt", - "type": "player_level_8", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5462, - "fields": { - "parent": "fire-bolt", - "type": "player_level_9", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5463, - "fields": { - "parent": "fire-bolt", - "type": "player_level_10", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5464, - "fields": { - "parent": "fire-bolt", - "type": "player_level_11", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5465, - "fields": { - "parent": "fire-bolt", - "type": "player_level_12", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5466, - "fields": { - "parent": "fire-bolt", - "type": "player_level_13", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5467, - "fields": { - "parent": "fire-bolt", - "type": "player_level_14", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5468, - "fields": { - "parent": "fire-bolt", - "type": "player_level_15", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5469, - "fields": { - "parent": "fire-bolt", - "type": "player_level_16", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5470, - "fields": { - "parent": "fire-bolt", - "type": "player_level_17", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5471, - "fields": { - "parent": "fire-bolt", - "type": "player_level_18", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5472, - "fields": { - "parent": "fire-bolt", - "type": "player_level_19", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5473, - "fields": { - "parent": "fire-bolt", - "type": "player_level_20", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5474, - "fields": { - "parent": "fire-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5475, - "fields": { - "parent": "fire-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5476, - "fields": { - "parent": "fireball", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5478, - "fields": { - "parent": "fireball", - "type": "slot_level_4", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5479, - "fields": { - "parent": "fireball", - "type": "slot_level_5", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5480, - "fields": { - "parent": "fireball", - "type": "slot_level_6", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5481, - "fields": { - "parent": "fireball", - "type": "slot_level_7", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5482, - "fields": { - "parent": "fireball", - "type": "slot_level_8", - "damage_roll": "13d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5483, - "fields": { - "parent": "fireball", - "type": "slot_level_9", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5484, - "fields": { - "parent": "flame-blade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5486, - "fields": { - "parent": "flame-blade", - "type": "slot_level_3", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5487, - "fields": { - "parent": "flame-blade", - "type": "slot_level_4", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5488, - "fields": { - "parent": "flame-blade", - "type": "slot_level_5", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5489, - "fields": { - "parent": "flame-blade", - "type": "slot_level_6", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5490, - "fields": { - "parent": "flame-blade", - "type": "slot_level_7", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5491, - "fields": { - "parent": "flame-blade", - "type": "slot_level_8", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5492, - "fields": { - "parent": "flame-blade", - "type": "slot_level_9", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5493, - "fields": { - "parent": "flame-strike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5495, - "fields": { - "parent": "flame-strike", - "type": "slot_level_6", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5496, - "fields": { - "parent": "flame-strike", - "type": "slot_level_7", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5497, - "fields": { - "parent": "flame-strike", - "type": "slot_level_8", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5498, - "fields": { - "parent": "flame-strike", - "type": "slot_level_9", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5499, - "fields": { - "parent": "flaming-sphere", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5501, - "fields": { - "parent": "flaming-sphere", - "type": "slot_level_3", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5502, - "fields": { - "parent": "flaming-sphere", - "type": "slot_level_4", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5503, - "fields": { - "parent": "flaming-sphere", - "type": "slot_level_5", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5504, - "fields": { - "parent": "flaming-sphere", - "type": "slot_level_6", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5505, - "fields": { - "parent": "flaming-sphere", - "type": "slot_level_7", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5506, - "fields": { - "parent": "flaming-sphere", - "type": "slot_level_8", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5507, - "fields": { - "parent": "flaming-sphere", - "type": "slot_level_9", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5508, - "fields": { - "parent": "flesh-to-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5509, - "fields": { - "parent": "floating-disk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5510, - "fields": { - "parent": "floating-disk", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5511, - "fields": { - "parent": "fly", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5513, - "fields": { - "parent": "fly", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5514, - "fields": { - "parent": "fly", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5515, - "fields": { - "parent": "fly", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5516, - "fields": { - "parent": "fly", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5517, - "fields": { - "parent": "fly", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5518, - "fields": { - "parent": "fly", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5519, - "fields": { - "parent": "fog-cloud", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5521, - "fields": { - "parent": "fog-cloud", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5522, - "fields": { - "parent": "fog-cloud", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5523, - "fields": { - "parent": "fog-cloud", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5524, - "fields": { - "parent": "fog-cloud", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5525, - "fields": { - "parent": "fog-cloud", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5526, - "fields": { - "parent": "fog-cloud", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5527, - "fields": { - "parent": "fog-cloud", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5528, - "fields": { - "parent": "fog-cloud", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5529, - "fields": { - "parent": "forbiddance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5530, - "fields": { - "parent": "forbiddance", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5531, - "fields": { - "parent": "forcecage", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5532, - "fields": { - "parent": "foresight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5533, - "fields": { - "parent": "freedom-of-movement", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5534, - "fields": { - "parent": "freezing-sphere", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5536, - "fields": { - "parent": "freezing-sphere", - "type": "slot_level_7", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5537, - "fields": { - "parent": "freezing-sphere", - "type": "slot_level_8", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5538, - "fields": { - "parent": "freezing-sphere", - "type": "slot_level_9", - "damage_roll": "13d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5539, - "fields": { - "parent": "gaseous-form", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5540, - "fields": { - "parent": "gate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5541, - "fields": { - "parent": "geas", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5543, - "fields": { - "parent": "geas", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5544, - "fields": { - "parent": "geas", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5545, - "fields": { - "parent": "geas", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5546, - "fields": { - "parent": "geas", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5547, - "fields": { - "parent": "gentle-repose", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5548, - "fields": { - "parent": "gentle-repose", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5549, - "fields": { - "parent": "giant-insect", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5550, - "fields": { - "parent": "glibness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5551, - "fields": { - "parent": "globe-of-invulnerability", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5553, - "fields": { - "parent": "globe-of-invulnerability", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5554, - "fields": { - "parent": "globe-of-invulnerability", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5555, - "fields": { - "parent": "globe-of-invulnerability", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5556, - "fields": { - "parent": "glyph-of-warding", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5558, - "fields": { - "parent": "glyph-of-warding", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5559, - "fields": { - "parent": "glyph-of-warding", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5560, - "fields": { - "parent": "glyph-of-warding", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5561, - "fields": { - "parent": "glyph-of-warding", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5562, - "fields": { - "parent": "glyph-of-warding", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5563, - "fields": { - "parent": "glyph-of-warding", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5564, - "fields": { - "parent": "goodberry", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5565, - "fields": { - "parent": "grease", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5566, - "fields": { - "parent": "greater-invisibility", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5567, - "fields": { - "parent": "greater-restoration", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5568, - "fields": { - "parent": "guardian-of-faith", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5569, - "fields": { - "parent": "guards-and-wards", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5570, - "fields": { - "parent": "guidance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5571, - "fields": { - "parent": "guiding-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5573, - "fields": { - "parent": "guiding-bolt", - "type": "slot_level_2", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5574, - "fields": { - "parent": "guiding-bolt", - "type": "slot_level_3", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5575, - "fields": { - "parent": "guiding-bolt", - "type": "slot_level_4", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5576, - "fields": { - "parent": "guiding-bolt", - "type": "slot_level_5", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5577, - "fields": { - "parent": "guiding-bolt", - "type": "slot_level_6", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5578, - "fields": { - "parent": "guiding-bolt", - "type": "slot_level_7", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5579, - "fields": { - "parent": "guiding-bolt", - "type": "slot_level_8", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5580, - "fields": { - "parent": "guiding-bolt", - "type": "slot_level_9", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5581, - "fields": { - "parent": "gust-of-wind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5582, - "fields": { - "parent": "hallow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5583, - "fields": { - "parent": "hallucinatory-terrain", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5584, - "fields": { - "parent": "harm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5585, - "fields": { - "parent": "haste", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5586, - "fields": { - "parent": "heal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5588, - "fields": { - "parent": "heal", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5589, - "fields": { - "parent": "heal", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5590, - "fields": { - "parent": "heal", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5591, - "fields": { - "parent": "healing-word", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5593, - "fields": { - "parent": "healing-word", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5594, - "fields": { - "parent": "healing-word", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5595, - "fields": { - "parent": "healing-word", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5596, - "fields": { - "parent": "healing-word", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5597, - "fields": { - "parent": "healing-word", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5598, - "fields": { - "parent": "healing-word", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5599, - "fields": { - "parent": "healing-word", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5600, - "fields": { - "parent": "healing-word", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5601, - "fields": { - "parent": "heat-metal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5603, - "fields": { - "parent": "heat-metal", - "type": "slot_level_3", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5604, - "fields": { - "parent": "heat-metal", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5605, - "fields": { - "parent": "heat-metal", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5606, - "fields": { - "parent": "heat-metal", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5607, - "fields": { - "parent": "heat-metal", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5608, - "fields": { - "parent": "heat-metal", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5609, - "fields": { - "parent": "heat-metal", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5610, - "fields": { - "parent": "hellish-rebuke", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5612, - "fields": { - "parent": "hellish-rebuke", - "type": "slot_level_2", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5613, - "fields": { - "parent": "hellish-rebuke", - "type": "slot_level_3", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5614, - "fields": { - "parent": "hellish-rebuke", - "type": "slot_level_4", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5615, - "fields": { - "parent": "hellish-rebuke", - "type": "slot_level_5", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5616, - "fields": { - "parent": "hellish-rebuke", - "type": "slot_level_6", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5617, - "fields": { - "parent": "hellish-rebuke", - "type": "slot_level_7", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5618, - "fields": { - "parent": "hellish-rebuke", - "type": "slot_level_8", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5619, - "fields": { - "parent": "hellish-rebuke", - "type": "slot_level_9", - "damage_roll": "10d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5620, - "fields": { - "parent": "heroes-feast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5621, - "fields": { - "parent": "heroism", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5622, - "fields": { - "parent": "hideous-laughter", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5623, - "fields": { - "parent": "hold-monster", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5625, - "fields": { - "parent": "hold-monster", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5626, - "fields": { - "parent": "hold-monster", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5627, - "fields": { - "parent": "hold-monster", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5628, - "fields": { - "parent": "hold-monster", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5629, - "fields": { - "parent": "hold-person", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5631, - "fields": { - "parent": "hold-person", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5632, - "fields": { - "parent": "hold-person", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5633, - "fields": { - "parent": "hold-person", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5634, - "fields": { - "parent": "hold-person", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5635, - "fields": { - "parent": "hold-person", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5636, - "fields": { - "parent": "hold-person", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5637, - "fields": { - "parent": "hold-person", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5638, - "fields": { - "parent": "holy-aura", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5639, - "fields": { - "parent": "hunters-mark", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5641, - "fields": { - "parent": "hunters-mark", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5642, - "fields": { - "parent": "hunters-mark", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5643, - "fields": { - "parent": "hunters-mark", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5644, - "fields": { - "parent": "hunters-mark", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5645, - "fields": { - "parent": "hunters-mark", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5646, - "fields": { - "parent": "hunters-mark", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5647, - "fields": { - "parent": "hunters-mark", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5648, - "fields": { - "parent": "hunters-mark", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5649, - "fields": { - "parent": "hypnotic-pattern", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5650, - "fields": { - "parent": "ice-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5652, - "fields": { - "parent": "ice-storm", - "type": "slot_level_5", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5653, - "fields": { - "parent": "ice-storm", - "type": "slot_level_6", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5654, - "fields": { - "parent": "ice-storm", - "type": "slot_level_7", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5655, - "fields": { - "parent": "ice-storm", - "type": "slot_level_8", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5656, - "fields": { - "parent": "ice-storm", - "type": "slot_level_9", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5657, - "fields": { - "parent": "identify", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5658, - "fields": { - "parent": "identify", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5659, - "fields": { - "parent": "illusory-script", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5660, - "fields": { - "parent": "illusory-script", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5661, - "fields": { - "parent": "imprisonment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5662, - "fields": { - "parent": "incendiary-cloud", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5663, - "fields": { - "parent": "inflict-wounds", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5665, - "fields": { - "parent": "inflict-wounds", - "type": "slot_level_2", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5666, - "fields": { - "parent": "inflict-wounds", - "type": "slot_level_3", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5667, - "fields": { - "parent": "inflict-wounds", - "type": "slot_level_4", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5668, - "fields": { - "parent": "inflict-wounds", - "type": "slot_level_5", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5669, - "fields": { - "parent": "inflict-wounds", - "type": "slot_level_6", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5670, - "fields": { - "parent": "inflict-wounds", - "type": "slot_level_7", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5671, - "fields": { - "parent": "inflict-wounds", - "type": "slot_level_8", - "damage_roll": "10d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5672, - "fields": { - "parent": "inflict-wounds", - "type": "slot_level_9", - "damage_roll": "11d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5673, - "fields": { - "parent": "insect-plague", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5675, - "fields": { - "parent": "insect-plague", - "type": "slot_level_6", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5676, - "fields": { - "parent": "insect-plague", - "type": "slot_level_7", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5677, - "fields": { - "parent": "insect-plague", - "type": "slot_level_8", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5678, - "fields": { - "parent": "insect-plague", - "type": "slot_level_9", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5679, - "fields": { - "parent": "instant-summons", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5680, - "fields": { - "parent": "instant-summons", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5681, - "fields": { - "parent": "invisibility", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5683, - "fields": { - "parent": "invisibility", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5684, - "fields": { - "parent": "invisibility", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5685, - "fields": { - "parent": "invisibility", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5686, - "fields": { - "parent": "invisibility", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5687, - "fields": { - "parent": "invisibility", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5688, - "fields": { - "parent": "invisibility", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5689, - "fields": { - "parent": "invisibility", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5690, - "fields": { - "parent": "irresistible-dance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5691, - "fields": { - "parent": "jump", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5692, - "fields": { - "parent": "knock", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5693, - "fields": { - "parent": "legend-lore", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5694, - "fields": { - "parent": "lesser-restoration", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5695, - "fields": { - "parent": "levitate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5696, - "fields": { - "parent": "light", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5697, - "fields": { - "parent": "lightning-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5699, - "fields": { - "parent": "lightning-bolt", - "type": "slot_level_4", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5700, - "fields": { - "parent": "lightning-bolt", - "type": "slot_level_5", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5701, - "fields": { - "parent": "lightning-bolt", - "type": "slot_level_6", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5702, - "fields": { - "parent": "lightning-bolt", - "type": "slot_level_7", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5703, - "fields": { - "parent": "lightning-bolt", - "type": "slot_level_8", - "damage_roll": "13d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5704, - "fields": { - "parent": "lightning-bolt", - "type": "slot_level_9", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5705, - "fields": { - "parent": "locate-animals-or-plants", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5706, - "fields": { - "parent": "locate-animals-or-plants", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5707, - "fields": { - "parent": "locate-creature", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5708, - "fields": { - "parent": "locate-object", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5709, - "fields": { - "parent": "longstrider", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5711, - "fields": { - "parent": "longstrider", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5712, - "fields": { - "parent": "longstrider", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5713, - "fields": { - "parent": "longstrider", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5714, - "fields": { - "parent": "longstrider", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5715, - "fields": { - "parent": "longstrider", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5716, - "fields": { - "parent": "longstrider", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5717, - "fields": { - "parent": "longstrider", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5718, - "fields": { - "parent": "longstrider", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5719, - "fields": { - "parent": "mage-armor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5720, - "fields": { - "parent": "mage-hand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5721, - "fields": { - "parent": "magic-circle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5723, - "fields": { - "parent": "magic-circle", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5724, - "fields": { - "parent": "magic-circle", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5725, - "fields": { - "parent": "magic-circle", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5726, - "fields": { - "parent": "magic-circle", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5727, - "fields": { - "parent": "magic-circle", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5728, - "fields": { - "parent": "magic-circle", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5729, - "fields": { - "parent": "magic-jar", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5730, - "fields": { - "parent": "magic-missile", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5732, - "fields": { - "parent": "magic-missile", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5733, - "fields": { - "parent": "magic-missile", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5734, - "fields": { - "parent": "magic-missile", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5735, - "fields": { - "parent": "magic-missile", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5736, - "fields": { - "parent": "magic-missile", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5737, - "fields": { - "parent": "magic-missile", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5738, - "fields": { - "parent": "magic-missile", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5739, - "fields": { - "parent": "magic-missile", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5740, - "fields": { - "parent": "magic-mouth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5741, - "fields": { - "parent": "magic-mouth", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5742, - "fields": { - "parent": "magic-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5744, - "fields": { - "parent": "magic-weapon", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5745, - "fields": { - "parent": "magic-weapon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5746, - "fields": { - "parent": "magic-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5747, - "fields": { - "parent": "magic-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5748, - "fields": { - "parent": "magic-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5749, - "fields": { - "parent": "magic-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5750, - "fields": { - "parent": "magic-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5751, - "fields": { - "parent": "magnificent-mansion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5752, - "fields": { - "parent": "major-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5754, - "fields": { - "parent": "major-image", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5755, - "fields": { - "parent": "major-image", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5756, - "fields": { - "parent": "major-image", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5757, - "fields": { - "parent": "major-image", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5758, - "fields": { - "parent": "major-image", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5759, - "fields": { - "parent": "major-image", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5760, - "fields": { - "parent": "mass-cure-wounds", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5762, - "fields": { - "parent": "mass-cure-wounds", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5763, - "fields": { - "parent": "mass-cure-wounds", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5764, - "fields": { - "parent": "mass-cure-wounds", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5765, - "fields": { - "parent": "mass-cure-wounds", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5766, - "fields": { - "parent": "mass-heal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5767, - "fields": { - "parent": "mass-healing-word", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5769, - "fields": { - "parent": "mass-healing-word", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5770, - "fields": { - "parent": "mass-healing-word", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5771, - "fields": { - "parent": "mass-healing-word", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5772, - "fields": { - "parent": "mass-healing-word", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5773, - "fields": { - "parent": "mass-healing-word", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5774, - "fields": { - "parent": "mass-healing-word", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5775, - "fields": { - "parent": "mass-suggestion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5777, - "fields": { - "parent": "mass-suggestion", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "10 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5778, - "fields": { - "parent": "mass-suggestion", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "30 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5779, - "fields": { - "parent": "mass-suggestion", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "A year and a day", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5780, - "fields": { - "parent": "maze", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5781, - "fields": { - "parent": "meld-into-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5782, - "fields": { - "parent": "meld-into-stone", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5783, - "fields": { - "parent": "mending", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5784, - "fields": { - "parent": "message", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5785, - "fields": { - "parent": "meteor-swarm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5786, - "fields": { - "parent": "mind-blank", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5787, - "fields": { - "parent": "minor-illusion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5788, - "fields": { - "parent": "mirage-arcane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5789, - "fields": { - "parent": "mirror-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5790, - "fields": { - "parent": "mislead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5791, - "fields": { - "parent": "misty-step", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5792, - "fields": { - "parent": "modify-memory", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5794, - "fields": { - "parent": "modify-memory", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5795, - "fields": { - "parent": "modify-memory", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5796, - "fields": { - "parent": "modify-memory", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5797, - "fields": { - "parent": "modify-memory", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5798, - "fields": { - "parent": "moonbeam", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5800, - "fields": { - "parent": "moonbeam", - "type": "slot_level_3", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5801, - "fields": { - "parent": "moonbeam", - "type": "slot_level_4", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5802, - "fields": { - "parent": "moonbeam", - "type": "slot_level_5", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5803, - "fields": { - "parent": "moonbeam", - "type": "slot_level_6", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5804, - "fields": { - "parent": "moonbeam", - "type": "slot_level_7", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5805, - "fields": { - "parent": "moonbeam", - "type": "slot_level_8", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5806, - "fields": { - "parent": "moonbeam", - "type": "slot_level_9", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5807, - "fields": { - "parent": "move-earth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5808, - "fields": { - "parent": "nondetection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5809, - "fields": { - "parent": "pass-without-trace", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5810, - "fields": { - "parent": "passwall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5811, - "fields": { - "parent": "phantasmal-killer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5813, - "fields": { - "parent": "phantasmal-killer", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5814, - "fields": { - "parent": "phantasmal-killer", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5815, - "fields": { - "parent": "phantasmal-killer", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5816, - "fields": { - "parent": "phantasmal-killer", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5817, - "fields": { - "parent": "phantasmal-killer", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5818, - "fields": { - "parent": "phantom-steed", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5819, - "fields": { - "parent": "phantom-steed", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5820, - "fields": { - "parent": "planar-ally", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5821, - "fields": { - "parent": "planar-binding", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5823, - "fields": { - "parent": "planar-binding", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "10 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5824, - "fields": { - "parent": "planar-binding", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "30 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5825, - "fields": { - "parent": "planar-binding", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "180 days", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5826, - "fields": { - "parent": "planar-binding", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "A year and a day", - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5827, - "fields": { - "parent": "plane-shift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5828, - "fields": { - "parent": "plant-growth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5829, - "fields": { - "parent": "poison-spray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5830, - "fields": { - "parent": "poison-spray", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5831, - "fields": { - "parent": "poison-spray", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5832, - "fields": { - "parent": "poison-spray", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5833, - "fields": { - "parent": "poison-spray", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5834, - "fields": { - "parent": "poison-spray", - "type": "player_level_5", - "damage_roll": "2d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5835, - "fields": { - "parent": "poison-spray", - "type": "player_level_6", - "damage_roll": "2d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5836, - "fields": { - "parent": "poison-spray", - "type": "player_level_7", - "damage_roll": "2d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5837, - "fields": { - "parent": "poison-spray", - "type": "player_level_8", - "damage_roll": "2d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5838, - "fields": { - "parent": "poison-spray", - "type": "player_level_9", - "damage_roll": "2d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5839, - "fields": { - "parent": "poison-spray", - "type": "player_level_10", - "damage_roll": "2d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5840, - "fields": { - "parent": "poison-spray", - "type": "player_level_11", - "damage_roll": "3d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5841, - "fields": { - "parent": "poison-spray", - "type": "player_level_12", - "damage_roll": "3d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5842, - "fields": { - "parent": "poison-spray", - "type": "player_level_13", - "damage_roll": "3d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5843, - "fields": { - "parent": "poison-spray", - "type": "player_level_14", - "damage_roll": "3d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5844, - "fields": { - "parent": "poison-spray", - "type": "player_level_15", - "damage_roll": "3d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5845, - "fields": { - "parent": "poison-spray", - "type": "player_level_16", - "damage_roll": "3d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5846, - "fields": { - "parent": "poison-spray", - "type": "player_level_17", - "damage_roll": "4d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5847, - "fields": { - "parent": "poison-spray", - "type": "player_level_18", - "damage_roll": "4d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5848, - "fields": { - "parent": "poison-spray", - "type": "player_level_19", - "damage_roll": "4d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5849, - "fields": { - "parent": "poison-spray", - "type": "player_level_20", - "damage_roll": "4d12", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5850, - "fields": { - "parent": "polymorph", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5851, - "fields": { - "parent": "power-word-kill", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5852, - "fields": { - "parent": "power-word-stun", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5853, - "fields": { - "parent": "prayer-of-healing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5855, - "fields": { - "parent": "prayer-of-healing", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5856, - "fields": { - "parent": "prayer-of-healing", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5857, - "fields": { - "parent": "prayer-of-healing", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5858, - "fields": { - "parent": "prayer-of-healing", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5859, - "fields": { - "parent": "prayer-of-healing", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5860, - "fields": { - "parent": "prayer-of-healing", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5861, - "fields": { - "parent": "prayer-of-healing", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5862, - "fields": { - "parent": "prestidigitation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5863, - "fields": { - "parent": "prismatic-spray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5864, - "fields": { - "parent": "prismatic-wall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5865, - "fields": { - "parent": "private-sanctum", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5867, - "fields": { - "parent": "private-sanctum", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5868, - "fields": { - "parent": "private-sanctum", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5869, - "fields": { - "parent": "private-sanctum", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5870, - "fields": { - "parent": "private-sanctum", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5871, - "fields": { - "parent": "private-sanctum", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5872, - "fields": { - "parent": "produce-flame", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5873, - "fields": { - "parent": "produce-flame", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5874, - "fields": { - "parent": "produce-flame", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5875, - "fields": { - "parent": "produce-flame", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5876, - "fields": { - "parent": "produce-flame", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5877, - "fields": { - "parent": "produce-flame", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5878, - "fields": { - "parent": "produce-flame", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5879, - "fields": { - "parent": "produce-flame", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5880, - "fields": { - "parent": "produce-flame", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5881, - "fields": { - "parent": "produce-flame", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5882, - "fields": { - "parent": "produce-flame", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5883, - "fields": { - "parent": "produce-flame", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5884, - "fields": { - "parent": "produce-flame", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5885, - "fields": { - "parent": "produce-flame", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5886, - "fields": { - "parent": "produce-flame", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5887, - "fields": { - "parent": "produce-flame", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5888, - "fields": { - "parent": "produce-flame", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5889, - "fields": { - "parent": "produce-flame", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5890, - "fields": { - "parent": "produce-flame", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5891, - "fields": { - "parent": "produce-flame", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5892, - "fields": { - "parent": "produce-flame", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5893, - "fields": { - "parent": "programmed-illusion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5894, - "fields": { - "parent": "project-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5895, - "fields": { - "parent": "protection-from-energy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5896, - "fields": { - "parent": "protection-from-evil-and-good", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5897, - "fields": { - "parent": "protection-from-poison", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5898, - "fields": { - "parent": "purify-food-and-drink", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5899, - "fields": { - "parent": "purify-food-and-drink", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5900, - "fields": { - "parent": "raise-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5901, - "fields": { - "parent": "ray-of-enfeeblement", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5902, - "fields": { - "parent": "ray-of-frost", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5903, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5904, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5905, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5906, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5907, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5908, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5909, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5910, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5911, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5912, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5913, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5914, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5915, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5916, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5917, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5918, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5919, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5920, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5921, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5922, - "fields": { - "parent": "ray-of-frost", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5923, - "fields": { - "parent": "regenerate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5924, - "fields": { - "parent": "reincarnate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5925, - "fields": { - "parent": "remove-curse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5926, - "fields": { - "parent": "resilient-sphere", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5927, - "fields": { - "parent": "resistance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5928, - "fields": { - "parent": "resurrection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5929, - "fields": { - "parent": "reverse-gravity", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5930, - "fields": { - "parent": "revivify", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5931, - "fields": { - "parent": "rope-trick", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5932, - "fields": { - "parent": "sacred-flame", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5933, - "fields": { - "parent": "sacred-flame", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5934, - "fields": { - "parent": "sacred-flame", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5935, - "fields": { - "parent": "sacred-flame", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5936, - "fields": { - "parent": "sacred-flame", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5937, - "fields": { - "parent": "sacred-flame", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5938, - "fields": { - "parent": "sacred-flame", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5939, - "fields": { - "parent": "sacred-flame", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5940, - "fields": { - "parent": "sacred-flame", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5941, - "fields": { - "parent": "sacred-flame", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5942, - "fields": { - "parent": "sacred-flame", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5943, - "fields": { - "parent": "sacred-flame", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5944, - "fields": { - "parent": "sacred-flame", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5945, - "fields": { - "parent": "sacred-flame", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5946, - "fields": { - "parent": "sacred-flame", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5947, - "fields": { - "parent": "sacred-flame", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5948, - "fields": { - "parent": "sacred-flame", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5949, - "fields": { - "parent": "sacred-flame", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5950, - "fields": { - "parent": "sacred-flame", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5951, - "fields": { - "parent": "sacred-flame", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5952, - "fields": { - "parent": "sacred-flame", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5953, - "fields": { - "parent": "sanctuary", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5954, - "fields": { - "parent": "scorching-ray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5956, - "fields": { - "parent": "scorching-ray", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5957, - "fields": { - "parent": "scorching-ray", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5958, - "fields": { - "parent": "scorching-ray", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5959, - "fields": { - "parent": "scorching-ray", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5960, - "fields": { - "parent": "scorching-ray", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5961, - "fields": { - "parent": "scorching-ray", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5962, - "fields": { - "parent": "scorching-ray", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5963, - "fields": { - "parent": "scrying", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5964, - "fields": { - "parent": "secret-chest", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5965, - "fields": { - "parent": "see-invisibility", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5966, - "fields": { - "parent": "seeming", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5967, - "fields": { - "parent": "sending", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5968, - "fields": { - "parent": "sequester", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5969, - "fields": { - "parent": "shapechange", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5970, - "fields": { - "parent": "shatter", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5972, - "fields": { - "parent": "shatter", - "type": "slot_level_3", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5973, - "fields": { - "parent": "shatter", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5974, - "fields": { - "parent": "shatter", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5975, - "fields": { - "parent": "shatter", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5976, - "fields": { - "parent": "shatter", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5977, - "fields": { - "parent": "shatter", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5978, - "fields": { - "parent": "shatter", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5979, - "fields": { - "parent": "shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5980, - "fields": { - "parent": "shield-of-faith", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5981, - "fields": { - "parent": "shillelagh", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5982, - "fields": { - "parent": "shocking-grasp", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5983, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5984, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5985, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5986, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5987, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5988, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5989, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5990, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5991, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5992, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5993, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5994, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5995, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5996, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5997, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5998, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 5999, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6000, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6001, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6002, - "fields": { - "parent": "shocking-grasp", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6003, - "fields": { - "parent": "silence", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6004, - "fields": { - "parent": "silence", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6005, - "fields": { - "parent": "silent-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6006, - "fields": { - "parent": "simulacrum", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6007, - "fields": { - "parent": "sleep", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6009, - "fields": { - "parent": "sleep", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6010, - "fields": { - "parent": "sleep", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6011, - "fields": { - "parent": "sleep", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6012, - "fields": { - "parent": "sleep", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6013, - "fields": { - "parent": "sleep", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6014, - "fields": { - "parent": "sleep", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6015, - "fields": { - "parent": "sleep", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6016, - "fields": { - "parent": "sleep", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6017, - "fields": { - "parent": "sleet-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6018, - "fields": { - "parent": "slow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6019, - "fields": { - "parent": "spare-the-dying", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6020, - "fields": { - "parent": "speak-with-animals", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6021, - "fields": { - "parent": "speak-with-animals", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6022, - "fields": { - "parent": "speak-with-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6023, - "fields": { - "parent": "speak-with-plants", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6024, - "fields": { - "parent": "spider-climb", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6025, - "fields": { - "parent": "spike-growth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6026, - "fields": { - "parent": "spirit-guardians", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6028, - "fields": { - "parent": "spirit-guardians", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6029, - "fields": { - "parent": "spirit-guardians", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6030, - "fields": { - "parent": "spirit-guardians", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6031, - "fields": { - "parent": "spirit-guardians", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6032, - "fields": { - "parent": "spirit-guardians", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6033, - "fields": { - "parent": "spirit-guardians", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6034, - "fields": { - "parent": "spiritual-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6036, - "fields": { - "parent": "spiritual-weapon", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6037, - "fields": { - "parent": "spiritual-weapon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6038, - "fields": { - "parent": "spiritual-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6039, - "fields": { - "parent": "spiritual-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6040, - "fields": { - "parent": "spiritual-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6041, - "fields": { - "parent": "spiritual-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6042, - "fields": { - "parent": "spiritual-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6043, - "fields": { - "parent": "stinking-cloud", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6044, - "fields": { - "parent": "stone-shape", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6045, - "fields": { - "parent": "stoneskin", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6046, - "fields": { - "parent": "storm-of-vengeance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6047, - "fields": { - "parent": "suggestion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6048, - "fields": { - "parent": "sunbeam", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6049, - "fields": { - "parent": "sunburst", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6050, - "fields": { - "parent": "symbol", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6051, - "fields": { - "parent": "telekinesis", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6052, - "fields": { - "parent": "telepathic-bond", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6053, - "fields": { - "parent": "telepathic-bond", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6054, - "fields": { - "parent": "teleport", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6055, - "fields": { - "parent": "teleportation-circle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6056, - "fields": { - "parent": "thaumaturgy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6057, - "fields": { - "parent": "thunderwave", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6059, - "fields": { - "parent": "thunderwave", - "type": "slot_level_2", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6060, - "fields": { - "parent": "thunderwave", - "type": "slot_level_3", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6061, - "fields": { - "parent": "thunderwave", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6062, - "fields": { - "parent": "thunderwave", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6063, - "fields": { - "parent": "thunderwave", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6064, - "fields": { - "parent": "thunderwave", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6065, - "fields": { - "parent": "thunderwave", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6066, - "fields": { - "parent": "thunderwave", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6067, - "fields": { - "parent": "time-stop", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6068, - "fields": { - "parent": "tiny-hut", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6069, - "fields": { - "parent": "tiny-hut", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6070, - "fields": { - "parent": "tongues", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6071, - "fields": { - "parent": "transport-via-plants", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6072, - "fields": { - "parent": "tree-stride", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6073, - "fields": { - "parent": "true-polymorph", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6074, - "fields": { - "parent": "true-resurrection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6075, - "fields": { - "parent": "true-seeing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6076, - "fields": { - "parent": "true-strike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6077, - "fields": { - "parent": "unseen-servant", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6078, - "fields": { - "parent": "unseen-servant", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6079, - "fields": { - "parent": "vampiric-touch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6081, - "fields": { - "parent": "vampiric-touch", - "type": "slot_level_4", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6082, - "fields": { - "parent": "vampiric-touch", - "type": "slot_level_5", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6083, - "fields": { - "parent": "vampiric-touch", - "type": "slot_level_6", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6084, - "fields": { - "parent": "vampiric-touch", - "type": "slot_level_7", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6085, - "fields": { - "parent": "vampiric-touch", - "type": "slot_level_8", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6086, - "fields": { - "parent": "vampiric-touch", - "type": "slot_level_9", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6087, - "fields": { - "parent": "vicious-mockery", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6088, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6089, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6090, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6091, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6092, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_5", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6093, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_6", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6094, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_7", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6095, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_8", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6096, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_9", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6097, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_10", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6098, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_11", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6099, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_12", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6100, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_13", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6101, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_14", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6102, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_15", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6103, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_16", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6104, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_17", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6105, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_18", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6106, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_19", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6107, - "fields": { - "parent": "vicious-mockery", - "type": "player_level_20", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6108, - "fields": { - "parent": "wall-of-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6110, - "fields": { - "parent": "wall-of-fire", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6111, - "fields": { - "parent": "wall-of-fire", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6112, - "fields": { - "parent": "wall-of-fire", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6113, - "fields": { - "parent": "wall-of-fire", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6114, - "fields": { - "parent": "wall-of-fire", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6115, - "fields": { - "parent": "wall-of-force", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6116, - "fields": { - "parent": "wall-of-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6118, - "fields": { - "parent": "wall-of-ice", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6119, - "fields": { - "parent": "wall-of-ice", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6120, - "fields": { - "parent": "wall-of-ice", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6121, - "fields": { - "parent": "wall-of-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6122, - "fields": { - "parent": "wall-of-thorns", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6124, - "fields": { - "parent": "wall-of-thorns", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6125, - "fields": { - "parent": "wall-of-thorns", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6126, - "fields": { - "parent": "wall-of-thorns", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6127, - "fields": { - "parent": "warding-bond", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6128, - "fields": { - "parent": "water-breathing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6129, - "fields": { - "parent": "water-breathing", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6130, - "fields": { - "parent": "water-walk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6131, - "fields": { - "parent": "water-walk", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6132, - "fields": { - "parent": "web", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6133, - "fields": { - "parent": "weird", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6134, - "fields": { - "parent": "wind-walk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6135, - "fields": { - "parent": "wind-wall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6136, - "fields": { - "parent": "wish", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6137, - "fields": { - "parent": "word-of-recall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -}, -{ - "model": "api_v2.spellcastingoption", - "pk": 6138, - "fields": { - "parent": "zone-of-truth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } -} -] + { + "model": "api_v2.spellcastingoption", + "pk": 5005, + "fields": { + "parent": "srd_acid-arrow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5007, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5008, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5009, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5010, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5011, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5012, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5013, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5014, + "fields": { + "parent": "srd_acid-splash", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5015, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5016, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5017, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5018, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5019, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_5", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5020, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_6", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5021, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_7", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5022, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_8", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5023, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_9", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5024, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_10", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5025, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_11", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5026, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_12", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5027, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_13", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5028, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_14", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5029, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_15", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5030, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_16", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5031, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_17", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5032, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_18", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5033, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_19", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5034, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_20", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5035, + "fields": { + "parent": "srd_aid", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5037, + "fields": { + "parent": "srd_aid", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5038, + "fields": { + "parent": "srd_aid", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5039, + "fields": { + "parent": "srd_aid", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5040, + "fields": { + "parent": "srd_aid", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5041, + "fields": { + "parent": "srd_aid", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5042, + "fields": { + "parent": "srd_aid", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5043, + "fields": { + "parent": "srd_aid", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5044, + "fields": { + "parent": "srd_alarm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5045, + "fields": { + "parent": "srd_alarm", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5046, + "fields": { + "parent": "srd_alter-self", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5047, + "fields": { + "parent": "srd_animal-friendship", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5049, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5050, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5051, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5052, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5053, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5054, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5055, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5056, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5057, + "fields": { + "parent": "srd_animal-messenger", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5058, + "fields": { + "parent": "srd_animal-messenger", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5060, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "3 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5061, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "5 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5062, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "7 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5063, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "9 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5064, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "11 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5065, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "13 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5066, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "15 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5067, + "fields": { + "parent": "srd_animal-shapes", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5068, + "fields": { + "parent": "srd_animate-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5070, + "fields": { + "parent": "srd_animate-dead", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5071, + "fields": { + "parent": "srd_animate-dead", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5072, + "fields": { + "parent": "srd_animate-dead", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5073, + "fields": { + "parent": "srd_animate-dead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5074, + "fields": { + "parent": "srd_animate-dead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5075, + "fields": { + "parent": "srd_animate-dead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5076, + "fields": { + "parent": "srd_animate-objects", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5078, + "fields": { + "parent": "srd_animate-objects", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5079, + "fields": { + "parent": "srd_animate-objects", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5080, + "fields": { + "parent": "srd_animate-objects", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5081, + "fields": { + "parent": "srd_animate-objects", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5082, + "fields": { + "parent": "srd_antilife-shell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5083, + "fields": { + "parent": "srd_antimagic-field", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5084, + "fields": { + "parent": "srd_antipathysympathy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5085, + "fields": { + "parent": "srd_arcane-eye", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5086, + "fields": { + "parent": "srd_arcane-hand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5088, + "fields": { + "parent": "srd_arcane-hand", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5089, + "fields": { + "parent": "srd_arcane-hand", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5090, + "fields": { + "parent": "srd_arcane-hand", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5091, + "fields": { + "parent": "srd_arcane-hand", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5092, + "fields": { + "parent": "srd_arcane-lock", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5093, + "fields": { + "parent": "srd_arcane-sword", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5094, + "fields": { + "parent": "srd_arcanists-magic-aura", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5095, + "fields": { + "parent": "srd_astral-projection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5096, + "fields": { + "parent": "srd_augury", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5097, + "fields": { + "parent": "srd_augury", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5098, + "fields": { + "parent": "srd_awaken", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5099, + "fields": { + "parent": "srd_bane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5101, + "fields": { + "parent": "srd_bane", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5102, + "fields": { + "parent": "srd_bane", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5103, + "fields": { + "parent": "srd_bane", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5104, + "fields": { + "parent": "srd_bane", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5105, + "fields": { + "parent": "srd_bane", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5106, + "fields": { + "parent": "srd_bane", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5107, + "fields": { + "parent": "srd_bane", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5108, + "fields": { + "parent": "srd_bane", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 11, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5109, + "fields": { + "parent": "srd_banishment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5111, + "fields": { + "parent": "srd_banishment", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5112, + "fields": { + "parent": "srd_banishment", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5113, + "fields": { + "parent": "srd_banishment", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5114, + "fields": { + "parent": "srd_banishment", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5115, + "fields": { + "parent": "srd_banishment", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5116, + "fields": { + "parent": "srd_barkskin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5117, + "fields": { + "parent": "srd_beacon-of-hope", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5118, + "fields": { + "parent": "srd_bestow-curse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5120, + "fields": { + "parent": "srd_bestow-curse", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5121, + "fields": { + "parent": "srd_bestow-curse", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5122, + "fields": { + "parent": "srd_bestow-curse", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5123, + "fields": { + "parent": "srd_bestow-curse", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5124, + "fields": { + "parent": "srd_bestow-curse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5125, + "fields": { + "parent": "srd_bestow-curse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5126, + "fields": { + "parent": "srd_black-tentacles", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5127, + "fields": { + "parent": "srd_blade-barrier", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5128, + "fields": { + "parent": "srd_bless", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5130, + "fields": { + "parent": "srd_bless", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5131, + "fields": { + "parent": "srd_bless", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5132, + "fields": { + "parent": "srd_bless", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5133, + "fields": { + "parent": "srd_bless", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5134, + "fields": { + "parent": "srd_bless", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5135, + "fields": { + "parent": "srd_bless", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5136, + "fields": { + "parent": "srd_bless", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5137, + "fields": { + "parent": "srd_bless", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 11, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5138, + "fields": { + "parent": "srd_blight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5140, + "fields": { + "parent": "srd_blight", + "type": "slot_level_5", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5141, + "fields": { + "parent": "srd_blight", + "type": "slot_level_6", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5142, + "fields": { + "parent": "srd_blight", + "type": "slot_level_7", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5143, + "fields": { + "parent": "srd_blight", + "type": "slot_level_8", + "damage_roll": "12d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5144, + "fields": { + "parent": "srd_blight", + "type": "slot_level_9", + "damage_roll": "13d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5145, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5147, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5148, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5149, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5150, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5151, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5152, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5153, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5154, + "fields": { + "parent": "srd_blink", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5155, + "fields": { + "parent": "srd_blur", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5156, + "fields": { + "parent": "srd_branding-smite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5158, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5159, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5160, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5161, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5162, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5163, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5164, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5165, + "fields": { + "parent": "srd_burning-hands", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5167, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_2", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5168, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_3", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5169, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_4", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5170, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_5", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5171, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_6", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5172, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_7", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5173, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_8", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5174, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_9", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5175, + "fields": { + "parent": "srd_call-lightning", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5177, + "fields": { + "parent": "srd_call-lightning", + "type": "slot_level_4", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5178, + "fields": { + "parent": "srd_call-lightning", + "type": "slot_level_5", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5179, + "fields": { + "parent": "srd_call-lightning", + "type": "slot_level_6", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5180, + "fields": { + "parent": "srd_call-lightning", + "type": "slot_level_7", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5181, + "fields": { + "parent": "srd_call-lightning", + "type": "slot_level_8", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5182, + "fields": { + "parent": "srd_call-lightning", + "type": "slot_level_9", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5183, + "fields": { + "parent": "srd_calm-emotions", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5184, + "fields": { + "parent": "srd_chain-lightning", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5186, + "fields": { + "parent": "srd_chain-lightning", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5187, + "fields": { + "parent": "srd_chain-lightning", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5188, + "fields": { + "parent": "srd_chain-lightning", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5189, + "fields": { + "parent": "srd_charm-person", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5191, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5192, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5193, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5194, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5195, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5196, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5197, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5198, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5199, + "fields": { + "parent": "srd_chill-touch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5200, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5201, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5202, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5203, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5204, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5205, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5206, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5207, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5208, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5209, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5210, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5211, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5212, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5213, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5214, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5215, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5216, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5217, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5218, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5219, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5220, + "fields": { + "parent": "srd_circle-of-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5222, + "fields": { + "parent": "srd_circle-of-death", + "type": "slot_level_7", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5223, + "fields": { + "parent": "srd_circle-of-death", + "type": "slot_level_8", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5224, + "fields": { + "parent": "srd_circle-of-death", + "type": "slot_level_9", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5225, + "fields": { + "parent": "srd_clairvoyance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5226, + "fields": { + "parent": "srd_clone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5227, + "fields": { + "parent": "srd_cloudkill", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5229, + "fields": { + "parent": "srd_cloudkill", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5230, + "fields": { + "parent": "srd_cloudkill", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5231, + "fields": { + "parent": "srd_cloudkill", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5232, + "fields": { + "parent": "srd_cloudkill", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5233, + "fields": { + "parent": "srd_color-spray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5235, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5236, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5237, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5238, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5239, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5240, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5241, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5242, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5243, + "fields": { + "parent": "srd_command", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5245, + "fields": { + "parent": "srd_command", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5246, + "fields": { + "parent": "srd_command", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5247, + "fields": { + "parent": "srd_command", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5248, + "fields": { + "parent": "srd_command", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5249, + "fields": { + "parent": "srd_command", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5250, + "fields": { + "parent": "srd_command", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5251, + "fields": { + "parent": "srd_command", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5252, + "fields": { + "parent": "srd_command", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5253, + "fields": { + "parent": "srd_commune", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5254, + "fields": { + "parent": "srd_commune", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5255, + "fields": { + "parent": "srd_commune-with-nature", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5256, + "fields": { + "parent": "srd_commune-with-nature", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5257, + "fields": { + "parent": "srd_comprehend-languages", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5258, + "fields": { + "parent": "srd_comprehend-languages", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5259, + "fields": { + "parent": "srd_compulsion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5260, + "fields": { + "parent": "srd_cone-of-cold", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5262, + "fields": { + "parent": "srd_cone-of-cold", + "type": "slot_level_6", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5263, + "fields": { + "parent": "srd_cone-of-cold", + "type": "slot_level_7", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5264, + "fields": { + "parent": "srd_cone-of-cold", + "type": "slot_level_8", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5265, + "fields": { + "parent": "srd_cone-of-cold", + "type": "slot_level_9", + "damage_roll": "12d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5266, + "fields": { + "parent": "srd_confusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5268, + "fields": { + "parent": "srd_confusion", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5269, + "fields": { + "parent": "srd_confusion", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5270, + "fields": { + "parent": "srd_confusion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5271, + "fields": { + "parent": "srd_confusion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5272, + "fields": { + "parent": "srd_confusion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5273, + "fields": { + "parent": "srd_conjure-animals", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5275, + "fields": { + "parent": "srd_conjure-animals", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5276, + "fields": { + "parent": "srd_conjure-animals", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5277, + "fields": { + "parent": "srd_conjure-animals", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5278, + "fields": { + "parent": "srd_conjure-animals", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5279, + "fields": { + "parent": "srd_conjure-animals", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5280, + "fields": { + "parent": "srd_conjure-animals", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5281, + "fields": { + "parent": "srd_conjure-celestial", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5283, + "fields": { + "parent": "srd_conjure-celestial", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5284, + "fields": { + "parent": "srd_conjure-celestial", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5285, + "fields": { + "parent": "srd_conjure-elemental", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5287, + "fields": { + "parent": "srd_conjure-elemental", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5288, + "fields": { + "parent": "srd_conjure-elemental", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5289, + "fields": { + "parent": "srd_conjure-elemental", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5290, + "fields": { + "parent": "srd_conjure-elemental", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5291, + "fields": { + "parent": "srd_conjure-fey", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5293, + "fields": { + "parent": "srd_conjure-fey", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5294, + "fields": { + "parent": "srd_conjure-fey", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5295, + "fields": { + "parent": "srd_conjure-fey", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5296, + "fields": { + "parent": "srd_conjure-minor-elementals", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5298, + "fields": { + "parent": "srd_conjure-minor-elementals", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5299, + "fields": { + "parent": "srd_conjure-minor-elementals", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5300, + "fields": { + "parent": "srd_conjure-minor-elementals", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5301, + "fields": { + "parent": "srd_conjure-minor-elementals", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5302, + "fields": { + "parent": "srd_conjure-minor-elementals", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5303, + "fields": { + "parent": "srd_conjure-woodland-beings", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5305, + "fields": { + "parent": "srd_conjure-woodland-beings", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5306, + "fields": { + "parent": "srd_conjure-woodland-beings", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5307, + "fields": { + "parent": "srd_conjure-woodland-beings", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5308, + "fields": { + "parent": "srd_conjure-woodland-beings", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5309, + "fields": { + "parent": "srd_conjure-woodland-beings", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5310, + "fields": { + "parent": "srd_contact-other-plane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5311, + "fields": { + "parent": "srd_contact-other-plane", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5312, + "fields": { + "parent": "srd_contagion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5313, + "fields": { + "parent": "srd_contingency", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5314, + "fields": { + "parent": "srd_continual-flame", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5315, + "fields": { + "parent": "srd_control-water", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5316, + "fields": { + "parent": "srd_control-weather", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5317, + "fields": { + "parent": "srd_counterspell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5319, + "fields": { + "parent": "srd_counterspell", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5320, + "fields": { + "parent": "srd_counterspell", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5321, + "fields": { + "parent": "srd_counterspell", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5322, + "fields": { + "parent": "srd_counterspell", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5323, + "fields": { + "parent": "srd_counterspell", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5324, + "fields": { + "parent": "srd_counterspell", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5325, + "fields": { + "parent": "srd_create-food-and-water", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5326, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5328, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5329, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5330, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5331, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5332, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5333, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5334, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5335, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5336, + "fields": { + "parent": "srd_create-undead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5338, + "fields": { + "parent": "srd_create-undead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5339, + "fields": { + "parent": "srd_create-undead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5340, + "fields": { + "parent": "srd_create-undead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5341, + "fields": { + "parent": "srd_creation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5343, + "fields": { + "parent": "srd_creation", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5344, + "fields": { + "parent": "srd_creation", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5345, + "fields": { + "parent": "srd_creation", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5346, + "fields": { + "parent": "srd_creation", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5347, + "fields": { + "parent": "srd_cure-wounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5349, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5350, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5351, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5352, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5353, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5354, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5355, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5356, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5357, + "fields": { + "parent": "srd_dancing-lights", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5358, + "fields": { + "parent": "srd_darkness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5359, + "fields": { + "parent": "srd_darkvision", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5360, + "fields": { + "parent": "srd_daylight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5361, + "fields": { + "parent": "srd_death-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5362, + "fields": { + "parent": "srd_delayed-blast-fireball", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5364, + "fields": { + "parent": "srd_delayed-blast-fireball", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5365, + "fields": { + "parent": "srd_delayed-blast-fireball", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5366, + "fields": { + "parent": "srd_demiplane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5367, + "fields": { + "parent": "srd_detect-evil-and-good", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5368, + "fields": { + "parent": "srd_detect-magic", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5369, + "fields": { + "parent": "srd_detect-magic", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5370, + "fields": { + "parent": "srd_detect-poison-and-disease", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5371, + "fields": { + "parent": "srd_detect-poison-and-disease", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5372, + "fields": { + "parent": "srd_detect-thoughts", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5373, + "fields": { + "parent": "srd_dimension-door", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5374, + "fields": { + "parent": "srd_disguise-self", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5375, + "fields": { + "parent": "srd_disintegrate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5377, + "fields": { + "parent": "srd_disintegrate", + "type": "slot_level_7", + "damage_roll": "13d6+40", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5378, + "fields": { + "parent": "srd_disintegrate", + "type": "slot_level_8", + "damage_roll": "16d6+40", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5379, + "fields": { + "parent": "srd_disintegrate", + "type": "slot_level_9", + "damage_roll": "19d6+40", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5380, + "fields": { + "parent": "srd_dispel-evil-and-good", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5381, + "fields": { + "parent": "srd_dispel-magic", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5383, + "fields": { + "parent": "srd_dispel-magic", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5384, + "fields": { + "parent": "srd_dispel-magic", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5385, + "fields": { + "parent": "srd_dispel-magic", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5386, + "fields": { + "parent": "srd_dispel-magic", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5387, + "fields": { + "parent": "srd_dispel-magic", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5388, + "fields": { + "parent": "srd_dispel-magic", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5389, + "fields": { + "parent": "srd_divination", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5390, + "fields": { + "parent": "srd_divination", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5391, + "fields": { + "parent": "srd_divine-favor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5392, + "fields": { + "parent": "srd_divine-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5393, + "fields": { + "parent": "srd_dominate-beast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5395, + "fields": { + "parent": "srd_dominate-beast", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5396, + "fields": { + "parent": "srd_dominate-beast", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5397, + "fields": { + "parent": "srd_dominate-beast", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5398, + "fields": { + "parent": "srd_dominate-beast", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5399, + "fields": { + "parent": "srd_dominate-beast", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5400, + "fields": { + "parent": "srd_dominate-monster", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5402, + "fields": { + "parent": "srd_dominate-monster", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5403, + "fields": { + "parent": "srd_dominate-person", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5405, + "fields": { + "parent": "srd_dominate-person", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5406, + "fields": { + "parent": "srd_dominate-person", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5407, + "fields": { + "parent": "srd_dominate-person", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5408, + "fields": { + "parent": "srd_dominate-person", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5409, + "fields": { + "parent": "srd_dream", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5410, + "fields": { + "parent": "srd_druidcraft", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5411, + "fields": { + "parent": "srd_earthquake", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5412, + "fields": { + "parent": "srd_eldritch-blast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5413, + "fields": { + "parent": "srd_enhance-ability", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5415, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5416, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5417, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5418, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5419, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5420, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5421, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5422, + "fields": { + "parent": "srd_enlargereduce", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5423, + "fields": { + "parent": "srd_entangle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5424, + "fields": { + "parent": "srd_enthrall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5425, + "fields": { + "parent": "srd_etherealness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5427, + "fields": { + "parent": "srd_etherealness", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5428, + "fields": { + "parent": "srd_etherealness", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5429, + "fields": { + "parent": "srd_expeditious-retreat", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5430, + "fields": { + "parent": "srd_eyebite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5431, + "fields": { + "parent": "srd_fabricate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5432, + "fields": { + "parent": "srd_faerie-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5433, + "fields": { + "parent": "srd_faithful-hound", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5434, + "fields": { + "parent": "srd_false-life", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5436, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5437, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5438, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5439, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5440, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5441, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5442, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5443, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5444, + "fields": { + "parent": "srd_fear", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5445, + "fields": { + "parent": "srd_feather-fall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5446, + "fields": { + "parent": "srd_feeblemind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5447, + "fields": { + "parent": "srd_find-familiar", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5448, + "fields": { + "parent": "srd_find-familiar", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5449, + "fields": { + "parent": "srd_find-steed", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5450, + "fields": { + "parent": "srd_find-the-path", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5451, + "fields": { + "parent": "srd_find-traps", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5452, + "fields": { + "parent": "srd_finger-of-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5453, + "fields": { + "parent": "srd_fire-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5454, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5455, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5456, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5457, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5458, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_5", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5459, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_6", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5460, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_7", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5461, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_8", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5462, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_9", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5463, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_10", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5464, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_11", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5465, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_12", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5466, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_13", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5467, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_14", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5468, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_15", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5469, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_16", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5470, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_17", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5471, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_18", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5472, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_19", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5473, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_20", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5474, + "fields": { + "parent": "srd_fire-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5475, + "fields": { + "parent": "srd_fire-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5476, + "fields": { + "parent": "srd_fireball", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5478, + "fields": { + "parent": "srd_fireball", + "type": "slot_level_4", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5479, + "fields": { + "parent": "srd_fireball", + "type": "slot_level_5", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5480, + "fields": { + "parent": "srd_fireball", + "type": "slot_level_6", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5481, + "fields": { + "parent": "srd_fireball", + "type": "slot_level_7", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5482, + "fields": { + "parent": "srd_fireball", + "type": "slot_level_8", + "damage_roll": "13d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5483, + "fields": { + "parent": "srd_fireball", + "type": "slot_level_9", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5484, + "fields": { + "parent": "srd_flame-blade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5486, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_3", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5487, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_4", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5488, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_5", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5489, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_6", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5490, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_7", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5491, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_8", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5492, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_9", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5493, + "fields": { + "parent": "srd_flame-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5495, + "fields": { + "parent": "srd_flame-strike", + "type": "slot_level_6", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5496, + "fields": { + "parent": "srd_flame-strike", + "type": "slot_level_7", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5497, + "fields": { + "parent": "srd_flame-strike", + "type": "slot_level_8", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5498, + "fields": { + "parent": "srd_flame-strike", + "type": "slot_level_9", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5499, + "fields": { + "parent": "srd_flaming-sphere", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5501, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_3", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5502, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_4", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5503, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_5", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5504, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_6", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5505, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_7", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5506, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_8", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5507, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_9", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5508, + "fields": { + "parent": "srd_flesh-to-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5509, + "fields": { + "parent": "srd_floating-disk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5510, + "fields": { + "parent": "srd_floating-disk", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5511, + "fields": { + "parent": "srd_fly", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5513, + "fields": { + "parent": "srd_fly", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5514, + "fields": { + "parent": "srd_fly", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5515, + "fields": { + "parent": "srd_fly", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5516, + "fields": { + "parent": "srd_fly", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5517, + "fields": { + "parent": "srd_fly", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5518, + "fields": { + "parent": "srd_fly", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5519, + "fields": { + "parent": "srd_fog-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5521, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5522, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5523, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5524, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5525, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5526, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5527, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5528, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5529, + "fields": { + "parent": "srd_forbiddance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5530, + "fields": { + "parent": "srd_forbiddance", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5531, + "fields": { + "parent": "srd_forcecage", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5532, + "fields": { + "parent": "srd_foresight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5533, + "fields": { + "parent": "srd_freedom-of-movement", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5534, + "fields": { + "parent": "srd_freezing-sphere", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5536, + "fields": { + "parent": "srd_freezing-sphere", + "type": "slot_level_7", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5537, + "fields": { + "parent": "srd_freezing-sphere", + "type": "slot_level_8", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5538, + "fields": { + "parent": "srd_freezing-sphere", + "type": "slot_level_9", + "damage_roll": "13d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5539, + "fields": { + "parent": "srd_gaseous-form", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5540, + "fields": { + "parent": "srd_gate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5541, + "fields": { + "parent": "srd_geas", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5543, + "fields": { + "parent": "srd_geas", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5544, + "fields": { + "parent": "srd_geas", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5545, + "fields": { + "parent": "srd_geas", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5546, + "fields": { + "parent": "srd_geas", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5547, + "fields": { + "parent": "srd_gentle-repose", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5548, + "fields": { + "parent": "srd_gentle-repose", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5549, + "fields": { + "parent": "srd_giant-insect", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5550, + "fields": { + "parent": "srd_glibness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5551, + "fields": { + "parent": "srd_globe-of-invulnerability", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5553, + "fields": { + "parent": "srd_globe-of-invulnerability", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5554, + "fields": { + "parent": "srd_globe-of-invulnerability", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5555, + "fields": { + "parent": "srd_globe-of-invulnerability", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5556, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5558, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5559, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5560, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5561, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5562, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5563, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5564, + "fields": { + "parent": "srd_goodberry", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5565, + "fields": { + "parent": "srd_grease", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5566, + "fields": { + "parent": "srd_greater-invisibility", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5567, + "fields": { + "parent": "srd_greater-restoration", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5568, + "fields": { + "parent": "srd_guardian-of-faith", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5569, + "fields": { + "parent": "srd_guards-and-wards", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5570, + "fields": { + "parent": "srd_guidance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5571, + "fields": { + "parent": "srd_guiding-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5573, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_2", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5574, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_3", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5575, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_4", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5576, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_5", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5577, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_6", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5578, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_7", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5579, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_8", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5580, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_9", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5581, + "fields": { + "parent": "srd_gust-of-wind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5582, + "fields": { + "parent": "srd_hallow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5583, + "fields": { + "parent": "srd_hallucinatory-terrain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5584, + "fields": { + "parent": "srd_harm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5585, + "fields": { + "parent": "srd_haste", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5586, + "fields": { + "parent": "srd_heal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5588, + "fields": { + "parent": "srd_heal", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5589, + "fields": { + "parent": "srd_heal", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5590, + "fields": { + "parent": "srd_heal", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5591, + "fields": { + "parent": "srd_healing-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5593, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5594, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5595, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5596, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5597, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5598, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5599, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5600, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5601, + "fields": { + "parent": "srd_heat-metal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5603, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_3", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5604, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5605, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5606, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5607, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5608, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5609, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5610, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5612, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_2", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5613, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_3", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5614, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_4", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5615, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_5", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5616, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_6", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5617, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_7", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5618, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_8", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5619, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_9", + "damage_roll": "10d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5620, + "fields": { + "parent": "srd_heroes-feast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5621, + "fields": { + "parent": "srd_heroism", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5622, + "fields": { + "parent": "srd_hideous-laughter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5623, + "fields": { + "parent": "srd_hold-monster", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5625, + "fields": { + "parent": "srd_hold-monster", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5626, + "fields": { + "parent": "srd_hold-monster", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5627, + "fields": { + "parent": "srd_hold-monster", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5628, + "fields": { + "parent": "srd_hold-monster", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5629, + "fields": { + "parent": "srd_hold-person", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5631, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5632, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5633, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5634, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5635, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5636, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5637, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5638, + "fields": { + "parent": "srd_holy-aura", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5639, + "fields": { + "parent": "srd_hunters-mark", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5641, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5642, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5643, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5644, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5645, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5646, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5647, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5648, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5649, + "fields": { + "parent": "srd_hypnotic-pattern", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5650, + "fields": { + "parent": "srd_ice-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5652, + "fields": { + "parent": "srd_ice-storm", + "type": "slot_level_5", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5653, + "fields": { + "parent": "srd_ice-storm", + "type": "slot_level_6", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5654, + "fields": { + "parent": "srd_ice-storm", + "type": "slot_level_7", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5655, + "fields": { + "parent": "srd_ice-storm", + "type": "slot_level_8", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5656, + "fields": { + "parent": "srd_ice-storm", + "type": "slot_level_9", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5657, + "fields": { + "parent": "srd_identify", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5658, + "fields": { + "parent": "srd_identify", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5659, + "fields": { + "parent": "srd_illusory-script", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5660, + "fields": { + "parent": "srd_illusory-script", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5661, + "fields": { + "parent": "srd_imprisonment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5662, + "fields": { + "parent": "srd_incendiary-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5663, + "fields": { + "parent": "srd_inflict-wounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5665, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_2", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5666, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_3", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5667, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_4", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5668, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_5", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5669, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_6", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5670, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_7", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5671, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_8", + "damage_roll": "10d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5672, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_9", + "damage_roll": "11d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5673, + "fields": { + "parent": "srd_insect-plague", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5675, + "fields": { + "parent": "srd_insect-plague", + "type": "slot_level_6", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5676, + "fields": { + "parent": "srd_insect-plague", + "type": "slot_level_7", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5677, + "fields": { + "parent": "srd_insect-plague", + "type": "slot_level_8", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5678, + "fields": { + "parent": "srd_insect-plague", + "type": "slot_level_9", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5679, + "fields": { + "parent": "srd_instant-summons", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5680, + "fields": { + "parent": "srd_instant-summons", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5681, + "fields": { + "parent": "srd_invisibility", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5683, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5684, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5685, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5686, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5687, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5688, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5689, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5690, + "fields": { + "parent": "srd_irresistible-dance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5691, + "fields": { + "parent": "srd_jump", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5692, + "fields": { + "parent": "srd_knock", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5693, + "fields": { + "parent": "srd_legend-lore", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5694, + "fields": { + "parent": "srd_lesser-restoration", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5695, + "fields": { + "parent": "srd_levitate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5696, + "fields": { + "parent": "srd_light", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5697, + "fields": { + "parent": "srd_lightning-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5699, + "fields": { + "parent": "srd_lightning-bolt", + "type": "slot_level_4", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5700, + "fields": { + "parent": "srd_lightning-bolt", + "type": "slot_level_5", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5701, + "fields": { + "parent": "srd_lightning-bolt", + "type": "slot_level_6", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5702, + "fields": { + "parent": "srd_lightning-bolt", + "type": "slot_level_7", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5703, + "fields": { + "parent": "srd_lightning-bolt", + "type": "slot_level_8", + "damage_roll": "13d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5704, + "fields": { + "parent": "srd_lightning-bolt", + "type": "slot_level_9", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5705, + "fields": { + "parent": "srd_locate-animals-or-plants", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5706, + "fields": { + "parent": "srd_locate-animals-or-plants", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5707, + "fields": { + "parent": "srd_locate-creature", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5708, + "fields": { + "parent": "srd_locate-object", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5709, + "fields": { + "parent": "srd_longstrider", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5711, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5712, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5713, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5714, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5715, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5716, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5717, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5718, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5719, + "fields": { + "parent": "srd_mage-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5720, + "fields": { + "parent": "srd_mage-hand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5721, + "fields": { + "parent": "srd_magic-circle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5723, + "fields": { + "parent": "srd_magic-circle", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5724, + "fields": { + "parent": "srd_magic-circle", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5725, + "fields": { + "parent": "srd_magic-circle", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5726, + "fields": { + "parent": "srd_magic-circle", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5727, + "fields": { + "parent": "srd_magic-circle", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5728, + "fields": { + "parent": "srd_magic-circle", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5729, + "fields": { + "parent": "srd_magic-jar", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5730, + "fields": { + "parent": "srd_magic-missile", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5732, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5733, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5734, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5735, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5736, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5737, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5738, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5739, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5740, + "fields": { + "parent": "srd_magic-mouth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5741, + "fields": { + "parent": "srd_magic-mouth", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5742, + "fields": { + "parent": "srd_magic-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5744, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5745, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5746, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5747, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5748, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5749, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5750, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5751, + "fields": { + "parent": "srd_magnificent-mansion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5752, + "fields": { + "parent": "srd_major-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5754, + "fields": { + "parent": "srd_major-image", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5755, + "fields": { + "parent": "srd_major-image", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5756, + "fields": { + "parent": "srd_major-image", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5757, + "fields": { + "parent": "srd_major-image", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5758, + "fields": { + "parent": "srd_major-image", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5759, + "fields": { + "parent": "srd_major-image", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5760, + "fields": { + "parent": "srd_mass-cure-wounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5762, + "fields": { + "parent": "srd_mass-cure-wounds", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5763, + "fields": { + "parent": "srd_mass-cure-wounds", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5764, + "fields": { + "parent": "srd_mass-cure-wounds", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5765, + "fields": { + "parent": "srd_mass-cure-wounds", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5766, + "fields": { + "parent": "srd_mass-heal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5767, + "fields": { + "parent": "srd_mass-healing-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5769, + "fields": { + "parent": "srd_mass-healing-word", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5770, + "fields": { + "parent": "srd_mass-healing-word", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5771, + "fields": { + "parent": "srd_mass-healing-word", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5772, + "fields": { + "parent": "srd_mass-healing-word", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5773, + "fields": { + "parent": "srd_mass-healing-word", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5774, + "fields": { + "parent": "srd_mass-healing-word", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5775, + "fields": { + "parent": "srd_mass-suggestion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5777, + "fields": { + "parent": "srd_mass-suggestion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "10 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5778, + "fields": { + "parent": "srd_mass-suggestion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "30 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5779, + "fields": { + "parent": "srd_mass-suggestion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "A year and a day", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5780, + "fields": { + "parent": "srd_maze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5781, + "fields": { + "parent": "srd_meld-into-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5782, + "fields": { + "parent": "srd_meld-into-stone", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5783, + "fields": { + "parent": "srd_mending", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5784, + "fields": { + "parent": "srd_message", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5785, + "fields": { + "parent": "srd_meteor-swarm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5786, + "fields": { + "parent": "srd_mind-blank", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5787, + "fields": { + "parent": "srd_minor-illusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5788, + "fields": { + "parent": "srd_mirage-arcane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5789, + "fields": { + "parent": "srd_mirror-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5790, + "fields": { + "parent": "srd_mislead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5791, + "fields": { + "parent": "srd_misty-step", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5792, + "fields": { + "parent": "srd_modify-memory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5794, + "fields": { + "parent": "srd_modify-memory", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5795, + "fields": { + "parent": "srd_modify-memory", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5796, + "fields": { + "parent": "srd_modify-memory", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5797, + "fields": { + "parent": "srd_modify-memory", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5798, + "fields": { + "parent": "srd_moonbeam", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5800, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_3", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5801, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_4", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5802, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_5", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5803, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_6", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5804, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_7", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5805, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_8", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5806, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_9", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5807, + "fields": { + "parent": "srd_move-earth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5808, + "fields": { + "parent": "srd_nondetection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5809, + "fields": { + "parent": "srd_pass-without-trace", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5810, + "fields": { + "parent": "srd_passwall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5811, + "fields": { + "parent": "srd_phantasmal-killer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5813, + "fields": { + "parent": "srd_phantasmal-killer", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5814, + "fields": { + "parent": "srd_phantasmal-killer", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5815, + "fields": { + "parent": "srd_phantasmal-killer", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5816, + "fields": { + "parent": "srd_phantasmal-killer", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5817, + "fields": { + "parent": "srd_phantasmal-killer", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5818, + "fields": { + "parent": "srd_phantom-steed", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5819, + "fields": { + "parent": "srd_phantom-steed", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5820, + "fields": { + "parent": "srd_planar-ally", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5821, + "fields": { + "parent": "srd_planar-binding", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5823, + "fields": { + "parent": "srd_planar-binding", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "10 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5824, + "fields": { + "parent": "srd_planar-binding", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "30 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5825, + "fields": { + "parent": "srd_planar-binding", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "180 days", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5826, + "fields": { + "parent": "srd_planar-binding", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "A year and a day", + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5827, + "fields": { + "parent": "srd_plane-shift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5828, + "fields": { + "parent": "srd_plant-growth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5829, + "fields": { + "parent": "srd_poison-spray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5830, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5831, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5832, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5833, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5834, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_5", + "damage_roll": "2d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5835, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_6", + "damage_roll": "2d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5836, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_7", + "damage_roll": "2d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5837, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_8", + "damage_roll": "2d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5838, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_9", + "damage_roll": "2d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5839, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_10", + "damage_roll": "2d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5840, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_11", + "damage_roll": "3d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5841, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_12", + "damage_roll": "3d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5842, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_13", + "damage_roll": "3d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5843, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_14", + "damage_roll": "3d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5844, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_15", + "damage_roll": "3d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5845, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_16", + "damage_roll": "3d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5846, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_17", + "damage_roll": "4d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5847, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_18", + "damage_roll": "4d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5848, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_19", + "damage_roll": "4d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5849, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_20", + "damage_roll": "4d12", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5850, + "fields": { + "parent": "srd_polymorph", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5851, + "fields": { + "parent": "srd_power-word-kill", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5852, + "fields": { + "parent": "srd_power-word-stun", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5853, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5855, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5856, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5857, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5858, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5859, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5860, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5861, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5862, + "fields": { + "parent": "srd_prestidigitation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5863, + "fields": { + "parent": "srd_prismatic-spray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5864, + "fields": { + "parent": "srd_prismatic-wall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5865, + "fields": { + "parent": "srd_private-sanctum", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5867, + "fields": { + "parent": "srd_private-sanctum", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5868, + "fields": { + "parent": "srd_private-sanctum", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5869, + "fields": { + "parent": "srd_private-sanctum", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5870, + "fields": { + "parent": "srd_private-sanctum", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5871, + "fields": { + "parent": "srd_private-sanctum", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5872, + "fields": { + "parent": "srd_produce-flame", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5873, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5874, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5875, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5876, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5877, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5878, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5879, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5880, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5881, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5882, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5883, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5884, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5885, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5886, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5887, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5888, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5889, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5890, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5891, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5892, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5893, + "fields": { + "parent": "srd_programmed-illusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5894, + "fields": { + "parent": "srd_project-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5895, + "fields": { + "parent": "srd_protection-from-energy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5896, + "fields": { + "parent": "srd_protection-from-evil-and-good", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5897, + "fields": { + "parent": "srd_protection-from-poison", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5898, + "fields": { + "parent": "srd_purify-food-and-drink", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5899, + "fields": { + "parent": "srd_purify-food-and-drink", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5900, + "fields": { + "parent": "srd_raise-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5901, + "fields": { + "parent": "srd_ray-of-enfeeblement", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5902, + "fields": { + "parent": "srd_ray-of-frost", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5903, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5904, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5905, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5906, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5907, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5908, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5909, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5910, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5911, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5912, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5913, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5914, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5915, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5916, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5917, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5918, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5919, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5920, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5921, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5922, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5923, + "fields": { + "parent": "srd_regenerate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5924, + "fields": { + "parent": "srd_reincarnate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5925, + "fields": { + "parent": "srd_remove-curse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5926, + "fields": { + "parent": "srd_resilient-sphere", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5927, + "fields": { + "parent": "srd_resistance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5928, + "fields": { + "parent": "srd_resurrection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5929, + "fields": { + "parent": "srd_reverse-gravity", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5930, + "fields": { + "parent": "srd_revivify", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5931, + "fields": { + "parent": "srd_rope-trick", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5932, + "fields": { + "parent": "srd_sacred-flame", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5933, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5934, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5935, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5936, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5937, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5938, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5939, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5940, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5941, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5942, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5943, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5944, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5945, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5946, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5947, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5948, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5949, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5950, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5951, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5952, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5953, + "fields": { + "parent": "srd_sanctuary", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5954, + "fields": { + "parent": "srd_scorching-ray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5956, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5957, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5958, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5959, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5960, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5961, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5962, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5963, + "fields": { + "parent": "srd_scrying", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5964, + "fields": { + "parent": "srd_secret-chest", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5965, + "fields": { + "parent": "srd_see-invisibility", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5966, + "fields": { + "parent": "srd_seeming", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5967, + "fields": { + "parent": "srd_sending", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5968, + "fields": { + "parent": "srd_sequester", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5969, + "fields": { + "parent": "srd_shapechange", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5970, + "fields": { + "parent": "srd_shatter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5972, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_3", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5973, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5974, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5975, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5976, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5977, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5978, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5979, + "fields": { + "parent": "srd_shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5980, + "fields": { + "parent": "srd_shield-of-faith", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5981, + "fields": { + "parent": "srd_shillelagh", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5982, + "fields": { + "parent": "srd_shocking-grasp", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5983, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5984, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5985, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5986, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5987, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5988, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5989, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5990, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5991, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5992, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5993, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5994, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5995, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5996, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5997, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5998, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 5999, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6000, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6001, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6002, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6003, + "fields": { + "parent": "srd_silence", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6004, + "fields": { + "parent": "srd_silence", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6005, + "fields": { + "parent": "srd_silent-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6006, + "fields": { + "parent": "srd_simulacrum", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6007, + "fields": { + "parent": "srd_sleep", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6009, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6010, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6011, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6012, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6013, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6014, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6015, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6016, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6017, + "fields": { + "parent": "srd_sleet-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6018, + "fields": { + "parent": "srd_slow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6019, + "fields": { + "parent": "srd_spare-the-dying", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6020, + "fields": { + "parent": "srd_speak-with-animals", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6021, + "fields": { + "parent": "srd_speak-with-animals", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6022, + "fields": { + "parent": "srd_speak-with-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6023, + "fields": { + "parent": "srd_speak-with-plants", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6024, + "fields": { + "parent": "srd_spider-climb", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6025, + "fields": { + "parent": "srd_spike-growth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6026, + "fields": { + "parent": "srd_spirit-guardians", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6028, + "fields": { + "parent": "srd_spirit-guardians", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6029, + "fields": { + "parent": "srd_spirit-guardians", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6030, + "fields": { + "parent": "srd_spirit-guardians", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6031, + "fields": { + "parent": "srd_spirit-guardians", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6032, + "fields": { + "parent": "srd_spirit-guardians", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6033, + "fields": { + "parent": "srd_spirit-guardians", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6034, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6036, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6037, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6038, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6039, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6040, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6041, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6042, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6043, + "fields": { + "parent": "srd_stinking-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6044, + "fields": { + "parent": "srd_stone-shape", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6045, + "fields": { + "parent": "srd_stoneskin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6046, + "fields": { + "parent": "srd_storm-of-vengeance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6047, + "fields": { + "parent": "srd_suggestion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6048, + "fields": { + "parent": "srd_sunbeam", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6049, + "fields": { + "parent": "srd_sunburst", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6050, + "fields": { + "parent": "srd_symbol", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6051, + "fields": { + "parent": "srd_telekinesis", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6052, + "fields": { + "parent": "srd_telepathic-bond", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6053, + "fields": { + "parent": "srd_telepathic-bond", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6054, + "fields": { + "parent": "srd_teleport", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6055, + "fields": { + "parent": "srd_teleportation-circle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6056, + "fields": { + "parent": "srd_thaumaturgy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6057, + "fields": { + "parent": "srd_thunderwave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6059, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_2", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6060, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_3", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6061, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6062, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6063, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6064, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6065, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6066, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6067, + "fields": { + "parent": "srd_time-stop", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6068, + "fields": { + "parent": "srd_tiny-hut", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6069, + "fields": { + "parent": "srd_tiny-hut", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6070, + "fields": { + "parent": "srd_tongues", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6071, + "fields": { + "parent": "srd_transport-via-plants", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6072, + "fields": { + "parent": "srd_tree-stride", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6073, + "fields": { + "parent": "srd_true-polymorph", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6074, + "fields": { + "parent": "srd_true-resurrection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6075, + "fields": { + "parent": "srd_true-seeing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6076, + "fields": { + "parent": "srd_true-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6077, + "fields": { + "parent": "srd_unseen-servant", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6078, + "fields": { + "parent": "srd_unseen-servant", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6079, + "fields": { + "parent": "srd_vampiric-touch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6081, + "fields": { + "parent": "srd_vampiric-touch", + "type": "slot_level_4", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6082, + "fields": { + "parent": "srd_vampiric-touch", + "type": "slot_level_5", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6083, + "fields": { + "parent": "srd_vampiric-touch", + "type": "slot_level_6", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6084, + "fields": { + "parent": "srd_vampiric-touch", + "type": "slot_level_7", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6085, + "fields": { + "parent": "srd_vampiric-touch", + "type": "slot_level_8", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6086, + "fields": { + "parent": "srd_vampiric-touch", + "type": "slot_level_9", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6087, + "fields": { + "parent": "srd_vicious-mockery", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6088, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6089, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6090, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6091, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6092, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_5", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6093, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_6", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6094, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_7", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6095, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_8", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6096, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_9", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6097, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_10", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6098, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_11", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6099, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_12", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6100, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_13", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6101, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_14", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6102, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_15", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6103, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_16", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6104, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_17", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6105, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_18", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6106, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_19", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6107, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_20", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6108, + "fields": { + "parent": "srd_wall-of-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6110, + "fields": { + "parent": "srd_wall-of-fire", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6111, + "fields": { + "parent": "srd_wall-of-fire", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6112, + "fields": { + "parent": "srd_wall-of-fire", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6113, + "fields": { + "parent": "srd_wall-of-fire", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6114, + "fields": { + "parent": "srd_wall-of-fire", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6115, + "fields": { + "parent": "srd_wall-of-force", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6116, + "fields": { + "parent": "srd_wall-of-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6118, + "fields": { + "parent": "srd_wall-of-ice", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6119, + "fields": { + "parent": "srd_wall-of-ice", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6120, + "fields": { + "parent": "srd_wall-of-ice", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6121, + "fields": { + "parent": "srd_wall-of-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6122, + "fields": { + "parent": "srd_wall-of-thorns", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6124, + "fields": { + "parent": "srd_wall-of-thorns", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6125, + "fields": { + "parent": "srd_wall-of-thorns", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6126, + "fields": { + "parent": "srd_wall-of-thorns", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6127, + "fields": { + "parent": "srd_warding-bond", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6128, + "fields": { + "parent": "srd_water-breathing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6129, + "fields": { + "parent": "srd_water-breathing", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6130, + "fields": { + "parent": "srd_water-walk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6131, + "fields": { + "parent": "srd_water-walk", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6132, + "fields": { + "parent": "srd_web", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6133, + "fields": { + "parent": "srd_weird", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6134, + "fields": { + "parent": "srd_wind-walk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6135, + "fields": { + "parent": "srd_wind-wall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6136, + "fields": { + "parent": "srd_wish", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6137, + "fields": { + "parent": "srd_word-of-recall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + }, + { + "model": "api_v2.spellcastingoption", + "pk": 6138, + "fields": { + "parent": "srd_zone-of-truth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } + } +] \ No newline at end of file diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index fcc7e69d..538f961f 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -138,7 +138,7 @@ def fix_keys_to_doc_name(objs,f): for obj in objs: if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): - if f['filename']=='Race.json': + if f['filename']=='Spell.json': logger.warning("{} changing to doc_name format".format(f['path'])) pk_value = "{}_{}".format(obj['fields']['document'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) @@ -149,7 +149,7 @@ def fix_keys_to_doc_name(objs,f): related_path = "{}/{}/{}/{}/{}/".format(f['root'],f['dir'],f['schema'],f['publisher'],f['doc']) - related_filenames = ['RaceTrait.json'] + related_filenames = ['SpellCastingOption.json'] for obj in objs_fixed: for related_file in related_filenames: @@ -157,7 +157,7 @@ def fix_keys_to_doc_name(objs,f): refactor_relations(related_path+related_file,"parent",obj['former_pk'], obj['pk']) obj.pop('former_pk') - if f['filename']=='Race.json': + if f['filename']=='Spell.json': with open(f['path'],'w',encoding='utf-8') as wf: json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) pass From df65f31f9ac6cef349401c3383ae2f3f25bf56ee Mon Sep 17 00:00:00 2001 From: August Johnson Date: Thu, 30 May 2024 10:25:00 -0500 Subject: [PATCH 54/84] Adding data changes. --- data/v2/kobold-press/vom/Item.json | 40396 ++++++++-------- data/v2/wizards-of-the-coast/srd/Item.json | 27780 +++++------ data/v2/wizards-of-the-coast/srd/ItemSet.json | 738 +- .../data_manipulation/data_v2_format_check.py | 35 +- 4 files changed, 34479 insertions(+), 34470 deletions(-) diff --git a/data/v2/kobold-press/vom/Item.json b/data/v2/kobold-press/vom/Item.json index 580d32c4..acedb55c 100644 --- a/data/v2/kobold-press/vom/Item.json +++ b/data/v2/kobold-press/vom/Item.json @@ -1,20199 +1,20199 @@ [ -{ - "model": "api_v2.item", - "pk": "aberrant-agreement", - "fields": { - "name": "Aberrant Agreement", - "desc": "This long scroll bears strange runes and seals of eldritch powers. When you use an action to present this scroll to an aberration whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the aberration, negotiating a service from it in exchange for a reward. The aberration is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the aberration, the truce is broken, and the creature can act normally. If the aberration refuses the offer, it is free to take any actions it wishes. Should you and the aberration reach an agreement that is satisfactory to both parties, you must sign the agreement and have the aberration do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the aberration to the agreement until its service is rendered and the reward paid, at which point the scroll blackens and crumbles to dust. An aberration's thinking is alien to most humanoids, and vaguely worded contracts may result in unintended consequences, as the creature may have different thoughts as to how to best meet the goal. If either party breaks the bargain, that creature immediately takes 10d6 psychic damage, and the charter is destroyed, ending the contract.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "accursed-idol", - "fields": { - "name": "Accursed Idol", - "desc": "Carved from a curious black stone of unknown origin, this small totem is fashioned in the macabre likeness of a Great Old One. While attuned to the idol and holding it, you gain the following benefits:\n- You can speak, read, and write Deep Speech.\n- You can use an action to speak the idol's command word and send otherworldly spirits to whisper in the minds of up to three creatures you can see within 30 feet of you. Each target must make a DC 13 Charisma saving throw. On a failed save, a creature takes 2d6 psychic damage and is frightened of you for 1 minute. On a successful save, a creature takes half as much damage and isn't frightened. If a target dies from this damage or while frightened, the otherworldly spirits within the idol are temporarily sated, and you don't suffer the effects of the idol's Otherworldly Whispers property at the next dusk. Once used, this property of the idol can't be used again until the next dusk.\n- You can use an action to cast the augury spell from the idol. The idol can't be used this way again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "adamantine-spearbiter", - "fields": { - "name": "Adamantine Spearbiter", - "desc": "The front of this shield is fashioned in the shape of a snarling wolf ’s head. Spearbiter (Uncommon). When a creature you can see within 5 feet of you makes a melee weapon attack against you, you can use a reaction to attack the attacker’s weapon, the wolf ’s head animating and snapping its jaws at the weapon. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. If the result is higher than the attacker’s attack roll against you, the attacker’s attack misses you. You can’t use this property of the shield again until the next dawn. Adamantine Spearbiter (Rare). A more powerful version of this shield exists. Its wolf ’s head is fitted with adamantine fangs and appears larger and more menacing. When you use your reaction and animate the wolf ’s head to snap at the attacker’s weapon, you have advantage on the attack roll. In addition, there is no longer a limit to the number of times you can use this property of the shield.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "agile-breastplate", - "fields": { - "name": "Agile Breastplate", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "agile-chain-mail", - "fields": { - "name": "Agile Chain Mail", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "agile-chain-shirt", - "fields": { - "name": "Agile Chain Shirt", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "agile-half-plate", - "fields": { - "name": "Agile Half Plate", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "agile-hide", - "fields": { - "name": "Agile Hide", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "agile-plate", - "fields": { - "name": "Agile Plate", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "agile-ring-mail", - "fields": { - "name": "Agile Ring Mail", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "agile-scale-mail", - "fields": { - "name": "Agile Scale Mail", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "agile-splint", - "fields": { - "name": "Agile Splint", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "air-seed", - "fields": { - "name": "Air Seed", - "desc": "This plum-sized, nearly spherical sandstone is imbued with a touch of air magic. Typically, 1d4 + 4 air seeds are found together. You can use an action to throw the seed up to 60 feet. The seed explodes on impact and is destroyed. When it explodes, the seed releases a burst of fresh, breathable air, and it disperses gas or vapor and extinguishes candles, torches, and similar unprotected flames within a 10-foot radius of where the seed landed. Each suffocating or choking creature within a 10-foot radius of where the seed landed gains a lung full of air, allowing the creature to hold its breath for 5 minutes. If you break the seed while underwater, each creature within a 10-foot radius of where you broke the seed gains a lung full of air, allowing the creature to hold its breath for 5 minutes.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "akaasit-blade", - "fields": { - "name": "Akaasit Blade", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. This dagger is crafted from the arm blade of a defeated Akaasit (see Tome of Beasts 2). You can use an action to activate a small measure of prescience within the dagger for 1 minute. If you are attacked by a creature you can see within 5 feet of you while this effect is active, you can use your reaction to make one attack with this dagger against the attacker. If your attack hits, the dagger loses its prescience, and its prescience can't be activated again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "alabaster-salt-shaker", - "fields": { - "name": "Alabaster Salt Shaker", - "desc": "This shaker is carved from purest alabaster in the shape of an owl. It is 7 inches tall and contains enough salt to flavor 25 meals. When the shaker is empty, it can't be refilled, and it becomes nonmagical. When you or another creature eat a meal salted by this shaker, you don't need to eat again for 48 hours, at which point the magic wears off. If you don't eat within 1 hour of the magic wearing off, you gain one level of exhaustion. You continue gaining one level of exhaustion for each additional hour you don't eat.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "alchemical-lantern", - "fields": { - "name": "Alchemical Lantern", - "desc": "This hooded lantern has 3 charges and regains all expended charges daily at dusk. While the lantern is lit, you can use an action to expend 1 charge to cause the lantern to spit gooey alchemical fire at a creature you can see in the lantern's bright light. The lantern makes its attack roll with a +5 bonus. On a hit, the target takes 2d6 fire damage, and it ignites. Until a creature takes an action to douse the fire, the target takes 1d6 fire damage at the start of each of its turns.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "alembic-of-unmaking", - "fields": { - "name": "Alembic of Unmaking", - "desc": "This large alembic is a glass retort supported by a bronze tripod and connected to a smaller glass container by a bronze spout. The bronze fittings are etched with arcane symbols, and the glass parts of the alembic sometimes emit bright, amethyst sparks. If a magic item is placed inside the alembic and a fire lit beneath it, the magic item dissolves and its magical energy drains into the smaller container. Artifacts, legendary magic items, and any magic item that won't physically fit into the alembic (anything larger than a shortsword or a cloak) can't be dissolved in this way. Full dissolution and distillation of an item's magical energy takes 1 hour, but 10 minutes is enough time to render most items nonmagical. If an item spends a full hour dissolving in the alembic, its magical energy coalesces in the smaller container as a lump of material resembling gray-purple, stiff dough known as arcanoplasm. This material is safe to handle and easy to incorporate into new magic items. Using arcanoplasm while creating a magic item reduces the cost of the new item by 10 percent per degree of rarity of the magic item that was distilled into the arcanoplasm. An alembic of unmaking can distill or disenchant one item per 24 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "almanac-of-common-wisdom", - "fields": { - "name": "Almanac of Common Wisdom", - "desc": "The dog-eared pages of this thick, weathered tome contain useful advice, facts, and statistical information on a wide range of topics. The topics change to match information relevant to the area where it is currently located. If you spend a short rest consulting the almanac, you treat your proficiency bonus as 1 higher when making any Intelligence, Wisdom, or Charisma skill checks to discover, recall, or cite information about local events, locations, or creatures for the next 4 hours. For example, this almanac's magic can help you recall and find the location of a city's oldest tavern, but its magic won't help you notice a thug hiding in an alley near the tavern.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "amulet-of-memory", - "fields": { - "name": "Amulet of Memory", - "desc": "Made of gold or silver, this spherical locket is engraved with two cresting waves facing away from each other while bound in a twisted loop. It preserves a memory to be reexperienced later. While wearing this amulet, you can use an action to speak the command word and open the locket. The open locket stores what you see and experience for up to 10 minutes. You can shut the locket at any time (no action required), stopping the memory recording. Opening the locket with the command word again overwrites the contained memory. While a memory is stored, you or another creature can touch the locket to experience the memory from the beginning. Breaking contact ends the memory early. In addition, you have advantage on any skill check related to details or knowledge of the stored memory. If you die while wearing the amulet, it preserves you. Your body is affected by the gentle repose spell until the amulet is removed or until you are restored to life. In addition, at the moment of your death, you can store any memory into the amulet. A creature touching the amulet perceives the memory stored there even after your death. Attuning to an amulet of memory removes any prior memories stored in it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "amulet-of-sustaining-health", - "fields": { - "name": "Amulet of Sustaining Health", - "desc": "While wearing this amulet, you need to eat and drink only once every 7 days. In addition, you have advantage on saving throws against effects that would cause you to suffer a level of exhaustion.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "amulet-of-the-oracle", - "fields": { - "name": "Amulet of the Oracle", - "desc": "When you finish a long rest while wearing this amulet, you can choose one cantrip from the cleric spell list. You can cast that cantrip from the amulet at will, using Wisdom as your spellcasting ability for it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "amulet-of-whirlwinds", - "fields": { - "name": "Amulet of Whirlwinds", - "desc": "This amulet is strung on a brass necklace and holds a piece of djinn magic. The amulet has 9 charges. You can use an action to expend 1 of its charges to create a whirlwind on a point you can see within 60 feet of you. The whirlwind is a 5-foot-radius, 30-foot-tall cylinder of swirling air that lasts as long as you maintain concentration (as if concentrating on a spell). Any creature other than you that enters the whirlwind must succeed on a DC 15 Strength saving throw or be restrained by it. You can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if you lose sight of it. A creature within 5 feet of the whirlwind can pull a creature out of it by taking an action to make a DC 15 Strength check and succeeding. A restrained creature can try to escape by taking an action to make a DC 15 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the whirlwind. When all of the amulet's charges are expended, the amulet becomes a nonmagical piece of jewelry worth 50 gp.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "anchor-of-striking", - "fields": { - "name": "Anchor of Striking", - "desc": "This small rusty iron anchor feels sturdy in spite of its appearance. You gain a +1 bonus to attack and damage rolls made with this magic war pick. When you roll a 20 on an attack roll made with this weapon, the target is wrapped in ethereal golden chains that extend from the bottom of the anchor. As an action, the chained target can make a DC 15 Strength or Dexterity check, freeing itself from the chains on a success. Alternatively, you can use a bonus action to command the chains to disappear, freeing the target. The chains are constructed of magical force and can't be damaged, though they can be destroyed with a disintegrate spell. While the target is wrapped in these chains, you and the target can't move further than 50 feet from each other.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "angelic-earrings", - "fields": { - "name": "Angelic Earrings", - "desc": "These earrings feature platinum loops from which hang bronzed claws from a Chamrosh (see Tome of Beasts 2), freely given by the angelic hound. While wearing these earrings, you have advantage on Wisdom (Insight) checks to determine if a creature is lying or if it has an evil alignment. If you cast detect evil and good while wearing these earrings, the range increases to 60 feet, and the spell lasts 10 minutes without requiring concentration.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "angry-hornet", - "fields": { - "name": "Angry Hornet", - "desc": "This black ammunition has yellow fletching or yellow paint. When you fire this magic ammunition, it makes an angry buzzing sound, and it multiplies in flight. As it flies, 2d4 identical pieces of ammunition magically appear around it, all speeding toward your target. Roll separate attack rolls for each additional arrow or bullet. Duplicate ammunition disappears after missing or after dealing its damage. If the angry hornet and all its duplicates miss, the angry hornet remains magical and can be fired again, otherwise it is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "animated-abacus", - "fields": { - "name": "Animated Abacus", - "desc": "If you speak a mathematical equation within 5 feet of this abacus, it calculates the equation and displays the solution. If you are touching the abacus, it calculates only the equations you speak, ignoring all other spoken equations.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "animated-chain-mail", - "fields": { - "name": "Animated Chain Mail", - "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can use an action to cause parts of the armor to unravel into long, animated chains. While the chains are active, you have a climbing speed equal to your walking speed, and your AC is reduced by 2. You can use a bonus action to deactivate the chains, returning the armor to normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ankh-of-aten", - "fields": { - "name": "Ankh of Aten", - "desc": "This golden ankh is about 12 inches long and has 5 charges. While holding the ankh by the loop, you can expend 1 charge as an action to fire a beam of brilliant sunlight in a 5-foot-wide, 60-foot-line from the end. Each creature caught in the line must make a DC 15 Constitution saving throw. On a failed save, a creature takes a5d8 radiant damage and is blinded until the end of your next turn. On a successful save, it takes half damage and isn't blinded. Undead have disadvantage on this saving throw. The ankh regains 1d4 + 1 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "anointing-mace", - "fields": { - "name": "Anointing Mace", - "desc": "Also called an anointing gada, you gain a +1 bonus to attack and damage rolls made with this magic weapon. In addition, the ornately decorated head of the mace holds a reservoir perforated with small holes. As an action, you can fill the reservoir with a single potion or vial of liquid, such as holy water or alchemist's fire. You can press a button on the haft of the weapon as a bonus action, which opens the holes. If you hit a target with the weapon while the holes are open, the weapon deals damage as normal and the target suffers the effects of the liquid. For example,\nan anointing mace filled with holy water deals an extra 2d6 radiant damage if it hits a fiend or undead. After you press the button and make an attack roll, the liquid is expended, regardless if your attack hits.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "apron-of-the-eager-artisan", - "fields": { - "name": "Apron of the Eager Artisan", - "desc": "Created by dwarven artisans, this leather apron has narrow pockets, which hold one type of artisan's tools. If you are wearing the apron and you spend 10 minutes contemplating your next crafting project, the tools in the apron magically change to match those best suited to the task. Once you have changed the tools available, you can't change them again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "arcanaphage-stone", - "fields": { - "name": "Arcanaphage Stone", - "desc": "Similar to the rocks found in a bird's gizzard, this smooth stone helps an Arcanaphage (see Creature Codex) digest magic. While you hold or wear the stone, you have advantage on saving throws against spells.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "armor-of-cushioning", - "fields": { - "name": "Armor of Cushioning", - "desc": "While wearing this armor, you have resistance to bludgeoning damage. In addition, you can use a reaction when you fall to reduce any falling damage you take by an amount equal to twice your level.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "armor-of-the-ngobou", - "fields": { - "name": "Armor of the Ngobou", - "desc": "This thick and rough armor is made from the hide of a Ngobou (see Tome of Beasts), an aggressive, ox-sized dinosaur known to threaten elephants of the plains. The horns and tusks of the dinosaur are worked into the armor as spiked shoulder pads. While wearing this armor, you gain a +1 bonus to AC, and you have a magical sense for elephants. You automatically detect if an elephant has passed within 90 feet of your location within the last 24 hours, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) checks you make to find elephants.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "arrow-of-grabbing", - "fields": { - "name": "Arrow of Grabbing", - "desc": "This arrow has a barbed head and is wound with a fine but strong thread that unravels as the arrow soars. If a creature takes damage from the arrow, the creature must succeed on a DC 17 Constitution saving throw or take 4d6 damage and have the arrowhead lodged in its flesh. A creature grabbed by this arrow can't move farther away from you. At the end of its turn, the creature can attempt a DC 17 Constitution saving throw, taking 4d6 piercing damage and dislodging the arrow on a success. As an action, you can attempt to pull the grabbed creature up to 10 feet in a straight line toward you, forcing the creature to repeat the saving throw. If the creature fails, it moves up to 10 feet closer to you. If it succeeds, it takes 4d6 piercing damage and the arrow is dislodged.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "arrow-of-unpleasant-herbs", - "fields": { - "name": "Arrow of Unpleasant Herbs", - "desc": "This arrow's tip is filled with magically preserved, poisonous herbs. When a creature takes damage from the arrow, the arrowhead breaks, releasing the herbs. The creature must succeed on a DC 15 Constitution saving throw or be incapacitated until the end of its next turn as it retches and reels from the poison.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ash-of-the-ebon-birch", - "fields": { - "name": "Ash of the Ebon Birch", - "desc": "This salve is created by burning bark from a rare ebon birch tree then mixing that ash with oil and animal blood to create a cerise pigment used to paint yourself or another creature with profane protections. Painting the pigment on a creature takes 1 minute, and you can choose to paint a specific sigil or smear the pigment on a specific part of the creature's body.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ashes-of-the-fallen", - "fields": { - "name": "Ashes of the Fallen", - "desc": "Found in a small packet, this coarse, foul-smelling black dust is made from the powdered remains of a celestial. Each packet of the substance contains enough ashes for one use. You can use an action to throw the dust in a 15-foot cone. Each spellcaster in the cone must succeed on a DC 15 Wisdom saving throw or become cursed for 1 hour or until the curse is ended with a remove curse spell or similar magic. Creatures that don't cast spells are unaffected. A cursed spellcaster must make a DC 15 Wisdom saving throw each time it casts a spell. On a success, the spell is cast normally. On a failure, the spellcaster casts a different, randomly chosen spell of the same level or lower from among the spellcaster's prepared or known spells. If the spellcaster has no suitable spells available, no spell is cast.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ashwood-wand", - "fields": { - "name": "Ashwood Wand", - "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains all expended charges daily at dawn. When you cast a spell that deals fire damage while using this wand as your spellcasting focus, the spell deals 1 extra fire damage. If you expend 1 of the wand's charges during the casting, the spell deals 1d4 + 1 extra fire damage instead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "asps-kiss", - "fields": { - "name": "Asp's Kiss", - "desc": "This haladie features two short, slightly curved blades attached to a single hilt with a short, blue-sheened spike on the hand guard. You gain a +2 bonus to attack and damage rolls made with this magic weapon. While attuned to this sword, you have immunity to poison damage, and, when you take the Dash action, the extra movement you gain is double your speed instead of equal to your speed. When you use the Attack action with this sword, you can make one attack with its hand guard spike (treat as a dagger) as a bonus action. You can use an action to cause indigo poison to coat the blades of this sword. The poison remains for 1 minute or until two attacks using the blade of this weapon hit one or more creatures. The target must succeed on a DC 17 Constitution saving throw or take 2d10 poison damage and its hit point maximum is reduced by an amount equal to the poison damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. The sword can't be used this way again until the next dawn. When you kill a creature with this weapon, it sheds a single, blue tear as it takes its last breath.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "aurochs-bracers", - "fields": { - "name": "Aurochs Bracers", - "desc": "These bracers have the graven image of a bull's head on them. Your Strength score is 19 while you wear these bracers. It has no effect on you if your Strength is already 19 or higher. In addition, when you use the Attack action to shove a creature, you have advantage on the Strength (Athletics) check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "baba-yagas-cinderskull", - "fields": { - "name": "Baba Yaga's Cinderskull", - "desc": "Warm to the touch, this white, dry skull radiates dim, orange light from its eye sockets in a 30-foot radius. While attuned to the skull, you only require half of the daily food and water a creature of your size and type normally requires. In addition, you can withstand extreme temperatures indefinitely, and you automatically succeed on saving throws against extreme temperatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "badger-hide", - "fields": { - "name": "Badger Hide", - "desc": "While wearing this hairy, black and white armor, you have a burrowing speed of 20 feet, and you have advantage on Wisdom (Perception) checks that rely on smell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bag-of-bramble-beasts", - "fields": { - "name": "Bag of Bramble Beasts", - "desc": "This ordinary bag, made from green cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, spiky object. The bag weighs 1/2 pound. You can use an action to pull the spiky object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a 1d8 and consulting the below table. The creature is a bramble version (see sidebar) of the beast listed in the table. The creature vanishes at the next dawn or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature. Once three spiky objects have been pulled from the bag, the bag can't be used again until the next dawn. Alternatively, one willing animal companion or familiar can be placed in the bag for 1 week. A non-beast animal companion or familiar that is placed in the bag is treated as if it had been placed into a bag of holding and can be removed from the bag at any time. A beast animal companion or familiar disappears once placed in the bag, and the bag's magic is dormant until the week is up. At the end of the week, the animal companion or familiar exits the bag as a bramble creature (see the template in the sidebar) and can be returned to its original form only with a wish. The creature retains its status as an animal companion or familiar after its transformation and can choose to activate or deactivate its Thorn Body trait as a bonus action. A transformed familiar can be re-summoned with the find familiar spell. Once the bag has been used to change an animal companion or familiar into a bramble creature, it becomes an ordinary, nonmagical bag. | 1d8 | Creature |\n| --- | ------------ |\n| 1 | Weasel |\n| 2 | Giant rat |\n| 3 | Badger |\n| 4 | Boar |\n| 5 | Panther |\n| 6 | Giant badger | Only a beast can become a bramble creature. It retains all its statistics except as noted below.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bag-of-traps", - "fields": { - "name": "Bag of Traps", - "desc": "Anyone reaching into this apparently empty bag feels a small coin, which resembles no known currency. Removing the coin and placing or tossing it up to 20 feet creates a random mechanical trap that remains for 10 minutes or until discharged or disarmed, whereupon it disappears. The coin returns to the bag only after the trap disappears. You may draw up to 10 traps from the bag each week. The GM has the statistics for mechanical traps.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bagpipes-of-battle", - "fields": { - "name": "Bagpipes of Battle", - "desc": "Inspire friends and strike fear in the hearts of your enemies with the drone of valor and the shrill call of martial might! You must be proficient with wind instruments to use these bagpipes. You can use an action to play them and create a fearsome and inspiring tune. Each ally within 60 feet of you that can hear the tune gains a d12 Bardic Inspiration die for 10 minutes. Each creature within 60 feet of you that can hear the tune and that is hostile to you must succeed on a DC 15 Wisdom saving throw or be frightened of you for 1 minute. A hostile creature has disadvantage on this saving throw if it is within 5 feet of you or your ally. A frightened creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once used, the bagpipes can't be used in this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "baleful-wardrums", - "fields": { - "name": "Baleful Wardrums", - "desc": "You must be proficient with percussion instruments to use these drums. The drums have 3 charges. You can use an action to play them and expend 1 charge to create a baleful rumble. Each creature of your choice within 60 feet of you that hears you play must succeed on a DC 13 Wisdom saving throw or have disadvantage on its next weapon or spell attack roll. A creature that succeeds on its saving throw is immune to the effect of these drums for 24 hours. The drum regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "band-of-iron-thorns", - "fields": { - "name": "Band of Iron Thorns", - "desc": "This black iron armband bristles with long, needle-sharp iron thorns. When you attune to the armband, the thorns bite into your flesh. The armband doesn't function unless the thorns pierce your skin and are able to reach your blood. While wearing the band, after you roll a saving throw but before the GM reveals if the roll is a success or failure, you can use your reaction to expend one Hit Die. Roll the die, and add the number rolled to your saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "band-of-restraint", - "fields": { - "name": "Band of Restraint", - "desc": "These simple leather straps are nearly unbreakable when used as restraints. If you spend 1 minute tying a Small or Medium creature's limbs with these straps, the creature is restrained (escape DC 17) until it escapes or until you speak a command word to release the straps. While restrained by these straps, the target has disadvantage on Strength checks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bandana-of-brachiation", - "fields": { - "name": "Bandana of Brachiation", - "desc": "While wearing this bright yellow bandana, you have a climbing speed of 30 feet, and you gain a +5 bonus to Strength (Athletics) and Dexterity (Acrobatics) checks to jump over obstacles, to land on your feet, and to land safely on a breakable or unstable surface, such as a tree branch or rotting wooden rafters.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bandana-of-bravado", - "fields": { - "name": "Bandana of Bravado", - "desc": "While wearing this bright red bandana, you have advantage on Charisma (Intimidation) checks and on saving throws against being frightened.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "banner-of-the-fortunate", - "fields": { - "name": "Banner of the Fortunate", - "desc": "While holding this banner aloft with one hand, you can use an action to inspire creatures nearby. Each creature of your choice within 60 feet of you that can see the banner has advantage on its next attack roll. The banner can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "battle-standard-of-passage", - "fields": { - "name": "Battle Standard of Passage", - "desc": "This battle standard hangs from a 4-foot-long pole and bears the colors and heraldry of a long-forgotten nation. You can use an action to plant the pole in the ground, causing the standard to whip and wave as if in a breeze. Choose up to six creatures within 30 feet of the standard, which can include yourself. Nonmagical difficult terrain costs the creatures you chose no extra movement. In addition, each creature you chose can pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. The standard stops waving and the effect ends after 10 minutes, or when a creature uses an action to pull the pole from the ground. The standard can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bead-of-exsanguination", - "fields": { - "name": "Bead of Exsanguination", - "desc": "This small, black bead measures 3/4 of an inch in diameter and weights an ounce. Typically, 1d4 + 1 beads of exsanguination are found together. When thrown, the bead absorbs hit points from creatures near its impact site, damaging them. A bead can store up to 50 hit points at a time. When found, a bead contains 2d10 stored hit points. You can use an action to throw the bead up to 60 feet. Each creature within a 20-foot radius of where the bead landed must make a DC 15 Constitution saving throw, taking 3d6 necrotic damage on a failed save, or half as much damage on a successful one. The bead stores hit points equal to the necrotic damage dealt. The bead turns from black to crimson the more hit points are stored in it. If the bead absorbs 50 hit points or more, it explodes and is destroyed. Each creature within a 20-foot radius of the bead when it explodes must make a DC 15 Dexterity saving throw, taking 6d6 necrotic damage on a failed save, or half as much damage on a successful one. If you are holding the bead, you can use a bonus action to determine if the bead is below or above half its maximum stored hit points. If you hold and study the bead over the course of 1 hour, which can be done during a short rest, you know exactly how many hit points are stored in the bead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bear-paws", - "fields": { - "name": "Bear Paws", - "desc": "These hand wraps are made of flexible beeswax that ooze sticky honey. While wearing these gloves, you have advantage on grapple checks. In addition, creatures grappled by you have disadvantage on any checks made to escape your grapple.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bed-of-spikes", - "fields": { - "name": "Bed of Spikes", - "desc": "This wide, wooden plank holds hundreds of two-inch long needle-like spikes. When you finish a long rest on the bed, you have resistance to piercing damage and advantage on Constitution saving throws to maintain your concentration on spells you cast for 8 hours or until you finish a short or long rest. Once used, the bed can't be used again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "belt-of-the-wilds", - "fields": { - "name": "Belt of the Wilds", - "desc": "This thin cord is made from animal sinew. While wearing the cord, you have advantage on Wisdom (Survival) checks to follow tracks left by beasts, giants, and humanoids. While wearing the belt, you can use a bonus action to speak the belt's command word. If you do, you leave tracks of the animal of your choice instead of your regular tracks. These tracks can be those of a Large or smaller beast with a CR of 1 or lower, such as a pony, rabbit, or lion. If you repeat the command word, you end the effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "berserkers-kilt-bear", - "fields": { - "name": "Berserker's Kilt (Bear)", - "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "berserkers-kilt-elk", - "fields": { - "name": "Berserker's Kilt (Elk)", - "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "berserkers-kilt-wolf", - "fields": { - "name": "Berserker's Kilt (Wolf)", - "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "big-dipper", - "fields": { - "name": "Big Dipper", - "desc": "This wooden rod is topped with a ridged ball. The rod has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the rod's last charge, roll a d20. On a 1, the rod melts into a pool of nonmagical honey and is destroyed. Anytime you expend 1 or more charges for this rod's properties, the ridged ball flows with delicious, nonmagical honey for 1 minute.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "binding-oath", - "fields": { - "name": "Binding Oath", - "desc": "This lengthy scroll is the testimony of a pious individual's adherence to their faith. The author has emphatically rewritten these claims many times, and its two slim, metal rollers are wrapped in yards of parchment. When you attune to the item, you rewrite certain passages to align with your own religious views. You can use an action to throw the scroll at a Huge or smaller creature you can see within 30 feet of you. Make a ranged attack roll. On a hit, the scroll unfurls and wraps around the creature. The target is restrained until you take a bonus action to command the scroll to release the creature. If you command it to release the creature or if you miss with the attack, the scroll curls back into a rolled-up scroll. If the restrained target's alignment is the opposite of yours along the law/chaos or good/evil axis, you can use a bonus action to cause the writing to blaze with light, dealing 2d6 radiant damage to the target. A creature, including the restrained target, can use an action to make a DC 17 Strength check to tear apart the scroll. On a success, the scroll is destroyed. Such an attempt causes the writing to blaze with light, dealing 2d6 radiant damage to both the creature making the attempt and the restrained target, whether or not the attempt is successful. Alternatively, the restrained creature can use an action to make a DC 17 Dexterity check to slip free of the scroll. This action also triggers the damage effect, but it doesn't destroy the scroll. Once used, the scroll can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bituminous-orb", - "fields": { - "name": "Bituminous Orb", - "desc": "A tarlike substance leaks continually from this orb, which radiates a cloying darkness and emanates an unnatural chill. While attuned to the orb, you have darkvision out to a range of 60 feet. In addition, you have immunity to necrotic damage, and you have advantage on saving throws against spells and effects that deal radiant damage. This orb has 6 charges and regains 1d6 daily at dawn. You can expend 1 charge as an action to lob some of the orb's viscous darkness at a creature you can see within 60 feet of you. The target must succeed on a DC 15 Dexterity saving throw or be grappled (escape DC 15). Until this grapple ends, the creature is blinded and takes 2d8 necrotic damage at the start of each of its turns, and you can use a bonus action to move the grappled creature up to 20 feet in any direction. You can't move the creature more than 60 feet away from the orb. Alternatively, you can use an action to expend 2 charges and crush the grappled creature. The creature must make a DC 15 Constitution saving throw, taking 6d8 bludgeoning damage on a failed save, or half as much damage on a successful one. You can end the grapple at any time (no action required). The orb's power can grapple only one creature at a time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "black-and-white-daggers", - "fields": { - "name": "Black and White Daggers", - "desc": "These matched daggers are identical except for the stones set in their pommels. One pommel is chalcedony (opaque white), the other is obsidian (opaque black). You gain a +1 bonus to attack and damage rolls with both magic weapons. The bonus increases to +3 when you use the white dagger to attack a monstrosity, and it increases to +3 when you use the black dagger to attack an undead. When you hit a monstrosity or undead with both daggers in the same turn, that creature takes an extra 1d6 piercing damage from the second attack.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "black-dragon-oil", - "fields": { - "name": "Black Dragon Oil", - "desc": "The viscous green-black oil within this magical ceramic pot bubbles slightly. The pot's stone stopper is sealed with greasy, dark wax. The pot contains 5 ounces of pure black dragon essence, obtained by slowly boiling the dragon in its own acidic secretions. You can use an action to apply 1 ounce of the oil to a weapon or single piece of ammunition. The next attack made with that weapon or ammunition deals an extra 2d8 acid damage to the target. A creature that takes the acid damage must succeed on a DC 15 Constitution saving throw at the start of its next turn or be burned for an extra 2d8 acid damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "black-honey-buckle", - "fields": { - "name": "Black Honey Buckle", - "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "black-phial", - "fields": { - "name": "Black Phial", - "desc": "This black stone phial has a tightly fitting stopper and 3 charges. As an action, you can fill the phial with blood taken from a living, or recently deceased (dead no longer than 1 minute), humanoid and expend 1 charge. When you do so, the black phial transforms the blood into a potion of greater healing. A creature who drinks this potion must succeed on a DC 12 Constitution saving throw or be poisoned for 1 hour. The phial regains 1d3 expended charges daily at midnight. If you expend the phial's last charge, roll a d20: 1d20. On a 1, the phial crumbles into dust and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "blackguards-dagger", - "fields": { - "name": "Blackguard's Dagger", - "desc": "You have advantage on attack rolls made with this weapon against a target if another enemy of the target is within 5 feet of it, and it has no allies within 5 feet of it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "blackguards-handaxe", - "fields": { - "name": "Blackguard's Handaxe", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you draw this weapon, you can use a bonus action to cast the thaumaturgy spell from it. You can have only one of the spell's effects active at a time when you cast it in this way.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "blackguards-shortsword", - "fields": { - "name": "Blackguard's Shortsword", - "desc": "You have advantage on attack rolls made with this weapon against a target if another enemy of the target is within 5 feet of it, and it has no allies within 5 feet of it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "blacktooth", - "fields": { - "name": "Blacktooth", - "desc": "This black ivory, rune-carved wand has 7 charges. It regains 1d6 + 1 expended charges daily at dawn. While holding it, you can use an action to expend 1 or more of its charges to cast the guiding bolt spell from it, using an attack bonus of +7. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "blade-of-petals", - "fields": { - "name": "Blade of Petals", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. This brightly-colored shortsword is kept in a wooden scabbard with eternally blooming flowers. The blade is made of dull green steel, and its pommel is fashioned from hard rosewood. As a bonus action, you can conjure a flowery mist which fills a 20-foot area around you with pleasant-smelling perfume. The scent dissipates after 1 minute. A creature damaged by the blade must succeed on a DC 15 Charisma saving throw or be charmed by you until the end of its next turn. A creature can't be charmed this way more than once every 24 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "blade-of-the-dervish", - "fields": { - "name": "Blade of the Dervish", - "desc": "This magic scimitar is empowered by your movements. For every 10 feet you move before making an attack, you gain a +1 bonus to the attack and damage rolls of that attack, and the scimitar deals an extra 1d6 slashing damage if the attack hits (maximum of +3 and 3d6). In addition, if you use the Dash action and move within 5 feet of a creature, you can attack that creature as a bonus action. On a hit, the target takes an extra 2d6 slashing damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "blade-of-the-temple-guardian", - "fields": { - "name": "Blade of the Temple Guardian", - "desc": "This simple but elegant shortsword is a magic weapon. When you are wielding it and use the Flurry of Blows class feature, you can make your bonus attacks with the sword rather than unarmed strikes. If you deal damage to a creature with this weapon and reduce it to 0 hit points, you absorb some of its energy, regaining 1 expended ki point.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "blasphemous-writ", - "fields": { - "name": "Blasphemous Writ", - "desc": "The Infernal runes inscribed upon this vellum scroll radiate a faint, crimson glow. When you use this spell scroll of command, the save DC is 15 instead of 13, and you can also affect targets that are undead or that don't understand your language.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "blessed-paupers-purse", - "fields": { - "name": "Blessed Pauper's Purse", - "desc": "This worn cloth purse appears empty, even when opened, yet seems to always have enough copper pieces in it to make any purchase of urgent necessity when you dig inside. The purse produces enough copper pieces to provide for a poor lifestyle. In addition, if anyone asks you for charity, you can always open the purse to find 1 or 2 cp available to give away. These coins appear only if you truly intend to gift them to one who asks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "blinding-lantern", - "fields": { - "name": "Blinding Lantern", - "desc": "This ornate brass lantern comes fitted with heavily inscribed plates shielding the cut crystal lens. With a flick of a lever, as an action, the plates rise and unleash a dazzling array of lights at a single target within 30 feet. You must use two hands to direct the lights precisely into the eyes of a foe. The target must succeed on a DC 11 Wisdom saving throw or be blinded until the end of its next turn. A creature blinded by the lantern is immune to its effects for 1 minute afterward. This property can't be used in a brightly lit area. By opening the shutter on the opposite side, the device functions as a normal bullseye lantern, yet illuminates magically, requiring no fuel and giving off no heat.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "blood-mark", - "fields": { - "name": "Blood Mark", - "desc": "Used as a form of currency between undead lords and the humanoids of their lands, this coin resembles a gold ring with a single hole in the center. It holds 1 charge, visible as a red glow in the center of the coin. While holding the coin, you can use an action to expend 1 charge and regain 1d3 hit points. At the same time, the humanoid who pledged their blood to the coin takes necrotic damage and reduces their hit point maximum by an equal amount. This reduction lasts until the creature finishes a long rest. It dies if this reduces its hit point maximum to 0. You can expend the charges in up to 5 blood marks as part of the same action. To replenish an expended charge in a blood mark, a humanoid must pledge a pint of their blood in a 10-minute ritual that involves letting a drop of their blood fall through the center of the coin. The drop disappears in the process and the center fills with a red glow. There is no limit to how much blood a humanoid may pledge, but each coin can hold only 1 charge. To pledge more, the humanoid must perform the ritual on another blood mark. Any person foolish enough to pledge more than a single blood coin might find the coins all redeemed at once, since such redemptions often happen at great blood feasts held by vampires and other undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "blood-pearl", - "fields": { - "name": "Blood Pearl", - "desc": "This crimson pearl feels slick to the touch and contains a mote of blood imbued with malign purpose. As an action, you can break the pearl, destroying it, and conjure a Blood Elemental (see Creature Codex) for 1 hour. The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "blood-soaked-hide", - "fields": { - "name": "Blood-Soaked Hide", - "desc": "A creature that starts its turn in your space must succeed on a DC 15 Constitution saving throw or lose 3d6 hit points due to blood loss, and you regain a number of hit points equal to half the number of hit points the creature lost. Constructs and undead who aren't vampires are immune to this effect. Once used, you can't use this property of the armor again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodbow", - "fields": { - "name": "Bloodbow", - "desc": "This longbow is carved of a light, sturdy wood such as hickory or yew, and it is almost always stained a deep maroon hue, lacquered and aged under layers of sundried blood. The bow is sometimes decorated with reptilian teeth, centaur tails, or other battle trophies. The bow is designed to harm the particular type of creature whose blood most recently soaked the weapon. When you make a ranged attack roll with this magic weapon against a creature of that type, you have a +1 bonus to the attack and damage rolls. If the attack hits, the target must succeed on a DC 15 Wisdom saving throw or become enraged until the end of your next turn. While enraged, the target suffers a random short-term madness.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "blooddrinker-spear", - "fields": { - "name": "Blooddrinker Spear", - "desc": "Prized by gnolls, the upper haft of this spear is decorated with tiny animal skulls, feathers, and other adornments. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit a creature with this spear, you mark that creature for 1 hour. Until the mark ends, you deal an extra 1d6 damage to the target whenever you hit it with the spear, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find the target. If the target drops to 0 hit points, the mark ends. This property can't be used on a different creature until you spend a short rest cleaning the previous target's blood from the spear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-battleaxe", - "fields": { - "name": "Bloodfuel Battleaxe", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-blowgun", - "fields": { - "name": "Bloodfuel Blowgun", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-crossbow-hand", - "fields": { - "name": "Bloodfuel Crossbow Hand", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-crossbow-heavy", - "fields": { - "name": "Bloodfuel Crossbow Heavy", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-crossbow-light", - "fields": { - "name": "Bloodfuel Crossbow Light", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-dagger", - "fields": { - "name": "Bloodfuel Dagger", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-dart", - "fields": { - "name": "Bloodfuel Dart", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-glaive", - "fields": { - "name": "Bloodfuel Glaive", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-greataxe", - "fields": { - "name": "Bloodfuel Greataxe", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-greatsword", - "fields": { - "name": "Bloodfuel Greatsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-halberd", - "fields": { - "name": "Bloodfuel Halberd", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-handaxe", - "fields": { - "name": "Bloodfuel Handaxe", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-javelin", - "fields": { - "name": "Bloodfuel Javelin", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-lance", - "fields": { - "name": "Bloodfuel Lance", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-longbow", - "fields": { - "name": "Bloodfuel Longbow", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-longsword", - "fields": { - "name": "Bloodfuel Longsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-morningstar", - "fields": { - "name": "Bloodfuel Morningstar", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-pike", - "fields": { - "name": "Bloodfuel Pike", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-rapier", - "fields": { - "name": "Bloodfuel Rapier", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-scimitar", - "fields": { - "name": "Bloodfuel Scimitar", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-shortbow", - "fields": { - "name": "Bloodfuel Shortbow", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-shortsword", - "fields": { - "name": "Bloodfuel Shortsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-sickle", - "fields": { - "name": "Bloodfuel Sickle", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-spear", - "fields": { - "name": "Bloodfuel Spear", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-trident", - "fields": { - "name": "Bloodfuel Trident", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-warpick", - "fields": { - "name": "Bloodfuel Warpick", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodfuel-whip", - "fields": { - "name": "Bloodfuel Whip", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodlink-potion", - "fields": { - "name": "Bloodlink Potion", - "desc": "When you and another willing creature each drink at least half this potion, your life energies are linked for 1 hour. When you or the creature who drank the potion with you take damage while your life energies are linked, the total damage is divided equally between you. If the damage is an odd number, roll randomly to assign the extra point of damage. The effect is halted while you and the other creature are separated by more than 60 feet. The effect ends if either of you drop to 0 hit points. This potion's red liquid is viscous and has a metallic taste.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodpearl-bracelet-gold", - "fields": { - "name": "Bloodpearl Bracelet (Gold)", - "desc": "This silver or gold bracelet features three red pearls. You can use an action to remove a pearl and throw it up to 20 feet. When the pearl lands, it transforms into an ooze you determine by rolling a d6 and consulting the table that corresponds to the bracelet's color. The ooze vanishes at the next dawn or when it is reduced to 0 hit points. When you throw a pearl, your hit point maximum is reduced by the amount listed in the Blood Price column. This reduction can't be removed with the greater restoration spell or similar magic and lasts until the ooze vanishes or is reduced to 0 hit points. The ooze is friendly to you and your companions and acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the ooze acts in a fashion appropriate to its nature. Once all three pearls have been used, the bracelet can't be used again until the next dawn when the pearls regrow. | d6 | Ooze | CR | Blood Price |\n| --- | --------------------------- | --- | ---------------- |\n| 1 | Dipsa | 1/4 | 5 HP |\n| 2 | Treacle | 1/4 | 5 HP |\n| 3 | Gray Ooze | 1/2 | 5 HP |\n| 4 | Alchemy Apprentice Ooze | 1 | 7 ( 2d6) |\n| 5 | Suppurating Ooze | 1 | 7 ( 2d6) |\n| 6 | Gelatinous Cube | 2 | 10 ( 3d6) | | d6 | Ooze | CR | Blood Price |\n| --- | ----------------------- | --- | ---------------- |\n| 1 | Philosopher's Ghost | 4 | 17 ( 5d6) |\n| 2 | Ink Guardian Ooze | 4 | 17 ( 5d6) |\n| 3 | Black Pudding | 4 | 17 ( 5d6) |\n| 4 | Corrupting Ooze | 5 | 21 ( 6d6) |\n| 5 | Blood Ooze | 6 | 24 ( 7d6) |\n| 6 | Ruby ooze | 6 | 24 ( 7d6) |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodpearl-bracelet-silver", - "fields": { - "name": "Bloodpearl Bracelet (Silver)", - "desc": "This silver or gold bracelet features three red pearls. You can use an action to remove a pearl and throw it up to 20 feet. When the pearl lands, it transforms into an ooze you determine by rolling a d6 and consulting the table that corresponds to the bracelet's color. The ooze vanishes at the next dawn or when it is reduced to 0 hit points. When you throw a pearl, your hit point maximum is reduced by the amount listed in the Blood Price column. This reduction can't be removed with the greater restoration spell or similar magic and lasts until the ooze vanishes or is reduced to 0 hit points. The ooze is friendly to you and your companions and acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the ooze acts in a fashion appropriate to its nature. Once all three pearls have been used, the bracelet can't be used again until the next dawn when the pearls regrow. | d6 | Ooze | CR | Blood Price |\n| --- | --------------------------- | --- | ---------------- |\n| 1 | Dipsa | 1/4 | 5 HP |\n| 2 | Treacle | 1/4 | 5 HP |\n| 3 | Gray Ooze | 1/2 | 5 HP |\n| 4 | Alchemy Apprentice Ooze | 1 | 7 ( 2d6) |\n| 5 | Suppurating Ooze | 1 | 7 ( 2d6) |\n| 6 | Gelatinous Cube | 2 | 10 ( 3d6) | | d6 | Ooze | CR | Blood Price |\n| --- | ----------------------- | --- | ---------------- |\n| 1 | Philosopher's Ghost | 4 | 17 ( 5d6) |\n| 2 | Ink Guardian Ooze | 4 | 17 ( 5d6) |\n| 3 | Black Pudding | 4 | 17 ( 5d6) |\n| 4 | Corrupting Ooze | 5 | 21 ( 6d6) |\n| 5 | Blood Ooze | 6 | 24 ( 7d6) |\n| 6 | Ruby ooze | 6 | 24 ( 7d6) |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodprice-breastplate", - "fields": { - "name": "Bloodprice Breastplate", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodprice-chain-mail", - "fields": { - "name": "Bloodprice Chain-Mail", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodprice-chain-shirt", - "fields": { - "name": "Bloodprice Chain-Shirt", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodprice-half-plate", - "fields": { - "name": "Bloodprice Half-Plate", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodprice-hide", - "fields": { - "name": "Bloodprice Hide", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodprice-leather", - "fields": { - "name": "Bloodprice Leather", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodprice-padded", - "fields": { - "name": "Bloodprice Padded", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodprice-plate", - "fields": { - "name": "Bloodprice Plate", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodprice-ring-mail", - "fields": { - "name": "Bloodprice Ring-Mail", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodprice-scale-mail", - "fields": { - "name": "Bloodprice Scale-Mail", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodprice-splint", - "fields": { - "name": "Bloodprice Splint", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodprice-studded-leather", - "fields": { - "name": "Bloodprice Studded-Leather", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-battleaxe", - "fields": { - "name": "Bloodthirsty Battleaxe", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-blowgun", - "fields": { - "name": "Bloodthirsty Blowgun", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-crossbow-hand", - "fields": { - "name": "Bloodthirsty Crossbow Hand", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-crossbow-heavy", - "fields": { - "name": "Bloodthirsty Crossbow Heavy", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-crossbow-light", - "fields": { - "name": "Bloodthirsty Crossbow Light", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-dagger", - "fields": { - "name": "Bloodthirsty Dagger", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-dart", - "fields": { - "name": "Bloodthirsty Dart", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-glaive", - "fields": { - "name": "Bloodthirsty Glaive", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-greataxe", - "fields": { - "name": "Bloodthirsty Greataxe", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-greatsword", - "fields": { - "name": "Bloodthirsty Greatsword", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-halberd", - "fields": { - "name": "Bloodthirsty Halberd", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-handaxe", - "fields": { - "name": "Bloodthirsty Handaxe", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-javelin", - "fields": { - "name": "Bloodthirsty Javelin", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-lance", - "fields": { - "name": "Bloodthirsty Lance", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-longbow", - "fields": { - "name": "Bloodthirsty Longbow", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-longsword", - "fields": { - "name": "Bloodthirsty Longsword", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-morningstar", - "fields": { - "name": "Bloodthirsty Morningstar", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-pike", - "fields": { - "name": "Bloodthirsty Pike", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-rapier", - "fields": { - "name": "Bloodthirsty Rapier", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-scimitar", - "fields": { - "name": "Bloodthirsty Scimitar", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-shortbow", - "fields": { - "name": "Bloodthirsty Shortbow", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-shortsword", - "fields": { - "name": "Bloodthirsty Shortsword", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-sickle", - "fields": { - "name": "Bloodthirsty Sickle", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-spear", - "fields": { - "name": "Bloodthirsty Spear", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-trident", - "fields": { - "name": "Bloodthirsty Trident", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-warpick", - "fields": { - "name": "Bloodthirsty Warpick", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodthirsty-whip", - "fields": { - "name": "Bloodthirsty Whip", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bloodwhisper-cauldron", - "fields": { - "name": "Bloodwhisper Cauldron", - "desc": "This ancient, oxidized cauldron sits on three stubby legs and has images of sacrifice and ritual cast into its iron sides. When filled with concoctions that contain blood, the bubbling cauldron seems to whisper secrets of ancient power to those bold enough to listen. While filled with blood, the cauldron has the following properties. Once filled, the cauldron can't be refilled again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bludgeon-of-nightmares", - "fields": { - "name": "Bludgeon of Nightmares", - "desc": "You gain a +2 bonus to attack and damage rolls made with this weapon. The weapon appears to be a mace of disruption, and an identify spell reveals it to be such. The first time you use this weapon to kill a creature that has an Intelligence score of 5 or higher, you begin having nightmares and disturbing visions that disrupt your rest. Each time you complete a long rest, you must make a Wisdom saving throw. The DC equals 10 + the total number of creatures with Intelligence 5 or higher that you've reduced to 0 hit points with this weapon. On a failure, you gain no benefits from that long rest, and you gain one level of exhaustion.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "blue-rose", - "fields": { - "name": "Blue Rose", - "desc": "The petals of this cerulean flower can be prepared into a compote and consumed. A single flower can make 3 doses. When you consume a dose, your Intelligence, Wisdom, and Charisma scores are reduced by 1 each. This reduction lasts until you finish a long rest. You can consume up to three doses as part of casting a spell, and you can choose to affect your spell with one of the following options for each dose you consumed: - If the spell is of the abjuration school, increase the save DC by 2.\n- If the spell has more powerful effects when cast at a higher level, treat the spell's effects as if you had cast the spell at one slot level higher than the spell slot you used.\n- The spell is affected by one of the following metamagic options, even if you aren't a sorcerer: heightened, quickened, or subtle. A spell can't be affected by the same option more than once, though you can affect one spell with up to three different options. If you consume one or more doses without casting a spell, you can choose to instead affect a spell you cast before you finish a long rest. In addition, consuming blue rose gives you some protection against spells. When a spellcaster you can see casts a spell, you can use your reaction to cause one of the following:\n- You have advantage on the saving throw against the spell if it is a spell of the abjuration school.\n- If the spell is counterspell or dispel magic, the DC increases by 2 to interrupt your spellcasting or to end a magic effect on you. You can use this reaction a number of times equal to the number of doses you consumed. At the end of each long rest, you must make a DC 13 Constitution saving throw. On a failed save, your Hit Dice maximum is reduced by 25 percent. This reduction affects only the number of Hit Dice you can use to regain hit points during a short rest; it doesn't reduce your hit point maximum. This reduction lasts until you recover from the addiction. If you have no remaining Hit Dice to lose, you suffer one level of exhaustion, and your Hit Dice are returned to 75 percent of your maximum Hit Dice. The process then repeats until you die from exhaustion or you recover from the addiction. On a successful save, your exhaustion level decreases by one level. If a successful saving throw reduces your level of exhaustion below 1, you recover from the addiction. A greater restoration spell or similar magic ends the addiction and its effects. Consuming at least one dose of blue rose again halts the effects of the addiction for 2 days, at which point you can consume another dose of blue rose to halt it again or the effects of the addiction continue as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "blue-willow-cloak", - "fields": { - "name": "Blue Willow Cloak", - "desc": "This light cloak of fey silk is waterproof. While wearing this cloak in the rain, you can use your action to pull up the hood and become invisible for up to 1 hour. The effect ends early if you attack or cast a spell, if you use an action to pull down the hood, or if the rain stops. The cloak can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bone-skeleton-key", - "fields": { - "name": "Bone Skeleton Key", - "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bone-whip", - "fields": { - "name": "Bone Whip", - "desc": "This whip is constructed of humanoid vertebrae with their edges magically sharpened and pointed. The bones are joined together into a coiled line by strands of steel wire. The handle is half a femur wrapped in soft leather of tanned humanoid skin. You gain a +1 bonus to attack and damage rolls with this weapon. You can use an action to cause fiendish energy to coat the whip. For 1 minute, you gain 5 temporary hit points the first time you hit a creature on each turn. In addition, when you deal damage to a creature with this weapon, the creature must succeed on a DC 17 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage dealt. This reduction lasts until the creature finishes a long rest. Once used, this property of the whip can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bonebreaker-mace", - "fields": { - "name": "Bonebreaker Mace", - "desc": "You gain a +1 bonus on attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use it to attack an undead creature. Often given to the grim enforcers of great necropolises, these weapons can reduce the walking dead to splinters with a single strike. When you hit an undead creature with this magic weapon, treat that creature as if it is vulnerable to bludgeoning damage. If it is already vulnerable to bludgeoning damage, your attack deals an additional 1d6 radiant damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "book-of-ebon-tides", - "fields": { - "name": "Book of Ebon Tides", - "desc": "This strange, twilight-hued tome was written on pages of pure shadow weave, bound in traditional birch board covers wrapped with shadow goblin hide, and imbued with the memories of forests on the Plane of Shadow. Its covers often reflect light as if it were resting in a forest grove, and some owners swear that a goblin face appears on them now and again. The sturdy lock on one side opens only for wizards, elves, and Shadow Fey (see Tome of Beasts). The book has 15 charges, and it regains 2d6 + 3 expended charges daily in the twilight before dawn. If you expend the last charge, roll a 1d20. On a 1, the book retains its Ebon Tides and Shadow Lore properties but loses its Spells property. When the magic ritual completes, make an Intelligence (Arcana) check and consult the Terrain Changes table for the appropriate DCs. You can change the terrain in any one way listed at your result or lower. For example, if your result was 17, you could turn a small forest up to 30 feet across into a grassland, create a grove of trees up to 240 feet across, create a 6-foot-wide flowing stream, overgrow 1,500 feet of an existing road, or other similar option. Only natural terrain you can see can be affected; built structures, such as homes or castles, remain untouched, though roads and trails can be overgrown or hidden. On a failure, the terrain is unchanged. On a 1, an Overshadow (see Tome of Beasts 2) also appears and attacks you. On a 20, you can choose two options. Deities, Fey Lords and Ladies (see Tome of Beasts), archdevils, demon lords, and other powerful rulers in the Plane of Shadow can prevent these terrain modifications from happening in their presence or anywhere within their respective domains. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness, illusion, or shadows, such as invisibility or major image. | DC | Effect |\n| --- | --------------------------------------------------------------------------------------------------- |\n| 8 | Obscuring a path and removing all signs of passage (30 feet per point over 7) |\n| 10 | Creating a grove of trees (30 feet across per point over 9) |\n| 11 | Creating or drying up a lake or pond (up to 10 feet across per point over 10) |\n| 12 | Creating a flowing stream (1 foot wide per point over 11) |\n| 13 | Overgrowing an existing road with brush or trees (300 feet per point over 12) |\n| 14 | Shifting a river to a new course (300 feet per point over 13) |\n| 15 | Moving a forest (300 feet per point over 14) |\n| 16 | Creating a small hill, riverbank, or cliff (10 feet tall per point over 15) |\n| 17 | Turning a small forest into grassland or clearing, or vice versa (30 feet across per point over 16) |\n| 18 | Creating a new river (10 feet wide per point over 17) |\n| 19 | Turning a large forest into grassland, or vice versa (300 feet across per point over 19) |\n| 20 | Creating a new mountain (1,000 feet high per point over 19) |\n| 21 | Drying up an existing river (reducing width by 10 feet per point over 20) |\n| 22 | Shrinking an existing hill or mountain (reducing 1,000 feet per point over 21) | Written by an elvish princess at the Court of Silver Words, this volume encodes her understanding and mastery of shadow. Whimsical illusions suffuse every page, animating its illuminated capital letters and ornamental figures. The book is a famous work among the sable elves of that plane, and it opens to the touch of any elfmarked or sable elf character.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "book-of-eibon", - "fields": { - "name": "Book of Eibon", - "desc": "This fragmentary black book is reputed to descend from the realms of Hyperborea. It contains puzzling guidelines for frightful necromantic rituals and maddening interdimensional travel. The book holds the following spells: semblance of dread*, ectoplasm*, animate dead, speak with dead, emanation of Yoth*, green decay*, yellow sign*, eldritch communion*, create undead, gate, harm, astral projection, and Void rift*. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, the book can contain other spells similarly related to necromancy, madness, or interdimensional travel. If you are attuned to this book, you can use it as a spellbook and as an arcane focus. In addition, while holding the book, you can use a bonus action to cast a necromancy spell that is written in this tome without expending a spell slot or using any verbal or somatic components. Once used, this property of the book can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "book-shroud", - "fields": { - "name": "Book Shroud", - "desc": "When not bound to a book, this red leather book cover is embossed with images of eyes on every inch of its surface. When you wrap this cover around a tome, it shifts the book's appearance to a plain red cover with a title of your choosing and blank pages on which you can write. When viewing the wrapped book, other creatures see the plain red version with any contents you've written. A creature succeeding on a DC 15 Wisdom (Perception) check sees the real book and can remove the shroud.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bookkeeper-inkpot", - "fields": { - "name": "Bookkeeper Inkpot", - "desc": "This glass vessel looks like an ordinary inkpot. A quill fashioned from an ostrich feather accompanies the inkpot. You can use an action to speak the inkpot's command word, targeting a Bookkeeper (see Creature Codex) that you can see within 10 feet of you. An unwilling bookkeeper must succeed on a DC 13 Charisma saving throw or be transferred to the inkpot, making you the bookkeeper's new “creator.” While the bookkeeper is contained within the inkpot, it suffers no harm due to being away from its bound book, but it can't use any of its actions or traits that apply to it being in a bound book. Dipping the quill in the inkpot and writing in a book binds the bookkeeper to the new book. If the inkpot is found as treasure, there is a 50 percent chance it contains a bookkeeper. An identify spell reveals if a bookkeeper is inside the inkpot before using the inkpot's ink.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bookmark-of-eldritch-insight", - "fields": { - "name": "Bookmark of Eldritch Insight", - "desc": "This cloth bookmark is inscribed with blurred runes that are hard to decipher. If you use this bookmark while researching ancient evils (such as arch-devils or demon lords) or otherworldly mysteries (such as the Void or the Great Old Ones) during a long rest, the bookmark crumbles to dust and grants you its knowledge. You double your proficiency bonus on Arcana, History, and Religion checks to recall lore about the subject of your research for the next 24 hours. If you don't have proficiency in these skills, you instead gain proficiency in them for the next 24 hours, but you are proficient only when recalling information about the subject of your research.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "boots-of-pouncing", - "fields": { - "name": "Boots of Pouncing", - "desc": "These soft leather boots have a collar made of Albino Death Weasel fur (see Creature Codex). While you wear these boots, your walking speed becomes 40 feet, unless your walking speed is higher. Your speed is still reduced if you are encumbered or wearing heavy armor. If you move at least 20 feet straight toward a creature and hit it with a melee weapon attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone. If the target is prone, you can make one melee weapon attack against it as a bonus action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "boots-of-quaking", - "fields": { - "name": "Boots of Quaking", - "desc": "While wearing these steel-toed boots, the earth itself shakes when you walk, causing harmless, but unsettling, tremors. If you move at least 15 feet in a single turn, all creatures within 10 feet of you at any point during your movement must make a DC 16 Strength saving throw or take 1d6 force damage and fall prone. In addition, while wearing these boots, you can cast earthquake, requiring no concentration, by speaking a command word and jumping on a point on the ground. The spell is centered on that point. Once you cast earthquake in this way, you can't do so again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "boots-of-solid-footing", - "fields": { - "name": "Boots of Solid Footing", - "desc": "A thick, rubbery sole covers the bottoms and sides of these stout leather boots. They are useful for maneuvering in cluttered alleyways, slick sewers, and the occasional patch of ice or gravel. While you wear these boots, you can use a bonus action to speak the command word. If you do, nonmagical difficult terrain doesn't cost you extra movement when you walk across it wearing these boots. If you speak the command word again as a bonus action, you end the effect. When the boots' property has been used for a total of 1 minute, the magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "boots-of-the-grandmother", - "fields": { - "name": "Boots of the Grandmother", - "desc": "While wearing these boots, you have proficiency in the Stealth skill if you don't already have it, and you double your proficiency bonus on Dexterity (Stealth) checks. As an action, you can drip three drops of fresh blood onto the boots to ease your passage through the world. For 1d6 hours, you and your allies within 30 feet of you ignore difficult terrain. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "boots-of-the-swift-striker", - "fields": { - "name": "Boots of the Swift Striker", - "desc": "While you wear these boots, your walking speed increases by 10 feet. In addition, when you take the Dash action while wearing these boots, you can make a single weapon attack at the end of your movement. You can't continue moving after making this attack.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bottled-boat", - "fields": { - "name": "Bottled Boat", - "desc": "This clear glass bottle contains a tiny replica of a wooden rowboat down to the smallest detail, including two stout oars, a miniature coil of hemp rope, a fishing net, and a small cask. You can use an action to break the bottle, destroying the bottle and releasing its contents. The rowboat and all of the items emerge as full-sized, normal, and permanent items of their type, which includes 50 feet of hempen rope, a cask containing 20 gallons of fresh water, two oars, and a 12-foot-long rowboat.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bountiful-cauldron", - "fields": { - "name": "Bountiful Cauldron", - "desc": "If this small, copper cauldron is filled with water and a half pound of meat, vegetables, or other foodstuffs then placed over a fire, it produces a simple, but hearty stew that provides one creature with enough nourishment to sustain it for one day. As long as the food is kept within the cauldron with the lid on, the food remains fresh and edible for up to 24 hours, though it grows cold unless reheated.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "box-of-secrets", - "fields": { - "name": "Box of Secrets", - "desc": "This well-made, cubical box appears to be a normal container that can hold as much as a normal chest. However, each side of the chest is a lid that can be opened on cunningly concealed hinges. A successful DC 15 Wisdom (Perception) check notices that the sides can be opened. When you use an action to turn the box so a new side is facing up, and speak the command word before opening the lid, the current contents of the chest slip into an interdimensional space, leaving it empty once more. You can use an action to fill the box again, then turn it over to a new side and open it, again sending the contents to the interdimensional space. This can be done up to six times, once for each side of the box. To gain access to a particular batch of contents, the correct side must be facing up, and you must use an action to speak the command word as you open the lid on that side. A box of secrets is often crafted with specific means of telling the sides apart, such as unique carvings on each side, or having each side painted a different color. If any side of the box is destroyed completely, the contents that were stored through that side are lost. Likewise, if the entire box is destroyed, the contents are lost forever.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bracelet-of-the-fire-tender", - "fields": { - "name": "Bracelet of the Fire Tender", - "desc": "This bracelet is made of thirteen small, roasted pinecones lashed together with lengths of dried sinew. It smells of pine and woodsmoke. It is uncomfortable to wear over bare skin. While wearing this bracelet, you don't have disadvantage on Wisdom (Perception) checks that rely on sight when looking in areas lightly obscured by nonmagical smoke or fog.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "braid-whip-clasp", - "fields": { - "name": "Braid Whip Clasp", - "desc": "This intricately carved ivory clasp can be wrapped around or woven into braided hair 3 feet or longer. While the clasp is attached to your braided hair, you can speak its command word as a bonus action and transform your braid into a dangerous whip. If you speak the command word again, you end the effect. You gain a +1 bonus to attack and damage rolls made with this magic whip. When the clasp's property has been used for a total of 10 minutes, you can't use it to transform your braid into a whip again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "brain-juice", - "fields": { - "name": "Brain Juice", - "desc": "This foul-smelling, murky, purple-gray liquid is created from the liquefied brains of spellcasting creatures, such as aboleths. Anyone consuming this repulsive mixture must make a DC 15 Intelligence saving throw. On a successful save, the drinker is infused with magical power and regains 1d6 + 4 expended spell slots. On a failed save, the drinker is afflicted with short-term madness for 1 day. If a creature consumes multiple doses of brain juice and fails three consecutive Intelligence saving throws, it is afflicted with long-term madness permanently and automatically fails all further saving throws brought about by drinking brain juice.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "brass-clockwork-staff", - "fields": { - "name": "Brass Clockwork Staff", - "desc": "This curved staff is made of coiled brass and glass wire. You can use an action to speak one of three command words and throw the staff on the ground within 10 feet of you. The staff transforms into one of three wireframe creatures, depending on the command word: a unicorn, a hound, or a swarm of tiny beetles. The wireframe creature or swarm is under your control and acts on its own initiative count. On your turn, you can mentally command the wireframe creature or swarm if it is within 60 feet of you and you aren't incapacitated. You decide what action the creature takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location. The wireframe unicorn lasts for up to 1 hour, uses the statistics of a warhorse, and can be used as a mount. The wireframe hound lasts for up to 5 minutes, uses the statistics of a dire wolf, and has advantage to track any creature you damaged within the past hour. The wireframe beetle swarm lasts for up to 1 minute, uses the statistics of a swarm of beetles, and can destroy nonmagical objects that aren't being worn or carried and that aren't made of stone or metal (destruction happens at a rate of 1 pound of material per round, up to a maximum of 10 pounds). At the end of the duration, the wireframe creature or swarm reverts to its staff form. It reverts to its staff form early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. If it reverts to its staff form early by being reduced to 0 hit points, the staff becomes inert and unusable until the third dawn after the creature was killed. Otherwise, the wireframe creature or swarm has all of its hit points when you transform the staff into the creature again. When a wireframe creature or swarm becomes the staff again, this property of the staff can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "brass-snake-ball", - "fields": { - "name": "Brass Snake Ball", - "desc": "Most commonly used by assassins to strangle sleeping victims, this heavy, brass ball is 6 inches across and weighs approximately 15 pounds. It has the image of a coiled snake embossed around it. You can use an action to command the orb to uncoil into a brass snake approximately 6 feet long and 3 inches thick. You can direct it by telepathic command to attack any creature within your line of sight. Use the statistics for the constrictor snake, but use Armor Class 14 and increase the challenge rating to 1/2 (100 XP). The snake can stay animate for up to 5 minutes or until reduced to 0 hit points. Being reduced to 0 hit points causes the snake to revert to orb form and become inert for 1 week. If damaged but not reduced to 0 hit points, the snake has full hit points when summoned again. Once you have used the orb to become a snake, it can't be used again until the next sunset.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "brawlers-leather", - "fields": { - "name": "Brawler's Leather", - "desc": "These rawhide straps have lines of crimson runes running along their length. They require 10 minutes of bathing them in salt water before carefully wrapping them around your forearms. Once fitted, you gain a +1 bonus to attack and damage rolls made with unarmed strikes. The straps become brittle with use. After you have dealt damage with unarmed strike attacks 10 times, the straps crumble away.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "brawn-armor", - "fields": { - "name": "Brawn Armor", - "desc": "This armor was crafted from the hide of an ancient grizzly bear. While wearing it, you gain a +1 bonus to AC, and you have advantage on grapple checks. The armor has 3 charges. You can use a bonus action to expend 1 charge to deal your unarmed strike damage to a creature you are grappling. The armor regains all expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "brazen-band", - "fields": { - "name": "Brazen Band", - "desc": "Made by kobold clockwork mages, this brass clockwork ring is formed to look like a coiled dragon. When you speak or whisper the Draconic command word etched on the inside of the ring, the brass dragon uncoils and attempts to pick any lock within 10 feet of you. The dragon picks the lock using your proficiency bonus but with advantage. It is treated as having thieves' tools when attempting to pick locks. It uses your Dexterity (Stealth) bonus for purposes of not being spotted but with advantage due to its extremely small size. Whether successful or not, once you have used the ring to attempt to pick a lock, it can't be used again until the next sunset.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "brazen-bulwark", - "fields": { - "name": "Brazen Bulwark", - "desc": "This rectangular shield is plated with polished brass and resembles a crenelated tower. While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "breaker-lance", - "fields": { - "name": "Breaker Lance", - "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. When you attack an object or structure with this magic lance and hit, maximize your weapon damage dice against the target. The lance has 3 charges. As part of an attack action with the lance, you can expend a charge while striking a barrier created by a spell, such as a wall of fire or wall of force, or an entryway protected by the arcane lock spell. You must make a Strength check against a DC equal to 10 + the spell's level. On a successful check, the spell ends. The lance regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "breastplate-of-warding-1", - "fields": { - "name": "Breastplate of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "breastplate-of-warding-2", - "fields": { - "name": "Breastplate of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "breastplate-of-warding-3", - "fields": { - "name": "Breastplate of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "breathing-reed", - "fields": { - "name": "Breathing Reed", - "desc": "This tiny river reed segment is cool to the touch. If you chew the reed while underwater, it provides you with enough air to breathe for up to 10 minutes. At the end of the duration, the reed loses its magic and can be harmlessly swallowed or spit out.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "briarthorn-bracers", - "fields": { - "name": "Briarthorn Bracers", - "desc": "These leather bracers are inscribed with Elvish runes. While wearing these bracers, you gain a +1 bonus to AC if you are using no shield. In addition, while in a forest, nonmagical difficult terrain costs you no extra movement.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "broken-fang-talisman", - "fields": { - "name": "Broken Fang Talisman", - "desc": "This talisman is a piece of burnished copper, shaped into a curved fang with a large crack through the middle. While wearing the talisman, you can use an action to cast the encrypt / decrypt (see Deep Magic for 5th Edition) spell. The talisman can't be used this way again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "broom-of-sweeping", - "fields": { - "name": "Broom of Sweeping", - "desc": "You can use an action to speak the broom's command word and give it short instructions consisting of a few words, such as “sweep the floor” or “dust the cabinets.” The broom can clean up to 5 cubic feet each minute and continues cleaning until you use another action to deactivate it. The broom can't climb barriers higher than 5 feet and can't open doors.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "brotherhood-of-fezzes", - "fields": { - "name": "Brotherhood of Fezzes", - "desc": "This trio of fezzes works only if all three hats are worn within 60 feet of each other by creatures of the same size. If one of the hats is removed or moves further than 60 feet from the others or if creatures of different sizes are wearing the hats, the hats' magic temporarily ceases. While three creatures of the same size wear these fezzes within 60 feet of each other, each creature can use its action to cast the alter self spell from it at will. However, all three wearers of the fezzes are affected as if the same spell was simultaneously cast on each of them, making each wearer appear identical to the other. For example, if one Medium wearer uses an action to change its appearance to that of a specific elf, each other wearer's appearance changes to look like the exact same elf.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "brown-honey-buckle", - "fields": { - "name": "Brown Honey Buckle", - "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "bubbling-retort", - "fields": { - "name": "Bubbling Retort", - "desc": "This long, thin retort is fashioned from smoky yellow glass and is topped with an intricately carved brass stopper. You can unstopper the retort and fill it with liquid as an action. Once you do so, it spews out multicolored bubbles in a 20-foot radius. The bubbles last for 1d4 + 1 rounds. While they last, creatures within the radius are blinded and the area is heavily obscured to all creatures except those with tremorsense. The liquid in the retort is destroyed in the process with no harmful effect on its surroundings. If any bubbles are popped, they burst with a wet smacking sound but no other effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "buckle-of-blasting", - "fields": { - "name": "Buckle of Blasting", - "desc": "This soot-colored steel buckle has an exploding flame etched into its surface. It can be affixed to any common belt. While wearing this buckle, you have resistance to force damage. In addition, the buckle has 5 charges, and it regains 1d4 + 1 charges daily at dawn. It has the following properties.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "bullseye-arrow", - "fields": { - "name": "Bullseye Arrow", - "desc": "This arrow has bright red fletching and a blunt, red tip. You gain a +1 bonus to attack rolls made with this magic arrow. On a hit, the arrow deals no damage, but it paints a magical red dot on the target for 1 minute. While the dot lasts, the target takes an extra 1d4 damage of the weapon's type from any ranged attack that hits it. In addition, ranged weapon attacks against the target score a critical hit on a roll of 19 or 20. When this arrow hits a target, the arrow vanishes in a flash of red light and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "burglars-lock-and-key", - "fields": { - "name": "Burglar's Lock and Key", - "desc": "This heavy iron lock bears a stout, pitted key permanently fixed in the keyhole. As an action, you can twist the key counterclockwise to instantly open one door, chest, bag, bottle, or container of your choice within 30 feet. Any container or portal weighing more than 30 pounds or restrained in any way (latched, bolted, tied, or the like) automatically resists this effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "burning-skull", - "fields": { - "name": "Burning Skull", - "desc": "This appallingly misshapen skull—though alien and monstrous in aspect—is undeniably human, and it is large and hollow enough to be worn as a helm by any Medium humanoid. The skull helm radiates an unholy spectral aura, which sheds dim light in a 10-foot radius. According to legends, gazing upon a burning skull freezes the blood and withers the brain of one who understands not its mystery.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "butter-of-disbelief", - "fields": { - "name": "Butter of Disbelief", - "desc": "This stick of magical butter is carved with arcane runes and never melts or spoils. It has 3 charges. While holding this butter, you can use an action to slice off a piece and expend 1 charge to cast the grease spell (save DC 13) from it. The grease that covers the ground looks like melted butter. The butter regains all expended charges daily at dawn. If you expend the last charge, the butter disappears.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "buzzing-battleaxe", - "fields": { - "name": "Buzzing Battleaxe", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "buzzing-greataxe", - "fields": { - "name": "Buzzing Greataxe", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "buzzing-greatsword", - "fields": { - "name": "Buzzing Greatsword", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "buzzing-handaxe", - "fields": { - "name": "Buzzing Handaxe", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "buzzing-longsword", - "fields": { - "name": "Buzzing Longsword", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "buzzing-rapier", - "fields": { - "name": "Buzzing Rapier", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "buzzing-scimitar", - "fields": { - "name": "Buzzing Scimitar", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "buzzing-shortsword", - "fields": { - "name": "Buzzing Shortsword", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "candied-axe", - "fields": { - "name": "Candied Axe", - "desc": "This battleaxe bears a golden head spun from crystalized honey. Its wooden handle is carved with reliefs of bees. You gain a +2 bonus to attack and damage rolls made with this magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "candle-of-communion", - "fields": { - "name": "Candle of Communion", - "desc": "This black candle burns with an eerie, violet flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on necromancy spells. After burning for 1 hour, or if the candle's flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the speak with dead spell with it. Doing so destroys the candle.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "candle-of-summoning", - "fields": { - "name": "Candle of Summoning", - "desc": "This black candle burns with an eerie, green flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on conjuration spells. After burning for 1 hour, or if the flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the spirit guardians spell (save DC 15) with it. Doing so destroys the candle.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "candle-of-visions", - "fields": { - "name": "Candle of Visions", - "desc": "This black candle burns with an eerie, blue flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on divination spells. After burning for 1 hour, or if the flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the augury spell with it, which reveals its otherworldly omen in the candle's smoke. Doing so destroys the candle.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "cap-of-thorns", - "fields": { - "name": "Cap of Thorns", - "desc": "Donning this thorny wooden circlet causes it to meld with your scalp. It can be removed only upon your death or by a remove curse spell. The cap ingests some of your blood, dealing 2d4 piercing damage. After this first feeding, the thorns feed once per day for 1d4 piercing damage. Once per day, you can sacrifice 1 hit point per level you possess to cast a special entangle spell made of thorny vines. Charisma is your spellcasting ability for this effect. Restrained creatures must make a successful Charisma saving throw or be affected by a charm person spell as thorns pierce their body. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target fails three consecutive saves, the thorns become deeply rooted and the charmed effect is permanent until remove curse or similar magic is cast on the target.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "cape-of-targeting", - "fields": { - "name": "Cape of Targeting", - "desc": "You gain a +1 bonus to AC while wearing this long, flowing cloak. Whenever you are within 10 feet of more than two creatures, it subtly and slowly shifts its color to whatever the creatures nearest you find the most irritating. While within 5 feet of a hostile creature, you can use a bonus action to speak the cloak's command word to activate it, allowing your allies' ranged attacks to pass right through you. For 1 minute, each friendly creature that makes a ranged attack against a hostile creature within 5 feet of you has advantage on the attack roll. Each round the cloak is active, it enthusiastically and telepathically says “shoot me!” in different tones and cadences into the minds of each friendly creature that can see you and the cloak. The cloak can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "captains-flag", - "fields": { - "name": "Captain's Flag", - "desc": "This red and white flag adorned with a white anchor is made of velvet that never seems to fray in strong wings. When mounted and flown on a ship, the flag changes to the colors and symbol of the ship's captain and crew. While this flag is mounted on a ship, the captain and its allies have advantage on saving throws against being charmed or frightened. In addition, when the captain is reduced to 0 hit points while on the ship where this flag flies, each ally of the captain has advantage on its attack rolls until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "captains-goggles", - "fields": { - "name": "Captain's Goggles", - "desc": "These copper and glass goggles are prized by air and sea captains across the world. The goggles are designed to repel water and never fog. After attuning to the goggles, your name (or preferred moniker) appears on the side of the goggles. While wearing the goggles, you can't suffer from exhaustion.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "case-of-preservation", - "fields": { - "name": "Case of Preservation", - "desc": "This item appears to be a standard map or scroll case fashioned of well-oiled leather. You can store up to ten rolled-up sheets of paper or five rolled-up sheets of parchment in this container. While ensconced in the case, the contents are protected from damage caused by fire, exposure to water, age, or vermin.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "cataloguing-book", - "fields": { - "name": "Cataloguing Book", - "desc": "This nondescript book contains statistics and details on various objects. Libraries often use these tomes to assist visitors in finding the knowledge contained within their stacks. You can use an action to touch the book to an object you wish to catalogue. The book inscribes the object's name, provided by you, on one of its pages and sketches a rough illustration to accompany the object's name. If the object is a magic item or otherwise magic-imbued, the book also inscribes the object's properties. The book becomes magically connected to the object, and its pages denote the object's current location, provided the object is not protected by nondetection or other magic that thwarts divination magic. When you attune to this book, its previously catalogued contents disappear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "catalyst-oil", - "fields": { - "name": "Catalyst Oil", - "desc": "This special elemental compound draws on nearby energy sources. Catalyst oils are tailored to one specific damage type (not including bludgeoning, piercing, or slashing damage) and have one dose. Whenever a spell or effect of this type goes off within 60 feet of a dose of catalyst oil, the oil catalyzes and becomes the spell's new point of origin. If the spell affects a single target, its original point of origin becomes the new target. If the spell's area is directional (such as a cone or a cube) you determine the spell's new direction. This redirected spell is easier to evade. Targets have advantage on saving throws against the spell, and the caster has disadvantage on the spell attack roll.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "celestial-charter", - "fields": { - "name": "Celestial Charter", - "desc": "Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the celestial, negotiating a service from it in exchange for a reward. The celestial is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the celestial, the truce is broken, and the creature can act normally. If the celestial refuses the offer, it is free to take any actions it wishes. Should you and the celestial reach an agreement that is satisfactory to both parties, you must sign the charter and have the celestial do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the celestial to the agreement until its service is rendered and the reward paid, at which point the scroll vanishes in a bright flash of light. A celestial typically attempts to fulfill its end of the bargain as best it can, and it is angry if you exploit any loopholes or literal interpretations to your advantage. If either party breaks the bargain, that creature immediately takes 10d6 radiant damage, and the charter is destroyed, ending the contract.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "celestial-sextant", - "fields": { - "name": "Celestial Sextant", - "desc": "The ancient elves constructed these sextants to use as navigational aids on all their seagoing vessels. The knowledge of their manufacture has been lost, and few of them remain. While attuned to the sextant, you can spend 1 minute using the sextant to determine your latitude and longitude, provided you can see the sun or stars. You can use an action steer up to four vessels that are within 1 mile of the sextant, provided their crews are willing. To do so, you must have spent at least 1 hour aboard each of the controlled vessels, performing basic sailing tasks and familiarizing yourself with the vessel.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "censer-of-dark-shadows", - "fields": { - "name": "Censer of Dark Shadows", - "desc": "This enchanted censer paints the air with magical, smoky shadow. While holding the censer, you can use an action to speak its command word, causing the censer to emit shadow in a 30-foot radius for 1 hour. Bright light and sunlight within this area is reduced to dim light, and dim light within this area is reduced to magical darkness. The shadow spreads around corners, and nonmagical light can't illuminate this shadow. The shadow emanates from the censer and moves with it. Completely enveloping the censer within another sealed object, such as a lidded pot or a leather bag, blocks the shadow. If any of this effect's area overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled. Once the censer is used to emit shadow, it can't do so again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "centaur-wrist-wraps", - "fields": { - "name": "Centaur Wrist-Wraps", - "desc": "These leather and fur wraps are imbued with centaur shamanic magic. The wraps are stained a deep amber color, and intricate motifs painted in blue seem to float above the surface of the leather. While wearing these wraps, you can call on their magic to reroll an attack made with a shortbow or longbow. You must use the new roll. Once used, the wraps must be held in wood smoke for 15 minutes before they can be used in this way again.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "cephalopod-breastplate", - "fields": { - "name": "Cephalopod Breastplate", - "desc": "This bronze breastplate depicts two krakens fighting. While wearing this armor, you gain a +1 bonus to AC. You can use an action to speak the armor's command word to release a cloud of black mist (if above water) or black ink (if underwater). It billows out from you in a 20-foot-radius cloud of mist or ink. The area is heavily obscured for 1 minute, although a wind of moderate or greater speed (at least 10 miles per hour) or a significant current disperses it. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ceremonial-sacrificial-knife", - "fields": { - "name": "Ceremonial Sacrificial Knife", - "desc": "Runes dance along the blade of this keen knife. Sacrificial Knife (Common). While attuned to it, you can use this magic, rune-inscribed dagger as a spellcasting focus. Ceremonial Sacrificial Knife (Uncommon). More powerful versions of this blade also exist. While holding the greater version of this dagger, you can use it to perform a sacrificial ritual during a short rest. If you sacrifice a Tiny or Small creature, you regain one expended 1st-level spell slot. If you sacrifice a Medium or larger creature, you regain one expended 2nd-level spell slot.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "chain-mail-of-warding-1", - "fields": { - "name": "Chain Mail of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "chain-mail-of-warding-2", - "fields": { - "name": "Chain Mail of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chain-mail-of-warding-3", - "fields": { - "name": "Chain Mail of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chain-shirt-of-warding-1", - "fields": { - "name": "Chain Shirt of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "chain-shirt-of-warding-2", - "fields": { - "name": "Chain Shirt of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chain-shirt-of-warding-3", - "fields": { - "name": "Chain Shirt of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chainbreaker-greatsword", - "fields": { - "name": "Chainbreaker Greatsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chainbreaker-longsword", - "fields": { - "name": "Chainbreaker Longsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chainbreaker-rapier", - "fields": { - "name": "Chainbreaker Rapier", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chainbreaker-scimitar", - "fields": { - "name": "Chainbreaker Scimitar", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chainbreaker-shortsword", - "fields": { - "name": "Chainbreaker Shortsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chalice-of-forbidden-ecstasies", - "fields": { - "name": "Chalice of Forbidden Ecstasies", - "desc": "The cup of this garnet chalice is carved in the likeness of a human skull. When the chalice is filled with blood, the dark red gemstone pulses with a scintillating crimson light that sheds dim light in a 5-foot radius. Each creature that drinks blood from this chalice has disadvantage on enchantment spells you cast for the next 24 hours. In addition, you can use an action to cast the suggestion spell, using your spell save DC, on a creature that has drunk blood from the chalice within the past 24 hours. You need to concentrate on this suggestion to maintain it during its duration. Once used, the suggestion power of the chalice can't be used again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "chalk-of-exodus", - "fields": { - "name": "Chalk of Exodus", - "desc": "This piece of chalk glitters in the light, as if infused with particles of mica or gypsum. The chalk has 10 charges. You can use an action and expend 1 charge to draw a door on any solid surface upon which the chalk can leave a mark. You can then push open the door while picturing a real door within 10 miles of your current location. The door you picture must be one that you have passed through, in the normal fashion, once before. The chalk opens a magical portal to that other door, and you can step through the portal to appear at that other location as if you had stepped through that other door. At the destination, the target door opens, revealing a glowing portal from which you emerge. Once through, you can shut the door, dispelling the portal, or you can leave it open for up to 1 minute. While the door is open, any creature that can fit through the chalk door can traverse the portal in either direction. Each time you use the chalk, roll a 1d20. On a roll of 1, the magic malfunctions and connects you to a random door similar to the one you pictured within the same range, though it might be a door you have never seen before. The chalk becomes nonmagical when you use the last charge.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "chamrosh-salve", - "fields": { - "name": "Chamrosh Salve", - "desc": "This 3-inch-diameter ceramic jar contains 1d4 + 1 doses of a syrupy mixture that smells faintly of freshly washed dog fur. The jar is a glorious gold-white, resembling the shimmering fur of a Chamrosh (see Tome of Beasts 2), the holy hound from which this salve gets its name. As an action, one dose of the ointment can be applied to the skin. The creature that receives it regains 2d8 + 1 hit points and is cured of the charmed, frightened, and poisoned conditions.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "charlatans-veneer", - "fields": { - "name": "Charlatan's Veneer", - "desc": "This silken scarf is a more powerful version of the Commoner's Veneer (see page 128). When in an area containing 12 or more humanoids, Wisdom (Perception) checks to spot you have disadvantage. You can use a bonus action to call on the power in the scarf to invoke a sense of trust in those to whom you speak. If you do so, you have advantage on the next Charisma (Persuasion) check you make against a humanoid while you are in an area containing 12 or more humanoids. In addition, while wearing the scarf, you can use modify memory on a humanoid you have successfully persuaded in the last 24 hours. The scarf can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "charm-of-restoration", - "fields": { - "name": "Charm of Restoration", - "desc": "This fist-sized ball of tightly-wound green fronds contains the bark of a magical plant with curative properties. A natural loop is formed from one of the fronds, allowing the charm to be hung from a pack, belt, or weapon pommel. As long as you carry this charm, whenever you are targeted by a spell or magical effect that restores your hit points, you regain an extra 1 hit point.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "chieftains-axe", - "fields": { - "name": "Chieftain's Axe", - "desc": "Furs conceal the worn runes lining the haft of this oversized, silver-headed battleaxe. You gain a +2 bonus to attack and damage rolls made with this silvered, magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chillblain-breastplate", - "fields": { - "name": "Chillblain Breastplate", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chillblain-chain-mail", - "fields": { - "name": "Chillblain Chain Mail", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chillblain-chain-shirt", - "fields": { - "name": "Chillblain Chain Shirt", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chillblain-half-plate", - "fields": { - "name": "Chillblain Half Plate", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chillblain-plate", - "fields": { - "name": "Chillblain Plate", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chillblain-ring-mail", - "fields": { - "name": "Chillblain Ring Mail", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chillblain-scale-mail", - "fields": { - "name": "Chillblain Scale Mail", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chillblain-splint", - "fields": { - "name": "Chillblain Splint", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chronomancers-pocket-clock", - "fields": { - "name": "Chronomancer's Pocket Clock", - "desc": "This golden pocketwatch has 3 charges and regains 1d3 expended charges daily at midnight. While holding it, you can use an action to wind it and expend 1 charge to cast the haste spell from it. If the pendant is destroyed (AC 14, 15 hit points) while it has 3 charges, the creature that broke it gains the effects of the time stop spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "cinch-of-the-wolfmother", - "fields": { - "name": "Cinch of the Wolfmother", - "desc": "This belt is made of the treated and tanned intestines of a dire wolf, enchanted to imbue those who wear it with the ferocity and determination of the wolf. While wearing this belt, you can use an action to cast the druidcraft or speak with animals spell from it at will. In addition, you have advantage on Wisdom (Perception) checks that rely on hearing or smell. If you are reduced to 0 hit points while attuned to the belt and fail two death saving throws, you die immediately as your body violently erupts in a shower of blood, and a dire wolf emerges from your entrails. You assume control of the dire wolf, and it gains additional hit points equal to half of your maximum hit points prior to death. The belt then crumbles and is destroyed. If the wolf is targeted by a remove curse spell, then you are reborn when the wolf dies, just as the wolf was born when you died. However, if the curse remains after the wolf dies, you remain dead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "circlet-of-holly", - "fields": { - "name": "Circlet of Holly", - "desc": "While wearing this circlet, you gain the following benefits: - **Language of the Fey**. You can speak and understand Sylvan. - **Friend of the Fey.** You have advantage on ability checks to interact socially with fey creatures.\n- **Poison Sense.** You know if any food or drink you are holding contains poison.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "circlet-of-persuasion", - "fields": { - "name": "Circlet of Persuasion", - "desc": "While wearing this circlet, you have advantage on Charisma (Persuasion) checks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "clacking-teeth", - "fields": { - "name": "Clacking Teeth", - "desc": "Taken from a Fleshspurned (see Tome of Beasts 2), a toothy ghost, this bony jaw holds oversized teeth that sweat ectoplasm. The jaw has 3 charges and regains 1d3 expended charges daily at dusk. While holding the jaw, you can use an action to expend 1 of its charges and choose a target within 30 feet of you. The jaw's teeth clatter together, and the target must succeed on a DC 15 Wisdom saving throw or be confused for 1 minute. While confused, the target acts as if under the effects of the confusion spell. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "clamor-bell", - "fields": { - "name": "Clamor Bell", - "desc": "You can affix this small, brass bell to an object with the leather cords tied to its top. If anyone other than you picks up, interacts with, or uses the object without first speaking the bell's command word, it rings for 5 minutes or until you touch it and speak the command word again. The ringing is audible 100 feet away. If a creature takes an action to cut the bindings holding the bell onto the object, the bell ceases ringing 1 round after being released from the object.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "clarifying-goggles", - "fields": { - "name": "Clarifying Goggles", - "desc": "These goggles contain a lens of slightly rippled blue glass that turns clear underwater. While wearing these goggles underwater, you don't have disadvantage on Wisdom (Perception) checks that rely on sight when peering through silt, murk, or other natural underwater phenomena that would ordinarily lightly obscure your vision. While wearing these goggles above water, your vision is lightly obscured.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "cleaning-concoction", - "fields": { - "name": "Cleaning Concoction", - "desc": "This fresh-smelling, clear green liquid can cover a Medium or smaller creature or object (or matched set of objects, such as a suit of clothes or pair of boots). Applying the liquid takes 1 minute. It removes soiling, stains, and residue, and it neutralizes and removes odors, unless those odors are particularly pungent, such as in skunks or creatures with the Stench trait. Once the potion has cleaned the target, it evaporates, leaving the creature or object both clean and dry.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-coagulation", - "fields": { - "name": "Cloak of Coagulation", - "desc": "While wearing this rust red cloak, your blood quickly clots. When you are subjected to an effect that causes additional damage on subsequent rounds due to bleeding, blood loss, or continual necrotic damage, such as a horned devil's tail attack or a sword of wounding, the effect ceases after a single round of damage. For example, if a stirge hits you with its proboscis, you take the initial damage, plus the damage from blood loss on the following round, after which the wound clots, the stirge detaches, and you take no further damage. The cloak doesn't prevent a creature from using such an attack or effect again; a horned devil or a stirge can attack you again, though the cloak will continue to stop any recurring effects after a single round.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-petals", - "fields": { - "name": "Cloak of Petals", - "desc": "This delicate cloak is covered in an array of pink, purple, and yellow flowers. While wearing this cloak, you have advantage on Dexterity (Stealth) checks made to hide in areas containing flowering plants. The cloak has 3 charges. When a creature you can see targets you with an attack, you can use your reaction to expend 1 of its charges to release a shower of petals from the cloak. If you do so, the attacker has disadvantage on the attack roll. The cloak regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-sails", - "fields": { - "name": "Cloak of Sails", - "desc": "The interior of this simple, black cloak looks like white sailcloth. While wearing this cloak, you gain a +1 bonus to AC and saving throws. You lose this bonus while using the cloak's Sailcloth property.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-squirrels", - "fields": { - "name": "Cloak of Squirrels", - "desc": "This wool brocade cloak features a repeating pattern of squirrel heads and tree branches. It has 3 charges and regains all expended charges daily at dawn. While wearing this cloak, you can use an action to expend 1 charge to cast the legion of rabid squirrels spell (see Deep Magic for 5th Edition) from it. You don't need to be in a forest to cast the spell from this cloak, as the squirrels come from within the cloak. When the spell ends, the swarm vanishes back inside the cloak.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-the-bearfolk", - "fields": { - "name": "Cloak of the Bearfolk", - "desc": "While wearing this cloak, your Constitution score is 15, and you have proficiency in the Athletics skill. The cloak has no effect if you already have proficiency in this skill or if your Constitution score is already 15 or higher.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-the-eel", - "fields": { - "name": "Cloak of the Eel", - "desc": "While wearing this rough, blue-gray leather cloak, you have a swimming speed of 40 feet. When you are hit with a melee weapon attack while wearing this cloak, you can use your reaction to generate a powerful electric charge. The attacker must succeed on a DC 13 Dexterity saving throw or take 2d6 lightning damage. The attacker has disadvantage on the saving throw if it hits you with a metal weapon. The cloak can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-the-empire", - "fields": { - "name": "Cloak of the Empire", - "desc": "This voluminous grey cloak has bright red trim and the sigil from an unknown empire on its back. The cloak is stiff and doesn't fold as easily as normal cloth. Whenever you are struck by a ranged weapon attack, you can use a reaction to reduce the damage from that attack by your Charisma modifier (minimum of 1).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-the-inconspicuous-rake", - "fields": { - "name": "Cloak of the Inconspicuous Rake", - "desc": "This cloak is spun from simple gray wool and closed with a plain, triangular copper clasp. While wearing this cloak, you can use a bonus action to make yourself forgettable for 5 minutes. A creature that sees you must make a DC 15 Intelligence saving throw as soon as you leave its sight. On a failure, the witness remembers seeing a person doing whatever you did, but it doesn't remember details about your appearance or mannerisms and can't accurately describe you to another. Creatures with truesight aren't affected by this cloak. The cloak can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-the-ram", - "fields": { - "name": "Cloak of the Ram", - "desc": "While wearing this cloak, you can use an action to transform into a mountain ram (use the statistics of a giant goat). This effect works like the polymorph spell, except you retain your Intelligence, Wisdom, and Charisma scores. You can use an action to transform back into your original form. Each time you transform into a ram in a single day, you retain the hit points you had the last time you transformed. If you were reduced to 0 hit points the last time you were a ram, you can't become a ram again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-the-rat", - "fields": { - "name": "Cloak of the Rat", - "desc": "While wearing this gray garment, you have a +5 bonus to your passive Wisdom (Perception) score.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-wicked-wings", - "fields": { - "name": "Cloak of Wicked Wings", - "desc": "From a distance, this long, black cloak appears to be in tatters, but a closer inspection reveals that it is sewn from numerous scraps of cloth and shaped like bat wings. While wearing this cloak, you can use your action to cast polymorph on yourself, transforming into a swarm of bats. While in the form of a swarm of bats, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. If you are a druid with the Wild Shape feature, this transformation instead lasts as long as your Wild Shape lasts. The cloak can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "clockwork-gauntlet", - "fields": { - "name": "Clockwork Gauntlet", - "desc": "This metal gauntlet has a steam-powered ram built into the greaves. It has 3 charges and regains 1d3 expended charges daily at dawn. While wearing the gauntlet, you can expend 1 charge as a bonus action to force the ram in the gauntlets to slam a creature within 5 feet of you. The ram thrusts out from the gauntlet and makes its attack with a +5 bonus. On a hit, the target takes 2d8 bludgeoning damage, and it must succeed on a DC 13 Constitution saving throw or be stunned until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "clockwork-hand", - "fields": { - "name": "Clockwork Hand", - "desc": "A beautiful work of articulate brass, this prosthetic clockwork hand (or hands) can't be worn if you have both of your hands. While wearing this hand, you gain a +2 bonus to damage with melee weapon attacks made with this hand or weapons wielded in this hand.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "clockwork-hare", - "fields": { - "name": "Clockwork Hare", - "desc": "Gifted by a deity of time and clockwork, these simple-seeming trinkets portend some momentous event. The figurine resembles a hare with a clock in its belly. You can use an action to press the ears down and activate the clock, which spins chaotically. The hare emits a field of magic in a 30- foot radius from it for 1 hour. The field moves with the hare, remaining centered on it. While within the field, you and up to 5 willing creatures of your choice exist outside the normal flow of time, and all other creatures and objects are frozen in time. If an affected creature moves outside the field, the creature immediately becomes frozen in time until it is in the field again. The field ends early if an affected creature attacks, touches, alters, or has any other physical or magical impact on a creature, or an object being worn or carried by a creature, that is frozen in time. When the field ends, the figurine turns into a nonmagical, living white hare that goes bounding off into the distance, never to be seen again.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "clockwork-mace-of-divinity", - "fields": { - "name": "Clockwork Mace of Divinity", - "desc": "This clockwork mace is composed of several different metals. While attuned to this magic weapon, you have proficiency with it. As a bonus action, you can command the mace to transform into a trident. When you hit with an attack using this weapon's trident form, the target takes an extra 1d6 radiant damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "clockwork-mynah-bird", - "fields": { - "name": "Clockwork Mynah Bird", - "desc": "This mechanical brass bird is nine inches long from the tip of its beak to the end of its tail, and it can become active for up to 12 hours. Once it has been used, it can't be used again until 2 days have passed. If you use your action to speak the first command word (“listen” in Ignan), it cocks its head and listens intently to all nearby sounds with a passive Wisdom (Perception) of 17 for up to 10 minutes. When you give the second command word (“speak”), it repeats back what it heard in a metallic-sounding—though reasonably accurate—portrayal of the sounds. You can use the clockwork mynah bird to relay sounds and conversations it has heard to others. As an action, you can command the mynah to fly to a location it has previously visited within 1 mile. It waits at the location for up to 1 hour for someone to command it to speak. At the end of the hour or after it speaks its recording, it returns to you. The clockwork mynah bird has an Armor Class of 14, 5 hit points, and a flying speed of 50 feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "clockwork-pendant", - "fields": { - "name": "Clockwork Pendant", - "desc": "This pendant resembles an ornate, miniature clock and has 3 charges. While holding this pendant, you can expend 1 charge as an action to cast the blur, haste, or slow spell (save DC 15) from it. The spell's duration changes to 3 rounds, and it doesn't require concentration. You can have only one spell active at a time. If you cast another, the previous spell effect ends. It regains 1d3 expended charges daily at dawn. If the pendant is destroyed (AC 14, 15 hit points) while it has 3 charges, it creates a temporal distortion for 1d4 rounds. For the duration, each creature and object that enters or starts its turn within 10 feet of the pendant has immunity to all damage, all spells, and all other physical or magical effects but is otherwise able to move and act normally. If a creature moves further than 10 feet from the pendant, these effects end for it. At the end of the duration, the pendant crumbles to dust.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "clockwork-rogue-ring", - "fields": { - "name": "Clockwork Rogue Ring", - "desc": "Made by kobold clockwork mages, this brass clockwork ring is formed to look like a coiled dragon. When you speak or whisper the Draconic command word etched on the inside of the ring, the brass dragon uncoils and attempts to pick any lock within 10 feet of you. The dragon picks the lock using your proficiency bonus but with advantage. It is treated as having thieves' tools when attempting to pick locks. It uses your Dexterity (Stealth) bonus for purposes of not being spotted but with advantage due to its extremely small size. Whether successful or not, once you have used the ring to attempt to pick a lock, it can't be used again until the next sunset.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "clockwork-spider-cloak", - "fields": { - "name": "Clockwork Spider Cloak", - "desc": "This hooded cloak is made from black spider silk and has thin brass ribbing stitched on the inside. It has 3 charges. While wearing the cloak, you gain a +2 bonus on Dexterity (Stealth) checks. As an action, you can expend 1 charge to animate the brass ribs into articulated spider legs 1 inch thick and 6 feet long for 1 minute. You can use the charges in succession. The spider legs allow you to climb at your normal walking speed, and you double your proficiency bonus and gain advantage on any Strength (Athletics) checks made for slippery or difficult surfaces. The cloak regains 1d3 charges each day at sunset.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "coffer-of-memory", - "fields": { - "name": "Coffer of Memory", - "desc": "This small golden box resembles a jewelry box and is easily mistaken for a common trinket. When attuned to the box, its owner can fill the box with mental images of important events lasting no more than 1 minute each. Any number of memories can be stored this way. These images are similar to a slide show from the bearer's point of view. On a command from its owner, the box projects a mental image of a requested memory so that whoever is holding the box at that moment can see it. If a coffer of memory is found with memories already stored inside it, a newly-attuned owner can view a randomly-selected stored memory with a successful DC 15 Charisma check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "collar-of-beast-armor", - "fields": { - "name": "Collar of Beast Armor", - "desc": "This worked leather collar has stitching in the shapes of various animals. While a beast wears this collar, its base AC becomes 13 + its Dexterity modifier. It has no effect if the beast's base AC is already 13 or higher. This collar affects only beasts, which can include a creature affected by the polymorph spell or a druid assuming a beast form using Wild Shape.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "comfy-slippers", - "fields": { - "name": "Comfy Slippers", - "desc": "While wearing the slippers, your feet feel warm and comfortable, no matter what the ambient temperature.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "commanders-helm", - "fields": { - "name": "Commander's Helm", - "desc": "This helmet sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The type of light given off by the helm depends on the aesthetic desired by its creator. Some are surrounded in a wreath of hellish (though illusory) flames, while others give off a soft, warm halo of white or golden light. You can use an action to start or stop the light. While wearing the helm, you can use an action to make your voice loud enough to be heard clearly by anyone within 300 feet of you until the end of your next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "commanders-plate", - "fields": { - "name": "Commander's Plate", - "desc": "This armor is typically emblazoned or decorated with imagery of lions, bears, griffons, eagles, or other symbols of bravery and courage. While wearing this armor, your voice can be clearly heard by all friendly creatures within 300 feet of you if you so choose. Your voice doesn't carry in areas where sound is prevented, such as in the area of the silence spell. Each friendly creature that can see or hear you has advantage on saving throws against being frightened. You can use a bonus action to rally a friendly creature that can see or hear you. The target gains a +1 bonus to attack or damage rolls on its next turn. Once you have rallied a creature, you can't rally that creature again until it finishes a long rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "commanders-visage", - "fields": { - "name": "Commander's Visage", - "desc": "This golden mask resembles a stern face, glowering at the world. While wearing this mask, you have advantage on saving throws against being frightened. The mask has 7 charges for the following properties, and it regains 1d6 + 1 expended charges daily at midnight.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "commoners-veneer", - "fields": { - "name": "Commoner's Veneer", - "desc": "When you wear this simple, homespun scarf around your neck or head, it casts a minor glamer over you that makes you blend in with the people around you, avoiding notice. When in an area containing 25 or more humanoids, such as a city street, market place, or other public locale, Wisdom (Perception) checks to spot you amid the crowd have disadvantage. This item's power only works for creatures of the humanoid type or those using magic to take on a humanoid form.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "communal-flute", - "fields": { - "name": "Communal Flute", - "desc": "This flute is carved with skulls and can be used as a spellcasting focus. If you spend 10 minutes playing the flute over a dead creature, you can cast the speak with dead spell from the flute. The flute can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "companions-broth", - "fields": { - "name": "Companion's Broth", - "desc": "Developed by wizards with an interest in the culinary arts, this simple broth mends the wounds of companion animals and familiars. When a beast or familiar consumes this broth, it regains 2d4 + 2 hit points. Alternatively, you can mix a flower petal into the broth, and the beast or familiar gains 2d4 temporary hit points for 8 hours instead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "constant-dagger", - "fields": { - "name": "Constant Dagger", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon, the target loses its resistance to bludgeoning, piercing, and slashing damage until the start of your next turn. If it has immunity to bludgeoning, piercing, and slashing damage, its immunity instead becomes resistance to such damage until the start of your next turn. If the creature doesn't have resistance or immunity to such damage, you roll your damage dice three times, instead of twice.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "consuming-rod", - "fields": { - "name": "Consuming Rod", - "desc": "This bone mace is crafted from a humanoid femur. One end is carved to resemble a ghoulish face, its mouth open wide and full of sharp fangs. The mace has 8 charges, and it recovers 1d6 + 2 charges daily at dawn. You gain a +1 bonus to attack and damage rolls made with this magic mace. When it hits a creature, the mace's mouth stretches gruesomely wide and bites the target, adding 3 (1d6) piercing damage to the attack. As a reaction, you can expend 1 charge to regain hit points equal to the piercing damage dealt. Alternatively, you can use your reaction to expend 5 charges when you hit a Medium or smaller creature and force the mace to swallow the target. The target must succeed on a DC 15 Dexterity saving throw or be swallowed into an extra-dimensional space within the mace. While swallowed, the target is blinded and restrained, and it has total cover against attacks and other effects outside the mace. The target can still breathe. As an action, you can force the mace to regurgitate the creature, which falls prone in a space within 5 feet of the mace. The mace automatically regurgitates a trapped creature at dawn when it regains charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "copper-skeleton-key", - "fields": { - "name": "Copper Skeleton Key", - "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "coral-of-enchanted-colors", - "fields": { - "name": "Coral of Enchanted Colors", - "desc": "This piece of dead, white brain coral glistens with a myriad of colors when placed underwater. While holding this coral underwater, you can use an action to cause a beam of colored light to streak from the coral toward a creature you can see within 60 feet of you. The target must make a DC 17 Constitution saving throw. The beam's color determines its effects, as described below. Each color can be used only once. The coral regains the use of all of its colors at the next dawn if it is immersed in water for at least 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "cordial-of-understanding", - "fields": { - "name": "Cordial of Understanding", - "desc": "When you drink this tangy, violet liquid, your mind opens to new forms of communication. For 1 hour, if you spend 1 minute listening to creatures speaking a particular language, you gain the ability to communicate in that language for the duration. This potion's magic can also apply to non-verbal languages, such as a hand signal-based or dance-based language, so long as you spend 1 minute watching it being used and have the appropriate anatomy and limbs to communicate in the language.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "corpsehunters-medallion", - "fields": { - "name": "Corpsehunter's Medallion", - "desc": "This amulet is made from the skulls of grave rats or from scrimshawed bones of the ignoble dead. While wearing it, you have resistance to necrotic damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "countermelody-crystals", - "fields": { - "name": "Countermelody Crystals", - "desc": "This golden bracelet is set with ten glistening crystal bangles that tinkle when they strike one another. When you must make a saving throw against being charmed or frightened, the crystals vibrate, creating an eerie melody, and you have advantage on the saving throw. If you fail the saving throw, you can choose to succeed instead by forcing one of the crystals to shatter. Once all ten crystals have shattered, the bracelet loses its magic and crumbles to powder.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "courtesans-allure", - "fields": { - "name": "Courtesan's Allure", - "desc": "This perfume has a sweet, floral scent and captivates those with high social standing. The perfume can cover one Medium or smaller creature, and applying it takes 1 minute. For 1 hour, the affected creature gains a +5 bonus to Charisma checks made to socially interact with or influence nobles, politicians, or other individuals with high social standing.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "crab-gloves", - "fields": { - "name": "Crab Gloves", - "desc": "These gloves are shaped like crab claws but fit easily over your hands. While wearing these gloves, you can take the Attack action to make two melee weapon attacks with the claws. You are proficient with the claws. Each claw has a reach of 5 feet and deals bludgeoning damage equal to 1d6 + your Strength modifier on a hit. If you hit a creature of your size or smaller using a claw, you automatically grapple the creature with the claw. You can have no more than two creatures grappled in this way at a time. While grappling a target with a claw, you can't attack other creatures with that claw. While wearing the gloves, you have disadvantage on Charisma and Dexterity checks, but you have advantage on checks while operating an apparatus of the crab and on attack rolls with the apparatus' claws. In addition, you can't wield weapons or a shield, and you can't cast a spell that has a somatic component. A creature with an Intelligence of 8 or higher that has two claws can wear these gloves. If it does so, it has two appropriately sized humanoid hands instead of claws. The creature can wield weapons with the hands and has advantage on Dexterity checks that require fine manipulation. Pulling the gloves on or off requires an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "crafter-shabti", - "fields": { - "name": "Crafter Shabti", - "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "cravens-heart", - "fields": { - "name": "Craven's Heart", - "desc": "This leathery mass of dried meat was once a humanoid heart, taken from an individual that died while experiencing great terror. You can use an action to whisper a command word and hurl the heart to the ground, where it revitalizes and begins to beat rapidly and loudly for 1 minute. Each creature withing 30 feet of the heart has disadvantage on saving throws against being frightened. At the end of the duration, the heart bursts from the strain and is destroyed. The heart can be attacked and destroyed (AC 11; hp 3; resistance to bludgeoning damage). If the heart is destroyed before the end if its duration, each creature within 30 feet of the heart must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. This bugbear necromancer was once the henchman of an accomplished practitioner of the dark arts named Varrus. She started as a bodyguard and tough, but her keen intellect caught her master's attention. He eventually took her on as an apprentice. Moxug is fascinated with fear, and some say she doesn't eat but instead sustains herself on the terror of her victims. She eventually betrayed Varrus, sabotaging his attempt to become a lich, and luxuriated in his fear as he realized he would die rather than achieve immortality. According to rumor, the first craven's heart she crafted came from the body of her former master.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "crawling-cloak", - "fields": { - "name": "Crawling Cloak", - "desc": "This unusual cloak is made of many overlapping, broad strips of thick cloth.\nCrawling Cloak (Common). When you are prone, you can animate the cloak and have it pull you along the ground, allowing you to ignore the extra movement cost for crawling. You can still only move up to your normal movement rate and can’t stand up from prone unless you still have at least half your movement remaining after moving.\n\nSturdy Crawling Cloak (Uncommon). This more powerful version of the crawling cloak also allows you to use the prehensile strips of the cloak to climb, giving you a climbing speed of 20 feet. If you already have a climbing speed, the cloak increases that speed by 10 feet. When using the cloak, you can keep your hands free while climbing.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "crimson-carpet", - "fields": { - "name": "Crimson Carpet", - "desc": "This rolled bundle of red felt is 3-feet long and 1-foot wide, and it weighs 10 pounds. You can use an action to speak the carpet's command word to cause it to unroll, creating a horizontal walking surface or bridge up to 10 feet wide, up to 60 feet long, and 1/4 inch thick. The carpet doesn't need to be anchored and can hover. The carpet has immunity to all damage and isn't affected by the dispel magic spell. The disintegrate spell destroys the carpet. The carpet remains unrolled until you use an action to repeat the command word, causing it to roll up again. When you do so, the carpet can't be unrolled again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "crimson-starfall-arrow", - "fields": { - "name": "Crimson Starfall Arrow", - "desc": "This arrow is a magic weapon powered by the sacrifice of your own life energy and explodes upon impact. If you hit a creature with this arrow, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and each creature within 10 feet of the target, including the target, must make a DC 15 Dexterity saving throw, taking necrotic damage equal to the hit points you lost on a failed save, or half as much damage on a successful one. You can't use this feature of the arrow if you don't have blood. Hit Dice spent on this arrow's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "crocodile-hide-armor", - "fields": { - "name": "Crocodile Hide Armor", - "desc": "While wearing this armor fashioned from crocodile skin, you gain a +1 bonus to AC. In addition, you can hold your breath for 15 minutes, and you have a swimming speed equal to your walking speed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "crocodile-leather-armor", - "fields": { - "name": "Crocodile Leather Armor", - "desc": "While wearing this armor fashioned from crocodile skin, you gain a +1 bonus to AC. In addition, you can hold your breath for 15 minutes, and you have a swimming speed equal to your walking speed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "crook-of-the-flock", - "fields": { - "name": "Crook of the Flock", - "desc": "This plain crook is made of smooth, worn lotus wood and is warm to the touch.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "crown-of-the-pharaoh", - "fields": { - "name": "Crown of the Pharaoh", - "desc": "The swirling gold bands of this crown recall the shape of desert dunes, and dozens of tiny emeralds, rubies, and sapphires nest among the skillfully forged curlicues. While wearing the crown, you gain the following benefits: Your Intelligence score is 25. This crown has no effect on you if your Intelligence is already 25 or higher. You have a flying speed equal to your walking speed. While you are wearing no armor and not wielding a shield, your Armor Class equals 16 + your Dexterity modifier.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "crusaders-shield", - "fields": { - "name": "Crusader's Shield", - "desc": "A bronze boss is set in the center of this round shield. When you attune to the shield, the boss changes shape, becoming a symbol of your divine connection: a holy symbol for a cleric or paladin or an engraving of mistletoe or other sacred plant for a druid. You can use the shield as a spellcasting focus for your spells.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "crystal-skeleton-key", - "fields": { - "name": "Crystal Skeleton Key", - "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "crystal-staff", - "fields": { - "name": "Crystal Staff", - "desc": "Carved from a single piece of solid crystal, this staff has numerous reflective facets that produce a strangely hypnotic effect. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: color spray (1 charge), confound senses* (3 charges), confusion (4 charges), hypnotic pattern (3 charges), jeweled fissure* (3 charges), prismatic ray* (5 charges), or prismatic spray (7 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to light or confusion. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the crystal shatters, destroying the staff and dealing 2d6 piercing damage to each creature within 10 feet of it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dagger-of-the-barbed-devil", - "fields": { - "name": "Dagger of the Barbed Devil", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. You can use an action to cause sharp, pointed barbs to sprout from this blade. The barbs remain for 1 minute. When you hit a creature while the barbs are active, the creature must succeed on a DC 15 Dexterity saving throw or a barb breaks off into its flesh and the dagger loses its barbs. At the start of each of its turns, a creature with a barb in its flesh must make a DC 15 Constitution saving throw. On a failure, it has disadvantage on attack rolls and ability checks until the start of its next turn as it is wracked with pain. The barb remains until a creature uses its action to remove the barb, dealing 1d4 piercing damage to the barbed creature. Once you cause barbs to sprout from the dagger, you can't do so again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dancing-caltrops", - "fields": { - "name": "Dancing Caltrops", - "desc": "After you pour these magic caltrops out of the bag into an area, you can use a bonus action to animate them and command them to move up to 10 feet to occupy a different square area that is 5 feet on a side.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "dancing-floret", - "fields": { - "name": "Dancing Floret", - "desc": "This 2-inch-long plant has a humanoid shape, and a large purple flower sits at the top of the plant on a short, neck-like stalk. Small, serrated thorns on its arms and legs allow it to cling to your clothing, and it most often dances along your arm or across your shoulders. While attuned to the floret, you have proficiency in the Performance skill, and you double your proficiency bonus on Charisma (Performance) checks made while dancing. The floret has 3 charges for the following other properties. The floret regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dancing-ink", - "fields": { - "name": "Dancing Ink", - "desc": "This ink is favored by merchants for eye-catching banners and by toy makers for scrolls and books for children. Typically found in 1d4 pots, this ink allows you to draw an illustration that moves about the page where it was drawn, whether that is an illustration of waves crashing against a shore along the bottom of the page or a rabbit leaping over the page's text. The ink wears away over time due to the movement and fades from the page after 2d4 weeks. The ink moves only when exposed to light, and some long-forgotten tomes have been opened to reveal small, moving illustrations drawn by ancient scholars. One pot can be used to fill 25 pages of a book or a similar total area for larger banners.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "dastardly-quill-and-parchment", - "fields": { - "name": "Dastardly Quill and Parchment", - "desc": "Favored by spies, this quill and parchment are magically linked as long as both remain on the same plane of existence. When a creature writes or draws on any surface with the quill, that writing or drawing appears on its linked parchment, exactly as it would appear if the writer was writing or drawing on the parchment with black ink. This effect doesn't prevent the quill from being used as a standard quill on a nonmagical piece of parchment, but this written communication is one-way, from quill to parchment. The quill's linked parchment is immune to all nonmagical inks and stains, and any magical messages written on the parchment disappear after 1 minute and aren't conveyed to the creature holding the quill. The parchment is approximately 9 inches wide by 13 inches long. If the quill's writing exceeds the area of the parchment, the older writing fades from the top of the sheet, replaced by the newer writing. Otherwise, the quill's writing remains on the parchment for 24 hours, after which time all writing fades from it. If either item is destroyed, the other item becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dawn-shard-dagger", - "fields": { - "name": "Dawn Shard Dagger", - "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "dawn-shard-greatsword", - "fields": { - "name": "Dawn Shard Greatsword", - "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "dawn-shard-longsword", - "fields": { - "name": "Dawn Shard Longsword", - "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "dawn-shard-rapier", - "fields": { - "name": "Dawn Shard Rapier", - "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "dawn-shard-scimitar", - "fields": { - "name": "Dawn Shard Scimitar", - "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "dawn-shard-shortsword", - "fields": { - "name": "Dawn Shard Shortsword", - "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "deadfall-arrow", - "fields": { - "name": "Deadfall Arrow", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic arrow. On a hit, the arrow transforms into a 10-foot-long wooden log centered on the target, destroying the arrow. The target and each creature in the log's area must make a DC 15 Dexterity saving throw. On a failure, a creature takes 3d6 bludgeoning damage and is knocked prone and restrained under the log. On a success, a creature takes half the damage and isn't knocked prone or restrained. A restrained creature can take its action to free itself by succeeding on a DC 15 Strength check. The log lasts for 1 minute then crumbles to dust, freeing those restrained by it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "deaths-mirror", - "fields": { - "name": "Death's Mirror", - "desc": "Made from woven lead and silver, this ring fits only on the hand's smallest finger. As the moon is a dull reflection of the sun's glory, so too is the power within this ring merely an imitation of the healing energies that can bestow true life. The ring has 3 charges and regains all expended charges daily at dawn. While wearing the ring, you can expend 1 charge as a bonus action to gain 5 temporary hit points for 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "decoy-card", - "fields": { - "name": "Decoy Card", - "desc": "This small, thick, parchment card displays an accurate portrait of the person carrying it. You can use an action to toss the card on the ground at a point within 10 feet of you. An illusion of you forms over the card and remains until dispelled. The illusion appears real, but it can do no harm. While you are within 120 feet of the illusion and can see it, you can use an action to make it move and behave as you wish, as long as it moves no further than 10 feet from the card. Any physical interaction with your illusory double reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect your illusory double identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The illusion lasts until the card is moved or the illusion is dispelled. When the illusion ends, the card's face becomes blank, and the card becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "deepchill-orb", - "fields": { - "name": "Deepchill Orb", - "desc": "This fist-sized sphere of blue quartz emits cold. If placed in a container with a capacity of up to 5 cubic feet, it keeps the internal temperature of the container at a consistent 40 degrees Fahrenheit. This can keep liquids chilled, preserve cooked foods for up to 1 week, raw meats for up to 3 days, and fruits and vegetables for weeks. If you hold the orb without gloves or other insulating method, you take 1 cold damage each minute you hold it. At the GM's discretion, the orb's cold can be applied to other uses, such as keeping it in contact with a hot item to cool down the item enough to be handled, wrapping it and using it as a cooling pad to bring down fever or swelling, or similar.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "defender-shabti", - "fields": { - "name": "Defender Shabti", - "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "deserters-boots", - "fields": { - "name": "Deserter's Boots", - "desc": "While you wear these boots, your walking speed increases by 10 feet, and you gain a +1 bonus to Dexterity saving throws.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "devil-shark-mask", - "fields": { - "name": "Devil Shark Mask", - "desc": "When you wear this burgundy face covering, it transforms your face into a shark-like visage, and the mask sprouts wicked horns. While wearing this mask, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d8 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. You gain a +1 bonus to attack and damage rolls with this magic bite. In addition, you have advantage on Charisma (Intimidation) checks while wearing this mask.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "devilish-doubloon", - "fields": { - "name": "Devilish Doubloon", - "desc": "This gold coin bears the face of a leering devil on the obverse. If it is placed among other coins, it changes its appearance to mimic its neighbors, doing so over the course of 1 hour. This is a purely cosmetic change, and it returns to its original appearance when grasped by a creature with an Intelligence of 5 or higher. You can use a bonus action to toss the coin up to 20 feet. When the coin lands, it transforms into a barbed devil. The devil vanishes after 1 hour or when it is reduced to 0 hit points. When the devil vanishes, the coin reappears in a collection of at least 20 gold coins elsewhere on the same plane where it vanished. The devil is friendly to you and your companions. Roll initiative for the devil, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the devil, it defends itself from hostile creatures but otherwise takes no actions. If you are reduced to 0 hit points and the devil is still alive, it moves to your body and uses its action to grab your soul. You must succeed on a DC 15 Charisma saving throw or the devil steals your soul and you die. If the devil fails to grab your soul, it vanishes as if slain. If the devil grabs your soul, it uses its next action to transport itself back to the Hells, disappearing in a flash of brimstone. If the devil returns to the Hells with your soul, its coin doesn't reappear, and you can be restored to life only by means of a true resurrection or wish spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "devils-barb", - "fields": { - "name": "Devil's Barb", - "desc": "This thin wand is fashioned from the fiendish quill of a barbed devil. While attuned to it, you have resistance to cold damage. The wand has 6 charges for the following properties. It regains 1d6 expended charges daily at dusk. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into cinders and is destroyed. Hurl Flame. While holding the wand, you can expend 2 charges as an action to hurl a ball of devilish flame at a target you can see within 150 feet of you. The target must succeed on a DC 15 Dexterity check or take 3d6 fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire. Devil's Sight. While holding the wand, you can expend 1 charge as an action to cast the darkvision spell on yourself. Magical darkness doesn't impede this darkvision.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "digger-shabti", - "fields": { - "name": "Digger Shabti", - "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "dimensional-net", - "fields": { - "name": "Dimensional Net", - "desc": "Woven from the hair of celestials and fiends, this shimmering iridescent net can subdue and capture otherworldly creatures. You have a +1 bonus to attack rolls with this magic weapon. In addition to the normal effects of a net, this net prevents any Large or smaller aberration, celestial, or fiend hit by it from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. When such a creature is bound in this way, a creature must succeed on a DC 30 Strength (Athletics) check to free the bound creature. The net has immunity to damage dealt by the bound creature, but another creature can deal 20 slashing damage to the net and free the bound creature, ending the effect. The net has AC 15 and 30 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the net drops to 0 hit points, it is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dirgeblade", - "fields": { - "name": "Dirgeblade", - "desc": "This weapon is an exquisitely crafted rapier set in a silver and leather scabbard. The blade glows a faint stormy blue and is encircled by swirling wisps of clouds. You gain a +3 bonus to attack and damage rolls made with this magic weapon. This weapon, when unsheathed, sheds dim blue light in a 20-foot radius. When you hit a creature with it, you can expend 1 Bardic Inspiration to impart a sense of overwhelming grief in the target. A creature affected by this grief must succeed on a DC 15 Wisdom saving throw or fall prone and become incapacitated by sadness until the end of its next turn. Once a month under an open sky, you can use a bonus action to speak this magic sword's command word and cause the sword to sing a sad dirge. This dirge conjures heavy rain (or snow in freezing temperatures) in the region for 2d6 hours. The precipitation falls in an X-mile radius around you, where X is equal to your level.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "dirk-of-daring", - "fields": { - "name": "Dirk of Daring", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While holding the dagger, you have advantage on saving throws against being frightened.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "distracting-doubloon", - "fields": { - "name": "Distracting Doubloon", - "desc": "This gold coin is plain and matches the dominant coin of the region. Typically, 2d6 distracting doubloons are found together. You can use an action to toss the coin up to 20 feet. The coin bursts into a flash of golden light on impact. Each creature within a 15-foot radius of where the coin landed must succeed on a DC 11 Wisdom saving throw or have disadvantage on Wisdom (Perception) checks made to perceive any creature or object other than the coin for 1 minute. If an affected creature takes damage, it can repeat the saving throw, ending the effect on itself on a success. At the end of the duration, the coin crumbles to dust and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "djinn-vessel", - "fields": { - "name": "Djinn Vessel", - "desc": "A rough predecessor to the ring of djinni summoning and the ring elemental command, this clay vessel is approximately a foot long and half as wide. An iron stopper engraved with a rune of binding seals its entrance. If the vessel is empty, you can use an action to remove the stopper and cast the banishment spell (save DC 15) on a celestial, elemental, or fiend within 60 feet of you. At the end of the spell's duration, if the target is an elemental, it is trapped in this vessel. While trapped, the elemental can take no actions, but it is aware of occurrences outside of the vessel and of other djinn vessels. You can use an action to remove the vessel's stopper and release the elemental the vessel contains. Once released, the elemental acts in accordance with its normal disposition and alignment.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "doppelganger-ointment", - "fields": { - "name": "Doppelganger Ointment", - "desc": "This ceramic jar contains 1d4 + 1 doses of a thick, creamy substance that smells faintly of pork fat. The jar and its contents weigh 1/2 a pound. Applying a single dose to your body takes 1 minute. For 24 hours or until it is washed off with an alcohol solution, you can change your appearance, as per the Change Appearance option of the alter self spell. For the duration, you can use a bonus action to return to your normal form, and you can use an action to return to the form of the mimicked creature. If you add a piece of a specific creature (such as a single hair, nail paring, or drop of blood), the ointment becomes more powerful allowing you to flawlessly imitate that creature, as long as its body shape is humanoid and within one size category of your own. While imitating that creature, you have advantage on Charisma checks made to convince others you are that specific creature, provided they didn't see you change form.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dragonstooth-blade", - "fields": { - "name": "Dragonstooth Blade", - "desc": "This razor-sharp blade, little more than leather straps around the base of a large tooth, still carries the power of a dragon. This weapon's properties are determined by the type of dragon that once owned this tooth. The GM chooses the dragon type or determines it randomly from the options below. When you hit with an attack using this magic sword, the target takes an extra 1d6 damage of a type determined by the kind of dragon that once owned the tooth. In addition, you have resistance to the type of damage associated with that dragon. | d6 | Damage Type | Dragon Type |\n| --- | ----------- | ------------------- |\n| 1 | Acid | Black or Copper |\n| 2 | Fire | Brass, Gold, or Red |\n| 3 | Poison | Green |\n| 4 | Lightning | Blue or Bronze |\n| 5 | Cold | Silver or White |\n| 6 | Necrotic | Undead |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "draught-of-ambrosia", - "fields": { - "name": "Draught of Ambrosia", - "desc": "The liquid in this tiny vial is golden and has a heady, floral scent. When you drink the draught, it fortifies your body and mind, removing any infirmity caused by old age. You stop aging and are immune to any magical and nonmagical aging effects. The magic of the ambrosia lasts ten years, after which time its power fades, and you are once again subject to the ravages of time and continue aging.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "draught-of-the-black-owl", - "fields": { - "name": "Draught of the Black Owl", - "desc": "When you drink this potion, you transform into a black-feathered owl for 1 hour. This effect works like the polymorph spell, except you can take only the form of an owl. While you are in the form of an owl, you retain your Intelligence, Wisdom, and Charisma scores. If you are a druid with the Wild Shape feature, you can transform into a giant owl instead. Drinking this potion doesn't expend a use of Wild Shape.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "dread-scarab", - "fields": { - "name": "Dread Scarab", - "desc": "The abdomen of this beetleshaped brooch is decorated with the grim semblance of a human skull. If you hold it in your hand for 1 round, an Abyssal inscription appears on its surface, revealing its magical nature. While wearing this brooch, you gain the following benefits:\n- You have advantage on saving throws against spells.\n- The scarab has 9 charges. If you fail a saving throw against a conjuration spell or a harmful effect originating from a celestial creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into dust and is destroyed when its last charge is expended.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dust-of-desiccation", - "fields": { - "name": "Dust of Desiccation", - "desc": "This small packet contains soot-like dust. There is enough of it for one use. When you use an action to blow the choking dust from your palm, each creature in a 30-foot cone must make a DC 15 Dexterity saving throw, taking 3d10 necrotic damage on a failed save, or half as much damage on a successful one. A creature that fails this saving throw can't speak until the end of its next turn as it chokes on the dust. Alternatively, you can use an action to throw the dust into the air, affecting yourself and each creature within 30 feet of you with the dust.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dust-of-muffling", - "fields": { - "name": "Dust of Muffling", - "desc": "You can scatter this fine, silvery-gray dust on the ground as an action, covering a 10-foot-square area. There is enough dust in one container for up to 5 uses. When a creature moves over an area covered in the dust, it has advantage on Dexterity (Stealth) checks to remain unheard. The effect remains until the dust is swept up, blown away, or tracked away by the traffic of eight or more creatures passing through the area.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "dust-of-the-dead", - "fields": { - "name": "Dust of the Dead", - "desc": "This stoppered vial is filled with dust and ash. There is enough of it for one use. When you use an action to sprinkle the dust on a willing humanoid, the target falls into a death-like slumber for 8 hours. While asleep, the target appears dead to all mundane and magical means, but spells that target the dead, such as the speak with dead spell, fail when used on the target. The cause of death is not evident, though any wounds the target has taken remain visible. If the target takes damage while asleep, it has resistance to the damage. If the target is reduced to below half its hit points while asleep, it must succeed on a DC 15 Constitution saving throw to wake up. If the target is reduced to 5 hit points or fewer while asleep, it wakes up. If the target is unwilling, it must succeed on a DC 11 Constitution saving throw to avoid the effect of the dust. A sleeping creature is considered an unwilling target.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "eagle-cape", - "fields": { - "name": "Eagle Cape", - "desc": "The exterior of this silk cape is lined with giant eagle feathers. When you fall while wearing this cape, you descend 60 feet per round, take no damage from falling, and always land on your feet. In addition, you can use an action to speak the cloak's command word. This turns the cape into a pair of eagle wings which give you a flying speed of 60 feet for 1 hour or until you repeat the command word as an action. When the wings revert back to a cape, you can't use the cape in this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "earrings-of-the-agent", - "fields": { - "name": "Earrings of the Agent", - "desc": "Aside from a minor difference in size, these simple golden hoops are identical to one another. Each hoop has 1 charge and provides a different magical effect. Each hoop regains its expended charge daily at dawn. You must be wearing both hoops to use the magic of either hoop.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "earrings-of-the-eclipse", - "fields": { - "name": "Earrings of the Eclipse", - "desc": "These two cubes of smoked quartz are mounted on simple, silver posts. While you are wearing these earrings, you can take the Hide action while you are motionless in an area of dim light or darkness even when a creature can see you or when you have nothing to obscure you from the sight of a creature that can see you. If you are in darkness when you use the Hide action, you have advantage on the Dexterity (Stealth) check. If you move, attack, cast a spell, or do anything other than remain motionless, you are no longer hidden and can be detected normally.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "earrings-of-the-storm-oyster", - "fields": { - "name": "Earrings of the Storm Oyster", - "desc": "The deep blue pearls forming the core of these earrings come from oysters that survive being struck by lightning. While wearing these earrings, you gain the following benefits:\n- You have resistance to lightning and thunder damage.\n- You can understand Primordial. When it is spoken, the pearls echo the words in a language you can understand, at a whisper only you can hear.\n- You can't be deafened.\n- You can breathe air and water. - As an action, you can cast the sleet storm spell (save DC 15) from the earrings. The earrings can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ebon-shards", - "fields": { - "name": "Ebon Shards", - "desc": "These obsidian shards are engraved with words in Deep Speech, and their presence disquiets non-evil, intelligent creatures. The writing on the shards is obscure, esoteric, and possibly incomplete. The shards have 10 charges and give you access to a powerful array of Void magic spells. While holding the shards, you use an action to expend 1 or more of its charges to cast one of the following spells from them, using your spell save DC and spellcasting ability: living shadows* (5 charges), maddening whispers* (2 charges), or void strike* (3 charges). You can also use an action to cast the crushing curse* spell from the shards without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness or madness. The shards regain 1d6 + 4 expended charges daily at dusk. Each time you use the ebon shards to cast a spell, you must succeed on a DC 12 Charisma saving throw or take 2d6 psychic damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "efficacious-eyewash", - "fields": { - "name": "Efficacious Eyewash", - "desc": "This clear liquid glitters with miniscule particles of light. A bottle of this potion contains 6 doses, and its lid comes with a built-in dropper. You can use an action to apply 1 dose to the eyes of a blinded creature. The blinded condition is suppressed for 2d4 rounds. If the blinded condition has a duration, subtract those rounds from the total duration; if doing so reduces the overall duration to 0 rounds or less, then the condition is removed rather than suppressed. This eyewash doesn't work on creatures that are naturally blind, such as grimlocks, or creatures blinded by severe damage or removal of their eyes.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "eldritch-rod", - "fields": { - "name": "Eldritch Rod", - "desc": "This bone rod is carved into the shape of twisting tendrils or tentacles. You can use this rod as an arcane focus. The rod has 3 charges and regains all expended charges daily at dawn. When you cast a spell that requires an attack roll and that deals damage while holding this rod, you can expend 1 of its charges as part of the casting to enhance that spell. If the attack hits, the spell also releases tendrils that bind the target, grappling it for 1 minute. At the start of each of your turns, the grappled target takes 1d6 damage of the same type dealt by the spell. At the end of each of its turns, the grappled target can make a Dexterity saving throw against your spell save DC, freeing itself from the tendrils on a success. The rod's magic can grapple only one target at a time. If you use the rod to grapple another target, the effect on the previous target ends.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "elemental-wraps", - "fields": { - "name": "Elemental Wraps", - "desc": "These cloth arm wraps are decorated with elemental symbols depicting flames, lightning bolts, snowflakes, and similar. You have resistance to acid, cold, fire, lightning, or thunder damage while you wear these arm wraps. You choose the type of damage when you first attune to the wraps, and you can choose a different type of damage at the end of a short or long rest. The wraps have 10 charges. When you hit with an unarmed strike while wearing these wraps, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 damage of the type to which you have resistance. The wraps regain 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the wraps unravel and fall to the ground, becoming nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "elixir-of-corruption", - "fields": { - "name": "Elixir of Corruption", - "desc": "This elixir looks, smells, and tastes like a potion of heroism; however, it is actually a poisonous elixir masked by illusion magic. An identify spell reveals its true nature. If you drink it, you must succeed on a DC 15 Constitution saving throw or be corrupted by the diabolical power within the elixir for 1 week. While corrupted, you lose immunity to diseases, poison damage, and the poisoned condition. If you aren't normally immune to poison damage, you instead have vulnerability to poison damage while corrupted. The corruption can be removed with greater restoration or similar magic.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "elixir-of-deep-slumber", - "fields": { - "name": "Elixir of Deep Slumber", - "desc": "The milky-white liquid in this vial smells of jasmine and sandalwood. When you drink this potion, you fall into a deep sleep, from which you can't be physically awakened, for 1 hour. A successful dispel magic (DC 13) cast on you awakens you but cancels any beneficial effects of the elixir. When you awaken at the end of the hour, you benefit from the sleep as if you had finished a long rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "elixir-of-focus", - "fields": { - "name": "Elixir of Focus", - "desc": "This deep amber concoction seems to glow with an inner light. When you drink this potion, you have advantage on the next ability check you make within 10 minutes, then the elixir's effect ends.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "elixir-of-mimicry", - "fields": { - "name": "Elixir of Mimicry", - "desc": "When you drink this sweet, oily, black liquid, you can imitate the voice of a single creature that you have heard speak within the past 24 hours. The effects last for 3 minutes.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "elixir-of-oracular-delirium", - "fields": { - "name": "Elixir of Oracular Delirium", - "desc": "This pearlescent fluid perpetually swirls inside its container with a slow kaleidoscopic churn. When you drink this potion, you can cast the guidance spell for 1 hour at will. You can end this effect early as an action and gain the effects of the augury spell. If you do, you are afflicted with short-term madness after learning the spell's results.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "elixir-of-spike-skin", - "fields": { - "name": "Elixir of Spike Skin", - "desc": "Slivers of bone float in the viscous, gray liquid inside this vial. When you drink this potion, bone-like spikes protrude from your skin for 1 hour. Each time a creature hits you with a melee weapon attack while within 5 feet of you, it must succeed on a DC 15 Dexterity saving throw or take 1d4 piercing damage from the spikes. In addition, while you are grappling a creature or while a creature is grappling you, it takes 1d4 piercing damage at the start of your turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "elixir-of-the-clear-mind", - "fields": { - "name": "Elixir of the Clear Mind", - "desc": "This cerulean blue liquid sits calmly in its flask even when jostled or shaken. When you drink this potion, you have advantage on Wisdom checks and saving throws for 1 hour. For the duration, if you fail a saving throw against an enchantment or illusion spell or similar magic effect, you can choose to succeed instead. If you do, you draw upon all the potion's remaining power, and its effects end immediately thereafter.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "elixir-of-the-deep", - "fields": { - "name": "Elixir of the Deep", - "desc": "This thick, green, swirling liquid tastes like salted mead. For 1 hour after drinking this elixir, you can breathe underwater, and you can see clearly underwater out to a range of 60 feet. The elixir doesn't allow you to see through magical darkness, but you can see through nonmagical clouds of silt and other sedimentary particles as if they didn't exist. For the duration, you also have advantage on saving throws against the spells and other magical effects of fey creatures native to water environments, such as a Lorelei (see Tome of Beasts) or Water Horse (see Creature Codex).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "elixir-of-wakefulness", - "fields": { - "name": "Elixir of Wakefulness", - "desc": "This effervescent, crimson liquid is commonly held in a thin, glass vial capped in green wax. When you drink this elixir, its effects last for 8 hours. While the elixir is in effect, you can't fall asleep by normal means. You have advantage on saving throws against effects that would put you to sleep. If you are affected by the sleep spell, your current hit points are considered 10 higher when determining the effects of the spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "elk-horn-rod", - "fields": { - "name": "Elk Horn Rod", - "desc": "This rod is fashioned from elk or reindeer horn. As an action, you can grant a +1 bonus on saving throws against spells and magical effects to a target touched by the wand, including yourself. The bonus lasts 1 round. If you are holding the rod while performing the somatic component of a dispel magic spell or comparable magic, you have a +1 bonus on your spellcasting ability check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "encouraging-breastplate", - "fields": { - "name": "Encouraging Breastplate", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "encouraging-chain-mail", - "fields": { - "name": "Encouraging Chain Mail", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "encouraging-chain-shirt", - "fields": { - "name": "Encouraging Chain Shirt", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "encouraging-half-plate", - "fields": { - "name": "Encouraging Half Plate", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "encouraging-hide", - "fields": { - "name": "Encouraging Hide Armor", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "encouraging-leather", - "fields": { - "name": "Encouraging Leather Armor", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "encouraging-padded", - "fields": { - "name": "Encouraging Padded Armor", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "encouraging-plate", - "fields": { - "name": "Encouraging Plate", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "encouraging-ring-mail", - "fields": { - "name": "Encouraging Ring Mail", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "encouraging-scale-mail", - "fields": { - "name": "Encouraging Scale Mail", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "encouraging-splint", - "fields": { - "name": "Encouraging Splint", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "encouraging-studded-leather", - "fields": { - "name": "Encouraging Studded Leather", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "enraging-ammunition", - "fields": { - "name": "Enraging Ammunition", - "desc": "When you hit a creature with a ranged attack using this magical ammunition, the target must succeed on a DC 13 Wisdom saving throw or become enraged for 1 minute. On its turn, an enraged creature moves toward you by the most direct route, trying to get within 5 feet of you. It doesn't avoid opportunity attacks, but it moves around or avoids damaging terrain, such as lava or a pit. If the enraged creature is within 5 feet of you, it attacks you. An enraged creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ensnaring-ammunition", - "fields": { - "name": "Ensnaring Ammunition", - "desc": "When you hit a creature with a ranged attack using this magical ammunition, the target takes only half the damage from the attack, and the target is restrained as the ammunition bursts into entangling strands that wrap around it. As an action, the restrained target can make a DC 13 Strength check, bursting the bonds on a success. The strands can also be attacked and destroyed (AC 10; hp 5; immunity to bludgeoning, poison, and psychic damage).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "entrenching-mattock", - "fields": { - "name": "Entrenching Mattock", - "desc": "You gain a +1 to attack and damage rolls with this magic weapon. This bonus increases to +3 when you use the pick to attack a creature made of earth or stone, such as an earth elemental or stone golem. As a bonus action, you can slam the head of the pick into earth, sand, mud, or rock within 5 feet of you to create a wall of that material up to 30 feet long, 3 feet high, and 1 foot thick along that surface. The wall provides half cover to creatures behind it. The pick can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "everflowing-bowl", - "fields": { - "name": "Everflowing Bowl", - "desc": "This smooth, stone bowl feels especially cool to the touch. It holds up to 1 pint of water. When placed on the ground, the bowl magically draws water from the nearby earth and air, filling itself after 1 hour. In arid or desert environments, the bowl fills itself after 8 hours. The bowl never overflows itself.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "explosive-orb-of-obfuscation", - "fields": { - "name": "Explosive Orb of Obfuscation", - "desc": "Originally fashioned in the laboratory of the archmage Lugax for his good natured but often roguish friend, Kennich, these spherical ceramic containers are the size of a large human fist. Arcane sigils decorate each orb, detailing its properties to those capable of reading the sigils. The magic-infused chemicals in each orb must be briefly exposed to air before being thrown to activate them. A metal rod sits in the cork of each orb, allowing you to quickly twist open the container before throwing it. Typically, 1d4 + 1 orbs of obfuscation are found together. You can use an action to activate and throw the orb up to 60 feet. The orb explodes on impact and is destroyed. The orb's effects are determined by its type. Orb of Obfuscation (Uncommon). This orb is a dark olive color with a stripe of bright blue paint encircling it. When activated, the orb releases an opaque grey gas and creates a 30-foot-radius sphere of this gas centered on the point where the orb landed. The sphere spreads around corners, and its area is heavily obscured. The magical gas also dampens sound. Each creature in the gas can hear only sounds originating within 5 feet of it, and creatures outside of the gas can’t hear sounds originating inside the gas. The gas lasts for 5 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. Explosive Orb of Obfuscation (Rare). This oblong orb has a putty grey color with a stripe of yellow paint encircling it. When activated, this orb releases the same opaque grey gas as the orb of obfuscation. In addition to the effects of that gas, this orb also releases a burst of caustic chemicals on impact. Each creature within a 15-foot radius of where the orb landed must make a DC 15 Dexterity saving throw, taking 4d4 acid damage on a failed save, or half as much damage on a successful one. If a creature fails this saving throw, the chemicals cling to it for 1 minute. At the end of each of its turns, the creature must succeed on a DC 15 Constitution saving throw or take 2d4 acid damage from the clinging chemicals. Any creature can take an action to remove the clinging chemicals with a successful DC 15 Wisdom (Medicine) check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "exsanguinating-blade", - "fields": { - "name": "Exsanguinating Blade", - "desc": "This double-bladed dagger has an ivory hilt, and its gold pommel is shaped into a woman's head with ruby eyes and a fanged mouth opened in a scream. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon against a creature that has blood, the dagger gains 1 charge. The dagger can hold 1 charge at a time. You can use a bonus action to expend 1 charge from the dagger to cause one of the following effects: - You or a creature you touch with the blade regains 2d8 hit points. - The next time you hit a creature that has blood with this weapon, it deals an extra 2d8 necrotic damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "extract-of-dual-mindedness", - "fields": { - "name": "Extract of Dual-Mindedness", - "desc": "This potion can be distilled only from a hormone found in the hypothalamus of a two-headed giant of genius intellect. For 1 minute after drinking this potion, you can concentrate on two spells at the same time, and you have advantage on Constitution saving throws made to maintain your concentration on a spell when you take damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "eye-of-horus", - "fields": { - "name": "Eye of Horus", - "desc": "This gold and lapis lazuli amulet helps you determine reality from phantasms and trickery. While wearing it, you have advantage on saving throws against illusion spells and against being frightened.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "eye-of-the-golden-god", - "fields": { - "name": "Eye of the Golden God", - "desc": "A shining multifaceted violet gem sits at the center of this fist-sized amulet. A beautifully forged band of platinum encircles the gem and affixes it to a well-made series of interlocking platinum chain links. The violet gem is warm to the touch. While wearing this amulet, you can't be frightened and you don't suffer from exhaustion. In addition, you always know which item within 20 feet of you is the most valuable, though you don't know its actual value or if it is magical. Each time you finish a long rest while attuned to this amulet, roll a 1d10. On a 1-3, you awaken from your rest with that many valuable objects in your hand. The objects are minor, such as copper coins, at first and progressively get more valuable, such as gold coins, ivory statuettes, or gemstones, each time they appear. Each object is always small enough to fit in a single hand and is never worth more than 1,000 gp. The GM determines the type and value of each object. Once the left eye of an ornate and magical statue of a pit fiend revered by a small cult of Mammon, this exquisite purple gem was pried from the idol by an adventurer named Slick Finnigan. Slick and his companions had taken it upon themselves to eradicate the cult, eager for the accolades they would receive for defeating an evil in the community. The loot they stood to gain didn't hurt either. After the assault, while his companions were busy chasing the fleeing members of the cult, Slick pocketed the gem, disfiguring the statue and weakening its power in the process. He was then attacked by a cultist who had managed to evade notice by the adventurers. Slick escaped with his life, and the gem, but was unable to acquire the second eye. Within days, the thief was finding himself assaulted by devils and cultists. He quickly offloaded his loot with a collection of merchants in town, including a jeweler who was looking for an exquisite stone to use in a piece commissioned by a local noble. Slick then set off with his pockets full of coin, happily leaving the devilish drama behind. This magical amulet attracts the attention of worshippers of Mammon, who can almost sense its presence and are eager to claim its power for themselves, though a few extremely devout members of the weakened cult wish to return the gem to its original place in the idol. Due to this, and a bit of bad luck, this amulet has changed hands many times over the decades.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "eyes-of-the-outer-dark", - "fields": { - "name": "Eyes of the Outer Dark", - "desc": "These lenses are crafted of polished, opaque black stone. When placed over the eyes, however, they allow the wearer not only improved vision but glimpses into the vast emptiness between the stars. While wearing these lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, its range is extended by 60 feet. As an action, you can use the lenses to pierce the veils of time and space and see into the outer darkness. You gain the benefits of the foresight and true seeing spells for 10 minutes. If you activate this property and you aren't suffering from a madness, you take 3d8 psychic damage. Once used, this property of the lenses can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "eyes-of-the-portal-masters", - "fields": { - "name": "Eyes of the Portal Masters", - "desc": "While you wear these crystal lenses over your eyes, you can sense the presence of any dimensional portal within 60 feet of you and whether the portal is one-way or two-way. Once you have worn the eyes for 10 minutes, their magic ceases to function until the next dawn. Putting the lenses on or off requires an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "fanged-mask", - "fields": { - "name": "Fanged Mask", - "desc": "This tribal mask is made of wood and adorned with animal fangs. Once donned, it melds to your face and causes fangs to sprout from your mouth. While wearing this mask, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. If you already have a bite attack when you don and attune to this mask, your bite attack's damage dice double (for example, 1d4 becomes 2d4).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "farhealing-bandages", - "fields": { - "name": "Farhealing Bandages", - "desc": "This linen bandage is yellowed and worn with age. You can use an action wrap it around the appendage of a willing creature and activate its magic for 1 hour. While the target is within 60 feet of you and the bandage's magic is active, you can use an action to trigger the bandage, and the target regains 2d4 hit points. The bandage becomes inactive after it has restored 15 hit points to a creature or when 1 hour has passed. Once the bandage becomes inactive, it can't be used again until the next dawn. You can be attuned to only one farhealing bandage at a time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "farmer-shabti", - "fields": { - "name": "Farmer Shabti", - "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "fear-eaters-mask", - "fields": { - "name": "Fear-Eater's Mask", - "desc": "This painted, wooden mask bears the visage of a snarling, fiendish face. While wearing the mask, you can use a bonus action to feed on the fear of a frightened creature within 30 feet of you. The target must succeed on a DC 13 Wisdom saving throw or take 2d6 psychic damage. You regain hit points equal to the damage dealt. If you are not injured, you gain temporary hit points equal to the damage dealt instead. Once a creature has failed this saving throw, it is immune to the effects of this mask for 24 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "fellforged-armor", - "fields": { - "name": "Fellforged Armor", - "desc": "While wearing this steam-powered magic armor, you gain a +1 bonus to AC, your Strength score increases by 2, and you gain the ability to cast speak with dead as an action. As long as you remain cursed, you exude an unnatural aura, causing beasts with Intelligence 3 or less within 30 feet of you to be frightened. Once you have used the armor to cast speak with dead, you can't cast it again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ferrymans-coins", - "fields": { - "name": "Ferryman's Coins", - "desc": "It is customary in many faiths to weight a corpse's eyes with pennies so they have a fee to pay the ferryman when he comes to row them across death's river to the afterlife. Ferryman's coins, though, ensure the body stays in the ground regardless of the spirit's destination. These coins, which feature a death's head on one side and a lock and chain on the other, prevent a corpse from being raised as any kind of undead. When you place two coins on a corpse's closed lids and activate them with a simple prayer, they can't be removed unless the person is resurrected (in which case they simply fall away), or someone makes a DC 15 Strength check to remove them. Yanking the coins away does no damage to the corpse.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "feysworn-contract", - "fields": { - "name": "Feysworn Contract", - "desc": "This long scroll is written in flowing Elvish, the words flickering with a pale witchlight, and marked with the seal of a powerful fey or a fey lord or lady. When you use an action to present this scroll to a fey whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the fey, negotiating a service from it in exchange for a reward. The fey is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the fey, the truce is broken, and the creature can act normally. If the fey refuses the offer, it is free to take any actions it wishes. Should you and the fey reach an agreement that is satisfactory to both parties, you must sign the agreement and have the fey do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the fey to the agreement until its service is rendered and the reward paid, at which point the scroll fades into nothingness. Fey are notoriously clever folk, and while they must adhere to the letter of any bargains they make, they always look for any advantage in their favor. If either party breaks the bargain, that creature immediately takes 10d6 poison damage, and the charter is destroyed, ending the contract.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "fiendish-charter", - "fields": { - "name": "Fiendish Charter", - "desc": "This long scroll bears the mark of a powerful creature of the Lower Planes, whether an archduke of Hell, a demon lord of the Abyss, or some other powerful fiend or evil deity. When you use an action to present this scroll to a fiend whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the fiend, negotiating a service from it in exchange for a reward. The fiend is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the fiend, the truce is broken, and the creature can act normally. If the fiend refuses the offer, it is free to take any actions it wishes. Should you and the fiend reach an agreement that is satisfactory to both parties, you must sign the charter in blood and have the fiend do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the fiend to the agreement until its service is rendered and the reward paid, at which point the scroll ignites and burns into ash. The contract's wording should be carefully considered, as fiends are notorious for finding loopholes or adhering to the letter of the agreement to their advantage. If either party breaks the bargain, that creature immediately takes 10d6 necrotic damage, and the charter is destroyed, ending the contract.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurehead-of-prowess", - "fields": { - "name": "Figurehead of Prowess", - "desc": "A figurehead of prowess must be mounted on the bow of a ship for its magic to take effect. While mounted on a ship, the figurehead’s magic affects the ship and every creature on the ship. A figurehead can be mounted on any ship larger than a rowboat, regardless if that ship sails the sea, the sky, rivers and lakes, or the sands of the desert. A ship can have only one figurehead mounted on it at a time. Most figureheads are always active, but some have properties that must be activated. To activate a figurehead’s special property, a creature must be at the helm of the ship, referred to below as the “pilot,” and must use an action to speak the figurehead’s command word. \nAlbatross (Uncommon). While this figurehead is mounted on a ship, the ship’s pilot can double its proficiency bonus with navigator’s tools when navigating the ship. In addition, the ship’s pilot doesn’t have disadvantage on Wisdom (Perception) checks that rely on sight when peering through fog, rain, dust storms, or other natural phenomena that would ordinarily lightly obscure the pilot’s vision. \nBasilisk (Uncommon). While this figurehead is mounted on a ship, the ship’s AC increases by 2. \nDragon Turtle (Very Rare). While this figurehead is mounted on a ship, each creature on the ship has resistance to fire damage, and the ship’s damage threshold increases by 5. If the ship doesn’t normally have a damage threshold, it gains a damage threshold of 5. \nKraken (Rare). While this figurehead is mounted on a ship, the pilot can animate all of the ship’s ropes. If a creature on the ship uses an animated rope while taking the grapple action, the creature has advantage on the check. Alternatively, the pilot can command the ropes to move as if being moved by a crew, allowing a ship to dock or a sailing ship to sail without a crew. The pilot can end this effect as a bonus action. When the ship’s ropes have been animated for a total of 10 minutes, the figurehead’s magic ceases to function until the next dawn. \nManta Ray (Rare). While this figurehead is mounted on a ship, the ship’s speed increases by half. For example, a ship with a speed of 4 miles per hour would have a speed of 6 miles per hour while this figurehead was mounted on it. \nNarwhal (Very Rare). While this figurehead is mounted on a ship, each creature on the ship has resistance to cold damage, and the ship can break through ice sheets without taking damage or needing to make a check. \nOctopus (Rare). This figurehead can be mounted only on ships designed for water travel. While this figurehead is mounted on a ship, the pilot can force the ship to dive beneath the water. The ship moves at its normal speed while underwater, regardless of its normal method of locomotion. Each creature on the ship remains on the ship and can breathe normally as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to resurface at a rate of 60 feet per round. When the ship has spent a total of 1 hour underwater, the figurehead’s magic ceases to function until the next dawn. \nSphinx (Legendary). This figurehead can be mounted only on a ship that isn’t designed for air travel. While this figurehead is mounted on a ship, the pilot can command the ship to rise into the air. The ship moves at its normal speed while in the air, regardless of its normal method of locomotion. Each creature on the ship remains on the ship as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to descend at a rate of 60 feet per round until it reaches land or water. When the ship has spent a total of 8 hours in the sky, the figurehead’s magic ceases to function until the next dawn. \nXorn (Very Rare). This figurehead can be mounted only on a ship designed for land travel. While this figurehead is mounted on a ship, the pilot can force the ship to burrow into the earth. The ship moves at its normal speed while burrowing, regardless of its normal method of locomotion. The ship can burrow through nonmagical, unworked sand, mud, earth, and stone, and it doesn’t disturb the material it moves through. Each creature on the ship remains on the ship and can breathe normally as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to resurface at a rate of 60 feet per round. When the ship has spent a total of 1 hour burrowing, the figurehead’s magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-amber-bee", - "fields": { - "name": "Figurine of Wondrous Power (Amber Bee)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-basalt-cockatrice", - "fields": { - "name": "Figurine of Wondrous Power (Basalt Cockatrice)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-coral-shark", - "fields": { - "name": "Figurine of Wondrous Power (Coral Shark)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-hematite-aurochs", - "fields": { - "name": "Figurine of Wondrous Power (Hematite Aurochs)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-lapis-camel", - "fields": { - "name": "Figurine of Wondrous Power (Lapis Camel)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-marble-mistwolf", - "fields": { - "name": "Figurine of Wondrous Power (Marble Mistwolf)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-tin-dog", - "fields": { - "name": "Figurine of Wondrous Power (Tin Dog)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-violet-octopoid", - "fields": { - "name": "Figurine of Wondrous Power (Violet Octopoid)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "firebird-feather", - "fields": { - "name": "Firebird Feather", - "desc": "This feather sheds bright light in a 20-foot radius and dim light for an additional 20 feet, but it creates no heat and doesn't use oxygen. While holding the feather, you can tolerate temperatures as low as –50 degrees Fahrenheit. Druids and clerics and paladins who worship nature deities can use the feather as a spellcasting focus. If you use the feather in place of a holy symbol when using your Turn Undead feature, undead in the area have a –1 penalty on the saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "flag-of-the-cursed-fleet", - "fields": { - "name": "Flag of the Cursed Fleet", - "desc": "This dreaded item is a black flag painted with an unsettlingly realistic skull. A spell or other effect that can sense the presence of magic, such as detect magic, reveals an aura of necromancy around the flag. Beasts with an Intelligence of 3 or lower don’t willingly board a vessel where this flag flies. A successful DC 17 Wisdom (Animal Handling) check convinces an unwilling beast to board the vessel, though it remains uneasy and skittish while aboard. \nCursed Crew. When this baleful flag flies atop the mast of a waterborne vehicle, it curses the vessel and all those that board it. When a creature that isn’t a humanoid dies aboard the vessel, it rises 1 minute later as a zombie under the ship captain’s control. When a humanoid dies aboard the vessel, it rises 1 minute later as a ghoul under the ship captain’s control. A ghoul retains any knowledge of sailing or maintaining a waterborne vehicle that it had in life. \nCursed Captain. If the ship flying this flag doesn’t have a captain, the undead crew seeks out a powerful humanoid or intelligent undead to bring aboard and coerce into becoming the captain. When an undead with an Intelligence of 10 or higher boards the captainless vehicle, it must succeed on a DC 17 Wisdom saving throw or become magically bound to the ship and the flag. If the creature exits the vessel and boards it again, the creature must repeat the saving throw. The flag fills the captain with the desire to attack other vessels to grow its crew and commandeer larger vessels when possible, bringing the flag with it. If the flag is destroyed or removed from a waterborne vehicle for at least 7 days, the zombie and ghoul crew crumbles to dust, and the captain is freed of the flag’s magic, if the captain was bound to it. \nUnholy Vessel. While aboard a vessel flying this flag, an undead creature has advantage on saving throws against effects that turn undead, and if it fails the saving throw, it isn’t destroyed, no matter its CR. In addition, the captain and crew can’t be frightened while aboard a vessel flying this flag. \nWhen a creature that isn’t a construct or undead and isn’t part of the crew boards the vessel, it must succeed on a DC 17 Constitution saving throw or be poisoned while it remains on board. If the creature exits the vessel and boards it again, the creature must repeat the saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "flash-bullet", - "fields": { - "name": "Flash Bullet", - "desc": "When you hit a creature with a ranged attack using this shiny, polished stone, it releases a sudden flash of bright light. The target takes damage as normal and must succeed on a DC 11 Constitution saving throw or be blinded until the end of its next turn. Creatures with the Sunlight Sensitivity trait have disadvantage on this saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "flask-of-epiphanies", - "fields": { - "name": "Flask of Epiphanies", - "desc": "This flask is made of silver and cherry wood, and it holds finely cut garnets on its faces. This ornate flask contains 5 ounces of powerful alcoholic spirits. As an action, you can drink up to 5 ounces of the flask's contents. You can drink 1 ounce without risk of intoxication. When you drink more than 1 ounce of the spirits as part of the same action, you must make a DC 12 Constitution saving throw (this DC increases by 1 for each ounce you imbibe after the second, to a maximum of DC 15). On a failed save, you are incapacitated for 1d4 hours and gain no benefits from consuming the alcohol. On a success, your Intelligence or Wisdom (your choice) increases by 1 for each ounce you consumed. Whether you fail or succeed, your Dexterity is reduced by 1 for each ounce you consumed. The effect lasts for 1 hour. During this time, you have advantage on all Intelligence (Arcana) and Inteligence (Religion) checks. The flask replenishes 1d3 ounces of spirits daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "fleshspurned-mask", - "fields": { - "name": "Fleshspurned Mask", - "desc": "This mask features inhumanly sized teeth similar in appearance to the toothy ghost known as a Fleshspurned (see Tome of Beasts 2). It has a strap fashioned from entwined strands of sinew, and it fits easily over your face with no need to manually adjust the strap. While wearing this mask, you can use its teeth to make unarmed strikes. When you hit with it, the teeth deal necrotic damage equal to 1d6 + your Strength modifier, instead of bludgeoning damage normal for an unarmed strike. In addition, if the target has the Incorporeal Movement trait, you deal necrotic damage equal to 2d6 + your Strength modifier instead. Such targets don't have resistance or immunity to the necrotic damage you deal with this attack. If you kill a creature with your teeth, you gain temporary hit points equal to double the creature's challenge rating (minimum of 1).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "flood-charm", - "fields": { - "name": "Flood Charm", - "desc": "This smooth, blue-gray stone is carved with stylized waves or rows of wavy lines. When you are in water too deep to stand, the charm activates. You automatically become buoyant enough to float to the surface unless you are grappled or restrained. If you are unable to surface—such as if you are grappled or restrained, or if the water completely fills the area—the charm surrounds you with a bubble of breathable air that lasts for 5 minutes. At the end of the air bubble's duration, or when you leave the water, the charm's effects end and it becomes a nonmagical stone.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "flute-of-saurian-summoning", - "fields": { - "name": "Flute of Saurian Summoning", - "desc": "This scaly, clawed flute has a musky smell, and it releases a predatory, screeching roar with reptilian overtones when blown. You must be proficient with wind instruments to use this flute. You can use an action to play the flute and conjure dinosaurs. This works like the conjure animals spell, except the animals you conjure must be dinosaurs or Medium or larger lizards. The dinosaurs remain for 1 hour, until they die, or until you dismiss them as a bonus action. The flute can't be used to conjure dinosaurs again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "fly-whisk-of-authority", - "fields": { - "name": "Fly Whisk of Authority", - "desc": "If you use an action to flick this fly whisk, you have advantage on Charisma (Intimidation) and Charisma (Persuasion) checks for 10 minutes. You can't use the fly whisk this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "fog-stone", - "fields": { - "name": "Fog Stone", - "desc": "This sling stone is carved to look like a fluffy cloud. Typically, 1d4 + 1 fog stones are found together. When you fire the stone from a sling, it transforms into a miniature cloud as it flies through the air, and it creates a 20-foot-radius sphere of fog centered on the target or point of impact. The sphere spreads around corners, and its area is heavily obscured. It lasts for 10 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "forgefire-maul", - "fields": { - "name": "Forgefire Maul", - "desc": "The head of this weapon is shaped like an anvil, and engravings of fire and arcane runes decorate it. You can use a bonus action to speak this magic weapon's command word, causing its head to glow red-hot. While red-hot, the weapon deals an extra 1d6 fire damage to any target it hits. The weapon's anvil-like head remains red-hot until you use a bonus action to speak the command word again or until you drop or sheathe the weapon. When you roll a 20 on an attack roll made with this weapon against a target holding or wearing a metal object, such as a metal weapon or metal armor, the target takes an extra 1d4 fire damage and the metal object becomes red-hot for 1 minute. While the object is red-hot and the creature still wears or carries it, the creature takes 1d4 fire damage at the start of each of its turns.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "forgefire-warhammer", - "fields": { - "name": "Forgefire Warhammer", - "desc": "The head of this weapon is shaped like an anvil, and engravings of fire and arcane runes decorate it. You can use a bonus action to speak this magic weapon's command word, causing its head to glow red-hot. While red-hot, the weapon deals an extra 1d6 fire damage to any target it hits. The weapon's anvil-like head remains red-hot until you use a bonus action to speak the command word again or until you drop or sheathe the weapon. When you roll a 20 on an attack roll made with this weapon against a target holding or wearing a metal object, such as a metal weapon or metal armor, the target takes an extra 1d4 fire damage and the metal object becomes red-hot for 1 minute. While the object is red-hot and the creature still wears or carries it, the creature takes 1d4 fire damage at the start of each of its turns.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "fountmail", - "fields": { - "name": "Fountmail", - "desc": "This armor is a dazzling white suit of chain mail with an alabaster-colored steel collar that covers part of the face. You gain a +3 bonus to AC while you wear this armor. In addition, you gain the following benefits: - You add your Strength and Wisdom modifiers in addition to your Constitution modifier on all rolls when spending Hit Die to recover hit points. - You can't be frightened. - You have resistance to necrotic damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "freerunner-rod", - "fields": { - "name": "Freerunner Rod", - "desc": "Tightly intertwined lengths of grass, bound by additional stiff, knotted blades of grass, form this rod, which is favored by plains-dwelling druids and rangers. While holding it and in grasslands, you leave behind no tracks or other traces of your passing, and you can pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. In addition, beasts with an Intelligence of 3 or lower that are native to grasslands must succeed on a DC 15 Charisma saving throw to attack you. The rod has 10 charges, and it regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rod collapses into a pile of grass seeds and is destroyed. Among the grass seeds are 1d10 berries, consumable as if created by the goodberry spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "frost-pellet", - "fields": { - "name": "Frost Pellet", - "desc": "Fashioned from the stomach lining of a Devil Shark (see Creature Codex), this rubbery pellet is cold to the touch. When you consume the pellet, you feel bloated, and you are immune to cold damage for 1 hour. Once before the duration ends, you can expel a 30-foot cone of cold water. Each creature in the cone must make a DC 15 Constitution saving throw. On a failure, the creature takes 6d8 cold damage and is pushed 10 feet away from you. On a success, the creature takes half the damage and isn't pushed away.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "frostfire-lantern", - "fields": { - "name": "Frostfire Lantern", - "desc": "While lit, the flame in this ornate mithril lantern turns blue and sheds a cold, blue dim light in a 30-foot radius. After the lantern's flame has burned for 1 hour, it can't be lit again until the next dawn. You can extinguish the lantern's flame early for use at a later time. Deduct the time it burned in increments of 1 minute from the lantern's total burn time. When a creature enters the lantern's light for the first time on a turn or starts its turn there, the creature must succeed on a DC 17 Constitution saving throw or be vulnerable to cold damage until the start of its next turn. When you light the lantern, choose up to four creatures you can see within 30 feet of you, which can include yourself. The chosen creatures are immune to this effect of the lantern's light.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "frungilator", - "fields": { - "name": "Frungilator", - "desc": "This strangely-shaped item resembles a melted wand or a strange growth chipped from the arcane trees of elder planes. The wand has 5 charges and regains 1d4 + 1 charges daily at dusk. While holding it, you can use an action to expend 1 of its charges and point it at a target within 60 feet of you. The target must be a creature. When activated, the wand frunges creatures into a chaos matrix, which does…something. Roll a d10 and consult the following table to determine these unpredictable effects (none of them especially good). Most effects can be removed by dispel magic, greater restoration, or more powerful magic. | d10 | Frungilator Effect |\n| --- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| 1 | Glittering sparkles fly all around. You are surrounded in sparkling light until the end of your next turn as if you were targeted by the faerie fire spell. |\n| 2 | The target is encased in void crystal and immediately begins suffocating. A creature, including the target, can take its action to shatter the void crystal by succeeding on a DC 10 Strength check. Alternatively, the void crystal can be attacked and destroyed (AC 12; hp 4; immunity to poison and psychic damage). |\n| 3 | Crimson void fire engulfs the target. It must make a DC 13 Constitution saving throw, taking 4d6 fire damage on a failed save, or half as much damage on a successful one. |\n| 4 | The target's blood turns to ice. It must make a DC 13 Constitution saving throw, taking 6d6 cold damage on a failed save, or half as much damage on a successful one. |\n| 5 | The target rises vertically to a height of your choice, up to a maximum height of 60 feet. The target remains suspended there until the start of its next turn. When this effect ends, the target floats gently to the ground. |\n| 6 | The target begins speaking in backwards fey speech for 10 minutes. While speaking this way, the target can't verbally communicate with creatures that aren't fey, and the target can't cast spells with verbal components. |\n| 7 | Golden flowers bloom across the target's body. It is blinded until the end of its next turn. |\n| 8 | The target must succeed on a DC 13 Constitution saving throw or it and all its equipment assumes a gaseous form until the end of its next turn. This effect otherwise works like the gaseous form spell. |\n| 9 | The target must succeed on a DC 15 Wisdom saving throw or become enthralled with its own feet or limbs until the end of its next turn. While enthralled, the target is incapacitated. |\n| 10 | A giant ray of force springs out of the frungilator and toward the target. Each creature in a line that is 5 feet wide between you and the target must make a DC 16 Dexterity saving throw, taking 4d12 force damage on a failed save, or half as much damage on a successful one. |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "fulminar-bracers", - "fields": { - "name": "Fulminar Bracers", - "desc": "Stylized etchings of cat-like lightning elementals known as Fulminars (see Creature Codex) cover the outer surfaces of these solid silver bracers. While wearing these bracers, lightning crackles harmless down your hands, and you have resistance to lightning damage and thunder damage. The bracers have 3 charges. You can use an action to expend 1 charge to create lightning shackles that bind up to two creatures you can see within 60 feet of you. Each target must make a DC 15 Dexterity saving throw. On a failure, a target takes 4d6 lightning damage and is restrained for 1 minute. On a success, the target takes half the damage and isn't restrained. A restrained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The bracers regain all expended charges daily at dawn. The bracers also regain 1 charge each time you take 10 lightning damage while wearing them.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "gale-javelin", - "fields": { - "name": "Gale Javelin", - "desc": "The metallic head of this javelin is embellished with three small wings. When you speak a command word while making a ranged weapon attack with this magic weapon, a swirling vortex of wind follows its path through the air. Draw a line between you and the target of your attack; each creature within 10 feet of this line must make a DC 13 Strength saving throw. On a failed save, the creature is pushed backward 10 feet and falls prone. In addition, if this ranged weapon attack hits, the target must make a DC 13 Strength saving throw. On a failed save, the target is pushed backward 15 feet and falls prone. The javelin's property can't be used again until the next dawn. In the meantime, it can still be used as a magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "garments-of-winters-knight", - "fields": { - "name": "Garments of Winter's Knight", - "desc": "This white-and-blue outfit is designed in the style of fey nobility and maximized for both movement and protection. The multiple layers and snow-themed details of this garb leave no doubt that whoever wears these clothes is associated with the winter queen of faerie. You gain the following benefits while wearing the outfit: - If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\n- Whenever a creature within 5 feet of you hits you with a melee attack, the cloth steals heat from the surrounding air, and the attacker takes 2d8 cold damage.\n- You can't be charmed, and you are immune to cold damage.\n- You can use a bonus action to extend your senses outward to detect the presence of fey. Until the start of your next turn, you know the location of any fey within 60 feet of you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "gauntlet-of-the-iron-sphere", - "fields": { - "name": "Gauntlet of the Iron Sphere", - "desc": "This heavy gauntlet is adorned with an onyx. While wearing this gauntlet, your unarmed strikes deal 1d8 bludgeoning damage, instead of the damage normal for an unarmed strike, and you gain a +1 bonus to attack and damage rolls with unarmed strikes. In addition, your unarmed strikes deal double damage to objects and structures. If you hold a pound of raw iron ore in your hand while wearing the gauntlet, you can use an action to speak the gauntlet's command word and conjure an Iron Sphere (see Creature Codex). The iron sphere remains for 1 hour or until it dies. It is friendly to you and your companions. Roll initiative for the iron sphere, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the iron sphere, it defends itself from hostile creatures but otherwise takes no actions. The gauntlet can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "gazebo-of-shade-and-shelter", - "fields": { - "name": "Gazebo of Shade and Shelter", - "desc": "You can use an action to place this 3-inch sandstone gazebo statuette on the ground and speak its command word. Over the next 5 minutes, the sandstone gazebo grows into a full-sized gazebo that remains for 8 hours or until you speak the command word that returns it to a sandstone statuette. The gazebo's posts are made of palm tree trunks, and its roof is made of palm tree fronds. The floor is level, clean, dry and made of palm fronds. The atmosphere inside the gazebo is comfortable and dry, regardless of the weather outside. You can command the interior to become dimly lit or dark. The gazebo's walls are opaque from the outside, appearing wooden, but they are transparent from the inside, appearing much like sheer fabric. When activated, the gazebo has an opening on the side facing you. The opening is 5 feet wide and 10 feet tall and opens and closes at your command, which you can speak as a bonus action while within 10 feet of the opening. Once closed, the opening is immune to the knock spell and similar magic, such as that of a chime of opening. The gazebo is 20 feet in diameter and is 10 feet tall. It is made of sandstone, despite its wooden appearance, and its magic prevents it from being tipped over. It has 100 hit points, immunity to nonmagical attacks excluding siege weapons, and resistance to all other damage. The gazebo contains crude furnishings: eight simple bunks and a long, low table surrounded by eight mats. Three of the wall posts bear fruit: one coconut, one date, and one fig. A small pool of clean, cool water rests at the base of a fourth wall post. The trees and the pool of water provide enough food and water for up to 10 people. Furnishings and other objects within the gazebo dissipate into smoke if removed from the gazebo. When the gazebo returns to its statuette form, any creatures inside it are expelled into unoccupied spaces nearest to the gazebo's entrance. Once used, the gazebo can't be used again until the next dusk. If reduced to 0 hit points, the gazebo can't be used again until 7 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-barding-breastplate", - "fields": { - "name": "Ghost Barding Breastplate", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-barding-chain-mail", - "fields": { - "name": "Ghost Barding Chain Mail", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-barding-chain-shirt", - "fields": { - "name": "Ghost Barding Chain Shirt", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-barding-half-plate", - "fields": { - "name": "Ghost Barding Half Plate", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-barding-hide", - "fields": { - "name": "Ghost Barding Hide", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-barding-leather", - "fields": { - "name": "Ghost Barding Leather", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-barding-padded", - "fields": { - "name": "Ghost Barding Padded", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-barding-plate", - "fields": { - "name": "Ghost Barding Plate", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-barding-ring-mail", - "fields": { - "name": "Ghost Barding Ring Mail", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-barding-scale-mail", - "fields": { - "name": "Ghost Barding Scale Mail", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-barding-splint", - "fields": { - "name": "Ghost Barding Splint", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-barding-studded-leather", - "fields": { - "name": "Ghost Barding Studded Leather", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-dragon-horn", - "fields": { - "name": "Ghost Dragon Horn", - "desc": "Scales from dead dragons cover this wooden, curved horn. You can use an action to speak the horn's command word and then blow the horn, which emits a blast in a 30-foot cone, containing shrieking spectral dragon heads. Each creature in the cone must make a DC 17 Wisdom saving throw. On a failure, a creature tales 5d10 psychic damage and is frightened of you for 1 minute. On a success, a creature takes half the damage and isn't frightened. Dragons have disadvantage on the saving throw and take 10d10 psychic damage instead of 5d10. A frightened target can repeat the Wisdom saving throw at the end of each of its turns, ending the effect on itself on a success. If a dragon takes damage from the horn's shriek, the horn has a 20 percent chance of exploding. The explosion deals 10d10 psychic damage to the blower and destroys the horn. Once you use the horn, it can't be used again until the next dawn. If you kill a dragon while holding or carrying the horn, you regain use of the horn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ghost-thread", - "fields": { - "name": "Ghost Thread", - "desc": "Most of this miles-long strand of enchanted silk, created by phase spiders, resides on the Ethereal Plane. Only a few inches at either end exist permanently on the Material Plane, and those may be used as any normal string would be. Creatures using it to navigate can follow one end to the other by running their hand along the thread, which phases into the Material Plane beneath their grasp. If dropped or severed (AC 8, 1 hit point), the thread disappears back into the Ethereal Plane in 2d6 rounds.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ghoul-light", - "fields": { - "name": "Ghoul Light", - "desc": "This bullseye lantern sheds light as normal when a lit candle is placed inside of it. If the light shines on meat, no matter how toxic or rotten, for at least 10 minutes, the meat is rendered safe to eat. The lantern's magic doesn't improve the meat's flavor, but the light does restore the meat's nutritional value and purify it, rendering it free of poison and disease. In addition, when an undead creature ends its turn in the light, it takes 1 radiant damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ghoulbane-oil", - "fields": { - "name": "Ghoulbane Oil", - "desc": "This rusty-red gelatinous liquid glistens with tiny sparkling crystal flecks. The oil can coat one weapon or 5 pieces of ammunition. Applying the oil takes 1 minute. For 1 hour, if a ghoul, ghast, or Darakhul (see Tome of Beasts) takes damage from the coated item, it takes an extra 2d6 damage of the weapon's type.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ghoulbane-rod", - "fields": { - "name": "Ghoulbane Rod", - "desc": "Arcane glyphs decorate the spherical head of this tarnished rod, while engravings of cracked and broken skulls and bones circle its haft. When an undead creature is within 120 feet of the rod, the rod's arcane glyphs emit a soft glow. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's glyphs flare to life and the rod's magic activates. When an undead creature enters or starts its turn within 30 feet of the planted rod, it must succeed on a DC 15 Wisdom saving throw or have disadvantage on attack rolls against creatures that aren't undead until the start of its next turn. If a ghoul fails this saving throw, it also takes a –2 penalty to AC and Dexterity saving throws, its speed is halved, and it can't use reactions. The rod's magic remains active while planted in the ground, and after it has been active for a total of 10 minutes, its magic ceases to function until the next dawn. A creature can use an action to pull the rod from the ground, ending the effect early for use at a later time. Deduct the time it was active in increments of 1 minute from the rod's total active time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "giggling-orb", - "fields": { - "name": "Giggling Orb", - "desc": "This glass sphere measures 3 inches in diameter and contains a swirling, yellow mist. You can use an action to throw the orb up to 60 feet. The orb shatters on impact and is destroyed. Each creature within a 20-foot-radius of where the orb landed must succeed on a DC 15 Wisdom saving throw or fall prone in fits of laughter, becoming incapacitated and unable to stand for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "girdle-of-traveling-alchemy", - "fields": { - "name": "Girdle of Traveling Alchemy", - "desc": "This wide leather girdle has many sewn-in pouches and holsters that hold an assortment of empty beakers and vials. Once you have attuned to the girdle, these containers magically fill with the following liquids:\n- 2 flasks of alchemist's fire\n- 2 flasks of alchemist's ice*\n- 2 vials of acid - 2 jars of swarm repellent* - 1 vial of assassin's blood poison - 1 potion of climbing - 1 potion of healing Each container magically replenishes each day at dawn, if you are wearing the girdle. All the potions and alchemical substances produced by the girdle lose their properties if they're transferred to another container before being used.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "glamour-rings", - "fields": { - "name": "Glamour Rings", - "desc": "These rings are made from twisted loops of gold and onyx and are always found in pairs. The rings' magic works only while you and another humanoid of the same size each wear one ring and are on the same plane of existence. While wearing a ring, you or the other humanoid can use an action to swap your appearances, if both of you are willing. This effect works like the Change Appearance effect of the alter self spell, except you can change your appearance to only look identical to each other. Your clothing and equipment don't change, and the effect lasts until one of you uses this property again or until one of you removes the ring.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "glass-wand-of-leng", - "fields": { - "name": "Glass Wand of Leng", - "desc": "The tip of this twisted clear glass wand is razorsharp. It can be wielded as a magic dagger that grants a +1 bonus to attack and damage rolls made with it. The wand weighs 4 pounds and is roughly 18 inches long. When you tap the wand, it emits a single, loud note which can be heard up to 20 feet away and does not stop sounding until you choose to silence it. This wand has 5 charges and regains 1d4 + 1 charges daily at dawn. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 17): arcane lock (2 charges), disguise self (1 charge), or tongues (3 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "glazed-battleaxe", - "fields": { - "name": "Glazed Battleaxe", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "glazed-greataxe", - "fields": { - "name": "Glazed Greataxe", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "glazed-greatsword", - "fields": { - "name": "Glazed Greatsword", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "glazed-handaxe", - "fields": { - "name": "Glazed Handaxe", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "glazed-longsword", - "fields": { - "name": "Glazed Longsword", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "glazed-rapier", - "fields": { - "name": "Glazed Rapier", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "glazed-scimitar", - "fields": { - "name": "Glazed Scimitar", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "glazed-shortsword", - "fields": { - "name": "Glazed Shortsword", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "gliding-cloak", - "fields": { - "name": "Gliding Cloak", - "desc": "By grasping the ends of the cloak while falling, you can glide up to 5 feet horizontally in any direction for every 1 foot you fall. You descend 60 feet per round but take no damage from falling while gliding in this way. A tailwind allows you to glide 10 feet per 1 foot descended, but a headwind forces you to only glide 5 feet per 2 feet descended.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "gloomflower-corsage", - "fields": { - "name": "Gloomflower Corsage", - "desc": "This black, six-petaled flower fits neatly on a garment's lapel or peeking out of a pocket. While wearing it, you have advantage on saving throws against being blinded, deafened, or frightened. While wearing the flower, you can use an action to speak one of three command words to invoke the corsage's power and cause one of the following effects: - When you speak the first command word, you gain blindsight out to a range of 120 feet for 1 hour.\n- When you speak the second command word, choose a target within 120 feet of you and make a ranged attack with a +7 bonus. On a hit, the target takes 3d6 psychic damage.\n- When you speak the third command word, your form shifts and shimmers. For 1 minute, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight. Each time you use the flower, one of its petals curls in on itself. You can't use the flower if all of its petals are curled. The flower uncurls 1d6 petals daily at dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "gloves-of-the-magister", - "fields": { - "name": "Gloves of the Magister", - "desc": "The backs of each of these black leather gloves are set with gold fittings as if to hold a jewel. While you wear the gloves, you can cast mage hand at will. You can affix an ioun stone into the fitting on a glove. While the stone is affixed, you gain the benefits of the stone as if you had it in orbit around your head. If you take an action to touch a creature, you can transfer the benefits of the ioun stone to that creature for 1 hour. While the creature is gifted the benefits, the stone turns gray and provides you with no benefits for the duration. You can use an action to end this effect and return power to the stone. The stone's benefits can also be dispelled from a creature as if they were a 7th-level spell. When the effect ends, the stone regains its color and provides you with its benefits once more.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "gloves-of-the-walking-shade", - "fields": { - "name": "Gloves of the Walking Shade", - "desc": "Each glove is actually comprised of three, black ivory rings (typically fitting the thumb, middle finger, and pinkie) which are connected to each other. The rings are then connected to an intricately-engraved onyx wrist cuff by a web of fine platinum chains and tiny diamonds. While wearing these gloves, you gain the following benefits: - You have resistance to necrotic damage.\n- You can spend one Hit Die during a short rest to remove one level of exhaustion instead of regaining hit points.\n- You can use an action to become a living shadow for 1 minute. For the duration, you can move through a space as narrow as 1 inch wide without squeezing, and you can take the Hide action as a bonus action while you are in dim light or darkness. Once used, this property of the gloves can't be used again until the next nightfall.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "gnawing-spear", - "fields": { - "name": "Gnawing Spear", - "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. When you roll a 20 on an attack roll made with this spear, its head animates, grows serrated teeth, and lodges itself in the target. While the spear is lodged in the target and you are wielding the spear, the target is grappled by you. At the start of each of your turns, the spear twists and grinds, dealing 2d6 piercing damage to the grappled target. If you release the spear, it remains lodged in the target, dealing damage each round as normal, but the target is no longer grappled by you. While the spear is lodged in a target, you can't make attacks with it. A creature, including the restrained target, can take its action to remove the spear by succeeding on a DC 15 Strength check. The target takes 1d6 piercing damage when the spear is removed. You can use an action to speak the spear's command word, causing it to dislodge itself and fall into an unoccupied space within 5 feet of the target.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "goblin-shield", - "fields": { - "name": "Goblin Shield", - "desc": "This shield resembles a snarling goblin's head. It has 3 charges and regains 1d3 expended charges daily at dawn. While wielding this shield, you can use a bonus action to expend 1 charge and command the goblin's head to bite a creature within 5 feet of you. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. On a hit, the target takes 2d4 piercing damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "goggles-of-firesight", - "fields": { - "name": "Goggles of Firesight", - "desc": "The lenses of these combination fleshy and plantlike goggles extend a few inches away from the goggles on a pair of tentacles. While wearing these lenses, you can see through lightly obscured and heavily obscured areas without your vision being obscured, if those areas are obscured by fire, smoke, or fog. Other effects that would obscure your vision, such as rain or darkness, affect you normally. When you fail a saving throw against being blinded, you can use a reaction to call on the power within the goggles. If you do so, you succeed on the saving throw instead. The goggles can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "goggles-of-shade", - "fields": { - "name": "Goggles of Shade", - "desc": "While wearing these dark lenses, you have advantage on Charisma (Deception) checks. If you have the Sunlight Sensitivity trait and wear these goggles, you no longer suffer the penalties of Sunlight Sensitivity while in sunlight.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "golden-bolt", - "fields": { - "name": "Golden Bolt", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. This crossbow doesn't have the loading property, and it doesn't require ammunition. Immediately after firing a bolt from this weapon, another golden bolt forms to take its place.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "gorgon-scale", - "fields": { - "name": "Gorgon Scale", - "desc": "The iron scales of this armor have a green-tinged iridescence. While wearing this armor, you gain a +1 bonus to AC, and you have immunity to the petrified condition. If you move at least 20 feet straight toward a creature and then hit it with a melee weapon attack on the same turn, you can use a bonus action to imbue the hit with some of the armor's petrifying magic. The target must make a DC 15 Constitution saving throw. On a failed save, the target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "granny-wax", - "fields": { - "name": "Granny Wax", - "desc": "Normally found in a small glass jar containing 1d3 doses, this foul-smelling, greasy yellow substance is made by hags in accordance with an age-old secret recipe. You can use an action to rub one dose of the wax onto an ordinary broom or wooden stick and transform it into a broom of flying for 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "grasping-cap", - "fields": { - "name": "Grasping Cap", - "desc": "This cap is a simple, blue silk hat with a goose feather trim. While wearing this cap, you have advantage on Strength (Athletics) checks made to climb, and the cap deflects the first ranged attack made against you each round. In addition, when a creature attacks you while within 30 feet of you, it is illuminated and sheds red-hued dim light in a 50-foot radius until the end of its next turn. Any attack roll against an illuminated creature has advantage if the attacker can see it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "grasping-cloak", - "fields": { - "name": "Grasping Cloak", - "desc": "Made of strips of black leather, this cloak always shines as if freshly oiled. The strips writhe and grasp at nearby creatures. While wearing this cloak, you can use a bonus action to command the strips to grapple a creature no more than one size larger than you within 5 feet of you. The strips make the grapple attack roll with a +7 bonus. On a hit, the target is grappled by the cloak, leaving your hands free to perform other tasks or actions that require both hands. However, you are still considered to be grappling a creature, limiting your movement as normal. The cloak can grapple only one creature at a time. Alternatively, you can use a bonus action to command the strips to aid you in grappling. If you do so, you have advantage on your next attack roll made to grapple a creature. While grappling a creature in this way, you have advantage on the contested check if a creature attempts to escape your grapple.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "grasping-shield", - "fields": { - "name": "Grasping Shield", - "desc": "The boss at the center of this shield is a hand fashioned of metal. While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "grave-reagent", - "fields": { - "name": "Grave Reagent", - "desc": "This luminous green concoction creates an undead servant. If you spend 1 minute anointing the corpse of a Small or Medium humanoid, this arcane solution imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a zombie under your control (the GM has the zombie's statistics). On each of your turns, you can use a bonus action to verbally command the zombie if it is within 60 feet of you. You decide what action the zombie will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the zombie only defends itself against hostile creatures. Once given an order, the zombie continues to follow it until its task is complete. The zombie is under your control for 24 hours, after which it stops obeying any command you've given it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "grave-ward-breastplate", - "fields": { - "name": "Grave Ward Breastplate", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "grave-ward-chain-mail", - "fields": { - "name": "Grave Ward Chain Mail", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "grave-ward-chain-shirt", - "fields": { - "name": "Grave Ward Chain Shirt", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "grave-ward-half-plate", - "fields": { - "name": "Grave Ward Half Plate", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "grave-ward-hide", - "fields": { - "name": "Grave Ward Hide", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "grave-ward-leather", - "fields": { - "name": "Grave Ward Leather", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "grave-ward-padded", - "fields": { - "name": "Grave Ward Padded", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "grave-ward-plate", - "fields": { - "name": "Grave Ward Plate", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "grave-ward-ring-mail", - "fields": { - "name": "Grave Ward Ring Mail", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "grave-ward-scale-mail", - "fields": { - "name": "Grave Ward Scale Mail", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "grave-ward-splint", - "fields": { - "name": "Grave Ward Splint", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "grave-ward-studded-leather", - "fields": { - "name": "Grave Ward Studded Leather", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "greater-potion-of-troll-blood", - "fields": { - "name": "Greater Potion of Troll Blood", - "desc": "When drink this potion, you regain 3 hit points at the start of each of your turns. After it has restored 30 hit points, the potion's effects end.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "greater-scroll-of-conjuring", - "fields": { - "name": "Greater Scroll of Conjuring", - "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "greatsword-of-fallen-saints", - "fields": { - "name": "Greatsword of Fallen Saints", - "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "greatsword-of-volsung", - "fields": { - "name": "Greatsword of Volsung", - "desc": "Legends tell of a dragon whose hide was impenetrable and so robust that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon’s name was lost, but its legacy remains. This sword is one of two items that were crafted to hold its heart. The black blade is adorned with glittering silver runes, and its guard has a shallow opening at the center with grooves connecting it to the first rune. The sword’s pommel is a large, clear crystal held fast by silver scales. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit a dragon with an attack using this sword, that creature takes an extra 1d6 slashing damage. Runes of Courage. You can’t be frightened while holding or carrying this sword. Fragment of Gram Awakened. You can use a bonus action to awaken a fragment of the spirit of the great wyrm that inhabits this blade. For 24 hours, you gain a +3 bonus to attack and damage rolls with this magic sword, and when you hit a dragon with an attack using this sword, that creature takes an extra 3d6 slashing damage. Once used, this property can’t be used again until 3 days have passed. If you have performed the Dragon Heart Ritual, you can use a bonus action to expend 2 of the sword’s charges to activate this property, and you can use this property as often as you want, as long as you have the charges to do so. Dragon Heart Ritual. If you are also attuned to the locket of dragon vitality (see page 152), you can drain 3 charges from the locket into the sword, turning the crystal pommel a deep red and rendering the locket broken and irreparable. Doing this requires a long rest where you also re-attune with the newly charged sword of volsung. Upon completing the Dragon Heart Ritual, the sword contains all remaining charges from the locket, and you gain the locket’s effects while holding or carrying the sword. When you are reduced to 0 hit points and trigger the locket’s temporary hit points, the sword isn’t destroyed, but you can’t trigger that effect again until 24 hours have passed. The sword regains all expended charges after you slay any dragon. For the purpose of this sword, “dragon” refers to any creature with the dragon type, including drakes and wyverns.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "green-mantle", - "fields": { - "name": "Green Mantle", - "desc": "This garment is made of living plants—mosses, vines, and grasses—interwoven into a light, comfortable piece of clothing. When you attune to this mantle, it forms a symbiotic relationship with you, sinking roots beneath your skin. While wearing the mantle, your hit point maximum is reduced by 5, and you gain the following benefits: - If you aren't wearing armor, your base Armor Class is 13 + your Dexterity modifier.\n- You have resistance to radiant damage.\n- You have immunity to the poisoned condition and poison damage that originates from a plant, moss, fungus, or plant creature.\n- As an action, you cause the mantle to produce 6 berries. It can have no more than 12 berries on it at one time. The berries have the same effect as berries produced by the goodberry spell. Unlike the goodberry spell, the berries retain their potency as long as they are not picked from the mantle. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "gremlins-paw", - "fields": { - "name": "Gremlin's Paw", - "desc": "This wand is fashioned from the fossilized forearm and claw of a gremlin. The wand has 5 charges. While holding the wand, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 15): bane (1 charge), bestow curse (3 charges), or hideous laughter (1 charge). The wand regains 1d4 + 1 expended charges daily at dusk. If you expend the wand's last charge, roll a d20. On a 20, you must succeed on a DC 15 Wisdom saving throw or become afflicted with short-term madness. On a 1, the rod crumbles into ashes and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "grifters-deck", - "fields": { - "name": "Grifter's Deck", - "desc": "When you deal a card from this slightly greasy, well-used deck, you can choose any specific card to be on top of the deck, assuming it hasn't already been dealt. Alternatively, you can choose a general card of a specific value or suit that hasn't already been dealt.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "grim-escutcheon", - "fields": { - "name": "Grim Escutcheon", - "desc": "This blackened iron shield is adorned with the menacing relief of a monstrously gaunt skull. You gain a +1 bonus to AC while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. While holding this shield, you can use a bonus action to speak its command word to cast the fear spell (save DC 13). The shield can't be used this way again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "gritless-grease", - "fields": { - "name": "Gritless Grease", - "desc": "This small, metal jar, 3 inches in diameter, holds 1d4 + 1 doses of a pungent waxy oil. As an action, one dose can be applied to or swallowed by a clockwork creature or device. The clockwork creature or device ignores difficult terrain, and magical effects can't reduce its speed for 8 hours. As an action, the clockwork creature, or a creature holding a clockwork device, can gain the effect of the haste spell until the end of its next turn (no concentration required). The effects of the haste spell melt the grease, ending all its effects at the end of the spell's duration.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "hair-pick-of-protection", - "fields": { - "name": "Hair Pick of Protection", - "desc": "This hair pick has glittering teeth that slide easily into your hair, making your hair look perfectly coiffed and battle-ready. Though typically worn in hair, you can also wear the pick as a brooch or cloak clasp. While wearing this pick, you gain a +2 bonus to AC, and you have advantage on saving throws against spells. In addition, the pick magically boosts your self-esteem and your confidence in your ability to overcome any challenge, making you immune to the frightened condition.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "half-plate-of-warding-1", - "fields": { - "name": "Half Plate of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "half-plate-of-warding-2", - "fields": { - "name": "Half Plate of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "half-plate-of-warding-3", - "fields": { - "name": "Half Plate of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "hallowed-effigy", - "fields": { - "name": "Hallowed Effigy", - "desc": "This foot-long totem, crafted from the bones and skull of a Tiny woodland beast bound in thin leather strips, serves as a boon for you and your allies and as a stinging trap to those who threaten you. The totem has 10 charges, and it regains 1d6 + 4 expended charges daily at dawn. If the last charge is expended, it can't regain charges again until a druid performs a 24-hour ritual, which involves the sacrifice of a Tiny woodland beast. You can use an action to secure the effigy on any natural organic substrate (such as dirt, mud, grass, and so on). While secured in this way, it pulses with primal energy on initiative count 20 each round, expending 1 charge. When it pulses, you and each creature friendly to you within 15 feet of the totem regains 1d6 hit points, and each creature hostile to you within 15 feet of the totem must make a DC 15 Constitution saving throw, taking 1d6 necrotic damage on a failed save, or half as much damage on a successful one. It continues to pulse each round until you pick it up, it runs out of charges, or it is destroyed. The totem has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If it drops to 0 hit points, it is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "hallucinatory-dust", - "fields": { - "name": "Hallucinatory Dust", - "desc": "This small packet contains black pollen from a Gloomflower (see Creature Codex). Hazy images swirl around the pollen when observed outside the packet. There is enough of it for one use. When you use an action to blow the dust from your palm, each creature in a 30-foot cone must make a DC 15 Wisdom saving throw. On a failure, a creature sees terrible visions, manifesting its fears and anxieties for 1 minute. While affected, it takes 2d6 psychic damage at the start of each of its turns and must spend its action to make one melee attack against a creature within 5 feet of it, other than you or itself. If the creature can't make a melee attack, it takes the Dodge action. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. On a success, a creature becomes incapacitated until the end of its next turn as the visions fill its mind then quickly fade. A creature reduced to 0 hit points by the dust's psychic damage falls unconscious and is stable. When the creature regains consciousness, it is permanently plagued by hallucinations and has disadvantage on ability checks until cured by a remove curse spell or similar magic.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "hammer-of-decrees", - "fields": { - "name": "Hammer of Decrees", - "desc": "This adamantine hammer was part of a set of smith's tools used to create weapons of law for an ancient dwarven civilization. It is pitted and appears damaged, and its oak handle is split and bound with cracking hide. While attuned to this hammer, you have advantage on ability checks using smith's tools, and the time it takes you to craft an item with your smith's tools is halved.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "hammer-of-throwing", - "fields": { - "name": "Hammer of Throwing", - "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. In addition, when you throw the hammer, it returns to your hand at the end of your turn. If you have no hand free, it falls to the ground at your feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "handy-scroll-quiver", - "fields": { - "name": "Handy Scroll Quiver", - "desc": "This belt quiver is wide enough to pass a rolled scroll through the opening. Containing an extra dimensional space, the quiver can hold up to 25 scrolls and weighs 1 pound, regardless of its contents. Placing a scroll in the quiver follows the normal rules for interacting with objects. Retrieving a scroll from the quiver requires you to use an action. When you reach into the quiver for a specific scroll, that scroll is always magically on top. The quiver has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the quiver ruptures and is destroyed. If the quiver is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If a breathing creature is placed within the quiver, the creature can survive for up to 5 minutes, after which time it begins to suffocate. Placing the quiver inside an extradimensional space created by a bag of holding, handy haversack, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "hangmans-noose", - "fields": { - "name": "Hangman's Noose", - "desc": "Certain hemp ropes used in the execution of final justice can affect those beyond the reach of normal magics. This noose has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the hold monster spell from it. Unlike the standard version of this spell, though, the magic of the hangman's noose affects only undead. It regains 1d3 charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "hardening-polish", - "fields": { - "name": "Hardening Polish", - "desc": "This gray polish is viscous and difficult to spread. The polish can coat one metal weapon or up to 10 pieces of ammunition. Applying the polish takes 1 minute. For 1 hour, the coated item hardens and becomes stronger, and it counts as an adamantine weapon for the purpose of overcoming resistance and immunity to attacks and damage not made with adamantine weapons.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "harmonizing-instrument", - "fields": { - "name": "Harmonizing Instrument", - "desc": "Any stringed instrument can be a harmonizing instrument, and you must be proficient with stringed instruments to use a harmonizing instrument. This instrument has 3 charges for the following properties. The instrument regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "hat-of-mental-acuity", - "fields": { - "name": "Hat of Mental Acuity", - "desc": "This well-crafted cap appears to be standard wear for academics. Embroidered on the edge of the inside lining in green thread are sigils. If you cast comprehend languages on them, they read, “They that are guided go not astray.” While wearing the hat, you have advantage on all Intelligence and Wisdom checks. If you are proficient in an Intelligence or Wisdom-based skill, you double your proficiency bonus for the skill.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "hazelwood-wand", - "fields": { - "name": "Hazelwood Wand", - "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains all expended charges daily at dawn. When you cast the goodberry spell while using this wand as your spellcasting focus, you can expend 1 of the wand's charges to transform the berries into hazelnuts, which restore 2 hit points instead of 1. The spell is otherwise unchanged. In addition, when you cast a spell that deals lightning damage while using this wand as your spellcasting focus, the spell deals 1 extra lightning damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "headdress-of-majesty", - "fields": { - "name": "Headdress of Majesty", - "desc": "This elaborate headpiece is adorned with small gemstones and thin strips of gold that frame your head like a radiant halo. While you wear this headdress, you have advantage on Charisma (Intimidation) and Charisma (Persuasion) checks. The headdress has 5 charges for the following properties. It regains all expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the headdress becomes a nonmagical, tawdry ornament of cheap metals and paste gems.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "headrest-of-the-cattle-queens", - "fields": { - "name": "Headrest of the Cattle Queens", - "desc": "This polished and curved wooden headrest is designed to keep the user's head comfortably elevated while sleeping. If you sleep at least 6 hours as part of a long rest while using the headrest, you regain 1 additional spent Hit Die, and your exhaustion level is reduced by 2 (rather than 1) when you finish the long rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "headscarf-of-the-oasis", - "fields": { - "name": "Headscarf of the Oasis", - "desc": "This dun-colored, well-worn silk wrap is long enough to cover the face and head of a Medium or smaller humanoid, barely revealing the eyes. While wearing this headscarf over your mouth and nose, you have advantage on ability checks and saving throws against being blinded and against extended exposure to hot weather and hot environments. Pulling the headscarf on or off your mouth and nose requires an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "healer-shabti", - "fields": { - "name": "Healer Shabti", - "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "healthful-honeypot", - "fields": { - "name": "Healthful Honeypot", - "desc": "This clay honeypot weighs 10 pounds. A sweet aroma wafts constantly from it, and it produces enough honey to feed up to 12 humanoids. Eating the honey restores 1d8 hit points, and the honey provides enough nourishment to sustain a humanoid for one day. Once 12 doses of the honey have been consumed, the honeypot can't produce more honey until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "heat-stone", - "fields": { - "name": "Heat Stone", - "desc": "Prized by reptilian humanoids, this magic stone is warm to the touch. While carrying this stone, you are comfortable in and can tolerate temperatures as low as –20 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as –50 degrees Fahrenheit.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "heliotrope-heart", - "fields": { - "name": "Heliotrope Heart", - "desc": "This polished orb of dark-green stone is latticed with pulsing crimson inclusions that resemble slowly dilating spatters of blood. While attuned to this orb, your hit point maximum can't be reduced by the bite of a vampire, vampire spawn, or other vampiric creature. In addition, while holding this orb, you can use an action to speak its command word and cast the 2nd-level version of the false life spell. Once used, this property can't be used again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "helm-of-the-slashing-fin", - "fields": { - "name": "Helm of the Slashing Fin", - "desc": "While wearing this helm, you can use an action to speak its command word to gain the ability to breathe underwater, but you lose the ability to breathe air. You can speak its command word again or remove the helm as an action to end this effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "hewers-draught", - "fields": { - "name": "Hewer's Draught", - "desc": "When you drink this potion, you have advantage on attack rolls made with weapons that deal piercing or slashing damage for 1 minute. This potion's translucent amber liquid glimmers when agitated.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "hexen-blade", - "fields": { - "name": "Hexen Blade", - "desc": "The colorful surface of this sleek adamantine shortsword exhibits a perpetually shifting, iridescent sheen. You gain a +1 bonus to attack and damage rolls made with this magic weapon. The sword has 5 charges and regains 1d4 + 1 charges daily at dawn. While holding it, you can use an action and expend 1 or more of its charges to cast one of the following spells from it, using spell save DC 15: disguise self (1 charge), hypnotic pattern (3 charges), or mirror image (2 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "hidden-armament", - "fields": { - "name": "Hidden Armament", - "desc": "While holding this magic weapon, you can use an action to transform it into a tattoo on the palm of your hand. You can use a bonus action to transform the tattoo back into a weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "hide-armor-of-the-leaf", - "fields": { - "name": "Hide Armor of the Leaf", - "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "hide-of-warding-1", - "fields": { - "name": "Hide Armor of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "hide-of-warding-2", - "fields": { - "name": "Hide Armor of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "hide-of-warding-3", - "fields": { - "name": "Hide Armor of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "holy-verdant-bat-droppings", - "fields": { - "name": "Holy Verdant Bat Droppings", - "desc": "This ceramic jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture with a pungent, muddy reek. The jar and its contents weigh 1/2 pound. Derro matriarchs and children gather a particular green bat guano to cure various afflictions, and the resulting glowing green paste can be spread on the skin to heal various conditions. As an action, one dose of the droppings can be swallowed or applied to the skin. The creature that receives it gains one of the following benefits: - Cured of paralysis or petrification\n- Reduces exhaustion level by one\n- Regains 50 hit points", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "honey-lamp", - "fields": { - "name": "Honey Lamp", - "desc": "Honey lamps, made from glowing honey encased in beeswax, shed light as a lamp. Though the lamps are often found in the shape of a globe, the honey can also be sealed inside stone or wood recesses. If the wax that shields the honey is broken or smashed, the honey crystallizes in 7 days and ceases to glow. Eating the honey while it is still glowing grants darkvision out to a range of 30 feet for 1 week and 1 day.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "honey-of-the-warped-wildflowers", - "fields": { - "name": "Honey of the Warped Wildflowers", - "desc": "This spirit honey is made from wildflowers growing in an area warped by magic, such as the flowers growing at the base of a wizard's tower or growing in a magical wasteland. When you consume this honey, you have resistance to psychic damage, and you have advantage on Intelligence saving throws. In addition, you can use an action to warp reality around one creature you can see within 60 feet of you. The target must succeed on a DC 15 Intelligence saving throw or be bewildered for 1 minute. At the start of a bewildered creature's turn, it must roll a die. On an even result, the creature can act normally. On an odd result, the creature is incapacitated until the start of its next turn as it becomes disoriented by its surroundings and unable to fully determine what is real and what isn't. You can't warp the reality around another creature in this way again until you finish a long rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "honey-trap", - "fields": { - "name": "Honey Trap", - "desc": "This jar is made of beaten metal and engraved with honeybees. It has 7 charges, and it regains 1d6 + 1 expended charges daily at dawn. If you expend the jar's last charge, roll a d20. On a 1, the jar shatters and loses all its magical properties. While holding the jar, you can use an action to expend 1 charge to hurl a glob of honey at a target within 30 feet of you. Make a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the glob expands, and the creature is restrained. A creature restrained by the honey can use an action to make a DC 15 Strength (Athletics) or Dexterity (Acrobatics) check (target's choice). On a success, the creature is no longer restrained by the honey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "honeypot-of-awakening", - "fields": { - "name": "Honeypot of Awakening", - "desc": "If you place 1 pound of honey inside this pot, the honey transforms into an ochre jelly after 24 hours. The jelly remains in a dormant state within the pot until you dump it out. You can use an action to dump the jelly from the pot in an unoccupied space within 5 feet of you. Once dumped, the ochre jelly is hostile to all creatures, including you. Only one ochre jelly can occupy the pot at a time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "howling-rod", - "fields": { - "name": "Howling Rod", - "desc": "This sturdy, iron rod is topped with the head of a howling wolf with red carnelians for eyes. The rod has 5 charges for the following properties, and it regains 1d4 + 1 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "humble-cudgel-of-temperance", - "fields": { - "name": "Humble Cudgel of Temperance", - "desc": "This simple, polished club has a studded iron band around one end. When you attack a poisoned creature with this magic weapon, you have advantage on the attack roll. When you roll a 20 on an attack roll made with this weapon, the target becomes poisoned for 1 minute. If the target was already poisoned, it becomes incapacitated instead. The target can make a DC 13 Constitution saving throw at the end of each of its turns, ending the poisoned or incapacitated condition on itself on a success. Formerly a moneylender with a heart of stone and a small army of brutal thugs, Faustin the Drunkard awoke one day with a punishing hangover that seemed never-ending. He took this as a sign of punishment from the gods, not for his violence and thievery, but for his taste for the grape, in abundance. He decided all problems stemmed from the “demon” alcohol, and he became a cleric. No less brutal than before, he and his thugs targeted public houses, ale makers, and more. In his quest to rid the world of alcohol, he had the humble cudgel of temperance made and blessed with terrifying power. Now long since deceased, his simple, humble-appearing club continues to wreck havoc wherever it turns up.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "hunters-charm-1", - "fields": { - "name": "Hunter's Charm (+1)", - "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "hunters-charm-2", - "fields": { - "name": "Hunter's Charm (+2)", - "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "hunters-charm-3", - "fields": { - "name": "Hunter's Charm (+3)", - "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "iceblink-greatsword", - "fields": { - "name": "Iceblink Greatsword", - "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "iceblink-longsword", - "fields": { - "name": "Iceblink Longsword", - "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "iceblink-rapier", - "fields": { - "name": "Iceblink Rapier", - "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "iceblink-scimitar", - "fields": { - "name": "Iceblink Scimitar", - "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "iceblink-shortsword", - "fields": { - "name": "Iceblink Shortsword", - "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "impact-club", - "fields": { - "name": "Impact Club", - "desc": "This magic weapon has 3 charges and regains 1d3 expended charges daily at dawn. When you hit a target on your turn, you can take a bonus action to spend 1 charge and attempt to shove the target. The club grants you a +1 bonus on your Strength (Athletics) check to shove the target. If you roll a 20 on your attack roll with the club, you have advantage on your Strength (Athletics) check to shove the target, and you can push the target up to 10 feet away.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "impaling-lance", - "fields": { - "name": "Impaling Lance", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "impaling-morningstar", - "fields": { - "name": "Impaling Morningstar", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "impaling-pike", - "fields": { - "name": "Impaling Pike", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "impaling-rapier", - "fields": { - "name": "Impaling Rapier", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "impaling-warpick", - "fields": { - "name": "Impaling Warpick", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "incense-of-recovery", - "fields": { - "name": "Incense of Recovery", - "desc": "This block of perfumed incense appears to be normal, nonmagical incense until lit. The incense burns for 1 hour and gives off a lavender scent, accompanied by pale mauve smoke that lightly obscures the area within 30 feet of it. Each spellcaster that takes a short rest in the smoke regains one expended spell slot at the end of the short rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "interplanar-paint", - "fields": { - "name": "Interplanar Paint", - "desc": "This black, tarry substance can be used to paint a single black doorway on a flat surface. A pot contains enough paint to create one doorway. While painting, you must concentrate on a plane of existence other than the one you currently occupy. If you are not interrupted, the doorway can be painted in 5 minutes. Once completed, the painting opens a two-way portal to the plane you imagined. The doorway is mirrored on the other plane, often appearing on a rocky face or the wall of a building. The doorway lasts for 1 week or until 5 gallons of water with flecks of silver worth at least 2,000 gp is applied to one side of the door.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "ironskin-oil", - "fields": { - "name": "Ironskin Oil", - "desc": "This grayish fluid is cool to the touch and slightly gritty. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature has resistance to piercing and slashing damage for 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ivy-crown-of-prophecy", - "fields": { - "name": "Ivy Crown of Prophecy", - "desc": "While wearing this ivy, filigreed crown, you can use an action to cast the divination spell from it. The crown can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "jewelers-anvil", - "fields": { - "name": "Jeweler's Anvil", - "desc": "This small, foot-long anvil is engraved with images of jewelry in various stages of the crafting process. It weighs 10 pounds and can be mounted on a table or desk. You can use a bonus action to speak its command word and activate it, causing it to warm any nonferrous metals (including their alloys, such as brass or bronze). While you remain within 5 feet of the anvil, you can verbally command it to increase or decrease the temperature, allowing you to soften or melt any kind of nonferrous metal. While activated, the anvil remains warm to the touch, but its heat affects only nonferrous metal. You can use a bonus action to repeat the command word to deactivate the anvil. If you use the anvil while making any check with jeweler's tools or tinker's tools, you can double your proficiency bonus. If your proficiency bonus is already doubled, you have advantage on the check instead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "jungle-mess-kit", - "fields": { - "name": "Jungle Mess Kit", - "desc": "This crucial piece of survival gear guarantees safe use of the most basic of consumables. The hinged metal container acts as a cook pot and opens to reveal a cup, plate, and eating utensils. This kit renders any spoiled, rotten, or even naturally poisonous food or drink safe to consume. It can purify only mundane, natural effects. It has no effect on food that is magically spoiled, rotted, or poisoned, and it can't neutralize brewed poisons, venoms, or similarly manufactured toxins. Once it has purified 3 cubic feet of food and drink, it can't be used to do so again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "justicars-mask", - "fields": { - "name": "Justicar's Mask", - "desc": "This stern-faced mask is crafted of silver. While wearing the mask, your gaze can root enemies to the spot. When a creature that can see the mask starts its turn within 30 feet of you, you can use a reaction to force it to make a DC 15 Wisdom saving throw, if you can see the creature and aren't incapacitated. On a failure, the creature is restrained. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Otherwise, the condition lasts until removed with the dispel magic spell or until you end it (no action required). Justicars are arbiters of law and order, operating independently of any official city guard or watch divisions. They are recognizable by their black, hooded robes, silver masks, and the rods they carry as weapons. These stern sentinels are overseen by The Magister, a powerful wizard of whom little is known other than their title. The Magister has made it their duty to oversee order in the city and executes their plans through the Justicars, giving them the Magister's mark, a signet ring, as a symbol of their authority. While some officers and members of the watch may be resentful of the Justicars' presence, many are grateful for their aid, especially in situations that could require magic. Justicar's are a small, elite group, typically acting as solo agents, though extremely dangerous situations bring them together in pairs or larger groups as needed. The Justicars are outfitted with three symbols of authority that are also imbued with power: their masks, rods, and rings. Each by itself is a useful item, but they are made stronger when worn together. The combined powers of this trinity of items make a Justicar a formidable force in the pursuit of law and order.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "keffiyeh-of-serendipitous-escape", - "fields": { - "name": "Keffiyeh of Serendipitous Escape", - "desc": "This checkered cotton headdress is indistinguishable from the mundane scarves worn by the desert nomads. As an action, you can remove the headdress, spread it open on the ground, and speak the command word. The keffiyeh transforms into a 3-foot by 5-foot carpet of flying which moves according to your spoken directions provided that you are within 30 feet of it. Speaking the command word a second time transforms the carpet back into a headdress again.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "knockabout-billet", - "fields": { - "name": "Knockabout Billet", - "desc": "This stout, oaken cudgel helps you knock your opponents to the ground or away from you. When you hit a creature with this magic weapon, you can shove the target as part of the same attack, using your attack roll in place of a Strength (Athletics) check. The weapon deals damage as normal, regardless of the result of the shove. This property of the club can be used no more than once per hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "kobold-firework", - "fields": { - "name": "Kobold Firework", - "desc": "These small pouches and cylinders are filled with magical powders and reagents, and they each have a small fuse protruding from their closures. You can use an action to light a firework then throw it up to 30 feet. The firework activates immediately or on initiative count 20 of the following round, as detailed below. Once a firework’s effects end, it is destroyed. A firework can’t be lit underwater, and submersion in water destroys a firework. A lit firework can be destroyed early by dousing it with at least 1 gallon of water.\n Blinding Goblin-Cracker (Uncommon). This bright yellow firework releases a blinding flash of light on impact. Each creature within 15 feet of where the firework landed and that can see it must succeed on a DC 13 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n Deafening Kobold-Barker (Uncommon). This firework consists of several tiny green cylinders strung together and bursts with a loud sound on impact. Each creature within 15 feet of where the firework landed and that can hear it must succeed on a DC 13 Constitution saving throw or be deafened for 1 minute. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n Enchanting Elf-Fountain (Uncommon). This purple pyramidal firework produces a fascinating and colorful shower of sparks for 1 minute. The shower of sparks starts on the round after you throw it. While the firework showers sparks, each creature that enters or starts its turn within 30 feet of the firework must make a DC 13 Wisdom saving throw. On a failed save, the creature has disadvantage on Wisdom (Perception) checks made to perceive any creature or object other than the firework until the start of its next turn.\n Fairy Sparkler (Common). This narrow firework is decorated with stars and emits a bright, sparkling light for 1 minute. It starts emitting light on the round after you throw it. The firework sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the firework’s bright light.\n Priest Light (Rare). This silver cylinder firework produces a tall, argent flame and numerous golden sparks for 10 minutes. The flame appears on the round after you throw it. The firework sheds bright light in a 30-foot radius and dim light for an additional 30 feet. An undead creature can’t willingly enter the firework’s bright light by nonmagical means. If the undead creature tries to use teleportation or similar interplanar travel to do so, it must first succeed on a DC 15 Charisma saving throw. If an undead creature is in the bright light when it appears, the creature must succeed on a DC 15 Wisdom saving throw or be compelled to leave the bright light. It won’t move into any obviously deadly hazard, such as a fire or pit, but it will provoke opportunity attacks to move out of the bright light. In addition, each non-undead creature in the bright light can’t be charmed, frightened, or possessed by an undead creature.\n Red Dragon’s Breath (Very Rare). This firework is wrapped in gold leaf and inscribed with scarlet runes, and it erupts into a vertical column of fire on impact. Each creature in a 10-foot-radius, 60-foot-high cylinder centered on the point of impact must make a DC 17 Dexterity saving throw, taking 10d6 fire damage on a failed save, or half as much damage on a successful one.\n Snake Fountain (Rare). This short, wide cylinder is red, yellow, and black with a scale motif, and it produces snakes made of ash for 1 minute. It starts producing snakes on the round after you throw it. The firework creates 1 poisonous snake each round. The snakes are friendly to you and your companions. Roll initiative for the snakes as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don’t issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The snakes remain for 10 minutes, until you dismiss them as a bonus action, or until they are doused with at least 1 gallon of water.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "kraken-clutch-ring", - "fields": { - "name": "Kraken Clutch Ring", - "desc": "This green copper ring is etched with the image of a kraken with splayed tentacles. The ring has 5 charges, and it regains 1d4 + 1 expended charges daily at dawn, as long as it was immersed in water for at least 1 hour since the previous dawn. If the ring has at least 1 charge, you have advantage on grapple checks. While wearing this ring, you can expend 1 or more of its charges to cast one of the following spells from it, using spell save DC 15: black tentacles (2 charges), call lightning (1 charge), or control weather (4 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "kyshaarths-fang", - "fields": { - "name": "Kyshaarth's Fang", - "desc": "This dagger's blade is composed of black, bone-like material. Tales suggest the weapon is fashioned from a Voidling's (see Tome of Beasts) tendril barb. When you hit with an attack using this magic weapon, the target takes an extra 2d6 necrotic damage. If you are in dim light or darkness, you regain a number of hit points equal to half the necrotic damage dealt.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "labrys-of-the-raging-bull-battleaxe", - "fields": { - "name": "Labrys of the Raging Bull (Battleaxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you wield the axe, you have advantage on Strength (Athletics) checks to shove a creature, and you can shove a creature up to two sizes larger than you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "labrys-of-the-raging-bull-greataxe", - "fields": { - "name": "Labrys of the Raging Bull (Greataxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you wield the axe, you have advantage on Strength (Athletics) checks to shove a creature, and you can shove a creature up to two sizes larger than you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "language-pyramid", - "fields": { - "name": "Language Pyramid", - "desc": "Script from dozens of languages flows across this sandstone pyramid's surface. While holding or carrying the pyramid, you understand the literal meaning of any spoken language that you hear. In addition, you understand any written language that you see, but you must be touching the surface on which the words are written. It takes 1 minute to read one page of text. The pyramid has 3 charges, and it regains 1d3 expended charges daily at dawn. You can use an action to expend 1 of its charges to imbue yourself with magical speech for 1 hour. For the duration, any creature that knows at least one language and that can hear you understands any words you speak. In addition, you can use an action to expend 1 of the pyramid's charges to imbue up to six creatures within 30 feet of you with magical understanding for 1 hour. For the duration, each target can understand any spoken language that it hears.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "lantern-of-auspex", - "fields": { - "name": "Lantern of Auspex", - "desc": "This elaborate lantern is covered in simple glyphs, and its glass panels are intricately etched. Two of the panels depict a robed woman holding out a single hand, while the other two panels depict the same woman with her face partially obscured by a hand of cards. The lantern's magic is activated when it is lit, which requires an action. Once lit, the lantern sheds bright light in a 30-foot radius and dim light for an additional 30 feet for 1 hour. You can use an action to open or close one of the glass panels on the lantern. If you open a panel, a vision of a random event that happened or that might happen plays out in the light's area. Closing a panel stops the vision. The visions are shown as nondescript smoky apparitions that play out silently in the lantern's light. At the GM's discretion, the vision might change to a different event each 1 minute that the panel remains open and the lantern lit. Once used, the lantern can't be used in this way again until 7 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "lantern-of-judgment", - "fields": { - "name": "Lantern of Judgment", - "desc": "This mithral and gold lantern is emblazoned with a sunburst symbol. While holding the lantern, you have advantage on Wisdom (Insight) and Intelligence (Investigation) checks. As a bonus action, you can speak a command word to cause one of the following effects: - The lantern casts bright light in a 60-foot cone and dim light for an additional 60 feet. - The lantern casts bright light in a 30-foot radius and dim light for an additional 30 feet. - The lantern sheds dim light in a 5-foot radius.\n- Douse the lantern's light. When you cause the lantern to shed bright light, you can speak an additional command word to cause the light to become sunlight. The sunlight lasts for 1 minute after which the lantern goes dark and can't be used again until the next dawn. During this time, the lantern can function as a standard hooded lantern if provided with oil.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "lantern-of-selective-illumination", - "fields": { - "name": "Lantern of Selective Illumination", - "desc": "This brass lantern is fitted with round panels of crown glass and burns for 6 hours on one 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. During a short rest, you can choose up to three creatures to be magically linked by the lantern. When the lantern is lit, its light can be perceived only by you and those linked creatures. To anyone else, the lantern appears dark and provides no illumination.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "larkmail", - "fields": { - "name": "Larkmail", - "desc": "While wearing this armor, you gain a +1 bonus to AC. The links of this mail have been stained to create the optical illusion that you are wearing a brown-and-russet feathered tunic. While you wear this armor, you have advantage on Charisma (Performance) checks made with an instrument. In addition, while playing an instrument, you can use a bonus action and choose any number of creatures within 30 feet of you that can hear your song. Each target must succeed on a DC 15 Charisma saving throw or be charmed by you for 1 minute. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "last-chance-quiver", - "fields": { - "name": "Last Chance Quiver", - "desc": "This quiver holds 20 arrows. However, when you draw and fire the last arrow from the quiver, it magically produces a 21st arrow. Once this arrow has been drawn and fired, the quiver doesn't produce another arrow until the quiver has been refilled and another 20 arrows have been drawn and fired.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "leaf-bladed-greatsword", - "fields": { - "name": "Leaf-Bladed Greatsword", - "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "leaf-bladed-longsword", - "fields": { - "name": "Leaf-Bladed Longsword", - "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "leaf-bladed-rapier", - "fields": { - "name": "Leaf-Bladed Rapier", - "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "leaf-bladed-scimitar", - "fields": { - "name": "Leaf-Bladed Scimitar", - "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "leaf-bladed-shortsword", - "fields": { - "name": "Leaf-Bladed Shortsword", - "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "least-scroll-of-conjuring", - "fields": { - "name": "Least Scroll of Conjuring", - "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "leather-armor-of-the-leaf", - "fields": { - "name": "Leather Armor of the Leaf", - "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "leather-of-warding-1", - "fields": { - "name": "Leather Armor of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "leather-of-warding-2", - "fields": { - "name": "Leather Armor of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "leather-of-warding-3", - "fields": { - "name": "Leather Armor of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "leonino-wings", - "fields": { - "name": "Leonino Wings", - "desc": "This cloak is decorated with the spotted white and brown pattern of a barn owl's wing feathers. While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of a Leoninos (see Creature Codex) owl-like feathered wings until you repeat the command word as an action. The wings give you a flying speed equal to your walking speed, and you have advantage on Dexterity (Stealth) checks made while flying in forests and urban settings. In addition, when you fly out of an enemy's reach, you don't provoke opportunity attacks. You can use the cloak to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land. The cloak regains 2 hours of flying capability for every 12 hours it isn't in use.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "lesser-scroll-of-conjuring", - "fields": { - "name": "Lesser Scroll of Conjuring", - "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "lifeblood-gear", - "fields": { - "name": "Lifeblood Gear", - "desc": "As an action, you can attach this tiny bronze gear to a pile of junk or other small collection of mundane objects and create a Tiny or Small mechanical servant. This servant uses the statistics of a beast with a challenge rating of 1/4 or lower, except it has immunity to poison damage and the poisoned condition, and it can't be charmed or become exhausted. If it participates in combat, the servant lasts for up to 5 rounds or until destroyed. If commanded to perform mundane tasks, such as fetching items, cleaning, or other similar task, it lasts for up to 5 hours or until destroyed. Once affixed to the servant, the gear pulsates like a beating heart. If the gear is removed, you lose control of the servant, which then attacks indiscriminately for up to 5 rounds or until destroyed. Once the duration expires or the servant is destroyed, the gear becomes a nonmagical gear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "lightning-rod", - "fields": { - "name": "Lightning Rod", - "desc": "This rod is made from the blackened wood of a lightning-struck tree and topped with a spike of twisted iron. It functions as a magic javelin that grants a +1 bonus to attack and damage rolls made with it. While holding it, you are immune to lightning damage, and each creature within 5 feet of you has resistance to lightning damage. The rod can hold up to 6 charges, but it has 0 charges when you first attune to it. Whenever you are subjected to lightning damage, the rod gains 1 charge. While the rod has 6 charges, you have resistance to lightning damage instead of immunity. The rod loses 1d6 charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "linguists-cap", - "fields": { - "name": "Linguist's Cap", - "desc": "While wearing this simple hat, you have the ability to speak and read a single language. Each cap has a specific language associated with it, and the caps often come in styles or boast features unique to the cultures where their associated languages are most prominent. The GM chooses the language or determines it randomly from the lists of standard and exotic languages.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "liquid-courage", - "fields": { - "name": "Liquid Courage", - "desc": "This magical cordial is deep red and smells strongly of fennel. You have advantage on the next saving throw against being frightened. The effect ends after you make such a saving throw or when 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "liquid-shadow", - "fields": { - "name": "Liquid Shadow", - "desc": "The contents of this bottle are inky black and seem to absorb the light. The dark liquid can cover a single Small or Medium creature. Applying the liquid takes 1 minute. For 1 hour, the coated creature has advantage on Dexterity (Stealth) checks. Alternately, you can use an action to hurl the bottle up to 20 feet, shattering it on impact. Magical darkness spreads from the point of impact to fill a 15-foot-radius sphere for 1 minute. This darkness works like the darkness spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "living-juggernaut", - "fields": { - "name": "Living Juggernaut", - "desc": "This broad, bulky suit of plate is adorned with large, blunt spikes and has curving bull horns affixed to its helm. While wearing this armor, you gain a +1 bonus to AC, and difficult terrain doesn't cost you extra movement.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "living-stake", - "fields": { - "name": "Living Stake", - "desc": "Fashioned from mandrake root, this stake longs to taste the heart's blood of vampires. Make a melee attack against a vampire in range, treating the stake as an improvised weapon. On a hit, the stake attaches to a vampire's chest. At the end of the vampire's next turn, roots force their way into the vampire's heart, negating fast healing and preventing gaseous form. If the vampire is reduced to 0 hit points while the stake is attached to it, it is immobilized as if it had been staked. A creature can take its action to remove the stake by succeeding on a DC 17 Strength (Athletics) check. If it is removed from the vampire's chest, the stake is destroyed. The stake has no effect on targets other than vampires.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "lockbreaker", - "fields": { - "name": "Lockbreaker", - "desc": "You can use this stiletto-bladed dagger to open locks by using an action and making a Strength check. The DC is 5 less than the DC to pick the lock (minimum DC 10). On a success, the lock is broken.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "locket-of-dragon-vitality", - "fields": { - "name": "Locket of Dragon Vitality", - "desc": "Legends tell of a dragon whose hide was impenetrable and so tenacious that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon's name was lost, but its legacy remains. This magic amulet is one of two items that were crafted to hold its heart. An intricate engraving of a warrior's sword piercing a dragon's chest is detailed along the front of this untarnished silver locket. Within the locket is a clear crystal vial with a pulsing piece of a dragon's heart. The pulses become more frequent when you are close to death. Attuning to the locket requires you to mix your blood with the blood within the vial. The vial holds 3 charges of dragon blood that are automatically expended when you reach certain health thresholds. The locket regains 1 expended charge for each vial of dragon blood you place in the vial inside the locket up to a maximum of 3 charges. For the purpose of this locket, “dragon” refers to any creature with the dragon type, including drakes and wyverns. While wearing or carrying the locket, you gain the following effects: - When you reach 0 hit points, but do not die outright, the vial breaks and the dragon heart stops pulsing, rendering the item broken and irreparable. You immediately gain temporary hit points equal to your level + your Constitution modifier. If the locket has at least 1 charge of dragon blood, it does not break, but this effect can't be activated again until 3 days have passed. - When you are reduced to half of your maximum hit points, the locket expends 1 charge of dragon blood, and you become immune to any type of blood loss effect, such as the blood loss from a stirge's Blood Drain, for 1d4 + 1 hours. Any existing blood loss effects end immediately when this activates.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "locket-of-remembrance", - "fields": { - "name": "Locket of Remembrance", - "desc": "You can place a small keepsake of a creature, such as a miniature portrait, a lock of hair, or similar item, within the locket. The keepsake must be willingly given to you or must be from a creature personally connected to you, such as a relative or lover.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "locksmiths-oil", - "fields": { - "name": "Locksmith's Oil", - "desc": "This shimmering oil can be applied to a lock. Applying the oil takes 1 minute. For 1 hour, any creature that makes a Dexterity check to pick the lock using thieves' tools rolls a d4 ( 1d4) and adds the number rolled to the check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "lodestone-caltrops", - "fields": { - "name": "Lodestone Caltrops", - "desc": "This small gray pouch appears empty, though it weighs 3 pounds. Reaching inside the bag reveals dozens of small, metal balls. As an action, you can upend the bag and spread the metal balls to cover a square area that is 5 feet on a side. Any creature that enters the area while wearing metal armor or carrying at least one metal item must succeed on a DC 13 Strength saving throw or stop moving this turn. A creature that starts its turn in the area must succeed on a DC 13 Strength saving throw to leave the area. Alternatively, a creature in the area can drop or remove whatever metal items are on it and leave the area without needing to make a saving throw. The metal balls remain for 1 minute. Once the bag's contents have been emptied three times, the bag can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "longbow-of-accuracy", - "fields": { - "name": "Longbow of Accuracy", - "desc": "The normal range of this bow is doubled, but its long range remains the same.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "longsword-of-fallen-saints", - "fields": { - "name": "Longsword of Fallen Saints", - "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "longsword-of-volsung", - "fields": { - "name": "Longsword of Volsung", - "desc": "Legends tell of a dragon whose hide was impenetrable and so robust that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon’s name was lost, but its legacy remains. This sword is one of two items that were crafted to hold its heart. The black blade is adorned with glittering silver runes, and its guard has a shallow opening at the center with grooves connecting it to the first rune. The sword’s pommel is a large, clear crystal held fast by silver scales. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit a dragon with an attack using this sword, that creature takes an extra 1d6 slashing damage. Runes of Courage. You can’t be frightened while holding or carrying this sword. Fragment of Gram Awakened. You can use a bonus action to awaken a fragment of the spirit of the great wyrm that inhabits this blade. For 24 hours, you gain a +3 bonus to attack and damage rolls with this magic sword, and when you hit a dragon with an attack using this sword, that creature takes an extra 3d6 slashing damage. Once used, this property can’t be used again until 3 days have passed. If you have performed the Dragon Heart Ritual, you can use a bonus action to expend 2 of the sword’s charges to activate this property, and you can use this property as often as you want, as long as you have the charges to do so. Dragon Heart Ritual. If you are also attuned to the locket of dragon vitality (see page 152), you can drain 3 charges from the locket into the sword, turning the crystal pommel a deep red and rendering the locket broken and irreparable. Doing this requires a long rest where you also re-attune with the newly charged sword of volsung. Upon completing the Dragon Heart Ritual, the sword contains all remaining charges from the locket, and you gain the locket’s effects while holding or carrying the sword. When you are reduced to 0 hit points and trigger the locket’s temporary hit points, the sword isn’t destroyed, but you can’t trigger that effect again until 24 hours have passed. The sword regains all expended charges after you slay any dragon. For the purpose of this sword, “dragon” refers to any creature with the dragon type, including drakes and wyverns.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "loom-of-fate", - "fields": { - "name": "Loom of Fate", - "desc": "If you spend 1 hour weaving on this portable loom, roll a 1d20 and record the number rolled. You can replace any attack roll, saving throw, or ability check made by you or a creature that you can see with this roll. You must choose to do so before the roll. The loom can't be used this way again until the next dawn. Once you have used the loom 3 times, the fabric is complete, and the loom is no longer magical. The fabric becomes a shifting tapestry that represents the events where you used the loom's power to alter fate.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "lucky-charm-of-the-monkey-king", - "fields": { - "name": "Lucky Charm of the Monkey King", - "desc": "This tiny stone statue of a grinning monkey holds a leather loop in its paws, allowing the charm to hang from a belt or pouch. While attuned to this charm, you can use a bonus action to gain a +1 bonus on your next ability check, attack roll, or saving throw. Once used, the charm can't be used again until the next dawn. You can be attuned to only one lucky charm at a time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "lucky-coin", - "fields": { - "name": "Lucky Coin", - "desc": "This worn, clipped copper piece has 6 charges. You can use a reaction to expend 1 charge and gain a +1 bonus on your next ability check. The coin regains 1d6 charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the coin runs out of luck and becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "lucky-eyepatch", - "fields": { - "name": "Lucky Eyepatch", - "desc": "You gain a +1 bonus to saving throws while you wear this simple, black eyepatch. In addition, if you are missing the eye that the eyepatch covers and you roll a 1 on the d20 for a saving throw, you can reroll the die and must use the new roll. The eyepatch can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "lupine-crown", - "fields": { - "name": "Lupine Crown", - "desc": "This grisly helm is made from the leather-reinforced skull and antlers of a deer with a fox skull and hide stretched over it. It is secured by a strap made from a magically preserved length of deer entrails. While wearing this helm, you gain a +1 bonus to AC, and you have advantage on Dexterity (Stealth) and Wisdom (Survival) checks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "luring-perfume", - "fields": { - "name": "Luring Perfume", - "desc": "This pungent perfume has a woodsy and slightly musky scent. As an action, you can splash or spray the contents of this vial on yourself or another creature within 5 feet of you. For 1 minute, the perfumed creature attracts nearby humanoids and beasts. Each humanoid and beast within 60 feet of the perfumed creature and that can smell the perfume must succeed on a DC 15 Wisdom saving throw or be charmed by the perfumed creature until the perfume fades or is washed off with at least 1 gallon of water. While charmed, a creature is incapacitated, and, if the creature is more than 5 feet away from the perfumed creature, it must move on its turn toward the perfumed creature by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "magma-mantle", - "fields": { - "name": "Magma Mantle", - "desc": "This cracked black leather cloak is warm to the touch and faint ruddy light glows through the cracks. While wearing this cloak, you have resistance to cold damage. As an action, you can touch the brass clasp and speak the command word, which transforms the cloak into a flowing mantle of lava for 1 minute. During this time, you are unharmed by the intense heat, but any hostile creature within 5 feet of you that touches you or hits you with a melee attack takes 3d6 fire damage. In addition, for the duration, you suffer no damage from contact with lava, and you can burrow through lava at half your walking speed. The cloak can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "maidens-tears", - "fields": { - "name": "Maiden's Tears", - "desc": "This fruity mead is the color of liquid gold and is rumored to be brewed with a tear from the goddess of bearfolk herself. When you drink this mead, you regenerate lost hit points for 1 minute. At the start of your turn, you regain 10 hit points if you have at least 1 hit point.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mail-of-the-sword-master", - "fields": { - "name": "Mail of the Sword Master", - "desc": "While wearing this armor, the maximum Dexterity modifier you can add to determine your Armor Class is 4, instead of 2. While wearing this armor, if you are wielding a sword and no other weapons, you gain a +2 bonus to damage rolls with that sword.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "manticores-tail", - "fields": { - "name": "Manticore's Tail", - "desc": "Ten spikes stick out of the head of this magic weapon. While holding the morningstar, you can fire one of the spikes as a ranged attack, using your Strength modifier for the attack and damage rolls. This attack has a normal range of 100 feet and a long range of 200 feet. On a hit, the spike deals 1d8 piercing damage. Once all of the weapon's spikes have been fired, the morningstar deals bludgeoning damage instead of the piercing damage normal for a morningstar until the next dawn, at which time the spikes regrow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mantle-of-blood-vengeance", - "fields": { - "name": "Mantle of Blood Vengeance", - "desc": "This red silk cloak has 3 charges and regains 1d3 expended charges daily at dawn. While wearing it, you can visit retribution on any creature that dares spill your blood. When you take piercing, slashing, or necrotic damage from a creature, you can use a reaction to expend 1 charge to turn your blood into a punishing spray. The creature that damaged you must make a DC 13 Dexterity saving throw, taking 2d10 acid damage on a failed save, or half as much damage on a successful one.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mantle-of-the-forest-lord", - "fields": { - "name": "Mantle of the Forest Lord", - "desc": "Created by village elders for druidic scouts to better traverse and survey the perimeters of their lands, this cloak resembles thick oak bark but bends and flows like silk. While wearing this cloak, you can use an action to cast the tree stride spell on yourself at will, except trees need not be living in order to pass through them.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mantle-of-the-lion", - "fields": { - "name": "Mantle of the Lion", - "desc": "This splendid lion pelt is designed to be worn across the shoulders with the paws clasped at the base of the neck. While wearing this mantle, your speed increases by 10 feet, and the mantle's lion jaws are a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, the mantle's bite deals piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. In addition, if you move at least 20 feet straight toward a creature and then hit it with a melee attack on the same turn, that creature must succeed on a DC 15 Strength saving throw or be knocked prone. If a creature is knocked prone in this way, you can make an attack with the mantle's bite against the prone creature as a bonus action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mantle-of-the-void", - "fields": { - "name": "Mantle of the Void", - "desc": "While wearing this midnight-blue mantle covered in writhing runes, you gain a +1 bonus to saving throws, and if you succeed on a saving throw against a spell that allows you to make a saving throw to take only half the damage or suffer partial effects, you instead take no damage and suffer none of the spell's effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "manual-of-exercise", - "fields": { - "name": "Manual of Exercise", - "desc": "This book contains exercises and techniques to better perform a specific physical task, and its words are charged with magic. If you spend 24 hours over a period of 3 days or fewer studying the tome and practicing its instructions, you gain proficiency in the Strength or Dexterity-based skill (such as Athletics or Stealth) associated with the book. The manual then loses its magic, but regains it in ten years.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "manual-of-the-lesser-golem", - "fields": { - "name": "Manual of the Lesser Golem", - "desc": "A manual of the lesser golem can be found in a book, on a scroll, etched into a piece of stone or metal, or scribed on any other medium that holds words, runes, and arcane inscriptions. Each manual of the lesser golem describes the materials needed and the process to be followed to create one type of lesser golem. The GM chooses the type of lesser golem detailed in the manual or determines the golem type randomly. To decipher and use the manual, you must be a spellcaster with at least one 2nd-level spell slot. You must also succeed on a DC 10 Intelligence (Arcana) check at the start of the first day of golem creation. If you fail the check, you must wait at least 24 hours to restart the creation process, and you take 3d6 psychic damage that can be regained only after a long rest. A lesser golem created via a manual of the lesser golem is not immortal. The magic that keeps the lesser golem intact gradually weakens until the golem finally falls apart. A lesser golem lasts exactly twice the number of days it takes to create it (see below) before losing its power. Once the golem is created, the manual is expended, the writing worthless and incapable of creating another. The statistics for each lesser golem can be found in the Creature Codex. | dice: 1d20 | Golem | Time | Cost |\n| ---------- | ---------------------- | ------- | --------- |\n| 1-7 | Lesser Hair Golem | 2 days | 100 gp |\n| 8-13 | Lesser Mud Golem | 5 days | 500 gp |\n| 14-17 | Lesser Glass Golem | 10 days | 2,000 gp |\n| 18-20 | Lesser Wood Golem | 15 days | 20,000 gp |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "manual-of-vine-golem", - "fields": { - "name": "Manual of Vine Golem", - "desc": "This tome contains information and incantations necessary to make a Vine Golem (see Tome of Beasts 2). To decipher and use the manual, you must be a druid with at least two 3rd-level spell slots. A creature that can't use a manual of vine golems and attempts to read it takes 4d6 psychic damage. To create a vine golem, you must spend 20 days working without interruption with the manual at hand and resting no more than 8 hours per day. You must also use powders made from rare plants and crushed gems worth 30,000 gp to create the vine golem, all of which are consumed in the process. Once you finish creating the vine golem, the book decays into ash. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mapping-ink", - "fields": { - "name": "Mapping Ink", - "desc": "This viscous ink is typically found in 1d4 pots, and each pot contains 3 doses. You can use an action to pour one dose of the ink onto parchment, vellum, or cloth then fold the material. As long as the ink-stained material is folded and on your person, the ink captures your footsteps and surroundings on the material, mapping out your travels with great precision. You can unfold the material to pause the mapping and refold it to begin mapping again. Deduct the time the ink maps your travels in increments of 1 hour from the total mapping time. Each dose of ink can map your travels for 8 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "marvelous-clockwork-mallard", - "fields": { - "name": "Marvelous Clockwork Mallard", - "desc": "This intricate clockwork recreation of a Tiny duck is fashioned of brass and tin. Its head is painted with green lacquer, the bill is plated in gold, and its eyes are small chips of black onyx. You can use an action to wind the mallard's key, and it springs to life, ready to follow your commands. While active, it has AC 13, 18 hit points, speed 25 ft., fly 40 ft., and swim 30 ft. If reduced to 0 hit points, it becomes nonfunctional and can't be activated again until 24 hours have passed, during which time it magically repairs itself. If damaged but not disabled, it regains any lost hit points at the next dawn. It has the following additional properties, and you choose which property to activate when you wind the mallard's key.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "masher-basher", - "fields": { - "name": "Masher Basher", - "desc": "A favored weapon of hill giants, this greatclub appears to be little more than a thick tree branch. When you hit a giant with this magic weapon, the giant takes an extra 1d8 bludgeoning damage. When you roll a 20 on an attack roll made with this weapon, the target is stunned until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mask-of-the-leaping-gazelle", - "fields": { - "name": "Mask of the Leaping Gazelle", - "desc": "This painted wooden animal mask is adorned with a pair of gazelle horns. While wearing this mask, your walking speed increases by 10 feet, and your long jump is up to 25 feet with a 10-foot running start.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mask-of-the-war-chief", - "fields": { - "name": "Mask of the War Chief", - "desc": "These fierce yet regal war masks are made by shamans in the cold northern mountains for their chieftains. Carved from the wood of alpine trees, each mask bears the image of a different creature native to those regions. Cave Bear (Uncommon). This mask is carved in the likeness of a roaring cave bear. While wearing it, you have advantage on Charisma (Intimidation) checks. In addition, you can use an action to summon a cave bear (use the statistics of a brown bear) to serve you in battle. The bear is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as attack your enemies. In the absence of such orders, the bear acts in a fashion appropriate to its nature. It vanishes at the next dawn or when it is reduced to 0 hit points. The mask can’t be used this way again until the next dawn. Behir (Very Rare). Carvings of stylized lightning decorate the closed, pointed snout of this blue, crocodilian mask. While wearing it, you have resistance to lightning damage. In addition, you can use an action to exhale lightning in a 30-foot line that is 5 feet wide Each creature in the line must make a DC 17 Dexterity saving throw, taking 3d10 lightning damage on a failed save, or half as much damage on a successful one. This mask can’t be used this way again until the next dawn. Mammoth (Uncommon). This mask is carved in the likeness of a mammoth’s head with a short trunk curling up between the eyes. While wearing it, you count as one size larger when determining your carrying capacity and the weight you can lift, drag, or push. In addition, you can use an action to trumpet like a mammoth. Choose up to six creatures within 30 feet of you and that can hear the trumpet. For 1 minute, each target is under the effect of the bane (if a hostile creature; save DC 13) or bless (if a friendly creature) spell (no concentration required). This mask can’t be used this way again until the next dawn. Winter Wolf (Rare). Carved in the likeness of a winter wolf, this white mask is cool to the touch. While wearing it, you have resistance to cold damage. In addition, you can use an action to exhale freezing air in a 15-foot cone. Each creature in the area must make a DC 15 Dexterity saving throw, taking 3d8 cold damage on a failed save, or half as much damage on a successful one. This mask can’t be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "master-anglers-tackle", - "fields": { - "name": "Master Angler's Tackle", - "desc": "This is a set of well-worn but finely crafted fishing gear. You have advantage on any Wisdom (Survival) checks made to catch fish or other seafood when using it. If you ever roll a 1 on your check while using the tackle, roll again. If the second roll is a 20, you still fail to catch anything edible, but you pull up something interesting or valuable—a bottle with a note in it, a fragment of an ancient tablet carved in ancient script, a mermaid in need of help, or similar. The GM decides what you pull up and its value, if it has one.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "matryoshka-dolls", - "fields": { - "name": "Matryoshka Dolls", - "desc": "This antique set of four nesting dolls is colorfully painted though a bit worn from the years. When attuning to this item, you must give each doll a name, which acts as a command word to activate its properties. You must be within 30 feet of a doll to activate it. The dolls have a combined total of 5 charges, and the dolls regain all expended charges daily at dawn. The largest doll is lined with a thin sheet of lead. A spell or other effect that can sense the presence of magic, such as detect magic, reveals only the transmutation magic of the largest doll, and not any of the dolls or other small items that may be contained within it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mayhem-mask", - "fields": { - "name": "Mayhem Mask", - "desc": "This goat mask with long, curving horns is carved from dark wood and framed in goat's hair. While wearing this mask, you can use its horns to make unarmed strikes. When you hit with it, your horns deal piercing damage equal to 1d6 + your Strength modifier, instead of bludgeoning damage normal for an unarmed strike. If you moved at least 15 feet straight toward the target before you attacked with the horns, the attack deals piercing damage equal to 2d6 + your Strength modifier instead. In addition, you can gaze through the eyes of the mask at one target you can see within 30 feet of you. The target must succeed on a DC 17 Wisdom saving throw or be affected as though it failed a saving throw against the confusion spell. The confusion effect lasts for 1 minute. Once used, this property of the mask can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "medal-of-valor", - "fields": { - "name": "Medal of Valor", - "desc": "You are immune to the frightened condition while you wear this medal. If you are already frightened, the effect ends immediately when you put on the medal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "memory-philter", - "fields": { - "name": "Memory Philter", - "desc": "This swirling liquid is the collected memory of a mortal who willingly traded that memory away to the fey. When you touch the philter, you feel a flash of the emotion contained within. You can unstopper and pour out the philter as an action, unless otherwise specified. The philter's effects take place immediately, either on you or on a creature you can see within 30 feet (your choice). If the target is unwilling, it can make a DC 15 Wisdom saving throw to resist the effect of the philter. A creature affected by a philter experiences the memory contained in the vial. A memory philter can be used only once, but the vial can be reused to store a new memory. Storing a new memory requires a few herbs, a 10-minute ritual, and the sacrifice of a memory. The required sacrifice is detailed in each entry below.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "menders-mark", - "fields": { - "name": "Mender's Mark", - "desc": "This slender brooch is fashioned of silver and shaped in the image of an angel. You can use an action to attach this brooch to a creature, pinning it to clothing or otherwise affixing it to their person. When you cast a spell that restores hit points on the creature wearing the brooch, the spell has a range of 30 feet if its range is normally touch. Only you can transfer the brooch from one creature to another. The creature wearing the brooch can't pass it to another creature, but it can remove the brooch as an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "meteoric-plate", - "fields": { - "name": "Meteoric Plate", - "desc": "This plate armor was magically crafted from plates of interlocking stone. Tiny rubies inlaid in the chest create a glittering mosaic of flames. When you fall while wearing this armor, you can tuck your knees against your chest and curl into a ball. While falling in this way, flames form around your body. You take half the usual falling damage when you hit the ground, and fire explodes from your form in a 20-foot-radius sphere. Each creature in this area must make a DC 15 Dexterity saving throw. On a failed save, a target takes fire damage equal to the falling damage you took, or half as much on a successful saving throw. The fire spreads around corners and ignites flammable objects in the area that aren't being worn or carried.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mindshatter-bombard", - "fields": { - "name": "Mindshatter Bombard", - "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "minor-minstrel", - "fields": { - "name": "Minor Minstrel", - "desc": "This four-inch high, painted, ceramic figurine animates and sings one song, typically about 3 minutes in length, when you set it down and speak the command word. The song is chosen by the figurine's original creator, and the figurine's form is typically reflective of the song's style. A red-nosed dwarf holding a mug sings a drinking song; a human figure in mourner's garb sings a dirge; a well-dressed elf with a harp sings an elven love song; or similar, though some creators find it amusing to create a figurine with a song counter to its form. If you pick up the figurine before the song finishes, it falls silent.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "mirror-of-eavesdropping", - "fields": { - "name": "Mirror of Eavesdropping", - "desc": "This 8-inch diameter mirror is set in a delicate, silver frame. While holding this mirror within 30 feet of another mirror, you can spend 10 minutes magically connecting the mirror of eavesdropping to that other mirror. The mirror of eavesdropping can be connected to only one mirror at a time. While holding the mirror of eavesdropping within 1 mile of its connected mirror, you can use an action to speak its command word and activate it. While active, the mirror of eavesdropping displays visual information from the connected mirror, which has normal vision and darkvision out to 30 feet. The connected mirror's view is limited to the direction the mirror is facing, and it can be blocked by a solid barrier, such as furniture, a heavy cloth, or similar. You can use a bonus action to deactivate the mirror early. When the mirror has been active for a total of 10 minutes, you can't activate it again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mirrored-breastplate", - "fields": { - "name": "Mirrored Breastplate", - "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mirrored-half-plate", - "fields": { - "name": "Mirrored Half Plate", - "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mirrored-plate", - "fields": { - "name": "Mirrored Plate", - "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mnemonic-fob", - "fields": { - "name": "Mnemonic Fob", - "desc": "This small bauble consists of a flat crescent, which binds a small disc that freely spins in its housing. Each side of the disc is intricately etched with an incomplete pillar and pyre. \nPillar of Fire. While holding this bauble, you can use an action to remove the disc, place it on the ground, and speak its command word to transform it into a 5-foot-tall flaming pillar of intricately carved stone. The pillar sheds bright light in a 20-foot radius and dim light for an additional 20 feet. It is warm to the touch, but it doesn’t burn. A second command word returns the pillar to its disc form. When the pillar has shed light for a total of 10 minutes, it returns to its disc form and can’t be transformed into a pillar again until the next dawn. \nRecall Magic. While holding this bauble, you can use an action to spin the disc and regain one expended 1st-level spell slot. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mock-box", - "fields": { - "name": "Mock Box", - "desc": "While you hold this small, square contraption, you can use an action to target a creature within 60 feet of you that can hear you. The target must succeed on a DC 13 Charisma saving throw or attack rolls against it have advantage until the start of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "molten-hellfire-breastplate", - "fields": { - "name": "Molten Hellfire Breastplate", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "molten-hellfire-chain-mail", - "fields": { - "name": "Molten Hellfire Chain Mail", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "molten-hellfire-chain-shirt", - "fields": { - "name": "Molten Hellfire Chain Shirt", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "molten-hellfire-half-plate", - "fields": { - "name": "Molten Hellfire Half Plate", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "molten-hellfire-plate", - "fields": { - "name": "Molten Hellfire Plate", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "molten-hellfire-ring-mail", - "fields": { - "name": "Molten Hellfire Ring Mail", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "molten-hellfire-scale-mail", - "fields": { - "name": "Molten Hellfire Scale Mail", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "molten-hellfire-splint", - "fields": { - "name": "Molten Hellfire Splint", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mongrelmakers-handbook", - "fields": { - "name": "Mongrelmaker's Handbook", - "desc": "This thin volume holds a scant few dozen vellum pages between its mottled, scaled cover. The pages are scrawled with tight, efficient text which is broken up by outlandish pencil drawings of animals and birds combined together. With the rituals contained in this book, you can combine two or more animals into an adult hybrid of all creatures used. Each ritual requires the indicated amount of time, the indicated cost in mystic reagents, a live specimen of each type of creature to be combined, and enough floor space to draw a combining rune which encircles the component creatures. Once combined, the hybrid creature is a typical example of its new kind, though some aesthetic differences may be detectable. You can't control the creatures you create with this handbook, though the magic of the combining ritual prevents your creations from attacking you for the first 24 hours of their new lives. | Creature | Time | Cost | Component Creatures |\n| ---------------- | -------- | -------- | -------------------------------------------------------- |\n| Flying Snake | 10 mins | 10 gp | A poisonous snake and a Small or smaller bird of prey |\n| Leonino | 10 mins | 15 gp | A cat and a Small or smaller bird of prey |\n| Wolpertinger | 10 mins | 20 gp | A rabbit, a Small or smaller bird of prey, and a deer |\n| Carbuncle | 1 hour | 500 gp | A cat and a bird of paradise |\n| Cockatrice | 1 hour | 150 gp | A lizard and a domestic bird such as a chicken or turkey |\n| Death Dog | 1 hour | 100 gp | A dog and a rooster |\n| Dogmole | 1 hour | 175 gp | A dog and a mole |\n| Hippogriff | 1 hour | 200 gp | A horse and a giant eagle |\n| Bearmit crab | 6 hours | 600 gp | A brown bear and a giant crab |\n| Griffon | 6 hours | 600 gp | A lion and a giant eagle |\n| Pegasus | 6 hours | 1,000 gp | A white horse and a giant owl |\n| Manticore | 24 hours | 2,000 gp | A lion, a porcupine, and a giant bat |\n| Owlbear | 24 hours | 2,000 gp | A brown bear and a giant eagle |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "monkeys-paw-of-fortune", - "fields": { - "name": "Monkey's Paw of Fortune", - "desc": "This preserved monkey's paw hangs on a simple leather thong. This paw helps you alter your fate. If you are wearing this paw when you fail an attack roll, ability check, or saving throw, you can use your reaction to reroll the roll with a +10 bonus. You must take the second roll. When you use this property of the paw, one of its fingers curls tight to the palm. When all five fingers are curled tightly into a fist, the monkey's paw loses its magic.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "moon-through-the-trees", - "fields": { - "name": "Moon Through the Trees", - "desc": "This charm is comprised of six polished river stones bound into the shape of a star with glue made from the connective tissues of animals. The reflective surfaces of the stones shimmer with a magical iridescence. While you are within 20 feet of a living tree, you can use a bonus action to become invisible for 1 minute. While invisible, you can use a bonus action to become visible. If you do, each creature of your choice within 30 feet of you must succeed on a DC 15 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat this saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to this charm's blinding feature for the next 24 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "moonfield-lens", - "fields": { - "name": "Moonfield Lens", - "desc": "This lens is rainbow-hued and protected by a sturdy leather case. It has 4 charges, and it regains 1d3 + 1 expended charges daily at dawn. As an action, you can hold the lens to your eye, speak its command word, and expend 2 charges to cause one of the following effects: - *** Find Loved One.** You know the precise location of one creature you love (platonic, familial, or romantic). This knowledge extends into other planes. - *** True Path.** For 1 hour, you automatically succeed on all Wisdom (Survival) checks to navigate in the wild. If you are underground, you automatically know the most direct route to reach the surface.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "moonsteel-dagger", - "fields": { - "name": "Moonsteel Dagger", - "desc": "The blade of this magic weapon seems to shine from within with a pale, white light. The weapon deals an extra 1d6 radiant damage to any creature it hits. If the creature is a shapechanger or any other creature not in its true form, it becomes frightened until the start of your next turn. At the start of its turn, a creature frightened in this way must succeed on a DC 13 Charisma saving throw or immediately return to its true form. For the purpose of this weapon, “shapechanger” refers to any creature with the Shapechanger trait.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "moonsteel-rapier", - "fields": { - "name": "Moonsteel Rapier", - "desc": "The blade of this magic weapon seems to shine from within with a pale, white light. The weapon deals an extra 1d6 radiant damage to any creature it hits. If the creature is a shapechanger or any other creature not in its true form, it becomes frightened until the start of your next turn. At the start of its turn, a creature frightened in this way must succeed on a DC 13 Charisma saving throw or immediately return to its true form. For the purpose of this weapon, “shapechanger” refers to any creature with the Shapechanger trait.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mordant-battleaxe", - "fields": { - "name": "Mordant Battleaxe", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mordant-glaive", - "fields": { - "name": "Mordant Glaive", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mordant-greataxe", - "fields": { - "name": "Mordant Greataxe", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mordant-greatsword", - "fields": { - "name": "Mordant Greatsword", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mordant-halberd", - "fields": { - "name": "Mordant Halberd", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mordant-longsword", - "fields": { - "name": "Mordant Longsword", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mordant-scimitar", - "fields": { - "name": "Mordant Scimitar", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mordant-shortsword", - "fields": { - "name": "Mordant Shortsword", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mordant-sickle", - "fields": { - "name": "Mordant Sickle", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mordant-whip", - "fields": { - "name": "Mordant Whip", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mountain-hewer", - "fields": { - "name": "Mountain Hewer", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. The massive head of this axe is made from chiseled stone lashed to its haft by thick rope and leather strands. Small chips of stone fall from its edge intermittently, though it shows no sign of damage or wear. You can use your action to speak the command word to cause small stones to float and swirl around the axe, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. The light remains until you use a bonus action to speak the command word again or until you drop or sheathe the axe. As a bonus action, choose a creature you can see. For 1 minute, that creature must succeed on a DC 15 Wisdom saving throw each time it is damaged by the axe or become frightened until the end of your next turn. Creatures of Large size or greater have disadvantage on this save. Once used, this property of the axe can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mountaineers-hand-crossbow", - "fields": { - "name": "Mountaineer's Hand Crossbow", - "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mountaineers-heavy-crossbow", - "fields": { - "name": "Mountaineer's Heavy Crossbow", - "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mountaineers-light-crossbow", - "fields": { - "name": "Mountaineer's Light Crossbow ", - "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "muffled-chain-mail", - "fields": { - "name": "Muffled Chain Mail", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "muffled-half-plate", - "fields": { - "name": "Muffled Half Plate", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "muffled-padded", - "fields": { - "name": "Muffled Padded", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "muffled-plate", - "fields": { - "name": "Muffled Plate", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "muffled-ring-mail", - "fields": { - "name": "Muffled Ring Mail", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "muffled-scale-mail", - "fields": { - "name": "Muffled Scale Mail", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "muffled-splint", - "fields": { - "name": "Muffled Splint", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "mug-of-merry-drinking", - "fields": { - "name": "Mug of Merry Drinking", - "desc": "While you hold this broad, tall mug, any liquid placed inside it warms or cools to exactly the temperature you want it, though the mug can't freeze or boil the liquid. If you drop the mug or it is knocked from your hand, it always lands upright without spilling its contents.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "murderous-bombard", - "fields": { - "name": "Murderous Bombard", - "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mutineers-blade", - "fields": { - "name": "Mutineer's Blade", - "desc": "This finely balanced scimitar has an elaborate brass hilt. You gain a +2 bonus on attack and damage rolls made with this magic weapon. You can use a bonus action to speak the scimitar's command word, causing the blade to shed bright green light in a 10-foot radius and dim light for an additional 10 feet. The light lasts until you use a bonus action to speak the command word again or until you drop or sheathe the scimitar. When you roll a 20 on an attack roll made with this weapon, the target is overcome with the desire for mutiny. On the target's next turn, it must make one attack against its nearest ally, then the effect ends, whether or not the attack was successful.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "nameless-cults", - "fields": { - "name": "Nameless Cults", - "desc": "This dubious old book, bound in heavy leather with iron hasps, details the forbidden secrets and monstrous blasphemy of a multitude of nightmare cults that worship nameless and ghastly entities. It reads like the monologue of a maniac, illustrated with unsettling glyphs and filled with fluctuating moments of vagueness and clarity. The tome is a spellbook that contains the following spells, all of which can be found in the Mythos Magic Chapter of Deep Magic for 5th Edition: black goat's blessing, curse of Yig, ectoplasm, eldritch communion, emanation of Yoth, green decay, hunger of Leng, mind exchange, seed of destruction, semblance of dread, sign of Koth, sleep of the deep, summon eldritch servitor, summon avatar, unseen strangler, voorish sign, warp mind and matter, and yellow sign. At the GM's discretion, the tome can contain other spells similarly related to the Great Old Ones. While attuned to the book, you can reference it whenever you make an Intelligence check to recall information about any aspect of evil or the occult, such as lore about Great Old Ones, mythos creatures, or the cults that worship them. When doing so, your proficiency bonus for that check is doubled.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "necromantic-ink", - "fields": { - "name": "Necromantic Ink", - "desc": "The scent of death and decay hangs around this grey ink. It is typically found in 1d4 pots, and each pot contains 2 doses. If you spend 1 minute using one dose of the ink to draw symbols of death on a dead creature that has been dead no longer than 10 days, you can imbue the creature with the ink's magic. The creature rises 24 hours later as a skeleton or zombie (your choice), unless the creature is restored to life or its body is destroyed. You have no control over the undead creature.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "neutralizing-bead", - "fields": { - "name": "Neutralizing Bead", - "desc": "This hard, gritty, flavorless bead can be dissolved in liquid or powdered between your fingers and sprinkled over food. Doing so neutralizes any poisons that may be present. If the food or liquid is poisoned, it takes on a brief reddish hue where it makes contact with the bead as the bead dissolves. Alternatively, you can chew and swallow the bead and gain the effects of an antitoxin.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "nithing-pole", - "fields": { - "name": "Nithing Pole", - "desc": "This pole is crafted to exact retribution for an act of cowardice or dishonor. It's a sturdy wooden stave, 6 to 10 feet long, carved with runes that name the dishonored target of the pole's curse. The carved shaft is draped in horsehide, topped with a horse's skull, and placed where its target is expected to pass by. Typically, the pole is driven into the ground or wedged into a rocky cleft in a remote spot where the intended victim won't see it until it's too late. The pole is created to punish a specific person for a specific crime. The exact target must be named on the pole; a generic identity such as “the person who blinded Lars Gustafson” isn't precise enough. The moment the named target approaches within 333 feet, the pole casts bestow curse (with a range of 333 feet instead of touch) on the target. The DC for the target's Wisdom saving throw is 15. If the saving throw is successful, the pole recasts the spell at the end of each round until the saving throw fails, the target retreats out of range, or the pole is destroyed. Anyone other than the pole's creator who tries to destroy or knock down the pole is also targeted by a bestow curse spell, but only once. The effect of the curse is set when the pole is created, and the curse lasts 8 hours without requiring concentration. The pole becomes nonmagical once it has laid its curse on its intended target. An untriggered and forgotten nithing pole remains dangerous for centuries.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "nullifiers-lexicon", - "fields": { - "name": "Nullifier's Lexicon", - "desc": "This book has a black leather cover with silver bindings and a silver front plate. Void Speech glyphs adorn the front plate, which is pitted and tarnished. The pages are thin sheets of corrupted brass and are inscribed with more blasphemous glyphs. While you are attuned to the lexicon, you can speak, read, and write Void Speech, and you know the crushing curse* cantrip. At the GM's discretion, you know the chill touch cantrip instead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "oakwood-wand", - "fields": { - "name": "Oakwood Wand", - "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains 1d3 expended charges daily at dawn. While holding it, you can expend 1 charge as an action to cast the detect poison and disease spell from it. When you cast a spell that deals cold damage while using this wand as your spellcasting focus, the spell deals 1 extra cold damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "octopus-bracers", - "fields": { - "name": "Octopus Bracers", - "desc": "These bronze bracers are etched with depictions of frolicking octopuses. While wearing these bracers, you can use an action to speak their command word and transform your arms into tentacles. You can use a bonus action to repeat the command word and return your arms to normal. The tentacles are natural melee weapons, which you can use to make unarmed strikes. Your reach extends by 5 feet while your arms are tentacles. When you hit with a tentacle, it deals bludgeoning damage equal to 1d8 + your Strength or Dexterity modifier (your choice). If you hit a creature of your size or smaller than you, it is grappled. Each tentacle can grapple only one target. While grappling a target with a tentacle, you can't attack other creatures with that tentacle. While your arms are tentacles, you can't wield weapons that require two hands, and you can't wield shields. In addition, you can't cast a spell that has a somatic component. When the bracers' property has been used for a total of 10 minutes, the magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "oculi-of-the-ancestor", - "fields": { - "name": "Oculi of the Ancestor", - "desc": "An intricately depicted replica of an eyeball, right down to the blood vessels and other fine details, this item is carved from sacred hardwoods by soothsayers using a specialized ceremonial blade handcrafted specifically for this purpose. When you use an action to place the orb within the eye socket of a skull, it telepathically shows you the last thing that was experienced by the creature before it died. This lasts for up to 1 minute and is limited to only what the creature saw or heard in the final moments of its life. The orb can't show you what the creature might have detected using another sense, such as tremorsense.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "odd-bodkin", - "fields": { - "name": "Odd Bodkin", - "desc": "This dagger has a twisted, jagged blade. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature other than a construct or an undead with this weapon, it loses 1d4 hit points at the start of each of its turns from a jagged wound. Each time you successfully hit the wounded target with this dagger, the damage dealt by the wound increases by 1d4. Any creature can take an action to stanch the wound with a successful DC 11 Wisdom (Medicine) check. The wound also closes if the wounded creature receives magical healing.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "odorless-oil", - "fields": { - "name": "Odorless Oil", - "desc": "This odorless, colorless oil can cover a Medium or smaller object or creature, along with the equipment the creature is wearing or carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. For 1 hour, the affected target gives off no scent, can't be tracked by scent, and can't be detected with Wisdom (Perception) checks that rely on smell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ogres-pot", - "fields": { - "name": "Ogre's Pot", - "desc": "This cauldron boils anything placed inside it, whether venison or timber, to a vaguely edible paste. A spoonful of the paste provides enough nourishment to sustain a creature for one day. As a bonus action, you can speak the pot's command word and force it to roll directly to you at a speed of 40 feet per round as long as you and the pot are on the same plane of existence. It follows the shortest possible path, stopping when it moves to within 5 feet of you, and it bowls over or knocks down any objects or creatures in its path. A creature in its path must succeed on a DC 13 Dexterity saving throw or take 2d6 bludgeoning damage and be knocked prone. When this magic pot comes into contact with an object or structure, it deals 4d6 bludgeoning damage. If the damage doesn't destroy or create a path through the object or structure, the pot continues to deal damage at the end of each round, carving a path through the obstacle.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "oil-of-concussion", - "fields": { - "name": "Oil of Concussion", - "desc": "You can apply this thick, gray oil to one bludgeoning weapon or up to 5 pieces of bludgeoning ammunition. Applying the oil takes 1 minute. For 1 hour, any attack with the coated item scores a critical hit on a roll of 19 or 20.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "oil-of-defoliation", - "fields": { - "name": "Oil of Defoliation", - "desc": "Sometimes known as weedkiller oil, this greasy amber fluid contains the crushed husks of dozens of locusts. One vial of the oily substance can coat one weapon or up to 5 pieces of ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item deals an extra 1d6 necrotic damage to plants or plant creatures on a successful hit. The oil can also be applied directly to a willing, restrained, or immobile plant or plant creature. In this case, the substance deals 4d6 necrotic damage, which is enough to kill most ordinary plant life smaller than a large tree.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "oil-of-extreme-bludgeoning", - "fields": { - "name": "Oil of Extreme Bludgeoning", - "desc": "This viscous indigo-hued oil smells of iron. The oil can coat one bludgeoning weapon or up to 5 pieces of bludgeoning ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical, has a +1 bonus to attack and damage rolls, and deals an extra 1d4 force damage on a hit.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "oil-of-numbing", - "fields": { - "name": "Oil of Numbing", - "desc": "This astringent-smelling oil stings slightly when applied to flesh, but the feeling quickly fades. The oil can cover a Medium or smaller creature (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. For 1 hour, the affected creature has advantage on Constitution saving throws to maintain its concentration on a spell when it takes damage, and it has advantage on ability checks and saving throws made to endure pain. However, the affected creature's flesh is slightly numbed and senseless, and it has disadvantage on ability checks that require fine motor skills or a sense of touch.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "oil-of-sharpening", - "fields": { - "name": "Oil of Sharpening", - "desc": "You can apply this fine, silvery oil to one piercing or slashing weapon or up to 5 pieces of piercing or slashing ammunition. Applying the oil takes 1 minute. For 1 hour, any attack with the coated item scores a critical hit on a roll of 19 or 20.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "oni-mask", - "fields": { - "name": "Oni Mask", - "desc": "This horned mask is fashioned into the fearsome likeness of a pale oni. The mask has 6 charges for the following properties. The mask regains 1d6 expended charges daily at dawn. Spells. While wearing the mask, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 15): charm person (1 charge), invisibility (2 charges), or sleep (1 charge). Change Shape. You can expend 3 charges as an action to magically polymorph into a Small or Medium humanoid, into a Large giant, or back into your true form. Other than your size, your statistics are the same in each form. The only equipment that is transformed is your weapon, which enlarges or shrinks so that it can be wielded in any form. If you die, you revert to your true form, and your weapon reverts to its normal size.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "oracle-charm", - "fields": { - "name": "Oracle Charm", - "desc": "This small charm resembles a human finger bone engraved with runes and complicated knotwork patterns. As you contemplate a specific course of action that you plan to take within the next 30 minutes, you can use an action to snap the charm in half to gain the benefit of an augury spell. Once used, the charm is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "orb-of-enthralling-patterns", - "fields": { - "name": "Orb of Enthralling Patterns", - "desc": "This plain, glass orb shimmers with iridescence. While holding this orb, you can use an action to speak its command word, which causes it to levitate and emit multicolored light. Each creature other than you within 10 feet of the orb must succeed on a DC 13 Wisdom saving throw or look at only the orb for 1 minute. For the duration, a creature looking at the orb has disadvantage on Wisdom (Perception) checks to perceive anything that is not the orb. Creatures that failed the saving throw have no memory of what happened while they were looking at the orb. Once used, the orb can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "orb-of-obfuscation", - "fields": { - "name": "Orb of Obfuscation", - "desc": "Originally fashioned in the laboratory of the archmage Lugax for his good natured but often roguish friend, Kennich, these spherical ceramic containers are the size of a large human fist. Arcane sigils decorate each orb, detailing its properties to those capable of reading the sigils. The magic-infused chemicals in each orb must be briefly exposed to air before being thrown to activate them. A metal rod sits in the cork of each orb, allowing you to quickly twist open the container before throwing it. Typically, 1d4 + 1 orbs of obfuscation are found together. You can use an action to activate and throw the orb up to 60 feet. The orb explodes on impact and is destroyed. The orb's effects are determined by its type. Orb of Obfuscation (Uncommon). This orb is a dark olive color with a stripe of bright blue paint encircling it. When activated, the orb releases an opaque grey gas and creates a 30-foot-radius sphere of this gas centered on the point where the orb landed. The sphere spreads around corners, and its area is heavily obscured. The magical gas also dampens sound. Each creature in the gas can hear only sounds originating within 5 feet of it, and creatures outside of the gas can’t hear sounds originating inside the gas. The gas lasts for 5 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. Explosive Orb of Obfuscation (Rare). This oblong orb has a putty grey color with a stripe of yellow paint encircling it. When activated, this orb releases the same opaque grey gas as the orb of obfuscation. In addition to the effects of that gas, this orb also releases a burst of caustic chemicals on impact. Each creature within a 15-foot radius of where the orb landed must make a DC 15 Dexterity saving throw, taking 4d4 acid damage on a failed save, or half as much damage on a successful one. If a creature fails this saving throw, the chemicals cling to it for 1 minute. At the end of each of its turns, the creature must succeed on a DC 15 Constitution saving throw or take 2d4 acid damage from the clinging chemicals. Any creature can take an action to remove the clinging chemicals with a successful DC 15 Wisdom (Medicine) check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ouroboros-amulet", - "fields": { - "name": "Ouroboros Amulet", - "desc": "Carved in the likeness of a serpent swallowing its own tail, this circular jade amulet is frequently worn by serpentfolk mystics and the worshippers of dark and forgotten gods. While wearing this amulet, you have advantage on saving throws against being charmed. In addition, you can use an action to cast the suggestion spell (save DC 13). The amulet can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "pact-paper", - "fields": { - "name": "Pact Paper", - "desc": "This smooth paper is like vellum but is prepared from dozens of scales cast off by a Pact Drake (see Creature Codex). A contract can be inked on this paper, and the paper limns all falsehoods on it with a fiery glow. A command word clears the paper, allowing for several drafts. Another command word locks the contract in place and leaves space for signatures. Creatures signing the contract are afterward bound by the contract with all other signatories alerted when one of the signatories breaks the contract. The creature breaking the contract must succeed on a DC 15 Charisma saving throw or become blinded, deafened, and stunned for 1d6 minutes. A creature can repeat the saving throw at the end of each of minute, ending the conditions on itself on a success. After the conditions end, the creature has disadvantage on saving throws until it finishes a long rest. Once a contract has been locked in place and signed, the paper can't be cleared. If the contract has a duration or stipulation for its end, the pact paper is destroyed when the contract ends, releasing all signatories from any further obligations and immediately ending any effects on them.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "padded-armor-of-the-leaf", - "fields": { - "name": "Padded Armor of the Leaf", - "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "padded-of-warding-1", - "fields": { - "name": "Padded Armor of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "padded-of-warding-2", - "fields": { - "name": "Padded Armor of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "padded-of-warding-3", - "fields": { - "name": "Padded Armor of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "parasol-of-temperate-weather", - "fields": { - "name": "Parasol of Temperate Weather", - "desc": "This fine, cloth-wrapped 2-foot-long pole unfolds into a parasol with a diameter of 3 feet, which is large enough to cover one Medium or smaller creature. While traveling under the parasol, you ignore the drawbacks of traveling in hot weather or a hot environment. Though it protects you from the sun's heat in the desert or geothermal heat in deep caverns, the parasol doesn't protect you from damage caused by super-heated environments or creatures, such as lava or an azer's Heated Body trait, or magic that deals fire damage, such as the fire bolt spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "pavilion-of-dreams", - "fields": { - "name": "Pavilion of Dreams", - "desc": "This foot-long box is 6 inches wide and 6 inches deep. With 1 minute of work, the box's poles and multicolored silks can be unfolded into a pavilion expansive enough to sleep eight Medium or smaller creatures comfortably. The pavilion can stand in winds of up to 60 miles per hour without suffering damage or collapsing, and its interior remains comfortable and dry no matter the weather conditions or temperature outside. Creatures who sleep within the pavilion are immune to spells and other magical effects that would disrupt their sleep or negatively affect their dreams, such as the monstrous messenger version of the dream spell or a night hag's Nightmare Haunting. Creatures who take a long rest in the pavilion, and who sleep for at least half that time, have shared dreams of future events. Though unclear upon waking, these premonitions sit in the backs of the creatures' minds for the next 24 hours. Before the duration ends, a creature can call on the premonitions, expending them and immediately gaining one of the following benefits.\n- If you are surprised during combat, you can choose instead to not be surprised.\n- If you are not surprised at the beginning of combat, you have advantage on the initiative roll.\n- You have advantage on a single attack roll, ability check, or saving throw.\n- If you are adjacent to a creature that is attacked, you can use a reaction to interpose yourself between the creature and the attack. You become the new target of the attack.\n- When in combat, you can use a reaction to distract an enemy within 30 feet of you that attacks an ally you can see. If you do so, the enemy has disadvantage on the attack roll.\n- When an enemy uses the Disengage action, you can use a reaction to move up to your speed toward that enemy. Once used, the pavilion can't be used again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "pearl-of-diving", - "fields": { - "name": "Pearl of Diving", - "desc": "This white pearl shines iridescently in almost any light. While underwater and grasping the pearl, you have resistance to cold damage and to bludgeoning damage from nonmagical attacks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "periapt-of-eldritch-knowledge", - "fields": { - "name": "Periapt of Eldritch Knowledge", - "desc": "This pendant consists of a hollow metal cylinder on a fine, silver chain and is capable of holding one scroll. When you put a spell scroll in the pendant, it is added to your list of known or prepared spells, but you must still expend a spell slot to cast it. If the spell has more powerful effects when cast at a higher level, you can expend a spell slot of a higher level to cast it. If you have metamagic options, you can apply any metamagic option you know to the spell, expending sorcery points as normal. When you cast the spell, the spell scroll isn't consumed. If the spell on the spell scroll isn't on your class's spell list, you can't cast it unless it is half the level of the highest spell level you can cast (minimum level 1). The pendant can hold only one scroll at a time, and you can remove or replace the spell scroll in the pendant as an action. When you remove or replace the spell scroll, you don't immediately regain spell slots expended on the scroll's spell. You regain expended spell slots as normal for your class.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "periapt-of-proof-against-lies", - "fields": { - "name": "Periapt of Proof Against Lies", - "desc": "A pendant fashioned from the claw or horn of a Pact Drake (see Creature Codex) is affixed to a thin gold chain. While you wear it, you know if you hear a lie, but this doesn't apply to evasive statements that remain within the boundaries of the truth. If you lie while wearing this pendant, you become poisoned for 10 minutes.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "pestilent-spear", - "fields": { - "name": "Pestilent Spear", - "desc": "The head of this spear is deadly sharp, despite the rust and slimy residue on it that always accumulate no matter how well it is cleaned. When you hit a creature with this magic weapon, it must succeed on a DC 13 Constitution saving throw or contract the sewer plague disease.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "phase-mirror", - "fields": { - "name": "Phase Mirror", - "desc": "Unlike other magic items, multiple creatures can attune to the phase mirror by touching it as part of the same short rest. A creature remains attuned to the mirror as long as it is on the same plane of existence as the mirror or until it chooses to end its attunement to the mirror during a short rest. Phase mirrors look almost identical to standard mirrors, but their surfaces are slightly clouded. These mirrors are found in a variety of sizes, from handheld to massive disks. The larger the mirror, the more power it can take in, and consequently, the more creatures it can affect. When it is created, a mirror is connected to a specific plane. The mirror draws in starlight and uses that energy to move between its current plane and its connected plane. While holding or touching a fully charged mirror, an attuned creature can use an action to speak the command word and activate the mirror. When activated, the mirror transports all creatures attuned to it to the mirror's connected plane or back to the Material Plane at a destination of the activating creature's choice. This effect works like the plane shift spell, except it transports only attuned creatures, regardless of their distance from each other, and the destination must be on the Material Plane or the mirror's connected plane. If the mirror is broken, its magic ends, and each attuned creature is trapped in whatever plane it occupies when the mirror breaks. Once activated, the mirror stays active for 24 hours and any attuned creature can use an action to transport all attuned creatures back and forth between the two planes. After these 24 hours have passed, the power drains from the mirror, and it can't be activated again until it is recharged. Each phase mirror has a different recharge time and limit to the number of creatures that can be attuned to it, depending on the mirror's size.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "phidjetz-spinner", - "fields": { - "name": "Phidjetz Spinner", - "desc": "This dart was crafted by the monk Phidjetz, a martial recluse obsessed with dragons. The spinner consists of a golden central disk with four metal dragon heads protruding symmetrically from its center point: one red, one white, one blue and one black. As an action, you can spin the disk using the pinch grip in its center. You choose a single target within 30 feet and make a ranged attack roll. The spinner then flies at the chosen target. Once airborne, each dragon head emits a blast of elemental energy appropriate to its type. When you hit a creature, determine which dragon head affects it by rolling a d4 on the following chart. | d4 | Effect |\n| --- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 1 | Red. The target takes 1d6 fire damage and combustible materials on the target ignite, doing 1d4 fire damage each turn until it is put out. |\n| 2 | White. The target takes 1d6 cold damage and is restrained until the start of your next turn. |\n| 3 | Blue. The target takes 1d6 lightning damage and is paralyzed until the start of your next turn. |\n| 4 | Black. The target takes 1d6 acid damage and is poisoned until the start of your next turn. | After the attack, the spinner flies up to 60 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "philter-of-luck", - "fields": { - "name": "Philter of Luck", - "desc": "When you drink this vibrant green, effervescent potion, you gain a finite amount of good fortune. Roll a d3 to determine where your fortune falls: ability checks (1), saving throws (2), or attack rolls (3). When you make a roll associated with your fortune, you can choose to tap into your good fortune and reroll the d20. This effect ends after you tap into your good fortune or when 1 hour has passed. | d3 | Use fortune for |\n| --- | --------------- |\n| 1 | ability checks |\n| 2 | saving throws |\n| 3 | attack rolls |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "phoenix-ember", - "fields": { - "name": "Phoenix Ember", - "desc": "This egg-shaped red and black stone is hot to the touch. An ancient, fossilized phoenix egg, the stone holds the burning essence of life and rebirth. While you are carrying the stone, you have resistance to fire damage. Fiery Rebirth. If you drop to 0 hit points while carrying the stone, you can drop to 1 hit point instead. If you do, a wave of flame bursts out from you, filling the area within 20 feet of you. Each of your enemies in the area must make a DC 17 Dexterity saving throw, taking 8d6 fire damage on a failed save, or half as much damage on a successful one. Once used, this property can’t be used again until the next dawn, and a small, burning crack appears in the egg’s surface. Spells. The stone has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: revivify (1 charge), raise dead (2 charges), or resurrection (3 charges, the spell functions as long as some bit of the target’s body remains, even just ashes or dust). If you expend the last charge, roll a d20. On a 1, the stone shatters into searing fragments, and a firebird (see Tome of Beasts) arises from the ashes. On any other roll, the stone regains 1d3 charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "pick-of-ice-breaking", - "fields": { - "name": "Pick of Ice Breaking", - "desc": "The metal head of this war pick is covered in tiny arcane runes. You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the war pick to attack a construct, elemental, fey, or other creature made almost entirely of ice or snow. When you roll a 20 on an attack roll made with this weapon against such a creature, the target takes an extra 2d8 piercing damage. When you hit an object made of ice or snow with this weapon, the object doesn't have a damage threshold when determining the damage you deal to it with this weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "pipes-of-madness", - "fields": { - "name": "Pipes of Madness", - "desc": "You must be proficient with wind instruments to use these strange, pale ivory pipes. They have 5 charges. You can use an action to play them and expend 1 charge to emit a weird strain of alien music that is audible up to 600 feet away. Choose up to three creatures within 60 feet of you that can hear you play. Each target must succeed on a DC 15 Wisdom saving throw or be affected as if you had cast the confusion spell on it. The pipes regain 1d4 + 1 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "pistol-of-the-umbral-court", - "fields": { - "name": "Pistol of the Umbral Court", - "desc": "This hand crossbow is made from coal-colored wood. Its limb is made from cold steel and boasts engravings of sharp teeth. The barrel is magically oiled and smells faintly of ash. The grip is made from rough leather. You gain a +2 bonus on attack and damage rolls made with this magic weapon. When you hit with an attack with this weapon, you can force the target of your attack to succeed on a DC 15 Strength saving throw or be pushed 5 feet away from you. The target takes damage, as normal, whether it was pushed away or not. As a bonus action, you can increase the distance creatures are pushed to 20 feet for 1 minute. If the creature strikes a solid object before the movement is complete, it takes 1d6 bludgeoning damage for every 10 feet traveled. Once used, this property of the crossbow can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "plate-of-warding-1", - "fields": { - "name": "Plate of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "plate-of-warding-2", - "fields": { - "name": "Plate of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "plate-of-warding-3", - "fields": { - "name": "Plate of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "plumb-of-the-elements", - "fields": { - "name": "Plumb of the Elements", - "desc": "This four-faceted lead weight is hung on a long leather strip, which can be wound around the haft or handle of any melee weapon. You can remove the plumb and transfer it to another weapon whenever you wish. Weapons with the plumb attached to it deal additional force damage equal to your proficiency bonus (up to a maximum of 3). As an action, you can activate the plumb to change this additional damage type to fire, cold, lightning, or back to force.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "plunderers-sea-chest", - "fields": { - "name": "Plunderer's Sea Chest", - "desc": "This oak chest, measuring 3 feet by 5 feet by 3 feet, is secured with iron bands, which depict naval combat and scenes of piracy. The chest opens into an extradimensional space that can hold up to 3,500 cubic feet or 15,000 pounds of material. The chest always weighs 200 pounds, regardless of its contents. Placing an item in the sea chest follows the normal rules for interacting with objects. Retrieving an item from the chest requires you to use an action. When you open the chest to access a specific item, that item is always magically on top. If the chest is destroyed, its contents are lost forever, though an artifact that was inside always turns up again, somewhere. If a bag of holding, portable hole, or similar object is placed within the chest, that item and the contents of the chest are immediately destroyed, and the magic of the chest is disrupted for one day, after which the chest resumes functioning as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "pocket-oasis", - "fields": { - "name": "Pocket Oasis", - "desc": "When you unfold and throw this 5-foot by 5-foot square of black cloth into the air as an action, it creates a portal to an oasis hidden within an extra-dimensional space. A pool of shallow, fresh water fills the center of the oasis, and bountiful fruit and nut trees grow around the pool. The fruits and nuts from the trees provide enough nourishment for up to 10 Medium creatures. The air in the oasis is pure, cool, and even a little crisp, and the environment is free from harmful effects. When creatures enter the extra-dimensional space, they are protected from effects and creatures outside the oasis as if they were in the space created by a rope trick spell, and a vine dangles from the opening in place of a rope, allowing access to the oasis. The effect lasts for 24 hours or until all the creatures leave the extra-dimensional oasis, whichever occurs first. Any creatures still inside the oasis at the end of 24 hours are harmlessly ejected. Once used, the pocket oasis can't be used again for 24 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "pocket-spark", - "fields": { - "name": "Pocket Spark", - "desc": "What looks like a simple snuff box contains a magical, glowing ember. Though warm to the touch, the ember can be handled without damage. It can be used to ignite flammable materials quickly. Using it to light a torch, lantern, or anything else with abundant, exposed fuel takes a bonus action. Lighting any other fire takes an action. The ember is consumed when used. If the ember is consumed, the box creates a new ember at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "poison-strand", - "fields": { - "name": "Poison Strand", - "desc": "When you hit with an attack using this magic whip, the target takes an extra 2d4 poison damage. If you hold one end of the whip and use an action to speak its command word, the other end magically extends and darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 17 Dexterity saving throw or become restrained. While restrained, the target takes 2d4 poison damage at the start of each of its turns, and you can use an action to pull the target up to 20 feet toward you. If you would move the target into damaging terrain, such as lava or a pit, it can make a DC 17 Strength saving throw. On a success, the target isn't pulled toward you. You can't use the whip to make attacks while it is restraining a target, and if you release your end of the whip, the target is no longer restrained. The restrained target can use an action to make a DC 17 Strength (Athletics) or Dexterity (Acrobatics) check (target's choice). On a success, the target is no longer restrained by the whip. When the whip has restrained creatures for a total of 1 minute, you can't restrain a creature with the whip again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potent-cure-all", - "fields": { - "name": "Potent Cure-All", - "desc": "The milky liquid in this bottle shimmers when agitated, as small, glittering particles swirl within it. When you drink this potion, it reduces your exhaustion level by one, removes any reduction to one of your ability scores, removes the blinded, deafened, paralyzed, and poisoned conditions, and cures you of any diseases currently afflicting you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-air-breathing", - "fields": { - "name": "Potion of Air Breathing", - "desc": "This potion's pale blue fluid smells like salty air, and a seagull's feather floats in it. You can breathe air for 1 hour after drinking this potion. If you could already breathe air, this potion has no effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-bad-taste", - "fields": { - "name": "Potion of Bad Taste", - "desc": "This brown, sludgy potion tastes extremely foul. When you drink this potion, the taste of your flesh is altered to be unpalatable for 1 hour. During this time, if a creature hits you with a bite attack, it must succeed on a DC 10 Constitution saving throw or spend its next action gagging and retching. A creature with an Intelligence of 4 or lower avoids biting you again unless compelled or commanded by an outside force or if you attack it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-bouncing", - "fields": { - "name": "Potion of Bouncing", - "desc": "A small, red sphere bobs up and down in the clear, effervescent liquid inside this bottle but disappears when the bottle is opened. When you drink this potion, your body becomes rubbery, and you are immune to falling damage for 1 hour. If you fall at least 10 feet, your body bounces back the same distance. As a reaction while falling, you can angle your fall and position your legs to redirect this distance. For example, if you fall 60 feet, you can redirect your bounce to propel you 30 feet up and 30 feet forward from the position where you landed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-buoyancy", - "fields": { - "name": "Potion of Buoyancy", - "desc": "When you drink this clear, effervescent liquid, your body becomes unnaturally buoyant for 1 hour. When you are immersed in water or other liquids, you rise to the surface (at a rate of up to 30 feet per round) to float and bob there. You have advantage on Strength (Athletics) checks made to swim or stay afloat in rough water, and you automatically succeed on such checks in calm waters.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-dire-cleansing", - "fields": { - "name": "Potion of Dire Cleansing", - "desc": "For 1 hour after drinking this potion, you have resistance to poison damage, and you have advantage on saving throws against being blinded, deafened, paralyzed, and poisoned. In addition, if you are poisoned, this potion neutralizes the poison. Known for its powerful, somewhat burning smell, this potion is difficult to drink, requiring a successful DC 13 Constitution saving throw to drink it. On a failure, you are poisoned for 10 minutes and don't gain the benefits of the potion.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-ebbing-strength", - "fields": { - "name": "Potion of Ebbing Strength", - "desc": "When you drink this potion, your Strength score changes to 25 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score. The recipe for this potion is flawed and infused with dangerous Void energies. When you drink this potion, you are also poisoned. While poisoned, you take 2d4 poison damage at the end of each minute. If you are reduced to 0 hit points while poisoned, you have disadvantage on death saving throws. This bubbling, pale blue potion is commonly used by the derro and is almost always paired with a Potion of Dire Cleansing or Holy Verdant Bat Droppings (see page 147). Warriors who use this potion without a method of removing the poison don't intend to return home from battle.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-effulgence", - "fields": { - "name": "Potion of Effulgence", - "desc": "When you drink this potion, your skin glows with radiance, and you are filled with joy and bliss for 1 minute. You shed bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight. While glowing, you are blinded and have disadvantage on Dexterity (Stealth) checks to hide. If a creature with the Sunlight Sensitivity trait starts its turn in the bright light you shed, it takes 2d4 radiant damage. This potion's golden liquid sparkles with motes of sunlight.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-empowering-truth", - "fields": { - "name": "Potion of Empowering Truth", - "desc": "A withered snake's tongue floats in the shimmering gold liquid within this crystalline vial. When you drink this potion, you regain one expended spell slot or one expended use of a class feature, such as Divine Sense, Rage, Wild Shape, or other feature with limited uses. Until you finish a long rest, you can't speak a deliberate lie. You are aware of this effect after drinking the potion. Your words can be evasive, as long as they remain within the boundaries of the truth.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-freezing-fog", - "fields": { - "name": "Potion of Freezing Fog", - "desc": "After drinking this potion, you can use an action to exhale a cloud of icy fog in a 20-foot cube originating from you. The cloud spreads around corners, and its area is heavily obscured. It lasts for 1 minute or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. When a creature enters the cloud for the first time on a turn or starts its turn there, that creature must succeed on a DC 13 Constitution saving throw or take 2d4 cold damage. The effects of this potion end after you have exhaled one fog cloud or 1 hour has passed. This potion has a gray, cloudy appearance and swirls vigorously when shaken.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-malleability", - "fields": { - "name": "Potion of Malleability", - "desc": "The glass bottle holding this thick, red liquid is strangely pliable, and compresses in your hand under the slightest pressure while it still holds the magical liquid. When you drink this potion, your body becomes extremely flexible and adaptable to pressure. For 1 hour, you have resistance to bludgeoning damage, can squeeze through a space large enough for a creature two sizes smaller than you, and have advantage on Dexterity (Acrobatics) checks made to escape a grapple.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-sand-form", - "fields": { - "name": "Potion of Sand Form", - "desc": "This potion's container holds a gritty liquid that moves and pours like water filled with fine particles of sand. When you drink this potion, you gain the effect of the gaseous form spell for 1 hour (no concentration required) or until you end the effect as a bonus action. While in this gaseous form, your appearance is that of a vortex of spiraling sand instead of a misty cloud. In addition, you have advantage on Dexterity (Stealth) checks while in a sandy environment, and, while motionless in a sandy environment, you are indistinguishable from an ordinary swirl of sand.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-skating", - "fields": { - "name": "Potion of Skating", - "desc": "For 1 hour after you drink this potion, you can move across icy surfaces without needing to make an ability check, and difficult terrain composed of ice or snow doesn't cost you extra movement. This sparkling blue liquid contains tiny snowflakes that disappear when shaken.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-transparency", - "fields": { - "name": "Potion of Transparency", - "desc": "The liquid in this vial is clear like water, and it gives off a slight iridescent sheen when shaken or swirled. When you drink this potion, you and everything you are wearing and carrying turn transparent, but not completely invisible, for 10 minutes. During this time, you have advantage on Dexterity (Stealth) checks, and ranged attacks against you have disadvantage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-worg-form", - "fields": { - "name": "Potion of Worg Form", - "desc": "Small flecks of brown hair are suspended in this clear, syrupy liquid. When you drink this potion, you transform into a worg for 1 hour. This works like the polymorph spell, but you retain your Intelligence, Wisdom, and Charisma scores. While in worg form, you can speak normally, and you can cast spells that have only verbal components. This transformation doesn't give you knowledge of the Goblin or Worg languages, and you are able to speak and understand those languages only if you knew them before the transformation.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "prayer-mat", - "fields": { - "name": "Prayer Mat", - "desc": "This small rug is woven with intricate patterns that depict religious iconography. When you attune to it, the iconography and the mat's colors change to the iconography and colors most appropriate for your deity. If you spend 10 minutes praying to your deity while kneeling on this mat, you regain one expended use of Channel Divinity. The mat can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "primal-doom-of-anguish", - "fields": { - "name": "Primal Doom of Anguish", - "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "primal-doom-of-pain", - "fields": { - "name": "Primal Doom of Pain", - "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "primal-doom-of-rage", - "fields": { - "name": "Primal Doom of Rage", - "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "primordial-scale", - "fields": { - "name": "Primordial Scale", - "desc": "This armor is fashioned from the scales of a great, subterranean beast shunned by the gods. While wearing it, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the armor increases its range by 60 feet, but you have disadvantage on attack rolls and Wisdom (Perception) checks that rely on sight when you are in sunlight. In addition, while wearing this armor, you have advantage on saving throws against spells cast by agents of the gods, such as celestials, fiends, clerics, and cultists.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "prospecting-compass", - "fields": { - "name": "Prospecting Compass", - "desc": "This battered, old compass has engravings of lumps of ore and natural crystalline minerals. While holding this compass, you can use an action to name a type of metal or stone. The compass points to the nearest naturally occurring source of that metal or stone for 1 hour or until you name a different type of metal or stone. The compass can point to cut gemstones, but it can't point to processed metals, such as iron swords or gold coins. The compass can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "quick-change-mirror", - "fields": { - "name": "Quick-Change Mirror", - "desc": "This utilitarian, rectangular standing mirror measures 4 feet tall and 2 feet wide. Despite its plain appearance, the mirror allows creatures to quickly change outfits. While in front of the mirror, you can use an action to speak the mirror's command word to be clothed in an outfit stored in the mirror. The outfit you are currently wearing is stored in the mirror or falls to the floor at your feet (your choice). The mirror can hold up to 12 outfits. An outfit must be a set of clothing or armor. An outfit can include other wearable items, such as a belt with pouches, a backpack, headwear, or footwear, but it can't include weapons or other carried items unless the weapon or carried item is sheathed, stored in a backpack, pocket, or pouch, or similarly attached to the outfit. The extent of how many attachments an outfit can have before it is considered more than one outfit or it is no longer considered an outfit is at the GM's discretion. To store an outfit you are wearing in the mirror, you must spend at least 1 minute rotating slowly in front of the mirror and speak the mirror's second command word. You can use a bonus action to speak a third command word to cause the mirror to display the outfits it contains. When found, the mirror contains 1d10 + 2 outfits. If the mirror is destroyed, all outfits it contains fall in a heap at its base.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "quill-of-scribing", - "fields": { - "name": "Quill of Scribing", - "desc": "This quill is fashioned from the feather of some exotic beast, often a giant eagle, griffon, or hippogriff. When you take an action to speak the command word, the quill animates, transcribing each word spoken by you, and up to three other creatures you designate, onto whatever material is placed before it until the command word is spoken again, or it has scribed 250 words. Once used, the quill can't be used again for 8 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "quilted-bridge", - "fields": { - "name": "Quilted Bridge", - "desc": "A practiced hand sewed together a collection of cloth remnants from magical garb to make this colorful and warm blanket. You can use an action to unfold it and pour out three drops of wine in tribute to its maker. If you do so, the blanket becomes a 5-foot wide, 10-foot-long bridge as sturdy as steel. You can fold the bridge back up as an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "radiance-bomb", - "fields": { - "name": "Radiance Bomb", - "desc": "This small apple-sized globule is made from a highly reflective silver material and has a single, golden rune etched on it. Typically, 1d4 + 4 radiance bombs are found together. You can use an action to throw the globule up to 60 feet. The globule explodes on impact and is destroyed. Each creature within a 10-foot radius of where the globule landed must make a DC 13 Dexterity saving throw. On a failure, a creature takes 3d6 radiant damage and is blinded for 1 minute. On a success, a creature takes half the damage and isn't blinded. A blinded creature can make a DC 13 Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "radiant-bracers", - "fields": { - "name": "Radiant Bracers", - "desc": "These bronze bracers are engraved with the image of an ankh with outstretched wings. While wearing these bracers, you have resistance to necrotic damage, and you can use an action to speak the command word while crossing the bracers over your chest. If you do so, each undead that can see you within 30 feet of you must make a Wisdom saving throw. The DC is equal to 8 + your proficiency bonus + your Wisdom modifier. On a failure, an undead creature is turned for 1 minute or until it takes any damage. This feature works like the cleric's Turn Undead class feature, except it can't be used to destroy undead. The bracers can't be used to turn undead again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "radiant-libram", - "fields": { - "name": "Radiant Libram", - "desc": "The gilded pages of this holy tome are bound between thin plates of moonstone crystal that emit a gentle incandescence. Aureate celestial runes adorn nearly every inch of its blessed surface. In addition, while you are attuned to the book, the spells written in it count as prepared spells and don't count against the number of spells you can prepare each day. You don't gain additional spell slots from this feature. The following spells are written in the book: beacon of hope, bless, calm emotions, commune, cure wounds, daylight, detect evil and good, divine favor, flame strike, gentle repose, guidance, guiding bolt, heroism, lesser restoration, light, produce flame, protection from evil and good, sacred flame, sanctuary, and spare the dying. A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action. Once used, this property of the book can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "rain-of-chaos", - "fields": { - "name": "Rain of Chaos", - "desc": "This magic weapon imbues arrows fired from it with random energies. When you hit with an attack using this magic bow, the target takes an extra 1d6 damage. Roll a 1d8. The number rolled determines the damage type of the extra damage. | d8 | Damage Type |\n| --- | ----------- |\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Lightning |\n| 5 | Necrotic |\n| 6 | Poison |\n| 7 | Radiant |\n| 8 | Thunder |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "rainbow-extract", - "fields": { - "name": "Rainbow Extract", - "desc": "This thin, oily liquid shimmers with the colors of the spectrum. For 1 hour after drinking this potion, you can use an action to change the color of your hair, skin, eyes, or all three to any color or mixture of colors in any hue, pattern, or saturation you choose. You can change the colors as often as you want for the duration, but the color changes disappear at the end of the duration.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "rapier-of-fallen-saints", - "fields": { - "name": "Rapier of Fallen Saints", - "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ravagers-axe", - "fields": { - "name": "Ravager's Axe", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. Any attack with this axe that hits a structure or an object that isn't being worn or carried is a critical hit. When you roll a 20 on an attack roll made with this axe, the target takes an extra 1d10 cold damage and 1d10 necrotic damage as the axe briefly becomes a rift to the Void.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "recondite-shield", - "fields": { - "name": "Recondite Shield", - "desc": "While wearing this ring, you can use a bonus action to create a weightless, magic shield that shimmers with arcane energy. You must be proficient with shields to wield this semitranslucent shield, and you wield it in the same hand that wears the ring. The shield lasts for 1 hour or until you dismiss it (no action required). Once used, you can't use the ring in this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "recording-book", - "fields": { - "name": "Recording Book", - "desc": "This book, which hosts a dormant Bookkeeper (see Creature Codex), appears to be a journal filled with empty pages. You can use an action to place the open book on a surface and speak its command word to activate it. It remains active until you use an action to speak the command word again. The book records all things said within 60 feet of it. It can distinguish voices and notes those as it records. The book can hold up to 12 hours' worth of conversation. You can use an action to speak a second command word to remove up to 1 hour of recordings in the book, while a third command word removes all the book's recordings. Any creature, other than you or targets you designate, that peruses the book finds the pages blank.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "reef-splitter", - "fields": { - "name": "Reef Splitter", - "desc": "The head of this warhammer is constructed of undersea volcanic rock and etched with images of roaring flames and boiling water. You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon, the hammer erupts with magma, and the target takes an extra 4d6 fire damage. In addition, if the target is underwater, the water around it begins to boil with the heat of your blow, and each creature other than you within 5 feet of the target takes 2d6 fire damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "relocation-cable", - "fields": { - "name": "Relocation Cable", - "desc": "This 60-foot length of fine wire cable weighs 2 pounds. If you hold one end of the cable and use an action to speak its command word, the other end plunges into the ground, burrowing through dirt, sand, snow, mud, ice, and similar material to emerge from the ground at a destination you can see up to its maximum length away. The cable can't burrow through solid rock. On the turn it is activated, you can use a bonus action to magically travel from one end of the cable to the other, appearing in an unoccupied space within 5 feet of the other end. On subsequent turns, any creature in contact with one end of the cable can use an action to appear in an unoccupied space within 5 feet of the other end of it. A creature magically traveling from one end of the cable to the other doesn't provoke opportunity attacks. You can retract the cable by using a bonus action to speak the command word a second time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "resolute-bracer", - "fields": { - "name": "Resolute Bracer", - "desc": "This ornamental bracer features a reservoir sewn into its lining. As an action, you can fill the reservoir with a single potion or vial of liquid, such as a potion of healing or antitoxin. While attuned to this bracer, you can use a bonus action to speak the command word and absorb the liquid as if you had consumed it. Liquid stored in the bracer for longer than 8 hours evaporates.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "retribution-armor", - "fields": { - "name": "Retribution Armor", - "desc": "Etchings of flames adorn this breastplate, which is wrapped in chains of red gold, silver, and black iron. While wearing this armor, you gain a +1 bonus to AC. In addition, if a creature scores a critical hit against you, you have advantage on any attacks against that creature until the end of your next turn or until you score a critical hit against that creature. - You have resistance to necrotic damage, and you are immune to poison damage. - You can't be charmed or poisoned, and you don't suffer from exhaustion.\n- You have darkvision out to a range of 60 feet.\n- You have advantage on saving throws against effects that turn undead.\n- You can use an action to sense the direction of your killer. This works like the locate creature spell, except you can sense only the creature that killed you. You rise as an undead only if your death was caused with intent; accidental deaths or deaths from unintended consequences (such as dying from a disease unintentionally passed to you) don't activate this property of the armor. You exist in this deathly state for up to 1 week per Hit Die or until you exact revenge on your killer, at which time your body crumbles to ash and you finally die. You can be restored to life only by means of a true resurrection or wish spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "revenants-shawl", - "fields": { - "name": "Revenant's Shawl", - "desc": "This shawl is made of old raven feathers woven together with elk sinew and small bones. When you are reduced to 0 hit points while wearing the shawl, it explodes in a burst of freezing wind. Each creature within 10 feet of you must make a DC 13 Dexterity saving throw, taking 4d6 cold damage on a failed save, or half as much damage on a successful one. You then regain 4d6 hit points, and the shawl disintegrates into fine black powder.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "rift-orb", - "fields": { - "name": "Rift Orb", - "desc": "This orb is a sphere of obsidian 3 inches in diameter. When you speak the command word in Void Speech, you can throw the sphere as an action to a point within 60 feet. When the sphere reaches the point you choose or if it strikes a solid object on the way, it immediately stops and generates a tiny rift into the Void. The area within 20 feet of the rift orb becomes difficult terrain, and gravity begins drawing everything in the affected area toward the rift. Each creature in the area at the start of its turn, or when it enters the area for the first time on a turn, must succeed on a DC 15 Strength saving throw or be pulled 10 feet toward the rift. A creature that touches the rift takes 4d10 necrotic damage. Unattended objects in the area are pulled 10 feet toward the rift at the start of your turn. Nonmagical objects pulled into the rift are destroyed. The rift orb functions for 1 minute, after which time it becomes inert. It can't be used again until the following midnight.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-mail-of-warding-1", - "fields": { - "name": "Ring Mail of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-mail-of-warding-2", - "fields": { - "name": "Ring Mail of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-mail-of-warding-3", - "fields": { - "name": "Ring Mail of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-arcane-adjustment", - "fields": { - "name": "Ring of Arcane Adjustment", - "desc": "This stylized silver ring is favored by spellcasters accustomed to fighting creatures capable of shrugging off most spells. The ring has 3 charges and regains 1d3 expended charges daily at dawn. When you cast a spell of 5th level or lower that has only one target and the target succeeds on the saving throw, you can use a reaction and expend 1 charge from the ring to change the spell's target to a new target within the spell's range. The new target is then affected by the spell, but the new target has advantage on the saving throw. You can't move the spell more than once this way, even if the new target succeeds on the saving throw. You can't move a spell that affects an area, that has multiple targets, that requires an attack roll, or that allows the target to make a saving throw to reduce, but not prevent, the effects of the spell, such as blight or feeblemind.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-bravado", - "fields": { - "name": "Ring of Bravado", - "desc": "This polished brass ring has 3 charges. While wearing the ring, you are inspired to daring acts that risk life and limb, especially if such acts would impress or intimidate others who witness them. When you choose a course of action that could result in serious harm or possible death (your GM has final say in if an action qualifies), you can expend 1 of the ring's charges to roll a d10 and add the number rolled to any d20 roll you make to achieve success or avoid damage, such as a Strength (Athletics) check to scale a sheer cliff and avoid falling or a Dexterity saving throw made to run through a hallway filled with swinging blades. The ring regains all expended charges daily at dawn. In addition, if you fail on a roll boosted by the ring, and you failed the roll by only 1, the ring regains 1 expended charge, as its magic recognizes a valiant effort.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-deceivers-warning", - "fields": { - "name": "Ring of Deceiver's Warning", - "desc": "This copper ring is set with a round stone of blue quartz. While you wear the ring, the stone's color changes to red if a shapechanger comes within 30 feet of you. For the purpose of this ring, “shapechanger” refers to any creature with the Shapechanger trait.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-dragons-discernment", - "fields": { - "name": "Ring of Dragon's Discernment", - "desc": "A large, orange cat's eye gem is held in the fittings of this ornate silver ring, looking as if it is grasped by scaled talons. While wearing this ring, your senses are sharpened. You have advantage on Intelligence (Investigation) and Wisdom (Perception) checks, and you can take the Search action as a bonus action. In addition, you are able to discern the value of any object made of precious metals or minerals or rare materials by handling it for 1 round.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-featherweight-weapons", - "fields": { - "name": "Ring of Featherweight Weapons", - "desc": "If you normally have disadvantage on attack rolls made with weapons with the Heavy property due to your size, you don't have disadvantage on those attack rolls while you wear this ring. This ring has no effect on you if you are Medium or larger or if you don't normally have disadvantage on attack rolls with heavy weapons.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-giant-mingling", - "fields": { - "name": "Ring of Giant Mingling", - "desc": "While wearing this ring, your size changes to match the size of those around you. If you are a Large creature and start your turn within 100 feet of four or more Medium creatures, this ring makes you Medium. Similarly, if you are a Medium creature and start your turn within 100 feet of four or more Large creatures, this ring makes you Large. These effects work like the effects of the enlarge/reduce spell, except they persist as long as you wear the ring and satisfy the conditions.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-hoarded-life", - "fields": { - "name": "Ring of Hoarded Life", - "desc": "This ring stores hit points sacrificed to it, holding them until the attuned wearer uses them. The ring can store up to 30 hit points at a time. When found, it contains 2d10 stored hit points. While wearing this ring, you can use an action to spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. Your hit point maximum is reduced by the total, and the ring stores the total, up to 30 hit points. This hit point maximum reduction can't be removed with the greater restoration spell or similar magic and lasts as long as hit points remain stored in the ring. You can't store hit points in the ring if you don't have blood. When hit points are stored in the ring, you can cause one of the following effects: - You can use a bonus action to remove stored hit points from the ring and regain that number of hit points.\n- You can use an action to remove stored hit points from the ring while touching the ring to a creature. If you do so, the creature regains hit points equal to the amount of hit points you removed from the ring.\n- When you are reduced to 0 hit points and are not killed outright, you can use a reaction to empty the ring of stored hit points and regain hit points equal to that amount. Hit Dice spent on this ring's features can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-imperious-command", - "fields": { - "name": "Ring of Imperious Command", - "desc": "Embossed in gold on this heavy iron ring is the image of a crown. The ring has 3 charges and regains 1d3 expended charges daily at dawn. While wearing this ring, you have advantage on Charisma (Intimidation) checks, and you can project your voice up to 300 feet with perfect clarity. In addition, you can use an action and expend 1 of the ring's charges to command a creature you can see within 30 feet of you to kneel before you. The target must make a DC 15 Charisma saving throw. On a failure, the target spends its next turn moving toward you by the shortest and most direct route then falls prone and ends its turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-lights-comfort", - "fields": { - "name": "Ring of Light's Comfort", - "desc": "A disc of white chalcedony sits within an encompassing band of black onyx, set into fittings on this pewter ring. While wearing this ring in dim light or darkness, you can use a bonus action to speak the ring's command word, causing it to shed bright light in a 30-foot radius and dim light for an additional 30 feet. The ring automatically sheds this light if you start your turn within 60 feet of an undead or lycanthrope. The light lasts until you use a bonus action to repeat the command word. In addition, you can't be charmed, frightened, or possessed by undead or lycanthropes.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-nights-solace", - "fields": { - "name": "Ring of Night's Solace", - "desc": "A disc of black onyx sits within an encompassing band of white chalcedony, set into fittings on this pewter ring. While wearing this ring in bright light, you are draped in a comforting cloak of shadow, protecting you from the harshest glare. If you have the Sunlight Sensitivity trait or a similar trait that causes you to have disadvantage on attack rolls or Wisdom (Perception) checks while in bright light or sunlight, you don't suffer those effects while wearing this ring. In addition, you have advantage on saving throws against being blinded.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-powerful-summons", - "fields": { - "name": "Ring of Powerful Summons", - "desc": "When you summon a creature with a conjuration spell while wearing this ring, the creature gains a +1 bonus to attack and damage rolls and 1d4 + 4 temporary hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-remembrance", - "fields": { - "name": "Ring of Remembrance", - "desc": "This ring is a sturdy piece of string, tied at the ends to form a circle. While wearing it, you can use an action to invoke its power by twisting it on your finger. If you do so, you have advantage on the next Intelligence check you make to recall information. The ring can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-sealing", - "fields": { - "name": "Ring of Sealing", - "desc": "This ring appears to be made of golden chain links. It has 3 charges and regains 1d3 expended charges daily at dawn. When you hit a creature with a melee attack while wearing this ring, you can use a bonus action and expend 1 of the ring's charges to cause mystical golden chains to spring from the ground and wrap around the creature. The target must make a DC 17 Wisdom saving throw. On a failure, the magical chains hold the target firmly in place, and it is restrained. The target can't move or be moved by any means. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. However, if the target fails three consecutive saving throws, the chains bind the target permanently. A successful dispel magic (DC 17) cast on the chains destroys them.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-shadows", - "fields": { - "name": "Ring of Shadows", - "desc": "While wearing this ebony ring in dim light or darkness, you have advantage on Dexterity (Stealth) checks. When you roll a 20 on a Dexterity (Stealth) check, the ring's magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-small-mercies", - "fields": { - "name": "Ring of Small Mercies", - "desc": "While wearing this plain, beaten pewter ring, you can use an action to cast the spare the dying spell from it at will.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-stored-vitality", - "fields": { - "name": "Ring of Stored Vitality", - "desc": "While you are attuned to and wearing this ring of polished, white chalcedony, you can feed some of your vitality into the ring to charge it. You can use an action to suffer 1 level of exhaustion. For each level of exhaustion you suffer, the ring regains 1 charge. The ring can store up to 3 charges. As the ring increases in charges, its color reddens, becoming a deep red when it has 3 charges. Your level of exhaustion can be reduced by normal means. If you already suffer from 3 or more levels of exhaustion, you can't suffer another level of exhaustion to restore a charge to the ring. While wearing the ring and suffering exhaustion, you can use an action to expend 1 or more charges from the ring to reduce your exhaustion level. Your exhaustion level is reduced by 1 for each charge you expend.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-the-dolphin", - "fields": { - "name": "Ring of the Dolphin", - "desc": "This gold ring bears a jade carving in the shape of a leaping dolphin. While wearing this ring, you have a swimming speed of 40 feet. In addition, you can hold your breath for twice as long while underwater.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-the-frog", - "fields": { - "name": "Ring of the Frog", - "desc": "A pale chrysoprase cut into the shape of a frog is the centerpiece of this tarnished copper ring. While wearing this ring, you have a swimming speed of 20 feet, and you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-the-frost-knight", - "fields": { - "name": "Ring of the Frost Knight", - "desc": "This white gold ring is covered in a thin sheet of ice and always feels cold to the touch. The ring has 3 charges and regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 charge to surround yourself in a suit of enchanted ice that resembles plate armor. For 1 hour, your AC can't be less than 16, regardless of what kind of armor you are wearing, and you have resistance to cold damage. The icy armor melts, ending the effect early, if you take 20 fire damage or more.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-the-groves-guardian", - "fields": { - "name": "Ring of the Grove's Guardian", - "desc": "This pale gold ring looks as though made of delicately braided vines wrapped around a small, rough obsidian stone. While wearing this ring, you have advantage on Wisdom (Perception) checks. You can use an action to speak the ring's command word to activate it and draw upon the vitality of the grove to which the ring is bound. You regain 2d10 hit points. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-the-jarl", - "fields": { - "name": "Ring of the Jarl", - "desc": "This thick band of hammered yellow gold is warm to the touch even in the coldest of climes. While you wear it, you have resistance to cold damage. If you are also wearing boots of the winterlands, you are immune to cold damage instead. Bolstering Shout. When you roll for initiative while wearing this ring, you can use a reaction to shout a war cry, bolstering your allies. Each friendly creature within 30 feet of you and that can hear you gains a +2 bonus on its initiative roll, and it has advantage on attack rolls for a number of rounds equal to your Charisma modifier (minimum of 1 round). Once used, this property of the ring can’t be used again until the next dawn. Wergild. While wearing this ring, you can use an action to create a nonmagical duplicate of the ring that is worth 100 gp. You can bestow this ring upon another as a gift. The ring can’t be used for common barter or trade, but it can be used for debts and payment of a warlike nature. You can give this ring to a subordinate warrior in your service or to someone to whom you owe a blood-debt, as a weregild in lieu of further fighting. You can create up to 3 of these rings each week. Rings that are not gifted within 24 hours of their creation vanish again.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-the-water-dancer", - "fields": { - "name": "Ring of the Water Dancer", - "desc": "This thin braided purple ring is fashioned from a single piece of coral. While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground. In addition, while walking atop any liquid, your movement speed increases by 10 feet and you gain a +1 bonus to your AC.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-ursa", - "fields": { - "name": "Ring of Ursa", - "desc": "This wooden ring is set with a strip of fossilized honey. While wearing this ring, you gain the following benefits: - Your Strength score increases by 2, to a maximum of 20.\n- You have advantage on Charisma (Persuasion) checks made to interact with bearfolk. In addition, while attuned to the ring, your hair grows thick and abundant. Your facial features grow more snout-like, and your teeth elongate. If you aren't a bearfolk, you gain the following benefits while wearing the ring:\n- You can now make a bite attack as an unarmed strike. When you hit with it, your bite deals piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. - You gain a powerful build and count as one size larger when determining your carrying capacity and the weight you can push, drag, or lift.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "river-token", - "fields": { - "name": "River Token", - "desc": "This small pebble measures 3/4 of an inch in diameter and weighs an ounce. The pebbles are often shaped like salmon, river clams, or iridescent river rocks. Typically, 1d4 + 4 river tokens are found together. The token gives off a distinct shine in sunlight and radiates a scent of fresh, roiling water. It is sturdy but crumbles easily if crushed. As an action, you can destroy the token by crushing it and sprinkling the remains into a river, calming the waters to a gentle current and soothing nearby water-dwelling creatures for 1 hour. Water-dwelling beasts in the river with an Intelligence of 3 or lower are soothed and indifferent toward passing humanoids for the duration. The token's magic soothes but doesn't fully suppress the hostilities of all other water-dwelling creatures. For the duration, each other water-dwelling creature must succeed on a DC 15 Wisdom saving throw to attack or take hostile actions toward passing humanoids. The token's soothing magic ends on a creature if that creature is attacked.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "riverine-blade", - "fields": { - "name": "Riverine Blade", - "desc": "The crossguard of this distinctive sword depicts a stylized Garroter Crab (see Tome of Beasts) with claws extended, and the pommel is set with a smooth, spherical, blue-black river rock. You gain a +2 bonus to attack and damage rolls made with this magic weapon. While on a boat or while standing in any depth of water, you have advantage on Dexterity checks and saving throws.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-blade-bending", - "fields": { - "name": "Rod of Blade Bending", - "desc": "This simple iron rod functions as a magic mace that grants a +1 bonus to attack and damage rolls made with it. Blade Bend. While holding the rod, you can use an action to activate it, creating a magical field around you for 10 minutes. When a creature attacks you with a melee weapon that deals piercing or slashing damage while the field is active, it must make a DC 15 Wisdom saving throw. On a failure, the creature’s attack misses. On a success, the creature’s attack hits you, but you have resistance to any piercing or slashing damage dealt by the attack as the weapon bends partially away from your body. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-bubbles", - "fields": { - "name": "Rod of Bubbles", - "desc": "This rod appears to be made of foamy bubbles, but it is completely solid to the touch. This rod has 3 charges. While holding it, you can use an action to expend 1 of its charges to conjure a bubble around a creature or object within 30 feet. If the target is a creature, it must make a DC 15 Strength saving throw. On a failed save, the target becomes trapped in a 10-foot sphere of water. A Huge or larger creature automatically succeeds on this saving throw. A creature trapped within the bubble is restrained unless it has a swimming speed and can't breathe unless it can breathe water. If the target is an object, it becomes soaked in water, any fire effects are extinguished, and any acid effects are negated. The bubble floats in the exact spot where it was conjured for up to 1 minute, unless blown by a strong wind or moved by water. The bubble has 50 hit points, AC 8, immunity to acid damage and vulnerability to piercing damage. The inside of the bubble also has resistance to all damage except piercing damage. The bubble disappears after 1 minute or when it is reduced to 0 hit points. When not in use, this rod can be commanded to take liquid form and be stored in a small vial. The rod regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-conveyance", - "fields": { - "name": "Rod of Conveyance", - "desc": "The top of this rod is capped with a bronze horse head, and its foot is decorated with a horsehair plume. By placing the rod between your legs, you can use an action to temporarily transform the rod into a horse-like construct. This works like the phantom steed spell, except you can use a bonus action to end the effect early to use the rod again at a later time. Deduct the time the horse was active in increments of 1 minute from the spell's 1-hour duration. When the rod has been a horse for a total of 1 hour, the magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-deflection", - "fields": { - "name": "Rod of Deflection", - "desc": "This thin, flexible rod is made of braided silver and brass wire and topped with a spoon-like cup. While holding the rod, you can use a reaction to deflect a ranged weapon attack against you. You can simply cause the attack to miss, or you can attempt to redirect the attack against another target, even your attacker. The attack must have enough remaining range to reach the new target. If the additional distance between yourself and the new target is within the attack's long range, it is made at disadvantage as normal, using the original attack roll as the first roll. The rod has 3 charges. You can expend a charge as a reaction to redirect a ranged spell attack as if it were a ranged weapon attack, up to the spell's maximum range. The rod regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-ghastly-might", - "fields": { - "name": "Rod of Ghastly Might", - "desc": "The knobbed head of this tarnished silver rod resembles the top half of a jawless, syphilitic skull, and it functions as a magic mace that grants a +2 bonus to attack and damage rolls made with it. The rod has properties associated with five different buttons that are set erratically along the haft. It has three other properties as well, detailed below. If you press **button 1**, the rod's head erupts in a fiery nimbus of abyssal energy that sheds dim light in a 5-foot radius. While the rod is ablaze, it deals an extra 1d6 fire damage and 1d6 necrotic damage to any target it hits. If you press **button 2**, the rod's head becomes enveloped in a black aura of enervating energy. When you hit a target with the rod while it is enveloped in this energy, the target must succeed on a DC 17 Constitution saving throw or deal only half damage with weapon attacks that use Strength until the end of its next turn. If you press **button 3**, a 2-foot blade springs from the tip of the rod's handle as the handle lengthens into a 5-foot haft, transforming the rod into a magic glaive that grants a +2 bonus to attack and damage rolls made with it. If you press **button 4**, a 3-pronged, bladed grappling hook affixed to a long chain springs from the tip of the rod's handle. The bladed grappling hook counts as a magic sickle with reach that grants a +2 bonus to attack and damage rolls made with it. When you hit a target with the bladed grappling hook, the target must succeed on an opposed Strength check or fall prone. If you press **button 5**, the rod assumes or remains in its normal form and you can extinguish all nonmagical flames within 30 feet of you. Turning Defiance. While holding the rod, you and any undead allies within 30 feet of you have advantage on saving throws against effects that turn undead. Contagion. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target is afflicted with a disease. This works like the contagion spell. Once used, this property can’t be used again until the next dusk. Create Specter. As an action, you can target a humanoid within 10 feet of you that was killed by the rod or one of its effects and has been dead for no longer than 1 minute. The target’s spirit rises as a specter under your control in the space of its corpse or in the nearest unoccupied space. You can have no more than one specter under your control at one time. Once used, this property can’t be used again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-hellish-grounding", - "fields": { - "name": "Rod of Hellish Grounding", - "desc": "This curious jade rod is tipped with a knob of crimson crystal that glows and shimmers with eldritch phosphorescence. While holding or carrying the rod, you have darkvision out to a range of 30 feet, and you have advantage on Dexterity (Acrobatics) checks. Hellish Desiccation. While holding this rod, you can use an action to fire a crimson ray at an object or creature made of metal that you can see within 60 feet of you. The ray forms a 5-foot wide line between you and the target. Each creature in that line that isn’t a construct or an undead must make a DC 15 Dexterity saving throw, taking 8d6 force damage on a failed save, or half as much damage on a successful one. Creatures and objects made of metal are unaffected. If this damage reduces a creature to 0 hit points, it is desiccated. A desiccated creature is reduced to a withered corpse, but everything it is wearing and carrying is unaffected. The creature can be restored to life only by means of a true resurrection or a wish spell. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-icicles", - "fields": { - "name": "Rod of Icicles", - "desc": "This white crystalline rod is shaped like an icicle. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges to attack one creature you can see within 60 feet of you. The rod launches an icicle at the target and makes its attack roll with a +7 bonus. On a hit, the target takes 2d6 piercing damage and 2d6 cold damage. On a critical hit, the target is also paralyzed until the end of its next turn as it momentarily freezes. If you take fire damage while holding this rod, you become immune to fire damage for 1 minute, and the rod loses 2 charges. If the rod has only 1 charge remaining when you take fire damage, you become immune to fire damage, as normal, but the rod melts into a puddle of water and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-reformation", - "fields": { - "name": "Rod of Reformation", - "desc": "This rod of polished white oak is wrapped in a knotted cord with three iron rings binding each end. If you are holding the rod and fail a saving throw against a transmutation spell or other effect that would change your body or remove or alter parts of you, you can choose to succeed instead. The rod can’t be used this way again until the next dawn. The rod has 5 charges for the following properties. It regains 1d4 + 1 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rings fall off, the cord unknots, and the entire rod slowly falls to pieces and is destroyed. Cure Transformation. While holding the rod, you can use an action to expend 1 charge while touching a creature that has been affected by a transmutation spell or other effect that changed its physical form, such as the polymorph spell or a medusa's Petrifying Gaze. The rod restores the creature to its original form. If the creature is willingly transformed, such as a druid using Wild Shape, you must make a melee weapon attack roll, using the rod. You are proficient with the rod if you are proficient with clubs. On a hit, you can expend 1 of the rod’s charges to force the target to make a DC 15 Constitution saving throw. On a failure, the target reverts to its original form. Mend Form. While holding the rod, you can use an action to expend 2 charges to reattach a creature's severed limb or body part. The limb must be held in place while you use the rod, and the process takes 1 minute to complete. You can’t reattach limbs or other body parts to dead creatures. If the limb is lost, you can spend 4 charges instead to regenerate the missing piece, which takes 2 minutes to complete. Reconstruct Form. While holding the rod, you can use an action to expend 5 charges to reconstruct the form of a creature or object that has been disintegrated, burned to ash, or similarly destroyed. An item is completely restored to its original state. A creature’s body is fully restored to the state it was in before it was destroyed. The creature isn’t restored to life, but this reconstruction of its form allows the creature to be restored to life by spells that require the body to be present, such as raise dead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-repossession", - "fields": { - "name": "Rod of Repossession", - "desc": "This short, metal rod is engraved with arcane runes and images of open hands. The rod has 3 charges and regains all expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges and target an object within 30 feet of you that isn't being worn or carried. If the object weighs no more than 25 pounds, it floats to your open hand. If you have no hands free, the object sticks to the tip of the rod until the end of your next turn or until you remove it as a bonus action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-sacrificial-blessing", - "fields": { - "name": "Rod of Sacrificial Blessing", - "desc": "This silvery rod is set with rubies on each end. One end holds rubies shaped to resemble an open, fanged maw, and the other end's rubies are shaped to resemble a heart. While holding this rod, you can use an action to spend one or more Hit Dice, up to half your maximum Hit Dice, while pointing the heart-shaped ruby end of the rod at a target within 60 feet of you. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target regains hit points equal to the total hit points you lost. You can't use this feature if you don't have blood. Hit Dice spent on this feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-sanguine-mastery", - "fields": { - "name": "Rod of Sanguine Mastery", - "desc": "This rod is topped with a red ram's skull with two backswept horns. As an action, you can spend one or more Hit Dice, up to half of your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and a target within 60 feet of you must make a DC 17 Dexterity saving throw, taking necrotic damage equal to the total on a failed save, or half as much damage on a successful one. You can't use this feature if you don't have blood. Hit Dice spent on this feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-swarming-skulls", - "fields": { - "name": "Rod of Swarming Skulls", - "desc": "An open-mouthed skull caps this thick, onyx rod. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dusk. While holding the rod, you can use an action and expend 1 of the rod's charges to unleash a swarm of miniature spectral blue skulls at a target within 30 feet. The target must make a DC 15 Wisdom saving throw. On a failure, it takes 3d6 psychic damage and becomes paralyzed with fear until the end of its next turn. On a success, it takes half the damage and isn't paralyzed. Creatures that can't be frightened are immune to this effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-the-disciplinarian", - "fields": { - "name": "Rod of the Disciplinarian", - "desc": "This black lacquered wooden rod is banded in steel, has a flanged head, and functions as a magic mace. As a bonus action, you can brandish the rod at a creature and demand it refrain from a particular activity— attacking, casting, moving, or similar. The activity can be as specific (don't attack the person next to you) or as open (don't cast a spell) as you want, but the activity must be a conscious act on the creature's part, must be something you can determine is upheld or broken, and can't immediately jeopardize the creature's life. For example, you can forbid a creature from lying only if you are capable of determining if the creature is lying, and you can't forbid a creature that needs to breathe from breathing. The creature can act normally, but if it performs the activity you forbid, you can use a reaction to make a melee attack against it with the rod. You can forbid only one creature at a time. If you forbid another creature from performing an activity, the previous creature is no longer forbidden from performing activities. Justicars are arbiters of law and order, operating independently of any official city guard or watch divisions. They are recognizable by their black, hooded robes, silver masks, and the rods they carry as weapons. These stern sentinels are overseen by The Magister, a powerful wizard of whom little is known other than their title. The Magister has made it their duty to oversee order in the city and executes their plans through the Justicars, giving them the Magister's mark, a signet ring, as a symbol of their authority. While some officers and members of the watch may be resentful of the Justicars' presence, many are grateful for their aid, especially in situations that could require magic. Justicar's are a small, elite group, typically acting as solo agents, though extremely dangerous situations bring them together in pairs or larger groups as needed. The Justicars are outfitted with three symbols of authority that are also imbued with power: their masks, rods, and rings. Each by itself is a useful item, but they are made stronger when worn together. The combined powers of this trinity of items make a Justicar a formidable force in the pursuit of law and order.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-the-infernal-realms", - "fields": { - "name": "Rod of the Infernal Realms", - "desc": "The withered, clawed hand of a demon or devil tops this iron rod. While holding this rod, you gain a +2 bonus to spell attack rolls, and the save DC for your spells increases by 2. Frightful Eyes. While holding this rod, you can use a bonus action to cause your eyes to glow with infernal fire for 1 minute. While your eyes are glowing, a creature that starts its turn or enters a space within 10 feet of you must succeed on a Wisdom saving throw against your spell save DC or become frightened of you until your eyes stop glowing. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once used, you can’t use this property again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-the-jester", - "fields": { - "name": "Rod of the Jester", - "desc": "This wooden rod is decorated with colorful scarves and topped with a carving of a madly grinning head. Caper. While holding the rod, you can dance and perform general antics that attract attention. Make a DC 10 Charisma (Performance) check. On a success, one creature that can see and hear you must succeed on a DC 15 Wisdom saving throw or have disadvantage on Wisdom (Perception) checks made to perceive any creature other than you for 1 minute. The effect ends if the target can no longer see or hear you or if you are incapacitated. You can affect one additional creature for each 5 points by which you beat the DC (two creatures with a result of 15, three creatures with a result of 20, and so on). Once used, this property can’t be used again until the next dawn. Hideous Laughter. While holding the rod, you can use an action to cast the hideous laughter spell (save DC 15) from it. Once used, this property can’t be used again until the next dawn. Slapstick. You can use an action to swing the rod in the direction of a creature within 5 feet of you. The target must succeed on a DC 15 Dexterity saving throw or be pushed up to 5 feet away from you and knocked prone. If the target fails the saving throw by 5 or more, it is also stunned until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-the-mariner", - "fields": { - "name": "Rod of the Mariner", - "desc": "This thin bone rod is topped with the carved figurine of an albatross in flight. The rod has 5 charges. You can use an action to expend 1 or more of its charges and point the rod at one or more creatures you can see within 30 feet of you, expending 1 charge for each creature. Each target must succeed on a DC 15 Wisdom saving throw or be cursed for 1 minute. A cursed creature has disadvantage on attack rolls and saving throws while within 100 feet of a body of water that is at least 20 feet deep. The rod regains 1d4 + 1 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rod crumbles to dust and is destroyed, and you must succeed on a DC 15 Wisdom saving throw or be cursed for 1 minute as if you had been the target of the rod's power.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-the-wastes", - "fields": { - "name": "Rod of the Wastes", - "desc": "Created by a holy order of knights to protect their most important members on missions into badlands and magical wastelands, these red gold rods are invaluable tools against the forces of evil. This rod has a rounded head, and it functions as a magic mace that grants a +2 bonus to attack and damage rolls made with it. While holding or carrying the rod, you have advantage on Wisdom (Perception) and Wisdom (Survival) checks made in badlands and wasteland terrain, and you have advantage on saving throws against being charmed or otherwise compelled by aberrations and fiends. If you are charmed or magically compelled by an aberration or fiend, the rod flashes with crimson light, alerting others to your predicament. Aberrant Smite. If you use Divine Smite when you hit an aberration or fiend with this rod, you use the highest number possible for each die of radiant damage rather than rolling one or more dice for the extra radiant damage. You must still roll damage dice for the rod’s damage, as normal. Once used, this property can’t be used again until the next dawn. Spells. You can use an action to cast one of the following spells from the rod: daylight, lesser restoration, or shield of faith. Once you cast a spell with this rod, you can’t cast that spell again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-thorns", - "fields": { - "name": "Rod of Thorns", - "desc": "Several long sharp thorns sprout along the edge of this stout wooden rod, and it functions as a magic mace that grants a +1 bonus to attack and damage rolls made with it. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges to cast the spike growth spell (save DC 15) from it. Embed Thorn. When you hit a creature with this rod, you can expend 1 of its charges to embed a thorn in the creature. At the start of each of the creature’s turns, it must succeed on a DC 15 Constitution saving throw or take 2d6 piercing damage from the embedded thorn. If the creature succeeds on two saving throws, the thorn falls out and crumbles to dust. The successes don’t need to be consecutive. If the creature dies while the thorn is embedded, its body transforms into a patch of nonmagical brambles, which fill its space with difficult terrain.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-underworld-navigation", - "fields": { - "name": "Rod of Underworld Navigation", - "desc": "This finely carved rod is decorated with gold and small dragon scales. While underground and holding this rod, you know how deep below the surface you are. You also know the direction to the nearest exit leading upward. As an action while underground and holding this rod, you can use the find the path spell to find the shortest, most direct physical route to a location you are familiar with on the surface. Once used, the find the path property can't be used again until 3 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-vapor", - "fields": { - "name": "Rod of Vapor", - "desc": "This wooden rod is topped with a dragon's head, carved with its mouth yawning wide. While holding the rod, you can use an action to cause a thick mist to issue from the dragon's mouth, filling your space. As long as you maintain concentration, you leave a trail of mist behind you when you move. The mist forms a line that is 5 feet wide and as long as the distance you travel. This mist you leave behind you lasts for 2 rounds; its area is heavily obscured on the first round and lightly obscured on the second, then it dissipates. When the rod has produced enough mist to fill ten 5-foot-square areas, its magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-verbatim", - "fields": { - "name": "Rod of Verbatim", - "desc": "Tiny runic script covers much of this thin brass rod. While holding the rod, you can use a bonus action to activate it. For 10 minutes, it translates any language spoken within 30 feet of it into Common. The translation can be auditory, or it can appear as glowing, golden script, a choice you make when you activate it. If the translation appears on a surface, the surface must be within 30 feet of the rod and each word remains for 1 round after it was spoken. The rod's translation is literal, and it doesn't replicate or translate emotion or other nuances in speech, body language, or culture. Once used, the rod can't be used again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-warning", - "fields": { - "name": "Rod of Warning", - "desc": "This plain, wooden rod is topped with an orb of clear, polished crystal. You can use an action activate it with a command word while designating a particular kind of creature (orcs, wolves, etc.). When such a creature comes within 120 feet of the rod, the crystal glows, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. You can use an action to deactivate the rod's light or change the kind of creature it detects. The rod doesn't need to be in your possession to function, but you must have it in hand to activate it, deactivate it, or change the kind of creature it detects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "rogues-aces", - "fields": { - "name": "Rogue's Aces", - "desc": "These four, colorful parchment cards have long bailed the daring out of hazardous situations. You can use an action to flip a card face-up, activating it. A card is destroyed after it activates. Ace of Pentacles. The pentacles suit represents wealth and treasure. When you activate this card, you cast the knock spell from it on an object you can see within 60 feet of you. In addition, you have advantage on Dexterity checks to pick locks using thieves’ tools for the next 24 hours. Ace of Cups. The cups suit represents water and its calming, soothing, and cleansing properties. When you activate this card, you cast the calm emotions spell (save DC 15) from it. In addition, you have advantage on Charisma (Deception) checks for the next 24 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "root-of-the-world-tree", - "fields": { - "name": "Root of the World Tree", - "desc": "Crafted from the root burl of a sacred tree, this rod is 2 feet long with a spiked, knobby end. Runes inlaid with gold decorate the full length of the rod. This rod functions as a magic mace. Blood Anointment. You can perform a 1-minute ritual to anoint the rod in your blood. If you do, your hit point maximum is reduced by 2d4 until you finish a long rest. While your hit point maximum is reduced in this way, you gain a +1 bonus to attack and damage rolls made with this magic weapon, and, when you hit a fey or giant with this weapon, that creature takes an extra 2d6 necrotic damage. Holy Anointment. If you spend 1 minute anointing the rod with a flask of holy water, you can cast the augury spell from it. The runes carved into the rod glow and move, forming an answer to your query.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "rope-seed", - "fields": { - "name": "Rope Seed", - "desc": "If you soak this 5-foot piece of twine in at least one pint of water, it grows into a 50-foot length of hemp rope after 1 minute.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "rowan-staff", - "fields": { - "name": "Rowan Staff", - "desc": "Favored by those with ties to nature and death, this staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. While holding it, you have an advantage on saving throws against spells. The staff has 10 charges for the following properties. It regains 1d4 + 1 expended charges daily at midnight, though it regains all its charges if it is bathed in moonlight at midnight. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff. Spell. While holding this staff, you can use an action to expend 1 or more of its charges to cast animate dead, using your spell save DC and spellcasting ability. The target bones or corpse can be a Medium or smaller humanoid or beast. Each charge animates a separate target. These undead creatures are under your control for 24 hours. You can use an action to expend 1 charge each day to reassert your control of up to four undead creatures created by this staff for another 24 hours. Deanimate. You can use an action to strike an undead creature with the staff in combat. If the attack hits, the target must succeed on a DC 17 Constitution saving throw or revert to an inanimate pile of bones or corpse in its space. If the undead has the Incorporeal Movement trait, it is destroyed instead. Deanimating an undead creature expends a number of charges equal to twice the challenge rating of the creature (minimum of 1). If the staff doesn’t have enough charges to deanimate the target, the staff doesn’t deanimate the target.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rowdys-club", - "fields": { - "name": "Rowdy's Club", - "desc": "This knobbed stick is marked with nicks, scratches, and notches. You gain a +1 bonus to attack and damage rolls made with this magic weapon. While wielding the club, you can use an action to tap it against your open palm, the side of your leg, a surface within reach, or similar. If you do, you have advantage on your next Charisma (Intimidation) check. If you are also wearing a rowdy's ring (see page 87), you can use an action to frighten a creature you can see within 30 feet of you instead. The target must succeed on a DC 13 Wisdom saving throw or be frightened of you until the end of its next turn. Once this special action has been used three times, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "rowdys-ring", - "fields": { - "name": "Rowdy's Ring", - "desc": "The face of this massive ring is a thick slab of gold-plated lead, which is attached to twin rings that are worn over the middle and ring fingers. The slab covers your fingers from the first and second knuckles, and it often has a threatening word or image engraved on it. While wearing the ring, your unarmed strike uses a d4 for damage and attacks made with the ring hand count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "royal-jelly", - "fields": { - "name": "Royal Jelly", - "desc": "This oil is distilled from the pheromones of queen bees and smells faintly of bananas. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying. For larger creatures, one additional vial is required for each size category above Medium. Applying the oil takes 10 minutes. The affected creature then has advantage on Charisma (Persuasion) checks for 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ruby-crusher", - "fields": { - "name": "Ruby Crusher", - "desc": "This greatclub is made entirely of fused rubies with a grip wrapped in manticore hide A roaring fire burns behind its smooth facets. You gain a +3 bonus to attack and damage rolls made with this magic weapon. You can use a bonus action to speak this magic weapon's command word, causing it to be engulfed in flame. These flames shed bright light in a 30-foot radius and dim light for an additional 30 feet. While the greatclub is aflame, it deals fire damage instead of bludgeoning damage. The flames last until you use a bonus action to speak the command word again or until you drop the weapon. When you hit a Large or larger creature with this greatclub, the creature must succeed on a DC 17 Constitution saving throw or be pushed up to 30 feet away from you. If the creature strikes a solid object, such as a door or wall, during this movement, it and the object take 1d6 bludgeoning damage for each 10 feet the creature traveled before hitting the object.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "rug-of-safe-haven", - "fields": { - "name": "Rug of Safe Haven", - "desc": "This small, 3-foot-by-5-foot rug is woven with a tree motif and a tasseled fringe. While the rug is laid out on the ground, you can speak its command word as an action to create an extradimensional space beneath the rug for 1 hour. The extradimensional space can be reached by lifting a corner of the rug and stepping down as if through a trap door in a floor. The space can hold as many as eight Medium or smaller creatures. The entrance can be hidden by pulling the rug flat. Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window in the shape and style of the rug. Anything inside the extradimensional space is gently pushed out to the nearest unoccupied space when the duration ends. The rug can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "rust-monster-shell", - "fields": { - "name": "Rust Monster Shell", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, you can use an action to magically coat the armor in rusty flakes for 1 minute. While the armor is coated in rusty flakes, any nonmagical weapon made of metal that hits you corrodes. After dealing damage, the weapon takes a permanent and cumulative –1 penalty to damage rolls. If its penalty drops to –5, the weapon is destroyed. Nonmagical ammunition made of metal that hits you is destroyed after dealing damage. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "sacrificial-knife", - "fields": { - "name": "Sacrificial Knife", - "desc": "Runes dance along the blade of this keen knife. Sacrificial Knife (Common). While attuned to it, you can use this magic, rune-inscribed dagger as a spellcasting focus. Ceremonial Sacrificial Knife (Uncommon). More powerful versions of this blade also exist. While holding the greater version of this dagger, you can use it to perform a sacrificial ritual during a short rest. If you sacrifice a Tiny or Small creature, you regain one expended 1st-level spell slot. If you sacrifice a Medium or larger creature, you regain one expended 2nd-level spell slot.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "saddle-of-the-cavalry-casters", - "fields": { - "name": "Saddle of the Cavalry Casters", - "desc": "This magic saddle adjusts its size and shape to fit the animal to which it is strapped. While a mount wears this saddle, creatures have disadvantage on opportunity attacks against the mount or its rider. While you sit astride this saddle, you have advantage on any checks to remain mounted and on Constitution saving throws to maintain concentration on a spell when you take damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "sanctuary-shell", - "fields": { - "name": "Sanctuary Shell", - "desc": "This seashell is intricately carved with protective runes. If you are carrying the shell and are reduced to 0 hit points or incapacitated, the shell activates, creating a bubble of force that expands to surround you and forces any other creatures out of your space. This sphere works like the wall of force spell, except that any creature intent on aiding you can pass through it. The protective sphere lasts for 10 minutes, or until you regain at least 1 hit point or are no longer incapacitated. When the protective sphere ends, the shell crumbles to dust.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "sand-arrow", - "fields": { - "name": "Sand Arrow", - "desc": "The shaft of this arrow is made of tightly packed white sand that discorporates into a blast of grit when it strikes a target. On a hit, the sand catches in the fittings and joints of metal armor, and the target's speed is reduced by 10 feet until it cleans or removes the armor. In addition, the target must succeed on a DC 11 Constitution saving throw or be blinded until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "sand-suit", - "fields": { - "name": "Sand Suit", - "desc": "Created from the treated body of a destroyed Apaxrusl (see Tome of Beasts 2), this leather armor constantly sheds fine sand. The faint echoes of damned souls also emanate from the armor. While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, you can move through nonmagical, unworked earth and stone at your speed. While doing so, you don't disturb the material you move through. Because the souls that once infused the apaxrusl remain within the armor, you are susceptible to effects that sense, target, or harm fiends, such as a paladin's Divine Smite or a ranger's Primeval Awareness. This armor has 3 charges, and it regains 1d3 expended charges daily at dawn. As a reaction, when you are hit by an attack, you can expend 1 charge and make the armor flow like sand. Roll a 1d12 and reduce the damage you take by the number rolled.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "sandals-of-sand-skating", - "fields": { - "name": "Sandals of Sand Skating", - "desc": "These leather sandals repel sand, leaving your feet free of particles and grit. While you wear these sandals in a desert, on a beach, or in an otherwise sandy environment, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced while in nonmagical difficult terrain made of sand. In addition, when you take the Dash action across sand, the extra movement you gain is double your speed instead of equal to your speed. With a speed of 30 feet, for example, you can move up to 90 feet on your turn if you dash across sand.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "sandals-of-the-desert-wanderer", - "fields": { - "name": "Sandals of the Desert Wanderer", - "desc": "While you wear these soft leather sandals, you have resistance to fire damage. In addition, you ignore difficult terrain created by loose or deep sand, and you can tolerate temperatures of up to 150 degrees Fahrenheit.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "sanguine-lance", - "fields": { - "name": "Sanguine Lance", - "desc": "This fiendish lance runs red with blood. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature that has blood with this lance, the target takes an extra 1d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "satchel-of-seawalking", - "fields": { - "name": "Satchel of Seawalking", - "desc": "This eel-hide leather pouch is always filled with an unspeakably foul-tasting, coarse salt. You can use an action to toss a handful of the salt onto the surface of an unoccupied space of water. The water in a 5-foot cube becomes solid for 1 minute, resembling greenish-blue glass. This cube is buoyant and can support up to 750 pounds. When the duration expires, the hardened water cracks ominously and returns to a liquid state. If you toss the salt into an occupied space, the water congeals briefly then disperses harmlessly. If the satchel is opened underwater, the pouch is destroyed as its contents permanently harden. Once five handfuls of the salt have been pulled from the satchel, the satchel can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "scale-mail-of-warding-1", - "fields": { - "name": "Scale Mail of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "scale-mail-of-warding-2", - "fields": { - "name": "Scale Mail of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "scale-mail-of-warding-3", - "fields": { - "name": "Scale Mail of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "scalehide-cream", - "fields": { - "name": "Scalehide Cream", - "desc": "As an action, you can rub this dull green cream over your skin. When you do, you sprout thick, olive-green scales like those of a giant lizard or green dragon that last for 1 hour. These scales give you a natural AC of 15 + your Constitution modifier. This natural AC doesn't combine with any worn armor or with a Dexterity bonus to AC. A jar of scalehide cream contains 1d6 + 1 doses.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "scarab-of-rebirth", - "fields": { - "name": "Scarab of Rebirth", - "desc": "This coin-sized figurine of a scarab is crafted from an unidentifiable blue-gray metal, but it appears mundane in all other respects. When you speak its command word, it whirs to life and burrows into your flesh. You can speak the command word again to remove the scarab. While the scarab is embedded in your flesh, you gain the following:\n- You no longer need to eat or drink.\n- You can magically sense the presence of undead and pinpoint the location of any undead within 30 feet of you.\n- Your hit point maximum is reduced by 10.\n- If you die, you return to life with half your maximum hit points at the start of your next turn. The scarab can't return you to life if you were beheaded, disintegrated, crushed, or similar full-body destruction. Afterwards, the scarab exits your body and goes dormant. It can't be used again until 14 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "scarf-of-deception", - "fields": { - "name": "Scarf of Deception", - "desc": "While wearing this scarf, you appear different to everyone who looks upon you for less than 1 minute. In addition, you smell, sound, feel, and taste different to every creature that perceives you. Creatures with truesight or blindsight can see your true form, but their other senses are still confounded. If a creature studies you for 1 minute, it can make a DC 15 Wisdom (Perception) check. On a success, it perceives your real form.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "scent-sponge", - "fields": { - "name": "Scent Sponge", - "desc": "This sea sponge collects the scents of creatures and objects. You can use an action to touch the sponge to a creature or object, and the scent of the target is absorbed into the sponge. An unwilling target can make a DC 13 Dexterity saving throw, and if it succeeds, it is unaffected by the sponge. For 1 hour after its scent has been absorbed, the target gives off no smell and can't be detected or tracked by creatures, spells, or other effects that rely on smell to detect or track the target. You can use an action to wipe the sponge on a creature or object, masking its natural scent with the scent stored in the sponge. An unwilling target can make a DC 13 Dexterity saving throw, and if it succeeds, it is unaffected by the sponge. For 1 hour after its scent has been masked, the target gives off the smell of the creature or object that was stored in the sponge. The effect ends early if the target's scent is replaced by another scent from the sponge or if the scent is cleaned away, which requires vigorous washing for 10 minutes with soap and water or similar materials. The sponge can hold a scent indefinitely, but it can hold only one scent at a time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "scepter-of-majesty", - "fields": { - "name": "Scepter of Majesty", - "desc": "While holding this bejeweled, golden rod, you can use an action to cast the enthrall spell (save DC 15) from it, exhorting those in range to follow you and obey your commands. When you finish speaking, 1d6 creatures that failed their saving throw are affected as if by the dominate person spell. Each such creature treats you as its ruler, obeying your commands and automatically fighting in your defense should anyone attempt to harm you. If you are also attuned to and wearing a Headdress of Majesty (see page 146), your charmed subjects have advantage on attack rolls against any creature that attacked you or that cast an obvious spell on you within the last round. The scepter can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "scimitar-of-fallen-saints", - "fields": { - "name": "Scimitar of Fallen Saints", - "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "scimitar-of-the-desert-winds", - "fields": { - "name": "Scimitar of the Desert Winds", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While holding or carrying this scimitar, you can tolerate temperatures as low as –50 degrees Fahrenheit or as high as 150 degrees Fahrenheit without any additional protection.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "scorn-pouch", - "fields": { - "name": "Scorn Pouch", - "desc": "The heart of a lover scorned turns black and potent. Similarly, this small leather pouch darkens from brown to black when a creature hostile to you moves within 10 feet of you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "scorpion-feet", - "fields": { - "name": "Scorpion Feet", - "desc": "These thick-soled leather sandals offer comfortable and safe passage across shifting sands. While you wear them, you gain the following benefits:\n- Your speed isn't reduced while in magical or nonmagical difficult terrain made of sand.\n- You have advantage on all ability checks and saving throws against natural hazards where sand is a threatening element.\n- You have immunity to poison damage and advantage on saving throws against being poisoned.\n- You leave no tracks or other traces of your passage through sandy terrain.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "scoundrels-gambit", - "fields": { - "name": "Scoundrel's Gambit", - "desc": "This fluted silver tube, barely two inches long, bears tiny runes etched between the grooves. While holding this tube, you can use an action to cast the magic missile spell from it. Once used, the tube can't be used to cast magic missile again until 12 hours have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "scourge-of-devotion", - "fields": { - "name": "Scourge of Devotion", - "desc": "This cat o' nine tails is used primarily for self-flagellation, and its tails have barbs of silver woven into them. You gain a +1 bonus to attack and damage rolls made with this magic weapon, and the weapon deals slashing damage instead of bludgeoning damage. You can spend 10 minutes using the scourge in a self-flagellating ritual, which can be done during a short rest. If you do so, your hit point maximum is reduced by 2d8. In addition, you have advantage on Constitution saving throws that you make to maintain your concentration on a spell when you take damage while your hit point maximum is reduced. This hit point maximum reduction can't be removed with the greater restoration spell or similar magic and lasts until you finish a long rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "scouts-coat", - "fields": { - "name": "Scout's Coat", - "desc": "This lightweight, woolen coat is typically left naturally colored or dyed in earth tones or darker shades of green. While wearing the coat, you can tolerate temperatures as low as –100 degrees Fahrenheit.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "screaming-skull", - "fields": { - "name": "Screaming Skull", - "desc": "This skull looks like a normal animal or humanoid skull. You can use an action to place the skull on the ground, a table, or other surface and activate it with a command word. The skull's magic triggers when a creature comes within 5 feet of it without speaking that command word. The skull emits a green glow from its eye sockets, shedding dim light in a 15-foot radius, levitates up to 3 feet in the air, and emits a piercing scream for 1 minute that is audible up to 600 feet away. The skull can't be used this way again until the next dawn. The skull has AC 13 and 5 hit points. If destroyed while active, it releases a burst of necromantic energy. Each creature within 5 feet of the skull must succeed on a DC 11 Wisdom saving throw or be frightened until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "scrimshaw-comb", - "fields": { - "name": "Scrimshaw Comb", - "desc": "Aside from being carved from bone, this comb is a beautiful example of functional art. It has 3 charges. As an action, you can expend a charge to cast invisibility. Unlike the standard version of this spell, you are invisible only to undead creatures. However, you can attack creatures who are not undead (and thus unaffected by the spell) without ending the effect. Casting a spell breaks the effect as normal. The comb regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "scrimshaw-parrot", - "fields": { - "name": "Scrimshaw Parrot", - "desc": "This parrot is carved from bits of whalebone and decorated with bright feathers and tiny jewels. You can use an action to affix the parrot to your shoulder or arm. While the parrot is affixed, you gain the following benefits: - You have advantage on Wisdom (Perception) checks that rely on sight.\n- You can use an action to cast the comprehend languages spell from it at will.\n- You can use an action to speak the command word and activate the parrot. It records up to 2 minutes of sounds within 30 feet of it. You can touch the parrot at any time (no action required), stopping the recording. Commanding the parrot to record new sounds overwrites the previous recording. You can use a bonus action to speak a different command word, and the parrot repeats the sounds it heard. Effects that limit or block sound, such as a closed door or the silence spell, similarly limit or block the sounds the parrot records.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "scroll-of-fabrication", - "fields": { - "name": "Scroll of Fabrication", - "desc": "You can draw a picture of any object that is Large or smaller on the face of this blank scroll. When the drawing is complete, it becomes a real, nonmagical, three-dimensional object. Thus, a drawing of a backpack becomes an actual backpack you can use to store and carry items. Any object created by the scroll can be destroyed by the dispel magic spell, by taking it into the area of an antimagic field, or by similar circumstances. Nothing created by the scroll can have a value greater than 25 gp. If you draw an object of greater value, such as a diamond, the object appears authentic, but close inspection reveals it to be made from glass, paste, bone or some other common or worthless material. The object remains for 24 hours or until you dismiss it as a bonus action. The scroll can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "scroll-of-treasure-finding", - "fields": { - "name": "Scroll of Treasure Finding", - "desc": "Each scroll of treasure finding works for a specific type of treasure. You can use an action to read the scroll and sense whether that type of treasure is present within 1 mile of you for 1 hour. This scroll reveals the treasure's general direction, but not its specific location or amount. The GM chooses the type of treasure or determines it by rolling a d100 and consulting the following table. | dice: 1d% | Treasure Type |\n| ----------- | ------------- |\n| 01-10 | Copper |\n| 11-20 | Silver |\n| 21-30 | Electrum |\n| 31-40 | Gold |\n| 41-50 | Platinum |\n| 51-75 | Gemstone |\n| 76-80 | Art objects |\n| 81-00 | Magic items |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "scrolls-of-correspondence", - "fields": { - "name": "Scrolls of Correspondence", - "desc": "These vellum scrolls always come in pairs. Anything written on one scroll also appears on the matching scroll, as long as they are both on the same plane of existence. Each scroll can hold up to 75 words at a time. While writing on one scroll, you are aware that the words are appearing on a paired scroll, and you know if no creature bears the paired scroll. The scrolls don't translate words written on them, and the reader and writer must be able to read and write the same language to understanding the writing on the scrolls. While holding one of the scrolls, you can use an action to tap it three times with a quill and speak a command word, causing both scrolls to go blank. If one of the scrolls in the pair is destroyed, the other scroll becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "sea-witchs-blade", - "fields": { - "name": "Sea Witch's Blade", - "desc": "This slim, slightly curved blade has a ghostly sheen and a wickedly sharp edge. You can use a bonus action to speak this magic sword's command word (“memory”) and cause the air around the blade to shimmer with a pale, violet glow. This glow sheds bright light in a 20-foot radius and dim light for an additional 20 feet. While the sword is glowing, it deals an extra 2d6 psychic damage to any target it hits. The glow lasts until you use a bonus action to speak the command word again or until you drop or sheathe the sword. When a creature takes psychic damage from the sword, you can choose to have the creature make a DC 15 Wisdom saving throw. On a failure, you take 2d6 psychic damage, and the creature is stunned until the end of its next turn. Once used, this feature of the sword shouldn't be used again until the next dawn. Each time it is used before then, the psychic damage you take increases by 2d6.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "searing-whip", - "fields": { - "name": "Searing Whip", - "desc": "Inspired by the searing breath weapon of a light drake (see Tome of Beasts 2), this whip seems to have filaments of light interwoven within its strands. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with this weapon, the creature takes an extra 1d4 radiant damage. When you roll a 20 on an attack roll made with this weapon, the target is blinded until the end of its next turn. The whip has 3 charges, and it regains 1d3 expended charges daily at dawn or when exposed to a daylight spell for 1 minute. While wielding the whip, you can use an action to expend 1 of its charges to transform the whip into a searing beam of light. Choose one creature you can see within 30 feet of you and make one attack roll with this whip against that creature. If the attack hits, that creature and each creature in a line that is 5 feet wide between you and the target takes damage as if hit by this whip. All of this damage is radiant. If the target is undead, you have advantage on the attack roll.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "second-wind", - "fields": { - "name": "Second Wind", - "desc": "This plain, copper band holds a clear, spherical crystal. When you run out of breath or are choking, you can use a reaction to activate the ring. The crystal shatters and air fills your lungs, allowing you to continue to hold your breath for a number of minutes equal to 1 + your Constitution modifier (minimum 30 seconds). A shattered crystal magically reforms at the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "seelie-staff", - "fields": { - "name": "Seelie Staff", - "desc": "This white ash staff is decorated with gold and tipped with an uncut crystal of blue quartz. This staff can be wielded as a magic quarterstaff. While holding the staff, you have advantage on Charisma checks made to influence or interact socially with fey creatures. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a shower of fragrant flower petals, which blow away in a sudden wind. Rebuke Fey. When you hit a fey creature with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 radiant damage to the target. If the fey has an evil alignment, the extra damage increases to 4d6, and the target must succeed on a DC 15 Wisdom saving throw or be frightened of you until the start of your next turn. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), conjure woodland beings (4 charges), disguise self (1 charge), pass without trace (2 charges), or tree stride (5 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "selkets-bracer", - "fields": { - "name": "Selket's Bracer", - "desc": "This bronze bracer is crafted in the shape of a scorpion, its legs curled around your wrist, tail raised and ready to strike. While wearing this bracer, you are immune to the poisoned condition. The bracer has 4 charges and regains 1d4 charges daily at dawn. You can expend 1 charge as a bonus action to gain tremorsense out to a range of 30 feet for 1 minute. In addition, you can expend 2 charges as a bonus action to coat a weapon you touch with venom. The poison remains for 1 minute or until an attack using the weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or be poisoned until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "seneschals-gloves", - "fields": { - "name": "Seneschal's Gloves", - "desc": "These white gloves have elegant tailoring and size themselves perfectly to fit your hands. The gloves must be attuned to a specific, habitable place with walls, a roof, and doors before you can attune to them. To attune the gloves to a location, you must leave the gloves in the location for 24 hours. Once the gloves are attuned to a location, you can attune to them. While you wear the gloves, you can unlock any nonmagical lock within the attuned location by touching the lock, and any mundane portal you open in the location while wearing these gloves opens silently. As an action, you can snap your fingers and every nonmagical portal within 30 feet of you immediately closes and locks (if possible) as long as it is unobstructed. (Obstructed portals remain open.) Once used, this property of the gloves can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "sentinel-portrait", - "fields": { - "name": "Sentinel Portrait", - "desc": "This painting appears to be a well-rendered piece of scenery, devoid of subjects. You can spend 5 feet of movement to step into the painting. The painting then appears to be a portrait of you, against whatever background was already present. While in the painting, you are immobile unless you use a bonus action to exit the painting. Your senses still function, and you can use them as if you were in the portrait's space. You remain unharmed if the painting is damaged, but if it is destroyed, you are immediately shunted into the nearest unoccupied space.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "serpent-staff", - "fields": { - "name": "Serpent Staff", - "desc": "Fashioned from twisted ash wood, this staff 's head is carved in the likeness of a serpent preparing to strike. You have resistance to poison damage while you hold this staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the carved snake head twists and magically consumes the rest of the staff, destroying it. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: cloudkill (5 charges), detect poison and disease (1 charge), poisoned volley* (2 charges), or protection from poison (2 charges). You can also use an action to cast the poison spray spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Serpent Form. While holding the staff, you can use an action cast polymorph on yourself, transforming into a serpent or snake that has a challenge rating of 2 or lower. While you are in the form of a serpent, you retain your Intelligence, Wisdom, and Charisma scores. You can remain in serpent form for up to 1 minute, and you can revert to your normal form as an action. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "serpentine-bracers", - "fields": { - "name": "Serpentine Bracers", - "desc": "These bracers are a pair of golden snakes with ruby eyes, which coil around your wrist and forearm. While wearing both bracers, you gain a +1 bonus to AC if you are wearing no armor and using no shield. You can use an action to speak the bracers' command word and drop them on the ground in two unoccupied spaces within 10 feet of you. The bracers become two constrictor snakes under your control and act on their own initiative counts. By using a bonus action to speak the command word again, you return a bracer to its normal form in a space formerly occupied by the snake. On your turn, you can mentally command each snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snakes take and where they move during their next turns, or you can issue them a general command, such as attack your enemies or guard a location. If a snake is reduced to 0 hit points, it dies, reverts to its bracer form, and can't be commanded to become a snake again until 2 days have passed. If a snake reverts to bracer form before losing all its hit points, it regains all of them and can't be commanded to become a snake again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "serpents-scales", - "fields": { - "name": "Serpent's Scales", - "desc": "While wearing this armor made from the skin of a giant snake, you gain a +1 bonus to AC, and you have resistance to poison damage. While wearing the armor, you can use an action to cast polymorph on yourself, transforming into a giant poisonous snake. While you are in the form of a snake, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "serpents-tooth", - "fields": { - "name": "Serpent's Tooth", - "desc": "When you hit with an attack using this magic spear, the target takes an extra 1d6 poison damage. In addition, while you hold the spear, you have advantage on Dexterity (Acrobatics) checks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "shadow-tome", - "fields": { - "name": "Shadow Tome", - "desc": "This unassuming book possesses powerful illusory magics. When you write on its pages while attuned to it, you can choose for the contents to appear to be something else entirely. A shadow tome used as a spellbook could be made to look like a cookbook, for example. To read the true text, you must speak a command word. A second speaking of the word hides the true text once more. A true seeing spell can see past the shadow tome’s magic and reveals the true text to the reader. Most shadow tomes already contain text, and it is rare to find one filled with blank pages. When you first attune to the book, you can choose to keep or remove the book’s previous contents.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "shadowhounds-muzzle", - "fields": { - "name": "Shadowhound's Muzzle", - "desc": "This black leather muzzle seems to absorb light. As an action, you can place this muzzle around the snout of a grappled, unconscious, or willing canine with an Intelligence of 3 or lower, such as a mastiff or wolf. The canine transforms into a shadowy version of itself for 1 hour. It uses the statistics of a shadow, except it retains its size. It has its own turns and acts on its own initiative. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to it, it defends itself from hostile creatures, but otherwise takes no actions. If the shadow canine is reduced to 0 hit points, the canine reverts to its original form, and the muzzle is destroyed. At the end of the duration or if you remove the muzzle (by stroking the canine's snout), the canine reverts to its original form, and the muzzle remains intact. If you become unattuned to this item while the muzzle is on a canine, its transformation becomes permanent, and the creature becomes independent with a will of its own. Once used, the muzzle can't be used to transform a canine again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "shark-tooth-crown", - "fields": { - "name": "Shark Tooth Crown", - "desc": "Shark's teeth of varying sizes adorn this simple leather headband. The teeth pile one atop the other in a jumble of sharp points and flat sides. Three particularly large teeth are stained with crimson dye. The teeth move slightly of their own accord when you are within 1 mile of a large body of saltwater. The effect is one of snapping and clacking, producing a sound not unlike a crab's claw. While wearing this headband, you have advantage on Wisdom (Survival) checks to find your way when in a large body of saltwater or pilot a vessel on a large body of saltwater. In addition, you can use a bonus action to cast the command spell (save DC 15) from the crown. If the target is a beast with an Intelligence of 3 or lower that can breathe water, it automatically fails the saving throw. The headband can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "sharkskin-vest", - "fields": { - "name": "Sharkskin Vest", - "desc": "While wearing this armor, you gain a +1 bonus to AC, and you have advantage on Strength (Athletics) checks made to swim. While wearing this armor underwater, you can use an action to cast polymorph on yourself, transforming into a reef shark. While you are in the form of the reef shark, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "sheeshah-of-revelations", - "fields": { - "name": "Sheeshah of Revelations", - "desc": "This finely crafted water pipe is made from silver and glass. Its vase is etched with arcane symbols. When you spend 1 minute using the sheeshah to smoke normal or flavored tobacco, you enter a dreamlike state and are granted a cryptic or surreal vision giving you insight into your current quest or a significant event in your near future. This effect works like the divination spell. Once used, you can't use the sheeshah in this way again until 7 days have passed or until the events hinted at in your vision have come to pass, whichever happens first.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "shepherds-flail", - "fields": { - "name": "Shepherd's Flail", - "desc": "The handle of this simple flail is made of smooth lotus wood. The three threshers are made of carved and painted wooden beads. You gain a + 1 bonus to attack and damage rolls made with this magic weapon. True Authority (Requires Attunement). You must be attuned to a crook of the flock (see page 72) to attune to this weapon. The attunement ends if you are no longer attuned to the crook. While you are attuned to this weapon and holding it, your Charisma score increases by 4 and can exceed 20, but not 30. When you hit a beast with this weapon, the beast takes an extra 3d6 bludgeoning damage. For the purpose of this weapon, “beast” refers to any creature with the beast type. The flail also has 5 charges. When you reduce a humanoid to 0 hit points with an attack from this weapon, you can expend 1 charge. If you do so, the humanoid stabilizes, regains 1 hit point, and is charmed by you for 24 hours. While charmed in this way, the humanoid regards you as its trusted leader, but it otherwise retains its statistics and regains hit points as normal. If harmed by you or your companions, or commanded to do something contrary to its nature, the target ceases to be charmed in this way. The flail regains 1d4 + 1 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "shield-of-gnawing", - "fields": { - "name": "Shield of Gnawing", - "desc": "The wooden rim of this battered oak shield is covered in bite marks. While holding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. In addition, you can use the Shove action as a bonus action while raging.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "shield-of-missile-reversal", - "fields": { - "name": "Shield of Missile Reversal", - "desc": "While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. When you would be struck by a ranged attack, you can use a reaction to cause the outer surface of the shield to emit a flash of magical energy, sending the missile hurtling back at your attacker. Make a ranged weapon attack roll against your attacker using the attacker's bonuses on the roll. If the attack hits, roll damage as normal, using the attacker's bonuses.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "shield-of-the-fallen", - "fields": { - "name": "Shield of the Fallen", - "desc": "Your allies can use this shield to move you when you aren't capable of moving. If you are paralyzed, petrified, or unconscious, and a creature lays you on this shield, the shield rises up under you, bearing you and anything you currently wear or carry. The shield then follows the creature that laid you on the shield for up to 1 hour before gently lowering to the ground. This property otherwise works like the floating disk spell. Once used, the shield can't be used this way again for 1d12 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "shifting-shirt", - "fields": { - "name": "Shifting Shirt", - "desc": "This nondescript, smock-like garment changes its appearance on command. While wearing this shirt, you can use a bonus action to speak the shirt's command word and cause it to assume the appearance of a different set of clothing. You decide what it looks like, including color, style, and accessories—from filthy beggar's clothes to glittering court attire. The illusory appearance lasts until you use this property again or remove the shirt.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "shimmer-ring", - "fields": { - "name": "Shimmer Ring", - "desc": "This ring is crafted of silver with an inlay of mother-of-pearl. While wearing the ring, you can use an action to speak a command word and cause the ring to shed white and sparkling bright light in a 20-foot radius and dim light for an additional 20 feet. The light lasts until you use a bonus action to repeat the command word. The ring has 6 charges for the following properties. It regains 1d6 charges daily at dawn. Bestow Shimmer. While wearing the ring, you can use a bonus action to expend 1 of its charges to charge a weapon you wield with silvery energy until the start of your next turn. When you hit with an attack using the charged weapon, the target takes an extra 1d6 radiant damage. Shimmering Aura. While wearing the ring, you can use an action to expend 1 of its charges to surround yourself with a silvery, shimmering aura of light for 1 minute. This bright light extends from you in a 5-foot radius and is sunlight. While you are surrounded in this light, you have resistance to radiant damage. Shimmering Bolt. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a bolt of silvery light and makes its attack roll with a +7 bonus. On a hit, the target takes 2d6 radiant damage for each charge you expend.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "shoes-of-the-shingled-canopy", - "fields": { - "name": "Shoes of the Shingled Canopy", - "desc": "These well-made, black leather shoes have brass buckles shaped like chimneys. While wearing the shoes, you have proficiency in the Acrobatics skill. In addition, while falling, you can use a reaction to cast the feather fall spell by holding your nose. The shoes can't be used this way again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "shortbow-of-accuracy", - "fields": { - "name": "Shortbow of Accuracy", - "desc": "The normal range of this bow is doubled, but its long range remains the same.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "shortsword-of-fallen-saints", - "fields": { - "name": "Shortsword of Fallen Saints", - "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "shrutinandan-sitar", - "fields": { - "name": "Shrutinandan Sitar", - "desc": "An exquisite masterpiece of craftsmanship, this instrument is named for a prestigious musical academy. You must be proficient with stringed instruments to use this instrument. A creature that plays the instrument without being proficient with stringed instruments must succeed on a DC 17 Wisdom saving throw or take 2d6 psychic damage. The exquisite sounds of this sitar are known to weaken the power of demons. Each creature that can hear you playing this sitar has advantage on saving throws against the spells and special abilities of demons. Spells. You can use an action to play the sitar and cast one of the following spells from it, using your spell save DC and spellcasting ability: create food and water, fly, insect plague, invisibility, levitate, protection from evil and good, or reincarnate. Once the sitar has been used to cast a spell, you can’t use it to cast that spell again until the next dawn. Summon. If you spend 1 minute playing the sitar, you can summon animals to fight by your side. This works like the conjure animals spell, except you can summon only 1 elephant, 1d2 tigers, or 2d4 wolves.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "sickle-of-thorns", - "fields": { - "name": "Sickle of Thorns", - "desc": "You gain a +1 bonus to attack and damage rolls made with this weapon. As an action, you can swing the sickle to cut nonmagical vegetation up to 60 feet away from you. Each cut is a separate action with one action equaling one swing of your arm. Thus, you can lead a party through a jungle or briar thicket at a normal pace, simply swinging the sickle back and forth ahead of you to clear the path. It can't be used to cut trunks of saplings larger than 1 inch in diameter. It also can't cut through unliving wood (such as a door or wall). When you hit a plant creature with a melee attack with this weapon, that target takes an extra 1d6 slashing damage. This weapon can make very precise cuts, such as to cut fruit or flowers high up in a tree without damaging the tree.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "siege-arrow", - "fields": { - "name": "Siege Arrow", - "desc": "This magic arrow's tip is enchanted to soften stone and warp wood. When this arrow hits an object or structure, it deals double damage then becomes a nonmagical arrow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "signaling-ammunition", - "fields": { - "name": "Signaling Ammunition", - "desc": "This magic ammunition creates a trail of light behind it as it flies through the air. If the ammunition flies through the air and doesn't hit a creature, it releases a burst of light that can be seen for up to 1 mile. If the ammunition hits a creature, the creature must succeed on a DC 13 Dexterity saving throw or be outlined in golden light until the end of its next turn. While the creature is outlined in light, it can't benefit from being invisible and any attack against it has advantage if the attacker can see the outlined creature.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "signaling-compass", - "fields": { - "name": "Signaling Compass", - "desc": "The exterior of this clamshell metal case features a polished, mirror-like surface on one side and an ornate filigree on the other. Inside is a magnetic compass. While the case is closed, you can use an action to speak the command word and project a harmless beam of light up to 1 mile. As an action while holding the compass, you can flash a concentrated beam of light at a creature you can see within 60 feet of you. The target must succeed on a DC 13 Constitution saving throw or be blinded for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The compass can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "signet-of-the-magister", - "fields": { - "name": "Signet of the Magister", - "desc": "This heavy, gold ring is set with a round piece of carnelian, which is engraved with the symbol of an eagle perched upon a crown. While wearing the ring, you have advantage on saving throws against enchantment spells and effects. You can use an action to touch the ring to a creature—requiring a melee attack roll unless the creature is willing or incapacitated—and magically brand it with the ring’s crest. When a branded creature harms you, it takes 2d6 psychic damage and must succeed on a DC 15 Wisdom saving throw or be stunned until the end of its next turn. On a success, a creature is immune to this property of the ring for the next 24 hours, but the brand remains until removed. You can remove the brand as an action. The remove curse spell also removes the brand. Once you brand a creature, you can’t brand another creature until the next dawn. Instruments of Law. If you are also attuned to and wearing a Justicar’s mask (see page 149), you can cast the locate creature to detect a branded creature at will from the ring. If you are also attuned to and carrying a rod of the disciplinarian (see page 83), the psychic damage from the brand increases to 3d6 and the save DC increases to 16.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "silver-skeleton-key", - "fields": { - "name": "Silver Skeleton Key", - "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "silver-string", - "fields": { - "name": "Silver String", - "desc": "These silver wires magically adjust to fit any stringed instrument, making its sound richer and more melodious. You have advantage on Charisma (Performance) checks made when playing the instrument.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "silvered-oar", - "fields": { - "name": "Silvered Oar", - "desc": "This is a 6-foot-long birch wood oar with leaves and branches carved into its length. The grooves of the carvings are filled with silver, which glows softly when it is outdoors at night. You can activate the oar as an action to have it row a boat unassisted, obeying your mental commands. You can instruct it to row to a destination familiar to you, allowing you to rest while it performs its task. While rowing, it avoids contact with objects on the boat, but it can be grabbed and stopped by anyone at any time. The oar can move a total weight of 2,000 pounds at a speed of 3 miles per hour. It floats back to your hand if the weight of the craft, crew, and carried goods exceeds that weight.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "skalds-harp", - "fields": { - "name": "Skald's Harp", - "desc": "This ornate harp is fashioned from maple and engraved with heroic scenes of warriors battling trolls and dragons inlaid in bone. The harp is strung with fine silver wire and produces a sharp yet sweet sound. You must be proficient with stringed instruments to use this harp. When you play the harp, its music enhances some of your bard class features. Song of Rest. When you play this harp as part of your Song of Rest performance, each creature that spends one or more Hit Dice during the short rest gains 10 temporary hit points at the end of the short rest. The temporary hit points last for 1 hour. Countercharm. When you play this harp as part of your Countercharm performance, you and any friendly creatures within 30 feet of you also have resistance to thunder damage and have advantage on saving throws against being paralyzed. When this property has been used for a total of 10 minutes, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "skipstone", - "fields": { - "name": "Skipstone", - "desc": "This small bark-colored stone measures 3/4 of an inch in diameter and weighs 1 ounce. Typically, 1d4 + 1 skipstones are found together. You can use an action to throw the stone up to 60 feet. The stone crumbles to dust on impact and is destroyed. Each creature within a 5-foot radius of where the stone landed must succeed on a DC 15 Constitution saving throw or be thrown forward in time until the start of your next turn. Each creature disappears, during which time it can't act and is protected from all effects. At the start of your next turn, each creature reappears in the space it previously occupied or the nearest unoccupied space, and it is unaware that any time has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "skullcap-of-deep-wisdom", - "fields": { - "name": "Skullcap of Deep Wisdom", - "desc": "TThis scholar’s cap is covered in bright stitched runes, and the interior is rough, like bark or sharkskin. This cap has 9 charges. It regains 1d8 + 1 expended charges daily at midnight. While wearing it, you can use an action and expend 1 or more of its charges to cast one of the following spells, using your spell save DC or save DC 15, whichever is higher: destructive resonance (2 charges), nether weapon (4 charges), protection from the void (1 charge), or void strike (3 charges). These spells are Void magic spells, which can be found in Deep Magic for 5th Edition. At the GM’s discretion, these spells can be replaced with other spells of similar levels and similarly related to darkness, destruction, or the Void. Dangers of the Void. The first time you cast a spell from the cap each day, your eyes shine with a sickly green light until you finish a long rest. If you spend at least 3 charges from the cap, a trickle of blood also seeps from beneath the cap until you finish a long rest. In addition, each time you cast a spell from the cap, you must succeed on a DC 12 Intelligence saving throw or your Intelligence is reduced by 2 until you finish a long rest. This DC increases by 1 for each charge you spent to cast the spell. Void Calls to Void. When you cast a spell from the cap while within 1 mile of a creature that understands Void Speech, the creature immediately knows your name, location, and general appearance.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "slatelight-ring", - "fields": { - "name": "Slatelight Ring", - "desc": "This decorated thick gold band is adorned with a single polished piece of slate. While wearing this ring, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing this ring increases its range by 60 feet. In addition, you can use an action to cast the faerie fire spell (DC 15) from it. The ring can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "sleep-pellet", - "fields": { - "name": "Sleep Pellet", - "desc": "This small brass pellet measures 1/2 of an inch in diameter. Typically, 1d6 + 4 sleep pellets are found together. You can use the pellet as a sling bullet and shoot it at a creature using a sling. On a hit, the pellet is destroyed, and the target must succeed on a DC 13 Constitution saving throw or fall unconscious for 1 minute. Alternatively, you can use an action to swallow the pellet harmlessly. Once before 1 minute has passed, you can use an action to exhale a cloud of sleeping gas in a 15-foot cone. Each creature in the area must succeed on a DC 13 Constitution saving throw or fall unconscious for 1 minute. An unconscious creature awakens if it takes damage or if another creature uses an action to wake it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "slick-cuirass", - "fields": { - "name": "Slick Cuirass", - "desc": "This suit of leather armor has a shiny, greasy look to it. While wearing the armor, you have advantage on ability checks and saving throws made to escape a grapple. In addition, while squeezing through a smaller space, you don't have disadvantage on attack rolls and Dexterity saving throws.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "slimeblade-greatsword", - "fields": { - "name": "Slimeblade Greatsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "slimeblade-longsword", - "fields": { - "name": "Slimeblade Longsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "slimeblade-rapier", - "fields": { - "name": "Slimeblade Rapier", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "slimeblade-scimitar", - "fields": { - "name": "Slimeblade Scimitar", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "slimeblade-shortsword", - "fields": { - "name": "Slimeblade Shortsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "sling-stone-of-screeching", - "fields": { - "name": "Sling Stone of Screeching", - "desc": "This sling stone is carved with an open mouth that screams in hellish torment when hurled with a sling. Typically, 1d4 + 1 sling stones of screeching are found together. When you fire the stone from a sling, it changes into a screaming bolt, forming a line 5 feet wide that extends out from you to a target within 30 feet. Each creature in the line excluding you and the target must make a DC 13 Constitution saving throw. On a failure, a creature takes 2d8 thunder damage and is knocked prone. On a success, a creature takes half the damage and isn't knocked prone. Make a ranged weapon attack against the target. On a hit, the target takes damage from the sling stone plus 3d8 thunder damage and is knocked prone. Once a sling stone of screeching has dealt its damage to a creature, it becomes a nonmagical sling stone.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "slippers-of-the-cat", - "fields": { - "name": "Slippers of the Cat", - "desc": "While you wear these fine, black cloth slippers, you have advantage on Dexterity (Acrobatics) checks to keep your balance. When you fall while wearing these slippers, you land on your feet, and if you succeed on a DC 13 Dexterity saving throw, you take only half the falling damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "slipshod-hammer", - "fields": { - "name": "Slipshod Hammer", - "desc": "This large smith's hammer appears well-used and rough in make and maintenance. If you use this hammer as part of a set of smith's tools, you can repair metal items in half the time, but the appearance of the item is always sloppy and haphazard. When you roll a 20 on an attack roll made with this magic weapon against a target wearing metal armor, the target's armor is partly damaged and takes a permanent and cumulative –2 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "sloughide-bombard", - "fields": { - "name": "Sloughide Bombard", - "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "smoking-plate-of-heithmir", - "fields": { - "name": "Smoking Plate of Heithmir", - "desc": "This armor is soot-colored plate with grim dwarf visages on the pauldrons. The pauldrons emit curling smoke and are warm to the touch. You gain a +3 bonus to AC and are resistant to cold damage while wearing this armor. In addition, when you are struck by an attack while wearing this armor, you can use a reaction to fill a 30-foot cone in front of you with dense smoke. The smoke spreads around corners, and its area is heavily obscured. Each creature in the smoke when it appears and each creature that ends its turn in the smoke must succeed on a DC 17 Constitution saving throw or be poisoned for 1 minute. A wind of at least 20 miles per hour disperses the smoke. Otherwise, the smoke lasts for 5 minutes. Once used, this property of the armor can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "smugglers-bag", - "fields": { - "name": "Smuggler's Bag", - "desc": "This leather-bottomed, draw-string canvas bag appears to be a sturdy version of a common sack. If you use an action to speak the command word while holding the bag, all the contents within shift into an extradimensional space, leaving the bag empty. The bag can then be filled with other items. If you speak the command word again, the bag's current contents transfer into the extradimensional space, and the items in the extradimensional space transfer to the bag. The extradimensional space and the bag itself can each hold up to 1 cubic foot of items or 30 pounds of gear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "smugglers-coat", - "fields": { - "name": "Smuggler's Coat", - "desc": "When you attune yourself to this coat, it conforms to you in a color and style of your choice. It has no visible pockets, but they appear if you place your hands against the side of the coat and expect pockets. Once your hand is withdrawn, the pockets vanish and take anything placed in them to an extradimensional space. The coat can hold up to 40 pounds of material in up to 10 different extradimensional pockets. Nothing can be placed inside the coat that won't fit in a pocket. Retrieving an item from a pocket requires you to use an action. When you reach into the coat for a specific item, the correct pocket always appears with the desired item magically on top. As a bonus action, you can force the pockets to become visible on the coat. While you maintain concentration, the coat displays its four outer pockets, two on each side, four inner pockets, and two pockets on each sleeve. While the pockets are visible, any creature you allow can store or retrieve an item as an action. If the coat is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. Placing the coat inside an extradimensional space, such as a bag of holding, instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "snake-basket", - "fields": { - "name": "Snake Basket", - "desc": "The bowl of this simple, woven basket has hig-sloped sides, making it almost spherical. A matching woven lid sits on top of it, and leather straps secure the lid through loops on the base. The basket can hold up to 10 pounds. As an action, you can speak the command word and remove the lid to summon a swarm of poisonous snakes. You can't summon the snakes if items are in the basket. The snakes return to the basket, vanishing, after 1 minute or when the swarm is reduced to 0 hit points. If the basket is unavailable or otherwise destroyed, the snakes instead dissipate into a fine sand. The swarm is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the swarm moves and what action it takes on its next turn, or give it general orders, such as to attack your enemies. In the absence of such orders, the swarm acts in a fashion appropriate to its nature. Once the basket has been used to summon a swarm of poisonous snakes, it can't be used in this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "soldras-staff", - "fields": { - "name": "Soldra's Staff", - "desc": "Crafted by a skilled wizard and meant to be a spellcaster's last defense, this staff is 5 feet long, made of yew wood that curves at its top, is iron shod at its mid-section, and capped with a silver dragon's claw that holds a lustrous, though rough and uneven, black pearl. When you make an attack with this staff, it howls and whistles hauntingly like the wind. When you cast a spell from this staff, it chirps like insects on a hot summer night. This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. It has 3 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: faerie fire (1 charge) or gust of wind (2 charges). The staff regains 1d3 expended charges daily at dawn. Once daily, it can regain 1 expended charge by exposing the staff 's pearl to moonlight for 1 minute.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "song-saddle-of-the-khan", - "fields": { - "name": "Song-Saddle of the Khan", - "desc": "Made from enchanted leather and decorated with songs lyrics written in calligraphy, this well-crafted saddle is enchanted with the impossible speed of a great horseman. While this saddle is attached to a horse, that horse's speed is increased by 10 feet. In addition, the horse can Disengage as a bonus action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "soul-bond-chalice", - "fields": { - "name": "Soul Bond Chalice", - "desc": "The broad, shallow bowl of this silver chalice rests in the outstretched wings of the raven figure that serves as the chalice's stem. The raven's talons, perched on a branch, serve as the chalice's base. A pair of interlocking gold rings adorn the sides of the bowl. As a 1-minute ritual, you and another creature that isn't a construct or undead and that has an Intelligence of 6 or higher can fill the chalice with wine and mix in three drops of blood from each of you. You and the other participant can then drink from the chalice, mingling your spirits and creating a magical connection between you. This connection is unaffected by distance, though it ceases to function if you aren't on the same plane of existence. The bond lasts until one or both of you end it of your own free will (no action required), one or both of you use the chalice to bond with another creature, or one of you dies. You and your bonded partner each gain the following benefits: - You are proficient in each saving throw that your bonded partner is proficient in.\n- If you are within 5 feet of your bonded partner and you fail a saving throw, your bonded partner can make the saving throw as well. If your bonded partner succeeds, you can choose to succeed on the saving throw that you failed.\n- You can use a bonus action to concentrate on the magical bond between you to determine your bonded partner's status. You become aware of the direction and distance to your bonded partner, whether they are unharmed or wounded, any conditions that may be currently affecting them, and whether or not they are afflicted with an addiction, curse, or disease. If you can see your bonded partner, you automatically know this information just by looking at them.\n- If your bonded partner is wounded, you can use a bonus action to take 4d8 slashing damage, healing your bonded partner for the same amount. If your bonded partner is reduced to 0 hit points, you can do this as a reaction.\n- If you are under the effects of a spell that has a duration but doesn't require concentration, you can use an action to touch your bonded partner to share the effects of the spell with them, splitting the remaining duration (rounded down) between you. For example, if you are affected by the mage armor spell and it has 4 hours remaining, you can use an action to touch your bonded partner to give them the benefits of the mage armor spell, reducing the duration to 2 hours on each of you.\n- If your bonded partner dies, you must make a DC 15 Constitution saving throw. On a failure, you drop to 0 hit points. On a success, you are stunned until the end of your next turn by the shock of the bond suddenly being broken. Once the chalice has been used to bond two creatures, it can't be used again until 7 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "soul-jug", - "fields": { - "name": "Soul Jug", - "desc": "If you unstopper the jug, your soul enters it. This works like the magic jar spell, except it has a duration of 9 hours and the jug acts as the gem. The jug must remain unstoppered for you to move your soul to a nearby body, back to the jug, or back to your own body. Possessing a target is an action, and your target can foil the attempt by succeeding on a DC 17 Charisma saving throw. Only one soul can be in the jug at a time. If a soul is in the jug when the duration ends, the jug shatters.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "spear-of-the-north", - "fields": { - "name": "Spear of the North", - "desc": "This spear has an ivory haft, and tiny snowflakes occasionally fall from its tip. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit with an attack using this magic spear, the target takes an extra 1d6 cold damage. You can use an action to transform the spear into a pair of snow skis. While wearing the snow skis, you have a walking speed of 40 feet when you walk across snow or ice, and you can walk across icy surfaces without needing to make an ability check. You can use a bonus action to transform the skis back into the spear. While the spear is transformed into a pair of skis, you can't make attacks with it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "spear-of-the-stilled-heart", - "fields": { - "name": "Spear of the Stilled Heart", - "desc": "This rowan wood spear has a thick knot in the center of the haft that uncannily resembles a petrified human heart. When you hit with an attack using this magic spear, the target takes an extra 1d6 necrotic damage. The spear has 3 charges, and it regains all expended charges daily at dusk. When you hit a creature with an attack using it, you can expend 1 charge to deal an extra 3d6 necrotic damage to the target. You regain hit points equal to the necrotic damage dealt.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "spear-of-the-western-whale", - "fields": { - "name": "Spear of the Western Whale", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. Fashioned in the style of a whaling spear, this long, barbed weapon is made from bone and heavy, yet pliant, ash wood. Its point is lined with decorative engravings of fish, clam shells, and waves. While you carry this spear, you have advantage on any Wisdom (Survival) checks to acquire food via fishing, and you have advantage on all Strength (Athletics) checks to swim. When set on the ground, the spear always spins to point west. When thrown in a westerly direction, the spear deals an extra 2d6 cold damage to the target.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "spearbiter", - "fields": { - "name": "Spearbiter", - "desc": "The front of this shield is fashioned in the shape of a snarling wolf ’s head. Spearbiter (Uncommon). When a creature you can see within 5 feet of you makes a melee weapon attack against you, you can use a reaction to attack the attacker’s weapon, the wolf ’s head animating and snapping its jaws at the weapon. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. If the result is higher than the attacker’s attack roll against you, the attacker’s attack misses you. You can’t use this property of the shield again until the next dawn. Adamantine Spearbiter (Rare). A more powerful version of this shield exists. Its wolf ’s head is fitted with adamantine fangs and appears larger and more menacing. When you use your reaction and animate the wolf ’s head to snap at the attacker’s weapon, you have advantage on the attack roll. In addition, there is no longer a limit to the number of times you can use this property of the shield.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "spectral-blade", - "fields": { - "name": "Spectral Blade", - "desc": "This blade seems to flicker in and out of existence but always strikes true. You gain a +1 bonus to attack and damage rolls made with this magic weapon, and you can choose for its attacks to deal force damage instead of piercing damage. As an action while holding this sword or as a reaction when you deal damage to a creature with it, you can turn incorporeal until the start of your next turn. While incorporeal, you can move through other creatures and objects as if they were difficult terrain. You take 1d10 force damage if you end your turn inside an object.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "spell-disruptor-horn", - "fields": { - "name": "Spell Disruptor Horn", - "desc": "This horn is carved with images of a Spellhound (see Tome of Beasts 2) and invokes the antimagic properties of the hound's howl. You use an action to blow this horn, which emits a high-pitched, multiphonic sound that disrupts all magical effects within 30 feet of you. Any spell of 3rd level or lower in the area ends. For each spell of 4th-level or higher in the area, the horn makes a check with a +3 bonus. The DC equals 10 + the spell's level. On a success, the spell ends. In addition, each spellcaster within 30 feet of you and that can hear the horn must succeed on a DC 15 Constitution saving throw or be stunned until the end of its next turn. Once used, the horn can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "spice-box-of-zest", - "fields": { - "name": "Spice Box of Zest", - "desc": "This small, square wooden box is carved with scenes of life in a busy city. Inside, the box is divided into six compartments, each holding a different magical spice. A small wooden spoon is also stored inside the box for measuring. A spice box of zest contains six spoonfuls of each spice when full. You can add one spoonful of a single spice per person to a meal that you or someone else is cooking. The magic of the spices is nullified if you add two or more spices together. If a creature consumes a meal cooked with a spice, it gains a benefit based on the spice used in the meal. The effects last for 1 hour unless otherwise noted.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "spice-box-spoon", - "fields": { - "name": "Spice Box Spoon", - "desc": "This lacquered wooden spoon carries an entire cupboard within its smooth contours. When you swirl this spoon in any edible mixture, such as a drink, stew, porridge, or other dish, it exudes a flavorful aroma and infuses the mixture. This culinary wonder mimics any imagined variation of simple seasonings, from salt and pepper to aromatic herbs and spice blends. These flavors persist for 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "spider-grenade", - "fields": { - "name": "Spider Grenade", - "desc": "Silver runes decorate the hairy legs and plump abdomen of this fist-sized preserved spider. You can use an action to throw the spider up to 30 feet. It explodes on impact and is destroyed. Each creature within a 20-foot radius of where the spider landed must succeed on a DC 13 Dexterity saving throw or be restrained by sticky webbing. A creature restrained by the webs can use its action to make a DC 13 Strength check. If it succeeds, it is no longer restrained. In addition, the webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire. The webs also naturally unravel after 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "spider-staff", - "fields": { - "name": "Spider Staff", - "desc": "Delicate web-like designs are carved into the wood of this twisted staff, which is often topped with the carved likeness of a spider. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of spiders appears and consumes the staff then vanishes. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: giant insect (4 charges), spider climb (2 charges), or web (2 charges). Spider Swarm. While holding the staff, you can use an action and expend 1 charge to cause a swarm of spiders to appear in a space that you can see within 60 feet of you. The swarm is friendly to you and your companions but otherwise acts on its own. The swarm of spiders remains for 1 minute, until you dismiss it as an action, or until you move more than 100 feet away from it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "splint-of-warding-1", - "fields": { - "name": "Splint of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "splint-of-warding-2", - "fields": { - "name": "Splint of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "splint-of-warding-3", - "fields": { - "name": "Splint of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "splinter-staff", - "fields": { - "name": "Splinter Staff", - "desc": "This roughly made staff has cracked and splintered ends and can be wielded as a magic quarterstaff. When you roll a 20 on an attack roll made with this weapon, you embed a splinter in the target's body, and the pain and discomfort of the splinter is distracting. While the splinter remains embedded, the target has disadvantage on Dexterity, Intelligence, and Wisdom checks, and, if it is concentrating on a spell, it must succeed on a DC 10 Constitution saving throw at the start of each of its turns to maintain concentration on the spell. A creature, including the target, can take its action to remove the splinter by succeeding on a DC 13 Wisdom (Medicine) check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "spyglass-of-summoning", - "fields": { - "name": "Spyglass of Summoning", - "desc": "Arcane runes encircle this polished brass spyglass. You can view creatures and objects as far as 600 feet away through the spyglass, and they are magnified to twice their size. You can magnify your view of a creature or object to up to four times its size by twisting the end of the spyglass.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-binding", - "fields": { - "name": "Staff of Binding", - "desc": "Made from stout oak with steel bands and bits of chain running its entire length, the staff feels oddly heavy. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff constricts in upon itself and is destroyed. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: arcane lock (2 charges), hold monster (5 charges), hold person (2 charges), lock armor* (2 charges), or planar binding (5 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Unbound. While holding the staff, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-camazotz", - "fields": { - "name": "Staff of Camazotz", - "desc": "This staff of petrified wood is topped with a stylized carving of a bat with spread wings, a mouth baring great fangs, and a pair of ruby eyes. It has 10 charges and regains 1d6 + 4 charges daily at dawn. As long as the staff holds at least 1 charge, you can communicate with bats as if you shared a language. Bat and bat-like beasts and monstrosities never attack you unless magically forced to do so or unless you attack them first. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: darkness (2 charges), dominate monster (8 charges), or flame strike (5 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-channeling", - "fields": { - "name": "Staff of Channeling", - "desc": "This plain, wooden staff has 5 charges and regains 1d4 + 1 expended charges daily at dawn. When you cast a spell while holding this staff, you can expend 1 or more of its charges as part of the casting to increase the level of the spell. Expending 1 charge increases the spell's level by 1, expending 3 charges increases the spell's level by 2, and expending 5 charges increases the spell's level by 3. When you increase a spell's level using the staff, the spell casts as if you used a spell slot of a higher level, but you don't expend that higher-level spell slot. You can't use the magic of this staff to increase a spell to a slot level higher than the highest spell level you can cast. For example, if you are a 7th-level wizard, and you cast magic missile, expending a 2nd-level spell slot, you can expend 3 of the staff 's charges to cast the spell as a 4th-level spell, but you can't expend 5 of the staff 's charges to cast the spell as a 5th-level spell since you can't cast 5th-level spells.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-desolation", - "fields": { - "name": "Staff of Desolation", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. When you hit an object or structure with a melee attack using the staff, you deal double damage (triple damage on a critical hit). The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: thunderwave (1 charge), shatter (2 charges), circle of death (6 charges), disintegrate (6 charges), or earthquake (8 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-dissolution", - "fields": { - "name": "Staff of Dissolution", - "desc": "A gray crystal floats in the crook of this twisted staff. The crystal breaks into fragments as it slowly revolves, and those fragments break into smaller pieces then into clouds of dust. In spite of this, the crystal never seems to reduce in size. You have resistance to necrotic damage while you hold this staff. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: blight (4 charges), disintegrate (6 charges), or shatter (2 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-fate", - "fields": { - "name": "Staff of Fate", - "desc": "One half of this staff is crafted of white ash and capped in gold, while the other is ebony and capped in silver. The staff has 10 charges for the following properties. It regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff splits into two halves with a resounding crack and becomes nonmagical. Fortune. While holding the staff, you can use an action to expend 1 of its charges and touch a creature with the gold end of the staff, giving it good fortune. The target can choose to use its good fortune and have advantage on one ability check, attack roll, or saving throw. This effect ends after the target has used the good fortune three times or when 24 hours have passed. Misfortune. While holding the staff, you can use an action to touch a creature with the silver end of the staff. The target must succeed on a DC 15 Wisdom saving throw or have disadvantage on one of the following (your choice): ability checks, attack rolls, or saving throws. If the target fails the saving throw, the staff regains 1 expended charge. This effect lasts until removed by the remove curse spell or until you use an action to expend 1 of its charges and touch the creature with the gold end of the staff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: augury (2 charges), bane (1 charge), bless (1 charge), remove curse (3 charges), or divination (4 charges). You can also use an action to cast the guidance spell from the staff without using any charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-feathers", - "fields": { - "name": "Staff of Feathers", - "desc": "Several eagle feathers line the top of this long, thin staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff explodes into a mass of eagle feathers and is destroyed. Feather Travel. When you are targeted by a ranged attack while holding the staff, you can use a reaction to teleport up to 10 feet to an unoccupied space that you can see. When you do, you briefly transform into a mass of feathers, and the attack misses. Once used, this property can’t be used again until the next dawn. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: conjure animals (2 giant eagles only, 3 charges), fly (3 charges), or gust of wind (2 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-giantkin", - "fields": { - "name": "Staff of Giantkin", - "desc": "This stout, oaken staff is 7 feet long, bound in iron, and topped with a carving of a broad, thick-fingered hand. While holding this magic quarterstaff, your Strength score is 20. This has no effect on you if your Strength is already 20 or higher. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the hand slowly clenches into a fist, and the staff becomes a nonmagical quarterstaff.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-ice-and-fire", - "fields": { - "name": "Staff of Ice and Fire", - "desc": "Made from the branch of a white ash tree, this staff holds a sapphire at one end and a ruby at the other. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: flaming sphere (2 charges), freezing sphere (6 charges), sleet storm (3 charges), or wall of fire (4 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff and its gems crumble into ash and snow and are destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-master-lu-po", - "fields": { - "name": "Staff of Master Lu Po", - "desc": "This plain-looking, wooden staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 12 charges and regains 1d6 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +1 bonus to attack and damage rolls, loses all other properties, and the next time you roll a 20 on an attack roll using the staff, it explodes, dealing an extra 6d6 force damage to the target then is destroyed. On a 20, the staff regains 1d10 + 2 charges. Some of the staff ’s properties require the target to make a saving throw to resist or lessen the property’s effects. The saving throw DC is equal to 8 + your proficiency bonus + your Wisdom modifier. Bamboo in the Rainy Season. While holding the staff, you can use a bonus action to expend 1 charge to grant the staff the reach property until the start of your next turn. Gate to the Hell of Being Roasted Alive. While holding the staff, you can use an action to expend 1 charge to cast the scorching ray spell from it. When you make the spell’s attacks, you use your Wisdom modifier as your spellcasting ability. Iron Whirlwind. While holding the staff, you use an action to expend 2 charges, causing weighted chains to extend from the end of the staff and reducing your speed to 0 until the end of your next turn. As part of the same action, you can make one attack with the staff against each creature within your reach. If you roll a 1 on any attack, you must immediately make an attack roll against yourself as well before resolving any other attacks against opponents. Monkey Steals the Peach. While holding the staff, you can use a bonus action to expend 1 charge to extend sharp, grabbing prongs from the end of the staff. Until the start of your next turn, each time you hit a creature with the staff, the target takes piercing damage instead of the bludgeoning damage normal for the staff, and the target must make a DC 15 Constitution saving throw. On a failure, the target is incapacitated until the end of its next turn as it suffers crippling pain. On a success, the target has disadvantage on its next attack roll. Rebuke the Disobedient Child. When you are hit by a creature you can see within your reach while holding this staff, you can use a reaction to expend 1 charge to make an attack with the staff against the attacker. Seven Vengeful Demons Death Strike. While holding the staff, you can use an action to expend 7 charges and make one attack against a target within 5 feet of you with the staff. If the attack hits, the target takes bludgeoning damage as normal, and it must make a Constitution saving throw, taking 7d8 necrotic damage on a failed save, or half as much damage on a successful one. If the target dies from this damage, the staff ceases to function as anything other than a magic quarterstaff until the next dawn, but it regains all expended charges when its powers return. A humanoid killed by this damage rises at the start of your next turn as a zombie that is permanently under your command, following your verbal orders to the best of its ability. Swamp Hag's Deadly Breath. While holding the staff, you can use an action to expend 2 charges to expel a 15-foot cone of poisonous gas out of the end of the staff. Each creature in the area must make a Constitution saving throw. On a failure, a creature takes 4d6 poison damage and is poisoned for 1 hour. On a success, a creature takes half the damage and isn’t poisoned. Vaulting Leap of the Clouds. If you are holding the staff and it has at least 1 charge, you can cast the jump spell from it as a bonus action at will without using any charges, but you can target only yourself when you do so.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-midnight", - "fields": { - "name": "Staff of Midnight", - "desc": "Fashioned from a single branch of polished ebony, this sturdy staff is topped by a lustrous jet. While holding it and in dim light or darkness, you gain a +1 bonus to AC and saving throws. This staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: circle of death (6 charges), darkness (2 charges), or vampiric touch (3 charges). You can also use an action to cast the chill touch cantrip from the staff without using any charges. The staff regains 1d6 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dark powder and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-minor-curses", - "fields": { - "name": "Staff of Minor Curses", - "desc": "This twisted, wooden staff has 10 charges. While holding it, you can use an action to inflict a minor curse on a creature you can see within 30 feet of you. The target must succeed on a DC 10 Constitution saving throw or be affected by the chosen curse. A minor curse causes a non-debilitating effect or change in the creature, such as an outbreak of boils on one section of the target's skin, intermittent hiccupping, transforming the target's ears into small, donkey-like ears, or similar effects. The curse never interrupts spellcasting and never causes disadvantage on ability checks, attack rolls, or saving throws. The curse lasts for 24 hours or until removed by the remove curse spell or similar magic. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a cloud of noxious gas, and you are targeted with a minor curse of the GM's choice.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-parzelon", - "fields": { - "name": "Staff of Parzelon", - "desc": "This tarnished silver staff is tipped with the unholy visage of a fiendish lion skull carved from labradorite—a likeness of the Arch-Devil Parzelon (see Creature Codex). The staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), dominate person (5 charges), lightning bolt (3 charges), locate creature (4 charges), locate object (2 charges), magic missile (1 charge), scrying (5 charges), or suggestion (2 charges). You can also use an action to cast one of the following spells from the staff without using any charges: comprehend languages, detect evil and good, detect magic, identify, or message. Extract Ageless Knowledge. As an action, you can touch the head of the staff to a corpse. You must form a question in your mind as part of this action. If the corpse has an answer to your question, it reveals the information to you. The answer is always brief—no more than one sentence—and very specific to the framed question. The corpse doesn’t need a mouth to answer; you receive the information telepathically. The corpse knows only what it knew in life, and it is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This property doesn’t return the creature’s soul to its body, only its animating spirit. Thus, the corpse can’t learn new information, doesn’t comprehend anything that has happened since it died, and can’t speculate about future events. Once the staff has been used to ask a corpse 5 questions, it can’t be used to extract knowledge from that same corpse again until 3 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-portals", - "fields": { - "name": "Staff of Portals", - "desc": "This iron-shod wooden staff is heavily worn, and it can be wielded as a quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses all of its magic and becomes a nonmagical quarterstaff. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: arcane lock (2 charges), dimension door (4 charges), knock (2 charges), or passwall (5 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-scrying", - "fields": { - "name": "Staff of Scrying", - "desc": "This is a graceful, highly polished wooden staff crafted from willow. A crystal ball tops the staff, and smooth gold bands twist around its shaft. This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: detect thoughts (2 charges), locate creature (4 charges), locate object (2 charges), scrying (5 charges), or true seeing (6 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a bright flash of light erupts from the crystal ball, and the staff vanishes.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-spores", - "fields": { - "name": "Staff of Spores", - "desc": "Mold and mushrooms coat this gnarled wooden staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff rots into tiny clumps of slimy, organic matter and is destroyed. Mushroom Disguise. While holding the staff, you can use an action to expend 2 charges to cover yourself and anything you are wearing or carrying with a magical illusion that makes you look like a mushroom for up to 1 hour. You can appear to be a mushroom of any color or shape as long as it is no more than one size larger or smaller than you. This illusion ends early if you move or speak. The changes wrought by this effect fail to hold up to physical inspection. For example, if you appear to have a spongy cap in place of your head, someone touching the cap would feel your face or hair instead. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that you are disguised. Speak with Plants. While holding the staff, you can use an action to expend 1 of its charges to cast the speak with plants spell from it. Spore Cloud. While holding the staff, you can use an action to expend 3 charges to release a cloud of spores in a 20-foot radius from you. The spores remain for 1 minute, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. When a creature, other than you, enters the cloud of spores for the first time on a turn or starts its turn there, that creature must succeed on a DC 15 Constitution saving throw or take 1d6 poison damage and become poisoned until the start of its next turn. A wind of at least 10 miles per hour disperses the spores and ends the effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-the-armada", - "fields": { - "name": "Staff of the Armada", - "desc": "This gold-shod staff is constructed out of a piece of masting from a galleon. The staff can be wielded as a magic quarterstaff that grants you a +1 bonus to attack and damage rolls made with it. While you are on board a ship, this bonus increases to +2. The staff has 10 charges and regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses all of its magic and becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: control water (4 charges), fog cloud (1 charge), gust of wind (2 charges), or water walk (3 charges). You can also use an action to cast the ray of frost cantrip from the staff without using any charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-the-artisan", - "fields": { - "name": "Staff of the Artisan", - "desc": "This simple, wooden staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever. Create Object. You can use an action to expend 2 charges to conjure an inanimate object in your hand or on the ground in an unoccupied space you can see within 10 feet of you. The object can be no larger than 3 feet on a side and weigh no more than 10 pounds, and its form must be that of a nonmagical object you have seen. You can’t create items that ordinarily require a high degree of craftsmanship, such as jewelry, weapons, glass, or armor, unless you have proficiency with the type of artisan’s tools used to craft such objects. The object sheds dim light in a 5-foot radius. The object disappears after 1 hour, when you use this property again, or if the object takes or deals any damage. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: animate objects (5 charges), fabricate (4 charges) or floating disk (1 charge). You can also use an action to cast the mending spell from the staff without using any charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-the-cephalopod", - "fields": { - "name": "Staff of the Cephalopod", - "desc": "This ugly staff is fashioned from a piece of gnarled driftwood and is crowned with an octopus carved from brecciated jasper. Its gray and red stone tentacles wrap around the top half of the staff. While holding this staff, you have a swimming speed of 30 feet. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the jasper octopus crumbles to dust, and the staff becomes a nonmagical piece of driftwood. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: black tentacles (4 charges), conjure animals (only beasts that can breathe water, 3 charges), darkness (2 charges), or water breathing (3 charges). Ink Cloud. While holding this staff, you can use an action and expend 1 charge to cause an inky, black cloud to spread out in a 30-foot radius from you. The cloud can form in or out of water. The cloud remains for 10 minutes, making the area heavily obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour or a steady current (if underwater) disperses the cloud and ends the effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-the-four-winds", - "fields": { - "name": "Staff of the Four Winds", - "desc": "Made of gently twisting ash and engraved with spiraling runes, the staff feels strangely lighter than its size would otherwise suggest. This staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: circle of wind* (1 charge), feather fall (1 charge), gust of wind (2 charges), storm god's doom* (3 charges), wind tunnel* (1 charge), wind walk (6 charges), wind wall (3 charges), or wresting wind* (2 charges). You can also use an action to cast the wind lash* spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to breezes, wind, or movement. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles into ashes and is taken away with the breeze.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-the-lantern-bearer", - "fields": { - "name": "Staff of the Lantern Bearer", - "desc": "An iron hook is affixed to the top of this plain, wooden staff. While holding this staff, you can use an action to cast the light spell from it at will, but the light can emanate only from the staff 's hook. If a lantern hangs from the staff 's hook, you gain the following benefits while holding the staff: - You can control the light of the lantern, lighting or extinguishing it as a bonus action. The lantern must still have oil, if it requires oil to produce a flame.\n- The lantern's flame can't be extinguished by wind or water.\n- If you are a spellcaster, you can use the staff as a spellcasting focus. When you cast a spell that deals fire or radiant damage while using this staff as your spellcasting focus, you gain a +1 bonus to the spell's attack roll, or the spell's save DC increases by 1 (your choice).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-the-peaks", - "fields": { - "name": "Staff of the Peaks", - "desc": "This staff is made of rock crystal yet weighs the same as a wooden staff. The staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to spell attack rolls. In addition, you are immune to the effects of high altitude and severe cold weather, such as hypothermia and frostbite. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff shatters into fine stone fragments and is destroyed. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: control weather (8 charges), fault line* (6 charges), gust of wind (2 charges), ice storm (4 charges), jump (1 charge), snow boulder* (4 charges), or wall of stone (5 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Stone Strike. When you hit a creature or object made of stone or earth with this staff, you can expend 5 of its charges to shatter the target. The target must make a DC 17 Constitution saving throw, taking an extra 10d6 force damage on a failed save, or half as much damage on a successful one. If the target is an object that is being worn or carried, the creature wearing or carrying it must make the saving throw, but only the object takes the damage. If this damage reduces the target to 0 hit points, it shatters and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-the-scion", - "fields": { - "name": "Staff of the Scion", - "desc": "This unwholesome staff is crafted of a material that appears to be somewhere between weathered wood and dried meat. It weeps beads of red liquid that are thick and sticky like tree sap but smell of blood. A crystalized yellow eye with a rectangular pupil, like the eye of a goat, sits at its top. You can wield the staff as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the eye liquifies as the staff shrivels and twists into a blackened, smoking ruin and is destroyed. Ember Cloud. While holding the staff, you can use an action and expend 2 charges to release a cloud of burning embers from the staff. Each creature within 10 feet of you must make a DC 15 Constitution saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one. The ember cloud remains until the start of your next turn, making the area lightly obscured for creatures other than you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. Fiery Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 fire damage to the target. If you take fire damage while wielding the staff, you have advantage on attack rolls with it until the end of your next turn. While holding the staff, you have resistance to fire damage. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: augury (2 charges), barkskin (2 charges), confusion (4 charges), entangle (1 charge), or wall of fire (4 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-the-treant", - "fields": { - "name": "Staff of the Treant", - "desc": "This unassuming staff appears to be little more than the branch of a tree. While holding this staff, your skin becomes bark-like, and the hair on your head transforms into a chaplet of green leaves. This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. Nature’s Guardian. While holding this staff, you have resistance to cold and necrotic damage, but you have vulnerability to fire and radiant damage. In addition, you have advantage on attack rolls against aberrations and undead, but you have disadvantage on saving throws against spells and other magical effects from fey and plant creatures. One with the Woods. While holding this staff, your AC can’t be less than 16, regardless of what kind of armor you are wearing, and you can’t be tracked when you travel through terrain with excessive vegetation, such as a forest or grassland. Tree Friend. While holding this staff, you can use an action to animate a tree you can see within 60 feet of you. The tree uses the statistics of an animated tree and is friendly to you and your companions. Roll initiative for the tree, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don’t directly harm other trees or the natural world. If you don’t issue any commands to the three, it defends itself from hostile creatures but otherwise takes no actions. Once used, this property can’t be used again until the next dawn. Venerated Tree. If you spend 1 hour in silent reverence at the base of a Huge or larger tree, you can use an action to plant this staff in the soil above the tree’s roots and awaken the tree as a treant. The treant isn’t under your control, but it regards you as a friend as long as you don’t harm it or the natural world around it. Roll a d20. On a 1, the staff roots into the ground, growing into a sapling, and losing its magic. Otherwise, after you awaken a treant with this staff, you can’t do so again until 30 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-the-unhatched", - "fields": { - "name": "Staff of the Unhatched", - "desc": "This staff carved from a burnt ash tree is topped with an unhatched dragon’s (see Creature Codex) skull. This staff can be wielded as a magic quarterstaff. The staff has 5 charges for the following properties. It regains 1d4 + 1 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed. Necrotic Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d8 necrotic damage to the target. Spells. While holding the staff, you can use an action to expend 1 charge to cast bane or protection from evil and good from it using your spell save DC. You can also use an action to cast one of the following spells from the staff without using any charges, using your spell save DC and spellcasting ability: chill touch or minor illusion.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-the-white-necromancer", - "fields": { - "name": "Staff of the White Necromancer", - "desc": "Crafted from polished bone, this strange staff is carved with numerous arcane symbols and mystical runes. The staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: false life (1 charge), gentle repose (2 charges), heartstop* (2 charges), death ward (4 charges), raise dead (5 charges), revivify (3 charges), shared sacrifice* (2 charges), or speak with dead (3 charges). You can also use an action to cast the bless the dead* or spare the dying spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the bone staff crumbles to dust.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-thorns", - "fields": { - "name": "Staff of Thorns", - "desc": "This gnarled and twisted oak staff has numerous thorns growing from its surface. Green vines tightly wind their way up along the shaft. The staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the thorns immediately fall from the staff and it becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: barkskin (2 charges), entangle (1 charge), speak with plants (3 charges), spike growth (2 charges), or wall of thorns (6 charges). Thorned Strike. When you hit with a melee attack using the staff, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 piercing damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-voices", - "fields": { - "name": "Staff of Voices", - "desc": "The length of this wooden staff is carved with images of mouths whispering, speaking, and screaming. This staff can be wielded as a magic quarterstaff. While holding this staff, you can't be deafened, and you can act normally in areas where sound is prevented, such as in the area of a silence spell. Any creature that is not deafened can hear your voice clearly from up to 1,000 feet away if you wish them to hear it. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the mouths carved into the staff give a collective sigh and close, and the staff becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: divine word (7 charges), magic mouth (2 charges), speak with animals (1 charge), speak with dead (3 charges), speak with plants (3 charges), or word of recall (6 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges. Thunderous Shout. While holding the staff, you can use an action to expend 1 charge and release a chorus of mighty shouts in a 15-foot cone from it. Each creature in the area must make a Constitution saving throw. On a failure, a creature takes 2d8 thunder damage and is deafened for 1 minute. On a success, a creature takes half the damage and is deafened until the end of its next turn. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-winter-and-ice", - "fields": { - "name": "Staff of Winter and Ice", - "desc": "This pure white, pine staff is topped with an ornately faceted shard of ice. The entire staff is cold to the touch. You have resistance to cold damage while you hold this staff. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its resistance to cold damage but loses all other properties. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: Boreas’s breath* (2 charges), cone of cold (5 charges), curse of Boreas* (6 charges), ice storm (4 charges), flurry* (1 charge), freezing fog* (3 charges), freezing sphere (6 charges), frostbite* (5 charges), frozen razors* (3 charges), gliding step* (1 charge), sleet storm (3 charges), snow boulder* (4 charges), triumph of ice* (7 charges), or wall of ice (6 charges). You can also use an action to cast the chill touch or ray of frost spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM’s discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to ice, snow, or wintry weather. Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it. You have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take cold damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of cold damage based on how far away it is from the point of origin as shown in the following table. On a successful save, a creature takes half as much damage. | Distance from Origin | Damage |\n| --------------------- | -------------------------------------- |\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "standard-of-divinity-glaive", - "fields": { - "name": "Standard of Divinity (Glaive)", - "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "standard-of-divinity-halberd", - "fields": { - "name": "Standard of Divinity (Halberd)", - "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "standard-of-divinity-lance", - "fields": { - "name": "Standard of Divinity (Lance)", - "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "standard-of-divinity-pike", - "fields": { - "name": "Standard of Divinity (Pike)", - "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "steadfast-splint", - "fields": { - "name": "Steadfast Splint", - "desc": "This armor makes you difficult to manipulate both mentally and physically. While wearing this armor, you have advantage on saving throws against being charmed or frightened, and you have advantage on ability checks and saving throws against spells and effects that would move you against your will.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "stinger", - "fields": { - "name": "Stinger", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with an attack using this weapon, you can use a bonus action to inject paralyzing venom in the target. The target must succeed on a DC 15 Constitution saving throw or become paralyzed for 1 minute. It can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Creatures immune to poison are also immune to this dagger's paralyzing venom. The dagger can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "stolen-thunder", - "fields": { - "name": "Stolen Thunder", - "desc": "This bodhrán drum is crafted of wood from an ash tree struck by lightning, and its head is made from stretched mammoth skin, painted with a stylized thunderhead. While attuned to this drum, you can use it as an arcane focus. While holding the drum, you are immune to thunder damage. While this drum is on your person but not held, you have resistance to thunder damage. The drum has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. In addition, the drum regains 1 expended charge for every 10 thunder damage you ignore due to the resistance or immunity the drum gives you. If you expend the drum's last charge, roll a 1d20. On a 1, it becomes a nonmagical drum. However, if you make a Charisma (Performance) check while playing the nonmagical drum, and you roll a 20, the passion of your performance rekindles the item's power, restoring its properties and giving it 1 charge. If you are hit by a melee attack while using the drum as a shield, you can use a reaction to expend 1 charge to cause a thunderous rebuke. The attacker must make a DC 17 Constitution saving throw. On a failure, the attacker takes 2d8 thunder damage and is pushed up to 10 feet away from you. On a success, the attacker takes half the damage and isn't pushed. The drum emits a thunderous boom audible out to 300 feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "stone-staff", - "fields": { - "name": "Stone Staff", - "desc": "Sturdy and smooth, this impressive staff is crafted from solid stone. Most stone staves are crafted by dwarf mages and few ever find their way into non-dwarven hands. The staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: earthskimmer* (4 charges), entomb* (6 charges), flesh to stone (6 charges), meld into stone (3 charges), stone shape (4 charges), stoneskin (4 charges), or wall of stone (5 charges). You can also use an action to cast the pummelstone* or true strike spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, hundreds of cracks appear across the staff 's surface and it crumbles into tiny bits of stone.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "stonechewer-gauntlets", - "fields": { - "name": "Stonechewer Gauntlets", - "desc": "These impractically spiked gauntlets are made from adamantine, are charged with raw elemental earth magic, and limit the range of motion in your fingers. While wearing these gauntlets, you can't carry a weapon or object, and you can't climb or otherwise perform precise actions requiring the use of your hands. When you hit a creature with an unarmed strike while wearing these gauntlets, the unarmed strike deals an extra 1d4 piercing damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "stonedrift-staff", - "fields": { - "name": "Stonedrift Staff", - "desc": "This staff is fashioned from petrified wood and crowned with a raw chunk of lapis lazuli veined with gold. The staff can be wielded as a magic quarterstaff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed. Spells. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: animate objects (only stone objects, 5 charges), earthquake (8 charges), passwall (only stone surfaces, 5 charges), or stone shape (4 charges). Elemental Speech. You can speak and understand Primordial while holding this staff. Favor of the Earthborn. While holding the staff, you have advantage on Charisma checks made to influence earth elementals or other denizens of the Plane of Earth. Stone Glide. If the staff has at least 1 charge, you have a burrowing speed equal to your walking speed, and you can burrow through earth and stone while holding this staff. While doing so, you don’t disturb the material you move through.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "storytellers-pipe", - "fields": { - "name": "Storyteller's Pipe", - "desc": "This long-shanked wooden smoking pipe is etched with leaves along the bowl. Although it is serviceable as a typical pipe, you can use an action to blow out smoke and shape the smoke into wispy images for 10 minutes. This effect works like the silent image spell, except its range is limited to a 10-foot cone in front of you, and the images can be no larger than a 5-foot cube. The smoky images last for 3 rounds before fading, but you can continue blowing smoke to create more images for the duration or until the pipe burns through the smoking material in it, whichever happens first.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "studded-leather-armor-of-the-leaf", - "fields": { - "name": "Studded Leather Armor of the Leaf", - "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "studded-leather-of-warding-1", - "fields": { - "name": "Studded-Leather of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "studded-leather-of-warding-2", - "fields": { - "name": "Studded-Leather of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "studded-leather-of-warding-3", - "fields": { - "name": "Studded-Leather of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "sturdy-crawling-cloak", - "fields": { - "name": "Sturdy Crawling Cloak", - "desc": "This unusual cloak is made of many overlapping, broad strips of thick cloth.\nCrawling Cloak (Common). When you are prone, you can animate the cloak and have it pull you along the ground, allowing you to ignore the extra movement cost for crawling. You can still only move up to your normal movement rate and can’t stand up from prone unless you still have at least half your movement remaining after moving.\n\nSturdy Crawling Cloak (Uncommon). This more powerful version of the crawling cloak also allows you to use the prehensile strips of the cloak to climb, giving you a climbing speed of 20 feet. If you already have a climbing speed, the cloak increases that speed by 10 feet. When using the cloak, you can keep your hands free while climbing.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "sturdy-scroll-tube", - "fields": { - "name": "Sturdy Scroll Tube", - "desc": "This ornate scroll case is etched with arcane symbology. Scrolls inside this case are immune to damage and are protected from the elements, as long as the scroll case remains closed and intact. The scroll case itself has immunity to all forms of damage, except force damage and thunder damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "stygian-crook", - "fields": { - "name": "Stygian Crook", - "desc": "This staff of gnarled, rotted wood ends in a hooked curvature like a twisted shepherd's crook. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: bestow curse (3 charges), blight (4 charges), contagion (5 charges), false life (1 charge), or hallow (5 charges). The staff regains 1d6 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff turns to live maggots and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "superior-potion-of-troll-blood", - "fields": { - "name": "Superior Potion of Troll Blood", - "desc": "When you drink this potion, you regain 5 hit points at the start of each of your turns. After it has restored 50 hit points, the potion's effects end.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "supreme-potion-of-troll-blood", - "fields": { - "name": "Supreme Potion of Troll Blood", - "desc": "When you drink this potion, you regain 8 hit points at the start of each of your turns. After it has restored 80 hit points, the potion's effects end.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "survival-knife", - "fields": { - "name": "Survival Knife", - "desc": "When holding this sturdy knife, you can use an action to transform it into a crowbar, a fishing rod, a hunting trap, or a hatchet (mainly a chopping tool; if wielded as a weapon, it uses the same statistics as this dagger, except it deals slashing damage). While holding or touching the transformed knife, you can use an action to transform it into another form or back into its original shape.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "swarmfoe-hide", - "fields": { - "name": "Swarmfoe Hide", - "desc": "While wearing this armor festooned with thin draconic scales, you gain a +1 bonus to AC. You can use the scales as a melee weapon while wearing the armor. You have proficiency with the scales and deal 1d4 slashing damage on a hit (your Strength modifier applies to the attack and damage rolls as normal). Swarms don't have resistance to the damage dealt by the scales. In addition, if a swarm occupies your space, you can attack with the scales as a bonus action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "swarmfoe-leather", - "fields": { - "name": "Swarmfoe Leather", - "desc": "While wearing this armor festooned with thin draconic scales, you gain a +1 bonus to AC. You can use the scales as a melee weapon while wearing the armor. You have proficiency with the scales and deal 1d4 slashing damage on a hit (your Strength modifier applies to the attack and damage rolls as normal). Swarms don't have resistance to the damage dealt by the scales. In addition, if a swarm occupies your space, you can attack with the scales as a bonus action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "swashing-plumage", - "fields": { - "name": "Swashing Plumage", - "desc": "This plumage, a colorful bouquet of tropical hat feathers, has a small pin at its base and can be affixed to any hat or headband. Due to its distracting, ostentatious appearance, creatures hostile to you have disadvantage on opportunity attacks against you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "sweet-nature", - "fields": { - "name": "Sweet Nature", - "desc": "You have a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a humanoid with this weapon, the humanoid takes an extra 1d6 slashing damage. If you use the axe to damage a plant creature or an object made of wood, the axe's blade liquifies into harmless honey, and it can't be used again until 24 hours have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "swolbold-wraps", - "fields": { - "name": "Swolbold Wraps", - "desc": "When wearing these cloth wraps, your forearms and hands swell to half again their normal size without negatively impacting your fine motor skills. You gain a +1 bonus to attack and damage rolls made with unarmed strikes while wearing these wraps. In addition, your unarmed strike uses a d4 for damage and counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage. When you hit a target with an unarmed strike and the target is no more than one size larger than you, you can use a bonus action to automatically grapple the target. Once this special bonus action has been used three times, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "tactile-unguent", - "fields": { - "name": "Tactile Unguent", - "desc": "Cat burglars, gearworkers, locksmiths, and even street performers use this gooey substance to increase the sensitivity of their hands. When found, a container contains 1d4 + 1 doses. As an action, one dose can be applied to a creature's hands. For 1 hour, that creature has advantage on Dexterity (Sleight of Hand) checks and on tactile Wisdom (Perception) checks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "tailors-clasp", - "fields": { - "name": "Tailor's Clasp", - "desc": "This ornate brooch is shaped like a jeweled weaving spider or scarab beetle. While it is attached to a piece of fabric, it can be activated as an action. When activated, it skitters across the fabric, mending any tears, adjusting frayed hems, and reinforcing seams. This item works only on nonmagical objects made out of fibrous material, such as clothing, rope, and rugs. It continues repairing the fabric for up to 10 minutes or until the repairs are complete. Once used, it can't be used again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "talisman-of-the-snow-queen", - "fields": { - "name": "Talisman of the Snow Queen", - "desc": "The coldly beautiful and deadly Snow Queen (see Tome of Beasts) grants these delicate-looking snowflake-shaped mithril talismans to her most trusted spies and servants. Each talisman is imbued with a measure of her power and is magically tied to the queen. It can be affixed to any piece of clothing or worn as an amulet. While wearing the talisman, you gain the following benefits: • You have resistance to cold damage. • You have advantage on Charisma checks when interacting socially with creatures that live in cold environments, such as frost giants, winter wolves, and fraughashar (see Tome of Beasts). • You can use an action to cast the ray of frost cantrip from it at will, using your level and using Intelligence as your spellcasting ability. Blinding Snow. While wearing the talisman, you can use an action to create a swirl of snow that spreads out from you and into the eyes of nearby creatures. Each creature within 15 feet of you must succeed on a DC 17 Constitution saving throw or be blinded until the end of its next turn. Once used, this property can’t be used again until the next dawn. Eyes of the Queen. While you are wearing the talisman, the Snow Queen can use a bonus action to see through your eyes if both of you are on the same plane of existence. This effect lasts until she ends it as a bonus action or until you die. You can’t make a saving throw to prevent the Snow Queen from seeing through your eyes. However, being more than 5 feet away from the talisman ends the effect, and becoming blinded prevents her from seeing anything further than 10 feet away from you. When the Snow Queen is looking through your eyes, the talisman sheds an almost imperceptible pale blue glow, which you or any creature within 10 feet of you notice with a successful DC 20 Wisdom (Perception) check. An identify spell fails to reveal this property of the talisman, and this property can’t be removed from the talisman except by the Snow Queen herself.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "talking-tablets", - "fields": { - "name": "Talking Tablets", - "desc": "These two enchanted brass tablets each have gold styli chained to them by small, silver chains. As long as both tablets are on the same plane of existence, any message written on one tablet with its gold stylus appears on the other tablet. If the writer writes words in a language the reader doesn't understand, the tablets translate the words into a language the reader can read. While holding a tablet, you know if no creature bears the paired tablet. When the tablets have transferred a total of 150 words between them, their magic ceases to function until the next dawn. If one of the tablets is destroyed, the other one becomes a nonmagical block of brass worth 25 gp.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "talking-torches", - "fields": { - "name": "Talking Torches", - "desc": "These heavy iron and wood torches are typically found in pairs or sets of four. While holding this torch, you can use an action to speak a command word and cause it to produce a magical, heatless flame that sheds bright light in a 20-foot radius and dim light for an additional 20 feet. You can use a bonus action to repeat the command word to extinguish the light. If more than one talking torch remain lit and touching for 1 minute, they become magically bound to each other. A torch remains bound until the torch is destroyed or until it is bound to another talking torch or set of talking torches. While holding or carrying the torch, you can communicate telepathically with any creature holding or carrying one of the torches bound to your torch, as long as both torches are lit and within 5 miles of each other.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "tamers-whip", - "fields": { - "name": "Tamer's Whip", - "desc": "This whip is braided from leather tanned from the hides of a dozen different, dangerous beasts. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you attack a beast using this weapon, you have advantage on the attack roll.\nWhen you roll a 20 on the attack roll made with this weapon and the target is a beast, the beast must succeed on a DC 15 Wisdom saving throw or become charmed or frightened (your choice) for 1 minute.\nIf the creature is charmed, it understands and obeys one-word commands, such as “attack,” “approach,” “stay,” or similar. If it is charmed and understands a language, it obeys any command you give it in that language. The charmed or frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "tarian-graddfeydd-ddraig", - "fields": { - "name": "Tarian Graddfeydd Ddraig", - "desc": "This metal shield has an outer coating consisting of hardened resinous insectoid secretions embedded with flakes from ground dragon scales collected from various dragon wyrmlings and one dragon that was killed by shadow magic. While holding this shield, you gain a +2 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. In addition, you have resistance to acid, cold, fire, lightning, necrotic, and poison damage dealt by the breath weapons of dragons. While wielding the shield in an area of dim or bright light, you can use an action to reflect the light off the shield's dragon scale flakes to cause a cone of multicolored light to flash from it (15-foot cone if in dim light; 30-foot cone if in bright light). Each creature in the area must make a DC 17 Dexterity saving throw. For each target, roll a d6 and consult the following table to determine which color is reflected at it. The shield can't be used this way again until the next dawn. | d6 | Effect |\n| --- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 1 | **Red**. The target takes 6d6 fire damage on a failed save, or half as much damage on a successful one. |\n| 2 | **White**. The target takes 4d6 cold damage and is restrained until the start of your next turn on a failed save, or half as much damage and is not restrained on a successful one. |\n| 3 | **Blue**. The target takes 4d6 lightning damage and is paralyzed until the start of your next turn on a failed save, or half as much damage and is not paralyzed on a successful one. |\n| 4 | **Black**. The target takes 4d6 acid damage on a failed save, or half as much damage on a successful one. If the target failed the save, it also takes an extra 2d6 acid damage on the start of your next turn. |\n| 5 | **Green**. The target takes 4d6 poison damage and is poisoned until the start of your next turn on a failed save, or half as much damage and is not poisoned on a successful one. |\n| 6 | **Shadow**. The target takes 4d6 necrotic damage and its Strength score is reduced by 1d4 on a failed save, or half as much damage and does not reduce its Strength score on a successful one. The target dies if this Strength reduction reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest. |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "teapot-of-soothing", - "fields": { - "name": "Teapot of Soothing", - "desc": "This cast iron teapot is adorned with the simple image of fluffy clouds that seem to slowly shift and move across the pot as if on a gentle breeze. Any water placed inside the teapot immediately becomes hot tea at the perfect temperature, and when poured, it becomes the exact flavor the person pouring it prefers. The teapot can serve up to 6 creatures, and any creature that spends 10 minutes drinking a cup of the tea gains 2d6 temporary hit points for 24 hours. The creature pouring the tea has advantage on Charisma (Persuasion) checks for 10 minutes after pouring the first cup. Once used, the teapot can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "tenebrous-flail-of-screams", - "fields": { - "name": "Tenebrous Flail of Screams", - "desc": "The handle of this flail is made of mammoth bone wrapped in black leather made from bat wings. Its pommel is adorned with raven's claws, and the head of the flail dangles from a flexible, preserved braid of entrails. The head is made of petrified wood inlaid with owlbear and raven beaks. When swung, the flail lets out an otherworldly screech. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with this flail, the target takes an extra 1d6 psychic damage. When you roll a 20 on an attack roll made with this weapon, the target must succeed on a DC 15 Wisdom saving throw or be incapacitated until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "tenebrous-mantle", - "fields": { - "name": "Tenebrous Mantle", - "desc": "This black cloak appears to be made of pure shadow and shrouds you in darkness. While wearing it, you gain the following benefits: - You have advantage on Dexterity (Stealth) checks.\n- You have resistance to necrotic damage.\n- You can cast the darkness and misty step spells from it at will. Casting either spell from the cloak requires an action. Instead of a silvery mist when you cast misty step, you are engulfed in the darkness of the cloak and emerge from the cloak's darkness at your destination.\n- You can use an action to cast the black tentacles or living shadows (see Deep Magic for 5th Edition) spell from it. The cloak can't be used this way again until the following dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "thirsting-scalpel", - "fields": { - "name": "Thirsting Scalpel", - "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon, which deals slashing damage instead of piercing damage. When you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 2d6 slashing damage. If the target is a creature other than an undead or construct, it must succeed on a DC 13 Constitution saving throw or lose 2d6 hit points at the start of each of its turns from a bleeding wound. Any creature can take an action to stanch the wound with a successful DC 11 Wisdom (Medicine) check. The wound also closes if the target receives magical healing. In addition, once every 7 days while the scalpel is on your person, you must succeed on a DC 15 Charisma saving throw or become driven to feed blood to the scalpel. You have advantage on attack rolls with the scalpel until it is sated. The dagger is sated when you roll a 20 on an attack roll with it, after you deal 14 slashing damage with it, or after 1 hour elapses. If the hour elapses and you haven't sated its thirst for blood, the dagger deals 14 slashing damage to you. If the dagger deals damage to you as a result of the curse, you can't heal the damage for 24 hours. The remove curse spell removes your attunement to the item and frees you from the curse. Alternatively, casting the banishment spell on the dagger forces the bearded devil's essence to leave it. The scalpel then becomes a +1 dagger with no other properties.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "thirsting-thorn", - "fields": { - "name": "Thirsting Thorn", - "desc": "You gain a +1 bonus to attack and damage rolls made with this weapon. In addition, while carrying the sword, you have resistance to necrotic damage. Each time you reduce a creature to 0 hit points with this weapon, you can regain 2d8+2 hit points. Each time you regain hit points this way, you must succeed a DC 12 Wisdom saving throw or be incapacitated by terrible visions until the end of your next turn. If you reach your maximum hit points using this effect, you automatically fail the saving throw. As long as you remain cursed, you are unwilling to part with the sword, keeping it within reach at all times. If you have not damaged a creature with this sword within the past 24 hours, you have disadvantage on attack rolls with weapons other than this one as its hunger for blood drives you to slake its thirst.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "thornish-nocturnal", - "fields": { - "name": "Thornish Nocturnal", - "desc": "The ancient elves constructed these nautical instruments to use as navigational aids on all their seagoing vessels. The knowledge of their manufacture has been lost, and few of them remain. While attuned to the nocturnal, you can spend 1 minute using the nocturnal to determine the precise local time, provided you can see the sun or stars. You can use an action to protect up to four vessels that are within 1 mile of the nocturnal from unwanted effects of the local weather for 1 hour. For example, vessels protected by the nocturnal can't be damaged by storms or blown onto jagged rocks by adverse wind. To do so, you must have spent at least 1 hour aboard each of the controlled vessels, performing basic sailing tasks and familiarizing yourself with the vessel.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "three-section-boots", - "fields": { - "name": "Three-Section Boots", - "desc": "These boots are often decorated with eyes, flames, or other bold patterns such as lightning bolts or wheels. When you step onto water, air, or stone, you can use a reaction to speak the boots' command word. For 1 hour, you gain the effects of the meld into stone, water walk, or wind walk spell, depending on the type of surface where you stepped. The boots can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "throttlers-gauntlets", - "fields": { - "name": "Throttler's Gauntlets", - "desc": "These durable leather gloves allow you to choke a creature you are grappling, preventing them from speaking. While you are grappling a creature, you can use a bonus action to throttle it. The creature takes damage equal to your proficiency bonus and can't speak coherently or cast spells with verbal components until the end of its next turn. You can choose to not damage the creature when you throttle it. A creature can still breathe, albeit uncomfortably, while throttled.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "thunderous-kazoo", - "fields": { - "name": "Thunderous Kazoo", - "desc": "You can use an action to speak the kazoo's command word and then hum into it, which emits a thunderous blast, audible out to 1 mile, at one Large or smaller creature you can see within 30 feet of you. The target must make a DC 13 Constitution saving throw. On a failure, a creature is pushed away from you and is deafened and frightened of you until the start of your next turn. A Small creature is pushed up to 30 feet, a Medium creature is pushed up to 20 feet, and a Large creature is pushed up to 10 feet. On a success, a creature is pushed half the distance and isn't deafened or frightened. The kazoo can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "tick-stop-watch", - "fields": { - "name": "Tick Stop Watch", - "desc": "While holding this silver pocketwatch, you can use an action to magically stop a single clockwork device or construct within 10 feet of you. If the target is an object, it freezes in place, even mid-air, for up to 1 minute or until moved. If the target is a construct, it must succeed on a DC 15 Wisdom saving throw or be paralyzed until the end of its next turn. The pocketwatch can't be used this way again until the next dawn. The pocketwatch must be wound at least once every 24 hours, just like a normal pocketwatch, or its magic ceases to function. If left unwound for 24 hours, the watch loses its magic, but the power returns 24 hours after the next time it is wound.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "timeworn-timepiece", - "fields": { - "name": "Timeworn Timepiece", - "desc": "This tarnished silver pocket watch seems to be temporally displaced and allows for limited manipulation of time. The timepiece has 3 charges, and it regains 1d3 expended charges daily at midnight. While holding the timepiece, you can use your reaction to expend 1 charge after you or a creature you can see within 30 feet of you makes an attack roll, an ability check, or a saving throw to force the creature to reroll. You make this decision after you see whether the roll succeeds or fails. The target must use the result of the second roll. Alternatively, you can expend 2 charges as a reaction at the start of another creature's turn to swap places in the Initiative order with that creature. An unwilling creature that succeeds on a DC 15 Charisma saving throw is unaffected.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "tincture-of-moonlit-blossom", - "fields": { - "name": "Tincture of Moonlit Blossom", - "desc": "This potion is steeped using a blossom that grows only in the moonlight. When you drink this potion, your shadow corruption (see Midgard Worldbook) is reduced by three levels. If you aren't using the Midgard setting, you gain the effect of the greater restoration spell instead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "tipstaff", - "fields": { - "name": "Tipstaff", - "desc": "To the uninitiated, this short ebony baton resembles a heavy-duty truncheon with a cord-wrapped handle and silver-capped tip. The weapon has 5 charges, and it regains 1d4 + 1 expended charges daily at dawn. When you hit a creature with a melee attack with this magic weapon, you can expend 1 charge to force the target to make a DC 15 Constitution saving throw. If the creature took 20 damage or more from this attack, it has disadvantage on the saving throw. On a failure, the target is paralyzed for 1 minute. It can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "tome-of-knowledge", - "fields": { - "name": "Tome of Knowledge", - "desc": "This book contains mnemonics and other tips to better perform a specific mental task, and its words are charged with magic. If you spend 24 hours over a period of 3 days or fewer studying the tome and practicing its instructions, you gain proficiency in the Intelligence, Wisdom, or Charisma-based skill (such as History, Insight, or Intimidation) associated with the book. The tome then loses its magic, but regains it in ten years.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "tonic-for-the-troubled-mind", - "fields": { - "name": "Tonic for the Troubled Mind", - "desc": "This potion smells and tastes of lavender and chamomile. When you drink it, it removes any short-term madness afflicting you, and it suppresses any long-term madness afflicting you for 8 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "tonic-of-blandness", - "fields": { - "name": "Tonic of Blandness", - "desc": "This deeply bitter, black, oily liquid deadens your sense of taste. When you drink this tonic, you can eat all manner of food without reaction, even if the food isn't to your liking, for 1 hour. During this time, you automatically fail Wisdom (Perception) checks that rely on taste. This tonic doesn't protect you from the effects of consuming poisoned or spoiled food, but it can prevent you from detecting such impurities when you taste the food.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "toothsome-purse", - "fields": { - "name": "Toothsome Purse", - "desc": "This common-looking leather pouch holds a nasty surprise for pickpockets. If a creature other than you reaches into the purse, small, sharp teeth emerge from the mouth of the bag. The bag makes a melee attack roll against that creature with a +3 bonus ( 1d20+3). On a hit, the target takes 2d4 piercing damage. If the bag rolls a 20 on the attack roll, the would-be pickpocket has disadvantage on any Dexterity checks made with that hand until the damage is healed. If the purse is lifted entirely from you, the purse continues to bite at the thief each round until it is dropped or until it is placed where it can't reach its target. It bites at any creature, other than you, who attempts to pick it up, unless that creature genuinely desires to return the purse and its contents to you. The purse attacks only if it is attuned to a creature. A purse that isn't attuned to a creature lies dormant and doesn't attack.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "torc-of-the-comet", - "fields": { - "name": "Torc of the Comet", - "desc": "This silver torc is set with a large opal on one end, and it thins to a point on the other. While wearing the torc, you have resistance to cold damage, and you can use an action to speak the command word, causing the torc to shed bluish-white bright light in a 20-foot radius and dim light for an additional 20 feet. The light lasts until you use a bonus action to speak the command word again. The torc has 4 charges. You can use an action to expend 1 charge and fire a tiny comet from the torc at a target you can see within 120 feet of you. The torc makes a ranged attack roll with a +7 bonus ( 1d20+7). On a hit, the target takes 2d6 bludgeoning damage and 2d6 cold damage. At night, the cold damage dealt by the comets increases to 6d6. The torc regain 1d4 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "tracking-dart", - "fields": { - "name": "Tracking Dart", - "desc": "When you hit a Large or smaller creature with an attack using this colorful magic dart, the target is splattered with magical paint, which outlines the target in a dim glow (your choice of color) for 1 minute. Any attack roll against a creature outlined in the glow has advantage if the attacker can see the creature, and the creature can't benefit from being invisible. The creature outlined in the glow can end the effect early by using an action to wipe off the splatter of paint.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "treebleed-bucket", - "fields": { - "name": "Treebleed Bucket", - "desc": "This combination sap bucket and tap is used to extract sap from certain trees. After 1 hour, the bucketful of sap magically changes into a potion. The potion remains viable for 24 hours, and its type depends on the tree as follows: oak (potion of resistance), rowan (potion of healing), willow (potion of animal friendship), and holly (potion of climbing). The treebleed bucket can magically change sap 20 times, then the bucket and tap become nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "trident-of-the-vortex", - "fields": { - "name": "Trident of the Vortex", - "desc": "This bronze trident has a shaft of inlaid blue pearl. You gain a +2 bonus to attack and damage rolls with this magic weapon. Whirlpool. While wielding the trident underwater, you can use an action to speak its command word and cause the water around you to whip into a whirlpool for 1 minute. For the duration, each creature that enters or starts its turn in a space within 10 feet of you must succeed on a DC 15 Strength saving throw or be restrained by the whirlpool. The whirlpool moves with you, and creatures restrained by it move with it. A creature within 5 feet of the whirlpool can pull a creature out of it by taking an action to make a DC 15 Strength check and succeeding. A restrained creature can try to escape by taking an action to make a DC 15 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the whirlpool. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "trident-of-the-yearning-tide", - "fields": { - "name": "Trident of the Yearning Tide", - "desc": "The barbs of this trident are forged from mother-of-pearl and its shaft is fashioned from driftwood. You gain a +2 bonus on attack and damage rolls made with this magic weapon. While holding the trident, you can breathe underwater. The trident has 3 charges for the following other properties. It regains 1d3 expended charges daily at dawn. Call Sealife. While holding the trident, you can use an action to expend 3 of its charges to cast the conjure animals spell from it. The creatures you summon must be beasts that can breathe water. Yearn for the Tide. When you hit a creature with a melee attack using the trident, you can use a bonus action to expend 1 charge to force the target to make a DC 17 Wisdom saving throw. On a failure, the target must spend its next turn leaping into the nearest body of water and swimming toward the bottom. A creature that can breathe underwater automatically succeeds on the saving throw. If no water is in the target’s line of sight, the target automatically succeeds on the saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "troll-skin-hide", - "fields": { - "name": "Troll Skin Hide", - "desc": "While wearing troll skin armor, you gain a +1 bonus to AC, and you stabilize whenever you are dying at the start of your turn. In addition, you can use an action to regenerate for 1 minute. While regenerating, you regain 2 hit points at the start of each of your turns. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "troll-skin-leather", - "fields": { - "name": "Troll Skin Leather", - "desc": "While wearing troll skin armor, you gain a +1 bonus to AC, and you stabilize whenever you are dying at the start of your turn. In addition, you can use an action to regenerate for 1 minute. While regenerating, you regain 2 hit points at the start of each of your turns. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "trollsblood-elixir", - "fields": { - "name": "Trollsblood Elixir", - "desc": "This thick, pink liquid sloshes and moves even when the bottle is still. When you drink this potion, you regenerate lost hit points for 1 hour. At the start of your turn, you regain 5 hit points. If you take acid or fire damage, the potion doesn't function at the start of your next turn. If you lose a limb, you can reattach it by holding it in place for 1 minute. For the duration, you can die from damage only by being reduced to 0 hit points and not regenerating on your turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "tyrants-whip", - "fields": { - "name": "Tyrant's Whip", - "desc": "This wicked whip has 3 charges and regains all expended charges daily at dawn. When you hit with an attack using this magic whip, you can use a bonus action to expend 1 of its charges to cast the command spell (save DC 13) from it on the creature you hit. If the attack is a critical hit, the target has disadvantage on the saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "umber-beans", - "fields": { - "name": "Umber Beans", - "desc": "These magical beans have a modest ochre or umber hue, and they are about the size and weight of walnuts. Typically, 1d4 + 4 umber beans are found together. You can use an action to throw one or more beans up to 10 feet. When the bean lands, it grows into a creature you determine by rolling a d10 and consulting the following table. ( Umber Beans#^creature) The creature vanishes at the next dawn or when it takes bludgeoning, piercing, or slashing damage. The bean is destroyed when the creature vanishes. The creature is illusory, and you are aware of this. You can use a bonus action to command how the illusory creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature. The creature's attacks deal psychic damage, though the target perceives the damage as the type appropriate to the illusion, such as slashing for a vrock's talons. A creature with truesight or that uses its action to examine the illusion can determine that it is an illusion with a successful DC 13 Intelligence (Investigation) check. If a creature discerns the illusion for what it is, the creature sees the illusion as faint and the illusion can't attack that creature. | dice: 1d10 | Creature |\n| ---------- | ---------------------------- |\n| 1 | Dretch |\n| 2-3 | 2 Shadows |\n| 4-6 | Chuul |\n| 7-8 | Vrock |\n| 9 | Hezrou or Psoglav |\n| 10 | Remorhaz or Voidling |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "umbral-band", - "fields": { - "name": "Umbral Band", - "desc": "This blackened steel ring is cold to the touch. While wearing this ring, you have darkvision out to a range of 30 feet, and you have advantage on Dexterity (Stealth) checks while in an area of dim light or darkness.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "umbral-chopper", - "fields": { - "name": "Umbral Chopper", - "desc": "This simple axe looks no different from a standard forester's tool. A single-edged head is set into a slot in the haft and bound with strong cord. The axe was found by a timber-hauling crew who disappeared into the shadows of a cave deep in an old forest. Retrieved in the dark of the cave, the axe was found to possess disturbing magical properties. You gain a +1 bonus to attack and damage rolls made with this weapon, which deals necrotic damage instead of slashing damage. When you hit a plant creature with an attack using this weapon, the target must make a DC 15 Constitution saving throw. On a failure, the creature takes 4d6 necrotic damage and its speed is halved until the end of its next turn. On a success, the creature takes half the damage and its speed isn't reduced.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "umbral-lantern", - "fields": { - "name": "Umbral Lantern", - "desc": "This item looks like a typical hooded brass lantern, but shadowy forms crawl across its surface and it radiates darkness instead of light. The lantern can burn for up to 3 hours each day. While the lantern burns, it emits darkness as if the darkness spell were cast on it but with a 30-foot radius.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "umbral-staff", - "fields": { - "name": "Umbral Staff", - "desc": "Made of twisted darkwood and covered in complex runes and sigils, this powerful staff seems to emanate darkness. You have resistance to radiant damage while you hold this staff. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at midnight. If you expend the last charge, roll a d20. On a 1, the staff retains its ability to cast the claws of darkness*, douse light*, and shadow blindness* spells but loses all other properties. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: become nightwing* (6 charges), black hand* (4 charges), black ribbons* (1 charge), black well* (6 charges), cloak of shadow* (1 charge), darkvision (2 charges), darkness (2 charges), dark dementing* (5 charges), dark path* (2 charges), darkbolt* (2 charges), encroaching shadows* (6 charges), night terrors* (4 charges), shadow armor* (1 charge), shadow hands* (1 charge), shadow puppets* (2 charges), or slither* (2 charges). You can also use an action to cast the claws of darkness*, douse light*, or shadow blindness* spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM’s discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness, shadows, or terror. Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion of darkness (as the darkness spell) that expands to fill a 30-foot-radius sphere centered on it. You have a 50 percent chance to instantly travel to the Plane of Shadow, avoiding the explosion. If you fail to avoid the effect, you take necrotic damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin as shown in the following table. On a successful save, a creature takes half as much damage. | Distance from Origin | Damage |\n| --------------------- | -------------------------------------- |\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "undine-plate", - "fields": { - "name": "Undine Plate", - "desc": "This bright green plate armor is embossed with images of various marine creatures, such as octopuses and rays. While wearing this armor, you have a swimming speed of 40 feet, and you don't have disadvantage on Dexterity (Stealth) checks while underwater.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "unerring-dowsing-rod", - "fields": { - "name": "Unerring Dowsing Rod", - "desc": "This dark, gnarled willow root is worn and smooth. When you hold this rod in both hands by its short, forked branches, you feel it gently tugging you toward the closest source of fresh water. If the closest source of fresh water is located underground, the dowsing rod directs you to a spot above the source then dips its tip down toward the ground. When you use this dowsing rod on the Material Plane, it directs you to bodies of water, such as creeks and ponds. When you use it in areas where fresh water is much more difficult to find, such as a desert or the Plane of Fire, it directs you to bodies of water, but it might also direct you toward homes with fresh water barrels or to creatures with containers of fresh water on them.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "unquiet-dagger", - "fields": { - "name": "Unquiet Dagger", - "desc": "Forged by creatures with firsthand knowledge of what lies between the stars, this dark gray blade sometimes appears to twitch or ripple like water when not directly observed. You gain a +1 bonus to attack and damage rolls with this magic weapon. In addition, when you hit with an attack using this dagger, the target takes an extra 2d6 psychic damage. You can use an action to cause the blade to ripple for 1 minute. While the blade is rippling, each creature that takes psychic damage from the dagger must succeed on a DC 15 Charisma saving throw or become frightened of you for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The dagger can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "unseelie-staff", - "fields": { - "name": "Unseelie Staff", - "desc": "This ebony staff is decorated in silver and topped with a jagged piece of obsidian. This staff can be wielded as a magic quarterstaff. While holding the staff, you have advantage on Charisma checks made to influence or interact socially with fey creatures. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a shower of powdery snow, which blows away in a sudden, chill wind. Rebuke Fey. When you hit a fey creature with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 necrotic damage to the target. If the fey has a good alignment, the extra damage increases to 4d6, and the target must succeed on a DC 15 Wisdom saving throw or be frightened of you until the start of your next turn. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), conjure woodland beings (4 charges), confusion (4 charges), invisibility (2 charges), or teleport (7 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "valkyries-bite", - "fields": { - "name": "Valkyrie's Bite", - "desc": "This black-bladed scimitar has a guard that resembles outstretched raven wings, and a polished amethyst sits in its pommel. You have a +2 bonus to attack and damage rolls made with this magic weapon. While attuned to the scimitar, you have advantage on initiative rolls. While you hold the scimitar, it sheds dim purple light in a 10-foot radius.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "vengeful-coat", - "fields": { - "name": "Vengeful Coat", - "desc": "This stiff, vaguely uncomfortable coat covers your torso. It smells like ash and oozes a sap-like substance. While wearing this coat, you have resistance to slashing damage from nonmagical attacks. At the end of each long rest, choose one of the following damage types: acid, cold, fire, lightning, or thunder. When you take damage of that type, you have advantage on attack rolls until the end of your next turn. When you take more than 10 damage of that type, you have advantage on your attack rolls for 2 rounds. When you are targeted by an effect that deals damage of the type you chose, you can use your reaction to gain resistance to that damage until the start of your next turn. You have advantage on your attack rolls, as detailed above, then the coat's magic ceases to function until you finish a long rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "venomous-fangs", - "fields": { - "name": "Venomous Fangs", - "desc": "These prosthetic fangs can be positioned over your existing teeth or in place of missing teeth. While wearing these fangs, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. You gain a +1 bonus to attack and damage rolls made with this magic bite. While you wear the fangs, a successful DC 9 Dexterity (Sleight of Hand) checks conceals them from view. At the GM's discretion, you have disadvantage on Charisma (Deception) or Charisma (Persuasion) checks against creatures that notice the fangs.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "verdant-elixir", - "fields": { - "name": "Verdant Elixir", - "desc": "Multi-colored streaks of light occasionally flash through the clear liquid in this container, like bottled lightning. As an action, you can pour the contents of the vial onto the ground. All normal plants in a 100-foot radius centered on the point where you poured the vial become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves. Alternatively, you can apply the contents of the vial to a plant creature within 5 feet of you. For 1 hour, the target gains 2d10 temporary hit points, and it gains the “enlarge” effect of the enlarge/reduce spell (no concentration required).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "verminous-snipsnaps", - "fields": { - "name": "Verminous Snipsnaps", - "desc": "This stoppered jar holds small animated knives and scissors. The jar weighs 1 pound, and its command word is often written on the jar's label. You can use an action to remove the stopper, which releases the spinning blades into a space you can see within 30 feet of you. The knives and scissors fill a cube 10 feet on each side and whirl in place, flaying creatures and objects that enter the cube. When a creature enters the cube for the first time on a turn or starts its turn there, it takes 2d12 piercing damage. You can use a bonus action to speak the command word, returning the blades to the jar. Otherwise, the knives and scissors remain in that space indefinitely.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "verses-of-vengeance", - "fields": { - "name": "Verses of Vengeance", - "desc": "This massive, holy tome is bound in brass with a handle on the back cover. A steel chain dangles from the sturdy metal cover, allowing you to hang the tome from your belt or hook it to your armor. A locked clasp holds the tome closed, securing its contents. You gain a +1 bonus to AC while you wield this tome as a shield. This bonus is in addition to the shield's normal bonus to AC. Alternatively, you can make melee weapon attacks with the tome as if it was a club. If you make an attack using use the tome as a weapon, you lose the shield's bonus to your AC until the start of your next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "vessel-of-deadly-venoms", - "fields": { - "name": "Vessel of Deadly Venoms", - "desc": "This small jug weighs 5 pounds and has a ceramic snake coiled around it. You can use an action to speak a command word to cause the vessel to produce poison, which pours from the snake's mouth. A poison created by the vessel must be used within 1 hour or it becomes inert. The word “blade” causes the snake to produce 1 dose of serpent venom, enough to coat a single weapon. The word “consume” causes the snake to produce 1 dose of assassin's blood, an ingested poison. The word “spit” causes the snake to spray a stream of poison at a creature you can see within 30 feet. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d8 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. Once used, the vessel can't be used to create poison again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "vestments-of-the-bleak-shinobi", - "fields": { - "name": "Vestments of the Bleak Shinobi", - "desc": "This padded black armor is fashioned in the furtive style of shinobi shōzoku garb. You have advantage on Dexterity (Stealth) checks while you wear this armor. Darkness. While wearing this armor, you can use an action to cast the darkness spell from it with a range of 30 feet. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "vial-of-sunlight", - "fields": { - "name": "Vial of Sunlight", - "desc": "This crystal vial is filled with water from a spring high in the mountains and has been blessed by priests of a deity of healing and light. You can use an action to cause the vial to emit bright light in a 30-foot radius and dim light for an additional 30 feet for 1 minute. This light is pure sunlight, causing harm or discomfort to vampires and other undead creatures that are sensitive to it. The vial can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "vielle-of-weirding-and-warding", - "fields": { - "name": "Vielle of Weirding and Warding", - "desc": "The strings of this bowed instrument never break. You must be proficient in stringed instruments to use this vielle. A creature that attempts to play the instrument without being attuned to it must succeed on a DC 15 Wisdom saving throw or take 2d8 psychic damage. If you play the vielle as the somatic component for a spell that causes a target to become charmed on a failed saving throw, the target has disadvantage on the saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "vigilant-mug", - "fields": { - "name": "Vigilant Mug", - "desc": "An impish face sits carved into the side of this bronze mug, its eyes a pair of clear, blue crystals. The imp's eyes turn red when poison or poisonous material is placed or poured inside the mug.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "vile-razor", - "fields": { - "name": "Vile Razor", - "desc": "This perpetually blood-stained straight razor deals slashing damage instead of piercing damage. You gain a +1 bonus to attack and damage rolls made with this magic weapon. Inhuman Alacrity. While holding the dagger, you can take two bonus actions on your turn, instead of one. Each bonus action must be different; you can’t use the same bonus action twice in a single turn. Once used, this property can’t be used again until the next dusk. Unclean Cut. When you hit a creature with a melee attack using the dagger, you can use a bonus action to deal an extra 2d4 necrotic damage. If you do so, the target and each of its allies that can see this attack must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. Once used, this property can’t be used again until the next dusk. ", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "void-touched-buckler", - "fields": { - "name": "Void-Touched Buckler", - "desc": "This simple wood and metal buckler belonged to an adventurer slain by a void dragon wyrmling (see Tome of Beasts). It sat for decades next to a small tear in the fabric of reality, which led to the outer planes. It has since become tainted by the Void. While wielding this shield, you have a +1 bonus to AC. This bonus is in addition to the shield’s normal bonus to AC. Invoke the Void. While wielding this shield, you can use an action to invoke the shield’s latent Void energy for 1 minute, causing a dark, swirling aura to envelop the shield. For the duration, when a creature misses you with a weapon attack, it must succeed on a DC 17 Wisdom saving throw or be frightened of you until the end of its next turn. In addition, when a creature hits you with a weapon attack, it has advantage on weapon attack rolls against you until the end of its next turn. You can’t use this property of the shield again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "voidskin-cloak", - "fields": { - "name": "Voidskin Cloak", - "desc": "This pitch-black cloak absorbs light and whispers as it moves. It feels like thin leather with a knobby, scaly texture, though none of that detail is visible to the eye. While you wear this cloak, you have resistance to necrotic damage. While the hood is up, your face is pooled in shadow, and you can use a bonus action to fix your dark gaze upon a creature you can see within 60 feet. If the creature can see you, it must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once a creature succeeds on its saving throw, it can't be affected by the cloak again for 24 hours. Pulling the hood up or down requires an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "voidwalker", - "fields": { - "name": "Voidwalker", - "desc": "This band of tarnished silver bears no ornament or inscription, but it is icy cold to the touch. The patches of dark corrosion on the ring constantly, but subtly, move and change; though, this never occurs while anyone observes the ring. While wearing Voidwalker, you gain the benefits of a ring of free action and a ring of resistance (cold). It has the following additional properties. The ring is clever and knows that most mortals want nothing to do with the Void directly. It also knows that most of the creatures with strength enough to claim it will end up in dire straits sooner or later. It doesn't overplay its hand trying to push a master to take a plunge into the depths of the Void, but instead makes itself as indispensable as possible. It provides counsel and protection, all the while subtly pushing its master to take greater and greater risks. Once it's maneuvered its wearer into a position of desperation, generally on the brink of death, Voidwalker offers a way out. If the master accepts, it opens a gate into the Void, most likely sealing the creature's doom.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "vom-feather-token", - "fields": { - "name": "Feather Token", - "desc": "The following are additional feather token options. Cloud (Uncommon). This white feather is shaped like a cloud. You can use an action to step on the token, which expands into a 10-foot-diameter cloud that immediately begins to rise slowly to a height of up to 20 feet. Any creatures standing on the cloud rise with it. The cloud disappears after 10 minutes, and anything that was on the cloud falls slowly to the ground. \nDark of the Moon (Rare). This black feather is shaped like a crescent moon. As an action, you can brush the feather over a willing creature’s eyes to grant it the ability to see in the dark. For 1 hour, that creature has darkvision out to a range of 60 feet, including in magical darkness. Afterwards, the feather disappears. \n Held Heart (Very Rare). This red feather is shaped like a heart. While carrying this token, you have advantage on initiative rolls. As an action, you can press the feather against a willing, injured creature. The target regains all its missing hit points and the feather disappears. \nJackdaw’s Dart (Common). This black feather is shaped like a dart. While holding it, you can use an action to throw it at a creature you can see within 30 feet of you. As it flies, the feather transforms into a blot of black ink. The target must succeed on a DC 11 Dexterity saving throw or the feather leaves a black mark of misfortune on it. The target has disadvantage on its next ability check, attack roll, or saving throw then the mark disappears. A remove curse spell ends the mark early.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-accompaniment", - "fields": { - "name": "Wand of Accompaniment", - "desc": "Tiny musical notes have been etched into the sides of this otherwise plain, wooden wand. It has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand disintegrates with a small bang. Dance. While holding the wand, you can use an action to expend 3 charges to cast the irresistible dance spell (save DC 17) from it. If the target is in the area of the Song property of this wand, it has disadvantage on the saving throw. Song. While holding the wand, you can use an action to expend 1 charge to cause the area within a 30-foot radius of you to fill with music for 1 minute. The type of music played is up to you, but it is performed flawlessly. Each creature in the area that can hear the music has advantage on saving throws against being deafened and against spells and effects that deal thunder damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-air-glyphs", - "fields": { - "name": "Wand of Air Glyphs", - "desc": "While holding this thin, metal wand, you can use action to cause the tip to glow. When you wave the glowing wand in the air, it leaves a trail of light behind it, allowing you to write or draw on the air. Whatever letters or images you make hang in the air for 1 minute before fading away.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-bristles", - "fields": { - "name": "Wand of Bristles", - "desc": "This wand is made from the bristles of a giant boar bound together with magical, silver thread. It weighs 1 pound and is 8 inches long. The wand has a strong boar musk scent to it, which is difficult to mask and is noticed by any creature within 10 feet of you that possesses the Keen Smell trait. The wand is comprised of 10 individual bristles, and as long as the wand has 1 bristle, it regrows 2 bristles daily at dawn. While holding the wand, you can use your action to remove bristles to cause one of the following effects. Ghostly Charge (3 bristles). You toss the bristles toward one creature you can see. A phantom giant boar charges 30 feet toward the creature. If the phantom’s path connects with the creature, the target must succeed on a DC 15 Dexterity saving throw or take 2d8 force damage and be knocked prone. Truffle (2 bristles). You plant the bristles in the ground to conjure up a magical truffle. Consuming the mushroom restores 2d8 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-depth-detection", - "fields": { - "name": "Wand of Depth Detection", - "desc": "This simple wooden wand has 7 charges and regains 1d6 + 1 expended charges daily at dawn. While holding it, you can use an action to expend 1 charge and point it at a body of water or other liquid. You learn the liquid's deepest point or its average depth (your choice). In addition, you can use an action to expend 1 charge while you are submerged in a liquid to determine how far you are beneath the liquid's surface.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-direction", - "fields": { - "name": "Wand of Direction", - "desc": "This crooked, twisting wand is crafted of polished ebony with a small, silver arrow affixed to its tip. The wand has 3 charges. While holding it, you can expend 1 charge as an action to make the wand remember your path for up to 1,760 feet of movement. You can increase the length of the path the wand remembers by 1,760 feet for each additional charge you expend. When you expend a charge to make the wand remember your current path, the wand forgets the oldest path of up to 1,760 feet that it remembers. If you wish to retrace your steps, you can use a bonus action to activate the wand’s arrow. The arrow guides you, pointing and mentally tugging you in the direction you should go. The wand’s magic allows you to backtrack with complete accuracy despite being lost, unable to see, or similar hindrances against finding your way. The wand can’t counter or dispel magic effects that cause you to become lost or misguided, but it can guide you back in spite of some magic hindrances, such as guiding you through the area of a darkness spell or guiding you if you had activated the wand then forgotten the way due to the effects of the modify memory spell on you. The wand regains all expended charges daily at dawn. If you expend the wand’s last charge, roll a d20. On a roll of 1, the wand straightens and the arrow falls off, rendering it nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-drowning", - "fields": { - "name": "Wand of Drowning", - "desc": "This wand appears to be carved from the bones of a large fish, which have been cemented together. The wand has 3 charges and regains 1d3 expended charges daily at dawn. While holding this wand, you can use an action to expend 1 charge to cause a thin stream of seawater to spray toward a creature you can see within 60 feet of you. If the target can breathe only air, it must succeed on a DC 15 Constitution saving throw or its lungs fill with rancid seawater and it begins drowning. A drowning creature chokes for a number of rounds equal to its Constitution modifier (minimum of 1 round). At the start of its turn after its choking ends, the creature drops to 0 hit points and is dying, and it can't regain hit points or be stabilized until it can breathe again. A successful DC 15 Wisdom (Medicine) check removes the seawater from the drowning creature's lungs, ending the effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-extinguishing", - "fields": { - "name": "Wand of Extinguishing", - "desc": "This charred and blackened wooden wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to extinguish a nonmagical flame within 10 feet of you that is no larger than a small campfire. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand transforms into a wand of ignition.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-fermentation", - "fields": { - "name": "Wand of Fermentation", - "desc": "Fashioned out of oak, this wand appears heavily stained by an unknown liquid. The wand has 7 charges and regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand explodes in a puff of black smoke and is destroyed. While holding the wand, you can use an action and expend 1 or more of its charges to transform nonmagical liquid, such as blood, apple juice, or water, into an alcoholic beverage. For each charge you expend, you transform up to 1 gallon of nonmagical liquid into an equal amount of beer, wine, or other spirit. The alcohol transforms back into its original form if it hasn't been consumed within 24 hours of being transformed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-flame-control", - "fields": { - "name": "Wand of Flame Control", - "desc": "This wand is fashioned from a branch of pine, stripped of bark and beaded with hardened resin. The wand has 3 charges. If you use the wand as an arcane focus while casting a spell that deals fire damage, you can expend 1 charge as part of casting the spell to increase the spell's damage by 1d4. In addition, while holding the wand, you can use an action to expend 1 of its charges to cause one of the following effects: - Change the color of any flames within 30 feet.\n- Cause a single flame to burn lower, halving the range of light it sheds but burning twice as long.\n- Cause a single flame to burn brighter, doubling the range of the light it sheds but halving its duration. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand bursts into flames and burns to ash in seconds.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-giggles", - "fields": { - "name": "Wand of Giggles", - "desc": "This wand is tipped with a feather. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges and point the wand at a humanoid you can see within 30 feet of you. The target must succeed on a DC 10 Charisma saving throw or be forced to giggle for 1 minute. Giggling doesn't prevent a target from taking actions or moving. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Tears.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-guidance", - "fields": { - "name": "Wand of Guidance", - "desc": "This slim, metal wand is topped with a cage shaped like a three-sided pyramid. An eye of glass sits within the pyramid. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the guidance spell from it. The wand regains all expended charges at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Resistance.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-harrowing", - "fields": { - "name": "Wand of Harrowing", - "desc": "The tips of this twisted wooden wand are exceptionally withered. The wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand disintegrates into useless white powder. Affliction. While holding the wand, you can use an action to expend 1 charge to cause a creature you can see within 60 feet of you to become afflicted with unsightly, weeping sores. The target must succeed on a DC 15 Constitution saving throw or have disadvantage on all Dexterity and Charisma checks for 1 minute. An afflicted creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Pain. While holding the wand, you can use an action to expend 3 charges to cause a creature you can see within 60 feet of you to become wracked with terrible pain. The target must succeed on a DC 15 Constitution saving throw or take 4d6 necrotic damage, and its movement speed is halved for 1 minute. A pained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself a success. If the target is also suffering from the Affliction property of this wand, it has disadvantage on the saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-ignition", - "fields": { - "name": "Wand of Ignition", - "desc": "The cracks in this charred and blackened wooden wand glow like live coals, but the wand is merely warm to the touch. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to set fire to one flammable object or collection of material (a stack of paper, a pile of kindling, or similar) within 10 feet of you that is Small or smaller. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Extinguishing.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-plant-destruction", - "fields": { - "name": "Wand of Plant Destruction", - "desc": "This wand of petrified wood has 7 charges. While holding it, you can use an action to expend up to 3 of its charges to harm a plant or plant creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw, taking 2d8 necrotic damage for each charge you expended on a failed save, or half as much damage on a successful one. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand shatters and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-relieved-burdens", - "fields": { - "name": "Wand of Relieved Burdens", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and touch a creature with the wand. If the creature is blinded, charmed, deafened, frightened, paralyzed, poisoned, or stunned, the condition is removed from the creature and transferred to you. You suffer the condition for the remainder of its duration or until it is removed. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand crumbles to dust and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-resistance", - "fields": { - "name": "Wand of Resistance", - "desc": "This slim, wooden wand is topped with a small, spherical cage, which holds a pyramid-shaped piece of hematite. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the resistance spell. The wand regains all expended charges at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Guidance .", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-revealing", - "fields": { - "name": "Wand of Revealing", - "desc": "Crystal beads decorate this wand, and a silver hand, index finger extended, caps it. The wand has 3 charges and regains all expended charges daily at dawn. While holding it, you can use an action to expend 1 of the wand's charges to reveal one creature or object within 120 feet of you that is either invisible or ethereal. This works like the see invisibility spell, except it allows you to see only that one creature or object. That creature or object remains visible as long as it remains within 120 feet of you. If more than one invisible or ethereal creature or object is in range when you use the wand, it reveals the nearest creature or object, revealing invisible creatures or objects before ethereal ones.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-tears", - "fields": { - "name": "Wand of Tears", - "desc": "The top half of this wooden wand is covered in thorns. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges and point the wand at a humanoid you can see within 30 feet of you. The target must succeed on a DC 10 Charisma saving throw or be forced to cry for 1 minute. Crying doesn't prevent a target from taking actions or moving. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Giggles .", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-the-timekeeper", - "fields": { - "name": "Wand of the Timekeeper", - "desc": "This smoothly polished wooden wand is perfectly balanced in the hand. Its grip is wrapped with supple leather strips, and its length is decorated with intricate arcane symbols. When you use it while playing a drum, you have advantage on Charisma (Performance) checks. The wand has 5 charges for the following properties. It regains 1d4 + 1 charges daily at dawn. Erratic. While holding the wand, you can use an action to expend 2 charges to force one creature you can see to re-roll its initiative at the end of each of its turns for 1 minute. An unwilling creature that succeeds on a DC 15 Wisdom saving throw is unaffected. Synchronize. While holding the wand, you can use an action to expend 1 charge to choose one creature you can see who has not taken its turn this round. That creature takes its next turn immediately after yours regardless of its turn in the Initiative order. An unwilling creature that succeeds on a DC 15 Wisdom saving throw is unaffected.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-treasure-finding", - "fields": { - "name": "Wand of Treasure Finding", - "desc": "This wand is adorned with gold and silver inlay and topped with a faceted crystal. The wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For 1 minute, you know the direction and approximate distance of the nearest mass or collection of precious metals or minerals within 60 feet. You can concentrate on a specific metal or mineral, such as silver, gold, or diamonds. If the specific metal or mineral is within 60 feet, you are able to discern all locations in which it is found and the approximate amount in each location. The wand's magic can penetrate most barriers, but it is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead. The effect ends if you stop holding the wand. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand turns to lead and becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-vapors", - "fields": { - "name": "Wand of Vapors", - "desc": "Green gas swirls inside this slender, glass wand. The wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand shatters into hundreds of crystalline fragments, and the gas within it dissipates. Fog Cloud. While holding the wand, you can use an action to expend 1 or more of its charges to cast the fog cloud spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend. Gaseous Escape. When you are attacked while holding this wand, you can use your reaction to expend 3 of its charges to transform yourself and everything you are wearing and carrying into a cloud of green mist until the start of your next turn. While you are a cloud of green mist, you have resistance to nonmagical damage, and you can’t be grappled or restrained. While in this form, you also can’t talk or manipulate objects, any objects you were wearing or holding can’t be dropped, used, or otherwise interacted with, and you can’t attack or cast spells.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-windows", - "fields": { - "name": "Wand of Windows", - "desc": "This clear, crystal wand has 3 charges. You can use an action to expend 1 charge and touch the wand to any nonmagical object. The wand causes a portion of the object, up to 1-foot square and 6 inches deep, to become transparent for 1 minute. The effect ends if you stop holding the wand. The wand regains 1d3 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand slowly becomes cloudy until it is completely opaque and becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "ward-against-wild-appetites", - "fields": { - "name": "Ward Against Wild Appetites", - "desc": "Seventeen animal teeth of various sizes hang together on a simple leather thong, and each tooth is dyed a different color using pigments from plants native to old-growth forests. When a beast or monstrosity with an Intelligence of 4 or lower targets you with an attack, it has disadvantage on the attack roll if the attack is a bite. You must be wearing the necklace to gain this benefit.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "warding-icon", - "fields": { - "name": "Warding Icon", - "desc": "This carved piece of semiprecious stone typically takes the form of an angelic figure or a shield carved with a protective rune, and it is commonly worn attached to clothing or around the neck on a chain or cord. While wearing the stone, you have brief premonitions of danger and gain a +2 bonus to initiative if you aren't incapacitated.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "warlocks-aegis", - "fields": { - "name": "Warlock's Aegis", - "desc": "When you attune to this mundane-looking suit of leather armor, symbols related to your patron burn themselves into the leather, and the armor's colors change to those most closely associated with your patron. While wearing this armor, you can use an action and expend a spell slot to increase your AC by an amount equal to your Charisma modifier for the next 8 hours. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "warrior-shabti", - "fields": { - "name": "Warrior Shabti", - "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wave-chain-mail", - "fields": { - "name": "Wave Chain Mail", - "desc": "The rows of chain links of this armor seem to ebb and flow like waves while worn. Attacks against you have disadvantage while at least half of your body is submerged in water. In addition, when you are attacked, you can turn all or part of your body into water as a reaction, gaining immunity to bludgeoning, piercing, and slashing damage from nonmagical weapons, until the end of the attacker's turn. Once used, this property of the armor can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wayfarers-candle", - "fields": { - "name": "Wayfarer's Candle", - "desc": "This beeswax candle is stamped with a holy symbol, typically one of a deity associated with light or protection. When lit, it sheds light and heat as a normal candle for up to 1 hour, but it can't be extinguished by wind of any force. It can be blown out or extinguished only by the creature holding it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "web-arrows", - "fields": { - "name": "Web Arrows", - "desc": "Carvings of spiderwebs decorate the arrowhead and shaft of these arrows, which always come in pairs. When you fire the arrows from a bow, they become the two anchor points for a 20-foot cube of thick, sticky webbing. Once you fire the first arrow, you must fire the second arrow within 1 minute. The arrows must land within 20 feet of each other, or the magic fails. The webs created by the arrows are difficult terrain and lightly obscure the area. Each creature that starts its turn in the webs or enters them during its turn must make a DC 13 Dexterity saving throw. On a failed save, the creature is restrained as long as it remains in the webs or until it breaks free. A creature, including the restrained creature, can take its action to break the creature free from the webbing by succeeding on a DC 13 Strength check. The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "webbed-staff", - "fields": { - "name": "Webbed Staff", - "desc": "This staff is carved of ebony and wrapped in a net of silver wire. While holding it, you can't be caught in webs of any sort and can move through webs as if they were difficult terrain. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, spidersilk surrounds the staff in a cocoon then quickly unravels itself and the staff, destroying the staff.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "whip-of-fangs", - "fields": { - "name": "Whip of Fangs", - "desc": "The skin of a large asp is woven into the leather of this whip. The asp's head sits nestled among the leather tassels at its tip. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit with an attack using this magic weapon, the target takes an extra 1d4 poison damage and must succeed on a DC 13 Constitution saving throw or be poisoned until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "whispering-cloak", - "fields": { - "name": "Whispering Cloak", - "desc": "This cloak is made of black, brown, and white bat pelts sewn together. While wearing it, you have blindsight out to a range of 60 feet. While wearing this cloak with its hood up, you transform into a creature of pure shadow. While in shadow form, your Armor Class increases by 2, you have advantage on Dexterity (Stealth) checks, and you can move through a space as narrow as 1 inch wide without squeezing. You can cast spells normally while in shadow form, but you can't make ranged or melee attacks with nonmagical weapons. In addition, you can't pick up objects, and you can't give objects you are wearing or carrying to others. This effect lasts up to 1 hour. Deduct time spent in shadow form in increments of 1 minute from the total time. After it has been used for 1 hour, the cloak can't be used in this way again until the next dusk, when its time limit resets. Pulling the hood up or down requires an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "whispering-powder", - "fields": { - "name": "Whispering Powder", - "desc": "A paper envelope contains enough of this fine dust for one use. You can use an action to sprinkle the dust on the ground in up to four contiguous spaces. When a Small or larger creature steps into one of these spaces, it must make a DC 13 Dexterity saving throw. On a failure, loud squeals, squeaks, and pops erupt with each footfall, audible out to 150 feet. The powder's creator dictates the manner of sounds produced. The first creature to enter the affected spaces sets off the alarm, consuming the powder's magic. Otherwise, the effect lasts as long as the powder coats the area.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "white-ape-hide", - "fields": { - "name": "White Ape Hide", - "desc": "This armor was made from the remains of a White Ape (see Tome of Beasts) that fell in battle. While wearing this armor, you gain a +2 bonus to AC. In addition, the armor has the following properties while you wear it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "white-ape-leather", - "fields": { - "name": "White Ape Leather", - "desc": "This armor was made from the remains of a White Ape (see Tome of Beasts) that fell in battle. While wearing this armor, you gain a +2 bonus to AC. In addition, the armor has the following properties while you wear it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "white-dandelion", - "fields": { - "name": "White Dandelion", - "desc": "When you are attacked or are the target of a spell while holding this magically enhanced flower, you can use a reaction to blow on the flower. It explodes in a flurry of seeds that distracts your attacker, and you add 1 to your AC against the attack or to your saving throw against the spell. Afterwards, the flower wilts and becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "white-honey-buckle", - "fields": { - "name": "White Honey Buckle", - "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "windwalker-boots", - "fields": { - "name": "Windwalker Boots", - "desc": "These lightweight boots are made of soft leather. While you wear these boots, you can walk on air as if it were solid ground. Your speed is halved when ascending or descending on the air. Otherwise, you can walk on air at your walking speed. You can use the Dash action as normal to increase your movement during your turn. If you don't end your movement on solid ground, you fall at the end of your turn unless otherwise supported, such as by gripping a ledge or hanging from a rope.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "wisp-of-the-void", - "fields": { - "name": "Wisp of the Void", - "desc": "The interior of this bottle is pitch black, and it feels empty. When opened, it releases a black vapor. When you inhale this vapor, your eyes go completely black. For 1 minute, you have darkvision out to a range of 60 feet, and you have resistance to necrotic damage. In addition, you gain a +1 bonus to damage rolls made with a weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "witch-ward-bottle", - "fields": { - "name": "Witch Ward Bottle", - "desc": "This small pottery jug contains an odd assortment of pins, needles, and rosemary, all sitting in a small amount of wine. A bloody fingerprint marks the top of the cork that seals the jug. When placed within a building (as small as a shack or as large as a castle) or buried in the earth on a section of land occupied by humanoids (as small as a campsite or as large as an estate), the bottle's magic protects those within the building or on the land against the magic of fey and fiends. The humanoid that owns the building or land and any ally or invited guests within the building or on the land has advantage on saving throws against the spells and special abilities of fey and fiends. If a protected creature fails its saving throw against a spell with a duration other than instantaneous, that creature can choose to succeed instead. Doing so immediately drains the jug's magic, and it shatters.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "witchs-brew", - "fields": { - "name": "Witch's Brew", - "desc": "For 1 minute after drinking this potion, your spell attacks deal an extra 1d4 necrotic damage on a hit. This revolting green potion's opaque liquid bubbles and steams as if boiling.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "wolf-brush", - "fields": { - "name": "Wolf Brush", - "desc": "From a distance, this weapon bears a passing resemblance to a fallen tree branch. This unique polearm was first crafted by a famed martial educator and military general from the collected weapons of his fallen compatriots. Each point on this branching spear has a history of its own and is infused with the pain of loss and the glory of military service. When wielded in battle, each of the small, branching spear points attached to the polearm's shaft pulses with a warm glow and burns with the desire to protect the righteous. When not using it, you can fold the branches inward and sheathe the polearm in a leather wrap. You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you hold this weapon, it sheds dim light in a 5-foot radius. You can fold and wrap the weapon as an action, extinguishing the light. While holding or carrying the weapon, you have resistance to piercing damage. The weapon has 10 charges for the following other properties. The weapon regains 1d8 + 2 charges daily at dawn. In addition, it regains 1 charge when exposed to powerful magical sunlight, such as the light created by the sunbeam and sunburst spells, and it regains 1 charge each round it remains exposed to such sunlight. Spike Barrage. While wielding this weapon, you can use an action to expend 1 or more of its charges and sweep the weapon in a small arc to release a barrage of spikes in a 15-foot cone. Each creature in the area must make a DC 17 Dexterity saving throw, taking 1d10 piercing damage for each charge you expend on a failed save, or half as much damage on a successful one. Spiked Wall. While wielding this weapon, you can use an action to expend 6 charges to cast the wall of thorns spell (save DC 17) from it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wolfbite-ring", - "fields": { - "name": "Wolfbite Ring", - "desc": "This heavy iron ring is adorned with the stylized head of a snarling wolf. The ring has 3 charges and regains 1d3 expended charges daily at dawn. When you make a melee weapon attack while wearing this ring, you can use a bonus action to expend 1 of the ring's charges to deal an extra 2d6 piercing damage to the target. Then, the target must succeed on a DC 15 Strength saving throw or be knocked prone.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "worg-salve", - "fields": { - "name": "Worg Salve", - "desc": "Brewed by hags and lycanthropes, this oil grants you lupine features. Each pot contains enough for three applications. One application grants one of the following benefits (your choice): darkvision out to a range of 60 feet, advantage on Wisdom (Perception) checks that rely on smell, a walking speed of 50 feet, or a new attack option (use the statistics of a wolf 's bite attack) for 5 minutes. If you use all three applications at one time, you can cast polymorph on yourself, transforming into a wolf. While you are in the form of a wolf, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "worry-stone", - "fields": { - "name": "Worry Stone", - "desc": "This smooth, rounded piece of semiprecious crystal has a thumb-sized groove worn into one side. Physical contact with the stone helps clear the mind and calm the nerves, promoting success. If you spend 1 minute rubbing the stone, you have advantage on the next ability check you make within 1 hour of rubbing the stone. Once used, the stone can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "wraithstone", - "fields": { - "name": "Wraithstone", - "desc": "This stone is carved from petrified roots to reflect the shape and visage of a beast. The stone holds the spirit of a sacrificed beast of the type the stone depicts. A wraithstone is often created to grant immortal life to a beloved animal companion or to banish a troublesome predator. The creature's essence stays within until the stone is broken, upon which point the soul is released and the creature can't be resurrected or reincarnated by any means short of a wish spell. While attuned to and carrying this item, a spectral representation of the beast walks beside you, resembling the sacrificed creature's likeness in its prime. The specter follows you at all times and can be seen by all. You can use a bonus action to dismiss or summon the specter. So long as you carry this stone, you can interact with the creature as if it were still alive, even speaking to it if it is able to speak, though it can't physically interact with the material world. It can gesture to indicate directions and communicate very basic single-word ideas to you telepathically. The stone has a number of charges, depending on the size of the creature stored within it. The stone has 6 charges if the creature is Large or smaller, 10 charges if the creature is Huge, and 12 charges if the creature is Gargantuan. After all of the stone's charges have been used, the beast's spirit is completely drained, and the stone becomes a nonmagical bauble. As a bonus action, you can expend 1 charge to cause one of the following effects:", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "wrathful-vapors", - "fields": { - "name": "Wrathful Vapors", - "desc": "Roiling vapors of red, orange, and black swirl in a frenzy of color inside a sealed glass bottle. As an action, you can open the bottle and empty its contents within 5 feet of you or throw the bottle up to 20 feet, shattering it on impact. If you throw it, make a ranged attack against a creature or object, treating the bottle as an improvised weapon. When you open or break the bottle, the smoke releases in a 20-foot-radius sphere that dissipates at the end of your next turn. A creature that isn't an undead or a construct that enters or starts its turn in the area must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. On its turn, a creature overcome with rage must attack the creature nearest to it with whatever melee weapon it has on hand, moving up to its speed toward the target, if necessary. The raging creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "zephyr-shield", - "fields": { - "name": "Zephyr Shield", - "desc": "This round metal shield is painted bright blue with swirling white lines across it. You gain a +2 bonus to AC while you wield this shield. This is an addition to the shield's normal AC bonus. Air Bubble. Whenever you are immersed in a body of water while holding this shield, you can use a reaction to envelop yourself in a 10-foot radius bubble of fresh air. This bubble floats in place, but you can move it up to 30 feet during your turn. You are moved with the bubble when it moves. The air within the bubble magically replenishes itself every round and prevents foreign particles, such as poison gases and water-borne parasites, from entering the area. Other creatures can leave or enter the bubble freely, but it collapses as soon as you exit it. The exterior of the bubble is immune to damage and creatures making ranged attacks against anyone inside the bubble have disadvantage on their attack rolls. The bubble lasts for 1 minute or until you exit it. Once used, this property can’t be used again until the next dawn. Sanctuary. You can use a bonus action to cast the sanctuary spell (save DC 13) from the shield. This spell protects you from only water elementals and other creatures composed of water. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ziphian-eye-amulet", - "fields": { - "name": "Ziphian Eye Amulet", - "desc": "This gold amulet holds a preserved eye from a Ziphius (see Creature Codex). It has 3 charges, and it regains all expended charges daily at dawn. While wearing this amulet, you can use a bonus action to speak its command word and expend 1 of its charges to create a brief magical bond with a creature you can see within 60 feet of you. The target must succeed on a DC 15 Wisdom saving throw or be magically bonded with you until the end of your next turn. While bonded in this way, you can choose to have advantage on attack rolls against the target or cause the target to have disadvantage on attack rolls against you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "zipline-ring", - "fields": { - "name": "Zipline Ring", - "desc": "This plain gold ring features a magnificent ruby. While wearing the ring, you can use an action to cause a crimson zipline of magical force to extend from the gem in the ring and attach to up to two solid surfaces you can see. Each surface must be within 150 feet of you. Once the zipline is connected, you can use a bonus action to magically travel up to 50 feet along the line between the two surfaces. You can bring along objects as long as their weight doesn't exceed what you can carry. While the zipline is active, you remain suspended within 5 feet of the line, floating off the ground at least 3 inches, and you can't move more than 5 feet away from the zipline. When you magically travel along the line, you don't provoke opportunity attacks. The hand wearing the ring must be pointed at the line when you magically travel along it, but you otherwise can act normally while the zipline is active. You can use a bonus action to end the zipline. When the zipline has been active for a total of 1 minute, the ring's magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -} -] + { + "model": "api_v2.item", + "pk": "vom_aberrant-agreement", + "fields": { + "name": "Aberrant Agreement", + "desc": "This long scroll bears strange runes and seals of eldritch powers. When you use an action to present this scroll to an aberration whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the aberration, negotiating a service from it in exchange for a reward. The aberration is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the aberration, the truce is broken, and the creature can act normally. If the aberration refuses the offer, it is free to take any actions it wishes. Should you and the aberration reach an agreement that is satisfactory to both parties, you must sign the agreement and have the aberration do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the aberration to the agreement until its service is rendered and the reward paid, at which point the scroll blackens and crumbles to dust. An aberration's thinking is alien to most humanoids, and vaguely worded contracts may result in unintended consequences, as the creature may have different thoughts as to how to best meet the goal. If either party breaks the bargain, that creature immediately takes 10d6 psychic damage, and the charter is destroyed, ending the contract.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_accursed-idol", + "fields": { + "name": "Accursed Idol", + "desc": "Carved from a curious black stone of unknown origin, this small totem is fashioned in the macabre likeness of a Great Old One. While attuned to the idol and holding it, you gain the following benefits:\n- You can speak, read, and write Deep Speech.\n- You can use an action to speak the idol's command word and send otherworldly spirits to whisper in the minds of up to three creatures you can see within 30 feet of you. Each target must make a DC 13 Charisma saving throw. On a failed save, a creature takes 2d6 psychic damage and is frightened of you for 1 minute. On a successful save, a creature takes half as much damage and isn't frightened. If a target dies from this damage or while frightened, the otherworldly spirits within the idol are temporarily sated, and you don't suffer the effects of the idol's Otherworldly Whispers property at the next dusk. Once used, this property of the idol can't be used again until the next dusk.\n- You can use an action to cast the augury spell from the idol. The idol can't be used this way again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_adamantine-spearbiter", + "fields": { + "name": "Adamantine Spearbiter", + "desc": "The front of this shield is fashioned in the shape of a snarling wolf ’s head. Spearbiter (Uncommon). When a creature you can see within 5 feet of you makes a melee weapon attack against you, you can use a reaction to attack the attacker’s weapon, the wolf ’s head animating and snapping its jaws at the weapon. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. If the result is higher than the attacker’s attack roll against you, the attacker’s attack misses you. You can’t use this property of the shield again until the next dawn. Adamantine Spearbiter (Rare). A more powerful version of this shield exists. Its wolf ’s head is fitted with adamantine fangs and appears larger and more menacing. When you use your reaction and animate the wolf ’s head to snap at the attacker’s weapon, you have advantage on the attack roll. In addition, there is no longer a limit to the number of times you can use this property of the shield.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_agile-breastplate", + "fields": { + "name": "Agile Breastplate", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_agile-chain-mail", + "fields": { + "name": "Agile Chain Mail", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_agile-chain-shirt", + "fields": { + "name": "Agile Chain Shirt", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_agile-half-plate", + "fields": { + "name": "Agile Half Plate", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_agile-hide", + "fields": { + "name": "Agile Hide", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_agile-plate", + "fields": { + "name": "Agile Plate", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_agile-ring-mail", + "fields": { + "name": "Agile Ring Mail", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_agile-scale-mail", + "fields": { + "name": "Agile Scale Mail", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_agile-splint", + "fields": { + "name": "Agile Splint", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_air-seed", + "fields": { + "name": "Air Seed", + "desc": "This plum-sized, nearly spherical sandstone is imbued with a touch of air magic. Typically, 1d4 + 4 air seeds are found together. You can use an action to throw the seed up to 60 feet. The seed explodes on impact and is destroyed. When it explodes, the seed releases a burst of fresh, breathable air, and it disperses gas or vapor and extinguishes candles, torches, and similar unprotected flames within a 10-foot radius of where the seed landed. Each suffocating or choking creature within a 10-foot radius of where the seed landed gains a lung full of air, allowing the creature to hold its breath for 5 minutes. If you break the seed while underwater, each creature within a 10-foot radius of where you broke the seed gains a lung full of air, allowing the creature to hold its breath for 5 minutes.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_akaasit-blade", + "fields": { + "name": "Akaasit Blade", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. This dagger is crafted from the arm blade of a defeated Akaasit (see Tome of Beasts 2). You can use an action to activate a small measure of prescience within the dagger for 1 minute. If you are attacked by a creature you can see within 5 feet of you while this effect is active, you can use your reaction to make one attack with this dagger against the attacker. If your attack hits, the dagger loses its prescience, and its prescience can't be activated again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_alabaster-salt-shaker", + "fields": { + "name": "Alabaster Salt Shaker", + "desc": "This shaker is carved from purest alabaster in the shape of an owl. It is 7 inches tall and contains enough salt to flavor 25 meals. When the shaker is empty, it can't be refilled, and it becomes nonmagical. When you or another creature eat a meal salted by this shaker, you don't need to eat again for 48 hours, at which point the magic wears off. If you don't eat within 1 hour of the magic wearing off, you gain one level of exhaustion. You continue gaining one level of exhaustion for each additional hour you don't eat.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_alchemical-lantern", + "fields": { + "name": "Alchemical Lantern", + "desc": "This hooded lantern has 3 charges and regains all expended charges daily at dusk. While the lantern is lit, you can use an action to expend 1 charge to cause the lantern to spit gooey alchemical fire at a creature you can see in the lantern's bright light. The lantern makes its attack roll with a +5 bonus. On a hit, the target takes 2d6 fire damage, and it ignites. Until a creature takes an action to douse the fire, the target takes 1d6 fire damage at the start of each of its turns.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_alembic-of-unmaking", + "fields": { + "name": "Alembic of Unmaking", + "desc": "This large alembic is a glass retort supported by a bronze tripod and connected to a smaller glass container by a bronze spout. The bronze fittings are etched with arcane symbols, and the glass parts of the alembic sometimes emit bright, amethyst sparks. If a magic item is placed inside the alembic and a fire lit beneath it, the magic item dissolves and its magical energy drains into the smaller container. Artifacts, legendary magic items, and any magic item that won't physically fit into the alembic (anything larger than a shortsword or a cloak) can't be dissolved in this way. Full dissolution and distillation of an item's magical energy takes 1 hour, but 10 minutes is enough time to render most items nonmagical. If an item spends a full hour dissolving in the alembic, its magical energy coalesces in the smaller container as a lump of material resembling gray-purple, stiff dough known as arcanoplasm. This material is safe to handle and easy to incorporate into new magic items. Using arcanoplasm while creating a magic item reduces the cost of the new item by 10 percent per degree of rarity of the magic item that was distilled into the arcanoplasm. An alembic of unmaking can distill or disenchant one item per 24 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_almanac-of-common-wisdom", + "fields": { + "name": "Almanac of Common Wisdom", + "desc": "The dog-eared pages of this thick, weathered tome contain useful advice, facts, and statistical information on a wide range of topics. The topics change to match information relevant to the area where it is currently located. If you spend a short rest consulting the almanac, you treat your proficiency bonus as 1 higher when making any Intelligence, Wisdom, or Charisma skill checks to discover, recall, or cite information about local events, locations, or creatures for the next 4 hours. For example, this almanac's magic can help you recall and find the location of a city's oldest tavern, but its magic won't help you notice a thug hiding in an alley near the tavern.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_amulet-of-memory", + "fields": { + "name": "Amulet of Memory", + "desc": "Made of gold or silver, this spherical locket is engraved with two cresting waves facing away from each other while bound in a twisted loop. It preserves a memory to be reexperienced later. While wearing this amulet, you can use an action to speak the command word and open the locket. The open locket stores what you see and experience for up to 10 minutes. You can shut the locket at any time (no action required), stopping the memory recording. Opening the locket with the command word again overwrites the contained memory. While a memory is stored, you or another creature can touch the locket to experience the memory from the beginning. Breaking contact ends the memory early. In addition, you have advantage on any skill check related to details or knowledge of the stored memory. If you die while wearing the amulet, it preserves you. Your body is affected by the gentle repose spell until the amulet is removed or until you are restored to life. In addition, at the moment of your death, you can store any memory into the amulet. A creature touching the amulet perceives the memory stored there even after your death. Attuning to an amulet of memory removes any prior memories stored in it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_amulet-of-sustaining-health", + "fields": { + "name": "Amulet of Sustaining Health", + "desc": "While wearing this amulet, you need to eat and drink only once every 7 days. In addition, you have advantage on saving throws against effects that would cause you to suffer a level of exhaustion.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_amulet-of-the-oracle", + "fields": { + "name": "Amulet of the Oracle", + "desc": "When you finish a long rest while wearing this amulet, you can choose one cantrip from the cleric spell list. You can cast that cantrip from the amulet at will, using Wisdom as your spellcasting ability for it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_amulet-of-whirlwinds", + "fields": { + "name": "Amulet of Whirlwinds", + "desc": "This amulet is strung on a brass necklace and holds a piece of djinn magic. The amulet has 9 charges. You can use an action to expend 1 of its charges to create a whirlwind on a point you can see within 60 feet of you. The whirlwind is a 5-foot-radius, 30-foot-tall cylinder of swirling air that lasts as long as you maintain concentration (as if concentrating on a spell). Any creature other than you that enters the whirlwind must succeed on a DC 15 Strength saving throw or be restrained by it. You can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if you lose sight of it. A creature within 5 feet of the whirlwind can pull a creature out of it by taking an action to make a DC 15 Strength check and succeeding. A restrained creature can try to escape by taking an action to make a DC 15 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the whirlwind. When all of the amulet's charges are expended, the amulet becomes a nonmagical piece of jewelry worth 50 gp.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_anchor-of-striking", + "fields": { + "name": "Anchor of Striking", + "desc": "This small rusty iron anchor feels sturdy in spite of its appearance. You gain a +1 bonus to attack and damage rolls made with this magic war pick. When you roll a 20 on an attack roll made with this weapon, the target is wrapped in ethereal golden chains that extend from the bottom of the anchor. As an action, the chained target can make a DC 15 Strength or Dexterity check, freeing itself from the chains on a success. Alternatively, you can use a bonus action to command the chains to disappear, freeing the target. The chains are constructed of magical force and can't be damaged, though they can be destroyed with a disintegrate spell. While the target is wrapped in these chains, you and the target can't move further than 50 feet from each other.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_angelic-earrings", + "fields": { + "name": "Angelic Earrings", + "desc": "These earrings feature platinum loops from which hang bronzed claws from a Chamrosh (see Tome of Beasts 2), freely given by the angelic hound. While wearing these earrings, you have advantage on Wisdom (Insight) checks to determine if a creature is lying or if it has an evil alignment. If you cast detect evil and good while wearing these earrings, the range increases to 60 feet, and the spell lasts 10 minutes without requiring concentration.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_angry-hornet", + "fields": { + "name": "Angry Hornet", + "desc": "This black ammunition has yellow fletching or yellow paint. When you fire this magic ammunition, it makes an angry buzzing sound, and it multiplies in flight. As it flies, 2d4 identical pieces of ammunition magically appear around it, all speeding toward your target. Roll separate attack rolls for each additional arrow or bullet. Duplicate ammunition disappears after missing or after dealing its damage. If the angry hornet and all its duplicates miss, the angry hornet remains magical and can be fired again, otherwise it is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_animated-abacus", + "fields": { + "name": "Animated Abacus", + "desc": "If you speak a mathematical equation within 5 feet of this abacus, it calculates the equation and displays the solution. If you are touching the abacus, it calculates only the equations you speak, ignoring all other spoken equations.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_animated-chain-mail", + "fields": { + "name": "Animated Chain Mail", + "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can use an action to cause parts of the armor to unravel into long, animated chains. While the chains are active, you have a climbing speed equal to your walking speed, and your AC is reduced by 2. You can use a bonus action to deactivate the chains, returning the armor to normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ankh-of-aten", + "fields": { + "name": "Ankh of Aten", + "desc": "This golden ankh is about 12 inches long and has 5 charges. While holding the ankh by the loop, you can expend 1 charge as an action to fire a beam of brilliant sunlight in a 5-foot-wide, 60-foot-line from the end. Each creature caught in the line must make a DC 15 Constitution saving throw. On a failed save, a creature takes a5d8 radiant damage and is blinded until the end of your next turn. On a successful save, it takes half damage and isn't blinded. Undead have disadvantage on this saving throw. The ankh regains 1d4 + 1 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_anointing-mace", + "fields": { + "name": "Anointing Mace", + "desc": "Also called an anointing gada, you gain a +1 bonus to attack and damage rolls made with this magic weapon. In addition, the ornately decorated head of the mace holds a reservoir perforated with small holes. As an action, you can fill the reservoir with a single potion or vial of liquid, such as holy water or alchemist's fire. You can press a button on the haft of the weapon as a bonus action, which opens the holes. If you hit a target with the weapon while the holes are open, the weapon deals damage as normal and the target suffers the effects of the liquid. For example,\nan anointing mace filled with holy water deals an extra 2d6 radiant damage if it hits a fiend or undead. After you press the button and make an attack roll, the liquid is expended, regardless if your attack hits.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_apron-of-the-eager-artisan", + "fields": { + "name": "Apron of the Eager Artisan", + "desc": "Created by dwarven artisans, this leather apron has narrow pockets, which hold one type of artisan's tools. If you are wearing the apron and you spend 10 minutes contemplating your next crafting project, the tools in the apron magically change to match those best suited to the task. Once you have changed the tools available, you can't change them again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_arcanaphage-stone", + "fields": { + "name": "Arcanaphage Stone", + "desc": "Similar to the rocks found in a bird's gizzard, this smooth stone helps an Arcanaphage (see Creature Codex) digest magic. While you hold or wear the stone, you have advantage on saving throws against spells.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_armor-of-cushioning", + "fields": { + "name": "Armor of Cushioning", + "desc": "While wearing this armor, you have resistance to bludgeoning damage. In addition, you can use a reaction when you fall to reduce any falling damage you take by an amount equal to twice your level.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_armor-of-the-ngobou", + "fields": { + "name": "Armor of the Ngobou", + "desc": "This thick and rough armor is made from the hide of a Ngobou (see Tome of Beasts), an aggressive, ox-sized dinosaur known to threaten elephants of the plains. The horns and tusks of the dinosaur are worked into the armor as spiked shoulder pads. While wearing this armor, you gain a +1 bonus to AC, and you have a magical sense for elephants. You automatically detect if an elephant has passed within 90 feet of your location within the last 24 hours, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) checks you make to find elephants.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_arrow-of-grabbing", + "fields": { + "name": "Arrow of Grabbing", + "desc": "This arrow has a barbed head and is wound with a fine but strong thread that unravels as the arrow soars. If a creature takes damage from the arrow, the creature must succeed on a DC 17 Constitution saving throw or take 4d6 damage and have the arrowhead lodged in its flesh. A creature grabbed by this arrow can't move farther away from you. At the end of its turn, the creature can attempt a DC 17 Constitution saving throw, taking 4d6 piercing damage and dislodging the arrow on a success. As an action, you can attempt to pull the grabbed creature up to 10 feet in a straight line toward you, forcing the creature to repeat the saving throw. If the creature fails, it moves up to 10 feet closer to you. If it succeeds, it takes 4d6 piercing damage and the arrow is dislodged.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_arrow-of-unpleasant-herbs", + "fields": { + "name": "Arrow of Unpleasant Herbs", + "desc": "This arrow's tip is filled with magically preserved, poisonous herbs. When a creature takes damage from the arrow, the arrowhead breaks, releasing the herbs. The creature must succeed on a DC 15 Constitution saving throw or be incapacitated until the end of its next turn as it retches and reels from the poison.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ash-of-the-ebon-birch", + "fields": { + "name": "Ash of the Ebon Birch", + "desc": "This salve is created by burning bark from a rare ebon birch tree then mixing that ash with oil and animal blood to create a cerise pigment used to paint yourself or another creature with profane protections. Painting the pigment on a creature takes 1 minute, and you can choose to paint a specific sigil or smear the pigment on a specific part of the creature's body.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ashes-of-the-fallen", + "fields": { + "name": "Ashes of the Fallen", + "desc": "Found in a small packet, this coarse, foul-smelling black dust is made from the powdered remains of a celestial. Each packet of the substance contains enough ashes for one use. You can use an action to throw the dust in a 15-foot cone. Each spellcaster in the cone must succeed on a DC 15 Wisdom saving throw or become cursed for 1 hour or until the curse is ended with a remove curse spell or similar magic. Creatures that don't cast spells are unaffected. A cursed spellcaster must make a DC 15 Wisdom saving throw each time it casts a spell. On a success, the spell is cast normally. On a failure, the spellcaster casts a different, randomly chosen spell of the same level or lower from among the spellcaster's prepared or known spells. If the spellcaster has no suitable spells available, no spell is cast.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ashwood-wand", + "fields": { + "name": "Ashwood Wand", + "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains all expended charges daily at dawn. When you cast a spell that deals fire damage while using this wand as your spellcasting focus, the spell deals 1 extra fire damage. If you expend 1 of the wand's charges during the casting, the spell deals 1d4 + 1 extra fire damage instead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_asps-kiss", + "fields": { + "name": "Asp's Kiss", + "desc": "This haladie features two short, slightly curved blades attached to a single hilt with a short, blue-sheened spike on the hand guard. You gain a +2 bonus to attack and damage rolls made with this magic weapon. While attuned to this sword, you have immunity to poison damage, and, when you take the Dash action, the extra movement you gain is double your speed instead of equal to your speed. When you use the Attack action with this sword, you can make one attack with its hand guard spike (treat as a dagger) as a bonus action. You can use an action to cause indigo poison to coat the blades of this sword. The poison remains for 1 minute or until two attacks using the blade of this weapon hit one or more creatures. The target must succeed on a DC 17 Constitution saving throw or take 2d10 poison damage and its hit point maximum is reduced by an amount equal to the poison damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. The sword can't be used this way again until the next dawn. When you kill a creature with this weapon, it sheds a single, blue tear as it takes its last breath.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_aurochs-bracers", + "fields": { + "name": "Aurochs Bracers", + "desc": "These bracers have the graven image of a bull's head on them. Your Strength score is 19 while you wear these bracers. It has no effect on you if your Strength is already 19 or higher. In addition, when you use the Attack action to shove a creature, you have advantage on the Strength (Athletics) check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_baba-yagas-cinderskull", + "fields": { + "name": "Baba Yaga's Cinderskull", + "desc": "Warm to the touch, this white, dry skull radiates dim, orange light from its eye sockets in a 30-foot radius. While attuned to the skull, you only require half of the daily food and water a creature of your size and type normally requires. In addition, you can withstand extreme temperatures indefinitely, and you automatically succeed on saving throws against extreme temperatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_badger-hide", + "fields": { + "name": "Badger Hide", + "desc": "While wearing this hairy, black and white armor, you have a burrowing speed of 20 feet, and you have advantage on Wisdom (Perception) checks that rely on smell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bag-of-bramble-beasts", + "fields": { + "name": "Bag of Bramble Beasts", + "desc": "This ordinary bag, made from green cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, spiky object. The bag weighs 1/2 pound. You can use an action to pull the spiky object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a 1d8 and consulting the below table. The creature is a bramble version (see sidebar) of the beast listed in the table. The creature vanishes at the next dawn or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature. Once three spiky objects have been pulled from the bag, the bag can't be used again until the next dawn. Alternatively, one willing animal companion or familiar can be placed in the bag for 1 week. A non-beast animal companion or familiar that is placed in the bag is treated as if it had been placed into a bag of holding and can be removed from the bag at any time. A beast animal companion or familiar disappears once placed in the bag, and the bag's magic is dormant until the week is up. At the end of the week, the animal companion or familiar exits the bag as a bramble creature (see the template in the sidebar) and can be returned to its original form only with a wish. The creature retains its status as an animal companion or familiar after its transformation and can choose to activate or deactivate its Thorn Body trait as a bonus action. A transformed familiar can be re-summoned with the find familiar spell. Once the bag has been used to change an animal companion or familiar into a bramble creature, it becomes an ordinary, nonmagical bag. | 1d8 | Creature |\n| --- | ------------ |\n| 1 | Weasel |\n| 2 | Giant rat |\n| 3 | Badger |\n| 4 | Boar |\n| 5 | Panther |\n| 6 | Giant badger | Only a beast can become a bramble creature. It retains all its statistics except as noted below.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bag-of-traps", + "fields": { + "name": "Bag of Traps", + "desc": "Anyone reaching into this apparently empty bag feels a small coin, which resembles no known currency. Removing the coin and placing or tossing it up to 20 feet creates a random mechanical trap that remains for 10 minutes or until discharged or disarmed, whereupon it disappears. The coin returns to the bag only after the trap disappears. You may draw up to 10 traps from the bag each week. The GM has the statistics for mechanical traps.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bagpipes-of-battle", + "fields": { + "name": "Bagpipes of Battle", + "desc": "Inspire friends and strike fear in the hearts of your enemies with the drone of valor and the shrill call of martial might! You must be proficient with wind instruments to use these bagpipes. You can use an action to play them and create a fearsome and inspiring tune. Each ally within 60 feet of you that can hear the tune gains a d12 Bardic Inspiration die for 10 minutes. Each creature within 60 feet of you that can hear the tune and that is hostile to you must succeed on a DC 15 Wisdom saving throw or be frightened of you for 1 minute. A hostile creature has disadvantage on this saving throw if it is within 5 feet of you or your ally. A frightened creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once used, the bagpipes can't be used in this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_baleful-wardrums", + "fields": { + "name": "Baleful Wardrums", + "desc": "You must be proficient with percussion instruments to use these drums. The drums have 3 charges. You can use an action to play them and expend 1 charge to create a baleful rumble. Each creature of your choice within 60 feet of you that hears you play must succeed on a DC 13 Wisdom saving throw or have disadvantage on its next weapon or spell attack roll. A creature that succeeds on its saving throw is immune to the effect of these drums for 24 hours. The drum regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_band-of-iron-thorns", + "fields": { + "name": "Band of Iron Thorns", + "desc": "This black iron armband bristles with long, needle-sharp iron thorns. When you attune to the armband, the thorns bite into your flesh. The armband doesn't function unless the thorns pierce your skin and are able to reach your blood. While wearing the band, after you roll a saving throw but before the GM reveals if the roll is a success or failure, you can use your reaction to expend one Hit Die. Roll the die, and add the number rolled to your saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_band-of-restraint", + "fields": { + "name": "Band of Restraint", + "desc": "These simple leather straps are nearly unbreakable when used as restraints. If you spend 1 minute tying a Small or Medium creature's limbs with these straps, the creature is restrained (escape DC 17) until it escapes or until you speak a command word to release the straps. While restrained by these straps, the target has disadvantage on Strength checks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bandana-of-brachiation", + "fields": { + "name": "Bandana of Brachiation", + "desc": "While wearing this bright yellow bandana, you have a climbing speed of 30 feet, and you gain a +5 bonus to Strength (Athletics) and Dexterity (Acrobatics) checks to jump over obstacles, to land on your feet, and to land safely on a breakable or unstable surface, such as a tree branch or rotting wooden rafters.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bandana-of-bravado", + "fields": { + "name": "Bandana of Bravado", + "desc": "While wearing this bright red bandana, you have advantage on Charisma (Intimidation) checks and on saving throws against being frightened.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_banner-of-the-fortunate", + "fields": { + "name": "Banner of the Fortunate", + "desc": "While holding this banner aloft with one hand, you can use an action to inspire creatures nearby. Each creature of your choice within 60 feet of you that can see the banner has advantage on its next attack roll. The banner can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_battle-standard-of-passage", + "fields": { + "name": "Battle Standard of Passage", + "desc": "This battle standard hangs from a 4-foot-long pole and bears the colors and heraldry of a long-forgotten nation. You can use an action to plant the pole in the ground, causing the standard to whip and wave as if in a breeze. Choose up to six creatures within 30 feet of the standard, which can include yourself. Nonmagical difficult terrain costs the creatures you chose no extra movement. In addition, each creature you chose can pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. The standard stops waving and the effect ends after 10 minutes, or when a creature uses an action to pull the pole from the ground. The standard can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bead-of-exsanguination", + "fields": { + "name": "Bead of Exsanguination", + "desc": "This small, black bead measures 3/4 of an inch in diameter and weights an ounce. Typically, 1d4 + 1 beads of exsanguination are found together. When thrown, the bead absorbs hit points from creatures near its impact site, damaging them. A bead can store up to 50 hit points at a time. When found, a bead contains 2d10 stored hit points. You can use an action to throw the bead up to 60 feet. Each creature within a 20-foot radius of where the bead landed must make a DC 15 Constitution saving throw, taking 3d6 necrotic damage on a failed save, or half as much damage on a successful one. The bead stores hit points equal to the necrotic damage dealt. The bead turns from black to crimson the more hit points are stored in it. If the bead absorbs 50 hit points or more, it explodes and is destroyed. Each creature within a 20-foot radius of the bead when it explodes must make a DC 15 Dexterity saving throw, taking 6d6 necrotic damage on a failed save, or half as much damage on a successful one. If you are holding the bead, you can use a bonus action to determine if the bead is below or above half its maximum stored hit points. If you hold and study the bead over the course of 1 hour, which can be done during a short rest, you know exactly how many hit points are stored in the bead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bear-paws", + "fields": { + "name": "Bear Paws", + "desc": "These hand wraps are made of flexible beeswax that ooze sticky honey. While wearing these gloves, you have advantage on grapple checks. In addition, creatures grappled by you have disadvantage on any checks made to escape your grapple.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bed-of-spikes", + "fields": { + "name": "Bed of Spikes", + "desc": "This wide, wooden plank holds hundreds of two-inch long needle-like spikes. When you finish a long rest on the bed, you have resistance to piercing damage and advantage on Constitution saving throws to maintain your concentration on spells you cast for 8 hours or until you finish a short or long rest. Once used, the bed can't be used again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_belt-of-the-wilds", + "fields": { + "name": "Belt of the Wilds", + "desc": "This thin cord is made from animal sinew. While wearing the cord, you have advantage on Wisdom (Survival) checks to follow tracks left by beasts, giants, and humanoids. While wearing the belt, you can use a bonus action to speak the belt's command word. If you do, you leave tracks of the animal of your choice instead of your regular tracks. These tracks can be those of a Large or smaller beast with a CR of 1 or lower, such as a pony, rabbit, or lion. If you repeat the command word, you end the effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_berserkers-kilt-bear", + "fields": { + "name": "Berserker's Kilt (Bear)", + "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_berserkers-kilt-elk", + "fields": { + "name": "Berserker's Kilt (Elk)", + "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_berserkers-kilt-wolf", + "fields": { + "name": "Berserker's Kilt (Wolf)", + "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_big-dipper", + "fields": { + "name": "Big Dipper", + "desc": "This wooden rod is topped with a ridged ball. The rod has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the rod's last charge, roll a d20. On a 1, the rod melts into a pool of nonmagical honey and is destroyed. Anytime you expend 1 or more charges for this rod's properties, the ridged ball flows with delicious, nonmagical honey for 1 minute.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_binding-oath", + "fields": { + "name": "Binding Oath", + "desc": "This lengthy scroll is the testimony of a pious individual's adherence to their faith. The author has emphatically rewritten these claims many times, and its two slim, metal rollers are wrapped in yards of parchment. When you attune to the item, you rewrite certain passages to align with your own religious views. You can use an action to throw the scroll at a Huge or smaller creature you can see within 30 feet of you. Make a ranged attack roll. On a hit, the scroll unfurls and wraps around the creature. The target is restrained until you take a bonus action to command the scroll to release the creature. If you command it to release the creature or if you miss with the attack, the scroll curls back into a rolled-up scroll. If the restrained target's alignment is the opposite of yours along the law/chaos or good/evil axis, you can use a bonus action to cause the writing to blaze with light, dealing 2d6 radiant damage to the target. A creature, including the restrained target, can use an action to make a DC 17 Strength check to tear apart the scroll. On a success, the scroll is destroyed. Such an attempt causes the writing to blaze with light, dealing 2d6 radiant damage to both the creature making the attempt and the restrained target, whether or not the attempt is successful. Alternatively, the restrained creature can use an action to make a DC 17 Dexterity check to slip free of the scroll. This action also triggers the damage effect, but it doesn't destroy the scroll. Once used, the scroll can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bituminous-orb", + "fields": { + "name": "Bituminous Orb", + "desc": "A tarlike substance leaks continually from this orb, which radiates a cloying darkness and emanates an unnatural chill. While attuned to the orb, you have darkvision out to a range of 60 feet. In addition, you have immunity to necrotic damage, and you have advantage on saving throws against spells and effects that deal radiant damage. This orb has 6 charges and regains 1d6 daily at dawn. You can expend 1 charge as an action to lob some of the orb's viscous darkness at a creature you can see within 60 feet of you. The target must succeed on a DC 15 Dexterity saving throw or be grappled (escape DC 15). Until this grapple ends, the creature is blinded and takes 2d8 necrotic damage at the start of each of its turns, and you can use a bonus action to move the grappled creature up to 20 feet in any direction. You can't move the creature more than 60 feet away from the orb. Alternatively, you can use an action to expend 2 charges and crush the grappled creature. The creature must make a DC 15 Constitution saving throw, taking 6d8 bludgeoning damage on a failed save, or half as much damage on a successful one. You can end the grapple at any time (no action required). The orb's power can grapple only one creature at a time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_black-and-white-daggers", + "fields": { + "name": "Black and White Daggers", + "desc": "These matched daggers are identical except for the stones set in their pommels. One pommel is chalcedony (opaque white), the other is obsidian (opaque black). You gain a +1 bonus to attack and damage rolls with both magic weapons. The bonus increases to +3 when you use the white dagger to attack a monstrosity, and it increases to +3 when you use the black dagger to attack an undead. When you hit a monstrosity or undead with both daggers in the same turn, that creature takes an extra 1d6 piercing damage from the second attack.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_black-dragon-oil", + "fields": { + "name": "Black Dragon Oil", + "desc": "The viscous green-black oil within this magical ceramic pot bubbles slightly. The pot's stone stopper is sealed with greasy, dark wax. The pot contains 5 ounces of pure black dragon essence, obtained by slowly boiling the dragon in its own acidic secretions. You can use an action to apply 1 ounce of the oil to a weapon or single piece of ammunition. The next attack made with that weapon or ammunition deals an extra 2d8 acid damage to the target. A creature that takes the acid damage must succeed on a DC 15 Constitution saving throw at the start of its next turn or be burned for an extra 2d8 acid damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_black-honey-buckle", + "fields": { + "name": "Black Honey Buckle", + "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_black-phial", + "fields": { + "name": "Black Phial", + "desc": "This black stone phial has a tightly fitting stopper and 3 charges. As an action, you can fill the phial with blood taken from a living, or recently deceased (dead no longer than 1 minute), humanoid and expend 1 charge. When you do so, the black phial transforms the blood into a potion of greater healing. A creature who drinks this potion must succeed on a DC 12 Constitution saving throw or be poisoned for 1 hour. The phial regains 1d3 expended charges daily at midnight. If you expend the phial's last charge, roll a d20: 1d20. On a 1, the phial crumbles into dust and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blackguards-dagger", + "fields": { + "name": "Blackguard's Dagger", + "desc": "You have advantage on attack rolls made with this weapon against a target if another enemy of the target is within 5 feet of it, and it has no allies within 5 feet of it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blackguards-handaxe", + "fields": { + "name": "Blackguard's Handaxe", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you draw this weapon, you can use a bonus action to cast the thaumaturgy spell from it. You can have only one of the spell's effects active at a time when you cast it in this way.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blackguards-shortsword", + "fields": { + "name": "Blackguard's Shortsword", + "desc": "You have advantage on attack rolls made with this weapon against a target if another enemy of the target is within 5 feet of it, and it has no allies within 5 feet of it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blacktooth", + "fields": { + "name": "Blacktooth", + "desc": "This black ivory, rune-carved wand has 7 charges. It regains 1d6 + 1 expended charges daily at dawn. While holding it, you can use an action to expend 1 or more of its charges to cast the guiding bolt spell from it, using an attack bonus of +7. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blade-of-petals", + "fields": { + "name": "Blade of Petals", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. This brightly-colored shortsword is kept in a wooden scabbard with eternally blooming flowers. The blade is made of dull green steel, and its pommel is fashioned from hard rosewood. As a bonus action, you can conjure a flowery mist which fills a 20-foot area around you with pleasant-smelling perfume. The scent dissipates after 1 minute. A creature damaged by the blade must succeed on a DC 15 Charisma saving throw or be charmed by you until the end of its next turn. A creature can't be charmed this way more than once every 24 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blade-of-the-dervish", + "fields": { + "name": "Blade of the Dervish", + "desc": "This magic scimitar is empowered by your movements. For every 10 feet you move before making an attack, you gain a +1 bonus to the attack and damage rolls of that attack, and the scimitar deals an extra 1d6 slashing damage if the attack hits (maximum of +3 and 3d6). In addition, if you use the Dash action and move within 5 feet of a creature, you can attack that creature as a bonus action. On a hit, the target takes an extra 2d6 slashing damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blade-of-the-temple-guardian", + "fields": { + "name": "Blade of the Temple Guardian", + "desc": "This simple but elegant shortsword is a magic weapon. When you are wielding it and use the Flurry of Blows class feature, you can make your bonus attacks with the sword rather than unarmed strikes. If you deal damage to a creature with this weapon and reduce it to 0 hit points, you absorb some of its energy, regaining 1 expended ki point.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blasphemous-writ", + "fields": { + "name": "Blasphemous Writ", + "desc": "The Infernal runes inscribed upon this vellum scroll radiate a faint, crimson glow. When you use this spell scroll of command, the save DC is 15 instead of 13, and you can also affect targets that are undead or that don't understand your language.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blessed-paupers-purse", + "fields": { + "name": "Blessed Pauper's Purse", + "desc": "This worn cloth purse appears empty, even when opened, yet seems to always have enough copper pieces in it to make any purchase of urgent necessity when you dig inside. The purse produces enough copper pieces to provide for a poor lifestyle. In addition, if anyone asks you for charity, you can always open the purse to find 1 or 2 cp available to give away. These coins appear only if you truly intend to gift them to one who asks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blinding-lantern", + "fields": { + "name": "Blinding Lantern", + "desc": "This ornate brass lantern comes fitted with heavily inscribed plates shielding the cut crystal lens. With a flick of a lever, as an action, the plates rise and unleash a dazzling array of lights at a single target within 30 feet. You must use two hands to direct the lights precisely into the eyes of a foe. The target must succeed on a DC 11 Wisdom saving throw or be blinded until the end of its next turn. A creature blinded by the lantern is immune to its effects for 1 minute afterward. This property can't be used in a brightly lit area. By opening the shutter on the opposite side, the device functions as a normal bullseye lantern, yet illuminates magically, requiring no fuel and giving off no heat.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blood-mark", + "fields": { + "name": "Blood Mark", + "desc": "Used as a form of currency between undead lords and the humanoids of their lands, this coin resembles a gold ring with a single hole in the center. It holds 1 charge, visible as a red glow in the center of the coin. While holding the coin, you can use an action to expend 1 charge and regain 1d3 hit points. At the same time, the humanoid who pledged their blood to the coin takes necrotic damage and reduces their hit point maximum by an equal amount. This reduction lasts until the creature finishes a long rest. It dies if this reduces its hit point maximum to 0. You can expend the charges in up to 5 blood marks as part of the same action. To replenish an expended charge in a blood mark, a humanoid must pledge a pint of their blood in a 10-minute ritual that involves letting a drop of their blood fall through the center of the coin. The drop disappears in the process and the center fills with a red glow. There is no limit to how much blood a humanoid may pledge, but each coin can hold only 1 charge. To pledge more, the humanoid must perform the ritual on another blood mark. Any person foolish enough to pledge more than a single blood coin might find the coins all redeemed at once, since such redemptions often happen at great blood feasts held by vampires and other undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blood-pearl", + "fields": { + "name": "Blood Pearl", + "desc": "This crimson pearl feels slick to the touch and contains a mote of blood imbued with malign purpose. As an action, you can break the pearl, destroying it, and conjure a Blood Elemental (see Creature Codex) for 1 hour. The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blood-soaked-hide", + "fields": { + "name": "Blood-Soaked Hide", + "desc": "A creature that starts its turn in your space must succeed on a DC 15 Constitution saving throw or lose 3d6 hit points due to blood loss, and you regain a number of hit points equal to half the number of hit points the creature lost. Constructs and undead who aren't vampires are immune to this effect. Once used, you can't use this property of the armor again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodbow", + "fields": { + "name": "Bloodbow", + "desc": "This longbow is carved of a light, sturdy wood such as hickory or yew, and it is almost always stained a deep maroon hue, lacquered and aged under layers of sundried blood. The bow is sometimes decorated with reptilian teeth, centaur tails, or other battle trophies. The bow is designed to harm the particular type of creature whose blood most recently soaked the weapon. When you make a ranged attack roll with this magic weapon against a creature of that type, you have a +1 bonus to the attack and damage rolls. If the attack hits, the target must succeed on a DC 15 Wisdom saving throw or become enraged until the end of your next turn. While enraged, the target suffers a random short-term madness.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blooddrinker-spear", + "fields": { + "name": "Blooddrinker Spear", + "desc": "Prized by gnolls, the upper haft of this spear is decorated with tiny animal skulls, feathers, and other adornments. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit a creature with this spear, you mark that creature for 1 hour. Until the mark ends, you deal an extra 1d6 damage to the target whenever you hit it with the spear, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find the target. If the target drops to 0 hit points, the mark ends. This property can't be used on a different creature until you spend a short rest cleaning the previous target's blood from the spear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-battleaxe", + "fields": { + "name": "Bloodfuel Battleaxe", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-blowgun", + "fields": { + "name": "Bloodfuel Blowgun", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-crossbow-hand", + "fields": { + "name": "Bloodfuel Crossbow Hand", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-crossbow-heavy", + "fields": { + "name": "Bloodfuel Crossbow Heavy", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-crossbow-light", + "fields": { + "name": "Bloodfuel Crossbow Light", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-dagger", + "fields": { + "name": "Bloodfuel Dagger", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-dart", + "fields": { + "name": "Bloodfuel Dart", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-glaive", + "fields": { + "name": "Bloodfuel Glaive", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-greataxe", + "fields": { + "name": "Bloodfuel Greataxe", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-greatsword", + "fields": { + "name": "Bloodfuel Greatsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-halberd", + "fields": { + "name": "Bloodfuel Halberd", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-handaxe", + "fields": { + "name": "Bloodfuel Handaxe", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-javelin", + "fields": { + "name": "Bloodfuel Javelin", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-lance", + "fields": { + "name": "Bloodfuel Lance", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-longbow", + "fields": { + "name": "Bloodfuel Longbow", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-longsword", + "fields": { + "name": "Bloodfuel Longsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-morningstar", + "fields": { + "name": "Bloodfuel Morningstar", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-pike", + "fields": { + "name": "Bloodfuel Pike", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-rapier", + "fields": { + "name": "Bloodfuel Rapier", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-scimitar", + "fields": { + "name": "Bloodfuel Scimitar", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-shortbow", + "fields": { + "name": "Bloodfuel Shortbow", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-shortsword", + "fields": { + "name": "Bloodfuel Shortsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-sickle", + "fields": { + "name": "Bloodfuel Sickle", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-spear", + "fields": { + "name": "Bloodfuel Spear", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-trident", + "fields": { + "name": "Bloodfuel Trident", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-warpick", + "fields": { + "name": "Bloodfuel Warpick", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodfuel-whip", + "fields": { + "name": "Bloodfuel Whip", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodlink-potion", + "fields": { + "name": "Bloodlink Potion", + "desc": "When you and another willing creature each drink at least half this potion, your life energies are linked for 1 hour. When you or the creature who drank the potion with you take damage while your life energies are linked, the total damage is divided equally between you. If the damage is an odd number, roll randomly to assign the extra point of damage. The effect is halted while you and the other creature are separated by more than 60 feet. The effect ends if either of you drop to 0 hit points. This potion's red liquid is viscous and has a metallic taste.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodpearl-bracelet-gold", + "fields": { + "name": "Bloodpearl Bracelet (Gold)", + "desc": "This silver or gold bracelet features three red pearls. You can use an action to remove a pearl and throw it up to 20 feet. When the pearl lands, it transforms into an ooze you determine by rolling a d6 and consulting the table that corresponds to the bracelet's color. The ooze vanishes at the next dawn or when it is reduced to 0 hit points. When you throw a pearl, your hit point maximum is reduced by the amount listed in the Blood Price column. This reduction can't be removed with the greater restoration spell or similar magic and lasts until the ooze vanishes or is reduced to 0 hit points. The ooze is friendly to you and your companions and acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the ooze acts in a fashion appropriate to its nature. Once all three pearls have been used, the bracelet can't be used again until the next dawn when the pearls regrow. | d6 | Ooze | CR | Blood Price |\n| --- | --------------------------- | --- | ---------------- |\n| 1 | Dipsa | 1/4 | 5 HP |\n| 2 | Treacle | 1/4 | 5 HP |\n| 3 | Gray Ooze | 1/2 | 5 HP |\n| 4 | Alchemy Apprentice Ooze | 1 | 7 ( 2d6) |\n| 5 | Suppurating Ooze | 1 | 7 ( 2d6) |\n| 6 | Gelatinous Cube | 2 | 10 ( 3d6) | | d6 | Ooze | CR | Blood Price |\n| --- | ----------------------- | --- | ---------------- |\n| 1 | Philosopher's Ghost | 4 | 17 ( 5d6) |\n| 2 | Ink Guardian Ooze | 4 | 17 ( 5d6) |\n| 3 | Black Pudding | 4 | 17 ( 5d6) |\n| 4 | Corrupting Ooze | 5 | 21 ( 6d6) |\n| 5 | Blood Ooze | 6 | 24 ( 7d6) |\n| 6 | Ruby ooze | 6 | 24 ( 7d6) |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodpearl-bracelet-silver", + "fields": { + "name": "Bloodpearl Bracelet (Silver)", + "desc": "This silver or gold bracelet features three red pearls. You can use an action to remove a pearl and throw it up to 20 feet. When the pearl lands, it transforms into an ooze you determine by rolling a d6 and consulting the table that corresponds to the bracelet's color. The ooze vanishes at the next dawn or when it is reduced to 0 hit points. When you throw a pearl, your hit point maximum is reduced by the amount listed in the Blood Price column. This reduction can't be removed with the greater restoration spell or similar magic and lasts until the ooze vanishes or is reduced to 0 hit points. The ooze is friendly to you and your companions and acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the ooze acts in a fashion appropriate to its nature. Once all three pearls have been used, the bracelet can't be used again until the next dawn when the pearls regrow. | d6 | Ooze | CR | Blood Price |\n| --- | --------------------------- | --- | ---------------- |\n| 1 | Dipsa | 1/4 | 5 HP |\n| 2 | Treacle | 1/4 | 5 HP |\n| 3 | Gray Ooze | 1/2 | 5 HP |\n| 4 | Alchemy Apprentice Ooze | 1 | 7 ( 2d6) |\n| 5 | Suppurating Ooze | 1 | 7 ( 2d6) |\n| 6 | Gelatinous Cube | 2 | 10 ( 3d6) | | d6 | Ooze | CR | Blood Price |\n| --- | ----------------------- | --- | ---------------- |\n| 1 | Philosopher's Ghost | 4 | 17 ( 5d6) |\n| 2 | Ink Guardian Ooze | 4 | 17 ( 5d6) |\n| 3 | Black Pudding | 4 | 17 ( 5d6) |\n| 4 | Corrupting Ooze | 5 | 21 ( 6d6) |\n| 5 | Blood Ooze | 6 | 24 ( 7d6) |\n| 6 | Ruby ooze | 6 | 24 ( 7d6) |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodprice-breastplate", + "fields": { + "name": "Bloodprice Breastplate", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodprice-chain-mail", + "fields": { + "name": "Bloodprice Chain-Mail", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodprice-chain-shirt", + "fields": { + "name": "Bloodprice Chain-Shirt", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodprice-half-plate", + "fields": { + "name": "Bloodprice Half-Plate", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodprice-hide", + "fields": { + "name": "Bloodprice Hide", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodprice-leather", + "fields": { + "name": "Bloodprice Leather", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodprice-padded", + "fields": { + "name": "Bloodprice Padded", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodprice-plate", + "fields": { + "name": "Bloodprice Plate", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodprice-ring-mail", + "fields": { + "name": "Bloodprice Ring-Mail", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodprice-scale-mail", + "fields": { + "name": "Bloodprice Scale-Mail", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodprice-splint", + "fields": { + "name": "Bloodprice Splint", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodprice-studded-leather", + "fields": { + "name": "Bloodprice Studded-Leather", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-battleaxe", + "fields": { + "name": "Bloodthirsty Battleaxe", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-blowgun", + "fields": { + "name": "Bloodthirsty Blowgun", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-crossbow-hand", + "fields": { + "name": "Bloodthirsty Crossbow Hand", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-crossbow-heavy", + "fields": { + "name": "Bloodthirsty Crossbow Heavy", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-crossbow-light", + "fields": { + "name": "Bloodthirsty Crossbow Light", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-dagger", + "fields": { + "name": "Bloodthirsty Dagger", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-dart", + "fields": { + "name": "Bloodthirsty Dart", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-glaive", + "fields": { + "name": "Bloodthirsty Glaive", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-greataxe", + "fields": { + "name": "Bloodthirsty Greataxe", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-greatsword", + "fields": { + "name": "Bloodthirsty Greatsword", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-halberd", + "fields": { + "name": "Bloodthirsty Halberd", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-handaxe", + "fields": { + "name": "Bloodthirsty Handaxe", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-javelin", + "fields": { + "name": "Bloodthirsty Javelin", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-lance", + "fields": { + "name": "Bloodthirsty Lance", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-longbow", + "fields": { + "name": "Bloodthirsty Longbow", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-longsword", + "fields": { + "name": "Bloodthirsty Longsword", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-morningstar", + "fields": { + "name": "Bloodthirsty Morningstar", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-pike", + "fields": { + "name": "Bloodthirsty Pike", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-rapier", + "fields": { + "name": "Bloodthirsty Rapier", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-scimitar", + "fields": { + "name": "Bloodthirsty Scimitar", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-shortbow", + "fields": { + "name": "Bloodthirsty Shortbow", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-shortsword", + "fields": { + "name": "Bloodthirsty Shortsword", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-sickle", + "fields": { + "name": "Bloodthirsty Sickle", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-spear", + "fields": { + "name": "Bloodthirsty Spear", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-trident", + "fields": { + "name": "Bloodthirsty Trident", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-warpick", + "fields": { + "name": "Bloodthirsty Warpick", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodthirsty-whip", + "fields": { + "name": "Bloodthirsty Whip", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bloodwhisper-cauldron", + "fields": { + "name": "Bloodwhisper Cauldron", + "desc": "This ancient, oxidized cauldron sits on three stubby legs and has images of sacrifice and ritual cast into its iron sides. When filled with concoctions that contain blood, the bubbling cauldron seems to whisper secrets of ancient power to those bold enough to listen. While filled with blood, the cauldron has the following properties. Once filled, the cauldron can't be refilled again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bludgeon-of-nightmares", + "fields": { + "name": "Bludgeon of Nightmares", + "desc": "You gain a +2 bonus to attack and damage rolls made with this weapon. The weapon appears to be a mace of disruption, and an identify spell reveals it to be such. The first time you use this weapon to kill a creature that has an Intelligence score of 5 or higher, you begin having nightmares and disturbing visions that disrupt your rest. Each time you complete a long rest, you must make a Wisdom saving throw. The DC equals 10 + the total number of creatures with Intelligence 5 or higher that you've reduced to 0 hit points with this weapon. On a failure, you gain no benefits from that long rest, and you gain one level of exhaustion.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blue-rose", + "fields": { + "name": "Blue Rose", + "desc": "The petals of this cerulean flower can be prepared into a compote and consumed. A single flower can make 3 doses. When you consume a dose, your Intelligence, Wisdom, and Charisma scores are reduced by 1 each. This reduction lasts until you finish a long rest. You can consume up to three doses as part of casting a spell, and you can choose to affect your spell with one of the following options for each dose you consumed: - If the spell is of the abjuration school, increase the save DC by 2.\n- If the spell has more powerful effects when cast at a higher level, treat the spell's effects as if you had cast the spell at one slot level higher than the spell slot you used.\n- The spell is affected by one of the following metamagic options, even if you aren't a sorcerer: heightened, quickened, or subtle. A spell can't be affected by the same option more than once, though you can affect one spell with up to three different options. If you consume one or more doses without casting a spell, you can choose to instead affect a spell you cast before you finish a long rest. In addition, consuming blue rose gives you some protection against spells. When a spellcaster you can see casts a spell, you can use your reaction to cause one of the following:\n- You have advantage on the saving throw against the spell if it is a spell of the abjuration school.\n- If the spell is counterspell or dispel magic, the DC increases by 2 to interrupt your spellcasting or to end a magic effect on you. You can use this reaction a number of times equal to the number of doses you consumed. At the end of each long rest, you must make a DC 13 Constitution saving throw. On a failed save, your Hit Dice maximum is reduced by 25 percent. This reduction affects only the number of Hit Dice you can use to regain hit points during a short rest; it doesn't reduce your hit point maximum. This reduction lasts until you recover from the addiction. If you have no remaining Hit Dice to lose, you suffer one level of exhaustion, and your Hit Dice are returned to 75 percent of your maximum Hit Dice. The process then repeats until you die from exhaustion or you recover from the addiction. On a successful save, your exhaustion level decreases by one level. If a successful saving throw reduces your level of exhaustion below 1, you recover from the addiction. A greater restoration spell or similar magic ends the addiction and its effects. Consuming at least one dose of blue rose again halts the effects of the addiction for 2 days, at which point you can consume another dose of blue rose to halt it again or the effects of the addiction continue as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_blue-willow-cloak", + "fields": { + "name": "Blue Willow Cloak", + "desc": "This light cloak of fey silk is waterproof. While wearing this cloak in the rain, you can use your action to pull up the hood and become invisible for up to 1 hour. The effect ends early if you attack or cast a spell, if you use an action to pull down the hood, or if the rain stops. The cloak can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bone-skeleton-key", + "fields": { + "name": "Bone Skeleton Key", + "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bone-whip", + "fields": { + "name": "Bone Whip", + "desc": "This whip is constructed of humanoid vertebrae with their edges magically sharpened and pointed. The bones are joined together into a coiled line by strands of steel wire. The handle is half a femur wrapped in soft leather of tanned humanoid skin. You gain a +1 bonus to attack and damage rolls with this weapon. You can use an action to cause fiendish energy to coat the whip. For 1 minute, you gain 5 temporary hit points the first time you hit a creature on each turn. In addition, when you deal damage to a creature with this weapon, the creature must succeed on a DC 17 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage dealt. This reduction lasts until the creature finishes a long rest. Once used, this property of the whip can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bonebreaker-mace", + "fields": { + "name": "Bonebreaker Mace", + "desc": "You gain a +1 bonus on attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use it to attack an undead creature. Often given to the grim enforcers of great necropolises, these weapons can reduce the walking dead to splinters with a single strike. When you hit an undead creature with this magic weapon, treat that creature as if it is vulnerable to bludgeoning damage. If it is already vulnerable to bludgeoning damage, your attack deals an additional 1d6 radiant damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_book-of-ebon-tides", + "fields": { + "name": "Book of Ebon Tides", + "desc": "This strange, twilight-hued tome was written on pages of pure shadow weave, bound in traditional birch board covers wrapped with shadow goblin hide, and imbued with the memories of forests on the Plane of Shadow. Its covers often reflect light as if it were resting in a forest grove, and some owners swear that a goblin face appears on them now and again. The sturdy lock on one side opens only for wizards, elves, and Shadow Fey (see Tome of Beasts). The book has 15 charges, and it regains 2d6 + 3 expended charges daily in the twilight before dawn. If you expend the last charge, roll a 1d20. On a 1, the book retains its Ebon Tides and Shadow Lore properties but loses its Spells property. When the magic ritual completes, make an Intelligence (Arcana) check and consult the Terrain Changes table for the appropriate DCs. You can change the terrain in any one way listed at your result or lower. For example, if your result was 17, you could turn a small forest up to 30 feet across into a grassland, create a grove of trees up to 240 feet across, create a 6-foot-wide flowing stream, overgrow 1,500 feet of an existing road, or other similar option. Only natural terrain you can see can be affected; built structures, such as homes or castles, remain untouched, though roads and trails can be overgrown or hidden. On a failure, the terrain is unchanged. On a 1, an Overshadow (see Tome of Beasts 2) also appears and attacks you. On a 20, you can choose two options. Deities, Fey Lords and Ladies (see Tome of Beasts), archdevils, demon lords, and other powerful rulers in the Plane of Shadow can prevent these terrain modifications from happening in their presence or anywhere within their respective domains. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness, illusion, or shadows, such as invisibility or major image. | DC | Effect |\n| --- | --------------------------------------------------------------------------------------------------- |\n| 8 | Obscuring a path and removing all signs of passage (30 feet per point over 7) |\n| 10 | Creating a grove of trees (30 feet across per point over 9) |\n| 11 | Creating or drying up a lake or pond (up to 10 feet across per point over 10) |\n| 12 | Creating a flowing stream (1 foot wide per point over 11) |\n| 13 | Overgrowing an existing road with brush or trees (300 feet per point over 12) |\n| 14 | Shifting a river to a new course (300 feet per point over 13) |\n| 15 | Moving a forest (300 feet per point over 14) |\n| 16 | Creating a small hill, riverbank, or cliff (10 feet tall per point over 15) |\n| 17 | Turning a small forest into grassland or clearing, or vice versa (30 feet across per point over 16) |\n| 18 | Creating a new river (10 feet wide per point over 17) |\n| 19 | Turning a large forest into grassland, or vice versa (300 feet across per point over 19) |\n| 20 | Creating a new mountain (1,000 feet high per point over 19) |\n| 21 | Drying up an existing river (reducing width by 10 feet per point over 20) |\n| 22 | Shrinking an existing hill or mountain (reducing 1,000 feet per point over 21) | Written by an elvish princess at the Court of Silver Words, this volume encodes her understanding and mastery of shadow. Whimsical illusions suffuse every page, animating its illuminated capital letters and ornamental figures. The book is a famous work among the sable elves of that plane, and it opens to the touch of any elfmarked or sable elf character.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_book-of-eibon", + "fields": { + "name": "Book of Eibon", + "desc": "This fragmentary black book is reputed to descend from the realms of Hyperborea. It contains puzzling guidelines for frightful necromantic rituals and maddening interdimensional travel. The book holds the following spells: semblance of dread*, ectoplasm*, animate dead, speak with dead, emanation of Yoth*, green decay*, yellow sign*, eldritch communion*, create undead, gate, harm, astral projection, and Void rift*. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, the book can contain other spells similarly related to necromancy, madness, or interdimensional travel. If you are attuned to this book, you can use it as a spellbook and as an arcane focus. In addition, while holding the book, you can use a bonus action to cast a necromancy spell that is written in this tome without expending a spell slot or using any verbal or somatic components. Once used, this property of the book can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_book-shroud", + "fields": { + "name": "Book Shroud", + "desc": "When not bound to a book, this red leather book cover is embossed with images of eyes on every inch of its surface. When you wrap this cover around a tome, it shifts the book's appearance to a plain red cover with a title of your choosing and blank pages on which you can write. When viewing the wrapped book, other creatures see the plain red version with any contents you've written. A creature succeeding on a DC 15 Wisdom (Perception) check sees the real book and can remove the shroud.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bookkeeper-inkpot", + "fields": { + "name": "Bookkeeper Inkpot", + "desc": "This glass vessel looks like an ordinary inkpot. A quill fashioned from an ostrich feather accompanies the inkpot. You can use an action to speak the inkpot's command word, targeting a Bookkeeper (see Creature Codex) that you can see within 10 feet of you. An unwilling bookkeeper must succeed on a DC 13 Charisma saving throw or be transferred to the inkpot, making you the bookkeeper's new “creator.” While the bookkeeper is contained within the inkpot, it suffers no harm due to being away from its bound book, but it can't use any of its actions or traits that apply to it being in a bound book. Dipping the quill in the inkpot and writing in a book binds the bookkeeper to the new book. If the inkpot is found as treasure, there is a 50 percent chance it contains a bookkeeper. An identify spell reveals if a bookkeeper is inside the inkpot before using the inkpot's ink.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bookmark-of-eldritch-insight", + "fields": { + "name": "Bookmark of Eldritch Insight", + "desc": "This cloth bookmark is inscribed with blurred runes that are hard to decipher. If you use this bookmark while researching ancient evils (such as arch-devils or demon lords) or otherworldly mysteries (such as the Void or the Great Old Ones) during a long rest, the bookmark crumbles to dust and grants you its knowledge. You double your proficiency bonus on Arcana, History, and Religion checks to recall lore about the subject of your research for the next 24 hours. If you don't have proficiency in these skills, you instead gain proficiency in them for the next 24 hours, but you are proficient only when recalling information about the subject of your research.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_boots-of-pouncing", + "fields": { + "name": "Boots of Pouncing", + "desc": "These soft leather boots have a collar made of Albino Death Weasel fur (see Creature Codex). While you wear these boots, your walking speed becomes 40 feet, unless your walking speed is higher. Your speed is still reduced if you are encumbered or wearing heavy armor. If you move at least 20 feet straight toward a creature and hit it with a melee weapon attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone. If the target is prone, you can make one melee weapon attack against it as a bonus action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_boots-of-quaking", + "fields": { + "name": "Boots of Quaking", + "desc": "While wearing these steel-toed boots, the earth itself shakes when you walk, causing harmless, but unsettling, tremors. If you move at least 15 feet in a single turn, all creatures within 10 feet of you at any point during your movement must make a DC 16 Strength saving throw or take 1d6 force damage and fall prone. In addition, while wearing these boots, you can cast earthquake, requiring no concentration, by speaking a command word and jumping on a point on the ground. The spell is centered on that point. Once you cast earthquake in this way, you can't do so again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_boots-of-solid-footing", + "fields": { + "name": "Boots of Solid Footing", + "desc": "A thick, rubbery sole covers the bottoms and sides of these stout leather boots. They are useful for maneuvering in cluttered alleyways, slick sewers, and the occasional patch of ice or gravel. While you wear these boots, you can use a bonus action to speak the command word. If you do, nonmagical difficult terrain doesn't cost you extra movement when you walk across it wearing these boots. If you speak the command word again as a bonus action, you end the effect. When the boots' property has been used for a total of 1 minute, the magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_boots-of-the-grandmother", + "fields": { + "name": "Boots of the Grandmother", + "desc": "While wearing these boots, you have proficiency in the Stealth skill if you don't already have it, and you double your proficiency bonus on Dexterity (Stealth) checks. As an action, you can drip three drops of fresh blood onto the boots to ease your passage through the world. For 1d6 hours, you and your allies within 30 feet of you ignore difficult terrain. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_boots-of-the-swift-striker", + "fields": { + "name": "Boots of the Swift Striker", + "desc": "While you wear these boots, your walking speed increases by 10 feet. In addition, when you take the Dash action while wearing these boots, you can make a single weapon attack at the end of your movement. You can't continue moving after making this attack.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bottled-boat", + "fields": { + "name": "Bottled Boat", + "desc": "This clear glass bottle contains a tiny replica of a wooden rowboat down to the smallest detail, including two stout oars, a miniature coil of hemp rope, a fishing net, and a small cask. You can use an action to break the bottle, destroying the bottle and releasing its contents. The rowboat and all of the items emerge as full-sized, normal, and permanent items of their type, which includes 50 feet of hempen rope, a cask containing 20 gallons of fresh water, two oars, and a 12-foot-long rowboat.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bountiful-cauldron", + "fields": { + "name": "Bountiful Cauldron", + "desc": "If this small, copper cauldron is filled with water and a half pound of meat, vegetables, or other foodstuffs then placed over a fire, it produces a simple, but hearty stew that provides one creature with enough nourishment to sustain it for one day. As long as the food is kept within the cauldron with the lid on, the food remains fresh and edible for up to 24 hours, though it grows cold unless reheated.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_box-of-secrets", + "fields": { + "name": "Box of Secrets", + "desc": "This well-made, cubical box appears to be a normal container that can hold as much as a normal chest. However, each side of the chest is a lid that can be opened on cunningly concealed hinges. A successful DC 15 Wisdom (Perception) check notices that the sides can be opened. When you use an action to turn the box so a new side is facing up, and speak the command word before opening the lid, the current contents of the chest slip into an interdimensional space, leaving it empty once more. You can use an action to fill the box again, then turn it over to a new side and open it, again sending the contents to the interdimensional space. This can be done up to six times, once for each side of the box. To gain access to a particular batch of contents, the correct side must be facing up, and you must use an action to speak the command word as you open the lid on that side. A box of secrets is often crafted with specific means of telling the sides apart, such as unique carvings on each side, or having each side painted a different color. If any side of the box is destroyed completely, the contents that were stored through that side are lost. Likewise, if the entire box is destroyed, the contents are lost forever.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bracelet-of-the-fire-tender", + "fields": { + "name": "Bracelet of the Fire Tender", + "desc": "This bracelet is made of thirteen small, roasted pinecones lashed together with lengths of dried sinew. It smells of pine and woodsmoke. It is uncomfortable to wear over bare skin. While wearing this bracelet, you don't have disadvantage on Wisdom (Perception) checks that rely on sight when looking in areas lightly obscured by nonmagical smoke or fog.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_braid-whip-clasp", + "fields": { + "name": "Braid Whip Clasp", + "desc": "This intricately carved ivory clasp can be wrapped around or woven into braided hair 3 feet or longer. While the clasp is attached to your braided hair, you can speak its command word as a bonus action and transform your braid into a dangerous whip. If you speak the command word again, you end the effect. You gain a +1 bonus to attack and damage rolls made with this magic whip. When the clasp's property has been used for a total of 10 minutes, you can't use it to transform your braid into a whip again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_brain-juice", + "fields": { + "name": "Brain Juice", + "desc": "This foul-smelling, murky, purple-gray liquid is created from the liquefied brains of spellcasting creatures, such as aboleths. Anyone consuming this repulsive mixture must make a DC 15 Intelligence saving throw. On a successful save, the drinker is infused with magical power and regains 1d6 + 4 expended spell slots. On a failed save, the drinker is afflicted with short-term madness for 1 day. If a creature consumes multiple doses of brain juice and fails three consecutive Intelligence saving throws, it is afflicted with long-term madness permanently and automatically fails all further saving throws brought about by drinking brain juice.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_brass-clockwork-staff", + "fields": { + "name": "Brass Clockwork Staff", + "desc": "This curved staff is made of coiled brass and glass wire. You can use an action to speak one of three command words and throw the staff on the ground within 10 feet of you. The staff transforms into one of three wireframe creatures, depending on the command word: a unicorn, a hound, or a swarm of tiny beetles. The wireframe creature or swarm is under your control and acts on its own initiative count. On your turn, you can mentally command the wireframe creature or swarm if it is within 60 feet of you and you aren't incapacitated. You decide what action the creature takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location. The wireframe unicorn lasts for up to 1 hour, uses the statistics of a warhorse, and can be used as a mount. The wireframe hound lasts for up to 5 minutes, uses the statistics of a dire wolf, and has advantage to track any creature you damaged within the past hour. The wireframe beetle swarm lasts for up to 1 minute, uses the statistics of a swarm of beetles, and can destroy nonmagical objects that aren't being worn or carried and that aren't made of stone or metal (destruction happens at a rate of 1 pound of material per round, up to a maximum of 10 pounds). At the end of the duration, the wireframe creature or swarm reverts to its staff form. It reverts to its staff form early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. If it reverts to its staff form early by being reduced to 0 hit points, the staff becomes inert and unusable until the third dawn after the creature was killed. Otherwise, the wireframe creature or swarm has all of its hit points when you transform the staff into the creature again. When a wireframe creature or swarm becomes the staff again, this property of the staff can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_brass-snake-ball", + "fields": { + "name": "Brass Snake Ball", + "desc": "Most commonly used by assassins to strangle sleeping victims, this heavy, brass ball is 6 inches across and weighs approximately 15 pounds. It has the image of a coiled snake embossed around it. You can use an action to command the orb to uncoil into a brass snake approximately 6 feet long and 3 inches thick. You can direct it by telepathic command to attack any creature within your line of sight. Use the statistics for the constrictor snake, but use Armor Class 14 and increase the challenge rating to 1/2 (100 XP). The snake can stay animate for up to 5 minutes or until reduced to 0 hit points. Being reduced to 0 hit points causes the snake to revert to orb form and become inert for 1 week. If damaged but not reduced to 0 hit points, the snake has full hit points when summoned again. Once you have used the orb to become a snake, it can't be used again until the next sunset.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_brawlers-leather", + "fields": { + "name": "Brawler's Leather", + "desc": "These rawhide straps have lines of crimson runes running along their length. They require 10 minutes of bathing them in salt water before carefully wrapping them around your forearms. Once fitted, you gain a +1 bonus to attack and damage rolls made with unarmed strikes. The straps become brittle with use. After you have dealt damage with unarmed strike attacks 10 times, the straps crumble away.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_brawn-armor", + "fields": { + "name": "Brawn Armor", + "desc": "This armor was crafted from the hide of an ancient grizzly bear. While wearing it, you gain a +1 bonus to AC, and you have advantage on grapple checks. The armor has 3 charges. You can use a bonus action to expend 1 charge to deal your unarmed strike damage to a creature you are grappling. The armor regains all expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_brazen-band", + "fields": { + "name": "Brazen Band", + "desc": "Made by kobold clockwork mages, this brass clockwork ring is formed to look like a coiled dragon. When you speak or whisper the Draconic command word etched on the inside of the ring, the brass dragon uncoils and attempts to pick any lock within 10 feet of you. The dragon picks the lock using your proficiency bonus but with advantage. It is treated as having thieves' tools when attempting to pick locks. It uses your Dexterity (Stealth) bonus for purposes of not being spotted but with advantage due to its extremely small size. Whether successful or not, once you have used the ring to attempt to pick a lock, it can't be used again until the next sunset.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_brazen-bulwark", + "fields": { + "name": "Brazen Bulwark", + "desc": "This rectangular shield is plated with polished brass and resembles a crenelated tower. While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_breaker-lance", + "fields": { + "name": "Breaker Lance", + "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. When you attack an object or structure with this magic lance and hit, maximize your weapon damage dice against the target. The lance has 3 charges. As part of an attack action with the lance, you can expend a charge while striking a barrier created by a spell, such as a wall of fire or wall of force, or an entryway protected by the arcane lock spell. You must make a Strength check against a DC equal to 10 + the spell's level. On a successful check, the spell ends. The lance regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_breastplate-of-warding-1", + "fields": { + "name": "Breastplate of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_breastplate-of-warding-2", + "fields": { + "name": "Breastplate of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_breastplate-of-warding-3", + "fields": { + "name": "Breastplate of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_breathing-reed", + "fields": { + "name": "Breathing Reed", + "desc": "This tiny river reed segment is cool to the touch. If you chew the reed while underwater, it provides you with enough air to breathe for up to 10 minutes. At the end of the duration, the reed loses its magic and can be harmlessly swallowed or spit out.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_briarthorn-bracers", + "fields": { + "name": "Briarthorn Bracers", + "desc": "These leather bracers are inscribed with Elvish runes. While wearing these bracers, you gain a +1 bonus to AC if you are using no shield. In addition, while in a forest, nonmagical difficult terrain costs you no extra movement.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_broken-fang-talisman", + "fields": { + "name": "Broken Fang Talisman", + "desc": "This talisman is a piece of burnished copper, shaped into a curved fang with a large crack through the middle. While wearing the talisman, you can use an action to cast the encrypt / decrypt (see Deep Magic for 5th Edition) spell. The talisman can't be used this way again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_broom-of-sweeping", + "fields": { + "name": "Broom of Sweeping", + "desc": "You can use an action to speak the broom's command word and give it short instructions consisting of a few words, such as “sweep the floor” or “dust the cabinets.” The broom can clean up to 5 cubic feet each minute and continues cleaning until you use another action to deactivate it. The broom can't climb barriers higher than 5 feet and can't open doors.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_brotherhood-of-fezzes", + "fields": { + "name": "Brotherhood of Fezzes", + "desc": "This trio of fezzes works only if all three hats are worn within 60 feet of each other by creatures of the same size. If one of the hats is removed or moves further than 60 feet from the others or if creatures of different sizes are wearing the hats, the hats' magic temporarily ceases. While three creatures of the same size wear these fezzes within 60 feet of each other, each creature can use its action to cast the alter self spell from it at will. However, all three wearers of the fezzes are affected as if the same spell was simultaneously cast on each of them, making each wearer appear identical to the other. For example, if one Medium wearer uses an action to change its appearance to that of a specific elf, each other wearer's appearance changes to look like the exact same elf.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_brown-honey-buckle", + "fields": { + "name": "Brown Honey Buckle", + "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bubbling-retort", + "fields": { + "name": "Bubbling Retort", + "desc": "This long, thin retort is fashioned from smoky yellow glass and is topped with an intricately carved brass stopper. You can unstopper the retort and fill it with liquid as an action. Once you do so, it spews out multicolored bubbles in a 20-foot radius. The bubbles last for 1d4 + 1 rounds. While they last, creatures within the radius are blinded and the area is heavily obscured to all creatures except those with tremorsense. The liquid in the retort is destroyed in the process with no harmful effect on its surroundings. If any bubbles are popped, they burst with a wet smacking sound but no other effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_buckle-of-blasting", + "fields": { + "name": "Buckle of Blasting", + "desc": "This soot-colored steel buckle has an exploding flame etched into its surface. It can be affixed to any common belt. While wearing this buckle, you have resistance to force damage. In addition, the buckle has 5 charges, and it regains 1d4 + 1 charges daily at dawn. It has the following properties.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_bullseye-arrow", + "fields": { + "name": "Bullseye Arrow", + "desc": "This arrow has bright red fletching and a blunt, red tip. You gain a +1 bonus to attack rolls made with this magic arrow. On a hit, the arrow deals no damage, but it paints a magical red dot on the target for 1 minute. While the dot lasts, the target takes an extra 1d4 damage of the weapon's type from any ranged attack that hits it. In addition, ranged weapon attacks against the target score a critical hit on a roll of 19 or 20. When this arrow hits a target, the arrow vanishes in a flash of red light and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_burglars-lock-and-key", + "fields": { + "name": "Burglar's Lock and Key", + "desc": "This heavy iron lock bears a stout, pitted key permanently fixed in the keyhole. As an action, you can twist the key counterclockwise to instantly open one door, chest, bag, bottle, or container of your choice within 30 feet. Any container or portal weighing more than 30 pounds or restrained in any way (latched, bolted, tied, or the like) automatically resists this effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_burning-skull", + "fields": { + "name": "Burning Skull", + "desc": "This appallingly misshapen skull—though alien and monstrous in aspect—is undeniably human, and it is large and hollow enough to be worn as a helm by any Medium humanoid. The skull helm radiates an unholy spectral aura, which sheds dim light in a 10-foot radius. According to legends, gazing upon a burning skull freezes the blood and withers the brain of one who understands not its mystery.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_butter-of-disbelief", + "fields": { + "name": "Butter of Disbelief", + "desc": "This stick of magical butter is carved with arcane runes and never melts or spoils. It has 3 charges. While holding this butter, you can use an action to slice off a piece and expend 1 charge to cast the grease spell (save DC 13) from it. The grease that covers the ground looks like melted butter. The butter regains all expended charges daily at dawn. If you expend the last charge, the butter disappears.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_buzzing-battleaxe", + "fields": { + "name": "Buzzing Battleaxe", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_buzzing-greataxe", + "fields": { + "name": "Buzzing Greataxe", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_buzzing-greatsword", + "fields": { + "name": "Buzzing Greatsword", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_buzzing-handaxe", + "fields": { + "name": "Buzzing Handaxe", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_buzzing-longsword", + "fields": { + "name": "Buzzing Longsword", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_buzzing-rapier", + "fields": { + "name": "Buzzing Rapier", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_buzzing-scimitar", + "fields": { + "name": "Buzzing Scimitar", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_buzzing-shortsword", + "fields": { + "name": "Buzzing Shortsword", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_candied-axe", + "fields": { + "name": "Candied Axe", + "desc": "This battleaxe bears a golden head spun from crystalized honey. Its wooden handle is carved with reliefs of bees. You gain a +2 bonus to attack and damage rolls made with this magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_candle-of-communion", + "fields": { + "name": "Candle of Communion", + "desc": "This black candle burns with an eerie, violet flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on necromancy spells. After burning for 1 hour, or if the candle's flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the speak with dead spell with it. Doing so destroys the candle.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_candle-of-summoning", + "fields": { + "name": "Candle of Summoning", + "desc": "This black candle burns with an eerie, green flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on conjuration spells. After burning for 1 hour, or if the flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the spirit guardians spell (save DC 15) with it. Doing so destroys the candle.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_candle-of-visions", + "fields": { + "name": "Candle of Visions", + "desc": "This black candle burns with an eerie, blue flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on divination spells. After burning for 1 hour, or if the flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the augury spell with it, which reveals its otherworldly omen in the candle's smoke. Doing so destroys the candle.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cap-of-thorns", + "fields": { + "name": "Cap of Thorns", + "desc": "Donning this thorny wooden circlet causes it to meld with your scalp. It can be removed only upon your death or by a remove curse spell. The cap ingests some of your blood, dealing 2d4 piercing damage. After this first feeding, the thorns feed once per day for 1d4 piercing damage. Once per day, you can sacrifice 1 hit point per level you possess to cast a special entangle spell made of thorny vines. Charisma is your spellcasting ability for this effect. Restrained creatures must make a successful Charisma saving throw or be affected by a charm person spell as thorns pierce their body. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target fails three consecutive saves, the thorns become deeply rooted and the charmed effect is permanent until remove curse or similar magic is cast on the target.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cape-of-targeting", + "fields": { + "name": "Cape of Targeting", + "desc": "You gain a +1 bonus to AC while wearing this long, flowing cloak. Whenever you are within 10 feet of more than two creatures, it subtly and slowly shifts its color to whatever the creatures nearest you find the most irritating. While within 5 feet of a hostile creature, you can use a bonus action to speak the cloak's command word to activate it, allowing your allies' ranged attacks to pass right through you. For 1 minute, each friendly creature that makes a ranged attack against a hostile creature within 5 feet of you has advantage on the attack roll. Each round the cloak is active, it enthusiastically and telepathically says “shoot me!” in different tones and cadences into the minds of each friendly creature that can see you and the cloak. The cloak can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_captains-flag", + "fields": { + "name": "Captain's Flag", + "desc": "This red and white flag adorned with a white anchor is made of velvet that never seems to fray in strong wings. When mounted and flown on a ship, the flag changes to the colors and symbol of the ship's captain and crew. While this flag is mounted on a ship, the captain and its allies have advantage on saving throws against being charmed or frightened. In addition, when the captain is reduced to 0 hit points while on the ship where this flag flies, each ally of the captain has advantage on its attack rolls until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_captains-goggles", + "fields": { + "name": "Captain's Goggles", + "desc": "These copper and glass goggles are prized by air and sea captains across the world. The goggles are designed to repel water and never fog. After attuning to the goggles, your name (or preferred moniker) appears on the side of the goggles. While wearing the goggles, you can't suffer from exhaustion.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_case-of-preservation", + "fields": { + "name": "Case of Preservation", + "desc": "This item appears to be a standard map or scroll case fashioned of well-oiled leather. You can store up to ten rolled-up sheets of paper or five rolled-up sheets of parchment in this container. While ensconced in the case, the contents are protected from damage caused by fire, exposure to water, age, or vermin.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cataloguing-book", + "fields": { + "name": "Cataloguing Book", + "desc": "This nondescript book contains statistics and details on various objects. Libraries often use these tomes to assist visitors in finding the knowledge contained within their stacks. You can use an action to touch the book to an object you wish to catalogue. The book inscribes the object's name, provided by you, on one of its pages and sketches a rough illustration to accompany the object's name. If the object is a magic item or otherwise magic-imbued, the book also inscribes the object's properties. The book becomes magically connected to the object, and its pages denote the object's current location, provided the object is not protected by nondetection or other magic that thwarts divination magic. When you attune to this book, its previously catalogued contents disappear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_catalyst-oil", + "fields": { + "name": "Catalyst Oil", + "desc": "This special elemental compound draws on nearby energy sources. Catalyst oils are tailored to one specific damage type (not including bludgeoning, piercing, or slashing damage) and have one dose. Whenever a spell or effect of this type goes off within 60 feet of a dose of catalyst oil, the oil catalyzes and becomes the spell's new point of origin. If the spell affects a single target, its original point of origin becomes the new target. If the spell's area is directional (such as a cone or a cube) you determine the spell's new direction. This redirected spell is easier to evade. Targets have advantage on saving throws against the spell, and the caster has disadvantage on the spell attack roll.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_celestial-charter", + "fields": { + "name": "Celestial Charter", + "desc": "Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the celestial, negotiating a service from it in exchange for a reward. The celestial is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the celestial, the truce is broken, and the creature can act normally. If the celestial refuses the offer, it is free to take any actions it wishes. Should you and the celestial reach an agreement that is satisfactory to both parties, you must sign the charter and have the celestial do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the celestial to the agreement until its service is rendered and the reward paid, at which point the scroll vanishes in a bright flash of light. A celestial typically attempts to fulfill its end of the bargain as best it can, and it is angry if you exploit any loopholes or literal interpretations to your advantage. If either party breaks the bargain, that creature immediately takes 10d6 radiant damage, and the charter is destroyed, ending the contract.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_celestial-sextant", + "fields": { + "name": "Celestial Sextant", + "desc": "The ancient elves constructed these sextants to use as navigational aids on all their seagoing vessels. The knowledge of their manufacture has been lost, and few of them remain. While attuned to the sextant, you can spend 1 minute using the sextant to determine your latitude and longitude, provided you can see the sun or stars. You can use an action steer up to four vessels that are within 1 mile of the sextant, provided their crews are willing. To do so, you must have spent at least 1 hour aboard each of the controlled vessels, performing basic sailing tasks and familiarizing yourself with the vessel.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_censer-of-dark-shadows", + "fields": { + "name": "Censer of Dark Shadows", + "desc": "This enchanted censer paints the air with magical, smoky shadow. While holding the censer, you can use an action to speak its command word, causing the censer to emit shadow in a 30-foot radius for 1 hour. Bright light and sunlight within this area is reduced to dim light, and dim light within this area is reduced to magical darkness. The shadow spreads around corners, and nonmagical light can't illuminate this shadow. The shadow emanates from the censer and moves with it. Completely enveloping the censer within another sealed object, such as a lidded pot or a leather bag, blocks the shadow. If any of this effect's area overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled. Once the censer is used to emit shadow, it can't do so again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_centaur-wrist-wraps", + "fields": { + "name": "Centaur Wrist-Wraps", + "desc": "These leather and fur wraps are imbued with centaur shamanic magic. The wraps are stained a deep amber color, and intricate motifs painted in blue seem to float above the surface of the leather. While wearing these wraps, you can call on their magic to reroll an attack made with a shortbow or longbow. You must use the new roll. Once used, the wraps must be held in wood smoke for 15 minutes before they can be used in this way again.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cephalopod-breastplate", + "fields": { + "name": "Cephalopod Breastplate", + "desc": "This bronze breastplate depicts two krakens fighting. While wearing this armor, you gain a +1 bonus to AC. You can use an action to speak the armor's command word to release a cloud of black mist (if above water) or black ink (if underwater). It billows out from you in a 20-foot-radius cloud of mist or ink. The area is heavily obscured for 1 minute, although a wind of moderate or greater speed (at least 10 miles per hour) or a significant current disperses it. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ceremonial-sacrificial-knife", + "fields": { + "name": "Ceremonial Sacrificial Knife", + "desc": "Runes dance along the blade of this keen knife. Sacrificial Knife (Common). While attuned to it, you can use this magic, rune-inscribed dagger as a spellcasting focus. Ceremonial Sacrificial Knife (Uncommon). More powerful versions of this blade also exist. While holding the greater version of this dagger, you can use it to perform a sacrificial ritual during a short rest. If you sacrifice a Tiny or Small creature, you regain one expended 1st-level spell slot. If you sacrifice a Medium or larger creature, you regain one expended 2nd-level spell slot.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chain-mail-of-warding-1", + "fields": { + "name": "Chain Mail of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chain-mail-of-warding-2", + "fields": { + "name": "Chain Mail of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chain-mail-of-warding-3", + "fields": { + "name": "Chain Mail of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chain-shirt-of-warding-1", + "fields": { + "name": "Chain Shirt of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chain-shirt-of-warding-2", + "fields": { + "name": "Chain Shirt of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chain-shirt-of-warding-3", + "fields": { + "name": "Chain Shirt of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chainbreaker-greatsword", + "fields": { + "name": "Chainbreaker Greatsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chainbreaker-longsword", + "fields": { + "name": "Chainbreaker Longsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chainbreaker-rapier", + "fields": { + "name": "Chainbreaker Rapier", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chainbreaker-scimitar", + "fields": { + "name": "Chainbreaker Scimitar", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chainbreaker-shortsword", + "fields": { + "name": "Chainbreaker Shortsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chalice-of-forbidden-ecstasies", + "fields": { + "name": "Chalice of Forbidden Ecstasies", + "desc": "The cup of this garnet chalice is carved in the likeness of a human skull. When the chalice is filled with blood, the dark red gemstone pulses with a scintillating crimson light that sheds dim light in a 5-foot radius. Each creature that drinks blood from this chalice has disadvantage on enchantment spells you cast for the next 24 hours. In addition, you can use an action to cast the suggestion spell, using your spell save DC, on a creature that has drunk blood from the chalice within the past 24 hours. You need to concentrate on this suggestion to maintain it during its duration. Once used, the suggestion power of the chalice can't be used again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chalk-of-exodus", + "fields": { + "name": "Chalk of Exodus", + "desc": "This piece of chalk glitters in the light, as if infused with particles of mica or gypsum. The chalk has 10 charges. You can use an action and expend 1 charge to draw a door on any solid surface upon which the chalk can leave a mark. You can then push open the door while picturing a real door within 10 miles of your current location. The door you picture must be one that you have passed through, in the normal fashion, once before. The chalk opens a magical portal to that other door, and you can step through the portal to appear at that other location as if you had stepped through that other door. At the destination, the target door opens, revealing a glowing portal from which you emerge. Once through, you can shut the door, dispelling the portal, or you can leave it open for up to 1 minute. While the door is open, any creature that can fit through the chalk door can traverse the portal in either direction. Each time you use the chalk, roll a 1d20. On a roll of 1, the magic malfunctions and connects you to a random door similar to the one you pictured within the same range, though it might be a door you have never seen before. The chalk becomes nonmagical when you use the last charge.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chamrosh-salve", + "fields": { + "name": "Chamrosh Salve", + "desc": "This 3-inch-diameter ceramic jar contains 1d4 + 1 doses of a syrupy mixture that smells faintly of freshly washed dog fur. The jar is a glorious gold-white, resembling the shimmering fur of a Chamrosh (see Tome of Beasts 2), the holy hound from which this salve gets its name. As an action, one dose of the ointment can be applied to the skin. The creature that receives it regains 2d8 + 1 hit points and is cured of the charmed, frightened, and poisoned conditions.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_charlatans-veneer", + "fields": { + "name": "Charlatan's Veneer", + "desc": "This silken scarf is a more powerful version of the Commoner's Veneer (see page 128). When in an area containing 12 or more humanoids, Wisdom (Perception) checks to spot you have disadvantage. You can use a bonus action to call on the power in the scarf to invoke a sense of trust in those to whom you speak. If you do so, you have advantage on the next Charisma (Persuasion) check you make against a humanoid while you are in an area containing 12 or more humanoids. In addition, while wearing the scarf, you can use modify memory on a humanoid you have successfully persuaded in the last 24 hours. The scarf can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_charm-of-restoration", + "fields": { + "name": "Charm of Restoration", + "desc": "This fist-sized ball of tightly-wound green fronds contains the bark of a magical plant with curative properties. A natural loop is formed from one of the fronds, allowing the charm to be hung from a pack, belt, or weapon pommel. As long as you carry this charm, whenever you are targeted by a spell or magical effect that restores your hit points, you regain an extra 1 hit point.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chieftains-axe", + "fields": { + "name": "Chieftain's Axe", + "desc": "Furs conceal the worn runes lining the haft of this oversized, silver-headed battleaxe. You gain a +2 bonus to attack and damage rolls made with this silvered, magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chillblain-breastplate", + "fields": { + "name": "Chillblain Breastplate", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chillblain-chain-mail", + "fields": { + "name": "Chillblain Chain Mail", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chillblain-chain-shirt", + "fields": { + "name": "Chillblain Chain Shirt", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chillblain-half-plate", + "fields": { + "name": "Chillblain Half Plate", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chillblain-plate", + "fields": { + "name": "Chillblain Plate", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chillblain-ring-mail", + "fields": { + "name": "Chillblain Ring Mail", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chillblain-scale-mail", + "fields": { + "name": "Chillblain Scale Mail", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chillblain-splint", + "fields": { + "name": "Chillblain Splint", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_chronomancers-pocket-clock", + "fields": { + "name": "Chronomancer's Pocket Clock", + "desc": "This golden pocketwatch has 3 charges and regains 1d3 expended charges daily at midnight. While holding it, you can use an action to wind it and expend 1 charge to cast the haste spell from it. If the pendant is destroyed (AC 14, 15 hit points) while it has 3 charges, the creature that broke it gains the effects of the time stop spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cinch-of-the-wolfmother", + "fields": { + "name": "Cinch of the Wolfmother", + "desc": "This belt is made of the treated and tanned intestines of a dire wolf, enchanted to imbue those who wear it with the ferocity and determination of the wolf. While wearing this belt, you can use an action to cast the druidcraft or speak with animals spell from it at will. In addition, you have advantage on Wisdom (Perception) checks that rely on hearing or smell. If you are reduced to 0 hit points while attuned to the belt and fail two death saving throws, you die immediately as your body violently erupts in a shower of blood, and a dire wolf emerges from your entrails. You assume control of the dire wolf, and it gains additional hit points equal to half of your maximum hit points prior to death. The belt then crumbles and is destroyed. If the wolf is targeted by a remove curse spell, then you are reborn when the wolf dies, just as the wolf was born when you died. However, if the curse remains after the wolf dies, you remain dead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_circlet-of-holly", + "fields": { + "name": "Circlet of Holly", + "desc": "While wearing this circlet, you gain the following benefits: - **Language of the Fey**. You can speak and understand Sylvan. - **Friend of the Fey.** You have advantage on ability checks to interact socially with fey creatures.\n- **Poison Sense.** You know if any food or drink you are holding contains poison.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_circlet-of-persuasion", + "fields": { + "name": "Circlet of Persuasion", + "desc": "While wearing this circlet, you have advantage on Charisma (Persuasion) checks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_clacking-teeth", + "fields": { + "name": "Clacking Teeth", + "desc": "Taken from a Fleshspurned (see Tome of Beasts 2), a toothy ghost, this bony jaw holds oversized teeth that sweat ectoplasm. The jaw has 3 charges and regains 1d3 expended charges daily at dusk. While holding the jaw, you can use an action to expend 1 of its charges and choose a target within 30 feet of you. The jaw's teeth clatter together, and the target must succeed on a DC 15 Wisdom saving throw or be confused for 1 minute. While confused, the target acts as if under the effects of the confusion spell. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_clamor-bell", + "fields": { + "name": "Clamor Bell", + "desc": "You can affix this small, brass bell to an object with the leather cords tied to its top. If anyone other than you picks up, interacts with, or uses the object without first speaking the bell's command word, it rings for 5 minutes or until you touch it and speak the command word again. The ringing is audible 100 feet away. If a creature takes an action to cut the bindings holding the bell onto the object, the bell ceases ringing 1 round after being released from the object.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_clarifying-goggles", + "fields": { + "name": "Clarifying Goggles", + "desc": "These goggles contain a lens of slightly rippled blue glass that turns clear underwater. While wearing these goggles underwater, you don't have disadvantage on Wisdom (Perception) checks that rely on sight when peering through silt, murk, or other natural underwater phenomena that would ordinarily lightly obscure your vision. While wearing these goggles above water, your vision is lightly obscured.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cleaning-concoction", + "fields": { + "name": "Cleaning Concoction", + "desc": "This fresh-smelling, clear green liquid can cover a Medium or smaller creature or object (or matched set of objects, such as a suit of clothes or pair of boots). Applying the liquid takes 1 minute. It removes soiling, stains, and residue, and it neutralizes and removes odors, unless those odors are particularly pungent, such as in skunks or creatures with the Stench trait. Once the potion has cleaned the target, it evaporates, leaving the creature or object both clean and dry.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cloak-of-coagulation", + "fields": { + "name": "Cloak of Coagulation", + "desc": "While wearing this rust red cloak, your blood quickly clots. When you are subjected to an effect that causes additional damage on subsequent rounds due to bleeding, blood loss, or continual necrotic damage, such as a horned devil's tail attack or a sword of wounding, the effect ceases after a single round of damage. For example, if a stirge hits you with its proboscis, you take the initial damage, plus the damage from blood loss on the following round, after which the wound clots, the stirge detaches, and you take no further damage. The cloak doesn't prevent a creature from using such an attack or effect again; a horned devil or a stirge can attack you again, though the cloak will continue to stop any recurring effects after a single round.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cloak-of-petals", + "fields": { + "name": "Cloak of Petals", + "desc": "This delicate cloak is covered in an array of pink, purple, and yellow flowers. While wearing this cloak, you have advantage on Dexterity (Stealth) checks made to hide in areas containing flowering plants. The cloak has 3 charges. When a creature you can see targets you with an attack, you can use your reaction to expend 1 of its charges to release a shower of petals from the cloak. If you do so, the attacker has disadvantage on the attack roll. The cloak regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cloak-of-sails", + "fields": { + "name": "Cloak of Sails", + "desc": "The interior of this simple, black cloak looks like white sailcloth. While wearing this cloak, you gain a +1 bonus to AC and saving throws. You lose this bonus while using the cloak's Sailcloth property.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cloak-of-squirrels", + "fields": { + "name": "Cloak of Squirrels", + "desc": "This wool brocade cloak features a repeating pattern of squirrel heads and tree branches. It has 3 charges and regains all expended charges daily at dawn. While wearing this cloak, you can use an action to expend 1 charge to cast the legion of rabid squirrels spell (see Deep Magic for 5th Edition) from it. You don't need to be in a forest to cast the spell from this cloak, as the squirrels come from within the cloak. When the spell ends, the swarm vanishes back inside the cloak.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cloak-of-the-bearfolk", + "fields": { + "name": "Cloak of the Bearfolk", + "desc": "While wearing this cloak, your Constitution score is 15, and you have proficiency in the Athletics skill. The cloak has no effect if you already have proficiency in this skill or if your Constitution score is already 15 or higher.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cloak-of-the-eel", + "fields": { + "name": "Cloak of the Eel", + "desc": "While wearing this rough, blue-gray leather cloak, you have a swimming speed of 40 feet. When you are hit with a melee weapon attack while wearing this cloak, you can use your reaction to generate a powerful electric charge. The attacker must succeed on a DC 13 Dexterity saving throw or take 2d6 lightning damage. The attacker has disadvantage on the saving throw if it hits you with a metal weapon. The cloak can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cloak-of-the-empire", + "fields": { + "name": "Cloak of the Empire", + "desc": "This voluminous grey cloak has bright red trim and the sigil from an unknown empire on its back. The cloak is stiff and doesn't fold as easily as normal cloth. Whenever you are struck by a ranged weapon attack, you can use a reaction to reduce the damage from that attack by your Charisma modifier (minimum of 1).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cloak-of-the-inconspicuous-rake", + "fields": { + "name": "Cloak of the Inconspicuous Rake", + "desc": "This cloak is spun from simple gray wool and closed with a plain, triangular copper clasp. While wearing this cloak, you can use a bonus action to make yourself forgettable for 5 minutes. A creature that sees you must make a DC 15 Intelligence saving throw as soon as you leave its sight. On a failure, the witness remembers seeing a person doing whatever you did, but it doesn't remember details about your appearance or mannerisms and can't accurately describe you to another. Creatures with truesight aren't affected by this cloak. The cloak can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cloak-of-the-ram", + "fields": { + "name": "Cloak of the Ram", + "desc": "While wearing this cloak, you can use an action to transform into a mountain ram (use the statistics of a giant goat). This effect works like the polymorph spell, except you retain your Intelligence, Wisdom, and Charisma scores. You can use an action to transform back into your original form. Each time you transform into a ram in a single day, you retain the hit points you had the last time you transformed. If you were reduced to 0 hit points the last time you were a ram, you can't become a ram again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cloak-of-the-rat", + "fields": { + "name": "Cloak of the Rat", + "desc": "While wearing this gray garment, you have a +5 bonus to your passive Wisdom (Perception) score.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cloak-of-wicked-wings", + "fields": { + "name": "Cloak of Wicked Wings", + "desc": "From a distance, this long, black cloak appears to be in tatters, but a closer inspection reveals that it is sewn from numerous scraps of cloth and shaped like bat wings. While wearing this cloak, you can use your action to cast polymorph on yourself, transforming into a swarm of bats. While in the form of a swarm of bats, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. If you are a druid with the Wild Shape feature, this transformation instead lasts as long as your Wild Shape lasts. The cloak can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_clockwork-gauntlet", + "fields": { + "name": "Clockwork Gauntlet", + "desc": "This metal gauntlet has a steam-powered ram built into the greaves. It has 3 charges and regains 1d3 expended charges daily at dawn. While wearing the gauntlet, you can expend 1 charge as a bonus action to force the ram in the gauntlets to slam a creature within 5 feet of you. The ram thrusts out from the gauntlet and makes its attack with a +5 bonus. On a hit, the target takes 2d8 bludgeoning damage, and it must succeed on a DC 13 Constitution saving throw or be stunned until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_clockwork-hand", + "fields": { + "name": "Clockwork Hand", + "desc": "A beautiful work of articulate brass, this prosthetic clockwork hand (or hands) can't be worn if you have both of your hands. While wearing this hand, you gain a +2 bonus to damage with melee weapon attacks made with this hand or weapons wielded in this hand.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_clockwork-hare", + "fields": { + "name": "Clockwork Hare", + "desc": "Gifted by a deity of time and clockwork, these simple-seeming trinkets portend some momentous event. The figurine resembles a hare with a clock in its belly. You can use an action to press the ears down and activate the clock, which spins chaotically. The hare emits a field of magic in a 30- foot radius from it for 1 hour. The field moves with the hare, remaining centered on it. While within the field, you and up to 5 willing creatures of your choice exist outside the normal flow of time, and all other creatures and objects are frozen in time. If an affected creature moves outside the field, the creature immediately becomes frozen in time until it is in the field again. The field ends early if an affected creature attacks, touches, alters, or has any other physical or magical impact on a creature, or an object being worn or carried by a creature, that is frozen in time. When the field ends, the figurine turns into a nonmagical, living white hare that goes bounding off into the distance, never to be seen again.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_clockwork-mace-of-divinity", + "fields": { + "name": "Clockwork Mace of Divinity", + "desc": "This clockwork mace is composed of several different metals. While attuned to this magic weapon, you have proficiency with it. As a bonus action, you can command the mace to transform into a trident. When you hit with an attack using this weapon's trident form, the target takes an extra 1d6 radiant damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_clockwork-mynah-bird", + "fields": { + "name": "Clockwork Mynah Bird", + "desc": "This mechanical brass bird is nine inches long from the tip of its beak to the end of its tail, and it can become active for up to 12 hours. Once it has been used, it can't be used again until 2 days have passed. If you use your action to speak the first command word (“listen” in Ignan), it cocks its head and listens intently to all nearby sounds with a passive Wisdom (Perception) of 17 for up to 10 minutes. When you give the second command word (“speak”), it repeats back what it heard in a metallic-sounding—though reasonably accurate—portrayal of the sounds. You can use the clockwork mynah bird to relay sounds and conversations it has heard to others. As an action, you can command the mynah to fly to a location it has previously visited within 1 mile. It waits at the location for up to 1 hour for someone to command it to speak. At the end of the hour or after it speaks its recording, it returns to you. The clockwork mynah bird has an Armor Class of 14, 5 hit points, and a flying speed of 50 feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_clockwork-pendant", + "fields": { + "name": "Clockwork Pendant", + "desc": "This pendant resembles an ornate, miniature clock and has 3 charges. While holding this pendant, you can expend 1 charge as an action to cast the blur, haste, or slow spell (save DC 15) from it. The spell's duration changes to 3 rounds, and it doesn't require concentration. You can have only one spell active at a time. If you cast another, the previous spell effect ends. It regains 1d3 expended charges daily at dawn. If the pendant is destroyed (AC 14, 15 hit points) while it has 3 charges, it creates a temporal distortion for 1d4 rounds. For the duration, each creature and object that enters or starts its turn within 10 feet of the pendant has immunity to all damage, all spells, and all other physical or magical effects but is otherwise able to move and act normally. If a creature moves further than 10 feet from the pendant, these effects end for it. At the end of the duration, the pendant crumbles to dust.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_clockwork-rogue-ring", + "fields": { + "name": "Clockwork Rogue Ring", + "desc": "Made by kobold clockwork mages, this brass clockwork ring is formed to look like a coiled dragon. When you speak or whisper the Draconic command word etched on the inside of the ring, the brass dragon uncoils and attempts to pick any lock within 10 feet of you. The dragon picks the lock using your proficiency bonus but with advantage. It is treated as having thieves' tools when attempting to pick locks. It uses your Dexterity (Stealth) bonus for purposes of not being spotted but with advantage due to its extremely small size. Whether successful or not, once you have used the ring to attempt to pick a lock, it can't be used again until the next sunset.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_clockwork-spider-cloak", + "fields": { + "name": "Clockwork Spider Cloak", + "desc": "This hooded cloak is made from black spider silk and has thin brass ribbing stitched on the inside. It has 3 charges. While wearing the cloak, you gain a +2 bonus on Dexterity (Stealth) checks. As an action, you can expend 1 charge to animate the brass ribs into articulated spider legs 1 inch thick and 6 feet long for 1 minute. You can use the charges in succession. The spider legs allow you to climb at your normal walking speed, and you double your proficiency bonus and gain advantage on any Strength (Athletics) checks made for slippery or difficult surfaces. The cloak regains 1d3 charges each day at sunset.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_coffer-of-memory", + "fields": { + "name": "Coffer of Memory", + "desc": "This small golden box resembles a jewelry box and is easily mistaken for a common trinket. When attuned to the box, its owner can fill the box with mental images of important events lasting no more than 1 minute each. Any number of memories can be stored this way. These images are similar to a slide show from the bearer's point of view. On a command from its owner, the box projects a mental image of a requested memory so that whoever is holding the box at that moment can see it. If a coffer of memory is found with memories already stored inside it, a newly-attuned owner can view a randomly-selected stored memory with a successful DC 15 Charisma check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_collar-of-beast-armor", + "fields": { + "name": "Collar of Beast Armor", + "desc": "This worked leather collar has stitching in the shapes of various animals. While a beast wears this collar, its base AC becomes 13 + its Dexterity modifier. It has no effect if the beast's base AC is already 13 or higher. This collar affects only beasts, which can include a creature affected by the polymorph spell or a druid assuming a beast form using Wild Shape.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_comfy-slippers", + "fields": { + "name": "Comfy Slippers", + "desc": "While wearing the slippers, your feet feel warm and comfortable, no matter what the ambient temperature.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_commanders-helm", + "fields": { + "name": "Commander's Helm", + "desc": "This helmet sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The type of light given off by the helm depends on the aesthetic desired by its creator. Some are surrounded in a wreath of hellish (though illusory) flames, while others give off a soft, warm halo of white or golden light. You can use an action to start or stop the light. While wearing the helm, you can use an action to make your voice loud enough to be heard clearly by anyone within 300 feet of you until the end of your next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_commanders-plate", + "fields": { + "name": "Commander's Plate", + "desc": "This armor is typically emblazoned or decorated with imagery of lions, bears, griffons, eagles, or other symbols of bravery and courage. While wearing this armor, your voice can be clearly heard by all friendly creatures within 300 feet of you if you so choose. Your voice doesn't carry in areas where sound is prevented, such as in the area of the silence spell. Each friendly creature that can see or hear you has advantage on saving throws against being frightened. You can use a bonus action to rally a friendly creature that can see or hear you. The target gains a +1 bonus to attack or damage rolls on its next turn. Once you have rallied a creature, you can't rally that creature again until it finishes a long rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_commanders-visage", + "fields": { + "name": "Commander's Visage", + "desc": "This golden mask resembles a stern face, glowering at the world. While wearing this mask, you have advantage on saving throws against being frightened. The mask has 7 charges for the following properties, and it regains 1d6 + 1 expended charges daily at midnight.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_commoners-veneer", + "fields": { + "name": "Commoner's Veneer", + "desc": "When you wear this simple, homespun scarf around your neck or head, it casts a minor glamer over you that makes you blend in with the people around you, avoiding notice. When in an area containing 25 or more humanoids, such as a city street, market place, or other public locale, Wisdom (Perception) checks to spot you amid the crowd have disadvantage. This item's power only works for creatures of the humanoid type or those using magic to take on a humanoid form.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_communal-flute", + "fields": { + "name": "Communal Flute", + "desc": "This flute is carved with skulls and can be used as a spellcasting focus. If you spend 10 minutes playing the flute over a dead creature, you can cast the speak with dead spell from the flute. The flute can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_companions-broth", + "fields": { + "name": "Companion's Broth", + "desc": "Developed by wizards with an interest in the culinary arts, this simple broth mends the wounds of companion animals and familiars. When a beast or familiar consumes this broth, it regains 2d4 + 2 hit points. Alternatively, you can mix a flower petal into the broth, and the beast or familiar gains 2d4 temporary hit points for 8 hours instead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_constant-dagger", + "fields": { + "name": "Constant Dagger", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon, the target loses its resistance to bludgeoning, piercing, and slashing damage until the start of your next turn. If it has immunity to bludgeoning, piercing, and slashing damage, its immunity instead becomes resistance to such damage until the start of your next turn. If the creature doesn't have resistance or immunity to such damage, you roll your damage dice three times, instead of twice.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_consuming-rod", + "fields": { + "name": "Consuming Rod", + "desc": "This bone mace is crafted from a humanoid femur. One end is carved to resemble a ghoulish face, its mouth open wide and full of sharp fangs. The mace has 8 charges, and it recovers 1d6 + 2 charges daily at dawn. You gain a +1 bonus to attack and damage rolls made with this magic mace. When it hits a creature, the mace's mouth stretches gruesomely wide and bites the target, adding 3 (1d6) piercing damage to the attack. As a reaction, you can expend 1 charge to regain hit points equal to the piercing damage dealt. Alternatively, you can use your reaction to expend 5 charges when you hit a Medium or smaller creature and force the mace to swallow the target. The target must succeed on a DC 15 Dexterity saving throw or be swallowed into an extra-dimensional space within the mace. While swallowed, the target is blinded and restrained, and it has total cover against attacks and other effects outside the mace. The target can still breathe. As an action, you can force the mace to regurgitate the creature, which falls prone in a space within 5 feet of the mace. The mace automatically regurgitates a trapped creature at dawn when it regains charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_copper-skeleton-key", + "fields": { + "name": "Copper Skeleton Key", + "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_coral-of-enchanted-colors", + "fields": { + "name": "Coral of Enchanted Colors", + "desc": "This piece of dead, white brain coral glistens with a myriad of colors when placed underwater. While holding this coral underwater, you can use an action to cause a beam of colored light to streak from the coral toward a creature you can see within 60 feet of you. The target must make a DC 17 Constitution saving throw. The beam's color determines its effects, as described below. Each color can be used only once. The coral regains the use of all of its colors at the next dawn if it is immersed in water for at least 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cordial-of-understanding", + "fields": { + "name": "Cordial of Understanding", + "desc": "When you drink this tangy, violet liquid, your mind opens to new forms of communication. For 1 hour, if you spend 1 minute listening to creatures speaking a particular language, you gain the ability to communicate in that language for the duration. This potion's magic can also apply to non-verbal languages, such as a hand signal-based or dance-based language, so long as you spend 1 minute watching it being used and have the appropriate anatomy and limbs to communicate in the language.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_corpsehunters-medallion", + "fields": { + "name": "Corpsehunter's Medallion", + "desc": "This amulet is made from the skulls of grave rats or from scrimshawed bones of the ignoble dead. While wearing it, you have resistance to necrotic damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_countermelody-crystals", + "fields": { + "name": "Countermelody Crystals", + "desc": "This golden bracelet is set with ten glistening crystal bangles that tinkle when they strike one another. When you must make a saving throw against being charmed or frightened, the crystals vibrate, creating an eerie melody, and you have advantage on the saving throw. If you fail the saving throw, you can choose to succeed instead by forcing one of the crystals to shatter. Once all ten crystals have shattered, the bracelet loses its magic and crumbles to powder.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_courtesans-allure", + "fields": { + "name": "Courtesan's Allure", + "desc": "This perfume has a sweet, floral scent and captivates those with high social standing. The perfume can cover one Medium or smaller creature, and applying it takes 1 minute. For 1 hour, the affected creature gains a +5 bonus to Charisma checks made to socially interact with or influence nobles, politicians, or other individuals with high social standing.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_crab-gloves", + "fields": { + "name": "Crab Gloves", + "desc": "These gloves are shaped like crab claws but fit easily over your hands. While wearing these gloves, you can take the Attack action to make two melee weapon attacks with the claws. You are proficient with the claws. Each claw has a reach of 5 feet and deals bludgeoning damage equal to 1d6 + your Strength modifier on a hit. If you hit a creature of your size or smaller using a claw, you automatically grapple the creature with the claw. You can have no more than two creatures grappled in this way at a time. While grappling a target with a claw, you can't attack other creatures with that claw. While wearing the gloves, you have disadvantage on Charisma and Dexterity checks, but you have advantage on checks while operating an apparatus of the crab and on attack rolls with the apparatus' claws. In addition, you can't wield weapons or a shield, and you can't cast a spell that has a somatic component. A creature with an Intelligence of 8 or higher that has two claws can wear these gloves. If it does so, it has two appropriately sized humanoid hands instead of claws. The creature can wield weapons with the hands and has advantage on Dexterity checks that require fine manipulation. Pulling the gloves on or off requires an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_crafter-shabti", + "fields": { + "name": "Crafter Shabti", + "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_cravens-heart", + "fields": { + "name": "Craven's Heart", + "desc": "This leathery mass of dried meat was once a humanoid heart, taken from an individual that died while experiencing great terror. You can use an action to whisper a command word and hurl the heart to the ground, where it revitalizes and begins to beat rapidly and loudly for 1 minute. Each creature withing 30 feet of the heart has disadvantage on saving throws against being frightened. At the end of the duration, the heart bursts from the strain and is destroyed. The heart can be attacked and destroyed (AC 11; hp 3; resistance to bludgeoning damage). If the heart is destroyed before the end if its duration, each creature within 30 feet of the heart must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. This bugbear necromancer was once the henchman of an accomplished practitioner of the dark arts named Varrus. She started as a bodyguard and tough, but her keen intellect caught her master's attention. He eventually took her on as an apprentice. Moxug is fascinated with fear, and some say she doesn't eat but instead sustains herself on the terror of her victims. She eventually betrayed Varrus, sabotaging his attempt to become a lich, and luxuriated in his fear as he realized he would die rather than achieve immortality. According to rumor, the first craven's heart she crafted came from the body of her former master.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_crawling-cloak", + "fields": { + "name": "Crawling Cloak", + "desc": "This unusual cloak is made of many overlapping, broad strips of thick cloth.\nCrawling Cloak (Common). When you are prone, you can animate the cloak and have it pull you along the ground, allowing you to ignore the extra movement cost for crawling. You can still only move up to your normal movement rate and can’t stand up from prone unless you still have at least half your movement remaining after moving.\n\nSturdy Crawling Cloak (Uncommon). This more powerful version of the crawling cloak also allows you to use the prehensile strips of the cloak to climb, giving you a climbing speed of 20 feet. If you already have a climbing speed, the cloak increases that speed by 10 feet. When using the cloak, you can keep your hands free while climbing.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_crimson-carpet", + "fields": { + "name": "Crimson Carpet", + "desc": "This rolled bundle of red felt is 3-feet long and 1-foot wide, and it weighs 10 pounds. You can use an action to speak the carpet's command word to cause it to unroll, creating a horizontal walking surface or bridge up to 10 feet wide, up to 60 feet long, and 1/4 inch thick. The carpet doesn't need to be anchored and can hover. The carpet has immunity to all damage and isn't affected by the dispel magic spell. The disintegrate spell destroys the carpet. The carpet remains unrolled until you use an action to repeat the command word, causing it to roll up again. When you do so, the carpet can't be unrolled again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_crimson-starfall-arrow", + "fields": { + "name": "Crimson Starfall Arrow", + "desc": "This arrow is a magic weapon powered by the sacrifice of your own life energy and explodes upon impact. If you hit a creature with this arrow, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and each creature within 10 feet of the target, including the target, must make a DC 15 Dexterity saving throw, taking necrotic damage equal to the hit points you lost on a failed save, or half as much damage on a successful one. You can't use this feature of the arrow if you don't have blood. Hit Dice spent on this arrow's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_crocodile-hide-armor", + "fields": { + "name": "Crocodile Hide Armor", + "desc": "While wearing this armor fashioned from crocodile skin, you gain a +1 bonus to AC. In addition, you can hold your breath for 15 minutes, and you have a swimming speed equal to your walking speed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_crocodile-leather-armor", + "fields": { + "name": "Crocodile Leather Armor", + "desc": "While wearing this armor fashioned from crocodile skin, you gain a +1 bonus to AC. In addition, you can hold your breath for 15 minutes, and you have a swimming speed equal to your walking speed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_crook-of-the-flock", + "fields": { + "name": "Crook of the Flock", + "desc": "This plain crook is made of smooth, worn lotus wood and is warm to the touch.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_crown-of-the-pharaoh", + "fields": { + "name": "Crown of the Pharaoh", + "desc": "The swirling gold bands of this crown recall the shape of desert dunes, and dozens of tiny emeralds, rubies, and sapphires nest among the skillfully forged curlicues. While wearing the crown, you gain the following benefits: Your Intelligence score is 25. This crown has no effect on you if your Intelligence is already 25 or higher. You have a flying speed equal to your walking speed. While you are wearing no armor and not wielding a shield, your Armor Class equals 16 + your Dexterity modifier.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_crusaders-shield", + "fields": { + "name": "Crusader's Shield", + "desc": "A bronze boss is set in the center of this round shield. When you attune to the shield, the boss changes shape, becoming a symbol of your divine connection: a holy symbol for a cleric or paladin or an engraving of mistletoe or other sacred plant for a druid. You can use the shield as a spellcasting focus for your spells.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_crystal-skeleton-key", + "fields": { + "name": "Crystal Skeleton Key", + "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_crystal-staff", + "fields": { + "name": "Crystal Staff", + "desc": "Carved from a single piece of solid crystal, this staff has numerous reflective facets that produce a strangely hypnotic effect. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: color spray (1 charge), confound senses* (3 charges), confusion (4 charges), hypnotic pattern (3 charges), jeweled fissure* (3 charges), prismatic ray* (5 charges), or prismatic spray (7 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to light or confusion. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the crystal shatters, destroying the staff and dealing 2d6 piercing damage to each creature within 10 feet of it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dagger-of-the-barbed-devil", + "fields": { + "name": "Dagger of the Barbed Devil", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. You can use an action to cause sharp, pointed barbs to sprout from this blade. The barbs remain for 1 minute. When you hit a creature while the barbs are active, the creature must succeed on a DC 15 Dexterity saving throw or a barb breaks off into its flesh and the dagger loses its barbs. At the start of each of its turns, a creature with a barb in its flesh must make a DC 15 Constitution saving throw. On a failure, it has disadvantage on attack rolls and ability checks until the start of its next turn as it is wracked with pain. The barb remains until a creature uses its action to remove the barb, dealing 1d4 piercing damage to the barbed creature. Once you cause barbs to sprout from the dagger, you can't do so again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dancing-caltrops", + "fields": { + "name": "Dancing Caltrops", + "desc": "After you pour these magic caltrops out of the bag into an area, you can use a bonus action to animate them and command them to move up to 10 feet to occupy a different square area that is 5 feet on a side.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dancing-floret", + "fields": { + "name": "Dancing Floret", + "desc": "This 2-inch-long plant has a humanoid shape, and a large purple flower sits at the top of the plant on a short, neck-like stalk. Small, serrated thorns on its arms and legs allow it to cling to your clothing, and it most often dances along your arm or across your shoulders. While attuned to the floret, you have proficiency in the Performance skill, and you double your proficiency bonus on Charisma (Performance) checks made while dancing. The floret has 3 charges for the following other properties. The floret regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dancing-ink", + "fields": { + "name": "Dancing Ink", + "desc": "This ink is favored by merchants for eye-catching banners and by toy makers for scrolls and books for children. Typically found in 1d4 pots, this ink allows you to draw an illustration that moves about the page where it was drawn, whether that is an illustration of waves crashing against a shore along the bottom of the page or a rabbit leaping over the page's text. The ink wears away over time due to the movement and fades from the page after 2d4 weeks. The ink moves only when exposed to light, and some long-forgotten tomes have been opened to reveal small, moving illustrations drawn by ancient scholars. One pot can be used to fill 25 pages of a book or a similar total area for larger banners.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dastardly-quill-and-parchment", + "fields": { + "name": "Dastardly Quill and Parchment", + "desc": "Favored by spies, this quill and parchment are magically linked as long as both remain on the same plane of existence. When a creature writes or draws on any surface with the quill, that writing or drawing appears on its linked parchment, exactly as it would appear if the writer was writing or drawing on the parchment with black ink. This effect doesn't prevent the quill from being used as a standard quill on a nonmagical piece of parchment, but this written communication is one-way, from quill to parchment. The quill's linked parchment is immune to all nonmagical inks and stains, and any magical messages written on the parchment disappear after 1 minute and aren't conveyed to the creature holding the quill. The parchment is approximately 9 inches wide by 13 inches long. If the quill's writing exceeds the area of the parchment, the older writing fades from the top of the sheet, replaced by the newer writing. Otherwise, the quill's writing remains on the parchment for 24 hours, after which time all writing fades from it. If either item is destroyed, the other item becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dawn-shard-dagger", + "fields": { + "name": "Dawn Shard Dagger", + "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dawn-shard-greatsword", + "fields": { + "name": "Dawn Shard Greatsword", + "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dawn-shard-longsword", + "fields": { + "name": "Dawn Shard Longsword", + "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dawn-shard-rapier", + "fields": { + "name": "Dawn Shard Rapier", + "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dawn-shard-scimitar", + "fields": { + "name": "Dawn Shard Scimitar", + "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dawn-shard-shortsword", + "fields": { + "name": "Dawn Shard Shortsword", + "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_deadfall-arrow", + "fields": { + "name": "Deadfall Arrow", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic arrow. On a hit, the arrow transforms into a 10-foot-long wooden log centered on the target, destroying the arrow. The target and each creature in the log's area must make a DC 15 Dexterity saving throw. On a failure, a creature takes 3d6 bludgeoning damage and is knocked prone and restrained under the log. On a success, a creature takes half the damage and isn't knocked prone or restrained. A restrained creature can take its action to free itself by succeeding on a DC 15 Strength check. The log lasts for 1 minute then crumbles to dust, freeing those restrained by it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_deaths-mirror", + "fields": { + "name": "Death's Mirror", + "desc": "Made from woven lead and silver, this ring fits only on the hand's smallest finger. As the moon is a dull reflection of the sun's glory, so too is the power within this ring merely an imitation of the healing energies that can bestow true life. The ring has 3 charges and regains all expended charges daily at dawn. While wearing the ring, you can expend 1 charge as a bonus action to gain 5 temporary hit points for 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_decoy-card", + "fields": { + "name": "Decoy Card", + "desc": "This small, thick, parchment card displays an accurate portrait of the person carrying it. You can use an action to toss the card on the ground at a point within 10 feet of you. An illusion of you forms over the card and remains until dispelled. The illusion appears real, but it can do no harm. While you are within 120 feet of the illusion and can see it, you can use an action to make it move and behave as you wish, as long as it moves no further than 10 feet from the card. Any physical interaction with your illusory double reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect your illusory double identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The illusion lasts until the card is moved or the illusion is dispelled. When the illusion ends, the card's face becomes blank, and the card becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_deepchill-orb", + "fields": { + "name": "Deepchill Orb", + "desc": "This fist-sized sphere of blue quartz emits cold. If placed in a container with a capacity of up to 5 cubic feet, it keeps the internal temperature of the container at a consistent 40 degrees Fahrenheit. This can keep liquids chilled, preserve cooked foods for up to 1 week, raw meats for up to 3 days, and fruits and vegetables for weeks. If you hold the orb without gloves or other insulating method, you take 1 cold damage each minute you hold it. At the GM's discretion, the orb's cold can be applied to other uses, such as keeping it in contact with a hot item to cool down the item enough to be handled, wrapping it and using it as a cooling pad to bring down fever or swelling, or similar.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_defender-shabti", + "fields": { + "name": "Defender Shabti", + "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_deserters-boots", + "fields": { + "name": "Deserter's Boots", + "desc": "While you wear these boots, your walking speed increases by 10 feet, and you gain a +1 bonus to Dexterity saving throws.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_devil-shark-mask", + "fields": { + "name": "Devil Shark Mask", + "desc": "When you wear this burgundy face covering, it transforms your face into a shark-like visage, and the mask sprouts wicked horns. While wearing this mask, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d8 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. You gain a +1 bonus to attack and damage rolls with this magic bite. In addition, you have advantage on Charisma (Intimidation) checks while wearing this mask.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_devilish-doubloon", + "fields": { + "name": "Devilish Doubloon", + "desc": "This gold coin bears the face of a leering devil on the obverse. If it is placed among other coins, it changes its appearance to mimic its neighbors, doing so over the course of 1 hour. This is a purely cosmetic change, and it returns to its original appearance when grasped by a creature with an Intelligence of 5 or higher. You can use a bonus action to toss the coin up to 20 feet. When the coin lands, it transforms into a barbed devil. The devil vanishes after 1 hour or when it is reduced to 0 hit points. When the devil vanishes, the coin reappears in a collection of at least 20 gold coins elsewhere on the same plane where it vanished. The devil is friendly to you and your companions. Roll initiative for the devil, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the devil, it defends itself from hostile creatures but otherwise takes no actions. If you are reduced to 0 hit points and the devil is still alive, it moves to your body and uses its action to grab your soul. You must succeed on a DC 15 Charisma saving throw or the devil steals your soul and you die. If the devil fails to grab your soul, it vanishes as if slain. If the devil grabs your soul, it uses its next action to transport itself back to the Hells, disappearing in a flash of brimstone. If the devil returns to the Hells with your soul, its coin doesn't reappear, and you can be restored to life only by means of a true resurrection or wish spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_devils-barb", + "fields": { + "name": "Devil's Barb", + "desc": "This thin wand is fashioned from the fiendish quill of a barbed devil. While attuned to it, you have resistance to cold damage. The wand has 6 charges for the following properties. It regains 1d6 expended charges daily at dusk. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into cinders and is destroyed. Hurl Flame. While holding the wand, you can expend 2 charges as an action to hurl a ball of devilish flame at a target you can see within 150 feet of you. The target must succeed on a DC 15 Dexterity check or take 3d6 fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire. Devil's Sight. While holding the wand, you can expend 1 charge as an action to cast the darkvision spell on yourself. Magical darkness doesn't impede this darkvision.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_digger-shabti", + "fields": { + "name": "Digger Shabti", + "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dimensional-net", + "fields": { + "name": "Dimensional Net", + "desc": "Woven from the hair of celestials and fiends, this shimmering iridescent net can subdue and capture otherworldly creatures. You have a +1 bonus to attack rolls with this magic weapon. In addition to the normal effects of a net, this net prevents any Large or smaller aberration, celestial, or fiend hit by it from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. When such a creature is bound in this way, a creature must succeed on a DC 30 Strength (Athletics) check to free the bound creature. The net has immunity to damage dealt by the bound creature, but another creature can deal 20 slashing damage to the net and free the bound creature, ending the effect. The net has AC 15 and 30 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the net drops to 0 hit points, it is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dirgeblade", + "fields": { + "name": "Dirgeblade", + "desc": "This weapon is an exquisitely crafted rapier set in a silver and leather scabbard. The blade glows a faint stormy blue and is encircled by swirling wisps of clouds. You gain a +3 bonus to attack and damage rolls made with this magic weapon. This weapon, when unsheathed, sheds dim blue light in a 20-foot radius. When you hit a creature with it, you can expend 1 Bardic Inspiration to impart a sense of overwhelming grief in the target. A creature affected by this grief must succeed on a DC 15 Wisdom saving throw or fall prone and become incapacitated by sadness until the end of its next turn. Once a month under an open sky, you can use a bonus action to speak this magic sword's command word and cause the sword to sing a sad dirge. This dirge conjures heavy rain (or snow in freezing temperatures) in the region for 2d6 hours. The precipitation falls in an X-mile radius around you, where X is equal to your level.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dirk-of-daring", + "fields": { + "name": "Dirk of Daring", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While holding the dagger, you have advantage on saving throws against being frightened.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_distracting-doubloon", + "fields": { + "name": "Distracting Doubloon", + "desc": "This gold coin is plain and matches the dominant coin of the region. Typically, 2d6 distracting doubloons are found together. You can use an action to toss the coin up to 20 feet. The coin bursts into a flash of golden light on impact. Each creature within a 15-foot radius of where the coin landed must succeed on a DC 11 Wisdom saving throw or have disadvantage on Wisdom (Perception) checks made to perceive any creature or object other than the coin for 1 minute. If an affected creature takes damage, it can repeat the saving throw, ending the effect on itself on a success. At the end of the duration, the coin crumbles to dust and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_djinn-vessel", + "fields": { + "name": "Djinn Vessel", + "desc": "A rough predecessor to the ring of djinni summoning and the ring elemental command, this clay vessel is approximately a foot long and half as wide. An iron stopper engraved with a rune of binding seals its entrance. If the vessel is empty, you can use an action to remove the stopper and cast the banishment spell (save DC 15) on a celestial, elemental, or fiend within 60 feet of you. At the end of the spell's duration, if the target is an elemental, it is trapped in this vessel. While trapped, the elemental can take no actions, but it is aware of occurrences outside of the vessel and of other djinn vessels. You can use an action to remove the vessel's stopper and release the elemental the vessel contains. Once released, the elemental acts in accordance with its normal disposition and alignment.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_doppelganger-ointment", + "fields": { + "name": "Doppelganger Ointment", + "desc": "This ceramic jar contains 1d4 + 1 doses of a thick, creamy substance that smells faintly of pork fat. The jar and its contents weigh 1/2 a pound. Applying a single dose to your body takes 1 minute. For 24 hours or until it is washed off with an alcohol solution, you can change your appearance, as per the Change Appearance option of the alter self spell. For the duration, you can use a bonus action to return to your normal form, and you can use an action to return to the form of the mimicked creature. If you add a piece of a specific creature (such as a single hair, nail paring, or drop of blood), the ointment becomes more powerful allowing you to flawlessly imitate that creature, as long as its body shape is humanoid and within one size category of your own. While imitating that creature, you have advantage on Charisma checks made to convince others you are that specific creature, provided they didn't see you change form.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dragonstooth-blade", + "fields": { + "name": "Dragonstooth Blade", + "desc": "This razor-sharp blade, little more than leather straps around the base of a large tooth, still carries the power of a dragon. This weapon's properties are determined by the type of dragon that once owned this tooth. The GM chooses the dragon type or determines it randomly from the options below. When you hit with an attack using this magic sword, the target takes an extra 1d6 damage of a type determined by the kind of dragon that once owned the tooth. In addition, you have resistance to the type of damage associated with that dragon. | d6 | Damage Type | Dragon Type |\n| --- | ----------- | ------------------- |\n| 1 | Acid | Black or Copper |\n| 2 | Fire | Brass, Gold, or Red |\n| 3 | Poison | Green |\n| 4 | Lightning | Blue or Bronze |\n| 5 | Cold | Silver or White |\n| 6 | Necrotic | Undead |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_draught-of-ambrosia", + "fields": { + "name": "Draught of Ambrosia", + "desc": "The liquid in this tiny vial is golden and has a heady, floral scent. When you drink the draught, it fortifies your body and mind, removing any infirmity caused by old age. You stop aging and are immune to any magical and nonmagical aging effects. The magic of the ambrosia lasts ten years, after which time its power fades, and you are once again subject to the ravages of time and continue aging.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_draught-of-the-black-owl", + "fields": { + "name": "Draught of the Black Owl", + "desc": "When you drink this potion, you transform into a black-feathered owl for 1 hour. This effect works like the polymorph spell, except you can take only the form of an owl. While you are in the form of an owl, you retain your Intelligence, Wisdom, and Charisma scores. If you are a druid with the Wild Shape feature, you can transform into a giant owl instead. Drinking this potion doesn't expend a use of Wild Shape.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dread-scarab", + "fields": { + "name": "Dread Scarab", + "desc": "The abdomen of this beetleshaped brooch is decorated with the grim semblance of a human skull. If you hold it in your hand for 1 round, an Abyssal inscription appears on its surface, revealing its magical nature. While wearing this brooch, you gain the following benefits:\n- You have advantage on saving throws against spells.\n- The scarab has 9 charges. If you fail a saving throw against a conjuration spell or a harmful effect originating from a celestial creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into dust and is destroyed when its last charge is expended.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dust-of-desiccation", + "fields": { + "name": "Dust of Desiccation", + "desc": "This small packet contains soot-like dust. There is enough of it for one use. When you use an action to blow the choking dust from your palm, each creature in a 30-foot cone must make a DC 15 Dexterity saving throw, taking 3d10 necrotic damage on a failed save, or half as much damage on a successful one. A creature that fails this saving throw can't speak until the end of its next turn as it chokes on the dust. Alternatively, you can use an action to throw the dust into the air, affecting yourself and each creature within 30 feet of you with the dust.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dust-of-muffling", + "fields": { + "name": "Dust of Muffling", + "desc": "You can scatter this fine, silvery-gray dust on the ground as an action, covering a 10-foot-square area. There is enough dust in one container for up to 5 uses. When a creature moves over an area covered in the dust, it has advantage on Dexterity (Stealth) checks to remain unheard. The effect remains until the dust is swept up, blown away, or tracked away by the traffic of eight or more creatures passing through the area.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_dust-of-the-dead", + "fields": { + "name": "Dust of the Dead", + "desc": "This stoppered vial is filled with dust and ash. There is enough of it for one use. When you use an action to sprinkle the dust on a willing humanoid, the target falls into a death-like slumber for 8 hours. While asleep, the target appears dead to all mundane and magical means, but spells that target the dead, such as the speak with dead spell, fail when used on the target. The cause of death is not evident, though any wounds the target has taken remain visible. If the target takes damage while asleep, it has resistance to the damage. If the target is reduced to below half its hit points while asleep, it must succeed on a DC 15 Constitution saving throw to wake up. If the target is reduced to 5 hit points or fewer while asleep, it wakes up. If the target is unwilling, it must succeed on a DC 11 Constitution saving throw to avoid the effect of the dust. A sleeping creature is considered an unwilling target.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_eagle-cape", + "fields": { + "name": "Eagle Cape", + "desc": "The exterior of this silk cape is lined with giant eagle feathers. When you fall while wearing this cape, you descend 60 feet per round, take no damage from falling, and always land on your feet. In addition, you can use an action to speak the cloak's command word. This turns the cape into a pair of eagle wings which give you a flying speed of 60 feet for 1 hour or until you repeat the command word as an action. When the wings revert back to a cape, you can't use the cape in this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_earrings-of-the-agent", + "fields": { + "name": "Earrings of the Agent", + "desc": "Aside from a minor difference in size, these simple golden hoops are identical to one another. Each hoop has 1 charge and provides a different magical effect. Each hoop regains its expended charge daily at dawn. You must be wearing both hoops to use the magic of either hoop.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_earrings-of-the-eclipse", + "fields": { + "name": "Earrings of the Eclipse", + "desc": "These two cubes of smoked quartz are mounted on simple, silver posts. While you are wearing these earrings, you can take the Hide action while you are motionless in an area of dim light or darkness even when a creature can see you or when you have nothing to obscure you from the sight of a creature that can see you. If you are in darkness when you use the Hide action, you have advantage on the Dexterity (Stealth) check. If you move, attack, cast a spell, or do anything other than remain motionless, you are no longer hidden and can be detected normally.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_earrings-of-the-storm-oyster", + "fields": { + "name": "Earrings of the Storm Oyster", + "desc": "The deep blue pearls forming the core of these earrings come from oysters that survive being struck by lightning. While wearing these earrings, you gain the following benefits:\n- You have resistance to lightning and thunder damage.\n- You can understand Primordial. When it is spoken, the pearls echo the words in a language you can understand, at a whisper only you can hear.\n- You can't be deafened.\n- You can breathe air and water. - As an action, you can cast the sleet storm spell (save DC 15) from the earrings. The earrings can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ebon-shards", + "fields": { + "name": "Ebon Shards", + "desc": "These obsidian shards are engraved with words in Deep Speech, and their presence disquiets non-evil, intelligent creatures. The writing on the shards is obscure, esoteric, and possibly incomplete. The shards have 10 charges and give you access to a powerful array of Void magic spells. While holding the shards, you use an action to expend 1 or more of its charges to cast one of the following spells from them, using your spell save DC and spellcasting ability: living shadows* (5 charges), maddening whispers* (2 charges), or void strike* (3 charges). You can also use an action to cast the crushing curse* spell from the shards without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness or madness. The shards regain 1d6 + 4 expended charges daily at dusk. Each time you use the ebon shards to cast a spell, you must succeed on a DC 12 Charisma saving throw or take 2d6 psychic damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_efficacious-eyewash", + "fields": { + "name": "Efficacious Eyewash", + "desc": "This clear liquid glitters with miniscule particles of light. A bottle of this potion contains 6 doses, and its lid comes with a built-in dropper. You can use an action to apply 1 dose to the eyes of a blinded creature. The blinded condition is suppressed for 2d4 rounds. If the blinded condition has a duration, subtract those rounds from the total duration; if doing so reduces the overall duration to 0 rounds or less, then the condition is removed rather than suppressed. This eyewash doesn't work on creatures that are naturally blind, such as grimlocks, or creatures blinded by severe damage or removal of their eyes.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_eldritch-rod", + "fields": { + "name": "Eldritch Rod", + "desc": "This bone rod is carved into the shape of twisting tendrils or tentacles. You can use this rod as an arcane focus. The rod has 3 charges and regains all expended charges daily at dawn. When you cast a spell that requires an attack roll and that deals damage while holding this rod, you can expend 1 of its charges as part of the casting to enhance that spell. If the attack hits, the spell also releases tendrils that bind the target, grappling it for 1 minute. At the start of each of your turns, the grappled target takes 1d6 damage of the same type dealt by the spell. At the end of each of its turns, the grappled target can make a Dexterity saving throw against your spell save DC, freeing itself from the tendrils on a success. The rod's magic can grapple only one target at a time. If you use the rod to grapple another target, the effect on the previous target ends.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_elemental-wraps", + "fields": { + "name": "Elemental Wraps", + "desc": "These cloth arm wraps are decorated with elemental symbols depicting flames, lightning bolts, snowflakes, and similar. You have resistance to acid, cold, fire, lightning, or thunder damage while you wear these arm wraps. You choose the type of damage when you first attune to the wraps, and you can choose a different type of damage at the end of a short or long rest. The wraps have 10 charges. When you hit with an unarmed strike while wearing these wraps, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 damage of the type to which you have resistance. The wraps regain 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the wraps unravel and fall to the ground, becoming nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_elixir-of-corruption", + "fields": { + "name": "Elixir of Corruption", + "desc": "This elixir looks, smells, and tastes like a potion of heroism; however, it is actually a poisonous elixir masked by illusion magic. An identify spell reveals its true nature. If you drink it, you must succeed on a DC 15 Constitution saving throw or be corrupted by the diabolical power within the elixir for 1 week. While corrupted, you lose immunity to diseases, poison damage, and the poisoned condition. If you aren't normally immune to poison damage, you instead have vulnerability to poison damage while corrupted. The corruption can be removed with greater restoration or similar magic.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_elixir-of-deep-slumber", + "fields": { + "name": "Elixir of Deep Slumber", + "desc": "The milky-white liquid in this vial smells of jasmine and sandalwood. When you drink this potion, you fall into a deep sleep, from which you can't be physically awakened, for 1 hour. A successful dispel magic (DC 13) cast on you awakens you but cancels any beneficial effects of the elixir. When you awaken at the end of the hour, you benefit from the sleep as if you had finished a long rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_elixir-of-focus", + "fields": { + "name": "Elixir of Focus", + "desc": "This deep amber concoction seems to glow with an inner light. When you drink this potion, you have advantage on the next ability check you make within 10 minutes, then the elixir's effect ends.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_elixir-of-mimicry", + "fields": { + "name": "Elixir of Mimicry", + "desc": "When you drink this sweet, oily, black liquid, you can imitate the voice of a single creature that you have heard speak within the past 24 hours. The effects last for 3 minutes.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_elixir-of-oracular-delirium", + "fields": { + "name": "Elixir of Oracular Delirium", + "desc": "This pearlescent fluid perpetually swirls inside its container with a slow kaleidoscopic churn. When you drink this potion, you can cast the guidance spell for 1 hour at will. You can end this effect early as an action and gain the effects of the augury spell. If you do, you are afflicted with short-term madness after learning the spell's results.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_elixir-of-spike-skin", + "fields": { + "name": "Elixir of Spike Skin", + "desc": "Slivers of bone float in the viscous, gray liquid inside this vial. When you drink this potion, bone-like spikes protrude from your skin for 1 hour. Each time a creature hits you with a melee weapon attack while within 5 feet of you, it must succeed on a DC 15 Dexterity saving throw or take 1d4 piercing damage from the spikes. In addition, while you are grappling a creature or while a creature is grappling you, it takes 1d4 piercing damage at the start of your turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_elixir-of-the-clear-mind", + "fields": { + "name": "Elixir of the Clear Mind", + "desc": "This cerulean blue liquid sits calmly in its flask even when jostled or shaken. When you drink this potion, you have advantage on Wisdom checks and saving throws for 1 hour. For the duration, if you fail a saving throw against an enchantment or illusion spell or similar magic effect, you can choose to succeed instead. If you do, you draw upon all the potion's remaining power, and its effects end immediately thereafter.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_elixir-of-the-deep", + "fields": { + "name": "Elixir of the Deep", + "desc": "This thick, green, swirling liquid tastes like salted mead. For 1 hour after drinking this elixir, you can breathe underwater, and you can see clearly underwater out to a range of 60 feet. The elixir doesn't allow you to see through magical darkness, but you can see through nonmagical clouds of silt and other sedimentary particles as if they didn't exist. For the duration, you also have advantage on saving throws against the spells and other magical effects of fey creatures native to water environments, such as a Lorelei (see Tome of Beasts) or Water Horse (see Creature Codex).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_elixir-of-wakefulness", + "fields": { + "name": "Elixir of Wakefulness", + "desc": "This effervescent, crimson liquid is commonly held in a thin, glass vial capped in green wax. When you drink this elixir, its effects last for 8 hours. While the elixir is in effect, you can't fall asleep by normal means. You have advantage on saving throws against effects that would put you to sleep. If you are affected by the sleep spell, your current hit points are considered 10 higher when determining the effects of the spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_elk-horn-rod", + "fields": { + "name": "Elk Horn Rod", + "desc": "This rod is fashioned from elk or reindeer horn. As an action, you can grant a +1 bonus on saving throws against spells and magical effects to a target touched by the wand, including yourself. The bonus lasts 1 round. If you are holding the rod while performing the somatic component of a dispel magic spell or comparable magic, you have a +1 bonus on your spellcasting ability check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_encouraging-breastplate", + "fields": { + "name": "Encouraging Breastplate", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_encouraging-chain-mail", + "fields": { + "name": "Encouraging Chain Mail", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_encouraging-chain-shirt", + "fields": { + "name": "Encouraging Chain Shirt", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_encouraging-half-plate", + "fields": { + "name": "Encouraging Half Plate", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_encouraging-hide-armor", + "fields": { + "name": "Encouraging Hide Armor", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_encouraging-leather-armor", + "fields": { + "name": "Encouraging Leather Armor", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_encouraging-padded-armor", + "fields": { + "name": "Encouraging Padded Armor", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_encouraging-plate", + "fields": { + "name": "Encouraging Plate", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_encouraging-ring-mail", + "fields": { + "name": "Encouraging Ring Mail", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_encouraging-scale-mail", + "fields": { + "name": "Encouraging Scale Mail", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_encouraging-splint", + "fields": { + "name": "Encouraging Splint", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_encouraging-studded-leather", + "fields": { + "name": "Encouraging Studded Leather", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_enraging-ammunition", + "fields": { + "name": "Enraging Ammunition", + "desc": "When you hit a creature with a ranged attack using this magical ammunition, the target must succeed on a DC 13 Wisdom saving throw or become enraged for 1 minute. On its turn, an enraged creature moves toward you by the most direct route, trying to get within 5 feet of you. It doesn't avoid opportunity attacks, but it moves around or avoids damaging terrain, such as lava or a pit. If the enraged creature is within 5 feet of you, it attacks you. An enraged creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ensnaring-ammunition", + "fields": { + "name": "Ensnaring Ammunition", + "desc": "When you hit a creature with a ranged attack using this magical ammunition, the target takes only half the damage from the attack, and the target is restrained as the ammunition bursts into entangling strands that wrap around it. As an action, the restrained target can make a DC 13 Strength check, bursting the bonds on a success. The strands can also be attacked and destroyed (AC 10; hp 5; immunity to bludgeoning, poison, and psychic damage).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_entrenching-mattock", + "fields": { + "name": "Entrenching Mattock", + "desc": "You gain a +1 to attack and damage rolls with this magic weapon. This bonus increases to +3 when you use the pick to attack a creature made of earth or stone, such as an earth elemental or stone golem. As a bonus action, you can slam the head of the pick into earth, sand, mud, or rock within 5 feet of you to create a wall of that material up to 30 feet long, 3 feet high, and 1 foot thick along that surface. The wall provides half cover to creatures behind it. The pick can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_everflowing-bowl", + "fields": { + "name": "Everflowing Bowl", + "desc": "This smooth, stone bowl feels especially cool to the touch. It holds up to 1 pint of water. When placed on the ground, the bowl magically draws water from the nearby earth and air, filling itself after 1 hour. In arid or desert environments, the bowl fills itself after 8 hours. The bowl never overflows itself.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_explosive-orb-of-obfuscation", + "fields": { + "name": "Explosive Orb of Obfuscation", + "desc": "Originally fashioned in the laboratory of the archmage Lugax for his good natured but often roguish friend, Kennich, these spherical ceramic containers are the size of a large human fist. Arcane sigils decorate each orb, detailing its properties to those capable of reading the sigils. The magic-infused chemicals in each orb must be briefly exposed to air before being thrown to activate them. A metal rod sits in the cork of each orb, allowing you to quickly twist open the container before throwing it. Typically, 1d4 + 1 orbs of obfuscation are found together. You can use an action to activate and throw the orb up to 60 feet. The orb explodes on impact and is destroyed. The orb's effects are determined by its type. Orb of Obfuscation (Uncommon). This orb is a dark olive color with a stripe of bright blue paint encircling it. When activated, the orb releases an opaque grey gas and creates a 30-foot-radius sphere of this gas centered on the point where the orb landed. The sphere spreads around corners, and its area is heavily obscured. The magical gas also dampens sound. Each creature in the gas can hear only sounds originating within 5 feet of it, and creatures outside of the gas can’t hear sounds originating inside the gas. The gas lasts for 5 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. Explosive Orb of Obfuscation (Rare). This oblong orb has a putty grey color with a stripe of yellow paint encircling it. When activated, this orb releases the same opaque grey gas as the orb of obfuscation. In addition to the effects of that gas, this orb also releases a burst of caustic chemicals on impact. Each creature within a 15-foot radius of where the orb landed must make a DC 15 Dexterity saving throw, taking 4d4 acid damage on a failed save, or half as much damage on a successful one. If a creature fails this saving throw, the chemicals cling to it for 1 minute. At the end of each of its turns, the creature must succeed on a DC 15 Constitution saving throw or take 2d4 acid damage from the clinging chemicals. Any creature can take an action to remove the clinging chemicals with a successful DC 15 Wisdom (Medicine) check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_exsanguinating-blade", + "fields": { + "name": "Exsanguinating Blade", + "desc": "This double-bladed dagger has an ivory hilt, and its gold pommel is shaped into a woman's head with ruby eyes and a fanged mouth opened in a scream. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon against a creature that has blood, the dagger gains 1 charge. The dagger can hold 1 charge at a time. You can use a bonus action to expend 1 charge from the dagger to cause one of the following effects: - You or a creature you touch with the blade regains 2d8 hit points. - The next time you hit a creature that has blood with this weapon, it deals an extra 2d8 necrotic damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_extract-of-dual-mindedness", + "fields": { + "name": "Extract of Dual-Mindedness", + "desc": "This potion can be distilled only from a hormone found in the hypothalamus of a two-headed giant of genius intellect. For 1 minute after drinking this potion, you can concentrate on two spells at the same time, and you have advantage on Constitution saving throws made to maintain your concentration on a spell when you take damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_eye-of-horus", + "fields": { + "name": "Eye of Horus", + "desc": "This gold and lapis lazuli amulet helps you determine reality from phantasms and trickery. While wearing it, you have advantage on saving throws against illusion spells and against being frightened.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_eye-of-the-golden-god", + "fields": { + "name": "Eye of the Golden God", + "desc": "A shining multifaceted violet gem sits at the center of this fist-sized amulet. A beautifully forged band of platinum encircles the gem and affixes it to a well-made series of interlocking platinum chain links. The violet gem is warm to the touch. While wearing this amulet, you can't be frightened and you don't suffer from exhaustion. In addition, you always know which item within 20 feet of you is the most valuable, though you don't know its actual value or if it is magical. Each time you finish a long rest while attuned to this amulet, roll a 1d10. On a 1-3, you awaken from your rest with that many valuable objects in your hand. The objects are minor, such as copper coins, at first and progressively get more valuable, such as gold coins, ivory statuettes, or gemstones, each time they appear. Each object is always small enough to fit in a single hand and is never worth more than 1,000 gp. The GM determines the type and value of each object. Once the left eye of an ornate and magical statue of a pit fiend revered by a small cult of Mammon, this exquisite purple gem was pried from the idol by an adventurer named Slick Finnigan. Slick and his companions had taken it upon themselves to eradicate the cult, eager for the accolades they would receive for defeating an evil in the community. The loot they stood to gain didn't hurt either. After the assault, while his companions were busy chasing the fleeing members of the cult, Slick pocketed the gem, disfiguring the statue and weakening its power in the process. He was then attacked by a cultist who had managed to evade notice by the adventurers. Slick escaped with his life, and the gem, but was unable to acquire the second eye. Within days, the thief was finding himself assaulted by devils and cultists. He quickly offloaded his loot with a collection of merchants in town, including a jeweler who was looking for an exquisite stone to use in a piece commissioned by a local noble. Slick then set off with his pockets full of coin, happily leaving the devilish drama behind. This magical amulet attracts the attention of worshippers of Mammon, who can almost sense its presence and are eager to claim its power for themselves, though a few extremely devout members of the weakened cult wish to return the gem to its original place in the idol. Due to this, and a bit of bad luck, this amulet has changed hands many times over the decades.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_eyes-of-the-outer-dark", + "fields": { + "name": "Eyes of the Outer Dark", + "desc": "These lenses are crafted of polished, opaque black stone. When placed over the eyes, however, they allow the wearer not only improved vision but glimpses into the vast emptiness between the stars. While wearing these lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, its range is extended by 60 feet. As an action, you can use the lenses to pierce the veils of time and space and see into the outer darkness. You gain the benefits of the foresight and true seeing spells for 10 minutes. If you activate this property and you aren't suffering from a madness, you take 3d8 psychic damage. Once used, this property of the lenses can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_eyes-of-the-portal-masters", + "fields": { + "name": "Eyes of the Portal Masters", + "desc": "While you wear these crystal lenses over your eyes, you can sense the presence of any dimensional portal within 60 feet of you and whether the portal is one-way or two-way. Once you have worn the eyes for 10 minutes, their magic ceases to function until the next dawn. Putting the lenses on or off requires an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_fanged-mask", + "fields": { + "name": "Fanged Mask", + "desc": "This tribal mask is made of wood and adorned with animal fangs. Once donned, it melds to your face and causes fangs to sprout from your mouth. While wearing this mask, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. If you already have a bite attack when you don and attune to this mask, your bite attack's damage dice double (for example, 1d4 becomes 2d4).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_farhealing-bandages", + "fields": { + "name": "Farhealing Bandages", + "desc": "This linen bandage is yellowed and worn with age. You can use an action wrap it around the appendage of a willing creature and activate its magic for 1 hour. While the target is within 60 feet of you and the bandage's magic is active, you can use an action to trigger the bandage, and the target regains 2d4 hit points. The bandage becomes inactive after it has restored 15 hit points to a creature or when 1 hour has passed. Once the bandage becomes inactive, it can't be used again until the next dawn. You can be attuned to only one farhealing bandage at a time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_farmer-shabti", + "fields": { + "name": "Farmer Shabti", + "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_fear-eaters-mask", + "fields": { + "name": "Fear-Eater's Mask", + "desc": "This painted, wooden mask bears the visage of a snarling, fiendish face. While wearing the mask, you can use a bonus action to feed on the fear of a frightened creature within 30 feet of you. The target must succeed on a DC 13 Wisdom saving throw or take 2d6 psychic damage. You regain hit points equal to the damage dealt. If you are not injured, you gain temporary hit points equal to the damage dealt instead. Once a creature has failed this saving throw, it is immune to the effects of this mask for 24 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_fellforged-armor", + "fields": { + "name": "Fellforged Armor", + "desc": "While wearing this steam-powered magic armor, you gain a +1 bonus to AC, your Strength score increases by 2, and you gain the ability to cast speak with dead as an action. As long as you remain cursed, you exude an unnatural aura, causing beasts with Intelligence 3 or less within 30 feet of you to be frightened. Once you have used the armor to cast speak with dead, you can't cast it again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ferrymans-coins", + "fields": { + "name": "Ferryman's Coins", + "desc": "It is customary in many faiths to weight a corpse's eyes with pennies so they have a fee to pay the ferryman when he comes to row them across death's river to the afterlife. Ferryman's coins, though, ensure the body stays in the ground regardless of the spirit's destination. These coins, which feature a death's head on one side and a lock and chain on the other, prevent a corpse from being raised as any kind of undead. When you place two coins on a corpse's closed lids and activate them with a simple prayer, they can't be removed unless the person is resurrected (in which case they simply fall away), or someone makes a DC 15 Strength check to remove them. Yanking the coins away does no damage to the corpse.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_feysworn-contract", + "fields": { + "name": "Feysworn Contract", + "desc": "This long scroll is written in flowing Elvish, the words flickering with a pale witchlight, and marked with the seal of a powerful fey or a fey lord or lady. When you use an action to present this scroll to a fey whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the fey, negotiating a service from it in exchange for a reward. The fey is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the fey, the truce is broken, and the creature can act normally. If the fey refuses the offer, it is free to take any actions it wishes. Should you and the fey reach an agreement that is satisfactory to both parties, you must sign the agreement and have the fey do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the fey to the agreement until its service is rendered and the reward paid, at which point the scroll fades into nothingness. Fey are notoriously clever folk, and while they must adhere to the letter of any bargains they make, they always look for any advantage in their favor. If either party breaks the bargain, that creature immediately takes 10d6 poison damage, and the charter is destroyed, ending the contract.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_fiendish-charter", + "fields": { + "name": "Fiendish Charter", + "desc": "This long scroll bears the mark of a powerful creature of the Lower Planes, whether an archduke of Hell, a demon lord of the Abyss, or some other powerful fiend or evil deity. When you use an action to present this scroll to a fiend whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the fiend, negotiating a service from it in exchange for a reward. The fiend is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the fiend, the truce is broken, and the creature can act normally. If the fiend refuses the offer, it is free to take any actions it wishes. Should you and the fiend reach an agreement that is satisfactory to both parties, you must sign the charter in blood and have the fiend do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the fiend to the agreement until its service is rendered and the reward paid, at which point the scroll ignites and burns into ash. The contract's wording should be carefully considered, as fiends are notorious for finding loopholes or adhering to the letter of the agreement to their advantage. If either party breaks the bargain, that creature immediately takes 10d6 necrotic damage, and the charter is destroyed, ending the contract.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_figurehead-of-prowess", + "fields": { + "name": "Figurehead of Prowess", + "desc": "A figurehead of prowess must be mounted on the bow of a ship for its magic to take effect. While mounted on a ship, the figurehead’s magic affects the ship and every creature on the ship. A figurehead can be mounted on any ship larger than a rowboat, regardless if that ship sails the sea, the sky, rivers and lakes, or the sands of the desert. A ship can have only one figurehead mounted on it at a time. Most figureheads are always active, but some have properties that must be activated. To activate a figurehead’s special property, a creature must be at the helm of the ship, referred to below as the “pilot,” and must use an action to speak the figurehead’s command word. \nAlbatross (Uncommon). While this figurehead is mounted on a ship, the ship’s pilot can double its proficiency bonus with navigator’s tools when navigating the ship. In addition, the ship’s pilot doesn’t have disadvantage on Wisdom (Perception) checks that rely on sight when peering through fog, rain, dust storms, or other natural phenomena that would ordinarily lightly obscure the pilot’s vision. \nBasilisk (Uncommon). While this figurehead is mounted on a ship, the ship’s AC increases by 2. \nDragon Turtle (Very Rare). While this figurehead is mounted on a ship, each creature on the ship has resistance to fire damage, and the ship’s damage threshold increases by 5. If the ship doesn’t normally have a damage threshold, it gains a damage threshold of 5. \nKraken (Rare). While this figurehead is mounted on a ship, the pilot can animate all of the ship’s ropes. If a creature on the ship uses an animated rope while taking the grapple action, the creature has advantage on the check. Alternatively, the pilot can command the ropes to move as if being moved by a crew, allowing a ship to dock or a sailing ship to sail without a crew. The pilot can end this effect as a bonus action. When the ship’s ropes have been animated for a total of 10 minutes, the figurehead’s magic ceases to function until the next dawn. \nManta Ray (Rare). While this figurehead is mounted on a ship, the ship’s speed increases by half. For example, a ship with a speed of 4 miles per hour would have a speed of 6 miles per hour while this figurehead was mounted on it. \nNarwhal (Very Rare). While this figurehead is mounted on a ship, each creature on the ship has resistance to cold damage, and the ship can break through ice sheets without taking damage or needing to make a check. \nOctopus (Rare). This figurehead can be mounted only on ships designed for water travel. While this figurehead is mounted on a ship, the pilot can force the ship to dive beneath the water. The ship moves at its normal speed while underwater, regardless of its normal method of locomotion. Each creature on the ship remains on the ship and can breathe normally as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to resurface at a rate of 60 feet per round. When the ship has spent a total of 1 hour underwater, the figurehead’s magic ceases to function until the next dawn. \nSphinx (Legendary). This figurehead can be mounted only on a ship that isn’t designed for air travel. While this figurehead is mounted on a ship, the pilot can command the ship to rise into the air. The ship moves at its normal speed while in the air, regardless of its normal method of locomotion. Each creature on the ship remains on the ship as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to descend at a rate of 60 feet per round until it reaches land or water. When the ship has spent a total of 8 hours in the sky, the figurehead’s magic ceases to function until the next dawn. \nXorn (Very Rare). This figurehead can be mounted only on a ship designed for land travel. While this figurehead is mounted on a ship, the pilot can force the ship to burrow into the earth. The ship moves at its normal speed while burrowing, regardless of its normal method of locomotion. The ship can burrow through nonmagical, unworked sand, mud, earth, and stone, and it doesn’t disturb the material it moves through. Each creature on the ship remains on the ship and can breathe normally as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to resurface at a rate of 60 feet per round. When the ship has spent a total of 1 hour burrowing, the figurehead’s magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-amber-bee", + "fields": { + "name": "Figurine of Wondrous Power (Amber Bee)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-basalt-cockatrice", + "fields": { + "name": "Figurine of Wondrous Power (Basalt Cockatrice)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-coral-shark", + "fields": { + "name": "Figurine of Wondrous Power (Coral Shark)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-hematite-aurochs", + "fields": { + "name": "Figurine of Wondrous Power (Hematite Aurochs)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-lapis-camel", + "fields": { + "name": "Figurine of Wondrous Power (Lapis Camel)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-marble-mistwolf", + "fields": { + "name": "Figurine of Wondrous Power (Marble Mistwolf)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-tin-dog", + "fields": { + "name": "Figurine of Wondrous Power (Tin Dog)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-violet-octopoid", + "fields": { + "name": "Figurine of Wondrous Power (Violet Octopoid)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_firebird-feather", + "fields": { + "name": "Firebird Feather", + "desc": "This feather sheds bright light in a 20-foot radius and dim light for an additional 20 feet, but it creates no heat and doesn't use oxygen. While holding the feather, you can tolerate temperatures as low as –50 degrees Fahrenheit. Druids and clerics and paladins who worship nature deities can use the feather as a spellcasting focus. If you use the feather in place of a holy symbol when using your Turn Undead feature, undead in the area have a –1 penalty on the saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_flag-of-the-cursed-fleet", + "fields": { + "name": "Flag of the Cursed Fleet", + "desc": "This dreaded item is a black flag painted with an unsettlingly realistic skull. A spell or other effect that can sense the presence of magic, such as detect magic, reveals an aura of necromancy around the flag. Beasts with an Intelligence of 3 or lower don’t willingly board a vessel where this flag flies. A successful DC 17 Wisdom (Animal Handling) check convinces an unwilling beast to board the vessel, though it remains uneasy and skittish while aboard. \nCursed Crew. When this baleful flag flies atop the mast of a waterborne vehicle, it curses the vessel and all those that board it. When a creature that isn’t a humanoid dies aboard the vessel, it rises 1 minute later as a zombie under the ship captain’s control. When a humanoid dies aboard the vessel, it rises 1 minute later as a ghoul under the ship captain’s control. A ghoul retains any knowledge of sailing or maintaining a waterborne vehicle that it had in life. \nCursed Captain. If the ship flying this flag doesn’t have a captain, the undead crew seeks out a powerful humanoid or intelligent undead to bring aboard and coerce into becoming the captain. When an undead with an Intelligence of 10 or higher boards the captainless vehicle, it must succeed on a DC 17 Wisdom saving throw or become magically bound to the ship and the flag. If the creature exits the vessel and boards it again, the creature must repeat the saving throw. The flag fills the captain with the desire to attack other vessels to grow its crew and commandeer larger vessels when possible, bringing the flag with it. If the flag is destroyed or removed from a waterborne vehicle for at least 7 days, the zombie and ghoul crew crumbles to dust, and the captain is freed of the flag’s magic, if the captain was bound to it. \nUnholy Vessel. While aboard a vessel flying this flag, an undead creature has advantage on saving throws against effects that turn undead, and if it fails the saving throw, it isn’t destroyed, no matter its CR. In addition, the captain and crew can’t be frightened while aboard a vessel flying this flag. \nWhen a creature that isn’t a construct or undead and isn’t part of the crew boards the vessel, it must succeed on a DC 17 Constitution saving throw or be poisoned while it remains on board. If the creature exits the vessel and boards it again, the creature must repeat the saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_flash-bullet", + "fields": { + "name": "Flash Bullet", + "desc": "When you hit a creature with a ranged attack using this shiny, polished stone, it releases a sudden flash of bright light. The target takes damage as normal and must succeed on a DC 11 Constitution saving throw or be blinded until the end of its next turn. Creatures with the Sunlight Sensitivity trait have disadvantage on this saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_flask-of-epiphanies", + "fields": { + "name": "Flask of Epiphanies", + "desc": "This flask is made of silver and cherry wood, and it holds finely cut garnets on its faces. This ornate flask contains 5 ounces of powerful alcoholic spirits. As an action, you can drink up to 5 ounces of the flask's contents. You can drink 1 ounce without risk of intoxication. When you drink more than 1 ounce of the spirits as part of the same action, you must make a DC 12 Constitution saving throw (this DC increases by 1 for each ounce you imbibe after the second, to a maximum of DC 15). On a failed save, you are incapacitated for 1d4 hours and gain no benefits from consuming the alcohol. On a success, your Intelligence or Wisdom (your choice) increases by 1 for each ounce you consumed. Whether you fail or succeed, your Dexterity is reduced by 1 for each ounce you consumed. The effect lasts for 1 hour. During this time, you have advantage on all Intelligence (Arcana) and Inteligence (Religion) checks. The flask replenishes 1d3 ounces of spirits daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_fleshspurned-mask", + "fields": { + "name": "Fleshspurned Mask", + "desc": "This mask features inhumanly sized teeth similar in appearance to the toothy ghost known as a Fleshspurned (see Tome of Beasts 2). It has a strap fashioned from entwined strands of sinew, and it fits easily over your face with no need to manually adjust the strap. While wearing this mask, you can use its teeth to make unarmed strikes. When you hit with it, the teeth deal necrotic damage equal to 1d6 + your Strength modifier, instead of bludgeoning damage normal for an unarmed strike. In addition, if the target has the Incorporeal Movement trait, you deal necrotic damage equal to 2d6 + your Strength modifier instead. Such targets don't have resistance or immunity to the necrotic damage you deal with this attack. If you kill a creature with your teeth, you gain temporary hit points equal to double the creature's challenge rating (minimum of 1).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_flood-charm", + "fields": { + "name": "Flood Charm", + "desc": "This smooth, blue-gray stone is carved with stylized waves or rows of wavy lines. When you are in water too deep to stand, the charm activates. You automatically become buoyant enough to float to the surface unless you are grappled or restrained. If you are unable to surface—such as if you are grappled or restrained, or if the water completely fills the area—the charm surrounds you with a bubble of breathable air that lasts for 5 minutes. At the end of the air bubble's duration, or when you leave the water, the charm's effects end and it becomes a nonmagical stone.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_flute-of-saurian-summoning", + "fields": { + "name": "Flute of Saurian Summoning", + "desc": "This scaly, clawed flute has a musky smell, and it releases a predatory, screeching roar with reptilian overtones when blown. You must be proficient with wind instruments to use this flute. You can use an action to play the flute and conjure dinosaurs. This works like the conjure animals spell, except the animals you conjure must be dinosaurs or Medium or larger lizards. The dinosaurs remain for 1 hour, until they die, or until you dismiss them as a bonus action. The flute can't be used to conjure dinosaurs again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_fly-whisk-of-authority", + "fields": { + "name": "Fly Whisk of Authority", + "desc": "If you use an action to flick this fly whisk, you have advantage on Charisma (Intimidation) and Charisma (Persuasion) checks for 10 minutes. You can't use the fly whisk this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_fog-stone", + "fields": { + "name": "Fog Stone", + "desc": "This sling stone is carved to look like a fluffy cloud. Typically, 1d4 + 1 fog stones are found together. When you fire the stone from a sling, it transforms into a miniature cloud as it flies through the air, and it creates a 20-foot-radius sphere of fog centered on the target or point of impact. The sphere spreads around corners, and its area is heavily obscured. It lasts for 10 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_forgefire-maul", + "fields": { + "name": "Forgefire Maul", + "desc": "The head of this weapon is shaped like an anvil, and engravings of fire and arcane runes decorate it. You can use a bonus action to speak this magic weapon's command word, causing its head to glow red-hot. While red-hot, the weapon deals an extra 1d6 fire damage to any target it hits. The weapon's anvil-like head remains red-hot until you use a bonus action to speak the command word again or until you drop or sheathe the weapon. When you roll a 20 on an attack roll made with this weapon against a target holding or wearing a metal object, such as a metal weapon or metal armor, the target takes an extra 1d4 fire damage and the metal object becomes red-hot for 1 minute. While the object is red-hot and the creature still wears or carries it, the creature takes 1d4 fire damage at the start of each of its turns.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_forgefire-warhammer", + "fields": { + "name": "Forgefire Warhammer", + "desc": "The head of this weapon is shaped like an anvil, and engravings of fire and arcane runes decorate it. You can use a bonus action to speak this magic weapon's command word, causing its head to glow red-hot. While red-hot, the weapon deals an extra 1d6 fire damage to any target it hits. The weapon's anvil-like head remains red-hot until you use a bonus action to speak the command word again or until you drop or sheathe the weapon. When you roll a 20 on an attack roll made with this weapon against a target holding or wearing a metal object, such as a metal weapon or metal armor, the target takes an extra 1d4 fire damage and the metal object becomes red-hot for 1 minute. While the object is red-hot and the creature still wears or carries it, the creature takes 1d4 fire damage at the start of each of its turns.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_fountmail", + "fields": { + "name": "Fountmail", + "desc": "This armor is a dazzling white suit of chain mail with an alabaster-colored steel collar that covers part of the face. You gain a +3 bonus to AC while you wear this armor. In addition, you gain the following benefits: - You add your Strength and Wisdom modifiers in addition to your Constitution modifier on all rolls when spending Hit Die to recover hit points. - You can't be frightened. - You have resistance to necrotic damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_freerunner-rod", + "fields": { + "name": "Freerunner Rod", + "desc": "Tightly intertwined lengths of grass, bound by additional stiff, knotted blades of grass, form this rod, which is favored by plains-dwelling druids and rangers. While holding it and in grasslands, you leave behind no tracks or other traces of your passing, and you can pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. In addition, beasts with an Intelligence of 3 or lower that are native to grasslands must succeed on a DC 15 Charisma saving throw to attack you. The rod has 10 charges, and it regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rod collapses into a pile of grass seeds and is destroyed. Among the grass seeds are 1d10 berries, consumable as if created by the goodberry spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_frost-pellet", + "fields": { + "name": "Frost Pellet", + "desc": "Fashioned from the stomach lining of a Devil Shark (see Creature Codex), this rubbery pellet is cold to the touch. When you consume the pellet, you feel bloated, and you are immune to cold damage for 1 hour. Once before the duration ends, you can expel a 30-foot cone of cold water. Each creature in the cone must make a DC 15 Constitution saving throw. On a failure, the creature takes 6d8 cold damage and is pushed 10 feet away from you. On a success, the creature takes half the damage and isn't pushed away.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_frostfire-lantern", + "fields": { + "name": "Frostfire Lantern", + "desc": "While lit, the flame in this ornate mithril lantern turns blue and sheds a cold, blue dim light in a 30-foot radius. After the lantern's flame has burned for 1 hour, it can't be lit again until the next dawn. You can extinguish the lantern's flame early for use at a later time. Deduct the time it burned in increments of 1 minute from the lantern's total burn time. When a creature enters the lantern's light for the first time on a turn or starts its turn there, the creature must succeed on a DC 17 Constitution saving throw or be vulnerable to cold damage until the start of its next turn. When you light the lantern, choose up to four creatures you can see within 30 feet of you, which can include yourself. The chosen creatures are immune to this effect of the lantern's light.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_frungilator", + "fields": { + "name": "Frungilator", + "desc": "This strangely-shaped item resembles a melted wand or a strange growth chipped from the arcane trees of elder planes. The wand has 5 charges and regains 1d4 + 1 charges daily at dusk. While holding it, you can use an action to expend 1 of its charges and point it at a target within 60 feet of you. The target must be a creature. When activated, the wand frunges creatures into a chaos matrix, which does…something. Roll a d10 and consult the following table to determine these unpredictable effects (none of them especially good). Most effects can be removed by dispel magic, greater restoration, or more powerful magic. | d10 | Frungilator Effect |\n| --- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| 1 | Glittering sparkles fly all around. You are surrounded in sparkling light until the end of your next turn as if you were targeted by the faerie fire spell. |\n| 2 | The target is encased in void crystal and immediately begins suffocating. A creature, including the target, can take its action to shatter the void crystal by succeeding on a DC 10 Strength check. Alternatively, the void crystal can be attacked and destroyed (AC 12; hp 4; immunity to poison and psychic damage). |\n| 3 | Crimson void fire engulfs the target. It must make a DC 13 Constitution saving throw, taking 4d6 fire damage on a failed save, or half as much damage on a successful one. |\n| 4 | The target's blood turns to ice. It must make a DC 13 Constitution saving throw, taking 6d6 cold damage on a failed save, or half as much damage on a successful one. |\n| 5 | The target rises vertically to a height of your choice, up to a maximum height of 60 feet. The target remains suspended there until the start of its next turn. When this effect ends, the target floats gently to the ground. |\n| 6 | The target begins speaking in backwards fey speech for 10 minutes. While speaking this way, the target can't verbally communicate with creatures that aren't fey, and the target can't cast spells with verbal components. |\n| 7 | Golden flowers bloom across the target's body. It is blinded until the end of its next turn. |\n| 8 | The target must succeed on a DC 13 Constitution saving throw or it and all its equipment assumes a gaseous form until the end of its next turn. This effect otherwise works like the gaseous form spell. |\n| 9 | The target must succeed on a DC 15 Wisdom saving throw or become enthralled with its own feet or limbs until the end of its next turn. While enthralled, the target is incapacitated. |\n| 10 | A giant ray of force springs out of the frungilator and toward the target. Each creature in a line that is 5 feet wide between you and the target must make a DC 16 Dexterity saving throw, taking 4d12 force damage on a failed save, or half as much damage on a successful one. |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_fulminar-bracers", + "fields": { + "name": "Fulminar Bracers", + "desc": "Stylized etchings of cat-like lightning elementals known as Fulminars (see Creature Codex) cover the outer surfaces of these solid silver bracers. While wearing these bracers, lightning crackles harmless down your hands, and you have resistance to lightning damage and thunder damage. The bracers have 3 charges. You can use an action to expend 1 charge to create lightning shackles that bind up to two creatures you can see within 60 feet of you. Each target must make a DC 15 Dexterity saving throw. On a failure, a target takes 4d6 lightning damage and is restrained for 1 minute. On a success, the target takes half the damage and isn't restrained. A restrained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The bracers regain all expended charges daily at dawn. The bracers also regain 1 charge each time you take 10 lightning damage while wearing them.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_gale-javelin", + "fields": { + "name": "Gale Javelin", + "desc": "The metallic head of this javelin is embellished with three small wings. When you speak a command word while making a ranged weapon attack with this magic weapon, a swirling vortex of wind follows its path through the air. Draw a line between you and the target of your attack; each creature within 10 feet of this line must make a DC 13 Strength saving throw. On a failed save, the creature is pushed backward 10 feet and falls prone. In addition, if this ranged weapon attack hits, the target must make a DC 13 Strength saving throw. On a failed save, the target is pushed backward 15 feet and falls prone. The javelin's property can't be used again until the next dawn. In the meantime, it can still be used as a magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_garments-of-winters-knight", + "fields": { + "name": "Garments of Winter's Knight", + "desc": "This white-and-blue outfit is designed in the style of fey nobility and maximized for both movement and protection. The multiple layers and snow-themed details of this garb leave no doubt that whoever wears these clothes is associated with the winter queen of faerie. You gain the following benefits while wearing the outfit: - If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\n- Whenever a creature within 5 feet of you hits you with a melee attack, the cloth steals heat from the surrounding air, and the attacker takes 2d8 cold damage.\n- You can't be charmed, and you are immune to cold damage.\n- You can use a bonus action to extend your senses outward to detect the presence of fey. Until the start of your next turn, you know the location of any fey within 60 feet of you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_gauntlet-of-the-iron-sphere", + "fields": { + "name": "Gauntlet of the Iron Sphere", + "desc": "This heavy gauntlet is adorned with an onyx. While wearing this gauntlet, your unarmed strikes deal 1d8 bludgeoning damage, instead of the damage normal for an unarmed strike, and you gain a +1 bonus to attack and damage rolls with unarmed strikes. In addition, your unarmed strikes deal double damage to objects and structures. If you hold a pound of raw iron ore in your hand while wearing the gauntlet, you can use an action to speak the gauntlet's command word and conjure an Iron Sphere (see Creature Codex). The iron sphere remains for 1 hour or until it dies. It is friendly to you and your companions. Roll initiative for the iron sphere, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the iron sphere, it defends itself from hostile creatures but otherwise takes no actions. The gauntlet can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_gazebo-of-shade-and-shelter", + "fields": { + "name": "Gazebo of Shade and Shelter", + "desc": "You can use an action to place this 3-inch sandstone gazebo statuette on the ground and speak its command word. Over the next 5 minutes, the sandstone gazebo grows into a full-sized gazebo that remains for 8 hours or until you speak the command word that returns it to a sandstone statuette. The gazebo's posts are made of palm tree trunks, and its roof is made of palm tree fronds. The floor is level, clean, dry and made of palm fronds. The atmosphere inside the gazebo is comfortable and dry, regardless of the weather outside. You can command the interior to become dimly lit or dark. The gazebo's walls are opaque from the outside, appearing wooden, but they are transparent from the inside, appearing much like sheer fabric. When activated, the gazebo has an opening on the side facing you. The opening is 5 feet wide and 10 feet tall and opens and closes at your command, which you can speak as a bonus action while within 10 feet of the opening. Once closed, the opening is immune to the knock spell and similar magic, such as that of a chime of opening. The gazebo is 20 feet in diameter and is 10 feet tall. It is made of sandstone, despite its wooden appearance, and its magic prevents it from being tipped over. It has 100 hit points, immunity to nonmagical attacks excluding siege weapons, and resistance to all other damage. The gazebo contains crude furnishings: eight simple bunks and a long, low table surrounded by eight mats. Three of the wall posts bear fruit: one coconut, one date, and one fig. A small pool of clean, cool water rests at the base of a fourth wall post. The trees and the pool of water provide enough food and water for up to 10 people. Furnishings and other objects within the gazebo dissipate into smoke if removed from the gazebo. When the gazebo returns to its statuette form, any creatures inside it are expelled into unoccupied spaces nearest to the gazebo's entrance. Once used, the gazebo can't be used again until the next dusk. If reduced to 0 hit points, the gazebo can't be used again until 7 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-barding-breastplate", + "fields": { + "name": "Ghost Barding Breastplate", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-barding-chain-mail", + "fields": { + "name": "Ghost Barding Chain Mail", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-barding-chain-shirt", + "fields": { + "name": "Ghost Barding Chain Shirt", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-barding-half-plate", + "fields": { + "name": "Ghost Barding Half Plate", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-barding-hide", + "fields": { + "name": "Ghost Barding Hide", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-barding-leather", + "fields": { + "name": "Ghost Barding Leather", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-barding-padded", + "fields": { + "name": "Ghost Barding Padded", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-barding-plate", + "fields": { + "name": "Ghost Barding Plate", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-barding-ring-mail", + "fields": { + "name": "Ghost Barding Ring Mail", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-barding-scale-mail", + "fields": { + "name": "Ghost Barding Scale Mail", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-barding-splint", + "fields": { + "name": "Ghost Barding Splint", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-barding-studded-leather", + "fields": { + "name": "Ghost Barding Studded Leather", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-dragon-horn", + "fields": { + "name": "Ghost Dragon Horn", + "desc": "Scales from dead dragons cover this wooden, curved horn. You can use an action to speak the horn's command word and then blow the horn, which emits a blast in a 30-foot cone, containing shrieking spectral dragon heads. Each creature in the cone must make a DC 17 Wisdom saving throw. On a failure, a creature tales 5d10 psychic damage and is frightened of you for 1 minute. On a success, a creature takes half the damage and isn't frightened. Dragons have disadvantage on the saving throw and take 10d10 psychic damage instead of 5d10. A frightened target can repeat the Wisdom saving throw at the end of each of its turns, ending the effect on itself on a success. If a dragon takes damage from the horn's shriek, the horn has a 20 percent chance of exploding. The explosion deals 10d10 psychic damage to the blower and destroys the horn. Once you use the horn, it can't be used again until the next dawn. If you kill a dragon while holding or carrying the horn, you regain use of the horn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghost-thread", + "fields": { + "name": "Ghost Thread", + "desc": "Most of this miles-long strand of enchanted silk, created by phase spiders, resides on the Ethereal Plane. Only a few inches at either end exist permanently on the Material Plane, and those may be used as any normal string would be. Creatures using it to navigate can follow one end to the other by running their hand along the thread, which phases into the Material Plane beneath their grasp. If dropped or severed (AC 8, 1 hit point), the thread disappears back into the Ethereal Plane in 2d6 rounds.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghoul-light", + "fields": { + "name": "Ghoul Light", + "desc": "This bullseye lantern sheds light as normal when a lit candle is placed inside of it. If the light shines on meat, no matter how toxic or rotten, for at least 10 minutes, the meat is rendered safe to eat. The lantern's magic doesn't improve the meat's flavor, but the light does restore the meat's nutritional value and purify it, rendering it free of poison and disease. In addition, when an undead creature ends its turn in the light, it takes 1 radiant damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghoulbane-oil", + "fields": { + "name": "Ghoulbane Oil", + "desc": "This rusty-red gelatinous liquid glistens with tiny sparkling crystal flecks. The oil can coat one weapon or 5 pieces of ammunition. Applying the oil takes 1 minute. For 1 hour, if a ghoul, ghast, or Darakhul (see Tome of Beasts) takes damage from the coated item, it takes an extra 2d6 damage of the weapon's type.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ghoulbane-rod", + "fields": { + "name": "Ghoulbane Rod", + "desc": "Arcane glyphs decorate the spherical head of this tarnished rod, while engravings of cracked and broken skulls and bones circle its haft. When an undead creature is within 120 feet of the rod, the rod's arcane glyphs emit a soft glow. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's glyphs flare to life and the rod's magic activates. When an undead creature enters or starts its turn within 30 feet of the planted rod, it must succeed on a DC 15 Wisdom saving throw or have disadvantage on attack rolls against creatures that aren't undead until the start of its next turn. If a ghoul fails this saving throw, it also takes a –2 penalty to AC and Dexterity saving throws, its speed is halved, and it can't use reactions. The rod's magic remains active while planted in the ground, and after it has been active for a total of 10 minutes, its magic ceases to function until the next dawn. A creature can use an action to pull the rod from the ground, ending the effect early for use at a later time. Deduct the time it was active in increments of 1 minute from the rod's total active time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_giggling-orb", + "fields": { + "name": "Giggling Orb", + "desc": "This glass sphere measures 3 inches in diameter and contains a swirling, yellow mist. You can use an action to throw the orb up to 60 feet. The orb shatters on impact and is destroyed. Each creature within a 20-foot-radius of where the orb landed must succeed on a DC 15 Wisdom saving throw or fall prone in fits of laughter, becoming incapacitated and unable to stand for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_girdle-of-traveling-alchemy", + "fields": { + "name": "Girdle of Traveling Alchemy", + "desc": "This wide leather girdle has many sewn-in pouches and holsters that hold an assortment of empty beakers and vials. Once you have attuned to the girdle, these containers magically fill with the following liquids:\n- 2 flasks of alchemist's fire\n- 2 flasks of alchemist's ice*\n- 2 vials of acid - 2 jars of swarm repellent* - 1 vial of assassin's blood poison - 1 potion of climbing - 1 potion of healing Each container magically replenishes each day at dawn, if you are wearing the girdle. All the potions and alchemical substances produced by the girdle lose their properties if they're transferred to another container before being used.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_glamour-rings", + "fields": { + "name": "Glamour Rings", + "desc": "These rings are made from twisted loops of gold and onyx and are always found in pairs. The rings' magic works only while you and another humanoid of the same size each wear one ring and are on the same plane of existence. While wearing a ring, you or the other humanoid can use an action to swap your appearances, if both of you are willing. This effect works like the Change Appearance effect of the alter self spell, except you can change your appearance to only look identical to each other. Your clothing and equipment don't change, and the effect lasts until one of you uses this property again or until one of you removes the ring.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_glass-wand-of-leng", + "fields": { + "name": "Glass Wand of Leng", + "desc": "The tip of this twisted clear glass wand is razorsharp. It can be wielded as a magic dagger that grants a +1 bonus to attack and damage rolls made with it. The wand weighs 4 pounds and is roughly 18 inches long. When you tap the wand, it emits a single, loud note which can be heard up to 20 feet away and does not stop sounding until you choose to silence it. This wand has 5 charges and regains 1d4 + 1 charges daily at dawn. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 17): arcane lock (2 charges), disguise self (1 charge), or tongues (3 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_glazed-battleaxe", + "fields": { + "name": "Glazed Battleaxe", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_glazed-greataxe", + "fields": { + "name": "Glazed Greataxe", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_glazed-greatsword", + "fields": { + "name": "Glazed Greatsword", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_glazed-handaxe", + "fields": { + "name": "Glazed Handaxe", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_glazed-longsword", + "fields": { + "name": "Glazed Longsword", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_glazed-rapier", + "fields": { + "name": "Glazed Rapier", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_glazed-scimitar", + "fields": { + "name": "Glazed Scimitar", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_glazed-shortsword", + "fields": { + "name": "Glazed Shortsword", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_gliding-cloak", + "fields": { + "name": "Gliding Cloak", + "desc": "By grasping the ends of the cloak while falling, you can glide up to 5 feet horizontally in any direction for every 1 foot you fall. You descend 60 feet per round but take no damage from falling while gliding in this way. A tailwind allows you to glide 10 feet per 1 foot descended, but a headwind forces you to only glide 5 feet per 2 feet descended.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_gloomflower-corsage", + "fields": { + "name": "Gloomflower Corsage", + "desc": "This black, six-petaled flower fits neatly on a garment's lapel or peeking out of a pocket. While wearing it, you have advantage on saving throws against being blinded, deafened, or frightened. While wearing the flower, you can use an action to speak one of three command words to invoke the corsage's power and cause one of the following effects: - When you speak the first command word, you gain blindsight out to a range of 120 feet for 1 hour.\n- When you speak the second command word, choose a target within 120 feet of you and make a ranged attack with a +7 bonus. On a hit, the target takes 3d6 psychic damage.\n- When you speak the third command word, your form shifts and shimmers. For 1 minute, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight. Each time you use the flower, one of its petals curls in on itself. You can't use the flower if all of its petals are curled. The flower uncurls 1d6 petals daily at dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_gloves-of-the-magister", + "fields": { + "name": "Gloves of the Magister", + "desc": "The backs of each of these black leather gloves are set with gold fittings as if to hold a jewel. While you wear the gloves, you can cast mage hand at will. You can affix an ioun stone into the fitting on a glove. While the stone is affixed, you gain the benefits of the stone as if you had it in orbit around your head. If you take an action to touch a creature, you can transfer the benefits of the ioun stone to that creature for 1 hour. While the creature is gifted the benefits, the stone turns gray and provides you with no benefits for the duration. You can use an action to end this effect and return power to the stone. The stone's benefits can also be dispelled from a creature as if they were a 7th-level spell. When the effect ends, the stone regains its color and provides you with its benefits once more.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_gloves-of-the-walking-shade", + "fields": { + "name": "Gloves of the Walking Shade", + "desc": "Each glove is actually comprised of three, black ivory rings (typically fitting the thumb, middle finger, and pinkie) which are connected to each other. The rings are then connected to an intricately-engraved onyx wrist cuff by a web of fine platinum chains and tiny diamonds. While wearing these gloves, you gain the following benefits: - You have resistance to necrotic damage.\n- You can spend one Hit Die during a short rest to remove one level of exhaustion instead of regaining hit points.\n- You can use an action to become a living shadow for 1 minute. For the duration, you can move through a space as narrow as 1 inch wide without squeezing, and you can take the Hide action as a bonus action while you are in dim light or darkness. Once used, this property of the gloves can't be used again until the next nightfall.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_gnawing-spear", + "fields": { + "name": "Gnawing Spear", + "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. When you roll a 20 on an attack roll made with this spear, its head animates, grows serrated teeth, and lodges itself in the target. While the spear is lodged in the target and you are wielding the spear, the target is grappled by you. At the start of each of your turns, the spear twists and grinds, dealing 2d6 piercing damage to the grappled target. If you release the spear, it remains lodged in the target, dealing damage each round as normal, but the target is no longer grappled by you. While the spear is lodged in a target, you can't make attacks with it. A creature, including the restrained target, can take its action to remove the spear by succeeding on a DC 15 Strength check. The target takes 1d6 piercing damage when the spear is removed. You can use an action to speak the spear's command word, causing it to dislodge itself and fall into an unoccupied space within 5 feet of the target.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_goblin-shield", + "fields": { + "name": "Goblin Shield", + "desc": "This shield resembles a snarling goblin's head. It has 3 charges and regains 1d3 expended charges daily at dawn. While wielding this shield, you can use a bonus action to expend 1 charge and command the goblin's head to bite a creature within 5 feet of you. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. On a hit, the target takes 2d4 piercing damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_goggles-of-firesight", + "fields": { + "name": "Goggles of Firesight", + "desc": "The lenses of these combination fleshy and plantlike goggles extend a few inches away from the goggles on a pair of tentacles. While wearing these lenses, you can see through lightly obscured and heavily obscured areas without your vision being obscured, if those areas are obscured by fire, smoke, or fog. Other effects that would obscure your vision, such as rain or darkness, affect you normally. When you fail a saving throw against being blinded, you can use a reaction to call on the power within the goggles. If you do so, you succeed on the saving throw instead. The goggles can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_goggles-of-shade", + "fields": { + "name": "Goggles of Shade", + "desc": "While wearing these dark lenses, you have advantage on Charisma (Deception) checks. If you have the Sunlight Sensitivity trait and wear these goggles, you no longer suffer the penalties of Sunlight Sensitivity while in sunlight.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_golden-bolt", + "fields": { + "name": "Golden Bolt", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. This crossbow doesn't have the loading property, and it doesn't require ammunition. Immediately after firing a bolt from this weapon, another golden bolt forms to take its place.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_gorgon-scale", + "fields": { + "name": "Gorgon Scale", + "desc": "The iron scales of this armor have a green-tinged iridescence. While wearing this armor, you gain a +1 bonus to AC, and you have immunity to the petrified condition. If you move at least 20 feet straight toward a creature and then hit it with a melee weapon attack on the same turn, you can use a bonus action to imbue the hit with some of the armor's petrifying magic. The target must make a DC 15 Constitution saving throw. On a failed save, the target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_granny-wax", + "fields": { + "name": "Granny Wax", + "desc": "Normally found in a small glass jar containing 1d3 doses, this foul-smelling, greasy yellow substance is made by hags in accordance with an age-old secret recipe. You can use an action to rub one dose of the wax onto an ordinary broom or wooden stick and transform it into a broom of flying for 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grasping-cap", + "fields": { + "name": "Grasping Cap", + "desc": "This cap is a simple, blue silk hat with a goose feather trim. While wearing this cap, you have advantage on Strength (Athletics) checks made to climb, and the cap deflects the first ranged attack made against you each round. In addition, when a creature attacks you while within 30 feet of you, it is illuminated and sheds red-hued dim light in a 50-foot radius until the end of its next turn. Any attack roll against an illuminated creature has advantage if the attacker can see it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grasping-cloak", + "fields": { + "name": "Grasping Cloak", + "desc": "Made of strips of black leather, this cloak always shines as if freshly oiled. The strips writhe and grasp at nearby creatures. While wearing this cloak, you can use a bonus action to command the strips to grapple a creature no more than one size larger than you within 5 feet of you. The strips make the grapple attack roll with a +7 bonus. On a hit, the target is grappled by the cloak, leaving your hands free to perform other tasks or actions that require both hands. However, you are still considered to be grappling a creature, limiting your movement as normal. The cloak can grapple only one creature at a time. Alternatively, you can use a bonus action to command the strips to aid you in grappling. If you do so, you have advantage on your next attack roll made to grapple a creature. While grappling a creature in this way, you have advantage on the contested check if a creature attempts to escape your grapple.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grasping-shield", + "fields": { + "name": "Grasping Shield", + "desc": "The boss at the center of this shield is a hand fashioned of metal. While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grave-reagent", + "fields": { + "name": "Grave Reagent", + "desc": "This luminous green concoction creates an undead servant. If you spend 1 minute anointing the corpse of a Small or Medium humanoid, this arcane solution imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a zombie under your control (the GM has the zombie's statistics). On each of your turns, you can use a bonus action to verbally command the zombie if it is within 60 feet of you. You decide what action the zombie will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the zombie only defends itself against hostile creatures. Once given an order, the zombie continues to follow it until its task is complete. The zombie is under your control for 24 hours, after which it stops obeying any command you've given it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grave-ward-breastplate", + "fields": { + "name": "Grave Ward Breastplate", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grave-ward-chain-mail", + "fields": { + "name": "Grave Ward Chain Mail", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grave-ward-chain-shirt", + "fields": { + "name": "Grave Ward Chain Shirt", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grave-ward-half-plate", + "fields": { + "name": "Grave Ward Half Plate", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grave-ward-hide", + "fields": { + "name": "Grave Ward Hide", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grave-ward-leather", + "fields": { + "name": "Grave Ward Leather", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grave-ward-padded", + "fields": { + "name": "Grave Ward Padded", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grave-ward-plate", + "fields": { + "name": "Grave Ward Plate", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grave-ward-ring-mail", + "fields": { + "name": "Grave Ward Ring Mail", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grave-ward-scale-mail", + "fields": { + "name": "Grave Ward Scale Mail", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grave-ward-splint", + "fields": { + "name": "Grave Ward Splint", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grave-ward-studded-leather", + "fields": { + "name": "Grave Ward Studded Leather", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_greater-potion-of-troll-blood", + "fields": { + "name": "Greater Potion of Troll Blood", + "desc": "When drink this potion, you regain 3 hit points at the start of each of your turns. After it has restored 30 hit points, the potion's effects end.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_greater-scroll-of-conjuring", + "fields": { + "name": "Greater Scroll of Conjuring", + "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_greatsword-of-fallen-saints", + "fields": { + "name": "Greatsword of Fallen Saints", + "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_greatsword-of-volsung", + "fields": { + "name": "Greatsword of Volsung", + "desc": "Legends tell of a dragon whose hide was impenetrable and so robust that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon’s name was lost, but its legacy remains. This sword is one of two items that were crafted to hold its heart. The black blade is adorned with glittering silver runes, and its guard has a shallow opening at the center with grooves connecting it to the first rune. The sword’s pommel is a large, clear crystal held fast by silver scales. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit a dragon with an attack using this sword, that creature takes an extra 1d6 slashing damage. Runes of Courage. You can’t be frightened while holding or carrying this sword. Fragment of Gram Awakened. You can use a bonus action to awaken a fragment of the spirit of the great wyrm that inhabits this blade. For 24 hours, you gain a +3 bonus to attack and damage rolls with this magic sword, and when you hit a dragon with an attack using this sword, that creature takes an extra 3d6 slashing damage. Once used, this property can’t be used again until 3 days have passed. If you have performed the Dragon Heart Ritual, you can use a bonus action to expend 2 of the sword’s charges to activate this property, and you can use this property as often as you want, as long as you have the charges to do so. Dragon Heart Ritual. If you are also attuned to the locket of dragon vitality (see page 152), you can drain 3 charges from the locket into the sword, turning the crystal pommel a deep red and rendering the locket broken and irreparable. Doing this requires a long rest where you also re-attune with the newly charged sword of volsung. Upon completing the Dragon Heart Ritual, the sword contains all remaining charges from the locket, and you gain the locket’s effects while holding or carrying the sword. When you are reduced to 0 hit points and trigger the locket’s temporary hit points, the sword isn’t destroyed, but you can’t trigger that effect again until 24 hours have passed. The sword regains all expended charges after you slay any dragon. For the purpose of this sword, “dragon” refers to any creature with the dragon type, including drakes and wyverns.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_green-mantle", + "fields": { + "name": "Green Mantle", + "desc": "This garment is made of living plants—mosses, vines, and grasses—interwoven into a light, comfortable piece of clothing. When you attune to this mantle, it forms a symbiotic relationship with you, sinking roots beneath your skin. While wearing the mantle, your hit point maximum is reduced by 5, and you gain the following benefits: - If you aren't wearing armor, your base Armor Class is 13 + your Dexterity modifier.\n- You have resistance to radiant damage.\n- You have immunity to the poisoned condition and poison damage that originates from a plant, moss, fungus, or plant creature.\n- As an action, you cause the mantle to produce 6 berries. It can have no more than 12 berries on it at one time. The berries have the same effect as berries produced by the goodberry spell. Unlike the goodberry spell, the berries retain their potency as long as they are not picked from the mantle. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_gremlins-paw", + "fields": { + "name": "Gremlin's Paw", + "desc": "This wand is fashioned from the fossilized forearm and claw of a gremlin. The wand has 5 charges. While holding the wand, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 15): bane (1 charge), bestow curse (3 charges), or hideous laughter (1 charge). The wand regains 1d4 + 1 expended charges daily at dusk. If you expend the wand's last charge, roll a d20. On a 20, you must succeed on a DC 15 Wisdom saving throw or become afflicted with short-term madness. On a 1, the rod crumbles into ashes and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grifters-deck", + "fields": { + "name": "Grifter's Deck", + "desc": "When you deal a card from this slightly greasy, well-used deck, you can choose any specific card to be on top of the deck, assuming it hasn't already been dealt. Alternatively, you can choose a general card of a specific value or suit that hasn't already been dealt.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_grim-escutcheon", + "fields": { + "name": "Grim Escutcheon", + "desc": "This blackened iron shield is adorned with the menacing relief of a monstrously gaunt skull. You gain a +1 bonus to AC while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. While holding this shield, you can use a bonus action to speak its command word to cast the fear spell (save DC 13). The shield can't be used this way again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_gritless-grease", + "fields": { + "name": "Gritless Grease", + "desc": "This small, metal jar, 3 inches in diameter, holds 1d4 + 1 doses of a pungent waxy oil. As an action, one dose can be applied to or swallowed by a clockwork creature or device. The clockwork creature or device ignores difficult terrain, and magical effects can't reduce its speed for 8 hours. As an action, the clockwork creature, or a creature holding a clockwork device, can gain the effect of the haste spell until the end of its next turn (no concentration required). The effects of the haste spell melt the grease, ending all its effects at the end of the spell's duration.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hair-pick-of-protection", + "fields": { + "name": "Hair Pick of Protection", + "desc": "This hair pick has glittering teeth that slide easily into your hair, making your hair look perfectly coiffed and battle-ready. Though typically worn in hair, you can also wear the pick as a brooch or cloak clasp. While wearing this pick, you gain a +2 bonus to AC, and you have advantage on saving throws against spells. In addition, the pick magically boosts your self-esteem and your confidence in your ability to overcome any challenge, making you immune to the frightened condition.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_half-plate-of-warding-1", + "fields": { + "name": "Half Plate of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_half-plate-of-warding-2", + "fields": { + "name": "Half Plate of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_half-plate-of-warding-3", + "fields": { + "name": "Half Plate of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hallowed-effigy", + "fields": { + "name": "Hallowed Effigy", + "desc": "This foot-long totem, crafted from the bones and skull of a Tiny woodland beast bound in thin leather strips, serves as a boon for you and your allies and as a stinging trap to those who threaten you. The totem has 10 charges, and it regains 1d6 + 4 expended charges daily at dawn. If the last charge is expended, it can't regain charges again until a druid performs a 24-hour ritual, which involves the sacrifice of a Tiny woodland beast. You can use an action to secure the effigy on any natural organic substrate (such as dirt, mud, grass, and so on). While secured in this way, it pulses with primal energy on initiative count 20 each round, expending 1 charge. When it pulses, you and each creature friendly to you within 15 feet of the totem regains 1d6 hit points, and each creature hostile to you within 15 feet of the totem must make a DC 15 Constitution saving throw, taking 1d6 necrotic damage on a failed save, or half as much damage on a successful one. It continues to pulse each round until you pick it up, it runs out of charges, or it is destroyed. The totem has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If it drops to 0 hit points, it is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hallucinatory-dust", + "fields": { + "name": "Hallucinatory Dust", + "desc": "This small packet contains black pollen from a Gloomflower (see Creature Codex). Hazy images swirl around the pollen when observed outside the packet. There is enough of it for one use. When you use an action to blow the dust from your palm, each creature in a 30-foot cone must make a DC 15 Wisdom saving throw. On a failure, a creature sees terrible visions, manifesting its fears and anxieties for 1 minute. While affected, it takes 2d6 psychic damage at the start of each of its turns and must spend its action to make one melee attack against a creature within 5 feet of it, other than you or itself. If the creature can't make a melee attack, it takes the Dodge action. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. On a success, a creature becomes incapacitated until the end of its next turn as the visions fill its mind then quickly fade. A creature reduced to 0 hit points by the dust's psychic damage falls unconscious and is stable. When the creature regains consciousness, it is permanently plagued by hallucinations and has disadvantage on ability checks until cured by a remove curse spell or similar magic.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hammer-of-decrees", + "fields": { + "name": "Hammer of Decrees", + "desc": "This adamantine hammer was part of a set of smith's tools used to create weapons of law for an ancient dwarven civilization. It is pitted and appears damaged, and its oak handle is split and bound with cracking hide. While attuned to this hammer, you have advantage on ability checks using smith's tools, and the time it takes you to craft an item with your smith's tools is halved.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hammer-of-throwing", + "fields": { + "name": "Hammer of Throwing", + "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. In addition, when you throw the hammer, it returns to your hand at the end of your turn. If you have no hand free, it falls to the ground at your feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_handy-scroll-quiver", + "fields": { + "name": "Handy Scroll Quiver", + "desc": "This belt quiver is wide enough to pass a rolled scroll through the opening. Containing an extra dimensional space, the quiver can hold up to 25 scrolls and weighs 1 pound, regardless of its contents. Placing a scroll in the quiver follows the normal rules for interacting with objects. Retrieving a scroll from the quiver requires you to use an action. When you reach into the quiver for a specific scroll, that scroll is always magically on top. The quiver has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the quiver ruptures and is destroyed. If the quiver is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If a breathing creature is placed within the quiver, the creature can survive for up to 5 minutes, after which time it begins to suffocate. Placing the quiver inside an extradimensional space created by a bag of holding, handy haversack, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hangmans-noose", + "fields": { + "name": "Hangman's Noose", + "desc": "Certain hemp ropes used in the execution of final justice can affect those beyond the reach of normal magics. This noose has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the hold monster spell from it. Unlike the standard version of this spell, though, the magic of the hangman's noose affects only undead. It regains 1d3 charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hardening-polish", + "fields": { + "name": "Hardening Polish", + "desc": "This gray polish is viscous and difficult to spread. The polish can coat one metal weapon or up to 10 pieces of ammunition. Applying the polish takes 1 minute. For 1 hour, the coated item hardens and becomes stronger, and it counts as an adamantine weapon for the purpose of overcoming resistance and immunity to attacks and damage not made with adamantine weapons.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_harmonizing-instrument", + "fields": { + "name": "Harmonizing Instrument", + "desc": "Any stringed instrument can be a harmonizing instrument, and you must be proficient with stringed instruments to use a harmonizing instrument. This instrument has 3 charges for the following properties. The instrument regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hat-of-mental-acuity", + "fields": { + "name": "Hat of Mental Acuity", + "desc": "This well-crafted cap appears to be standard wear for academics. Embroidered on the edge of the inside lining in green thread are sigils. If you cast comprehend languages on them, they read, “They that are guided go not astray.” While wearing the hat, you have advantage on all Intelligence and Wisdom checks. If you are proficient in an Intelligence or Wisdom-based skill, you double your proficiency bonus for the skill.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hazelwood-wand", + "fields": { + "name": "Hazelwood Wand", + "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains all expended charges daily at dawn. When you cast the goodberry spell while using this wand as your spellcasting focus, you can expend 1 of the wand's charges to transform the berries into hazelnuts, which restore 2 hit points instead of 1. The spell is otherwise unchanged. In addition, when you cast a spell that deals lightning damage while using this wand as your spellcasting focus, the spell deals 1 extra lightning damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_headdress-of-majesty", + "fields": { + "name": "Headdress of Majesty", + "desc": "This elaborate headpiece is adorned with small gemstones and thin strips of gold that frame your head like a radiant halo. While you wear this headdress, you have advantage on Charisma (Intimidation) and Charisma (Persuasion) checks. The headdress has 5 charges for the following properties. It regains all expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the headdress becomes a nonmagical, tawdry ornament of cheap metals and paste gems.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_headrest-of-the-cattle-queens", + "fields": { + "name": "Headrest of the Cattle Queens", + "desc": "This polished and curved wooden headrest is designed to keep the user's head comfortably elevated while sleeping. If you sleep at least 6 hours as part of a long rest while using the headrest, you regain 1 additional spent Hit Die, and your exhaustion level is reduced by 2 (rather than 1) when you finish the long rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_headscarf-of-the-oasis", + "fields": { + "name": "Headscarf of the Oasis", + "desc": "This dun-colored, well-worn silk wrap is long enough to cover the face and head of a Medium or smaller humanoid, barely revealing the eyes. While wearing this headscarf over your mouth and nose, you have advantage on ability checks and saving throws against being blinded and against extended exposure to hot weather and hot environments. Pulling the headscarf on or off your mouth and nose requires an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_healer-shabti", + "fields": { + "name": "Healer Shabti", + "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_healthful-honeypot", + "fields": { + "name": "Healthful Honeypot", + "desc": "This clay honeypot weighs 10 pounds. A sweet aroma wafts constantly from it, and it produces enough honey to feed up to 12 humanoids. Eating the honey restores 1d8 hit points, and the honey provides enough nourishment to sustain a humanoid for one day. Once 12 doses of the honey have been consumed, the honeypot can't produce more honey until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_heat-stone", + "fields": { + "name": "Heat Stone", + "desc": "Prized by reptilian humanoids, this magic stone is warm to the touch. While carrying this stone, you are comfortable in and can tolerate temperatures as low as –20 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as –50 degrees Fahrenheit.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_heliotrope-heart", + "fields": { + "name": "Heliotrope Heart", + "desc": "This polished orb of dark-green stone is latticed with pulsing crimson inclusions that resemble slowly dilating spatters of blood. While attuned to this orb, your hit point maximum can't be reduced by the bite of a vampire, vampire spawn, or other vampiric creature. In addition, while holding this orb, you can use an action to speak its command word and cast the 2nd-level version of the false life spell. Once used, this property can't be used again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_helm-of-the-slashing-fin", + "fields": { + "name": "Helm of the Slashing Fin", + "desc": "While wearing this helm, you can use an action to speak its command word to gain the ability to breathe underwater, but you lose the ability to breathe air. You can speak its command word again or remove the helm as an action to end this effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hewers-draught", + "fields": { + "name": "Hewer's Draught", + "desc": "When you drink this potion, you have advantage on attack rolls made with weapons that deal piercing or slashing damage for 1 minute. This potion's translucent amber liquid glimmers when agitated.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hexen-blade", + "fields": { + "name": "Hexen Blade", + "desc": "The colorful surface of this sleek adamantine shortsword exhibits a perpetually shifting, iridescent sheen. You gain a +1 bonus to attack and damage rolls made with this magic weapon. The sword has 5 charges and regains 1d4 + 1 charges daily at dawn. While holding it, you can use an action and expend 1 or more of its charges to cast one of the following spells from it, using spell save DC 15: disguise self (1 charge), hypnotic pattern (3 charges), or mirror image (2 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hidden-armament", + "fields": { + "name": "Hidden Armament", + "desc": "While holding this magic weapon, you can use an action to transform it into a tattoo on the palm of your hand. You can use a bonus action to transform the tattoo back into a weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hide-armor-of-the-leaf", + "fields": { + "name": "Hide Armor of the Leaf", + "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hide-armor-of-warding-1", + "fields": { + "name": "Hide Armor of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hide-armor-of-warding-2", + "fields": { + "name": "Hide Armor of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hide-armor-of-warding-3", + "fields": { + "name": "Hide Armor of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_holy-verdant-bat-droppings", + "fields": { + "name": "Holy Verdant Bat Droppings", + "desc": "This ceramic jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture with a pungent, muddy reek. The jar and its contents weigh 1/2 pound. Derro matriarchs and children gather a particular green bat guano to cure various afflictions, and the resulting glowing green paste can be spread on the skin to heal various conditions. As an action, one dose of the droppings can be swallowed or applied to the skin. The creature that receives it gains one of the following benefits: - Cured of paralysis or petrification\n- Reduces exhaustion level by one\n- Regains 50 hit points", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_honey-lamp", + "fields": { + "name": "Honey Lamp", + "desc": "Honey lamps, made from glowing honey encased in beeswax, shed light as a lamp. Though the lamps are often found in the shape of a globe, the honey can also be sealed inside stone or wood recesses. If the wax that shields the honey is broken or smashed, the honey crystallizes in 7 days and ceases to glow. Eating the honey while it is still glowing grants darkvision out to a range of 30 feet for 1 week and 1 day.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_honey-of-the-warped-wildflowers", + "fields": { + "name": "Honey of the Warped Wildflowers", + "desc": "This spirit honey is made from wildflowers growing in an area warped by magic, such as the flowers growing at the base of a wizard's tower or growing in a magical wasteland. When you consume this honey, you have resistance to psychic damage, and you have advantage on Intelligence saving throws. In addition, you can use an action to warp reality around one creature you can see within 60 feet of you. The target must succeed on a DC 15 Intelligence saving throw or be bewildered for 1 minute. At the start of a bewildered creature's turn, it must roll a die. On an even result, the creature can act normally. On an odd result, the creature is incapacitated until the start of its next turn as it becomes disoriented by its surroundings and unable to fully determine what is real and what isn't. You can't warp the reality around another creature in this way again until you finish a long rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_honey-trap", + "fields": { + "name": "Honey Trap", + "desc": "This jar is made of beaten metal and engraved with honeybees. It has 7 charges, and it regains 1d6 + 1 expended charges daily at dawn. If you expend the jar's last charge, roll a d20. On a 1, the jar shatters and loses all its magical properties. While holding the jar, you can use an action to expend 1 charge to hurl a glob of honey at a target within 30 feet of you. Make a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the glob expands, and the creature is restrained. A creature restrained by the honey can use an action to make a DC 15 Strength (Athletics) or Dexterity (Acrobatics) check (target's choice). On a success, the creature is no longer restrained by the honey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_honeypot-of-awakening", + "fields": { + "name": "Honeypot of Awakening", + "desc": "If you place 1 pound of honey inside this pot, the honey transforms into an ochre jelly after 24 hours. The jelly remains in a dormant state within the pot until you dump it out. You can use an action to dump the jelly from the pot in an unoccupied space within 5 feet of you. Once dumped, the ochre jelly is hostile to all creatures, including you. Only one ochre jelly can occupy the pot at a time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_howling-rod", + "fields": { + "name": "Howling Rod", + "desc": "This sturdy, iron rod is topped with the head of a howling wolf with red carnelians for eyes. The rod has 5 charges for the following properties, and it regains 1d4 + 1 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_humble-cudgel-of-temperance", + "fields": { + "name": "Humble Cudgel of Temperance", + "desc": "This simple, polished club has a studded iron band around one end. When you attack a poisoned creature with this magic weapon, you have advantage on the attack roll. When you roll a 20 on an attack roll made with this weapon, the target becomes poisoned for 1 minute. If the target was already poisoned, it becomes incapacitated instead. The target can make a DC 13 Constitution saving throw at the end of each of its turns, ending the poisoned or incapacitated condition on itself on a success. Formerly a moneylender with a heart of stone and a small army of brutal thugs, Faustin the Drunkard awoke one day with a punishing hangover that seemed never-ending. He took this as a sign of punishment from the gods, not for his violence and thievery, but for his taste for the grape, in abundance. He decided all problems stemmed from the “demon” alcohol, and he became a cleric. No less brutal than before, he and his thugs targeted public houses, ale makers, and more. In his quest to rid the world of alcohol, he had the humble cudgel of temperance made and blessed with terrifying power. Now long since deceased, his simple, humble-appearing club continues to wreck havoc wherever it turns up.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hunters-charm-1", + "fields": { + "name": "Hunter's Charm (+1)", + "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hunters-charm-2", + "fields": { + "name": "Hunter's Charm (+2)", + "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_hunters-charm-3", + "fields": { + "name": "Hunter's Charm (+3)", + "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_iceblink-greatsword", + "fields": { + "name": "Iceblink Greatsword", + "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_iceblink-longsword", + "fields": { + "name": "Iceblink Longsword", + "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_iceblink-rapier", + "fields": { + "name": "Iceblink Rapier", + "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_iceblink-scimitar", + "fields": { + "name": "Iceblink Scimitar", + "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_iceblink-shortsword", + "fields": { + "name": "Iceblink Shortsword", + "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_impact-club", + "fields": { + "name": "Impact Club", + "desc": "This magic weapon has 3 charges and regains 1d3 expended charges daily at dawn. When you hit a target on your turn, you can take a bonus action to spend 1 charge and attempt to shove the target. The club grants you a +1 bonus on your Strength (Athletics) check to shove the target. If you roll a 20 on your attack roll with the club, you have advantage on your Strength (Athletics) check to shove the target, and you can push the target up to 10 feet away.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_impaling-lance", + "fields": { + "name": "Impaling Lance", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_impaling-morningstar", + "fields": { + "name": "Impaling Morningstar", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_impaling-pike", + "fields": { + "name": "Impaling Pike", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_impaling-rapier", + "fields": { + "name": "Impaling Rapier", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_impaling-warpick", + "fields": { + "name": "Impaling Warpick", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_incense-of-recovery", + "fields": { + "name": "Incense of Recovery", + "desc": "This block of perfumed incense appears to be normal, nonmagical incense until lit. The incense burns for 1 hour and gives off a lavender scent, accompanied by pale mauve smoke that lightly obscures the area within 30 feet of it. Each spellcaster that takes a short rest in the smoke regains one expended spell slot at the end of the short rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_interplanar-paint", + "fields": { + "name": "Interplanar Paint", + "desc": "This black, tarry substance can be used to paint a single black doorway on a flat surface. A pot contains enough paint to create one doorway. While painting, you must concentrate on a plane of existence other than the one you currently occupy. If you are not interrupted, the doorway can be painted in 5 minutes. Once completed, the painting opens a two-way portal to the plane you imagined. The doorway is mirrored on the other plane, often appearing on a rocky face or the wall of a building. The doorway lasts for 1 week or until 5 gallons of water with flecks of silver worth at least 2,000 gp is applied to one side of the door.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ironskin-oil", + "fields": { + "name": "Ironskin Oil", + "desc": "This grayish fluid is cool to the touch and slightly gritty. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature has resistance to piercing and slashing damage for 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ivy-crown-of-prophecy", + "fields": { + "name": "Ivy Crown of Prophecy", + "desc": "While wearing this ivy, filigreed crown, you can use an action to cast the divination spell from it. The crown can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_jewelers-anvil", + "fields": { + "name": "Jeweler's Anvil", + "desc": "This small, foot-long anvil is engraved with images of jewelry in various stages of the crafting process. It weighs 10 pounds and can be mounted on a table or desk. You can use a bonus action to speak its command word and activate it, causing it to warm any nonferrous metals (including their alloys, such as brass or bronze). While you remain within 5 feet of the anvil, you can verbally command it to increase or decrease the temperature, allowing you to soften or melt any kind of nonferrous metal. While activated, the anvil remains warm to the touch, but its heat affects only nonferrous metal. You can use a bonus action to repeat the command word to deactivate the anvil. If you use the anvil while making any check with jeweler's tools or tinker's tools, you can double your proficiency bonus. If your proficiency bonus is already doubled, you have advantage on the check instead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_jungle-mess-kit", + "fields": { + "name": "Jungle Mess Kit", + "desc": "This crucial piece of survival gear guarantees safe use of the most basic of consumables. The hinged metal container acts as a cook pot and opens to reveal a cup, plate, and eating utensils. This kit renders any spoiled, rotten, or even naturally poisonous food or drink safe to consume. It can purify only mundane, natural effects. It has no effect on food that is magically spoiled, rotted, or poisoned, and it can't neutralize brewed poisons, venoms, or similarly manufactured toxins. Once it has purified 3 cubic feet of food and drink, it can't be used to do so again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_justicars-mask", + "fields": { + "name": "Justicar's Mask", + "desc": "This stern-faced mask is crafted of silver. While wearing the mask, your gaze can root enemies to the spot. When a creature that can see the mask starts its turn within 30 feet of you, you can use a reaction to force it to make a DC 15 Wisdom saving throw, if you can see the creature and aren't incapacitated. On a failure, the creature is restrained. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Otherwise, the condition lasts until removed with the dispel magic spell or until you end it (no action required). Justicars are arbiters of law and order, operating independently of any official city guard or watch divisions. They are recognizable by their black, hooded robes, silver masks, and the rods they carry as weapons. These stern sentinels are overseen by The Magister, a powerful wizard of whom little is known other than their title. The Magister has made it their duty to oversee order in the city and executes their plans through the Justicars, giving them the Magister's mark, a signet ring, as a symbol of their authority. While some officers and members of the watch may be resentful of the Justicars' presence, many are grateful for their aid, especially in situations that could require magic. Justicar's are a small, elite group, typically acting as solo agents, though extremely dangerous situations bring them together in pairs or larger groups as needed. The Justicars are outfitted with three symbols of authority that are also imbued with power: their masks, rods, and rings. Each by itself is a useful item, but they are made stronger when worn together. The combined powers of this trinity of items make a Justicar a formidable force in the pursuit of law and order.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_keffiyeh-of-serendipitous-escape", + "fields": { + "name": "Keffiyeh of Serendipitous Escape", + "desc": "This checkered cotton headdress is indistinguishable from the mundane scarves worn by the desert nomads. As an action, you can remove the headdress, spread it open on the ground, and speak the command word. The keffiyeh transforms into a 3-foot by 5-foot carpet of flying which moves according to your spoken directions provided that you are within 30 feet of it. Speaking the command word a second time transforms the carpet back into a headdress again.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_knockabout-billet", + "fields": { + "name": "Knockabout Billet", + "desc": "This stout, oaken cudgel helps you knock your opponents to the ground or away from you. When you hit a creature with this magic weapon, you can shove the target as part of the same attack, using your attack roll in place of a Strength (Athletics) check. The weapon deals damage as normal, regardless of the result of the shove. This property of the club can be used no more than once per hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_kobold-firework", + "fields": { + "name": "Kobold Firework", + "desc": "These small pouches and cylinders are filled with magical powders and reagents, and they each have a small fuse protruding from their closures. You can use an action to light a firework then throw it up to 30 feet. The firework activates immediately or on initiative count 20 of the following round, as detailed below. Once a firework’s effects end, it is destroyed. A firework can’t be lit underwater, and submersion in water destroys a firework. A lit firework can be destroyed early by dousing it with at least 1 gallon of water.\n Blinding Goblin-Cracker (Uncommon). This bright yellow firework releases a blinding flash of light on impact. Each creature within 15 feet of where the firework landed and that can see it must succeed on a DC 13 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n Deafening Kobold-Barker (Uncommon). This firework consists of several tiny green cylinders strung together and bursts with a loud sound on impact. Each creature within 15 feet of where the firework landed and that can hear it must succeed on a DC 13 Constitution saving throw or be deafened for 1 minute. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n Enchanting Elf-Fountain (Uncommon). This purple pyramidal firework produces a fascinating and colorful shower of sparks for 1 minute. The shower of sparks starts on the round after you throw it. While the firework showers sparks, each creature that enters or starts its turn within 30 feet of the firework must make a DC 13 Wisdom saving throw. On a failed save, the creature has disadvantage on Wisdom (Perception) checks made to perceive any creature or object other than the firework until the start of its next turn.\n Fairy Sparkler (Common). This narrow firework is decorated with stars and emits a bright, sparkling light for 1 minute. It starts emitting light on the round after you throw it. The firework sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the firework’s bright light.\n Priest Light (Rare). This silver cylinder firework produces a tall, argent flame and numerous golden sparks for 10 minutes. The flame appears on the round after you throw it. The firework sheds bright light in a 30-foot radius and dim light for an additional 30 feet. An undead creature can’t willingly enter the firework’s bright light by nonmagical means. If the undead creature tries to use teleportation or similar interplanar travel to do so, it must first succeed on a DC 15 Charisma saving throw. If an undead creature is in the bright light when it appears, the creature must succeed on a DC 15 Wisdom saving throw or be compelled to leave the bright light. It won’t move into any obviously deadly hazard, such as a fire or pit, but it will provoke opportunity attacks to move out of the bright light. In addition, each non-undead creature in the bright light can’t be charmed, frightened, or possessed by an undead creature.\n Red Dragon’s Breath (Very Rare). This firework is wrapped in gold leaf and inscribed with scarlet runes, and it erupts into a vertical column of fire on impact. Each creature in a 10-foot-radius, 60-foot-high cylinder centered on the point of impact must make a DC 17 Dexterity saving throw, taking 10d6 fire damage on a failed save, or half as much damage on a successful one.\n Snake Fountain (Rare). This short, wide cylinder is red, yellow, and black with a scale motif, and it produces snakes made of ash for 1 minute. It starts producing snakes on the round after you throw it. The firework creates 1 poisonous snake each round. The snakes are friendly to you and your companions. Roll initiative for the snakes as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don’t issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The snakes remain for 10 minutes, until you dismiss them as a bonus action, or until they are doused with at least 1 gallon of water.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_kraken-clutch-ring", + "fields": { + "name": "Kraken Clutch Ring", + "desc": "This green copper ring is etched with the image of a kraken with splayed tentacles. The ring has 5 charges, and it regains 1d4 + 1 expended charges daily at dawn, as long as it was immersed in water for at least 1 hour since the previous dawn. If the ring has at least 1 charge, you have advantage on grapple checks. While wearing this ring, you can expend 1 or more of its charges to cast one of the following spells from it, using spell save DC 15: black tentacles (2 charges), call lightning (1 charge), or control weather (4 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_kyshaarths-fang", + "fields": { + "name": "Kyshaarth's Fang", + "desc": "This dagger's blade is composed of black, bone-like material. Tales suggest the weapon is fashioned from a Voidling's (see Tome of Beasts) tendril barb. When you hit with an attack using this magic weapon, the target takes an extra 2d6 necrotic damage. If you are in dim light or darkness, you regain a number of hit points equal to half the necrotic damage dealt.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_labrys-of-the-raging-bull-battleaxe", + "fields": { + "name": "Labrys of the Raging Bull (Battleaxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you wield the axe, you have advantage on Strength (Athletics) checks to shove a creature, and you can shove a creature up to two sizes larger than you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_labrys-of-the-raging-bull-greataxe", + "fields": { + "name": "Labrys of the Raging Bull (Greataxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you wield the axe, you have advantage on Strength (Athletics) checks to shove a creature, and you can shove a creature up to two sizes larger than you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_language-pyramid", + "fields": { + "name": "Language Pyramid", + "desc": "Script from dozens of languages flows across this sandstone pyramid's surface. While holding or carrying the pyramid, you understand the literal meaning of any spoken language that you hear. In addition, you understand any written language that you see, but you must be touching the surface on which the words are written. It takes 1 minute to read one page of text. The pyramid has 3 charges, and it regains 1d3 expended charges daily at dawn. You can use an action to expend 1 of its charges to imbue yourself with magical speech for 1 hour. For the duration, any creature that knows at least one language and that can hear you understands any words you speak. In addition, you can use an action to expend 1 of the pyramid's charges to imbue up to six creatures within 30 feet of you with magical understanding for 1 hour. For the duration, each target can understand any spoken language that it hears.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_lantern-of-auspex", + "fields": { + "name": "Lantern of Auspex", + "desc": "This elaborate lantern is covered in simple glyphs, and its glass panels are intricately etched. Two of the panels depict a robed woman holding out a single hand, while the other two panels depict the same woman with her face partially obscured by a hand of cards. The lantern's magic is activated when it is lit, which requires an action. Once lit, the lantern sheds bright light in a 30-foot radius and dim light for an additional 30 feet for 1 hour. You can use an action to open or close one of the glass panels on the lantern. If you open a panel, a vision of a random event that happened or that might happen plays out in the light's area. Closing a panel stops the vision. The visions are shown as nondescript smoky apparitions that play out silently in the lantern's light. At the GM's discretion, the vision might change to a different event each 1 minute that the panel remains open and the lantern lit. Once used, the lantern can't be used in this way again until 7 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_lantern-of-judgment", + "fields": { + "name": "Lantern of Judgment", + "desc": "This mithral and gold lantern is emblazoned with a sunburst symbol. While holding the lantern, you have advantage on Wisdom (Insight) and Intelligence (Investigation) checks. As a bonus action, you can speak a command word to cause one of the following effects: - The lantern casts bright light in a 60-foot cone and dim light for an additional 60 feet. - The lantern casts bright light in a 30-foot radius and dim light for an additional 30 feet. - The lantern sheds dim light in a 5-foot radius.\n- Douse the lantern's light. When you cause the lantern to shed bright light, you can speak an additional command word to cause the light to become sunlight. The sunlight lasts for 1 minute after which the lantern goes dark and can't be used again until the next dawn. During this time, the lantern can function as a standard hooded lantern if provided with oil.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_lantern-of-selective-illumination", + "fields": { + "name": "Lantern of Selective Illumination", + "desc": "This brass lantern is fitted with round panels of crown glass and burns for 6 hours on one 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. During a short rest, you can choose up to three creatures to be magically linked by the lantern. When the lantern is lit, its light can be perceived only by you and those linked creatures. To anyone else, the lantern appears dark and provides no illumination.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_larkmail", + "fields": { + "name": "Larkmail", + "desc": "While wearing this armor, you gain a +1 bonus to AC. The links of this mail have been stained to create the optical illusion that you are wearing a brown-and-russet feathered tunic. While you wear this armor, you have advantage on Charisma (Performance) checks made with an instrument. In addition, while playing an instrument, you can use a bonus action and choose any number of creatures within 30 feet of you that can hear your song. Each target must succeed on a DC 15 Charisma saving throw or be charmed by you for 1 minute. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_last-chance-quiver", + "fields": { + "name": "Last Chance Quiver", + "desc": "This quiver holds 20 arrows. However, when you draw and fire the last arrow from the quiver, it magically produces a 21st arrow. Once this arrow has been drawn and fired, the quiver doesn't produce another arrow until the quiver has been refilled and another 20 arrows have been drawn and fired.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_leaf-bladed-greatsword", + "fields": { + "name": "Leaf-Bladed Greatsword", + "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_leaf-bladed-longsword", + "fields": { + "name": "Leaf-Bladed Longsword", + "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_leaf-bladed-rapier", + "fields": { + "name": "Leaf-Bladed Rapier", + "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_leaf-bladed-scimitar", + "fields": { + "name": "Leaf-Bladed Scimitar", + "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_leaf-bladed-shortsword", + "fields": { + "name": "Leaf-Bladed Shortsword", + "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_least-scroll-of-conjuring", + "fields": { + "name": "Least Scroll of Conjuring", + "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_leather-armor-of-the-leaf", + "fields": { + "name": "Leather Armor of the Leaf", + "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_leather-armor-of-warding-1", + "fields": { + "name": "Leather Armor of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_leather-armor-of-warding-2", + "fields": { + "name": "Leather Armor of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_leather-armor-of-warding-3", + "fields": { + "name": "Leather Armor of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_leonino-wings", + "fields": { + "name": "Leonino Wings", + "desc": "This cloak is decorated with the spotted white and brown pattern of a barn owl's wing feathers. While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of a Leoninos (see Creature Codex) owl-like feathered wings until you repeat the command word as an action. The wings give you a flying speed equal to your walking speed, and you have advantage on Dexterity (Stealth) checks made while flying in forests and urban settings. In addition, when you fly out of an enemy's reach, you don't provoke opportunity attacks. You can use the cloak to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land. The cloak regains 2 hours of flying capability for every 12 hours it isn't in use.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_lesser-scroll-of-conjuring", + "fields": { + "name": "Lesser Scroll of Conjuring", + "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_lifeblood-gear", + "fields": { + "name": "Lifeblood Gear", + "desc": "As an action, you can attach this tiny bronze gear to a pile of junk or other small collection of mundane objects and create a Tiny or Small mechanical servant. This servant uses the statistics of a beast with a challenge rating of 1/4 or lower, except it has immunity to poison damage and the poisoned condition, and it can't be charmed or become exhausted. If it participates in combat, the servant lasts for up to 5 rounds or until destroyed. If commanded to perform mundane tasks, such as fetching items, cleaning, or other similar task, it lasts for up to 5 hours or until destroyed. Once affixed to the servant, the gear pulsates like a beating heart. If the gear is removed, you lose control of the servant, which then attacks indiscriminately for up to 5 rounds or until destroyed. Once the duration expires or the servant is destroyed, the gear becomes a nonmagical gear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_lightning-rod", + "fields": { + "name": "Lightning Rod", + "desc": "This rod is made from the blackened wood of a lightning-struck tree and topped with a spike of twisted iron. It functions as a magic javelin that grants a +1 bonus to attack and damage rolls made with it. While holding it, you are immune to lightning damage, and each creature within 5 feet of you has resistance to lightning damage. The rod can hold up to 6 charges, but it has 0 charges when you first attune to it. Whenever you are subjected to lightning damage, the rod gains 1 charge. While the rod has 6 charges, you have resistance to lightning damage instead of immunity. The rod loses 1d6 charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_linguists-cap", + "fields": { + "name": "Linguist's Cap", + "desc": "While wearing this simple hat, you have the ability to speak and read a single language. Each cap has a specific language associated with it, and the caps often come in styles or boast features unique to the cultures where their associated languages are most prominent. The GM chooses the language or determines it randomly from the lists of standard and exotic languages.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_liquid-courage", + "fields": { + "name": "Liquid Courage", + "desc": "This magical cordial is deep red and smells strongly of fennel. You have advantage on the next saving throw against being frightened. The effect ends after you make such a saving throw or when 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_liquid-shadow", + "fields": { + "name": "Liquid Shadow", + "desc": "The contents of this bottle are inky black and seem to absorb the light. The dark liquid can cover a single Small or Medium creature. Applying the liquid takes 1 minute. For 1 hour, the coated creature has advantage on Dexterity (Stealth) checks. Alternately, you can use an action to hurl the bottle up to 20 feet, shattering it on impact. Magical darkness spreads from the point of impact to fill a 15-foot-radius sphere for 1 minute. This darkness works like the darkness spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_living-juggernaut", + "fields": { + "name": "Living Juggernaut", + "desc": "This broad, bulky suit of plate is adorned with large, blunt spikes and has curving bull horns affixed to its helm. While wearing this armor, you gain a +1 bonus to AC, and difficult terrain doesn't cost you extra movement.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_living-stake", + "fields": { + "name": "Living Stake", + "desc": "Fashioned from mandrake root, this stake longs to taste the heart's blood of vampires. Make a melee attack against a vampire in range, treating the stake as an improvised weapon. On a hit, the stake attaches to a vampire's chest. At the end of the vampire's next turn, roots force their way into the vampire's heart, negating fast healing and preventing gaseous form. If the vampire is reduced to 0 hit points while the stake is attached to it, it is immobilized as if it had been staked. A creature can take its action to remove the stake by succeeding on a DC 17 Strength (Athletics) check. If it is removed from the vampire's chest, the stake is destroyed. The stake has no effect on targets other than vampires.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_lockbreaker", + "fields": { + "name": "Lockbreaker", + "desc": "You can use this stiletto-bladed dagger to open locks by using an action and making a Strength check. The DC is 5 less than the DC to pick the lock (minimum DC 10). On a success, the lock is broken.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_locket-of-dragon-vitality", + "fields": { + "name": "Locket of Dragon Vitality", + "desc": "Legends tell of a dragon whose hide was impenetrable and so tenacious that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon's name was lost, but its legacy remains. This magic amulet is one of two items that were crafted to hold its heart. An intricate engraving of a warrior's sword piercing a dragon's chest is detailed along the front of this untarnished silver locket. Within the locket is a clear crystal vial with a pulsing piece of a dragon's heart. The pulses become more frequent when you are close to death. Attuning to the locket requires you to mix your blood with the blood within the vial. The vial holds 3 charges of dragon blood that are automatically expended when you reach certain health thresholds. The locket regains 1 expended charge for each vial of dragon blood you place in the vial inside the locket up to a maximum of 3 charges. For the purpose of this locket, “dragon” refers to any creature with the dragon type, including drakes and wyverns. While wearing or carrying the locket, you gain the following effects: - When you reach 0 hit points, but do not die outright, the vial breaks and the dragon heart stops pulsing, rendering the item broken and irreparable. You immediately gain temporary hit points equal to your level + your Constitution modifier. If the locket has at least 1 charge of dragon blood, it does not break, but this effect can't be activated again until 3 days have passed. - When you are reduced to half of your maximum hit points, the locket expends 1 charge of dragon blood, and you become immune to any type of blood loss effect, such as the blood loss from a stirge's Blood Drain, for 1d4 + 1 hours. Any existing blood loss effects end immediately when this activates.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_locket-of-remembrance", + "fields": { + "name": "Locket of Remembrance", + "desc": "You can place a small keepsake of a creature, such as a miniature portrait, a lock of hair, or similar item, within the locket. The keepsake must be willingly given to you or must be from a creature personally connected to you, such as a relative or lover.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_locksmiths-oil", + "fields": { + "name": "Locksmith's Oil", + "desc": "This shimmering oil can be applied to a lock. Applying the oil takes 1 minute. For 1 hour, any creature that makes a Dexterity check to pick the lock using thieves' tools rolls a d4 ( 1d4) and adds the number rolled to the check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_lodestone-caltrops", + "fields": { + "name": "Lodestone Caltrops", + "desc": "This small gray pouch appears empty, though it weighs 3 pounds. Reaching inside the bag reveals dozens of small, metal balls. As an action, you can upend the bag and spread the metal balls to cover a square area that is 5 feet on a side. Any creature that enters the area while wearing metal armor or carrying at least one metal item must succeed on a DC 13 Strength saving throw or stop moving this turn. A creature that starts its turn in the area must succeed on a DC 13 Strength saving throw to leave the area. Alternatively, a creature in the area can drop or remove whatever metal items are on it and leave the area without needing to make a saving throw. The metal balls remain for 1 minute. Once the bag's contents have been emptied three times, the bag can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_longbow-of-accuracy", + "fields": { + "name": "Longbow of Accuracy", + "desc": "The normal range of this bow is doubled, but its long range remains the same.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_longsword-of-fallen-saints", + "fields": { + "name": "Longsword of Fallen Saints", + "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_longsword-of-volsung", + "fields": { + "name": "Longsword of Volsung", + "desc": "Legends tell of a dragon whose hide was impenetrable and so robust that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon’s name was lost, but its legacy remains. This sword is one of two items that were crafted to hold its heart. The black blade is adorned with glittering silver runes, and its guard has a shallow opening at the center with grooves connecting it to the first rune. The sword’s pommel is a large, clear crystal held fast by silver scales. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit a dragon with an attack using this sword, that creature takes an extra 1d6 slashing damage. Runes of Courage. You can’t be frightened while holding or carrying this sword. Fragment of Gram Awakened. You can use a bonus action to awaken a fragment of the spirit of the great wyrm that inhabits this blade. For 24 hours, you gain a +3 bonus to attack and damage rolls with this magic sword, and when you hit a dragon with an attack using this sword, that creature takes an extra 3d6 slashing damage. Once used, this property can’t be used again until 3 days have passed. If you have performed the Dragon Heart Ritual, you can use a bonus action to expend 2 of the sword’s charges to activate this property, and you can use this property as often as you want, as long as you have the charges to do so. Dragon Heart Ritual. If you are also attuned to the locket of dragon vitality (see page 152), you can drain 3 charges from the locket into the sword, turning the crystal pommel a deep red and rendering the locket broken and irreparable. Doing this requires a long rest where you also re-attune with the newly charged sword of volsung. Upon completing the Dragon Heart Ritual, the sword contains all remaining charges from the locket, and you gain the locket’s effects while holding or carrying the sword. When you are reduced to 0 hit points and trigger the locket’s temporary hit points, the sword isn’t destroyed, but you can’t trigger that effect again until 24 hours have passed. The sword regains all expended charges after you slay any dragon. For the purpose of this sword, “dragon” refers to any creature with the dragon type, including drakes and wyverns.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_loom-of-fate", + "fields": { + "name": "Loom of Fate", + "desc": "If you spend 1 hour weaving on this portable loom, roll a 1d20 and record the number rolled. You can replace any attack roll, saving throw, or ability check made by you or a creature that you can see with this roll. You must choose to do so before the roll. The loom can't be used this way again until the next dawn. Once you have used the loom 3 times, the fabric is complete, and the loom is no longer magical. The fabric becomes a shifting tapestry that represents the events where you used the loom's power to alter fate.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_lucky-charm-of-the-monkey-king", + "fields": { + "name": "Lucky Charm of the Monkey King", + "desc": "This tiny stone statue of a grinning monkey holds a leather loop in its paws, allowing the charm to hang from a belt or pouch. While attuned to this charm, you can use a bonus action to gain a +1 bonus on your next ability check, attack roll, or saving throw. Once used, the charm can't be used again until the next dawn. You can be attuned to only one lucky charm at a time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_lucky-coin", + "fields": { + "name": "Lucky Coin", + "desc": "This worn, clipped copper piece has 6 charges. You can use a reaction to expend 1 charge and gain a +1 bonus on your next ability check. The coin regains 1d6 charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the coin runs out of luck and becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_lucky-eyepatch", + "fields": { + "name": "Lucky Eyepatch", + "desc": "You gain a +1 bonus to saving throws while you wear this simple, black eyepatch. In addition, if you are missing the eye that the eyepatch covers and you roll a 1 on the d20 for a saving throw, you can reroll the die and must use the new roll. The eyepatch can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_lupine-crown", + "fields": { + "name": "Lupine Crown", + "desc": "This grisly helm is made from the leather-reinforced skull and antlers of a deer with a fox skull and hide stretched over it. It is secured by a strap made from a magically preserved length of deer entrails. While wearing this helm, you gain a +1 bonus to AC, and you have advantage on Dexterity (Stealth) and Wisdom (Survival) checks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_luring-perfume", + "fields": { + "name": "Luring Perfume", + "desc": "This pungent perfume has a woodsy and slightly musky scent. As an action, you can splash or spray the contents of this vial on yourself or another creature within 5 feet of you. For 1 minute, the perfumed creature attracts nearby humanoids and beasts. Each humanoid and beast within 60 feet of the perfumed creature and that can smell the perfume must succeed on a DC 15 Wisdom saving throw or be charmed by the perfumed creature until the perfume fades or is washed off with at least 1 gallon of water. While charmed, a creature is incapacitated, and, if the creature is more than 5 feet away from the perfumed creature, it must move on its turn toward the perfumed creature by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_magma-mantle", + "fields": { + "name": "Magma Mantle", + "desc": "This cracked black leather cloak is warm to the touch and faint ruddy light glows through the cracks. While wearing this cloak, you have resistance to cold damage. As an action, you can touch the brass clasp and speak the command word, which transforms the cloak into a flowing mantle of lava for 1 minute. During this time, you are unharmed by the intense heat, but any hostile creature within 5 feet of you that touches you or hits you with a melee attack takes 3d6 fire damage. In addition, for the duration, you suffer no damage from contact with lava, and you can burrow through lava at half your walking speed. The cloak can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_maidens-tears", + "fields": { + "name": "Maiden's Tears", + "desc": "This fruity mead is the color of liquid gold and is rumored to be brewed with a tear from the goddess of bearfolk herself. When you drink this mead, you regenerate lost hit points for 1 minute. At the start of your turn, you regain 10 hit points if you have at least 1 hit point.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mail-of-the-sword-master", + "fields": { + "name": "Mail of the Sword Master", + "desc": "While wearing this armor, the maximum Dexterity modifier you can add to determine your Armor Class is 4, instead of 2. While wearing this armor, if you are wielding a sword and no other weapons, you gain a +2 bonus to damage rolls with that sword.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_manticores-tail", + "fields": { + "name": "Manticore's Tail", + "desc": "Ten spikes stick out of the head of this magic weapon. While holding the morningstar, you can fire one of the spikes as a ranged attack, using your Strength modifier for the attack and damage rolls. This attack has a normal range of 100 feet and a long range of 200 feet. On a hit, the spike deals 1d8 piercing damage. Once all of the weapon's spikes have been fired, the morningstar deals bludgeoning damage instead of the piercing damage normal for a morningstar until the next dawn, at which time the spikes regrow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mantle-of-blood-vengeance", + "fields": { + "name": "Mantle of Blood Vengeance", + "desc": "This red silk cloak has 3 charges and regains 1d3 expended charges daily at dawn. While wearing it, you can visit retribution on any creature that dares spill your blood. When you take piercing, slashing, or necrotic damage from a creature, you can use a reaction to expend 1 charge to turn your blood into a punishing spray. The creature that damaged you must make a DC 13 Dexterity saving throw, taking 2d10 acid damage on a failed save, or half as much damage on a successful one.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mantle-of-the-forest-lord", + "fields": { + "name": "Mantle of the Forest Lord", + "desc": "Created by village elders for druidic scouts to better traverse and survey the perimeters of their lands, this cloak resembles thick oak bark but bends and flows like silk. While wearing this cloak, you can use an action to cast the tree stride spell on yourself at will, except trees need not be living in order to pass through them.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mantle-of-the-lion", + "fields": { + "name": "Mantle of the Lion", + "desc": "This splendid lion pelt is designed to be worn across the shoulders with the paws clasped at the base of the neck. While wearing this mantle, your speed increases by 10 feet, and the mantle's lion jaws are a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, the mantle's bite deals piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. In addition, if you move at least 20 feet straight toward a creature and then hit it with a melee attack on the same turn, that creature must succeed on a DC 15 Strength saving throw or be knocked prone. If a creature is knocked prone in this way, you can make an attack with the mantle's bite against the prone creature as a bonus action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mantle-of-the-void", + "fields": { + "name": "Mantle of the Void", + "desc": "While wearing this midnight-blue mantle covered in writhing runes, you gain a +1 bonus to saving throws, and if you succeed on a saving throw against a spell that allows you to make a saving throw to take only half the damage or suffer partial effects, you instead take no damage and suffer none of the spell's effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_manual-of-exercise", + "fields": { + "name": "Manual of Exercise", + "desc": "This book contains exercises and techniques to better perform a specific physical task, and its words are charged with magic. If you spend 24 hours over a period of 3 days or fewer studying the tome and practicing its instructions, you gain proficiency in the Strength or Dexterity-based skill (such as Athletics or Stealth) associated with the book. The manual then loses its magic, but regains it in ten years.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_manual-of-the-lesser-golem", + "fields": { + "name": "Manual of the Lesser Golem", + "desc": "A manual of the lesser golem can be found in a book, on a scroll, etched into a piece of stone or metal, or scribed on any other medium that holds words, runes, and arcane inscriptions. Each manual of the lesser golem describes the materials needed and the process to be followed to create one type of lesser golem. The GM chooses the type of lesser golem detailed in the manual or determines the golem type randomly. To decipher and use the manual, you must be a spellcaster with at least one 2nd-level spell slot. You must also succeed on a DC 10 Intelligence (Arcana) check at the start of the first day of golem creation. If you fail the check, you must wait at least 24 hours to restart the creation process, and you take 3d6 psychic damage that can be regained only after a long rest. A lesser golem created via a manual of the lesser golem is not immortal. The magic that keeps the lesser golem intact gradually weakens until the golem finally falls apart. A lesser golem lasts exactly twice the number of days it takes to create it (see below) before losing its power. Once the golem is created, the manual is expended, the writing worthless and incapable of creating another. The statistics for each lesser golem can be found in the Creature Codex. | dice: 1d20 | Golem | Time | Cost |\n| ---------- | ---------------------- | ------- | --------- |\n| 1-7 | Lesser Hair Golem | 2 days | 100 gp |\n| 8-13 | Lesser Mud Golem | 5 days | 500 gp |\n| 14-17 | Lesser Glass Golem | 10 days | 2,000 gp |\n| 18-20 | Lesser Wood Golem | 15 days | 20,000 gp |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_manual-of-vine-golem", + "fields": { + "name": "Manual of Vine Golem", + "desc": "This tome contains information and incantations necessary to make a Vine Golem (see Tome of Beasts 2). To decipher and use the manual, you must be a druid with at least two 3rd-level spell slots. A creature that can't use a manual of vine golems and attempts to read it takes 4d6 psychic damage. To create a vine golem, you must spend 20 days working without interruption with the manual at hand and resting no more than 8 hours per day. You must also use powders made from rare plants and crushed gems worth 30,000 gp to create the vine golem, all of which are consumed in the process. Once you finish creating the vine golem, the book decays into ash. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mapping-ink", + "fields": { + "name": "Mapping Ink", + "desc": "This viscous ink is typically found in 1d4 pots, and each pot contains 3 doses. You can use an action to pour one dose of the ink onto parchment, vellum, or cloth then fold the material. As long as the ink-stained material is folded and on your person, the ink captures your footsteps and surroundings on the material, mapping out your travels with great precision. You can unfold the material to pause the mapping and refold it to begin mapping again. Deduct the time the ink maps your travels in increments of 1 hour from the total mapping time. Each dose of ink can map your travels for 8 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_marvelous-clockwork-mallard", + "fields": { + "name": "Marvelous Clockwork Mallard", + "desc": "This intricate clockwork recreation of a Tiny duck is fashioned of brass and tin. Its head is painted with green lacquer, the bill is plated in gold, and its eyes are small chips of black onyx. You can use an action to wind the mallard's key, and it springs to life, ready to follow your commands. While active, it has AC 13, 18 hit points, speed 25 ft., fly 40 ft., and swim 30 ft. If reduced to 0 hit points, it becomes nonfunctional and can't be activated again until 24 hours have passed, during which time it magically repairs itself. If damaged but not disabled, it regains any lost hit points at the next dawn. It has the following additional properties, and you choose which property to activate when you wind the mallard's key.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_masher-basher", + "fields": { + "name": "Masher Basher", + "desc": "A favored weapon of hill giants, this greatclub appears to be little more than a thick tree branch. When you hit a giant with this magic weapon, the giant takes an extra 1d8 bludgeoning damage. When you roll a 20 on an attack roll made with this weapon, the target is stunned until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mask-of-the-leaping-gazelle", + "fields": { + "name": "Mask of the Leaping Gazelle", + "desc": "This painted wooden animal mask is adorned with a pair of gazelle horns. While wearing this mask, your walking speed increases by 10 feet, and your long jump is up to 25 feet with a 10-foot running start.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mask-of-the-war-chief", + "fields": { + "name": "Mask of the War Chief", + "desc": "These fierce yet regal war masks are made by shamans in the cold northern mountains for their chieftains. Carved from the wood of alpine trees, each mask bears the image of a different creature native to those regions. Cave Bear (Uncommon). This mask is carved in the likeness of a roaring cave bear. While wearing it, you have advantage on Charisma (Intimidation) checks. In addition, you can use an action to summon a cave bear (use the statistics of a brown bear) to serve you in battle. The bear is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as attack your enemies. In the absence of such orders, the bear acts in a fashion appropriate to its nature. It vanishes at the next dawn or when it is reduced to 0 hit points. The mask can’t be used this way again until the next dawn. Behir (Very Rare). Carvings of stylized lightning decorate the closed, pointed snout of this blue, crocodilian mask. While wearing it, you have resistance to lightning damage. In addition, you can use an action to exhale lightning in a 30-foot line that is 5 feet wide Each creature in the line must make a DC 17 Dexterity saving throw, taking 3d10 lightning damage on a failed save, or half as much damage on a successful one. This mask can’t be used this way again until the next dawn. Mammoth (Uncommon). This mask is carved in the likeness of a mammoth’s head with a short trunk curling up between the eyes. While wearing it, you count as one size larger when determining your carrying capacity and the weight you can lift, drag, or push. In addition, you can use an action to trumpet like a mammoth. Choose up to six creatures within 30 feet of you and that can hear the trumpet. For 1 minute, each target is under the effect of the bane (if a hostile creature; save DC 13) or bless (if a friendly creature) spell (no concentration required). This mask can’t be used this way again until the next dawn. Winter Wolf (Rare). Carved in the likeness of a winter wolf, this white mask is cool to the touch. While wearing it, you have resistance to cold damage. In addition, you can use an action to exhale freezing air in a 15-foot cone. Each creature in the area must make a DC 15 Dexterity saving throw, taking 3d8 cold damage on a failed save, or half as much damage on a successful one. This mask can’t be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_master-anglers-tackle", + "fields": { + "name": "Master Angler's Tackle", + "desc": "This is a set of well-worn but finely crafted fishing gear. You have advantage on any Wisdom (Survival) checks made to catch fish or other seafood when using it. If you ever roll a 1 on your check while using the tackle, roll again. If the second roll is a 20, you still fail to catch anything edible, but you pull up something interesting or valuable—a bottle with a note in it, a fragment of an ancient tablet carved in ancient script, a mermaid in need of help, or similar. The GM decides what you pull up and its value, if it has one.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_matryoshka-dolls", + "fields": { + "name": "Matryoshka Dolls", + "desc": "This antique set of four nesting dolls is colorfully painted though a bit worn from the years. When attuning to this item, you must give each doll a name, which acts as a command word to activate its properties. You must be within 30 feet of a doll to activate it. The dolls have a combined total of 5 charges, and the dolls regain all expended charges daily at dawn. The largest doll is lined with a thin sheet of lead. A spell or other effect that can sense the presence of magic, such as detect magic, reveals only the transmutation magic of the largest doll, and not any of the dolls or other small items that may be contained within it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mayhem-mask", + "fields": { + "name": "Mayhem Mask", + "desc": "This goat mask with long, curving horns is carved from dark wood and framed in goat's hair. While wearing this mask, you can use its horns to make unarmed strikes. When you hit with it, your horns deal piercing damage equal to 1d6 + your Strength modifier, instead of bludgeoning damage normal for an unarmed strike. If you moved at least 15 feet straight toward the target before you attacked with the horns, the attack deals piercing damage equal to 2d6 + your Strength modifier instead. In addition, you can gaze through the eyes of the mask at one target you can see within 30 feet of you. The target must succeed on a DC 17 Wisdom saving throw or be affected as though it failed a saving throw against the confusion spell. The confusion effect lasts for 1 minute. Once used, this property of the mask can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_medal-of-valor", + "fields": { + "name": "Medal of Valor", + "desc": "You are immune to the frightened condition while you wear this medal. If you are already frightened, the effect ends immediately when you put on the medal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_memory-philter", + "fields": { + "name": "Memory Philter", + "desc": "This swirling liquid is the collected memory of a mortal who willingly traded that memory away to the fey. When you touch the philter, you feel a flash of the emotion contained within. You can unstopper and pour out the philter as an action, unless otherwise specified. The philter's effects take place immediately, either on you or on a creature you can see within 30 feet (your choice). If the target is unwilling, it can make a DC 15 Wisdom saving throw to resist the effect of the philter. A creature affected by a philter experiences the memory contained in the vial. A memory philter can be used only once, but the vial can be reused to store a new memory. Storing a new memory requires a few herbs, a 10-minute ritual, and the sacrifice of a memory. The required sacrifice is detailed in each entry below.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_menders-mark", + "fields": { + "name": "Mender's Mark", + "desc": "This slender brooch is fashioned of silver and shaped in the image of an angel. You can use an action to attach this brooch to a creature, pinning it to clothing or otherwise affixing it to their person. When you cast a spell that restores hit points on the creature wearing the brooch, the spell has a range of 30 feet if its range is normally touch. Only you can transfer the brooch from one creature to another. The creature wearing the brooch can't pass it to another creature, but it can remove the brooch as an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_meteoric-plate", + "fields": { + "name": "Meteoric Plate", + "desc": "This plate armor was magically crafted from plates of interlocking stone. Tiny rubies inlaid in the chest create a glittering mosaic of flames. When you fall while wearing this armor, you can tuck your knees against your chest and curl into a ball. While falling in this way, flames form around your body. You take half the usual falling damage when you hit the ground, and fire explodes from your form in a 20-foot-radius sphere. Each creature in this area must make a DC 15 Dexterity saving throw. On a failed save, a target takes fire damage equal to the falling damage you took, or half as much on a successful saving throw. The fire spreads around corners and ignites flammable objects in the area that aren't being worn or carried.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mindshatter-bombard", + "fields": { + "name": "Mindshatter Bombard", + "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_minor-minstrel", + "fields": { + "name": "Minor Minstrel", + "desc": "This four-inch high, painted, ceramic figurine animates and sings one song, typically about 3 minutes in length, when you set it down and speak the command word. The song is chosen by the figurine's original creator, and the figurine's form is typically reflective of the song's style. A red-nosed dwarf holding a mug sings a drinking song; a human figure in mourner's garb sings a dirge; a well-dressed elf with a harp sings an elven love song; or similar, though some creators find it amusing to create a figurine with a song counter to its form. If you pick up the figurine before the song finishes, it falls silent.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mirror-of-eavesdropping", + "fields": { + "name": "Mirror of Eavesdropping", + "desc": "This 8-inch diameter mirror is set in a delicate, silver frame. While holding this mirror within 30 feet of another mirror, you can spend 10 minutes magically connecting the mirror of eavesdropping to that other mirror. The mirror of eavesdropping can be connected to only one mirror at a time. While holding the mirror of eavesdropping within 1 mile of its connected mirror, you can use an action to speak its command word and activate it. While active, the mirror of eavesdropping displays visual information from the connected mirror, which has normal vision and darkvision out to 30 feet. The connected mirror's view is limited to the direction the mirror is facing, and it can be blocked by a solid barrier, such as furniture, a heavy cloth, or similar. You can use a bonus action to deactivate the mirror early. When the mirror has been active for a total of 10 minutes, you can't activate it again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mirrored-breastplate", + "fields": { + "name": "Mirrored Breastplate", + "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mirrored-half-plate", + "fields": { + "name": "Mirrored Half Plate", + "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mirrored-plate", + "fields": { + "name": "Mirrored Plate", + "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mnemonic-fob", + "fields": { + "name": "Mnemonic Fob", + "desc": "This small bauble consists of a flat crescent, which binds a small disc that freely spins in its housing. Each side of the disc is intricately etched with an incomplete pillar and pyre. \nPillar of Fire. While holding this bauble, you can use an action to remove the disc, place it on the ground, and speak its command word to transform it into a 5-foot-tall flaming pillar of intricately carved stone. The pillar sheds bright light in a 20-foot radius and dim light for an additional 20 feet. It is warm to the touch, but it doesn’t burn. A second command word returns the pillar to its disc form. When the pillar has shed light for a total of 10 minutes, it returns to its disc form and can’t be transformed into a pillar again until the next dawn. \nRecall Magic. While holding this bauble, you can use an action to spin the disc and regain one expended 1st-level spell slot. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mock-box", + "fields": { + "name": "Mock Box", + "desc": "While you hold this small, square contraption, you can use an action to target a creature within 60 feet of you that can hear you. The target must succeed on a DC 13 Charisma saving throw or attack rolls against it have advantage until the start of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_molten-hellfire-breastplate", + "fields": { + "name": "Molten Hellfire Breastplate", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_molten-hellfire-chain-mail", + "fields": { + "name": "Molten Hellfire Chain Mail", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_molten-hellfire-chain-shirt", + "fields": { + "name": "Molten Hellfire Chain Shirt", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_molten-hellfire-half-plate", + "fields": { + "name": "Molten Hellfire Half Plate", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_molten-hellfire-plate", + "fields": { + "name": "Molten Hellfire Plate", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_molten-hellfire-ring-mail", + "fields": { + "name": "Molten Hellfire Ring Mail", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_molten-hellfire-scale-mail", + "fields": { + "name": "Molten Hellfire Scale Mail", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_molten-hellfire-splint", + "fields": { + "name": "Molten Hellfire Splint", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mongrelmakers-handbook", + "fields": { + "name": "Mongrelmaker's Handbook", + "desc": "This thin volume holds a scant few dozen vellum pages between its mottled, scaled cover. The pages are scrawled with tight, efficient text which is broken up by outlandish pencil drawings of animals and birds combined together. With the rituals contained in this book, you can combine two or more animals into an adult hybrid of all creatures used. Each ritual requires the indicated amount of time, the indicated cost in mystic reagents, a live specimen of each type of creature to be combined, and enough floor space to draw a combining rune which encircles the component creatures. Once combined, the hybrid creature is a typical example of its new kind, though some aesthetic differences may be detectable. You can't control the creatures you create with this handbook, though the magic of the combining ritual prevents your creations from attacking you for the first 24 hours of their new lives. | Creature | Time | Cost | Component Creatures |\n| ---------------- | -------- | -------- | -------------------------------------------------------- |\n| Flying Snake | 10 mins | 10 gp | A poisonous snake and a Small or smaller bird of prey |\n| Leonino | 10 mins | 15 gp | A cat and a Small or smaller bird of prey |\n| Wolpertinger | 10 mins | 20 gp | A rabbit, a Small or smaller bird of prey, and a deer |\n| Carbuncle | 1 hour | 500 gp | A cat and a bird of paradise |\n| Cockatrice | 1 hour | 150 gp | A lizard and a domestic bird such as a chicken or turkey |\n| Death Dog | 1 hour | 100 gp | A dog and a rooster |\n| Dogmole | 1 hour | 175 gp | A dog and a mole |\n| Hippogriff | 1 hour | 200 gp | A horse and a giant eagle |\n| Bearmit crab | 6 hours | 600 gp | A brown bear and a giant crab |\n| Griffon | 6 hours | 600 gp | A lion and a giant eagle |\n| Pegasus | 6 hours | 1,000 gp | A white horse and a giant owl |\n| Manticore | 24 hours | 2,000 gp | A lion, a porcupine, and a giant bat |\n| Owlbear | 24 hours | 2,000 gp | A brown bear and a giant eagle |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_monkeys-paw-of-fortune", + "fields": { + "name": "Monkey's Paw of Fortune", + "desc": "This preserved monkey's paw hangs on a simple leather thong. This paw helps you alter your fate. If you are wearing this paw when you fail an attack roll, ability check, or saving throw, you can use your reaction to reroll the roll with a +10 bonus. You must take the second roll. When you use this property of the paw, one of its fingers curls tight to the palm. When all five fingers are curled tightly into a fist, the monkey's paw loses its magic.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_moon-through-the-trees", + "fields": { + "name": "Moon Through the Trees", + "desc": "This charm is comprised of six polished river stones bound into the shape of a star with glue made from the connective tissues of animals. The reflective surfaces of the stones shimmer with a magical iridescence. While you are within 20 feet of a living tree, you can use a bonus action to become invisible for 1 minute. While invisible, you can use a bonus action to become visible. If you do, each creature of your choice within 30 feet of you must succeed on a DC 15 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat this saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to this charm's blinding feature for the next 24 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_moonfield-lens", + "fields": { + "name": "Moonfield Lens", + "desc": "This lens is rainbow-hued and protected by a sturdy leather case. It has 4 charges, and it regains 1d3 + 1 expended charges daily at dawn. As an action, you can hold the lens to your eye, speak its command word, and expend 2 charges to cause one of the following effects: - *** Find Loved One.** You know the precise location of one creature you love (platonic, familial, or romantic). This knowledge extends into other planes. - *** True Path.** For 1 hour, you automatically succeed on all Wisdom (Survival) checks to navigate in the wild. If you are underground, you automatically know the most direct route to reach the surface.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_moonsteel-dagger", + "fields": { + "name": "Moonsteel Dagger", + "desc": "The blade of this magic weapon seems to shine from within with a pale, white light. The weapon deals an extra 1d6 radiant damage to any creature it hits. If the creature is a shapechanger or any other creature not in its true form, it becomes frightened until the start of your next turn. At the start of its turn, a creature frightened in this way must succeed on a DC 13 Charisma saving throw or immediately return to its true form. For the purpose of this weapon, “shapechanger” refers to any creature with the Shapechanger trait.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_moonsteel-rapier", + "fields": { + "name": "Moonsteel Rapier", + "desc": "The blade of this magic weapon seems to shine from within with a pale, white light. The weapon deals an extra 1d6 radiant damage to any creature it hits. If the creature is a shapechanger or any other creature not in its true form, it becomes frightened until the start of your next turn. At the start of its turn, a creature frightened in this way must succeed on a DC 13 Charisma saving throw or immediately return to its true form. For the purpose of this weapon, “shapechanger” refers to any creature with the Shapechanger trait.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mordant-battleaxe", + "fields": { + "name": "Mordant Battleaxe", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mordant-glaive", + "fields": { + "name": "Mordant Glaive", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mordant-greataxe", + "fields": { + "name": "Mordant Greataxe", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mordant-greatsword", + "fields": { + "name": "Mordant Greatsword", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mordant-halberd", + "fields": { + "name": "Mordant Halberd", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mordant-longsword", + "fields": { + "name": "Mordant Longsword", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mordant-scimitar", + "fields": { + "name": "Mordant Scimitar", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mordant-shortsword", + "fields": { + "name": "Mordant Shortsword", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mordant-sickle", + "fields": { + "name": "Mordant Sickle", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mordant-whip", + "fields": { + "name": "Mordant Whip", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mountain-hewer", + "fields": { + "name": "Mountain Hewer", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. The massive head of this axe is made from chiseled stone lashed to its haft by thick rope and leather strands. Small chips of stone fall from its edge intermittently, though it shows no sign of damage or wear. You can use your action to speak the command word to cause small stones to float and swirl around the axe, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. The light remains until you use a bonus action to speak the command word again or until you drop or sheathe the axe. As a bonus action, choose a creature you can see. For 1 minute, that creature must succeed on a DC 15 Wisdom saving throw each time it is damaged by the axe or become frightened until the end of your next turn. Creatures of Large size or greater have disadvantage on this save. Once used, this property of the axe can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mountaineers-hand-crossbow", + "fields": { + "name": "Mountaineer's Hand Crossbow", + "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mountaineers-heavy-crossbow", + "fields": { + "name": "Mountaineer's Heavy Crossbow", + "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mountaineers-light-crossbow", + "fields": { + "name": "Mountaineer's Light Crossbow ", + "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_muffled-chain-mail", + "fields": { + "name": "Muffled Chain Mail", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_muffled-half-plate", + "fields": { + "name": "Muffled Half Plate", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_muffled-padded", + "fields": { + "name": "Muffled Padded", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_muffled-plate", + "fields": { + "name": "Muffled Plate", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_muffled-ring-mail", + "fields": { + "name": "Muffled Ring Mail", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_muffled-scale-mail", + "fields": { + "name": "Muffled Scale Mail", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_muffled-splint", + "fields": { + "name": "Muffled Splint", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mug-of-merry-drinking", + "fields": { + "name": "Mug of Merry Drinking", + "desc": "While you hold this broad, tall mug, any liquid placed inside it warms or cools to exactly the temperature you want it, though the mug can't freeze or boil the liquid. If you drop the mug or it is knocked from your hand, it always lands upright without spilling its contents.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_murderous-bombard", + "fields": { + "name": "Murderous Bombard", + "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_mutineers-blade", + "fields": { + "name": "Mutineer's Blade", + "desc": "This finely balanced scimitar has an elaborate brass hilt. You gain a +2 bonus on attack and damage rolls made with this magic weapon. You can use a bonus action to speak the scimitar's command word, causing the blade to shed bright green light in a 10-foot radius and dim light for an additional 10 feet. The light lasts until you use a bonus action to speak the command word again or until you drop or sheathe the scimitar. When you roll a 20 on an attack roll made with this weapon, the target is overcome with the desire for mutiny. On the target's next turn, it must make one attack against its nearest ally, then the effect ends, whether or not the attack was successful.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_nameless-cults", + "fields": { + "name": "Nameless Cults", + "desc": "This dubious old book, bound in heavy leather with iron hasps, details the forbidden secrets and monstrous blasphemy of a multitude of nightmare cults that worship nameless and ghastly entities. It reads like the monologue of a maniac, illustrated with unsettling glyphs and filled with fluctuating moments of vagueness and clarity. The tome is a spellbook that contains the following spells, all of which can be found in the Mythos Magic Chapter of Deep Magic for 5th Edition: black goat's blessing, curse of Yig, ectoplasm, eldritch communion, emanation of Yoth, green decay, hunger of Leng, mind exchange, seed of destruction, semblance of dread, sign of Koth, sleep of the deep, summon eldritch servitor, summon avatar, unseen strangler, voorish sign, warp mind and matter, and yellow sign. At the GM's discretion, the tome can contain other spells similarly related to the Great Old Ones. While attuned to the book, you can reference it whenever you make an Intelligence check to recall information about any aspect of evil or the occult, such as lore about Great Old Ones, mythos creatures, or the cults that worship them. When doing so, your proficiency bonus for that check is doubled.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_necromantic-ink", + "fields": { + "name": "Necromantic Ink", + "desc": "The scent of death and decay hangs around this grey ink. It is typically found in 1d4 pots, and each pot contains 2 doses. If you spend 1 minute using one dose of the ink to draw symbols of death on a dead creature that has been dead no longer than 10 days, you can imbue the creature with the ink's magic. The creature rises 24 hours later as a skeleton or zombie (your choice), unless the creature is restored to life or its body is destroyed. You have no control over the undead creature.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_neutralizing-bead", + "fields": { + "name": "Neutralizing Bead", + "desc": "This hard, gritty, flavorless bead can be dissolved in liquid or powdered between your fingers and sprinkled over food. Doing so neutralizes any poisons that may be present. If the food or liquid is poisoned, it takes on a brief reddish hue where it makes contact with the bead as the bead dissolves. Alternatively, you can chew and swallow the bead and gain the effects of an antitoxin.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_nithing-pole", + "fields": { + "name": "Nithing Pole", + "desc": "This pole is crafted to exact retribution for an act of cowardice or dishonor. It's a sturdy wooden stave, 6 to 10 feet long, carved with runes that name the dishonored target of the pole's curse. The carved shaft is draped in horsehide, topped with a horse's skull, and placed where its target is expected to pass by. Typically, the pole is driven into the ground or wedged into a rocky cleft in a remote spot where the intended victim won't see it until it's too late. The pole is created to punish a specific person for a specific crime. The exact target must be named on the pole; a generic identity such as “the person who blinded Lars Gustafson” isn't precise enough. The moment the named target approaches within 333 feet, the pole casts bestow curse (with a range of 333 feet instead of touch) on the target. The DC for the target's Wisdom saving throw is 15. If the saving throw is successful, the pole recasts the spell at the end of each round until the saving throw fails, the target retreats out of range, or the pole is destroyed. Anyone other than the pole's creator who tries to destroy or knock down the pole is also targeted by a bestow curse spell, but only once. The effect of the curse is set when the pole is created, and the curse lasts 8 hours without requiring concentration. The pole becomes nonmagical once it has laid its curse on its intended target. An untriggered and forgotten nithing pole remains dangerous for centuries.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_nullifiers-lexicon", + "fields": { + "name": "Nullifier's Lexicon", + "desc": "This book has a black leather cover with silver bindings and a silver front plate. Void Speech glyphs adorn the front plate, which is pitted and tarnished. The pages are thin sheets of corrupted brass and are inscribed with more blasphemous glyphs. While you are attuned to the lexicon, you can speak, read, and write Void Speech, and you know the crushing curse* cantrip. At the GM's discretion, you know the chill touch cantrip instead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_oakwood-wand", + "fields": { + "name": "Oakwood Wand", + "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains 1d3 expended charges daily at dawn. While holding it, you can expend 1 charge as an action to cast the detect poison and disease spell from it. When you cast a spell that deals cold damage while using this wand as your spellcasting focus, the spell deals 1 extra cold damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_octopus-bracers", + "fields": { + "name": "Octopus Bracers", + "desc": "These bronze bracers are etched with depictions of frolicking octopuses. While wearing these bracers, you can use an action to speak their command word and transform your arms into tentacles. You can use a bonus action to repeat the command word and return your arms to normal. The tentacles are natural melee weapons, which you can use to make unarmed strikes. Your reach extends by 5 feet while your arms are tentacles. When you hit with a tentacle, it deals bludgeoning damage equal to 1d8 + your Strength or Dexterity modifier (your choice). If you hit a creature of your size or smaller than you, it is grappled. Each tentacle can grapple only one target. While grappling a target with a tentacle, you can't attack other creatures with that tentacle. While your arms are tentacles, you can't wield weapons that require two hands, and you can't wield shields. In addition, you can't cast a spell that has a somatic component. When the bracers' property has been used for a total of 10 minutes, the magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_oculi-of-the-ancestor", + "fields": { + "name": "Oculi of the Ancestor", + "desc": "An intricately depicted replica of an eyeball, right down to the blood vessels and other fine details, this item is carved from sacred hardwoods by soothsayers using a specialized ceremonial blade handcrafted specifically for this purpose. When you use an action to place the orb within the eye socket of a skull, it telepathically shows you the last thing that was experienced by the creature before it died. This lasts for up to 1 minute and is limited to only what the creature saw or heard in the final moments of its life. The orb can't show you what the creature might have detected using another sense, such as tremorsense.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_odd-bodkin", + "fields": { + "name": "Odd Bodkin", + "desc": "This dagger has a twisted, jagged blade. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature other than a construct or an undead with this weapon, it loses 1d4 hit points at the start of each of its turns from a jagged wound. Each time you successfully hit the wounded target with this dagger, the damage dealt by the wound increases by 1d4. Any creature can take an action to stanch the wound with a successful DC 11 Wisdom (Medicine) check. The wound also closes if the wounded creature receives magical healing.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_odorless-oil", + "fields": { + "name": "Odorless Oil", + "desc": "This odorless, colorless oil can cover a Medium or smaller object or creature, along with the equipment the creature is wearing or carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. For 1 hour, the affected target gives off no scent, can't be tracked by scent, and can't be detected with Wisdom (Perception) checks that rely on smell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ogres-pot", + "fields": { + "name": "Ogre's Pot", + "desc": "This cauldron boils anything placed inside it, whether venison or timber, to a vaguely edible paste. A spoonful of the paste provides enough nourishment to sustain a creature for one day. As a bonus action, you can speak the pot's command word and force it to roll directly to you at a speed of 40 feet per round as long as you and the pot are on the same plane of existence. It follows the shortest possible path, stopping when it moves to within 5 feet of you, and it bowls over or knocks down any objects or creatures in its path. A creature in its path must succeed on a DC 13 Dexterity saving throw or take 2d6 bludgeoning damage and be knocked prone. When this magic pot comes into contact with an object or structure, it deals 4d6 bludgeoning damage. If the damage doesn't destroy or create a path through the object or structure, the pot continues to deal damage at the end of each round, carving a path through the obstacle.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_oil-of-concussion", + "fields": { + "name": "Oil of Concussion", + "desc": "You can apply this thick, gray oil to one bludgeoning weapon or up to 5 pieces of bludgeoning ammunition. Applying the oil takes 1 minute. For 1 hour, any attack with the coated item scores a critical hit on a roll of 19 or 20.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_oil-of-defoliation", + "fields": { + "name": "Oil of Defoliation", + "desc": "Sometimes known as weedkiller oil, this greasy amber fluid contains the crushed husks of dozens of locusts. One vial of the oily substance can coat one weapon or up to 5 pieces of ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item deals an extra 1d6 necrotic damage to plants or plant creatures on a successful hit. The oil can also be applied directly to a willing, restrained, or immobile plant or plant creature. In this case, the substance deals 4d6 necrotic damage, which is enough to kill most ordinary plant life smaller than a large tree.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_oil-of-extreme-bludgeoning", + "fields": { + "name": "Oil of Extreme Bludgeoning", + "desc": "This viscous indigo-hued oil smells of iron. The oil can coat one bludgeoning weapon or up to 5 pieces of bludgeoning ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical, has a +1 bonus to attack and damage rolls, and deals an extra 1d4 force damage on a hit.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_oil-of-numbing", + "fields": { + "name": "Oil of Numbing", + "desc": "This astringent-smelling oil stings slightly when applied to flesh, but the feeling quickly fades. The oil can cover a Medium or smaller creature (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. For 1 hour, the affected creature has advantage on Constitution saving throws to maintain its concentration on a spell when it takes damage, and it has advantage on ability checks and saving throws made to endure pain. However, the affected creature's flesh is slightly numbed and senseless, and it has disadvantage on ability checks that require fine motor skills or a sense of touch.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_oil-of-sharpening", + "fields": { + "name": "Oil of Sharpening", + "desc": "You can apply this fine, silvery oil to one piercing or slashing weapon or up to 5 pieces of piercing or slashing ammunition. Applying the oil takes 1 minute. For 1 hour, any attack with the coated item scores a critical hit on a roll of 19 or 20.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_oni-mask", + "fields": { + "name": "Oni Mask", + "desc": "This horned mask is fashioned into the fearsome likeness of a pale oni. The mask has 6 charges for the following properties. The mask regains 1d6 expended charges daily at dawn. Spells. While wearing the mask, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 15): charm person (1 charge), invisibility (2 charges), or sleep (1 charge). Change Shape. You can expend 3 charges as an action to magically polymorph into a Small or Medium humanoid, into a Large giant, or back into your true form. Other than your size, your statistics are the same in each form. The only equipment that is transformed is your weapon, which enlarges or shrinks so that it can be wielded in any form. If you die, you revert to your true form, and your weapon reverts to its normal size.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_oracle-charm", + "fields": { + "name": "Oracle Charm", + "desc": "This small charm resembles a human finger bone engraved with runes and complicated knotwork patterns. As you contemplate a specific course of action that you plan to take within the next 30 minutes, you can use an action to snap the charm in half to gain the benefit of an augury spell. Once used, the charm is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_orb-of-enthralling-patterns", + "fields": { + "name": "Orb of Enthralling Patterns", + "desc": "This plain, glass orb shimmers with iridescence. While holding this orb, you can use an action to speak its command word, which causes it to levitate and emit multicolored light. Each creature other than you within 10 feet of the orb must succeed on a DC 13 Wisdom saving throw or look at only the orb for 1 minute. For the duration, a creature looking at the orb has disadvantage on Wisdom (Perception) checks to perceive anything that is not the orb. Creatures that failed the saving throw have no memory of what happened while they were looking at the orb. Once used, the orb can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_orb-of-obfuscation", + "fields": { + "name": "Orb of Obfuscation", + "desc": "Originally fashioned in the laboratory of the archmage Lugax for his good natured but often roguish friend, Kennich, these spherical ceramic containers are the size of a large human fist. Arcane sigils decorate each orb, detailing its properties to those capable of reading the sigils. The magic-infused chemicals in each orb must be briefly exposed to air before being thrown to activate them. A metal rod sits in the cork of each orb, allowing you to quickly twist open the container before throwing it. Typically, 1d4 + 1 orbs of obfuscation are found together. You can use an action to activate and throw the orb up to 60 feet. The orb explodes on impact and is destroyed. The orb's effects are determined by its type. Orb of Obfuscation (Uncommon). This orb is a dark olive color with a stripe of bright blue paint encircling it. When activated, the orb releases an opaque grey gas and creates a 30-foot-radius sphere of this gas centered on the point where the orb landed. The sphere spreads around corners, and its area is heavily obscured. The magical gas also dampens sound. Each creature in the gas can hear only sounds originating within 5 feet of it, and creatures outside of the gas can’t hear sounds originating inside the gas. The gas lasts for 5 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. Explosive Orb of Obfuscation (Rare). This oblong orb has a putty grey color with a stripe of yellow paint encircling it. When activated, this orb releases the same opaque grey gas as the orb of obfuscation. In addition to the effects of that gas, this orb also releases a burst of caustic chemicals on impact. Each creature within a 15-foot radius of where the orb landed must make a DC 15 Dexterity saving throw, taking 4d4 acid damage on a failed save, or half as much damage on a successful one. If a creature fails this saving throw, the chemicals cling to it for 1 minute. At the end of each of its turns, the creature must succeed on a DC 15 Constitution saving throw or take 2d4 acid damage from the clinging chemicals. Any creature can take an action to remove the clinging chemicals with a successful DC 15 Wisdom (Medicine) check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ouroboros-amulet", + "fields": { + "name": "Ouroboros Amulet", + "desc": "Carved in the likeness of a serpent swallowing its own tail, this circular jade amulet is frequently worn by serpentfolk mystics and the worshippers of dark and forgotten gods. While wearing this amulet, you have advantage on saving throws against being charmed. In addition, you can use an action to cast the suggestion spell (save DC 13). The amulet can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_pact-paper", + "fields": { + "name": "Pact Paper", + "desc": "This smooth paper is like vellum but is prepared from dozens of scales cast off by a Pact Drake (see Creature Codex). A contract can be inked on this paper, and the paper limns all falsehoods on it with a fiery glow. A command word clears the paper, allowing for several drafts. Another command word locks the contract in place and leaves space for signatures. Creatures signing the contract are afterward bound by the contract with all other signatories alerted when one of the signatories breaks the contract. The creature breaking the contract must succeed on a DC 15 Charisma saving throw or become blinded, deafened, and stunned for 1d6 minutes. A creature can repeat the saving throw at the end of each of minute, ending the conditions on itself on a success. After the conditions end, the creature has disadvantage on saving throws until it finishes a long rest. Once a contract has been locked in place and signed, the paper can't be cleared. If the contract has a duration or stipulation for its end, the pact paper is destroyed when the contract ends, releasing all signatories from any further obligations and immediately ending any effects on them.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_padded-armor-of-the-leaf", + "fields": { + "name": "Padded Armor of the Leaf", + "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_padded-armor-of-warding-1", + "fields": { + "name": "Padded Armor of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_padded-armor-of-warding-2", + "fields": { + "name": "Padded Armor of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_padded-armor-of-warding-3", + "fields": { + "name": "Padded Armor of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_parasol-of-temperate-weather", + "fields": { + "name": "Parasol of Temperate Weather", + "desc": "This fine, cloth-wrapped 2-foot-long pole unfolds into a parasol with a diameter of 3 feet, which is large enough to cover one Medium or smaller creature. While traveling under the parasol, you ignore the drawbacks of traveling in hot weather or a hot environment. Though it protects you from the sun's heat in the desert or geothermal heat in deep caverns, the parasol doesn't protect you from damage caused by super-heated environments or creatures, such as lava or an azer's Heated Body trait, or magic that deals fire damage, such as the fire bolt spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_pavilion-of-dreams", + "fields": { + "name": "Pavilion of Dreams", + "desc": "This foot-long box is 6 inches wide and 6 inches deep. With 1 minute of work, the box's poles and multicolored silks can be unfolded into a pavilion expansive enough to sleep eight Medium or smaller creatures comfortably. The pavilion can stand in winds of up to 60 miles per hour without suffering damage or collapsing, and its interior remains comfortable and dry no matter the weather conditions or temperature outside. Creatures who sleep within the pavilion are immune to spells and other magical effects that would disrupt their sleep or negatively affect their dreams, such as the monstrous messenger version of the dream spell or a night hag's Nightmare Haunting. Creatures who take a long rest in the pavilion, and who sleep for at least half that time, have shared dreams of future events. Though unclear upon waking, these premonitions sit in the backs of the creatures' minds for the next 24 hours. Before the duration ends, a creature can call on the premonitions, expending them and immediately gaining one of the following benefits.\n- If you are surprised during combat, you can choose instead to not be surprised.\n- If you are not surprised at the beginning of combat, you have advantage on the initiative roll.\n- You have advantage on a single attack roll, ability check, or saving throw.\n- If you are adjacent to a creature that is attacked, you can use a reaction to interpose yourself between the creature and the attack. You become the new target of the attack.\n- When in combat, you can use a reaction to distract an enemy within 30 feet of you that attacks an ally you can see. If you do so, the enemy has disadvantage on the attack roll.\n- When an enemy uses the Disengage action, you can use a reaction to move up to your speed toward that enemy. Once used, the pavilion can't be used again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_pearl-of-diving", + "fields": { + "name": "Pearl of Diving", + "desc": "This white pearl shines iridescently in almost any light. While underwater and grasping the pearl, you have resistance to cold damage and to bludgeoning damage from nonmagical attacks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_periapt-of-eldritch-knowledge", + "fields": { + "name": "Periapt of Eldritch Knowledge", + "desc": "This pendant consists of a hollow metal cylinder on a fine, silver chain and is capable of holding one scroll. When you put a spell scroll in the pendant, it is added to your list of known or prepared spells, but you must still expend a spell slot to cast it. If the spell has more powerful effects when cast at a higher level, you can expend a spell slot of a higher level to cast it. If you have metamagic options, you can apply any metamagic option you know to the spell, expending sorcery points as normal. When you cast the spell, the spell scroll isn't consumed. If the spell on the spell scroll isn't on your class's spell list, you can't cast it unless it is half the level of the highest spell level you can cast (minimum level 1). The pendant can hold only one scroll at a time, and you can remove or replace the spell scroll in the pendant as an action. When you remove or replace the spell scroll, you don't immediately regain spell slots expended on the scroll's spell. You regain expended spell slots as normal for your class.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_periapt-of-proof-against-lies", + "fields": { + "name": "Periapt of Proof Against Lies", + "desc": "A pendant fashioned from the claw or horn of a Pact Drake (see Creature Codex) is affixed to a thin gold chain. While you wear it, you know if you hear a lie, but this doesn't apply to evasive statements that remain within the boundaries of the truth. If you lie while wearing this pendant, you become poisoned for 10 minutes.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_pestilent-spear", + "fields": { + "name": "Pestilent Spear", + "desc": "The head of this spear is deadly sharp, despite the rust and slimy residue on it that always accumulate no matter how well it is cleaned. When you hit a creature with this magic weapon, it must succeed on a DC 13 Constitution saving throw or contract the sewer plague disease.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_phase-mirror", + "fields": { + "name": "Phase Mirror", + "desc": "Unlike other magic items, multiple creatures can attune to the phase mirror by touching it as part of the same short rest. A creature remains attuned to the mirror as long as it is on the same plane of existence as the mirror or until it chooses to end its attunement to the mirror during a short rest. Phase mirrors look almost identical to standard mirrors, but their surfaces are slightly clouded. These mirrors are found in a variety of sizes, from handheld to massive disks. The larger the mirror, the more power it can take in, and consequently, the more creatures it can affect. When it is created, a mirror is connected to a specific plane. The mirror draws in starlight and uses that energy to move between its current plane and its connected plane. While holding or touching a fully charged mirror, an attuned creature can use an action to speak the command word and activate the mirror. When activated, the mirror transports all creatures attuned to it to the mirror's connected plane or back to the Material Plane at a destination of the activating creature's choice. This effect works like the plane shift spell, except it transports only attuned creatures, regardless of their distance from each other, and the destination must be on the Material Plane or the mirror's connected plane. If the mirror is broken, its magic ends, and each attuned creature is trapped in whatever plane it occupies when the mirror breaks. Once activated, the mirror stays active for 24 hours and any attuned creature can use an action to transport all attuned creatures back and forth between the two planes. After these 24 hours have passed, the power drains from the mirror, and it can't be activated again until it is recharged. Each phase mirror has a different recharge time and limit to the number of creatures that can be attuned to it, depending on the mirror's size.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_phidjetz-spinner", + "fields": { + "name": "Phidjetz Spinner", + "desc": "This dart was crafted by the monk Phidjetz, a martial recluse obsessed with dragons. The spinner consists of a golden central disk with four metal dragon heads protruding symmetrically from its center point: one red, one white, one blue and one black. As an action, you can spin the disk using the pinch grip in its center. You choose a single target within 30 feet and make a ranged attack roll. The spinner then flies at the chosen target. Once airborne, each dragon head emits a blast of elemental energy appropriate to its type. When you hit a creature, determine which dragon head affects it by rolling a d4 on the following chart. | d4 | Effect |\n| --- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 1 | Red. The target takes 1d6 fire damage and combustible materials on the target ignite, doing 1d4 fire damage each turn until it is put out. |\n| 2 | White. The target takes 1d6 cold damage and is restrained until the start of your next turn. |\n| 3 | Blue. The target takes 1d6 lightning damage and is paralyzed until the start of your next turn. |\n| 4 | Black. The target takes 1d6 acid damage and is poisoned until the start of your next turn. | After the attack, the spinner flies up to 60 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_philter-of-luck", + "fields": { + "name": "Philter of Luck", + "desc": "When you drink this vibrant green, effervescent potion, you gain a finite amount of good fortune. Roll a d3 to determine where your fortune falls: ability checks (1), saving throws (2), or attack rolls (3). When you make a roll associated with your fortune, you can choose to tap into your good fortune and reroll the d20. This effect ends after you tap into your good fortune or when 1 hour has passed. | d3 | Use fortune for |\n| --- | --------------- |\n| 1 | ability checks |\n| 2 | saving throws |\n| 3 | attack rolls |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_phoenix-ember", + "fields": { + "name": "Phoenix Ember", + "desc": "This egg-shaped red and black stone is hot to the touch. An ancient, fossilized phoenix egg, the stone holds the burning essence of life and rebirth. While you are carrying the stone, you have resistance to fire damage. Fiery Rebirth. If you drop to 0 hit points while carrying the stone, you can drop to 1 hit point instead. If you do, a wave of flame bursts out from you, filling the area within 20 feet of you. Each of your enemies in the area must make a DC 17 Dexterity saving throw, taking 8d6 fire damage on a failed save, or half as much damage on a successful one. Once used, this property can’t be used again until the next dawn, and a small, burning crack appears in the egg’s surface. Spells. The stone has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: revivify (1 charge), raise dead (2 charges), or resurrection (3 charges, the spell functions as long as some bit of the target’s body remains, even just ashes or dust). If you expend the last charge, roll a d20. On a 1, the stone shatters into searing fragments, and a firebird (see Tome of Beasts) arises from the ashes. On any other roll, the stone regains 1d3 charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_pick-of-ice-breaking", + "fields": { + "name": "Pick of Ice Breaking", + "desc": "The metal head of this war pick is covered in tiny arcane runes. You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the war pick to attack a construct, elemental, fey, or other creature made almost entirely of ice or snow. When you roll a 20 on an attack roll made with this weapon against such a creature, the target takes an extra 2d8 piercing damage. When you hit an object made of ice or snow with this weapon, the object doesn't have a damage threshold when determining the damage you deal to it with this weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_pipes-of-madness", + "fields": { + "name": "Pipes of Madness", + "desc": "You must be proficient with wind instruments to use these strange, pale ivory pipes. They have 5 charges. You can use an action to play them and expend 1 charge to emit a weird strain of alien music that is audible up to 600 feet away. Choose up to three creatures within 60 feet of you that can hear you play. Each target must succeed on a DC 15 Wisdom saving throw or be affected as if you had cast the confusion spell on it. The pipes regain 1d4 + 1 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_pistol-of-the-umbral-court", + "fields": { + "name": "Pistol of the Umbral Court", + "desc": "This hand crossbow is made from coal-colored wood. Its limb is made from cold steel and boasts engravings of sharp teeth. The barrel is magically oiled and smells faintly of ash. The grip is made from rough leather. You gain a +2 bonus on attack and damage rolls made with this magic weapon. When you hit with an attack with this weapon, you can force the target of your attack to succeed on a DC 15 Strength saving throw or be pushed 5 feet away from you. The target takes damage, as normal, whether it was pushed away or not. As a bonus action, you can increase the distance creatures are pushed to 20 feet for 1 minute. If the creature strikes a solid object before the movement is complete, it takes 1d6 bludgeoning damage for every 10 feet traveled. Once used, this property of the crossbow can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_plate-of-warding-1", + "fields": { + "name": "Plate of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_plate-of-warding-2", + "fields": { + "name": "Plate of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_plate-of-warding-3", + "fields": { + "name": "Plate of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_plumb-of-the-elements", + "fields": { + "name": "Plumb of the Elements", + "desc": "This four-faceted lead weight is hung on a long leather strip, which can be wound around the haft or handle of any melee weapon. You can remove the plumb and transfer it to another weapon whenever you wish. Weapons with the plumb attached to it deal additional force damage equal to your proficiency bonus (up to a maximum of 3). As an action, you can activate the plumb to change this additional damage type to fire, cold, lightning, or back to force.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_plunderers-sea-chest", + "fields": { + "name": "Plunderer's Sea Chest", + "desc": "This oak chest, measuring 3 feet by 5 feet by 3 feet, is secured with iron bands, which depict naval combat and scenes of piracy. The chest opens into an extradimensional space that can hold up to 3,500 cubic feet or 15,000 pounds of material. The chest always weighs 200 pounds, regardless of its contents. Placing an item in the sea chest follows the normal rules for interacting with objects. Retrieving an item from the chest requires you to use an action. When you open the chest to access a specific item, that item is always magically on top. If the chest is destroyed, its contents are lost forever, though an artifact that was inside always turns up again, somewhere. If a bag of holding, portable hole, or similar object is placed within the chest, that item and the contents of the chest are immediately destroyed, and the magic of the chest is disrupted for one day, after which the chest resumes functioning as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_pocket-oasis", + "fields": { + "name": "Pocket Oasis", + "desc": "When you unfold and throw this 5-foot by 5-foot square of black cloth into the air as an action, it creates a portal to an oasis hidden within an extra-dimensional space. A pool of shallow, fresh water fills the center of the oasis, and bountiful fruit and nut trees grow around the pool. The fruits and nuts from the trees provide enough nourishment for up to 10 Medium creatures. The air in the oasis is pure, cool, and even a little crisp, and the environment is free from harmful effects. When creatures enter the extra-dimensional space, they are protected from effects and creatures outside the oasis as if they were in the space created by a rope trick spell, and a vine dangles from the opening in place of a rope, allowing access to the oasis. The effect lasts for 24 hours or until all the creatures leave the extra-dimensional oasis, whichever occurs first. Any creatures still inside the oasis at the end of 24 hours are harmlessly ejected. Once used, the pocket oasis can't be used again for 24 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_pocket-spark", + "fields": { + "name": "Pocket Spark", + "desc": "What looks like a simple snuff box contains a magical, glowing ember. Though warm to the touch, the ember can be handled without damage. It can be used to ignite flammable materials quickly. Using it to light a torch, lantern, or anything else with abundant, exposed fuel takes a bonus action. Lighting any other fire takes an action. The ember is consumed when used. If the ember is consumed, the box creates a new ember at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_poison-strand", + "fields": { + "name": "Poison Strand", + "desc": "When you hit with an attack using this magic whip, the target takes an extra 2d4 poison damage. If you hold one end of the whip and use an action to speak its command word, the other end magically extends and darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 17 Dexterity saving throw or become restrained. While restrained, the target takes 2d4 poison damage at the start of each of its turns, and you can use an action to pull the target up to 20 feet toward you. If you would move the target into damaging terrain, such as lava or a pit, it can make a DC 17 Strength saving throw. On a success, the target isn't pulled toward you. You can't use the whip to make attacks while it is restraining a target, and if you release your end of the whip, the target is no longer restrained. The restrained target can use an action to make a DC 17 Strength (Athletics) or Dexterity (Acrobatics) check (target's choice). On a success, the target is no longer restrained by the whip. When the whip has restrained creatures for a total of 1 minute, you can't restrain a creature with the whip again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potent-cure-all", + "fields": { + "name": "Potent Cure-All", + "desc": "The milky liquid in this bottle shimmers when agitated, as small, glittering particles swirl within it. When you drink this potion, it reduces your exhaustion level by one, removes any reduction to one of your ability scores, removes the blinded, deafened, paralyzed, and poisoned conditions, and cures you of any diseases currently afflicting you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-air-breathing", + "fields": { + "name": "Potion of Air Breathing", + "desc": "This potion's pale blue fluid smells like salty air, and a seagull's feather floats in it. You can breathe air for 1 hour after drinking this potion. If you could already breathe air, this potion has no effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-bad-taste", + "fields": { + "name": "Potion of Bad Taste", + "desc": "This brown, sludgy potion tastes extremely foul. When you drink this potion, the taste of your flesh is altered to be unpalatable for 1 hour. During this time, if a creature hits you with a bite attack, it must succeed on a DC 10 Constitution saving throw or spend its next action gagging and retching. A creature with an Intelligence of 4 or lower avoids biting you again unless compelled or commanded by an outside force or if you attack it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-bouncing", + "fields": { + "name": "Potion of Bouncing", + "desc": "A small, red sphere bobs up and down in the clear, effervescent liquid inside this bottle but disappears when the bottle is opened. When you drink this potion, your body becomes rubbery, and you are immune to falling damage for 1 hour. If you fall at least 10 feet, your body bounces back the same distance. As a reaction while falling, you can angle your fall and position your legs to redirect this distance. For example, if you fall 60 feet, you can redirect your bounce to propel you 30 feet up and 30 feet forward from the position where you landed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-buoyancy", + "fields": { + "name": "Potion of Buoyancy", + "desc": "When you drink this clear, effervescent liquid, your body becomes unnaturally buoyant for 1 hour. When you are immersed in water or other liquids, you rise to the surface (at a rate of up to 30 feet per round) to float and bob there. You have advantage on Strength (Athletics) checks made to swim or stay afloat in rough water, and you automatically succeed on such checks in calm waters.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-dire-cleansing", + "fields": { + "name": "Potion of Dire Cleansing", + "desc": "For 1 hour after drinking this potion, you have resistance to poison damage, and you have advantage on saving throws against being blinded, deafened, paralyzed, and poisoned. In addition, if you are poisoned, this potion neutralizes the poison. Known for its powerful, somewhat burning smell, this potion is difficult to drink, requiring a successful DC 13 Constitution saving throw to drink it. On a failure, you are poisoned for 10 minutes and don't gain the benefits of the potion.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-ebbing-strength", + "fields": { + "name": "Potion of Ebbing Strength", + "desc": "When you drink this potion, your Strength score changes to 25 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score. The recipe for this potion is flawed and infused with dangerous Void energies. When you drink this potion, you are also poisoned. While poisoned, you take 2d4 poison damage at the end of each minute. If you are reduced to 0 hit points while poisoned, you have disadvantage on death saving throws. This bubbling, pale blue potion is commonly used by the derro and is almost always paired with a Potion of Dire Cleansing or Holy Verdant Bat Droppings (see page 147). Warriors who use this potion without a method of removing the poison don't intend to return home from battle.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-effulgence", + "fields": { + "name": "Potion of Effulgence", + "desc": "When you drink this potion, your skin glows with radiance, and you are filled with joy and bliss for 1 minute. You shed bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight. While glowing, you are blinded and have disadvantage on Dexterity (Stealth) checks to hide. If a creature with the Sunlight Sensitivity trait starts its turn in the bright light you shed, it takes 2d4 radiant damage. This potion's golden liquid sparkles with motes of sunlight.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-empowering-truth", + "fields": { + "name": "Potion of Empowering Truth", + "desc": "A withered snake's tongue floats in the shimmering gold liquid within this crystalline vial. When you drink this potion, you regain one expended spell slot or one expended use of a class feature, such as Divine Sense, Rage, Wild Shape, or other feature with limited uses. Until you finish a long rest, you can't speak a deliberate lie. You are aware of this effect after drinking the potion. Your words can be evasive, as long as they remain within the boundaries of the truth.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-freezing-fog", + "fields": { + "name": "Potion of Freezing Fog", + "desc": "After drinking this potion, you can use an action to exhale a cloud of icy fog in a 20-foot cube originating from you. The cloud spreads around corners, and its area is heavily obscured. It lasts for 1 minute or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. When a creature enters the cloud for the first time on a turn or starts its turn there, that creature must succeed on a DC 13 Constitution saving throw or take 2d4 cold damage. The effects of this potion end after you have exhaled one fog cloud or 1 hour has passed. This potion has a gray, cloudy appearance and swirls vigorously when shaken.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-malleability", + "fields": { + "name": "Potion of Malleability", + "desc": "The glass bottle holding this thick, red liquid is strangely pliable, and compresses in your hand under the slightest pressure while it still holds the magical liquid. When you drink this potion, your body becomes extremely flexible and adaptable to pressure. For 1 hour, you have resistance to bludgeoning damage, can squeeze through a space large enough for a creature two sizes smaller than you, and have advantage on Dexterity (Acrobatics) checks made to escape a grapple.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-sand-form", + "fields": { + "name": "Potion of Sand Form", + "desc": "This potion's container holds a gritty liquid that moves and pours like water filled with fine particles of sand. When you drink this potion, you gain the effect of the gaseous form spell for 1 hour (no concentration required) or until you end the effect as a bonus action. While in this gaseous form, your appearance is that of a vortex of spiraling sand instead of a misty cloud. In addition, you have advantage on Dexterity (Stealth) checks while in a sandy environment, and, while motionless in a sandy environment, you are indistinguishable from an ordinary swirl of sand.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-skating", + "fields": { + "name": "Potion of Skating", + "desc": "For 1 hour after you drink this potion, you can move across icy surfaces without needing to make an ability check, and difficult terrain composed of ice or snow doesn't cost you extra movement. This sparkling blue liquid contains tiny snowflakes that disappear when shaken.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-transparency", + "fields": { + "name": "Potion of Transparency", + "desc": "The liquid in this vial is clear like water, and it gives off a slight iridescent sheen when shaken or swirled. When you drink this potion, you and everything you are wearing and carrying turn transparent, but not completely invisible, for 10 minutes. During this time, you have advantage on Dexterity (Stealth) checks, and ranged attacks against you have disadvantage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_potion-of-worg-form", + "fields": { + "name": "Potion of Worg Form", + "desc": "Small flecks of brown hair are suspended in this clear, syrupy liquid. When you drink this potion, you transform into a worg for 1 hour. This works like the polymorph spell, but you retain your Intelligence, Wisdom, and Charisma scores. While in worg form, you can speak normally, and you can cast spells that have only verbal components. This transformation doesn't give you knowledge of the Goblin or Worg languages, and you are able to speak and understand those languages only if you knew them before the transformation.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_prayer-mat", + "fields": { + "name": "Prayer Mat", + "desc": "This small rug is woven with intricate patterns that depict religious iconography. When you attune to it, the iconography and the mat's colors change to the iconography and colors most appropriate for your deity. If you spend 10 minutes praying to your deity while kneeling on this mat, you regain one expended use of Channel Divinity. The mat can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_primal-doom-of-anguish", + "fields": { + "name": "Primal Doom of Anguish", + "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_primal-doom-of-pain", + "fields": { + "name": "Primal Doom of Pain", + "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_primal-doom-of-rage", + "fields": { + "name": "Primal Doom of Rage", + "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_primordial-scale", + "fields": { + "name": "Primordial Scale", + "desc": "This armor is fashioned from the scales of a great, subterranean beast shunned by the gods. While wearing it, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the armor increases its range by 60 feet, but you have disadvantage on attack rolls and Wisdom (Perception) checks that rely on sight when you are in sunlight. In addition, while wearing this armor, you have advantage on saving throws against spells cast by agents of the gods, such as celestials, fiends, clerics, and cultists.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_prospecting-compass", + "fields": { + "name": "Prospecting Compass", + "desc": "This battered, old compass has engravings of lumps of ore and natural crystalline minerals. While holding this compass, you can use an action to name a type of metal or stone. The compass points to the nearest naturally occurring source of that metal or stone for 1 hour or until you name a different type of metal or stone. The compass can point to cut gemstones, but it can't point to processed metals, such as iron swords or gold coins. The compass can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_quick-change-mirror", + "fields": { + "name": "Quick-Change Mirror", + "desc": "This utilitarian, rectangular standing mirror measures 4 feet tall and 2 feet wide. Despite its plain appearance, the mirror allows creatures to quickly change outfits. While in front of the mirror, you can use an action to speak the mirror's command word to be clothed in an outfit stored in the mirror. The outfit you are currently wearing is stored in the mirror or falls to the floor at your feet (your choice). The mirror can hold up to 12 outfits. An outfit must be a set of clothing or armor. An outfit can include other wearable items, such as a belt with pouches, a backpack, headwear, or footwear, but it can't include weapons or other carried items unless the weapon or carried item is sheathed, stored in a backpack, pocket, or pouch, or similarly attached to the outfit. The extent of how many attachments an outfit can have before it is considered more than one outfit or it is no longer considered an outfit is at the GM's discretion. To store an outfit you are wearing in the mirror, you must spend at least 1 minute rotating slowly in front of the mirror and speak the mirror's second command word. You can use a bonus action to speak a third command word to cause the mirror to display the outfits it contains. When found, the mirror contains 1d10 + 2 outfits. If the mirror is destroyed, all outfits it contains fall in a heap at its base.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_quill-of-scribing", + "fields": { + "name": "Quill of Scribing", + "desc": "This quill is fashioned from the feather of some exotic beast, often a giant eagle, griffon, or hippogriff. When you take an action to speak the command word, the quill animates, transcribing each word spoken by you, and up to three other creatures you designate, onto whatever material is placed before it until the command word is spoken again, or it has scribed 250 words. Once used, the quill can't be used again for 8 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_quilted-bridge", + "fields": { + "name": "Quilted Bridge", + "desc": "A practiced hand sewed together a collection of cloth remnants from magical garb to make this colorful and warm blanket. You can use an action to unfold it and pour out three drops of wine in tribute to its maker. If you do so, the blanket becomes a 5-foot wide, 10-foot-long bridge as sturdy as steel. You can fold the bridge back up as an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_radiance-bomb", + "fields": { + "name": "Radiance Bomb", + "desc": "This small apple-sized globule is made from a highly reflective silver material and has a single, golden rune etched on it. Typically, 1d4 + 4 radiance bombs are found together. You can use an action to throw the globule up to 60 feet. The globule explodes on impact and is destroyed. Each creature within a 10-foot radius of where the globule landed must make a DC 13 Dexterity saving throw. On a failure, a creature takes 3d6 radiant damage and is blinded for 1 minute. On a success, a creature takes half the damage and isn't blinded. A blinded creature can make a DC 13 Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_radiant-bracers", + "fields": { + "name": "Radiant Bracers", + "desc": "These bronze bracers are engraved with the image of an ankh with outstretched wings. While wearing these bracers, you have resistance to necrotic damage, and you can use an action to speak the command word while crossing the bracers over your chest. If you do so, each undead that can see you within 30 feet of you must make a Wisdom saving throw. The DC is equal to 8 + your proficiency bonus + your Wisdom modifier. On a failure, an undead creature is turned for 1 minute or until it takes any damage. This feature works like the cleric's Turn Undead class feature, except it can't be used to destroy undead. The bracers can't be used to turn undead again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_radiant-libram", + "fields": { + "name": "Radiant Libram", + "desc": "The gilded pages of this holy tome are bound between thin plates of moonstone crystal that emit a gentle incandescence. Aureate celestial runes adorn nearly every inch of its blessed surface. In addition, while you are attuned to the book, the spells written in it count as prepared spells and don't count against the number of spells you can prepare each day. You don't gain additional spell slots from this feature. The following spells are written in the book: beacon of hope, bless, calm emotions, commune, cure wounds, daylight, detect evil and good, divine favor, flame strike, gentle repose, guidance, guiding bolt, heroism, lesser restoration, light, produce flame, protection from evil and good, sacred flame, sanctuary, and spare the dying. A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action. Once used, this property of the book can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rain-of-chaos", + "fields": { + "name": "Rain of Chaos", + "desc": "This magic weapon imbues arrows fired from it with random energies. When you hit with an attack using this magic bow, the target takes an extra 1d6 damage. Roll a 1d8. The number rolled determines the damage type of the extra damage. | d8 | Damage Type |\n| --- | ----------- |\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Lightning |\n| 5 | Necrotic |\n| 6 | Poison |\n| 7 | Radiant |\n| 8 | Thunder |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rainbow-extract", + "fields": { + "name": "Rainbow Extract", + "desc": "This thin, oily liquid shimmers with the colors of the spectrum. For 1 hour after drinking this potion, you can use an action to change the color of your hair, skin, eyes, or all three to any color or mixture of colors in any hue, pattern, or saturation you choose. You can change the colors as often as you want for the duration, but the color changes disappear at the end of the duration.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rapier-of-fallen-saints", + "fields": { + "name": "Rapier of Fallen Saints", + "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ravagers-axe", + "fields": { + "name": "Ravager's Axe", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. Any attack with this axe that hits a structure or an object that isn't being worn or carried is a critical hit. When you roll a 20 on an attack roll made with this axe, the target takes an extra 1d10 cold damage and 1d10 necrotic damage as the axe briefly becomes a rift to the Void.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_recondite-shield", + "fields": { + "name": "Recondite Shield", + "desc": "While wearing this ring, you can use a bonus action to create a weightless, magic shield that shimmers with arcane energy. You must be proficient with shields to wield this semitranslucent shield, and you wield it in the same hand that wears the ring. The shield lasts for 1 hour or until you dismiss it (no action required). Once used, you can't use the ring in this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_recording-book", + "fields": { + "name": "Recording Book", + "desc": "This book, which hosts a dormant Bookkeeper (see Creature Codex), appears to be a journal filled with empty pages. You can use an action to place the open book on a surface and speak its command word to activate it. It remains active until you use an action to speak the command word again. The book records all things said within 60 feet of it. It can distinguish voices and notes those as it records. The book can hold up to 12 hours' worth of conversation. You can use an action to speak a second command word to remove up to 1 hour of recordings in the book, while a third command word removes all the book's recordings. Any creature, other than you or targets you designate, that peruses the book finds the pages blank.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_reef-splitter", + "fields": { + "name": "Reef Splitter", + "desc": "The head of this warhammer is constructed of undersea volcanic rock and etched with images of roaring flames and boiling water. You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon, the hammer erupts with magma, and the target takes an extra 4d6 fire damage. In addition, if the target is underwater, the water around it begins to boil with the heat of your blow, and each creature other than you within 5 feet of the target takes 2d6 fire damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_relocation-cable", + "fields": { + "name": "Relocation Cable", + "desc": "This 60-foot length of fine wire cable weighs 2 pounds. If you hold one end of the cable and use an action to speak its command word, the other end plunges into the ground, burrowing through dirt, sand, snow, mud, ice, and similar material to emerge from the ground at a destination you can see up to its maximum length away. The cable can't burrow through solid rock. On the turn it is activated, you can use a bonus action to magically travel from one end of the cable to the other, appearing in an unoccupied space within 5 feet of the other end. On subsequent turns, any creature in contact with one end of the cable can use an action to appear in an unoccupied space within 5 feet of the other end of it. A creature magically traveling from one end of the cable to the other doesn't provoke opportunity attacks. You can retract the cable by using a bonus action to speak the command word a second time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_resolute-bracer", + "fields": { + "name": "Resolute Bracer", + "desc": "This ornamental bracer features a reservoir sewn into its lining. As an action, you can fill the reservoir with a single potion or vial of liquid, such as a potion of healing or antitoxin. While attuned to this bracer, you can use a bonus action to speak the command word and absorb the liquid as if you had consumed it. Liquid stored in the bracer for longer than 8 hours evaporates.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_retribution-armor", + "fields": { + "name": "Retribution Armor", + "desc": "Etchings of flames adorn this breastplate, which is wrapped in chains of red gold, silver, and black iron. While wearing this armor, you gain a +1 bonus to AC. In addition, if a creature scores a critical hit against you, you have advantage on any attacks against that creature until the end of your next turn or until you score a critical hit against that creature. - You have resistance to necrotic damage, and you are immune to poison damage. - You can't be charmed or poisoned, and you don't suffer from exhaustion.\n- You have darkvision out to a range of 60 feet.\n- You have advantage on saving throws against effects that turn undead.\n- You can use an action to sense the direction of your killer. This works like the locate creature spell, except you can sense only the creature that killed you. You rise as an undead only if your death was caused with intent; accidental deaths or deaths from unintended consequences (such as dying from a disease unintentionally passed to you) don't activate this property of the armor. You exist in this deathly state for up to 1 week per Hit Die or until you exact revenge on your killer, at which time your body crumbles to ash and you finally die. You can be restored to life only by means of a true resurrection or wish spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_revenants-shawl", + "fields": { + "name": "Revenant's Shawl", + "desc": "This shawl is made of old raven feathers woven together with elk sinew and small bones. When you are reduced to 0 hit points while wearing the shawl, it explodes in a burst of freezing wind. Each creature within 10 feet of you must make a DC 13 Dexterity saving throw, taking 4d6 cold damage on a failed save, or half as much damage on a successful one. You then regain 4d6 hit points, and the shawl disintegrates into fine black powder.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rift-orb", + "fields": { + "name": "Rift Orb", + "desc": "This orb is a sphere of obsidian 3 inches in diameter. When you speak the command word in Void Speech, you can throw the sphere as an action to a point within 60 feet. When the sphere reaches the point you choose or if it strikes a solid object on the way, it immediately stops and generates a tiny rift into the Void. The area within 20 feet of the rift orb becomes difficult terrain, and gravity begins drawing everything in the affected area toward the rift. Each creature in the area at the start of its turn, or when it enters the area for the first time on a turn, must succeed on a DC 15 Strength saving throw or be pulled 10 feet toward the rift. A creature that touches the rift takes 4d10 necrotic damage. Unattended objects in the area are pulled 10 feet toward the rift at the start of your turn. Nonmagical objects pulled into the rift are destroyed. The rift orb functions for 1 minute, after which time it becomes inert. It can't be used again until the following midnight.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-mail-of-warding-1", + "fields": { + "name": "Ring Mail of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-mail-of-warding-2", + "fields": { + "name": "Ring Mail of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-mail-of-warding-3", + "fields": { + "name": "Ring Mail of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-arcane-adjustment", + "fields": { + "name": "Ring of Arcane Adjustment", + "desc": "This stylized silver ring is favored by spellcasters accustomed to fighting creatures capable of shrugging off most spells. The ring has 3 charges and regains 1d3 expended charges daily at dawn. When you cast a spell of 5th level or lower that has only one target and the target succeeds on the saving throw, you can use a reaction and expend 1 charge from the ring to change the spell's target to a new target within the spell's range. The new target is then affected by the spell, but the new target has advantage on the saving throw. You can't move the spell more than once this way, even if the new target succeeds on the saving throw. You can't move a spell that affects an area, that has multiple targets, that requires an attack roll, or that allows the target to make a saving throw to reduce, but not prevent, the effects of the spell, such as blight or feeblemind.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-bravado", + "fields": { + "name": "Ring of Bravado", + "desc": "This polished brass ring has 3 charges. While wearing the ring, you are inspired to daring acts that risk life and limb, especially if such acts would impress or intimidate others who witness them. When you choose a course of action that could result in serious harm or possible death (your GM has final say in if an action qualifies), you can expend 1 of the ring's charges to roll a d10 and add the number rolled to any d20 roll you make to achieve success or avoid damage, such as a Strength (Athletics) check to scale a sheer cliff and avoid falling or a Dexterity saving throw made to run through a hallway filled with swinging blades. The ring regains all expended charges daily at dawn. In addition, if you fail on a roll boosted by the ring, and you failed the roll by only 1, the ring regains 1 expended charge, as its magic recognizes a valiant effort.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-deceivers-warning", + "fields": { + "name": "Ring of Deceiver's Warning", + "desc": "This copper ring is set with a round stone of blue quartz. While you wear the ring, the stone's color changes to red if a shapechanger comes within 30 feet of you. For the purpose of this ring, “shapechanger” refers to any creature with the Shapechanger trait.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-dragons-discernment", + "fields": { + "name": "Ring of Dragon's Discernment", + "desc": "A large, orange cat's eye gem is held in the fittings of this ornate silver ring, looking as if it is grasped by scaled talons. While wearing this ring, your senses are sharpened. You have advantage on Intelligence (Investigation) and Wisdom (Perception) checks, and you can take the Search action as a bonus action. In addition, you are able to discern the value of any object made of precious metals or minerals or rare materials by handling it for 1 round.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-featherweight-weapons", + "fields": { + "name": "Ring of Featherweight Weapons", + "desc": "If you normally have disadvantage on attack rolls made with weapons with the Heavy property due to your size, you don't have disadvantage on those attack rolls while you wear this ring. This ring has no effect on you if you are Medium or larger or if you don't normally have disadvantage on attack rolls with heavy weapons.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-giant-mingling", + "fields": { + "name": "Ring of Giant Mingling", + "desc": "While wearing this ring, your size changes to match the size of those around you. If you are a Large creature and start your turn within 100 feet of four or more Medium creatures, this ring makes you Medium. Similarly, if you are a Medium creature and start your turn within 100 feet of four or more Large creatures, this ring makes you Large. These effects work like the effects of the enlarge/reduce spell, except they persist as long as you wear the ring and satisfy the conditions.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-hoarded-life", + "fields": { + "name": "Ring of Hoarded Life", + "desc": "This ring stores hit points sacrificed to it, holding them until the attuned wearer uses them. The ring can store up to 30 hit points at a time. When found, it contains 2d10 stored hit points. While wearing this ring, you can use an action to spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. Your hit point maximum is reduced by the total, and the ring stores the total, up to 30 hit points. This hit point maximum reduction can't be removed with the greater restoration spell or similar magic and lasts as long as hit points remain stored in the ring. You can't store hit points in the ring if you don't have blood. When hit points are stored in the ring, you can cause one of the following effects: - You can use a bonus action to remove stored hit points from the ring and regain that number of hit points.\n- You can use an action to remove stored hit points from the ring while touching the ring to a creature. If you do so, the creature regains hit points equal to the amount of hit points you removed from the ring.\n- When you are reduced to 0 hit points and are not killed outright, you can use a reaction to empty the ring of stored hit points and regain hit points equal to that amount. Hit Dice spent on this ring's features can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-imperious-command", + "fields": { + "name": "Ring of Imperious Command", + "desc": "Embossed in gold on this heavy iron ring is the image of a crown. The ring has 3 charges and regains 1d3 expended charges daily at dawn. While wearing this ring, you have advantage on Charisma (Intimidation) checks, and you can project your voice up to 300 feet with perfect clarity. In addition, you can use an action and expend 1 of the ring's charges to command a creature you can see within 30 feet of you to kneel before you. The target must make a DC 15 Charisma saving throw. On a failure, the target spends its next turn moving toward you by the shortest and most direct route then falls prone and ends its turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-lights-comfort", + "fields": { + "name": "Ring of Light's Comfort", + "desc": "A disc of white chalcedony sits within an encompassing band of black onyx, set into fittings on this pewter ring. While wearing this ring in dim light or darkness, you can use a bonus action to speak the ring's command word, causing it to shed bright light in a 30-foot radius and dim light for an additional 30 feet. The ring automatically sheds this light if you start your turn within 60 feet of an undead or lycanthrope. The light lasts until you use a bonus action to repeat the command word. In addition, you can't be charmed, frightened, or possessed by undead or lycanthropes.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-nights-solace", + "fields": { + "name": "Ring of Night's Solace", + "desc": "A disc of black onyx sits within an encompassing band of white chalcedony, set into fittings on this pewter ring. While wearing this ring in bright light, you are draped in a comforting cloak of shadow, protecting you from the harshest glare. If you have the Sunlight Sensitivity trait or a similar trait that causes you to have disadvantage on attack rolls or Wisdom (Perception) checks while in bright light or sunlight, you don't suffer those effects while wearing this ring. In addition, you have advantage on saving throws against being blinded.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-powerful-summons", + "fields": { + "name": "Ring of Powerful Summons", + "desc": "When you summon a creature with a conjuration spell while wearing this ring, the creature gains a +1 bonus to attack and damage rolls and 1d4 + 4 temporary hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-remembrance", + "fields": { + "name": "Ring of Remembrance", + "desc": "This ring is a sturdy piece of string, tied at the ends to form a circle. While wearing it, you can use an action to invoke its power by twisting it on your finger. If you do so, you have advantage on the next Intelligence check you make to recall information. The ring can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-sealing", + "fields": { + "name": "Ring of Sealing", + "desc": "This ring appears to be made of golden chain links. It has 3 charges and regains 1d3 expended charges daily at dawn. When you hit a creature with a melee attack while wearing this ring, you can use a bonus action and expend 1 of the ring's charges to cause mystical golden chains to spring from the ground and wrap around the creature. The target must make a DC 17 Wisdom saving throw. On a failure, the magical chains hold the target firmly in place, and it is restrained. The target can't move or be moved by any means. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. However, if the target fails three consecutive saving throws, the chains bind the target permanently. A successful dispel magic (DC 17) cast on the chains destroys them.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-shadows", + "fields": { + "name": "Ring of Shadows", + "desc": "While wearing this ebony ring in dim light or darkness, you have advantage on Dexterity (Stealth) checks. When you roll a 20 on a Dexterity (Stealth) check, the ring's magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-small-mercies", + "fields": { + "name": "Ring of Small Mercies", + "desc": "While wearing this plain, beaten pewter ring, you can use an action to cast the spare the dying spell from it at will.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-stored-vitality", + "fields": { + "name": "Ring of Stored Vitality", + "desc": "While you are attuned to and wearing this ring of polished, white chalcedony, you can feed some of your vitality into the ring to charge it. You can use an action to suffer 1 level of exhaustion. For each level of exhaustion you suffer, the ring regains 1 charge. The ring can store up to 3 charges. As the ring increases in charges, its color reddens, becoming a deep red when it has 3 charges. Your level of exhaustion can be reduced by normal means. If you already suffer from 3 or more levels of exhaustion, you can't suffer another level of exhaustion to restore a charge to the ring. While wearing the ring and suffering exhaustion, you can use an action to expend 1 or more charges from the ring to reduce your exhaustion level. Your exhaustion level is reduced by 1 for each charge you expend.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-the-dolphin", + "fields": { + "name": "Ring of the Dolphin", + "desc": "This gold ring bears a jade carving in the shape of a leaping dolphin. While wearing this ring, you have a swimming speed of 40 feet. In addition, you can hold your breath for twice as long while underwater.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-the-frog", + "fields": { + "name": "Ring of the Frog", + "desc": "A pale chrysoprase cut into the shape of a frog is the centerpiece of this tarnished copper ring. While wearing this ring, you have a swimming speed of 20 feet, and you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-the-frost-knight", + "fields": { + "name": "Ring of the Frost Knight", + "desc": "This white gold ring is covered in a thin sheet of ice and always feels cold to the touch. The ring has 3 charges and regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 charge to surround yourself in a suit of enchanted ice that resembles plate armor. For 1 hour, your AC can't be less than 16, regardless of what kind of armor you are wearing, and you have resistance to cold damage. The icy armor melts, ending the effect early, if you take 20 fire damage or more.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-the-groves-guardian", + "fields": { + "name": "Ring of the Grove's Guardian", + "desc": "This pale gold ring looks as though made of delicately braided vines wrapped around a small, rough obsidian stone. While wearing this ring, you have advantage on Wisdom (Perception) checks. You can use an action to speak the ring's command word to activate it and draw upon the vitality of the grove to which the ring is bound. You regain 2d10 hit points. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-the-jarl", + "fields": { + "name": "Ring of the Jarl", + "desc": "This thick band of hammered yellow gold is warm to the touch even in the coldest of climes. While you wear it, you have resistance to cold damage. If you are also wearing boots of the winterlands, you are immune to cold damage instead. Bolstering Shout. When you roll for initiative while wearing this ring, you can use a reaction to shout a war cry, bolstering your allies. Each friendly creature within 30 feet of you and that can hear you gains a +2 bonus on its initiative roll, and it has advantage on attack rolls for a number of rounds equal to your Charisma modifier (minimum of 1 round). Once used, this property of the ring can’t be used again until the next dawn. Wergild. While wearing this ring, you can use an action to create a nonmagical duplicate of the ring that is worth 100 gp. You can bestow this ring upon another as a gift. The ring can’t be used for common barter or trade, but it can be used for debts and payment of a warlike nature. You can give this ring to a subordinate warrior in your service or to someone to whom you owe a blood-debt, as a weregild in lieu of further fighting. You can create up to 3 of these rings each week. Rings that are not gifted within 24 hours of their creation vanish again.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-the-water-dancer", + "fields": { + "name": "Ring of the Water Dancer", + "desc": "This thin braided purple ring is fashioned from a single piece of coral. While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground. In addition, while walking atop any liquid, your movement speed increases by 10 feet and you gain a +1 bonus to your AC.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ring-of-ursa", + "fields": { + "name": "Ring of Ursa", + "desc": "This wooden ring is set with a strip of fossilized honey. While wearing this ring, you gain the following benefits: - Your Strength score increases by 2, to a maximum of 20.\n- You have advantage on Charisma (Persuasion) checks made to interact with bearfolk. In addition, while attuned to the ring, your hair grows thick and abundant. Your facial features grow more snout-like, and your teeth elongate. If you aren't a bearfolk, you gain the following benefits while wearing the ring:\n- You can now make a bite attack as an unarmed strike. When you hit with it, your bite deals piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. - You gain a powerful build and count as one size larger when determining your carrying capacity and the weight you can push, drag, or lift.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_river-token", + "fields": { + "name": "River Token", + "desc": "This small pebble measures 3/4 of an inch in diameter and weighs an ounce. The pebbles are often shaped like salmon, river clams, or iridescent river rocks. Typically, 1d4 + 4 river tokens are found together. The token gives off a distinct shine in sunlight and radiates a scent of fresh, roiling water. It is sturdy but crumbles easily if crushed. As an action, you can destroy the token by crushing it and sprinkling the remains into a river, calming the waters to a gentle current and soothing nearby water-dwelling creatures for 1 hour. Water-dwelling beasts in the river with an Intelligence of 3 or lower are soothed and indifferent toward passing humanoids for the duration. The token's magic soothes but doesn't fully suppress the hostilities of all other water-dwelling creatures. For the duration, each other water-dwelling creature must succeed on a DC 15 Wisdom saving throw to attack or take hostile actions toward passing humanoids. The token's soothing magic ends on a creature if that creature is attacked.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_riverine-blade", + "fields": { + "name": "Riverine Blade", + "desc": "The crossguard of this distinctive sword depicts a stylized Garroter Crab (see Tome of Beasts) with claws extended, and the pommel is set with a smooth, spherical, blue-black river rock. You gain a +2 bonus to attack and damage rolls made with this magic weapon. While on a boat or while standing in any depth of water, you have advantage on Dexterity checks and saving throws.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-blade-bending", + "fields": { + "name": "Rod of Blade Bending", + "desc": "This simple iron rod functions as a magic mace that grants a +1 bonus to attack and damage rolls made with it. Blade Bend. While holding the rod, you can use an action to activate it, creating a magical field around you for 10 minutes. When a creature attacks you with a melee weapon that deals piercing or slashing damage while the field is active, it must make a DC 15 Wisdom saving throw. On a failure, the creature’s attack misses. On a success, the creature’s attack hits you, but you have resistance to any piercing or slashing damage dealt by the attack as the weapon bends partially away from your body. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-bubbles", + "fields": { + "name": "Rod of Bubbles", + "desc": "This rod appears to be made of foamy bubbles, but it is completely solid to the touch. This rod has 3 charges. While holding it, you can use an action to expend 1 of its charges to conjure a bubble around a creature or object within 30 feet. If the target is a creature, it must make a DC 15 Strength saving throw. On a failed save, the target becomes trapped in a 10-foot sphere of water. A Huge or larger creature automatically succeeds on this saving throw. A creature trapped within the bubble is restrained unless it has a swimming speed and can't breathe unless it can breathe water. If the target is an object, it becomes soaked in water, any fire effects are extinguished, and any acid effects are negated. The bubble floats in the exact spot where it was conjured for up to 1 minute, unless blown by a strong wind or moved by water. The bubble has 50 hit points, AC 8, immunity to acid damage and vulnerability to piercing damage. The inside of the bubble also has resistance to all damage except piercing damage. The bubble disappears after 1 minute or when it is reduced to 0 hit points. When not in use, this rod can be commanded to take liquid form and be stored in a small vial. The rod regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-conveyance", + "fields": { + "name": "Rod of Conveyance", + "desc": "The top of this rod is capped with a bronze horse head, and its foot is decorated with a horsehair plume. By placing the rod between your legs, you can use an action to temporarily transform the rod into a horse-like construct. This works like the phantom steed spell, except you can use a bonus action to end the effect early to use the rod again at a later time. Deduct the time the horse was active in increments of 1 minute from the spell's 1-hour duration. When the rod has been a horse for a total of 1 hour, the magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-deflection", + "fields": { + "name": "Rod of Deflection", + "desc": "This thin, flexible rod is made of braided silver and brass wire and topped with a spoon-like cup. While holding the rod, you can use a reaction to deflect a ranged weapon attack against you. You can simply cause the attack to miss, or you can attempt to redirect the attack against another target, even your attacker. The attack must have enough remaining range to reach the new target. If the additional distance between yourself and the new target is within the attack's long range, it is made at disadvantage as normal, using the original attack roll as the first roll. The rod has 3 charges. You can expend a charge as a reaction to redirect a ranged spell attack as if it were a ranged weapon attack, up to the spell's maximum range. The rod regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-ghastly-might", + "fields": { + "name": "Rod of Ghastly Might", + "desc": "The knobbed head of this tarnished silver rod resembles the top half of a jawless, syphilitic skull, and it functions as a magic mace that grants a +2 bonus to attack and damage rolls made with it. The rod has properties associated with five different buttons that are set erratically along the haft. It has three other properties as well, detailed below. If you press **button 1**, the rod's head erupts in a fiery nimbus of abyssal energy that sheds dim light in a 5-foot radius. While the rod is ablaze, it deals an extra 1d6 fire damage and 1d6 necrotic damage to any target it hits. If you press **button 2**, the rod's head becomes enveloped in a black aura of enervating energy. When you hit a target with the rod while it is enveloped in this energy, the target must succeed on a DC 17 Constitution saving throw or deal only half damage with weapon attacks that use Strength until the end of its next turn. If you press **button 3**, a 2-foot blade springs from the tip of the rod's handle as the handle lengthens into a 5-foot haft, transforming the rod into a magic glaive that grants a +2 bonus to attack and damage rolls made with it. If you press **button 4**, a 3-pronged, bladed grappling hook affixed to a long chain springs from the tip of the rod's handle. The bladed grappling hook counts as a magic sickle with reach that grants a +2 bonus to attack and damage rolls made with it. When you hit a target with the bladed grappling hook, the target must succeed on an opposed Strength check or fall prone. If you press **button 5**, the rod assumes or remains in its normal form and you can extinguish all nonmagical flames within 30 feet of you. Turning Defiance. While holding the rod, you and any undead allies within 30 feet of you have advantage on saving throws against effects that turn undead. Contagion. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target is afflicted with a disease. This works like the contagion spell. Once used, this property can’t be used again until the next dusk. Create Specter. As an action, you can target a humanoid within 10 feet of you that was killed by the rod or one of its effects and has been dead for no longer than 1 minute. The target’s spirit rises as a specter under your control in the space of its corpse or in the nearest unoccupied space. You can have no more than one specter under your control at one time. Once used, this property can’t be used again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-hellish-grounding", + "fields": { + "name": "Rod of Hellish Grounding", + "desc": "This curious jade rod is tipped with a knob of crimson crystal that glows and shimmers with eldritch phosphorescence. While holding or carrying the rod, you have darkvision out to a range of 30 feet, and you have advantage on Dexterity (Acrobatics) checks. Hellish Desiccation. While holding this rod, you can use an action to fire a crimson ray at an object or creature made of metal that you can see within 60 feet of you. The ray forms a 5-foot wide line between you and the target. Each creature in that line that isn’t a construct or an undead must make a DC 15 Dexterity saving throw, taking 8d6 force damage on a failed save, or half as much damage on a successful one. Creatures and objects made of metal are unaffected. If this damage reduces a creature to 0 hit points, it is desiccated. A desiccated creature is reduced to a withered corpse, but everything it is wearing and carrying is unaffected. The creature can be restored to life only by means of a true resurrection or a wish spell. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-icicles", + "fields": { + "name": "Rod of Icicles", + "desc": "This white crystalline rod is shaped like an icicle. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges to attack one creature you can see within 60 feet of you. The rod launches an icicle at the target and makes its attack roll with a +7 bonus. On a hit, the target takes 2d6 piercing damage and 2d6 cold damage. On a critical hit, the target is also paralyzed until the end of its next turn as it momentarily freezes. If you take fire damage while holding this rod, you become immune to fire damage for 1 minute, and the rod loses 2 charges. If the rod has only 1 charge remaining when you take fire damage, you become immune to fire damage, as normal, but the rod melts into a puddle of water and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-reformation", + "fields": { + "name": "Rod of Reformation", + "desc": "This rod of polished white oak is wrapped in a knotted cord with three iron rings binding each end. If you are holding the rod and fail a saving throw against a transmutation spell or other effect that would change your body or remove or alter parts of you, you can choose to succeed instead. The rod can’t be used this way again until the next dawn. The rod has 5 charges for the following properties. It regains 1d4 + 1 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rings fall off, the cord unknots, and the entire rod slowly falls to pieces and is destroyed. Cure Transformation. While holding the rod, you can use an action to expend 1 charge while touching a creature that has been affected by a transmutation spell or other effect that changed its physical form, such as the polymorph spell or a medusa's Petrifying Gaze. The rod restores the creature to its original form. If the creature is willingly transformed, such as a druid using Wild Shape, you must make a melee weapon attack roll, using the rod. You are proficient with the rod if you are proficient with clubs. On a hit, you can expend 1 of the rod’s charges to force the target to make a DC 15 Constitution saving throw. On a failure, the target reverts to its original form. Mend Form. While holding the rod, you can use an action to expend 2 charges to reattach a creature's severed limb or body part. The limb must be held in place while you use the rod, and the process takes 1 minute to complete. You can’t reattach limbs or other body parts to dead creatures. If the limb is lost, you can spend 4 charges instead to regenerate the missing piece, which takes 2 minutes to complete. Reconstruct Form. While holding the rod, you can use an action to expend 5 charges to reconstruct the form of a creature or object that has been disintegrated, burned to ash, or similarly destroyed. An item is completely restored to its original state. A creature’s body is fully restored to the state it was in before it was destroyed. The creature isn’t restored to life, but this reconstruction of its form allows the creature to be restored to life by spells that require the body to be present, such as raise dead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-repossession", + "fields": { + "name": "Rod of Repossession", + "desc": "This short, metal rod is engraved with arcane runes and images of open hands. The rod has 3 charges and regains all expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges and target an object within 30 feet of you that isn't being worn or carried. If the object weighs no more than 25 pounds, it floats to your open hand. If you have no hands free, the object sticks to the tip of the rod until the end of your next turn or until you remove it as a bonus action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-sacrificial-blessing", + "fields": { + "name": "Rod of Sacrificial Blessing", + "desc": "This silvery rod is set with rubies on each end. One end holds rubies shaped to resemble an open, fanged maw, and the other end's rubies are shaped to resemble a heart. While holding this rod, you can use an action to spend one or more Hit Dice, up to half your maximum Hit Dice, while pointing the heart-shaped ruby end of the rod at a target within 60 feet of you. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target regains hit points equal to the total hit points you lost. You can't use this feature if you don't have blood. Hit Dice spent on this feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-sanguine-mastery", + "fields": { + "name": "Rod of Sanguine Mastery", + "desc": "This rod is topped with a red ram's skull with two backswept horns. As an action, you can spend one or more Hit Dice, up to half of your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and a target within 60 feet of you must make a DC 17 Dexterity saving throw, taking necrotic damage equal to the total on a failed save, or half as much damage on a successful one. You can't use this feature if you don't have blood. Hit Dice spent on this feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-swarming-skulls", + "fields": { + "name": "Rod of Swarming Skulls", + "desc": "An open-mouthed skull caps this thick, onyx rod. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dusk. While holding the rod, you can use an action and expend 1 of the rod's charges to unleash a swarm of miniature spectral blue skulls at a target within 30 feet. The target must make a DC 15 Wisdom saving throw. On a failure, it takes 3d6 psychic damage and becomes paralyzed with fear until the end of its next turn. On a success, it takes half the damage and isn't paralyzed. Creatures that can't be frightened are immune to this effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-the-disciplinarian", + "fields": { + "name": "Rod of the Disciplinarian", + "desc": "This black lacquered wooden rod is banded in steel, has a flanged head, and functions as a magic mace. As a bonus action, you can brandish the rod at a creature and demand it refrain from a particular activity— attacking, casting, moving, or similar. The activity can be as specific (don't attack the person next to you) or as open (don't cast a spell) as you want, but the activity must be a conscious act on the creature's part, must be something you can determine is upheld or broken, and can't immediately jeopardize the creature's life. For example, you can forbid a creature from lying only if you are capable of determining if the creature is lying, and you can't forbid a creature that needs to breathe from breathing. The creature can act normally, but if it performs the activity you forbid, you can use a reaction to make a melee attack against it with the rod. You can forbid only one creature at a time. If you forbid another creature from performing an activity, the previous creature is no longer forbidden from performing activities. Justicars are arbiters of law and order, operating independently of any official city guard or watch divisions. They are recognizable by their black, hooded robes, silver masks, and the rods they carry as weapons. These stern sentinels are overseen by The Magister, a powerful wizard of whom little is known other than their title. The Magister has made it their duty to oversee order in the city and executes their plans through the Justicars, giving them the Magister's mark, a signet ring, as a symbol of their authority. While some officers and members of the watch may be resentful of the Justicars' presence, many are grateful for their aid, especially in situations that could require magic. Justicar's are a small, elite group, typically acting as solo agents, though extremely dangerous situations bring them together in pairs or larger groups as needed. The Justicars are outfitted with three symbols of authority that are also imbued with power: their masks, rods, and rings. Each by itself is a useful item, but they are made stronger when worn together. The combined powers of this trinity of items make a Justicar a formidable force in the pursuit of law and order.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-the-infernal-realms", + "fields": { + "name": "Rod of the Infernal Realms", + "desc": "The withered, clawed hand of a demon or devil tops this iron rod. While holding this rod, you gain a +2 bonus to spell attack rolls, and the save DC for your spells increases by 2. Frightful Eyes. While holding this rod, you can use a bonus action to cause your eyes to glow with infernal fire for 1 minute. While your eyes are glowing, a creature that starts its turn or enters a space within 10 feet of you must succeed on a Wisdom saving throw against your spell save DC or become frightened of you until your eyes stop glowing. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once used, you can’t use this property again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-the-jester", + "fields": { + "name": "Rod of the Jester", + "desc": "This wooden rod is decorated with colorful scarves and topped with a carving of a madly grinning head. Caper. While holding the rod, you can dance and perform general antics that attract attention. Make a DC 10 Charisma (Performance) check. On a success, one creature that can see and hear you must succeed on a DC 15 Wisdom saving throw or have disadvantage on Wisdom (Perception) checks made to perceive any creature other than you for 1 minute. The effect ends if the target can no longer see or hear you or if you are incapacitated. You can affect one additional creature for each 5 points by which you beat the DC (two creatures with a result of 15, three creatures with a result of 20, and so on). Once used, this property can’t be used again until the next dawn. Hideous Laughter. While holding the rod, you can use an action to cast the hideous laughter spell (save DC 15) from it. Once used, this property can’t be used again until the next dawn. Slapstick. You can use an action to swing the rod in the direction of a creature within 5 feet of you. The target must succeed on a DC 15 Dexterity saving throw or be pushed up to 5 feet away from you and knocked prone. If the target fails the saving throw by 5 or more, it is also stunned until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-the-mariner", + "fields": { + "name": "Rod of the Mariner", + "desc": "This thin bone rod is topped with the carved figurine of an albatross in flight. The rod has 5 charges. You can use an action to expend 1 or more of its charges and point the rod at one or more creatures you can see within 30 feet of you, expending 1 charge for each creature. Each target must succeed on a DC 15 Wisdom saving throw or be cursed for 1 minute. A cursed creature has disadvantage on attack rolls and saving throws while within 100 feet of a body of water that is at least 20 feet deep. The rod regains 1d4 + 1 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rod crumbles to dust and is destroyed, and you must succeed on a DC 15 Wisdom saving throw or be cursed for 1 minute as if you had been the target of the rod's power.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-the-wastes", + "fields": { + "name": "Rod of the Wastes", + "desc": "Created by a holy order of knights to protect their most important members on missions into badlands and magical wastelands, these red gold rods are invaluable tools against the forces of evil. This rod has a rounded head, and it functions as a magic mace that grants a +2 bonus to attack and damage rolls made with it. While holding or carrying the rod, you have advantage on Wisdom (Perception) and Wisdom (Survival) checks made in badlands and wasteland terrain, and you have advantage on saving throws against being charmed or otherwise compelled by aberrations and fiends. If you are charmed or magically compelled by an aberration or fiend, the rod flashes with crimson light, alerting others to your predicament. Aberrant Smite. If you use Divine Smite when you hit an aberration or fiend with this rod, you use the highest number possible for each die of radiant damage rather than rolling one or more dice for the extra radiant damage. You must still roll damage dice for the rod’s damage, as normal. Once used, this property can’t be used again until the next dawn. Spells. You can use an action to cast one of the following spells from the rod: daylight, lesser restoration, or shield of faith. Once you cast a spell with this rod, you can’t cast that spell again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-thorns", + "fields": { + "name": "Rod of Thorns", + "desc": "Several long sharp thorns sprout along the edge of this stout wooden rod, and it functions as a magic mace that grants a +1 bonus to attack and damage rolls made with it. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges to cast the spike growth spell (save DC 15) from it. Embed Thorn. When you hit a creature with this rod, you can expend 1 of its charges to embed a thorn in the creature. At the start of each of the creature’s turns, it must succeed on a DC 15 Constitution saving throw or take 2d6 piercing damage from the embedded thorn. If the creature succeeds on two saving throws, the thorn falls out and crumbles to dust. The successes don’t need to be consecutive. If the creature dies while the thorn is embedded, its body transforms into a patch of nonmagical brambles, which fill its space with difficult terrain.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-underworld-navigation", + "fields": { + "name": "Rod of Underworld Navigation", + "desc": "This finely carved rod is decorated with gold and small dragon scales. While underground and holding this rod, you know how deep below the surface you are. You also know the direction to the nearest exit leading upward. As an action while underground and holding this rod, you can use the find the path spell to find the shortest, most direct physical route to a location you are familiar with on the surface. Once used, the find the path property can't be used again until 3 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-vapor", + "fields": { + "name": "Rod of Vapor", + "desc": "This wooden rod is topped with a dragon's head, carved with its mouth yawning wide. While holding the rod, you can use an action to cause a thick mist to issue from the dragon's mouth, filling your space. As long as you maintain concentration, you leave a trail of mist behind you when you move. The mist forms a line that is 5 feet wide and as long as the distance you travel. This mist you leave behind you lasts for 2 rounds; its area is heavily obscured on the first round and lightly obscured on the second, then it dissipates. When the rod has produced enough mist to fill ten 5-foot-square areas, its magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-verbatim", + "fields": { + "name": "Rod of Verbatim", + "desc": "Tiny runic script covers much of this thin brass rod. While holding the rod, you can use a bonus action to activate it. For 10 minutes, it translates any language spoken within 30 feet of it into Common. The translation can be auditory, or it can appear as glowing, golden script, a choice you make when you activate it. If the translation appears on a surface, the surface must be within 30 feet of the rod and each word remains for 1 round after it was spoken. The rod's translation is literal, and it doesn't replicate or translate emotion or other nuances in speech, body language, or culture. Once used, the rod can't be used again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rod-of-warning", + "fields": { + "name": "Rod of Warning", + "desc": "This plain, wooden rod is topped with an orb of clear, polished crystal. You can use an action activate it with a command word while designating a particular kind of creature (orcs, wolves, etc.). When such a creature comes within 120 feet of the rod, the crystal glows, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. You can use an action to deactivate the rod's light or change the kind of creature it detects. The rod doesn't need to be in your possession to function, but you must have it in hand to activate it, deactivate it, or change the kind of creature it detects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rogues-aces", + "fields": { + "name": "Rogue's Aces", + "desc": "These four, colorful parchment cards have long bailed the daring out of hazardous situations. You can use an action to flip a card face-up, activating it. A card is destroyed after it activates. Ace of Pentacles. The pentacles suit represents wealth and treasure. When you activate this card, you cast the knock spell from it on an object you can see within 60 feet of you. In addition, you have advantage on Dexterity checks to pick locks using thieves’ tools for the next 24 hours. Ace of Cups. The cups suit represents water and its calming, soothing, and cleansing properties. When you activate this card, you cast the calm emotions spell (save DC 15) from it. In addition, you have advantage on Charisma (Deception) checks for the next 24 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_root-of-the-world-tree", + "fields": { + "name": "Root of the World Tree", + "desc": "Crafted from the root burl of a sacred tree, this rod is 2 feet long with a spiked, knobby end. Runes inlaid with gold decorate the full length of the rod. This rod functions as a magic mace. Blood Anointment. You can perform a 1-minute ritual to anoint the rod in your blood. If you do, your hit point maximum is reduced by 2d4 until you finish a long rest. While your hit point maximum is reduced in this way, you gain a +1 bonus to attack and damage rolls made with this magic weapon, and, when you hit a fey or giant with this weapon, that creature takes an extra 2d6 necrotic damage. Holy Anointment. If you spend 1 minute anointing the rod with a flask of holy water, you can cast the augury spell from it. The runes carved into the rod glow and move, forming an answer to your query.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rope-seed", + "fields": { + "name": "Rope Seed", + "desc": "If you soak this 5-foot piece of twine in at least one pint of water, it grows into a 50-foot length of hemp rope after 1 minute.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rowan-staff", + "fields": { + "name": "Rowan Staff", + "desc": "Favored by those with ties to nature and death, this staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. While holding it, you have an advantage on saving throws against spells. The staff has 10 charges for the following properties. It regains 1d4 + 1 expended charges daily at midnight, though it regains all its charges if it is bathed in moonlight at midnight. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff. Spell. While holding this staff, you can use an action to expend 1 or more of its charges to cast animate dead, using your spell save DC and spellcasting ability. The target bones or corpse can be a Medium or smaller humanoid or beast. Each charge animates a separate target. These undead creatures are under your control for 24 hours. You can use an action to expend 1 charge each day to reassert your control of up to four undead creatures created by this staff for another 24 hours. Deanimate. You can use an action to strike an undead creature with the staff in combat. If the attack hits, the target must succeed on a DC 17 Constitution saving throw or revert to an inanimate pile of bones or corpse in its space. If the undead has the Incorporeal Movement trait, it is destroyed instead. Deanimating an undead creature expends a number of charges equal to twice the challenge rating of the creature (minimum of 1). If the staff doesn’t have enough charges to deanimate the target, the staff doesn’t deanimate the target.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rowdys-club", + "fields": { + "name": "Rowdy's Club", + "desc": "This knobbed stick is marked with nicks, scratches, and notches. You gain a +1 bonus to attack and damage rolls made with this magic weapon. While wielding the club, you can use an action to tap it against your open palm, the side of your leg, a surface within reach, or similar. If you do, you have advantage on your next Charisma (Intimidation) check. If you are also wearing a rowdy's ring (see page 87), you can use an action to frighten a creature you can see within 30 feet of you instead. The target must succeed on a DC 13 Wisdom saving throw or be frightened of you until the end of its next turn. Once this special action has been used three times, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rowdys-ring", + "fields": { + "name": "Rowdy's Ring", + "desc": "The face of this massive ring is a thick slab of gold-plated lead, which is attached to twin rings that are worn over the middle and ring fingers. The slab covers your fingers from the first and second knuckles, and it often has a threatening word or image engraved on it. While wearing the ring, your unarmed strike uses a d4 for damage and attacks made with the ring hand count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_royal-jelly", + "fields": { + "name": "Royal Jelly", + "desc": "This oil is distilled from the pheromones of queen bees and smells faintly of bananas. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying. For larger creatures, one additional vial is required for each size category above Medium. Applying the oil takes 10 minutes. The affected creature then has advantage on Charisma (Persuasion) checks for 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ruby-crusher", + "fields": { + "name": "Ruby Crusher", + "desc": "This greatclub is made entirely of fused rubies with a grip wrapped in manticore hide A roaring fire burns behind its smooth facets. You gain a +3 bonus to attack and damage rolls made with this magic weapon. You can use a bonus action to speak this magic weapon's command word, causing it to be engulfed in flame. These flames shed bright light in a 30-foot radius and dim light for an additional 30 feet. While the greatclub is aflame, it deals fire damage instead of bludgeoning damage. The flames last until you use a bonus action to speak the command word again or until you drop the weapon. When you hit a Large or larger creature with this greatclub, the creature must succeed on a DC 17 Constitution saving throw or be pushed up to 30 feet away from you. If the creature strikes a solid object, such as a door or wall, during this movement, it and the object take 1d6 bludgeoning damage for each 10 feet the creature traveled before hitting the object.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rug-of-safe-haven", + "fields": { + "name": "Rug of Safe Haven", + "desc": "This small, 3-foot-by-5-foot rug is woven with a tree motif and a tasseled fringe. While the rug is laid out on the ground, you can speak its command word as an action to create an extradimensional space beneath the rug for 1 hour. The extradimensional space can be reached by lifting a corner of the rug and stepping down as if through a trap door in a floor. The space can hold as many as eight Medium or smaller creatures. The entrance can be hidden by pulling the rug flat. Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window in the shape and style of the rug. Anything inside the extradimensional space is gently pushed out to the nearest unoccupied space when the duration ends. The rug can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_rust-monster-shell", + "fields": { + "name": "Rust Monster Shell", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, you can use an action to magically coat the armor in rusty flakes for 1 minute. While the armor is coated in rusty flakes, any nonmagical weapon made of metal that hits you corrodes. After dealing damage, the weapon takes a permanent and cumulative –1 penalty to damage rolls. If its penalty drops to –5, the weapon is destroyed. Nonmagical ammunition made of metal that hits you is destroyed after dealing damage. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sacrificial-knife", + "fields": { + "name": "Sacrificial Knife", + "desc": "Runes dance along the blade of this keen knife. Sacrificial Knife (Common). While attuned to it, you can use this magic, rune-inscribed dagger as a spellcasting focus. Ceremonial Sacrificial Knife (Uncommon). More powerful versions of this blade also exist. While holding the greater version of this dagger, you can use it to perform a sacrificial ritual during a short rest. If you sacrifice a Tiny or Small creature, you regain one expended 1st-level spell slot. If you sacrifice a Medium or larger creature, you regain one expended 2nd-level spell slot.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_saddle-of-the-cavalry-casters", + "fields": { + "name": "Saddle of the Cavalry Casters", + "desc": "This magic saddle adjusts its size and shape to fit the animal to which it is strapped. While a mount wears this saddle, creatures have disadvantage on opportunity attacks against the mount or its rider. While you sit astride this saddle, you have advantage on any checks to remain mounted and on Constitution saving throws to maintain concentration on a spell when you take damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sanctuary-shell", + "fields": { + "name": "Sanctuary Shell", + "desc": "This seashell is intricately carved with protective runes. If you are carrying the shell and are reduced to 0 hit points or incapacitated, the shell activates, creating a bubble of force that expands to surround you and forces any other creatures out of your space. This sphere works like the wall of force spell, except that any creature intent on aiding you can pass through it. The protective sphere lasts for 10 minutes, or until you regain at least 1 hit point or are no longer incapacitated. When the protective sphere ends, the shell crumbles to dust.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sand-arrow", + "fields": { + "name": "Sand Arrow", + "desc": "The shaft of this arrow is made of tightly packed white sand that discorporates into a blast of grit when it strikes a target. On a hit, the sand catches in the fittings and joints of metal armor, and the target's speed is reduced by 10 feet until it cleans or removes the armor. In addition, the target must succeed on a DC 11 Constitution saving throw or be blinded until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sand-suit", + "fields": { + "name": "Sand Suit", + "desc": "Created from the treated body of a destroyed Apaxrusl (see Tome of Beasts 2), this leather armor constantly sheds fine sand. The faint echoes of damned souls also emanate from the armor. While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, you can move through nonmagical, unworked earth and stone at your speed. While doing so, you don't disturb the material you move through. Because the souls that once infused the apaxrusl remain within the armor, you are susceptible to effects that sense, target, or harm fiends, such as a paladin's Divine Smite or a ranger's Primeval Awareness. This armor has 3 charges, and it regains 1d3 expended charges daily at dawn. As a reaction, when you are hit by an attack, you can expend 1 charge and make the armor flow like sand. Roll a 1d12 and reduce the damage you take by the number rolled.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sandals-of-sand-skating", + "fields": { + "name": "Sandals of Sand Skating", + "desc": "These leather sandals repel sand, leaving your feet free of particles and grit. While you wear these sandals in a desert, on a beach, or in an otherwise sandy environment, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced while in nonmagical difficult terrain made of sand. In addition, when you take the Dash action across sand, the extra movement you gain is double your speed instead of equal to your speed. With a speed of 30 feet, for example, you can move up to 90 feet on your turn if you dash across sand.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sandals-of-the-desert-wanderer", + "fields": { + "name": "Sandals of the Desert Wanderer", + "desc": "While you wear these soft leather sandals, you have resistance to fire damage. In addition, you ignore difficult terrain created by loose or deep sand, and you can tolerate temperatures of up to 150 degrees Fahrenheit.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sanguine-lance", + "fields": { + "name": "Sanguine Lance", + "desc": "This fiendish lance runs red with blood. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature that has blood with this lance, the target takes an extra 1d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_satchel-of-seawalking", + "fields": { + "name": "Satchel of Seawalking", + "desc": "This eel-hide leather pouch is always filled with an unspeakably foul-tasting, coarse salt. You can use an action to toss a handful of the salt onto the surface of an unoccupied space of water. The water in a 5-foot cube becomes solid for 1 minute, resembling greenish-blue glass. This cube is buoyant and can support up to 750 pounds. When the duration expires, the hardened water cracks ominously and returns to a liquid state. If you toss the salt into an occupied space, the water congeals briefly then disperses harmlessly. If the satchel is opened underwater, the pouch is destroyed as its contents permanently harden. Once five handfuls of the salt have been pulled from the satchel, the satchel can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scale-mail-of-warding-1", + "fields": { + "name": "Scale Mail of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scale-mail-of-warding-2", + "fields": { + "name": "Scale Mail of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scale-mail-of-warding-3", + "fields": { + "name": "Scale Mail of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scalehide-cream", + "fields": { + "name": "Scalehide Cream", + "desc": "As an action, you can rub this dull green cream over your skin. When you do, you sprout thick, olive-green scales like those of a giant lizard or green dragon that last for 1 hour. These scales give you a natural AC of 15 + your Constitution modifier. This natural AC doesn't combine with any worn armor or with a Dexterity bonus to AC. A jar of scalehide cream contains 1d6 + 1 doses.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scarab-of-rebirth", + "fields": { + "name": "Scarab of Rebirth", + "desc": "This coin-sized figurine of a scarab is crafted from an unidentifiable blue-gray metal, but it appears mundane in all other respects. When you speak its command word, it whirs to life and burrows into your flesh. You can speak the command word again to remove the scarab. While the scarab is embedded in your flesh, you gain the following:\n- You no longer need to eat or drink.\n- You can magically sense the presence of undead and pinpoint the location of any undead within 30 feet of you.\n- Your hit point maximum is reduced by 10.\n- If you die, you return to life with half your maximum hit points at the start of your next turn. The scarab can't return you to life if you were beheaded, disintegrated, crushed, or similar full-body destruction. Afterwards, the scarab exits your body and goes dormant. It can't be used again until 14 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scarf-of-deception", + "fields": { + "name": "Scarf of Deception", + "desc": "While wearing this scarf, you appear different to everyone who looks upon you for less than 1 minute. In addition, you smell, sound, feel, and taste different to every creature that perceives you. Creatures with truesight or blindsight can see your true form, but their other senses are still confounded. If a creature studies you for 1 minute, it can make a DC 15 Wisdom (Perception) check. On a success, it perceives your real form.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scent-sponge", + "fields": { + "name": "Scent Sponge", + "desc": "This sea sponge collects the scents of creatures and objects. You can use an action to touch the sponge to a creature or object, and the scent of the target is absorbed into the sponge. An unwilling target can make a DC 13 Dexterity saving throw, and if it succeeds, it is unaffected by the sponge. For 1 hour after its scent has been absorbed, the target gives off no smell and can't be detected or tracked by creatures, spells, or other effects that rely on smell to detect or track the target. You can use an action to wipe the sponge on a creature or object, masking its natural scent with the scent stored in the sponge. An unwilling target can make a DC 13 Dexterity saving throw, and if it succeeds, it is unaffected by the sponge. For 1 hour after its scent has been masked, the target gives off the smell of the creature or object that was stored in the sponge. The effect ends early if the target's scent is replaced by another scent from the sponge or if the scent is cleaned away, which requires vigorous washing for 10 minutes with soap and water or similar materials. The sponge can hold a scent indefinitely, but it can hold only one scent at a time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scepter-of-majesty", + "fields": { + "name": "Scepter of Majesty", + "desc": "While holding this bejeweled, golden rod, you can use an action to cast the enthrall spell (save DC 15) from it, exhorting those in range to follow you and obey your commands. When you finish speaking, 1d6 creatures that failed their saving throw are affected as if by the dominate person spell. Each such creature treats you as its ruler, obeying your commands and automatically fighting in your defense should anyone attempt to harm you. If you are also attuned to and wearing a Headdress of Majesty (see page 146), your charmed subjects have advantage on attack rolls against any creature that attacked you or that cast an obvious spell on you within the last round. The scepter can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scimitar-of-fallen-saints", + "fields": { + "name": "Scimitar of Fallen Saints", + "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scimitar-of-the-desert-winds", + "fields": { + "name": "Scimitar of the Desert Winds", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While holding or carrying this scimitar, you can tolerate temperatures as low as –50 degrees Fahrenheit or as high as 150 degrees Fahrenheit without any additional protection.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scorn-pouch", + "fields": { + "name": "Scorn Pouch", + "desc": "The heart of a lover scorned turns black and potent. Similarly, this small leather pouch darkens from brown to black when a creature hostile to you moves within 10 feet of you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scorpion-feet", + "fields": { + "name": "Scorpion Feet", + "desc": "These thick-soled leather sandals offer comfortable and safe passage across shifting sands. While you wear them, you gain the following benefits:\n- Your speed isn't reduced while in magical or nonmagical difficult terrain made of sand.\n- You have advantage on all ability checks and saving throws against natural hazards where sand is a threatening element.\n- You have immunity to poison damage and advantage on saving throws against being poisoned.\n- You leave no tracks or other traces of your passage through sandy terrain.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scoundrels-gambit", + "fields": { + "name": "Scoundrel's Gambit", + "desc": "This fluted silver tube, barely two inches long, bears tiny runes etched between the grooves. While holding this tube, you can use an action to cast the magic missile spell from it. Once used, the tube can't be used to cast magic missile again until 12 hours have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scourge-of-devotion", + "fields": { + "name": "Scourge of Devotion", + "desc": "This cat o' nine tails is used primarily for self-flagellation, and its tails have barbs of silver woven into them. You gain a +1 bonus to attack and damage rolls made with this magic weapon, and the weapon deals slashing damage instead of bludgeoning damage. You can spend 10 minutes using the scourge in a self-flagellating ritual, which can be done during a short rest. If you do so, your hit point maximum is reduced by 2d8. In addition, you have advantage on Constitution saving throws that you make to maintain your concentration on a spell when you take damage while your hit point maximum is reduced. This hit point maximum reduction can't be removed with the greater restoration spell or similar magic and lasts until you finish a long rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scouts-coat", + "fields": { + "name": "Scout's Coat", + "desc": "This lightweight, woolen coat is typically left naturally colored or dyed in earth tones or darker shades of green. While wearing the coat, you can tolerate temperatures as low as –100 degrees Fahrenheit.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_screaming-skull", + "fields": { + "name": "Screaming Skull", + "desc": "This skull looks like a normal animal or humanoid skull. You can use an action to place the skull on the ground, a table, or other surface and activate it with a command word. The skull's magic triggers when a creature comes within 5 feet of it without speaking that command word. The skull emits a green glow from its eye sockets, shedding dim light in a 15-foot radius, levitates up to 3 feet in the air, and emits a piercing scream for 1 minute that is audible up to 600 feet away. The skull can't be used this way again until the next dawn. The skull has AC 13 and 5 hit points. If destroyed while active, it releases a burst of necromantic energy. Each creature within 5 feet of the skull must succeed on a DC 11 Wisdom saving throw or be frightened until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scrimshaw-comb", + "fields": { + "name": "Scrimshaw Comb", + "desc": "Aside from being carved from bone, this comb is a beautiful example of functional art. It has 3 charges. As an action, you can expend a charge to cast invisibility. Unlike the standard version of this spell, you are invisible only to undead creatures. However, you can attack creatures who are not undead (and thus unaffected by the spell) without ending the effect. Casting a spell breaks the effect as normal. The comb regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scrimshaw-parrot", + "fields": { + "name": "Scrimshaw Parrot", + "desc": "This parrot is carved from bits of whalebone and decorated with bright feathers and tiny jewels. You can use an action to affix the parrot to your shoulder or arm. While the parrot is affixed, you gain the following benefits: - You have advantage on Wisdom (Perception) checks that rely on sight.\n- You can use an action to cast the comprehend languages spell from it at will.\n- You can use an action to speak the command word and activate the parrot. It records up to 2 minutes of sounds within 30 feet of it. You can touch the parrot at any time (no action required), stopping the recording. Commanding the parrot to record new sounds overwrites the previous recording. You can use a bonus action to speak a different command word, and the parrot repeats the sounds it heard. Effects that limit or block sound, such as a closed door or the silence spell, similarly limit or block the sounds the parrot records.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scroll-of-fabrication", + "fields": { + "name": "Scroll of Fabrication", + "desc": "You can draw a picture of any object that is Large or smaller on the face of this blank scroll. When the drawing is complete, it becomes a real, nonmagical, three-dimensional object. Thus, a drawing of a backpack becomes an actual backpack you can use to store and carry items. Any object created by the scroll can be destroyed by the dispel magic spell, by taking it into the area of an antimagic field, or by similar circumstances. Nothing created by the scroll can have a value greater than 25 gp. If you draw an object of greater value, such as a diamond, the object appears authentic, but close inspection reveals it to be made from glass, paste, bone or some other common or worthless material. The object remains for 24 hours or until you dismiss it as a bonus action. The scroll can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scroll-of-treasure-finding", + "fields": { + "name": "Scroll of Treasure Finding", + "desc": "Each scroll of treasure finding works for a specific type of treasure. You can use an action to read the scroll and sense whether that type of treasure is present within 1 mile of you for 1 hour. This scroll reveals the treasure's general direction, but not its specific location or amount. The GM chooses the type of treasure or determines it by rolling a d100 and consulting the following table. | dice: 1d% | Treasure Type |\n| ----------- | ------------- |\n| 01-10 | Copper |\n| 11-20 | Silver |\n| 21-30 | Electrum |\n| 31-40 | Gold |\n| 41-50 | Platinum |\n| 51-75 | Gemstone |\n| 76-80 | Art objects |\n| 81-00 | Magic items |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_scrolls-of-correspondence", + "fields": { + "name": "Scrolls of Correspondence", + "desc": "These vellum scrolls always come in pairs. Anything written on one scroll also appears on the matching scroll, as long as they are both on the same plane of existence. Each scroll can hold up to 75 words at a time. While writing on one scroll, you are aware that the words are appearing on a paired scroll, and you know if no creature bears the paired scroll. The scrolls don't translate words written on them, and the reader and writer must be able to read and write the same language to understanding the writing on the scrolls. While holding one of the scrolls, you can use an action to tap it three times with a quill and speak a command word, causing both scrolls to go blank. If one of the scrolls in the pair is destroyed, the other scroll becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sea-witchs-blade", + "fields": { + "name": "Sea Witch's Blade", + "desc": "This slim, slightly curved blade has a ghostly sheen and a wickedly sharp edge. You can use a bonus action to speak this magic sword's command word (“memory”) and cause the air around the blade to shimmer with a pale, violet glow. This glow sheds bright light in a 20-foot radius and dim light for an additional 20 feet. While the sword is glowing, it deals an extra 2d6 psychic damage to any target it hits. The glow lasts until you use a bonus action to speak the command word again or until you drop or sheathe the sword. When a creature takes psychic damage from the sword, you can choose to have the creature make a DC 15 Wisdom saving throw. On a failure, you take 2d6 psychic damage, and the creature is stunned until the end of its next turn. Once used, this feature of the sword shouldn't be used again until the next dawn. Each time it is used before then, the psychic damage you take increases by 2d6.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_searing-whip", + "fields": { + "name": "Searing Whip", + "desc": "Inspired by the searing breath weapon of a light drake (see Tome of Beasts 2), this whip seems to have filaments of light interwoven within its strands. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with this weapon, the creature takes an extra 1d4 radiant damage. When you roll a 20 on an attack roll made with this weapon, the target is blinded until the end of its next turn. The whip has 3 charges, and it regains 1d3 expended charges daily at dawn or when exposed to a daylight spell for 1 minute. While wielding the whip, you can use an action to expend 1 of its charges to transform the whip into a searing beam of light. Choose one creature you can see within 30 feet of you and make one attack roll with this whip against that creature. If the attack hits, that creature and each creature in a line that is 5 feet wide between you and the target takes damage as if hit by this whip. All of this damage is radiant. If the target is undead, you have advantage on the attack roll.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_second-wind", + "fields": { + "name": "Second Wind", + "desc": "This plain, copper band holds a clear, spherical crystal. When you run out of breath or are choking, you can use a reaction to activate the ring. The crystal shatters and air fills your lungs, allowing you to continue to hold your breath for a number of minutes equal to 1 + your Constitution modifier (minimum 30 seconds). A shattered crystal magically reforms at the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_seelie-staff", + "fields": { + "name": "Seelie Staff", + "desc": "This white ash staff is decorated with gold and tipped with an uncut crystal of blue quartz. This staff can be wielded as a magic quarterstaff. While holding the staff, you have advantage on Charisma checks made to influence or interact socially with fey creatures. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a shower of fragrant flower petals, which blow away in a sudden wind. Rebuke Fey. When you hit a fey creature with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 radiant damage to the target. If the fey has an evil alignment, the extra damage increases to 4d6, and the target must succeed on a DC 15 Wisdom saving throw or be frightened of you until the start of your next turn. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), conjure woodland beings (4 charges), disguise self (1 charge), pass without trace (2 charges), or tree stride (5 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_selkets-bracer", + "fields": { + "name": "Selket's Bracer", + "desc": "This bronze bracer is crafted in the shape of a scorpion, its legs curled around your wrist, tail raised and ready to strike. While wearing this bracer, you are immune to the poisoned condition. The bracer has 4 charges and regains 1d4 charges daily at dawn. You can expend 1 charge as a bonus action to gain tremorsense out to a range of 30 feet for 1 minute. In addition, you can expend 2 charges as a bonus action to coat a weapon you touch with venom. The poison remains for 1 minute or until an attack using the weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or be poisoned until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_seneschals-gloves", + "fields": { + "name": "Seneschal's Gloves", + "desc": "These white gloves have elegant tailoring and size themselves perfectly to fit your hands. The gloves must be attuned to a specific, habitable place with walls, a roof, and doors before you can attune to them. To attune the gloves to a location, you must leave the gloves in the location for 24 hours. Once the gloves are attuned to a location, you can attune to them. While you wear the gloves, you can unlock any nonmagical lock within the attuned location by touching the lock, and any mundane portal you open in the location while wearing these gloves opens silently. As an action, you can snap your fingers and every nonmagical portal within 30 feet of you immediately closes and locks (if possible) as long as it is unobstructed. (Obstructed portals remain open.) Once used, this property of the gloves can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sentinel-portrait", + "fields": { + "name": "Sentinel Portrait", + "desc": "This painting appears to be a well-rendered piece of scenery, devoid of subjects. You can spend 5 feet of movement to step into the painting. The painting then appears to be a portrait of you, against whatever background was already present. While in the painting, you are immobile unless you use a bonus action to exit the painting. Your senses still function, and you can use them as if you were in the portrait's space. You remain unharmed if the painting is damaged, but if it is destroyed, you are immediately shunted into the nearest unoccupied space.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_serpent-staff", + "fields": { + "name": "Serpent Staff", + "desc": "Fashioned from twisted ash wood, this staff 's head is carved in the likeness of a serpent preparing to strike. You have resistance to poison damage while you hold this staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the carved snake head twists and magically consumes the rest of the staff, destroying it. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: cloudkill (5 charges), detect poison and disease (1 charge), poisoned volley* (2 charges), or protection from poison (2 charges). You can also use an action to cast the poison spray spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Serpent Form. While holding the staff, you can use an action cast polymorph on yourself, transforming into a serpent or snake that has a challenge rating of 2 or lower. While you are in the form of a serpent, you retain your Intelligence, Wisdom, and Charisma scores. You can remain in serpent form for up to 1 minute, and you can revert to your normal form as an action. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_serpentine-bracers", + "fields": { + "name": "Serpentine Bracers", + "desc": "These bracers are a pair of golden snakes with ruby eyes, which coil around your wrist and forearm. While wearing both bracers, you gain a +1 bonus to AC if you are wearing no armor and using no shield. You can use an action to speak the bracers' command word and drop them on the ground in two unoccupied spaces within 10 feet of you. The bracers become two constrictor snakes under your control and act on their own initiative counts. By using a bonus action to speak the command word again, you return a bracer to its normal form in a space formerly occupied by the snake. On your turn, you can mentally command each snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snakes take and where they move during their next turns, or you can issue them a general command, such as attack your enemies or guard a location. If a snake is reduced to 0 hit points, it dies, reverts to its bracer form, and can't be commanded to become a snake again until 2 days have passed. If a snake reverts to bracer form before losing all its hit points, it regains all of them and can't be commanded to become a snake again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_serpents-scales", + "fields": { + "name": "Serpent's Scales", + "desc": "While wearing this armor made from the skin of a giant snake, you gain a +1 bonus to AC, and you have resistance to poison damage. While wearing the armor, you can use an action to cast polymorph on yourself, transforming into a giant poisonous snake. While you are in the form of a snake, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_serpents-tooth", + "fields": { + "name": "Serpent's Tooth", + "desc": "When you hit with an attack using this magic spear, the target takes an extra 1d6 poison damage. In addition, while you hold the spear, you have advantage on Dexterity (Acrobatics) checks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_shadow-tome", + "fields": { + "name": "Shadow Tome", + "desc": "This unassuming book possesses powerful illusory magics. When you write on its pages while attuned to it, you can choose for the contents to appear to be something else entirely. A shadow tome used as a spellbook could be made to look like a cookbook, for example. To read the true text, you must speak a command word. A second speaking of the word hides the true text once more. A true seeing spell can see past the shadow tome’s magic and reveals the true text to the reader. Most shadow tomes already contain text, and it is rare to find one filled with blank pages. When you first attune to the book, you can choose to keep or remove the book’s previous contents.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_shadowhounds-muzzle", + "fields": { + "name": "Shadowhound's Muzzle", + "desc": "This black leather muzzle seems to absorb light. As an action, you can place this muzzle around the snout of a grappled, unconscious, or willing canine with an Intelligence of 3 or lower, such as a mastiff or wolf. The canine transforms into a shadowy version of itself for 1 hour. It uses the statistics of a shadow, except it retains its size. It has its own turns and acts on its own initiative. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to it, it defends itself from hostile creatures, but otherwise takes no actions. If the shadow canine is reduced to 0 hit points, the canine reverts to its original form, and the muzzle is destroyed. At the end of the duration or if you remove the muzzle (by stroking the canine's snout), the canine reverts to its original form, and the muzzle remains intact. If you become unattuned to this item while the muzzle is on a canine, its transformation becomes permanent, and the creature becomes independent with a will of its own. Once used, the muzzle can't be used to transform a canine again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_shark-tooth-crown", + "fields": { + "name": "Shark Tooth Crown", + "desc": "Shark's teeth of varying sizes adorn this simple leather headband. The teeth pile one atop the other in a jumble of sharp points and flat sides. Three particularly large teeth are stained with crimson dye. The teeth move slightly of their own accord when you are within 1 mile of a large body of saltwater. The effect is one of snapping and clacking, producing a sound not unlike a crab's claw. While wearing this headband, you have advantage on Wisdom (Survival) checks to find your way when in a large body of saltwater or pilot a vessel on a large body of saltwater. In addition, you can use a bonus action to cast the command spell (save DC 15) from the crown. If the target is a beast with an Intelligence of 3 or lower that can breathe water, it automatically fails the saving throw. The headband can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sharkskin-vest", + "fields": { + "name": "Sharkskin Vest", + "desc": "While wearing this armor, you gain a +1 bonus to AC, and you have advantage on Strength (Athletics) checks made to swim. While wearing this armor underwater, you can use an action to cast polymorph on yourself, transforming into a reef shark. While you are in the form of the reef shark, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sheeshah-of-revelations", + "fields": { + "name": "Sheeshah of Revelations", + "desc": "This finely crafted water pipe is made from silver and glass. Its vase is etched with arcane symbols. When you spend 1 minute using the sheeshah to smoke normal or flavored tobacco, you enter a dreamlike state and are granted a cryptic or surreal vision giving you insight into your current quest or a significant event in your near future. This effect works like the divination spell. Once used, you can't use the sheeshah in this way again until 7 days have passed or until the events hinted at in your vision have come to pass, whichever happens first.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_shepherds-flail", + "fields": { + "name": "Shepherd's Flail", + "desc": "The handle of this simple flail is made of smooth lotus wood. The three threshers are made of carved and painted wooden beads. You gain a + 1 bonus to attack and damage rolls made with this magic weapon. True Authority (Requires Attunement). You must be attuned to a crook of the flock (see page 72) to attune to this weapon. The attunement ends if you are no longer attuned to the crook. While you are attuned to this weapon and holding it, your Charisma score increases by 4 and can exceed 20, but not 30. When you hit a beast with this weapon, the beast takes an extra 3d6 bludgeoning damage. For the purpose of this weapon, “beast” refers to any creature with the beast type. The flail also has 5 charges. When you reduce a humanoid to 0 hit points with an attack from this weapon, you can expend 1 charge. If you do so, the humanoid stabilizes, regains 1 hit point, and is charmed by you for 24 hours. While charmed in this way, the humanoid regards you as its trusted leader, but it otherwise retains its statistics and regains hit points as normal. If harmed by you or your companions, or commanded to do something contrary to its nature, the target ceases to be charmed in this way. The flail regains 1d4 + 1 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_shield-of-gnawing", + "fields": { + "name": "Shield of Gnawing", + "desc": "The wooden rim of this battered oak shield is covered in bite marks. While holding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. In addition, you can use the Shove action as a bonus action while raging.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_shield-of-missile-reversal", + "fields": { + "name": "Shield of Missile Reversal", + "desc": "While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. When you would be struck by a ranged attack, you can use a reaction to cause the outer surface of the shield to emit a flash of magical energy, sending the missile hurtling back at your attacker. Make a ranged weapon attack roll against your attacker using the attacker's bonuses on the roll. If the attack hits, roll damage as normal, using the attacker's bonuses.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_shield-of-the-fallen", + "fields": { + "name": "Shield of the Fallen", + "desc": "Your allies can use this shield to move you when you aren't capable of moving. If you are paralyzed, petrified, or unconscious, and a creature lays you on this shield, the shield rises up under you, bearing you and anything you currently wear or carry. The shield then follows the creature that laid you on the shield for up to 1 hour before gently lowering to the ground. This property otherwise works like the floating disk spell. Once used, the shield can't be used this way again for 1d12 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_shifting-shirt", + "fields": { + "name": "Shifting Shirt", + "desc": "This nondescript, smock-like garment changes its appearance on command. While wearing this shirt, you can use a bonus action to speak the shirt's command word and cause it to assume the appearance of a different set of clothing. You decide what it looks like, including color, style, and accessories—from filthy beggar's clothes to glittering court attire. The illusory appearance lasts until you use this property again or remove the shirt.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_shimmer-ring", + "fields": { + "name": "Shimmer Ring", + "desc": "This ring is crafted of silver with an inlay of mother-of-pearl. While wearing the ring, you can use an action to speak a command word and cause the ring to shed white and sparkling bright light in a 20-foot radius and dim light for an additional 20 feet. The light lasts until you use a bonus action to repeat the command word. The ring has 6 charges for the following properties. It regains 1d6 charges daily at dawn. Bestow Shimmer. While wearing the ring, you can use a bonus action to expend 1 of its charges to charge a weapon you wield with silvery energy until the start of your next turn. When you hit with an attack using the charged weapon, the target takes an extra 1d6 radiant damage. Shimmering Aura. While wearing the ring, you can use an action to expend 1 of its charges to surround yourself with a silvery, shimmering aura of light for 1 minute. This bright light extends from you in a 5-foot radius and is sunlight. While you are surrounded in this light, you have resistance to radiant damage. Shimmering Bolt. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a bolt of silvery light and makes its attack roll with a +7 bonus. On a hit, the target takes 2d6 radiant damage for each charge you expend.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_shoes-of-the-shingled-canopy", + "fields": { + "name": "Shoes of the Shingled Canopy", + "desc": "These well-made, black leather shoes have brass buckles shaped like chimneys. While wearing the shoes, you have proficiency in the Acrobatics skill. In addition, while falling, you can use a reaction to cast the feather fall spell by holding your nose. The shoes can't be used this way again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_shortbow-of-accuracy", + "fields": { + "name": "Shortbow of Accuracy", + "desc": "The normal range of this bow is doubled, but its long range remains the same.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_shortsword-of-fallen-saints", + "fields": { + "name": "Shortsword of Fallen Saints", + "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_shrutinandan-sitar", + "fields": { + "name": "Shrutinandan Sitar", + "desc": "An exquisite masterpiece of craftsmanship, this instrument is named for a prestigious musical academy. You must be proficient with stringed instruments to use this instrument. A creature that plays the instrument without being proficient with stringed instruments must succeed on a DC 17 Wisdom saving throw or take 2d6 psychic damage. The exquisite sounds of this sitar are known to weaken the power of demons. Each creature that can hear you playing this sitar has advantage on saving throws against the spells and special abilities of demons. Spells. You can use an action to play the sitar and cast one of the following spells from it, using your spell save DC and spellcasting ability: create food and water, fly, insect plague, invisibility, levitate, protection from evil and good, or reincarnate. Once the sitar has been used to cast a spell, you can’t use it to cast that spell again until the next dawn. Summon. If you spend 1 minute playing the sitar, you can summon animals to fight by your side. This works like the conjure animals spell, except you can summon only 1 elephant, 1d2 tigers, or 2d4 wolves.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sickle-of-thorns", + "fields": { + "name": "Sickle of Thorns", + "desc": "You gain a +1 bonus to attack and damage rolls made with this weapon. As an action, you can swing the sickle to cut nonmagical vegetation up to 60 feet away from you. Each cut is a separate action with one action equaling one swing of your arm. Thus, you can lead a party through a jungle or briar thicket at a normal pace, simply swinging the sickle back and forth ahead of you to clear the path. It can't be used to cut trunks of saplings larger than 1 inch in diameter. It also can't cut through unliving wood (such as a door or wall). When you hit a plant creature with a melee attack with this weapon, that target takes an extra 1d6 slashing damage. This weapon can make very precise cuts, such as to cut fruit or flowers high up in a tree without damaging the tree.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_siege-arrow", + "fields": { + "name": "Siege Arrow", + "desc": "This magic arrow's tip is enchanted to soften stone and warp wood. When this arrow hits an object or structure, it deals double damage then becomes a nonmagical arrow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_signaling-ammunition", + "fields": { + "name": "Signaling Ammunition", + "desc": "This magic ammunition creates a trail of light behind it as it flies through the air. If the ammunition flies through the air and doesn't hit a creature, it releases a burst of light that can be seen for up to 1 mile. If the ammunition hits a creature, the creature must succeed on a DC 13 Dexterity saving throw or be outlined in golden light until the end of its next turn. While the creature is outlined in light, it can't benefit from being invisible and any attack against it has advantage if the attacker can see the outlined creature.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_signaling-compass", + "fields": { + "name": "Signaling Compass", + "desc": "The exterior of this clamshell metal case features a polished, mirror-like surface on one side and an ornate filigree on the other. Inside is a magnetic compass. While the case is closed, you can use an action to speak the command word and project a harmless beam of light up to 1 mile. As an action while holding the compass, you can flash a concentrated beam of light at a creature you can see within 60 feet of you. The target must succeed on a DC 13 Constitution saving throw or be blinded for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The compass can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_signet-of-the-magister", + "fields": { + "name": "Signet of the Magister", + "desc": "This heavy, gold ring is set with a round piece of carnelian, which is engraved with the symbol of an eagle perched upon a crown. While wearing the ring, you have advantage on saving throws against enchantment spells and effects. You can use an action to touch the ring to a creature—requiring a melee attack roll unless the creature is willing or incapacitated—and magically brand it with the ring’s crest. When a branded creature harms you, it takes 2d6 psychic damage and must succeed on a DC 15 Wisdom saving throw or be stunned until the end of its next turn. On a success, a creature is immune to this property of the ring for the next 24 hours, but the brand remains until removed. You can remove the brand as an action. The remove curse spell also removes the brand. Once you brand a creature, you can’t brand another creature until the next dawn. Instruments of Law. If you are also attuned to and wearing a Justicar’s mask (see page 149), you can cast the locate creature to detect a branded creature at will from the ring. If you are also attuned to and carrying a rod of the disciplinarian (see page 83), the psychic damage from the brand increases to 3d6 and the save DC increases to 16.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_silver-skeleton-key", + "fields": { + "name": "Silver Skeleton Key", + "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_silver-string", + "fields": { + "name": "Silver String", + "desc": "These silver wires magically adjust to fit any stringed instrument, making its sound richer and more melodious. You have advantage on Charisma (Performance) checks made when playing the instrument.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_silvered-oar", + "fields": { + "name": "Silvered Oar", + "desc": "This is a 6-foot-long birch wood oar with leaves and branches carved into its length. The grooves of the carvings are filled with silver, which glows softly when it is outdoors at night. You can activate the oar as an action to have it row a boat unassisted, obeying your mental commands. You can instruct it to row to a destination familiar to you, allowing you to rest while it performs its task. While rowing, it avoids contact with objects on the boat, but it can be grabbed and stopped by anyone at any time. The oar can move a total weight of 2,000 pounds at a speed of 3 miles per hour. It floats back to your hand if the weight of the craft, crew, and carried goods exceeds that weight.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_skalds-harp", + "fields": { + "name": "Skald's Harp", + "desc": "This ornate harp is fashioned from maple and engraved with heroic scenes of warriors battling trolls and dragons inlaid in bone. The harp is strung with fine silver wire and produces a sharp yet sweet sound. You must be proficient with stringed instruments to use this harp. When you play the harp, its music enhances some of your bard class features. Song of Rest. When you play this harp as part of your Song of Rest performance, each creature that spends one or more Hit Dice during the short rest gains 10 temporary hit points at the end of the short rest. The temporary hit points last for 1 hour. Countercharm. When you play this harp as part of your Countercharm performance, you and any friendly creatures within 30 feet of you also have resistance to thunder damage and have advantage on saving throws against being paralyzed. When this property has been used for a total of 10 minutes, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_skipstone", + "fields": { + "name": "Skipstone", + "desc": "This small bark-colored stone measures 3/4 of an inch in diameter and weighs 1 ounce. Typically, 1d4 + 1 skipstones are found together. You can use an action to throw the stone up to 60 feet. The stone crumbles to dust on impact and is destroyed. Each creature within a 5-foot radius of where the stone landed must succeed on a DC 15 Constitution saving throw or be thrown forward in time until the start of your next turn. Each creature disappears, during which time it can't act and is protected from all effects. At the start of your next turn, each creature reappears in the space it previously occupied or the nearest unoccupied space, and it is unaware that any time has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_skullcap-of-deep-wisdom", + "fields": { + "name": "Skullcap of Deep Wisdom", + "desc": "TThis scholar’s cap is covered in bright stitched runes, and the interior is rough, like bark or sharkskin. This cap has 9 charges. It regains 1d8 + 1 expended charges daily at midnight. While wearing it, you can use an action and expend 1 or more of its charges to cast one of the following spells, using your spell save DC or save DC 15, whichever is higher: destructive resonance (2 charges), nether weapon (4 charges), protection from the void (1 charge), or void strike (3 charges). These spells are Void magic spells, which can be found in Deep Magic for 5th Edition. At the GM’s discretion, these spells can be replaced with other spells of similar levels and similarly related to darkness, destruction, or the Void. Dangers of the Void. The first time you cast a spell from the cap each day, your eyes shine with a sickly green light until you finish a long rest. If you spend at least 3 charges from the cap, a trickle of blood also seeps from beneath the cap until you finish a long rest. In addition, each time you cast a spell from the cap, you must succeed on a DC 12 Intelligence saving throw or your Intelligence is reduced by 2 until you finish a long rest. This DC increases by 1 for each charge you spent to cast the spell. Void Calls to Void. When you cast a spell from the cap while within 1 mile of a creature that understands Void Speech, the creature immediately knows your name, location, and general appearance.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_slatelight-ring", + "fields": { + "name": "Slatelight Ring", + "desc": "This decorated thick gold band is adorned with a single polished piece of slate. While wearing this ring, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing this ring increases its range by 60 feet. In addition, you can use an action to cast the faerie fire spell (DC 15) from it. The ring can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sleep-pellet", + "fields": { + "name": "Sleep Pellet", + "desc": "This small brass pellet measures 1/2 of an inch in diameter. Typically, 1d6 + 4 sleep pellets are found together. You can use the pellet as a sling bullet and shoot it at a creature using a sling. On a hit, the pellet is destroyed, and the target must succeed on a DC 13 Constitution saving throw or fall unconscious for 1 minute. Alternatively, you can use an action to swallow the pellet harmlessly. Once before 1 minute has passed, you can use an action to exhale a cloud of sleeping gas in a 15-foot cone. Each creature in the area must succeed on a DC 13 Constitution saving throw or fall unconscious for 1 minute. An unconscious creature awakens if it takes damage or if another creature uses an action to wake it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_slick-cuirass", + "fields": { + "name": "Slick Cuirass", + "desc": "This suit of leather armor has a shiny, greasy look to it. While wearing the armor, you have advantage on ability checks and saving throws made to escape a grapple. In addition, while squeezing through a smaller space, you don't have disadvantage on attack rolls and Dexterity saving throws.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_slimeblade-greatsword", + "fields": { + "name": "Slimeblade Greatsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_slimeblade-longsword", + "fields": { + "name": "Slimeblade Longsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_slimeblade-rapier", + "fields": { + "name": "Slimeblade Rapier", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_slimeblade-scimitar", + "fields": { + "name": "Slimeblade Scimitar", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_slimeblade-shortsword", + "fields": { + "name": "Slimeblade Shortsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sling-stone-of-screeching", + "fields": { + "name": "Sling Stone of Screeching", + "desc": "This sling stone is carved with an open mouth that screams in hellish torment when hurled with a sling. Typically, 1d4 + 1 sling stones of screeching are found together. When you fire the stone from a sling, it changes into a screaming bolt, forming a line 5 feet wide that extends out from you to a target within 30 feet. Each creature in the line excluding you and the target must make a DC 13 Constitution saving throw. On a failure, a creature takes 2d8 thunder damage and is knocked prone. On a success, a creature takes half the damage and isn't knocked prone. Make a ranged weapon attack against the target. On a hit, the target takes damage from the sling stone plus 3d8 thunder damage and is knocked prone. Once a sling stone of screeching has dealt its damage to a creature, it becomes a nonmagical sling stone.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_slippers-of-the-cat", + "fields": { + "name": "Slippers of the Cat", + "desc": "While you wear these fine, black cloth slippers, you have advantage on Dexterity (Acrobatics) checks to keep your balance. When you fall while wearing these slippers, you land on your feet, and if you succeed on a DC 13 Dexterity saving throw, you take only half the falling damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_slipshod-hammer", + "fields": { + "name": "Slipshod Hammer", + "desc": "This large smith's hammer appears well-used and rough in make and maintenance. If you use this hammer as part of a set of smith's tools, you can repair metal items in half the time, but the appearance of the item is always sloppy and haphazard. When you roll a 20 on an attack roll made with this magic weapon against a target wearing metal armor, the target's armor is partly damaged and takes a permanent and cumulative –2 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sloughide-bombard", + "fields": { + "name": "Sloughide Bombard", + "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_smoking-plate-of-heithmir", + "fields": { + "name": "Smoking Plate of Heithmir", + "desc": "This armor is soot-colored plate with grim dwarf visages on the pauldrons. The pauldrons emit curling smoke and are warm to the touch. You gain a +3 bonus to AC and are resistant to cold damage while wearing this armor. In addition, when you are struck by an attack while wearing this armor, you can use a reaction to fill a 30-foot cone in front of you with dense smoke. The smoke spreads around corners, and its area is heavily obscured. Each creature in the smoke when it appears and each creature that ends its turn in the smoke must succeed on a DC 17 Constitution saving throw or be poisoned for 1 minute. A wind of at least 20 miles per hour disperses the smoke. Otherwise, the smoke lasts for 5 minutes. Once used, this property of the armor can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_smugglers-bag", + "fields": { + "name": "Smuggler's Bag", + "desc": "This leather-bottomed, draw-string canvas bag appears to be a sturdy version of a common sack. If you use an action to speak the command word while holding the bag, all the contents within shift into an extradimensional space, leaving the bag empty. The bag can then be filled with other items. If you speak the command word again, the bag's current contents transfer into the extradimensional space, and the items in the extradimensional space transfer to the bag. The extradimensional space and the bag itself can each hold up to 1 cubic foot of items or 30 pounds of gear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_smugglers-coat", + "fields": { + "name": "Smuggler's Coat", + "desc": "When you attune yourself to this coat, it conforms to you in a color and style of your choice. It has no visible pockets, but they appear if you place your hands against the side of the coat and expect pockets. Once your hand is withdrawn, the pockets vanish and take anything placed in them to an extradimensional space. The coat can hold up to 40 pounds of material in up to 10 different extradimensional pockets. Nothing can be placed inside the coat that won't fit in a pocket. Retrieving an item from a pocket requires you to use an action. When you reach into the coat for a specific item, the correct pocket always appears with the desired item magically on top. As a bonus action, you can force the pockets to become visible on the coat. While you maintain concentration, the coat displays its four outer pockets, two on each side, four inner pockets, and two pockets on each sleeve. While the pockets are visible, any creature you allow can store or retrieve an item as an action. If the coat is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. Placing the coat inside an extradimensional space, such as a bag of holding, instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_snake-basket", + "fields": { + "name": "Snake Basket", + "desc": "The bowl of this simple, woven basket has hig-sloped sides, making it almost spherical. A matching woven lid sits on top of it, and leather straps secure the lid through loops on the base. The basket can hold up to 10 pounds. As an action, you can speak the command word and remove the lid to summon a swarm of poisonous snakes. You can't summon the snakes if items are in the basket. The snakes return to the basket, vanishing, after 1 minute or when the swarm is reduced to 0 hit points. If the basket is unavailable or otherwise destroyed, the snakes instead dissipate into a fine sand. The swarm is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the swarm moves and what action it takes on its next turn, or give it general orders, such as to attack your enemies. In the absence of such orders, the swarm acts in a fashion appropriate to its nature. Once the basket has been used to summon a swarm of poisonous snakes, it can't be used in this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_soldras-staff", + "fields": { + "name": "Soldra's Staff", + "desc": "Crafted by a skilled wizard and meant to be a spellcaster's last defense, this staff is 5 feet long, made of yew wood that curves at its top, is iron shod at its mid-section, and capped with a silver dragon's claw that holds a lustrous, though rough and uneven, black pearl. When you make an attack with this staff, it howls and whistles hauntingly like the wind. When you cast a spell from this staff, it chirps like insects on a hot summer night. This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. It has 3 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: faerie fire (1 charge) or gust of wind (2 charges). The staff regains 1d3 expended charges daily at dawn. Once daily, it can regain 1 expended charge by exposing the staff 's pearl to moonlight for 1 minute.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_song-saddle-of-the-khan", + "fields": { + "name": "Song-Saddle of the Khan", + "desc": "Made from enchanted leather and decorated with songs lyrics written in calligraphy, this well-crafted saddle is enchanted with the impossible speed of a great horseman. While this saddle is attached to a horse, that horse's speed is increased by 10 feet. In addition, the horse can Disengage as a bonus action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_soul-bond-chalice", + "fields": { + "name": "Soul Bond Chalice", + "desc": "The broad, shallow bowl of this silver chalice rests in the outstretched wings of the raven figure that serves as the chalice's stem. The raven's talons, perched on a branch, serve as the chalice's base. A pair of interlocking gold rings adorn the sides of the bowl. As a 1-minute ritual, you and another creature that isn't a construct or undead and that has an Intelligence of 6 or higher can fill the chalice with wine and mix in three drops of blood from each of you. You and the other participant can then drink from the chalice, mingling your spirits and creating a magical connection between you. This connection is unaffected by distance, though it ceases to function if you aren't on the same plane of existence. The bond lasts until one or both of you end it of your own free will (no action required), one or both of you use the chalice to bond with another creature, or one of you dies. You and your bonded partner each gain the following benefits: - You are proficient in each saving throw that your bonded partner is proficient in.\n- If you are within 5 feet of your bonded partner and you fail a saving throw, your bonded partner can make the saving throw as well. If your bonded partner succeeds, you can choose to succeed on the saving throw that you failed.\n- You can use a bonus action to concentrate on the magical bond between you to determine your bonded partner's status. You become aware of the direction and distance to your bonded partner, whether they are unharmed or wounded, any conditions that may be currently affecting them, and whether or not they are afflicted with an addiction, curse, or disease. If you can see your bonded partner, you automatically know this information just by looking at them.\n- If your bonded partner is wounded, you can use a bonus action to take 4d8 slashing damage, healing your bonded partner for the same amount. If your bonded partner is reduced to 0 hit points, you can do this as a reaction.\n- If you are under the effects of a spell that has a duration but doesn't require concentration, you can use an action to touch your bonded partner to share the effects of the spell with them, splitting the remaining duration (rounded down) between you. For example, if you are affected by the mage armor spell and it has 4 hours remaining, you can use an action to touch your bonded partner to give them the benefits of the mage armor spell, reducing the duration to 2 hours on each of you.\n- If your bonded partner dies, you must make a DC 15 Constitution saving throw. On a failure, you drop to 0 hit points. On a success, you are stunned until the end of your next turn by the shock of the bond suddenly being broken. Once the chalice has been used to bond two creatures, it can't be used again until 7 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_soul-jug", + "fields": { + "name": "Soul Jug", + "desc": "If you unstopper the jug, your soul enters it. This works like the magic jar spell, except it has a duration of 9 hours and the jug acts as the gem. The jug must remain unstoppered for you to move your soul to a nearby body, back to the jug, or back to your own body. Possessing a target is an action, and your target can foil the attempt by succeeding on a DC 17 Charisma saving throw. Only one soul can be in the jug at a time. If a soul is in the jug when the duration ends, the jug shatters.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_spear-of-the-north", + "fields": { + "name": "Spear of the North", + "desc": "This spear has an ivory haft, and tiny snowflakes occasionally fall from its tip. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit with an attack using this magic spear, the target takes an extra 1d6 cold damage. You can use an action to transform the spear into a pair of snow skis. While wearing the snow skis, you have a walking speed of 40 feet when you walk across snow or ice, and you can walk across icy surfaces without needing to make an ability check. You can use a bonus action to transform the skis back into the spear. While the spear is transformed into a pair of skis, you can't make attacks with it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_spear-of-the-stilled-heart", + "fields": { + "name": "Spear of the Stilled Heart", + "desc": "This rowan wood spear has a thick knot in the center of the haft that uncannily resembles a petrified human heart. When you hit with an attack using this magic spear, the target takes an extra 1d6 necrotic damage. The spear has 3 charges, and it regains all expended charges daily at dusk. When you hit a creature with an attack using it, you can expend 1 charge to deal an extra 3d6 necrotic damage to the target. You regain hit points equal to the necrotic damage dealt.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_spear-of-the-western-whale", + "fields": { + "name": "Spear of the Western Whale", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. Fashioned in the style of a whaling spear, this long, barbed weapon is made from bone and heavy, yet pliant, ash wood. Its point is lined with decorative engravings of fish, clam shells, and waves. While you carry this spear, you have advantage on any Wisdom (Survival) checks to acquire food via fishing, and you have advantage on all Strength (Athletics) checks to swim. When set on the ground, the spear always spins to point west. When thrown in a westerly direction, the spear deals an extra 2d6 cold damage to the target.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_spearbiter", + "fields": { + "name": "Spearbiter", + "desc": "The front of this shield is fashioned in the shape of a snarling wolf ’s head. Spearbiter (Uncommon). When a creature you can see within 5 feet of you makes a melee weapon attack against you, you can use a reaction to attack the attacker’s weapon, the wolf ’s head animating and snapping its jaws at the weapon. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. If the result is higher than the attacker’s attack roll against you, the attacker’s attack misses you. You can’t use this property of the shield again until the next dawn. Adamantine Spearbiter (Rare). A more powerful version of this shield exists. Its wolf ’s head is fitted with adamantine fangs and appears larger and more menacing. When you use your reaction and animate the wolf ’s head to snap at the attacker’s weapon, you have advantage on the attack roll. In addition, there is no longer a limit to the number of times you can use this property of the shield.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_spectral-blade", + "fields": { + "name": "Spectral Blade", + "desc": "This blade seems to flicker in and out of existence but always strikes true. You gain a +1 bonus to attack and damage rolls made with this magic weapon, and you can choose for its attacks to deal force damage instead of piercing damage. As an action while holding this sword or as a reaction when you deal damage to a creature with it, you can turn incorporeal until the start of your next turn. While incorporeal, you can move through other creatures and objects as if they were difficult terrain. You take 1d10 force damage if you end your turn inside an object.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_spell-disruptor-horn", + "fields": { + "name": "Spell Disruptor Horn", + "desc": "This horn is carved with images of a Spellhound (see Tome of Beasts 2) and invokes the antimagic properties of the hound's howl. You use an action to blow this horn, which emits a high-pitched, multiphonic sound that disrupts all magical effects within 30 feet of you. Any spell of 3rd level or lower in the area ends. For each spell of 4th-level or higher in the area, the horn makes a check with a +3 bonus. The DC equals 10 + the spell's level. On a success, the spell ends. In addition, each spellcaster within 30 feet of you and that can hear the horn must succeed on a DC 15 Constitution saving throw or be stunned until the end of its next turn. Once used, the horn can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_spice-box-of-zest", + "fields": { + "name": "Spice Box of Zest", + "desc": "This small, square wooden box is carved with scenes of life in a busy city. Inside, the box is divided into six compartments, each holding a different magical spice. A small wooden spoon is also stored inside the box for measuring. A spice box of zest contains six spoonfuls of each spice when full. You can add one spoonful of a single spice per person to a meal that you or someone else is cooking. The magic of the spices is nullified if you add two or more spices together. If a creature consumes a meal cooked with a spice, it gains a benefit based on the spice used in the meal. The effects last for 1 hour unless otherwise noted.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_spice-box-spoon", + "fields": { + "name": "Spice Box Spoon", + "desc": "This lacquered wooden spoon carries an entire cupboard within its smooth contours. When you swirl this spoon in any edible mixture, such as a drink, stew, porridge, or other dish, it exudes a flavorful aroma and infuses the mixture. This culinary wonder mimics any imagined variation of simple seasonings, from salt and pepper to aromatic herbs and spice blends. These flavors persist for 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_spider-grenade", + "fields": { + "name": "Spider Grenade", + "desc": "Silver runes decorate the hairy legs and plump abdomen of this fist-sized preserved spider. You can use an action to throw the spider up to 30 feet. It explodes on impact and is destroyed. Each creature within a 20-foot radius of where the spider landed must succeed on a DC 13 Dexterity saving throw or be restrained by sticky webbing. A creature restrained by the webs can use its action to make a DC 13 Strength check. If it succeeds, it is no longer restrained. In addition, the webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire. The webs also naturally unravel after 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_spider-staff", + "fields": { + "name": "Spider Staff", + "desc": "Delicate web-like designs are carved into the wood of this twisted staff, which is often topped with the carved likeness of a spider. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of spiders appears and consumes the staff then vanishes. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: giant insect (4 charges), spider climb (2 charges), or web (2 charges). Spider Swarm. While holding the staff, you can use an action and expend 1 charge to cause a swarm of spiders to appear in a space that you can see within 60 feet of you. The swarm is friendly to you and your companions but otherwise acts on its own. The swarm of spiders remains for 1 minute, until you dismiss it as an action, or until you move more than 100 feet away from it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_splint-of-warding-1", + "fields": { + "name": "Splint of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_splint-of-warding-2", + "fields": { + "name": "Splint of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_splint-of-warding-3", + "fields": { + "name": "Splint of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_splinter-staff", + "fields": { + "name": "Splinter Staff", + "desc": "This roughly made staff has cracked and splintered ends and can be wielded as a magic quarterstaff. When you roll a 20 on an attack roll made with this weapon, you embed a splinter in the target's body, and the pain and discomfort of the splinter is distracting. While the splinter remains embedded, the target has disadvantage on Dexterity, Intelligence, and Wisdom checks, and, if it is concentrating on a spell, it must succeed on a DC 10 Constitution saving throw at the start of each of its turns to maintain concentration on the spell. A creature, including the target, can take its action to remove the splinter by succeeding on a DC 13 Wisdom (Medicine) check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_spyglass-of-summoning", + "fields": { + "name": "Spyglass of Summoning", + "desc": "Arcane runes encircle this polished brass spyglass. You can view creatures and objects as far as 600 feet away through the spyglass, and they are magnified to twice their size. You can magnify your view of a creature or object to up to four times its size by twisting the end of the spyglass.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-binding", + "fields": { + "name": "Staff of Binding", + "desc": "Made from stout oak with steel bands and bits of chain running its entire length, the staff feels oddly heavy. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff constricts in upon itself and is destroyed. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: arcane lock (2 charges), hold monster (5 charges), hold person (2 charges), lock armor* (2 charges), or planar binding (5 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Unbound. While holding the staff, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-camazotz", + "fields": { + "name": "Staff of Camazotz", + "desc": "This staff of petrified wood is topped with a stylized carving of a bat with spread wings, a mouth baring great fangs, and a pair of ruby eyes. It has 10 charges and regains 1d6 + 4 charges daily at dawn. As long as the staff holds at least 1 charge, you can communicate with bats as if you shared a language. Bat and bat-like beasts and monstrosities never attack you unless magically forced to do so or unless you attack them first. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: darkness (2 charges), dominate monster (8 charges), or flame strike (5 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-channeling", + "fields": { + "name": "Staff of Channeling", + "desc": "This plain, wooden staff has 5 charges and regains 1d4 + 1 expended charges daily at dawn. When you cast a spell while holding this staff, you can expend 1 or more of its charges as part of the casting to increase the level of the spell. Expending 1 charge increases the spell's level by 1, expending 3 charges increases the spell's level by 2, and expending 5 charges increases the spell's level by 3. When you increase a spell's level using the staff, the spell casts as if you used a spell slot of a higher level, but you don't expend that higher-level spell slot. You can't use the magic of this staff to increase a spell to a slot level higher than the highest spell level you can cast. For example, if you are a 7th-level wizard, and you cast magic missile, expending a 2nd-level spell slot, you can expend 3 of the staff 's charges to cast the spell as a 4th-level spell, but you can't expend 5 of the staff 's charges to cast the spell as a 5th-level spell since you can't cast 5th-level spells.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-desolation", + "fields": { + "name": "Staff of Desolation", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. When you hit an object or structure with a melee attack using the staff, you deal double damage (triple damage on a critical hit). The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: thunderwave (1 charge), shatter (2 charges), circle of death (6 charges), disintegrate (6 charges), or earthquake (8 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-dissolution", + "fields": { + "name": "Staff of Dissolution", + "desc": "A gray crystal floats in the crook of this twisted staff. The crystal breaks into fragments as it slowly revolves, and those fragments break into smaller pieces then into clouds of dust. In spite of this, the crystal never seems to reduce in size. You have resistance to necrotic damage while you hold this staff. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: blight (4 charges), disintegrate (6 charges), or shatter (2 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-fate", + "fields": { + "name": "Staff of Fate", + "desc": "One half of this staff is crafted of white ash and capped in gold, while the other is ebony and capped in silver. The staff has 10 charges for the following properties. It regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff splits into two halves with a resounding crack and becomes nonmagical. Fortune. While holding the staff, you can use an action to expend 1 of its charges and touch a creature with the gold end of the staff, giving it good fortune. The target can choose to use its good fortune and have advantage on one ability check, attack roll, or saving throw. This effect ends after the target has used the good fortune three times or when 24 hours have passed. Misfortune. While holding the staff, you can use an action to touch a creature with the silver end of the staff. The target must succeed on a DC 15 Wisdom saving throw or have disadvantage on one of the following (your choice): ability checks, attack rolls, or saving throws. If the target fails the saving throw, the staff regains 1 expended charge. This effect lasts until removed by the remove curse spell or until you use an action to expend 1 of its charges and touch the creature with the gold end of the staff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: augury (2 charges), bane (1 charge), bless (1 charge), remove curse (3 charges), or divination (4 charges). You can also use an action to cast the guidance spell from the staff without using any charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-feathers", + "fields": { + "name": "Staff of Feathers", + "desc": "Several eagle feathers line the top of this long, thin staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff explodes into a mass of eagle feathers and is destroyed. Feather Travel. When you are targeted by a ranged attack while holding the staff, you can use a reaction to teleport up to 10 feet to an unoccupied space that you can see. When you do, you briefly transform into a mass of feathers, and the attack misses. Once used, this property can’t be used again until the next dawn. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: conjure animals (2 giant eagles only, 3 charges), fly (3 charges), or gust of wind (2 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-giantkin", + "fields": { + "name": "Staff of Giantkin", + "desc": "This stout, oaken staff is 7 feet long, bound in iron, and topped with a carving of a broad, thick-fingered hand. While holding this magic quarterstaff, your Strength score is 20. This has no effect on you if your Strength is already 20 or higher. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the hand slowly clenches into a fist, and the staff becomes a nonmagical quarterstaff.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-ice-and-fire", + "fields": { + "name": "Staff of Ice and Fire", + "desc": "Made from the branch of a white ash tree, this staff holds a sapphire at one end and a ruby at the other. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: flaming sphere (2 charges), freezing sphere (6 charges), sleet storm (3 charges), or wall of fire (4 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff and its gems crumble into ash and snow and are destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-master-lu-po", + "fields": { + "name": "Staff of Master Lu Po", + "desc": "This plain-looking, wooden staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 12 charges and regains 1d6 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +1 bonus to attack and damage rolls, loses all other properties, and the next time you roll a 20 on an attack roll using the staff, it explodes, dealing an extra 6d6 force damage to the target then is destroyed. On a 20, the staff regains 1d10 + 2 charges. Some of the staff ’s properties require the target to make a saving throw to resist or lessen the property’s effects. The saving throw DC is equal to 8 + your proficiency bonus + your Wisdom modifier. Bamboo in the Rainy Season. While holding the staff, you can use a bonus action to expend 1 charge to grant the staff the reach property until the start of your next turn. Gate to the Hell of Being Roasted Alive. While holding the staff, you can use an action to expend 1 charge to cast the scorching ray spell from it. When you make the spell’s attacks, you use your Wisdom modifier as your spellcasting ability. Iron Whirlwind. While holding the staff, you use an action to expend 2 charges, causing weighted chains to extend from the end of the staff and reducing your speed to 0 until the end of your next turn. As part of the same action, you can make one attack with the staff against each creature within your reach. If you roll a 1 on any attack, you must immediately make an attack roll against yourself as well before resolving any other attacks against opponents. Monkey Steals the Peach. While holding the staff, you can use a bonus action to expend 1 charge to extend sharp, grabbing prongs from the end of the staff. Until the start of your next turn, each time you hit a creature with the staff, the target takes piercing damage instead of the bludgeoning damage normal for the staff, and the target must make a DC 15 Constitution saving throw. On a failure, the target is incapacitated until the end of its next turn as it suffers crippling pain. On a success, the target has disadvantage on its next attack roll. Rebuke the Disobedient Child. When you are hit by a creature you can see within your reach while holding this staff, you can use a reaction to expend 1 charge to make an attack with the staff against the attacker. Seven Vengeful Demons Death Strike. While holding the staff, you can use an action to expend 7 charges and make one attack against a target within 5 feet of you with the staff. If the attack hits, the target takes bludgeoning damage as normal, and it must make a Constitution saving throw, taking 7d8 necrotic damage on a failed save, or half as much damage on a successful one. If the target dies from this damage, the staff ceases to function as anything other than a magic quarterstaff until the next dawn, but it regains all expended charges when its powers return. A humanoid killed by this damage rises at the start of your next turn as a zombie that is permanently under your command, following your verbal orders to the best of its ability. Swamp Hag's Deadly Breath. While holding the staff, you can use an action to expend 2 charges to expel a 15-foot cone of poisonous gas out of the end of the staff. Each creature in the area must make a Constitution saving throw. On a failure, a creature takes 4d6 poison damage and is poisoned for 1 hour. On a success, a creature takes half the damage and isn’t poisoned. Vaulting Leap of the Clouds. If you are holding the staff and it has at least 1 charge, you can cast the jump spell from it as a bonus action at will without using any charges, but you can target only yourself when you do so.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-midnight", + "fields": { + "name": "Staff of Midnight", + "desc": "Fashioned from a single branch of polished ebony, this sturdy staff is topped by a lustrous jet. While holding it and in dim light or darkness, you gain a +1 bonus to AC and saving throws. This staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: circle of death (6 charges), darkness (2 charges), or vampiric touch (3 charges). You can also use an action to cast the chill touch cantrip from the staff without using any charges. The staff regains 1d6 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dark powder and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-minor-curses", + "fields": { + "name": "Staff of Minor Curses", + "desc": "This twisted, wooden staff has 10 charges. While holding it, you can use an action to inflict a minor curse on a creature you can see within 30 feet of you. The target must succeed on a DC 10 Constitution saving throw or be affected by the chosen curse. A minor curse causes a non-debilitating effect or change in the creature, such as an outbreak of boils on one section of the target's skin, intermittent hiccupping, transforming the target's ears into small, donkey-like ears, or similar effects. The curse never interrupts spellcasting and never causes disadvantage on ability checks, attack rolls, or saving throws. The curse lasts for 24 hours or until removed by the remove curse spell or similar magic. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a cloud of noxious gas, and you are targeted with a minor curse of the GM's choice.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-parzelon", + "fields": { + "name": "Staff of Parzelon", + "desc": "This tarnished silver staff is tipped with the unholy visage of a fiendish lion skull carved from labradorite—a likeness of the Arch-Devil Parzelon (see Creature Codex). The staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), dominate person (5 charges), lightning bolt (3 charges), locate creature (4 charges), locate object (2 charges), magic missile (1 charge), scrying (5 charges), or suggestion (2 charges). You can also use an action to cast one of the following spells from the staff without using any charges: comprehend languages, detect evil and good, detect magic, identify, or message. Extract Ageless Knowledge. As an action, you can touch the head of the staff to a corpse. You must form a question in your mind as part of this action. If the corpse has an answer to your question, it reveals the information to you. The answer is always brief—no more than one sentence—and very specific to the framed question. The corpse doesn’t need a mouth to answer; you receive the information telepathically. The corpse knows only what it knew in life, and it is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This property doesn’t return the creature’s soul to its body, only its animating spirit. Thus, the corpse can’t learn new information, doesn’t comprehend anything that has happened since it died, and can’t speculate about future events. Once the staff has been used to ask a corpse 5 questions, it can’t be used to extract knowledge from that same corpse again until 3 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-portals", + "fields": { + "name": "Staff of Portals", + "desc": "This iron-shod wooden staff is heavily worn, and it can be wielded as a quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses all of its magic and becomes a nonmagical quarterstaff. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: arcane lock (2 charges), dimension door (4 charges), knock (2 charges), or passwall (5 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-scrying", + "fields": { + "name": "Staff of Scrying", + "desc": "This is a graceful, highly polished wooden staff crafted from willow. A crystal ball tops the staff, and smooth gold bands twist around its shaft. This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: detect thoughts (2 charges), locate creature (4 charges), locate object (2 charges), scrying (5 charges), or true seeing (6 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a bright flash of light erupts from the crystal ball, and the staff vanishes.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-spores", + "fields": { + "name": "Staff of Spores", + "desc": "Mold and mushrooms coat this gnarled wooden staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff rots into tiny clumps of slimy, organic matter and is destroyed. Mushroom Disguise. While holding the staff, you can use an action to expend 2 charges to cover yourself and anything you are wearing or carrying with a magical illusion that makes you look like a mushroom for up to 1 hour. You can appear to be a mushroom of any color or shape as long as it is no more than one size larger or smaller than you. This illusion ends early if you move or speak. The changes wrought by this effect fail to hold up to physical inspection. For example, if you appear to have a spongy cap in place of your head, someone touching the cap would feel your face or hair instead. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that you are disguised. Speak with Plants. While holding the staff, you can use an action to expend 1 of its charges to cast the speak with plants spell from it. Spore Cloud. While holding the staff, you can use an action to expend 3 charges to release a cloud of spores in a 20-foot radius from you. The spores remain for 1 minute, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. When a creature, other than you, enters the cloud of spores for the first time on a turn or starts its turn there, that creature must succeed on a DC 15 Constitution saving throw or take 1d6 poison damage and become poisoned until the start of its next turn. A wind of at least 10 miles per hour disperses the spores and ends the effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-the-armada", + "fields": { + "name": "Staff of the Armada", + "desc": "This gold-shod staff is constructed out of a piece of masting from a galleon. The staff can be wielded as a magic quarterstaff that grants you a +1 bonus to attack and damage rolls made with it. While you are on board a ship, this bonus increases to +2. The staff has 10 charges and regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses all of its magic and becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: control water (4 charges), fog cloud (1 charge), gust of wind (2 charges), or water walk (3 charges). You can also use an action to cast the ray of frost cantrip from the staff without using any charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-the-artisan", + "fields": { + "name": "Staff of the Artisan", + "desc": "This simple, wooden staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever. Create Object. You can use an action to expend 2 charges to conjure an inanimate object in your hand or on the ground in an unoccupied space you can see within 10 feet of you. The object can be no larger than 3 feet on a side and weigh no more than 10 pounds, and its form must be that of a nonmagical object you have seen. You can’t create items that ordinarily require a high degree of craftsmanship, such as jewelry, weapons, glass, or armor, unless you have proficiency with the type of artisan’s tools used to craft such objects. The object sheds dim light in a 5-foot radius. The object disappears after 1 hour, when you use this property again, or if the object takes or deals any damage. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: animate objects (5 charges), fabricate (4 charges) or floating disk (1 charge). You can also use an action to cast the mending spell from the staff without using any charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-the-cephalopod", + "fields": { + "name": "Staff of the Cephalopod", + "desc": "This ugly staff is fashioned from a piece of gnarled driftwood and is crowned with an octopus carved from brecciated jasper. Its gray and red stone tentacles wrap around the top half of the staff. While holding this staff, you have a swimming speed of 30 feet. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the jasper octopus crumbles to dust, and the staff becomes a nonmagical piece of driftwood. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: black tentacles (4 charges), conjure animals (only beasts that can breathe water, 3 charges), darkness (2 charges), or water breathing (3 charges). Ink Cloud. While holding this staff, you can use an action and expend 1 charge to cause an inky, black cloud to spread out in a 30-foot radius from you. The cloud can form in or out of water. The cloud remains for 10 minutes, making the area heavily obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour or a steady current (if underwater) disperses the cloud and ends the effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-the-four-winds", + "fields": { + "name": "Staff of the Four Winds", + "desc": "Made of gently twisting ash and engraved with spiraling runes, the staff feels strangely lighter than its size would otherwise suggest. This staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: circle of wind* (1 charge), feather fall (1 charge), gust of wind (2 charges), storm god's doom* (3 charges), wind tunnel* (1 charge), wind walk (6 charges), wind wall (3 charges), or wresting wind* (2 charges). You can also use an action to cast the wind lash* spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to breezes, wind, or movement. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles into ashes and is taken away with the breeze.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-the-lantern-bearer", + "fields": { + "name": "Staff of the Lantern Bearer", + "desc": "An iron hook is affixed to the top of this plain, wooden staff. While holding this staff, you can use an action to cast the light spell from it at will, but the light can emanate only from the staff 's hook. If a lantern hangs from the staff 's hook, you gain the following benefits while holding the staff: - You can control the light of the lantern, lighting or extinguishing it as a bonus action. The lantern must still have oil, if it requires oil to produce a flame.\n- The lantern's flame can't be extinguished by wind or water.\n- If you are a spellcaster, you can use the staff as a spellcasting focus. When you cast a spell that deals fire or radiant damage while using this staff as your spellcasting focus, you gain a +1 bonus to the spell's attack roll, or the spell's save DC increases by 1 (your choice).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-the-peaks", + "fields": { + "name": "Staff of the Peaks", + "desc": "This staff is made of rock crystal yet weighs the same as a wooden staff. The staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to spell attack rolls. In addition, you are immune to the effects of high altitude and severe cold weather, such as hypothermia and frostbite. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff shatters into fine stone fragments and is destroyed. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: control weather (8 charges), fault line* (6 charges), gust of wind (2 charges), ice storm (4 charges), jump (1 charge), snow boulder* (4 charges), or wall of stone (5 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Stone Strike. When you hit a creature or object made of stone or earth with this staff, you can expend 5 of its charges to shatter the target. The target must make a DC 17 Constitution saving throw, taking an extra 10d6 force damage on a failed save, or half as much damage on a successful one. If the target is an object that is being worn or carried, the creature wearing or carrying it must make the saving throw, but only the object takes the damage. If this damage reduces the target to 0 hit points, it shatters and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-the-scion", + "fields": { + "name": "Staff of the Scion", + "desc": "This unwholesome staff is crafted of a material that appears to be somewhere between weathered wood and dried meat. It weeps beads of red liquid that are thick and sticky like tree sap but smell of blood. A crystalized yellow eye with a rectangular pupil, like the eye of a goat, sits at its top. You can wield the staff as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the eye liquifies as the staff shrivels and twists into a blackened, smoking ruin and is destroyed. Ember Cloud. While holding the staff, you can use an action and expend 2 charges to release a cloud of burning embers from the staff. Each creature within 10 feet of you must make a DC 15 Constitution saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one. The ember cloud remains until the start of your next turn, making the area lightly obscured for creatures other than you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. Fiery Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 fire damage to the target. If you take fire damage while wielding the staff, you have advantage on attack rolls with it until the end of your next turn. While holding the staff, you have resistance to fire damage. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: augury (2 charges), barkskin (2 charges), confusion (4 charges), entangle (1 charge), or wall of fire (4 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-the-treant", + "fields": { + "name": "Staff of the Treant", + "desc": "This unassuming staff appears to be little more than the branch of a tree. While holding this staff, your skin becomes bark-like, and the hair on your head transforms into a chaplet of green leaves. This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. Nature’s Guardian. While holding this staff, you have resistance to cold and necrotic damage, but you have vulnerability to fire and radiant damage. In addition, you have advantage on attack rolls against aberrations and undead, but you have disadvantage on saving throws against spells and other magical effects from fey and plant creatures. One with the Woods. While holding this staff, your AC can’t be less than 16, regardless of what kind of armor you are wearing, and you can’t be tracked when you travel through terrain with excessive vegetation, such as a forest or grassland. Tree Friend. While holding this staff, you can use an action to animate a tree you can see within 60 feet of you. The tree uses the statistics of an animated tree and is friendly to you and your companions. Roll initiative for the tree, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don’t directly harm other trees or the natural world. If you don’t issue any commands to the three, it defends itself from hostile creatures but otherwise takes no actions. Once used, this property can’t be used again until the next dawn. Venerated Tree. If you spend 1 hour in silent reverence at the base of a Huge or larger tree, you can use an action to plant this staff in the soil above the tree’s roots and awaken the tree as a treant. The treant isn’t under your control, but it regards you as a friend as long as you don’t harm it or the natural world around it. Roll a d20. On a 1, the staff roots into the ground, growing into a sapling, and losing its magic. Otherwise, after you awaken a treant with this staff, you can’t do so again until 30 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-the-unhatched", + "fields": { + "name": "Staff of the Unhatched", + "desc": "This staff carved from a burnt ash tree is topped with an unhatched dragon’s (see Creature Codex) skull. This staff can be wielded as a magic quarterstaff. The staff has 5 charges for the following properties. It regains 1d4 + 1 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed. Necrotic Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d8 necrotic damage to the target. Spells. While holding the staff, you can use an action to expend 1 charge to cast bane or protection from evil and good from it using your spell save DC. You can also use an action to cast one of the following spells from the staff without using any charges, using your spell save DC and spellcasting ability: chill touch or minor illusion.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-the-white-necromancer", + "fields": { + "name": "Staff of the White Necromancer", + "desc": "Crafted from polished bone, this strange staff is carved with numerous arcane symbols and mystical runes. The staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: false life (1 charge), gentle repose (2 charges), heartstop* (2 charges), death ward (4 charges), raise dead (5 charges), revivify (3 charges), shared sacrifice* (2 charges), or speak with dead (3 charges). You can also use an action to cast the bless the dead* or spare the dying spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the bone staff crumbles to dust.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-thorns", + "fields": { + "name": "Staff of Thorns", + "desc": "This gnarled and twisted oak staff has numerous thorns growing from its surface. Green vines tightly wind their way up along the shaft. The staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the thorns immediately fall from the staff and it becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: barkskin (2 charges), entangle (1 charge), speak with plants (3 charges), spike growth (2 charges), or wall of thorns (6 charges). Thorned Strike. When you hit with a melee attack using the staff, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 piercing damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-voices", + "fields": { + "name": "Staff of Voices", + "desc": "The length of this wooden staff is carved with images of mouths whispering, speaking, and screaming. This staff can be wielded as a magic quarterstaff. While holding this staff, you can't be deafened, and you can act normally in areas where sound is prevented, such as in the area of a silence spell. Any creature that is not deafened can hear your voice clearly from up to 1,000 feet away if you wish them to hear it. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the mouths carved into the staff give a collective sigh and close, and the staff becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: divine word (7 charges), magic mouth (2 charges), speak with animals (1 charge), speak with dead (3 charges), speak with plants (3 charges), or word of recall (6 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges. Thunderous Shout. While holding the staff, you can use an action to expend 1 charge and release a chorus of mighty shouts in a 15-foot cone from it. Each creature in the area must make a Constitution saving throw. On a failure, a creature takes 2d8 thunder damage and is deafened for 1 minute. On a success, a creature takes half the damage and is deafened until the end of its next turn. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_staff-of-winter-and-ice", + "fields": { + "name": "Staff of Winter and Ice", + "desc": "This pure white, pine staff is topped with an ornately faceted shard of ice. The entire staff is cold to the touch. You have resistance to cold damage while you hold this staff. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its resistance to cold damage but loses all other properties. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: Boreas’s breath* (2 charges), cone of cold (5 charges), curse of Boreas* (6 charges), ice storm (4 charges), flurry* (1 charge), freezing fog* (3 charges), freezing sphere (6 charges), frostbite* (5 charges), frozen razors* (3 charges), gliding step* (1 charge), sleet storm (3 charges), snow boulder* (4 charges), triumph of ice* (7 charges), or wall of ice (6 charges). You can also use an action to cast the chill touch or ray of frost spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM’s discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to ice, snow, or wintry weather. Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it. You have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take cold damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of cold damage based on how far away it is from the point of origin as shown in the following table. On a successful save, a creature takes half as much damage. | Distance from Origin | Damage |\n| --------------------- | -------------------------------------- |\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_standard-of-divinity-glaive", + "fields": { + "name": "Standard of Divinity (Glaive)", + "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_standard-of-divinity-halberd", + "fields": { + "name": "Standard of Divinity (Halberd)", + "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_standard-of-divinity-lance", + "fields": { + "name": "Standard of Divinity (Lance)", + "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_standard-of-divinity-pike", + "fields": { + "name": "Standard of Divinity (Pike)", + "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_steadfast-splint", + "fields": { + "name": "Steadfast Splint", + "desc": "This armor makes you difficult to manipulate both mentally and physically. While wearing this armor, you have advantage on saving throws against being charmed or frightened, and you have advantage on ability checks and saving throws against spells and effects that would move you against your will.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_stinger", + "fields": { + "name": "Stinger", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with an attack using this weapon, you can use a bonus action to inject paralyzing venom in the target. The target must succeed on a DC 15 Constitution saving throw or become paralyzed for 1 minute. It can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Creatures immune to poison are also immune to this dagger's paralyzing venom. The dagger can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_stolen-thunder", + "fields": { + "name": "Stolen Thunder", + "desc": "This bodhrán drum is crafted of wood from an ash tree struck by lightning, and its head is made from stretched mammoth skin, painted with a stylized thunderhead. While attuned to this drum, you can use it as an arcane focus. While holding the drum, you are immune to thunder damage. While this drum is on your person but not held, you have resistance to thunder damage. The drum has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. In addition, the drum regains 1 expended charge for every 10 thunder damage you ignore due to the resistance or immunity the drum gives you. If you expend the drum's last charge, roll a 1d20. On a 1, it becomes a nonmagical drum. However, if you make a Charisma (Performance) check while playing the nonmagical drum, and you roll a 20, the passion of your performance rekindles the item's power, restoring its properties and giving it 1 charge. If you are hit by a melee attack while using the drum as a shield, you can use a reaction to expend 1 charge to cause a thunderous rebuke. The attacker must make a DC 17 Constitution saving throw. On a failure, the attacker takes 2d8 thunder damage and is pushed up to 10 feet away from you. On a success, the attacker takes half the damage and isn't pushed. The drum emits a thunderous boom audible out to 300 feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_stone-staff", + "fields": { + "name": "Stone Staff", + "desc": "Sturdy and smooth, this impressive staff is crafted from solid stone. Most stone staves are crafted by dwarf mages and few ever find their way into non-dwarven hands. The staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: earthskimmer* (4 charges), entomb* (6 charges), flesh to stone (6 charges), meld into stone (3 charges), stone shape (4 charges), stoneskin (4 charges), or wall of stone (5 charges). You can also use an action to cast the pummelstone* or true strike spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, hundreds of cracks appear across the staff 's surface and it crumbles into tiny bits of stone.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_stonechewer-gauntlets", + "fields": { + "name": "Stonechewer Gauntlets", + "desc": "These impractically spiked gauntlets are made from adamantine, are charged with raw elemental earth magic, and limit the range of motion in your fingers. While wearing these gauntlets, you can't carry a weapon or object, and you can't climb or otherwise perform precise actions requiring the use of your hands. When you hit a creature with an unarmed strike while wearing these gauntlets, the unarmed strike deals an extra 1d4 piercing damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_stonedrift-staff", + "fields": { + "name": "Stonedrift Staff", + "desc": "This staff is fashioned from petrified wood and crowned with a raw chunk of lapis lazuli veined with gold. The staff can be wielded as a magic quarterstaff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed. Spells. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: animate objects (only stone objects, 5 charges), earthquake (8 charges), passwall (only stone surfaces, 5 charges), or stone shape (4 charges). Elemental Speech. You can speak and understand Primordial while holding this staff. Favor of the Earthborn. While holding the staff, you have advantage on Charisma checks made to influence earth elementals or other denizens of the Plane of Earth. Stone Glide. If the staff has at least 1 charge, you have a burrowing speed equal to your walking speed, and you can burrow through earth and stone while holding this staff. While doing so, you don’t disturb the material you move through.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_storytellers-pipe", + "fields": { + "name": "Storyteller's Pipe", + "desc": "This long-shanked wooden smoking pipe is etched with leaves along the bowl. Although it is serviceable as a typical pipe, you can use an action to blow out smoke and shape the smoke into wispy images for 10 minutes. This effect works like the silent image spell, except its range is limited to a 10-foot cone in front of you, and the images can be no larger than a 5-foot cube. The smoky images last for 3 rounds before fading, but you can continue blowing smoke to create more images for the duration or until the pipe burns through the smoking material in it, whichever happens first.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_studded-leather-armor-of-the-leaf", + "fields": { + "name": "Studded Leather Armor of the Leaf", + "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_studded-leather-of-warding-1", + "fields": { + "name": "Studded-Leather of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_studded-leather-of-warding-2", + "fields": { + "name": "Studded-Leather of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_studded-leather-of-warding-3", + "fields": { + "name": "Studded-Leather of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sturdy-crawling-cloak", + "fields": { + "name": "Sturdy Crawling Cloak", + "desc": "This unusual cloak is made of many overlapping, broad strips of thick cloth.\nCrawling Cloak (Common). When you are prone, you can animate the cloak and have it pull you along the ground, allowing you to ignore the extra movement cost for crawling. You can still only move up to your normal movement rate and can’t stand up from prone unless you still have at least half your movement remaining after moving.\n\nSturdy Crawling Cloak (Uncommon). This more powerful version of the crawling cloak also allows you to use the prehensile strips of the cloak to climb, giving you a climbing speed of 20 feet. If you already have a climbing speed, the cloak increases that speed by 10 feet. When using the cloak, you can keep your hands free while climbing.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sturdy-scroll-tube", + "fields": { + "name": "Sturdy Scroll Tube", + "desc": "This ornate scroll case is etched with arcane symbology. Scrolls inside this case are immune to damage and are protected from the elements, as long as the scroll case remains closed and intact. The scroll case itself has immunity to all forms of damage, except force damage and thunder damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_stygian-crook", + "fields": { + "name": "Stygian Crook", + "desc": "This staff of gnarled, rotted wood ends in a hooked curvature like a twisted shepherd's crook. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: bestow curse (3 charges), blight (4 charges), contagion (5 charges), false life (1 charge), or hallow (5 charges). The staff regains 1d6 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff turns to live maggots and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_superior-potion-of-troll-blood", + "fields": { + "name": "Superior Potion of Troll Blood", + "desc": "When you drink this potion, you regain 5 hit points at the start of each of your turns. After it has restored 50 hit points, the potion's effects end.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_supreme-potion-of-troll-blood", + "fields": { + "name": "Supreme Potion of Troll Blood", + "desc": "When you drink this potion, you regain 8 hit points at the start of each of your turns. After it has restored 80 hit points, the potion's effects end.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_survival-knife", + "fields": { + "name": "Survival Knife", + "desc": "When holding this sturdy knife, you can use an action to transform it into a crowbar, a fishing rod, a hunting trap, or a hatchet (mainly a chopping tool; if wielded as a weapon, it uses the same statistics as this dagger, except it deals slashing damage). While holding or touching the transformed knife, you can use an action to transform it into another form or back into its original shape.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_swarmfoe-hide", + "fields": { + "name": "Swarmfoe Hide", + "desc": "While wearing this armor festooned with thin draconic scales, you gain a +1 bonus to AC. You can use the scales as a melee weapon while wearing the armor. You have proficiency with the scales and deal 1d4 slashing damage on a hit (your Strength modifier applies to the attack and damage rolls as normal). Swarms don't have resistance to the damage dealt by the scales. In addition, if a swarm occupies your space, you can attack with the scales as a bonus action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_swarmfoe-leather", + "fields": { + "name": "Swarmfoe Leather", + "desc": "While wearing this armor festooned with thin draconic scales, you gain a +1 bonus to AC. You can use the scales as a melee weapon while wearing the armor. You have proficiency with the scales and deal 1d4 slashing damage on a hit (your Strength modifier applies to the attack and damage rolls as normal). Swarms don't have resistance to the damage dealt by the scales. In addition, if a swarm occupies your space, you can attack with the scales as a bonus action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_swashing-plumage", + "fields": { + "name": "Swashing Plumage", + "desc": "This plumage, a colorful bouquet of tropical hat feathers, has a small pin at its base and can be affixed to any hat or headband. Due to its distracting, ostentatious appearance, creatures hostile to you have disadvantage on opportunity attacks against you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_sweet-nature", + "fields": { + "name": "Sweet Nature", + "desc": "You have a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a humanoid with this weapon, the humanoid takes an extra 1d6 slashing damage. If you use the axe to damage a plant creature or an object made of wood, the axe's blade liquifies into harmless honey, and it can't be used again until 24 hours have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_swolbold-wraps", + "fields": { + "name": "Swolbold Wraps", + "desc": "When wearing these cloth wraps, your forearms and hands swell to half again their normal size without negatively impacting your fine motor skills. You gain a +1 bonus to attack and damage rolls made with unarmed strikes while wearing these wraps. In addition, your unarmed strike uses a d4 for damage and counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage. When you hit a target with an unarmed strike and the target is no more than one size larger than you, you can use a bonus action to automatically grapple the target. Once this special bonus action has been used three times, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tactile-unguent", + "fields": { + "name": "Tactile Unguent", + "desc": "Cat burglars, gearworkers, locksmiths, and even street performers use this gooey substance to increase the sensitivity of their hands. When found, a container contains 1d4 + 1 doses. As an action, one dose can be applied to a creature's hands. For 1 hour, that creature has advantage on Dexterity (Sleight of Hand) checks and on tactile Wisdom (Perception) checks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tailors-clasp", + "fields": { + "name": "Tailor's Clasp", + "desc": "This ornate brooch is shaped like a jeweled weaving spider or scarab beetle. While it is attached to a piece of fabric, it can be activated as an action. When activated, it skitters across the fabric, mending any tears, adjusting frayed hems, and reinforcing seams. This item works only on nonmagical objects made out of fibrous material, such as clothing, rope, and rugs. It continues repairing the fabric for up to 10 minutes or until the repairs are complete. Once used, it can't be used again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_talisman-of-the-snow-queen", + "fields": { + "name": "Talisman of the Snow Queen", + "desc": "The coldly beautiful and deadly Snow Queen (see Tome of Beasts) grants these delicate-looking snowflake-shaped mithril talismans to her most trusted spies and servants. Each talisman is imbued with a measure of her power and is magically tied to the queen. It can be affixed to any piece of clothing or worn as an amulet. While wearing the talisman, you gain the following benefits: • You have resistance to cold damage. • You have advantage on Charisma checks when interacting socially with creatures that live in cold environments, such as frost giants, winter wolves, and fraughashar (see Tome of Beasts). • You can use an action to cast the ray of frost cantrip from it at will, using your level and using Intelligence as your spellcasting ability. Blinding Snow. While wearing the talisman, you can use an action to create a swirl of snow that spreads out from you and into the eyes of nearby creatures. Each creature within 15 feet of you must succeed on a DC 17 Constitution saving throw or be blinded until the end of its next turn. Once used, this property can’t be used again until the next dawn. Eyes of the Queen. While you are wearing the talisman, the Snow Queen can use a bonus action to see through your eyes if both of you are on the same plane of existence. This effect lasts until she ends it as a bonus action or until you die. You can’t make a saving throw to prevent the Snow Queen from seeing through your eyes. However, being more than 5 feet away from the talisman ends the effect, and becoming blinded prevents her from seeing anything further than 10 feet away from you. When the Snow Queen is looking through your eyes, the talisman sheds an almost imperceptible pale blue glow, which you or any creature within 10 feet of you notice with a successful DC 20 Wisdom (Perception) check. An identify spell fails to reveal this property of the talisman, and this property can’t be removed from the talisman except by the Snow Queen herself.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_talking-tablets", + "fields": { + "name": "Talking Tablets", + "desc": "These two enchanted brass tablets each have gold styli chained to them by small, silver chains. As long as both tablets are on the same plane of existence, any message written on one tablet with its gold stylus appears on the other tablet. If the writer writes words in a language the reader doesn't understand, the tablets translate the words into a language the reader can read. While holding a tablet, you know if no creature bears the paired tablet. When the tablets have transferred a total of 150 words between them, their magic ceases to function until the next dawn. If one of the tablets is destroyed, the other one becomes a nonmagical block of brass worth 25 gp.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_talking-torches", + "fields": { + "name": "Talking Torches", + "desc": "These heavy iron and wood torches are typically found in pairs or sets of four. While holding this torch, you can use an action to speak a command word and cause it to produce a magical, heatless flame that sheds bright light in a 20-foot radius and dim light for an additional 20 feet. You can use a bonus action to repeat the command word to extinguish the light. If more than one talking torch remain lit and touching for 1 minute, they become magically bound to each other. A torch remains bound until the torch is destroyed or until it is bound to another talking torch or set of talking torches. While holding or carrying the torch, you can communicate telepathically with any creature holding or carrying one of the torches bound to your torch, as long as both torches are lit and within 5 miles of each other.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tamers-whip", + "fields": { + "name": "Tamer's Whip", + "desc": "This whip is braided from leather tanned from the hides of a dozen different, dangerous beasts. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you attack a beast using this weapon, you have advantage on the attack roll.\nWhen you roll a 20 on the attack roll made with this weapon and the target is a beast, the beast must succeed on a DC 15 Wisdom saving throw or become charmed or frightened (your choice) for 1 minute.\nIf the creature is charmed, it understands and obeys one-word commands, such as “attack,” “approach,” “stay,” or similar. If it is charmed and understands a language, it obeys any command you give it in that language. The charmed or frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tarian-graddfeydd-ddraig", + "fields": { + "name": "Tarian Graddfeydd Ddraig", + "desc": "This metal shield has an outer coating consisting of hardened resinous insectoid secretions embedded with flakes from ground dragon scales collected from various dragon wyrmlings and one dragon that was killed by shadow magic. While holding this shield, you gain a +2 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. In addition, you have resistance to acid, cold, fire, lightning, necrotic, and poison damage dealt by the breath weapons of dragons. While wielding the shield in an area of dim or bright light, you can use an action to reflect the light off the shield's dragon scale flakes to cause a cone of multicolored light to flash from it (15-foot cone if in dim light; 30-foot cone if in bright light). Each creature in the area must make a DC 17 Dexterity saving throw. For each target, roll a d6 and consult the following table to determine which color is reflected at it. The shield can't be used this way again until the next dawn. | d6 | Effect |\n| --- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 1 | **Red**. The target takes 6d6 fire damage on a failed save, or half as much damage on a successful one. |\n| 2 | **White**. The target takes 4d6 cold damage and is restrained until the start of your next turn on a failed save, or half as much damage and is not restrained on a successful one. |\n| 3 | **Blue**. The target takes 4d6 lightning damage and is paralyzed until the start of your next turn on a failed save, or half as much damage and is not paralyzed on a successful one. |\n| 4 | **Black**. The target takes 4d6 acid damage on a failed save, or half as much damage on a successful one. If the target failed the save, it also takes an extra 2d6 acid damage on the start of your next turn. |\n| 5 | **Green**. The target takes 4d6 poison damage and is poisoned until the start of your next turn on a failed save, or half as much damage and is not poisoned on a successful one. |\n| 6 | **Shadow**. The target takes 4d6 necrotic damage and its Strength score is reduced by 1d4 on a failed save, or half as much damage and does not reduce its Strength score on a successful one. The target dies if this Strength reduction reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest. |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_teapot-of-soothing", + "fields": { + "name": "Teapot of Soothing", + "desc": "This cast iron teapot is adorned with the simple image of fluffy clouds that seem to slowly shift and move across the pot as if on a gentle breeze. Any water placed inside the teapot immediately becomes hot tea at the perfect temperature, and when poured, it becomes the exact flavor the person pouring it prefers. The teapot can serve up to 6 creatures, and any creature that spends 10 minutes drinking a cup of the tea gains 2d6 temporary hit points for 24 hours. The creature pouring the tea has advantage on Charisma (Persuasion) checks for 10 minutes after pouring the first cup. Once used, the teapot can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tenebrous-flail-of-screams", + "fields": { + "name": "Tenebrous Flail of Screams", + "desc": "The handle of this flail is made of mammoth bone wrapped in black leather made from bat wings. Its pommel is adorned with raven's claws, and the head of the flail dangles from a flexible, preserved braid of entrails. The head is made of petrified wood inlaid with owlbear and raven beaks. When swung, the flail lets out an otherworldly screech. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with this flail, the target takes an extra 1d6 psychic damage. When you roll a 20 on an attack roll made with this weapon, the target must succeed on a DC 15 Wisdom saving throw or be incapacitated until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tenebrous-mantle", + "fields": { + "name": "Tenebrous Mantle", + "desc": "This black cloak appears to be made of pure shadow and shrouds you in darkness. While wearing it, you gain the following benefits: - You have advantage on Dexterity (Stealth) checks.\n- You have resistance to necrotic damage.\n- You can cast the darkness and misty step spells from it at will. Casting either spell from the cloak requires an action. Instead of a silvery mist when you cast misty step, you are engulfed in the darkness of the cloak and emerge from the cloak's darkness at your destination.\n- You can use an action to cast the black tentacles or living shadows (see Deep Magic for 5th Edition) spell from it. The cloak can't be used this way again until the following dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_thirsting-scalpel", + "fields": { + "name": "Thirsting Scalpel", + "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon, which deals slashing damage instead of piercing damage. When you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 2d6 slashing damage. If the target is a creature other than an undead or construct, it must succeed on a DC 13 Constitution saving throw or lose 2d6 hit points at the start of each of its turns from a bleeding wound. Any creature can take an action to stanch the wound with a successful DC 11 Wisdom (Medicine) check. The wound also closes if the target receives magical healing. In addition, once every 7 days while the scalpel is on your person, you must succeed on a DC 15 Charisma saving throw or become driven to feed blood to the scalpel. You have advantage on attack rolls with the scalpel until it is sated. The dagger is sated when you roll a 20 on an attack roll with it, after you deal 14 slashing damage with it, or after 1 hour elapses. If the hour elapses and you haven't sated its thirst for blood, the dagger deals 14 slashing damage to you. If the dagger deals damage to you as a result of the curse, you can't heal the damage for 24 hours. The remove curse spell removes your attunement to the item and frees you from the curse. Alternatively, casting the banishment spell on the dagger forces the bearded devil's essence to leave it. The scalpel then becomes a +1 dagger with no other properties.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_thirsting-thorn", + "fields": { + "name": "Thirsting Thorn", + "desc": "You gain a +1 bonus to attack and damage rolls made with this weapon. In addition, while carrying the sword, you have resistance to necrotic damage. Each time you reduce a creature to 0 hit points with this weapon, you can regain 2d8+2 hit points. Each time you regain hit points this way, you must succeed a DC 12 Wisdom saving throw or be incapacitated by terrible visions until the end of your next turn. If you reach your maximum hit points using this effect, you automatically fail the saving throw. As long as you remain cursed, you are unwilling to part with the sword, keeping it within reach at all times. If you have not damaged a creature with this sword within the past 24 hours, you have disadvantage on attack rolls with weapons other than this one as its hunger for blood drives you to slake its thirst.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_thornish-nocturnal", + "fields": { + "name": "Thornish Nocturnal", + "desc": "The ancient elves constructed these nautical instruments to use as navigational aids on all their seagoing vessels. The knowledge of their manufacture has been lost, and few of them remain. While attuned to the nocturnal, you can spend 1 minute using the nocturnal to determine the precise local time, provided you can see the sun or stars. You can use an action to protect up to four vessels that are within 1 mile of the nocturnal from unwanted effects of the local weather for 1 hour. For example, vessels protected by the nocturnal can't be damaged by storms or blown onto jagged rocks by adverse wind. To do so, you must have spent at least 1 hour aboard each of the controlled vessels, performing basic sailing tasks and familiarizing yourself with the vessel.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_three-section-boots", + "fields": { + "name": "Three-Section Boots", + "desc": "These boots are often decorated with eyes, flames, or other bold patterns such as lightning bolts or wheels. When you step onto water, air, or stone, you can use a reaction to speak the boots' command word. For 1 hour, you gain the effects of the meld into stone, water walk, or wind walk spell, depending on the type of surface where you stepped. The boots can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_throttlers-gauntlets", + "fields": { + "name": "Throttler's Gauntlets", + "desc": "These durable leather gloves allow you to choke a creature you are grappling, preventing them from speaking. While you are grappling a creature, you can use a bonus action to throttle it. The creature takes damage equal to your proficiency bonus and can't speak coherently or cast spells with verbal components until the end of its next turn. You can choose to not damage the creature when you throttle it. A creature can still breathe, albeit uncomfortably, while throttled.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_thunderous-kazoo", + "fields": { + "name": "Thunderous Kazoo", + "desc": "You can use an action to speak the kazoo's command word and then hum into it, which emits a thunderous blast, audible out to 1 mile, at one Large or smaller creature you can see within 30 feet of you. The target must make a DC 13 Constitution saving throw. On a failure, a creature is pushed away from you and is deafened and frightened of you until the start of your next turn. A Small creature is pushed up to 30 feet, a Medium creature is pushed up to 20 feet, and a Large creature is pushed up to 10 feet. On a success, a creature is pushed half the distance and isn't deafened or frightened. The kazoo can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tick-stop-watch", + "fields": { + "name": "Tick Stop Watch", + "desc": "While holding this silver pocketwatch, you can use an action to magically stop a single clockwork device or construct within 10 feet of you. If the target is an object, it freezes in place, even mid-air, for up to 1 minute or until moved. If the target is a construct, it must succeed on a DC 15 Wisdom saving throw or be paralyzed until the end of its next turn. The pocketwatch can't be used this way again until the next dawn. The pocketwatch must be wound at least once every 24 hours, just like a normal pocketwatch, or its magic ceases to function. If left unwound for 24 hours, the watch loses its magic, but the power returns 24 hours after the next time it is wound.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_timeworn-timepiece", + "fields": { + "name": "Timeworn Timepiece", + "desc": "This tarnished silver pocket watch seems to be temporally displaced and allows for limited manipulation of time. The timepiece has 3 charges, and it regains 1d3 expended charges daily at midnight. While holding the timepiece, you can use your reaction to expend 1 charge after you or a creature you can see within 30 feet of you makes an attack roll, an ability check, or a saving throw to force the creature to reroll. You make this decision after you see whether the roll succeeds or fails. The target must use the result of the second roll. Alternatively, you can expend 2 charges as a reaction at the start of another creature's turn to swap places in the Initiative order with that creature. An unwilling creature that succeeds on a DC 15 Charisma saving throw is unaffected.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tincture-of-moonlit-blossom", + "fields": { + "name": "Tincture of Moonlit Blossom", + "desc": "This potion is steeped using a blossom that grows only in the moonlight. When you drink this potion, your shadow corruption (see Midgard Worldbook) is reduced by three levels. If you aren't using the Midgard setting, you gain the effect of the greater restoration spell instead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tipstaff", + "fields": { + "name": "Tipstaff", + "desc": "To the uninitiated, this short ebony baton resembles a heavy-duty truncheon with a cord-wrapped handle and silver-capped tip. The weapon has 5 charges, and it regains 1d4 + 1 expended charges daily at dawn. When you hit a creature with a melee attack with this magic weapon, you can expend 1 charge to force the target to make a DC 15 Constitution saving throw. If the creature took 20 damage or more from this attack, it has disadvantage on the saving throw. On a failure, the target is paralyzed for 1 minute. It can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tome-of-knowledge", + "fields": { + "name": "Tome of Knowledge", + "desc": "This book contains mnemonics and other tips to better perform a specific mental task, and its words are charged with magic. If you spend 24 hours over a period of 3 days or fewer studying the tome and practicing its instructions, you gain proficiency in the Intelligence, Wisdom, or Charisma-based skill (such as History, Insight, or Intimidation) associated with the book. The tome then loses its magic, but regains it in ten years.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tonic-for-the-troubled-mind", + "fields": { + "name": "Tonic for the Troubled Mind", + "desc": "This potion smells and tastes of lavender and chamomile. When you drink it, it removes any short-term madness afflicting you, and it suppresses any long-term madness afflicting you for 8 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tonic-of-blandness", + "fields": { + "name": "Tonic of Blandness", + "desc": "This deeply bitter, black, oily liquid deadens your sense of taste. When you drink this tonic, you can eat all manner of food without reaction, even if the food isn't to your liking, for 1 hour. During this time, you automatically fail Wisdom (Perception) checks that rely on taste. This tonic doesn't protect you from the effects of consuming poisoned or spoiled food, but it can prevent you from detecting such impurities when you taste the food.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_toothsome-purse", + "fields": { + "name": "Toothsome Purse", + "desc": "This common-looking leather pouch holds a nasty surprise for pickpockets. If a creature other than you reaches into the purse, small, sharp teeth emerge from the mouth of the bag. The bag makes a melee attack roll against that creature with a +3 bonus ( 1d20+3). On a hit, the target takes 2d4 piercing damage. If the bag rolls a 20 on the attack roll, the would-be pickpocket has disadvantage on any Dexterity checks made with that hand until the damage is healed. If the purse is lifted entirely from you, the purse continues to bite at the thief each round until it is dropped or until it is placed where it can't reach its target. It bites at any creature, other than you, who attempts to pick it up, unless that creature genuinely desires to return the purse and its contents to you. The purse attacks only if it is attuned to a creature. A purse that isn't attuned to a creature lies dormant and doesn't attack.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_torc-of-the-comet", + "fields": { + "name": "Torc of the Comet", + "desc": "This silver torc is set with a large opal on one end, and it thins to a point on the other. While wearing the torc, you have resistance to cold damage, and you can use an action to speak the command word, causing the torc to shed bluish-white bright light in a 20-foot radius and dim light for an additional 20 feet. The light lasts until you use a bonus action to speak the command word again. The torc has 4 charges. You can use an action to expend 1 charge and fire a tiny comet from the torc at a target you can see within 120 feet of you. The torc makes a ranged attack roll with a +7 bonus ( 1d20+7). On a hit, the target takes 2d6 bludgeoning damage and 2d6 cold damage. At night, the cold damage dealt by the comets increases to 6d6. The torc regain 1d4 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tracking-dart", + "fields": { + "name": "Tracking Dart", + "desc": "When you hit a Large or smaller creature with an attack using this colorful magic dart, the target is splattered with magical paint, which outlines the target in a dim glow (your choice of color) for 1 minute. Any attack roll against a creature outlined in the glow has advantage if the attacker can see the creature, and the creature can't benefit from being invisible. The creature outlined in the glow can end the effect early by using an action to wipe off the splatter of paint.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_treebleed-bucket", + "fields": { + "name": "Treebleed Bucket", + "desc": "This combination sap bucket and tap is used to extract sap from certain trees. After 1 hour, the bucketful of sap magically changes into a potion. The potion remains viable for 24 hours, and its type depends on the tree as follows: oak (potion of resistance), rowan (potion of healing), willow (potion of animal friendship), and holly (potion of climbing). The treebleed bucket can magically change sap 20 times, then the bucket and tap become nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_trident-of-the-vortex", + "fields": { + "name": "Trident of the Vortex", + "desc": "This bronze trident has a shaft of inlaid blue pearl. You gain a +2 bonus to attack and damage rolls with this magic weapon. Whirlpool. While wielding the trident underwater, you can use an action to speak its command word and cause the water around you to whip into a whirlpool for 1 minute. For the duration, each creature that enters or starts its turn in a space within 10 feet of you must succeed on a DC 15 Strength saving throw or be restrained by the whirlpool. The whirlpool moves with you, and creatures restrained by it move with it. A creature within 5 feet of the whirlpool can pull a creature out of it by taking an action to make a DC 15 Strength check and succeeding. A restrained creature can try to escape by taking an action to make a DC 15 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the whirlpool. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_trident-of-the-yearning-tide", + "fields": { + "name": "Trident of the Yearning Tide", + "desc": "The barbs of this trident are forged from mother-of-pearl and its shaft is fashioned from driftwood. You gain a +2 bonus on attack and damage rolls made with this magic weapon. While holding the trident, you can breathe underwater. The trident has 3 charges for the following other properties. It regains 1d3 expended charges daily at dawn. Call Sealife. While holding the trident, you can use an action to expend 3 of its charges to cast the conjure animals spell from it. The creatures you summon must be beasts that can breathe water. Yearn for the Tide. When you hit a creature with a melee attack using the trident, you can use a bonus action to expend 1 charge to force the target to make a DC 17 Wisdom saving throw. On a failure, the target must spend its next turn leaping into the nearest body of water and swimming toward the bottom. A creature that can breathe underwater automatically succeeds on the saving throw. If no water is in the target’s line of sight, the target automatically succeeds on the saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_troll-skin-hide", + "fields": { + "name": "Troll Skin Hide", + "desc": "While wearing troll skin armor, you gain a +1 bonus to AC, and you stabilize whenever you are dying at the start of your turn. In addition, you can use an action to regenerate for 1 minute. While regenerating, you regain 2 hit points at the start of each of your turns. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_troll-skin-leather", + "fields": { + "name": "Troll Skin Leather", + "desc": "While wearing troll skin armor, you gain a +1 bonus to AC, and you stabilize whenever you are dying at the start of your turn. In addition, you can use an action to regenerate for 1 minute. While regenerating, you regain 2 hit points at the start of each of your turns. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_trollsblood-elixir", + "fields": { + "name": "Trollsblood Elixir", + "desc": "This thick, pink liquid sloshes and moves even when the bottle is still. When you drink this potion, you regenerate lost hit points for 1 hour. At the start of your turn, you regain 5 hit points. If you take acid or fire damage, the potion doesn't function at the start of your next turn. If you lose a limb, you can reattach it by holding it in place for 1 minute. For the duration, you can die from damage only by being reduced to 0 hit points and not regenerating on your turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_tyrants-whip", + "fields": { + "name": "Tyrant's Whip", + "desc": "This wicked whip has 3 charges and regains all expended charges daily at dawn. When you hit with an attack using this magic whip, you can use a bonus action to expend 1 of its charges to cast the command spell (save DC 13) from it on the creature you hit. If the attack is a critical hit, the target has disadvantage on the saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_umber-beans", + "fields": { + "name": "Umber Beans", + "desc": "These magical beans have a modest ochre or umber hue, and they are about the size and weight of walnuts. Typically, 1d4 + 4 umber beans are found together. You can use an action to throw one or more beans up to 10 feet. When the bean lands, it grows into a creature you determine by rolling a d10 and consulting the following table. ( Umber Beans#^creature) The creature vanishes at the next dawn or when it takes bludgeoning, piercing, or slashing damage. The bean is destroyed when the creature vanishes. The creature is illusory, and you are aware of this. You can use a bonus action to command how the illusory creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature. The creature's attacks deal psychic damage, though the target perceives the damage as the type appropriate to the illusion, such as slashing for a vrock's talons. A creature with truesight or that uses its action to examine the illusion can determine that it is an illusion with a successful DC 13 Intelligence (Investigation) check. If a creature discerns the illusion for what it is, the creature sees the illusion as faint and the illusion can't attack that creature. | dice: 1d10 | Creature |\n| ---------- | ---------------------------- |\n| 1 | Dretch |\n| 2-3 | 2 Shadows |\n| 4-6 | Chuul |\n| 7-8 | Vrock |\n| 9 | Hezrou or Psoglav |\n| 10 | Remorhaz or Voidling |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_umbral-band", + "fields": { + "name": "Umbral Band", + "desc": "This blackened steel ring is cold to the touch. While wearing this ring, you have darkvision out to a range of 30 feet, and you have advantage on Dexterity (Stealth) checks while in an area of dim light or darkness.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_umbral-chopper", + "fields": { + "name": "Umbral Chopper", + "desc": "This simple axe looks no different from a standard forester's tool. A single-edged head is set into a slot in the haft and bound with strong cord. The axe was found by a timber-hauling crew who disappeared into the shadows of a cave deep in an old forest. Retrieved in the dark of the cave, the axe was found to possess disturbing magical properties. You gain a +1 bonus to attack and damage rolls made with this weapon, which deals necrotic damage instead of slashing damage. When you hit a plant creature with an attack using this weapon, the target must make a DC 15 Constitution saving throw. On a failure, the creature takes 4d6 necrotic damage and its speed is halved until the end of its next turn. On a success, the creature takes half the damage and its speed isn't reduced.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_umbral-lantern", + "fields": { + "name": "Umbral Lantern", + "desc": "This item looks like a typical hooded brass lantern, but shadowy forms crawl across its surface and it radiates darkness instead of light. The lantern can burn for up to 3 hours each day. While the lantern burns, it emits darkness as if the darkness spell were cast on it but with a 30-foot radius.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_umbral-staff", + "fields": { + "name": "Umbral Staff", + "desc": "Made of twisted darkwood and covered in complex runes and sigils, this powerful staff seems to emanate darkness. You have resistance to radiant damage while you hold this staff. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at midnight. If you expend the last charge, roll a d20. On a 1, the staff retains its ability to cast the claws of darkness*, douse light*, and shadow blindness* spells but loses all other properties. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: become nightwing* (6 charges), black hand* (4 charges), black ribbons* (1 charge), black well* (6 charges), cloak of shadow* (1 charge), darkvision (2 charges), darkness (2 charges), dark dementing* (5 charges), dark path* (2 charges), darkbolt* (2 charges), encroaching shadows* (6 charges), night terrors* (4 charges), shadow armor* (1 charge), shadow hands* (1 charge), shadow puppets* (2 charges), or slither* (2 charges). You can also use an action to cast the claws of darkness*, douse light*, or shadow blindness* spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM’s discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness, shadows, or terror. Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion of darkness (as the darkness spell) that expands to fill a 30-foot-radius sphere centered on it. You have a 50 percent chance to instantly travel to the Plane of Shadow, avoiding the explosion. If you fail to avoid the effect, you take necrotic damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin as shown in the following table. On a successful save, a creature takes half as much damage. | Distance from Origin | Damage |\n| --------------------- | -------------------------------------- |\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_undine-plate", + "fields": { + "name": "Undine Plate", + "desc": "This bright green plate armor is embossed with images of various marine creatures, such as octopuses and rays. While wearing this armor, you have a swimming speed of 40 feet, and you don't have disadvantage on Dexterity (Stealth) checks while underwater.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_unerring-dowsing-rod", + "fields": { + "name": "Unerring Dowsing Rod", + "desc": "This dark, gnarled willow root is worn and smooth. When you hold this rod in both hands by its short, forked branches, you feel it gently tugging you toward the closest source of fresh water. If the closest source of fresh water is located underground, the dowsing rod directs you to a spot above the source then dips its tip down toward the ground. When you use this dowsing rod on the Material Plane, it directs you to bodies of water, such as creeks and ponds. When you use it in areas where fresh water is much more difficult to find, such as a desert or the Plane of Fire, it directs you to bodies of water, but it might also direct you toward homes with fresh water barrels or to creatures with containers of fresh water on them.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_unquiet-dagger", + "fields": { + "name": "Unquiet Dagger", + "desc": "Forged by creatures with firsthand knowledge of what lies between the stars, this dark gray blade sometimes appears to twitch or ripple like water when not directly observed. You gain a +1 bonus to attack and damage rolls with this magic weapon. In addition, when you hit with an attack using this dagger, the target takes an extra 2d6 psychic damage. You can use an action to cause the blade to ripple for 1 minute. While the blade is rippling, each creature that takes psychic damage from the dagger must succeed on a DC 15 Charisma saving throw or become frightened of you for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The dagger can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_unseelie-staff", + "fields": { + "name": "Unseelie Staff", + "desc": "This ebony staff is decorated in silver and topped with a jagged piece of obsidian. This staff can be wielded as a magic quarterstaff. While holding the staff, you have advantage on Charisma checks made to influence or interact socially with fey creatures. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a shower of powdery snow, which blows away in a sudden, chill wind. Rebuke Fey. When you hit a fey creature with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 necrotic damage to the target. If the fey has a good alignment, the extra damage increases to 4d6, and the target must succeed on a DC 15 Wisdom saving throw or be frightened of you until the start of your next turn. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), conjure woodland beings (4 charges), confusion (4 charges), invisibility (2 charges), or teleport (7 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_valkyries-bite", + "fields": { + "name": "Valkyrie's Bite", + "desc": "This black-bladed scimitar has a guard that resembles outstretched raven wings, and a polished amethyst sits in its pommel. You have a +2 bonus to attack and damage rolls made with this magic weapon. While attuned to the scimitar, you have advantage on initiative rolls. While you hold the scimitar, it sheds dim purple light in a 10-foot radius.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_vengeful-coat", + "fields": { + "name": "Vengeful Coat", + "desc": "This stiff, vaguely uncomfortable coat covers your torso. It smells like ash and oozes a sap-like substance. While wearing this coat, you have resistance to slashing damage from nonmagical attacks. At the end of each long rest, choose one of the following damage types: acid, cold, fire, lightning, or thunder. When you take damage of that type, you have advantage on attack rolls until the end of your next turn. When you take more than 10 damage of that type, you have advantage on your attack rolls for 2 rounds. When you are targeted by an effect that deals damage of the type you chose, you can use your reaction to gain resistance to that damage until the start of your next turn. You have advantage on your attack rolls, as detailed above, then the coat's magic ceases to function until you finish a long rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_venomous-fangs", + "fields": { + "name": "Venomous Fangs", + "desc": "These prosthetic fangs can be positioned over your existing teeth or in place of missing teeth. While wearing these fangs, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. You gain a +1 bonus to attack and damage rolls made with this magic bite. While you wear the fangs, a successful DC 9 Dexterity (Sleight of Hand) checks conceals them from view. At the GM's discretion, you have disadvantage on Charisma (Deception) or Charisma (Persuasion) checks against creatures that notice the fangs.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_verdant-elixir", + "fields": { + "name": "Verdant Elixir", + "desc": "Multi-colored streaks of light occasionally flash through the clear liquid in this container, like bottled lightning. As an action, you can pour the contents of the vial onto the ground. All normal plants in a 100-foot radius centered on the point where you poured the vial become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves. Alternatively, you can apply the contents of the vial to a plant creature within 5 feet of you. For 1 hour, the target gains 2d10 temporary hit points, and it gains the “enlarge” effect of the enlarge/reduce spell (no concentration required).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_verminous-snipsnaps", + "fields": { + "name": "Verminous Snipsnaps", + "desc": "This stoppered jar holds small animated knives and scissors. The jar weighs 1 pound, and its command word is often written on the jar's label. You can use an action to remove the stopper, which releases the spinning blades into a space you can see within 30 feet of you. The knives and scissors fill a cube 10 feet on each side and whirl in place, flaying creatures and objects that enter the cube. When a creature enters the cube for the first time on a turn or starts its turn there, it takes 2d12 piercing damage. You can use a bonus action to speak the command word, returning the blades to the jar. Otherwise, the knives and scissors remain in that space indefinitely.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_verses-of-vengeance", + "fields": { + "name": "Verses of Vengeance", + "desc": "This massive, holy tome is bound in brass with a handle on the back cover. A steel chain dangles from the sturdy metal cover, allowing you to hang the tome from your belt or hook it to your armor. A locked clasp holds the tome closed, securing its contents. You gain a +1 bonus to AC while you wield this tome as a shield. This bonus is in addition to the shield's normal bonus to AC. Alternatively, you can make melee weapon attacks with the tome as if it was a club. If you make an attack using use the tome as a weapon, you lose the shield's bonus to your AC until the start of your next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_vessel-of-deadly-venoms", + "fields": { + "name": "Vessel of Deadly Venoms", + "desc": "This small jug weighs 5 pounds and has a ceramic snake coiled around it. You can use an action to speak a command word to cause the vessel to produce poison, which pours from the snake's mouth. A poison created by the vessel must be used within 1 hour or it becomes inert. The word “blade” causes the snake to produce 1 dose of serpent venom, enough to coat a single weapon. The word “consume” causes the snake to produce 1 dose of assassin's blood, an ingested poison. The word “spit” causes the snake to spray a stream of poison at a creature you can see within 30 feet. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d8 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. Once used, the vessel can't be used to create poison again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_vestments-of-the-bleak-shinobi", + "fields": { + "name": "Vestments of the Bleak Shinobi", + "desc": "This padded black armor is fashioned in the furtive style of shinobi shōzoku garb. You have advantage on Dexterity (Stealth) checks while you wear this armor. Darkness. While wearing this armor, you can use an action to cast the darkness spell from it with a range of 30 feet. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_vial-of-sunlight", + "fields": { + "name": "Vial of Sunlight", + "desc": "This crystal vial is filled with water from a spring high in the mountains and has been blessed by priests of a deity of healing and light. You can use an action to cause the vial to emit bright light in a 30-foot radius and dim light for an additional 30 feet for 1 minute. This light is pure sunlight, causing harm or discomfort to vampires and other undead creatures that are sensitive to it. The vial can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_vielle-of-weirding-and-warding", + "fields": { + "name": "Vielle of Weirding and Warding", + "desc": "The strings of this bowed instrument never break. You must be proficient in stringed instruments to use this vielle. A creature that attempts to play the instrument without being attuned to it must succeed on a DC 15 Wisdom saving throw or take 2d8 psychic damage. If you play the vielle as the somatic component for a spell that causes a target to become charmed on a failed saving throw, the target has disadvantage on the saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_vigilant-mug", + "fields": { + "name": "Vigilant Mug", + "desc": "An impish face sits carved into the side of this bronze mug, its eyes a pair of clear, blue crystals. The imp's eyes turn red when poison or poisonous material is placed or poured inside the mug.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_vile-razor", + "fields": { + "name": "Vile Razor", + "desc": "This perpetually blood-stained straight razor deals slashing damage instead of piercing damage. You gain a +1 bonus to attack and damage rolls made with this magic weapon. Inhuman Alacrity. While holding the dagger, you can take two bonus actions on your turn, instead of one. Each bonus action must be different; you can’t use the same bonus action twice in a single turn. Once used, this property can’t be used again until the next dusk. Unclean Cut. When you hit a creature with a melee attack using the dagger, you can use a bonus action to deal an extra 2d4 necrotic damage. If you do so, the target and each of its allies that can see this attack must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. Once used, this property can’t be used again until the next dusk. ", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_void-touched-buckler", + "fields": { + "name": "Void-Touched Buckler", + "desc": "This simple wood and metal buckler belonged to an adventurer slain by a void dragon wyrmling (see Tome of Beasts). It sat for decades next to a small tear in the fabric of reality, which led to the outer planes. It has since become tainted by the Void. While wielding this shield, you have a +1 bonus to AC. This bonus is in addition to the shield’s normal bonus to AC. Invoke the Void. While wielding this shield, you can use an action to invoke the shield’s latent Void energy for 1 minute, causing a dark, swirling aura to envelop the shield. For the duration, when a creature misses you with a weapon attack, it must succeed on a DC 17 Wisdom saving throw or be frightened of you until the end of its next turn. In addition, when a creature hits you with a weapon attack, it has advantage on weapon attack rolls against you until the end of its next turn. You can’t use this property of the shield again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_voidskin-cloak", + "fields": { + "name": "Voidskin Cloak", + "desc": "This pitch-black cloak absorbs light and whispers as it moves. It feels like thin leather with a knobby, scaly texture, though none of that detail is visible to the eye. While you wear this cloak, you have resistance to necrotic damage. While the hood is up, your face is pooled in shadow, and you can use a bonus action to fix your dark gaze upon a creature you can see within 60 feet. If the creature can see you, it must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once a creature succeeds on its saving throw, it can't be affected by the cloak again for 24 hours. Pulling the hood up or down requires an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_voidwalker", + "fields": { + "name": "Voidwalker", + "desc": "This band of tarnished silver bears no ornament or inscription, but it is icy cold to the touch. The patches of dark corrosion on the ring constantly, but subtly, move and change; though, this never occurs while anyone observes the ring. While wearing Voidwalker, you gain the benefits of a ring of free action and a ring of resistance (cold). It has the following additional properties. The ring is clever and knows that most mortals want nothing to do with the Void directly. It also knows that most of the creatures with strength enough to claim it will end up in dire straits sooner or later. It doesn't overplay its hand trying to push a master to take a plunge into the depths of the Void, but instead makes itself as indispensable as possible. It provides counsel and protection, all the while subtly pushing its master to take greater and greater risks. Once it's maneuvered its wearer into a position of desperation, generally on the brink of death, Voidwalker offers a way out. If the master accepts, it opens a gate into the Void, most likely sealing the creature's doom.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "vom_feather-token", + "fields": { + "name": "Feather Token", + "desc": "The following are additional feather token options. Cloud (Uncommon). This white feather is shaped like a cloud. You can use an action to step on the token, which expands into a 10-foot-diameter cloud that immediately begins to rise slowly to a height of up to 20 feet. Any creatures standing on the cloud rise with it. The cloud disappears after 10 minutes, and anything that was on the cloud falls slowly to the ground. \nDark of the Moon (Rare). This black feather is shaped like a crescent moon. As an action, you can brush the feather over a willing creature’s eyes to grant it the ability to see in the dark. For 1 hour, that creature has darkvision out to a range of 60 feet, including in magical darkness. Afterwards, the feather disappears. \n Held Heart (Very Rare). This red feather is shaped like a heart. While carrying this token, you have advantage on initiative rolls. As an action, you can press the feather against a willing, injured creature. The target regains all its missing hit points and the feather disappears. \nJackdaw’s Dart (Common). This black feather is shaped like a dart. While holding it, you can use an action to throw it at a creature you can see within 30 feet of you. As it flies, the feather transforms into a blot of black ink. The target must succeed on a DC 11 Dexterity saving throw or the feather leaves a black mark of misfortune on it. The target has disadvantage on its next ability check, attack roll, or saving throw then the mark disappears. A remove curse spell ends the mark early.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-accompaniment", + "fields": { + "name": "Wand of Accompaniment", + "desc": "Tiny musical notes have been etched into the sides of this otherwise plain, wooden wand. It has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand disintegrates with a small bang. Dance. While holding the wand, you can use an action to expend 3 charges to cast the irresistible dance spell (save DC 17) from it. If the target is in the area of the Song property of this wand, it has disadvantage on the saving throw. Song. While holding the wand, you can use an action to expend 1 charge to cause the area within a 30-foot radius of you to fill with music for 1 minute. The type of music played is up to you, but it is performed flawlessly. Each creature in the area that can hear the music has advantage on saving throws against being deafened and against spells and effects that deal thunder damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-air-glyphs", + "fields": { + "name": "Wand of Air Glyphs", + "desc": "While holding this thin, metal wand, you can use action to cause the tip to glow. When you wave the glowing wand in the air, it leaves a trail of light behind it, allowing you to write or draw on the air. Whatever letters or images you make hang in the air for 1 minute before fading away.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-bristles", + "fields": { + "name": "Wand of Bristles", + "desc": "This wand is made from the bristles of a giant boar bound together with magical, silver thread. It weighs 1 pound and is 8 inches long. The wand has a strong boar musk scent to it, which is difficult to mask and is noticed by any creature within 10 feet of you that possesses the Keen Smell trait. The wand is comprised of 10 individual bristles, and as long as the wand has 1 bristle, it regrows 2 bristles daily at dawn. While holding the wand, you can use your action to remove bristles to cause one of the following effects. Ghostly Charge (3 bristles). You toss the bristles toward one creature you can see. A phantom giant boar charges 30 feet toward the creature. If the phantom’s path connects with the creature, the target must succeed on a DC 15 Dexterity saving throw or take 2d8 force damage and be knocked prone. Truffle (2 bristles). You plant the bristles in the ground to conjure up a magical truffle. Consuming the mushroom restores 2d8 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-depth-detection", + "fields": { + "name": "Wand of Depth Detection", + "desc": "This simple wooden wand has 7 charges and regains 1d6 + 1 expended charges daily at dawn. While holding it, you can use an action to expend 1 charge and point it at a body of water or other liquid. You learn the liquid's deepest point or its average depth (your choice). In addition, you can use an action to expend 1 charge while you are submerged in a liquid to determine how far you are beneath the liquid's surface.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-direction", + "fields": { + "name": "Wand of Direction", + "desc": "This crooked, twisting wand is crafted of polished ebony with a small, silver arrow affixed to its tip. The wand has 3 charges. While holding it, you can expend 1 charge as an action to make the wand remember your path for up to 1,760 feet of movement. You can increase the length of the path the wand remembers by 1,760 feet for each additional charge you expend. When you expend a charge to make the wand remember your current path, the wand forgets the oldest path of up to 1,760 feet that it remembers. If you wish to retrace your steps, you can use a bonus action to activate the wand’s arrow. The arrow guides you, pointing and mentally tugging you in the direction you should go. The wand’s magic allows you to backtrack with complete accuracy despite being lost, unable to see, or similar hindrances against finding your way. The wand can’t counter or dispel magic effects that cause you to become lost or misguided, but it can guide you back in spite of some magic hindrances, such as guiding you through the area of a darkness spell or guiding you if you had activated the wand then forgotten the way due to the effects of the modify memory spell on you. The wand regains all expended charges daily at dawn. If you expend the wand’s last charge, roll a d20. On a roll of 1, the wand straightens and the arrow falls off, rendering it nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-drowning", + "fields": { + "name": "Wand of Drowning", + "desc": "This wand appears to be carved from the bones of a large fish, which have been cemented together. The wand has 3 charges and regains 1d3 expended charges daily at dawn. While holding this wand, you can use an action to expend 1 charge to cause a thin stream of seawater to spray toward a creature you can see within 60 feet of you. If the target can breathe only air, it must succeed on a DC 15 Constitution saving throw or its lungs fill with rancid seawater and it begins drowning. A drowning creature chokes for a number of rounds equal to its Constitution modifier (minimum of 1 round). At the start of its turn after its choking ends, the creature drops to 0 hit points and is dying, and it can't regain hit points or be stabilized until it can breathe again. A successful DC 15 Wisdom (Medicine) check removes the seawater from the drowning creature's lungs, ending the effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-extinguishing", + "fields": { + "name": "Wand of Extinguishing", + "desc": "This charred and blackened wooden wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to extinguish a nonmagical flame within 10 feet of you that is no larger than a small campfire. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand transforms into a wand of ignition.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-fermentation", + "fields": { + "name": "Wand of Fermentation", + "desc": "Fashioned out of oak, this wand appears heavily stained by an unknown liquid. The wand has 7 charges and regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand explodes in a puff of black smoke and is destroyed. While holding the wand, you can use an action and expend 1 or more of its charges to transform nonmagical liquid, such as blood, apple juice, or water, into an alcoholic beverage. For each charge you expend, you transform up to 1 gallon of nonmagical liquid into an equal amount of beer, wine, or other spirit. The alcohol transforms back into its original form if it hasn't been consumed within 24 hours of being transformed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-flame-control", + "fields": { + "name": "Wand of Flame Control", + "desc": "This wand is fashioned from a branch of pine, stripped of bark and beaded with hardened resin. The wand has 3 charges. If you use the wand as an arcane focus while casting a spell that deals fire damage, you can expend 1 charge as part of casting the spell to increase the spell's damage by 1d4. In addition, while holding the wand, you can use an action to expend 1 of its charges to cause one of the following effects: - Change the color of any flames within 30 feet.\n- Cause a single flame to burn lower, halving the range of light it sheds but burning twice as long.\n- Cause a single flame to burn brighter, doubling the range of the light it sheds but halving its duration. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand bursts into flames and burns to ash in seconds.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-giggles", + "fields": { + "name": "Wand of Giggles", + "desc": "This wand is tipped with a feather. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges and point the wand at a humanoid you can see within 30 feet of you. The target must succeed on a DC 10 Charisma saving throw or be forced to giggle for 1 minute. Giggling doesn't prevent a target from taking actions or moving. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Tears.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-guidance", + "fields": { + "name": "Wand of Guidance", + "desc": "This slim, metal wand is topped with a cage shaped like a three-sided pyramid. An eye of glass sits within the pyramid. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the guidance spell from it. The wand regains all expended charges at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Resistance.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-harrowing", + "fields": { + "name": "Wand of Harrowing", + "desc": "The tips of this twisted wooden wand are exceptionally withered. The wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand disintegrates into useless white powder. Affliction. While holding the wand, you can use an action to expend 1 charge to cause a creature you can see within 60 feet of you to become afflicted with unsightly, weeping sores. The target must succeed on a DC 15 Constitution saving throw or have disadvantage on all Dexterity and Charisma checks for 1 minute. An afflicted creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Pain. While holding the wand, you can use an action to expend 3 charges to cause a creature you can see within 60 feet of you to become wracked with terrible pain. The target must succeed on a DC 15 Constitution saving throw or take 4d6 necrotic damage, and its movement speed is halved for 1 minute. A pained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself a success. If the target is also suffering from the Affliction property of this wand, it has disadvantage on the saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-ignition", + "fields": { + "name": "Wand of Ignition", + "desc": "The cracks in this charred and blackened wooden wand glow like live coals, but the wand is merely warm to the touch. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to set fire to one flammable object or collection of material (a stack of paper, a pile of kindling, or similar) within 10 feet of you that is Small or smaller. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Extinguishing.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-plant-destruction", + "fields": { + "name": "Wand of Plant Destruction", + "desc": "This wand of petrified wood has 7 charges. While holding it, you can use an action to expend up to 3 of its charges to harm a plant or plant creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw, taking 2d8 necrotic damage for each charge you expended on a failed save, or half as much damage on a successful one. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand shatters and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-relieved-burdens", + "fields": { + "name": "Wand of Relieved Burdens", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and touch a creature with the wand. If the creature is blinded, charmed, deafened, frightened, paralyzed, poisoned, or stunned, the condition is removed from the creature and transferred to you. You suffer the condition for the remainder of its duration or until it is removed. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand crumbles to dust and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-resistance", + "fields": { + "name": "Wand of Resistance", + "desc": "This slim, wooden wand is topped with a small, spherical cage, which holds a pyramid-shaped piece of hematite. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the resistance spell. The wand regains all expended charges at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Guidance .", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-revealing", + "fields": { + "name": "Wand of Revealing", + "desc": "Crystal beads decorate this wand, and a silver hand, index finger extended, caps it. The wand has 3 charges and regains all expended charges daily at dawn. While holding it, you can use an action to expend 1 of the wand's charges to reveal one creature or object within 120 feet of you that is either invisible or ethereal. This works like the see invisibility spell, except it allows you to see only that one creature or object. That creature or object remains visible as long as it remains within 120 feet of you. If more than one invisible or ethereal creature or object is in range when you use the wand, it reveals the nearest creature or object, revealing invisible creatures or objects before ethereal ones.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-tears", + "fields": { + "name": "Wand of Tears", + "desc": "The top half of this wooden wand is covered in thorns. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges and point the wand at a humanoid you can see within 30 feet of you. The target must succeed on a DC 10 Charisma saving throw or be forced to cry for 1 minute. Crying doesn't prevent a target from taking actions or moving. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Giggles .", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-the-timekeeper", + "fields": { + "name": "Wand of the Timekeeper", + "desc": "This smoothly polished wooden wand is perfectly balanced in the hand. Its grip is wrapped with supple leather strips, and its length is decorated with intricate arcane symbols. When you use it while playing a drum, you have advantage on Charisma (Performance) checks. The wand has 5 charges for the following properties. It regains 1d4 + 1 charges daily at dawn. Erratic. While holding the wand, you can use an action to expend 2 charges to force one creature you can see to re-roll its initiative at the end of each of its turns for 1 minute. An unwilling creature that succeeds on a DC 15 Wisdom saving throw is unaffected. Synchronize. While holding the wand, you can use an action to expend 1 charge to choose one creature you can see who has not taken its turn this round. That creature takes its next turn immediately after yours regardless of its turn in the Initiative order. An unwilling creature that succeeds on a DC 15 Wisdom saving throw is unaffected.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-treasure-finding", + "fields": { + "name": "Wand of Treasure Finding", + "desc": "This wand is adorned with gold and silver inlay and topped with a faceted crystal. The wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For 1 minute, you know the direction and approximate distance of the nearest mass or collection of precious metals or minerals within 60 feet. You can concentrate on a specific metal or mineral, such as silver, gold, or diamonds. If the specific metal or mineral is within 60 feet, you are able to discern all locations in which it is found and the approximate amount in each location. The wand's magic can penetrate most barriers, but it is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead. The effect ends if you stop holding the wand. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand turns to lead and becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-vapors", + "fields": { + "name": "Wand of Vapors", + "desc": "Green gas swirls inside this slender, glass wand. The wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand shatters into hundreds of crystalline fragments, and the gas within it dissipates. Fog Cloud. While holding the wand, you can use an action to expend 1 or more of its charges to cast the fog cloud spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend. Gaseous Escape. When you are attacked while holding this wand, you can use your reaction to expend 3 of its charges to transform yourself and everything you are wearing and carrying into a cloud of green mist until the start of your next turn. While you are a cloud of green mist, you have resistance to nonmagical damage, and you can’t be grappled or restrained. While in this form, you also can’t talk or manipulate objects, any objects you were wearing or holding can’t be dropped, used, or otherwise interacted with, and you can’t attack or cast spells.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wand-of-windows", + "fields": { + "name": "Wand of Windows", + "desc": "This clear, crystal wand has 3 charges. You can use an action to expend 1 charge and touch the wand to any nonmagical object. The wand causes a portion of the object, up to 1-foot square and 6 inches deep, to become transparent for 1 minute. The effect ends if you stop holding the wand. The wand regains 1d3 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand slowly becomes cloudy until it is completely opaque and becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ward-against-wild-appetites", + "fields": { + "name": "Ward Against Wild Appetites", + "desc": "Seventeen animal teeth of various sizes hang together on a simple leather thong, and each tooth is dyed a different color using pigments from plants native to old-growth forests. When a beast or monstrosity with an Intelligence of 4 or lower targets you with an attack, it has disadvantage on the attack roll if the attack is a bite. You must be wearing the necklace to gain this benefit.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_warding-icon", + "fields": { + "name": "Warding Icon", + "desc": "This carved piece of semiprecious stone typically takes the form of an angelic figure or a shield carved with a protective rune, and it is commonly worn attached to clothing or around the neck on a chain or cord. While wearing the stone, you have brief premonitions of danger and gain a +2 bonus to initiative if you aren't incapacitated.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_warlocks-aegis", + "fields": { + "name": "Warlock's Aegis", + "desc": "When you attune to this mundane-looking suit of leather armor, symbols related to your patron burn themselves into the leather, and the armor's colors change to those most closely associated with your patron. While wearing this armor, you can use an action and expend a spell slot to increase your AC by an amount equal to your Charisma modifier for the next 8 hours. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_warrior-shabti", + "fields": { + "name": "Warrior Shabti", + "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wave-chain-mail", + "fields": { + "name": "Wave Chain Mail", + "desc": "The rows of chain links of this armor seem to ebb and flow like waves while worn. Attacks against you have disadvantage while at least half of your body is submerged in water. In addition, when you are attacked, you can turn all or part of your body into water as a reaction, gaining immunity to bludgeoning, piercing, and slashing damage from nonmagical weapons, until the end of the attacker's turn. Once used, this property of the armor can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wayfarers-candle", + "fields": { + "name": "Wayfarer's Candle", + "desc": "This beeswax candle is stamped with a holy symbol, typically one of a deity associated with light or protection. When lit, it sheds light and heat as a normal candle for up to 1 hour, but it can't be extinguished by wind of any force. It can be blown out or extinguished only by the creature holding it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_web-arrows", + "fields": { + "name": "Web Arrows", + "desc": "Carvings of spiderwebs decorate the arrowhead and shaft of these arrows, which always come in pairs. When you fire the arrows from a bow, they become the two anchor points for a 20-foot cube of thick, sticky webbing. Once you fire the first arrow, you must fire the second arrow within 1 minute. The arrows must land within 20 feet of each other, or the magic fails. The webs created by the arrows are difficult terrain and lightly obscure the area. Each creature that starts its turn in the webs or enters them during its turn must make a DC 13 Dexterity saving throw. On a failed save, the creature is restrained as long as it remains in the webs or until it breaks free. A creature, including the restrained creature, can take its action to break the creature free from the webbing by succeeding on a DC 13 Strength check. The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_webbed-staff", + "fields": { + "name": "Webbed Staff", + "desc": "This staff is carved of ebony and wrapped in a net of silver wire. While holding it, you can't be caught in webs of any sort and can move through webs as if they were difficult terrain. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, spidersilk surrounds the staff in a cocoon then quickly unravels itself and the staff, destroying the staff.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_whip-of-fangs", + "fields": { + "name": "Whip of Fangs", + "desc": "The skin of a large asp is woven into the leather of this whip. The asp's head sits nestled among the leather tassels at its tip. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit with an attack using this magic weapon, the target takes an extra 1d4 poison damage and must succeed on a DC 13 Constitution saving throw or be poisoned until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_whispering-cloak", + "fields": { + "name": "Whispering Cloak", + "desc": "This cloak is made of black, brown, and white bat pelts sewn together. While wearing it, you have blindsight out to a range of 60 feet. While wearing this cloak with its hood up, you transform into a creature of pure shadow. While in shadow form, your Armor Class increases by 2, you have advantage on Dexterity (Stealth) checks, and you can move through a space as narrow as 1 inch wide without squeezing. You can cast spells normally while in shadow form, but you can't make ranged or melee attacks with nonmagical weapons. In addition, you can't pick up objects, and you can't give objects you are wearing or carrying to others. This effect lasts up to 1 hour. Deduct time spent in shadow form in increments of 1 minute from the total time. After it has been used for 1 hour, the cloak can't be used in this way again until the next dusk, when its time limit resets. Pulling the hood up or down requires an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_whispering-powder", + "fields": { + "name": "Whispering Powder", + "desc": "A paper envelope contains enough of this fine dust for one use. You can use an action to sprinkle the dust on the ground in up to four contiguous spaces. When a Small or larger creature steps into one of these spaces, it must make a DC 13 Dexterity saving throw. On a failure, loud squeals, squeaks, and pops erupt with each footfall, audible out to 150 feet. The powder's creator dictates the manner of sounds produced. The first creature to enter the affected spaces sets off the alarm, consuming the powder's magic. Otherwise, the effect lasts as long as the powder coats the area.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_white-ape-hide", + "fields": { + "name": "White Ape Hide", + "desc": "This armor was made from the remains of a White Ape (see Tome of Beasts) that fell in battle. While wearing this armor, you gain a +2 bonus to AC. In addition, the armor has the following properties while you wear it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_white-ape-leather", + "fields": { + "name": "White Ape Leather", + "desc": "This armor was made from the remains of a White Ape (see Tome of Beasts) that fell in battle. While wearing this armor, you gain a +2 bonus to AC. In addition, the armor has the following properties while you wear it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_white-dandelion", + "fields": { + "name": "White Dandelion", + "desc": "When you are attacked or are the target of a spell while holding this magically enhanced flower, you can use a reaction to blow on the flower. It explodes in a flurry of seeds that distracts your attacker, and you add 1 to your AC against the attack or to your saving throw against the spell. Afterwards, the flower wilts and becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_white-honey-buckle", + "fields": { + "name": "White Honey Buckle", + "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_windwalker-boots", + "fields": { + "name": "Windwalker Boots", + "desc": "These lightweight boots are made of soft leather. While you wear these boots, you can walk on air as if it were solid ground. Your speed is halved when ascending or descending on the air. Otherwise, you can walk on air at your walking speed. You can use the Dash action as normal to increase your movement during your turn. If you don't end your movement on solid ground, you fall at the end of your turn unless otherwise supported, such as by gripping a ledge or hanging from a rope.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wisp-of-the-void", + "fields": { + "name": "Wisp of the Void", + "desc": "The interior of this bottle is pitch black, and it feels empty. When opened, it releases a black vapor. When you inhale this vapor, your eyes go completely black. For 1 minute, you have darkvision out to a range of 60 feet, and you have resistance to necrotic damage. In addition, you gain a +1 bonus to damage rolls made with a weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_witch-ward-bottle", + "fields": { + "name": "Witch Ward Bottle", + "desc": "This small pottery jug contains an odd assortment of pins, needles, and rosemary, all sitting in a small amount of wine. A bloody fingerprint marks the top of the cork that seals the jug. When placed within a building (as small as a shack or as large as a castle) or buried in the earth on a section of land occupied by humanoids (as small as a campsite or as large as an estate), the bottle's magic protects those within the building or on the land against the magic of fey and fiends. The humanoid that owns the building or land and any ally or invited guests within the building or on the land has advantage on saving throws against the spells and special abilities of fey and fiends. If a protected creature fails its saving throw against a spell with a duration other than instantaneous, that creature can choose to succeed instead. Doing so immediately drains the jug's magic, and it shatters.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_witchs-brew", + "fields": { + "name": "Witch's Brew", + "desc": "For 1 minute after drinking this potion, your spell attacks deal an extra 1d4 necrotic damage on a hit. This revolting green potion's opaque liquid bubbles and steams as if boiling.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wolf-brush", + "fields": { + "name": "Wolf Brush", + "desc": "From a distance, this weapon bears a passing resemblance to a fallen tree branch. This unique polearm was first crafted by a famed martial educator and military general from the collected weapons of his fallen compatriots. Each point on this branching spear has a history of its own and is infused with the pain of loss and the glory of military service. When wielded in battle, each of the small, branching spear points attached to the polearm's shaft pulses with a warm glow and burns with the desire to protect the righteous. When not using it, you can fold the branches inward and sheathe the polearm in a leather wrap. You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you hold this weapon, it sheds dim light in a 5-foot radius. You can fold and wrap the weapon as an action, extinguishing the light. While holding or carrying the weapon, you have resistance to piercing damage. The weapon has 10 charges for the following other properties. The weapon regains 1d8 + 2 charges daily at dawn. In addition, it regains 1 charge when exposed to powerful magical sunlight, such as the light created by the sunbeam and sunburst spells, and it regains 1 charge each round it remains exposed to such sunlight. Spike Barrage. While wielding this weapon, you can use an action to expend 1 or more of its charges and sweep the weapon in a small arc to release a barrage of spikes in a 15-foot cone. Each creature in the area must make a DC 17 Dexterity saving throw, taking 1d10 piercing damage for each charge you expend on a failed save, or half as much damage on a successful one. Spiked Wall. While wielding this weapon, you can use an action to expend 6 charges to cast the wall of thorns spell (save DC 17) from it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wolfbite-ring", + "fields": { + "name": "Wolfbite Ring", + "desc": "This heavy iron ring is adorned with the stylized head of a snarling wolf. The ring has 3 charges and regains 1d3 expended charges daily at dawn. When you make a melee weapon attack while wearing this ring, you can use a bonus action to expend 1 of the ring's charges to deal an extra 2d6 piercing damage to the target. Then, the target must succeed on a DC 15 Strength saving throw or be knocked prone.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_worg-salve", + "fields": { + "name": "Worg Salve", + "desc": "Brewed by hags and lycanthropes, this oil grants you lupine features. Each pot contains enough for three applications. One application grants one of the following benefits (your choice): darkvision out to a range of 60 feet, advantage on Wisdom (Perception) checks that rely on smell, a walking speed of 50 feet, or a new attack option (use the statistics of a wolf 's bite attack) for 5 minutes. If you use all three applications at one time, you can cast polymorph on yourself, transforming into a wolf. While you are in the form of a wolf, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_worry-stone", + "fields": { + "name": "Worry Stone", + "desc": "This smooth, rounded piece of semiprecious crystal has a thumb-sized groove worn into one side. Physical contact with the stone helps clear the mind and calm the nerves, promoting success. If you spend 1 minute rubbing the stone, you have advantage on the next ability check you make within 1 hour of rubbing the stone. Once used, the stone can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wraithstone", + "fields": { + "name": "Wraithstone", + "desc": "This stone is carved from petrified roots to reflect the shape and visage of a beast. The stone holds the spirit of a sacrificed beast of the type the stone depicts. A wraithstone is often created to grant immortal life to a beloved animal companion or to banish a troublesome predator. The creature's essence stays within until the stone is broken, upon which point the soul is released and the creature can't be resurrected or reincarnated by any means short of a wish spell. While attuned to and carrying this item, a spectral representation of the beast walks beside you, resembling the sacrificed creature's likeness in its prime. The specter follows you at all times and can be seen by all. You can use a bonus action to dismiss or summon the specter. So long as you carry this stone, you can interact with the creature as if it were still alive, even speaking to it if it is able to speak, though it can't physically interact with the material world. It can gesture to indicate directions and communicate very basic single-word ideas to you telepathically. The stone has a number of charges, depending on the size of the creature stored within it. The stone has 6 charges if the creature is Large or smaller, 10 charges if the creature is Huge, and 12 charges if the creature is Gargantuan. After all of the stone's charges have been used, the beast's spirit is completely drained, and the stone becomes a nonmagical bauble. As a bonus action, you can expend 1 charge to cause one of the following effects:", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_wrathful-vapors", + "fields": { + "name": "Wrathful Vapors", + "desc": "Roiling vapors of red, orange, and black swirl in a frenzy of color inside a sealed glass bottle. As an action, you can open the bottle and empty its contents within 5 feet of you or throw the bottle up to 20 feet, shattering it on impact. If you throw it, make a ranged attack against a creature or object, treating the bottle as an improvised weapon. When you open or break the bottle, the smoke releases in a 20-foot-radius sphere that dissipates at the end of your next turn. A creature that isn't an undead or a construct that enters or starts its turn in the area must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. On its turn, a creature overcome with rage must attack the creature nearest to it with whatever melee weapon it has on hand, moving up to its speed toward the target, if necessary. The raging creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "vom_zephyr-shield", + "fields": { + "name": "Zephyr Shield", + "desc": "This round metal shield is painted bright blue with swirling white lines across it. You gain a +2 bonus to AC while you wield this shield. This is an addition to the shield's normal AC bonus. Air Bubble. Whenever you are immersed in a body of water while holding this shield, you can use a reaction to envelop yourself in a 10-foot radius bubble of fresh air. This bubble floats in place, but you can move it up to 30 feet during your turn. You are moved with the bubble when it moves. The air within the bubble magically replenishes itself every round and prevents foreign particles, such as poison gases and water-borne parasites, from entering the area. Other creatures can leave or enter the bubble freely, but it collapses as soon as you exit it. The exterior of the bubble is immune to damage and creatures making ranged attacks against anyone inside the bubble have disadvantage on their attack rolls. The bubble lasts for 1 minute or until you exit it. Once used, this property can’t be used again until the next dawn. Sanctuary. You can use a bonus action to cast the sanctuary spell (save DC 13) from the shield. This spell protects you from only water elementals and other creatures composed of water. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_ziphian-eye-amulet", + "fields": { + "name": "Ziphian Eye Amulet", + "desc": "This gold amulet holds a preserved eye from a Ziphius (see Creature Codex). It has 3 charges, and it regains all expended charges daily at dawn. While wearing this amulet, you can use a bonus action to speak its command word and expend 1 of its charges to create a brief magical bond with a creature you can see within 60 feet of you. The target must succeed on a DC 15 Wisdom saving throw or be magically bonded with you until the end of your next turn. While bonded in this way, you can choose to have advantage on attack rolls against the target or cause the target to have disadvantage on attack rolls against you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "vom_zipline-ring", + "fields": { + "name": "Zipline Ring", + "desc": "This plain gold ring features a magnificent ruby. While wearing the ring, you can use an action to cause a crimson zipline of magical force to extend from the gem in the ring and attach to up to two solid surfaces you can see. Each surface must be within 150 feet of you. Once the zipline is connected, you can use a bonus action to magically travel up to 50 feet along the line between the two surfaces. You can bring along objects as long as their weight doesn't exceed what you can carry. While the zipline is active, you remain suspended within 5 feet of the line, floating off the ground at least 3 inches, and you can't move more than 5 feet away from the zipline. When you magically travel along the line, you don't provoke opportunity attacks. The hand wearing the ring must be pointed at the line when you magically travel along it, but you otherwise can act normally while the zipline is active. You can use a bonus action to end the zipline. When the zipline has been active for a total of 1 minute, the ring's magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + } +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/Item.json b/data/v2/wizards-of-the-coast/srd/Item.json index d778114f..93a05301 100644 --- a/data/v2/wizards-of-the-coast/srd/Item.json +++ b/data/v2/wizards-of-the-coast/srd/Item.json @@ -1,13891 +1,13891 @@ [ -{ - "model": "api_v2.item", - "pk": "1lb-of-cinnamon", - "fields": { - "name": "Cinnamon", - "desc": "1lb of cinnamon", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1lb-of-cloves", - "fields": { - "name": "Cloves", - "desc": "1lb of cloves.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "3.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1lb-of-copper", - "fields": { - "name": "Copper", - "desc": "1lb of copper.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1lb-of-flour", - "fields": { - "name": "Flour", - "desc": "1lb of flour", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1lb-of-ginger", - "fields": { - "name": "Ginger", - "desc": "1lb of Ginger.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1lb-of-gold", - "fields": { - "name": "Gold", - "desc": "1lb of gold.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1lb-of-iron", - "fields": { - "name": "Iron", - "desc": "1lb of iron.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1lb-of-pepper", - "fields": { - "name": "Pepper", - "desc": "1lb of pepper.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1lb-of-platinum", - "fields": { - "name": "Platinum", - "desc": "1 lb. of platinum.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "500.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1lb-of-saffron", - "fields": { - "name": "Saffron", - "desc": "1lb of saffron.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1lb-of-salt", - "fields": { - "name": "Salt", - "desc": "1lb of salt.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1lb-of-silver", - "fields": { - "name": "Silver", - "desc": "1lb of silver", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1lb-of-wheat", - "fields": { - "name": "Wheat", - "desc": "1 pound of wheat.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1sqyd-of-canvas", - "fields": { - "name": "Canvas", - "desc": "1 sq. yd. of canvas", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1sqyd-of-cotton-cloth", - "fields": { - "name": "Cotton Cloth", - "desc": "1 sq. yd. of cotton cloth.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1sqyd-of-linen", - "fields": { - "name": "Linen", - "desc": "1 sq. yd. of linen.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "1sqyd-of-silk", - "fields": { - "name": "Silk", - "desc": "1 sq. yd. of silk.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "abacus", - "fields": { - "name": "Abacus", - "desc": "An abacus.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "acid", - "fields": { - "name": "Acid", - "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "acid-vial", - "fields": { - "name": "Acid (vial)", - "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "adamantine-armor-breastplate", - "fields": { - "name": "Adamantine Armor (Breastplate)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "adamantine-armor-chain-mail", - "fields": { - "name": "Adamantine Armor (Chain-Mail)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "adamantine-armor-chain-shirt", - "fields": { - "name": "Adamantine Armor (Chain-Shirt)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "adamantine-armor-half-plate", - "fields": { - "name": "Adamantine Armor (Half-Plate)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "adamantine-armor-hide", - "fields": { - "name": "Adamantine Armor (Hide)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "adamantine-armor-plate", - "fields": { - "name": "Adamantine Armor (Plate)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "adamantine-armor-ring-mail", - "fields": { - "name": "Adamantine Armor (Ring-Mail)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "adamantine-armor-scale-mail", - "fields": { - "name": "Adamantine Armor (Scale-Mail)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "adamantine-armor-splint", - "fields": { - "name": "Adamantine Armor (Splint)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "alchemists-fire", - "fields": { - "name": "Alchemist's Fire (Flask)", - "desc": "This sticky, adhesive fluid ignites when exposed to air. As an action, you can throw this flask up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the alchemist's fire as an improvised weapon. On a hit, the target takes 1d4 fire damage at the start of each of its turns. A creature can end this damage by using its action to make a DC 10 Dexterity check to extinguish the flames.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "alchemists-supplies", - "fields": { - "name": "Alchemist's Supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "amulet", - "fields": { - "name": "Amulet", - "desc": "Can be used as a holy symbol.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "amulet-of-health", - "fields": { - "name": "Amulet of Health", - "desc": "Your Constitution score is 19 while you wear this amulet. It has no effect on you if your Constitution is already 19 or higher.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "amulet-of-proof-against-detection-and-location", - "fields": { - "name": "Amulet of Proof against Detection and Location", - "desc": "While wearing this amulet, you are hidden from divination magic. You can't be targeted by such magic or perceived through magical scrying sensors.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "amulet-of-the-planes", - "fields": { - "name": "Amulet of the Planes", - "desc": "While wearing this amulet, you can use an action to name a location that you are familiar with on another plane of existence. Then make a DC 15 Intelligence check. On a successful check, you cast the _plane shift_ spell. On a failure, you and each creature and object within 15 feet of you travel to a random destination. Roll a d100. On a 1-60, you travel to a random location on the plane you named. On a 61-100, you travel to a randomly determined plane of existence.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "animated-shield", - "fields": { - "name": "Animated Shield", - "desc": "While holding this shield, you can speak its command word as a bonus action to cause it to animate. The shield leaps into the air and hovers in your space to protect you as if you were wielding it, leaving your hands free. The shield remains animated for 1 minute, until you use a bonus action to end this effect, or until you are incapacitated or die, at which point the shield falls to the ground or into your hand if you have one free.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "antitoxin", - "fields": { - "name": "Antitoxin (Vial)", - "desc": "A creature that drinks this vial of liquid gains advantage on saving throws against poison for 1 hour. It confers no benefit to undead or constructs.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "apparatus-of-the-crab", - "fields": { - "name": "Apparatus of the Crab", - "desc": "This item first appears to be a Large sealed iron barrel weighing 500 pounds. The barrel has a hidden catch, which can be found with a successful DC 20 Intelligence (Investigation) check. Releasing the catch unlocks a hatch at one end of the barrel, allowing two Medium or smaller creatures to crawl inside. Ten levers are set in a row at the far end, each in a neutral position, able to move either up or down. When certain levers are used, the apparatus transforms to resemble a giant lobster.\r\n\r\nThe apparatus of the Crab is a Large object with the following statistics:\r\n\r\n**Armor Class:** 20\r\n\r\n**Hit Points:** 200\r\n\r\n**Speed:** 30 ft., swim 30 ft. (or 0 ft. for both if the legs and tail aren't extended)\r\n\r\n**Damage Immunities:** poison, psychic\r\n\r\nTo be used as a vehicle, the apparatus requires one pilot. While the apparatus's hatch is closed, the compartment is airtight and watertight. The compartment holds enough air for 10 hours of breathing, divided by the number of breathing creatures inside.\r\n\r\nThe apparatus floats on water. It can also go underwater to a depth of 900 feet. Below that, the vehicle takes 2d6 bludgeoning damage per minute from pressure.\r\n\r\nA creature in the compartment can use an action to move as many as two of the apparatus's levers up or down. After each use, a lever goes back to its neutral position. Each lever, from left to right, functions as shown in the Apparatus of the Crab Levers table.\r\n\r\n**Apparatus of the Crab Levers (table)**\r\n\r\n| Lever | Up | Down |\r\n|-------|----------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 1 | Legs and tail extend, allowing the apparatus to walk and swim. | Legs and tail retract, reducing the apparatus's speed to 0 and making it unable to benefit from bonuses to speed. |\r\n| 2 | Forward window shutter opens. | Forward window shutter closes. |\r\n| 3 | Side window shutters open (two per side). | Side window shutters close (two per side). |\r\n| 4 | Two claws extend from the front sides of the apparatus. | The claws retract. |\r\n| 5 | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: 7 (2d6) bludgeoning damage. | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: The target is grappled (escape DC 15). |\r\n| 6 | The apparatus walks or swims forward. | The apparatus walks or swims backward. |\r\n| 7 | The apparatus turns 90 degrees left. | The apparatus turns 90 degrees right. |\r\n| 8 | Eyelike fixtures emit bright light in a 30-foot radius and dim light for an additional 30 feet. | The light turns off. |\r\n| 9 | The apparatus sinks as much as 20 feet in liquid. | The apparatus rises up to 20 feet in liquid. |\r\n| 10 | The rear hatch unseals and opens. | The rear hatch closes and seals. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "armor-of-invulnerability", - "fields": { - "name": "Armor of Invulnerability", - "desc": "You have resistance to nonmagical damage while you wear this armor. Additionally, you can use an action to make yourself immune to nonmagical damage for 10 minutes or until you are no longer wearing the armor. Once this special action is used, it can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "armor-of-resistance-leather", - "fields": { - "name": "Armor of Resistance (Leather)", - "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "armor-of-resistance-padded", - "fields": { - "name": "Armor of Resistance (Padded)", - "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "armor-of-resistance-studded-leather", - "fields": { - "name": "Armor of Resistance (Studded-Leather)", - "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "armor-of-vulnerability", - "fields": { - "name": "Armor of Vulnerability", - "desc": "While wearing this armor, you have resistance to one of the following damage types: bludgeoning, piercing, or slashing. The GM chooses the type or determines it randomly.\n\n**_Curse_**. This armor is cursed, a fact that is revealed only when an _identify_ spell is cast on the armor or you attune to it. Attuning to the armor curses you until you are targeted by the _remove curse_ spell or similar magic; removing the armor fails to end the curse. While cursed, you have vulnerability to two of the three damage types associated with the armor (not the one to which it grants resistance).", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "arrow-bow", - "fields": { - "name": "Arrow (bow)", - "desc": "An arrow for a bow.", - "document": "srd", - "size": "tiny", - "weight": "0.050", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "arrow-catching-shield", - "fields": { - "name": "Arrow-Catching Shield", - "desc": "You gain a +2 bonus to AC against ranged attacks while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. In addition, whenever an attacker makes a ranged attack against a target within 5 feet of you, you can use your reaction to become the target of the attack instead.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "arrow-of-slaying", - "fields": { - "name": "Arrow of Slaying", - "desc": "An _arrow of slaying_ is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both _arrows of dragon slaying_ and _arrows of blue dragon slaying_. If a creature belonging to the type, race, or group associated with an _arrow of slaying_ takes damage from the arrow, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.\\n\\nOnce an _arrow of slaying_ deals its extra damage to a creature, it becomes a nonmagical arrow.\\n\\nOther types of magic ammunition of this kind exist, such as _bolts of slaying_ meant for a crossbow, though arrows are most common.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "assassins-blood", - "fields": { - "name": "Assassin's Blood", - "desc": "A creature subjected to this poison must make a DC 10 Constitution saving throw. On a failed save, it takes 6 (1d12) poison damage and is poisoned for 24 hours. On a successful save, the creature takes half damage and isn't poisoned.\\n\\n\r\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "150.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "backpack", - "fields": { - "name": "Backpack", - "desc": "A backpack. Capacity: 1 cubic foot/30 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "bag-of-beans", - "fields": { - "name": "Bag of Beans", - "desc": "Inside this heavy cloth bag are 3d4 dry beans. The bag weighs 1/2 pound plus 1/4 pound for each bean it contains.\r\n\r\nIf you dump the bag's contents out on the ground, they explode in a 10-foot radius, extending from the beans. Each creature in the area, including you, must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.\r\n\r\nIf you remove a bean from the bag, plant it in dirt or sand, and then water it, the bean produces an effect 1 minute later from the ground where it was planted. The GM can choose an effect from the following table, determine it randomly, or create an effect.\r\n\r\n| d100 | Effect |\r\n|-------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01 | 5d4 toadstools sprout. If a creature eats a toadstool, roll any die. On an odd roll, the eater must succeed on a DC 15 Constitution saving throw or take 5d6 poison damage and become poisoned for 1 hour. On an even roll, the eater gains 5d6 temporary hit points for 1 hour. |\r\n| 02-10 | A geyser erupts and spouts water, beer, berry juice, tea, vinegar, wine, or oil (GM's choice) 30 feet into the air for 1d12 rounds. |\r\n| 11-20 | A treant sprouts. There's a 50 percent chance that the treant is chaotic evil and attacks. |\r\n| 21-30 | An animate, immobile stone statue in your likeness rises. It makes verbal threats against you. If you leave it and others come near, it describes you as the most heinous of villains and directs the newcomers to find and attack you. If you are on the same plane of existence as the statue, it knows where you are. The statue becomes inanimate after 24 hours. |\r\n| 31-40 | A campfire with blue flames springs forth and burns for 24 hours (or until it is extinguished). |\r\n| 41-50 | 1d6 + 6 shriekers sprout |\r\n| 51-60 | 1d4 + 8 bright pink toads crawl forth. Whenever a toad is touched, it transforms into a Large or smaller monster of the GM's choice. The monster remains for 1 minute, then disappears in a puff of bright pink smoke. |\r\n| 61-70 | A hungry bulette burrows up and attacks. 71-80 A fruit tree grows. It has 1d10 + 20 fruit, 1d8 of which act as randomly determined magic potions, while one acts as an ingested poison of the GM's choice. The tree vanishes after 1 hour. Picked fruit remains, retaining any magic for 30 days. |\r\n| 81-90 | A nest of 1d4 + 3 eggs springs up. Any creature that eats an egg must make a DC 20 Constitution saving throw. On a successful save, a creature permanently increases its lowest ability score by 1, randomly choosing among equally low scores. On a failed save, the creature takes 10d6 force damage from an internal magical explosion. |\r\n| 91-99 | A pyramid with a 60-foot-square base bursts upward. Inside is a sarcophagus containing a mummy lord. The pyramid is treated as the mummy lord's lair, and its sarcophagus contains treasure of the GM's choice. |\r\n| 100 | A giant beanstalk sprouts, growing to a height of the GM's choice. The top leads where the GM chooses, such as to a great view, a cloud giant's castle, or a different plane of existence. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bag-of-devouring", - "fields": { - "name": "Bag of Devouring", - "desc": "This bag superficially resembles a _bag of holding_ but is a feeding orifice for a gigantic extradimensional creature. Turning the bag inside out closes the orifice.\r\n\r\nThe extradimensional creature attached to the bag can sense whatever is placed inside the bag. Animal or vegetable matter placed wholly in the bag is devoured and lost forever. When part of a living creature is placed in the bag, as happens when someone reaches inside it, there is a 50 percent chance that the creature is pulled inside the bag. A creature inside the bag can use its action to try to escape with a successful DC 15 Strength check. Another creature can use its action to reach into the bag to pull a creature out, doing so with a successful DC 20 Strength check (provided it isn't pulled inside the bag first). Any creature that starts its turn inside the bag is devoured, its body destroyed.\r\n\r\nInanimate objects can be stored in the bag, which can hold a cubic foot of such material. However, once each day, the bag swallows any objects inside it and spits them out into another plane of existence. The GM determines the time and plane.\r\n\r\nIf the bag is pierced or torn, it is destroyed, and anything contained within it is transported to a random location on the Astral Plane.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bag-of-holding", - "fields": { - "name": "Bag of Holding", - "desc": "This bag has an interior space considerably larger than its outside dimensions, roughly 2 feet in diameter at the mouth and 4 feet deep. The bag can hold up to 500 pounds, not exceeding a volume of 64 cubic feet. The bag weighs 15 pounds, regardless of its contents. Retrieving an item from the bag requires an action.\r\n\r\nIf the bag is overloaded, pierced, or torn, it ruptures and is destroyed, and its contents are scattered in the Astral Plane. If the bag is turned inside out, its contents spill forth, unharmed, but the bag must be put right before it can be used again. Breathing creatures inside the bag can survive up to a number of minutes equal to 10 divided by the number of creatures (minimum 1 minute), after which time they begin to suffocate.\r\n\r\nPlacing a _bag of holding_ inside an extradimensional space created by a _handy haversack_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it to a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bag-of-tricks", - "fields": { - "name": "Bag of Tricks", - "desc": "This ordinary bag, made from gray, rust, or tan cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\r\n\r\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a d8 and consulting the table that corresponds to the bag's color.\r\n\r\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\r\n\r\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.\r\n\r\n**Gray Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Weasel |\r\n| 2 | Giant rat |\r\n| 3 | Badger |\r\n| 4 | Boar |\r\n| 5 | Panther |\r\n| 6 | Giant badger |\r\n| 7 | Dire wolf |\r\n| 8 | Giant elk |\r\n\r\n**Rust Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|------------|\r\n| 1 | Rat |\r\n| 2 | Owl |\r\n| 3 | Mastiff |\r\n| 4 | Goat |\r\n| 5 | Giant goat |\r\n| 6 | Giant boar |\r\n| 7 | Lion |\r\n| 8 | Brown bear |\r\n\r\n**Tan Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Jackal |\r\n| 2 | Ape |\r\n| 3 | Baboon |\r\n| 4 | Axe beak |\r\n| 5 | Black bear |\r\n| 6 | Giant weasel |\r\n| 7 | Giant hyena |\r\n| 8 | Tiger |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bagpipes", - "fields": { - "name": "Bagpipes", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "ball-bearings", - "fields": { - "name": "Ball Bearings (bag of 1000)", - "desc": "As an action, you can spill these tiny metal balls from their pouch to cover a level, square area that is 10 feet on a side. A creature moving across the covered area must succeed on a DC 10 Dexterity saving throw or fall prone. A creature moving through the area at half speed doesn't need to make the save.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "barrel", - "fields": { - "name": "Barrel", - "desc": "A barrel. Capacity: 40 gallons liquid, 4 cubic feet solid.", - "document": "srd", - "size": "medium", - "weight": "70.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "basket", - "fields": { - "name": "Basket", - "desc": "A basket. Capacity: 2 cubic feet/40 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.40", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "battleaxe", - "fields": { - "name": "Battleaxe", - "desc": "A battleaxe.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "battleaxe-1", - "fields": { - "name": "Battleaxe (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "battleaxe-2", - "fields": { - "name": "Battleaxe (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "battleaxe-3", - "fields": { - "name": "Battleaxe (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bead-of-force", - "fields": { - "name": "Bead of Force", - "desc": "This small black sphere measures 3/4 of an inch in diameter and weighs an ounce. Typically, 1d4 + 4 _beads of force_ are found together.\r\n\r\nYou can use an action to throw the bead up to 60 feet. The bead explodes on impact and is destroyed. Each creature within a 10-foot radius of where the bead landed must succeed on a DC 15 Dexterity saving throw or take 5d4 force damage. A sphere of transparent force then encloses the area for 1 minute. Any creature that failed the save and is completely within the area is trapped inside this sphere. Creatures that succeeded on the save, or are partially within the area, are pushed away from the center of the sphere until they are no longer inside it. Only breathable air can pass through the sphere's wall. No attack or other effect can.\r\n\r\nAn enclosed creature can use its action to push against the sphere's wall, moving the sphere up to half the creature's walking speed. The sphere can be picked up, and its magic causes it to weigh only 1 pound, regardless of the weight of creatures inside.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bedroll", - "fields": { - "name": "Bedroll", - "desc": "A bedroll.", - "document": "srd", - "size": "tiny", - "weight": "7.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "bell", - "fields": { - "name": "Bell", - "desc": "A bell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "belt-of-cloud-giant-strength", - "fields": { - "name": "Belt of Cloud Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "belt-of-dwarvenkind", - "fields": { - "name": "Belt of Dwarvenkind", - "desc": "While wearing this belt, you gain the following benefits:\r\n\r\n* Your Constitution score increases by 2, to a maximum of 20.\r\n* You have advantage on Charisma (Persuasion) checks made to interact with dwarves.\r\n\r\nIn addition, while attuned to the belt, you have a 50 percent chance each day at dawn of growing a full beard if you're capable of growing one, or a visibly thicker beard if you already have one.\r\n\r\nIf you aren't a dwarf, you gain the following additional benefits while wearing the belt:\r\n\r\n* You have advantage on saving throws against poison, and you have resistance against poison damage.\r\n* You have darkvision out to a range of 60 feet.\r\n* You can speak, read, and write Dwarvish.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "belt-of-fire-giant-strength", - "fields": { - "name": "Belt of Fire Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "belt-of-frost-giant-strength", - "fields": { - "name": "Belt of Frost Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "belt-of-hill-giant-strength", - "fields": { - "name": "Belt of Hill Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "belt-of-stone-giant-strength", - "fields": { - "name": "Belt of Stone Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "belt-of-storm-giant-strength", - "fields": { - "name": "Belt of Storm Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "blanket", - "fields": { - "name": "Blanket", - "desc": "A blanket.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "block-and-tackle", - "fields": { - "name": "Block and Tackle", - "desc": "A set of pulleys with a cable threaded through them and a hook to attach to objects, a block and tackle allows you to hoist up to four times the weight you can normally lift.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "blowgun", - "fields": { - "name": "Blowgun", - "desc": "A blowgun.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "blowgun-1", - "fields": { - "name": "Blowgun (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "blowgun-2", - "fields": { - "name": "Blowgun (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "blowgun-3", - "fields": { - "name": "Blowgun (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "blowgun-needles", - "fields": { - "name": "Blowgun needles", - "desc": "Needles to be fired with a blowgun.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "book", - "fields": { - "name": "Book", - "desc": "A book might contain poetry, historical accounts, information pertaining to a particular field of lore, diagrams and notes on gnomish contraptions, or just about anything else that can be represented using text or pictures. A book of spells is a spellbook (described later in this section).", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "boots-of-elvenkind", - "fields": { - "name": "Boots of Elvenkind", - "desc": "While you wear these boots, your steps make no sound, regardless of the surface you are moving across. You also have advantage on Dexterity (Stealth) checks that rely on moving silently.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "boots-of-levitation", - "fields": { - "name": "Boots of Levitation", - "desc": "While you wear these boots, you can use an action to cast the _levitate_ spell on yourself at will.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "boots-of-speed", - "fields": { - "name": "Boots of Speed", - "desc": "While you wear these boots, you can use a bonus action and click the boots' heels together. If you do, the boots double your walking speed, and any creature that makes an opportunity attack against you has disadvantage on the attack roll. If you click your heels together again, you end the effect.\r\n\r\nWhen the boots' property has been used for a total of 10 minutes, the magic ceases to function until you finish a long rest.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "boots-of-striding-and-springing", - "fields": { - "name": "Boots of Striding and Springing", - "desc": "While you wear these boots, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced if you are encumbered or wearing heavy armor. In addition, you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "boots-of-the-winterlands", - "fields": { - "name": "Boots of the Winterlands", - "desc": "These furred boots are snug and feel quite warm. While you wear them, you gain the following benefits:\r\n\r\n* You have resistance to cold damage.\r\n* You ignore difficult terrain created by ice or snow.\r\n* You can tolerate temperatures as low as -50 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as -100 degrees Fahrenheit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bottle-glass", - "fields": { - "name": "Bottle, glass", - "desc": "A glass bottle. Capacity: 1.5 pints liquid.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "bowl-of-commanding-water-elementals", - "fields": { - "name": "Bowl of Commanding Water Elementals", - "desc": "While this bowl is filled with water, you can use an action to speak the bowl's command word and summon a water elemental, as if you had cast the _conjure elemental_ spell. The bowl can't be used this way again until the next dawn.\r\n\r\nThe bowl is about 1 foot in diameter and half as deep. It weighs 3 pounds and holds about 3 gallons.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "bracers-of-archery", - "fields": { - "name": "Bracers of Archery", - "desc": "While wearing these bracers, you have proficiency with the longbow and shortbow, and you gain a +2 bonus to damage rolls on ranged attacks made with such weapons.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bracers-of-defense", - "fields": { - "name": "Bracers of Defense", - "desc": "While wearing these bracers, you gain a +2 bonus to AC if you are wearing no armor and using no shield.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "brazier-of-commanding-fire-elementals", - "fields": { - "name": "Brazier of Commanding Fire Elementals", - "desc": "While a fire burns in this brass brazier, you can use an action to speak the brazier's command word and summon a fire elemental, as if you had cast the _conjure elemental_ spell. The brazier can't be used this way again until the next dawn.\r\n\r\nThe brazier weighs 5 pounds.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "breastplate", - "fields": { - "name": "Breastplate", - "desc": "This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.", - "document": "srd", - "size": "tiny", - "weight": "20.000", - "armor_class": 0, - "hit_points": 0, - "cost": "400.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "brewers-supplies", - "fields": { - "name": "Brewer's Supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "9.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "brooch-of-shielding", - "fields": { - "name": "Brooch of Shielding", - "desc": "While wearing this brooch, you have resistance to force damage, and you have immunity to damage from the _magic missile_ spell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "broom-of-flying", - "fields": { - "name": "Broom of Flying", - "desc": "This wooden broom, which weighs 3 pounds, functions like a mundane broom until you stand astride it and speak its command word. It then hovers beneath you and can be ridden in the air. It has a flying speed of 50 feet. It can carry up to 400 pounds, but its flying speed becomes 30 feet while carrying over 200 pounds. The broom stops hovering when you land.\r\n\r\nYou can send the broom to travel alone to a destination within 1 mile of you if you speak the command word, name the location, and are familiar with that place. The broom comes back to you when you speak another command word, provided that the broom is still within 1 mile of you.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "bucket", - "fields": { - "name": "Bucket", - "desc": "A bucket. Capacity: 3 gallons liquid, 1/2 cubic foot solid.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "burnt-othur-fumes", - "fields": { - "name": "Burnt othur fumes", - "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or take 10 (3d6) poison damage, and must repeat the saving throw at the start of each of its turns. On each successive failed save, the character takes 3 (1d6) poison damage. After three successful saves, the poison ends.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "500.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "calligraphers-supplies", - "fields": { - "name": "Calligrapher's supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "caltrops", - "fields": { - "name": "Caltrops (bag of 20)", - "desc": "As an action, you can spread a bag of caltrops to cover a square area that is 5 feet on a side. Any creature that enters the area must succeed on a DC 15 Dexterity saving throw or stop moving this turn and take 1 piercing damage. Taking this damage reduces the creature's walking speed by 10 feet until the creature regains at least 1 hit point. A creature moving through the area at half speed doesn't need to make the save.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "candle", - "fields": { - "name": "Candle", - "desc": "For 1 hour, a candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "candle-of-invocation", - "fields": { - "name": "Candle of Invocation", - "desc": "This slender taper is dedicated to a deity and shares that deity's alignment. The candle's alignment can be detected with the _detect evil and good_ spell. The GM chooses the god and associated alignment or determines the alignment randomly.\r\n\r\n| d20 | Alignment |\r\n|-------|-----------------|\r\n| 1-2 | Chaotic evil |\r\n| 3-4 | Chaotic neutral |\r\n| 5-7 | Chaotic good |\r\n| 8-9 | Neutral evil |\r\n| 10-11 | Neutral |\r\n| 12-13 | Neutral good |\r\n| 14-15 | Lawful evil |\r\n| 16-17 | Lawful neutral |\r\n| 18-20 | Lawful good |\r\n\r\nThe candle's magic is activated when the candle is lit, which requires an action. After burning for 4 hours, the candle is destroyed. You can snuff it out early for use at a later time. Deduct the time it burned in increments of 1 minute from the candle's total burn time.\r\n\r\nWhile lit, the candle sheds dim light in a 30-foot radius. Any creature within that light whose alignment matches that of the candle makes attack rolls, saving throws, and ability checks with advantage. In addition, a cleric or druid in the light whose alignment matches the candle's can cast 1st* level spells he or she has prepared without expending spell slots, though the spell's effect is as if cast with a 1st-level slot.\r\n\r\nAlternatively, when you light the candle for the first time, you can cast the _gate_ spell with it. Doing so destroys the candle.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "cape-of-the-mountebank", - "fields": { - "name": "Cape of the Mountebank", - "desc": "This cape smells faintly of brimstone. While wearing it, you can use it to cast the _dimension door_ spell as an action. This property of the cape can't be used again until the next dawn.\r\n\r\nWhen you disappear, you leave behind a cloud of smoke, and you appear in a similar cloud of smoke at your destination. The smoke lightly obscures the space you left and the space you appear in, and it dissipates at the end of your next turn. A light or stronger wind disperses the smoke.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "carpenters-tools", - "fields": { - "name": "Carpenter's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "8.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "carpet-of-flying", - "fields": { - "name": "Carpet of Flying", - "desc": "You can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.\r\n\r\nFour sizes of _carpet of flying_ exist. The GM chooses the size of a given carpet or determines it randomly.\r\n\r\n| d100 | Size | Capacity | Flying Speed |\r\n|--------|---------------|----------|--------------|\r\n| 01-20 | 3 ft. × 5 ft. | 200 lb. | 80 feet |\r\n| 21-55 | 4 ft. × 6 ft. | 400 lb. | 60 feet |\r\n| 56-80 | 5 ft. × 7 ft. | 600 lb. | 40 feet |\r\n| 81-100 | 6 ft. × 9 ft. | 800 lb. | 30 feet |\r\n\r\nA carpet can carry up to twice the weight shown on the table, but it flies at half speed if it carries more than its normal capacity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "carriage", - "fields": { - "name": "Carriage", - "desc": "Drawn vehicle.", - "document": "srd", - "size": "huge", - "weight": "600.000", - "armor_class": 0, - "hit_points": 0, - "cost": "100.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "cart", - "fields": { - "name": "Cart", - "desc": "Drawn vehicle", - "document": "srd", - "size": "large", - "weight": "200.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "cartographers-tools", - "fields": { - "name": "Cartographer's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "case-crossbow-bolt", - "fields": { - "name": "Case, Crossbow Bolt", - "desc": "This wooden case can hold up to twenty crossbow bolts.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "case-map-or-scroll", - "fields": { - "name": "Case, Map or Scroll", - "desc": "This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "censer-of-controlling-air-elementals", - "fields": { - "name": "Censer of Controlling Air Elementals", - "desc": "While incense is burning in this censer, you can use an action to speak the censer's command word and summon an air elemental, as if you had cast the _conjure elemental_ spell. The censer can't be used this way again until the next dawn.\r\n\r\nThis 6-inch-wide, 1-foot-high vessel resembles a chalice with a decorated lid. It weighs 1 pound.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "chain", - "fields": { - "name": "Chain (10 feet)", - "desc": "A chain has 10 hit points. It can be burst with a successful DC 20 Strength check.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "chain-mail", - "fields": { - "name": "Chain mail", - "desc": "Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.", - "document": "srd", - "size": "tiny", - "weight": "55.000", - "armor_class": 0, - "hit_points": 0, - "cost": "75.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "chain-shirt", - "fields": { - "name": "Chain shirt", - "desc": "Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.", - "document": "srd", - "size": "tiny", - "weight": "20.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "chalk", - "fields": { - "name": "Chalk (1 piece)", - "desc": "A piece of chalk.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "chariot", - "fields": { - "name": "Chariot", - "desc": "Drawn vehicle.", - "document": "srd", - "size": "large", - "weight": "100.000", - "armor_class": 0, - "hit_points": 0, - "cost": "250.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "chest", - "fields": { - "name": "Chest", - "desc": "A chest. Capacity: 12 cubic feet/300 pounds of gear.", - "document": "srd", - "size": "small", - "weight": "25.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "chicken", - "fields": { - "name": "Chicken", - "desc": "One chicken", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "chime-of-opening", - "fields": { - "name": "Chime of Opening", - "desc": "This hollow metal tube measures about 1 foot long and weighs 1 pound. You can strike it as an action, pointing it at an object within 120 feet of you that can be opened, such as a door, lid, or lock. The chime issues a clear tone, and one lock or latch on the object opens unless the sound can't reach the object. If no locks or latches remain, the object itself opens.\r\n\r\nThe chime can be used ten times. After the tenth time, it cracks and becomes useless.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "circlet-of-blasting", - "fields": { - "name": "Circlet of Blasting", - "desc": "While wearing this circlet, you can use an action to cast the _scorching ray_ spell with it. When you make the spell's attacks, you do so with an attack bonus of +5. The circlet can't be used this way again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "climbers-kit", - "fields": { - "name": "Climber's Kit", - "desc": "A climber's kit includes special pitons, boot tips, gloves, and a harness. You can use the climber's kit as an action to anchor yourself; when you do, you can't fall more than 25 feet from the point where you anchored yourself, and you can't climb more than 25 feet away from that point without undoing the anchor.", - "document": "srd", - "size": "tiny", - "weight": "12.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-arachnida", - "fields": { - "name": "Cloak of Arachnida", - "desc": "This fine garment is made of black silk interwoven with faint silvery threads. While wearing it, you gain the following benefits:\r\n\r\n* You have resistance to poison damage.\r\n* You have a climbing speed equal to your walking speed.\r\n* You can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free.\r\n* You can't be caught in webs of any sort and can move through webs as if they were difficult terrain.\r\n* You can use an action to cast the _web_ spell (save DC 13). The web created by the spell fills twice its normal area. Once used, this property of the cloak can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-displacement", - "fields": { - "name": "Cloak of Displacement", - "desc": "While you wear this cloak, it projects an illusion that makes you appear to be standing in a place near your actual location, causing any creature to have disadvantage on attack rolls against you. If you take damage, the property ceases to function until the start of your next turn. This property is suppressed while you are incapacitated, restrained, or otherwise unable to move.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-elvenkind", - "fields": { - "name": "Cloak of Elvenkind", - "desc": "While you wear this cloak with its hood up, Wisdom (Perception) checks made to see you have disadvantage, and you have advantage on Dexterity (Stealth) checks made to hide, as the cloak's color shifts to camouflage you. Pulling the hood up or down requires an action.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-protection", - "fields": { - "name": "Cloak of Protection", - "desc": "You gain a +1 bonus to AC and saving throws while you wear this cloak.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-the-bat", - "fields": { - "name": "Cloak of the Bat", - "desc": "While wearing this cloak, you have advantage on Dexterity (Stealth) checks. In an area of dim light or darkness, you can grip the edges of the cloak with both hands and use it to fly at a speed of 40 feet. If you ever fail to grip the cloak's edges while flying in this way, or if you are no longer in dim light or darkness, you lose this flying speed.\r\n\r\nWhile wearing the cloak in an area of dim light or darkness, you can use your action to cast _polymorph_ on yourself, transforming into a bat. While you are in the form of the bat, you retain your Intelligence, Wisdom, and Charisma scores. The cloak can't be used this way again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "cloak-of-the-manta-ray", - "fields": { - "name": "Cloak of the Manta Ray", - "desc": "While wearing this cloak with its hood up, you can breathe underwater, and you have a swimming speed of 60 feet. Pulling the hood up or down requires an action.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "clothes-common", - "fields": { - "name": "Clothes, Common", - "desc": "Common clothes.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "clothes-costume", - "fields": { - "name": "Clothes, costume", - "desc": "A costume.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "clothes-fine", - "fields": { - "name": "Clothes, fine", - "desc": "Fine clothing.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "clothes-travelers", - "fields": { - "name": "Clothes, traveler's", - "desc": "Traveler's clothing.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "club", - "fields": { - "name": "Club", - "desc": "A club", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "club-1", - "fields": { - "name": "Club (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "club-2", - "fields": { - "name": "Club (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "club-3", - "fields": { - "name": "Club (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "cobblers-tools", - "fields": { - "name": "Cobbler's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "component-pouch", - "fields": { - "name": "Component Pouch", - "desc": "A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "cooks-utensils", - "fields": { - "name": "Cook's utensils", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "cow", - "fields": { - "name": "Cow", - "desc": "One cow.", - "document": "srd", - "size": "large", - "weight": "1000.000", - "armor_class": 10, - "hit_points": 15, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "cp", - "fields": { - "name": "Copper Piece", - "desc": "One silver piece is worth ten copper pieces, which are common among laborers and beggars. A single copper piece buys a candle, a torch, or a piece of chalk.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "crawler-mucus", - "fields": { - "name": "Crawler mucus", - "desc": "This poison must be harvested from a dead or incapacitated crawler. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. The poisoned creature is paralyzed. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\\n\\n\r\n**_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "crossbow-bolt", - "fields": { - "name": "Crossbow bolt", - "desc": "Bolts to be used in a crossbow.", - "document": "srd", - "size": "tiny", - "weight": "0.080", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "crossbow-hand", - "fields": { - "name": "Crossbow, hand", - "desc": "A hand crossbow.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "75.00", - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "crossbow-hand-1", - "fields": { - "name": "Crossbow-Hand (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "crossbow-hand-2", - "fields": { - "name": "Crossbow-Hand (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "crossbow-hand-3", - "fields": { - "name": "Crossbow-Hand (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "crossbow-heavy", - "fields": { - "name": "Crossbow, heavy", - "desc": "A heavy crossbow", - "document": "srd", - "size": "tiny", - "weight": "18.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "crossbow-heavy-1", - "fields": { - "name": "Crossbow-Heavy (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "crossbow-heavy-2", - "fields": { - "name": "Crossbow-Heavy (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "crossbow-heavy-3", - "fields": { - "name": "Crossbow-Heavy (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "crossbow-light", - "fields": { - "name": "Crossbow, light", - "desc": "A light crossbow.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "crossbow-light-1", - "fields": { - "name": "Crossbow-Light (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "crossbow-light-2", - "fields": { - "name": "Crossbow-Light (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "crossbow-light-3", - "fields": { - "name": "Crossbow-Light (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "crowbar", - "fields": { - "name": "Crowbar", - "desc": "Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "crystal", - "fields": { - "name": "Crystal", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "crystal-ball", - "fields": { - "name": "Crystal Ball", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "crystal-ball-of-mind-reading", - "fields": { - "name": "Crystal Ball of Mind Reading", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nYou can use an action to cast the detect thoughts spell (save DC 17) while you are scrying with the crystal ball, targeting creatures you can see within 30 feet of the spell's sensor. You don't need to concentrate on this detect thoughts to maintain it during its duration, but it ends if scrying ends.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "crystal-ball-of-telepathy", - "fields": { - "name": "Crystal Ball of Telepathy", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nThe following crystal ball variants are legendary items and have additional properties.\r\n\r\nWhile scrying with the crystal ball, you can communicate telepathically with creatures you can see within 30 feet of the spell's sensor. You can also use an action to cast the suggestion spell (save DC 17) through the sensor on one of those creatures. You don't need to concentrate on this suggestion to maintain it during its duration, but it ends if scrying ends. Once used, the suggestion power of the crystal ball can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "crystal-ball-of-true-seeing", - "fields": { - "name": "Crystal Ball of True Seeing", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nWhile scrying with the crystal ball, you have truesight with a radius of 120 feet centered on the spell's sensor.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "cube-of-force", - "fields": { - "name": "Cube of Force", - "desc": "This cube is about an inch across. Each face has a distinct marking on it that can be pressed. The cube starts with 36 charges, and it regains 1d20 expended charges daily at dawn.\r\n\r\nYou can use an action to press one of the cube's faces, expending a number of charges based on the chosen face, as shown in the Cube of Force Faces table. Each face has a different effect. If the cube has insufficient charges remaining, nothing happens. Otherwise, a barrier of invisible force springs into existence, forming a cube 15 feet on a side. The barrier is centered on you, moves with you, and lasts for 1 minute, until you use an action to press the cube's sixth face, or the cube runs out of charges. You can change the barrier's effect by pressing a different face of the cube and expending the requisite number of charges, resetting the duration.\r\n\r\nIf your movement causes the barrier to come into contact with a solid object that can't pass through the cube, you can't move any closer to that object as long as the barrier remains.\r\n\r\n**Cube of Force Faces (table)**\r\n\r\n| Face | Charges | Effect |\r\n|------|---------|-------------------------------------------------------------------------------------------------------------------|\r\n| 1 | 1 | Gases, wind, and fog can't pass through the barrier. |\r\n| 2 | 2 | Nonliving matter can't pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 3 | 3 | Living matter can't pass through the barrier. |\r\n| 4 | 4 | Spell effects can't pass through the barrier. |\r\n| 5 | 5 | Nothing can pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 6 | 0 | The barrier deactivates. |\r\n\r\nThe cube loses charges when the barrier is targeted by certain spells or comes into contact with certain spell or magic item effects, as shown in the table below.\r\n\r\n| Spell or Item | Charges Lost |\r\n|------------------|--------------|\r\n| Disintegrate | 1d12 |\r\n| Horn of blasting | 1d10 |\r\n| Passwall | 1d6 |\r\n| Prismatic spray | 1d20 |\r\n| Wall of fire | 1d4 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "cubic-gate", - "fields": { - "name": "Cubic Gate", - "desc": "This cube is 3 inches across and radiates palpable magical energy. The six sides of the cube are each keyed to a different plane of existence, one of which is the Material Plane. The other sides are linked to planes determined by the GM.\r\n\r\nYou can use an action to press one side of the cube to cast the _gate_ spell with it, opening a portal to the plane keyed to that side. Alternatively, if you use an action to press one side twice, you can cast the _plane shift_ spell (save DC 17) with the cube and transport the targets to the plane keyed to that side.\r\n\r\nThe cube has 3 charges. Each use of the cube expends 1 charge. The cube regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "dagger", - "fields": { - "name": "Dagger", - "desc": "A dagger.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dagger-1", - "fields": { - "name": "Dagger (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "dagger-2", - "fields": { - "name": "Dagger (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dagger-3", - "fields": { - "name": "Dagger (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dagger-of-venom", - "fields": { - "name": "Dagger of Venom", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nYou can use an action to cause thick, black poison to coat the blade. The poison remains for 1 minute or until an attack using this weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or take 2d10 poison damage and become poisoned for 1 minute. The dagger can't be used this way again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dancing-sword-greatsword", - "fields": { - "name": "Dancing Sword (Greatsword)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dancing-sword-longsword", - "fields": { - "name": "Dancing Sword (Longsword)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dancing-sword-rapier", - "fields": { - "name": "Dancing Sword (Rapier)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dancing-sword-shortsword", - "fields": { - "name": "Dancing Sword (Shortsword)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dart", - "fields": { - "name": "Dart", - "desc": "A dart.", - "document": "srd", - "size": "tiny", - "weight": "0.250", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dart-1", - "fields": { - "name": "Dart (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "dart-2", - "fields": { - "name": "Dart (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dart-3", - "fields": { - "name": "Dart (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "decanter-of-endless-water", - "fields": { - "name": "Decanter of Endless Water", - "desc": "This stoppered flask sloshes when shaken, as if it contains water. The decanter weighs 2 pounds.\r\n\r\nYou can use an action to remove the stopper and speak one of three command words, whereupon an amount of fresh water or salt water (your choice) pours out of the flask. The water stops pouring out at the start of your next turn. Choose from the following options:\r\n\r\n* \"Stream\" produces 1 gallon of water.\r\n* \"Fountain\" produces 5 gallons of water.\r\n* \"Geyser\" produces 30 gallons of water that gushes forth in a geyser 30 feet long and 1 foot wide. As a bonus action while holding the decanter, you can aim the geyser at a creature you can see within 30 feet of you. The target must succeed on a DC 13 Strength saving throw or take 1d4 bludgeoning damage and fall prone. Instead of a creature, you can target an object that isn't being worn or carried and that weighs no more than 200 pounds. The object is either knocked over or pushed up to 15 feet away from you.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "deck-of-illusions", - "fields": { - "name": "Deck of Illusions", - "desc": "This box contains a set of parchment cards. A full deck has 34 cards. A deck found as treasure is usually missing 1d20 - 1 cards.\r\n\r\nThe magic of the deck functions only if cards are drawn at random (you can use an altered deck of playing cards to simulate the deck). You can use an action to draw a card at random from the deck and throw it to the ground at a point within 30 feet of you.\r\n\r\nAn illusion of one or more creatures forms over the thrown card and remains until dispelled. An illusory creature appears real, of the appropriate size, and behaves as if it were a real creature except that it can do no harm. While you are within 120 feet of the illusory creature and can see it, you can use an action to move it magically anywhere within 30 feet of its card. Any physical interaction with the illusory creature reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect the creature identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The creature then appears translucent.\r\n\r\nThe illusion lasts until its card is moved or the illusion is dispelled. When the illusion ends, the image on its card disappears, and that card can't be used again.\r\n\r\n| Playing Card | Illusion |\r\n|-------------------|----------------------------------|\r\n| Ace of hearts | Red dragon |\r\n| King of hearts | Knight and four guards |\r\n| Queen of hearts | Succubus or incubus |\r\n| Jack of hearts | Druid |\r\n| Ten of hearts | Cloud giant |\r\n| Nine of hearts | Ettin |\r\n| Eight of hearts | Bugbear |\r\n| Two of hearts | Goblin |\r\n| Ace of diamonds | Beholder |\r\n| King of diamonds | Archmage and mage apprentice |\r\n| Queen of diamonds | Night hag |\r\n| Jack of diamonds | Assassin |\r\n| Ten of diamonds | Fire giant |\r\n| Nine of diamonds | Ogre mage |\r\n| Eight of diamonds | Gnoll |\r\n| Two of diamonds | Kobold |\r\n| Ace of spades | Lich |\r\n| King of spades | Priest and two acolytes |\r\n| Queen of spades | Medusa |\r\n| Jack of spades | Veteran |\r\n| Ten of spades | Frost giant |\r\n| Nine of spades | Troll |\r\n| Eight of spades | Hobgoblin |\r\n| Two of spades | Goblin |\r\n| Ace of clubs | Iron golem |\r\n| King of clubs | Bandit captain and three bandits |\r\n| Queen of clubs | Erinyes |\r\n| Jack of clubs | Berserker |\r\n| Ten of clubs | Hill giant |\r\n| Nine of clubs | Ogre |\r\n| Eight of clubs | Orc |\r\n| Two of clubs | Kobold |\r\n| Jokers (2) | You (the deck's owner) |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "deck-of-many-things", - "fields": { - "name": "Deck of Many Things", - "desc": "Usually found in a box or pouch, this deck contains a number of cards made of ivory or vellum. Most (75 percent) of these decks have only thirteen cards, but the rest have twenty-two.\r\n\r\nBefore you draw a card, you must declare how many cards you intend to draw and then draw them randomly (you can use an altered deck of playing cards to simulate the deck). Any cards drawn in excess of this number have no effect. Otherwise, as soon as you draw a card from the deck, its magic takes effect. You must draw each card no more than 1 hour after the previous draw. If you fail to draw the chosen number, the remaining number of cards fly from the deck on their own and take effect all at once.\r\n\r\nOnce a card is drawn, it fades from existence. Unless the card is the Fool or the Jester, the card reappears in the deck, making it possible to draw the same card twice.\r\n\r\n| Playing Card | Card |\r\n|--------------------|-------------|\r\n| Ace of diamonds | Vizier\\* |\r\n| King of diamonds | Sun |\r\n| Queen of diamonds | Moon |\r\n| Jack of diamonds | Star |\r\n| Two of diamonds | Comet\\* |\r\n| Ace of hearts | The Fates\\* |\r\n| King of hearts | Throne |\r\n| Queen of hearts | Key |\r\n| Jack of hearts | Knight |\r\n| Two of hearts | Gem\\* |\r\n| Ace of clubs | Talons\\* |\r\n| King of clubs | The Void |\r\n| Queen of clubs | Flames |\r\n| Jack of clubs | Skull |\r\n| Two of clubs | Idiot\\* |\r\n| Ace of spades | Donjon\\* |\r\n| King of spades | Ruin |\r\n| Queen of spades | Euryale |\r\n| Jack of spades | Rogue |\r\n| Two of spades | Balance\\* |\r\n| Joker (with TM) | Fool\\* |\r\n| Joker (without TM) | Jester |\r\n\r\n\\*Found only in a deck with twenty-two cards\r\n\r\n**_Balance_**. Your mind suffers a wrenching alteration, causing your alignment to change. Lawful becomes chaotic, good becomes evil, and vice versa. If you are true neutral or unaligned, this card has no effect on you.\r\n\r\n**_Comet_**. If you single-handedly defeat the next hostile monster or group of monsters you encounter, you gain experience points enough to gain one level. Otherwise, this card has no effect.\r\n\r\n**_Donjon_**. You disappear and become entombed in a state of suspended animation in an extradimensional sphere. Everything you were wearing and carrying stays behind in the space you occupied when you disappeared. You remain imprisoned until you are found and removed from the sphere. You can't be located by any divination magic, but a _wish_ spell can reveal the location of your prison. You draw no more cards.\r\n\r\n**_Euryale_**. The card's medusa-like visage curses you. You take a -2 penalty on saving throws while cursed in this way. Only a god or the magic of The Fates card can end this curse.\r\n\r\n**_The Fates_**. Reality's fabric unravels and spins anew, allowing you to avoid or erase one event as if it never happened. You can use the card's magic as soon as you draw the card or at any other time before you die.\r\n\r\n**_Flames_**. A powerful devil becomes your enemy. The devil seeks your ruin and plagues your life, savoring your suffering before attempting to slay you. This enmity lasts until either you or the devil dies.\r\n\r\n**_Fool_**. You lose 10,000 XP, discard this card, and draw from the deck again, counting both draws as one of your declared draws. If losing that much XP would cause you to lose a level, you instead lose an amount that leaves you with just enough XP to keep your level.\r\n\r\n**_Gem_**. Twenty-five pieces of jewelry worth 2,000 gp each or fifty gems worth 1,000 gp each appear at your feet.\r\n\r\n**_Idiot_**. Permanently reduce your Intelligence by 1d4 + 1 (to a minimum score of 1). You can draw one additional card beyond your declared draws.\r\n\r\n**_Jester_**. You gain 10,000 XP, or you can draw two additional cards beyond your declared draws.\r\n\r\n**_Key_**. A rare or rarer magic weapon with which you are proficient appears in your hands. The GM chooses the weapon.\r\n\r\n**_Knight_**. You gain the service of a 4th-level fighter who appears in a space you choose within 30 feet of you. The fighter is of the same race as you and serves you loyally until death, believing the fates have drawn him or her to you. You control this character.\r\n\r\n**_Moon_**. You are granted the ability to cast the _wish_ spell 1d3 times.\r\n\r\n**_Rogue_**. A nonplayer character of the GM's choice becomes hostile toward you. The identity of your new enemy isn't known until the NPC or someone else reveals it. Nothing less than a _wish_ spell or divine intervention can end the NPC's hostility toward you.\r\n\r\n**_Ruin_**. All forms of wealth that you carry or own, other than magic items, are lost to you. Portable property vanishes. Businesses, buildings, and land you own are lost in a way that alters reality the least. Any documentation that proves you should own something lost to this card also disappears.\r\n\r\n**_Skull_**. You summon an avatar of death-a ghostly humanoid skeleton clad in a tattered black robe and carrying a spectral scythe. It appears in a space of the GM's choice within 10 feet of you and attacks you, warning all others that you must win the battle alone. The avatar fights until you die or it drops to 0 hit points, whereupon it disappears. If anyone tries to help you, the helper summons its own avatar of death. A creature slain by an avatar of death can't be restored to life.\r\n\r\n#", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "defender-greatsword", - "fields": { - "name": "Defender (Greatsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "defender-longsword", - "fields": { - "name": "Defender (Longsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "defender-rapier", - "fields": { - "name": "Defender (Rapier)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "defender-shortsword", - "fields": { - "name": "Defender (Shortsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "demon-armor", - "fields": { - "name": "Demon Armor", - "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, the armor's clawed gauntlets turn unarmed strikes with your hands into magic weapons that deal slashing damage, with a +1 bonus to attack rolls and damage rolls and a damage die of 1d8.\n\n**_Curse_**. Once you don this cursed armor, you can't doff it unless you are targeted by the _remove curse_ spell or similar magic. While wearing the armor, you have disadvantage on attack rolls against demons and on saving throws against their spells and special abilities.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dice-set", - "fields": { - "name": "Dice set", - "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dimensional-shackles", - "fields": { - "name": "Dimensional Shackles", - "desc": "You can use an action to place these shackles on an incapacitated creature. The shackles adjust to fit a creature of Small to Large size. In addition to serving as mundane manacles, the shackles prevent a creature bound by them from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. They don't prevent the creature from passing through an interdimensional portal.\r\n\r\nYou and any creature you designate when you use the shackles can use an action to remove them. Once every 30 days, the bound creature can make a DC 30 Strength (Athletics) check. On a success, the creature breaks free and destroys the shackles.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "disguise-kit", - "fields": { - "name": "Disguise kit", - "desc": "This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dragon-scale-mail", - "fields": { - "name": "Dragon Scale Mail", - "desc": "Dragon scale mail is made of the scales of one kind of dragon. Sometimes dragons collect their cast-off scales and gift them to humanoids. Other times, hunters carefully skin and preserve the hide of a dead dragon. In either case, dragon scale mail is highly valued.\r\n\r\nWhile wearing this armor, you gain a +1 bonus to AC, you have advantage on saving throws against the Frightful Presence and breath weapons of dragons, and you have resistance to one damage type that is determined by the kind of dragon that provided the scales (see the table).\r\n\r\nAdditionally, you can focus your senses as an action to magically discern the distance and direction to the closest dragon within 30 miles of you that is of the same type as the armor. This special action can't be used again until the next dawn.\r\n\r\n| Dragon | Resistance |\r\n|--------|------------|\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dragon-slayer-greatsword", - "fields": { - "name": "Dragon Slayer (Greatsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dragon-slayer-longsword", - "fields": { - "name": "Dragon Slayer (Longsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dragon-slayer-rapier", - "fields": { - "name": "Dragon Slayer (Rapier)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dragon-slayer-shortsword", - "fields": { - "name": "Dragon Slayer (Shortsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "drow-poison", - "fields": { - "name": "Drow poison", - "desc": "This poison is typically made only by the drow, and only in a place far removed from sunlight. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the creature is also unconscious while poisoned in this way. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\r\n\\n\\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "drum", - "fields": { - "name": "Drum", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "6.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dulcimer", - "fields": { - "name": "Dulcimer", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "dust-of-disappearance", - "fields": { - "name": "Dust of Disappearance", - "desc": "Found in a small packet, this powder resembles very fine sand. There is enough of it for one use. When you use an action to throw the dust into the air, you and each creature and object within 10 feet of you become invisible for 2d4 minutes. The duration is the same for all subjects, and the dust is consumed when its magic takes effect. If a creature affected by the dust attacks or casts a spell, the invisibility ends for that creature.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "dust-of-dryness", - "fields": { - "name": "Dust of Dryness", - "desc": "This small packet contains 1d6 + 4 pinches of dust. You can use an action to sprinkle a pinch of it over water. The dust turns a cube of water 15 feet on a side into one marble-sized pellet, which floats or rests near where the dust was sprinkled. The pellet's weight is negligible.\r\n\r\nSomeone can use an action to smash the pellet against a hard surface, causing the pellet to shatter and release the water the dust absorbed. Doing so ends that pellet's magic.\r\n\r\nAn elemental composed mostly of water that is exposed to a pinch of the dust must make a DC 13 Constitution saving throw, taking 10d6 necrotic damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "dust-of-sneezing-and-choking", - "fields": { - "name": "Dust of Sneezing and Choking", - "desc": "Found in a small container, this powder resembles very fine sand. It appears to be _dust of disappearance_, and an _identify_ spell reveals it to be such. There is enough of it for one use.\r\n\r\nWhen you use an action to throw a handful of the dust into the air, you and each creature that needs to breathe within 30 feet of you must succeed on a DC 15 Constitution saving throw or become unable to breathe, while sneezing uncontrollably. A creature affected in this way is incapacitated and suffocating. As long as it is conscious, a creature can repeat the saving throw at the end of each of its turns, ending the effect on it on a success. The _lesser restoration_ spell can also end the effect on a creature.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "dwarven-plate", - "fields": { - "name": "Dwarven Plate", - "desc": "While wearing this armor, you gain a +2 bonus to AC. In addition, if an effect moves you against your will along the ground, you can use your reaction to reduce the distance you are moved by up to 10 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "dwarven-thrower", - "fields": { - "name": "Dwarven Thrower", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. It has the thrown property with a normal range of 20 feet and a long range of 60 feet. When you hit with a ranged attack using this weapon, it deals an extra 1d8 damage or, if the target is a giant, 2d8 damage. Immediately after the attack, the weapon flies back to your hand.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "efficient-quiver", - "fields": { - "name": "Efficient Quiver", - "desc": "Each of the quiver's three compartments connects to an extradimensional space that allows the quiver to hold numerous items while never weighing more than 2 pounds. The shortest compartment can hold up to sixty arrows, bolts, or similar objects. The midsize compartment holds up to eighteen javelins or similar objects. The longest compartment holds up to six long objects, such as bows, quarterstaffs, or spears.\r\n\r\nYou can draw any item the quiver contains as if doing so from a regular quiver or scabbard.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "efreeti-bottle", - "fields": { - "name": "Efreeti Bottle", - "desc": "This painted brass bottle weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke flows out of the bottle. At the end of your turn, the smoke disappears with a flash of harmless fire, and an efreeti appears in an unoccupied space within 30 feet of you.\r\n\r\nThe first time the bottle is opened, the GM rolls to determine what happens.\r\n\r\n| d100 | Effect |\r\n|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-10 | The efreeti attacks you. After fighting for 5 rounds, the efreeti disappears, and the bottle loses its magic. |\r\n| 11-90 | The efreeti serves you for 1 hour, doing as you command. Then the efreeti returns to the bottle, and a new stopper contains it. The stopper can't be removed for 24 hours. The next two times the bottle is opened, the same effect occurs. If the bottle is opened a fourth time, the efreeti escapes and disappears, and the bottle loses its magic. |\r\n| 91-100 | The efreeti can cast the wish spell three times for you. It disappears when it grants the final wish or after 1 hour, and the bottle loses its magic. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "elemental-gem", - "fields": { - "name": "Elemental Gem", - "desc": "This gem contains a mote of elemental energy. When you use an action to break the gem, an elemental is summoned as if you had cast the _conjure elemental_ spell, and the gem's magic is lost. The type of gem determines the elemental summoned by the spell.\r\n\r\n| Gem | Summoned Elemental |\r\n|----------------|--------------------|\r\n| Blue sapphire | Air elemental |\r\n| Yellow diamond | Earth elemental |\r\n| Red corundum | Fire elemental |\r\n| Emerald | Water elemental |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "elven-chain", - "fields": { - "name": "Elven Chain", - "desc": "You gain a +1 bonus to AC while you wear this armor. You are considered proficient with this armor even if you lack proficiency with medium armor.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "emblem", - "fields": { - "name": "Emblem", - "desc": "Can be used as a holy symbol.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "ep", - "fields": { - "name": "Electrum Piece", - "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "essence-of-ether", - "fields": { - "name": "Essense of either", - "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 8 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "300.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "eversmoking-bottle", - "fields": { - "name": "Eversmoking Bottle", - "desc": "Smoke leaks from the lead-stoppered mouth of this brass bottle, which weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke pours out in a 60-foot radius from the bottle. The cloud's area is heavily obscured. Each minute the bottle remains open and within the cloud, the radius increases by 10 feet until it reaches its maximum radius of 120 feet.\r\n\r\nThe cloud persists as long as the bottle is open. Closing the bottle requires you to speak its command word as an action. Once the bottle is closed, the cloud disperses after 10 minutes. A moderate wind (11 to 20 miles per hour) can also disperse the smoke after 1 minute, and a strong wind (21 or more miles per hour) can do so after 1 round.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "eyes-of-charming", - "fields": { - "name": "Eyes of Charming", - "desc": "These crystal lenses fit over the eyes. They have 3 charges. While wearing them, you can expend 1 charge as an action to cast the _charm person_ spell (save DC 13) on a humanoid within 30 feet of you, provided that you and the target can see each other. The lenses regain all expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "eyes-of-minute-seeing", - "fields": { - "name": "Eyes of Minute Seeing", - "desc": "These crystal lenses fit over the eyes. While wearing them, you can see much better than normal out to a range of 1 foot. You have advantage on Intelligence (Investigation) checks that rely on sight while searching an area or studying an object within that range.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "eyes-of-the-eagle", - "fields": { - "name": "Eyes of the Eagle", - "desc": "These crystal lenses fit over the eyes. While wearing them, you have advantage on Wisdom (Perception) checks that rely on sight. In conditions of clear visibility, you can make out details of even extremely distant creatures and objects as small as 2 feet across.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "feather-token", - "fields": { - "name": "Feather Token", - "desc": "This tiny object looks like a feather. Different types of feather tokens exist, each with a different single* use effect. The GM chooses the kind of token or determines it randomly.\r\n\r\n| d100 | Feather Token |\r\n|--------|---------------|\r\n| 01-20 | Anchor |\r\n| 21-35 | Bird |\r\n| 36-50 | Fan |\r\n| 51-65 | Swan boat |\r\n| 66-90 | Tree |\r\n| 91-100 | Whip |\r\n\r\n**_Anchor_**. You can use an action to touch the token to a boat or ship. For the next 24 hours, the vessel can't be moved by any means. Touching the token to the vessel again ends the effect. When the effect ends, the token disappears.\r\n\r\n**_Bird_**. You can use an action to toss the token 5 feet into the air. The token disappears and an enormous, multicolored bird takes its place. The bird has the statistics of a roc, but it obeys your simple commands and can't attack. It can carry up to 500 pounds while flying at its maximum speed (16 miles an hour for a maximum of 144 miles per day, with a one-hour rest for every 3 hours of flying), or 1,000 pounds at half that speed. The bird disappears after flying its maximum distance for a day or if it drops to 0 hit points. You can dismiss the bird as an action.\r\n\r\n**_Fan_**. If you are on a boat or ship, you can use an action to toss the token up to 10 feet in the air. The token disappears, and a giant flapping fan takes its place. The fan floats and creates a wind strong enough to fill the sails of one ship, increasing its speed by 5 miles per hour for 8 hours. You can dismiss the fan as an action.\r\n\r\n**_Swan Boat_**. You can use an action to touch the token to a body of water at least 60 feet in diameter. The token disappears, and a 50-foot-long, 20-foot* wide boat shaped like a swan takes its place. The boat is self-propelled and moves across water at a speed of 6 miles per hour. You can use an action while on the boat to command it to move or to turn up to 90 degrees. The boat can carry up to thirty-two Medium or smaller creatures. A Large creature counts as four Medium creatures, while a Huge creature counts as nine. The boat remains for 24 hours and then disappears. You can dismiss the boat as an action.\r\n\r\n**_Tree_**. You must be outdoors to use this token. You can use an action to touch it to an unoccupied space on the ground. The token disappears, and in its place a nonmagical oak tree springs into existence. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\r\n\r\n**_Whip_**. You can use an action to throw the token to a point within 10 feet of you. The token disappears, and a floating whip takes its place. You can then use a bonus action to make a melee spell attack against a creature within 10 feet of the whip, with an attack bonus of +9. On a hit, the target takes 1d6 + 5 force damage.\r\n\r\nAs a bonus action on your turn, you can direct the whip to fly up to 20 feet and repeat the attack against a creature within 10 feet of it. The whip disappears after 1 hour, when you use an action to dismiss it, or when you are incapacitated or die.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-bronze-griffon", - "fields": { - "name": "Figurine of Wondrous Power (Bronze Griffon)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Bronze Griffon (Rare)_**. This bronze statuette is of a griffon rampant. It can become a griffon for up to 6 hours. Once it has been used, it can't be used again until 5 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-ebony-fly", - "fields": { - "name": "Figurine of Wondrous Power (Ebony Fly)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ebony Fly (Rare)_**. This ebony statuette is carved in the likeness of a horsefly. It can become a giant fly for up to 12 hours and can be ridden as a mount. Once it has been used, it can’t be used again until 2 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-golden-lions", - "fields": { - "name": "Figurine of Wondrous Power (Golden Lions)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Golden Lions (Rare)_**. These gold statuettes of lions are always created in pairs. You can use one figurine or both simultaneously. Each can become a lion for up to 1 hour. Once a lion has been used, it can’t be used again until 7 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-ivory-goats", - "fields": { - "name": "Figurine of Wondrous Power (Ivory Goats)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ivory Goats (Rare_**.These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others. Their properties are as follows:\\n\\n* The _goat of traveling_ can become a Large goat with the same statistics as a riding horse. It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can't be used again until 7 days have passed, when it regains all its charges.\\n* The _goat of travail_ becomes a giant goat for up to 3 hours. Once it has been used, it can't be used again until 30 days have passed.\\n* The _goat of terror_ becomes a giant goat for up to 3 hours. The goat can't attack, but you can remove its horns and use them as weapons. One horn becomes a _+1 lance_, and the other becomes a _+2 longsword_. Removing a horn requires an action, and the weapons disappear and the horns return when the goat reverts to figurine form. In addition, the goat radiates a 30-foot-radius aura of terror while you are riding it. Any creature hostile to you that starts its turn in the aura must succeed on a DC 15 Wisdom saving throw or be frightened of the goat for 1 minute, or until the goat reverts to figurine form. The frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it successfully saves against the effect, a creature is immune to the goat's aura for the next 24 hours. Once the figurine has been used, it can't be used again until 15 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-marble-elephant", - "fields": { - "name": "Figurine of Wondrous Power (Marble Elephant)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Marble Elephant (Rare)_**. This marble statuette is about 4 inches high and long. It can become an elephant for up to 24 hours. Once it has been used, it can’t be used again until 7 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-obsidian-steed", - "fields": { - "name": "Figurine of Wondrous Power (Obsidian Steed)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Obsidian Steed (Very Rare)_**. This polished obsidian horse can become a nightmare for up to 24 hours. The nightmare fights only to defend itself. Once it has been used, it can't be used again until 5 days have passed.\\n\\nIf you have a good alignment, the figurine has a 10 percent chance each time you use it to ignore your orders, including a command to revert to figurine form. If you mount the nightmare while it is ignoring your orders, you and the nightmare are instantly transported to a random location on the plane of Hades, where the nightmare reverts to figurine form.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-onyx-dog", - "fields": { - "name": "Figurine of Wondrous Power (Onyx Dog)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Onyx Dog (Rare)_**. This onyx statuette of a dog can become a mastiff for up to 6 hours. The mastiff has an Intelligence of 8 and can speak Common. It also has darkvision out to a range of 60 feet and can see invisible creatures and objects within that range. Once it has been used, it can’t be used again until 7 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-serpentine-owl", - "fields": { - "name": "Figurine of Wondrous Power (Serpentine Owl)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Serpentine Owl (Rare)_**. This serpentine statuette of an owl can become a giant owl for up to 8 hours. Once it has been used, it can’t be used again until 2 days have passed. The owl can telepathically communicate with you at any range if you and it are on the same plane of existence.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "figurine-of-wondrous-power-silver-raven", - "fields": { - "name": "Figurine of Wondrous Power (Silver Raven)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Silver Raven (Uncommon)_**. This silver statuette of a raven can become a raven for up to 12 hours. Once it has been used, it can’t be used again until 2 days have passed. While in raven form, the figurine allows you to cast the animal messenger spell on it at will.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "fishing-tackle", - "fields": { - "name": "Fishing Tackle", - "desc": "This kit includes a wooden rod, silken line, corkwood bobbers, steel hooks, lead sinkers, velvet lures, and narrow netting.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "flail", - "fields": { - "name": "Flail", - "desc": "A flail.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "flail-1", - "fields": { - "name": "Flail (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "flail-2", - "fields": { - "name": "Flail (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "flail-3", - "fields": { - "name": "Flail (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "flame-tongue-greatsword", - "fields": { - "name": "Flame Tongue (Greatsword)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "flame-tongue-longsword", - "fields": { - "name": "Flame Tongue (Longsword)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "flame-tongue-rapier", - "fields": { - "name": "Flame Tongue (Rapier)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "flame-tongue-shortsword", - "fields": { - "name": "Flame Tongue (Shortsword)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "flask-or-tankard", - "fields": { - "name": "Flask or tankard", - "desc": "For drinking. Capacity: 1 pint liquid.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "flute", - "fields": { - "name": "Flute", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "folding-boat", - "fields": { - "name": "Folding Boat", - "desc": "This object appears as a wooden box that measures 12 inches long, 6 inches wide, and 6 inches deep. It weighs 4 pounds and floats. It can be opened to store items inside. This item also has three command words, each requiring you to use an action to speak it.\r\n\r\nOne command word causes the box to unfold into a boat 10 feet long, 4 feet wide, and 2 feet deep. The boat has one pair of oars, an anchor, a mast, and a lateen sail. The boat can hold up to four Medium creatures comfortably.\r\n\r\nThe second command word causes the box to unfold into a ship 24 feet long, 8 feet wide, and 6 feet deep. The ship has a deck, rowing seats, five sets of oars, a steering oar, an anchor, a deck cabin, and a mast with a square sail. The ship can hold fifteen Medium creatures comfortably.\r\n\r\nWhen the box becomes a vessel, its weight becomes that of a normal vessel its size, and anything that was stored in the box remains in the boat.\r\n\r\nThe third command word causes the _folding boat_ to fold back into a box, provided that no creatures are aboard. Any objects in the vessel that can't fit inside the box remain outside the box as it folds. Any objects in the vessel that can fit inside the box do so.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "forgery-kit", - "fields": { - "name": "Forgery kit", - "desc": "This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. \\n\\nProficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "frost-brand-greatsword", - "fields": { - "name": "Frost Brand (Greatsword)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "frost-brand-longsword", - "fields": { - "name": "Frost Brand (Longsword)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "frost-brand-rapier", - "fields": { - "name": "Frost Brand (Rapier)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "frost-brand-shortsword", - "fields": { - "name": "Frost Brand (Shortsword)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "galley", - "fields": { - "name": "Galley", - "desc": "A waterborne vehicle. Speed 4 mph", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "gauntlets-of-ogre-power", - "fields": { - "name": "Gauntlets of Ogre Power", - "desc": "Your Strength score is 19 while you wear these gauntlets. They have no effect on you if your Strength is already 19 or higher.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "gem-of-brightness", - "fields": { - "name": "Gem of Brightness", - "desc": "This prism has 50 charges. While you are holding it, you can use an action to speak one of three command words to cause one of the following effects:\r\n\r\n* The first command word causes the gem to shed bright light in a 30-foot radius and dim light for an additional 30 feet. This effect doesn't expend a charge. It lasts until you use a bonus action to repeat the command word or until you use another function of the gem.\r\n* The second command word expends 1 charge and causes the gem to fire a brilliant beam of light at one creature you can see within 60 feet of you. The creature must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\r\n* The third command word expends 5 charges and causes the gem to flare with blinding light in a 30* foot cone originating from it. Each creature in the cone must make a saving throw as if struck by the beam created with the second command word.\r\n\r\nWhen all of the gem's charges are expended, the gem becomes a nonmagical jewel worth 50 gp.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "gem-of-seeing", - "fields": { - "name": "Gem of Seeing", - "desc": "This gem has 3 charges. As an action, you can speak the gem's command word and expend 1 charge. For the next 10 minutes, you have truesight out to 120 feet when you peer through the gem.\r\n\r\nThe gem regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "giant-slayer-battleaxe", - "fields": { - "name": "Giant Slayer (Battleaxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "giant-slayer-greataxe", - "fields": { - "name": "Giant Slayer (Greataxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "giant-slayer-greatsword", - "fields": { - "name": "Giant Slayer (Greatsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "giant-slayer-handaxe", - "fields": { - "name": "Giant Slayer (Handaxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "giant-slayer-longsword", - "fields": { - "name": "Giant Slayer (Longsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "giant-slayer-rapier", - "fields": { - "name": "Giant Slayer (Rapier)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "giant-slayer-shortsword", - "fields": { - "name": "Giant Slayer (Shortsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "glaive", - "fields": { - "name": "Glaive", - "desc": "A glaive.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "glaive-1", - "fields": { - "name": "Glaive (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "glaive-2", - "fields": { - "name": "Glaive (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "glaive-3", - "fields": { - "name": "Glaive (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "glamoured-studded-leather", - "fields": { - "name": "Glamoured Studded Leather", - "desc": "While wearing this armor, you gain a +1 bonus to AC. You can also use a bonus action to speak the armor's command word and cause the armor to assume the appearance of a normal set of clothing or some other kind of armor. You decide what it looks like, including color, style, and accessories, but the armor retains its normal bulk and weight. The illusory appearance lasts until you use this property again or remove the armor.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "glassblowers-tools", - "fields": { - "name": "Glassblower's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "gloves-of-missile-snaring", - "fields": { - "name": "Gloves of Missile Snaring", - "desc": "These gloves seem to almost meld into your hands when you don them. When a ranged weapon attack hits you while you're wearing them, you can use your reaction to reduce the damage by 1d10 + your Dexterity modifier, provided that you have a free hand. If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in that hand.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "gloves-of-swimming-and-climbing", - "fields": { - "name": "Gloves of Swimming and Climbing", - "desc": "While wearing these gloves, climbing and swimming don't cost you extra movement, and you gain a +5 bonus to Strength (Athletics) checks made to climb or swim.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "goat", - "fields": { - "name": "Goat", - "desc": "One goat.", - "document": "srd", - "size": "medium", - "weight": "75.000", - "armor_class": 10, - "hit_points": 4, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "goggles-of-night", - "fields": { - "name": "Goggles of Night", - "desc": "While wearing these dark lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the goggles increases its range by 60 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "gp", - "fields": { - "name": "Gold Piece", - "desc": "With one gold piece, a character can buy a bedroll, 50 feet of good rope, or a goat. A skilled (but not exceptional) artisan can earn one gold piece a day. The gold piece is the standard unit of measure for wealth, even if the coin itself is not commonly used. When merchants discuss deals that involve goods or services worth hundreds or thousands of gold pieces, the transactions don't usually involve the exchange of individual coins. Rather, the gold piece is a standard measure of value, and the actual exchange is in gold bars, letters of credit, or valuable goods.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "grappling-hook", - "fields": { - "name": "Grappling hook", - "desc": "A grappling hook.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "greataxe", - "fields": { - "name": "Greataxe", - "desc": "A greataxe.", - "document": "srd", - "size": "tiny", - "weight": "7.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "greataxe-1", - "fields": { - "name": "Greataxe (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "greataxe-2", - "fields": { - "name": "Greataxe (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "greataxe-3", - "fields": { - "name": "Greataxe (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "greatclub", - "fields": { - "name": "Greatclub", - "desc": "A greatclub.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "greatclub-1", - "fields": { - "name": "Greatclub (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "greatclub-2", - "fields": { - "name": "Greatclub (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "greatclub-3", - "fields": { - "name": "Greatclub (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "greatsword", - "fields": { - "name": "Greatsword", - "desc": "A great sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "greatsword-1", - "fields": { - "name": "Greatsword (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "greatsword-2", - "fields": { - "name": "Greatsword (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "greatsword-3", - "fields": { - "name": "Greatsword (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "halberd", - "fields": { - "name": "Halberd", - "desc": "A halberd.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "halberd-1", - "fields": { - "name": "Halberd (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "halberd-2", - "fields": { - "name": "Halberd (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "halberd-3", - "fields": { - "name": "Halberd (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "half-plate", - "fields": { - "name": "Half plate", - "desc": "Half plate consists of shaped metal plates that cover most of the wearer's body. It does not include leg protection beyond simple greaves that are attached with leather straps.", - "document": "srd", - "size": "tiny", - "weight": "40.000", - "armor_class": 0, - "hit_points": 0, - "cost": "750.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "hammer", - "fields": { - "name": "Hammer", - "desc": "A hammer.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "hammer-of-thunderbolts", - "fields": { - "name": "Hammer of Thunderbolts", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\n**_Giant's Bane (Requires Attunement)_**. You must be wearing a _belt of giant strength_ (any variety) and _gauntlets of ogre power_ to attune to this weapon. The attunement ends if you take off either of those items. While you are attuned to this weapon and holding it, your Strength score increases by 4 and can exceed 20, but not 30. When you roll a 20 on an attack roll made with this weapon against a giant, the giant must succeed on a DC 17 Constitution saving throw or die.\n\nThe hammer also has 5 charges. While attuned to it, you can expend 1 charge and make a ranged weapon attack with the hammer, hurling it as if it had the thrown property with a normal range of 20 feet and a long range of 60 feet. If the attack hits, the hammer unleashes a thunderclap audible out to 300 feet. The target and every creature within 30 feet of it must succeed on a DC 17 Constitution saving throw or be stunned until the end of your next turn. The hammer regains 1d4 + 1 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "hammer-sledge", - "fields": { - "name": "Hammer, sledge", - "desc": "A sledgehammer", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "handaxe", - "fields": { - "name": "Handaxe", - "desc": "A handaxe.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "handaxe-1", - "fields": { - "name": "Handaxe (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "handaxe-2", - "fields": { - "name": "Handaxe (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "handaxe-3", - "fields": { - "name": "Handaxe (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "handy-haversack", - "fields": { - "name": "Handy Haversack", - "desc": "This backpack has a central pouch and two side pouches, each of which is an extradimensional space. Each side pouch can hold up to 20 pounds of material, not exceeding a volume of 2 cubic feet. The large central pouch can hold up to 8 cubic feet or 80 pounds of material. The backpack always weighs 5 pounds, regardless of its contents.\r\n\r\nPlacing an object in the haversack follows the normal rules for interacting with objects. Retrieving an item from the haversack requires you to use an action. When you reach into the haversack for a specific item, the item is always magically on top.\r\n\r\nThe haversack has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the haversack ruptures and is destroyed. If the haversack is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If the haversack is turned inside out, its contents spill forth, unharmed, and the haversack must be put right before it can be used again. If a breathing creature is placed within the haversack, the creature can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing the haversack inside an extradimensional space created by a _bag of holding_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "hat-of-disguise", - "fields": { - "name": "Hat of Disguise", - "desc": "While wearing this hat, you can use an action to cast the _disguise self_ spell from it at will. The spell ends if the hat is removed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "headband-of-intellect", - "fields": { - "name": "Headband of Intellect", - "desc": "Your Intelligence score is 19 while you wear this headband. It has no effect on you if your Intelligence is already 19 or higher.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "healers-kit", - "fields": { - "name": "Healer's Kit", - "desc": "This kit is a leather pouch containing bandages, salves, and splints. The kit has ten uses. As an action, you can expend one use of the kit to stabilize a creature that has 0 hit points, without needing to make a Wisdom (Medicine) check.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "helm-of-brilliance", - "fields": { - "name": "Helm of Brilliance", - "desc": "This dazzling helm is set with 1d10 diamonds, 2d10 rubies, 3d10 fire opals, and 4d10 opals. Any gem pried from the helm crumbles to dust. When all the gems are removed or destroyed, the helm loses its magic.\r\n\r\nYou gain the following benefits while wearing it:\r\n\r\n* You can use an action to cast one of the following spells (save DC 18), using one of the helm's gems of the specified type as a component: _daylight_ (opal), _fireball_ (fire opal), _prismatic spray_ (diamond), or _wall of fire_ (ruby). The gem is destroyed when the spell is cast and disappears from the helm.\r\n* As long as it has at least one diamond, the helm emits dim light in a 30-foot radius when at least one undead is within that area. Any undead that starts its turn in that area takes 1d6 radiant damage.\r\n* As long as the helm has at least one ruby, you have resistance to fire damage.\r\n* As long as the helm has at least one fire opal, you can use an action and speak a command word to cause one weapon you are holding to burst into flames. The flames emit bright light in a 10-foot radius and dim light for an additional 10 feet. The flames are harmless to you and the weapon. When you hit with an attack using the blazing weapon, the target takes an extra 1d6 fire damage. The flames last until you use a bonus action to speak the command word again or until you drop or stow the weapon.\r\n\r\nRoll a d20 if you are wearing the helm and take fire damage as a result of failing a saving throw against a spell. On a roll of 1, the helm emits beams of light from its remaining gems. Each creature within 60 feet of the helm other than you must succeed on a DC 17 Dexterity saving throw or be struck by a beam, taking radiant damage equal to the number of gems in the helm. The helm and its gems are then destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "helm-of-comprehending-languages", - "fields": { - "name": "Helm of Comprehending Languages", - "desc": "While wearing this helm, you can use an action to cast the _comprehend languages_ spell from it at will.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "helm-of-telepathy", - "fields": { - "name": "Helm of Telepathy", - "desc": "While wearing this helm, you can use an action to cast the _detect thoughts_ spell (save DC 13) from it. As long as you maintain concentration on the spell, you can use a bonus action to send a telepathic message to a creature you are focused on. It can reply-using a bonus action to do so-while your focus on it continues.\r\n\r\nWhile focusing on a creature with _detect thoughts_, you can use an action to cast the _suggestion_ spell (save DC 13) from the helm on that creature. Once used, the _suggestion_ property can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "helm-of-teleportation", - "fields": { - "name": "Helm of Teleportation", - "desc": "This helm has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _teleport_ spell from it. The helm regains 1d3\r\n\r\nexpended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "herbalism-kit", - "fields": { - "name": "Herbalism Kit", - "desc": "This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create\r\nantitoxin and potions of healing.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "hide-armor", - "fields": { - "name": "Hide Armor", - "desc": "This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.", - "document": "srd", - "size": "tiny", - "weight": "12.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "holy-avenger-greatsword", - "fields": { - "name": "Holy Avenger (Greatsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "holy-avenger-longsword", - "fields": { - "name": "Holy Avenger (Longsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "holy-avenger-rapier", - "fields": { - "name": "Holy Avenger (Rapier)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "holy-avenger-shortsword", - "fields": { - "name": "Holy Avenger (Shortsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "holy-water", - "fields": { - "name": "Holy Water (flask)", - "desc": "As an action, you can splash the contents of this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact.In either case, make a ranged attack against a target creature, treating the holy water as an improvised weapon. If the target is a fiend or undead, it takes 2d6 radiant damage.\\n\\nA cleric or paladin may create holy water by performing a special ritual. The ritual takes 1 hour to perform, uses 25 gp worth of powdered silver, and requires the caster to expend a 1st-­‐‑level spell slot.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "horn", - "fields": { - "name": "Horn", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "3.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "horn-of-blasting", - "fields": { - "name": "Horn of Blasting", - "desc": "You can use an action to speak the horn's command word and then blow the horn, which emits a thunderous blast in a 30-foot cone that is audible 600 feet away. Each creature in the cone must make a DC 15 Constitution saving throw. On a failed save, a creature takes 5d6 thunder damage and is deafened for 1 minute. On a successful save, a creature takes half as much damage and isn't deafened. Creatures and objects made of glass or crystal have disadvantage on the saving throw and take 10d6 thunder damage instead of 5d6.\r\n\r\nEach use of the horn's magic has a 20 percent chance of causing the horn to explode. The explosion deals 10d6 fire damage to the blower and destroys the horn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "horn-of-valhalla-brass", - "fields": { - "name": "Horn of Valhalla (Brass)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "horn-of-valhalla-bronze", - "fields": { - "name": "Horn of Valhalla (Bronze)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "horn-of-valhalla-iron", - "fields": { - "name": "Horn of Valhalla (Iron)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "horn-of-valhalla-silver", - "fields": { - "name": "Horn of Valhalla (silver)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "horseshoes-of-a-zephyr", - "fields": { - "name": "Horseshoes of a Zephyr", - "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they allow the creature to move normally while floating 4 inches above the ground. This effect means the creature can cross or stand above nonsolid or unstable surfaces, such as water or lava. The creature leaves no tracks and ignores difficult terrain. In addition, the creature can move at normal speed for up to 12 hours a day without suffering exhaustion from a forced march.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "horseshoes-of-speed", - "fields": { - "name": "Horseshoes of Speed", - "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they increase the creature's walking speed by 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "hourglass", - "fields": { - "name": "Hourglass", - "desc": "An hourglass.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "hunting-trap", - "fields": { - "name": "Hunting Trap", - "desc": "When you use your action to set it, this trap forms a saw-­‐‑toothed steel ring that snaps shut when a creature steps on a pressure plate in the center. The trap is affixed by a heavy chain to an immobile object, such as a tree or a spike driven into the ground. A creature that steps on the plate must succeed on a DC 13 Dexterity saving throw or take 1d4 piercing damage and stop moving. Thereafter, until the creature breaks free of the trap, its movement is limited by the length of the chain (typically 3 feet long). A creature can use its action to make a DC 13 Strength check, freeing itself or another creature within its reach on a success. Each failed check deals 1 piercing damage to the trapped creature.", - "document": "srd", - "size": "tiny", - "weight": "25.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "immovable-rod", - "fields": { - "name": "Immovable Rod", - "desc": "This flat iron rod has a button on one end. You can use an action to press the button, which causes the rod to become magically fixed in place. Until you or another creature uses an action to push the button again, the rod doesn't move, even if it is defying gravity. The rod can hold up to 8,000 pounds of weight. More weight causes the rod to deactivate and fall. A creature can use an action to make a DC 30 Strength check, moving the fixed rod up to 10 feet on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ink-bottle", - "fields": { - "name": "Ink (1 ounce bottle)", - "desc": "A bottle of ink.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "ink-pen", - "fields": { - "name": "Ink pen", - "desc": "A pen for writing with ink.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "instant-fortress", - "fields": { - "name": "Instant Fortress", - "desc": "You can use an action to place this 1-inch metal cube on the ground and speak its command word. The cube rapidly grows into a fortress that remains until you use an action to speak the command word that dismisses it, which works only if the fortress is empty.\r\n\r\nThe fortress is a square tower, 20 feet on a side and 30 feet high, with arrow slits on all sides and a battlement atop it. Its interior is divided into two floors, with a ladder running along one wall to connect them. The ladder ends at a trapdoor leading to the roof. When activated, the tower has a small door on the side facing you. The door opens only at your command, which you can speak as a bonus action. It is immune to the _knock_ spell and similar magic, such as that of a _chime of opening_.\r\n\r\nEach creature in the area where the fortress appears must make a DC 15 Dexterity saving throw, taking 10d10 bludgeoning damage on a failed save, or half as much damage on a successful one. In either case, the creature is pushed to an unoccupied space outside but next to the fortress. Objects in the area that aren't being worn or carried take this damage and are pushed automatically.\r\n\r\nThe tower is made of adamantine, and its magic prevents it from being tipped over. The roof, the door, and the walls each have 100 hit points,\r\n\r\nimmunity to damage from nonmagical weapons excluding siege weapons, and resistance to all other damage. Only a _wish_ spell can repair the fortress (this use of the spell counts as replicating a spell of 8th level or lower). Each casting of _wish_ causes the roof, the door, or one wall to regain 50 hit points.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-absorption", - "fields": { - "name": "Ioun Stone (Absorption)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\r\n\r\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\r\n\r\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\r\n\r\n**_Absorption (Very Rare)_**. While this pale lavender ellipsoid orbits your head, you can use your reaction to cancel a spell of 4th level or lower cast by a creature you can see and targeting only you.\r\n\r\nOnce the stone has canceled 20 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-agility", - "fields": { - "name": "Ioun Stone (Agility)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Agility (Very Rare)._** Your Dexterity score increases by 2, to a maximum of 20, while this deep red sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-awareness", - "fields": { - "name": "Ioun Stone (Awareness)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Awareness (Rare)._** You can't be surprised while this dark blue rhomboid orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-fortitude", - "fields": { - "name": "Ioun Stone (Absorption)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Fortitude (Very Rare)_**. Your Constitution score increases by 2, to a maximum of 20, while this pink rhomboid orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-greater-absorption", - "fields": { - "name": "Ioun Stone (Greater Absorption)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Greater Absorption (Legendary)._** While this marbled lavender and green ellipsoid orbits your head, you can use your reaction to cancel a spell of 8th level or lower cast by a creature you can see and targeting only you.\\n\\nOnce the stone has canceled 50 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-insight", - "fields": { - "name": "Ioun Stone (Insight)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Insight (Very Rare)._** Your Wisdom score increases by 2, to a maximum of 20, while this incandescent blue sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-intellect", - "fields": { - "name": "Ioun Stone (Intellect)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Intellect (Very Rare)._** Your Intelligence score increases by 2, to a maximum of 20, while this marbled scarlet and blue sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-leadership", - "fields": { - "name": "Ioun Stone (Leadership)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Leadership (Very Rare)._** Your Charisma score increases by 2, to a maximum of 20, while this marbled pink and green sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-mastery", - "fields": { - "name": "Ioun Stone (Mastery)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Mastery (Legendary)._** Your proficiency bonus increases by 1 while this pale green prism orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-protection", - "fields": { - "name": "Ioun Stone (Protection)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Protection (Rare)_**. You gain a +1 bonus to AC while this dusty rose prism orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-regeneration", - "fields": { - "name": "Ioun Stone (Regeneration)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Regeneration (Legendary)_**. You regain 15 hit points at the end of each hour this pearly white spindle orbits your head, provided that you have at least 1 hit point.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-reserve", - "fields": { - "name": "Ioun Stone (Reserve)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Reserve (Rare)._** This vibrant purple prism stores spells cast into it, holding them until you use them. The stone can store up to 3 levels worth of spells at a time. When found, it contains 1d4 - 1 levels of stored spells chosen by the GM.\\n\\nAny creature can cast a spell of 1st through 3rd level into the stone by touching it as the spell is cast. The spell has no effect, other than to be stored in the stone. If the stone can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\\n\\nWhile this stone orbits your head, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the stone is no longer stored in it, freeing up space.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-strength", - "fields": { - "name": "Ioun Stone (Strength)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Strength (Very Rare)._** Your Strength score increases by 2, to a maximum of 20, while this pale blue rhomboid orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ioun-stone-sustenance", - "fields": { - "name": "Ioun Stone (Sustenance)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Sustenance (Rare)._** You don't need to eat or drink while this clear spindle orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "iron-bands-of-binding", - "fields": { - "name": "Iron Bands of Binding", - "desc": "This rusty iron sphere measures 3 inches in diameter and weighs 1 pound. You can use an action to speak the command word and throw the sphere at a Huge or smaller creature you can see within 60 feet of you. As the sphere moves through the air, it opens into a tangle of metal bands.\r\n\r\nMake a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the target is restrained until you take a bonus action to speak the command word again to release it. Doing so, or missing with the attack, causes the bands to contract and become a sphere once more.\r\n\r\nA creature, including the one restrained, can use an action to make a DC 20 Strength check to break the iron bands. On a success, the item is destroyed, and the restrained creature is freed. If the check fails, any further attempts made by that creature automatically fail until 24 hours have elapsed.\r\n\r\nOnce the bands are used, they can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "iron-flask", - "fields": { - "name": "Iron Flask", - "desc": "This iron bottle has a brass stopper. You can use an action to speak the flask's command word, targeting a creature that you can see within 60 feet of you. If the target is native to a plane of existence other than the one you're on, the target must succeed on a DC 17 Wisdom saving throw or be trapped in the flask. If the target has been trapped by the flask before, it has advantage on the saving throw. Once trapped, a creature remains in the flask until released. The flask can hold only one creature at a time. A creature trapped in the flask doesn't need to breathe, eat, or drink and doesn't age.\r\n\r\nYou can use an action to remove the flask's stopper and release the creature the flask contains. The creature is friendly to you and your companions for 1 hour and obeys your commands for that duration. If you give no commands or give it a command that is likely to result in its death, it defends itself but otherwise takes no actions. At the end of the duration, the creature acts in accordance with its normal disposition and alignment.\r\n\r\nAn _identify_ spell reveals that a creature is inside the flask, but the only way to determine the type of creature is to open the flask. A newly discovered bottle might already contain a creature chosen by the GM or determined randomly.\r\n\r\n| d100 | Contents |\r\n|-------|-------------------|\r\n| 1-50 | Empty |\r\n| 51-54 | Demon (type 1) |\r\n| 55-58 | Demon (type 2) |\r\n| 59-62 | Demon (type 3) |\r\n| 63-64 | Demon (type 4) |\r\n| 65 | Demon (type 5) |\r\n| 66 | Demon (type 6) |\r\n| 67 | Deva |\r\n| 68-69 | Devil (greater) |\r\n| 70-73 | Devil (lesser) |\r\n| 74-75 | Djinni |\r\n| 76-77 | Efreeti |\r\n| 78-83 | Elemental (any) |\r\n| 84-86 | Invisible stalker |\r\n| 87-90 | Night hag |\r\n| 91 | Planetar |\r\n| 92-95 | Salamander |\r\n| 96 | Solar |\r\n| 97-99 | Succubus/incubus |\r\n| 100 | Xorn |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "javelin", - "fields": { - "name": "Javelin", - "desc": "A javelin", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "javelin-1", - "fields": { - "name": "Javelin (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "javelin-2", - "fields": { - "name": "Javelin (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "javelin-3", - "fields": { - "name": "Javelin (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "javelin-of-lightning", - "fields": { - "name": "Javelin of Lightning", - "desc": "This javelin is a magic weapon. When you hurl it and speak its command word, it transforms into a bolt of lightning, forming a line 5 feet wide that extends out from you to a target within 120 feet. Each creature in the line excluding you and the target must make a DC 13 Dexterity saving throw, taking 4d6 lightning damage on a failed save, and half as much damage on a successful one. The lightning bolt turns back into a javelin when it reaches the target. Make a ranged weapon attack against the target. On a hit, the target takes damage from the javelin plus 4d6 lightning damage.\n\nThe javelin's property can't be used again until the next dawn. In the meantime, the javelin can still be used as a magic weapon.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "jewelers-tools", - "fields": { - "name": "Jeweler's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "jug-or-pitcher", - "fields": { - "name": "Jug or pitcher", - "desc": "For drinking a lot. Capacity: 1 gallon liquid.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "keelboat", - "fields": { - "name": "Keelboat", - "desc": "Waterborne vehicle. Speed is 1mph.", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "3000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "ladder-10", - "fields": { - "name": "Ladder (10-foot)", - "desc": "A 10 foot ladder.", - "document": "srd", - "size": "tiny", - "weight": "25.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "lamp", - "fields": { - "name": "Lamp", - "desc": "A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "lamp-oil", - "fields": { - "name": "Lamp oil (flask)", - "desc": "Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon. On a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-­foot‑square area, provided that the surface is level. If lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "lance", - "fields": { - "name": "Lance", - "desc": "A lance.\r\n\r\nYou have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "lance-1", - "fields": { - "name": "Lance (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "lance-2", - "fields": { - "name": "Lance (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "lance-3", - "fields": { - "name": "Lance (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "lantern-bullseye", - "fields": { - "name": "Lantern, Bullseye", - "desc": "A bullseye lantern casts bright light in a 60-­‐‑foot cone and dim light for an additional 60 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "lantern-hooded", - "fields": { - "name": "Lantern, Hooded", - "desc": "A hooded lantern casts bright light in a 30-­‐‑foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil. As an action, you can lower the hood, reducing the light to dim light in a 5-­‐‑foot radius.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "lantern-of-revealing", - "fields": { - "name": "Lantern of Revealing", - "desc": "While lit, this hooded lantern burns for 6 hours on 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the lantern's bright light. You can use an action to lower the hood, reducing the light to dim light in a 5* foot radius.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "leather-armor", - "fields": { - "name": "Leather Armor", - "desc": "The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "leatherworkers-tools", - "fields": { - "name": "Leatherworker's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "light-hammer", - "fields": { - "name": "Light hammer", - "desc": "A light hammer.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "light-hammer-1", - "fields": { - "name": "Light-Hammer (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "light-hammer-2", - "fields": { - "name": "Light-Hammer (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "light-hammer-3", - "fields": { - "name": "Light-Hammer (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "lock", - "fields": { - "name": "Lock", - "desc": "A key is provided with the lock. Without the key, a creature proficient with thieves’ tools can pick this lock with a successful DC 15 Dexterity check. Your GM may decide that better locks are available for higher prices.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "longbow", - "fields": { - "name": "Longbow", - "desc": "A longbow.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "longbow-1", - "fields": { - "name": "Longbow (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "longbow-2", - "fields": { - "name": "Longbow (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "longbow-3", - "fields": { - "name": "Longbow (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "longship", - "fields": { - "name": "Longship", - "desc": "Waterborne vehicle. Speed 3mph.", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "longsword", - "fields": { - "name": "Longsword", - "desc": "A longsword", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "longsword-1", - "fields": { - "name": "Longsword (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "longsword-2", - "fields": { - "name": "Longsword (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "longsword-3", - "fields": { - "name": "Longsword (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "luck-blade-greatsword", - "fields": { - "name": "Luck Blade (Greatsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "luck-blade-longsword", - "fields": { - "name": "Luck Blade (Longsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "luck-blade-rapier", - "fields": { - "name": "Luck Blade (Rapier)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "luck-blade-shortsword", - "fields": { - "name": "Luck Blade (Shortsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "lute", - "fields": { - "name": "Lute", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "35.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "lyre", - "fields": { - "name": "Lyre", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "mace", - "fields": { - "name": "Mace", - "desc": "A mace.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "mace-1", - "fields": { - "name": "Mace (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mace-2", - "fields": { - "name": "Mace (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mace-3", - "fields": { - "name": "Mace (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mace-of-disruption", - "fields": { - "name": "Mace of Disruption", - "desc": "When you hit a fiend or an undead with this magic weapon, that creature takes an extra 2d6 radiant damage. If the target has 25 hit points or fewer after taking this damage, it must succeed on a DC 15 Wisdom saving throw or be destroyed. On a successful save, the creature becomes frightened of you until the end of your next turn.\n\nWhile you hold this weapon, it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "mace-of-smiting", - "fields": { - "name": "Mace of Smiting", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the mace to attack a construct.\n\nWhen you roll a 20 on an attack roll made with this weapon, the target takes an extra 2d6 bludgeoning damage, or 4d6 bludgeoning damage if it's a construct. If a construct has 25 hit points or fewer after taking this damage, it is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "mace-of-terror", - "fields": { - "name": "Mace of Terror", - "desc": "This magic weapon has 3 charges. While holding it, you can use an action and expend 1 charge to release a wave of terror. Each creature of your choice in a 30-foot radius extending from you must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.\n\nThe mace regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "magnifying-glass", - "fields": { - "name": "Magnifying Glass", - "desc": "This lens allows a closer look at small objects. It is also useful as a substitute for flint and steel when starting fires. Lighting a fire with a magnifying glass requires light as bright as sunlight to focus, tinder to ignite, and about 5 minutes for the fire to ignite. A magnifying glass grants advantage on any ability check made to appraise or inspect an item that is small or highly detailed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "100.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "malice", - "fields": { - "name": "Malice", - "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 1 hour. The poisoned creature is blinded.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "250.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "manacles", - "fields": { - "name": "Manacles", - "desc": "These metal restraints can bind a Small or Medium creature. Escaping the manacles requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of manacles comes with one key. Without the key, a creature proficient with thieves’ tools can pick the manacles’ lock with a successful DC 15 Dexterity check. Manacles have 15 hit points.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 15, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "mantle-of-spell-resistance", - "fields": { - "name": "Mantle of Spell Resistance", - "desc": "You have advantage on saving throws against spells while you wear this cloak.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "manual-of-bodily-health", - "fields": { - "name": "Manual of Bodily Health", - "desc": "This book contains health and diet tips, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Constitution score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "manual-of-gainful-exercise", - "fields": { - "name": "Manual of Gainful Exercise", - "desc": "This book describes fitness exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Strength score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "manual-of-golems", - "fields": { - "name": "Manual of Golems", - "desc": "This tome contains information and incantations necessary to make a particular type of golem. The GM chooses the type or determines it randomly. To decipher and use the manual, you must be a spellcaster with at least two 5th-level spell slots. A creature that can't use a _manual of golems_ and attempts to read it takes 6d6 psychic damage.\r\n\r\n| d20 | Golem | Time | Cost |\r\n|-------|-------|----------|------------|\r\n| 1-5 | Clay | 30 days | 65,000 gp |\r\n| 6-17 | Flesh | 60 days | 50,000 gp |\r\n| 18 | Iron | 120 days | 100,000 gp |\r\n| 19-20 | Stone | 90 days | 80,000 gp |\r\n\r\nTo create a golem, you must spend the time shown on the table, working without interruption with the manual at hand and resting no more than 8 hours per day. You must also pay the specified cost to purchase supplies.\r\n\r\nOnce you finish creating the golem, the book is consumed in eldritch flames. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "manual-of-quickness-of-action", - "fields": { - "name": "Manual of Quickness of Action", - "desc": "This book contains coordination and balance exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Dexterity score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "marvelous-pigments", - "fields": { - "name": "Marvelous Pigments", - "desc": "Typically found in 1d4 pots inside a fine wooden box with a brush (weighing 1 pound in total), these pigments allow you to create three-dimensional objects by painting them in two dimensions. The paint flows from the brush to form the desired object as you concentrate on its image.\r\n\r\nEach pot of paint is sufficient to cover 1,000 square feet of a surface, which lets you create inanimate objects or terrain features-such as a door, a pit, flowers, trees, cells, rooms, or weapons- that are up to 10,000 cubic feet. It takes 10 minutes to cover 100 square feet.\r\n\r\nWhen you complete the painting, the object or terrain feature depicted becomes a real, nonmagical object. Thus, painting a door on a wall creates an actual door that can be opened to whatever is beyond. Painting a pit on a floor creates a real pit, and its depth counts against the total area of objects you create.\r\n\r\nNothing created by the pigments can have a value greater than 25 gp. If you paint an object of greater value (such as a diamond or a pile of gold), the object looks authentic, but close inspection reveals it is made from paste, bone, or some other worthless material.\r\n\r\nIf you paint a form of energy such as fire or lightning, the energy appears but dissipates as soon as you complete the painting, doing no harm to anything.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "masons-tools", - "fields": { - "name": "Mason's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "maul", - "fields": { - "name": "Maul", - "desc": "A maul.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "maul-1", - "fields": { - "name": "Maul (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "maul-2", - "fields": { - "name": "Maul (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "maul-3", - "fields": { - "name": "Maul (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "medallion-of-thoughts", - "fields": { - "name": "Medallion of Thoughts", - "desc": "The medallion has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _detect thoughts_ spell (save DC 13) from it. The medallion regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mess-kit", - "fields": { - "name": "Mess Kit", - "desc": "This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "midnight-tears", - "fields": { - "name": "Midnight tears", - "desc": "A creature that ingests this poison suffers no effect until the stroke of midnight. If the poison has not been neutralized before then, the creature must succeed on a DC 17 Constitution saving throw, taking 31 (9d6) poison damage on a failed save, or half as much damage on a successful one.\\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1500.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "mirror-of-life-trapping", - "fields": { - "name": "Mirror of Life Trapping", - "desc": "When this 4-foot-tall mirror is viewed indirectly, its surface shows faint images of creatures. The mirror weighs 50 pounds, and it has AC 11, 10 hit points, and vulnerability to bludgeoning damage. It shatters and is destroyed when reduced to 0 hit points.\r\n\r\nIf the mirror is hanging on a vertical surface and you are within 5 feet of it, you can use an action to speak its command word and activate it. It remains activated until you use an action to speak the command word again.\r\n\r\nAny creature other than you that sees its reflection in the activated mirror while within 30 feet of it must succeed on a DC 15 Charisma saving throw or be trapped, along with anything it is wearing or carrying, in one of the mirror's twelve extradimensional cells. This saving throw is made with advantage if the creature knows the mirror's nature, and constructs succeed on the saving throw automatically.\r\n\r\nAn extradimensional cell is an infinite expanse filled with thick fog that reduces visibility to 10 feet. Creatures trapped in the mirror's cells don't age, and they don't need to eat, drink, or sleep. A creature trapped within a cell can escape using magic that permits planar travel. Otherwise, the creature is confined to the cell until freed.\r\n\r\nIf the mirror traps a creature but its twelve extradimensional cells are already occupied, the mirror frees one trapped creature at random to accommodate the new prisoner. A freed creature appears in an unoccupied space within sight of the mirror but facing away from it. If the mirror is shattered, all creatures it contains are freed and appear in unoccupied spaces near it.\r\n\r\nWhile within 5 feet of the mirror, you can use an action to speak the name of one creature trapped in it or call out a particular cell by number. The creature named or contained in the named cell appears as an image on the mirror's surface. You and the creature can then communicate normally.\r\n\r\nIn a similar way, you can use an action to speak a second command word and free one creature trapped in the mirror. The freed creature appears, along with its possessions, in the unoccupied space nearest to the mirror and facing away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "mirror-steel", - "fields": { - "name": "Mirror, steel", - "desc": "A mirror.", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "mithral-armor-breastplate", - "fields": { - "name": "Mithral Armor (Breastplate)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mithral-armor-chain-mail", - "fields": { - "name": "Mithral Armor (Chain-Mail)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mithral-armor-chain-shirt", - "fields": { - "name": "Mithral Armor (Chain-Shirt)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mithral-armor-half-plate", - "fields": { - "name": "Mithral Armor (Half-Plate)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "half-plate", - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mithral-armor-hide", - "fields": { - "name": "Mithral Armor (Hide)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mithral-armor-plate", - "fields": { - "name": "Mithral Armor (Plate)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mithral-armor-ring-mail", - "fields": { - "name": "Mithral Armor (Ring-Mail)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mithral-armor-scale-mail", - "fields": { - "name": "Mithral Armor (Scale-Mail)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "mithral-armor-splint", - "fields": { - "name": "Mithral Armor (Splint)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "morningstar", - "fields": { - "name": "Morningstar", - "desc": "A morningstar", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "morningstar-1", - "fields": { - "name": "Morningstar (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "morningstar-2", - "fields": { - "name": "Morningstar (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "morningstar-3", - "fields": { - "name": "Morningstar (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "navigators-tools", - "fields": { - "name": "Navigator's tools", - "desc": "This set of instruments is used for navigation at sea. Proficiency with navigator's tools lets you chart a ship's course and follow navigation charts. In addition, these tools allow you to add your proficiency bonus to any ability check you make to avoid getting lost at sea.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "necklace-of-adaptation", - "fields": { - "name": "Necklace of Adaptation", - "desc": "While wearing this necklace, you can breathe normally in any environment, and you have advantage on saving throws made against harmful gases and vapors (such as _cloudkill_ and _stinking cloud_ effects, inhaled poisons, and the breath weapons of some dragons).", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "necklace-of-fireballs", - "fields": { - "name": "Necklace of Fireballs", - "desc": "This necklace has 1d6 + 3 beads hanging from it. You can use an action to detach a bead and throw it up to 60 feet away. When it reaches the end of its trajectory, the bead detonates as a 3rd-level _fireball_ spell (save DC 15).\r\n\r\nYou can hurl multiple beads, or even the whole necklace, as one action. When you do so, increase the level of the _fireball_ by 1 for each bead beyond the first.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "necklace-of-prayer-beads", - "fields": { - "name": "Necklace of Prayer Beads", - "desc": "This necklace has 1d4 + 2 magic beads made from aquamarine, black pearl, or topaz. It also has many nonmagical beads made from stones such as amber, bloodstone, citrine, coral, jade, pearl, or quartz. If a magic bead is removed from the necklace, that bead loses its magic.\r\n\r\nSix types of magic beads exist. The GM decides the type of each bead on the necklace or determines it randomly. A necklace can have more than one bead of the same type. To use one, you must be wearing the necklace. Each bead contains a spell that you can cast from it as a bonus action (using your spell save DC if a save is necessary). Once a magic bead's spell is cast, that bead can't be used again until the next dawn.\r\n\r\n| d20 | Bead of... | Spell |\r\n|-------|--------------|-----------------------------------------------|\r\n| 1-6 | Blessing | Bless |\r\n| 7-12 | Curing | Cure wounds (2nd level) or lesser restoration |\r\n| 13-16 | Favor | Greater restoration |\r\n| 17-18 | Smiting | Branding smite |\r\n| 19 | Summons | Planar ally |\r\n| 20 | Wind walking | Wind walk |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "net", - "fields": { - "name": "Net", - "desc": "A net.\r\n\r\nA Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net.\r\n\r\nWhen you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "net-1", - "fields": { - "name": "Net (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "net-2", - "fields": { - "name": "Net (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "net-3", - "fields": { - "name": "Net (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "nine-lives-stealer-greatsword", - "fields": { - "name": "Nine Lives Stealer (Greatsword)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "nine-lives-stealer-longsword", - "fields": { - "name": "Nine Lives Stealer (Longsword)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "nine-lives-stealer-rapier", - "fields": { - "name": "Nine Lives Stealer (Rapier)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "nine-lives-stealer-shortsword", - "fields": { - "name": "Nine Lives Stealer (Shortsword)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "oathbow", - "fields": { - "name": "Oathbow", - "desc": "When you nock an arrow on this bow, it whispers in Elvish, \"Swift defeat to my enemies.\" When you use this weapon to make a ranged attack, you can, as a command phrase, say, \"Swift death to you who have wronged me.\" The target of your attack becomes your sworn enemy until it dies or until dawn seven days later. You can have only one such sworn enemy at a time. When your sworn enemy dies, you can choose a new one after the next dawn.\n\nWhen you make a ranged attack roll with this weapon against your sworn enemy, you have advantage on the roll. In addition, your target gains no benefit from cover, other than total cover, and you suffer no disadvantage due to long range. If the attack hits, your sworn enemy takes an extra 3d6 piercing damage.\n\nWhile your sworn enemy lives, you have disadvantage on attack rolls with all other weapons.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "oil-of-etherealness", - "fields": { - "name": "Oil of Etherealness", - "desc": "Beads of this cloudy gray oil form on the outside of its container and quickly evaporate. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of the _etherealness_ spell for 1 hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "oil-of-sharpness", - "fields": { - "name": "Oil of Sharpness", - "desc": "This clear, gelatinous oil sparkles with tiny, ultrathin silver shards. The oil can coat one slashing or piercing weapon or up to 5 pieces of slashing or piercing ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical and has a +3 bonus to attack and damage rolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "oil-of-slipperiness", - "fields": { - "name": "Oil of Slipperiness", - "desc": "This sticky black unguent is thick and heavy in the container, but it flows quickly when poured. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of a _freedom of movement_ spell for 8 hours.\n\nAlternatively, the oil can be poured on the ground as an action, where it covers a 10-foot square, duplicating the effect of the _grease_ spell in that area for 8 hours.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "oil-of-taggit", - "fields": { - "name": "Oil of taggit", - "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or become poisoned for 24 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage.\\n\\n **_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "400.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "orb", - "fields": { - "name": "Orb", - "desc": "Can be used as an Arcane Focus.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "orb-of-dragonkind", - "fields": { - "name": "Orb of Dragonkind", - "desc": "Ages past, elves and humans waged a terrible war against evil dragons. When the world seemed doomed, powerful wizards came together and worked their greatest magic, forging five _Orbs of Dragonkind_ (or _Dragon Orbs_) to help them defeat the dragons. One orb was taken to each of the five wizard towers, and there they were used to speed the war toward a victorious end. The wizards used the orbs to lure dragons to them, then destroyed the dragons with powerful magic.\\n\\nAs the wizard towers fell in later ages, the orbs were destroyed or faded into legend, and only three are thought to survive. Their magic has been warped and twisted over the centuries, so although their primary purpose of calling dragons still functions, they also allow some measure of control over dragons.\\n\\nEach orb contains the essence of an evil dragon, a presence that resents any attempt to coax magic from it. Those lacking in force of personality might find themselves enslaved to an orb.\\n\\nAn orb is an etched crystal globe about 10 inches in diameter. When used, it grows to about 20 inches in diameter, and mist swirls inside it.\\n\\nWhile attuned to an orb, you can use an action to peer into the orb's depths and speak its command word. You must then make a DC 15 Charisma check. On a successful check, you control the orb for as long as you remain attuned to it. On a failed check, you become charmed by the orb for as long as you remain attuned to it.\\n\\nWhile you are charmed by the orb, you can't voluntarily end your attunement to it, and the orb casts _suggestion_ on you at will (save DC 18), urging you to work toward the evil ends it desires. The dragon essence within the orb might want many things: the annihilation of a particular people, freedom from the orb, to spread suffering in the world, to advance the worship of Tiamat, or something else the GM decides.\\n\\n**_Random Properties_**. An _Orb of Dragonkind_ has the following random properties:\\n\\n* 2 minor beneficial properties\\n* 1 minor detrimental property\\n* 1 major detrimental property\\n\\n**_Spells_**. The orb has 7 charges and regains 1d4 + 3 expended charges daily at dawn. If you control the orb, you can use an action and expend 1 or more charges to cast one of the following spells (save DC 18) from it: _cure wounds_ (5th-level version, 3 charges), _daylight_ (1 charge), _death ward_ (2 charges), or _scrying_ (3 charges).\\n\\nYou can also use an action to cast the _detect magic_ spell from the orb without using any charges.\\n\\n**_Call Dragons_**. While you control the orb, you can use an action to cause the artifact to issue a telepathic call that extends in all directions for 40 miles. Evil dragons in range feel compelled to come to the orb as soon as possible by the most direct route. Dragon deities such as Tiamat are unaffected by this call. Dragons drawn to the orb might be hostile toward you for compelling them against their will. Once you have used this property, it can't be used again for 1 hour.\\n\\n**_Destroying an Orb_**. An _Orb of Dragonkind_ appears fragile but is impervious to most damage, including the attacks and breath weapons of dragons. A _disintegrate_ spell or one good hit from a +3 magic weapon is sufficient to destroy an orb, however.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "artifact" - } -}, -{ - "model": "api_v2.item", - "pk": "ox", - "fields": { - "name": "Ox", - "desc": "One ox.", - "document": "srd", - "size": "large", - "weight": "1500.000", - "armor_class": 10, - "hit_points": 15, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "padded-armor", - "fields": { - "name": "Padded Armor", - "desc": "Padded armor consists of quilted layers of cloth and batting.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "painters-supplies", - "fields": { - "name": "Painter's Supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "pale-tincture", - "fields": { - "name": "Pale tincture", - "desc": "A creature subjected to this poison must succeed on a DC 16 Constitution saving throw or take 3 (1d6) poison damage and become poisoned. The poisoned creature must repeat the saving throw every 24 hours, taking 3 (1d6) poison damage on a failed save. Until this poison ends, the damage the poison deals can't be healed by any means. After seven successful saving throws, the effect ends and the creature can heal normally. \\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "250.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "pan-flute", - "fields": { - "name": "Pan flute", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "12.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "paper-sheet", - "fields": { - "name": "Paper (one sheet)", - "desc": "A sheet of paper", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "parchment-sheet", - "fields": { - "name": "Parchment (one sheet)", - "desc": "A sheet of parchment", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "pearl-of-power", - "fields": { - "name": "Pearl of Power", - "desc": "While this pearl is on your person, you can use an action to speak its command word and regain one expended spell slot. If the expended slot was of 4th level or higher, the new slot is 3rd level. Once you use the pearl, it can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "perfume", - "fields": { - "name": "Perfume (vial)", - "desc": "A vial of perfume.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "periapt-of-health", - "fields": { - "name": "Periapt of Health", - "desc": "You are immune to contracting any disease while you wear this pendant. If you are already infected with a disease, the effects of the disease are suppressed you while you wear the pendant.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "periapt-of-proof-against-poison", - "fields": { - "name": "Periapt of Proof against Poison", - "desc": "This delicate silver chain has a brilliant-cut black gem pendant. While you wear it, poisons have no effect on you. You are immune to the poisoned condition and have immunity to poison damage.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "periapt-of-wound-closure", - "fields": { - "name": "Periapt of Wound Closure", - "desc": "While you wear this pendant, you stabilize whenever you are dying at the start of your turn. In addition, whenever you roll a Hit Die to regain hit points, double the number of hit points it restores.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "philter-of-love", - "fields": { - "name": "Philter of Love", - "desc": "The next time you see a creature within 10 minutes after drinking this philter, you become charmed by that creature for 1 hour. If the creature is of a species and gender you are normally attracted to, you regard it as your true love while you are charmed. This potion's rose-hued, effervescent liquid contains one easy-to-miss bubble shaped like a heart.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "pick-miners", - "fields": { - "name": "Pick, miner's", - "desc": "A pick for mining.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "pig", - "fields": { - "name": "Pig", - "desc": "One pig.", - "document": "srd", - "size": "medium", - "weight": "400.000", - "armor_class": 10, - "hit_points": 4, - "cost": "3.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "pike", - "fields": { - "name": "Pike", - "desc": "A pike.", - "document": "srd", - "size": "tiny", - "weight": "18.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "pike-1", - "fields": { - "name": "Pike (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "pike-2", - "fields": { - "name": "Pike (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "pike-3", - "fields": { - "name": "Pike (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "pipes-of-haunting", - "fields": { - "name": "Pipes of Haunting", - "desc": "You must be proficient with wind instruments to use these pipes. They have 3 charges. You can use an action to play them and expend 1 charge to create an eerie, spellbinding tune. Each creature within 30 feet of you that hears you play must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. If you wish, all creatures in the area that aren't hostile toward you automatically succeed on the saving throw. A creature that fails the saving throw can repeat it at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on its saving throw is immune to the effect of these pipes for 24 hours. The pipes regain 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "pipes-of-the-sewers", - "fields": { - "name": "Pipes of the Sewers", - "desc": "You must be proficient with wind instruments to use these pipes. While you are attuned to the pipes, ordinary rats and giant rats are indifferent toward you and will not attack you unless you threaten or harm them.\r\n\r\nThe pipes have 3 charges. If you play the pipes as an action, you can use a bonus action to expend 1 to 3 charges, calling forth one swarm of rats with each expended charge, provided that enough rats are within half a mile of you to be called in this fashion (as determined by the GM). If there aren't enough rats to form a swarm, the charge is wasted. Called swarms move toward the music by the shortest available route but aren't under your control otherwise. The pipes regain 1d3 expended charges daily at dawn.\r\n\r\nWhenever a swarm of rats that isn't under another creature's control comes within 30 feet of you while you are playing the pipes, you can make a Charisma check contested by the swarm's Wisdom check. If you lose the contest, the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours. If you win the contest, the swarm is swayed by the pipes' music and becomes friendly to you and your companions for as long as you continue to play the pipes each round as an action. A friendly swarm obeys your commands. If you issue no commands to a friendly swarm, it defends itself but otherwise takes no actions. If a friendly swarm starts its turn and can't hear the pipes' music, your control over that swarm ends, and the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "piton", - "fields": { - "name": "Piton", - "desc": "A piton for climbing.", - "document": "srd", - "size": "tiny", - "weight": "0.250", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "plate-armor", - "fields": { - "name": "Plate Armor", - "desc": "Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.", - "document": "srd", - "size": "tiny", - "weight": "65.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1500.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "plate-armor-of-etherealness", - "fields": { - "name": "Plate Armor of Etherealness", - "desc": "While you're wearing this armor, you can speak its command word as an action to gain the effect of the _etherealness_ spell, which last for 10 minutes or until you remove the armor or use an action to speak the command word again. This property of the armor can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "playing-card-set", - "fields": { - "name": "Playing card set", - "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "poison-basic", - "fields": { - "name": "Poison, Basic", - "desc": "You can use the poison in this vial to coat one slashing or piercing weapon or up to three pieces of ammunition. Applying the poison takes an action. A creature hit by the poisoned weapon or ammunition must make a DC 10 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "100.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "poisoners-kit", - "fields": { - "name": "Poisoner's kit", - "desc": "A poisoner’s kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "pole-10ft", - "fields": { - "name": "Pole (10-foot)", - "desc": "A 10 foot pole.", - "document": "srd", - "size": "tiny", - "weight": "7.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "portable-hole", - "fields": { - "name": "Portable Hole", - "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold a _portable hole_ and place it on or against a solid surface, whereupon the _portable hole_ creates an extradimensional hole 10 feet deep. The cylindrical space within the hole exists on a different plane, so it can't be used to create open passages. Any creature inside an open _portable hole_ can exit the hole by climbing out of it.\r\n\r\nYou can use an action to close a _portable hole_ by taking hold of the edges of the cloth and folding it up. Folding the cloth closes the hole, and any creatures or objects within remain in the extradimensional space. No matter what's in it, the hole weighs next to nothing.\r\n\r\nIf the hole is folded up, a creature within the hole's extradimensional space can use an action to make a DC 10 Strength check. On a successful check, the creature forces its way out and appears within 5 feet of the _portable hole_ or the creature carrying it. A breathing creature within a closed _portable hole_ can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing a _portable hole_ inside an extradimensional space created by a _bag of holding_, _handy haversack_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "pot-iron", - "fields": { - "name": "Pot, iron", - "desc": "An iron pot. Capacity: 1 gallon liquid.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-animal-friendship", - "fields": { - "name": "Potion of Animal Friendship", - "desc": "When you drink this potion, you can cast the _animal friendship_ spell (save DC 13) for 1 hour at will. Agitating this muddy liquid brings little bits into view: a fish scale, a hummingbird tongue, a cat claw, or a squirrel hair.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-clairvoyance", - "fields": { - "name": "Potion of Clairvoyance", - "desc": "When you drink this potion, you gain the effect of the _clairvoyance_ spell. An eyeball bobs in this yellowish liquid but vanishes when the potion is opened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-climbing", - "fields": { - "name": "Potion of Climbing", - "desc": "When you drink this potion, you gain a climbing speed equal to your walking speed for 1 hour. During this time, you have advantage on Strength (Athletics) checks you make to climb. The potion is separated into brown, silver, and gray layers resembling bands of stone. Shaking the bottle fails to mix the colors.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-cloud-giant-strength", - "fields": { - "name": "Potion of Cloud Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-diminution", - "fields": { - "name": "Potion of Diminution", - "desc": "When you drink this potion, you gain the \"reduce\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously contracts to a tiny bead and then expands to color the clear liquid around it. Shaking the bottle fails to interrupt this process.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-fire-giant-strength", - "fields": { - "name": "Potion of Fire Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-flying", - "fields": { - "name": "Potion of Flying", - "desc": "When you drink this potion, you gain a flying speed equal to your walking speed for 1 hour and can hover. If you're in the air when the potion wears off, you fall unless you have some other means of staying aloft. This potion's clear liquid floats at the top of its container and has cloudy white impurities drifting in it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-frost-giant-strength", - "fields": { - "name": "Potion of Frost Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-gaseous-form", - "fields": { - "name": "Potion of Gaseous Form", - "desc": "When you drink this potion, you gain the effect of the _gaseous form_ spell for 1 hour (no concentration required) or until you end the effect as a bonus action. This potion's container seems to hold fog that moves and pours like water.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-greater-healing", - "fields": { - "name": "Potion of Greater Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-growth", - "fields": { - "name": "Potion of Growth", - "desc": "When you drink this potion, you gain the \"enlarge\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously expands from a tiny bead to color the clear liquid around it and then contracts. Shaking the bottle fails to interrupt this process.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-healing", - "fields": { - "name": "Potion of Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-heroism", - "fields": { - "name": "Potion of Heroism", - "desc": "For 1 hour after drinking it, you gain 10 temporary hit points that last for 1 hour. For the same duration, you are under the effect of the _bless_ spell (no concentration required). This blue potion bubbles and steams as if boiling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-hill-giant-strength", - "fields": { - "name": "Potion of Hill Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-invisibility", - "fields": { - "name": "Potion of Invisibility", - "desc": "This potion's container looks empty but feels as though it holds liquid. When you drink it, you become invisible for 1 hour. Anything you wear or carry is invisible with you. The effect ends early if you attack or cast a spell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-mind-reading", - "fields": { - "name": "Potion of Mind Reading", - "desc": "When you drink this potion, you gain the effect of the _detect thoughts_ spell (save DC 13). The potion's dense, purple liquid has an ovoid cloud of pink floating in it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-poison", - "fields": { - "name": "Potion of Poison", - "desc": "This concoction looks, smells, and tastes like a _potion of healing_ or other beneficial potion. However, it is actually poison masked by illusion magic. An _identify_ spell reveals its true nature.\n\nIf you drink it, you take 3d6 poison damage, and you must succeed on a DC 13 Constitution saving throw or be poisoned. At the start of each of your turns while you are poisoned in this way, you take 3d6 poison damage. At the end of each of your turns, you can repeat the saving throw. On a successful save, the poison damage you take on your subsequent turns decreases by 1d6. The poison ends when the damage decreases to 0.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-resistance", - "fields": { - "name": "Potion of Resistance", - "desc": "When you drink this potion, you gain resistance to one type of damage for 1 hour. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-speed", - "fields": { - "name": "Potion of Speed", - "desc": "When you drink this potion, you gain the effect of the _haste_ spell for 1 minute (no concentration required). The potion's yellow fluid is streaked with black and swirls on its own.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-stone-giant-strength", - "fields": { - "name": "Potion of Stone Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-storm-giant-strength", - "fields": { - "name": "Potion of Storm Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-superior-healing", - "fields": { - "name": "Potion of Superior Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-supreme-healing", - "fields": { - "name": "Potion of Supreme Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "potion-of-water-breathing", - "fields": { - "name": "Potion of Water Breathing", - "desc": "You can breathe underwater for 1 hour after drinking this potion. Its cloudy green fluid smells of the sea and has a jellyfish-like bubble floating in it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "potters-tools", - "fields": { - "name": "Potter's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "pouch", - "fields": { - "name": "Pouch", - "desc": "A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch (described earlier in this section).\r\nCapacity: 1/5 cubic foot/6 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "pp", - "fields": { - "name": "Platinum Piece", - "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "purple-worm-poison", - "fields": { - "name": "Purple worm poison", - "desc": "This poison must be harvested from a dead or incapacitated purple worm. A creature subjected to this poison must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2000.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "quarterstaff-1", - "fields": { - "name": "Quarterstaff (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "quarterstaff-2", - "fields": { - "name": "Quarterstaff (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "quarterstaff-3", - "fields": { - "name": "Quarterstaff (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "quaterstaff", - "fields": { - "name": "Quarterstaff", - "desc": "A quarterstaff.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "quiver", - "fields": { - "name": "Quiver", - "desc": "A quiver can hold up to 20 arrows.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "ram-portable", - "fields": { - "name": "Ram, Portable", - "desc": "You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.", - "document": "srd", - "size": "tiny", - "weight": "35.000", - "armor_class": 0, - "hit_points": 0, - "cost": "4.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "rapier", - "fields": { - "name": "Rapier", - "desc": "A rapier.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "rapier-1", - "fields": { - "name": "Rapier (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "rapier-2", - "fields": { - "name": "Rapier (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rapier-3", - "fields": { - "name": "Rapier (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rations", - "fields": { - "name": "Rations (1 day)", - "desc": "Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "reliquary", - "fields": { - "name": "Reliquary", - "desc": "Can be used as a holy symbol.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "restorative-ointment", - "fields": { - "name": "Restorative Ointment", - "desc": "This glass jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture that smells faintly of aloe. The jar and its contents weigh 1/2 pound.\r\n\r\nAs an action, one dose of the ointment can be swallowed or applied to the skin. The creature that receives it regains 2d8 + 2 hit points, ceases to be poisoned, and is cured of any disease.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-mail", - "fields": { - "name": "Ring mail", - "desc": "This armor is leather armor with heavy rings sewn into it. The rings help reinforce the armor against blows from swords and axes. Ring mail is inferior to chain mail, and it's usually worn only by those who can't afford better armor.", - "document": "srd", - "size": "tiny", - "weight": "40.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-animal-influence", - "fields": { - "name": "Ring of Animal Influence", - "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 of its charges to cast one of the following spells:\n\n* _Animal friendship_ (save DC 13)\n* _Fear_ (save DC 13), targeting only beasts that have an Intelligence of 3 or lower\n* _Speak with animals_", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-djinni-summoning", - "fields": { - "name": "Ring of Djinni Summoning", - "desc": "While wearing this ring, you can speak its command word as an action to summon a particular djinni from the Elemental Plane of Air. The djinni appears in an unoccupied space you choose within 120 feet of you. It remains as long as you concentrate (as if concentrating on a spell), to a maximum of 1 hour, or until it drops to 0 hit points. It then returns to its home plane.\n\nWhile summoned, the djinni is friendly to you and your companions. It obeys any commands you give it, no matter what language you use. If you fail to command it, the djinni defends itself against attackers but takes no other actions.\n\nAfter the djinni departs, it can't be summoned again for 24 hours, and the ring becomes nonmagical if the djinni dies.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-elemental-command", - "fields": { - "name": "Ring of Elemental Command", - "desc": "This ring is linked to one of the four Elemental Planes. The GM chooses or randomly determines the linked plane.\n\nWhile wearing this ring, you have advantage on attack rolls against elementals from the linked plane, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\n\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\n\n**_Ring of Air Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an air elemental. In addition, when you fall, you descend 60 feet per round and take no damage from falling. You can also speak and understand Auran.\n\nIf you help slay an air elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to lightning damage.\n* You have a flying speed equal to your walking speed and can hover.\n* You can cast the following spells from the ring, expending the necessary number of charges: _chain lightning_ (3 charges), _gust of wind_ (2 charges), or _wind wall_ (1 charge).\n\n**_Ring of Earth Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an earth elemental. In addition, you can move in difficult terrain that is composed of rubble, rocks, or dirt as if it were normal terrain. You can also speak and understand Terran.\n\nIf you help slay an earth elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to acid damage.\n* You can move through solid earth or rock as if those areas were difficult terrain. If you end your turn there, you are shunted out to the nearest unoccupied space you last occupied.\n* You can cast the following spells from the ring, expending the necessary number of charges: _stone shape_ (2 charges), _stoneskin_ (3 charges), or _wall of stone_ (3 charges).\n\n**_Ring of Fire Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a fire elemental. In addition, you have resistance to fire damage. You can also speak and understand Ignan.\n\nIf you help slay a fire elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You are immune to fire damage.\n* You can cast the following spells from the ring, expending the necessary number of charges: _burning hands_ (1 charge), _fireball_ (2 charges), and _wall of fire_ (3 charges).\n\n**_Ring of Water Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a water elemental. In addition, you can stand on and walk across liquid surfaces as if they were solid ground. You can also speak and understand Aquan.\n\nIf you help slay a water elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You can breathe underwater and have a swimming speed equal to your walking speed.\n* You can cast the following spells from the ring, expending the necessary number of charges: _create or destroy water_ (1 charge), _control water_ (3 charges), _ice storm_ (2 charges), or _wall of ice_ (3 charges).", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-evasion", - "fields": { - "name": "Ring of Evasion", - "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. When you fail a Dexterity saving throw while wearing it, you can use your reaction to expend 1 of its charges to succeed on that saving throw instead.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-feather-falling", - "fields": { - "name": "Ring of Feather Falling", - "desc": "When you fall while wearing this ring, you descend 60 feet per round and take no damage from falling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-free-action", - "fields": { - "name": "Ring of Free Action", - "desc": "While you wear this ring, difficult terrain doesn't cost you extra movement. In addition, magic can neither reduce your speed nor cause you to be paralyzed or restrained.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-invisibility", - "fields": { - "name": "Ring of Invisibility", - "desc": "While wearing this ring, you can turn invisible as an action. Anything you are wearing or carrying is invisible with you. You remain invisible until the ring is removed, until you attack or cast a spell, or until you use a bonus action to become visible again.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-jumping", - "fields": { - "name": "Ring of Jumping", - "desc": "While wearing this ring, you can cast the _jump_ spell from it as a bonus action at will, but can target only yourself when you do so.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-mind-shielding", - "fields": { - "name": "Ring of Mind Shielding", - "desc": "While wearing this ring, you are immune to magic that allows other creatures to read your thoughts, determine whether you are lying, know your alignment, or know your creature type. Creatures can telepathically communicate with you only if you allow it.\n\nYou can use an action to cause the ring to become invisible until you use another action to make it visible, until you remove the ring, or until you die.\n\nIf you die while wearing the ring, your soul enters it, unless it already houses a soul. You can remain in the ring or depart for the afterlife. As long as your soul is in the ring, you can telepathically communicate with any creature wearing it. A wearer can't prevent this telepathic communication.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-protection", - "fields": { - "name": "Ring of Protection", - "desc": "You gain a +1 bonus to AC and saving throws while wearing this ring.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-regeneration", - "fields": { - "name": "Ring of Regeneration", - "desc": "While wearing this ring, you regain 1d6 hit points every 10 minutes, provided that you have at least 1 hit point. If you lose a body part, the ring causes the missing part to regrow and return to full functionality after 1d6 + 1 days if you have at least 1 hit point the whole time.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-resistance", - "fields": { - "name": "Ring of Resistance", - "desc": "You have resistance to one damage type while wearing this ring. The gem in the ring indicates the type, which the GM chooses or determines randomly.\n\n| d10 | Damage Type | Gem |\n|-----|-------------|------------|\n| 1 | Acid | Pearl |\n| 2 | Cold | Tourmaline |\n| 3 | Fire | Garnet |\n| 4 | Force | Sapphire |\n| 5 | Lightning | Citrine |\n| 6 | Necrotic | Jet |\n| 7 | Poison | Amethyst |\n| 8 | Psychic | Jade |\n| 9 | Radiant | Topaz |\n| 10 | Thunder | Spinel |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-shooting-stars", - "fields": { - "name": "Ring of Shooting Stars", - "desc": "While wearing this ring in dim light or darkness, you can cast _dancing lights_ and _light_ from the ring at will. Casting either spell from the ring requires an action.\n\nThe ring has 6 charges for the following other properties. The ring regains 1d6 expended charges daily at dawn.\n\n**_Faerie Fire_**. You can expend 1 charge as an action to cast _faerie fire_ from the ring.\n\n**_Ball Lightning_**. You can expend 2 charges as an action to create one to four 3-foot-diameter spheres of lightning. The more spheres you create, the less powerful each sphere is individually.\n\nEach sphere appears in an unoccupied space you can see within 120 feet of you. The spheres last as long as you concentrate (as if concentrating on a spell), up to 1 minute. Each sphere sheds dim light in a 30-foot radius.\n\nAs a bonus action, you can move each sphere up to 30 feet, but no farther than 120 feet away from you. When a creature other than you comes within 5 feet of a sphere, the sphere discharges lightning at that creature and disappears. That creature must make a DC 15 Dexterity saving throw. On a failed save, the creature takes lightning damage based on the number of spheres you created.\n\n| Spheres | Lightning Damage |\n|---------|------------------|\n| 4 | 2d4 |\n| 3 | 2d6 |\n| 2 | 5d4 |\n| 1 | 4d12 |\n\n**_Shooting Stars_**. You can expend 1 to 3 charges as an action. For every charge you expend, you launch a glowing mote of light from the ring at a point you can see within 60 feet of you. Each creature within a 15-foot cube originating from that point is showered in sparks and must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-spell-storing", - "fields": { - "name": "Ring of Spell Storing", - "desc": "This ring stores spells cast into it, holding them until the attuned wearer uses them. The ring can store up to 5 levels worth of spells at a time. When found, it contains 1d6 - 1 levels of stored spells chosen by the GM.\n\nAny creature can cast a spell of 1st through 5th level into the ring by touching the ring as the spell is cast. The spell has no effect, other than to be stored in the ring. If the ring can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\n\nWhile wearing this ring, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the ring is no longer stored in it, freeing up space.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-spell-turning", - "fields": { - "name": "Ring of Spell Turning", - "desc": "While wearing this ring, you have advantage on saving throws against any spell that targets only you (not in an area of effect). In addition, if you roll a 20 for the save and the spell is 7th level or lower, the spell has no effect on you and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-swimming", - "fields": { - "name": "Ring of Swimming", - "desc": "You have a swimming speed of 40 feet while wearing this ring.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-telekinesis", - "fields": { - "name": "Ring of Telekinesis", - "desc": "While wearing this ring, you can cast the _telekinesis_ spell at will, but you can target only objects that aren't being worn or carried.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-the-ram", - "fields": { - "name": "Ring of the Ram", - "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a spectral ram's head and makes its attack roll with a +7 bonus. On a hit, for each charge you spend, the target takes 2d10 force damage and is pushed 5 feet away from you.\n\nAlternatively, you can expend 1 to 3 of the ring's charges as an action to try to break an object you can see within 60 feet of you that isn't being worn or carried. The ring makes a Strength check with a +5 bonus for each charge you spend.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-three-wishes", - "fields": { - "name": "Ring of Three Wishes", - "desc": "While wearing this ring, you can use an action to expend 1 of its 3 charges to cast the _wish_ spell from it. The ring becomes nonmagical when you use the last charge.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-warmth", - "fields": { - "name": "Ring of Warmth", - "desc": "While wearing this ring, you have resistance to cold damage. In addition, you and everything you wear and carry are unharmed by temperatures as low as -50 degrees Fahrenheit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-water-walking", - "fields": { - "name": "Ring of Water Walking", - "desc": "While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "ring-of-x-ray-vision", - "fields": { - "name": "Ring of X-ray Vision", - "desc": "While wearing this ring, you can use an action to speak its command word. When you do so, you can see into and through solid matter for 1 minute. This vision has a radius of 30 feet. To you, solid objects within that radius appear transparent and don't prevent light from passing through them. The vision can penetrate 1 foot of stone, 1 inch of common metal, or up to 3 feet of wood or dirt. Thicker substances block the vision, as does a thin sheet of lead.\n\nWhenever you use the ring again before taking a long rest, you must succeed on a DC 15 Constitution saving throw or gain one level of exhaustion.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "robe-of-eyes", - "fields": { - "name": "Robe of Eyes", - "desc": "This robe is adorned with eyelike patterns. While you wear the robe, you gain the following benefits:\r\n\r\n* The robe lets you see in all directions, and you have advantage on Wisdom (Perception) checks that rely on sight.\r\n* You have darkvision out to a range of 120 feet.\r\n* You can see invisible creatures and objects, as well as see into the Ethereal Plane, out to a range of 120 feet.\r\n\r\nThe eyes on the robe can't be closed or averted. Although you can close or avert your own eyes, you are never considered to be doing so while wearing this robe.\r\n\r\nA _light_ spell cast on the robe or a _daylight_ spell cast within 5 feet of the robe causes you to be blinded for 1 minute. At the end of each of your turns, you can make a Constitution saving throw (DC 11 for _light_ or DC 15 for _daylight_), ending the blindness on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "robe-of-scintillating-colors", - "fields": { - "name": "Robe of Scintillating Colors", - "desc": "This robe has 3 charges, and it regains 1d3 expended charges daily at dawn. While you wear it, you can use an action and expend 1 charge to cause the garment to display a shifting pattern of dazzling hues until the end of your next turn. During this time, the robe sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Creatures that can see you have disadvantage on attack rolls against you. In addition, any creature in the bright light that can see you when the robe's power is activated must succeed on a DC 15 Wisdom saving throw or become stunned until the effect ends.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "robe-of-stars", - "fields": { - "name": "Robe of Stars", - "desc": "This black or dark blue robe is embroidered with small white or silver stars. You gain a +1 bonus to saving throws while you wear it.\r\n\r\nSix stars, located on the robe's upper front portion, are particularly large. While wearing this robe, you can use an action to pull off one of the stars and use it to cast _magic missile_ as a 5th-level spell. Daily at dusk, 1d6 removed stars reappear on the robe.\r\n\r\nWhile you wear the robe, you can use an action to enter the Astral Plane along with everything you are wearing and carrying. You remain there until you use an action to return to the plane you were on. You reappear in the last space you occupied, or if that space is occupied, the nearest unoccupied space.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "robe-of-the-archmagi", - "fields": { - "name": "Robe of the Archmagi", - "desc": "This elegant garment is made from exquisite cloth of white, gray, or black and adorned with silvery runes. The robe's color corresponds to the alignment for which the item was created. A white robe was made for good, gray for neutral, and black for evil. You can't attune to a _robe of the archmagi_ that doesn't correspond to your alignment.\r\n\r\nYou gain these benefits while wearing the robe:\r\n\r\n* If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* Your spell save DC and spell attack bonus each increase by 2.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "robe-of-useful-items", - "fields": { - "name": "Robe of Useful Items", - "desc": "This robe has cloth patches of various shapes and colors covering it. While wearing the robe, you can use an action to detach one of the patches, causing it to become the object or creature it represents. Once the last patch is removed, the robe becomes an ordinary garment.\r\n\r\nThe robe has two of each of the following patches:\r\n\r\n* Dagger\r\n* Bullseye lantern (filled and lit)\r\n* Steel mirror\r\n* 10-foot pole\r\n* Hempen rope (50 feet, coiled)\r\n* Sack\r\n\r\nIn addition, the robe has 4d4 other patches. The GM chooses the patches or determines them randomly.\r\n\r\n| d100 | Patch |\r\n|--------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-08 | Bag of 100 gp |\r\n| 09-15 | Silver coffer (1 foot long, 6 inches wide and deep) worth 500 gp |\r\n| 16-22 | Iron door (up to 10 feet wide and 10 feet high, barred on one side of your choice), which you can place in an opening you can reach; it conforms to fit the opening, attaching and hinging itself |\r\n| 23-30 | 10 gems worth 100 gp each |\r\n| 31-44 | Wooden ladder (24 feet long) |\r\n| 45-51 | A riding horse with saddle bags |\r\n| 52-59 | Pit (a cube 10 feet on a side), which you can place on the ground within 10 feet of you |\r\n| 60-68 | 4 potions of healing |\r\n| 69-75 | Rowboat (12 feet long) |\r\n| 76-83 | Spell scroll containing one spell of 1st to 3rd level |\r\n| 84-90 | 2 mastiffs |\r\n| 91-96 | Window (2 feet by 4 feet, up to 2 feet deep), which you can place on a vertical surface you can reach |\r\n| 97-100 | Portable ram |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "robes", - "fields": { - "name": "Robes", - "desc": "Robes, for wearing.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "rod", - "fields": { - "name": "Rod", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-absorption", - "fields": { - "name": "Rod of Absorption", - "desc": "While holding this rod, you can use your reaction to absorb a spell that is targeting only you and not with an area of effect. The absorbed spell's effect is canceled, and the spell's energy-not the spell itself-is stored in the rod. The energy has the same level as the spell when it was cast. The rod can absorb and store up to 50 levels of energy over the course of its existence. Once the rod absorbs 50 levels of energy, it can't absorb more. If you are targeted by a spell that the rod can't store, the rod has no effect on that spell.\n\nWhen you become attuned to the rod, you know how many levels of energy the rod has absorbed over the course of its existence, and how many levels of spell energy it currently has stored.\n\nIf you are a spellcaster holding the rod, you can convert energy stored in it into spell slots to cast spells you have prepared or know. You can create spell slots only of a level equal to or lower than your own spell slots, up to a maximum of 5th level. You use the stored levels in place of your slots, but otherwise cast the spell as normal. For example, you can use 3 levels stored in the rod as a 3rd-level spell slot.\n\nA newly found rod has 1d10 levels of spell energy stored in it already. A rod that can no longer absorb spell energy and has no energy remaining becomes nonmagical.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-alertness", - "fields": { - "name": "Rod of Alertness", - "desc": "This rod has a flanged head and the following properties.\n\n**_Alertness_**. While holding the rod, you have advantage on Wisdom (Perception) checks and on rolls for initiative.\n\n**_Spells_**. While holding the rod, you can use an action to cast one of the following spells from it: _detect evil and good_, _detect magic_, _detect poison and disease_, or _see invisibility._\n\n**_Protective Aura_**. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's head sheds bright light in a 60-foot radius and dim light for an additional 60 feet. While in that bright light, you and any creature that is friendly to you gain a +1 bonus to AC and saving throws and can sense the location of any invisible hostile creature that is also in the bright light.\n\nThe rod's head stops glowing and the effect ends after 10 minutes, or when a creature uses an action to pull the rod from the ground. This property can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-lordly-might", - "fields": { - "name": "Rod of Lordly Might", - "desc": "This rod has a flanged head, and it functions as a magic mace that grants a +3 bonus to attack and damage rolls made with it. The rod has properties associated with six different buttons that are set in a row along the haft. It has three other properties as well, detailed below.\n\n**_Six Buttons_**. You can press one of the rod's six buttons as a bonus action. A button's effect lasts until you push a different button or until you push the same button again, which causes the rod to revert to its normal form.\n\nIf you press **button 1**, the rod becomes a _flame tongue_, as a fiery blade sprouts from the end opposite the rod's flanged head.\n\nIf you press **button 2**, the rod's flanged head folds down and two crescent-shaped blades spring out, transforming the rod into a magic battleaxe that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 3**, the rod's flanged head folds down, a spear point springs from the rod's tip, and the rod's handle lengthens into a 6-foot haft, transforming the rod into a magic spear that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 4**, the rod transforms into a climbing pole up to 50 feet long, as you specify. In surfaces as hard as granite, a spike at the bottom and three hooks at the top anchor the pole. Horizontal bars 3 inches long fold out from the sides, 1 foot apart, forming a ladder. The pole can bear up to 4,000 pounds. More weight or lack of solid anchoring causes the rod to revert to its normal form.\n\nIf you press **button 5**, the rod transforms into a handheld battering ram and grants its user a +10 bonus to Strength checks made to break through doors, barricades, and other barriers.\n\nIf you press **button 6**, the rod assumes or remains in its normal form and indicates magnetic north. (Nothing happens if this function of the rod is used in a location that has no magnetic north.) The rod also gives you knowledge of your approximate depth beneath the ground or your height above it.\n\n**_Drain Life_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target takes an extra 4d6 necrotic damage, and you regain a number of hit points equal to half that necrotic damage. This property can't be used again until the next dawn.\n\n**_Paralyze_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Strength saving throw. On a failure, the target is paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. This property can't be used again until the next dawn.\n\n**_Terrify_**. While holding the rod, you can use an action to force each creature you can see within 30 feet of you to make a DC 17 Wisdom saving throw. On a failure, a target is frightened of you for 1 minute. A frightened target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This property can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-rulership", - "fields": { - "name": "Rod of Rulership", - "desc": "You can use an action to present the rod and command obedience from each creature of your choice that you can see within 120 feet of you. Each target must succeed on a DC 15 Wisdom saving throw or be charmed by you for 8 hours. While charmed in this way, the creature regards you as its trusted leader. If harmed by you or your companions, or commanded to do something contrary to its nature, a target ceases to be charmed in this way. The rod can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rod-of-security", - "fields": { - "name": "Rod of Security", - "desc": "While holding this rod, you can use an action to activate it. The rod then instantly transports you and up to 199 other willing creatures you can see to a paradise that exists in an extraplanar space. You choose the form that the paradise takes. It could be a tranquil garden, lovely glade, cheery tavern, immense palace, tropical island, fantastic carnival, or whatever else you can imagine. Regardless of its nature, the paradise contains enough water and food to sustain its visitors. Everything else that can be interacted with inside the extraplanar space can exist only there. For example, a flower picked from a garden in the paradise disappears if it is taken outside the extraplanar space.\n\nFor each hour spent in the paradise, a visitor regains hit points as if it had spent 1 Hit Die. Also, creatures don't age while in the paradise, although time passes normally. Visitors can remain in the paradise for up to 200 days divided by the number of creatures present (round down).\n\nWhen the time runs out or you use an action to end it, all visitors reappear in the location they occupied when you activated the rod, or an unoccupied space nearest that location. The rod can't be used again until ten days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rope-hempen-50ft", - "fields": { - "name": "Rope, hempen (50 feet)", - "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 2, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "rope-of-climbing", - "fields": { - "name": "Rope of Climbing", - "desc": "This 60-foot length of silk rope weighs 3 pounds and can hold up to 3,000 pounds. If you hold one end of the rope and use an action to speak the command word, the rope animates. As a bonus action, you can command the other end to move toward a destination you choose. That end moves 10 feet on your turn when you first command it and 10 feet on each of your turns until reaching its destination, up to its maximum length away, or until you tell it to stop. You can also tell the rope to fasten itself securely to an object or to unfasten itself, to knot or unknot itself, or to coil itself for carrying.\r\n\r\nIf you tell the rope to knot, large knots appear at 1* foot intervals along the rope. While knotted, the rope shortens to a 50-foot length and grants advantage on checks made to climb it.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "rope-of-entanglement", - "fields": { - "name": "Rope of Entanglement", - "desc": "This rope is 30 feet long and weighs 3 pounds. If you hold one end of the rope and use an action to speak its command word, the other end darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 15 Dexterity saving throw or become restrained.\r\n\r\nYou can release the creature by using a bonus action to speak a second command word. A target restrained by the rope can use an action to make a DC 15 Strength or Dexterity check (target's choice). On a success, the creature is no longer restrained by the rope.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "rope-silk-50ft", - "fields": { - "name": "Rope, silk (50 feet)", - "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "rowboat", - "fields": { - "name": "Rowboat", - "desc": "Waterborne vehicle. Speed 1.5mph", - "document": "srd", - "size": "large", - "weight": "100.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sack", - "fields": { - "name": "Sack", - "desc": "A sack. Capacity: 1 cubic foot/30 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sailing-ship", - "fields": { - "name": "Sailing Ship", - "desc": "Waterborne vehicle. Speed 2mph", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "scale-mail", - "fields": { - "name": "Scale mail", - "desc": "This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.", - "document": "srd", - "size": "tiny", - "weight": "45.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "scale-merchants", - "fields": { - "name": "Scale, Merchant's", - "desc": "A scale includes a small balance, pans, and a suitable assortment of weights up to 2 pounds. With it, you can measure the exact weight of small objects, such as raw precious metals or trade goods, to help determine their worth.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "scarab-of-protection", - "fields": { - "name": "Scarab of Protection", - "desc": "If you hold this beetle-shaped medallion in your hand for 1 round, an inscription appears on its surface revealing its magical nature. It provides two benefits while it is on your person:\r\n\r\n* You have advantage on saving throws against spells.\r\n* The scarab has 12 charges. If you fail a saving throw against a necromancy spell or a harmful effect originating from an undead creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into powder and is destroyed when its last charge is expended.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "scimitar", - "fields": { - "name": "Scimitar", - "desc": "A scimitar.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "scimitar-1", - "fields": { - "name": "Scimitar (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "scimitar-2", - "fields": { - "name": "Scimitar (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "scimitar-3", - "fields": { - "name": "Scimitar (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "scimitar-of-speed", - "fields": { - "name": "Scimitar of Speed", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. In addition, you can make one attack with it as a bonus action on each of your turns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sealing-wax", - "fields": { - "name": "Sealing wax", - "desc": "For sealing written letters.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "serpent-venom", - "fields": { - "name": "Serpent venom", - "desc": "This poison must be harvested from a dead or incapacitated giant poisonous snake. A creature subjected to this poison must succeed on a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "shawm", - "fields": { - "name": "Shawm", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sheep", - "fields": { - "name": "Sheep", - "desc": "One sheep.", - "document": "srd", - "size": "medium", - "weight": "75.000", - "armor_class": 10, - "hit_points": 4, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "shield", - "fields": { - "name": "Shield", - "desc": "A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "shield-of-missile-attraction", - "fields": { - "name": "Shield of Missile Attraction", - "desc": "While holding this shield, you have resistance to damage from ranged weapon attacks.\n\n**_Curse_**. This shield is cursed. Attuning to it curses you until you are targeted by the _remove curse_ spell or similar magic. Removing the shield fails to end the curse on you. Whenever a ranged weapon attack is made against a target within 10 feet of you, the curse causes you to become the target instead.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "shortbow", - "fields": { - "name": "Shortbow", - "desc": "A shortbow", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "shortbow-1", - "fields": { - "name": "Shortbow (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "shortbow-2", - "fields": { - "name": "Shortbow (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "shortbow-3", - "fields": { - "name": "Shortbow (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "shortsword", - "fields": { - "name": "Shortsword", - "desc": "A short sword.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "shortsword-1", - "fields": { - "name": "Shortsword (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "shortsword-2", - "fields": { - "name": "Shortsword (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "shortsword-3", - "fields": { - "name": "Shortsword (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "shovel", - "fields": { - "name": "Shovel", - "desc": "A shovel.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sickle", - "fields": { - "name": "Sickle", - "desc": "A sickle.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sickle-1", - "fields": { - "name": "Sickle (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "sickle-2", - "fields": { - "name": "Sickle (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "sickle-3", - "fields": { - "name": "Sickle (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "signal-whistle", - "fields": { - "name": "Signal whistle", - "desc": "For signalling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "signet-ring", - "fields": { - "name": "Signet Ring", - "desc": "A ring with a signet on it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sled", - "fields": { - "name": "Sled", - "desc": "Drawn vehicle", - "document": "srd", - "size": "large", - "weight": "300.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sling", - "fields": { - "name": "Sling", - "desc": "A sling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sling-1", - "fields": { - "name": "Sling (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "sling-2", - "fields": { - "name": "Sling (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "sling-3", - "fields": { - "name": "Sling (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "sling-bullets", - "fields": { - "name": "Sling bullets", - "desc": "Technically their cost is 20 for 4cp.", - "document": "srd", - "size": "tiny", - "weight": "0.075", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "slippers-of-spider-climbing", - "fields": { - "name": "Slippers of Spider Climbing", - "desc": "While you wear these light shoes, you can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free. You have a climbing speed equal to your walking speed. However, the slippers don't allow you to move this way on a slippery surface, such as one covered by ice or oil.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "smiths-tools", - "fields": { - "name": "Smith's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "soap", - "fields": { - "name": "Soap", - "desc": "For cleaning.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sovereign-glue", - "fields": { - "name": "Sovereign Glue", - "desc": "This viscous, milky-white substance can form a permanent adhesive bond between any two objects. It must be stored in a jar or flask that has been coated inside with _oil of slipperiness._ When found, a container contains 1d6 + 1 ounces.\r\n\r\nOne ounce of the glue can cover a 1-foot square surface. The glue takes 1 minute to set. Once it has done so, the bond it creates can be broken only by the application of _universal solvent_ or _oil of etherealness_, or with a _wish_ spell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "sp", - "fields": { - "name": "Silver Piece", - "desc": "One gold piece is worth ten silver pieces, the most prevalent coin among commoners. A silver piece buys a laborer's work for half a day, a flask of lamp oil, or a night's rest in a poor inn.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "spear", - "fields": { - "name": "Spear", - "desc": "A spear.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "spear-1", - "fields": { - "name": "Spear (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "spear-2", - "fields": { - "name": "Spear (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "spear-3", - "fields": { - "name": "Spear (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "spell-scroll-1st-level", - "fields": { - "name": "Spell Scroll (1st Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "spell-scroll-2nd-level", - "fields": { - "name": "Spell Scroll (2nd Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "spell-scroll-3rd-level", - "fields": { - "name": "Spell Scroll (3rd Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "spell-scroll-4th-level", - "fields": { - "name": "Spell Scroll (4th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "spell-scroll-5th-level", - "fields": { - "name": "Spell Scroll (5th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "spell-scroll-6th-level", - "fields": { - "name": "Spell Scroll (6th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "spell-scroll-7th-level", - "fields": { - "name": "Spell Scroll (7th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "spell-scroll-8th-level", - "fields": { - "name": "Spell Scroll (8th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "spell-scroll-9th-level", - "fields": { - "name": "Spell Scroll (9th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "spell-scroll-cantrip", - "fields": { - "name": "Spell Scroll (Cantrip)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "spellbook", - "fields": { - "name": "Spellbook", - "desc": "Essential for wizards, a spellbook is a leather-­‐‑bound tome with 100 blank vellum pages suitable for recording spells.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "spellguard-shield", - "fields": { - "name": "Spellguard Shield", - "desc": "While holding this shield, you have advantage on saving throws against spells and other magical effects, and spell attacks have disadvantage against you.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "sphere-of-annihilation", - "fields": { - "name": "Sphere of Annihilation", - "desc": "This 2-foot-diameter black sphere is a hole in the multiverse, hovering in space and stabilized by a magical field surrounding it.\r\n\r\nThe sphere obliterates all matter it passes through and all matter that passes through it. Artifacts are the exception. Unless an artifact is susceptible to damage from a _sphere of annihilation_, it passes through the sphere unscathed. Anything else that touches the sphere but isn't wholly engulfed and obliterated by it takes 4d10 force damage.\r\n\r\nThe sphere is stationary until someone controls it. If you are within 60 feet of an uncontrolled sphere, you can use an action to make a DC 25 Intelligence (Arcana) check. On a success, the sphere levitates in one direction of your choice, up to a number of feet equal to 5 × your Intelligence modifier (minimum 5 feet). On a failure, the sphere moves 10 feet toward you. A creature whose space the sphere enters must succeed on a DC 13 Dexterity saving throw or be touched by it, taking 4d10 force damage.\r\n\r\nIf you attempt to control a sphere that is under another creature's control, you make an Intelligence (Arcana) check contested by the other creature's Intelligence (Arcana) check. The winner of the contest gains control of the sphere and can levitate it as normal.\r\n\r\nIf the sphere comes into contact with a planar portal, such as that created by the _gate_ spell, or an extradimensional space, such as that within a _portable hole_, the GM determines randomly what happens, using the following table.\r\n\r\n| d100 | Result |\r\n|--------|------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-50 | The sphere is destroyed. |\r\n| 51-85 | The sphere moves through the portal or into the extradimensional space. |\r\n| 86-00 | A spatial rift sends each creature and object within 180 feet of the sphere, including the sphere, to a random plane of existence. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "spike-iron", - "fields": { - "name": "Spike, iron", - "desc": "An iron spike.", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "splint-armor", - "fields": { - "name": "Splint Armor", - "desc": "This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.", - "document": "srd", - "size": "tiny", - "weight": "60.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sprig-of-mistletoe", - "fields": { - "name": "Sprig of mistletoe", - "desc": "A sprig of mistletoe that can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "spyglass", - "fields": { - "name": "Spyglass", - "desc": "Objects viewed through a spyglass are magnified to twice their size.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1000.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "staff", - "fields": { - "name": "Staff", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-charming", - "fields": { - "name": "Staff of Charming", - "desc": "While holding this staff, you can use an action to expend 1 of its 10 charges to cast _charm person_, _command_, _or comprehend languages_ from it using your spell save DC. The staff can also be used as a magic quarterstaff.\n\nIf you are holding the staff and fail a saving throw against an enchantment spell that targets only you, you can turn your failed save into a successful one. You can't use this property of the staff again until the next dawn. If you succeed on a save against an enchantment spell that targets only you, with or without the staff's intervention, you can use your reaction to expend 1 charge from the staff and turn the spell back on its caster as if you had cast the spell.\n\nThe staff regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-fire", - "fields": { - "name": "Staff of Fire", - "desc": "You have resistance to fire damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _burning hands_ (1 charge), _fireball_ (3 charges), or _wall of fire_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff blackens, crumbles into cinders, and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-frost", - "fields": { - "name": "Staff of Frost", - "desc": "You have resistance to cold damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _cone of cold_ (5 charges), _fog cloud_ (1 charge), _ice storm_ (4 charges), or _wall of ice_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff turns to water and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-healing", - "fields": { - "name": "Staff of Healing", - "desc": "This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability modifier: _cure wounds_ (1 charge per spell level, up to 4th), _lesser restoration_ (2 charges), or _mass cure wounds_ (5 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-power", - "fields": { - "name": "Staff of Power", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to Armor Class, saving throws, and spell attack rolls.\n\nThe staff has 20 charges for the following properties. The staff regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses all other properties. On a 20, the staff regains 1d8 + 2 charges.\n\n**_Power Strike_**. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d6 force damage to the target.\n\n**_Spells_**. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spell attack bonus: _cone of cold_ (5 charges), _fireball_ (5th-level version, 5 charges), _globe of invulnerability_ (6 charges), _hold monster_ (5 charges), _levitate_ (2 charges), _lightning bolt_ (5th-level version, 5 charges), _magic missile_ (1 charge), _ray of enfeeblement_ (1 charge), or _wall of force_ (5 charges).\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-striking", - "fields": { - "name": "Staff of Striking", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +3 bonus to attack and damage rolls made with it.\n\nThe staff has 10 charges. When you hit with a melee attack using it, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 force damage. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-swarming-insects", - "fields": { - "name": "Staff of Swarming Insects", - "desc": "This staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of insects consumes and destroys the staff, then disperses.\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC: _giant insect_ (4 charges) or _insect plague_ (5 charges).\n\n**_Insect Cloud_**. While holding the staff, you can use an action and expend 1 charge to cause a swarm of harmless flying insects to spread out in a 30-foot radius from you. The insects remain for 10 minutes, making the area heavily obscured for creatures other than you. The swarm moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the swarm and ends the effect.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-the-magi", - "fields": { - "name": "Staff of the Magi", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls.\n\nThe staff has 50 charges for the following properties. It regains 4d6 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 20, the staff regains 1d12 + 1 charges.\n\n**_Spell Absorption_**. While holding the staff, you have advantage on saving throws against spells. In addition, you can use your reaction when another creature casts a spell that targets only you. If you do, the staff absorbs the magic of the spell, canceling its effect and gaining a number of charges equal to the absorbed spell's level. However, if doing so brings the staff's total number of charges above 50, the staff explodes as if you activated its retributive strike (see below).\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: _conjure elemental_ (7 charges), _dispel magic_ (3 charges), _fireball_ (7th-level version, 7 charges), _flaming sphere_ (2 charges), _ice storm_ (4 charges), _invisibility_ (2 charges), _knock_ (2 charges), _lightning bolt_ (7th-level version, 7 charges), _passwall_ (5 charges), _plane shift_ (7 charges), _telekinesis_ (5 charges), _wall of fire_ (4 charges), or _web_ (2 charges).\n\nYou can also use an action to cast one of the following spells from the staff without using any charges: _arcane lock_, _detect magic_, _enlarge/reduce_, _light_, _mage hand_, or _protection from evil and good._\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-the-python", - "fields": { - "name": "Staff of the Python", - "desc": "You can use an action to speak this staff's command word and throw the staff on the ground within 10 feet of you. The staff becomes a giant constrictor snake under your control and acts on its own initiative count. By using a bonus action to speak the command word again, you return the staff to its normal form in a space formerly occupied by the snake.\n\nOn your turn, you can mentally command the snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snake takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location.\n\nIf the snake is reduced to 0 hit points, it dies and reverts to its staff form. The staff then shatters and is destroyed. If the snake reverts to staff form before losing all its hit points, it regains all of them.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-the-woodlands", - "fields": { - "name": "Staff of the Woodlands", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you have a +2 bonus to spell attack rolls.\n\nThe staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff.\n\n**_Spells_**. You can use an action to expend 1 or more of the staff's charges to cast one of the following spells from it, using your spell save DC: _animal friendship_ (1 charge), _awaken_ (5 charges), _barkskin_ (2 charges), _locate animals or plants_ (2 charges), _speak with animals_ (1 charge), _speak with plants_ (3 charges), or _wall of thorns_ (6 charges).\n\nYou can also use an action to cast the _pass without trace_ spell from the staff without using any charges. **_Tree Form_**. You can use an action to plant one end of the staff in fertile earth and expend 1 charge to transform the staff into a healthy tree. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\n\nThe tree appears ordinary but radiates a faint aura of transmutation magic if targeted by _detect magic_. While touching the tree and using another action to speak its command word, you return the staff to its normal form. Any creature in the tree falls when it reverts to a staff.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-thunder-and-lightning", - "fields": { - "name": "Staff of Thunder and Lightning", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. It also has the following additional properties. When one of these properties is used, it can't be used again until the next dawn.\n\n**_Lightning_**. When you hit with a melee attack using the staff, you can cause the target to take an extra 2d6 lightning damage.\n\n**_Thunder_**. When you hit with a melee attack using the staff, you can cause the staff to emit a crack of thunder, audible out to 300 feet. The target you hit must succeed on a DC 17 Constitution saving throw or become stunned until the end of your next turn.\n\n**_Lightning Strike_**. You can use an action to cause a bolt of lightning to leap from the staff's tip in a line that is 5 feet wide and 120 feet long. Each creature in that line must make a DC 17 Dexterity saving throw, taking 9d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**_Thunderclap_**. You can use an action to cause the staff to issue a deafening thunderclap, audible out to 600 feet. Each creature within 60 feet of you (not including you) must make a DC 17 Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 1 minute. On a successful save, a creature takes half damage and isn't deafened.\n\n**_Thunder and Lightning_**. You can use an action to use the Lightning Strike and Thunderclap properties at the same time. Doing so doesn't expend the daily use of those properties, only the use of this one.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "staff-of-withering", - "fields": { - "name": "Staff of Withering", - "desc": "This staff has 3 charges and regains 1d3 expended charges daily at dawn.\n\nThe staff can be wielded as a magic quarterstaff. On a hit, it deals damage as a normal quarterstaff, and you can expend 1 charge to deal an extra 2d10 necrotic damage to the target. In addition, the target must succeed on a DC 15 Constitution saving throw or have disadvantage for 1 hour on any ability check or saving throw that uses Strength or Constitution.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "stone-of-controlling-earth-elementals", - "fields": { - "name": "Stone of Controlling Earth Elementals", - "desc": "If the stone is touching the ground, you can use an action to speak its command word and summon an earth elemental, as if you had cast the _conjure elemental_ spell. The stone can't be used this way again until the next dawn. The stone weighs 5 pounds.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "stone-of-good-luck-luckstone", - "fields": { - "name": "Stone of Good Luck (Luckstone)", - "desc": "While this polished agate is on your person, you gain a +1 bonus to ability checks and saving throws.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "studded-leather-armor", - "fields": { - "name": "Studded Leather Armor", - "desc": "Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.", - "document": "srd", - "size": "tiny", - "weight": "13.000", - "armor_class": 0, - "hit_points": 0, - "cost": "45.00", - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sun-blade", - "fields": { - "name": "Sun Blade", - "desc": "This item appears to be a longsword hilt. While grasping the hilt, you can use a bonus action to cause a blade of pure radiance to spring into existence, or make the blade disappear. While the blade exists, this magic longsword has the finesse property. If you are proficient with shortswords or longswords, you are proficient with the _sun blade_.\n\nYou gain a +2 bonus to attack and damage rolls made with this weapon, which deals radiant damage instead of slashing damage. When you hit an undead with it, that target takes an extra 1d8 radiant damage.\n\nThe sword's luminous blade emits bright light in a 15-foot radius and dim light for an additional 15 feet. The light is sunlight. While the blade persists, you can use an action to expand or reduce its radius of bright and dim light by 5 feet each, to a maximum of 30 feet each or a minimum of 10 feet each.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sword-of-life-stealing-greatsword", - "fields": { - "name": "Sword of Life Stealing (Greatsword)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sword-of-life-stealing-longsword", - "fields": { - "name": "Sword of Life Stealing (Longsword)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sword-of-life-stealing-rapier", - "fields": { - "name": "Sword of Life Stealing (Rapier)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sword-of-life-stealing-shortsword", - "fields": { - "name": "Sword of Life Stealing (Shortsword)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sword-of-sharpness-greatsword", - "fields": { - "name": "Sword of Sharpness (Greatsword)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sword-of-sharpness-longsword", - "fields": { - "name": "Sword of Sharpness (Longsword)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sword-of-sharpness-scimitar", - "fields": { - "name": "Sword of Sharpness (Scimitar)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sword-of-sharpness-shortsword", - "fields": { - "name": "Sword of Sharpness (Shortsword)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sword-of-wounding-greatsword", - "fields": { - "name": "Sword of Wounding (Greatsword)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sword-of-wounding-longsword", - "fields": { - "name": "Sword of Wounding (Longsword)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sword-of-wounding-rapier", - "fields": { - "name": "Sword of Wounding (Rapier)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "sword-of-wounding-shortsword", - "fields": { - "name": "Sword of Wounding (Shortsword)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "talisman-of-pure-good", - "fields": { - "name": "Talisman of Pure Good", - "desc": "This talisman is a mighty symbol of goodness. A creature that is neither good nor evil in alignment takes 6d6 radiant damage upon touching the talisman. An evil creature takes 8d6 radiant damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are a good cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 7 charges. If you are wearing or holding it, you can use an action to expend 1 charge from it and choose one creature you can see on the ground within 120 feet of you. If the target is of evil alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman disperses into motes of golden light and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "talisman-of-the-sphere", - "fields": { - "name": "Talisman of the Sphere", - "desc": "When you make an Intelligence (Arcana) check to control a _sphere of annihilation_ while you are holding this talisman, you double your proficiency bonus on the check. In addition, when you start your turn with control over a _sphere of annihilation_, you can use an action to levitate it 10 feet plus a number of additional feet equal to 10 × your Intelligence modifier.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "talisman-of-ultimate-evil", - "fields": { - "name": "Talisman of Ultimate Evil", - "desc": "This item symbolizes unrepentant evil. A creature that is neither good nor evil in alignment takes 6d6 necrotic damage upon touching the talisman. A good creature takes 8d6 necrotic damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are an evil cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 6 charges. If you are wearing or holding it, you can use an action to expend 1 charge from the talisman and choose one creature you can see on the ground within 120 feet of you. If the target is of good alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman dissolves into foul-smelling slime and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "tent", - "fields": { - "name": "Tent", - "desc": "A simple and portable canvas shelter, a tent sleeps two.", - "document": "srd", - "size": "tiny", - "weight": "20.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "thieves-tools", - "fields": { - "name": "Thieves' tools", - "desc": "This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-­‐‑bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "tinderbox", - "fields": { - "name": "Tinderbox", - "desc": "This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch—or anything else with abundant, exposed fuel—takes an action. Lighting any other fire takes 1 minute.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "tinkers-tools", - "fields": { - "name": "Tinker's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "tome-of-clear-thought", - "fields": { - "name": "Tome of Clear Thought", - "desc": "This book contains memory and logic exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Intelligence score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "tome-of-leadership-and-influence", - "fields": { - "name": "Tome of Leadership and Influence", - "desc": "This book contains guidelines for influencing and charming others, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Charisma score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "tome-of-understanding", - "fields": { - "name": "Tome of Understanding", - "desc": "This book contains intuition and insight exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Wisdom score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "torch", - "fields": { - "name": "Torch", - "desc": "A torch burns for 1 hour, providing bright light in a 20-­‐‑foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "torpor", - "fields": { - "name": "Torpor", - "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 4d6 hours. The poisoned creature is incapacitated.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "600.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "totem", - "fields": { - "name": "Totem", - "desc": "Can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "trident", - "fields": { - "name": "Trident", - "desc": "A trident.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "trident-1", - "fields": { - "name": "Trident (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "trident-2", - "fields": { - "name": "Trident (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "trident-3", - "fields": { - "name": "Trident (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "trident-of-fish-command", - "fields": { - "name": "Trident of Fish Command", - "desc": "This trident is a magic weapon. It has 3 charges. While you carry it, you can use an action and expend 1 charge to cast _dominate beast_ (save DC 15) from it on a beast that has an innate swimming speed. The trident regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "truth-serum", - "fields": { - "name": "Truth serum", - "desc": "A creature subjected to this poison must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. The poisoned creature can't knowingly speak a lie, as if under the effect of a zone of truth spell.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "150.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "universal-solvent", - "fields": { - "name": "Universal Solvent", - "desc": "This tube holds milky liquid with a strong alcohol smell. You can use an action to pour the contents of the tube onto a surface within reach. The liquid instantly dissolves up to 1 square foot of adhesive it touches, including _sovereign glue._", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "vial", - "fields": { - "name": "Vial", - "desc": "For holding liquids. Capacity: 4 ounces liquid.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-battleaxe", - "fields": { - "name": "Vicious Weapon (Battleaxe)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-blowgun", - "fields": { - "name": "Vicious Weapon (Blowgun)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-club", - "fields": { - "name": "Vicious Weapon (Club)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-crossbow-hand", - "fields": { - "name": "Vicious Weapon (Crossbow-Hand)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-crossbow-heavy", - "fields": { - "name": "Vicious Weapon (Crossbow-Heavy)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-crossbow-light", - "fields": { - "name": "Vicious Weapon (Crossbow-Light)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-dagger", - "fields": { - "name": "Vicious Weapon (Dagger)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-dart", - "fields": { - "name": "Vicious Weapon (Dart)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-flail", - "fields": { - "name": "Vicious Weapon (Flail)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-glaive", - "fields": { - "name": "Vicious Weapon (Glaive)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-greataxe", - "fields": { - "name": "Vicious Weapon (Greataxe)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-greatclub", - "fields": { - "name": "Vicious Weapon (Greatclub)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-greatsword", - "fields": { - "name": "Vicious Weapon (Greatsword)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-halberd", - "fields": { - "name": "Vicious Weapon (Halberd)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-handaxe", - "fields": { - "name": "Vicious Weapon (Handaxe)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-javelin", - "fields": { - "name": "Vicious Weapon (Javelin)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-lance", - "fields": { - "name": "Vicious Weapon (Lance)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-light-hammer", - "fields": { - "name": "Vicious Weapon (Light-Hammer)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-longbow", - "fields": { - "name": "Vicious Weapon (Longbow)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-longsword", - "fields": { - "name": "Vicious Weapon (Longsword)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-mace", - "fields": { - "name": "Vicious Weapon (Mace)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-maul", - "fields": { - "name": "Vicious Weapon (Maul)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-morningstar", - "fields": { - "name": "Vicious Weapon (Morningstar)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-net", - "fields": { - "name": "Vicious Weapon (Net)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-pike", - "fields": { - "name": "Vicious Weapon (Pike)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-quarterstaff", - "fields": { - "name": "Vicious Weapon (Quarterstaff)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-rapier", - "fields": { - "name": "Vicious Weapon (Rapier)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-scimitar", - "fields": { - "name": "Vicious Weapon (Scimitar)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-shortbow", - "fields": { - "name": "Vicious Weapon (Shortbow)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-shortsword", - "fields": { - "name": "Vicious Weapon (Shortsword)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-sickle", - "fields": { - "name": "Vicious Weapon (Sickle)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-sling", - "fields": { - "name": "Vicious Weapon (Sling)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-spear", - "fields": { - "name": "Vicious Weapon (Spear)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-trident", - "fields": { - "name": "Vicious Weapon (Trident)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-warhammer", - "fields": { - "name": "Vicious Weapon (Warhammer)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-warpick", - "fields": { - "name": "Vicious Weapon (War-Pick)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vicious-weapon-whip", - "fields": { - "name": "Vicious Weapon (Whip)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "viol", - "fields": { - "name": "Viol", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vorpal-sword-greatsword", - "fields": { - "name": "Vorpal Sword (Greatsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vorpal-sword-longsword", - "fields": { - "name": "Vorpal Sword (Longsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vorpal-sword-scimitar", - "fields": { - "name": "Vorpal Sword (Scimitar)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "vorpal-sword-shortsword", - "fields": { - "name": "Vorpal Sword (Shortsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "wagon", - "fields": { - "name": "Wagon", - "desc": "Drawn vehicle.", - "document": "srd", - "size": "large", - "weight": "400.000", - "armor_class": 0, - "hit_points": 0, - "cost": "35.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "wand", - "fields": { - "name": "Wand", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-binding", - "fields": { - "name": "Wand of Binding", - "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Spells_**. While holding the wand, you can use an action to expend some of its charges to cast one of the following spells (save DC 17): _hold monster_ (5 charges) or _hold person_ (2 charges).\n\n**_Assisted Escape_**. While holding the wand, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained, or you can expend 1 charge and gain advantage on any check you make to escape a grapple.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-enemy-detection", - "fields": { - "name": "Wand of Enemy Detection", - "desc": "This wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For the next minute, you know the direction of the nearest creature hostile to you within 60 feet, but not its distance from you. The wand can sense the presence of hostile creatures that are ethereal, invisible, disguised, or hidden, as well as those in plain sight. The effect ends if you stop holding the wand.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-fear", - "fields": { - "name": "Wand of Fear", - "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Command_**. While holding the wand, you can use an action to expend 1 charge and command another creature to flee or grovel, as with the _command_ spell (save DC 15).\n\n**_Cone of Fear_**. While holding the wand, you can use an action to expend 2 charges, causing the wand's tip to emit a 60-foot cone of amber light. Each creature in the cone must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-fireballs", - "fields": { - "name": "Wand of Fireballs", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _fireball_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-lightning-bolts", - "fields": { - "name": "Wand of Lightning Bolts", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _lightning bolt_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-magic-detection", - "fields": { - "name": "Wand of Magic Detection", - "desc": "This wand has 3 charges. While holding it, you can expend 1 charge as an action to cast the _detect magic_ spell from it. The wand regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-magic-missiles", - "fields": { - "name": "Wand of Magic Missiles", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _magic missile_ spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-paralysis", - "fields": { - "name": "Wand of Paralysis", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cause a thin blue ray to streak from the tip toward a creature you can see within 60 feet of you. The target must succeed on a DC 15 Constitution saving throw or be paralyzed for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a success.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-polymorph", - "fields": { - "name": "Wand of Polymorph", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _polymorph_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-secrets", - "fields": { - "name": "Wand of Secrets", - "desc": "The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges, and if a secret door or trap is within 30 feet of you, the wand pulses and points at the one nearest to you. The wand regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-the-war-mage-1", - "fields": { - "name": "Wand of the War Mage (+1)", - "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-the-war-mage-2", - "fields": { - "name": "Wand of the War Mage (+2)", - "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-the-war-mage-3", - "fields": { - "name": "Wand of the War Mage (+3)", - "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-web", - "fields": { - "name": "Wand of Web", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _web_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "wand-of-wonder", - "fields": { - "name": "Wand of Wonder", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and choose a target within 120 feet of you. The target can be a creature, an object, or a point in space. Roll d100 and consult the following table to discover what happens.\n\nIf the effect causes you to cast a spell from the wand, the spell's save DC is 15. If the spell normally has a range expressed in feet, its range becomes 120 feet if it isn't already.\n\nIf an effect covers an area, you must center the spell on and include the target. If an effect has multiple possible subjects, the GM randomly determines which ones are affected.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into dust and is destroyed.\n\n| d100 | Effect |\n|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| 01-05 | You cast slow. 06-10 You cast faerie fire. |\n| 11-15 | You are stunned until the start of your next turn, believing something awesome just happened. 16-20 You cast gust of wind. |\n| 21-25 | You cast detect thoughts on the target you chose. If you didn't target a creature, you instead take 1d6 psychic damage. |\n| 26-30 | You cast stinking cloud. |\n| 31-33 | Heavy rain falls in a 60-foot radius centered on the target. The area becomes lightly obscured. The rain falls until the start of your next turn. |\n| 34-36 | An animal appears in the unoccupied space nearest the target. The animal isn't under your control and acts as it normally would. Roll a d100 to determine which animal appears. On a 01-25, a rhinoceros appears; on a 26-50, an elephant appears; and on a 51-100, a rat appears. |\n| 37-46 | You cast lightning bolt. |\n| 47-49 | A cloud of 600 oversized butterflies fills a 30-foot radius centered on the target. The area becomes heavily obscured. The butterflies remain for 10 minutes. |\n| 50-53 | You enlarge the target as if you had cast enlarge/reduce. If the target can't be affected by that spell, or if you didn't target a creature, you become the target. |\n| 54-58 | You cast darkness. |\n| 59-62 | Grass grows on the ground in a 60-foot radius centered on the target. If grass is already there, it grows to ten times its normal size and remains overgrown for 1 minute. |\n| 63-65 | An object of the GM's choice disappears into the Ethereal Plane. The object must be neither worn nor carried, within 120 feet of the target, and no larger than 10 feet in any dimension. |\n| 66-69 | You shrink yourself as if you had cast enlarge/reduce on yourself. |\n| 70-79 | You cast fireball. |\n| 80-84 | You cast invisibility on yourself. |\n| 85-87 | Leaves grow from the target. If you chose a point in space as the target, leaves sprout from the creature nearest to that point. Unless they are picked off, the leaves turn brown and fall off after 24 hours. |\n| 88-90 | A stream of 1d4 × 10 gems, each worth 1 gp, shoots from the wand's tip in a line 30 feet long and 5 feet wide. Each gem deals 1 bludgeoning damage, and the total damage of the gems is divided equally among all creatures in the line. |\n| 91-95 | A burst of colorful shimmering light extends from you in a 30-foot radius. You and each creature in the area that can see must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. |\n| 96-97 | The target's skin turns bright blue for 1d10 days. If you chose a point in space, the creature nearest to that point is affected. |\n| 98-100 | If you targeted a creature, it must make a DC 15 Constitution saving throw. If you didn't target a creature, you become the target and must make the saving throw. If the saving throw fails by 5 or more, the target is instantly petrified. On any other failed save, the target is restrained and begins to turn to stone. While restrained in this way, the target must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the target is freed by the greater restoration spell or similar magic. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "war-pick", - "fields": { - "name": "War pick", - "desc": "A war pick.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "warhammer", - "fields": { - "name": "Warhammer", - "desc": "A warhammer.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "warhammer-1", - "fields": { - "name": "Warhammer (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "warhammer-2", - "fields": { - "name": "Warhammer (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "warhammer-3", - "fields": { - "name": "Warhammer (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "warpick", - "fields": { - "name": "War pick", - "desc": "A war pick.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "warpick-1", - "fields": { - "name": "War-Pick (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "warpick-2", - "fields": { - "name": "War-Pick (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "warpick-3", - "fields": { - "name": "War-Pick (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "warship", - "fields": { - "name": "Warship", - "desc": "Waterborne vehicle. Speed 2.5mph", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "waterskin", - "fields": { - "name": "Waterskin", - "desc": "For drinking. 5lb is the full weight. Capacity: 4 pints liquid.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "weavers-tools", - "fields": { - "name": "Weaver's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "well-of-many-worlds", - "fields": { - "name": "Well of Many Worlds", - "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold and place the _well of many worlds_ on a solid surface, whereupon it creates a two-way portal to another world or plane of existence. Each time the item opens a portal, the GM decides where it leads. You can use an action to close an open portal by taking hold of the edges of the cloth and folding it up. Once _well of many worlds_ has opened a portal, it can't do so again for 1d8 hours.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "whetstone", - "fields": { - "name": "Whetstone", - "desc": "For sharpening.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "whip", - "fields": { - "name": "Whip", - "desc": "A whip.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "whip-1", - "fields": { - "name": "Whip (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "whip-2", - "fields": { - "name": "Whip (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "whip-3", - "fields": { - "name": "Whip (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "wind-fan", - "fields": { - "name": "Wind Fan", - "desc": "While holding this fan, you can use an action to cast the _gust of wind_ spell (save DC 13) from it. Once used, the fan shouldn't be used again until the next dawn. Each time it is used again before then, it has a cumulative 20 percent chance of not working and tearing into useless, nonmagical tatters.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "winged-boots", - "fields": { - "name": "Winged Boots", - "desc": "While you wear these boots, you have a flying speed equal to your walking speed. You can use the boots to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land.\r\n\r\nThe boots regain 2 hours of flying capability for every 12 hours they aren't in use.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "wings-of-flying", - "fields": { - "name": "Wings of Flying", - "desc": "While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of bat wings or bird wings on your back for 1 hour or until you repeat the command word as an action. The wings give you a flying speed of 60 feet. When they disappear, you can't use them again for 1d12 hours.\r\n\r\n\r\n\r\n\r\n## Sentient Magic Items\r\n\r\nSome magic items possess sentience and personality. Such an item might be possessed, haunted by the spirit of a previous owner, or self-aware thanks to the magic used to create it. In any case, the item behaves like a character, complete with personality quirks, ideals, bonds, and sometimes flaws. A sentient item might be a cherished ally to its wielder or a continual thorn in the side.\r\n\r\nMost sentient items are weapons. Other kinds of items can manifest sentience, but consumable items such as potions and scrolls are never sentient.\r\n\r\nSentient magic items function as NPCs under the GM's control. Any activated property of the item is under the item's control, not its wielder's. As long as the wielder maintains a good relationship with the item, the wielder can access those properties normally. If the relationship is strained, the item can suppress its activated properties or even turn them against the wielder.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "woodcarvers-tools", - "fields": { - "name": "Woodcarver's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "wooden-staff", - "fields": { - "name": "Wooden staff", - "desc": "Can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "quarterstaff", - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "wyvern-poison", - "fields": { - "name": "Wyvern poison", - "desc": "This poison must be harvested from a dead or incapacitated wyvern. A creature subjected to this poison must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "yew-wand", - "fields": { - "name": "Yew wand", - "desc": "Can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": null - } -} -] + { + "model": "api_v2.item", + "pk": "srd_cinnamon", + "fields": { + "name": "Cinnamon", + "desc": "1lb of cinnamon", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloves", + "fields": { + "name": "Cloves", + "desc": "1lb of cloves.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "3.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_copper", + "fields": { + "name": "Copper", + "desc": "1lb of copper.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flour", + "fields": { + "name": "Flour", + "desc": "1lb of flour", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_ginger", + "fields": { + "name": "Ginger", + "desc": "1lb of Ginger.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_gold", + "fields": { + "name": "Gold", + "desc": "1lb of gold.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_iron", + "fields": { + "name": "Iron", + "desc": "1lb of iron.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pepper", + "fields": { + "name": "Pepper", + "desc": "1lb of pepper.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_platinum", + "fields": { + "name": "Platinum", + "desc": "1 lb. of platinum.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "500.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_saffron", + "fields": { + "name": "Saffron", + "desc": "1lb of saffron.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_salt", + "fields": { + "name": "Salt", + "desc": "1lb of salt.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_silver", + "fields": { + "name": "Silver", + "desc": "1lb of silver", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_wheat", + "fields": { + "name": "Wheat", + "desc": "1 pound of wheat.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_canvas", + "fields": { + "name": "Canvas", + "desc": "1 sq. yd. of canvas", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cotton-cloth", + "fields": { + "name": "Cotton Cloth", + "desc": "1 sq. yd. of cotton cloth.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_linen", + "fields": { + "name": "Linen", + "desc": "1 sq. yd. of linen.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_silk", + "fields": { + "name": "Silk", + "desc": "1 sq. yd. of silk.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_abacus", + "fields": { + "name": "Abacus", + "desc": "An abacus.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_acid", + "fields": { + "name": "Acid", + "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_acid-vial", + "fields": { + "name": "Acid (vial)", + "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-breastplate", + "fields": { + "name": "Adamantine Armor (Breastplate)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-chain-mail", + "fields": { + "name": "Adamantine Armor (Chain-Mail)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-chain-shirt", + "fields": { + "name": "Adamantine Armor (Chain-Shirt)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-half-plate", + "fields": { + "name": "Adamantine Armor (Half-Plate)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-hide", + "fields": { + "name": "Adamantine Armor (Hide)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-plate", + "fields": { + "name": "Adamantine Armor (Plate)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-ring-mail", + "fields": { + "name": "Adamantine Armor (Ring-Mail)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-scale-mail", + "fields": { + "name": "Adamantine Armor (Scale-Mail)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-splint", + "fields": { + "name": "Adamantine Armor (Splint)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_alchemists-fire-flask", + "fields": { + "name": "Alchemist's Fire (Flask)", + "desc": "This sticky, adhesive fluid ignites when exposed to air. As an action, you can throw this flask up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the alchemist's fire as an improvised weapon. On a hit, the target takes 1d4 fire damage at the start of each of its turns. A creature can end this damage by using its action to make a DC 10 Dexterity check to extinguish the flames.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_alchemists-supplies", + "fields": { + "name": "Alchemist's Supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_amulet", + "fields": { + "name": "Amulet", + "desc": "Can be used as a holy symbol.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_amulet-of-health", + "fields": { + "name": "Amulet of Health", + "desc": "Your Constitution score is 19 while you wear this amulet. It has no effect on you if your Constitution is already 19 or higher.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_amulet-of-proof-against-detection-and-location", + "fields": { + "name": "Amulet of Proof against Detection and Location", + "desc": "While wearing this amulet, you are hidden from divination magic. You can't be targeted by such magic or perceived through magical scrying sensors.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_amulet-of-the-planes", + "fields": { + "name": "Amulet of the Planes", + "desc": "While wearing this amulet, you can use an action to name a location that you are familiar with on another plane of existence. Then make a DC 15 Intelligence check. On a successful check, you cast the _plane shift_ spell. On a failure, you and each creature and object within 15 feet of you travel to a random destination. Roll a d100. On a 1-60, you travel to a random location on the plane you named. On a 61-100, you travel to a randomly determined plane of existence.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_animated-shield", + "fields": { + "name": "Animated Shield", + "desc": "While holding this shield, you can speak its command word as a bonus action to cause it to animate. The shield leaps into the air and hovers in your space to protect you as if you were wielding it, leaving your hands free. The shield remains animated for 1 minute, until you use a bonus action to end this effect, or until you are incapacitated or die, at which point the shield falls to the ground or into your hand if you have one free.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_antitoxin-vial", + "fields": { + "name": "Antitoxin (Vial)", + "desc": "A creature that drinks this vial of liquid gains advantage on saving throws against poison for 1 hour. It confers no benefit to undead or constructs.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_apparatus-of-the-crab", + "fields": { + "name": "Apparatus of the Crab", + "desc": "This item first appears to be a Large sealed iron barrel weighing 500 pounds. The barrel has a hidden catch, which can be found with a successful DC 20 Intelligence (Investigation) check. Releasing the catch unlocks a hatch at one end of the barrel, allowing two Medium or smaller creatures to crawl inside. Ten levers are set in a row at the far end, each in a neutral position, able to move either up or down. When certain levers are used, the apparatus transforms to resemble a giant lobster.\r\n\r\nThe apparatus of the Crab is a Large object with the following statistics:\r\n\r\n**Armor Class:** 20\r\n\r\n**Hit Points:** 200\r\n\r\n**Speed:** 30 ft., swim 30 ft. (or 0 ft. for both if the legs and tail aren't extended)\r\n\r\n**Damage Immunities:** poison, psychic\r\n\r\nTo be used as a vehicle, the apparatus requires one pilot. While the apparatus's hatch is closed, the compartment is airtight and watertight. The compartment holds enough air for 10 hours of breathing, divided by the number of breathing creatures inside.\r\n\r\nThe apparatus floats on water. It can also go underwater to a depth of 900 feet. Below that, the vehicle takes 2d6 bludgeoning damage per minute from pressure.\r\n\r\nA creature in the compartment can use an action to move as many as two of the apparatus's levers up or down. After each use, a lever goes back to its neutral position. Each lever, from left to right, functions as shown in the Apparatus of the Crab Levers table.\r\n\r\n**Apparatus of the Crab Levers (table)**\r\n\r\n| Lever | Up | Down |\r\n|-------|----------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 1 | Legs and tail extend, allowing the apparatus to walk and swim. | Legs and tail retract, reducing the apparatus's speed to 0 and making it unable to benefit from bonuses to speed. |\r\n| 2 | Forward window shutter opens. | Forward window shutter closes. |\r\n| 3 | Side window shutters open (two per side). | Side window shutters close (two per side). |\r\n| 4 | Two claws extend from the front sides of the apparatus. | The claws retract. |\r\n| 5 | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: 7 (2d6) bludgeoning damage. | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: The target is grappled (escape DC 15). |\r\n| 6 | The apparatus walks or swims forward. | The apparatus walks or swims backward. |\r\n| 7 | The apparatus turns 90 degrees left. | The apparatus turns 90 degrees right. |\r\n| 8 | Eyelike fixtures emit bright light in a 30-foot radius and dim light for an additional 30 feet. | The light turns off. |\r\n| 9 | The apparatus sinks as much as 20 feet in liquid. | The apparatus rises up to 20 feet in liquid. |\r\n| 10 | The rear hatch unseals and opens. | The rear hatch closes and seals. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_armor-of-invulnerability", + "fields": { + "name": "Armor of Invulnerability", + "desc": "You have resistance to nonmagical damage while you wear this armor. Additionally, you can use an action to make yourself immune to nonmagical damage for 10 minutes or until you are no longer wearing the armor. Once this special action is used, it can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_armor-of-resistance-leather", + "fields": { + "name": "Armor of Resistance (Leather)", + "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_armor-of-resistance-padded", + "fields": { + "name": "Armor of Resistance (Padded)", + "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_armor-of-resistance-studded-leather", + "fields": { + "name": "Armor of Resistance (Studded-Leather)", + "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_armor-of-vulnerability", + "fields": { + "name": "Armor of Vulnerability", + "desc": "While wearing this armor, you have resistance to one of the following damage types: bludgeoning, piercing, or slashing. The GM chooses the type or determines it randomly.\n\n**_Curse_**. This armor is cursed, a fact that is revealed only when an _identify_ spell is cast on the armor or you attune to it. Attuning to the armor curses you until you are targeted by the _remove curse_ spell or similar magic; removing the armor fails to end the curse. While cursed, you have vulnerability to two of the three damage types associated with the armor (not the one to which it grants resistance).", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_arrow-bow", + "fields": { + "name": "Arrow (bow)", + "desc": "An arrow for a bow.", + "document": "srd", + "size": "tiny", + "weight": "0.050", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_arrow-catching-shield", + "fields": { + "name": "Arrow-Catching Shield", + "desc": "You gain a +2 bonus to AC against ranged attacks while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. In addition, whenever an attacker makes a ranged attack against a target within 5 feet of you, you can use your reaction to become the target of the attack instead.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_arrow-of-slaying", + "fields": { + "name": "Arrow of Slaying", + "desc": "An _arrow of slaying_ is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both _arrows of dragon slaying_ and _arrows of blue dragon slaying_. If a creature belonging to the type, race, or group associated with an _arrow of slaying_ takes damage from the arrow, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.\\n\\nOnce an _arrow of slaying_ deals its extra damage to a creature, it becomes a nonmagical arrow.\\n\\nOther types of magic ammunition of this kind exist, such as _bolts of slaying_ meant for a crossbow, though arrows are most common.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_assassins-blood", + "fields": { + "name": "Assassin's Blood", + "desc": "A creature subjected to this poison must make a DC 10 Constitution saving throw. On a failed save, it takes 6 (1d12) poison damage and is poisoned for 24 hours. On a successful save, the creature takes half damage and isn't poisoned.\\n\\n\r\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "150.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_backpack", + "fields": { + "name": "Backpack", + "desc": "A backpack. Capacity: 1 cubic foot/30 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_bag-of-beans", + "fields": { + "name": "Bag of Beans", + "desc": "Inside this heavy cloth bag are 3d4 dry beans. The bag weighs 1/2 pound plus 1/4 pound for each bean it contains.\r\n\r\nIf you dump the bag's contents out on the ground, they explode in a 10-foot radius, extending from the beans. Each creature in the area, including you, must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.\r\n\r\nIf you remove a bean from the bag, plant it in dirt or sand, and then water it, the bean produces an effect 1 minute later from the ground where it was planted. The GM can choose an effect from the following table, determine it randomly, or create an effect.\r\n\r\n| d100 | Effect |\r\n|-------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01 | 5d4 toadstools sprout. If a creature eats a toadstool, roll any die. On an odd roll, the eater must succeed on a DC 15 Constitution saving throw or take 5d6 poison damage and become poisoned for 1 hour. On an even roll, the eater gains 5d6 temporary hit points for 1 hour. |\r\n| 02-10 | A geyser erupts and spouts water, beer, berry juice, tea, vinegar, wine, or oil (GM's choice) 30 feet into the air for 1d12 rounds. |\r\n| 11-20 | A treant sprouts. There's a 50 percent chance that the treant is chaotic evil and attacks. |\r\n| 21-30 | An animate, immobile stone statue in your likeness rises. It makes verbal threats against you. If you leave it and others come near, it describes you as the most heinous of villains and directs the newcomers to find and attack you. If you are on the same plane of existence as the statue, it knows where you are. The statue becomes inanimate after 24 hours. |\r\n| 31-40 | A campfire with blue flames springs forth and burns for 24 hours (or until it is extinguished). |\r\n| 41-50 | 1d6 + 6 shriekers sprout |\r\n| 51-60 | 1d4 + 8 bright pink toads crawl forth. Whenever a toad is touched, it transforms into a Large or smaller monster of the GM's choice. The monster remains for 1 minute, then disappears in a puff of bright pink smoke. |\r\n| 61-70 | A hungry bulette burrows up and attacks. 71-80 A fruit tree grows. It has 1d10 + 20 fruit, 1d8 of which act as randomly determined magic potions, while one acts as an ingested poison of the GM's choice. The tree vanishes after 1 hour. Picked fruit remains, retaining any magic for 30 days. |\r\n| 81-90 | A nest of 1d4 + 3 eggs springs up. Any creature that eats an egg must make a DC 20 Constitution saving throw. On a successful save, a creature permanently increases its lowest ability score by 1, randomly choosing among equally low scores. On a failed save, the creature takes 10d6 force damage from an internal magical explosion. |\r\n| 91-99 | A pyramid with a 60-foot-square base bursts upward. Inside is a sarcophagus containing a mummy lord. The pyramid is treated as the mummy lord's lair, and its sarcophagus contains treasure of the GM's choice. |\r\n| 100 | A giant beanstalk sprouts, growing to a height of the GM's choice. The top leads where the GM chooses, such as to a great view, a cloud giant's castle, or a different plane of existence. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bag-of-devouring", + "fields": { + "name": "Bag of Devouring", + "desc": "This bag superficially resembles a _bag of holding_ but is a feeding orifice for a gigantic extradimensional creature. Turning the bag inside out closes the orifice.\r\n\r\nThe extradimensional creature attached to the bag can sense whatever is placed inside the bag. Animal or vegetable matter placed wholly in the bag is devoured and lost forever. When part of a living creature is placed in the bag, as happens when someone reaches inside it, there is a 50 percent chance that the creature is pulled inside the bag. A creature inside the bag can use its action to try to escape with a successful DC 15 Strength check. Another creature can use its action to reach into the bag to pull a creature out, doing so with a successful DC 20 Strength check (provided it isn't pulled inside the bag first). Any creature that starts its turn inside the bag is devoured, its body destroyed.\r\n\r\nInanimate objects can be stored in the bag, which can hold a cubic foot of such material. However, once each day, the bag swallows any objects inside it and spits them out into another plane of existence. The GM determines the time and plane.\r\n\r\nIf the bag is pierced or torn, it is destroyed, and anything contained within it is transported to a random location on the Astral Plane.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bag-of-holding", + "fields": { + "name": "Bag of Holding", + "desc": "This bag has an interior space considerably larger than its outside dimensions, roughly 2 feet in diameter at the mouth and 4 feet deep. The bag can hold up to 500 pounds, not exceeding a volume of 64 cubic feet. The bag weighs 15 pounds, regardless of its contents. Retrieving an item from the bag requires an action.\r\n\r\nIf the bag is overloaded, pierced, or torn, it ruptures and is destroyed, and its contents are scattered in the Astral Plane. If the bag is turned inside out, its contents spill forth, unharmed, but the bag must be put right before it can be used again. Breathing creatures inside the bag can survive up to a number of minutes equal to 10 divided by the number of creatures (minimum 1 minute), after which time they begin to suffocate.\r\n\r\nPlacing a _bag of holding_ inside an extradimensional space created by a _handy haversack_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it to a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bag-of-tricks", + "fields": { + "name": "Bag of Tricks", + "desc": "This ordinary bag, made from gray, rust, or tan cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\r\n\r\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a d8 and consulting the table that corresponds to the bag's color.\r\n\r\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\r\n\r\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.\r\n\r\n**Gray Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Weasel |\r\n| 2 | Giant rat |\r\n| 3 | Badger |\r\n| 4 | Boar |\r\n| 5 | Panther |\r\n| 6 | Giant badger |\r\n| 7 | Dire wolf |\r\n| 8 | Giant elk |\r\n\r\n**Rust Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|------------|\r\n| 1 | Rat |\r\n| 2 | Owl |\r\n| 3 | Mastiff |\r\n| 4 | Goat |\r\n| 5 | Giant goat |\r\n| 6 | Giant boar |\r\n| 7 | Lion |\r\n| 8 | Brown bear |\r\n\r\n**Tan Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Jackal |\r\n| 2 | Ape |\r\n| 3 | Baboon |\r\n| 4 | Axe beak |\r\n| 5 | Black bear |\r\n| 6 | Giant weasel |\r\n| 7 | Giant hyena |\r\n| 8 | Tiger |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bagpipes", + "fields": { + "name": "Bagpipes", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_ball-bearings-bag-of-1000", + "fields": { + "name": "Ball Bearings (bag of 1000)", + "desc": "As an action, you can spill these tiny metal balls from their pouch to cover a level, square area that is 10 feet on a side. A creature moving across the covered area must succeed on a DC 10 Dexterity saving throw or fall prone. A creature moving through the area at half speed doesn't need to make the save.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_barrel", + "fields": { + "name": "Barrel", + "desc": "A barrel. Capacity: 40 gallons liquid, 4 cubic feet solid.", + "document": "srd", + "size": "medium", + "weight": "70.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_basket", + "fields": { + "name": "Basket", + "desc": "A basket. Capacity: 2 cubic feet/40 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.40", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_battleaxe", + "fields": { + "name": "Battleaxe", + "desc": "A battleaxe.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_battleaxe-1", + "fields": { + "name": "Battleaxe (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_battleaxe-2", + "fields": { + "name": "Battleaxe (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_battleaxe-3", + "fields": { + "name": "Battleaxe (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bead-of-force", + "fields": { + "name": "Bead of Force", + "desc": "This small black sphere measures 3/4 of an inch in diameter and weighs an ounce. Typically, 1d4 + 4 _beads of force_ are found together.\r\n\r\nYou can use an action to throw the bead up to 60 feet. The bead explodes on impact and is destroyed. Each creature within a 10-foot radius of where the bead landed must succeed on a DC 15 Dexterity saving throw or take 5d4 force damage. A sphere of transparent force then encloses the area for 1 minute. Any creature that failed the save and is completely within the area is trapped inside this sphere. Creatures that succeeded on the save, or are partially within the area, are pushed away from the center of the sphere until they are no longer inside it. Only breathable air can pass through the sphere's wall. No attack or other effect can.\r\n\r\nAn enclosed creature can use its action to push against the sphere's wall, moving the sphere up to half the creature's walking speed. The sphere can be picked up, and its magic causes it to weigh only 1 pound, regardless of the weight of creatures inside.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bedroll", + "fields": { + "name": "Bedroll", + "desc": "A bedroll.", + "document": "srd", + "size": "tiny", + "weight": "7.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_bell", + "fields": { + "name": "Bell", + "desc": "A bell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-cloud-giant-strength", + "fields": { + "name": "Belt of Cloud Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-dwarvenkind", + "fields": { + "name": "Belt of Dwarvenkind", + "desc": "While wearing this belt, you gain the following benefits:\r\n\r\n* Your Constitution score increases by 2, to a maximum of 20.\r\n* You have advantage on Charisma (Persuasion) checks made to interact with dwarves.\r\n\r\nIn addition, while attuned to the belt, you have a 50 percent chance each day at dawn of growing a full beard if you're capable of growing one, or a visibly thicker beard if you already have one.\r\n\r\nIf you aren't a dwarf, you gain the following additional benefits while wearing the belt:\r\n\r\n* You have advantage on saving throws against poison, and you have resistance against poison damage.\r\n* You have darkvision out to a range of 60 feet.\r\n* You can speak, read, and write Dwarvish.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-fire-giant-strength", + "fields": { + "name": "Belt of Fire Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-frost-giant-strength", + "fields": { + "name": "Belt of Frost Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-hill-giant-strength", + "fields": { + "name": "Belt of Hill Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-stone-giant-strength", + "fields": { + "name": "Belt of Stone Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-storm-giant-strength", + "fields": { + "name": "Belt of Storm Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_blanket", + "fields": { + "name": "Blanket", + "desc": "A blanket.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_block-and-tackle", + "fields": { + "name": "Block and Tackle", + "desc": "A set of pulleys with a cable threaded through them and a hook to attach to objects, a block and tackle allows you to hoist up to four times the weight you can normally lift.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_blowgun", + "fields": { + "name": "Blowgun", + "desc": "A blowgun.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_blowgun-1", + "fields": { + "name": "Blowgun (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_blowgun-2", + "fields": { + "name": "Blowgun (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_blowgun-3", + "fields": { + "name": "Blowgun (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_blowgun-needles", + "fields": { + "name": "Blowgun needles", + "desc": "Needles to be fired with a blowgun.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_book", + "fields": { + "name": "Book", + "desc": "A book might contain poetry, historical accounts, information pertaining to a particular field of lore, diagrams and notes on gnomish contraptions, or just about anything else that can be represented using text or pictures. A book of spells is a spellbook (described later in this section).", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_boots-of-elvenkind", + "fields": { + "name": "Boots of Elvenkind", + "desc": "While you wear these boots, your steps make no sound, regardless of the surface you are moving across. You also have advantage on Dexterity (Stealth) checks that rely on moving silently.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_boots-of-levitation", + "fields": { + "name": "Boots of Levitation", + "desc": "While you wear these boots, you can use an action to cast the _levitate_ spell on yourself at will.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_boots-of-speed", + "fields": { + "name": "Boots of Speed", + "desc": "While you wear these boots, you can use a bonus action and click the boots' heels together. If you do, the boots double your walking speed, and any creature that makes an opportunity attack against you has disadvantage on the attack roll. If you click your heels together again, you end the effect.\r\n\r\nWhen the boots' property has been used for a total of 10 minutes, the magic ceases to function until you finish a long rest.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_boots-of-striding-and-springing", + "fields": { + "name": "Boots of Striding and Springing", + "desc": "While you wear these boots, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced if you are encumbered or wearing heavy armor. In addition, you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_boots-of-the-winterlands", + "fields": { + "name": "Boots of the Winterlands", + "desc": "These furred boots are snug and feel quite warm. While you wear them, you gain the following benefits:\r\n\r\n* You have resistance to cold damage.\r\n* You ignore difficult terrain created by ice or snow.\r\n* You can tolerate temperatures as low as -50 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as -100 degrees Fahrenheit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bottle-glass", + "fields": { + "name": "Bottle, glass", + "desc": "A glass bottle. Capacity: 1.5 pints liquid.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_bowl-of-commanding-water-elementals", + "fields": { + "name": "Bowl of Commanding Water Elementals", + "desc": "While this bowl is filled with water, you can use an action to speak the bowl's command word and summon a water elemental, as if you had cast the _conjure elemental_ spell. The bowl can't be used this way again until the next dawn.\r\n\r\nThe bowl is about 1 foot in diameter and half as deep. It weighs 3 pounds and holds about 3 gallons.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bracers-of-archery", + "fields": { + "name": "Bracers of Archery", + "desc": "While wearing these bracers, you have proficiency with the longbow and shortbow, and you gain a +2 bonus to damage rolls on ranged attacks made with such weapons.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bracers-of-defense", + "fields": { + "name": "Bracers of Defense", + "desc": "While wearing these bracers, you gain a +2 bonus to AC if you are wearing no armor and using no shield.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_brazier-of-commanding-fire-elementals", + "fields": { + "name": "Brazier of Commanding Fire Elementals", + "desc": "While a fire burns in this brass brazier, you can use an action to speak the brazier's command word and summon a fire elemental, as if you had cast the _conjure elemental_ spell. The brazier can't be used this way again until the next dawn.\r\n\r\nThe brazier weighs 5 pounds.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_breastplate", + "fields": { + "name": "Breastplate", + "desc": "This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.", + "document": "srd", + "size": "tiny", + "weight": "20.000", + "armor_class": 0, + "hit_points": 0, + "cost": "400.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_brewers-supplies", + "fields": { + "name": "Brewer's Supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "9.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_brooch-of-shielding", + "fields": { + "name": "Brooch of Shielding", + "desc": "While wearing this brooch, you have resistance to force damage, and you have immunity to damage from the _magic missile_ spell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_broom-of-flying", + "fields": { + "name": "Broom of Flying", + "desc": "This wooden broom, which weighs 3 pounds, functions like a mundane broom until you stand astride it and speak its command word. It then hovers beneath you and can be ridden in the air. It has a flying speed of 50 feet. It can carry up to 400 pounds, but its flying speed becomes 30 feet while carrying over 200 pounds. The broom stops hovering when you land.\r\n\r\nYou can send the broom to travel alone to a destination within 1 mile of you if you speak the command word, name the location, and are familiar with that place. The broom comes back to you when you speak another command word, provided that the broom is still within 1 mile of you.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bucket", + "fields": { + "name": "Bucket", + "desc": "A bucket. Capacity: 3 gallons liquid, 1/2 cubic foot solid.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_burnt-othur-fumes", + "fields": { + "name": "Burnt othur fumes", + "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or take 10 (3d6) poison damage, and must repeat the saving throw at the start of each of its turns. On each successive failed save, the character takes 3 (1d6) poison damage. After three successful saves, the poison ends.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "500.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_calligraphers-supplies", + "fields": { + "name": "Calligrapher's supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_caltrops-bag-of-20", + "fields": { + "name": "Caltrops (bag of 20)", + "desc": "As an action, you can spread a bag of caltrops to cover a square area that is 5 feet on a side. Any creature that enters the area must succeed on a DC 15 Dexterity saving throw or stop moving this turn and take 1 piercing damage. Taking this damage reduces the creature's walking speed by 10 feet until the creature regains at least 1 hit point. A creature moving through the area at half speed doesn't need to make the save.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_candle", + "fields": { + "name": "Candle", + "desc": "For 1 hour, a candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_candle-of-invocation", + "fields": { + "name": "Candle of Invocation", + "desc": "This slender taper is dedicated to a deity and shares that deity's alignment. The candle's alignment can be detected with the _detect evil and good_ spell. The GM chooses the god and associated alignment or determines the alignment randomly.\r\n\r\n| d20 | Alignment |\r\n|-------|-----------------|\r\n| 1-2 | Chaotic evil |\r\n| 3-4 | Chaotic neutral |\r\n| 5-7 | Chaotic good |\r\n| 8-9 | Neutral evil |\r\n| 10-11 | Neutral |\r\n| 12-13 | Neutral good |\r\n| 14-15 | Lawful evil |\r\n| 16-17 | Lawful neutral |\r\n| 18-20 | Lawful good |\r\n\r\nThe candle's magic is activated when the candle is lit, which requires an action. After burning for 4 hours, the candle is destroyed. You can snuff it out early for use at a later time. Deduct the time it burned in increments of 1 minute from the candle's total burn time.\r\n\r\nWhile lit, the candle sheds dim light in a 30-foot radius. Any creature within that light whose alignment matches that of the candle makes attack rolls, saving throws, and ability checks with advantage. In addition, a cleric or druid in the light whose alignment matches the candle's can cast 1st* level spells he or she has prepared without expending spell slots, though the spell's effect is as if cast with a 1st-level slot.\r\n\r\nAlternatively, when you light the candle for the first time, you can cast the _gate_ spell with it. Doing so destroys the candle.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cape-of-the-mountebank", + "fields": { + "name": "Cape of the Mountebank", + "desc": "This cape smells faintly of brimstone. While wearing it, you can use it to cast the _dimension door_ spell as an action. This property of the cape can't be used again until the next dawn.\r\n\r\nWhen you disappear, you leave behind a cloud of smoke, and you appear in a similar cloud of smoke at your destination. The smoke lightly obscures the space you left and the space you appear in, and it dissipates at the end of your next turn. A light or stronger wind disperses the smoke.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_carpenters-tools", + "fields": { + "name": "Carpenter's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "8.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_carpet-of-flying", + "fields": { + "name": "Carpet of Flying", + "desc": "You can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.\r\n\r\nFour sizes of _carpet of flying_ exist. The GM chooses the size of a given carpet or determines it randomly.\r\n\r\n| d100 | Size | Capacity | Flying Speed |\r\n|--------|---------------|----------|--------------|\r\n| 01-20 | 3 ft. × 5 ft. | 200 lb. | 80 feet |\r\n| 21-55 | 4 ft. × 6 ft. | 400 lb. | 60 feet |\r\n| 56-80 | 5 ft. × 7 ft. | 600 lb. | 40 feet |\r\n| 81-100 | 6 ft. × 9 ft. | 800 lb. | 30 feet |\r\n\r\nA carpet can carry up to twice the weight shown on the table, but it flies at half speed if it carries more than its normal capacity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_carriage", + "fields": { + "name": "Carriage", + "desc": "Drawn vehicle.", + "document": "srd", + "size": "huge", + "weight": "600.000", + "armor_class": 0, + "hit_points": 0, + "cost": "100.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cart", + "fields": { + "name": "Cart", + "desc": "Drawn vehicle", + "document": "srd", + "size": "large", + "weight": "200.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cartographers-tools", + "fields": { + "name": "Cartographer's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_case-crossbow-bolt", + "fields": { + "name": "Case, Crossbow Bolt", + "desc": "This wooden case can hold up to twenty crossbow bolts.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_case-map-or-scroll", + "fields": { + "name": "Case, Map or Scroll", + "desc": "This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_censer-of-controlling-air-elementals", + "fields": { + "name": "Censer of Controlling Air Elementals", + "desc": "While incense is burning in this censer, you can use an action to speak the censer's command word and summon an air elemental, as if you had cast the _conjure elemental_ spell. The censer can't be used this way again until the next dawn.\r\n\r\nThis 6-inch-wide, 1-foot-high vessel resembles a chalice with a decorated lid. It weighs 1 pound.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_chain-10-feet", + "fields": { + "name": "Chain (10 feet)", + "desc": "A chain has 10 hit points. It can be burst with a successful DC 20 Strength check.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chain-mail", + "fields": { + "name": "Chain mail", + "desc": "Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.", + "document": "srd", + "size": "tiny", + "weight": "55.000", + "armor_class": 0, + "hit_points": 0, + "cost": "75.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chain-shirt", + "fields": { + "name": "Chain shirt", + "desc": "Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.", + "document": "srd", + "size": "tiny", + "weight": "20.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chalk-1-piece", + "fields": { + "name": "Chalk (1 piece)", + "desc": "A piece of chalk.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chariot", + "fields": { + "name": "Chariot", + "desc": "Drawn vehicle.", + "document": "srd", + "size": "large", + "weight": "100.000", + "armor_class": 0, + "hit_points": 0, + "cost": "250.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chest", + "fields": { + "name": "Chest", + "desc": "A chest. Capacity: 12 cubic feet/300 pounds of gear.", + "document": "srd", + "size": "small", + "weight": "25.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chicken", + "fields": { + "name": "Chicken", + "desc": "One chicken", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chime-of-opening", + "fields": { + "name": "Chime of Opening", + "desc": "This hollow metal tube measures about 1 foot long and weighs 1 pound. You can strike it as an action, pointing it at an object within 120 feet of you that can be opened, such as a door, lid, or lock. The chime issues a clear tone, and one lock or latch on the object opens unless the sound can't reach the object. If no locks or latches remain, the object itself opens.\r\n\r\nThe chime can be used ten times. After the tenth time, it cracks and becomes useless.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_circlet-of-blasting", + "fields": { + "name": "Circlet of Blasting", + "desc": "While wearing this circlet, you can use an action to cast the _scorching ray_ spell with it. When you make the spell's attacks, you do so with an attack bonus of +5. The circlet can't be used this way again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_climbers-kit", + "fields": { + "name": "Climber's Kit", + "desc": "A climber's kit includes special pitons, boot tips, gloves, and a harness. You can use the climber's kit as an action to anchor yourself; when you do, you can't fall more than 25 feet from the point where you anchored yourself, and you can't climb more than 25 feet away from that point without undoing the anchor.", + "document": "srd", + "size": "tiny", + "weight": "12.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloak-of-arachnida", + "fields": { + "name": "Cloak of Arachnida", + "desc": "This fine garment is made of black silk interwoven with faint silvery threads. While wearing it, you gain the following benefits:\r\n\r\n* You have resistance to poison damage.\r\n* You have a climbing speed equal to your walking speed.\r\n* You can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free.\r\n* You can't be caught in webs of any sort and can move through webs as if they were difficult terrain.\r\n* You can use an action to cast the _web_ spell (save DC 13). The web created by the spell fills twice its normal area. Once used, this property of the cloak can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloak-of-displacement", + "fields": { + "name": "Cloak of Displacement", + "desc": "While you wear this cloak, it projects an illusion that makes you appear to be standing in a place near your actual location, causing any creature to have disadvantage on attack rolls against you. If you take damage, the property ceases to function until the start of your next turn. This property is suppressed while you are incapacitated, restrained, or otherwise unable to move.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloak-of-elvenkind", + "fields": { + "name": "Cloak of Elvenkind", + "desc": "While you wear this cloak with its hood up, Wisdom (Perception) checks made to see you have disadvantage, and you have advantage on Dexterity (Stealth) checks made to hide, as the cloak's color shifts to camouflage you. Pulling the hood up or down requires an action.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloak-of-protection", + "fields": { + "name": "Cloak of Protection", + "desc": "You gain a +1 bonus to AC and saving throws while you wear this cloak.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloak-of-the-bat", + "fields": { + "name": "Cloak of the Bat", + "desc": "While wearing this cloak, you have advantage on Dexterity (Stealth) checks. In an area of dim light or darkness, you can grip the edges of the cloak with both hands and use it to fly at a speed of 40 feet. If you ever fail to grip the cloak's edges while flying in this way, or if you are no longer in dim light or darkness, you lose this flying speed.\r\n\r\nWhile wearing the cloak in an area of dim light or darkness, you can use your action to cast _polymorph_ on yourself, transforming into a bat. While you are in the form of the bat, you retain your Intelligence, Wisdom, and Charisma scores. The cloak can't be used this way again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloak-of-the-manta-ray", + "fields": { + "name": "Cloak of the Manta Ray", + "desc": "While wearing this cloak with its hood up, you can breathe underwater, and you have a swimming speed of 60 feet. Pulling the hood up or down requires an action.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_clothes-common", + "fields": { + "name": "Clothes, Common", + "desc": "Common clothes.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_clothes-costume", + "fields": { + "name": "Clothes, costume", + "desc": "A costume.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_clothes-fine", + "fields": { + "name": "Clothes, fine", + "desc": "Fine clothing.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_clothes-travelers", + "fields": { + "name": "Clothes, traveler's", + "desc": "Traveler's clothing.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_club", + "fields": { + "name": "Club", + "desc": "A club", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_club-1", + "fields": { + "name": "Club (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_club-2", + "fields": { + "name": "Club (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_club-3", + "fields": { + "name": "Club (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cobblers-tools", + "fields": { + "name": "Cobbler's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_component-pouch", + "fields": { + "name": "Component Pouch", + "desc": "A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cooks-utensils", + "fields": { + "name": "Cook's utensils", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cow", + "fields": { + "name": "Cow", + "desc": "One cow.", + "document": "srd", + "size": "large", + "weight": "1000.000", + "armor_class": 10, + "hit_points": 15, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_copper-piece", + "fields": { + "name": "Copper Piece", + "desc": "One silver piece is worth ten copper pieces, which are common among laborers and beggars. A single copper piece buys a candle, a torch, or a piece of chalk.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crawler-mucus", + "fields": { + "name": "Crawler mucus", + "desc": "This poison must be harvested from a dead or incapacitated crawler. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. The poisoned creature is paralyzed. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\\n\\n\r\n**_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-bolt", + "fields": { + "name": "Crossbow bolt", + "desc": "Bolts to be used in a crossbow.", + "document": "srd", + "size": "tiny", + "weight": "0.080", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-hand", + "fields": { + "name": "Crossbow, hand", + "desc": "A hand crossbow.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "75.00", + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-hand-1", + "fields": { + "name": "Crossbow-Hand (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-hand-2", + "fields": { + "name": "Crossbow-Hand (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-hand-3", + "fields": { + "name": "Crossbow-Hand (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-heavy", + "fields": { + "name": "Crossbow, heavy", + "desc": "A heavy crossbow", + "document": "srd", + "size": "tiny", + "weight": "18.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-heavy-1", + "fields": { + "name": "Crossbow-Heavy (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-heavy-2", + "fields": { + "name": "Crossbow-Heavy (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-heavy-3", + "fields": { + "name": "Crossbow-Heavy (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-light", + "fields": { + "name": "Crossbow, light", + "desc": "A light crossbow.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-light-1", + "fields": { + "name": "Crossbow-Light (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-light-2", + "fields": { + "name": "Crossbow-Light (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-light-3", + "fields": { + "name": "Crossbow-Light (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crowbar", + "fields": { + "name": "Crowbar", + "desc": "Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crystal", + "fields": { + "name": "Crystal", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crystal-ball", + "fields": { + "name": "Crystal Ball", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crystal-ball-of-mind-reading", + "fields": { + "name": "Crystal Ball of Mind Reading", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nYou can use an action to cast the detect thoughts spell (save DC 17) while you are scrying with the crystal ball, targeting creatures you can see within 30 feet of the spell's sensor. You don't need to concentrate on this detect thoughts to maintain it during its duration, but it ends if scrying ends.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crystal-ball-of-telepathy", + "fields": { + "name": "Crystal Ball of Telepathy", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nThe following crystal ball variants are legendary items and have additional properties.\r\n\r\nWhile scrying with the crystal ball, you can communicate telepathically with creatures you can see within 30 feet of the spell's sensor. You can also use an action to cast the suggestion spell (save DC 17) through the sensor on one of those creatures. You don't need to concentrate on this suggestion to maintain it during its duration, but it ends if scrying ends. Once used, the suggestion power of the crystal ball can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crystal-ball-of-true-seeing", + "fields": { + "name": "Crystal Ball of True Seeing", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nWhile scrying with the crystal ball, you have truesight with a radius of 120 feet centered on the spell's sensor.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cube-of-force", + "fields": { + "name": "Cube of Force", + "desc": "This cube is about an inch across. Each face has a distinct marking on it that can be pressed. The cube starts with 36 charges, and it regains 1d20 expended charges daily at dawn.\r\n\r\nYou can use an action to press one of the cube's faces, expending a number of charges based on the chosen face, as shown in the Cube of Force Faces table. Each face has a different effect. If the cube has insufficient charges remaining, nothing happens. Otherwise, a barrier of invisible force springs into existence, forming a cube 15 feet on a side. The barrier is centered on you, moves with you, and lasts for 1 minute, until you use an action to press the cube's sixth face, or the cube runs out of charges. You can change the barrier's effect by pressing a different face of the cube and expending the requisite number of charges, resetting the duration.\r\n\r\nIf your movement causes the barrier to come into contact with a solid object that can't pass through the cube, you can't move any closer to that object as long as the barrier remains.\r\n\r\n**Cube of Force Faces (table)**\r\n\r\n| Face | Charges | Effect |\r\n|------|---------|-------------------------------------------------------------------------------------------------------------------|\r\n| 1 | 1 | Gases, wind, and fog can't pass through the barrier. |\r\n| 2 | 2 | Nonliving matter can't pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 3 | 3 | Living matter can't pass through the barrier. |\r\n| 4 | 4 | Spell effects can't pass through the barrier. |\r\n| 5 | 5 | Nothing can pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 6 | 0 | The barrier deactivates. |\r\n\r\nThe cube loses charges when the barrier is targeted by certain spells or comes into contact with certain spell or magic item effects, as shown in the table below.\r\n\r\n| Spell or Item | Charges Lost |\r\n|------------------|--------------|\r\n| Disintegrate | 1d12 |\r\n| Horn of blasting | 1d10 |\r\n| Passwall | 1d6 |\r\n| Prismatic spray | 1d20 |\r\n| Wall of fire | 1d4 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cubic-gate", + "fields": { + "name": "Cubic Gate", + "desc": "This cube is 3 inches across and radiates palpable magical energy. The six sides of the cube are each keyed to a different plane of existence, one of which is the Material Plane. The other sides are linked to planes determined by the GM.\r\n\r\nYou can use an action to press one side of the cube to cast the _gate_ spell with it, opening a portal to the plane keyed to that side. Alternatively, if you use an action to press one side twice, you can cast the _plane shift_ spell (save DC 17) with the cube and transport the targets to the plane keyed to that side.\r\n\r\nThe cube has 3 charges. Each use of the cube expends 1 charge. The cube regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dagger", + "fields": { + "name": "Dagger", + "desc": "A dagger.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dagger-1", + "fields": { + "name": "Dagger (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dagger-2", + "fields": { + "name": "Dagger (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dagger-3", + "fields": { + "name": "Dagger (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dagger-of-venom", + "fields": { + "name": "Dagger of Venom", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nYou can use an action to cause thick, black poison to coat the blade. The poison remains for 1 minute or until an attack using this weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or take 2d10 poison damage and become poisoned for 1 minute. The dagger can't be used this way again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dancing-sword-greatsword", + "fields": { + "name": "Dancing Sword (Greatsword)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dancing-sword-longsword", + "fields": { + "name": "Dancing Sword (Longsword)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dancing-sword-rapier", + "fields": { + "name": "Dancing Sword (Rapier)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dancing-sword-shortsword", + "fields": { + "name": "Dancing Sword (Shortsword)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dart", + "fields": { + "name": "Dart", + "desc": "A dart.", + "document": "srd", + "size": "tiny", + "weight": "0.250", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dart-1", + "fields": { + "name": "Dart (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dart-2", + "fields": { + "name": "Dart (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dart-3", + "fields": { + "name": "Dart (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_decanter-of-endless-water", + "fields": { + "name": "Decanter of Endless Water", + "desc": "This stoppered flask sloshes when shaken, as if it contains water. The decanter weighs 2 pounds.\r\n\r\nYou can use an action to remove the stopper and speak one of three command words, whereupon an amount of fresh water or salt water (your choice) pours out of the flask. The water stops pouring out at the start of your next turn. Choose from the following options:\r\n\r\n* \"Stream\" produces 1 gallon of water.\r\n* \"Fountain\" produces 5 gallons of water.\r\n* \"Geyser\" produces 30 gallons of water that gushes forth in a geyser 30 feet long and 1 foot wide. As a bonus action while holding the decanter, you can aim the geyser at a creature you can see within 30 feet of you. The target must succeed on a DC 13 Strength saving throw or take 1d4 bludgeoning damage and fall prone. Instead of a creature, you can target an object that isn't being worn or carried and that weighs no more than 200 pounds. The object is either knocked over or pushed up to 15 feet away from you.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_deck-of-illusions", + "fields": { + "name": "Deck of Illusions", + "desc": "This box contains a set of parchment cards. A full deck has 34 cards. A deck found as treasure is usually missing 1d20 - 1 cards.\r\n\r\nThe magic of the deck functions only if cards are drawn at random (you can use an altered deck of playing cards to simulate the deck). You can use an action to draw a card at random from the deck and throw it to the ground at a point within 30 feet of you.\r\n\r\nAn illusion of one or more creatures forms over the thrown card and remains until dispelled. An illusory creature appears real, of the appropriate size, and behaves as if it were a real creature except that it can do no harm. While you are within 120 feet of the illusory creature and can see it, you can use an action to move it magically anywhere within 30 feet of its card. Any physical interaction with the illusory creature reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect the creature identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The creature then appears translucent.\r\n\r\nThe illusion lasts until its card is moved or the illusion is dispelled. When the illusion ends, the image on its card disappears, and that card can't be used again.\r\n\r\n| Playing Card | Illusion |\r\n|-------------------|----------------------------------|\r\n| Ace of hearts | Red dragon |\r\n| King of hearts | Knight and four guards |\r\n| Queen of hearts | Succubus or incubus |\r\n| Jack of hearts | Druid |\r\n| Ten of hearts | Cloud giant |\r\n| Nine of hearts | Ettin |\r\n| Eight of hearts | Bugbear |\r\n| Two of hearts | Goblin |\r\n| Ace of diamonds | Beholder |\r\n| King of diamonds | Archmage and mage apprentice |\r\n| Queen of diamonds | Night hag |\r\n| Jack of diamonds | Assassin |\r\n| Ten of diamonds | Fire giant |\r\n| Nine of diamonds | Ogre mage |\r\n| Eight of diamonds | Gnoll |\r\n| Two of diamonds | Kobold |\r\n| Ace of spades | Lich |\r\n| King of spades | Priest and two acolytes |\r\n| Queen of spades | Medusa |\r\n| Jack of spades | Veteran |\r\n| Ten of spades | Frost giant |\r\n| Nine of spades | Troll |\r\n| Eight of spades | Hobgoblin |\r\n| Two of spades | Goblin |\r\n| Ace of clubs | Iron golem |\r\n| King of clubs | Bandit captain and three bandits |\r\n| Queen of clubs | Erinyes |\r\n| Jack of clubs | Berserker |\r\n| Ten of clubs | Hill giant |\r\n| Nine of clubs | Ogre |\r\n| Eight of clubs | Orc |\r\n| Two of clubs | Kobold |\r\n| Jokers (2) | You (the deck's owner) |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_deck-of-many-things", + "fields": { + "name": "Deck of Many Things", + "desc": "Usually found in a box or pouch, this deck contains a number of cards made of ivory or vellum. Most (75 percent) of these decks have only thirteen cards, but the rest have twenty-two.\r\n\r\nBefore you draw a card, you must declare how many cards you intend to draw and then draw them randomly (you can use an altered deck of playing cards to simulate the deck). Any cards drawn in excess of this number have no effect. Otherwise, as soon as you draw a card from the deck, its magic takes effect. You must draw each card no more than 1 hour after the previous draw. If you fail to draw the chosen number, the remaining number of cards fly from the deck on their own and take effect all at once.\r\n\r\nOnce a card is drawn, it fades from existence. Unless the card is the Fool or the Jester, the card reappears in the deck, making it possible to draw the same card twice.\r\n\r\n| Playing Card | Card |\r\n|--------------------|-------------|\r\n| Ace of diamonds | Vizier\\* |\r\n| King of diamonds | Sun |\r\n| Queen of diamonds | Moon |\r\n| Jack of diamonds | Star |\r\n| Two of diamonds | Comet\\* |\r\n| Ace of hearts | The Fates\\* |\r\n| King of hearts | Throne |\r\n| Queen of hearts | Key |\r\n| Jack of hearts | Knight |\r\n| Two of hearts | Gem\\* |\r\n| Ace of clubs | Talons\\* |\r\n| King of clubs | The Void |\r\n| Queen of clubs | Flames |\r\n| Jack of clubs | Skull |\r\n| Two of clubs | Idiot\\* |\r\n| Ace of spades | Donjon\\* |\r\n| King of spades | Ruin |\r\n| Queen of spades | Euryale |\r\n| Jack of spades | Rogue |\r\n| Two of spades | Balance\\* |\r\n| Joker (with TM) | Fool\\* |\r\n| Joker (without TM) | Jester |\r\n\r\n\\*Found only in a deck with twenty-two cards\r\n\r\n**_Balance_**. Your mind suffers a wrenching alteration, causing your alignment to change. Lawful becomes chaotic, good becomes evil, and vice versa. If you are true neutral or unaligned, this card has no effect on you.\r\n\r\n**_Comet_**. If you single-handedly defeat the next hostile monster or group of monsters you encounter, you gain experience points enough to gain one level. Otherwise, this card has no effect.\r\n\r\n**_Donjon_**. You disappear and become entombed in a state of suspended animation in an extradimensional sphere. Everything you were wearing and carrying stays behind in the space you occupied when you disappeared. You remain imprisoned until you are found and removed from the sphere. You can't be located by any divination magic, but a _wish_ spell can reveal the location of your prison. You draw no more cards.\r\n\r\n**_Euryale_**. The card's medusa-like visage curses you. You take a -2 penalty on saving throws while cursed in this way. Only a god or the magic of The Fates card can end this curse.\r\n\r\n**_The Fates_**. Reality's fabric unravels and spins anew, allowing you to avoid or erase one event as if it never happened. You can use the card's magic as soon as you draw the card or at any other time before you die.\r\n\r\n**_Flames_**. A powerful devil becomes your enemy. The devil seeks your ruin and plagues your life, savoring your suffering before attempting to slay you. This enmity lasts until either you or the devil dies.\r\n\r\n**_Fool_**. You lose 10,000 XP, discard this card, and draw from the deck again, counting both draws as one of your declared draws. If losing that much XP would cause you to lose a level, you instead lose an amount that leaves you with just enough XP to keep your level.\r\n\r\n**_Gem_**. Twenty-five pieces of jewelry worth 2,000 gp each or fifty gems worth 1,000 gp each appear at your feet.\r\n\r\n**_Idiot_**. Permanently reduce your Intelligence by 1d4 + 1 (to a minimum score of 1). You can draw one additional card beyond your declared draws.\r\n\r\n**_Jester_**. You gain 10,000 XP, or you can draw two additional cards beyond your declared draws.\r\n\r\n**_Key_**. A rare or rarer magic weapon with which you are proficient appears in your hands. The GM chooses the weapon.\r\n\r\n**_Knight_**. You gain the service of a 4th-level fighter who appears in a space you choose within 30 feet of you. The fighter is of the same race as you and serves you loyally until death, believing the fates have drawn him or her to you. You control this character.\r\n\r\n**_Moon_**. You are granted the ability to cast the _wish_ spell 1d3 times.\r\n\r\n**_Rogue_**. A nonplayer character of the GM's choice becomes hostile toward you. The identity of your new enemy isn't known until the NPC or someone else reveals it. Nothing less than a _wish_ spell or divine intervention can end the NPC's hostility toward you.\r\n\r\n**_Ruin_**. All forms of wealth that you carry or own, other than magic items, are lost to you. Portable property vanishes. Businesses, buildings, and land you own are lost in a way that alters reality the least. Any documentation that proves you should own something lost to this card also disappears.\r\n\r\n**_Skull_**. You summon an avatar of death-a ghostly humanoid skeleton clad in a tattered black robe and carrying a spectral scythe. It appears in a space of the GM's choice within 10 feet of you and attacks you, warning all others that you must win the battle alone. The avatar fights until you die or it drops to 0 hit points, whereupon it disappears. If anyone tries to help you, the helper summons its own avatar of death. A creature slain by an avatar of death can't be restored to life.\r\n\r\n#", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_defender-greatsword", + "fields": { + "name": "Defender (Greatsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_defender-longsword", + "fields": { + "name": "Defender (Longsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_defender-rapier", + "fields": { + "name": "Defender (Rapier)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_defender-shortsword", + "fields": { + "name": "Defender (Shortsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_demon-armor", + "fields": { + "name": "Demon Armor", + "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, the armor's clawed gauntlets turn unarmed strikes with your hands into magic weapons that deal slashing damage, with a +1 bonus to attack rolls and damage rolls and a damage die of 1d8.\n\n**_Curse_**. Once you don this cursed armor, you can't doff it unless you are targeted by the _remove curse_ spell or similar magic. While wearing the armor, you have disadvantage on attack rolls against demons and on saving throws against their spells and special abilities.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dice-set", + "fields": { + "name": "Dice set", + "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dimensional-shackles", + "fields": { + "name": "Dimensional Shackles", + "desc": "You can use an action to place these shackles on an incapacitated creature. The shackles adjust to fit a creature of Small to Large size. In addition to serving as mundane manacles, the shackles prevent a creature bound by them from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. They don't prevent the creature from passing through an interdimensional portal.\r\n\r\nYou and any creature you designate when you use the shackles can use an action to remove them. Once every 30 days, the bound creature can make a DC 30 Strength (Athletics) check. On a success, the creature breaks free and destroys the shackles.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_disguise-kit", + "fields": { + "name": "Disguise kit", + "desc": "This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dragon-scale-mail", + "fields": { + "name": "Dragon Scale Mail", + "desc": "Dragon scale mail is made of the scales of one kind of dragon. Sometimes dragons collect their cast-off scales and gift them to humanoids. Other times, hunters carefully skin and preserve the hide of a dead dragon. In either case, dragon scale mail is highly valued.\r\n\r\nWhile wearing this armor, you gain a +1 bonus to AC, you have advantage on saving throws against the Frightful Presence and breath weapons of dragons, and you have resistance to one damage type that is determined by the kind of dragon that provided the scales (see the table).\r\n\r\nAdditionally, you can focus your senses as an action to magically discern the distance and direction to the closest dragon within 30 miles of you that is of the same type as the armor. This special action can't be used again until the next dawn.\r\n\r\n| Dragon | Resistance |\r\n|--------|------------|\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dragon-slayer-greatsword", + "fields": { + "name": "Dragon Slayer (Greatsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dragon-slayer-longsword", + "fields": { + "name": "Dragon Slayer (Longsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dragon-slayer-rapier", + "fields": { + "name": "Dragon Slayer (Rapier)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dragon-slayer-shortsword", + "fields": { + "name": "Dragon Slayer (Shortsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_drow-poison", + "fields": { + "name": "Drow poison", + "desc": "This poison is typically made only by the drow, and only in a place far removed from sunlight. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the creature is also unconscious while poisoned in this way. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\r\n\\n\\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_drum", + "fields": { + "name": "Drum", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "6.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dulcimer", + "fields": { + "name": "Dulcimer", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dust-of-disappearance", + "fields": { + "name": "Dust of Disappearance", + "desc": "Found in a small packet, this powder resembles very fine sand. There is enough of it for one use. When you use an action to throw the dust into the air, you and each creature and object within 10 feet of you become invisible for 2d4 minutes. The duration is the same for all subjects, and the dust is consumed when its magic takes effect. If a creature affected by the dust attacks or casts a spell, the invisibility ends for that creature.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dust-of-dryness", + "fields": { + "name": "Dust of Dryness", + "desc": "This small packet contains 1d6 + 4 pinches of dust. You can use an action to sprinkle a pinch of it over water. The dust turns a cube of water 15 feet on a side into one marble-sized pellet, which floats or rests near where the dust was sprinkled. The pellet's weight is negligible.\r\n\r\nSomeone can use an action to smash the pellet against a hard surface, causing the pellet to shatter and release the water the dust absorbed. Doing so ends that pellet's magic.\r\n\r\nAn elemental composed mostly of water that is exposed to a pinch of the dust must make a DC 13 Constitution saving throw, taking 10d6 necrotic damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dust-of-sneezing-and-choking", + "fields": { + "name": "Dust of Sneezing and Choking", + "desc": "Found in a small container, this powder resembles very fine sand. It appears to be _dust of disappearance_, and an _identify_ spell reveals it to be such. There is enough of it for one use.\r\n\r\nWhen you use an action to throw a handful of the dust into the air, you and each creature that needs to breathe within 30 feet of you must succeed on a DC 15 Constitution saving throw or become unable to breathe, while sneezing uncontrollably. A creature affected in this way is incapacitated and suffocating. As long as it is conscious, a creature can repeat the saving throw at the end of each of its turns, ending the effect on it on a success. The _lesser restoration_ spell can also end the effect on a creature.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dwarven-plate", + "fields": { + "name": "Dwarven Plate", + "desc": "While wearing this armor, you gain a +2 bonus to AC. In addition, if an effect moves you against your will along the ground, you can use your reaction to reduce the distance you are moved by up to 10 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dwarven-thrower", + "fields": { + "name": "Dwarven Thrower", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. It has the thrown property with a normal range of 20 feet and a long range of 60 feet. When you hit with a ranged attack using this weapon, it deals an extra 1d8 damage or, if the target is a giant, 2d8 damage. Immediately after the attack, the weapon flies back to your hand.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_efficient-quiver", + "fields": { + "name": "Efficient Quiver", + "desc": "Each of the quiver's three compartments connects to an extradimensional space that allows the quiver to hold numerous items while never weighing more than 2 pounds. The shortest compartment can hold up to sixty arrows, bolts, or similar objects. The midsize compartment holds up to eighteen javelins or similar objects. The longest compartment holds up to six long objects, such as bows, quarterstaffs, or spears.\r\n\r\nYou can draw any item the quiver contains as if doing so from a regular quiver or scabbard.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_efreeti-bottle", + "fields": { + "name": "Efreeti Bottle", + "desc": "This painted brass bottle weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke flows out of the bottle. At the end of your turn, the smoke disappears with a flash of harmless fire, and an efreeti appears in an unoccupied space within 30 feet of you.\r\n\r\nThe first time the bottle is opened, the GM rolls to determine what happens.\r\n\r\n| d100 | Effect |\r\n|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-10 | The efreeti attacks you. After fighting for 5 rounds, the efreeti disappears, and the bottle loses its magic. |\r\n| 11-90 | The efreeti serves you for 1 hour, doing as you command. Then the efreeti returns to the bottle, and a new stopper contains it. The stopper can't be removed for 24 hours. The next two times the bottle is opened, the same effect occurs. If the bottle is opened a fourth time, the efreeti escapes and disappears, and the bottle loses its magic. |\r\n| 91-100 | The efreeti can cast the wish spell three times for you. It disappears when it grants the final wish or after 1 hour, and the bottle loses its magic. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_elemental-gem", + "fields": { + "name": "Elemental Gem", + "desc": "This gem contains a mote of elemental energy. When you use an action to break the gem, an elemental is summoned as if you had cast the _conjure elemental_ spell, and the gem's magic is lost. The type of gem determines the elemental summoned by the spell.\r\n\r\n| Gem | Summoned Elemental |\r\n|----------------|--------------------|\r\n| Blue sapphire | Air elemental |\r\n| Yellow diamond | Earth elemental |\r\n| Red corundum | Fire elemental |\r\n| Emerald | Water elemental |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_elven-chain", + "fields": { + "name": "Elven Chain", + "desc": "You gain a +1 bonus to AC while you wear this armor. You are considered proficient with this armor even if you lack proficiency with medium armor.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_emblem", + "fields": { + "name": "Emblem", + "desc": "Can be used as a holy symbol.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_electrum-piece", + "fields": { + "name": "Electrum Piece", + "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_essense-of-either", + "fields": { + "name": "Essense of either", + "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 8 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "300.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_eversmoking-bottle", + "fields": { + "name": "Eversmoking Bottle", + "desc": "Smoke leaks from the lead-stoppered mouth of this brass bottle, which weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke pours out in a 60-foot radius from the bottle. The cloud's area is heavily obscured. Each minute the bottle remains open and within the cloud, the radius increases by 10 feet until it reaches its maximum radius of 120 feet.\r\n\r\nThe cloud persists as long as the bottle is open. Closing the bottle requires you to speak its command word as an action. Once the bottle is closed, the cloud disperses after 10 minutes. A moderate wind (11 to 20 miles per hour) can also disperse the smoke after 1 minute, and a strong wind (21 or more miles per hour) can do so after 1 round.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_eyes-of-charming", + "fields": { + "name": "Eyes of Charming", + "desc": "These crystal lenses fit over the eyes. They have 3 charges. While wearing them, you can expend 1 charge as an action to cast the _charm person_ spell (save DC 13) on a humanoid within 30 feet of you, provided that you and the target can see each other. The lenses regain all expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_eyes-of-minute-seeing", + "fields": { + "name": "Eyes of Minute Seeing", + "desc": "These crystal lenses fit over the eyes. While wearing them, you can see much better than normal out to a range of 1 foot. You have advantage on Intelligence (Investigation) checks that rely on sight while searching an area or studying an object within that range.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_eyes-of-the-eagle", + "fields": { + "name": "Eyes of the Eagle", + "desc": "These crystal lenses fit over the eyes. While wearing them, you have advantage on Wisdom (Perception) checks that rely on sight. In conditions of clear visibility, you can make out details of even extremely distant creatures and objects as small as 2 feet across.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_feather-token", + "fields": { + "name": "Feather Token", + "desc": "This tiny object looks like a feather. Different types of feather tokens exist, each with a different single* use effect. The GM chooses the kind of token or determines it randomly.\r\n\r\n| d100 | Feather Token |\r\n|--------|---------------|\r\n| 01-20 | Anchor |\r\n| 21-35 | Bird |\r\n| 36-50 | Fan |\r\n| 51-65 | Swan boat |\r\n| 66-90 | Tree |\r\n| 91-100 | Whip |\r\n\r\n**_Anchor_**. You can use an action to touch the token to a boat or ship. For the next 24 hours, the vessel can't be moved by any means. Touching the token to the vessel again ends the effect. When the effect ends, the token disappears.\r\n\r\n**_Bird_**. You can use an action to toss the token 5 feet into the air. The token disappears and an enormous, multicolored bird takes its place. The bird has the statistics of a roc, but it obeys your simple commands and can't attack. It can carry up to 500 pounds while flying at its maximum speed (16 miles an hour for a maximum of 144 miles per day, with a one-hour rest for every 3 hours of flying), or 1,000 pounds at half that speed. The bird disappears after flying its maximum distance for a day or if it drops to 0 hit points. You can dismiss the bird as an action.\r\n\r\n**_Fan_**. If you are on a boat or ship, you can use an action to toss the token up to 10 feet in the air. The token disappears, and a giant flapping fan takes its place. The fan floats and creates a wind strong enough to fill the sails of one ship, increasing its speed by 5 miles per hour for 8 hours. You can dismiss the fan as an action.\r\n\r\n**_Swan Boat_**. You can use an action to touch the token to a body of water at least 60 feet in diameter. The token disappears, and a 50-foot-long, 20-foot* wide boat shaped like a swan takes its place. The boat is self-propelled and moves across water at a speed of 6 miles per hour. You can use an action while on the boat to command it to move or to turn up to 90 degrees. The boat can carry up to thirty-two Medium or smaller creatures. A Large creature counts as four Medium creatures, while a Huge creature counts as nine. The boat remains for 24 hours and then disappears. You can dismiss the boat as an action.\r\n\r\n**_Tree_**. You must be outdoors to use this token. You can use an action to touch it to an unoccupied space on the ground. The token disappears, and in its place a nonmagical oak tree springs into existence. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\r\n\r\n**_Whip_**. You can use an action to throw the token to a point within 10 feet of you. The token disappears, and a floating whip takes its place. You can then use a bonus action to make a melee spell attack against a creature within 10 feet of the whip, with an attack bonus of +9. On a hit, the target takes 1d6 + 5 force damage.\r\n\r\nAs a bonus action on your turn, you can direct the whip to fly up to 20 feet and repeat the attack against a creature within 10 feet of it. The whip disappears after 1 hour, when you use an action to dismiss it, or when you are incapacitated or die.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-bronze-griffon", + "fields": { + "name": "Figurine of Wondrous Power (Bronze Griffon)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Bronze Griffon (Rare)_**. This bronze statuette is of a griffon rampant. It can become a griffon for up to 6 hours. Once it has been used, it can't be used again until 5 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-ebony-fly", + "fields": { + "name": "Figurine of Wondrous Power (Ebony Fly)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ebony Fly (Rare)_**. This ebony statuette is carved in the likeness of a horsefly. It can become a giant fly for up to 12 hours and can be ridden as a mount. Once it has been used, it can’t be used again until 2 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-golden-lions", + "fields": { + "name": "Figurine of Wondrous Power (Golden Lions)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Golden Lions (Rare)_**. These gold statuettes of lions are always created in pairs. You can use one figurine or both simultaneously. Each can become a lion for up to 1 hour. Once a lion has been used, it can’t be used again until 7 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-ivory-goats", + "fields": { + "name": "Figurine of Wondrous Power (Ivory Goats)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ivory Goats (Rare_**.These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others. Their properties are as follows:\\n\\n* The _goat of traveling_ can become a Large goat with the same statistics as a riding horse. It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can't be used again until 7 days have passed, when it regains all its charges.\\n* The _goat of travail_ becomes a giant goat for up to 3 hours. Once it has been used, it can't be used again until 30 days have passed.\\n* The _goat of terror_ becomes a giant goat for up to 3 hours. The goat can't attack, but you can remove its horns and use them as weapons. One horn becomes a _+1 lance_, and the other becomes a _+2 longsword_. Removing a horn requires an action, and the weapons disappear and the horns return when the goat reverts to figurine form. In addition, the goat radiates a 30-foot-radius aura of terror while you are riding it. Any creature hostile to you that starts its turn in the aura must succeed on a DC 15 Wisdom saving throw or be frightened of the goat for 1 minute, or until the goat reverts to figurine form. The frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it successfully saves against the effect, a creature is immune to the goat's aura for the next 24 hours. Once the figurine has been used, it can't be used again until 15 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-marble-elephant", + "fields": { + "name": "Figurine of Wondrous Power (Marble Elephant)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Marble Elephant (Rare)_**. This marble statuette is about 4 inches high and long. It can become an elephant for up to 24 hours. Once it has been used, it can’t be used again until 7 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-obsidian-steed", + "fields": { + "name": "Figurine of Wondrous Power (Obsidian Steed)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Obsidian Steed (Very Rare)_**. This polished obsidian horse can become a nightmare for up to 24 hours. The nightmare fights only to defend itself. Once it has been used, it can't be used again until 5 days have passed.\\n\\nIf you have a good alignment, the figurine has a 10 percent chance each time you use it to ignore your orders, including a command to revert to figurine form. If you mount the nightmare while it is ignoring your orders, you and the nightmare are instantly transported to a random location on the plane of Hades, where the nightmare reverts to figurine form.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-onyx-dog", + "fields": { + "name": "Figurine of Wondrous Power (Onyx Dog)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Onyx Dog (Rare)_**. This onyx statuette of a dog can become a mastiff for up to 6 hours. The mastiff has an Intelligence of 8 and can speak Common. It also has darkvision out to a range of 60 feet and can see invisible creatures and objects within that range. Once it has been used, it can’t be used again until 7 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-serpentine-owl", + "fields": { + "name": "Figurine of Wondrous Power (Serpentine Owl)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Serpentine Owl (Rare)_**. This serpentine statuette of an owl can become a giant owl for up to 8 hours. Once it has been used, it can’t be used again until 2 days have passed. The owl can telepathically communicate with you at any range if you and it are on the same plane of existence.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-silver-raven", + "fields": { + "name": "Figurine of Wondrous Power (Silver Raven)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Silver Raven (Uncommon)_**. This silver statuette of a raven can become a raven for up to 12 hours. Once it has been used, it can’t be used again until 2 days have passed. While in raven form, the figurine allows you to cast the animal messenger spell on it at will.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_fishing-tackle", + "fields": { + "name": "Fishing Tackle", + "desc": "This kit includes a wooden rod, silken line, corkwood bobbers, steel hooks, lead sinkers, velvet lures, and narrow netting.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flail", + "fields": { + "name": "Flail", + "desc": "A flail.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flail-1", + "fields": { + "name": "Flail (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_flail-2", + "fields": { + "name": "Flail (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_flail-3", + "fields": { + "name": "Flail (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_flame-tongue-greatsword", + "fields": { + "name": "Flame Tongue (Greatsword)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flame-tongue-longsword", + "fields": { + "name": "Flame Tongue (Longsword)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flame-tongue-rapier", + "fields": { + "name": "Flame Tongue (Rapier)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flame-tongue-shortsword", + "fields": { + "name": "Flame Tongue (Shortsword)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flask-or-tankard", + "fields": { + "name": "Flask or tankard", + "desc": "For drinking. Capacity: 1 pint liquid.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flute", + "fields": { + "name": "Flute", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_folding-boat", + "fields": { + "name": "Folding Boat", + "desc": "This object appears as a wooden box that measures 12 inches long, 6 inches wide, and 6 inches deep. It weighs 4 pounds and floats. It can be opened to store items inside. This item also has three command words, each requiring you to use an action to speak it.\r\n\r\nOne command word causes the box to unfold into a boat 10 feet long, 4 feet wide, and 2 feet deep. The boat has one pair of oars, an anchor, a mast, and a lateen sail. The boat can hold up to four Medium creatures comfortably.\r\n\r\nThe second command word causes the box to unfold into a ship 24 feet long, 8 feet wide, and 6 feet deep. The ship has a deck, rowing seats, five sets of oars, a steering oar, an anchor, a deck cabin, and a mast with a square sail. The ship can hold fifteen Medium creatures comfortably.\r\n\r\nWhen the box becomes a vessel, its weight becomes that of a normal vessel its size, and anything that was stored in the box remains in the boat.\r\n\r\nThe third command word causes the _folding boat_ to fold back into a box, provided that no creatures are aboard. Any objects in the vessel that can't fit inside the box remain outside the box as it folds. Any objects in the vessel that can fit inside the box do so.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_forgery-kit", + "fields": { + "name": "Forgery kit", + "desc": "This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. \\n\\nProficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_frost-brand-greatsword", + "fields": { + "name": "Frost Brand (Greatsword)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_frost-brand-longsword", + "fields": { + "name": "Frost Brand (Longsword)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_frost-brand-rapier", + "fields": { + "name": "Frost Brand (Rapier)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_frost-brand-shortsword", + "fields": { + "name": "Frost Brand (Shortsword)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_galley", + "fields": { + "name": "Galley", + "desc": "A waterborne vehicle. Speed 4 mph", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_gauntlets-of-ogre-power", + "fields": { + "name": "Gauntlets of Ogre Power", + "desc": "Your Strength score is 19 while you wear these gauntlets. They have no effect on you if your Strength is already 19 or higher.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_gem-of-brightness", + "fields": { + "name": "Gem of Brightness", + "desc": "This prism has 50 charges. While you are holding it, you can use an action to speak one of three command words to cause one of the following effects:\r\n\r\n* The first command word causes the gem to shed bright light in a 30-foot radius and dim light for an additional 30 feet. This effect doesn't expend a charge. It lasts until you use a bonus action to repeat the command word or until you use another function of the gem.\r\n* The second command word expends 1 charge and causes the gem to fire a brilliant beam of light at one creature you can see within 60 feet of you. The creature must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\r\n* The third command word expends 5 charges and causes the gem to flare with blinding light in a 30* foot cone originating from it. Each creature in the cone must make a saving throw as if struck by the beam created with the second command word.\r\n\r\nWhen all of the gem's charges are expended, the gem becomes a nonmagical jewel worth 50 gp.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_gem-of-seeing", + "fields": { + "name": "Gem of Seeing", + "desc": "This gem has 3 charges. As an action, you can speak the gem's command word and expend 1 charge. For the next 10 minutes, you have truesight out to 120 feet when you peer through the gem.\r\n\r\nThe gem regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-battleaxe", + "fields": { + "name": "Giant Slayer (Battleaxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-greataxe", + "fields": { + "name": "Giant Slayer (Greataxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-greatsword", + "fields": { + "name": "Giant Slayer (Greatsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-handaxe", + "fields": { + "name": "Giant Slayer (Handaxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-longsword", + "fields": { + "name": "Giant Slayer (Longsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-rapier", + "fields": { + "name": "Giant Slayer (Rapier)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-shortsword", + "fields": { + "name": "Giant Slayer (Shortsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_glaive", + "fields": { + "name": "Glaive", + "desc": "A glaive.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_glaive-1", + "fields": { + "name": "Glaive (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_glaive-2", + "fields": { + "name": "Glaive (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_glaive-3", + "fields": { + "name": "Glaive (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_glamoured-studded-leather", + "fields": { + "name": "Glamoured Studded Leather", + "desc": "While wearing this armor, you gain a +1 bonus to AC. You can also use a bonus action to speak the armor's command word and cause the armor to assume the appearance of a normal set of clothing or some other kind of armor. You decide what it looks like, including color, style, and accessories, but the armor retains its normal bulk and weight. The illusory appearance lasts until you use this property again or remove the armor.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_glassblowers-tools", + "fields": { + "name": "Glassblower's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_gloves-of-missile-snaring", + "fields": { + "name": "Gloves of Missile Snaring", + "desc": "These gloves seem to almost meld into your hands when you don them. When a ranged weapon attack hits you while you're wearing them, you can use your reaction to reduce the damage by 1d10 + your Dexterity modifier, provided that you have a free hand. If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in that hand.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_gloves-of-swimming-and-climbing", + "fields": { + "name": "Gloves of Swimming and Climbing", + "desc": "While wearing these gloves, climbing and swimming don't cost you extra movement, and you gain a +5 bonus to Strength (Athletics) checks made to climb or swim.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_goat", + "fields": { + "name": "Goat", + "desc": "One goat.", + "document": "srd", + "size": "medium", + "weight": "75.000", + "armor_class": 10, + "hit_points": 4, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_goggles-of-night", + "fields": { + "name": "Goggles of Night", + "desc": "While wearing these dark lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the goggles increases its range by 60 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_gold-piece", + "fields": { + "name": "Gold Piece", + "desc": "With one gold piece, a character can buy a bedroll, 50 feet of good rope, or a goat. A skilled (but not exceptional) artisan can earn one gold piece a day. The gold piece is the standard unit of measure for wealth, even if the coin itself is not commonly used. When merchants discuss deals that involve goods or services worth hundreds or thousands of gold pieces, the transactions don't usually involve the exchange of individual coins. Rather, the gold piece is a standard measure of value, and the actual exchange is in gold bars, letters of credit, or valuable goods.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_grappling-hook", + "fields": { + "name": "Grappling hook", + "desc": "A grappling hook.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_greataxe", + "fields": { + "name": "Greataxe", + "desc": "A greataxe.", + "document": "srd", + "size": "tiny", + "weight": "7.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_greataxe-1", + "fields": { + "name": "Greataxe (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greataxe-2", + "fields": { + "name": "Greataxe (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greataxe-3", + "fields": { + "name": "Greataxe (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatclub", + "fields": { + "name": "Greatclub", + "desc": "A greatclub.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatclub-1", + "fields": { + "name": "Greatclub (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatclub-2", + "fields": { + "name": "Greatclub (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatclub-3", + "fields": { + "name": "Greatclub (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatsword", + "fields": { + "name": "Greatsword", + "desc": "A great sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatsword-1", + "fields": { + "name": "Greatsword (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatsword-2", + "fields": { + "name": "Greatsword (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatsword-3", + "fields": { + "name": "Greatsword (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_halberd", + "fields": { + "name": "Halberd", + "desc": "A halberd.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_halberd-1", + "fields": { + "name": "Halberd (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_halberd-2", + "fields": { + "name": "Halberd (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_halberd-3", + "fields": { + "name": "Halberd (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_half-plate", + "fields": { + "name": "Half plate", + "desc": "Half plate consists of shaped metal plates that cover most of the wearer's body. It does not include leg protection beyond simple greaves that are attached with leather straps.", + "document": "srd", + "size": "tiny", + "weight": "40.000", + "armor_class": 0, + "hit_points": 0, + "cost": "750.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_hammer", + "fields": { + "name": "Hammer", + "desc": "A hammer.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_hammer-of-thunderbolts", + "fields": { + "name": "Hammer of Thunderbolts", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\n**_Giant's Bane (Requires Attunement)_**. You must be wearing a _belt of giant strength_ (any variety) and _gauntlets of ogre power_ to attune to this weapon. The attunement ends if you take off either of those items. While you are attuned to this weapon and holding it, your Strength score increases by 4 and can exceed 20, but not 30. When you roll a 20 on an attack roll made with this weapon against a giant, the giant must succeed on a DC 17 Constitution saving throw or die.\n\nThe hammer also has 5 charges. While attuned to it, you can expend 1 charge and make a ranged weapon attack with the hammer, hurling it as if it had the thrown property with a normal range of 20 feet and a long range of 60 feet. If the attack hits, the hammer unleashes a thunderclap audible out to 300 feet. The target and every creature within 30 feet of it must succeed on a DC 17 Constitution saving throw or be stunned until the end of your next turn. The hammer regains 1d4 + 1 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_hammer-sledge", + "fields": { + "name": "Hammer, sledge", + "desc": "A sledgehammer", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_handaxe", + "fields": { + "name": "Handaxe", + "desc": "A handaxe.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_handaxe-1", + "fields": { + "name": "Handaxe (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_handaxe-2", + "fields": { + "name": "Handaxe (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_handaxe-3", + "fields": { + "name": "Handaxe (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_handy-haversack", + "fields": { + "name": "Handy Haversack", + "desc": "This backpack has a central pouch and two side pouches, each of which is an extradimensional space. Each side pouch can hold up to 20 pounds of material, not exceeding a volume of 2 cubic feet. The large central pouch can hold up to 8 cubic feet or 80 pounds of material. The backpack always weighs 5 pounds, regardless of its contents.\r\n\r\nPlacing an object in the haversack follows the normal rules for interacting with objects. Retrieving an item from the haversack requires you to use an action. When you reach into the haversack for a specific item, the item is always magically on top.\r\n\r\nThe haversack has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the haversack ruptures and is destroyed. If the haversack is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If the haversack is turned inside out, its contents spill forth, unharmed, and the haversack must be put right before it can be used again. If a breathing creature is placed within the haversack, the creature can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing the haversack inside an extradimensional space created by a _bag of holding_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_hat-of-disguise", + "fields": { + "name": "Hat of Disguise", + "desc": "While wearing this hat, you can use an action to cast the _disguise self_ spell from it at will. The spell ends if the hat is removed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_headband-of-intellect", + "fields": { + "name": "Headband of Intellect", + "desc": "Your Intelligence score is 19 while you wear this headband. It has no effect on you if your Intelligence is already 19 or higher.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_healers-kit", + "fields": { + "name": "Healer's Kit", + "desc": "This kit is a leather pouch containing bandages, salves, and splints. The kit has ten uses. As an action, you can expend one use of the kit to stabilize a creature that has 0 hit points, without needing to make a Wisdom (Medicine) check.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_helm-of-brilliance", + "fields": { + "name": "Helm of Brilliance", + "desc": "This dazzling helm is set with 1d10 diamonds, 2d10 rubies, 3d10 fire opals, and 4d10 opals. Any gem pried from the helm crumbles to dust. When all the gems are removed or destroyed, the helm loses its magic.\r\n\r\nYou gain the following benefits while wearing it:\r\n\r\n* You can use an action to cast one of the following spells (save DC 18), using one of the helm's gems of the specified type as a component: _daylight_ (opal), _fireball_ (fire opal), _prismatic spray_ (diamond), or _wall of fire_ (ruby). The gem is destroyed when the spell is cast and disappears from the helm.\r\n* As long as it has at least one diamond, the helm emits dim light in a 30-foot radius when at least one undead is within that area. Any undead that starts its turn in that area takes 1d6 radiant damage.\r\n* As long as the helm has at least one ruby, you have resistance to fire damage.\r\n* As long as the helm has at least one fire opal, you can use an action and speak a command word to cause one weapon you are holding to burst into flames. The flames emit bright light in a 10-foot radius and dim light for an additional 10 feet. The flames are harmless to you and the weapon. When you hit with an attack using the blazing weapon, the target takes an extra 1d6 fire damage. The flames last until you use a bonus action to speak the command word again or until you drop or stow the weapon.\r\n\r\nRoll a d20 if you are wearing the helm and take fire damage as a result of failing a saving throw against a spell. On a roll of 1, the helm emits beams of light from its remaining gems. Each creature within 60 feet of the helm other than you must succeed on a DC 17 Dexterity saving throw or be struck by a beam, taking radiant damage equal to the number of gems in the helm. The helm and its gems are then destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_helm-of-comprehending-languages", + "fields": { + "name": "Helm of Comprehending Languages", + "desc": "While wearing this helm, you can use an action to cast the _comprehend languages_ spell from it at will.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_helm-of-telepathy", + "fields": { + "name": "Helm of Telepathy", + "desc": "While wearing this helm, you can use an action to cast the _detect thoughts_ spell (save DC 13) from it. As long as you maintain concentration on the spell, you can use a bonus action to send a telepathic message to a creature you are focused on. It can reply-using a bonus action to do so-while your focus on it continues.\r\n\r\nWhile focusing on a creature with _detect thoughts_, you can use an action to cast the _suggestion_ spell (save DC 13) from the helm on that creature. Once used, the _suggestion_ property can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_helm-of-teleportation", + "fields": { + "name": "Helm of Teleportation", + "desc": "This helm has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _teleport_ spell from it. The helm regains 1d3\r\n\r\nexpended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_herbalism-kit", + "fields": { + "name": "Herbalism Kit", + "desc": "This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create\r\nantitoxin and potions of healing.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_hide-armor", + "fields": { + "name": "Hide Armor", + "desc": "This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.", + "document": "srd", + "size": "tiny", + "weight": "12.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_holy-avenger-greatsword", + "fields": { + "name": "Holy Avenger (Greatsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_holy-avenger-longsword", + "fields": { + "name": "Holy Avenger (Longsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_holy-avenger-rapier", + "fields": { + "name": "Holy Avenger (Rapier)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_holy-avenger-shortsword", + "fields": { + "name": "Holy Avenger (Shortsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_holy-water-flask", + "fields": { + "name": "Holy Water (flask)", + "desc": "As an action, you can splash the contents of this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact.In either case, make a ranged attack against a target creature, treating the holy water as an improvised weapon. If the target is a fiend or undead, it takes 2d6 radiant damage.\\n\\nA cleric or paladin may create holy water by performing a special ritual. The ritual takes 1 hour to perform, uses 25 gp worth of powdered silver, and requires the caster to expend a 1st-­‐‑level spell slot.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_horn", + "fields": { + "name": "Horn", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "3.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_horn-of-blasting", + "fields": { + "name": "Horn of Blasting", + "desc": "You can use an action to speak the horn's command word and then blow the horn, which emits a thunderous blast in a 30-foot cone that is audible 600 feet away. Each creature in the cone must make a DC 15 Constitution saving throw. On a failed save, a creature takes 5d6 thunder damage and is deafened for 1 minute. On a successful save, a creature takes half as much damage and isn't deafened. Creatures and objects made of glass or crystal have disadvantage on the saving throw and take 10d6 thunder damage instead of 5d6.\r\n\r\nEach use of the horn's magic has a 20 percent chance of causing the horn to explode. The explosion deals 10d6 fire damage to the blower and destroys the horn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-brass", + "fields": { + "name": "Horn of Valhalla (Brass)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-bronze", + "fields": { + "name": "Horn of Valhalla (Bronze)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-iron", + "fields": { + "name": "Horn of Valhalla (Iron)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-silver", + "fields": { + "name": "Horn of Valhalla (silver)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_horseshoes-of-a-zephyr", + "fields": { + "name": "Horseshoes of a Zephyr", + "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they allow the creature to move normally while floating 4 inches above the ground. This effect means the creature can cross or stand above nonsolid or unstable surfaces, such as water or lava. The creature leaves no tracks and ignores difficult terrain. In addition, the creature can move at normal speed for up to 12 hours a day without suffering exhaustion from a forced march.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_horseshoes-of-speed", + "fields": { + "name": "Horseshoes of Speed", + "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they increase the creature's walking speed by 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_hourglass", + "fields": { + "name": "Hourglass", + "desc": "An hourglass.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_hunting-trap", + "fields": { + "name": "Hunting Trap", + "desc": "When you use your action to set it, this trap forms a saw-­‐‑toothed steel ring that snaps shut when a creature steps on a pressure plate in the center. The trap is affixed by a heavy chain to an immobile object, such as a tree or a spike driven into the ground. A creature that steps on the plate must succeed on a DC 13 Dexterity saving throw or take 1d4 piercing damage and stop moving. Thereafter, until the creature breaks free of the trap, its movement is limited by the length of the chain (typically 3 feet long). A creature can use its action to make a DC 13 Strength check, freeing itself or another creature within its reach on a success. Each failed check deals 1 piercing damage to the trapped creature.", + "document": "srd", + "size": "tiny", + "weight": "25.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_immovable-rod", + "fields": { + "name": "Immovable Rod", + "desc": "This flat iron rod has a button on one end. You can use an action to press the button, which causes the rod to become magically fixed in place. Until you or another creature uses an action to push the button again, the rod doesn't move, even if it is defying gravity. The rod can hold up to 8,000 pounds of weight. More weight causes the rod to deactivate and fall. A creature can use an action to make a DC 30 Strength check, moving the fixed rod up to 10 feet on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ink-1-ounce-bottle", + "fields": { + "name": "Ink (1 ounce bottle)", + "desc": "A bottle of ink.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_ink-pen", + "fields": { + "name": "Ink pen", + "desc": "A pen for writing with ink.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_instant-fortress", + "fields": { + "name": "Instant Fortress", + "desc": "You can use an action to place this 1-inch metal cube on the ground and speak its command word. The cube rapidly grows into a fortress that remains until you use an action to speak the command word that dismisses it, which works only if the fortress is empty.\r\n\r\nThe fortress is a square tower, 20 feet on a side and 30 feet high, with arrow slits on all sides and a battlement atop it. Its interior is divided into two floors, with a ladder running along one wall to connect them. The ladder ends at a trapdoor leading to the roof. When activated, the tower has a small door on the side facing you. The door opens only at your command, which you can speak as a bonus action. It is immune to the _knock_ spell and similar magic, such as that of a _chime of opening_.\r\n\r\nEach creature in the area where the fortress appears must make a DC 15 Dexterity saving throw, taking 10d10 bludgeoning damage on a failed save, or half as much damage on a successful one. In either case, the creature is pushed to an unoccupied space outside but next to the fortress. Objects in the area that aren't being worn or carried take this damage and are pushed automatically.\r\n\r\nThe tower is made of adamantine, and its magic prevents it from being tipped over. The roof, the door, and the walls each have 100 hit points,\r\n\r\nimmunity to damage from nonmagical weapons excluding siege weapons, and resistance to all other damage. Only a _wish_ spell can repair the fortress (this use of the spell counts as replicating a spell of 8th level or lower). Each casting of _wish_ causes the roof, the door, or one wall to regain 50 hit points.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-absorption", + "fields": { + "name": "Ioun Stone (Absorption)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\r\n\r\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\r\n\r\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\r\n\r\n**_Absorption (Very Rare)_**. While this pale lavender ellipsoid orbits your head, you can use your reaction to cancel a spell of 4th level or lower cast by a creature you can see and targeting only you.\r\n\r\nOnce the stone has canceled 20 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-agility", + "fields": { + "name": "Ioun Stone (Agility)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Agility (Very Rare)._** Your Dexterity score increases by 2, to a maximum of 20, while this deep red sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-awareness", + "fields": { + "name": "Ioun Stone (Awareness)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Awareness (Rare)._** You can't be surprised while this dark blue rhomboid orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-absorption", + "fields": { + "name": "Ioun Stone (Absorption)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Fortitude (Very Rare)_**. Your Constitution score increases by 2, to a maximum of 20, while this pink rhomboid orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-greater-absorption", + "fields": { + "name": "Ioun Stone (Greater Absorption)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Greater Absorption (Legendary)._** While this marbled lavender and green ellipsoid orbits your head, you can use your reaction to cancel a spell of 8th level or lower cast by a creature you can see and targeting only you.\\n\\nOnce the stone has canceled 50 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-insight", + "fields": { + "name": "Ioun Stone (Insight)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Insight (Very Rare)._** Your Wisdom score increases by 2, to a maximum of 20, while this incandescent blue sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-intellect", + "fields": { + "name": "Ioun Stone (Intellect)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Intellect (Very Rare)._** Your Intelligence score increases by 2, to a maximum of 20, while this marbled scarlet and blue sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-leadership", + "fields": { + "name": "Ioun Stone (Leadership)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Leadership (Very Rare)._** Your Charisma score increases by 2, to a maximum of 20, while this marbled pink and green sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-mastery", + "fields": { + "name": "Ioun Stone (Mastery)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Mastery (Legendary)._** Your proficiency bonus increases by 1 while this pale green prism orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-protection", + "fields": { + "name": "Ioun Stone (Protection)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Protection (Rare)_**. You gain a +1 bonus to AC while this dusty rose prism orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-regeneration", + "fields": { + "name": "Ioun Stone (Regeneration)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Regeneration (Legendary)_**. You regain 15 hit points at the end of each hour this pearly white spindle orbits your head, provided that you have at least 1 hit point.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-reserve", + "fields": { + "name": "Ioun Stone (Reserve)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Reserve (Rare)._** This vibrant purple prism stores spells cast into it, holding them until you use them. The stone can store up to 3 levels worth of spells at a time. When found, it contains 1d4 - 1 levels of stored spells chosen by the GM.\\n\\nAny creature can cast a spell of 1st through 3rd level into the stone by touching it as the spell is cast. The spell has no effect, other than to be stored in the stone. If the stone can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\\n\\nWhile this stone orbits your head, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the stone is no longer stored in it, freeing up space.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-strength", + "fields": { + "name": "Ioun Stone (Strength)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Strength (Very Rare)._** Your Strength score increases by 2, to a maximum of 20, while this pale blue rhomboid orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-sustenance", + "fields": { + "name": "Ioun Stone (Sustenance)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Sustenance (Rare)._** You don't need to eat or drink while this clear spindle orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_iron-bands-of-binding", + "fields": { + "name": "Iron Bands of Binding", + "desc": "This rusty iron sphere measures 3 inches in diameter and weighs 1 pound. You can use an action to speak the command word and throw the sphere at a Huge or smaller creature you can see within 60 feet of you. As the sphere moves through the air, it opens into a tangle of metal bands.\r\n\r\nMake a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the target is restrained until you take a bonus action to speak the command word again to release it. Doing so, or missing with the attack, causes the bands to contract and become a sphere once more.\r\n\r\nA creature, including the one restrained, can use an action to make a DC 20 Strength check to break the iron bands. On a success, the item is destroyed, and the restrained creature is freed. If the check fails, any further attempts made by that creature automatically fail until 24 hours have elapsed.\r\n\r\nOnce the bands are used, they can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_iron-flask", + "fields": { + "name": "Iron Flask", + "desc": "This iron bottle has a brass stopper. You can use an action to speak the flask's command word, targeting a creature that you can see within 60 feet of you. If the target is native to a plane of existence other than the one you're on, the target must succeed on a DC 17 Wisdom saving throw or be trapped in the flask. If the target has been trapped by the flask before, it has advantage on the saving throw. Once trapped, a creature remains in the flask until released. The flask can hold only one creature at a time. A creature trapped in the flask doesn't need to breathe, eat, or drink and doesn't age.\r\n\r\nYou can use an action to remove the flask's stopper and release the creature the flask contains. The creature is friendly to you and your companions for 1 hour and obeys your commands for that duration. If you give no commands or give it a command that is likely to result in its death, it defends itself but otherwise takes no actions. At the end of the duration, the creature acts in accordance with its normal disposition and alignment.\r\n\r\nAn _identify_ spell reveals that a creature is inside the flask, but the only way to determine the type of creature is to open the flask. A newly discovered bottle might already contain a creature chosen by the GM or determined randomly.\r\n\r\n| d100 | Contents |\r\n|-------|-------------------|\r\n| 1-50 | Empty |\r\n| 51-54 | Demon (type 1) |\r\n| 55-58 | Demon (type 2) |\r\n| 59-62 | Demon (type 3) |\r\n| 63-64 | Demon (type 4) |\r\n| 65 | Demon (type 5) |\r\n| 66 | Demon (type 6) |\r\n| 67 | Deva |\r\n| 68-69 | Devil (greater) |\r\n| 70-73 | Devil (lesser) |\r\n| 74-75 | Djinni |\r\n| 76-77 | Efreeti |\r\n| 78-83 | Elemental (any) |\r\n| 84-86 | Invisible stalker |\r\n| 87-90 | Night hag |\r\n| 91 | Planetar |\r\n| 92-95 | Salamander |\r\n| 96 | Solar |\r\n| 97-99 | Succubus/incubus |\r\n| 100 | Xorn |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_javelin", + "fields": { + "name": "Javelin", + "desc": "A javelin", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_javelin-1", + "fields": { + "name": "Javelin (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_javelin-2", + "fields": { + "name": "Javelin (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_javelin-3", + "fields": { + "name": "Javelin (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_javelin-of-lightning", + "fields": { + "name": "Javelin of Lightning", + "desc": "This javelin is a magic weapon. When you hurl it and speak its command word, it transforms into a bolt of lightning, forming a line 5 feet wide that extends out from you to a target within 120 feet. Each creature in the line excluding you and the target must make a DC 13 Dexterity saving throw, taking 4d6 lightning damage on a failed save, and half as much damage on a successful one. The lightning bolt turns back into a javelin when it reaches the target. Make a ranged weapon attack against the target. On a hit, the target takes damage from the javelin plus 4d6 lightning damage.\n\nThe javelin's property can't be used again until the next dawn. In the meantime, the javelin can still be used as a magic weapon.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_jewelers-tools", + "fields": { + "name": "Jeweler's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_jug-or-pitcher", + "fields": { + "name": "Jug or pitcher", + "desc": "For drinking a lot. Capacity: 1 gallon liquid.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_keelboat", + "fields": { + "name": "Keelboat", + "desc": "Waterborne vehicle. Speed is 1mph.", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "3000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_ladder-10-foot", + "fields": { + "name": "Ladder (10-foot)", + "desc": "A 10 foot ladder.", + "document": "srd", + "size": "tiny", + "weight": "25.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lamp", + "fields": { + "name": "Lamp", + "desc": "A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lamp-oil-flask", + "fields": { + "name": "Lamp oil (flask)", + "desc": "Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon. On a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-­foot‑square area, provided that the surface is level. If lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lance", + "fields": { + "name": "Lance", + "desc": "A lance.\r\n\r\nYou have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lance-1", + "fields": { + "name": "Lance (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_lance-2", + "fields": { + "name": "Lance (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_lance-3", + "fields": { + "name": "Lance (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_lantern-bullseye", + "fields": { + "name": "Lantern, Bullseye", + "desc": "A bullseye lantern casts bright light in a 60-­‐‑foot cone and dim light for an additional 60 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lantern-hooded", + "fields": { + "name": "Lantern, Hooded", + "desc": "A hooded lantern casts bright light in a 30-­‐‑foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil. As an action, you can lower the hood, reducing the light to dim light in a 5-­‐‑foot radius.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lantern-of-revealing", + "fields": { + "name": "Lantern of Revealing", + "desc": "While lit, this hooded lantern burns for 6 hours on 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the lantern's bright light. You can use an action to lower the hood, reducing the light to dim light in a 5* foot radius.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_leather-armor", + "fields": { + "name": "Leather Armor", + "desc": "The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_leatherworkers-tools", + "fields": { + "name": "Leatherworker's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_light-hammer", + "fields": { + "name": "Light hammer", + "desc": "A light hammer.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_light-hammer-1", + "fields": { + "name": "Light-Hammer (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_light-hammer-2", + "fields": { + "name": "Light-Hammer (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_light-hammer-3", + "fields": { + "name": "Light-Hammer (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_lock", + "fields": { + "name": "Lock", + "desc": "A key is provided with the lock. Without the key, a creature proficient with thieves’ tools can pick this lock with a successful DC 15 Dexterity check. Your GM may decide that better locks are available for higher prices.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_longbow", + "fields": { + "name": "Longbow", + "desc": "A longbow.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_longbow-1", + "fields": { + "name": "Longbow (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_longbow-2", + "fields": { + "name": "Longbow (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_longbow-3", + "fields": { + "name": "Longbow (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_longship", + "fields": { + "name": "Longship", + "desc": "Waterborne vehicle. Speed 3mph.", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_longsword", + "fields": { + "name": "Longsword", + "desc": "A longsword", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_longsword-1", + "fields": { + "name": "Longsword (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_longsword-2", + "fields": { + "name": "Longsword (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_longsword-3", + "fields": { + "name": "Longsword (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_luck-blade-greatsword", + "fields": { + "name": "Luck Blade (Greatsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_luck-blade-longsword", + "fields": { + "name": "Luck Blade (Longsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_luck-blade-rapier", + "fields": { + "name": "Luck Blade (Rapier)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_luck-blade-shortsword", + "fields": { + "name": "Luck Blade (Shortsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lute", + "fields": { + "name": "Lute", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "35.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lyre", + "fields": { + "name": "Lyre", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace", + "fields": { + "name": "Mace", + "desc": "A mace.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace-1", + "fields": { + "name": "Mace (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace-2", + "fields": { + "name": "Mace (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace-3", + "fields": { + "name": "Mace (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace-of-disruption", + "fields": { + "name": "Mace of Disruption", + "desc": "When you hit a fiend or an undead with this magic weapon, that creature takes an extra 2d6 radiant damage. If the target has 25 hit points or fewer after taking this damage, it must succeed on a DC 15 Wisdom saving throw or be destroyed. On a successful save, the creature becomes frightened of you until the end of your next turn.\n\nWhile you hold this weapon, it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace-of-smiting", + "fields": { + "name": "Mace of Smiting", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the mace to attack a construct.\n\nWhen you roll a 20 on an attack roll made with this weapon, the target takes an extra 2d6 bludgeoning damage, or 4d6 bludgeoning damage if it's a construct. If a construct has 25 hit points or fewer after taking this damage, it is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace-of-terror", + "fields": { + "name": "Mace of Terror", + "desc": "This magic weapon has 3 charges. While holding it, you can use an action and expend 1 charge to release a wave of terror. Each creature of your choice in a 30-foot radius extending from you must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.\n\nThe mace regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_magnifying-glass", + "fields": { + "name": "Magnifying Glass", + "desc": "This lens allows a closer look at small objects. It is also useful as a substitute for flint and steel when starting fires. Lighting a fire with a magnifying glass requires light as bright as sunlight to focus, tinder to ignite, and about 5 minutes for the fire to ignite. A magnifying glass grants advantage on any ability check made to appraise or inspect an item that is small or highly detailed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "100.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_malice", + "fields": { + "name": "Malice", + "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 1 hour. The poisoned creature is blinded.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "250.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_manacles", + "fields": { + "name": "Manacles", + "desc": "These metal restraints can bind a Small or Medium creature. Escaping the manacles requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of manacles comes with one key. Without the key, a creature proficient with thieves’ tools can pick the manacles’ lock with a successful DC 15 Dexterity check. Manacles have 15 hit points.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 15, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mantle-of-spell-resistance", + "fields": { + "name": "Mantle of Spell Resistance", + "desc": "You have advantage on saving throws against spells while you wear this cloak.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_manual-of-bodily-health", + "fields": { + "name": "Manual of Bodily Health", + "desc": "This book contains health and diet tips, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Constitution score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_manual-of-gainful-exercise", + "fields": { + "name": "Manual of Gainful Exercise", + "desc": "This book describes fitness exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Strength score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_manual-of-golems", + "fields": { + "name": "Manual of Golems", + "desc": "This tome contains information and incantations necessary to make a particular type of golem. The GM chooses the type or determines it randomly. To decipher and use the manual, you must be a spellcaster with at least two 5th-level spell slots. A creature that can't use a _manual of golems_ and attempts to read it takes 6d6 psychic damage.\r\n\r\n| d20 | Golem | Time | Cost |\r\n|-------|-------|----------|------------|\r\n| 1-5 | Clay | 30 days | 65,000 gp |\r\n| 6-17 | Flesh | 60 days | 50,000 gp |\r\n| 18 | Iron | 120 days | 100,000 gp |\r\n| 19-20 | Stone | 90 days | 80,000 gp |\r\n\r\nTo create a golem, you must spend the time shown on the table, working without interruption with the manual at hand and resting no more than 8 hours per day. You must also pay the specified cost to purchase supplies.\r\n\r\nOnce you finish creating the golem, the book is consumed in eldritch flames. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_manual-of-quickness-of-action", + "fields": { + "name": "Manual of Quickness of Action", + "desc": "This book contains coordination and balance exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Dexterity score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_marvelous-pigments", + "fields": { + "name": "Marvelous Pigments", + "desc": "Typically found in 1d4 pots inside a fine wooden box with a brush (weighing 1 pound in total), these pigments allow you to create three-dimensional objects by painting them in two dimensions. The paint flows from the brush to form the desired object as you concentrate on its image.\r\n\r\nEach pot of paint is sufficient to cover 1,000 square feet of a surface, which lets you create inanimate objects or terrain features-such as a door, a pit, flowers, trees, cells, rooms, or weapons- that are up to 10,000 cubic feet. It takes 10 minutes to cover 100 square feet.\r\n\r\nWhen you complete the painting, the object or terrain feature depicted becomes a real, nonmagical object. Thus, painting a door on a wall creates an actual door that can be opened to whatever is beyond. Painting a pit on a floor creates a real pit, and its depth counts against the total area of objects you create.\r\n\r\nNothing created by the pigments can have a value greater than 25 gp. If you paint an object of greater value (such as a diamond or a pile of gold), the object looks authentic, but close inspection reveals it is made from paste, bone, or some other worthless material.\r\n\r\nIf you paint a form of energy such as fire or lightning, the energy appears but dissipates as soon as you complete the painting, doing no harm to anything.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_masons-tools", + "fields": { + "name": "Mason's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_maul", + "fields": { + "name": "Maul", + "desc": "A maul.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_maul-1", + "fields": { + "name": "Maul (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_maul-2", + "fields": { + "name": "Maul (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_maul-3", + "fields": { + "name": "Maul (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_medallion-of-thoughts", + "fields": { + "name": "Medallion of Thoughts", + "desc": "The medallion has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _detect thoughts_ spell (save DC 13) from it. The medallion regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mess-kit", + "fields": { + "name": "Mess Kit", + "desc": "This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_midnight-tears", + "fields": { + "name": "Midnight tears", + "desc": "A creature that ingests this poison suffers no effect until the stroke of midnight. If the poison has not been neutralized before then, the creature must succeed on a DC 17 Constitution saving throw, taking 31 (9d6) poison damage on a failed save, or half as much damage on a successful one.\\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1500.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mirror-of-life-trapping", + "fields": { + "name": "Mirror of Life Trapping", + "desc": "When this 4-foot-tall mirror is viewed indirectly, its surface shows faint images of creatures. The mirror weighs 50 pounds, and it has AC 11, 10 hit points, and vulnerability to bludgeoning damage. It shatters and is destroyed when reduced to 0 hit points.\r\n\r\nIf the mirror is hanging on a vertical surface and you are within 5 feet of it, you can use an action to speak its command word and activate it. It remains activated until you use an action to speak the command word again.\r\n\r\nAny creature other than you that sees its reflection in the activated mirror while within 30 feet of it must succeed on a DC 15 Charisma saving throw or be trapped, along with anything it is wearing or carrying, in one of the mirror's twelve extradimensional cells. This saving throw is made with advantage if the creature knows the mirror's nature, and constructs succeed on the saving throw automatically.\r\n\r\nAn extradimensional cell is an infinite expanse filled with thick fog that reduces visibility to 10 feet. Creatures trapped in the mirror's cells don't age, and they don't need to eat, drink, or sleep. A creature trapped within a cell can escape using magic that permits planar travel. Otherwise, the creature is confined to the cell until freed.\r\n\r\nIf the mirror traps a creature but its twelve extradimensional cells are already occupied, the mirror frees one trapped creature at random to accommodate the new prisoner. A freed creature appears in an unoccupied space within sight of the mirror but facing away from it. If the mirror is shattered, all creatures it contains are freed and appear in unoccupied spaces near it.\r\n\r\nWhile within 5 feet of the mirror, you can use an action to speak the name of one creature trapped in it or call out a particular cell by number. The creature named or contained in the named cell appears as an image on the mirror's surface. You and the creature can then communicate normally.\r\n\r\nIn a similar way, you can use an action to speak a second command word and free one creature trapped in the mirror. The freed creature appears, along with its possessions, in the unoccupied space nearest to the mirror and facing away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mirror-steel", + "fields": { + "name": "Mirror, steel", + "desc": "A mirror.", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-breastplate", + "fields": { + "name": "Mithral Armor (Breastplate)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-chain-mail", + "fields": { + "name": "Mithral Armor (Chain-Mail)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-chain-shirt", + "fields": { + "name": "Mithral Armor (Chain-Shirt)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-half-plate", + "fields": { + "name": "Mithral Armor (Half-Plate)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "half-plate", + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-hide", + "fields": { + "name": "Mithral Armor (Hide)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-plate", + "fields": { + "name": "Mithral Armor (Plate)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-ring-mail", + "fields": { + "name": "Mithral Armor (Ring-Mail)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-scale-mail", + "fields": { + "name": "Mithral Armor (Scale-Mail)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-splint", + "fields": { + "name": "Mithral Armor (Splint)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_morningstar", + "fields": { + "name": "Morningstar", + "desc": "A morningstar", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_morningstar-1", + "fields": { + "name": "Morningstar (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_morningstar-2", + "fields": { + "name": "Morningstar (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_morningstar-3", + "fields": { + "name": "Morningstar (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_navigators-tools", + "fields": { + "name": "Navigator's tools", + "desc": "This set of instruments is used for navigation at sea. Proficiency with navigator's tools lets you chart a ship's course and follow navigation charts. In addition, these tools allow you to add your proficiency bonus to any ability check you make to avoid getting lost at sea.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_necklace-of-adaptation", + "fields": { + "name": "Necklace of Adaptation", + "desc": "While wearing this necklace, you can breathe normally in any environment, and you have advantage on saving throws made against harmful gases and vapors (such as _cloudkill_ and _stinking cloud_ effects, inhaled poisons, and the breath weapons of some dragons).", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_necklace-of-fireballs", + "fields": { + "name": "Necklace of Fireballs", + "desc": "This necklace has 1d6 + 3 beads hanging from it. You can use an action to detach a bead and throw it up to 60 feet away. When it reaches the end of its trajectory, the bead detonates as a 3rd-level _fireball_ spell (save DC 15).\r\n\r\nYou can hurl multiple beads, or even the whole necklace, as one action. When you do so, increase the level of the _fireball_ by 1 for each bead beyond the first.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_necklace-of-prayer-beads", + "fields": { + "name": "Necklace of Prayer Beads", + "desc": "This necklace has 1d4 + 2 magic beads made from aquamarine, black pearl, or topaz. It also has many nonmagical beads made from stones such as amber, bloodstone, citrine, coral, jade, pearl, or quartz. If a magic bead is removed from the necklace, that bead loses its magic.\r\n\r\nSix types of magic beads exist. The GM decides the type of each bead on the necklace or determines it randomly. A necklace can have more than one bead of the same type. To use one, you must be wearing the necklace. Each bead contains a spell that you can cast from it as a bonus action (using your spell save DC if a save is necessary). Once a magic bead's spell is cast, that bead can't be used again until the next dawn.\r\n\r\n| d20 | Bead of... | Spell |\r\n|-------|--------------|-----------------------------------------------|\r\n| 1-6 | Blessing | Bless |\r\n| 7-12 | Curing | Cure wounds (2nd level) or lesser restoration |\r\n| 13-16 | Favor | Greater restoration |\r\n| 17-18 | Smiting | Branding smite |\r\n| 19 | Summons | Planar ally |\r\n| 20 | Wind walking | Wind walk |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_net", + "fields": { + "name": "Net", + "desc": "A net.\r\n\r\nA Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net.\r\n\r\nWhen you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_net-1", + "fields": { + "name": "Net (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_net-2", + "fields": { + "name": "Net (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_net-3", + "fields": { + "name": "Net (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-greatsword", + "fields": { + "name": "Nine Lives Stealer (Greatsword)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-longsword", + "fields": { + "name": "Nine Lives Stealer (Longsword)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-rapier", + "fields": { + "name": "Nine Lives Stealer (Rapier)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-shortsword", + "fields": { + "name": "Nine Lives Stealer (Shortsword)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_oathbow", + "fields": { + "name": "Oathbow", + "desc": "When you nock an arrow on this bow, it whispers in Elvish, \"Swift defeat to my enemies.\" When you use this weapon to make a ranged attack, you can, as a command phrase, say, \"Swift death to you who have wronged me.\" The target of your attack becomes your sworn enemy until it dies or until dawn seven days later. You can have only one such sworn enemy at a time. When your sworn enemy dies, you can choose a new one after the next dawn.\n\nWhen you make a ranged attack roll with this weapon against your sworn enemy, you have advantage on the roll. In addition, your target gains no benefit from cover, other than total cover, and you suffer no disadvantage due to long range. If the attack hits, your sworn enemy takes an extra 3d6 piercing damage.\n\nWhile your sworn enemy lives, you have disadvantage on attack rolls with all other weapons.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_oil-of-etherealness", + "fields": { + "name": "Oil of Etherealness", + "desc": "Beads of this cloudy gray oil form on the outside of its container and quickly evaporate. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of the _etherealness_ spell for 1 hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_oil-of-sharpness", + "fields": { + "name": "Oil of Sharpness", + "desc": "This clear, gelatinous oil sparkles with tiny, ultrathin silver shards. The oil can coat one slashing or piercing weapon or up to 5 pieces of slashing or piercing ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical and has a +3 bonus to attack and damage rolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_oil-of-slipperiness", + "fields": { + "name": "Oil of Slipperiness", + "desc": "This sticky black unguent is thick and heavy in the container, but it flows quickly when poured. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of a _freedom of movement_ spell for 8 hours.\n\nAlternatively, the oil can be poured on the ground as an action, where it covers a 10-foot square, duplicating the effect of the _grease_ spell in that area for 8 hours.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_oil-of-taggit", + "fields": { + "name": "Oil of taggit", + "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or become poisoned for 24 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage.\\n\\n **_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "400.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_orb", + "fields": { + "name": "Orb", + "desc": "Can be used as an Arcane Focus.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_orb-of-dragonkind", + "fields": { + "name": "Orb of Dragonkind", + "desc": "Ages past, elves and humans waged a terrible war against evil dragons. When the world seemed doomed, powerful wizards came together and worked their greatest magic, forging five _Orbs of Dragonkind_ (or _Dragon Orbs_) to help them defeat the dragons. One orb was taken to each of the five wizard towers, and there they were used to speed the war toward a victorious end. The wizards used the orbs to lure dragons to them, then destroyed the dragons with powerful magic.\\n\\nAs the wizard towers fell in later ages, the orbs were destroyed or faded into legend, and only three are thought to survive. Their magic has been warped and twisted over the centuries, so although their primary purpose of calling dragons still functions, they also allow some measure of control over dragons.\\n\\nEach orb contains the essence of an evil dragon, a presence that resents any attempt to coax magic from it. Those lacking in force of personality might find themselves enslaved to an orb.\\n\\nAn orb is an etched crystal globe about 10 inches in diameter. When used, it grows to about 20 inches in diameter, and mist swirls inside it.\\n\\nWhile attuned to an orb, you can use an action to peer into the orb's depths and speak its command word. You must then make a DC 15 Charisma check. On a successful check, you control the orb for as long as you remain attuned to it. On a failed check, you become charmed by the orb for as long as you remain attuned to it.\\n\\nWhile you are charmed by the orb, you can't voluntarily end your attunement to it, and the orb casts _suggestion_ on you at will (save DC 18), urging you to work toward the evil ends it desires. The dragon essence within the orb might want many things: the annihilation of a particular people, freedom from the orb, to spread suffering in the world, to advance the worship of Tiamat, or something else the GM decides.\\n\\n**_Random Properties_**. An _Orb of Dragonkind_ has the following random properties:\\n\\n* 2 minor beneficial properties\\n* 1 minor detrimental property\\n* 1 major detrimental property\\n\\n**_Spells_**. The orb has 7 charges and regains 1d4 + 3 expended charges daily at dawn. If you control the orb, you can use an action and expend 1 or more charges to cast one of the following spells (save DC 18) from it: _cure wounds_ (5th-level version, 3 charges), _daylight_ (1 charge), _death ward_ (2 charges), or _scrying_ (3 charges).\\n\\nYou can also use an action to cast the _detect magic_ spell from the orb without using any charges.\\n\\n**_Call Dragons_**. While you control the orb, you can use an action to cause the artifact to issue a telepathic call that extends in all directions for 40 miles. Evil dragons in range feel compelled to come to the orb as soon as possible by the most direct route. Dragon deities such as Tiamat are unaffected by this call. Dragons drawn to the orb might be hostile toward you for compelling them against their will. Once you have used this property, it can't be used again for 1 hour.\\n\\n**_Destroying an Orb_**. An _Orb of Dragonkind_ appears fragile but is impervious to most damage, including the attacks and breath weapons of dragons. A _disintegrate_ spell or one good hit from a +3 magic weapon is sufficient to destroy an orb, however.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "artifact" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ox", + "fields": { + "name": "Ox", + "desc": "One ox.", + "document": "srd", + "size": "large", + "weight": "1500.000", + "armor_class": 10, + "hit_points": 15, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_padded-armor", + "fields": { + "name": "Padded Armor", + "desc": "Padded armor consists of quilted layers of cloth and batting.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_painters-supplies", + "fields": { + "name": "Painter's Supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pale-tincture", + "fields": { + "name": "Pale tincture", + "desc": "A creature subjected to this poison must succeed on a DC 16 Constitution saving throw or take 3 (1d6) poison damage and become poisoned. The poisoned creature must repeat the saving throw every 24 hours, taking 3 (1d6) poison damage on a failed save. Until this poison ends, the damage the poison deals can't be healed by any means. After seven successful saving throws, the effect ends and the creature can heal normally. \\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "250.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pan-flute", + "fields": { + "name": "Pan flute", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "12.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_paper-one-sheet", + "fields": { + "name": "Paper (one sheet)", + "desc": "A sheet of paper", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_parchment-one-sheet", + "fields": { + "name": "Parchment (one sheet)", + "desc": "A sheet of parchment", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pearl-of-power", + "fields": { + "name": "Pearl of Power", + "desc": "While this pearl is on your person, you can use an action to speak its command word and regain one expended spell slot. If the expended slot was of 4th level or higher, the new slot is 3rd level. Once you use the pearl, it can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_perfume-vial", + "fields": { + "name": "Perfume (vial)", + "desc": "A vial of perfume.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_periapt-of-health", + "fields": { + "name": "Periapt of Health", + "desc": "You are immune to contracting any disease while you wear this pendant. If you are already infected with a disease, the effects of the disease are suppressed you while you wear the pendant.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_periapt-of-proof-against-poison", + "fields": { + "name": "Periapt of Proof against Poison", + "desc": "This delicate silver chain has a brilliant-cut black gem pendant. While you wear it, poisons have no effect on you. You are immune to the poisoned condition and have immunity to poison damage.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_periapt-of-wound-closure", + "fields": { + "name": "Periapt of Wound Closure", + "desc": "While you wear this pendant, you stabilize whenever you are dying at the start of your turn. In addition, whenever you roll a Hit Die to regain hit points, double the number of hit points it restores.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_philter-of-love", + "fields": { + "name": "Philter of Love", + "desc": "The next time you see a creature within 10 minutes after drinking this philter, you become charmed by that creature for 1 hour. If the creature is of a species and gender you are normally attracted to, you regard it as your true love while you are charmed. This potion's rose-hued, effervescent liquid contains one easy-to-miss bubble shaped like a heart.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_pick-miners", + "fields": { + "name": "Pick, miner's", + "desc": "A pick for mining.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pig", + "fields": { + "name": "Pig", + "desc": "One pig.", + "document": "srd", + "size": "medium", + "weight": "400.000", + "armor_class": 10, + "hit_points": 4, + "cost": "3.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pike", + "fields": { + "name": "Pike", + "desc": "A pike.", + "document": "srd", + "size": "tiny", + "weight": "18.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pike-1", + "fields": { + "name": "Pike (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_pike-2", + "fields": { + "name": "Pike (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_pike-3", + "fields": { + "name": "Pike (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_pipes-of-haunting", + "fields": { + "name": "Pipes of Haunting", + "desc": "You must be proficient with wind instruments to use these pipes. They have 3 charges. You can use an action to play them and expend 1 charge to create an eerie, spellbinding tune. Each creature within 30 feet of you that hears you play must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. If you wish, all creatures in the area that aren't hostile toward you automatically succeed on the saving throw. A creature that fails the saving throw can repeat it at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on its saving throw is immune to the effect of these pipes for 24 hours. The pipes regain 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_pipes-of-the-sewers", + "fields": { + "name": "Pipes of the Sewers", + "desc": "You must be proficient with wind instruments to use these pipes. While you are attuned to the pipes, ordinary rats and giant rats are indifferent toward you and will not attack you unless you threaten or harm them.\r\n\r\nThe pipes have 3 charges. If you play the pipes as an action, you can use a bonus action to expend 1 to 3 charges, calling forth one swarm of rats with each expended charge, provided that enough rats are within half a mile of you to be called in this fashion (as determined by the GM). If there aren't enough rats to form a swarm, the charge is wasted. Called swarms move toward the music by the shortest available route but aren't under your control otherwise. The pipes regain 1d3 expended charges daily at dawn.\r\n\r\nWhenever a swarm of rats that isn't under another creature's control comes within 30 feet of you while you are playing the pipes, you can make a Charisma check contested by the swarm's Wisdom check. If you lose the contest, the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours. If you win the contest, the swarm is swayed by the pipes' music and becomes friendly to you and your companions for as long as you continue to play the pipes each round as an action. A friendly swarm obeys your commands. If you issue no commands to a friendly swarm, it defends itself but otherwise takes no actions. If a friendly swarm starts its turn and can't hear the pipes' music, your control over that swarm ends, and the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_piton", + "fields": { + "name": "Piton", + "desc": "A piton for climbing.", + "document": "srd", + "size": "tiny", + "weight": "0.250", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_plate-armor", + "fields": { + "name": "Plate Armor", + "desc": "Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.", + "document": "srd", + "size": "tiny", + "weight": "65.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1500.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_plate-armor-of-etherealness", + "fields": { + "name": "Plate Armor of Etherealness", + "desc": "While you're wearing this armor, you can speak its command word as an action to gain the effect of the _etherealness_ spell, which last for 10 minutes or until you remove the armor or use an action to speak the command word again. This property of the armor can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_playing-card-set", + "fields": { + "name": "Playing card set", + "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_poison-basic", + "fields": { + "name": "Poison, Basic", + "desc": "You can use the poison in this vial to coat one slashing or piercing weapon or up to three pieces of ammunition. Applying the poison takes an action. A creature hit by the poisoned weapon or ammunition must make a DC 10 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "100.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_poisoners-kit", + "fields": { + "name": "Poisoner's kit", + "desc": "A poisoner’s kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pole-10-foot", + "fields": { + "name": "Pole (10-foot)", + "desc": "A 10 foot pole.", + "document": "srd", + "size": "tiny", + "weight": "7.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_portable-hole", + "fields": { + "name": "Portable Hole", + "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold a _portable hole_ and place it on or against a solid surface, whereupon the _portable hole_ creates an extradimensional hole 10 feet deep. The cylindrical space within the hole exists on a different plane, so it can't be used to create open passages. Any creature inside an open _portable hole_ can exit the hole by climbing out of it.\r\n\r\nYou can use an action to close a _portable hole_ by taking hold of the edges of the cloth and folding it up. Folding the cloth closes the hole, and any creatures or objects within remain in the extradimensional space. No matter what's in it, the hole weighs next to nothing.\r\n\r\nIf the hole is folded up, a creature within the hole's extradimensional space can use an action to make a DC 10 Strength check. On a successful check, the creature forces its way out and appears within 5 feet of the _portable hole_ or the creature carrying it. A breathing creature within a closed _portable hole_ can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing a _portable hole_ inside an extradimensional space created by a _bag of holding_, _handy haversack_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_pot-iron", + "fields": { + "name": "Pot, iron", + "desc": "An iron pot. Capacity: 1 gallon liquid.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-animal-friendship", + "fields": { + "name": "Potion of Animal Friendship", + "desc": "When you drink this potion, you can cast the _animal friendship_ spell (save DC 13) for 1 hour at will. Agitating this muddy liquid brings little bits into view: a fish scale, a hummingbird tongue, a cat claw, or a squirrel hair.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-clairvoyance", + "fields": { + "name": "Potion of Clairvoyance", + "desc": "When you drink this potion, you gain the effect of the _clairvoyance_ spell. An eyeball bobs in this yellowish liquid but vanishes when the potion is opened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-climbing", + "fields": { + "name": "Potion of Climbing", + "desc": "When you drink this potion, you gain a climbing speed equal to your walking speed for 1 hour. During this time, you have advantage on Strength (Athletics) checks you make to climb. The potion is separated into brown, silver, and gray layers resembling bands of stone. Shaking the bottle fails to mix the colors.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-cloud-giant-strength", + "fields": { + "name": "Potion of Cloud Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-diminution", + "fields": { + "name": "Potion of Diminution", + "desc": "When you drink this potion, you gain the \"reduce\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously contracts to a tiny bead and then expands to color the clear liquid around it. Shaking the bottle fails to interrupt this process.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-fire-giant-strength", + "fields": { + "name": "Potion of Fire Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-flying", + "fields": { + "name": "Potion of Flying", + "desc": "When you drink this potion, you gain a flying speed equal to your walking speed for 1 hour and can hover. If you're in the air when the potion wears off, you fall unless you have some other means of staying aloft. This potion's clear liquid floats at the top of its container and has cloudy white impurities drifting in it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-frost-giant-strength", + "fields": { + "name": "Potion of Frost Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-gaseous-form", + "fields": { + "name": "Potion of Gaseous Form", + "desc": "When you drink this potion, you gain the effect of the _gaseous form_ spell for 1 hour (no concentration required) or until you end the effect as a bonus action. This potion's container seems to hold fog that moves and pours like water.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-greater-healing", + "fields": { + "name": "Potion of Greater Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-growth", + "fields": { + "name": "Potion of Growth", + "desc": "When you drink this potion, you gain the \"enlarge\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously expands from a tiny bead to color the clear liquid around it and then contracts. Shaking the bottle fails to interrupt this process.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-healing", + "fields": { + "name": "Potion of Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-heroism", + "fields": { + "name": "Potion of Heroism", + "desc": "For 1 hour after drinking it, you gain 10 temporary hit points that last for 1 hour. For the same duration, you are under the effect of the _bless_ spell (no concentration required). This blue potion bubbles and steams as if boiling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-hill-giant-strength", + "fields": { + "name": "Potion of Hill Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-invisibility", + "fields": { + "name": "Potion of Invisibility", + "desc": "This potion's container looks empty but feels as though it holds liquid. When you drink it, you become invisible for 1 hour. Anything you wear or carry is invisible with you. The effect ends early if you attack or cast a spell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-mind-reading", + "fields": { + "name": "Potion of Mind Reading", + "desc": "When you drink this potion, you gain the effect of the _detect thoughts_ spell (save DC 13). The potion's dense, purple liquid has an ovoid cloud of pink floating in it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-poison", + "fields": { + "name": "Potion of Poison", + "desc": "This concoction looks, smells, and tastes like a _potion of healing_ or other beneficial potion. However, it is actually poison masked by illusion magic. An _identify_ spell reveals its true nature.\n\nIf you drink it, you take 3d6 poison damage, and you must succeed on a DC 13 Constitution saving throw or be poisoned. At the start of each of your turns while you are poisoned in this way, you take 3d6 poison damage. At the end of each of your turns, you can repeat the saving throw. On a successful save, the poison damage you take on your subsequent turns decreases by 1d6. The poison ends when the damage decreases to 0.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-resistance", + "fields": { + "name": "Potion of Resistance", + "desc": "When you drink this potion, you gain resistance to one type of damage for 1 hour. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-speed", + "fields": { + "name": "Potion of Speed", + "desc": "When you drink this potion, you gain the effect of the _haste_ spell for 1 minute (no concentration required). The potion's yellow fluid is streaked with black and swirls on its own.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-stone-giant-strength", + "fields": { + "name": "Potion of Stone Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-storm-giant-strength", + "fields": { + "name": "Potion of Storm Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-superior-healing", + "fields": { + "name": "Potion of Superior Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-supreme-healing", + "fields": { + "name": "Potion of Supreme Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-water-breathing", + "fields": { + "name": "Potion of Water Breathing", + "desc": "You can breathe underwater for 1 hour after drinking this potion. Its cloudy green fluid smells of the sea and has a jellyfish-like bubble floating in it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potters-tools", + "fields": { + "name": "Potter's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pouch", + "fields": { + "name": "Pouch", + "desc": "A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch (described earlier in this section).\r\nCapacity: 1/5 cubic foot/6 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_platinum-piece", + "fields": { + "name": "Platinum Piece", + "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_purple-worm-poison", + "fields": { + "name": "Purple worm poison", + "desc": "This poison must be harvested from a dead or incapacitated purple worm. A creature subjected to this poison must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2000.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_quarterstaff-1", + "fields": { + "name": "Quarterstaff (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_quarterstaff-2", + "fields": { + "name": "Quarterstaff (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_quarterstaff-3", + "fields": { + "name": "Quarterstaff (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_quarterstaff", + "fields": { + "name": "Quarterstaff", + "desc": "A quarterstaff.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_quiver", + "fields": { + "name": "Quiver", + "desc": "A quiver can hold up to 20 arrows.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_ram-portable", + "fields": { + "name": "Ram, Portable", + "desc": "You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.", + "document": "srd", + "size": "tiny", + "weight": "35.000", + "armor_class": 0, + "hit_points": 0, + "cost": "4.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_rapier", + "fields": { + "name": "Rapier", + "desc": "A rapier.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_rapier-1", + "fields": { + "name": "Rapier (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rapier-2", + "fields": { + "name": "Rapier (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rapier-3", + "fields": { + "name": "Rapier (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rations-1-day", + "fields": { + "name": "Rations (1 day)", + "desc": "Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_reliquary", + "fields": { + "name": "Reliquary", + "desc": "Can be used as a holy symbol.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_restorative-ointment", + "fields": { + "name": "Restorative Ointment", + "desc": "This glass jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture that smells faintly of aloe. The jar and its contents weigh 1/2 pound.\r\n\r\nAs an action, one dose of the ointment can be swallowed or applied to the skin. The creature that receives it regains 2d8 + 2 hit points, ceases to be poisoned, and is cured of any disease.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-mail", + "fields": { + "name": "Ring mail", + "desc": "This armor is leather armor with heavy rings sewn into it. The rings help reinforce the armor against blows from swords and axes. Ring mail is inferior to chain mail, and it's usually worn only by those who can't afford better armor.", + "document": "srd", + "size": "tiny", + "weight": "40.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-animal-influence", + "fields": { + "name": "Ring of Animal Influence", + "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 of its charges to cast one of the following spells:\n\n* _Animal friendship_ (save DC 13)\n* _Fear_ (save DC 13), targeting only beasts that have an Intelligence of 3 or lower\n* _Speak with animals_", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-djinni-summoning", + "fields": { + "name": "Ring of Djinni Summoning", + "desc": "While wearing this ring, you can speak its command word as an action to summon a particular djinni from the Elemental Plane of Air. The djinni appears in an unoccupied space you choose within 120 feet of you. It remains as long as you concentrate (as if concentrating on a spell), to a maximum of 1 hour, or until it drops to 0 hit points. It then returns to its home plane.\n\nWhile summoned, the djinni is friendly to you and your companions. It obeys any commands you give it, no matter what language you use. If you fail to command it, the djinni defends itself against attackers but takes no other actions.\n\nAfter the djinni departs, it can't be summoned again for 24 hours, and the ring becomes nonmagical if the djinni dies.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-elemental-command", + "fields": { + "name": "Ring of Elemental Command", + "desc": "This ring is linked to one of the four Elemental Planes. The GM chooses or randomly determines the linked plane.\n\nWhile wearing this ring, you have advantage on attack rolls against elementals from the linked plane, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\n\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\n\n**_Ring of Air Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an air elemental. In addition, when you fall, you descend 60 feet per round and take no damage from falling. You can also speak and understand Auran.\n\nIf you help slay an air elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to lightning damage.\n* You have a flying speed equal to your walking speed and can hover.\n* You can cast the following spells from the ring, expending the necessary number of charges: _chain lightning_ (3 charges), _gust of wind_ (2 charges), or _wind wall_ (1 charge).\n\n**_Ring of Earth Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an earth elemental. In addition, you can move in difficult terrain that is composed of rubble, rocks, or dirt as if it were normal terrain. You can also speak and understand Terran.\n\nIf you help slay an earth elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to acid damage.\n* You can move through solid earth or rock as if those areas were difficult terrain. If you end your turn there, you are shunted out to the nearest unoccupied space you last occupied.\n* You can cast the following spells from the ring, expending the necessary number of charges: _stone shape_ (2 charges), _stoneskin_ (3 charges), or _wall of stone_ (3 charges).\n\n**_Ring of Fire Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a fire elemental. In addition, you have resistance to fire damage. You can also speak and understand Ignan.\n\nIf you help slay a fire elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You are immune to fire damage.\n* You can cast the following spells from the ring, expending the necessary number of charges: _burning hands_ (1 charge), _fireball_ (2 charges), and _wall of fire_ (3 charges).\n\n**_Ring of Water Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a water elemental. In addition, you can stand on and walk across liquid surfaces as if they were solid ground. You can also speak and understand Aquan.\n\nIf you help slay a water elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You can breathe underwater and have a swimming speed equal to your walking speed.\n* You can cast the following spells from the ring, expending the necessary number of charges: _create or destroy water_ (1 charge), _control water_ (3 charges), _ice storm_ (2 charges), or _wall of ice_ (3 charges).", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-evasion", + "fields": { + "name": "Ring of Evasion", + "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. When you fail a Dexterity saving throw while wearing it, you can use your reaction to expend 1 of its charges to succeed on that saving throw instead.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-feather-falling", + "fields": { + "name": "Ring of Feather Falling", + "desc": "When you fall while wearing this ring, you descend 60 feet per round and take no damage from falling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-free-action", + "fields": { + "name": "Ring of Free Action", + "desc": "While you wear this ring, difficult terrain doesn't cost you extra movement. In addition, magic can neither reduce your speed nor cause you to be paralyzed or restrained.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-invisibility", + "fields": { + "name": "Ring of Invisibility", + "desc": "While wearing this ring, you can turn invisible as an action. Anything you are wearing or carrying is invisible with you. You remain invisible until the ring is removed, until you attack or cast a spell, or until you use a bonus action to become visible again.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-jumping", + "fields": { + "name": "Ring of Jumping", + "desc": "While wearing this ring, you can cast the _jump_ spell from it as a bonus action at will, but can target only yourself when you do so.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-mind-shielding", + "fields": { + "name": "Ring of Mind Shielding", + "desc": "While wearing this ring, you are immune to magic that allows other creatures to read your thoughts, determine whether you are lying, know your alignment, or know your creature type. Creatures can telepathically communicate with you only if you allow it.\n\nYou can use an action to cause the ring to become invisible until you use another action to make it visible, until you remove the ring, or until you die.\n\nIf you die while wearing the ring, your soul enters it, unless it already houses a soul. You can remain in the ring or depart for the afterlife. As long as your soul is in the ring, you can telepathically communicate with any creature wearing it. A wearer can't prevent this telepathic communication.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-protection", + "fields": { + "name": "Ring of Protection", + "desc": "You gain a +1 bonus to AC and saving throws while wearing this ring.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-regeneration", + "fields": { + "name": "Ring of Regeneration", + "desc": "While wearing this ring, you regain 1d6 hit points every 10 minutes, provided that you have at least 1 hit point. If you lose a body part, the ring causes the missing part to regrow and return to full functionality after 1d6 + 1 days if you have at least 1 hit point the whole time.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-resistance", + "fields": { + "name": "Ring of Resistance", + "desc": "You have resistance to one damage type while wearing this ring. The gem in the ring indicates the type, which the GM chooses or determines randomly.\n\n| d10 | Damage Type | Gem |\n|-----|-------------|------------|\n| 1 | Acid | Pearl |\n| 2 | Cold | Tourmaline |\n| 3 | Fire | Garnet |\n| 4 | Force | Sapphire |\n| 5 | Lightning | Citrine |\n| 6 | Necrotic | Jet |\n| 7 | Poison | Amethyst |\n| 8 | Psychic | Jade |\n| 9 | Radiant | Topaz |\n| 10 | Thunder | Spinel |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-shooting-stars", + "fields": { + "name": "Ring of Shooting Stars", + "desc": "While wearing this ring in dim light or darkness, you can cast _dancing lights_ and _light_ from the ring at will. Casting either spell from the ring requires an action.\n\nThe ring has 6 charges for the following other properties. The ring regains 1d6 expended charges daily at dawn.\n\n**_Faerie Fire_**. You can expend 1 charge as an action to cast _faerie fire_ from the ring.\n\n**_Ball Lightning_**. You can expend 2 charges as an action to create one to four 3-foot-diameter spheres of lightning. The more spheres you create, the less powerful each sphere is individually.\n\nEach sphere appears in an unoccupied space you can see within 120 feet of you. The spheres last as long as you concentrate (as if concentrating on a spell), up to 1 minute. Each sphere sheds dim light in a 30-foot radius.\n\nAs a bonus action, you can move each sphere up to 30 feet, but no farther than 120 feet away from you. When a creature other than you comes within 5 feet of a sphere, the sphere discharges lightning at that creature and disappears. That creature must make a DC 15 Dexterity saving throw. On a failed save, the creature takes lightning damage based on the number of spheres you created.\n\n| Spheres | Lightning Damage |\n|---------|------------------|\n| 4 | 2d4 |\n| 3 | 2d6 |\n| 2 | 5d4 |\n| 1 | 4d12 |\n\n**_Shooting Stars_**. You can expend 1 to 3 charges as an action. For every charge you expend, you launch a glowing mote of light from the ring at a point you can see within 60 feet of you. Each creature within a 15-foot cube originating from that point is showered in sparks and must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-spell-storing", + "fields": { + "name": "Ring of Spell Storing", + "desc": "This ring stores spells cast into it, holding them until the attuned wearer uses them. The ring can store up to 5 levels worth of spells at a time. When found, it contains 1d6 - 1 levels of stored spells chosen by the GM.\n\nAny creature can cast a spell of 1st through 5th level into the ring by touching the ring as the spell is cast. The spell has no effect, other than to be stored in the ring. If the ring can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\n\nWhile wearing this ring, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the ring is no longer stored in it, freeing up space.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-spell-turning", + "fields": { + "name": "Ring of Spell Turning", + "desc": "While wearing this ring, you have advantage on saving throws against any spell that targets only you (not in an area of effect). In addition, if you roll a 20 for the save and the spell is 7th level or lower, the spell has no effect on you and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-swimming", + "fields": { + "name": "Ring of Swimming", + "desc": "You have a swimming speed of 40 feet while wearing this ring.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-telekinesis", + "fields": { + "name": "Ring of Telekinesis", + "desc": "While wearing this ring, you can cast the _telekinesis_ spell at will, but you can target only objects that aren't being worn or carried.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-the-ram", + "fields": { + "name": "Ring of the Ram", + "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a spectral ram's head and makes its attack roll with a +7 bonus. On a hit, for each charge you spend, the target takes 2d10 force damage and is pushed 5 feet away from you.\n\nAlternatively, you can expend 1 to 3 of the ring's charges as an action to try to break an object you can see within 60 feet of you that isn't being worn or carried. The ring makes a Strength check with a +5 bonus for each charge you spend.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-three-wishes", + "fields": { + "name": "Ring of Three Wishes", + "desc": "While wearing this ring, you can use an action to expend 1 of its 3 charges to cast the _wish_ spell from it. The ring becomes nonmagical when you use the last charge.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-warmth", + "fields": { + "name": "Ring of Warmth", + "desc": "While wearing this ring, you have resistance to cold damage. In addition, you and everything you wear and carry are unharmed by temperatures as low as -50 degrees Fahrenheit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-water-walking", + "fields": { + "name": "Ring of Water Walking", + "desc": "While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-x-ray-vision", + "fields": { + "name": "Ring of X-ray Vision", + "desc": "While wearing this ring, you can use an action to speak its command word. When you do so, you can see into and through solid matter for 1 minute. This vision has a radius of 30 feet. To you, solid objects within that radius appear transparent and don't prevent light from passing through them. The vision can penetrate 1 foot of stone, 1 inch of common metal, or up to 3 feet of wood or dirt. Thicker substances block the vision, as does a thin sheet of lead.\n\nWhenever you use the ring again before taking a long rest, you must succeed on a DC 15 Constitution saving throw or gain one level of exhaustion.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_robe-of-eyes", + "fields": { + "name": "Robe of Eyes", + "desc": "This robe is adorned with eyelike patterns. While you wear the robe, you gain the following benefits:\r\n\r\n* The robe lets you see in all directions, and you have advantage on Wisdom (Perception) checks that rely on sight.\r\n* You have darkvision out to a range of 120 feet.\r\n* You can see invisible creatures and objects, as well as see into the Ethereal Plane, out to a range of 120 feet.\r\n\r\nThe eyes on the robe can't be closed or averted. Although you can close or avert your own eyes, you are never considered to be doing so while wearing this robe.\r\n\r\nA _light_ spell cast on the robe or a _daylight_ spell cast within 5 feet of the robe causes you to be blinded for 1 minute. At the end of each of your turns, you can make a Constitution saving throw (DC 11 for _light_ or DC 15 for _daylight_), ending the blindness on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_robe-of-scintillating-colors", + "fields": { + "name": "Robe of Scintillating Colors", + "desc": "This robe has 3 charges, and it regains 1d3 expended charges daily at dawn. While you wear it, you can use an action and expend 1 charge to cause the garment to display a shifting pattern of dazzling hues until the end of your next turn. During this time, the robe sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Creatures that can see you have disadvantage on attack rolls against you. In addition, any creature in the bright light that can see you when the robe's power is activated must succeed on a DC 15 Wisdom saving throw or become stunned until the effect ends.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_robe-of-stars", + "fields": { + "name": "Robe of Stars", + "desc": "This black or dark blue robe is embroidered with small white or silver stars. You gain a +1 bonus to saving throws while you wear it.\r\n\r\nSix stars, located on the robe's upper front portion, are particularly large. While wearing this robe, you can use an action to pull off one of the stars and use it to cast _magic missile_ as a 5th-level spell. Daily at dusk, 1d6 removed stars reappear on the robe.\r\n\r\nWhile you wear the robe, you can use an action to enter the Astral Plane along with everything you are wearing and carrying. You remain there until you use an action to return to the plane you were on. You reappear in the last space you occupied, or if that space is occupied, the nearest unoccupied space.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_robe-of-the-archmagi", + "fields": { + "name": "Robe of the Archmagi", + "desc": "This elegant garment is made from exquisite cloth of white, gray, or black and adorned with silvery runes. The robe's color corresponds to the alignment for which the item was created. A white robe was made for good, gray for neutral, and black for evil. You can't attune to a _robe of the archmagi_ that doesn't correspond to your alignment.\r\n\r\nYou gain these benefits while wearing the robe:\r\n\r\n* If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* Your spell save DC and spell attack bonus each increase by 2.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_robe-of-useful-items", + "fields": { + "name": "Robe of Useful Items", + "desc": "This robe has cloth patches of various shapes and colors covering it. While wearing the robe, you can use an action to detach one of the patches, causing it to become the object or creature it represents. Once the last patch is removed, the robe becomes an ordinary garment.\r\n\r\nThe robe has two of each of the following patches:\r\n\r\n* Dagger\r\n* Bullseye lantern (filled and lit)\r\n* Steel mirror\r\n* 10-foot pole\r\n* Hempen rope (50 feet, coiled)\r\n* Sack\r\n\r\nIn addition, the robe has 4d4 other patches. The GM chooses the patches or determines them randomly.\r\n\r\n| d100 | Patch |\r\n|--------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-08 | Bag of 100 gp |\r\n| 09-15 | Silver coffer (1 foot long, 6 inches wide and deep) worth 500 gp |\r\n| 16-22 | Iron door (up to 10 feet wide and 10 feet high, barred on one side of your choice), which you can place in an opening you can reach; it conforms to fit the opening, attaching and hinging itself |\r\n| 23-30 | 10 gems worth 100 gp each |\r\n| 31-44 | Wooden ladder (24 feet long) |\r\n| 45-51 | A riding horse with saddle bags |\r\n| 52-59 | Pit (a cube 10 feet on a side), which you can place on the ground within 10 feet of you |\r\n| 60-68 | 4 potions of healing |\r\n| 69-75 | Rowboat (12 feet long) |\r\n| 76-83 | Spell scroll containing one spell of 1st to 3rd level |\r\n| 84-90 | 2 mastiffs |\r\n| 91-96 | Window (2 feet by 4 feet, up to 2 feet deep), which you can place on a vertical surface you can reach |\r\n| 97-100 | Portable ram |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_robes", + "fields": { + "name": "Robes", + "desc": "Robes, for wearing.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_rod", + "fields": { + "name": "Rod", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_rod-of-absorption", + "fields": { + "name": "Rod of Absorption", + "desc": "While holding this rod, you can use your reaction to absorb a spell that is targeting only you and not with an area of effect. The absorbed spell's effect is canceled, and the spell's energy-not the spell itself-is stored in the rod. The energy has the same level as the spell when it was cast. The rod can absorb and store up to 50 levels of energy over the course of its existence. Once the rod absorbs 50 levels of energy, it can't absorb more. If you are targeted by a spell that the rod can't store, the rod has no effect on that spell.\n\nWhen you become attuned to the rod, you know how many levels of energy the rod has absorbed over the course of its existence, and how many levels of spell energy it currently has stored.\n\nIf you are a spellcaster holding the rod, you can convert energy stored in it into spell slots to cast spells you have prepared or know. You can create spell slots only of a level equal to or lower than your own spell slots, up to a maximum of 5th level. You use the stored levels in place of your slots, but otherwise cast the spell as normal. For example, you can use 3 levels stored in the rod as a 3rd-level spell slot.\n\nA newly found rod has 1d10 levels of spell energy stored in it already. A rod that can no longer absorb spell energy and has no energy remaining becomes nonmagical.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rod-of-alertness", + "fields": { + "name": "Rod of Alertness", + "desc": "This rod has a flanged head and the following properties.\n\n**_Alertness_**. While holding the rod, you have advantage on Wisdom (Perception) checks and on rolls for initiative.\n\n**_Spells_**. While holding the rod, you can use an action to cast one of the following spells from it: _detect evil and good_, _detect magic_, _detect poison and disease_, or _see invisibility._\n\n**_Protective Aura_**. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's head sheds bright light in a 60-foot radius and dim light for an additional 60 feet. While in that bright light, you and any creature that is friendly to you gain a +1 bonus to AC and saving throws and can sense the location of any invisible hostile creature that is also in the bright light.\n\nThe rod's head stops glowing and the effect ends after 10 minutes, or when a creature uses an action to pull the rod from the ground. This property can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rod-of-lordly-might", + "fields": { + "name": "Rod of Lordly Might", + "desc": "This rod has a flanged head, and it functions as a magic mace that grants a +3 bonus to attack and damage rolls made with it. The rod has properties associated with six different buttons that are set in a row along the haft. It has three other properties as well, detailed below.\n\n**_Six Buttons_**. You can press one of the rod's six buttons as a bonus action. A button's effect lasts until you push a different button or until you push the same button again, which causes the rod to revert to its normal form.\n\nIf you press **button 1**, the rod becomes a _flame tongue_, as a fiery blade sprouts from the end opposite the rod's flanged head.\n\nIf you press **button 2**, the rod's flanged head folds down and two crescent-shaped blades spring out, transforming the rod into a magic battleaxe that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 3**, the rod's flanged head folds down, a spear point springs from the rod's tip, and the rod's handle lengthens into a 6-foot haft, transforming the rod into a magic spear that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 4**, the rod transforms into a climbing pole up to 50 feet long, as you specify. In surfaces as hard as granite, a spike at the bottom and three hooks at the top anchor the pole. Horizontal bars 3 inches long fold out from the sides, 1 foot apart, forming a ladder. The pole can bear up to 4,000 pounds. More weight or lack of solid anchoring causes the rod to revert to its normal form.\n\nIf you press **button 5**, the rod transforms into a handheld battering ram and grants its user a +10 bonus to Strength checks made to break through doors, barricades, and other barriers.\n\nIf you press **button 6**, the rod assumes or remains in its normal form and indicates magnetic north. (Nothing happens if this function of the rod is used in a location that has no magnetic north.) The rod also gives you knowledge of your approximate depth beneath the ground or your height above it.\n\n**_Drain Life_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target takes an extra 4d6 necrotic damage, and you regain a number of hit points equal to half that necrotic damage. This property can't be used again until the next dawn.\n\n**_Paralyze_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Strength saving throw. On a failure, the target is paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. This property can't be used again until the next dawn.\n\n**_Terrify_**. While holding the rod, you can use an action to force each creature you can see within 30 feet of you to make a DC 17 Wisdom saving throw. On a failure, a target is frightened of you for 1 minute. A frightened target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This property can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rod-of-rulership", + "fields": { + "name": "Rod of Rulership", + "desc": "You can use an action to present the rod and command obedience from each creature of your choice that you can see within 120 feet of you. Each target must succeed on a DC 15 Wisdom saving throw or be charmed by you for 8 hours. While charmed in this way, the creature regards you as its trusted leader. If harmed by you or your companions, or commanded to do something contrary to its nature, a target ceases to be charmed in this way. The rod can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rod-of-security", + "fields": { + "name": "Rod of Security", + "desc": "While holding this rod, you can use an action to activate it. The rod then instantly transports you and up to 199 other willing creatures you can see to a paradise that exists in an extraplanar space. You choose the form that the paradise takes. It could be a tranquil garden, lovely glade, cheery tavern, immense palace, tropical island, fantastic carnival, or whatever else you can imagine. Regardless of its nature, the paradise contains enough water and food to sustain its visitors. Everything else that can be interacted with inside the extraplanar space can exist only there. For example, a flower picked from a garden in the paradise disappears if it is taken outside the extraplanar space.\n\nFor each hour spent in the paradise, a visitor regains hit points as if it had spent 1 Hit Die. Also, creatures don't age while in the paradise, although time passes normally. Visitors can remain in the paradise for up to 200 days divided by the number of creatures present (round down).\n\nWhen the time runs out or you use an action to end it, all visitors reappear in the location they occupied when you activated the rod, or an unoccupied space nearest that location. The rod can't be used again until ten days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rope-hempen-50-feet", + "fields": { + "name": "Rope, hempen (50 feet)", + "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 2, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_rope-of-climbing", + "fields": { + "name": "Rope of Climbing", + "desc": "This 60-foot length of silk rope weighs 3 pounds and can hold up to 3,000 pounds. If you hold one end of the rope and use an action to speak the command word, the rope animates. As a bonus action, you can command the other end to move toward a destination you choose. That end moves 10 feet on your turn when you first command it and 10 feet on each of your turns until reaching its destination, up to its maximum length away, or until you tell it to stop. You can also tell the rope to fasten itself securely to an object or to unfasten itself, to knot or unknot itself, or to coil itself for carrying.\r\n\r\nIf you tell the rope to knot, large knots appear at 1* foot intervals along the rope. While knotted, the rope shortens to a 50-foot length and grants advantage on checks made to climb it.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rope-of-entanglement", + "fields": { + "name": "Rope of Entanglement", + "desc": "This rope is 30 feet long and weighs 3 pounds. If you hold one end of the rope and use an action to speak its command word, the other end darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 15 Dexterity saving throw or become restrained.\r\n\r\nYou can release the creature by using a bonus action to speak a second command word. A target restrained by the rope can use an action to make a DC 15 Strength or Dexterity check (target's choice). On a success, the creature is no longer restrained by the rope.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rope-silk-50-feet", + "fields": { + "name": "Rope, silk (50 feet)", + "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_rowboat", + "fields": { + "name": "Rowboat", + "desc": "Waterborne vehicle. Speed 1.5mph", + "document": "srd", + "size": "large", + "weight": "100.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sack", + "fields": { + "name": "Sack", + "desc": "A sack. Capacity: 1 cubic foot/30 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sailing-ship", + "fields": { + "name": "Sailing Ship", + "desc": "Waterborne vehicle. Speed 2mph", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_scale-mail", + "fields": { + "name": "Scale mail", + "desc": "This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.", + "document": "srd", + "size": "tiny", + "weight": "45.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_scale-merchants", + "fields": { + "name": "Scale, Merchant's", + "desc": "A scale includes a small balance, pans, and a suitable assortment of weights up to 2 pounds. With it, you can measure the exact weight of small objects, such as raw precious metals or trade goods, to help determine their worth.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_scarab-of-protection", + "fields": { + "name": "Scarab of Protection", + "desc": "If you hold this beetle-shaped medallion in your hand for 1 round, an inscription appears on its surface revealing its magical nature. It provides two benefits while it is on your person:\r\n\r\n* You have advantage on saving throws against spells.\r\n* The scarab has 12 charges. If you fail a saving throw against a necromancy spell or a harmful effect originating from an undead creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into powder and is destroyed when its last charge is expended.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_scimitar", + "fields": { + "name": "Scimitar", + "desc": "A scimitar.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_scimitar-1", + "fields": { + "name": "Scimitar (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_scimitar-2", + "fields": { + "name": "Scimitar (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_scimitar-3", + "fields": { + "name": "Scimitar (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_scimitar-of-speed", + "fields": { + "name": "Scimitar of Speed", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. In addition, you can make one attack with it as a bonus action on each of your turns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sealing-wax", + "fields": { + "name": "Sealing wax", + "desc": "For sealing written letters.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_serpent-venom", + "fields": { + "name": "Serpent venom", + "desc": "This poison must be harvested from a dead or incapacitated giant poisonous snake. A creature subjected to this poison must succeed on a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_shawm", + "fields": { + "name": "Shawm", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sheep", + "fields": { + "name": "Sheep", + "desc": "One sheep.", + "document": "srd", + "size": "medium", + "weight": "75.000", + "armor_class": 10, + "hit_points": 4, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_shield", + "fields": { + "name": "Shield", + "desc": "A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_shield-of-missile-attraction", + "fields": { + "name": "Shield of Missile Attraction", + "desc": "While holding this shield, you have resistance to damage from ranged weapon attacks.\n\n**_Curse_**. This shield is cursed. Attuning to it curses you until you are targeted by the _remove curse_ spell or similar magic. Removing the shield fails to end the curse on you. Whenever a ranged weapon attack is made against a target within 10 feet of you, the curse causes you to become the target instead.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortbow", + "fields": { + "name": "Shortbow", + "desc": "A shortbow", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortbow-1", + "fields": { + "name": "Shortbow (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortbow-2", + "fields": { + "name": "Shortbow (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortbow-3", + "fields": { + "name": "Shortbow (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortsword", + "fields": { + "name": "Shortsword", + "desc": "A short sword.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortsword-1", + "fields": { + "name": "Shortsword (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortsword-2", + "fields": { + "name": "Shortsword (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortsword-3", + "fields": { + "name": "Shortsword (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shovel", + "fields": { + "name": "Shovel", + "desc": "A shovel.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sickle", + "fields": { + "name": "Sickle", + "desc": "A sickle.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sickle-1", + "fields": { + "name": "Sickle (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_sickle-2", + "fields": { + "name": "Sickle (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_sickle-3", + "fields": { + "name": "Sickle (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_signal-whistle", + "fields": { + "name": "Signal whistle", + "desc": "For signalling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_signet-ring", + "fields": { + "name": "Signet Ring", + "desc": "A ring with a signet on it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sled", + "fields": { + "name": "Sled", + "desc": "Drawn vehicle", + "document": "srd", + "size": "large", + "weight": "300.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sling", + "fields": { + "name": "Sling", + "desc": "A sling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sling-1", + "fields": { + "name": "Sling (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_sling-2", + "fields": { + "name": "Sling (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_sling-3", + "fields": { + "name": "Sling (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_sling-bullets", + "fields": { + "name": "Sling bullets", + "desc": "Technically their cost is 20 for 4cp.", + "document": "srd", + "size": "tiny", + "weight": "0.075", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_slippers-of-spider-climbing", + "fields": { + "name": "Slippers of Spider Climbing", + "desc": "While you wear these light shoes, you can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free. You have a climbing speed equal to your walking speed. However, the slippers don't allow you to move this way on a slippery surface, such as one covered by ice or oil.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_smiths-tools", + "fields": { + "name": "Smith's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_soap", + "fields": { + "name": "Soap", + "desc": "For cleaning.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sovereign-glue", + "fields": { + "name": "Sovereign Glue", + "desc": "This viscous, milky-white substance can form a permanent adhesive bond between any two objects. It must be stored in a jar or flask that has been coated inside with _oil of slipperiness._ When found, a container contains 1d6 + 1 ounces.\r\n\r\nOne ounce of the glue can cover a 1-foot square surface. The glue takes 1 minute to set. Once it has done so, the bond it creates can be broken only by the application of _universal solvent_ or _oil of etherealness_, or with a _wish_ spell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_silver-piece", + "fields": { + "name": "Silver Piece", + "desc": "One gold piece is worth ten silver pieces, the most prevalent coin among commoners. A silver piece buys a laborer's work for half a day, a flask of lamp oil, or a night's rest in a poor inn.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_spear", + "fields": { + "name": "Spear", + "desc": "A spear.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_spear-1", + "fields": { + "name": "Spear (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spear-2", + "fields": { + "name": "Spear (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spear-3", + "fields": { + "name": "Spear (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-1st-level", + "fields": { + "name": "Spell Scroll (1st Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-2nd-level", + "fields": { + "name": "Spell Scroll (2nd Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-3rd-level", + "fields": { + "name": "Spell Scroll (3rd Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-4th-level", + "fields": { + "name": "Spell Scroll (4th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-5th-level", + "fields": { + "name": "Spell Scroll (5th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-6th-level", + "fields": { + "name": "Spell Scroll (6th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-7th-level", + "fields": { + "name": "Spell Scroll (7th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-8th-level", + "fields": { + "name": "Spell Scroll (8th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-9th-level", + "fields": { + "name": "Spell Scroll (9th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-cantrip", + "fields": { + "name": "Spell Scroll (Cantrip)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spellbook", + "fields": { + "name": "Spellbook", + "desc": "Essential for wizards, a spellbook is a leather-­‐‑bound tome with 100 blank vellum pages suitable for recording spells.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_spellguard-shield", + "fields": { + "name": "Spellguard Shield", + "desc": "While holding this shield, you have advantage on saving throws against spells and other magical effects, and spell attacks have disadvantage against you.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_sphere-of-annihilation", + "fields": { + "name": "Sphere of Annihilation", + "desc": "This 2-foot-diameter black sphere is a hole in the multiverse, hovering in space and stabilized by a magical field surrounding it.\r\n\r\nThe sphere obliterates all matter it passes through and all matter that passes through it. Artifacts are the exception. Unless an artifact is susceptible to damage from a _sphere of annihilation_, it passes through the sphere unscathed. Anything else that touches the sphere but isn't wholly engulfed and obliterated by it takes 4d10 force damage.\r\n\r\nThe sphere is stationary until someone controls it. If you are within 60 feet of an uncontrolled sphere, you can use an action to make a DC 25 Intelligence (Arcana) check. On a success, the sphere levitates in one direction of your choice, up to a number of feet equal to 5 × your Intelligence modifier (minimum 5 feet). On a failure, the sphere moves 10 feet toward you. A creature whose space the sphere enters must succeed on a DC 13 Dexterity saving throw or be touched by it, taking 4d10 force damage.\r\n\r\nIf you attempt to control a sphere that is under another creature's control, you make an Intelligence (Arcana) check contested by the other creature's Intelligence (Arcana) check. The winner of the contest gains control of the sphere and can levitate it as normal.\r\n\r\nIf the sphere comes into contact with a planar portal, such as that created by the _gate_ spell, or an extradimensional space, such as that within a _portable hole_, the GM determines randomly what happens, using the following table.\r\n\r\n| d100 | Result |\r\n|--------|------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-50 | The sphere is destroyed. |\r\n| 51-85 | The sphere moves through the portal or into the extradimensional space. |\r\n| 86-00 | A spatial rift sends each creature and object within 180 feet of the sphere, including the sphere, to a random plane of existence. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spike-iron", + "fields": { + "name": "Spike, iron", + "desc": "An iron spike.", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_splint-armor", + "fields": { + "name": "Splint Armor", + "desc": "This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.", + "document": "srd", + "size": "tiny", + "weight": "60.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sprig-of-mistletoe", + "fields": { + "name": "Sprig of mistletoe", + "desc": "A sprig of mistletoe that can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_spyglass", + "fields": { + "name": "Spyglass", + "desc": "Objects viewed through a spyglass are magnified to twice their size.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1000.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff", + "fields": { + "name": "Staff", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-charming", + "fields": { + "name": "Staff of Charming", + "desc": "While holding this staff, you can use an action to expend 1 of its 10 charges to cast _charm person_, _command_, _or comprehend languages_ from it using your spell save DC. The staff can also be used as a magic quarterstaff.\n\nIf you are holding the staff and fail a saving throw against an enchantment spell that targets only you, you can turn your failed save into a successful one. You can't use this property of the staff again until the next dawn. If you succeed on a save against an enchantment spell that targets only you, with or without the staff's intervention, you can use your reaction to expend 1 charge from the staff and turn the spell back on its caster as if you had cast the spell.\n\nThe staff regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-fire", + "fields": { + "name": "Staff of Fire", + "desc": "You have resistance to fire damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _burning hands_ (1 charge), _fireball_ (3 charges), or _wall of fire_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff blackens, crumbles into cinders, and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-frost", + "fields": { + "name": "Staff of Frost", + "desc": "You have resistance to cold damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _cone of cold_ (5 charges), _fog cloud_ (1 charge), _ice storm_ (4 charges), or _wall of ice_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff turns to water and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-healing", + "fields": { + "name": "Staff of Healing", + "desc": "This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability modifier: _cure wounds_ (1 charge per spell level, up to 4th), _lesser restoration_ (2 charges), or _mass cure wounds_ (5 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-power", + "fields": { + "name": "Staff of Power", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to Armor Class, saving throws, and spell attack rolls.\n\nThe staff has 20 charges for the following properties. The staff regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses all other properties. On a 20, the staff regains 1d8 + 2 charges.\n\n**_Power Strike_**. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d6 force damage to the target.\n\n**_Spells_**. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spell attack bonus: _cone of cold_ (5 charges), _fireball_ (5th-level version, 5 charges), _globe of invulnerability_ (6 charges), _hold monster_ (5 charges), _levitate_ (2 charges), _lightning bolt_ (5th-level version, 5 charges), _magic missile_ (1 charge), _ray of enfeeblement_ (1 charge), or _wall of force_ (5 charges).\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-striking", + "fields": { + "name": "Staff of Striking", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +3 bonus to attack and damage rolls made with it.\n\nThe staff has 10 charges. When you hit with a melee attack using it, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 force damage. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-swarming-insects", + "fields": { + "name": "Staff of Swarming Insects", + "desc": "This staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of insects consumes and destroys the staff, then disperses.\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC: _giant insect_ (4 charges) or _insect plague_ (5 charges).\n\n**_Insect Cloud_**. While holding the staff, you can use an action and expend 1 charge to cause a swarm of harmless flying insects to spread out in a 30-foot radius from you. The insects remain for 10 minutes, making the area heavily obscured for creatures other than you. The swarm moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the swarm and ends the effect.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-the-magi", + "fields": { + "name": "Staff of the Magi", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls.\n\nThe staff has 50 charges for the following properties. It regains 4d6 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 20, the staff regains 1d12 + 1 charges.\n\n**_Spell Absorption_**. While holding the staff, you have advantage on saving throws against spells. In addition, you can use your reaction when another creature casts a spell that targets only you. If you do, the staff absorbs the magic of the spell, canceling its effect and gaining a number of charges equal to the absorbed spell's level. However, if doing so brings the staff's total number of charges above 50, the staff explodes as if you activated its retributive strike (see below).\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: _conjure elemental_ (7 charges), _dispel magic_ (3 charges), _fireball_ (7th-level version, 7 charges), _flaming sphere_ (2 charges), _ice storm_ (4 charges), _invisibility_ (2 charges), _knock_ (2 charges), _lightning bolt_ (7th-level version, 7 charges), _passwall_ (5 charges), _plane shift_ (7 charges), _telekinesis_ (5 charges), _wall of fire_ (4 charges), or _web_ (2 charges).\n\nYou can also use an action to cast one of the following spells from the staff without using any charges: _arcane lock_, _detect magic_, _enlarge/reduce_, _light_, _mage hand_, or _protection from evil and good._\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-the-python", + "fields": { + "name": "Staff of the Python", + "desc": "You can use an action to speak this staff's command word and throw the staff on the ground within 10 feet of you. The staff becomes a giant constrictor snake under your control and acts on its own initiative count. By using a bonus action to speak the command word again, you return the staff to its normal form in a space formerly occupied by the snake.\n\nOn your turn, you can mentally command the snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snake takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location.\n\nIf the snake is reduced to 0 hit points, it dies and reverts to its staff form. The staff then shatters and is destroyed. If the snake reverts to staff form before losing all its hit points, it regains all of them.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-the-woodlands", + "fields": { + "name": "Staff of the Woodlands", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you have a +2 bonus to spell attack rolls.\n\nThe staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff.\n\n**_Spells_**. You can use an action to expend 1 or more of the staff's charges to cast one of the following spells from it, using your spell save DC: _animal friendship_ (1 charge), _awaken_ (5 charges), _barkskin_ (2 charges), _locate animals or plants_ (2 charges), _speak with animals_ (1 charge), _speak with plants_ (3 charges), or _wall of thorns_ (6 charges).\n\nYou can also use an action to cast the _pass without trace_ spell from the staff without using any charges. **_Tree Form_**. You can use an action to plant one end of the staff in fertile earth and expend 1 charge to transform the staff into a healthy tree. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\n\nThe tree appears ordinary but radiates a faint aura of transmutation magic if targeted by _detect magic_. While touching the tree and using another action to speak its command word, you return the staff to its normal form. Any creature in the tree falls when it reverts to a staff.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-thunder-and-lightning", + "fields": { + "name": "Staff of Thunder and Lightning", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. It also has the following additional properties. When one of these properties is used, it can't be used again until the next dawn.\n\n**_Lightning_**. When you hit with a melee attack using the staff, you can cause the target to take an extra 2d6 lightning damage.\n\n**_Thunder_**. When you hit with a melee attack using the staff, you can cause the staff to emit a crack of thunder, audible out to 300 feet. The target you hit must succeed on a DC 17 Constitution saving throw or become stunned until the end of your next turn.\n\n**_Lightning Strike_**. You can use an action to cause a bolt of lightning to leap from the staff's tip in a line that is 5 feet wide and 120 feet long. Each creature in that line must make a DC 17 Dexterity saving throw, taking 9d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**_Thunderclap_**. You can use an action to cause the staff to issue a deafening thunderclap, audible out to 600 feet. Each creature within 60 feet of you (not including you) must make a DC 17 Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 1 minute. On a successful save, a creature takes half damage and isn't deafened.\n\n**_Thunder and Lightning_**. You can use an action to use the Lightning Strike and Thunderclap properties at the same time. Doing so doesn't expend the daily use of those properties, only the use of this one.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-withering", + "fields": { + "name": "Staff of Withering", + "desc": "This staff has 3 charges and regains 1d3 expended charges daily at dawn.\n\nThe staff can be wielded as a magic quarterstaff. On a hit, it deals damage as a normal quarterstaff, and you can expend 1 charge to deal an extra 2d10 necrotic damage to the target. In addition, the target must succeed on a DC 15 Constitution saving throw or have disadvantage for 1 hour on any ability check or saving throw that uses Strength or Constitution.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_stone-of-controlling-earth-elementals", + "fields": { + "name": "Stone of Controlling Earth Elementals", + "desc": "If the stone is touching the ground, you can use an action to speak its command word and summon an earth elemental, as if you had cast the _conjure elemental_ spell. The stone can't be used this way again until the next dawn. The stone weighs 5 pounds.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_stone-of-good-luck-luckstone", + "fields": { + "name": "Stone of Good Luck (Luckstone)", + "desc": "While this polished agate is on your person, you gain a +1 bonus to ability checks and saving throws.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_studded-leather-armor", + "fields": { + "name": "Studded Leather Armor", + "desc": "Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.", + "document": "srd", + "size": "tiny", + "weight": "13.000", + "armor_class": 0, + "hit_points": 0, + "cost": "45.00", + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sun-blade", + "fields": { + "name": "Sun Blade", + "desc": "This item appears to be a longsword hilt. While grasping the hilt, you can use a bonus action to cause a blade of pure radiance to spring into existence, or make the blade disappear. While the blade exists, this magic longsword has the finesse property. If you are proficient with shortswords or longswords, you are proficient with the _sun blade_.\n\nYou gain a +2 bonus to attack and damage rolls made with this weapon, which deals radiant damage instead of slashing damage. When you hit an undead with it, that target takes an extra 1d8 radiant damage.\n\nThe sword's luminous blade emits bright light in a 15-foot radius and dim light for an additional 15 feet. The light is sunlight. While the blade persists, you can use an action to expand or reduce its radius of bright and dim light by 5 feet each, to a maximum of 30 feet each or a minimum of 10 feet each.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-greatsword", + "fields": { + "name": "Sword of Life Stealing (Greatsword)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-longsword", + "fields": { + "name": "Sword of Life Stealing (Longsword)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-rapier", + "fields": { + "name": "Sword of Life Stealing (Rapier)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-shortsword", + "fields": { + "name": "Sword of Life Stealing (Shortsword)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-greatsword", + "fields": { + "name": "Sword of Sharpness (Greatsword)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-longsword", + "fields": { + "name": "Sword of Sharpness (Longsword)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-scimitar", + "fields": { + "name": "Sword of Sharpness (Scimitar)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-shortsword", + "fields": { + "name": "Sword of Sharpness (Shortsword)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-greatsword", + "fields": { + "name": "Sword of Wounding (Greatsword)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-longsword", + "fields": { + "name": "Sword of Wounding (Longsword)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-rapier", + "fields": { + "name": "Sword of Wounding (Rapier)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-shortsword", + "fields": { + "name": "Sword of Wounding (Shortsword)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_talisman-of-pure-good", + "fields": { + "name": "Talisman of Pure Good", + "desc": "This talisman is a mighty symbol of goodness. A creature that is neither good nor evil in alignment takes 6d6 radiant damage upon touching the talisman. An evil creature takes 8d6 radiant damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are a good cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 7 charges. If you are wearing or holding it, you can use an action to expend 1 charge from it and choose one creature you can see on the ground within 120 feet of you. If the target is of evil alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman disperses into motes of golden light and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_talisman-of-the-sphere", + "fields": { + "name": "Talisman of the Sphere", + "desc": "When you make an Intelligence (Arcana) check to control a _sphere of annihilation_ while you are holding this talisman, you double your proficiency bonus on the check. In addition, when you start your turn with control over a _sphere of annihilation_, you can use an action to levitate it 10 feet plus a number of additional feet equal to 10 × your Intelligence modifier.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_talisman-of-ultimate-evil", + "fields": { + "name": "Talisman of Ultimate Evil", + "desc": "This item symbolizes unrepentant evil. A creature that is neither good nor evil in alignment takes 6d6 necrotic damage upon touching the talisman. A good creature takes 8d6 necrotic damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are an evil cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 6 charges. If you are wearing or holding it, you can use an action to expend 1 charge from the talisman and choose one creature you can see on the ground within 120 feet of you. If the target is of good alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman dissolves into foul-smelling slime and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_tent", + "fields": { + "name": "Tent", + "desc": "A simple and portable canvas shelter, a tent sleeps two.", + "document": "srd", + "size": "tiny", + "weight": "20.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_thieves-tools", + "fields": { + "name": "Thieves' tools", + "desc": "This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-­‐‑bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_tinderbox", + "fields": { + "name": "Tinderbox", + "desc": "This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch—or anything else with abundant, exposed fuel—takes an action. Lighting any other fire takes 1 minute.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_tinkers-tools", + "fields": { + "name": "Tinker's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_tome-of-clear-thought", + "fields": { + "name": "Tome of Clear Thought", + "desc": "This book contains memory and logic exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Intelligence score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_tome-of-leadership-and-influence", + "fields": { + "name": "Tome of Leadership and Influence", + "desc": "This book contains guidelines for influencing and charming others, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Charisma score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_tome-of-understanding", + "fields": { + "name": "Tome of Understanding", + "desc": "This book contains intuition and insight exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Wisdom score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_torch", + "fields": { + "name": "Torch", + "desc": "A torch burns for 1 hour, providing bright light in a 20-­‐‑foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_torpor", + "fields": { + "name": "Torpor", + "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 4d6 hours. The poisoned creature is incapacitated.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "600.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_totem", + "fields": { + "name": "Totem", + "desc": "Can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_trident", + "fields": { + "name": "Trident", + "desc": "A trident.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_trident-1", + "fields": { + "name": "Trident (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_trident-2", + "fields": { + "name": "Trident (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_trident-3", + "fields": { + "name": "Trident (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_trident-of-fish-command", + "fields": { + "name": "Trident of Fish Command", + "desc": "This trident is a magic weapon. It has 3 charges. While you carry it, you can use an action and expend 1 charge to cast _dominate beast_ (save DC 15) from it on a beast that has an innate swimming speed. The trident regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_truth-serum", + "fields": { + "name": "Truth serum", + "desc": "A creature subjected to this poison must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. The poisoned creature can't knowingly speak a lie, as if under the effect of a zone of truth spell.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "150.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_universal-solvent", + "fields": { + "name": "Universal Solvent", + "desc": "This tube holds milky liquid with a strong alcohol smell. You can use an action to pour the contents of the tube onto a surface within reach. The liquid instantly dissolves up to 1 square foot of adhesive it touches, including _sovereign glue._", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_vial", + "fields": { + "name": "Vial", + "desc": "For holding liquids. Capacity: 4 ounces liquid.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-battleaxe", + "fields": { + "name": "Vicious Weapon (Battleaxe)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-blowgun", + "fields": { + "name": "Vicious Weapon (Blowgun)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-club", + "fields": { + "name": "Vicious Weapon (Club)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-crossbow-hand", + "fields": { + "name": "Vicious Weapon (Crossbow-Hand)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-crossbow-heavy", + "fields": { + "name": "Vicious Weapon (Crossbow-Heavy)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-crossbow-light", + "fields": { + "name": "Vicious Weapon (Crossbow-Light)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-dagger", + "fields": { + "name": "Vicious Weapon (Dagger)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-dart", + "fields": { + "name": "Vicious Weapon (Dart)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-flail", + "fields": { + "name": "Vicious Weapon (Flail)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-glaive", + "fields": { + "name": "Vicious Weapon (Glaive)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-greataxe", + "fields": { + "name": "Vicious Weapon (Greataxe)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-greatclub", + "fields": { + "name": "Vicious Weapon (Greatclub)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-greatsword", + "fields": { + "name": "Vicious Weapon (Greatsword)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-halberd", + "fields": { + "name": "Vicious Weapon (Halberd)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-handaxe", + "fields": { + "name": "Vicious Weapon (Handaxe)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-javelin", + "fields": { + "name": "Vicious Weapon (Javelin)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-lance", + "fields": { + "name": "Vicious Weapon (Lance)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-light-hammer", + "fields": { + "name": "Vicious Weapon (Light-Hammer)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-longbow", + "fields": { + "name": "Vicious Weapon (Longbow)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-longsword", + "fields": { + "name": "Vicious Weapon (Longsword)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-mace", + "fields": { + "name": "Vicious Weapon (Mace)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-maul", + "fields": { + "name": "Vicious Weapon (Maul)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-morningstar", + "fields": { + "name": "Vicious Weapon (Morningstar)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-net", + "fields": { + "name": "Vicious Weapon (Net)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-pike", + "fields": { + "name": "Vicious Weapon (Pike)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-quarterstaff", + "fields": { + "name": "Vicious Weapon (Quarterstaff)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-rapier", + "fields": { + "name": "Vicious Weapon (Rapier)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-scimitar", + "fields": { + "name": "Vicious Weapon (Scimitar)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-shortbow", + "fields": { + "name": "Vicious Weapon (Shortbow)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-shortsword", + "fields": { + "name": "Vicious Weapon (Shortsword)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-sickle", + "fields": { + "name": "Vicious Weapon (Sickle)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-sling", + "fields": { + "name": "Vicious Weapon (Sling)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-spear", + "fields": { + "name": "Vicious Weapon (Spear)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-trident", + "fields": { + "name": "Vicious Weapon (Trident)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-warhammer", + "fields": { + "name": "Vicious Weapon (Warhammer)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-war-pick", + "fields": { + "name": "Vicious Weapon (War-Pick)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-whip", + "fields": { + "name": "Vicious Weapon (Whip)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_viol", + "fields": { + "name": "Viol", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vorpal-sword-greatsword", + "fields": { + "name": "Vorpal Sword (Greatsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vorpal-sword-longsword", + "fields": { + "name": "Vorpal Sword (Longsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vorpal-sword-scimitar", + "fields": { + "name": "Vorpal Sword (Scimitar)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vorpal-sword-shortsword", + "fields": { + "name": "Vorpal Sword (Shortsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_wagon", + "fields": { + "name": "Wagon", + "desc": "Drawn vehicle.", + "document": "srd", + "size": "large", + "weight": "400.000", + "armor_class": 0, + "hit_points": 0, + "cost": "35.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand", + "fields": { + "name": "Wand", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-binding", + "fields": { + "name": "Wand of Binding", + "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Spells_**. While holding the wand, you can use an action to expend some of its charges to cast one of the following spells (save DC 17): _hold monster_ (5 charges) or _hold person_ (2 charges).\n\n**_Assisted Escape_**. While holding the wand, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained, or you can expend 1 charge and gain advantage on any check you make to escape a grapple.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-enemy-detection", + "fields": { + "name": "Wand of Enemy Detection", + "desc": "This wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For the next minute, you know the direction of the nearest creature hostile to you within 60 feet, but not its distance from you. The wand can sense the presence of hostile creatures that are ethereal, invisible, disguised, or hidden, as well as those in plain sight. The effect ends if you stop holding the wand.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-fear", + "fields": { + "name": "Wand of Fear", + "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Command_**. While holding the wand, you can use an action to expend 1 charge and command another creature to flee or grovel, as with the _command_ spell (save DC 15).\n\n**_Cone of Fear_**. While holding the wand, you can use an action to expend 2 charges, causing the wand's tip to emit a 60-foot cone of amber light. Each creature in the cone must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-fireballs", + "fields": { + "name": "Wand of Fireballs", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _fireball_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-lightning-bolts", + "fields": { + "name": "Wand of Lightning Bolts", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _lightning bolt_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-magic-detection", + "fields": { + "name": "Wand of Magic Detection", + "desc": "This wand has 3 charges. While holding it, you can expend 1 charge as an action to cast the _detect magic_ spell from it. The wand regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-magic-missiles", + "fields": { + "name": "Wand of Magic Missiles", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _magic missile_ spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-paralysis", + "fields": { + "name": "Wand of Paralysis", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cause a thin blue ray to streak from the tip toward a creature you can see within 60 feet of you. The target must succeed on a DC 15 Constitution saving throw or be paralyzed for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a success.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-polymorph", + "fields": { + "name": "Wand of Polymorph", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _polymorph_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-secrets", + "fields": { + "name": "Wand of Secrets", + "desc": "The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges, and if a secret door or trap is within 30 feet of you, the wand pulses and points at the one nearest to you. The wand regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-the-war-mage-1", + "fields": { + "name": "Wand of the War Mage (+1)", + "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-the-war-mage-2", + "fields": { + "name": "Wand of the War Mage (+2)", + "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-the-war-mage-3", + "fields": { + "name": "Wand of the War Mage (+3)", + "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-web", + "fields": { + "name": "Wand of Web", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _web_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-wonder", + "fields": { + "name": "Wand of Wonder", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and choose a target within 120 feet of you. The target can be a creature, an object, or a point in space. Roll d100 and consult the following table to discover what happens.\n\nIf the effect causes you to cast a spell from the wand, the spell's save DC is 15. If the spell normally has a range expressed in feet, its range becomes 120 feet if it isn't already.\n\nIf an effect covers an area, you must center the spell on and include the target. If an effect has multiple possible subjects, the GM randomly determines which ones are affected.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into dust and is destroyed.\n\n| d100 | Effect |\n|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| 01-05 | You cast slow. 06-10 You cast faerie fire. |\n| 11-15 | You are stunned until the start of your next turn, believing something awesome just happened. 16-20 You cast gust of wind. |\n| 21-25 | You cast detect thoughts on the target you chose. If you didn't target a creature, you instead take 1d6 psychic damage. |\n| 26-30 | You cast stinking cloud. |\n| 31-33 | Heavy rain falls in a 60-foot radius centered on the target. The area becomes lightly obscured. The rain falls until the start of your next turn. |\n| 34-36 | An animal appears in the unoccupied space nearest the target. The animal isn't under your control and acts as it normally would. Roll a d100 to determine which animal appears. On a 01-25, a rhinoceros appears; on a 26-50, an elephant appears; and on a 51-100, a rat appears. |\n| 37-46 | You cast lightning bolt. |\n| 47-49 | A cloud of 600 oversized butterflies fills a 30-foot radius centered on the target. The area becomes heavily obscured. The butterflies remain for 10 minutes. |\n| 50-53 | You enlarge the target as if you had cast enlarge/reduce. If the target can't be affected by that spell, or if you didn't target a creature, you become the target. |\n| 54-58 | You cast darkness. |\n| 59-62 | Grass grows on the ground in a 60-foot radius centered on the target. If grass is already there, it grows to ten times its normal size and remains overgrown for 1 minute. |\n| 63-65 | An object of the GM's choice disappears into the Ethereal Plane. The object must be neither worn nor carried, within 120 feet of the target, and no larger than 10 feet in any dimension. |\n| 66-69 | You shrink yourself as if you had cast enlarge/reduce on yourself. |\n| 70-79 | You cast fireball. |\n| 80-84 | You cast invisibility on yourself. |\n| 85-87 | Leaves grow from the target. If you chose a point in space as the target, leaves sprout from the creature nearest to that point. Unless they are picked off, the leaves turn brown and fall off after 24 hours. |\n| 88-90 | A stream of 1d4 × 10 gems, each worth 1 gp, shoots from the wand's tip in a line 30 feet long and 5 feet wide. Each gem deals 1 bludgeoning damage, and the total damage of the gems is divided equally among all creatures in the line. |\n| 91-95 | A burst of colorful shimmering light extends from you in a 30-foot radius. You and each creature in the area that can see must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. |\n| 96-97 | The target's skin turns bright blue for 1d10 days. If you chose a point in space, the creature nearest to that point is affected. |\n| 98-100 | If you targeted a creature, it must make a DC 15 Constitution saving throw. If you didn't target a creature, you become the target and must make the saving throw. If the saving throw fails by 5 or more, the target is instantly petrified. On any other failed save, the target is restrained and begins to turn to stone. While restrained in this way, the target must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the target is freed by the greater restoration spell or similar magic. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_war-pick", + "fields": { + "name": "War pick", + "desc": "A war pick.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_warhammer", + "fields": { + "name": "Warhammer", + "desc": "A warhammer.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_warhammer-1", + "fields": { + "name": "Warhammer (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_warhammer-2", + "fields": { + "name": "Warhammer (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_warhammer-3", + "fields": { + "name": "Warhammer (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_war-pick", + "fields": { + "name": "War pick", + "desc": "A war pick.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_war-pick-1", + "fields": { + "name": "War-Pick (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_war-pick-2", + "fields": { + "name": "War-Pick (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_war-pick-3", + "fields": { + "name": "War-Pick (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_warship", + "fields": { + "name": "Warship", + "desc": "Waterborne vehicle. Speed 2.5mph", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_waterskin", + "fields": { + "name": "Waterskin", + "desc": "For drinking. 5lb is the full weight. Capacity: 4 pints liquid.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_weavers-tools", + "fields": { + "name": "Weaver's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_well-of-many-worlds", + "fields": { + "name": "Well of Many Worlds", + "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold and place the _well of many worlds_ on a solid surface, whereupon it creates a two-way portal to another world or plane of existence. Each time the item opens a portal, the GM decides where it leads. You can use an action to close an open portal by taking hold of the edges of the cloth and folding it up. Once _well of many worlds_ has opened a portal, it can't do so again for 1d8 hours.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_whetstone", + "fields": { + "name": "Whetstone", + "desc": "For sharpening.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_whip", + "fields": { + "name": "Whip", + "desc": "A whip.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_whip-1", + "fields": { + "name": "Whip (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_whip-2", + "fields": { + "name": "Whip (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_whip-3", + "fields": { + "name": "Whip (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wind-fan", + "fields": { + "name": "Wind Fan", + "desc": "While holding this fan, you can use an action to cast the _gust of wind_ spell (save DC 13) from it. Once used, the fan shouldn't be used again until the next dawn. Each time it is used again before then, it has a cumulative 20 percent chance of not working and tearing into useless, nonmagical tatters.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_winged-boots", + "fields": { + "name": "Winged Boots", + "desc": "While you wear these boots, you have a flying speed equal to your walking speed. You can use the boots to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land.\r\n\r\nThe boots regain 2 hours of flying capability for every 12 hours they aren't in use.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wings-of-flying", + "fields": { + "name": "Wings of Flying", + "desc": "While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of bat wings or bird wings on your back for 1 hour or until you repeat the command word as an action. The wings give you a flying speed of 60 feet. When they disappear, you can't use them again for 1d12 hours.\r\n\r\n\r\n\r\n\r\n## Sentient Magic Items\r\n\r\nSome magic items possess sentience and personality. Such an item might be possessed, haunted by the spirit of a previous owner, or self-aware thanks to the magic used to create it. In any case, the item behaves like a character, complete with personality quirks, ideals, bonds, and sometimes flaws. A sentient item might be a cherished ally to its wielder or a continual thorn in the side.\r\n\r\nMost sentient items are weapons. Other kinds of items can manifest sentience, but consumable items such as potions and scrolls are never sentient.\r\n\r\nSentient magic items function as NPCs under the GM's control. Any activated property of the item is under the item's control, not its wielder's. As long as the wielder maintains a good relationship with the item, the wielder can access those properties normally. If the relationship is strained, the item can suppress its activated properties or even turn them against the wielder.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_woodcarvers-tools", + "fields": { + "name": "Woodcarver's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_wooden-staff", + "fields": { + "name": "Wooden staff", + "desc": "Can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "quarterstaff", + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_wyvern-poison", + "fields": { + "name": "Wyvern poison", + "desc": "This poison must be harvested from a dead or incapacitated wyvern. A creature subjected to this poison must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_yew-wand", + "fields": { + "name": "Yew wand", + "desc": "Can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": null + } + } +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/ItemSet.json b/data/v2/wizards-of-the-coast/srd/ItemSet.json index 45497ca9..4fe8726d 100644 --- a/data/v2/wizards-of-the-coast/srd/ItemSet.json +++ b/data/v2/wizards-of-the-coast/srd/ItemSet.json @@ -1,371 +1,371 @@ [ -{ - "model": "api_v2.itemset", - "pk": "arcane-focuses", - "fields": { - "name": "Arcane Focuses", - "desc": "An arcane focus is a special item - an orb, a crystal, a rod, a specially constructed staff, a wand-­like length of wood, or some similar item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus.", - "document": "srd", - "items": [ - "crystal", - "orb", - "rod", - "staff", - "wand" - ] + { + "model": "api_v2.itemset", + "pk": "arcane-focuses", + "fields": { + "name": "Arcane Focuses", + "desc": "An arcane focus is a special item - an orb, a crystal, a rod, a specially constructed staff, a wand-­like length of wood, or some similar item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus.", + "document": "srd", + "items": [ + "srd_crystal", + "srd_orb", + "srd_rod", + "srd_staff", + "srd_wand" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "artisans-tools", + "fields": { + "name": "Artisan's tools", + "desc": "These special tools include the items needed to pursue a craft or trade. The table shows examples of the most common types of tools, each providing items related to a single craft. Proficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "items": [ + "srd_alchemists-supplies", + "srd_brewers-supplies", + "srd_calligraphers-supplies", + "srd_carpenters-tools", + "srd_cartographers-tools", + "srd_cobblers-tools", + "srd_cooks-utensils", + "srd_disguise-kit", + "srd_forgery-kit", + "srd_glassblowers-tools", + "srd_jewelers-tools", + "srd_leatherworkers-tools", + "srd_masons-tools", + "srd_painters-supplies", + "srd_potters-tools", + "srd_smiths-tools", + "srd_tinkers-tools", + "srd_weavers-tools", + "srd_woodcarvers-tools" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "burglars-pack", + "fields": { + "name": "Burglar's Pack", + "desc": "Includes a backpack, a bag of 1,000 ball bearings, 10 feet of string, a bell, 5 candles, a crowbar, a hammer, 10 pitons, a hooded lantern, 2 flasks of oil, 5 days rations, a tinderbox, and a waterskin. The pack also has 50 feet of hempen rope strapped to the side of it.", + "document": "srd", + "items": [ + "srd_backpack", + "srd_ball-bearings-bag-of-1000", + "srd_candle", + "srd_crowbar", + "srd_hammer", + "srd_lamp-oil-flask", + "srd_lantern-hooded", + "srd_rations-1-day", + "srd_rope-hempen-50-feet", + "srd_tinderbox", + "srd_waterskin" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "diplomats-pack", + "fields": { + "name": "Diplomat's Pack", + "desc": "Includes a chest, 2 cases for maps and scrolls, a set of fine clothes, a bottle of ink, an ink pen, a lamp, 2 flasks of oil, 5 sheets of paper, a vial of perfume, sealing wax, and soap.", + "document": "srd", + "items": [ + "srd_case-map-or-scroll", + "srd_chest", + "srd_clothes-fine", + "srd_ink-1-ounce-bottle", + "srd_ink-pen", + "srd_lamp", + "srd_lamp-oil-flask", + "srd_paper-one-sheet", + "srd_perfume-vial", + "srd_sealing-wax", + "srd_soap" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "druidic-focuses", + "fields": { + "name": "Druidic Focuses", + "desc": "A druidic focus might be a sprig of mistletoe or holly, a wand or scepter made of yew or another special wood, a staff drawn whole out of a living tree, or a totem object incorporating feathers, fur, bones, and teeth from sacred animals. A druid can use such an object as a spellcasting focus.", + "document": "srd", + "items": [ + "srd_sprig-of-mistletoe", + "srd_totem", + "srd_wooden-staff", + "srd_yew-wand" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "dungeoneers-pack", + "fields": { + "name": "Dungeoneer's Pack", + "desc": "Includes a backpack, a crowbar, a hammer, 10 pitons, 10 torches, a tinderbox, 10 days of rations, and a waterskin. The pack also has 50 feet of hempen rope strapped to the side of it.", + "document": "srd", + "items": [ + "srd_backpack", + "srd_crowbar", + "srd_hammer", + "srd_piton", + "srd_rations-1-day", + "srd_rope-hempen-50-feet", + "srd_tinderbox", + "srd_torch", + "srd_waterskin" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "entertainers-pack", + "fields": { + "name": "Entertainer's Pack", + "desc": "Includes a backpack, a bedroll, 2 costumes, 5 candles, 5 days of rations, a waterskin, and a disguise kit.", + "document": "srd", + "items": [ + "srd_backpack", + "srd_bedroll", + "srd_candle", + "srd_clothes-costume", + "srd_disguise-kit", + "srd_rations-1-day", + "srd_waterskin" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "explorers-pack", + "fields": { + "name": "Explorer's Pack", + "desc": "Includes a backpack, a bedroll, a mess kit, a tinderbox, 10 torches, 10 days of rations, and a waterskin. The pack also has 50 feet of hempen rope strapped to the side of it.", + "document": "srd", + "items": [ + "srd_backpack", + "srd_bedroll", + "srd_mess-kit", + "srd_rations-1-day", + "srd_rope-hempen-50-feet", + "srd_tinderbox", + "srd_torch", + "srd_waterskin" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "gaming-sets", + "fields": { + "name": "Gaming set", + "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", + "document": "srd", + "items": [ + "srd_dice-set", + "srd_playing-card-set" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "heavy-armor", + "fields": { + "name": "Heavy Armor", + "desc": "Of all the armor categories, heavy armor offers the best protection. These suits of armor cover the entire body and are designed to stop a wide range of attacks. Only proficient warriors can manage their weight and bulk.\r\n\r\nHeavy armor doesn't let you add your Dexterity modifier to your Armor Class, but it also doesn't penalize you if your Dexterity modifier is negative.", + "document": "srd", + "items": [ + "srd_chain-mail", + "srd_plate-armor", + "srd_ring-mail", + "srd_splint-armor" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "holy-symbols", + "fields": { + "name": "Holy Symbols", + "desc": "A holy symbol is a representation of a god or pantheon. It might be an amulet depicting a symbol representing a deity, the same symbol carefully engraved or inlaid as an emblem on a shield, or a tiny box holding a fragment of a sacred relic. Appendix PH-­‐‑B \"Fantasy-­‐‑Historical Pantheons\" lists the symbols commonly associated with many gods in the multiverse. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.", + "document": "srd", + "items": [ + "srd_amulet", + "srd_emblem", + "srd_reliquary" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "light-armor", + "fields": { + "name": "Light Armor", + "desc": "Made from supple and thin materials, light armor favors agile adventurers since it offers some protection without sacrificing mobility. If you wear light armor, you add your Dexterity modifier to the base number from your armor type to determine your Armor Class.", + "document": "srd", + "items": [ + "srd_leather-armor", + "srd_padded-armor", + "srd_studded-leather-armor" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "martial-melee-weapons", + "fields": { + "name": "Martial Melee Weapons", + "desc": "Martial weapons, including swords, axes, and polearms, require more specialized training to use effectively. Most warriors use martial weapons because these weapons put their fighting style and training to best use.", + "document": "srd", + "items": [ + "srd_battleaxe", + "srd_flail", + "srd_glaive", + "srd_greataxe", + "srd_greatsword", + "srd_halberd", + "srd_lance", + "srd_longsword", + "srd_maul", + "srd_morningstar", + "srd_pike", + "srd_rapier", + "srd_scimitar", + "srd_shortsword", + "srd_trident", + "srd_war-pick", + "srd_warhammer", + "srd_whip" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "martial-ranged-weapons", + "fields": { + "name": "Martial Ranged Weapons", + "desc": "Martial weapons, including swords, axes, and polearms, require more specialized training to use effectively. Most warriors use martial weapons because these weapons put their fighting style and training to best use.", + "document": "srd", + "items": [ + "srd_blowgun", + "srd_crossbow-hand", + "srd_crossbow-heavy", + "srd_longbow", + "srd_net" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "medium-armor", + "fields": { + "name": "Medium Armor", + "desc": "Medium armor offers more protection than light armor, but it also impairs movement more. If you wear medium armor, you add your Dexterity modifier, to a maximum of +2, to the base number from your armor type to determine your Armor Class.", + "document": "srd", + "items": [ + "srd_breastplate", + "srd_chain-shirt", + "srd_half-plate", + "srd_hide-armor", + "srd_scale-mail" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "musical-instruments", + "fields": { + "name": "Musical instruments", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "items": [ + "srd_bagpipes", + "srd_drum", + "srd_dulcimer", + "srd_flute", + "srd_horn", + "srd_lute", + "srd_lyre", + "srd_pan-flute", + "srd_shawm", + "srd_viol" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "priests-pack", + "fields": { + "name": "Priest's Pack", + "desc": "Includes a backpack, a blanket, 10 candles, a tinderbox, an alms box, 2 blocks of incense, a censer, vestments, 2 days of rations, and a waterskin.", + "document": "srd", + "items": [ + "srd_backpack", + "srd_blanket", + "srd_candle", + "srd_rations-1-day", + "srd_tinderbox", + "srd_waterskin" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "scholars-pack", + "fields": { + "name": "Scholar's Pack", + "desc": "Includes a backpack, a book of lore, a bottle of ink, an ink pen, 10 sheets of parchment, a little bag of sand, and a small knife.", + "document": "srd", + "items": [ + "srd_backpack", + "srd_book", + "srd_ink-1-ounce-bottle", + "srd_ink-pen", + "srd_parchment-one-sheet" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "simple-melee-weapons", + "fields": { + "name": "Simple Melee Weapons", + "desc": "Most people can use simple weapons with proficiency. These weapons include clubs, maces, and other weapons often found in the hands of commoners.", + "document": "srd", + "items": [ + "srd_club", + "srd_dagger", + "srd_greatclub", + "srd_handaxe", + "srd_javelin", + "srd_light-hammer", + "srd_mace", + "srd_quarterstaff", + "srd_sickle", + "srd_spear" + ] + } + }, + { + "model": "api_v2.itemset", + "pk": "simple-ranged-weapons", + "fields": { + "name": "Simple Ranged Weapons", + "desc": "Most people can use simple weapons with proficiency.", + "document": "srd", + "items": [ + "srd_crossbow-light", + "srd_dart", + "srd_shortbow", + "srd_sling" + ] + } } -}, -{ - "model": "api_v2.itemset", - "pk": "artisans-tools", - "fields": { - "name": "Artisan's tools", - "desc": "These special tools include the items needed to pursue a craft or trade. The table shows examples of the most common types of tools, each providing items related to a single craft. Proficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "items": [ - "alchemists-supplies", - "brewers-supplies", - "calligraphers-supplies", - "carpenters-tools", - "cartographers-tools", - "cobblers-tools", - "cooks-utensils", - "disguise-kit", - "forgery-kit", - "glassblowers-tools", - "jewelers-tools", - "leatherworkers-tools", - "masons-tools", - "painters-supplies", - "potters-tools", - "smiths-tools", - "tinkers-tools", - "weavers-tools", - "woodcarvers-tools" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "burglars-pack", - "fields": { - "name": "Burglar's Pack", - "desc": "Includes a backpack, a bag of 1,000 ball bearings, 10 feet of string, a bell, 5 candles, a crowbar, a hammer, 10 pitons, a hooded lantern, 2 flasks of oil, 5 days rations, a tinderbox, and a waterskin. The pack also has 50 feet of hempen rope strapped to the side of it.", - "document": "srd", - "items": [ - "backpack", - "ball-bearings", - "candle", - "crowbar", - "hammer", - "lamp-oil", - "lantern-hooded", - "rations", - "rope-hempen-50ft", - "tinderbox", - "waterskin" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "diplomats-pack", - "fields": { - "name": "Diplomat's Pack", - "desc": "Includes a chest, 2 cases for maps and scrolls, a set of fine clothes, a bottle of ink, an ink pen, a lamp, 2 flasks of oil, 5 sheets of paper, a vial of perfume, sealing wax, and soap.", - "document": "srd", - "items": [ - "case-map-or-scroll", - "chest", - "clothes-fine", - "ink-bottle", - "ink-pen", - "lamp", - "lamp-oil", - "paper-sheet", - "perfume", - "sealing-wax", - "soap" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "druidic-focuses", - "fields": { - "name": "Druidic Focuses", - "desc": "A druidic focus might be a sprig of mistletoe or holly, a wand or scepter made of yew or another special wood, a staff drawn whole out of a living tree, or a totem object incorporating feathers, fur, bones, and teeth from sacred animals. A druid can use such an object as a spellcasting focus.", - "document": "srd", - "items": [ - "sprig-of-mistletoe", - "totem", - "wooden-staff", - "yew-wand" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "dungeoneers-pack", - "fields": { - "name": "Dungeoneer's Pack", - "desc": "Includes a backpack, a crowbar, a hammer, 10 pitons, 10 torches, a tinderbox, 10 days of rations, and a waterskin. The pack also has 50 feet of hempen rope strapped to the side of it.", - "document": "srd", - "items": [ - "backpack", - "crowbar", - "hammer", - "piton", - "rations", - "rope-hempen-50ft", - "tinderbox", - "torch", - "waterskin" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "entertainers-pack", - "fields": { - "name": "Entertainer's Pack", - "desc": "Includes a backpack, a bedroll, 2 costumes, 5 candles, 5 days of rations, a waterskin, and a disguise kit.", - "document": "srd", - "items": [ - "backpack", - "bedroll", - "candle", - "clothes-costume", - "disguise-kit", - "rations", - "waterskin" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "explorers-pack", - "fields": { - "name": "Explorer's Pack", - "desc": "Includes a backpack, a bedroll, a mess kit, a tinderbox, 10 torches, 10 days of rations, and a waterskin. The pack also has 50 feet of hempen rope strapped to the side of it.", - "document": "srd", - "items": [ - "backpack", - "bedroll", - "mess-kit", - "rations", - "rope-hempen-50ft", - "tinderbox", - "torch", - "waterskin" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "gaming-sets", - "fields": { - "name": "Gaming set", - "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", - "document": "srd", - "items": [ - "dice-set", - "playing-card-set" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "heavy-armor", - "fields": { - "name": "Heavy Armor", - "desc": "Of all the armor categories, heavy armor offers the best protection. These suits of armor cover the entire body and are designed to stop a wide range of attacks. Only proficient warriors can manage their weight and bulk.\r\n\r\nHeavy armor doesn't let you add your Dexterity modifier to your Armor Class, but it also doesn't penalize you if your Dexterity modifier is negative.", - "document": "srd", - "items": [ - "chain-mail", - "plate-armor", - "ring-mail", - "splint-armor" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "holy-symbols", - "fields": { - "name": "Holy Symbols", - "desc": "A holy symbol is a representation of a god or pantheon. It might be an amulet depicting a symbol representing a deity, the same symbol carefully engraved or inlaid as an emblem on a shield, or a tiny box holding a fragment of a sacred relic. Appendix PH-­‐‑B \"Fantasy-­‐‑Historical Pantheons\" lists the symbols commonly associated with many gods in the multiverse. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.", - "document": "srd", - "items": [ - "amulet", - "emblem", - "reliquary" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "light-armor", - "fields": { - "name": "Light Armor", - "desc": "Made from supple and thin materials, light armor favors agile adventurers since it offers some protection without sacrificing mobility. If you wear light armor, you add your Dexterity modifier to the base number from your armor type to determine your Armor Class.", - "document": "srd", - "items": [ - "leather-armor", - "padded-armor", - "studded-leather-armor" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "martial-melee-weapons", - "fields": { - "name": "Martial Melee Weapons", - "desc": "Martial weapons, including swords, axes, and polearms, require more specialized training to use effectively. Most warriors use martial weapons because these weapons put their fighting style and training to best use.", - "document": "srd", - "items": [ - "battleaxe", - "flail", - "glaive", - "greataxe", - "greatsword", - "halberd", - "lance", - "longsword", - "maul", - "morningstar", - "pike", - "rapier", - "scimitar", - "shortsword", - "trident", - "war-pick", - "warhammer", - "whip" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "martial-ranged-weapons", - "fields": { - "name": "Martial Ranged Weapons", - "desc": "Martial weapons, including swords, axes, and polearms, require more specialized training to use effectively. Most warriors use martial weapons because these weapons put their fighting style and training to best use.", - "document": "srd", - "items": [ - "blowgun", - "crossbow-hand", - "crossbow-heavy", - "longbow", - "net" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "medium-armor", - "fields": { - "name": "Medium Armor", - "desc": "Medium armor offers more protection than light armor, but it also impairs movement more. If you wear medium armor, you add your Dexterity modifier, to a maximum of +2, to the base number from your armor type to determine your Armor Class.", - "document": "srd", - "items": [ - "breastplate", - "chain-shirt", - "half-plate", - "hide-armor", - "scale-mail" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "musical-instruments", - "fields": { - "name": "Musical instruments", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "items": [ - "bagpipes", - "drum", - "dulcimer", - "flute", - "horn", - "lute", - "lyre", - "pan-flute", - "shawm", - "viol" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "priests-pack", - "fields": { - "name": "Priest's Pack", - "desc": "Includes a backpack, a blanket, 10 candles, a tinderbox, an alms box, 2 blocks of incense, a censer, vestments, 2 days of rations, and a waterskin.", - "document": "srd", - "items": [ - "backpack", - "blanket", - "candle", - "rations", - "tinderbox", - "waterskin" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "scholars-pack", - "fields": { - "name": "Scholar's Pack", - "desc": "Includes a backpack, a book of lore, a bottle of ink, an ink pen, 10 sheets of parchment, a little bag of sand, and a small knife.", - "document": "srd", - "items": [ - "backpack", - "book", - "ink-bottle", - "ink-pen", - "parchment-sheet" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "simple-melee-weapons", - "fields": { - "name": "Simple Melee Weapons", - "desc": "Most people can use simple weapons with proficiency. These weapons include clubs, maces, and other weapons often found in the hands of commoners.", - "document": "srd", - "items": [ - "club", - "dagger", - "greatclub", - "handaxe", - "javelin", - "light-hammer", - "mace", - "quaterstaff", - "sickle", - "spear" - ] - } -}, -{ - "model": "api_v2.itemset", - "pk": "simple-ranged-weapons", - "fields": { - "name": "Simple Ranged Weapons", - "desc": "Most people can use simple weapons with proficiency.", - "document": "srd", - "items": [ - "crossbow-light", - "dart", - "shortbow", - "sling" - ] - } -} -] +] \ No newline at end of file diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index 538f961f..06cd95c9 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -2,6 +2,7 @@ import json import numbers import glob +import os import logging logger = logging.getLogger(__name__) @@ -138,7 +139,7 @@ def fix_keys_to_doc_name(objs,f): for obj in objs: if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): - if f['filename']=='Spell.json': + if f['filename']=='Item.json': logger.warning("{} changing to doc_name format".format(f['path'])) pk_value = "{}_{}".format(obj['fields']['document'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) @@ -149,15 +150,15 @@ def fix_keys_to_doc_name(objs,f): related_path = "{}/{}/{}/{}/{}/".format(f['root'],f['dir'],f['schema'],f['publisher'],f['doc']) - related_filenames = ['SpellCastingOption.json'] + related_filenames = ['ItemSet.json'] for obj in objs_fixed: for related_file in related_filenames: logger.warning("CHANGING RELATED PK IN {} TO {}".format(related_file,obj['pk'])) - refactor_relations(related_path+related_file,"parent",obj['former_pk'], obj['pk']) + refactor_relations(related_path+related_file,"items",obj['former_pk'], obj['pk']) obj.pop('former_pk') - if f['filename']=='Spell.json': + if f['filename']=='Item.json': with open(f['path'],'w',encoding='utf-8') as wf: json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) pass @@ -188,15 +189,23 @@ def fix_keys_to_parent_level(objs,f): def refactor_relations(filename, key, former_pk, new_pk): refactored_objects = [] - with open(filename, 'r', encoding='utf-8') as f: - objs = json.load(f) - for obj in objs: - if obj['fields'][key] == former_pk: - obj['fields'][key] = new_pk - refactored_objects.append(obj) - - with open(filename,'w', encoding='utf-8') as o: - json.dump(refactored_objects,o, ensure_ascii=False,indent=2) + if os.path.isfile(filename): + with open(filename, 'r', encoding='utf-8') as f: + objs = json.load(f) + if key == "parent": + for obj in objs: + if obj['fields'][key] == former_pk: + obj['fields'][key] = new_pk + refactored_objects.append(obj) + if key == "items": + for obj in objs: + if former_pk in obj['fields'][key]: + obj['fields'][key].remove(former_pk) + obj['fields'][key].append(new_pk) + refactored_objects.append(obj) + + with open(filename,'w', encoding='utf-8') as o: + json.dump(refactored_objects,o, ensure_ascii=False,indent=2) def check_keys_doc_parent_name(objs,f): for obj in objs: From 07511008b2d8f5a241564352aaaf44cd9f0fc02e Mon Sep 17 00:00:00 2001 From: August Johnson Date: Thu, 30 May 2024 13:09:55 -0500 Subject: [PATCH 55/84] Whitespace mostly. --- data/v2/en-publishing/a5e-ag/Spell.json | 23204 +++---- .../a5e-ag/SpellCastingOption.json | 39914 ++++++------ data/v2/kobold-press/deepm/Spell.json | 32336 +++++----- .../deepm/SpellCastingOption.json | 50402 ++++++++-------- data/v2/kobold-press/deepmx/Spell.json | 4006 +- .../deepmx/SpellCastingOption.json | 4058 +- data/v2/kobold-press/kp/Spell.json | 1938 +- .../kobold-press/kp/SpellCastingOption.json | 2018 +- data/v2/kobold-press/toh/Spell.json | 5744 +- .../kobold-press/toh/SpellCastingOption.json | 8594 +-- data/v2/kobold-press/vom/Item.json | 40396 ++++++------- data/v2/kobold-press/wz/Spell.json | 2698 +- .../kobold-press/wz/SpellCastingOption.json | 3866 +- data/v2/open5e/open5e/Spell.json | 128 +- data/v2/open5e/open5e/SpellCastingOption.json | 240 +- data/v2/wizards-of-the-coast/srd/Item.json | 27742 +++++---- data/v2/wizards-of-the-coast/srd/ItemSet.json | 738 +- data/v2/wizards-of-the-coast/srd/Spell.json | 20034 +++--- .../srd/SpellCastingOption.json | 25034 ++++---- 19 files changed, 146526 insertions(+), 146564 deletions(-) diff --git a/data/v2/en-publishing/a5e-ag/Spell.json b/data/v2/en-publishing/a5e-ag/Spell.json index e5b2edf0..99ec98eb 100644 --- a/data/v2/en-publishing/a5e-ag/Spell.json +++ b/data/v2/en-publishing/a5e-ag/Spell.json @@ -1,11603 +1,11603 @@ [ - { - "model": "api_v2.spell", - "pk": "a5e-ag_accelerando", - "fields": { - "name": "Accelerando", - "desc": "You play a complex and quick up-tempo piece that gradually gets faster and more complex, instilling the targets with its speed. You cannot cast another spell through your spellcasting focus while concentrating on this spell.\n\nUntil the spell ends, targets gain cumulative benefits the longer you maintain concentration on this spell (including the turn you cast it).\n\n* **1 Round:** Double Speed.\n* **2 Rounds:** +2 bonus to AC.\n* **3 Rounds:** Advantage on Dexterity saving throws.\n* **4 Rounds:** An additional action each turn. This action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action.\n\nWhen the spell ends, a target can't move or take actions until after its next turn as the impact of their frenetic speed catches up to it.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "You may maintain concentration on this spell for an additional 2 rounds for each slot level above 4th.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "6 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_acid-arrow", - "fields": { - "name": "Acid Arrow", - "desc": "A jet of acid streaks towards the target like a hissing, green arrow. Make a ranged spell attack.\n\nOn a hit the target takes 4d4 acid damage and 2d4 ongoing acid damage for 1 round. On a miss the target takes half damage.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "Increase this spell's initial and ongoing damage by 1d4 per slot level above 2nd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "4d4", - "damage_types": [ - "acid" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_acid-splash", - "fields": { - "name": "Acid Splash", - "desc": "A stinking bubble of acid is conjured out of thin air to fly at the targets, dealing 1d6 acid damage.", - "document": "a5e-ag", - "level": 0, - "school": "conjuration", - "higher_level": "This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 2, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_aid", - "fields": { - "name": "Aid", - "desc": "You draw upon divine power, imbuing the targets with fortitude. Until the spell ends, each target increases its hit point maximum and current hit points by 5.", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "The granted hit points increase by an additional 5 for each slot level above 2nd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_air-wave", - "fields": { - "name": "Air Wave", - "desc": "Your deft weapon swing sends a wave of cutting air to assault a creature within range. Make a melee weapon attack against the target. If you are wielding one weapon in each hand, your attack deals an additional 1d6 damage. Regardless of the weapon you are wielding, your attack deals slashing damage.", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "The spell's range increases by 30 feet for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_alarm", - "fields": { - "name": "Alarm", - "desc": "You set an alarm against unwanted intrusion that alerts you whenever a creature of size Tiny or larger touches or enters the warded area. When you cast the spell, choose any number of creatures. These creatures don't set off the alarm.\n\nChoose whether the alarm is silent or audible. The silent alarm is heard in your mind if you are within 1 mile of the warded area and it awakens you if you are sleeping. An audible alarm produces a loud noise of your choosing for 10 seconds within 60 feet.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "You may create an additional alarm for each slot level above 1st. The spell's range increases to 600 feet, but you must be familiar with the locations you ward, and all alarms must be set within the same physical structure. Setting off one alarm does not activate the other alarms.\n\nYou may choose one of the following effects in place of creating an additional alarm. The effects apply to all alarms created during the spell's casting.\n\nIncreased Duration. The spell's duration increases to 24 hours.\n\nImproved Audible Alarm. The audible alarm produces any sound you choose and can be heard up to 300 feet away.\n\nImproved Mental Alarm. The mental alarm alerts you regardless of your location, even if you and the alarm are on different planes of existence.", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_alter-self", - "fields": { - "name": "Alter Self", - "desc": "You use magic to mold yourself into a new form. Choose one of the options below. Until the spell ends, you can use an action to choose a different option.\n\n* **Amphibian:** Your body takes on aquatic adaptations. You can breathe underwater normally and gain a swimming speed equal to your base Speed.\n* **Altered State:** You decide what you look like. \n \nNone of your gameplay statistics change but you can alter anything about your body's appearance, including but not limited to: your heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, sound of your voice, hair style and length, skin and eye coloration, sex, and any other distinguishing features. You cannot become a creature of a different size category, and your limb structure remains the same; for example if you're bipedal, you can't use this spell to become a quadruped. Until the spell ends, you can use an action to change your appearance.\n* **Red in Tooth and Claw:** You grow magical natural weapons of your choice with a +1 bonus to attack and damage. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage of a type determined by the natural weapon you chose; for example a tentacle deals bludgeoning, a horn deals piercing, and claws deal slashing.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "When using a spell slot of 5th-level, add the following to the list of forms you can adopt.\n\n* **Greater Natural Weapons:** The damage dealt by your natural weapon increases to 2d6, and you gain a +2 bonus to attack and damage rolls with your natural weapons.\n* **Mask of the Grave:** You adopt the appearance of a skeleton or zombie (your choice). Your type changes to undead, and mindless undead creatures ignore your presence, treating you as one of their own. You don't need to breathe and you become immune to poison.\n* **Wings:** A pair of wings sprouts from your back. The wings can appear bird-like, leathery like a bat or dragon's wings, or like the wings of an insect. You gain a fly speed equal to your base Speed.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_altered-strike", - "fields": { - "name": "Altered Strike", - "desc": "You briefly transform your weapon or fist into another material and strike with it, making a melee weapon attack against a target within your reach.\n\nYou use your spellcasting ability for your attack and damage rolls, and your melee weapon attack counts as if it were made with a different material for the purpose of overcoming resistance and immunity to nonmagical attacks and damage: either bone, bronze, cold iron, steel, stone, or wood.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "When you reach 5th level, you can choose silver or mithral as the material. When you reach 11th level, if you have the Extra Attack feature you make two melee weapon attacks as part of the casting of this spell instead of one. In addition, you can choose adamantine as the material.\n\nWhen you reach 17th level, your attacks with this spell deal an extra 1d6 damage.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_angel-paradox", - "fields": { - "name": "Angel Paradox", - "desc": "The target is bombarded with a fraction of energy stolen from some slumbering, deific source, immediately taking 40 radiant damage. This spell ignores resistances but does not ignore immunities. A creature killed by this spell does not decay and cannot become undead for the spell's duration. Days spent under the influence of this spell don't count against the time limit of spells such as _raise dead_. This effect ends early if the corpse takes necrotic damage.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "The damage and duration increase to 45 radiant damage and 1 year when using an 8th-level spell slot, or 50 damage and until dispelled when using a 9th-level spell slot.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "40", - "damage_types": [ - "radiant" - ], - "duration": "7 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_animal-friendship", - "fields": { - "name": "Animal Friendship", - "desc": "You allow your inner beauty to shine through in song and dance whether to call a bird from its tree or a badger from its sett. Until the spell ends or one of your companions harms it (whichever is sooner), the target is charmed by you.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "Choose one additional target for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_animal-messenger", - "fields": { - "name": "Animal Messenger", - "desc": "You call a Tiny beast to you, whisper a message to it, and then give it directions to the message's recipient. It is now your messenger.\n\nSpecify a location you have previously visited and a recipient who matches a general description, such as \"a person wearing a pointed red hat in Barter Town\" or \"a half-orc in a wheelchair at the Striped Lion Inn.\" Speak a message of up to 25 words. For the duration of the spell, the messenger travels towards the location at a rate of 50 miles per day for a messenger with a flying speed, or else 25 miles without.\n\nWhen the messenger arrives, it delivers your message to the first creature matching your description, replicating the sound of your voice exactly. If the messenger can't find the recipient or reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.", - "document": "a5e-ag", - "level": 2, - "school": "enchantment", - "higher_level": "The duration of the spell increases by 48 hours for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_animal-shapes", - "fields": { - "name": "Animal Shapes", - "desc": "You transform the bodies of creatures into beasts without altering their minds. Each target transforms into a Large or smaller beast with a Challenge Rating of 4 or lower. Each target may have the same or a different form than other targets.\n\nOn subsequent turns, you can use your action to transform targets into new forms, gaining new hit points when they do so.\n\nUntil the spell ends or it is dropped to 0 hit points, the target's game statistics (including its hit points) are replaced by the statistics of the chosen beast excepting its Intelligence, Wisdom, and Charisma scores. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effect on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.", - "document": "a5e-ag", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_animate-dead", - "fields": { - "name": "Animate Dead", - "desc": "You animate a mortal's remains to become your undead servant.\n\nIf the spell is cast upon bones you create a skeleton, and if cast upon a corpse you choose to create a skeleton or a zombie. The Narrator has the undead's statistics.\n\nWhile it is within 60 feet you can use a bonus action to mentally command the undead. When you command multiple undead using this spell, you must give them all the same command. You may decide the action the undead takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, the undead only defends itself. The undead continues to follow a command until its task is complete.\n\nThe undead is under your control for 24 hours, after which it stops obeying any commands. You must cast this spell on the undead before the spell ends to maintain control of it for another 24 hours.\n\nCasting the spell in this way reasserts control over up to 4 of your previously-animated undead instead of animating a new one.", - "document": "a5e-ag", - "level": 3, - "school": "necromancy", - "higher_level": "You create or reassert control over 2 additional undead for each slot level above 3rd. When commanding more than 3 undead they make group attack rolls (see page 454 in Chapter 8: Combat).", - "target_type": "area", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_animate-objects", - "fields": { - "name": "Animate Objects", - "desc": "Objects come to life at your command just like you dreamt of when you were an apprentice! Choose up to 6 unattended nonmagical Small or Tiny objects. You may also choose larger objects; treat Medium objects as 2 objects, Large objects as 3 objects, and Huge objects as 6 objects. You can't animate objects larger than Huge.\n\nUntil the spell ends or a target is reduced to 0 hit points, you animate the targets and turn them into constructs under your control.\n\nEach construct has Constitution 10, Intelligence 3, Wisdom 3, and Charisma 1, as well as a flying speed of 30 feet and the ability to hover (if securely fastened to something larger, it has a Speed of 0), and blindsight to a range of 30 feet (blind beyond that distance). Otherwise a construct's statistics are determined by its size.\n\nIf you animate 4 or more Small or Tiny objects, instead of controlling each construct individually they function as a construct swarm. Add together all swarm's total hit points. Attacks against a construct swarm deal half damage. The construct swarm reverts to individual constructs when it is reduced to 15 hit points or less.\n\nYou can use a bonus action to mentally command any construct made with this spell while it is within 500 feet. When you command multiple constructs using this spell, you may simultaneously give them all the same command. You decide the action the construct takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. Without commands the construct only defends itself. The construct continues to follow a command until its task is complete.\n\nWhen you command a construct to attack, it makes a single slam melee attack against a creature within 5 feet of it. On a hit the construct deals bludgeoning, piercing, or slashing damage appropriate to its shape.\n\nWhen the construct drops to 0 hit points, any excess damage carries over to its normal object form.", - "document": "a5e-ag", - "level": 5, - "school": "transmutation", - "higher_level": "You can animate 2 additional Small or Tiny objects for each slot level above 5th.", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_antilife-shell", - "fields": { - "name": "Antilife Shell", - "desc": "A barrier that glimmers with an oily rainbow hue pops into existence around you. The barrier moves with you and prevents creatures other than undead and constructs from passing or reaching through its surface.\n\nThe barrier does not prevent spells or attacks with ranged or reach weapons from passing through the barrier.\n\nThe spell ends if you move so that a Tiny or larger living creature is forced to pass through the barrier.", - "document": "a5e-ag", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_antimagic-field", - "fields": { - "name": "Antimagic Field", - "desc": "An invisible sphere of antimagic forms around you, moving with you and suppressing all magical effects within it. At the Narrator's discretion, sufficiently powerful artifacts and deities may be able to ignore the sphere's effects.\n\n* **Area Suppression:** When a magical effect protrudes into the sphere, that part of the effect's area is suppressed. For example, the ice created by a wall of ice is suppressed within the sphere, creating a gap in the wall if the overlap is large enough.\n* **Creatures and Objects:** While within the sphere, any creatures or objects created or conjured by magic temporarily wink out of existence, reappearing immediately once the space they occupied is no longer within the sphere.\n* **Dispel Magic:** The sphere is immune to dispel magic and similar magical effects, including other antimagic field spells.\n* **Magic Items:** While within the sphere, magic items function as if they were mundane objects. Magic weapons and ammunition cease to be suppressed when they fully leave the sphere.\n* **Magical Travel:** Whether the sphere includes a destination or departure point, any planar travel or teleportation within it automatically fails. Until the spell ends or the sphere moves, magical portals and extradimensional spaces (such as that created by a bag of holding) within the sphere are closed.\n* **Spells:** Any spell cast within the sphere or at a target within the sphere is suppressed and the spell slot is consumed. Active spells and magical effects are also suppressed within the sphere. If a spell or magical effect has a duration, time spent suppressed counts against it.", - "document": "a5e-ag", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_antipathysympathy", - "fields": { - "name": "Antipathy/Sympathy", - "desc": "You mystically impart great love or hatred for a place, thing, or creature. Designate a kind of intelligent creature, such as dragons, goblins, or vampires.\n\nThe target now causes either antipathy or sympathy for the specified creatures for the duration of the spell. When a designated creature successfully saves against the effects of this spell, it immediately understands it was under a magical effect and is immune to this spell's effects for 1 minute.\n\n* **Antipathy:** When a designated creature can see the target or comes within 60 feet of it, the creature makes a Wisdom saving throw or becomes frightened. While frightened the creature must use its movement to move away from the target to the nearest safe spot from which it can no longer see the target. If the creature moves more than 60 feet from the target and can no longer see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.\n* **Sympathy:** When a designated creature can see the target or comes within 60 feet of it, the creature must succeed on a Wisdom saving throw. On a failure, the creature uses its movement on each of its turns to enter the area or move within reach of the target, and is unwilling to move away from the target. \nIf the target damages or otherwise harms an affected creature, the affected creature can make a Wisdom saving throw to end the effect. An affected creature can also make a saving throw once every 24 hours while within the area of the spell, and whenever it ends its turn more than 60 feet from the target and is unable to see the target.", - "document": "a5e-ag", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_arcane-eye", - "fields": { - "name": "Arcane Eye", - "desc": "Until the spell ends, you create an invisible, floating magical eye that hovers in the air and sends you visual information. The eye has normal vision, darkvision to a range of 30 feet, and it can look in every direction.\n\nYou can use an action to move the eye up to 30 feet in any direction as long as it remains on the same plane of existence. The eye can pass through openings as small as 1 inch across but otherwise its movement is blocked by solid barriers.", - "document": "a5e-ag", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_arcane-hand", - "fields": { - "name": "Arcane Hand", - "desc": "You create a Large hand of shimmering, translucent force that mimics the appearance and movements of your own hand.\n\nThe hand doesn't fill its space and has AC 20, Strength 26 (+8), Dexterity 10 (+0), maneuver DC 18, and hit points equal to your hit point maximum. The spell ends early if it is dropped to 0 hit points.\n\nWhen you cast the spell and as a bonus action on subsequent turns, you can move the hand up to 60 feet and then choose one of the following.\n\n* **_Shove:_** The hand makes a Strength saving throw against the maneuver DC of a creature within 5 feet of it, with advantage if the creature is Medium or smaller. On a success, the hand pushes the creature in a direction of your choosing for up to 5 feet plus a number of feet equal to 5 times your spellcasting ability modifier, and remains within 5 feet of it.\n* **_Smash:_** Make a melee spell attack against a creature or object within 5 feet of the hand. On a hit, the hand deals 4d8 force damage.\n* **_Snatch:_** The hand makes a Strength saving throw against the maneuver DC of a creature within 5 feet of it, with advantage if the creature is Medium or smaller. On a success, the creature is grappled by the hand. You can use a bonus action to crush a creature grappled by the hand, dealing bludgeoning damage equal to 2d6 + your spellcasting ability modifier.\n* **_Stop:_** Until the hand is given another command it moves to stay between you and a creature of your choice, providing you with three-quarters cover against the chosen creature. A creature with a Strength score of 26 or less cannot move through the hand's space, and stronger creatures treat the hand as difficult terrain.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "The damage from Smash increases by 2d8 and the damage from Snatch increases by 2d6 for each slot level above 5th.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_arcane-lock", - "fields": { - "name": "Arcane Lock", - "desc": "The target is sealed to all creatures except those you designate (who can open the object normally). Alternatively, you may choose a password that suppresses this spell for 1 minute when it is spoken within 5 feet of the target. The spell can also be suppressed for 10 minutes by casting _knock_ on the target. Otherwise, the target cannot be opened normally and it is more difficult to break or force open, increasing the DC to break it or pick any locks on it by 10 (minimum DC 20).", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "Increase the DC to force open the object or pick any locks on the object by an additional 2 for each slot level above 2nd. Only a knock spell cast at a slot level equal to or greater than your arcane lock suppresses it.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_arcane-muscles", - "fields": { - "name": "Arcane Muscles", - "desc": "Your muscles swell with arcane power. They're too clumsy to effectively wield weapons but certainly strong enough for a powerful punch. Until the spell ends, you can choose to use your spellcasting ability score for Athletics checks, and for the attack and damage rolls of unarmed strikes. In addition, your unarmed strikes deal 1d6 bludgeoning damage and count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_arcane-riposte", - "fields": { - "name": "Arcane Riposte", - "desc": "You respond to an incoming attack with a magically-infused attack of your own. Make a melee spell attack against the creature that attacked you. If you hit, the creature takes 3d6 acid, cold, fire, lightning, poison, or thunder damage.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The spell deals an extra 1d6 damage for each slot level above 1st. When using a 4th-level spell slot, you may choose to deal psychic, radiant, or necrotic damage. When using a 6th-level spell slot, you may choose to deal force damage.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "3d6", - "damage_types": [ - "acid", - "cold", - "fire", - "lightning", - "poison", - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_arcane-sword", - "fields": { - "name": "Arcane Sword", - "desc": "You summon an insubstantial yet deadly sword to do your bidding.\n\nMake a melee spell attack against a target of your choice within 5 feet of the sword, dealing 3d10 force damage on a hit.\n\nUntil the spell ends, you can use a bonus action on subsequent turns to move the sword up to 20 feet to a space you can see and make an identical melee spell attack against a target.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_arcanists-magic-aura", - "fields": { - "name": "Arcanist's Magic Aura", - "desc": "You craft an illusion to deceive others about the target's true magical properties.\n\nChoose one or both of the following effects. When cast upon the same target with the same effect for 30 successive days, it lasts until it is dispelled.\n\n* **False Aura:** A magical target appears nonmagical, a nonmagical target appears magical, or you change a target's magical aura so that it appears to belong to a school of magic of your choosing. Additionally, you can choose to make the false magic apparent to any creature that handles the item.\n* **Masking Effect:** Choose a creature type. Spells and magical effects that detect creature types (such as a herald's Divine Sense or the trigger of a symbol spell) treat the target as if it were a creature of that type. Additionally, you can choose to mask the target's alignment trait (if it has one).", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "When cast using a 6th-level spell slot or higher the effects last until dispelled with a bonus action.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_aspect-of-the-moon", - "fields": { - "name": "Aspect of the Moon", - "desc": "You throw your head back and howl like a beast, embracing your most basic impulses. Until the spell ends your hair grows, your features become more feral, and sharp claws grow on your fingers. You gain a +1 bonus to AC, your Speed increases by 10 feet, you have advantage on Perception checks, and your unarmed strikes deal 1d8 slashing damage. You may use your Strength or Dexterity for attack and damage rolls with unarmed strikes, and treat your unarmed strikes as weapons with the finesse property. You gain an additional action on your turn, which may only be used to make a melee attack with your unarmed strike. If you are hit by a silvered weapon, you have disadvantage on your Constitution saving throw to maintain concentration.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_astral-projection", - "fields": { - "name": "Astral Projection", - "desc": "Until the spell ends, the targets leave their material bodies (unconscious and in a state of suspended animation, not aging or requiring food or air) and project astral forms that resemble their mortal forms in nearly all ways, keeping their game statistics and possessions.\n\nWhile in this astral form you trail a tether, a silvery-white cord that sprouts from between your shoulder blades and fades into immateriality a foot behind you. As long as the tether remains intact you can find your way back to your material body. When it is cut—which requires an effect specifically stating that it cuts your tether —your soul and body are separated and you immediately die. Damage against and other effects on your astral form have no effect on your material body either during this spell or after its duration ends. Your astral form travels freely through the Astral Plane and can pass through interplanar portals on the Astral Plane leading to any other plane. When you enter a new plane or return to the plane you were on when casting this spell, your material body and possessions are transported along the tether, allowing you to return fully intact with all your gear as you enter the new plane.\n\nThe spell ends for all targets when you use an action to dismiss it, for an individual target when a successful dispel magic is cast upon its astral form or material body, or when either its material body or its astral form drops to 0 hit points. When the spell ends for a target and the tether is intact, the tether pulls the target's astral form back to its material body, ending the suspended animation.\n\nIf the spell ends for you prematurely, other targets remain in their astral forms and must find their own way back to their bodies (usually by dropping to 0 hit points).", - "document": "a5e-ag", - "level": 9, - "school": "necromancy", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_augury", - "fields": { - "name": "Augury", - "desc": "With the aid of a divining tool, you receive an omen from beyond the Material Plane about the results of a specific course of action that you intend to take within the next 30 minutes. The Narrator chooses from the following:\n\n* Fortunate omen (good results)\n* Calamity omen (bad results)\n* Ambivalence omen (both good and bad results)\n* No omen (results that aren't especially good or bad)\n\nThis omen does not account for possible circumstances that could change the outcome, such as making additional preparations.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a random reading from the above options increases. The Narrator makes the following roll in secret: second casting—25%, third casting—50%, fourth casting—75%, fifth casting—100%.", - "document": "a5e-ag", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_awaken", - "fields": { - "name": "Awaken", - "desc": "You impart sentience in the target, granting it an Intelligence of 10 and proficiency in a language you know. A plant targeted by this spell gains the ability to move, as well as senses identical to those of a human. The Narrator assigns awakened plant statistics (such as an awakened shrub or awakened tree).\n\nThe target is charmed by you for 30 days or until you or your companions harm it. Depending on how you treated the target while it was charmed, when the condition ends the awakened creature may choose to remain friendly to you.", - "document": "a5e-ag", - "level": 5, - "school": "transmutation", - "higher_level": "Target an additional creature for each slot level above 5th. Each target requires its own material component.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_bane", - "fields": { - "name": "Bane", - "desc": "The senses of the targets are filled with phantom energies that make them more vulnerable and less capable. Until the spell ends, a d4 is subtracted from attack rolls and saving throws made by a target.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "You target an additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_banishment", - "fields": { - "name": "Banishment", - "desc": "You employ sheer force of will to make reality question the existence of a nearby creature, causing them to warp visibly in front of you.\n\nUntil the spell ends, a target native to your current plane is banished to a harmless demiplane and incapacitated. At the end of the duration the target reappears in the space it left (or the nearest unoccupied space). A target native to a different plane is instead banished to its native plane.\n\nAt the end of each of its turns, a banished creature can repeat the saving throw with a -1 penalty for each round it has spent banished, returning on a success. If the spell ends before its maximum duration, the target reappears in the space it left (or the nearest unoccupied space) but otherwise a target native to a different plane doesn't return.", - "document": "a5e-ag", - "level": 4, - "school": "abjuration", - "higher_level": "The duration of banishment increases by 1 round for each slot level above 4th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1d4+2 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_barkskin", - "fields": { - "name": "Barkskin", - "desc": "The target's skin takes on the texture and appearance of bark, increasing its AC to 16 (unless its AC is already higher).", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "The target's AC increases by +1 for every two slot levels above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_battlecry-ballad", - "fields": { - "name": "Battlecry Ballad", - "desc": "You fill your allies with a thirst for glory and battle using your triumphant rallying cry. Expend and roll a Bardic Inspiration die to determine the number of rounds you can maintain concentration on this spell (minimum 1 round). Each target gains a bonus to attack and damage rolls equal to the number of rounds you have maintained concentration on this spell (maximum +4).\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "You can maintain concentration on this spell for an additional round for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 100, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": " special", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_beacon-of-hope", - "fields": { - "name": "Beacon of Hope", - "desc": "The targets are filled with hope and vitality.\n\nUntil the spell ends, each target gains advantage on Wisdom saving throws and death saving throws, and when a target receives healing it regains the maximum number of hit points possible.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_bestow-curse", - "fields": { - "name": "Bestow Curse", - "desc": "Choose one of the following:\n\n* Select one ability score; the target has disadvantage on ability checks and saving throws using that ability score.\n* The target makes attack rolls against you with disadvantage.\n* Each turn, the target loses its action unless it succeeds a Wisdom saving throw at the start of its turn.\n* Your attacks and spells deal an additional 1d8 necrotic damage against the target.\n\nA curse lasts until the spell ends. At the Narrator's discretion you may create a different curse effect with this spell so long as it is weaker than the options above.\n\nA _remove curse_ spell ends the effect if the spell slot used to cast it is equal to or greater than the spell slot used to cast _bestow curse_.", - "document": "a5e-ag", - "level": 3, - "school": "necromancy", - "higher_level": "When using a 4th-level spell slot the duration increases to 10 minutes. When using a 5th-level spell slot the duration increases to 8 hours and it no longer requires your concentration. When using a 7th-level spell slot the duration is 24 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_black-tentacles", - "fields": { - "name": "Black Tentacles", - "desc": "Writhing black tentacles fill the ground within the area turning it into difficult terrain. When a creature starts its turn in the area or enters the area for the first time on its turn, it takes 3d6 bludgeoning damage and is restrained by the tentacles unless it succeeds on a Dexterity saving throw. A creature that starts its turn restrained by the tentacles takes 3d6 bludgeoning damage.\n\nA restrained creature can use its action to make an Acrobatics or Athletics check against the spell save DC, freeing itself on a success.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "The damage increases by 1d6 for every 2 slot levels above 4th.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_blade-barrier", - "fields": { - "name": "Blade Barrier", - "desc": "You create a wall of slashing blades. The wall can be up to 20 feet high and 5 feet thick, and can either be a straight wall up to 100 feet long or a ringed wall of up to 60 feet in diameter. The wall provides three-quarters cover and its area is difficult terrain.\n\nWhen a creature starts its turn within the wall's area or enters the wall's area for the first time on a turn, it makes a Dexterity saving throw, taking 6d10 slashing damage on a failed save, or half as much on a successful save.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "The damage increases by 1d10 for each slot level above 6th.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_bless", - "fields": { - "name": "Bless", - "desc": "The blessing you bestow upon the targets makes them more durable and competent. Until the spell ends, a d4 is added to attack rolls and saving throws made by a target.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "You target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_blight", - "fields": { - "name": "Blight", - "desc": "Necrotic energies drain moisture and vitality from the target, dealing 8d8 necrotic damage. Undead and constructs are immune to this spell.\n\nA plant creature or magical plant has disadvantage on its saving throw and takes the maximum damage possible from this spell. A nonmagical plant that isn't a creature receives no saving throw and instead withers until dead.", - "document": "a5e-ag", - "level": 4, - "school": "necromancy", - "higher_level": "The damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_blindnessdeafness", - "fields": { - "name": "Blindness/Deafness", - "desc": "Until the spell ends, the target is blinded or deafened (your choice). At the end of each of its turns the target can repeat its saving throw, ending the spell on a success.", - "document": "a5e-ag", - "level": 2, - "school": "necromancy", - "higher_level": "You target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_blink", - "fields": { - "name": "Blink", - "desc": "Until the spell ends, roll 1d20 at the end of each of your turns. When you roll an 11 or higher you disappear and reappear in the Ethereal Plane (if you are already on the Ethereal Plane, the spell fails and the spell slot is wasted). At the start of your next turn you return to an unoccupied space that you can see within 10 feet of where you disappeared from. If no unoccupied space is available within range, you reappear in the nearest unoccupied space (determined randomly when there are multiple nearest choices). As an action, you can dismiss this spell.\n\nWhile on the Ethereal Plane, you can see and hear into the plane you were originally on out to a range of 60 feet, but everything is obscured by mist and in shades of gray. You can only target and be targeted by other creatures on the Ethereal Plane.\n\nCreatures on your original plane cannot perceive or interact with you, unless they are able to interact with the Ethereal Plane.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_blood-writ-bargain", - "fields": { - "name": "Blood-Writ Bargain", - "desc": "This spell creates a pact which is enforced by celestial or fiendish forces. You and another willing creature commit to a mutual agreement, clearly declaring your parts of the agreement during the casting.\n\nUntil the spell ends, if for any reason either participant breaks the agreement or fails to uphold their part of the bargain, beings of celestial or fiendish origin appear within unoccupied spaces as close as possible to the participant who broke the bargain. The beings are hostile to the deal-breaking participant and attempt to kill them, as well as any creatures that defend them. When the dealbreaking participant is killed, or the spell's duration ends, the beings disappear in a flash of smoke.\n\nThe spellcaster chooses whether the beings are celestial or fiendish while casting the spell, and the Narrator chooses the exact creatures summoned (such as a couatl or 5 imps). There may be any number of beings, but their combined Challenge Rating can't exceed 5.", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "The combined Challenge Rating of summoned beings increases by 2 and the duration increases by 13 days for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "13 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_blur", - "fields": { - "name": "Blur", - "desc": "Until the spell ends, you are shrouded in distortion and your image is blurred. Creatures make attack rolls against you with disadvantage unless they have senses that allow them to perceive without sight or to see through illusions (like blindsight or truesight).", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "You may target an additional willing creature you can see within range for each slot level above 2nd. Whenever an affected creature other than you is hit by an attack, the spell ends for that creature. When using a higher level spell slot, increase the spell's range to 30 feet.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_burning-hands", - "fields": { - "name": "Burning Hands", - "desc": "A thin sheet of flames shoots forth from your outstretched hands. Each creature in the area takes 3d6 fire damage. The fire ignites any flammable unattended objects in the area.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The damage increases by 1d6 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_calculate", - "fields": { - "name": "Calculate", - "desc": "You instantly know the answer to any mathematical equation that you speak aloud. The equation must be a problem that a creature with Intelligence 20 could solve using nonmagical tools with 1 hour of calculation. Additionally, you gain an expertise die on Engineering checks made during the duration of the spell.\n\nNote: Using the _calculate_ cantrip allows a player to make use of a calculator at the table in order to rapidly answer mathematical equations.", - "document": "a5e-ag", - "level": 0, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_calculated-retribution", - "fields": { - "name": "Calculated Retribution", - "desc": "You surround yourself with a dampening magical field and collect the energy of a foe's attack to use against them. When you take damage from a weapon attack, you can end the spell to halve the attack's damage against you, gaining a retribution charge that lasts until the end of your next turn. By expending the retribution charge when you hit with a melee attack, you deal an additional 2d10 force damage.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "You may use your reaction to halve the damage of an attack against you up to a number of times equal to the level of the spell slot used, gaining a retribution charge each time that lasts until 1 round after the spell ends.\n\nYou must still make Constitution saving throws to maintain your concentration on this spell, but you do so with advantage, or if you already have advantage, you automatically succeed.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_call-lightning", - "fields": { - "name": "Call Lightning", - "desc": "A 60-foot radius storm cloud that is 10 feet high appears in a space 100 feet above you. If there is not a point in the air above you that the storm cloud could appear, the spell fails (such as if you are in a small cavern or indoors).\n\nOn the round you cast it, and as an action on subsequent turns until the spell ends, you can call down a bolt of lightning to a point directly beneath the cloud. Each creature within 5 feet of the point makes a Dexterity saving throw, taking 3d10 lightning damage on a failed save or half as much on a successful one.\n\nIf you are outdoors in a storm when you cast this spell, you take control of the storm instead of creating a new cloud and the spell's damage is increased by 1d10.", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "The damage increases by 1d10 for each slot level above 3rd.", - "target_type": "point", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_calm-emotions", - "fields": { - "name": "Calm Emotions", - "desc": "Strong and harmful emotions are suppressed within the area. You can choose which of the following two effects to apply to each target of this spell.\n\n* Suppress the charmed or frightened conditions, though they resume when the spell ends (time spent suppressed counts against a condition's duration).\n* Suppress hostile feelings towards creatures of your choice until the spell ends. This suppression ends if a target is attacked or sees its allies being attacked. Targets act normally when the spell ends.", - "document": "a5e-ag", - "level": 2, - "school": "enchantment", - "higher_level": "The spell area increases by 10 feet for each slot level above 2nd.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_ceremony", - "fields": { - "name": "Ceremony", - "desc": "You perform a religious ceremony during the casting time of this spell. When you cast the spell, you choose one of the following effects, any targets of which must be within range during the entire casting.\n\n* **Funeral:** You bless one or more corpses, acknowledging their transition away from this world. For the next week, they cannot become undead by any means short of a wish spell. This benefit lasts indefinitely regarding undead of CR 1/4 or less. A corpse can only benefit from this effect once.\n* **Guide the Passing:** You bless one or more creatures within range for their passage into the next life. For the next 7 days, their souls cannot be trapped or captured by any means short of a wish spell. Once a creature benefits from this effect, it can't do so again until it has been restored to life.\n* **Offering:** The gifts of the faithful are offered to the benefit of the gods and the community. Choose one skill or tool proficiency and target a number of creatures equal to your proficiency bonus that are within range. When a target makes an ability check using the skill or tool within the next week, it can choose to use this benefit to gain an expertise die on the check. A creature can be targeted by this effect no more than once per week.\n* **Purification:** A creature you touch is washed with your spiritual energy. Choose one disease or possession effect on the target. If the save DC for that effect is equal to or lower than your spell save DC, the effect ends.\n* **Rite of Passage:** You shepherd one or more creatures into the next phase of life, such as in a child dedication, coming of age, marriage, or conversion ceremony. These creatures gain inspiration. A creature can benefit from this effect no more than once per year.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_chain-lightning", - "fields": { - "name": "Chain Lightning", - "desc": "You fire a bolt of electricity at the primary target that deals 10d8 lightning damage. Electricity arcs to up to 3 additional targets you choose that are within 30 feet of the primary target.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "An extra arc leaps from the primary target to an additional target for each slot level above 6th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_charm-monster", - "fields": { - "name": "Charm Monster", - "desc": "You only require line of sight to the target (not line of effect) and it has advantage on its saving throw to resist the spell if you or your companions are fighting it. Until the spell ends, the target is charmed by you and friendly towards you.\n\nThe spell ends if you or your companions do anything harmful towards the target. The target knows it was charmed by you when the spell ends.", - "document": "a5e-ag", - "level": 4, - "school": "enchantment", - "higher_level": "For each slot level above 4th, you affect one additional target that is within 30 feet of other targets.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_charm-person", - "fields": { - "name": "Charm Person", - "desc": "You only require line of sight to the target (not line of effect) and it has advantage on its saving throw to resist the spell if you or your companions are fighting it. Until the spell ends, the target is charmed by you and friendly towards you.\n\nThe spell ends if you or your companions do anything harmful towards the target. The target knows it was charmed by you when the spell ends.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "For each slot level above 1st, you affect one additional target that is within 30 feet of other targets.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_chill-touch", - "fields": { - "name": "Chill Touch", - "desc": "You reach out with a spectral hand that carries the chill of death. Make a ranged spell attack. On a hit, the target takes 1d8 necrotic damage, and it cannot regain hit points until the start of your next turn. The hand remains visibly clutching onto the target for the duration. If the target you hit is undead, it makes attack rolls against you with disadvantage until the end of your next turn.", - "document": "a5e-ag", - "level": 0, - "school": "necromancy", - "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_circle-of-death", - "fields": { - "name": "Circle of Death", - "desc": "A sphere of negative energy sucks life from the area.\n\nCreatures in the area take 9d6 necrotic damage.", - "document": "a5e-ag", - "level": 6, - "school": "necromancy", - "higher_level": "The damage increases by 2d6 for each slot level above 6th.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_circular-breathing", - "fields": { - "name": "Circular Breathing", - "desc": "You begin carefully regulating your breath so that you can continue playing longer or keep breathing longer in adverse conditions.\n\nUntil the spell ends, you can breathe underwater, and you can utilize bardic performances that would normally require breathable air. In addition, you have advantage on saving throws against gases and environments with adverse breathing conditions.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "The duration of this spell increases when you reach 5th level (10 minutes), 11th level (30 minutes), and 17th level (1 hour).", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_clairvoyance", - "fields": { - "name": "Clairvoyance", - "desc": "An invisible sensor is created within the spell's range. The sensor remains there for the duration, and it cannot be targeted or attacked.\n\nChoose seeing or hearing when you cast the spell.\n\nYou may use that sense through the sensor as if you were there. As an action, you may switch which sense you are using through the sensor.\n\nA creature able to see invisible things (from the see invisibility spell or truesight, for instance) sees a 4-inch diameter glowing, ethereal orb.", - "document": "a5e-ag", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "1 mile", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_clone", - "fields": { - "name": "Clone", - "desc": "This spell grows a duplicate of the target that remains inert indefinitely as long as its vessel is sealed.\n\nThe clone grows inside the sealed vessel and matures over the course of 120 days. You can choose to have the clone be a younger version of the target.\n\nOnce the clone has matured, when the target dies its soul is transferred to the clone so long as it is free and willing. The clone is identical to the target (except perhaps in age) and has the same personality, memories, and abilities, but it is without the target's equipment. The target's original body cannot be brought back to life by magic since its soul now resides within the cloned body.", - "document": "a5e-ag", - "level": 8, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_cloudkill", - "fields": { - "name": "Cloudkill", - "desc": "You create a sphere of poisonous, sickly green fog, which can spread around corners but not change shape. The area is heavily obscured. A strong wind disperses the fog, ending the spell early.\n\nUntil the spell ends, when a creature enters the area for the first time on its turn or starts its turn there, it takes 5d8 poison damage.\n\nThe fog moves away from you 10 feet at the start of each of your turns, flowing along the ground. The fog is thicker than air, sinks to the lowest level in the land, and can even flow down openings and pits.", - "document": "a5e-ag", - "level": 5, - "school": "conjuration", - "higher_level": "The damage increases by 1d8 for each slot level above 5th.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "poison" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_cobras-spit", - "fields": { - "name": "Cobra's Spit", - "desc": "Until the spell ends, you can use an action to spit venom, making a ranged spell attack at a creature or object within 30 feet. On a hit, the venom deals 4d8 poison damage, and if the target is a creature it is poisoned until the end of its next turn.", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "The damage increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_color-spray", - "fields": { - "name": "Color Spray", - "desc": "A blast of dazzling multicolored light flashes from your hand to blind your targets until the start of your next turn. Starting with the target with the lowest hit points (ignoring unconscious creatures), targets within the area are blinded, in ascending order according to their hit points.\n\nWhen a target is blinded, subtract its hit points from the total before moving on to the next target.\n\nA target's hit points must be equal to or less than the total remaining for the spell to have any affect.", - "document": "a5e-ag", - "level": 1, - "school": "illusion", - "higher_level": "Add an additional 2d10 hit points for each slot level above 1st.", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_command", - "fields": { - "name": "Command", - "desc": "You only require line of sight to the target (not line of effect). On its next turn the target follows a one-word command of your choosing. The spell fails if the target is undead, if it does not understand your command, or if the command is immediately harmful to it.\n\nBelow are example commands, but at the Narrator's discretion you may give any one-word command.\n\n* **Approach/Come/Here:** The target uses its action to take the Dash action and move toward you by the shortest route, ending its turn if it reaches within 5 feet of you.\n* **Bow/Grovel/Kneel:** The target falls prone and ends its turn.\n* **Drop:** The target drops anything it is holding and ends its turn.\n* **Flee/Run:** The target uses its action to Dash and moves away from you as far as it can.\n* **Halt:** The target remains where it is and takes no actions. A flying creature that cannot hover moves the minimum distance needed to remain aloft.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "For each slot level above 1st, you affect one additional target that is within 30 feet of other targets.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_commune", - "fields": { - "name": "Commune", - "desc": "You contact your deity, a divine proxy, or a personified source of divine power and ask up to 3 questions that could be answered with a yes or a no. You must complete your questions before the spell ends. You receive a correct answer for each question, unless the being does not know. When the being does not know, you receive \"unclear\" as an answer. The being does not try to deceive, and the Narrator may offer a short phrase as an answer if necessary.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a no answer increases.\n\nThe Narrator makes the following roll in secret: second casting —25%, third casting —50%, fourth casting—75%, fifth casting—100%.", - "document": "a5e-ag", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_commune-with-nature", - "fields": { - "name": "Commune with Nature", - "desc": "Until the spell ends, your spirit bonds with that of nature and you learn about the surrounding land.\n\nWhen cast outdoors the spell reaches 3 miles around you, and in natural underground settings it reaches only 300 feet. The spell fails if you are in a heavily constructed area, such as a dungeon or town.\n\nYou learn up to 3 facts of your choice about the surrounding area:\n\n* Terrain and bodies of water\n* Common flora, fauna, minerals, and peoples\n* Any unnatural creatures in the area\n* Weaknesses in planar boundaries\n* Built structures", - "document": "a5e-ag", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_comprehend-languages", - "fields": { - "name": "Comprehend Languages", - "desc": "You gain a +10 bonus on Insight checks made to understand the meaning of any spoken language that you hear, or any written language that you can touch. Typically interpreting an unknown language is a DC 20 check, but the Narrator may use DC 15 for a language closely related to one you know, DC 25 for a language that is particularly unfamiliar or ancient, or DC 30 for a lost or dead language. This spell doesn't uncover secret messages or decode cyphers, and it does not assist in uncovering lies.", - "document": "a5e-ag", - "level": 1, - "school": "divination", - "higher_level": "The bonus increases by +5 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_cone-of-cold", - "fields": { - "name": "Cone of Cold", - "desc": "Frigid cold blasts from your hands. Each creature in the area takes 8d8 cold damage. Creatures killed by this spell become frozen statues until they thaw.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above 5th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "8d8", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_confusion", - "fields": { - "name": "Confusion", - "desc": "You assault the minds of your targets, filling them with delusions and making them confused until the spell ends. On a successful saving throw, a target is rattled for 1 round. At the end of each of its turns, a confused target makes a Wisdom saving throw to end the spell's effects on it.", - "document": "a5e-ag", - "level": 4, - "school": "enchantment", - "higher_level": "The spell's area increases by 5 feet for each slot level above 4th.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_conjure-animals", - "fields": { - "name": "Conjure Animals", - "desc": "You summon forth the spirit of a beast that takes the physical form of your choosing in unoccupied spaces you can see.\n\nChoose one of the following:\n\n* One beast of CR 2 or less\n* Two beasts of CR 1 or less\n* Three beasts of CR 1/2 or less\n\n Beasts summoned this way are allied to you and your companions. While it is within 60 feet you can use a bonus action to mentally command a summoned beast. When you command multiple beasts using this spell, you must give them all the same command. You may decide the action the beast takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, a conjured beast only defends itself.", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "The challenge rating of beasts you can summon increases by one step for each slot level above 3rd. For example, when using a 4th-level spell slot you can summon one beast of CR 3 or less, two beasts of CR 2 or less, or three beasts of CR 1 or less.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_conjure-celestial", - "fields": { - "name": "Conjure Celestial", - "desc": "You summon a creature from the realms celestial.\n\nThis creature uses the statistics of a celestial creature (detailed below) with certain traits determined by your choice of its type: an angel of battle, angel of protection, or angel of vengeance.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the celestial creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears 1 hour after you summoned it.", - "document": "a5e-ag", - "level": 7, - "school": "conjuration", - "higher_level": "For each slot level above 7th the celestial creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_conjure-elemental", - "fields": { - "name": "Conjure Elemental", - "desc": "You summon a creature from the Elemental Planes. This creature uses the statistics of a conjured elemental creature (detailed below) with certain traits determined by your choice of its type: air, earth, fire, or water.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the elemental creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears 1 hour after you summoned it.", - "document": "a5e-ag", - "level": 5, - "school": "conjuration", - "higher_level": "For each slot level above 5th the elemental creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_conjure-fey", - "fields": { - "name": "Conjure Fey", - "desc": "You summon a creature from The Dreaming.\n\nThis creature uses the statistics of a fey creature (detailed below) with certain traits determined by your choice of its type: hag, hound, or redcap.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the summoned creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "For each slot level above 6th the fey creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_conjure-minor-elementals", - "fields": { - "name": "Conjure Minor Elementals", - "desc": "You summon up to 3 creatures from the Elemental Planes. These creatures use the statistics of a minor elemental (detailed below) with certain traits determined by your choice of its type: air, earth, fire, or water. If you summon only 2 creatures with this spell, increase its effective slot level by 1 when determining the minor elemental's statistics, and if you summon a single creature with this spell its effective slot level is increased by 2 instead.\n\nThe summoned creatures are friendly to you and your companions and take their turns immediately after yours. They obey your verbal commands. When you command multiple minor elementals using this spell, you must give them all the same command.\n\nWithout such commands, a minor elemental only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of any summoned creatures, which become hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "Use the higher spell slot level wherever the spell's level appears in the stat block.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_conjure-woodland-beings", - "fields": { - "name": "Conjure Woodland Beings", - "desc": "You summon up to 3 creatures from The Dreaming. These creatures use the statistics of a woodland being (detailed below) with certain traits determined by your choice of its type: blink dog, satyr, or sprite. If you summon only 2 creatures with this spell, increase its effective slot level by 1 when determining the minor woodland being's statistics, and if you summon a single creature with this spell its effective slot level is increased by 2 instead.\n\nThe summoned creatures are friendly to you and your companions and take their turns immediately after yours. They obey your verbal commands. When you command multiple woodland beings using this spell, you must give them all the same command.\n\nWithout such commands, a summoned creature only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of any summoned creatures, which become hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "Use the higher spell slot level wherever the spell's level appears in the stat block.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_contact-other-plane", - "fields": { - "name": "Contact Other Plane", - "desc": "You consult an otherworldly entity, risking your very mind in the process. Make a DC 15 Intelligence saving throw. On a failure, you take 6d6 psychic damage and suffer four levels of strife until you finish a long rest. A _greater restoration_ spell ends this effect.\n\nOn a successful save, you can ask the entity up to 5 questions before the spell ends. When possible the entity responds with one-word answers: yes, no, maybe, never, irrelevant, or unclear. At the Narrator's discretion, it may instead provide a brief but truthful answer when necessary.", - "document": "a5e-ag", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_contagion", - "fields": { - "name": "Contagion", - "desc": "Your touch inflicts a hideous disease. Make a melee spell attack. On a hit, you afflict the target with a disease chosen from the list below.\n\nThe target must make a Constitution saving throw at the end of each of its turns. After three failed saves, the disease lasts for the duration and the creature stops making saves, or after three successful saves, the creature recovers and the spell ends. A greater restoration spell or similar effect also ends the disease.\n\n* **Blinding Sickness:** The target's eyes turn milky white. It is blinded and has disadvantage on Wisdom checks and saving throws.\n* **Filth Fever:** The target is wracked by fever. It has disadvantage when using Strength for an ability check, attack roll, or saving throw.\n* **Flesh Rot:** The target's flesh rots. It has disadvantage on Charisma ability checks and becomes vulnerable to all damage.\n* **Mindfire:** The target hallucinates. During combat it is confused, and it has disadvantage when using Intelligence for an ability check or saving throw.\n* **Rattling Cough:** The target becomes discombobulated as it hacks with body-wracking coughs. It is rattled and has disadvantage when using Dexterity for an ability check, attack roll, or saving throw.\n* **Slimy Doom:** The target bleeds uncontrollably. It has disadvantage when using Constitution for an ability check or saving throw. Whenever it takes damage, the target is stunned until the end of its next turn.", - "document": "a5e-ag", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "7 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_contingency", - "fields": { - "name": "Contingency", - "desc": "As part of this spell, cast a spell of 5th-level or lower that has a casting time of 1 action, expending spell slots for both. The second spell must target you, and doesn't target others even if it normally would.\n\nDescribe the circumstances under which the second spell should be cast. It is automatically triggered the first time these circumstances are met. This spell ends when the second spell is triggered, when you cast _contingency_ again, or if the material component for it is not on your person. For example, when you cast _contingency_ with _blur_ as a second spell you might make the trigger be when you see a creature target you with a weapon attack, or you might make it be when you make a weapon attack against a creature, or you could choose for it to be when you see an ally make a weapon attack against a creature.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_continual-flame", - "fields": { - "name": "Continual Flame", - "desc": "A magical torch-like flame springs forth from the target. The flame creates no heat, doesn't consume oxygen, and can't be extinguished, but it can be covered.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_control-water", - "fields": { - "name": "Control Water", - "desc": "Water inside the area is yours to command. On the round you cast it, and as an action on subsequent turns until the spell ends, you can choose one of the following effects. When you choose a different effect, the current one ends.\n\n* **Flood:** The standing water level rises by up to 20 feet. The flood water spills onto land if the area includes a shore, but when the area is in a large body of water you instead create a 20-foottall wave. The wave travels across the area and crashes down, carrying Huge or smaller vehicles to the other side, each of which has a 25% chance of capsizing. The wave repeats on the start of your next turn while this effect continues.\n* **Part Water:** You create a 20-foot wide trench spanning the area with walls of water to either side. When this effect ends, the trench slowly refills over the course of the next round.\nRedirect Flow: Flowing water in the area moves in a direction you choose, including up. Once the water moves beyond the spell's area, it resumes its regular flow based on the terrain.\n* **Whirlpool:** If the affected body of water is at least 50 feet square and 25 feet deep, a whirlpool forms within the area in a 50-foot wide cone that is 25 feet long. Creatures and objects that are in the area and within 25 feet of the whirlpool make an Athletics check against your spell save DC or are pulled 10 feet toward it. Once within the whirlpool, checks made to swim out of it have disadvantage. When a creature first enters the whirlpool on a turn or starts its turn there, it makes a Strength saving throw or takes 2d8 bludgeoning damage and is pulled into the center of the whirlpool. On a successful save, the creature takes half damage and isn't pulled.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "10 minutes", - "shape_type": "cone", - "shape_magnitude": 50, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_control-weather", - "fields": { - "name": "Control Weather", - "desc": "You must be outdoors to cast this spell, and it ends early if you don't have a clear path to the sky.\n\nUntil the spell ends, you change the weather conditions in the area from what is normal for the current climate and season. Choose to increase or decrease each weather condition (precipitation, temperature, and wind) up or down by one stage on the following tables. Whenever you change the wind, you can also change its direction. The new conditions take effect after 1d4 × 10 minutes, at which point you can change the conditions again. The weather gradually returns to normal when the spell ends.", - "document": "a5e-ag", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_corpse-explosion", - "fields": { - "name": "Corpse Explosion", - "desc": "A corpse explodes in a poisonous cloud. Each creature in a 10-foot radius of the corpse must make a Constitution saving throw. A creature takes 3d6 thunder damage and is poisoned for 1 minute on a failed save, or it takes half as much damage and is not poisoned on a successful one. A poisoned creature can repeat the saving throw at the end of each of its turns, ending the effect for itself on a success.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "You target an additional corpse for every 2 slot levels above 1st.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_counterspell", - "fields": { - "name": "Counterspell", - "desc": "You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 2nd-level or lower, its spell fails and has no effect.\n\nIf it is casting a spell of 3rd-level or higher, make an ability check using your spellcasting ability (DC 10 + the spell's level). On a success, the creature's spell fails and has no effect, but the creature can use its reaction to reshape the fraying magic and cast another spell with the same casting time as the original spell.\n\nThis new spell must be cast at a spell slot level equal to or less than half the original spell slot.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "The interrupted spell has no effect if its level is less than the level of the spell slot used to cast this spell, or if both spells use the same level spell slot an opposed spellcasting ability check is made.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "reaction", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_create-food-and-water", - "fields": { - "name": "Create Food and Water", - "desc": "Your magic turns one serving of food or water into 3 Supply. The food is nourishing but bland, and the water is clean. After 24 hours uneaten food spoils and water affected or created by this spell goes bad.", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "You create an additional 2 Supply for each slot level above 3rd.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_create-or-destroy-water", - "fields": { - "name": "Create or Destroy Water", - "desc": "Choose one of the following.\n\n* **Create Water:** You fill the target with up to 10 gallons of nonpotable water or 1 Supply of clean water. Alternatively, the water falls as rain that extinguishes exposed flames in the area.\n* **Destroy Water:** You destroy up to 10 gallons of water in the target. Alternatively, you destroy fog in the area.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "For each slot level above 1st, you either create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet.", - "target_type": "area", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_create-undead", - "fields": { - "name": "Create Undead", - "desc": "This spell cannot be cast in sunlight. You reanimate the targets as undead and transform them into ghouls under your control.\n\nWhile it is within 120 feet you can use a bonus action to mentally command the undead. When you command multiple undead using this spell, you must give them all the same command. You may decide the action the undead takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, the undead only defends itself. The undead continues to follow a command until its task is complete.\n\nThe undead is under your control for 24 hours, after which it stops obeying any commands. You must cast this spell on the undead before the spell ends to maintain control of it for another 24 hours. Casting the spell in this way reasserts control over up to 3 undead you have animated with this spell, rather than animating a new one.", - "document": "a5e-ag", - "level": 6, - "school": "necromancy", - "higher_level": "You create or reassert control over one additional ghoul for each slot level above 6th. Alternatively, when using an 8th-level spell slot you create or reassert control over 2 ghasts or wights, or when using a 9th-level spell slot you create or reassert control over 3 ghasts or wights, or 2 mummies. When commanding more than 3 undead they make group attack rolls (see page 454 in Chapter 8: Combat).", - "target_type": "area", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_creation", - "fields": { - "name": "Creation", - "desc": "You weave raw magic into a mundane physical object no larger than a 5-foot cube. The object must be of a form and material you have seen before. Using the object as a material component for another spell causes that spell to fail.\n\nThe spell's duration is determined by the object's material. An object composed of multiple materials uses the shortest duration.", - "document": "a5e-ag", - "level": 5, - "school": "illusion", - "higher_level": "The size of the cube increases by 5 feet for each slot level above 5th.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_crushing-haymaker", - "fields": { - "name": "Crushing Haymaker", - "desc": "Your fist reverberates with destructive energy, and woe betide whatever it strikes. As part of casting the spell, make a melee spell attack against a creature or object within 5 feet. If you hit, the target of your attack takes 7d6 thunder damage, and must make a Constitution saving throw or be knocked prone and stunned until the end of its next turn. This spell's damage is doubled against objects and structures.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "The spell deals an extra 1d6 of thunder damage for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "7d6", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_cure-wounds", - "fields": { - "name": "Cure Wounds", - "desc": "The target regains hit points equal to 1d8 + your spellcasting ability modifier.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The hit points regained increase by 1d8 for each slot level above 1st.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_dancing-lights", - "fields": { - "name": "Dancing Lights", - "desc": "You create up to four hovering lights which appear as torches, lanterns, or glowing orbs that can be combined into a glowing Medium-sized humanoid form. Each sheds dim light in a 10-foot radius.\n\nYou can use a bonus action to move the lights up to 60 feet so long as each remains within 20 feet of another light created by this spell. A dancing light winks out when it exceeds the spell's range.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_darklight", - "fields": { - "name": "Darklight", - "desc": "You create an enchanted flame that surrounds your hand and produces no heat, but sheds bright light in a 20-foot radius around you and dim light for an additional 20 feet. Only you and up to 6 creatures of your choice can see this light.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_darkness", - "fields": { - "name": "Darkness", - "desc": "Magical darkness heavily obscures darkvision and blocks nonmagical light in the area. The darkness spreads around corners. If any of the area overlaps with magical light created by a spell of 2nd-level or lower, the spell that created the light is dispelled.\n\nWhen cast on an object that is in your possession or unattended, the darkness emanates from it and moves with it. Completely covering the object with something that is not transparent blocks the darkness.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_darkvision", - "fields": { - "name": "Darkvision", - "desc": "The target gains darkvision out to a range of 60 feet.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "The range of the target's darkvision increases to 120 feet. In addition, for each slot level above 3rd you may choose an additional target.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_daylight", - "fields": { - "name": "Daylight", - "desc": "Magical light fills the area. The area is brightly lit and sheds dim light for an additional 60 feet. If any of the area overlaps with magical darkness created by a spell of 3rd-level or lower, the spell that created the darkness is dispelled.\n\nWhen cast on an object that is in your possession or unattended, the light shines from it and moves with it. Completely covering the object with something that is not transparent blocks the light.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_deadweight", - "fields": { - "name": "Deadweight", - "desc": "The target object's weight is greatly increased. Any creature holding the object must succeed on a Strength saving throw or drop it. A creature which doesn't drop the object has disadvantage on attack rolls until the start of your next turn as it figures out the object's new balance.\n\nCreatures that attempt to push, drag, or lift the object must succeed on a Strength check against your spell save DC to do so.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_death-ward", - "fields": { - "name": "Death Ward", - "desc": "The first time damage would reduce the target to 0 hit points, it instead drops to 1 hit point. If the target is subjected to an effect that would kill it instantaneously without dealing damage, that effect is negated. The spell ends immediately after either of these conditions occur.", - "document": "a5e-ag", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_delayed-blast-fireball", - "fields": { - "name": "Delayed Blast Fireball", - "desc": "A glowing bead of yellow light flies from your finger and lingers at a point at the center of the area until you end the spell—either because your concentration is broken or because you choose to end it—and the bead detonates. Each creature in the area takes 12d6 fire damage. If at the end of your turn the bead has not yet detonated, the damage increases by 1d6.\n\nIf touched before the spell ends, the creature touching the bead makes a Dexterity saving throw or the bead detonates. On a successful save, the creature can use an action to throw the bead up to 40 feet, moving the area with it. If the bead strikes a creature or solid object, the bead detonates.\n\nThe fire spreads around corners, and it damages and ignites any flammable unattended objects in the area.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "The damage increases by 1d6 for each slot level above 7th.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "12d6", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_demiplane", - "fields": { - "name": "Demiplane", - "desc": "You create a shadowy door on the target. The door is large enough for Medium creatures to pass through. The door leads to a demiplane that appears as an empty, 30-foot-cube chamber made of wood or stone. When the spell ends, the door disappears from both sides, trapping any creatures or objects inside the demiplane.\n\nEach time you cast this spell, you can either create a new demiplane, conjure the door to a demiplane you have previously created, or make a door leading to a demiplane whose nature or contents you are familiar with.", - "document": "a5e-ag", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_detect-evil-and-good", - "fields": { - "name": "Detect Evil and Good", - "desc": "You attempt to sense the presence of otherworldly forces. You automatically know if there is a place or object within range that has been magically consecrated or desecrated. In addition, on the round you cast it and as an action on subsequent turns until the spell ends, you may make a Wisdom (Religion) check against the passive Deception score of any aberration, celestial, elemental, fey, fiend, or undead creature within range. On a success, you sense the creature's presence, as well as where the creature is located.\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", - "document": "a5e-ag", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_detect-magic", - "fields": { - "name": "Detect Magic", - "desc": "Until the spell ends, you automatically sense the presence of magic within range, and you can use an action to study the aura of a magic effect to learn its schools of magic (if any).\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", - "document": "a5e-ag", - "level": 1, - "school": "divination", - "higher_level": "When using a 2nd-level spell slot or higher, the spell no longer requires your concentration. When using a 3rd-level spell slot or higher, the duration increases to 1 hour. When using a 4th-level spell slot or higher, the duration increases to 8 hours.", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_detect-poison-and-disease", - "fields": { - "name": "Detect Poison and Disease", - "desc": "On the round you cast it, and as an action on subsequent turns until the spell ends, you can attempt to sense the presence of poisons, poisonous creatures, and disease by making a Perception check. On a success you identify the type of each poison or disease within range. Typically noticing and identifying a poison or disease is a DC 10 check, but the Narrator may use DC 15 for uncommon afflictions, DC 20 for rare afflictions, or DC 25 for afflictions that are truly unique. On a failed check, this casting of the spell cannot sense that specific poison or disease.\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", - "document": "a5e-ag", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_detect-thoughts", - "fields": { - "name": "Detect Thoughts", - "desc": "On the round you cast it, and as an action on subsequent turns until the spell ends, you can probe a creature's mind to read its thoughts by focusing on one creature you can see within range. The creature makes a Wisdom saving throw. Creatures with an Intelligence score of 3 or less or that don't speak any languages are unaffected. On a failed save, you learn the creature's surface thoughts —what is most on its mind in that moment. On a successful save, you fail to read the creature's thoughts and can't attempt to probe its mind for the duration. Conversation naturally shapes the course of a creature's thoughts and what it is thinking about may change based on questions verbally directed at it.\n\nOnce you have read a creature's surface thoughts, you can use an action to probe deeper into its mind. The creature makes a second Wisdom saving throw. On a successful save, you fail to read the creature's deeper thoughts and the spell ends. On a failure, you gain insight into the creature's motivations, emotional state, and something that looms large in its mind.\n\nThe creature then becomes aware you are probing its mind and can use an action to make an Intelligence check contested by your Intelligence check, ending the spell if it succeeds.\n\nAdditionally, you can use an action to scan for thinking creatures within range that you can't see.\n\nOnce you detect the presence of a thinking creature, so long as it remains within range you can attempt to read its thoughts as described above (even if you can't see it).\n\nThe spell penetrates most barriers but is blocked by 2 feet of stone, 2 inches of common metal, or a thin sheet of lead.", - "document": "a5e-ag", - "level": 2, - "school": "divination", - "higher_level": "When using a 5th-level spell slot, increase the spell's range to 1 mile. When using a 7th-level spell slot, increase the range to 10 miles.\n\nWhen using a 9th-level spell slot, increase the range to 1, 000 miles.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_dimension-door", - "fields": { - "name": "Dimension Door", - "desc": "You teleport to any place you can see, visualize, or describe by stating distance and direction such as 200 feet straight downward or 400 feet upward at a 30-degree angle to the southeast.\n\nYou can bring along objects if their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn't carrying gear beyond its carrying capacity and is within 5 feet.\n\nIf you would arrive in an occupied space the spell fails, and you and any creature with you each take 4d6 force damage.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "500 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_disguise-self", - "fields": { - "name": "Disguise Self", - "desc": "Until the spell ends or you use an action to dismiss it, you and your gear are cloaked by an illusory disguise that makes you appear like another creature of your general size and body type, including but not limited to: your heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, hair style and length, skin and eye coloration, sex, and any other distinguishing features. You cannot disguise yourself as a creature of a different size category, and your limb structure remains the same; for example if you're bipedal, you can't use this spell to appear as a quadruped.\n\nThe disguise does not hold up to physical inspection. A creature that tries to grab an illusory hat, for example, finds its hand passes straight through the figment. To see through your disguise without such an inspection, a creature must use its action to make an Investigation check against your spell save DC.", - "document": "a5e-ag", - "level": 1, - "school": "illusion", - "higher_level": "When using a 3rd-level spell slot or higher, this spell functions identically to the seeming spell, except the spell's duration is 10 minutes.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_disintegrate", - "fields": { - "name": "Disintegrate", - "desc": "A pale ray emanates from your pointed finger to the target as you attempt to undo it.\n\nThe target takes 10d6 + 40 force damage. A creature reduced to 0 hit points is obliterated, leaving behind nothing but fine dust, along with anything it was wearing or carrying (except magic items). Only true resurrection or a wish spell can restore it to life.\n\nThis spell automatically disintegrates nonmagical objects and creations of magical force that are Large-sized or smaller. Larger objects and creations of magical force have a 10-foot-cube portion disintegrated instead. Magic items are unaffected.", - "document": "a5e-ag", - "level": 6, - "school": "transmutation", - "higher_level": "The damage increases by 3d6 for each slot level above 6th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "10d6+40", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_dispel-evil-and-good", - "fields": { - "name": "Dispel Evil and Good", - "desc": "A nimbus of power surrounds you, making you more able to resist and destroy beings from beyond the realms material.\n\nUntil the spell ends, celestials, elementals, fey, fiends, and undead have disadvantage on attack rolls against you.\n\nYou can end the spell early by using an action to do either of the following.\n\n* **Mental Resistance:** Choose up to 3 friendly creatures within 60 feet. Each of those creatures that is charmed, frightened, or possessed by a celestial, elemental, fey, fiend, or undead may make an immediate saving throw with advantage against the condition or possession, ending it on a success.\n* **Retribution:** Make a melee spell attack against a celestial, elemental, fey, fiend, or undead within reach. On a hit, the creature takes 7d8 radiant or necrotic damage (your choice) and is stunned until the beginning of your next turn.", - "document": "a5e-ag", - "level": 5, - "school": "abjuration", - "higher_level": "Mental Resistance targets one additional creature for each slot level above 5th, and Retribution's damage increases by 1d8 for each slot level above 5th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "7d8", - "damage_types": [ - "necrotic", - "radiant" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_dispel-magic", - "fields": { - "name": "Dispel Magic", - "desc": "You scour the magic from your target. Any spell cast on the target ends if it was cast with a spell slot of 3rd-level or lower. For spells using a spell slot of 4th-level or higher, make an ability check with a DC equal to 10 + the spell's level for each one, ending the effect on a success.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "You automatically end the effects of a spell on the target if the level of the spell slot used to cast it is equal to or less than the level of the spell slot used to cast dispel magic.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_divination", - "fields": { - "name": "Divination", - "desc": "Your offering and magic put you in contact with the higher power you serve or its representatives.\n\nYou ask a single question about something that will (or could) happen in the next 7 days. The Narrator offers a truthful reply, which may be cryptic or even nonverbal as appropriate to the being in question.\n\nThe reply does not account for possible circumstances that could change the outcome, such as making additional precautions.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a random reading from the above options increases. The Narrator makes the following roll in secret: second casting—25%, third casting—50%, fourth casting—75%, fifth casting—100%.", - "document": "a5e-ag", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_divine-favor", - "fields": { - "name": "Divine Favor", - "desc": "You imbue divine power into your strikes. Until the spell ends, you deal an extra 1d4 radiant damage with your weapon attacks.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_divine-word", - "fields": { - "name": "Divine Word", - "desc": "You utter a primordial imprecation that brings woe upon your enemies. A target suffers an effect based on its current hit points.\n\n* Fewer than 50 hit points: deafened for 1 minute.\n* Fewer than 40 hit points: blinded and deafened for 10 minutes.\n* Fewer than 30 hit points: stunned, blinded, and deafened for 1 hour.\n* Fewer than 20 hit points: instantly killed outright.\n\nAdditionally, when a celestial, elemental, fey, or fiend is affected by this spell it is immediately forced back to its home plane and for 24 hours it is unable to return to your current plane by any means less powerful than a wish spell. Such a creature does not suffer this effect if it is already on its plane of origin.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_dominate-beast", - "fields": { - "name": "Dominate Beast", - "desc": "You assert control over the target beast's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", - "document": "a5e-ag", - "level": 4, - "school": "enchantment", - "higher_level": "The spell's duration is extended: 5th-level—Concentration (10 minutes), 6th-level—Concentration (1 hour), 7th-level—Concentration (8 hours).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_dominate-monster", - "fields": { - "name": "Dominate Monster", - "desc": "You assert control over the target creature's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", - "document": "a5e-ag", - "level": 8, - "school": "enchantment", - "higher_level": "The duration is Concentration (8 hours)", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_dominate-person", - "fields": { - "name": "Dominate Person", - "desc": "You assert control over the target humanoid's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", - "document": "a5e-ag", - "level": 5, - "school": "enchantment", - "higher_level": "The spell's duration is extended: 6th-level—Concentration (10 minutes), 7th-level —Concentration (1 hour), 8th-level —Concentration (8 hours).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_dramatic-sting", - "fields": { - "name": "Dramatic Sting", - "desc": "You frighten the target by echoing its movements with ominous music and terrifying sound effects. It takes 1d4 psychic damage and becomes frightened of you until the spell ends.\n\nAt the end of each of the creature's turns, it can make another Wisdom saving throw, ending the effect on itself on a success. On a failed save, the creature takes 1d4 psychic damage.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "The damage increases by 1d4 for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "1d4", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_dream", - "fields": { - "name": "Dream", - "desc": "Until the spell ends, you manipulate the dreams of another creature. You designate a messenger, which may be you or a willing creature you touch, to enter a trance. The messenger remains aware of its surroundings while in the trance but cannot take actions or move.\n\nIf the target is sleeping the messenger appears in its dreams and can converse with the target as long as it remains asleep and the spell remains active. The messenger can also manipulate the dream, creating objects, landscapes, and various other sensory sensations. The messenger can choose to end the trance at any time, ending the spell. The target remembers the dream in perfect detail when it wakes. The messenger knows if the target is awake when you cast the spell and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the spell works as described.\n\nYou can choose to let the messenger terrorize the target. The messenger can deliver a message of 10 words or fewer and the target must make a Wisdom saving throw. If you have a portion of the target's body (some hair or a drop of blood) it has disadvantage on its saving throw. On a failed save, echoes of the messenger's fearful aspect create a nightmare that lasts the duration of the target's sleep and prevents it from gaining any benefit from the rest. In addition, upon waking the target suffers a level of fatigue or strife (your choice), up to a maximum of 3 in either condition.\n\nCreatures that don't sleep or don't dream (such as elves) cannot be contacted by this spell.", - "document": "a5e-ag", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Special", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_druidcraft", - "fields": { - "name": "Druidcraft", - "desc": "You call upon your mastery of nature to produce one of the following effects within range:\n\n* You create a minor, harmless sensory effect that lasts for 1 round and predicts the next 24 hours of weather in your current location. For example, the effect might create a miniature thunderhead if storms are predicted.\n* You instantly make a plant feature develop, but never to produce Supply. For example, you can cause a flower to bloom or a seed pod to open.\n* You create an instantaneous, harmless sensory effect such as the sound of running water, birdsong, or the smell of mulch. The effect must fit in a 5-foot cube.\n* You instantly ignite or extinguish a candle, torch, smoking pipe, or small campfire.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_earth-barrier", - "fields": { - "name": "Earth Barrier", - "desc": "Choose an unoccupied space between you and the source of the attack which triggers the spell. You call forth a pillar of earth or stone (3 feet diameter, 20 feet tall, AC 10, 20 hit points) in that space that provides you with three-quarters cover (+5 to AC, Dexterity saving throws, and ability checks made to hide).", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_earthquake", - "fields": { - "name": "Earthquake", - "desc": "You create a seismic disturbance in the spell's area. Until the spell ends, an intense tremor rips through the ground and shakes anything in contact with it.\n\nThe ground in the spell's area becomes difficult terrain as it warps and cracks.\n\nWhen you cast this spell and at the end of each turn you spend concentrating on it, each creature in contact with the ground in the spell's area must make a Dexterity saving throw or be knocked prone.\n\nAdditionally, any creature that is concentrating on a spell while in contact with the ground in the spell's area must make a Constitution saving throw or lose concentration.\n\nAt the Narrator's discretion, this spell may have additional effects depending on the terrain in the area.\n\n* **Fissures:** Fissures open within the spell's area at the start of your next turn after you cast the spell. A total of 1d6 such fissures open in locations you choose. Each is 1d10 × 10 feet deep, 10 feet wide, and extends from one edge of the spell's area to the opposite side. A creature standing on a spot where a fissure opens makes a Dexterity saving throw or falls in. On a successful save, a creature moves with the fissure's edge as it opens.\n* A structure automatically collapses if a fissure opens beneath it (see below).\n* **Structures:** A structure in contact with the ground in the spell's area takes 50 bludgeoning damage when you cast the spell and again at the start of each of your turns while the spell is active. A structure reduced to 0 hit points this way collapses.\n* Creatures within half the distance of a collapsing structure's height make a Dexterity saving throw or take 5d6 bludgeoning damage, are knocked prone, and are buried in the rubble, requiring a DC 20 Acrobatics or Athletics check as an action to escape. A creature inside (instead of near) a collapsing structure has disadvantage on its saving throw. The Narrator can adjust the DC higher or lower depending on the composition of the rubble. On a successful save, the creature takes half as much damage and doesn't fall prone or become buried.", - "document": "a5e-ag", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "500 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "50", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_eldritch-cube", - "fields": { - "name": "Eldritch Cube", - "desc": "A black, nonreflective, incorporeal 10-foot cube appears in an unoccupied space that you can see. Its space can be in midair if you so desire. When a creature starts its turn in the cube or enters the cube for the first time on its turn it must make an Intelligence saving throw, taking 5d6 psychic damage on a failed save, or half damage on a success.\n\nAs a bonus action, you can move the cube up to 10 feet in any direction to a space you can see. The cube cannot be made to pass through other creatures in this way.", - "document": "a5e-ag", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_enhance-ability", - "fields": { - "name": "Enhance Ability", - "desc": "You bestow a magical enhancement on the target. Choose one of the following effects for the target to receive until the spell ends.\n\n* **Bear's Endurance:** The target has advantage on Constitution checks and it gains 2d6 temporary hit points (lost when the spell ends).\n* **Bull's Strength:** The target has advantage on Strength checks and doubles its carrying capacity.\n* **Cat's Grace:** The target has advantage on Dexterity checks and it reduces any falling damage it takes by 10 unless it is incapacitated.\n* **Eagle's Splendor:** The target has advantage on Charisma checks and is instantly cleaned (as if it had just bathed and put on fresh clothing).\n* **Fox's Cunning:** The target has advantage on Intelligence checks and on checks using gaming sets.\n* **Owl's Wisdom:** The target has advantage on Wisdom checks and it gains darkvision to a range of 30 feet (or extends its existing darkvision by 30 feet).", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "You target one additional creature for each slot level above 2nd.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_enlargereduce", - "fields": { - "name": "Enlarge/Reduce", - "desc": "You cause the target to grow or shrink. An unwilling target may attempt a saving throw to resist the spell.\n\nIf the target is a creature, all items worn or carried by it also change size with it, but an item dropped by the target immediately returns to normal size.\n\n* **Enlarge:** Until the spell ends, the target's size increases by one size category. Its size doubles in all dimensions and its weight increases eightfold. The target also has advantage on Strength checks and Strength saving throws. Its weapons also enlarge, dealing an extra 1d4 damage.\n* **Reduce:** Until the spell ends, the target's size decreases one size category. Its size is halved in all dimensions and its weight decreases to one-eighth of its normal value. The target has disadvantage on Strength checks and Strength saving throws and its weapons shrink, dealing 1d4 less damage (its attacks deal a minimum of 1 damage).", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "When using a spell slot of 4th-level, you can cause the target and its gear to increase by two size categories—from Medium to Huge, for example. Until the spell ends, the target's size is quadrupled in all dimensions, multiplying its weight twentyfold. The target has advantage on Strength checks and Strength saving throws. Its weapons also enlarge, dealing an extra 2d4 damage.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_enrage-architecture", - "fields": { - "name": "Enrage Architecture", - "desc": "You animate and enrage a target building that lashes out at its inhabitants and surroundings. As a bonus action you may command the target to open, close, lock, or unlock any nonmagical doors or windows, or to thrash about and attempt to crush its inhabitants. While the target is thrashing, any creature inside or within 30 feet of it must make a Dexterity saving throw, taking 2d10+5 bludgeoning damage on a failed save or half as much on a successful one. When the spell ends, the target returns to its previous state, magically repairing any damage it sustained during the spell's duration.", - "document": "a5e-ag", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_entangle", - "fields": { - "name": "Entangle", - "desc": "Constraining plants erupt from the ground in the spell's area, wrapping vines and tendrils around creatures. Until the spell ends, the area is difficult terrain.\n\nA creature in the area when you cast the spell makes a Strength saving throw or it becomes restrained as the plants wrap around it. A creature restrained in this way can use its action to make a Strength check against your spell save DC, freeing itself on a success.\n\nWhen the spell ends, the plants wither away.", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_enthrall", - "fields": { - "name": "Enthrall", - "desc": "You weave a compelling stream of words that captivates your targets. Any target that can't be charmed automatically succeeds on its saving throw, and targets fighting you or creatures friendly to you have advantage on the saving throw.\n\nUntil the spell ends or a target can no longer hear you, it has disadvantage on Perception checks made to perceive any creature other than you. The spell ends if you are incapacitated or can no longer speak.", - "document": "a5e-ag", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_etherealness", - "fields": { - "name": "Etherealness", - "desc": "Until the spell ends or you use an action to end it, you step into the border regions of the Ethereal Plane where it overlaps with your current plane. While on the Ethereal Plane, you can move in any direction, but vertical movement is considered difficult terrain. You can see and hear the plane you originated from, but everything looks desaturated and you can see no further than 60 feet.\n\nWhile on the Ethereal Plane, you can only affect and be affected by other creatures on that plane. Creatures not on the Ethereal Plane can't perceive you unless some special ability or magic explicitly allows them to.\n\nWhen the spell ends, you immediately return to the plane you originated from in the spot you currently occupy. If you occupy the same spot as a solid object or creature when this happens, you are immediately shunted to the nearest unoccupied space and you take force damage equal to twice the number of feet you are moved.\n\nThe spell has no effect if you cast it while you are on the Ethereal Plane or a plane that doesn't border it, such as an Outer Plane.", - "document": "a5e-ag", - "level": 7, - "school": "transmutation", - "higher_level": "You can target up to 3 willing creatures within 10 feet (including you) for each slot level above 7th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_expeditious-retreat", - "fields": { - "name": "Expeditious Retreat", - "desc": "Until the spell ends, you're able to move with incredible speed. When you cast the spell and as a bonus action on subsequent turns, you can take the Dash action.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "Your Speed increases by 10 feet for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_eyebite", - "fields": { - "name": "Eyebite", - "desc": "Your eyes become an inky void imbued with fell power. One creature of your choice within 60 feet of you that you can see and that can see you must succeed on a Wisdom saving throw or be afflicted by one of the following effects for the duration. Until the spell ends, on each of your turns you can use an action to target a creature that has not already succeeded on a saving throw against this casting of _eyebite_.\n\n* **Asleep:** The target falls unconscious, waking if it takes any damage or another creature uses an action to rouse it.\n* **Panicked:** The target is frightened of you. On each of its turns, the frightened creature uses its action to take the Dash action and move away from you by the safest and shortest available route unless there is nowhere for it to move. If the target moves to a place at least 60 feet away from you where it can no longer see you, this effect ends.\n* **Sickened:** The target has disadvantage on attack rolls and ability checks. At the end of each of its turns, it can make another Wisdom saving throw, ending this effect on a successful save.", - "document": "a5e-ag", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_fabricate", - "fields": { - "name": "Fabricate", - "desc": "You convert raw materials into finished items of the same material. For example, you can fabricate a pitcher from a lump of clay, a bridge from a pile of lumber or group of trees, or rope from a patch of hemp.\n\nWhen you cast the spell, select raw materials you can see within range. From them, the spell fabricates a Large or smaller object (contained within a single 10-foot cube or up to eight connected 5-foot cubes) given a sufficient quantity of raw material. When fabricating with metal, stone, or another mineral substance, the fabricated object can be no larger than Medium (contained within a single 5-foot cube). The quality of any objects made with the spell is equivalent to the quality of the raw materials.\n\nCreatures or magic items can't be created or used as materials with this spell. It also may not be used to create items that require highly-specialized craftsmanship such as armor, weapons, clockworks, glass, or jewelry unless you have proficiency with the type of artisan's tools needed to craft such objects.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_faerie-fire", - "fields": { - "name": "Faerie Fire", - "desc": "Each object in a 20-foot cube within range is outlined in light (your choice of color). Any creature in the area when the spell is cast is also outlined unless it makes a Dexterity saving throw. Until the spell ends, affected objects and creatures shed dim light in a 10-foot radius.\n\nAny attack roll against an affected object or creature has advantage. The spell also negates the benefits of invisibility on affected creatures and objects.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_faithful-hound", - "fields": { - "name": "Faithful Hound", - "desc": "You conjure a phantasmal watchdog. Until the spell ends, the hound remains in the area unless you spend an action to dismiss it or you move more than 100 feet away from it.\n\nThe hound is invisible except to you and can't be harmed. When a Small or larger creature enters the area without speaking a password you specify when casting the spell, the hound starts barking loudly. The hound sees invisible creatures, can see into the Ethereal Plane, and is immune to illusions.\n\nAt the start of each of your turns, the hound makes a bite attack against a hostile creature of your choice that is within the area, using your spell attack bonus and dealing 4d8 piercing damage on a hit.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_false-life", - "fields": { - "name": "False Life", - "desc": "You are bolstered with fell energies resembling life, gaining 1d4+4 temporary hit points that last until the spell ends.", - "document": "a5e-ag", - "level": 1, - "school": "necromancy", - "higher_level": "Gain an additional 5 temporary hit points for each slot level above 1st.", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_fear", - "fields": { - "name": "Fear", - "desc": "You project a phantasmal image into the minds of each creature in the area showing them what they fear most. On a failed save, a creature becomes frightened until the spell ends and must drop whatever it is holding.\n\nOn each of its turns, a creature frightened by this spell uses its action to take the Dash action and move away from you by the safest available route. If there is nowhere it can move, it remains stationary. When the creature ends its turn in a location where it doesn't have line of sight to you, the creature can repeat the saving throw, ending the spell's effects on it on a successful save.", - "document": "a5e-ag", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_feather-fall", - "fields": { - "name": "Feather Fall", - "desc": "Magic slows the descent of each target. Until the spell ends, a target's rate of descent slows to 60 feet per round. If a target lands before the spell ends, it takes no falling damage and can land on its feet, ending the spell for that target.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "When using a 2nd-level spell slot, targets can move horizontally 1 foot for every 1 foot they descend, effectively gliding through the air until they land or the spell ends.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_feeblemind", - "fields": { - "name": "Feeblemind", - "desc": "You blast the target's mind, attempting to crush its intellect and sense of self. The target takes 4d6 psychic damage.\n\nOn a failed save, until the spell ends the creature's Intelligence and Charisma scores are both reduced to 1\\. The creature can't cast spells, activate magic items, understand language, or communicate in any intelligible way, but it is still able to recognize, follow, and even protect its allies.\n\nAt the end of every 30 days, the creature can repeat its saving throw against this spell, ending it on a success.\n\n_Greater restoration_, _heal_, or _wish_ can also be used to end the spell.", - "document": "a5e-ag", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_find-familiar", - "fields": { - "name": "Find Familiar", - "desc": "Your familiar, a spirit that takes the form of any CR 0 beast of Small or Tiny size, appears in an unoccupied space within range. It has the statistics of the chosen form, but is your choice of a celestial, fey, or fiend (instead of a beast).\n\nYour familiar is an independent creature that rolls its own initiative and acts on its own turn in combat (but cannot take the Attack action). However, it is loyal to you and always obeys your commands.\n\nWhen the familiar drops to 0 hit points, it vanishes without a trace. Casting the spell again causes it to reappear.\n\nYou are able to communicate telepathically with your familiar when it is within 100 feet. As long as it is within this range, you can use an action to see through your familiar's eyes and hear through its ears until the beginning of your next turn, gaining the benefit of any special senses it has. During this time, you are blind and deaf to your body's surroundings.\n\nYou can use an action to either permanently dismiss your familiar or temporarily dismiss it to a pocket dimension where it awaits your summons. While it is temporarily dismissed, you can use an action to call it back, causing it to appear in any unoccupied space within 30 feet of you.\n\nYou can't have more than one familiar at a time, but if you cast this spell while you already have a familiar, you can cause it to adopt a different form.\n\nFinally, when you cast a spell with a range of Touch and your familiar is within 100 feet of you, it can deliver the spell as if it was the spellcaster. Your familiar must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, use your attack bonus for the spell.", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_find-steed", - "fields": { - "name": "Find Steed", - "desc": "You summon a spirit that takes the form of a loyal mount, creating a lasting bond with it. You decide on the steed's appearance, and choose whether it uses the statistics of an elk, giant lizard, panther, warhorse, or wolf (the Narrator may offer additional options.) Its statistics change in the following ways:\n\n* Its type is your choice of celestial, fey, or fiend.\n* Its size is your choice of Medium or Large.\n* Its Intelligence is 6.\n* You can communicate with it telepathically while it's within 1 mile.\n* It understands one language that you speak.\n\nWhile mounted on your steed, when you cast a spell that targets only yourself, you may also target the steed.\n\nWhen you use an action to dismiss the steed, or when it drops to 0 hit points, it temporarily disappears. Casting this spell again resummons the steed, fully healed and with all conditions removed. You can't summon a different steed unless you spend an action to release your current steed from its bond, permanently dismissing it.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "The steed has an additional 20 hit points for each slot level above 2nd. When using a 4th-level spell slot or higher, you may grant the steed either a swim speed or fly speed equal to its base Speed.", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_find-the-path", - "fields": { - "name": "Find the Path", - "desc": "Name a specific, immovable location that you have visited before. If no such location is within range, the spell fails. For the duration, you know the location's direction and distance. While you are traveling there, you have advantage on ability checks made to determine the shortest path.", - "document": "a5e-ag", - "level": 6, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "Special", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 day", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_find-traps", - "fields": { - "name": "Find Traps", - "desc": "This spell reveals whether there is at least one trap within range and within line of sight. You don't learn the number, location, or kind of traps detected. For the purpose of this spell, a trap is a hidden mechanical device or magical effect which is designed to harm you or put you in danger, such as a pit trap, symbol spell, or alarm bell on a door, but not a natural hazard.", - "document": "a5e-ag", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_finger-of-death", - "fields": { - "name": "Finger of Death", - "desc": "Negative energy wracks the target and deals 7d8 + 30 necrotic damage. A humanoid killed by this spell turns into a zombie at the start of your next turn. It is permanently under your control and follows your spoken commands.", - "document": "a5e-ag", - "level": 7, - "school": "necromancy", - "higher_level": "The damage increases by 2d8 for each slot level above 7th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_fire-bolt", - "fields": { - "name": "Fire Bolt", - "desc": "You cast a streak of flame at the target. Make a ranged spell attack. On a hit, you deal 1d10 fire damage. An unattended flammable object is ignited.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_fire-shield", - "fields": { - "name": "Fire Shield", - "desc": "Until the spell ends, flames envelop your body, casting bright light in a 10-foot radius and dim light for an additional 10 feet. You can use an action to end the spell early. Choose one of the following options:\n\n* **Chill Shield:** You have resistance to fire damage. A creature within 5 feet of you takes 2d8 cold damage when it hits you with a melee attack.\n* **Warm Shield:** You have resistance to cold damage. A creature within 5 feet of you takes 2d8 fire damage when it hits you with a melee attack.", - "document": "a5e-ag", - "level": 4, - "school": "evocation", - "higher_level": "The duration increases to 1 hour when using a 6th-level spell slot, or 8 hours when using an 8th-level spell slot.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "cold" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_fire-storm", - "fields": { - "name": "Fire Storm", - "desc": "Flames roar, dealing 7d10 fire damage to creatures and objects in the area and igniting unattended flammable objects. If you choose, plant life in the area is unaffected. This spell's area consists of a contiguous group of ten 10-foot cubes in an arrangement you choose, with each cube adjacent to at least one other cube.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "The damage increases by 1d10 for each slot level above 7th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_fireball", - "fields": { - "name": "Fireball", - "desc": "A fiery mote streaks to a point within range and explodes in a burst of flame. The fire spreads around corners and ignites unattended flammable objects. Each creature in the area takes 6d6 fire damage.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_flame-blade", - "fields": { - "name": "Flame Blade", - "desc": "A scimitar-shaped blade of fire appears in your hand, lasting for the duration. It disappears if you drop it, but you can use a bonus action to recall it. The blade casts bright light in a 10-foot radius and dim light for another 10 feet. You can use an action to make a melee spell attack with the blade that deals 3d6 fire damage.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "The damage increases by 1d6 for every two slot levels above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_flame-strike", - "fields": { - "name": "Flame Strike", - "desc": "A column of divine flame deals 4d6 fire damage and 4d6 radiant damage to creatures in the area.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "Increase either the fire damage or the radiant damage by 1d6 for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_flaming-sphere", - "fields": { - "name": "Flaming Sphere", - "desc": "A 5-foot-diameter sphere of fire appears within range, lasting for the duration. It casts bright light in a 20-foot radius and dim light for another 20 feet, and ignites unattended flammable objects it touches.\n\nYou can use a bonus action to move the sphere up to 30 feet. It can jump over pits 10 feet wide or obstacles 5 feet tall. If you move the sphere into a creature, the sphere ends its movement for that turn and the creature makes a Dexterity saving throw, taking 2d6 fire damage on a failed save, or half as much on a successful one. A creature that ends its turn within 5 feet of the sphere makes a Dexterity saving throw against the sphere's damage.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "The damage increases by 1d6 for each slot level above 2nd.", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_flesh-to-stone", - "fields": { - "name": "Flesh to Stone", - "desc": "The target becomes restrained as it begins to turn to stone. On a successful saving throw, the target is instead slowed until the end of its next turn and the spell ends.\n\nA creature restrained by this spell makes a second saving throw at the end of its turn. On a success, the spell ends. On a failure, the target is petrified for the duration. If you maintain concentration for the maximum duration of the spell, this petrification is permanent.\n\nAny pieces removed from a petrified creature are missing when the petrification ends.", - "document": "a5e-ag", - "level": 6, - "school": "transmutation", - "higher_level": "Target one additional creature when you cast this spell with an 8th-level spell slot.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_flex", - "fields": { - "name": "Flex", - "desc": "You bestow a glamor upon a creature that highlights its physique to show a stunning idealized form. For the spell's duration, the target adds both its Strength modifier and Charisma modifier to any Charisma checks it makes.", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "Target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_floating-disk", - "fields": { - "name": "Floating Disk", - "desc": "A metallic disc made of force, 3 feet in diameter and hovering 3 feet off the ground, appears within range. It can support up to 500 pounds. If it is overloaded, or if you move more than 100 feet away from it, the spell ends. You can end the spell as an action. While it is not carrying anything, you can use a bonus action to teleport the disk to an unoccupied space within range.\n\nWhile you are within 20 feet of the disk, it is immobile. If you move more than 20 feet away, it tries to follow you, remaining 20 feet away. It can traverse stairs, slopes, and obstacles up to 3 feet high.\n\nAdditionally, you can ride the disc, spending your movement on your turn to move the disc up to 30 feet (following the movement rules above).\n\nMoving the disk in this way is just as tiring as walking for the same amount of time.", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "When you use a 3rd-level spell slot, either the spell's duration increases to 8 hours or the disk's diameter is 10 feet, it can support up to 2, 000 pounds, and it can traverse obstacles up to 10 feet high. When you use a 6th-level spell slot, the disk's diameter is 20 feet, it can support up to 16, 000 pounds, and it can traverse obstacles up to 20 feet high.", - "target_type": "point", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_fly", - "fields": { - "name": "Fly", - "desc": "The target gains a flying speed of 60 feet. When the spell ends, the target falls if it is off the ground.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "Target one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_fog-cloud", - "fields": { - "name": "Fog Cloud", - "desc": "You create a heavily obscured area of fog. The fog spreads around corners and can be dispersed by a moderate wind (at least 10 miles per hour).", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "The spell's radius increases by 20 feet for each slot level above 1st.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_forbiddance", - "fields": { - "name": "Forbiddance", - "desc": "You protect the target area against magical travel. Creatures can't teleport into the area, use a magical portal to enter it, or travel into it from another plane of existence, such as the Astral or Ethereal Plane. The spell's area can't overlap with another _forbiddance_ spell.\n\nThe spell damages specific types of trespassing creatures. Choose one or more of celestials, elementals, fey, fiends, and undead. When a chosen creature first enters the area on a turn or starts its turn there, it takes 5d10 radiant or necrotic damage (your choice when you cast the spell). You may designate a password. A creature speaking this password as it enters takes no damage from the spell.\n\nAfter casting this spell on the same area for 30 consecutive days it becomes permanent until dispelled. This final casting to make the spell permanent consumes its material components.", - "document": "a5e-ag", - "level": 6, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "necrotic", - "radiant" - ], - "duration": "1 day", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_force-of-will", - "fields": { - "name": "Force of Will", - "desc": "Your iron resolve allows you to withstand an attack. The damage you take from the triggering attack is reduced by 2d10 + your spellcasting ability modifier.", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "The damage is reduced by an additional 1d10 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_force-punch", - "fields": { - "name": "Force Punch", - "desc": "Make a melee spell attack. On a hit, the target takes 3d8 force damage.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_forcecage", - "fields": { - "name": "Forcecage", - "desc": "An opaque cube of banded force surrounds the area, preventing any matter or spells from passing through it, though creatures can breathe inside it. Creatures that make a Dexterity saving throw and creatures that are only partially inside the area are pushed out of the area. Any other creature is trapped and can't leave by nonmagical means. The cage also traps creatures on the Ethereal Plane, and can only be destroyed by being dealt at least 25 force damage at once or by a _dispel magic_ spell cast using an 8th-level or higher spell slot.\n\nIf a trapped creature tries to teleport or travel to another plane, it makes a Charisma saving throw. On a failure, the attempt fails and the spell or effect is wasted.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "The spell's area increases to a 20-foot cube when using a 9th-level spell slot.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_foresight", - "fields": { - "name": "Foresight", - "desc": "You impart the ability to see flashes of the immediate future. The target can't be surprised and has advantage on ability checks, attack rolls, and saving throws. Other creatures have disadvantage on attack rolls against the target.", - "document": "a5e-ag", - "level": 9, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_forest-army", - "fields": { - "name": "Forest Army", - "desc": "While casting and concentrating on this spell, you enter a deep trance and awaken an army of trees and plants within range. These plants rise up under your control as a grove swarm and act on your initiative. Although you are in a trance and deaf and blind with regard to your own senses, you see and hear through your grove swarm's senses. You can command your grove swarm telepathically, ordering it to advance, attack, or retreat. If the grove swarm enters your space, you can order it to carry you.\n\nIf you take any action other than continuing to concentrate on this spell, the spell ends and the trees and plants set down roots wherever they are currently located.", - "document": "a5e-ag", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_freedom-of-movement", - "fields": { - "name": "Freedom of Movement", - "desc": "The target ignores difficult terrain. Spells and magical effects can't reduce its speed or cause it to be paralyzed or restrained. It can spend 5 feet of movement to escape from nonmagical restraints or grapples. The target's movement and attacks aren't penalized from being underwater.", - "document": "a5e-ag", - "level": 4, - "school": "abjuration", - "higher_level": "When using a 6th-level spell slot the duration is 8 hours. When using an 8th-level spell slot the duration is 24 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_freezing-sphere", - "fields": { - "name": "Freezing Sphere", - "desc": "A freezing globe streaks to a point within range and explodes, dealing 10d6 cold damage to creatures in the area. Liquid in the area is frozen to a depth of 6 inches for 1 minute. Any creature caught in the ice can use an action to make a Strength check against your spell save DC to escape.\n\nInstead of firing the globe, you can hold it in your hand. If you handle it carefully, it won't explode until a minute after you cast the spell. At any time, you or another creature can strike the globe, throw it up to 60 feet, or use it as a slingstone, causing it to explode on impact.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "The damage increases by 1d6 for each slot level above 6th.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_friends", - "fields": { - "name": "Friends", - "desc": "Once before the start of your next turn, when you make a Charisma ability check against the target, you gain an expertise die. If you roll a 1 on the ability or skill check, the target realizes its judgment was influenced by magic and may become hostile.", - "document": "a5e-ag", - "level": 0, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_gaseous-form", - "fields": { - "name": "Gaseous Form", - "desc": "The target, along with anything it's wearing and carrying, becomes a hovering, wispy cloud. In this form, it can't attack, use or drop objects, talk, or cast spells.\n\nAs a cloud, the target's base Speed is 0 and it gains a flying speed of 10 feet. It can enter another creature's space, and can pass through small holes and cracks, but not through liquid. It is resistant to nonmagical damage, has advantage on Strength, Dexterity, and Constitution saving throws, and can't fall.\n\nThe spell ends if the creature drops to 0 hit points.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "The target's fly speed increases by 10 feet for each slot level above 3rd.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_gate", - "fields": { - "name": "Gate", - "desc": "You create a magic portal, a door between a space you can see and a specific place on another plane of existence. Each portal is a one-sided circular opening from 5 to 25 feet in diameter. Entering either portal transports you to the portal on the other plane. Deities and other planar rulers can prevent portals from opening in their domains.\n\nWhen you cast this spell, you can speak the true name of a specific creature (not its nickname or title). If that creature is on another plane, the portal opens next to it and draws it through to your side of the portal. This spell gives you no power over the creature, and it might choose to attack you, leave, or listen to you.", - "document": "a5e-ag", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_geas", - "fields": { - "name": "Geas", - "desc": "You give a command to a target which can understand you. It becomes charmed by you.\n\nWhile charmed in this way, it takes 5d10 psychic damage the first time each day that it disobeys your command. Your command can be any course of action or inaction that wouldn't result in the target's death. The spell ends if the command is suicidal or you use an action to dismiss the spell. Alternatively, a _remove curse_, _greater restoration_, or _wish_ spell cast on the target using a spell slot at least as high as the slot used to cast this spell also ends it.", - "document": "a5e-ag", - "level": 5, - "school": "enchantment", - "higher_level": "The spell's duration is 1 year when using a 7th-level spell slot, or permanent until dispelled when using a 9th-level spell slot.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "psychic" - ], - "duration": "30 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_gentle-repose", - "fields": { - "name": "Gentle Repose", - "desc": "The target can't become undead and doesn't decay. Days spent under the influence of this spell don't count towards the time limit of spells which raise the dead.", - "document": "a5e-ag", - "level": 2, - "school": "necromancy", - "higher_level": "The spell's duration is 1 year when using a 3rd-level spell slot, or permanent until dispelled when using a 4th-level spell slot.", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_giant-insect", - "fields": { - "name": "Giant Insect", - "desc": "You transform insects and other vermin into monstrous versions of themselves. Until the spell ends, up to 3 spiders become giant spiders, 2 ants become giant ants, 2 crickets or mantises become ankhegs, a centipede becomes a giant centipede, or a scorpion becomes a giant scorpion. The spell ends for a creature when it dies or when you use an action to end the effect on it.\n\nWhile it is within 60 feet you can use a bonus action to mentally command the insects. When you command multiple insects using this spell, you may simultaneously give them all the same command.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "The spell's duration is 1 hour when using a 5th-level spell slot, or 8 hours when using a 6th-level spell slot.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_glibness", - "fields": { - "name": "Glibness", - "desc": "When you make a Charisma check, you can replace the number you rolled with 15\\. Also, magic that prevents lying has no effect on you, and magic cannot determine that you are lying.", - "document": "a5e-ag", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_globe-of-invulnerability", - "fields": { - "name": "Globe of Invulnerability", - "desc": "An immobile, glimmering sphere forms around you. Any spell of 5th-level or lower cast from outside the sphere can't affect anything inside the sphere, even if it's cast with a higher level spell slot. Targeting something inside the sphere or including the globe's space in an area has no effect on anything inside.", - "document": "a5e-ag", - "level": 6, - "school": "abjuration", - "higher_level": "The barrier blocks spells of one spell slot level higher for each slot level above 6th.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_glyph-of-warding", - "fields": { - "name": "Glyph of Warding", - "desc": "You trace a glyph on the target. If the glyph is moved more than 10 feet from its original position, or if it comes within 20 feet of another glyph that you have cast, the spell ends. Finding the Tiny glyph requires an Investigation check against your spell save DC.\n\nDescribe the actions a creature must perform to trigger the spell, such as approaching within a certain distance, opening or touching the object the glyph is inscribed on, or seeing or reading the glyph. The creature must have a clear path to the glyph to trigger it. You can specify certain creatures which don't trigger the spell, such as those with a certain appearance or those who speak a certain phrase. Once the glyph is triggered, the spell ends.\n\nWhen you cast the spell, choose Explosive Runes or Spell Glyph.\n\n* **Explosive Runes:** When triggered, the glyph explodes. Creatures in a 20-foot radius sphere make a Dexterity saving throw or take 5d8 acid, cold, fire, lightning, or thunder damage (your choice when you cast the spell), or half damage on a successful save. The explosion spreads around corners.\n* **Spell Glyph:** You store a spell of 3rd-level or lower as part of creating the glyph, expending its spell slot. The stored spell must target a single creature or area with a non-beneficial effect and it is cast when the glyph is triggered. A spell that targets a creature targets the triggering creature. A spell with an area is centered on the targeting creature. A creation or conjuration spell affects an area next to that creature, and targets it with any harmful effects. Spells requiring concentration last for their full duration.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "The cost of the material component increases by 200 gold for each slot level above 3rd. For Explosive Runes, the damage increases by 1d8 for each slot level above 3rd, and for Spell Glyph you can store a spell of up to the same level as the spell slot used to cast glyph of warding.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_goodberry", - "fields": { - "name": "Goodberry", - "desc": "You transform the components into 2d4 berries.\n\nFor the next 24 hours, any creature that consumes one of these berries regains 1 hit point. Eating or administering a berry is an action. The berries do not provide any nourishment or sate hunger.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "You create 1d4 additional berries for every 2 slot levels above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_grapevine", - "fields": { - "name": "Grapevine", - "desc": "You cause a message in Druidic to appear on a tree or plant within range which you have seen before.\n\nYou can cast the spell again to erase the message.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "100 miles", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_grease", - "fields": { - "name": "Grease", - "desc": "Grease erupts from a point that you can see within range and coats the ground in the area, turning it into difficult terrain until the spell ends.\n\nWhen the grease appears, each creature within the area must succeed on a Dexterity saving throw or fall prone. A creature that enters or ends its turn in the area must also succeed on a Dexterity saving throw or fall prone.", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_greater-invisibility", - "fields": { - "name": "Greater Invisibility", - "desc": "The target is invisible. Anything the target is carrying or wearing is also invisible as long as it remains in the target's possession.", - "document": "a5e-ag", - "level": 4, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_greater-restoration", - "fields": { - "name": "Greater Restoration", - "desc": "Healing energy rejuvenates a creature you touch and undoes a debilitating effect. You can remove one of:\n\n* a level of fatigue.\n* a level of strife.\n* a charm or petrification effect.\n* a curse or cursed item attunement.\n* any reduction to a single ability score.\n* an effect that has reduced the target's hit point maximum.", - "document": "a5e-ag", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_guardian-of-faith", - "fields": { - "name": "Guardian of Faith", - "desc": "A large spectral guardian appears and hovers for the duration in an unoccupied space of your choice that you can see within range. This guardian occupies that space and is indistinct except for a gleaming sword and sheild emblazoned with the symbol of your deity.\n\nAny creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "20", - "damage_types": [ - "radiant" - ], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_guards-and-wards", - "fields": { - "name": "Guards and Wards", - "desc": "You create wards that protect the target area. Each warded area has a maximum height of 20 feet and can be shaped. Several stories of a stronghold can be warded by dividing the area among them if you can walk from one to the next while the spell is being cast.\n\nWhen cast, you can create a password that can make a creature immune to these effects when it is spoken aloud. You may also specify individuals that are unaffected by any or all of the effects that you choose.\n\n_Guards and wards_ creates the following effects within the area of the spell.\n\n* **_Corridors:_** Corridors are heavily obscured with fog. Additionally, creatures that choose between multiple passages or branches have a 50% chance to unknowingly choose a path other than the one they meant to choose.\n* **_Doors:_** Doors are magically locked as if by an _arcane lock_ spell. Additionally, you may conceal up to 10 doors with an illusion as per the illusory object component of the _minor illusion_ spell to make the doors appear as unadorned wall sections.\n* **_Stairs:_** Stairs are filled from top to bottom with webs as per the _web_ spell. Until the spell ends, the webbing strands regrow 10 minutes after they are damaged or destroyed.\n\nIn addition, one of the following spell effects can be placed within the spell's area.\n\n* _Dancing lights_ can be placed in 4 corridors and you can choose for them to repeat a simple sequence.\n* _Magic mouth_ spells can be placed in 2 locations.\n_Stinking clouds_ can be placed in 2 locations.\n\nThe clouds return after 10 minutes if dispersed while the spell remains.\n* A _gust of wind_ can be placed in a corridor or room.\n* Pick a 5-foot square. Any creature that passes through it subjected to a _suggestion_ spell, hearing the suggestion mentally.\n\nThe entirety of the warded area radiates as magic. Each effect must be targeted by separate dispel magic spells to be removed.\n\nThe spell can be made permanent by recasting the spell every day for a year.", - "document": "a5e-ag", - "level": 6, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_guidance", - "fields": { - "name": "Guidance", - "desc": "The target may gain an expertise die to one ability check of its choice, ending the spell. The expertise die can be rolled before or after the ability check is made.", - "document": "a5e-ag", - "level": 0, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_guiding-bolt", - "fields": { - "name": "Guiding Bolt", - "desc": "A bolt of light erupts from your hand. Make a ranged spell attack against the target. On a hit, you deal 4d6 radiant damage and the next attack roll made against the target before the end of your next turn has advantage.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The damage increases by 1d6 for each slot level above 1st.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_gust-of-wind", - "fields": { - "name": "Gust of Wind", - "desc": "A torrent of wind erupts from your hand in a direction you choose. Each creature that starts its turn in the area or moves into the area must succeed on a Strength saving throw or be pushed 15 feet from you in the direction of the line.\n\nAny creature in the area must spend 2 feet of movement for every foot moved when trying to approach you.\n\nThe blast of wind extinguishes small fires and disperses gas or vapor.\n\nYou can use a bonus action to change the direction of the gust.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_hallow", - "fields": { - "name": "Hallow", - "desc": "You imbue the area with divine power, bolstering some creatures and hindering others. Celestials, elementals, fey, fiends, and undead cannot enter the area. They are also incapable of charming, frightening, or possessing another creature within the area. Any such effects end on a creature that enters the area. When casting, you may exclude one or more creature types from this effect.\n\nAdditionally, you may anchor additional magical effects to the area. Choose one effect from the list below (the Narrator may also offer specific effects).\n\nSome effects apply to creatures. You may choose to affect all creatures, creatures of a specific type, or those that follow a specific leader or deity. Creatures make a Charisma saving throw when the spell is cast, when they enter the area for the first time on a turn, or if they end their turn within the area. On a successful save, a creature is immune to the effect until it leaves the area.\n\n* **Courage:** Creatures in the area cannot be frightened.\n* **Darkness:** The area is filled by darkness, and normal light sources or sources from a lower level spell slot are smothered within it.\n* **Daylight:** The area is filled with bright light, dispelling magical darkness created by spells of a lower level spell slot.\n* **Energy Protection:** Creatures in the area gain resistance against a damage type of your choice (excepting bludgeoning, piercing, or slashing).\n* **Energy Vulnerability:** Creatures in the area gain vulnerability against a damage type of your choice (excepting bludgeoning, piercing, or slashing).\n* **Everlasting Rest:** Dead bodies laid to rest in the area cannot be turned into undead by any means.\n* **Extradimensional Interference:** Extradimensional movement or travel is blocked to and from the area, including all teleportation effects.\n* **Fear**: Creatures are frightened while within the area.\n* **Silence:** No sound can enter or emanate from the area.\n* **Tongues:** Creatures within the area can freely communicate with one another whether they share a language or not.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_hallucinatory-terrain", - "fields": { - "name": "Hallucinatory Terrain", - "desc": "You weave a veil over the natural terrain within the area, making it look, sound, or smell like another sort of terrain. A small lake could be made to look like a grassy glade. A path or trail could be made to look like an impassable swamp. A cliff face could even appear as a gentle slope or seem to extend further than it does. This spell does not affect any manufactured structures, equipment, or creatures.\n\nOnly the visual, auditory, and olfactory components of the terrain are changed. Any creature that enters or attempts to interact with the illusion feels the real terrain below. If given sufficient reason, a creature may make an Investigation check against your spell save DC to disbelieve it. On a successful save, the creature sees the illusion superimposed over the actual terrain.", - "document": "a5e-ag", - "level": 4, - "school": "illusion", - "higher_level": "The spell targets an additional 50-foot cube for each slot level above 4th.", - "target_type": "area", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_harm", - "fields": { - "name": "Harm", - "desc": "You assail a target with an agonizing disease. The target takes 14d6 necrotic damage. If it fails its saving throw its hit point maximum is reduced by an amount equal to the damage taken for 1 hour or until the disease is magically cured. This spell cannot reduce a target to less than 1 hit point.", - "document": "a5e-ag", - "level": 6, - "school": "necromancy", - "higher_level": "Increase the damage by 2d6 for each slot level above 6th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "14d6", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_harmonic-resonance", - "fields": { - "name": "Harmonic Resonance", - "desc": "You harmonize with the rhythm of those around you until you're perfectly in sync. You may take the Help action as a bonus action. Additionally, when a creature within 30 feet uses a Bardic Inspiration die, you may choose to reroll the die after it is rolled but before the outcome is determined.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_haste", - "fields": { - "name": "Haste", - "desc": "Until the spell ends, the target's Speed is doubled, it gains a +2 bonus to AC, it has advantage on Dexterity saving throws, and it gains one additional action on each of its turns. This action can be used to make a single weapon attack, or to take the Dash, Disengage, Hide, or Use an Object action.\n\nWhen the spell ends, the target is tired and cannot move or take actions until after its next turn.", - "document": "a5e-ag", - "level": 3, - "school": "transformation", - "higher_level": "Target one additional creature for each slot level above 3rd. All targets of this spell must be within 30 feet of each other.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_heal", - "fields": { - "name": "Heal", - "desc": "A torrent of healing energy suffuses the target and it regains 70 hit points. The spell also ends blindness, deafness, and any diseases afflicting the target.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "The hit points regained increase by 10 for each slot level above 6th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_healing-word", - "fields": { - "name": "Healing Word", - "desc": "Healing energy washes over the target and it regains hit points equal to 1d4 + your spellcasting modifier.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The hit points regained increase by 1d4 for each slot level above 1st.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_heart-of-dis", - "fields": { - "name": "Heart of Dis", - "desc": "You magically replace your heart with one forged on the second layer of Hell. While the spell lasts, you are immune to fear and can't be poisoned, and you are immune to fire and poison damage. You gain resistance to cold damage, as well as to bludgeoning, piercing, and slashing damage from nonmagical weapons that aren't silvered. You have advantage on saving throws against spells and other magical effects. Finally, while you are conscious, any creature hostile to you that starts its turn within 20 feet of you must make a Wisdom saving throw. On a failed save, the creature is frightened of you until the start of your next turn. On a success, the creature is immune to the effect for 24 hours.\n\nCasting this spell magically transports your mortal heart to the lair of one of the lords of Hell. The heart returns to your body when the spell ends. If you die while under the effects of this spell, you can't be brought back to life until your original heart is retrieved.", - "document": "a5e-ag", - "level": 8, - "school": "necromancy", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_heat-metal", - "fields": { - "name": "Heat Metal", - "desc": "The target becomes oven hot. Any creature touching the target takes 2d8 fire damage when the spell is cast. Until the spell ends, on subsequent turns you can use a bonus action to inflict the same damage. If a creature is holding or wearing the target and suffers damage, it makes a Constitution saving throw or it drops the target. If a creature does not or cannot drop the target, it has disadvantage on attack rolls and ability checks until the start of your next turn.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "The damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_heroes-feast", - "fields": { - "name": "Heroes' Feast", - "desc": "The spell summons forth a sumptuous feast with a cuisine of your choosing that provides 1 Supply for a number of creatures equal to twice your proficiency bonus. Consuming the food takes 1 hour and leaves a creature feeling nourished—it immediately makes a saving throw with advantage against any disease or poison it is suffering from, and it is cured of any effect that frightens it.\n\nFor up to 24 hours afterward the feast's participants have advantage on Wisdom saving throws, advantage on saving throws made against disease and poison, resistance against damage from poison and disease, and each increases its hit point maximum by 2d10.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_heroism", - "fields": { - "name": "Heroism", - "desc": "The target's spirit is bolstered. Until the spell ends, the target gains temporary hit points equal to your spellcasting ability modifier at the start of each of its turns and it cannot be frightened. Any temporary hit points remaining are lost when the spell ends.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "Target one additional creature for each slot level above 1st.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_hideous-laughter", - "fields": { - "name": "Hideous Laughter", - "desc": "The target is overwhelmed by the absurdity of the world and is crippled by paroxysms of laughter. The target falls prone, becomes incapacitated, and cannot stand.\n\nUntil the spell ends, at the end of each of the target's turns and when it suffers damage, the target may attempt another saving throw (with advantage if triggered by damage). On a successful save, the spell ends.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "Target an additional creature within 30 feet of the original for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_hold-monster", - "fields": { - "name": "Hold Monster", - "desc": "The target is paralyzed. At the end of each of its turns, the target makes another saving throw, ending the spell's effects on it on a successful save.", - "document": "a5e-ag", - "level": 5, - "school": "enchantment", - "higher_level": "Target an additional creature within 30 feet of the first target for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_hold-person", - "fields": { - "name": "Hold Person", - "desc": "The target is paralyzed. At the end of each of its turns, the target makes another saving throw, ending the spell's effects on it on a successful save.", - "document": "a5e-ag", - "level": 2, - "school": "enchantment", - "higher_level": "Target an additional creature within 30 feet of the first target for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_holy-aura", - "fields": { - "name": "Holy Aura", - "desc": "Holy radiance emanates from you and fills the area. Targets shed dim light in a 5-foot radius and have advantage on saving throws. Attacks made against a target have disadvantage. When a fiend or undead hits a target, the aura erupts into blinding light, forcing the attacker to make a Constitution saving throw or be blinded until the spell ends.", - "document": "a5e-ag", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_hypnotic-pattern", - "fields": { - "name": "Hypnotic Pattern", - "desc": "You conjure a swirling pattern of twisting hues that roils through the air, appearing for a moment and then vanishing. Creatures in the area that can perceive the pattern make a Wisdom saving throw or become charmed. A creature charmed by this spell becomes incapacitated and its Speed is reduced to 0.\n\nThe effect ends on a creature when it takes damage or when another creature uses an action to shake it out of its daze.", - "document": "a5e-ag", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_ice-storm", - "fields": { - "name": "Ice Storm", - "desc": "A bombardment of jagged ice erupts throughout the target area. All creatures in the area take 2d8 bludgeoning damage and 4d6 cold damage. Large chunks of ice turn the area into difficult terrain until the end of your next turn.", - "document": "a5e-ag", - "level": 4, - "school": "evocation", - "higher_level": "The bludgeoning damage increases by 1d8 for each slot level above 4th.", - "target_type": "area", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_identify", - "fields": { - "name": "Identify", - "desc": "You learn the target item's magical properties along with how to use them. This spell also reveals whether or not a targeted item requires attunement and how many charges it has. You learn what spells are affecting the targeted item (if any) along with what spells were used to create it.\n\nAlternatively, you learn any spells that are currently affecting a targeted creature.\n\nWhat this spell can reveal is at the Narrator's discretion, and some powerful and rare magics are immune to identify.", - "document": "a5e-ag", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_illusory-script", - "fields": { - "name": "Illusory Script", - "desc": "You inscribe a message onto the target and wrap it in illusion until the spell ends. You and any creatures that you designate when the spell is cast perceive the message as normal. You may choose to have other creatures view the message as writing in an unknown or unintelligible magical script or a different message. If you choose to create another message, you can change the handwriting and the language that the message is written in, though you must know the language in question.\n\nIf the spell is dispelled, both the message and its illusory mask disappear.\n\nThe true message can be perceived by any creature with truesight.", - "document": "a5e-ag", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_imprisonment", - "fields": { - "name": "Imprisonment", - "desc": "You utter the target's name and attempt to bind them for eternity. On a successful save, a target is immune to any future attempts by you to cast this spell on it. On a failed save, choose from one of the forms of bindings below (each lasts until the spell ends).\n\n* **Burial:** The target is buried deep below the surface of the earth in a tomb just large enough to contain it. Nothing can enter the tomb. No teleportation or planar travel can be used to enter, leave, or affect the tomb or its contents. A small mithral orb is required for this casting.\n* **Chaining:** Chains made of unbreakable material erupt from the ground and root the target in place. The target is restrained and cannot be moved by any means. A small adamantine chain is required for this casting.\n* **Hedged Prison:** The target is imprisoned in a maze-like demiplane of your choosing, such as a labyrinth, a cage, a tower, a hedge maze, or any similar structure you desire. The demiplane is warded against teleportation and planar travel. A small jade representation of the demiplane is required for this casting.\n* **Minimus Containment:** The target shrinks to just under an inch and is imprisoned inside a gemstone, crystal, jar, or similar object. Nothing but light can pass in and out of the vessel, and it cannot be broken, cut, or otherwise damaged. The special component for this effect is whatever prison you wish to use.\n* **Slumber:** The target is plunged into an unbreakable slumber and cannot be awoken. Special soporific draughts are required for this casting.\n\nThe target does not need sustenance or air, nor does it age. No divination spells of any sort can be used to reveal the target's location.\n\nWhen cast, you must specify a condition that will cause the spell to end and release the target. This condition must be based on some observable action or quality and not related to mechanics like level, hitpoints, or class, and the Narrator must agree to it.\n\nA dispel magic only dispels an _imprisonment_ if it is cast using a 9th-level spell slot and targets the prison or the special component used to create the prison.\n\nEach casting that uses the same spell effect requires its own special component. Repeated castings with the same component free the prior occupant.", - "document": "a5e-ag", - "level": 9, - "school": "abjuration", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_incendiary-cloud", - "fields": { - "name": "Incendiary Cloud", - "desc": "A cloud of burning embers, smoke, and roiling flame appears within range. The cloud heavily obscures its area, spreading around corners and through cracks. When the cloud appears and a creature is in it, when a creature enters the cloud for the first time on a turn, or when a creature ends its turn within the cloud it makes a Dexterity saving throw, taking 10d8 fire damage on a failed save, or half as much on a successful one.\n\nThe cloud can be dispelled by a wind of at least 10 miles per hour. After it is cast, the cloud moves 10 feet away from you in a direction that you choose at the start of each of your turns.", - "document": "a5e-ag", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_inescapable-malady", - "fields": { - "name": "Inescapable Malady", - "desc": "You infect your target with an arcane disease. At any time after you cast this spell, as long as you are on the same plane of existence as the target, you can use an action to deal 7d10 necrotic damage to the target. If this damage would reduce the target to 0 hit points, you can choose to leave it with 1 hit point.\n\nAs part of dealing the damage, you may expend a 7th-level spell slot to sustain the disease. Otherwise, the spell ends. The spell ends when you die.\n\nCasting remove curse, greater restoration, or heal on the target allows the target to make a Constitution saving throw against the disease. Otherwise the disease can only be cured by a wish spell.", - "document": "a5e-ag", - "level": 7, - "school": "necromancy", - "higher_level": "The damage increases by 1d10 for each slot level above 7th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_infernal-weapon", - "fields": { - "name": "Infernal Weapon", - "desc": "A weapon formed from the essence of Hell appears in your hands. You must use two hands to wield the weapon. If you let go of the weapon, it disappears and the spell ends.\n\nWhen you cast the spell, choose either a flame fork or ice spear. While the spell lasts, you can use an action to make a melee spell attack with the weapon against a creature within 10 feet of you.\n\nOn a hit, you deal 5d8 damage of a type determined by the weapon's form. On a critical hit, you inflict an additional effect.\n\nIn addition, on a hit with the infernal weapon, you can end the spell early to inflict an automatic critical hit.\n\n**Flame Fork.** The weapon deals fire damage.\n\nOn a critical hit, the target catches fire, taking 2d6 ongoing fire damage.\n\n**Ice Spear.** The weapon deals cold damage. On a critical hit, for 1 minute the target is slowed.\n\nAt the end of each of its turns a slowed creature can make a Constitution saving throw, ending the effect on itself on a success.\n\nA creature reduced to 0 hit points by an infernal weapon immediately dies in a gruesome fashion.\n\nFor example, a creature killed by an ice spear might freeze solid, then shatter into a thousand pieces. Each creature of your choice within 60 feet of the creature and who can see it when it dies must make a Wisdom saving throw. On a failure, a creature becomes frightened of you until the end of your next turn.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_inflict-wounds", - "fields": { - "name": "Inflict Wounds", - "desc": "You impart fell energies that suck away the target's life force, making a melee spell attack that deals 3d10 necrotic damage.", - "document": "a5e-ag", - "level": 1, - "school": "necromancy", - "higher_level": "The damage increases by 1d10 for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_insect-plague", - "fields": { - "name": "Insect Plague", - "desc": "A roiling cloud of insects appears, biting and stinging any creatures it touches. The cloud lightly obscures its area, spreads around corners, and is considered difficult terrain. When the cloud appears and a creature is in it, when a creature enters the cloud for the first time on a turn, or when a creature ends its turn within the cloud it makes a Constitution saving throw, taking 4d10 piercing damage on a failed save, or half as much on a successful one.", - "document": "a5e-ag", - "level": 5, - "school": "conjuration", - "higher_level": "The damage increases by 1d10 for each slot level above 5th.", - "target_type": "creature", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_instant-summons", - "fields": { - "name": "Instant Summons", - "desc": "Until the spell ends, a mystical bond connects the target and the precious stone used to cast this spell.\n\nAny time after, you may crush the stone and speak the name of the item, summoning it instantly into your hand no matter the physical, metaphysical, or planar distances involved, at which point the spell ends. If another creature is holding the item when the stone is crushed, the item is not summoned to you. Instead, the spell grants you the knowledge of who possesses it and a general idea of the creature's location.\n\nEach time you cast this spell, you must use a different precious stone.\n\nDispel magic or a similar effect targeting the stone ends the spell.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_invigorated-strikes", - "fields": { - "name": "Invigorated Strikes", - "desc": "You allow long-forgotten fighting instincts to boil up to the surface. For the duration of the spell, whenever the target deals damage with an unarmed strike or natural weapon, it deals 1d4 extra damage.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell with a 3rd-level spell slot, the extra damage increases from 1d4 to 1d6\\. When you cast this spell with a 5th-level spell slot, the extra damage increases to 1d8.\n\nWhen you cast this spell with a 7th-level spell slot, the extra damage increases to 1d10.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_invisibility", - "fields": { - "name": "Invisibility", - "desc": "You wreathe a creature in an illusory veil, making it invisible. Anything the target is carrying or wearing is also invisible as long as it remains in the target's possession. The spell's effects end for a target that attacks or casts a spell.", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "Target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_irresistible-dance", - "fields": { - "name": "Irresistible Dance", - "desc": "You murmur a tune that takes root in the target's mind until the spell ends, forcing it to caper, dance, and shuffle. At the start of each of its turns, the dancing target must use all of its movement to dance in its space, and it has disadvantage on attack rolls and saving throws. Attacks made against the target have advantage. On each of its turns, the target can use an action to repeat the saving throw, ending the spell on a successful save.", - "document": "a5e-ag", - "level": 6, - "school": "enchantment", - "higher_level": "Target one additional creature within 30 feet for each slot level above 6th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_jump", - "fields": { - "name": "Jump", - "desc": "You imbue a target with the ability to make impossible leaps. The target's jump distances increase 15 feet vertically and 30 feet horizontally.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "Each of the target's jump distances increase by 5 feet for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_knock", - "fields": { - "name": "Knock", - "desc": "Make a check against the DC of a lock or door using your spell attack bonus. On a success, you unlock or open the target with a loud metallic clanging noise easily audible at up to 300 feet. In addition, any traps on the object are automatically triggered. An item with multiple locks requires multiple castings of this spell to be opened.\n\nWhen you target an object held shut by an arcane lock, that spell is suppressed for 10 minutes, allowing the object to be opened and shut normally during that time.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "The level of the arcane lock you can suppress increases by 1 for each slot level above 3rd. In addition, if the level of your knock spell is 2 or more levels higher than that of the arcane lock, you may dispel the arcane lock instead of suppressing it.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_legend-lore", - "fields": { - "name": "Legend Lore", - "desc": "You learn significant information about the target. This could range from the most up-todate research, lore forgotten in old tales, or even previously unknown information. The spell gives you additional, more detailed information if you already have some knowledge of the target. The spell will not return any information for items not of legendary renown.\n\nThe knowledge you gain is always true, but may be obscured by metaphor, poetic language, or verse.\n\nIf you use the spell for a cursed tome, for instance, you may gain knowledge of the dire words spoken by its creator as they brought it into the world.", - "document": "a5e-ag", - "level": 5, - "school": "divination", - "higher_level": "Your intuition surrounding the target is enhanced and you gain advantage on one Investigation check regarding it for each slot level above 6th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_lemure-transformation", - "fields": { - "name": "Lemure Transformation", - "desc": "Your body melts into a humanoid-shaped mass of liquid flesh. Each creature within 5 feet of you that can see the transformation must make a Wisdom saving throw. On a failure, the creature can't take reactions and is frightened of you until the start of its next turn. Until the end of your turn, your Speed becomes 20 feet, you can't speak, and you can move through spaces as narrow as 1 inch wide without squeezing. You revert to your normal form at the end of your turn.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 turn", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_lesser-restoration", - "fields": { - "name": "Lesser Restoration", - "desc": "Your glowing hand removes one disease or condition affecting the target. Choose from blinded, deafened, paralyzed, or poisoned. At the Narrator's discretion, some diseases might not be curable with this spell.", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_levitate", - "fields": { - "name": "Levitate", - "desc": "Until the spell ends, the target rises vertically in the air up to 20 feet and remains floating there, able to move only by pushing or pulling on fixed objects or surfaces within its reach. This allows the target to move as if it was climbing.\n\nOn subsequent turns, you can use your action to alter the target's altitude by up to 20 feet in either direction so long as it remains within range. If you have targeted yourself you may move up or down as part of your movement.\n\nThe target floats gently to the ground if it is still in the air when the spell ends.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "When using a 5th-level spell slot the target can levitate or come to the ground at will. When using a 7th-level spell slot its duration increases to 1 hour and it no longer requires concentration.", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_light", - "fields": { - "name": "Light", - "desc": "Until the spell ends, the target emits bright light in a 20-foot radius and dim light an additional 20 feet. Light emanating from the target may be any color. Completely covering the target with something that is not transparent blocks the light. The spell ends when you use an action to dismiss it or if you cast it again.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_lightning-bolt", - "fields": { - "name": "Lightning Bolt", - "desc": "A bolt of lightning arcs out from you in a direction you choose. Each creature in the area takes 8d6 lightning damage. The lightning ignites flammable objects in its path that aren't worn or carried by another creature.\n\nIf the spell is stopped by an object at least as large as its width, it ends there unless it deals enough damage to break through. When it does, it continues to the end of its area.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "Damage increases by 1d6 for every slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "lightning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_locate-animals-or-plants", - "fields": { - "name": "Locate Animals or Plants", - "desc": "Name or describe in detail a specific kind of beast or plant. The natural magics in range reveal the closest example of the target within 5 miles, including its general direction (north, west, southeast, and so on) and how many miles away it currently is.", - "document": "a5e-ag", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "5 miles", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_locate-creature", - "fields": { - "name": "Locate Creature", - "desc": "Name or describe in detail a creature familiar to you. The spell reveals the general direction the creature is in (south, east, northwest, and so on) if it exists within range. This includes its current trajectory if it's travelling.\n\nYou may locate specific, known creatures, or the nearest creature of a specific type (like a bat, gnome, or red dragon) provided that you have observed that type within 30 feet at least once. If a specific creature you seek is in a different form (for example a wildshaped druid) the spell is unable to find it.\n\nThe spell cannot travel across running water 10 feet across or wider—it is unable to find the creature and the trail ends.", - "document": "a5e-ag", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "1000 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_locate-object", - "fields": { - "name": "Locate Object", - "desc": "Name or describe in detail an object familiar to you. The spell reveals the general direction the object is in (south, east, northwest, and so on) if it exists within range. This includes its current trajectory if it's travelling.\n\nYou may locate a specific object known to you, provided that you have observed it within 30 feet at least once. You may also find the closest example of a certain type of object (for example an instrument, item of furniture, compass, or vase).\n\nWhen there is any thickness of lead in the direct path between you and the object the spell is unable to find it.", - "document": "a5e-ag", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "1000 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_longstrider", - "fields": { - "name": "Longstrider", - "desc": "Until the spell ends, the target's Speed increases by 10 feet.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "Target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_mage-armor", - "fields": { - "name": "Mage Armor", - "desc": "Until the spell ends, the target is protected by a shimmering magical force. Its AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor, or if you use an action to dismiss it.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "The target gains 5 temporary hit points for each slot level above 1st. The temporary hit points last for the spell's duration.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_mage-hand", - "fields": { - "name": "Mage Hand", - "desc": "A faintly shimmering phantasmal hand appears at a point you choose within range. It remains until you dismiss it as an action, or until you move more than 30 feet from it.\n\nYou can use an action to control the hand and direct it to do any of the following:\n\n* manipulate an object.\n* open an unlocked container or door.\n* stow or retrieve items from unlocked containers.\n\nThe hand cannot attack, use magic items, or carry more than 10 pounds.", - "document": "a5e-ag", - "level": 0, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_magic-circle", - "fields": { - "name": "Magic Circle", - "desc": "Magical energies surround the area and stop the type of designated creature from willingly entering by nonmagical means.\n\nDesignated creatures have disadvantage when attacking creatures within the area and are unable to charm, frighten, or possess creatures within the area. When a designated creature attempts to teleport or use interplanar travel to enter the area, it makes a Charisma saving throw or its attempt fails.\n\nYou may also choose to reverse this spell, trapping a creature of your chosen type within the area in order to protect targets outside it.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "The spell's duration increases by 1 hour for every slot level above 3rd.", - "target_type": "area", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_magic-jar", - "fields": { - "name": "Magic Jar", - "desc": "Your body becomes catatonic as your soul enters the vessel used as a material component. While within this vessel, you're aware of your surroundings as if you physically occupied the same space.\n\nThe only action you can take is to project your soul within range, whether to return to your living body (and end the spell) or to possess a humanoid.\n\nYou may not target creatures protected by protection from good and evil or magic circle spells. A creature you try to possess makes a Charisma saving throw or your soul moves from your vessel and into its body. The creature's soul is now within the container. On a successful save, the creature resists and you may not attempt to possess it again for 24 hours.\n\nOnce you possess a creature, you have control of it. Replace your game statistics with the creature's, except your Charisma, Intelligence and Wisdom scores. Your own cultural traits and class features also remain, and you may not use the creature's cultural traits or class features (if it has any).\n\nDuring possession, you can use an action to return to the vessel if it is within range, returning the host creature to its body. If the host body dies while you are possessing it, the creature also dies and you must make a Charisma save. On a success you return to the container if it's within range. Otherwise, you die.\n\nIf the vessel is destroyed, the spell ends and your soul returns to your body if it's within range. If your body is out of range or dead when you try to return, you die.\n\nThe possessed creature perceives the world as if it occupied the same space as the vessel, but may not take any actions or movement. If the vessel is destroyed while occupied by a creature other than yourself, the creature returns to its body if the body is alive and within range. Otherwise, the creature dies.\n\nThe vessel is destroyed when the spell ends.", - "document": "a5e-ag", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_magic-missile", - "fields": { - "name": "Magic Missile", - "desc": "A trio of glowing darts of magical force unerringly and simultaneously strike the targets, each dealing 1d4+1 force damage.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "Evoke one additional dart and target up to one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_magic-mouth", - "fields": { - "name": "Magic Mouth", - "desc": "The target is imbued with a spoken message of 25 words or fewer which it speaks when a trigger condition you choose is met. The message may take up to 10 minutes to convey.\n\nWhen your trigger condition is met, a magical mouth appears on the object and recites the message in the same voice and volume as you used when instructing it. If the object chosen has a mouth (for example, a painted portrait) this is where the mouth appears.\n\nYou may choose upon casting whether the message is a single event, or whether it repeats every time the trigger condition is met.\n\nThe trigger condition must be based upon audio or visual cues within 30 feet of the object, and may be highly detailed or as broad as you choose.\n\nFor example, the trigger could be when any attack action is made within range, or when the first spring shoot breaks ground within range.", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_magic-weapon", - "fields": { - "name": "Magic Weapon", - "desc": "Until the spell ends, the target becomes +1 magic weapon.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "The bonus increases by +1 for every 2 slot levels above 2nd (maximum +3).", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_magnificent-mansion", - "fields": { - "name": "Magnificent Mansion", - "desc": "You conjure an extradimensional residence within range. It has one entrance that is in a place of your choosing, has a faint luster to it, and is 5 feet wide and 10 feet tall. You and any designated creature may enter your mansion while the portal is open. You may open and close the portal while you are within 30 feet of it. Once closed the entrance is invisible.\n\nThe entrance leads to an opulent entrance hall, with many doors and halls coming from it. The atmosphere is welcoming, warm, and comfortable, and the whole place is sparkling clean.\n\nThe floor plan of the residence is up to you, but it must be made up of fifty or fewer 10-foot cubes.\n\nThe furniture and decor are chosen by you. The residence contains enough food to provide Supply for a number of people equal to 5 × your proficiency bonus. A staff of translucent, lustrous servants dwell within the residence. They may otherwise look how you wish. These servants obey your commands without question, and can perform the same nonhostile actions as a human servant—they might carry objects, prepare and serve food and drinks, clean, make simple repairs, and so on. Servants have access to the entire mansion but may not leave.\n\nAll objects and furnishings belonging to the mansion evaporate into shimmering smoke when they leave it. Any creature within the mansion when the spell ends is expelled into an unoccupied space near the entrance.", - "document": "a5e-ag", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_major-image", - "fields": { - "name": "Major Image", - "desc": "Until the spell ends, you create an image that appears completely real. The illusion includes sounds, smells, and temperature in addition to visual phenomena. None of the effects of the illusion are able to cause actual harm.\n\nWhile within range you can use an action to move the illusion. As the image moves you may also change its appearance to make the movement seem natural (like a roc moving its wings to fly) and also change the nonvisual elements of the illusion for the same reason (like the sound of beating wings as the roc flies).\n\nAny physical interaction immediately reveals the image is an illusion, as objects and creatures alike pass through it. An Investigation check against your spell save DC also reveals the image is an illusion.\n\nWhen a creature realizes the image is an illusion, the effects become fainter for that creature.", - "document": "a5e-ag", - "level": 3, - "school": "illusion", - "higher_level": "When cast using a 6th-level spell slot the illusion lasts until dispelled without requiring concentration.", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_mass-cure-wounds", - "fields": { - "name": "Mass Cure Wounds", - "desc": "Glowing energy rushes through the air and each target regains hit points equal to 3d8 + your spellcasting modifier.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "The hit points regained increase by 1d8 for each slot level above 5th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_mass-heal", - "fields": { - "name": "Mass Heal", - "desc": "Healing energy erupts from your steepled hands and restores up to 700 hit points between the targets.\n\nCreatures healed in this way are also cured of any diseases, and any effect causing them to be blinded or deafened. In addition, on subsequent turns within the next minute you can use a bonus action to distribute any unused hit points.", - "document": "a5e-ag", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_mass-healing-word", - "fields": { - "name": "Mass Healing Word", - "desc": "Healing energy flows from you in a wash of restorative power and each target regains hit points equal to 1d4 + your spellcasting ability modifier.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "The hit points regained increase by 1d4 for each slot level above 3rd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_mass-suggestion", - "fields": { - "name": "Mass Suggestion", - "desc": "Creatures that cannot be charmed are immune to this spell. Suggest an activity phrased in a sentence or two. The targets are magically influenced to follow that course of activity. The suggestion must be worded to sound reasonable. Asking the targets to perform an action that is obviously harmful to them ends the spell.\n\nA target carries out the activity suggested by you as well as it can. The activity can last for the duration of the spell, and if it requires less time the spell ends after a target has carried out the activity.\n\nYou may specify trigger conditions that cause a target to perform a specific activity while the spell lasts. For example, you may suggest that the target takes off its clothes and dives the next time it sees a body of water. If the target does not see a body of water before the spell ends, the specific activity isn't performed.\n\nAny damage done to a target by you or an ally ends the spell for that creature.", - "document": "a5e-ag", - "level": 6, - "school": "enchantment", - "higher_level": "When cast using a 7th-level spell slot, the duration of the spell increases to 10 days. When cast using an 8th-level spell slot, the duration increases to 30 days. When cast using a 9th-level spell slot, the duration increases to a year and a day.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_maze", - "fields": { - "name": "Maze", - "desc": "The target is banished to a complex maze on its own demiplane, and remains there for the duration or until the target succeeds in escaping.\n\nThe target can use an action to attempt to escape, making an Intelligence saving throw. On a successful save it escapes and the spell ends. A creature with Labyrinthine Recall (or a similar trait) automatically succeeds on its save.\n\nWhen the spell ends the target reappears in the space it occupied before the spell was cast, or the closest unoccupied space if that space is occupied.", - "document": "a5e-ag", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_meld-into-stone", - "fields": { - "name": "Meld Into Stone", - "desc": "Until the spell ends, you meld yourself and your carried equipment into the target stone. Using your movement, you may enter the stone from any point you can touch. No trace of your presence is visible or detectable by nonmagical senses.\n\nWithin the stone, you can't see outside it and have disadvantage on Perception checks made to hear beyond it. You are aware of time passing, and may cast spells upon yourself. You may use your movement only to step out of the target where you entered it, ending the spell.\n\nIf the target is damaged such that its shape changes and you no longer fit within it, you are expelled and take 6d6 bludgeoning damage. Complete destruction of the target, or its transmutation into another substance, expels you and you take 50 bludgeoning damage. When expelled you fall prone into the closest unoccupied space near your entrance point.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "When using a 5th-level spell slot, you may reach out of the target to make spell attacks or ranged weapon attacks without ending the spell. You make these attacks with disadvantage.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_mending", - "fields": { - "name": "Mending", - "desc": "You repair a single rip or break in the target object (for example, a cracked goblet, torn page, or ripped robe). The break must be smaller than 1 foot in all dimensions. The spell leaves no trace that the object was damaged.\n\nMagic items and constructs may be repaired in this way, but their magic is not restored. You gain an expertise die on maintenance checks if you are able to cast this spell on the item you are treating.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_mental-grip", - "fields": { - "name": "Mental Grip", - "desc": "You conjure extensions of your own mental fortitude to keep your foes at bay. For the spell's duration, you can use an action to attempt to grapple a creature within range by making a concentration check against its maneuver DC.\n\nOn its turn, a target grappled in this way can use an action to attempt to escape the grapple, using your spell save DC instead of your maneuver DC.\n\nSuccessful escape attempts do not break your concentration on the spell.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_message", - "fields": { - "name": "Message", - "desc": "You point and whisper your message at the target.\n\nIt alone hears the message and may reply in a whisper audible only to you.\n\nYou can cast this spell through solid objects if you are familiar with the target and are certain it is beyond the barrier. The message is blocked by 3 feet of wood, 1 foot of stone, 1 inch of common metals, or a thin sheet of lead.\n\nThe spell moves freely around corners or through openings.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_meteor-swarm", - "fields": { - "name": "Meteor Swarm", - "desc": "Scorching spheres of flame strike the ground at 4 different points within range. The effects of a sphere reach around corners. Creatures and objects in the area take 14d6 fire damage and 14d6 bludgeoning damage, and flammable unattended objects catch on fire. If a creature is in the area of more than one sphere, it is affected only once.", - "document": "a5e-ag", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "1 mile", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_mind-blank", - "fields": { - "name": "Mind Blank", - "desc": "The target is immune to psychic damage, any effect that would read its emotions or thoughts, divination spells, and the charmed condition.\n\nThis immunity extends even to the wish spell, and magical effects or spells of similar power that would affect the target's mind or gain information about it.", - "document": "a5e-ag", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_mindshield", - "fields": { - "name": "Mindshield", - "desc": "The target has resistance to psychic damage and advantage on saving throws made to resist being charmed or frightened.", - "document": "a5e-ag", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_minor-illusion", - "fields": { - "name": "Minor Illusion", - "desc": "This spell creates a sound or image of an object.\n\nThe illusion disappears if dismissed or you cast the spell again.\n\nYou may create any sound you choose, ranging in volume from a whisper to a scream. You may choose one sound for the duration or change them at varying points before the spell ends. Sounds are audible outside the spell's area.\n\nVisual illusions may replicate any image and remain within the spell's area, but cannot create sound, light, smell, or other sensory effects.\n\nThe image is revealed as an illusion with any physical interaction as physical objects and creatures pass through it. An Investigation check against your spell save DC also reveals the image is an illusion. When a creature realizes the image is an illusion, the effects become fainter for that creature.", - "document": "a5e-ag", - "level": 0, - "school": "illusion", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_mirage-arcane", - "fields": { - "name": "Mirage Arcane", - "desc": "You make terrain within the spell's area appear as another kind of terrain, tricking all senses (including touch).\n\nThe general shape of the terrain remains the same, however. A small town could resemble a woodland, a smooth road could appear rocky and overgrown, a deep pit could resemble a shallow pond, and so on.\n\nStructures may be altered in the similar way, or added where there are none. Creatures are not disguised, concealed, or added by the spell.\n\nThe illusion appears completely real in all aspects, including physical terrain, and can be physically interacted with. Clear terrain becomes difficult terrain, and vice versa. Any part of the illusory terrain such as a boulder, or water collected from an illusory stream, disappears immediately upon leaving the spell's area.\n\nCreatures with truesight see through the illusion, but are not immune to its effects. They may know that the overgrown path is in fact a well maintained road, but are still impeded by illusory rocks and branches.", - "document": "a5e-ag", - "level": 7, - "school": "illusion", - "higher_level": "", - "target_type": "area", - "range": "Sight", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_mirror-image", - "fields": { - "name": "Mirror Image", - "desc": "A total of 3 illusory copies of yourself appear in your space. For the duration, these copies move with you and mimic your actions, creating confusion as to which is real.\n\nYou can use an action to dismiss them.\n\nEach time you're targeted by a creature's attack, roll a d20 to see if it targets you or one of your copies.\n\nWith 3 copies, a roll of 6 or higher means a copy is targeted. With two copies, a roll of 8 or higher targets a copy, and with 1 copy a roll of 11 or higher targets the copy.\n\nA copy's AC is 10 + your Dexterity modifier, and when it is hit by an attack a copy is destroyed.\n\nIt may be destroyed only by an attack that hits it.\n\nAll other damage and effects have no impact.\n\nAttacking creatures that have truesight, cannot see, have blindsight, or rely on other nonvisual senses are unaffected by this spell.", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "When using a 5th-level spell slot, the duration increases to concentration (1 hour).", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_mislead", - "fields": { - "name": "Mislead", - "desc": "You become invisible. At the same time, an illusory copy of you appears where you're standing.\n\nThis invisibility ends when you cast a spell but the copy lasts until the spell ends.\n\nYou can use an action to move your copy up to twice your Speed, have it speak, make gestures, or behave however you'd like.\n\nYou may see and hear through your copy. Until the spell ends, you can use a bonus action to switch between your copy's senses and your own, or back again. While using your copy's senses you are blind and deaf to your body's surroundings.\n\nThe copy is revealed as an illusion with any physical interaction, as solid objects and creatures pass through it.", - "document": "a5e-ag", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_misty-step", - "fields": { - "name": "Misty Step", - "desc": "You teleport to an unoccupied space that you can see, disappearing and reappearing in a swirl of shimmering mist.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_modify-memory", - "fields": { - "name": "Modify Memory", - "desc": "The target has advantage on its saving throw if you are in combat with it. The target becomes charmed and incapacitated, though it can still hear you. Until the spell ends, any memories of an event that took place within the last 24 hours and lasted 10 minutes or less may be altered.\n\nYou may destroy the memory, have the target recall the event with perfect clarity, change the details, or create a new memory entirely with the same restrictions in time frame and length.\n\nYou must speak to the target in a language you both know to modify its memories and describe how the memory is changed. The target fills in the gaps in details based on your description.\n\nThe spell automatically ends if the target takes any damage or if it is targeted by another spell. If the spell ends before you have finished modifying its memories, the alteration fails. Otherwise, the alteration is complete when the spell ends and only greater restoration or remove curse can restore the memory.\n\nThe Narrator may deem a modified memory too illogical or nonsensical to affect a creature, in which case the modified memory is simply dismissed by the target. In addition, a modified memory doesn't specifically change the behavior of a creature, especially if the memory conflicts with the creature's personality, beliefs, or innate tendencies.\n\nThere may also be events that are practically unforgettable and after being modified can be remembered correctly when another creature succeeds on a Persuasion check to stir the target's memories. This check is made with disadvantage if the creature does not have indisputable proof on hand that is relevant to the altered memory.", - "document": "a5e-ag", - "level": 5, - "school": "enchantment", - "higher_level": "When using a 6th-level spell slot, the event can be from as far as 7 days ago. When using a 7th-level spell slot, the event can be from as far as 30 days ago. When using an 8th-level spell slot, the event can be from as far as 1 year ago. When using a 9th-level spell slot, any event can be altered.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_moonbeam", - "fields": { - "name": "Moonbeam", - "desc": "A beam of moonlight fills the area with dim light.\n\nWhen a creature enters the area for the first time on a turn or begins its turn in the area, it is struck by silver flames and makes a Constitution saving throw, taking 2d10 radiant damage on a failed save, or half as much on a success.\n\nShapechangers have disadvantage on this saving throw. On a failed save, a shapechanger is forced to take its original form while within the spell's light.\n\nOn your turn, you may use an action to move the beam 60 feet in any direction.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "The damage increases by 1d10 for each slot level above 2nd.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_move-earth", - "fields": { - "name": "Move Earth", - "desc": "You reshape the area, changing its elevation or creating and eliminating holes, walls, and pillars.\n\nThe only limitation is that the elevation change may not exceed half the area's horizontal dimensions.\n\nFor example, affecting a 40-by-40 area allows you to include 20 foot high pillars, holes 20 feet deep, and changes in terrain elevation of 20 feet or less.\n\nChanges that result in unstable terrain are subject to collapse.\n\nChanges take 10 minutes to complete, after which you can choose another area to affect. Due to the slow speed of transformation, it is nearly impossible for creatures to be hurt or captured by the spell.\n\nThis spell has no effect on stone, objects crafted from stone, or plants, though these objects will shift based on changes in the area.", - "document": "a5e-ag", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "2 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_nondetection", - "fields": { - "name": "Nondetection", - "desc": "The target is hidden from divination magic and cannot be perceived by magical scrying sensors.\n\nWhen used on a place or object, the spell only works if the target is no larger than 10 feet in any given dimension.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_pass-without-trace", - "fields": { - "name": "Pass Without Trace", - "desc": "You and allies within the area gain advantage and an expertise die on Dexterity (Stealth) checks as an aura of secrecy enshrouds you. Creatures in the area leave behind no evidence of their passage.", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_passwall", - "fields": { - "name": "Passwall", - "desc": "Until the spell ends, you create a passage extending into the target surface. When creating the passage you define its dimensions, as long as they do not exceed 5 feet in width, 8 feet in height, or 20 feet in depth.\n\nThe appearance of the passage has no effect on the stability of the surrounding environment.\n\nAny creatures or objects within the passage when the spell ends are expelled without harm into unoccupied spaces near where the spell was cast.", - "document": "a5e-ag", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_pestilence", - "fields": { - "name": "Pestilence", - "desc": "A swarm of insects fills the area. Creatures that begin their turn within the spell's area or who enter the area for the first time on their turn must make a Constitution saving throw or take 1d4 piercing damage. The pests also ravage any unattended organic material within their radius, such as plant, wood, or fabric.", - "document": "a5e-ag", - "level": 0, - "school": "conjuration", - "higher_level": "This spell's damage increases by 1d4 when you reach 5th level (2d4), 10th level (3d4), and 15th level (4d4).", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_phantasmal-killer", - "fields": { - "name": "Phantasmal Killer", - "desc": "You create an illusion that invokes the target's deepest fears. Only the target can see this illusion.\n\nWhen the spell is cast and at the end of each of its turns, the target makes a Wisdom saving throw or takes 4d10 psychic damage and becomes frightened.\n\nThe spell ends early when the target succeeds on its saving throw. A target that succeeds on its initial saving throw takes half damage.", - "document": "a5e-ag", - "level": 4, - "school": "illusion", - "higher_level": "The damage increases by 1d10 for each slot level above the 4th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "4d10", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_phantasmal-talons", - "fields": { - "name": "Phantasmal Talons", - "desc": "You silently clench your hand into a claw and invisible talons of pure will sprout from your fingers.\n\nThe talons do not interact with physical matter, but rip viciously at the psyche of any creature struck by them. For the duration, your unarmed strikes gain the finesse property and deal psychic damage. In addition, if your unarmed strike normally deals less than 1d4 damage, it instead deals 1d4 damage.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_phantom-steed", - "fields": { - "name": "Phantom Steed", - "desc": "You create an illusory Large creature with an appearance determined by you that comes into being with all the necessary equipment needed to use it as a mount. This equipment vanishes when more than 10 feet away from the creature.\n\nYou or any creature you allow may ride the steed, which uses the statistics for a riding horse but has a Speed of 100 feet and travels at 10 miles per hour at a steady pace (13 miles per hour at a fast pace).\n\nThe steed vanishes if it takes damage (disappearing instantly) or you use an action to dismiss it (fading away, giving the rider 1 minute to dismount).", - "document": "a5e-ag", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_planar-ally", - "fields": { - "name": "Planar Ally", - "desc": "An entity from beyond the realm material answers your call for assistance. You must know this entity whether it is holy, unholy, or beyond the bounds of mortal comprehension. The entity sends forth a servant loyal to it to aid you in your endeavors. If you have a specific servant in mind you may speak its name during the casting, but ultimately who is sent to answer your call is the entity's decision.\n\nThe creature that appears (a celestial, elemental, fey, or fiend), is under no compulsion to behave in any particular way other than how its nature and personality direct it. Any request made of the creature, simple or complex, requires an equal amount of payment which you must bargain with the creature to ascertain. The creature can request either items, sacrifices, or services in exchange for its assistance. A creature that you cannot communicate with cannot be bargained with.\n\nA task that can be completed in minutes is worth 100 gold per minute, a task that requires hours is worth 1, 000 gold per hour, and a task requiring days is worth 10, 000 gold per day (the creature can only accept tasks contained within a 10 day timeframe). A creature can often be persuaded to lower or raise prices depending on how a task aligns with its personality and the goals of its master —some require no payment at all if the task is deemed worthy. Additionally, a task that poses little or no risk only requires half the usual amount of payment, and an extremely dangerous task might call for double the usual payment. Still, only extreme circumstances will cause a creature summoned this way to accept tasks with a near certain result of death.\n\nA creature returns to its place of origin when a task is completed or if you fail to negotiate an agreeable task and payment. Should a creature join your party, it counts as a member of the group and receives a full portion of any experience gained.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_planar-binding", - "fields": { - "name": "Planar Binding", - "desc": "The target must remain within range for the entire casting of the spell (usually by means of a magic circle spell). Until the spell ends, you force the target to serve you. If the target was summoned through some other means, like a spell, the duration of the original spell is extended to match this spell's duration.\n\nOnce it is bound to you the target serves as best it can and follows your orders, but only to the letter of the instruction. A hostile or malevolent target actively seeks to take any advantage of errant phrasing to suit its nature. When a target completes a task you've assigned to it, if you are on the same plane of existence the target travels back to you to report it has done so. Otherwise, it returns to where it was bound and remains there until the spell ends.", - "document": "a5e-ag", - "level": 5, - "school": "abjuration", - "higher_level": "When using a 6th-level spell slot, its duration increases to 10 days. When using a 7th-level spell slot, its duration increases to 30 days. When using an 8th-level spell slot, its duration increases to 180 days. When using a 9th-level spell slot, its duration increases to a year and a day.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_plane-shift", - "fields": { - "name": "Plane Shift", - "desc": "Willing targets are transported to a plane of existence that you choose. If the destination is generally described, targets arrive near that destination in a location chosen by the Narrator. If you know the correct sequence of an existing teleportation circle (see teleportation circle), you can choose it as the destination (when the designated circle is too small for all targets to fit, any additional targets are shunted to the closest unoccupied spaces).\n\nAlternatively this spell can be used offensively to banish an unwilling target. You make a melee spell attack and on a hit the target makes a Charisma saving throw or is transported to a random location on a plane of existence that you choose. Once transported, you must spend 1 minute concentrating on this spell or the target returns to the last space it occupied (otherwise it must find its own way back).", - "document": "a5e-ag", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 8, - "saving_throw_ability": "charisma", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_plant-growth", - "fields": { - "name": "Plant Growth", - "desc": "You channel vitality into vegetation to achieve one of the following effects, chosen when casting the spell.\n\nEnlarged: Plants in the area are greatly enriched. Any harvests of the affected plants provide twice as much food as normal.\n\nRapid: All nonmagical plants in the area surge with the power of life. A creature that moves through the area must spend 4 feet of movement for every foot it moves. You can exclude one or more areas of any size from being affected.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_poison-skin", - "fields": { - "name": "Poison Skin", - "desc": "The target becomes poisonous to the touch. Until the spell ends, whenever a creature within 5 feet of the target damages the target with a melee weapon attack, the creature makes a Constitution saving throw. On a failed save, the creature becomes poisoned and takes 1d6 ongoing poison damage.\n\nA poisoned creature can make a Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe target of the spell also becomes bright and multicolored like a poisonous dart frog, giving it disadvantage on Dexterity (Stealth) checks.", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "The target's skin is also covered in mucus, giving it advantage on saving throws and checks made to resist being grappled or restrained. In addition, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "poison" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_polymorph", - "fields": { - "name": "Polymorph", - "desc": "The target's body is transformed into a beast with a Challenge Rating equal to or less than its own. If the target doesn't have a Challenge Rating, use its level.\n\nUntil the spell ends or it is dropped to 0 hit points, the target's game statistics (including its hit points and mental ability scores) are replaced by the statistics of the chosen beast. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effects on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_power-word-kill", - "fields": { - "name": "Power Word Kill", - "desc": "With but a word you snuff out the target's life and it immediately dies. If you cast this on a creature with more than 100 hit points, it takes 50 hit points of damage.", - "document": "a5e-ag", - "level": 9, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_power-word-stun", - "fields": { - "name": "Power Word Stun", - "desc": "You utter a powerful word that stuns a target with 150 hit points or less. At the end of the target's turn, it makes a Constitution saving throw to end the effect. If the target has more than 150 hit points, it is instead rattled until the end of its next turn.", - "document": "a5e-ag", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_prayer-of-healing", - "fields": { - "name": "Prayer of Healing", - "desc": "The targets regain hit points equal to 2d8 + your spellcasting ability modifier.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "The hit points regained increase by 1d8 for each slot level above 2nd.", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_prestidigitation", - "fields": { - "name": "Prestidigitation", - "desc": "You wield arcane energies to produce minor effects. Choose one of the following:\n\n* create a single burst of magic that manifests to one of the senses (for example a burst of sound, sparks, or an odd odor).\n* clean or soil an object of 1 cubic foot or less.\n* light or snuff a flame.\n* chill, warm, or flavor nonliving material of 1 cubic foot or less for 1 hour.\n* color or mark an object or surface for 1 hour.\n* create an ordinary trinket or illusionary image that fits in your hand and lasts for 1 round.\n\nYou may cast this spell multiple times, though only three effects may be active at a time. Dismissing each effect requires an action.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_prismatic-spray", - "fields": { - "name": "Prismatic Spray", - "desc": "You unleash 8 rays of light, each with a different purpose and effect. For each target in the area, roll a d8 to determine the ray that affects it.\n\n1—Red: The target takes 10d6 fire damage.\n\n2—Orange: The target takes 10d6 acid damage.\n\n3—Yellow: The target takes 10d6 lightning damage.\n\n4—Green: The target takes 10d6 poison damage.\n\n5—Blue: The target takes 10d6 cold damage.\n\n6—Indigo: The target is restrained and at the end of each of its turns it makes a Constitution saving throw. Once it accumulates two failed saves it permanently turns to stone, or when it accumulates two successful saves the effect ends.\n\n7—Violet: The target is blinded. At the start of your next turn, the target makes a Wisdom saving throw, ending the effect on a success.\n\nOn a failed save, the target is banished to another random plane and is no longer blind. If it originated from another plane it returns there, while other creatures are generally cast into the Astral Plane or Ethereal Plane.\n\n8—Special: The target is hit by two rays.\n\nRoll a d8 twice to determine which rays, rerolling any 8s.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_prismatic-wall", - "fields": { - "name": "Prismatic Wall", - "desc": "You create a nontransparent barrier of prismatic energy that sheds bright light in a 100-foot radius and dim light for an additional 100 feet. You and creatures you choose at the time of casting are immune to the barrier's effects and may pass through it at will.\n\nThe barrier can be created as either a vertical wall or a sphere. If the wall intersects a space occupied by a creature the spell fails, you lose your action, and the spell slot is wasted.\n\nWhen a creature that can see the barrier moves within 20 feet of the area or starts its turn within 20 feet of the area, it makes a Constitution saving throw or it is blinded for 1 minute.\n\nThe wall has 7 layers, each layer of a different color in order from red to violet. Once a layer is destroyed, it is gone for the duration of the spell.\n\nTo pass or reach through the barrier a creature does so one layer at a time and must make a Dexterity saving throw for each layer or be subjected to that layer's effects. On a successful save, any damage taken from a layer is reduced by half.\n\nA rod of cancellation can destroy a prismatic wall, but an antimagic field has no effect.\n\nRed: The creature takes 10d6 fire damage.\n\nWhile active, nonmagical ranged attacks can't penetrate the barrier. The layer is destroyed by 25 cold damage.\n\nOrange: The creature takes 10d6 acid damage. While active, magical ranged attacks can't penetrate the barrier. The layer is destroyed by strong winds.\n\nYellow: The creature takes 10d6 lightning damage. This layer is destroyed by 60 force damage.\n\nGreen: The creature takes 10d6 poison damage. A passwall spell, or any spell of equal or greater level which can create a portal on a solid surface, destroys the layer.\n\nBlue: The creature takes 10d6 cold damage.\n\nThis layer is destroyed by 25 fire damage.\n\nIndigo: The creature is restrained and makes a Constitution saving throw at the end of each of its turns. Once it accumulates three failed saves it permanently turns to stone, or when it accumulates three successful saves the effect ends. This layer can be destroyed by bright light, such as that created by the daylight spell or a spell of equal or greater level.\n\nViolet: The creature is blinded. At the start of your next turn, the creature makes a Wisdom saving throw, ending the effect on a success.\n\nOn a failed save, the creature is banished to another random plane and is no longer blind. If it originated from another plane it returns there, while other creatures are generally cast into the Astral Plane or Ethereal Plane. This layer can be destroyed by dispel magic or a similar spell of equal or greater level capable of ending spells or magical effects.", - "document": "a5e-ag", - "level": 9, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "fire" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_private-sanctum", - "fields": { - "name": "Private Sanctum", - "desc": "You increase the magical security in an area, choosing one or more of the following:\n\n* sound cannot pass the edge of the area.\n* light and vision cannot pass the edge of the area.\n* sensors created by divination spells can neither enter the area nor appear within it.\n* creatures within the area cannot be targeted by divination spells.\n* nothing can teleport into or out of the area.\n* planar travel is impossible within the area.\n\nCasting this spell on the same area every day for a year makes the duration permanent.", - "document": "a5e-ag", - "level": 4, - "school": "abjuration", - "higher_level": "Increase the size of the sanctum by up to 100 feet for each slot level above 4th.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_produce-flame", - "fields": { - "name": "Produce Flame", - "desc": "You create a flame in your hand which lasts until the spell ends and does no harm to you or your equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nThe spell ends when you dismiss it, cast it again, or attack with the flame. As part of casting the spell or as an action on a following turn, you can fling the flame at a creature within 30 feet, making a ranged spell attack that deals 1d8 fire damage.", - "document": "a5e-ag", - "level": 0, - "school": "conjuration", - "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_programmed-illusion", - "fields": { - "name": "Programmed Illusion", - "desc": "You craft an illusory object, creature, or other effect which executes a scripted performance when a specific condition is met within 30 feet of the area.\n\nYou must describe both the condition and the details of the performance upon casting. The trigger must be based on something that can be seen or heard.\n\nOnce the illusion triggers, it runs its performance for up to 5 minutes before it disappears and goes dormant for 10 minutes. The illusion is undetectable until then and only reactivates when the condition is triggered and after the dormant period has passed.\n\nA creature can use an action to attempt an Investigation check against your spell save DC to reveal the spell's illusory nature. Physical interactions reveal the illusion for what it is as things can pass through it with ease. A creature aware of the illusion perceives the image as transparent and the sounds it generates hollow.", - "document": "a5e-ag", - "level": 6, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_project-image", - "fields": { - "name": "Project Image", - "desc": "You create an illusory duplicate of yourself that looks and sounds like you but is intangible. The duplicate can appear anywhere within range as long as you have seen the space before (it ignores any obstacles in the way).\n\nYou can use an action to move this duplicate up to twice your Speed and make it speak and behave in whatever way you choose, mimicking your mannerism with perfect accuracy. You can use a bonus action to see through your duplicate's eyes and hear through its ears until the beginning of your next turn. During this time, you are blind and deaf to your body's surroundings.\n\nA creature can use an action to attempt an Investigation check against your spell save DC to reveal the spell's illusory nature. Physical interactions reveal the illusion for what it is as things can pass through it with ease. A creature aware of the illusion perceives the image as transparent and the sounds it generates hollow.", - "document": "a5e-ag", - "level": 7, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 day", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_protection-from-energy", - "fields": { - "name": "Protection from Energy", - "desc": "Until the spell ends, the target has resistance to one of the following damage types: acid, cold, fire, lightning, thunder.", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "For each slot level above 2nd, the target gains resistance to one additional type of damage listed above, with a maximum number equal to your spellcasting ability modifier.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_protection-from-evil-and-good", - "fields": { - "name": "Protection from Evil and Good", - "desc": "The target is protected against the following types of creatures: aberrations, celestials, elementals, fey, fiends, and undead. Creatures of those types have disadvantage on attack rolls against the target and are unable to charm, frighten, or possess the target.\n\nIf the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against that effect.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_protection-from-poison", - "fields": { - "name": "Protection from Poison", - "desc": "The target has advantage on saving throws against being poisoned and resistance to poison damage.\n\nAdditionally, if the target is poisoned, you negate one poison affecting it. If more than one poison affects the target, you negate one poison you know is present (otherwise you negate one at random).", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_purify-food-and-drink", - "fields": { - "name": "Purify Food and Drink", - "desc": "You remove all poison and disease from a number of Supply equal to your proficiency bonus.", - "document": "a5e-ag", - "level": 1, - "school": "transmutation", - "higher_level": "Remove all poison and disease from an additional Supply for each slot level above 1st.", - "target_type": "point", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_rage-of-the-meek", - "fields": { - "name": "Rage of the Meek", - "desc": "You unleash the discipline of your magical training and let arcane power burn from your fists, consuming the material components of the spell. Until the spell ends you have resistance to bludgeoning, piercing, and slashing damage from nonmagical weapons, and on each of your turns you can use an action to make a melee spell attack against a target within 5 feet that deals 4d8 force damage on a successful hit.\n\nFor the duration, you cannot cast other spells or concentrate on other spells. The spell ends early if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end this spell early on your turn as a bonus action.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "When using a spell slot of 5th- or 6th-level, the damage increases to 5d8.\n\nWhen using a spell slot of 7th- or 8th-level, the damage increases to 6d8\\. When using a spell slot of 9th-level, the damage increases to 7d8.", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_raise-dead", - "fields": { - "name": "Raise Dead", - "desc": "You return the target to life, provided its soul is willing and able to return to its body. The creature returns to life with 1 hit point. The spell cannot return an undead creature to life.\n\nThe spell cures any poisons and nonmagical diseases that affected the creature at the time of death. It does not remove any magical diseases, curses, or other magical effects; these must be removed prior to the spell being cast, otherwise they immediately take effect when the creature returns to life.\n\nThe spell does not regrow limbs or organs, and it automatically fails if the target is missing any body parts necessary for life (like its heart or head).\n\nBeing raised from the dead takes a toll on the body, mind, and spirit. The target suffers 3 levels of fatigue and strife. At the conclusion of each long rest, the target removes one level of fatigue and strife until the target completely recovers.", - "document": "a5e-ag", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_raise-hell", - "fields": { - "name": "Raise Hell", - "desc": "You transform the land around you into a blasted hellscape. When you cast the spell, all nonmagical vegetation in the area immediately dies. In addition, you can create any of the following effects within the area. Fiends are immune to these effects, as are any creatures you specify at the time you cast the spell. A successful dispel magic ends a single effect, not the entire area.\n\nBrimstone Rubble. You can fill any number of unoccupied 5-foot squares in the area with smoldering brimstone. These spaces become difficult terrain. A creature that enters an affected square or starts its turn there takes 2d10 fire damage.\n\nField of Fear. Dread pervades the entire area.\n\nA creature that starts its turn in the area must make a successful Wisdom saving throw or be frightened until the start its next turn. While frightened, a creature must take the Dash action to escape the area by the safest available route on each of its turns. On a successful save, the creature becomes immune to this effect for 24 hours.\n\nSpawning Pits. The ground opens to create up to 6 pits filled with poisonous bile. Each pit fills a 10-foot cube that drops beneath the ground.\n\nWhen this spell is cast, any creature whose space is on a pit may make a Dexterity saving throw, moving to an unoccupied space next to the pit on a success. A creature that enters a pit or starts its turn there takes 15d6 poison damage, or half as much damage on a successful Constitution saving throw. A creature reduced to 0 hit points by this damage immediately dies and rises as a lemure at the start of its next turn. Lemures created this way obey your verbal commands, but they disappear when the spell ends or if they leave the area for any reason.\n\nUnhallowed Spires. Up to four spires of black ice rise from the ground in unoccupied 10-foot squares within the area. Each spire can be up to 66 feet tall and is immune to all damage and magical effects. Whenever a creature within 30 feet of a spire would regain hit points, it does not regain hit points and instead takes 3d6 necrotic damage.\n\nIf you maintain concentration on the spell for the full duration, the effects are permanent until dispelled.", - "document": "a5e-ag", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d10", - "damage_types": [ - "fire" - ], - "duration": "24 hours", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_ray-of-enfeeblement", - "fields": { - "name": "Ray of Enfeeblement", - "desc": "A black ray of necrotic energy shoots from your fingertip. Make a ranged spell attack against the target. On a hit, the target is weakened and only deals half damage with weapon attacks that use Strength.\n\nAt the end of each of the target's turns, it can make a Strength saving throw, ending the spell on a success.", - "document": "a5e-ag", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_ray-of-frost", - "fields": { - "name": "Ray of Frost", - "desc": "An icy beam shoots from your outstretched fingers.\n\nMake a ranged spell attack. On a hit, you deal 1d8 cold damage and reduce the target's Speed by 10 feet until the start of your next turn.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_regenerate", - "fields": { - "name": "Regenerate", - "desc": "You touch a creature, causing its body to spontaneously heal itself. The target immediately regains 4d8 + 15 hit points and regains 10 hit points per minute (1 hit point at the start of each of its turns).\n\nIf the target is missing any body parts, the lost parts are restored after 2 minutes. If a severed part is held against the stump, the limb instantaneously reattaches itself.", - "document": "a5e-ag", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_reincarnate", - "fields": { - "name": "Reincarnate", - "desc": "You return the target to life, provided the target's soul is willing and able to return to its body. If you only have a piece of the target, the spell reforms a new adult body for the soul to inhabit. Once reincarnated the target remembers everything from its former life, and retains all its proficiencies, cultural traits, and class features.\n\nThe target's heritage traits change according to its new form. The Narrator chooses the form of the new body, or rolls on Table: Reincarnation.", - "document": "a5e-ag", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_remove-curse", - "fields": { - "name": "Remove Curse", - "desc": "This spell ends a curse inflicted with a spell slot of 3rd-level or lower. If the curse was instead inflicted by a feature or trait, the spell ends a curse inflicted by a creature of Challenge Rating 6 or lower. If cast on a cursed object of Rare or lesser rarity, this spell breaks the owner's attunement to the item (although it does not end the curse on the object).", - "document": "a5e-ag", - "level": 3, - "school": "abjuration", - "higher_level": "For each slot level above 3rd, the spell ends a curse inflicted either by a spell one level higher or by a creature with a Challenge Rating two higher. When using a 6th-level spell slot, the spell breaks the owner's attunement to a Very Rare item.\n\nWhen using a 9th-level spell slot, the spell breaks the owner's attunement to a Legendary item.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_resilient-sphere", - "fields": { - "name": "Resilient Sphere", - "desc": "A transparent sphere of force encloses the target.\n\nThe sphere is weightless and just large enough for the target to fit inside. The sphere can be destroyed without harming anyone inside by being dealt at least 15 force damage at once or by being targeted with a dispel magic spell cast using a 4th-level or higher spell slot. The sphere is immune to all other damage, and no spell effects, physical objects, or anything else can pass through, though a target can breathe while inside it. The target cannot be damaged by any attacks or effects originating from outside the sphere, and the target cannot damage anything outside of it.\n\nThe target can use an action to roll the sphere at half its Speed. Similarly, the sphere can be picked up and moved by other creatures.", - "document": "a5e-ag", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_resistance", - "fields": { - "name": "Resistance", - "desc": "The target gains an expertise die to one saving throw of its choice, ending the spell. The expertise die can be rolled before or after the saving throw is made.", - "document": "a5e-ag", - "level": 0, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_resurrection", - "fields": { - "name": "Resurrection", - "desc": "Provided the target's soul is willing and able to return to its body, so long as it is not undead it returns to life with all of its hit points.\n\nThe spell cures any poisons and nonmagical diseases that affected the target at the time of death.\n\nIt does not remove any magical diseases, curses, or other magical effects; these must be removed prior to the spell being cast, otherwise they immediately take effect when the target returns to life. The spell closes all mortal wounds and restores any missing body parts.\n\nBeing raised from the dead takes a toll on the body, mind, and spirit. The target takes a -4 penalty to attack rolls, saving throws, and ability checks.\n\nAt the conclusion of each long rest, the penalty is reduced by 1 until the target completely recovers.\n\nResurrecting a creature that has been dead for one year or longer is exhausting. Until you finish a long rest, you can't cast spells again and you have disadvantage on attack rolls, ability checks, and saving throws.", - "document": "a5e-ag", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_reverse-gravity", - "fields": { - "name": "Reverse Gravity", - "desc": "Gravity reverses in the area. Any creatures or objects not anchored to the ground fall upward until they reach the top of the area. A creature may make a Dexterity saving throw to prevent the fall by grabbing hold of something. If a solid object (such as a ceiling) is encountered, the affected creatures and objects impact against it with the same force as a downward fall. When an object or creature reaches the top of the area, it remains suspended there until the spell ends.\n\nWhen the spell ends, all affected objects and creatures fall back down.", - "document": "a5e-ag", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_revivify", - "fields": { - "name": "Revivify", - "desc": "The target returns to life with 1 hit point. The spell does not restore any missing body parts and cannot return to life a creature that died of old age.", - "document": "a5e-ag", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_rope-trick", - "fields": { - "name": "Rope Trick", - "desc": "One end of the target rope rises into the air until it hangs perpendicular to the ground. At the upper end, a nearly imperceptible entrance opens to an extradimensional space that can fit up to 8 Medium or smaller creatures. The entrance can be reached by climbing the rope. Once inside, the rope can be pulled into the extradimensional space.\n\nNo spells or attacks can cross into or out of the extradimensional space. Creatures inside the extradimensional space can see out of a 3-foot-by- 5-foot window centered on its entrance. Creatures outside the space can spot the entrance with a Perception check against your spell save DC. If they can reach it, creatures can pass in and out of the space.\n\nWhen the spell ends, anything inside the extradimensional space falls to the ground.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_sacred-flame", - "fields": { - "name": "Sacred Flame", - "desc": "As long as you can see the target (even if it has cover) radiant holy flame envelops it, dealing 1d8 radiant damage.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_sanctuary", - "fields": { - "name": "Sanctuary", - "desc": "You ward a creature against intentional harm.\n\nAny creature that makes an attack against or casts a harmful spell against the target must first make a Wisdom saving throw. On a failed save, the attacking creature must choose a different creature to attack or it loses the attack or spell. This spell doesn't protect the target from area effects, such as an explosion.\n\nThis spell ends early when the target attacks or casts a spell that affects an enemy creature.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_scorching-ray", - "fields": { - "name": "Scorching Ray", - "desc": "Three rays of blazing orange fire shoot from your fingertips. Make a ranged spell attack for each ray.\n\nOn a hit, the target takes 2d6 fire damage.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "Create an additional ray for each slot level above 2nd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "2d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_scrying", - "fields": { - "name": "Scrying", - "desc": "You can see and hear a specific creature that you choose. The difficulty of the saving throw for this spell is modified by your knowledge of the target and whether you possess a physical item with a connection to the target.\n\nOn a failed save, you can see and hear the target through an invisible sensor that appears within 10 feet of it and moves with the target. Any creature who can see invisibility or rolls a critical success on its saving throw perceives the sensor as a fist-sized glowing orb hovering in the air. Creatures cannot see or hear you through the sensor.\n\nIf you choose to target a location, the sensor appears at that location and is immobile.", - "document": "a5e-ag", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_searing-equation", - "fields": { - "name": "Searing Equation", - "desc": "You briefly go into a magical trance and whisper an alien equation which you never fully remember once the spell is complete. Each creature in the area takes 3d4 psychic damage and is deafened for 1 round.\n\nCreatures who are unable to hear the equation, immune to psychic damage, or who have an Intelligence score lower than 4 are immune to this spell.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "Creatures are deafened for 1 additional round for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d4", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_secret-chest", - "fields": { - "name": "Secret Chest", - "desc": "You stash a chest and its contents on the Ethereal Plane. To do so, you must touch the chest and its Tiny replica. The chest can hold up to 12 cubic feet of nonliving matter. Food stored in the chest spoils after 1 day.\n\nWhile the chest is in the Ethereal Plane, you can recall it to you at any point by using an action to touch the Tiny replica. The chest reappears in an unoccupied space on the ground within 5 feet of you. You can use an action at any time to return the chest to the Ethereal Plane so long as you are touching both the chest and its Tiny replica.\n\nThis effect ends if you cast the spell again on a different chest, if the replica is destroyed, or if you use an action to end the spell. After 60 days without being recalled, there is a cumulative 5% chance per day that the spell effect will end. If for whatever reason the spell ends while the chest is still in the Ethereal Plane, the chest and all of its contents are lost.", - "document": "a5e-ag", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_see-invisibility", - "fields": { - "name": "See Invisibility", - "desc": "You can see invisible creatures and objects, and you can see into the Ethereal Plane. Ethereal creatures and objects appear translucent.", - "document": "a5e-ag", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_seed-bomb", - "fields": { - "name": "Seed Bomb", - "desc": "Up to four seeds appear in your hand and are infused with magic for the duration. As an action, a creature can throw one of these seeds at a point up to 60 feet away. Each creature within 5 feet of that point makes a Dexterity saving throw or takes 4d6 piercing damage. Depending on the material component used, a seed bomb also causes one of the following additional effects: Pinecone. Seed shrapnel explodes outward.\n\nA creature in the area of the exploding seed bomb makes a Constitution saving throw or it is blinded until the end of its next turn.\n\nSunflower. Seeds enlarge into a blanket of pointy needles. The area affected by the exploding seed bomb becomes difficult terrain for the next minute.\n\nTumbleweed. The weeds unravel to latch around creatures. A creature in the area of the exploding seed bomb makes a Dexterity saving throw or it becomes grappled until the end of its next turn.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "The damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "piercing" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_seeming", - "fields": { - "name": "Seeming", - "desc": "Until the spell ends or you use an action to dispel it, you can change the appearance of the targets. The spell disguises their clothing, weapons, and items as well as changes to their physical appearance. An unwilling target can make a Charisma saving throw to avoid being affected by the spell.\n\nYou can alter the appearance of the target as you see fit, including but not limited to: its heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, hair style and length, skin and eye coloration, sex and any other distinguishing features.\n\nYou cannot disguise the target as a creature of a different size category, and its limb structure remains the same; for example if it's bipedal, you can't use this spell to make it appear as a quadruped.\n\nThe disguise does not hold up to physical inspection. A creature that tries to grab an illusory hat, for example, finds its hand passes straight through the figment. To see through your disguise without such an inspection, a creature must use its action to make an Investigation check against your spell save DC.", - "document": "a5e-ag", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_sending", - "fields": { - "name": "Sending", - "desc": "You send a message of 25 words or less to the target. It recognizes you as the sender and can reply immediately in kind. The message travels across any distance and into other planes of existence. If the target is on a different plane of existence than you, there is a 5% chance it doesn't receive your message. A target with an Intelligence score of at least 1 understands your message as you intend it (whether you share a language or not).", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Unlimited", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_sequester", - "fields": { - "name": "Sequester", - "desc": "You magically hide away a willing creature or object. The target becomes invisible, and it cannot be traced or detected by divination or scrying sensors. If the target is a living creature, it falls into a state of suspended animation and stops aging.\n\nThe spell ends when the target takes damage or a condition you set occurs. The condition can be anything you choose, like a set amount of time or a specific event, but it must occur within or be visible within 1 mile of the target.", - "document": "a5e-ag", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_shapechange", - "fields": { - "name": "Shapechange", - "desc": "You assume the form of a creature of a Challenge Rating equal to or lower than your level. The creature cannot be an undead or a construct, and it must be a creature you have seen. You change into the average version of that creature, and do not gain any class levels or the Spellcasting trait.\n\nUntil the spell ends or you are dropped to 0 hit points, your game statistics (including your hit points) are replaced by the statistics of the chosen creature, though you keep your Charisma, Intelligence, and Wisdom scores. You also keep your skill and saving throw proficiencies as well as gaining the creature's. However, if you share a proficiency with the creature, and the creature's bonus is higher than yours, you use the creature's bonus. You keep all of your features, skills, and traits gained from your class, heritage, culture, background, or other sources, and can use them as long as the creature is physically capable of doing so. You do not keep any special senses, such as darkvision, unless the creature also has them. You can only speak if the creature is typically capable of speech. You cannot use legendary actions or lair actions. Your gear melds into the new form. Equipment that merges with your form has no effect until you leave the form.\n\nWhen you revert to your normal form, you return to the number of hit points you had before you transformed. If the spell's effect on you ends early from dropping to 0 hit points, any excess damage carries over to your normal form and knocks you unconscious if the damage reduces you to 0 hit points.\n\nUntil the spell ends, you can use an action to change into another form of your choice. The new form follows all the rules as the previous form, with one exception: if the new form has more hit points than your previous form, your hit points remain at their previous value.", - "document": "a5e-ag", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_shatter", - "fields": { - "name": "Shatter", - "desc": "An ear-splitting ringing sound emanates through the area. Creatures in the area take 3d8 thunder damage. A creature made of stone, metal, or other inorganic material has disadvantage on its saving throw.\n\nAny nonmagical items within the area that are not worn or carried also take damage.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above 2nd.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_shattering-barrage", - "fields": { - "name": "Shattering Barrage", - "desc": "You create three orbs of jagged broken glass and hurl them at targets within range. You can hurl them at one target or several.\n\nMake a ranged spell attack for each orb. On a hit, the target takes 2d4 slashing damage and the shards of broken glass remain suspended in midair, filling the area they occupy (or 5 feet of the space they occupy if the creature is Large-sized or larger) with shards of suspended broken glass. Whenever a creature enters an area of broken glass for the first time or starts its turn there, it must succeed on a Dexterity saving throw or take 2d4 slashing damage.\n\nThe shards of broken glass dissolve into harmless wisps of sand and blow away after 1 minute.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "You create one additional orb for each slot level above 2nd.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": true, - "damage_roll": "2d4", - "damage_types": [ - "slashing" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_shield", - "fields": { - "name": "Shield", - "desc": "You create a shimmering arcane barrier between yourself and an oncoming attack. Until the spell ends, you gain a +5 bonus to your AC (including against the triggering attack) and any magic missile targeting you is harmlessly deflected.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_shield-of-faith", - "fields": { - "name": "Shield of Faith", - "desc": "Until the spell ends, a barrier of divine energy envelops the target and increases its AC by +2.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "The bonus to AC increases by +1 for every three slot levels above 1st.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_shillelagh", - "fields": { - "name": "Shillelagh", - "desc": "You imbue the target with nature's magical energy. Until the spell ends, the target becomes a magical weapon (if it wasn't already), its damage becomes 1d8, and you can use your spellcasting ability instead of Strength for melee attack and damage rolls made using it. The spell ends if you cast it again or let go of the target.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_shocking-grasp", - "fields": { - "name": "Shocking Grasp", - "desc": "Electricity arcs from your hand to shock the target. Make a melee spell attack (with advantage if the target is wearing armor made of metal). On a hit, you deal 1d8 lightning damage, and the target can't take reactions until the start of its next turn as the electricity courses through its body.", - "document": "a5e-ag", - "level": 0, - "school": "evocation", - "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_silence", - "fields": { - "name": "Silence", - "desc": "Until the spell ends, a bubble of silence envelops the area, and no sound can travel in or out of it.\n\nWhile in the area a creature is deafened and immune to thunder damage. Casting a spell that requires a vocalized component is impossible while within the area.", - "document": "a5e-ag", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_silent-image", - "fields": { - "name": "Silent Image", - "desc": "You create an illusory image of a creature, object, or other visible effect within the area. The illusion is purely visual, it cannot produce sound or smell, and items and other creatures pass through it.\n\nAs an action, you can move the image to any point within range. The image's movement can be natural and lifelike (for example, a ball will roll and a bird will fly).\n\nA creature can spend an action to make an Investigation check against your spell save DC to determine if the image is an illusion. On a success, it is able to see through the image.", - "document": "a5e-ag", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_simulacrum", - "fields": { - "name": "Simulacrum", - "desc": "You sculpt an illusory duplicate of the target from ice and snow. The duplicate looks exactly like the target and uses all the statistics of the original, though it is formed without any gear, and has only half of the target's hit point maximum. The duplicate is a creature, can take actions, and be affected like any other creature. If the target is able to cast spells, the duplicate cannot cast spells of 7th-level or higher.\n\nThe duplicate is friendly to you and creatures you designate. It follows your spoken commands, and moves and acts on your turn in combat. It is a static creature and it does not learn, age, or grow, so it never increases in levels and cannot regain any spent spell slots.\n\nWhen the simulacrum is damaged you can repair it in an alchemy lab using components worth 100 gold per hit point it regains. The simulacrum remains until it is reduced to 0 hit points, at which point it crumbles into snow and melts away immediately.\n\nIf you cast this spell again, any existing simulacrum you have created with this spell is instantly destroyed.", - "document": "a5e-ag", - "level": 7, - "school": "illusion", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_sleep", - "fields": { - "name": "Sleep", - "desc": "You send your enemies into a magical slumber.\n\nStarting with the target with the lowest hit points (ignoring unconscious creatures), targets within the area fall unconscious in ascending order according to their hit points. Slumbering creatures stay asleep until the spell ends, they take damage, or someone uses an action to physically wake them.\n\nAs each target falls asleep, subtract its hit points from the total before moving on to the next target.\n\nA target's hit points must be equal to or less than the total remaining for the spell to have any effect.\n\nIf the spell puts no creatures to sleep, the creature in the area with the lowest hit point total is rattled until the beginning of its next turn.\n\nConstructs and undead are not affected by this spell.", - "document": "a5e-ag", - "level": 1, - "school": "enchantment", - "higher_level": "The spell affects an additional 2d10 hit points worth of creatures for each slot level above 1st.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_sleet-storm", - "fields": { - "name": "Sleet Storm", - "desc": "You conjure a storm of freezing rain and sleet in the area. The ground in the area is covered with slick ice that makes it difficult terrain, exposed flames in the area are doused, and the area is heavily obscured.\n\nWhen a creature enters the area for the first time on a turn or starts its turn there, it makes a Dexterity saving throw or falls prone.\n\nWhen a creature concentrating on a spell starts its turn in the area or first enters into the area on a turn, it makes a Constitution saving throw or loses concentration.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_slow", - "fields": { - "name": "Slow", - "desc": "You alter the flow of time around your targets and they become slowed. On a successful saving throw, a target is rattled until the end of its next turn.\n\nIn addition, if a slowed target casts a spell with a casting time of 1 action, roll a d20\\. On an 11 or higher, the target doesn't finish casting the spell until its next turn. The target must use its action on that turn to complete the spell or the spell fails.\n\nAt the end of each of its turns, a slowed target repeats the saving throw to end the spell's effect on it.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_soulwrought-fists", - "fields": { - "name": "Soulwrought Fists", - "desc": "The target's hands harden with inner power, turning dexterous fingers into magical iron cudgels.\n\nUntil the spell ends, the target drops anything it is holding and cannot use its hands to grasp objects or perform complex tasks. A target can still cast any spell that does not specifically require its hands.\n\nWhen making unarmed strikes, the target can use its spellcasting ability or Dexterity (its choice) instead of Strength for the attack and damage rolls of unarmed strikes. In addition, the target's unarmed strikes deal 1d8 bludgeoning damage and count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_spare-the-dying", - "fields": { - "name": "Spare the Dying", - "desc": "A jolt of healing energy flows through the target and it becomes stable.", - "document": "a5e-ag", - "level": 0, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_speak-with-animals", - "fields": { - "name": "Speak with Animals", - "desc": "You call upon the secret lore of beasts and gain the ability to speak with them. Beasts have a different perspective of the world, and their knowledge and awareness is filtered through that perspective. At a minimum, beasts can tell you about nearby locations and monsters, including things they have recently perceived. At the Narrator's discretion, you might be able to persuade a beast to perform a small favor for you.", - "document": "a5e-ag", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_speak-with-dead", - "fields": { - "name": "Speak with Dead", - "desc": "You call forth the target's memories, animating it enough to answer 5 questions. The corpse's knowledge is limited: it knows only what it knew in life and cannot learn new information or speak about anything that has occurred since its death. It speaks only in the languages it knew, and is under no compulsion to offer a truthful answer if it has reason not to. Answers might be brief, cryptic, or repetitive.\n\nThis spell does not return a departed soul, nor does it have any effect on an undead corpse, or one without a mouth.", - "document": "a5e-ag", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_speak-with-plants", - "fields": { - "name": "Speak with Plants", - "desc": "Your voice takes on a magical timbre, awakening the targets to limited sentience. Until the spell ends, the targets can communicate with you and follow simple commands, telling you about recent events including creatures that have passed, weather, and nearby locations.\n\nThe targets have a limited mobility: they can move their branches, tendrils, and stalks freely. This allows them to turn ordinary terrain into difficult terrain, or make difficult terrain caused by vegetation into ordinary terrain for the duration as vines and branches move at your request. This spell can also release a creature restrained by an entangle spell.\n\nAt the Narrator's discretion the targets may be able to perform other tasks, though each must remain rooted in place. If a plant creature is in the area, you can communicate with it but it is not compelled to follow your requests.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_spider-climb", - "fields": { - "name": "Spider Climb", - "desc": "The target gains the ability to walk on walls and upside down on ceilings, as well as a climbing speed equal to its base Speed.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "You can affect one additional target for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_spike-growth", - "fields": { - "name": "Spike Growth", - "desc": "You cause sharp spikes and thorns to sprout in the area, making it difficult terrain. When a creature enters or moves within the area, it takes 2d4 piercing damage for every 5 feet it travels.\n\nYour magic causes the ground to look natural. A creature that can't see the area when the spell is cast can spot the hazardous terrain just before entering it by making a Perception check against your spell save DC.", - "document": "a5e-ag", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "piercing" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_spirit-guardians", - "fields": { - "name": "Spirit Guardians", - "desc": "You call down spirits of divine fury, filling the area with flitting spectral forms. You choose the form taken by the spirits.\n\nCreatures of your choice halve their Speed while in the area. When a creature enters the area for the first time on a turn or starts its turn there, it takes 3d6 radiant or necrotic damage (your choice).", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "necrotic", - "radiant" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_spiritual-weapon", - "fields": { - "name": "Spiritual Weapon", - "desc": "You create a floating, incandescent weapon with an appearance of your choosing and use it to attack your enemies. On the round you cast it, you can make a melee spell attack against a creature within 5 feet of the weapon that deals force damage equal to 1d8 + your spellcasting ability modifier.\n\nAs a bonus action on subsequent turns until the spell ends, you can move the weapon up to 20 feet and make another attack against a creature within 5 feet of it.", - "document": "a5e-ag", - "level": 2, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for every two slot levels above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_sporesight", - "fields": { - "name": "Sporesight", - "desc": "You throw a mushroom at a point within range and detonate it, creating a cloud of spores that fills the area. The cloud of spores travels around corners, and the area is considered lightly obscured for everyone except you. Creatures and objects within the area are covered in spores.\n\nUntil the spell ends, you know the exact location of all affected objects and creatures. Any attack roll you make against an affected creature or object has advantage, and the affected creatures and objects can't benefit from being invisible.", - "document": "a5e-ag", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_stinking-cloud", - "fields": { - "name": "Stinking Cloud", - "desc": "You create a roiling, noxious cloud that hinders creatures and leaves them retching. The cloud spreads around corners and lingers in the air until the spell ends.\n\nThe area is heavily obscured. A creature in the area at the start of its turn makes a Constitution saving throw or uses its action to retch and reel.\n\nCreatures that don't need to breathe or are immune to poison automatically succeed on the save.\n\nA moderate wind (10 miles per hour) disperses the cloud after 4 rounds, a strong wind (20 miles per hour) after 1 round.", - "document": "a5e-ag", - "level": 3, - "school": "conjuration", - "higher_level": "The spell's area increases by 5 feet for every 2 slot levels above 3rd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_stone-shape", - "fields": { - "name": "Stone Shape", - "desc": "You reshape the target into any form you choose.\n\nFor example, you could shape a large rock into a weapon, statue, or chest, make a small passage through a wall (as long as it isn't more than 5 feet thick), seal a stone door shut, or create a hiding place. The target can have up to two hinges and a latch, but finer mechanical detail isn't possible.", - "document": "a5e-ag", - "level": 4, - "school": "transmutation", - "higher_level": "You may select one additional target for every slot level above 4th.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_stoneskin", - "fields": { - "name": "Stoneskin", - "desc": "Until the spell ends, the target's flesh becomes as hard as stone and it gains resistance to nonmagical bludgeoning, piercing, and slashing damage.", - "document": "a5e-ag", - "level": 4, - "school": "abjuration", - "higher_level": "When using a 7th-level spell slot, the target gains resistance to magical bludgeoning, piercing, and slashing damage.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_storm-kick", - "fields": { - "name": "Storm Kick", - "desc": "You must be able to move in order to cast this spell.\n\nYou leap into the air and flash across the battlefield, arriving feet-first with the force of a thunderbolt. As part of casting this spell, make a ranged spell attack against a creature you can see within range. If you hit, you instantly flash to an open space of your choosing adjacent to the target, dealing bludgeoning damage equal to 1d6 + your spellcasting modifier plus 3d8 thunder damage and 6d8 lightning damage. If your unarmed strike normally uses a larger die, use that instead of a d6\\. If you miss, you may still choose to teleport next to the target.", - "document": "a5e-ag", - "level": 5, - "school": "transmutation", - "higher_level": "When using a 6th-level spell slot or higher, if you are able to make more than one attack when you take the Attack action, you may make an additional melee weapon attack against the target. When using a 7th-level spell slot, you may choose an additional target within 30 feet of the target for each spell slot level above 6th, forcing each additional target to make a Dexterity saving throw or take 6d8 lightning damage.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_storm-of-vengeance", - "fields": { - "name": "Storm of Vengeance", - "desc": "You conjure a churning storm cloud that spreads to cover the target area. As it forms, lightning and thunder mix with howling winds, and each creature beneath the cloud makes a Constitution saving throw or takes 2d6 thunder damage and becomes deafened for 5 minutes.\n\nUntil the spell ends, at the start of your turn the cloud produces additional effects: Round 2\\. Acidic rain falls throughout the area dealing 1d6 acid damage to each creature and object beneath the cloud.\n\nRound 3\\. Lightning bolts strike up to 6 creatures or objects of your choosing that are beneath the cloud (no more than one bolt per creature or object). A creature struck by this lightning makes a Dexterity saving throw, taking 10d6 lightning damage on a failed save, or half damage on a successful save.\n\nRound 4\\. Hailstones fall throughout the area dealing 2d6 bludgeoning damage to each creature beneath the cloud.\n\nRound 5�10\\. Gusts and freezing rain turn the area beneath the cloud into difficult terrain that is heavily obscured. Ranged weapon attacks are impossible while a creature or its target are beneath the cloud. When a creature concentrating on a spell starts its turn beneath the cloud or enters into the area, it makes a Constitution saving throw or loses concentration. Gusts of strong winds between 20�50 miles per hour automatically disperse fog, mists, and similar effects (whether mundane or magical). Finally, each creature beneath the cloud takes 1d6 cold damage.", - "document": "a5e-ag", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "Sight", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "thunder" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_suggestion", - "fields": { - "name": "Suggestion", - "desc": "Creatures that cannot be charmed are immune to this spell. Suggest an activity phrased in a sentence or two. The target is magically influenced to follow that course of activity. The suggestion must be worded to sound reasonable. Asking the target to perform an action that is obviously harmful to it ends the spell.\n\nThe target carries out the activity suggested by you as well as it can. The activity can last for the duration of the spell, and if it requires less time the spell ends after the target has carried out the activity.\n\nYou may specify trigger conditions that cause the target to perform a specific activity while the spell lasts. For example, you may suggest that the target takes off its clothes and dives the next time it sees a body of water. If the target does not see a body of water before the spell ends, the specific activity isn't performed.\n\nAny damage done to the target by you or an ally ends the spell for that creature.", - "document": "a5e-ag", - "level": 2, - "school": "enchantment", - "higher_level": "When using a 4th-level spell slot, the duration is concentration, up to 24 hours. When using a 5th-level spell slot, the duration is 7 days. When using a 7th-level spell slot, the duration is 1 year. When using a 9th-level spell slot, the suggestion lasts until it is dispelled.\n\nAny use of a 5th-level or higher spell slot grants a duration that doesn't require concentration.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_sunbeam", - "fields": { - "name": "Sunbeam", - "desc": "Oozes and undead have disadvantage on saving throws made to resist this spell. A beam of radiant sunlight streaks from your hand. Each creature in the area takes 6d8 radiant damage and is blinded for 1 round.\n\nUntil the spell ends, you can use an action on subsequent turns to create a new beam of sunlight and a mote of brilliant radiance lingers on your hand, shedding bright light in a 30-foot radius and dim light an additional 30 feet. This light is sunlight.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "When using an 8th-level spell slot the damage increases by 1d8.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "radiant" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_sunburst", - "fields": { - "name": "Sunburst", - "desc": "Oozes and undead have disadvantage on saving throws made to resist this spell. You create a burst of radiant sunlight that fills the area. Each creature in the area takes 12d6 radiant damage and is blinded for 1 minute. A creature blinded by this spell repeats its saving throw at the end of each of its turns, ending the blindness on a successful save.\n\nThis spell dispels any magical darkness in its area.", - "document": "a5e-ag", - "level": 8, - "school": "evocation", - "higher_level": "When using a 9th-level spell slot the damage increases by 2d6.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "12d6", - "damage_types": [ - "radiant" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_symbol", - "fields": { - "name": "Symbol", - "desc": "You inscribe a potent glyph on the target, setting a magical trap for your enemies. If the glyph is moved more than 10 feet from its original position, or if it comes within 20 feet of another glyph that you have cast, the spell ends. Finding the Tiny glyph requires an Investigation check against your spell save DC.\n\nDescribe the actions a creature must perform to trigger the spell, such as approaching within a certain distance, opening or touching the object the glyph is inscribed on, or seeing or reading the glyph. The creature must have a clear path to the glyph to trigger it. You can specify certain creatures which don't trigger the spell, such as those with a certain appearance or those who speak a certain phrase. Once the glyph is triggered, the spell ends.\n\nWhen triggered, the glyph sheds dim light in a 60-foot radius for 10 minutes, after which the spell ends. Each creature within the sphere's area is targeted by the glyph, as are creatures that enter the sphere for the first time on a turn.\n\nWhen you cast the spell, choose one of the following effects.\n\nDeath: Creatures in the area make a Constitution saving throw, taking 10d10 necrotic damage on a failed save, or half as much on a successful save.\n\nDiscord: Creatures in the area make a Constitution saving throw or bicker and argue with other creatures for 1 minute. While bickering, a creature cannot meaningfully communicate and it has disadvantage on attack rolls and ability checks.\n\nConfused: Creatures in the area make an Intelligence saving throw or become confused for 1 minute.\n\nFear: Creatures in the area make a Wisdom saving throw or are frightened for 1 minute.\n\nWhile frightened, a creature drops whatever it is holding and must move at least 30 feet away from the glyph on each of its turns.\n\nHopelessness: Creatures in the area make a Charisma saving throw or become overwhelmed with despair for 1 minute. While despairing, a creature can't attack or target any creature with harmful features, spells, traits, or other magical effects.\n\nPain: Creatures in the area make a Constitution saving throw or become incapacitated for 1 minute.\n\nSleep: Creatures in the area make a Wisdom saving throw or fall unconscious for 10 minutes.\n\nA sleeping creature awakens if it takes damage or an action is used to wake it.\n\nStunning: Creatures in the area make a Wisdom saving throw or become stunned for 1 minute.", - "document": "a5e-ag", - "level": 7, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_tearful-sonnet", - "fields": { - "name": "Tearful Sonnet", - "desc": "You quietly play a tragedy, a song that fills those around you with magical sorrow. Each creature in the area makes a Charisma saving throw at the start of its turn. On a failed save, a creature takes 2d4 psychic damage, it spends its action that turn crying, and it can't take reactions until the start of its next turn. Creatures that are immune to the charmed condition automatically succeed on this saving throw.\n\nIf a creature other than you hears the entire song (remaining within the spell's area from the casting through the duration) it is so wracked with sadness that it is stunned for 1d4 rounds.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", - "document": "a5e-ag", - "level": 4, - "school": "enchantment", - "higher_level": "The damage increases by 2d4 for each slot level above 4th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "psychic" - ], - "duration": "3 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_telekinesis", - "fields": { - "name": "Telekinesis", - "desc": "You move the target with the power of your mind.\n\nUntil the spell ends you can use an action on subsequent turns to pick a new target or continue to affect the same target. Depending on whether you target a creature or an object, the spell has the following effects:\n\n**Creature.** The target makes a Strength check against your spell save DC or it is moved up to 30 feet in any direction and restrained (even in mid-air) until the end of your next turn. You cannot move a target beyond the range of the spell.\n\n**Object.** You move the target 30 feet in any direction. If the object is worn or carried by a creature, that creature can make a Strength check against your spell save DC. If the target fails, you pull the object away from that creature and can move it up to 30 feet in any direction, but not beyond the range of the spell.\n\nYou can use telekinesis to finely manipulate objects as though you were using them yourself—you can open doors and unscrew lids, dip a quill in ink and make it write, and so on.", - "document": "a5e-ag", - "level": 5, - "school": "transmutation", - "higher_level": "When using an 8th-level spell slot, this spell does not require your concentration.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_telepathic-bond", - "fields": { - "name": "Telepathic Bond", - "desc": "Until the spell ends, a telepathic link connects the minds of the targets. So long as they remain on the same plane of existence, targets may communicate telepathically with each other regardless of language and across any distance.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "The spell's duration increases by 1d4 hours for each slot level above 5th.", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 8, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_teleport", - "fields": { - "name": "Teleport", - "desc": "You teleport the targets instantly across vast distances. When you cast this spell, choose a destination. You must know the location you're teleporting to, and it must be on the same plane of existence.\n\nTeleportation is difficult magic and you may arrive off-target or somewhere else entirely depending on how familiar you are with the location you're teleporting to. When you teleport, the Narrator rolls 1d100 and consults Table: Teleport Familiarity.\n\nFamiliarity is determined as follows: Permanent Circle: A permanent teleportation circle whose sigil sequence you know (see teleportation circle).\n\nAssociated Object: You have an object taken from the target location within the last 6 months, such as a piece of wood from the pew in a grand temple or a pinch of grave dust from a vampire's hidden redoubt.\n\nVery Familiar: A place you have frequented, carefully studied, or can see at the time you cast the spell.\n\nSeen Casually: A place you have seen more than once but don't know well. This could be a castle you've passed by but never visited, or the farms you look down on from your tower of ivory.\n\nViewed Once: A place you have seen once, either in person or via magic.\n\nDescription: A place you only know from someone else's description (whether spoken, written, or even marked on a map).\n\nFalse Destination: A place that doesn't actually exist. This typically happens when someone deceives you, either intentionally (like a wizard creating an illusion to hide their actual tower) or unintentionally (such as when the location you attempt to teleport to no longer exists).\n\nYour arrival is determined as follows: On Target: You and your targets arrive exactly where you mean to.\n\nOff Target: You and your targets arrive some distance away from the target in a random direction. The further you travel, the further away you are likely to arrive. You arrive off target by a number of miles equal to 1d10 × 1d10 percent of the total distance of your trip.\n\nIf you tried to travel 1, 000 miles and roll a 2 and 4 on the d10s, you land 6 percent off target and arrive 60 miles away from your intended destination in a random direction. Roll 1d8 to randomly determine the direction: 1—north, 2 —northeast, 3 —east, 4 —southeast, 5—south, 6 —southwest, 7—west, 8—northwest.\n\nSimilar Location: You and your targets arrive in a different location that somehow resembles the target area. If you tried to teleport to your favorite inn, you might end up at a different inn, or in a room with much of the same decor.\n\nTypically you appear at the closest similar location, but that is not always the case.\n\nMishap: The spell's magic goes awry, and each teleporting creature or object takes 3d10 force damage. The Narrator rerolls on the table to determine where you arrive. When multiple mishaps occur targets take damage each time.", - "document": "a5e-ag", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "Special", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d10", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_teleportation-circle", - "fields": { - "name": "Teleportation Circle", - "desc": "You draw a 10-foot diameter circle on the ground and open within it a shimmering portal to a permanent teleportation circle elsewhere in the world. The portal remains open until the end of your next turn. Any creature that enters the portal instantly travels to the destination circle.\n\nPermanent teleportation circles are commonly found within major temples, guilds, and other important locations. Each circle has a unique sequence of magical runes inscribed in a certain pattern called a sigil sequence.\n\nWhen you cast teleportation circle, you inscribe runes that match the sigil sequence of a teleportation circle you know. When you first gain the ability to cast this spell, you learn the sigil sequences for 2 destinations on the Material Plane, determined by the Narrator. You can learn a new sigil sequence with 1 minute of observation and study.\n\nCasting the spell in the same location every day for a year creates a permanent teleportation circle with its own unique sigil sequence. You do not need to teleport when casting the spell to make a permanent destination.", - "document": "a5e-ag", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_thaumaturgy", - "fields": { - "name": "Thaumaturgy", - "desc": "You draw upon divine power and create a minor divine effect. When you cast the spell, choose one of the following:\n\n* Your voice booms up to three times louder than normal\n* You cause flames to flicker, brighten, dim, or change color\n* You send harmless tremors throughout the ground.\n* You create an instantaneous sound, like ethereal chimes, sinister laughter, or a dragon's roar at a point of your choosing within range.\n* You instantaneously cause an unlocked door or window to fly open or slam shut.\n* You alter the appearance of your eyes.\n\nLingering effects last until the spell ends. If you cast this spell multiple times, you can have up to 3 of the lingering effects active at a time, and can dismiss an effect at any time on your turn.", - "document": "a5e-ag", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_thunderwave", - "fields": { - "name": "Thunderwave", - "desc": "You create a wave of thunderous force, damaging creatures and pushing them back. Creatures in the area take 2d8 thunder damage and are pushed 10 feet away from you.\n\nUnsecured objects completely within the area are also pushed 10 feet away from you. The thunderous boom of the spell is audible out to 300 feet.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_time-stop", - "fields": { - "name": "Time Stop", - "desc": "You stop time, granting yourself extra time to take actions. When you cast the spell, the world is frozen in place while you take 1d4 + 1 turns in a row, during which you can use actions and move as normal.\n\nThe spell ends if you move more than 1, 000 feet from where you cast the spell, or if you affect either a creature other than yourself or an object worn or carried by someone else.", - "document": "a5e-ag", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_tiny-hut", - "fields": { - "name": "Tiny Hut", - "desc": "You create an immobile dome of protective force that provides shelter and can be used as a safe haven (Chapter 4: Exploration in Trials & Treasures). The dome is of a color of your choosing, can't be seen through from the outside, is transparent on the inside, and can fit up to 10 Medium creatures (including you) within.\n\nThe dome prevents inclement weather and environmental effects from passing through it, though creatures and objects may pass through freely. Spells and other magical effects can't cross the dome in either direction, and the dome provides a comfortable dry interior no matter the conditions outside of it. You can command the interior to become dimly lit or dark at any time on your turn.\n\nThe spell fails if a Large creature or more than 10 creatures are inside the dome. The spell ends when you leave the dome.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_tongues", - "fields": { - "name": "Tongues", - "desc": "The target understands any words it hears, and when the target speaks its words are understood by creatures that know at least one language.", - "document": "a5e-ag", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_transport-via-plants", - "fields": { - "name": "Transport via Plants", - "desc": "You create a magical pathway between the target and a second plant that you've seen or touched before that is on the same plane of existence. Any creature can step into the target and exit from the second plant by using 5 feet of movement.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_travelers-ward", - "fields": { - "name": "Traveler's Ward", - "desc": "Until the spell ends, creatures have disadvantage on Sleight of Hand checks made against the target.\n\nIf a creature fails a Sleight of Hand check to steal from the target, the ward creates a loud noise and a flash of bright light easily heard and seen by creatures within 100 feet.", - "document": "a5e-ag", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_tree-stride", - "fields": { - "name": "Tree Stride", - "desc": "Until the spell ends, once per round you can use 5 feet of movement to enter a living tree and move to inside another living tree of the same kind within 500 feet so long as you end your turn outside of a tree. Both trees must be at least your size. You instantly know the location of all other trees of the same kind within 500 feet. You may step back outside of the original tree or spend 5 more feet of movement to appear within a spot of your choice within 5 feet of the destination tree. If you have no movement left, you appear within 5 feet of the tree you entered.", - "document": "a5e-ag", - "level": 5, - "school": "conjuration", - "higher_level": "Target one additional creature within reach for each slot level above 5th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_true-polymorph", - "fields": { - "name": "True Polymorph", - "desc": "The target is transformed until it drops to 0 hit points or the spell ends. You can make the transformation permanent by concentrating on the spell for the full duration.\n\nCreature into Creature: The target's body is transformed into a creature with a Challenge Rating equal to or less than its own. If the target doesn't have a Challenge Rating, use its level.\n\nThe target's game statistics (including its hit points and mental ability scores) are replaced by the statistics of the chosen creature. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effects on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.\n\nObject into Creature: The target is transformed into any kind of creature, as long as the creature's size isn't larger than the object's size and it has a Challenge Rating of 9 or less. The creature is friendly to you and your allies and acts on each of your turns. You decide what action it takes and how it moves. The Narrator has the creature's statistics and resolves all of its actions and movement.\n\nIf the spell becomes permanent, you no longer control the creature. It might remain friendly to you, depending on how you have treated it.\n\nCreature into Object: You turn the target and whatever it is wearing and carrying into an object. The target's game statistics are replaced by the statistics of the chosen object. The target has no memory of time spent in this form, and when the spell ends it returns to its normal form.", - "document": "a5e-ag", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_true-resurrection", - "fields": { - "name": "True Resurrection", - "desc": "Provided the target's soul is willing and able to return to its body, it returns to life with all of its hit points.\n\nThe spell cures any poisons and diseases that affected the target at the time of death, closes all mortal wounds, and restores any missing body parts.\n\nIf no body (or body parts) exist, you can still cast the spell but must speak the creature's name. The creature then appears in an unoccupied space you choose within 10 feet of you. This option requires diamonds worth at least 50, 000 gold (consumed by the spell).", - "document": "a5e-ag", - "level": 9, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_true-seeing", - "fields": { - "name": "True Seeing", - "desc": "Until the spell ends, the target gains truesight to a range of 120 feet. The target also notices secret doors hidden by magic.", - "document": "a5e-ag", - "level": 6, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_true-strike", - "fields": { - "name": "True Strike", - "desc": "You gain an innate understanding of the defenses of a creature or object in range. You have advantage on your first attack roll made against the target before the end of your next turn.", - "document": "a5e-ag", - "level": 0, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_unholy-star", - "fields": { - "name": "Unholy Star", - "desc": "A meteor ripped from diabolical skies streaks through the air and explodes at a point you can see 100 feet directly above you. The spell fails if you can't see the point where the meteor explodes.\n\nEach creature within range that can see the meteor (other than you) makes a Dexterity saving throw or is blinded until the end of your next turn. Fiery chunks of the meteor then plummet to the ground at different areas you choose within range. Each creature in an area makes a Dexterity saving throw, taking 6d6 fire damage and 6d6 necrotic damage on a failed save, or half as much damage on a successful one. A creature in more than one area is affected only once.\n\nThe spell damages objects in the area and ignites flammable objects that aren't being worn or carried.", - "document": "a5e-ag", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_unseen-servant", - "fields": { - "name": "Unseen Servant", - "desc": "You create an invisible, mindless, shapeless force to perform simple tasks. The servant appears in an unoccupied space on the ground that you can see and endures until it takes damage, moves more than 60 feet away from you, or the spell ends. It has AC 10, a Strength of 2, and it can't attack.\n\nYou can use a bonus action to mentally command it to move up to 15 feet and interact with an object.\n\nThe servant can do anything a humanoid servant can do —fetching things, cleaning, mending, folding clothes, lighting fires, serving food, pouring wine, and so on. Once given a command the servant performs the task to the best of its ability until the task is completed, then waits for its next command.", - "document": "a5e-ag", - "level": 1, - "school": "conjuration", - "higher_level": "You create an additional servant for each slot level above 1st.", - "target_type": "point", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_vampiric-touch", - "fields": { - "name": "Vampiric Touch", - "desc": "Shadows roil about your hand and heal you by siphoning away the life force from others. On the round you cast it, and as an action on subsequent turns until the spell ends, you can make a melee spell attack against a creature within your reach.\n\nOn a hit, you deal 3d6 necrotic damage and regain hit points equal to half the amount of necrotic damage dealt.", - "document": "a5e-ag", - "level": 3, - "school": "necromancy", - "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_venomous-succor", - "fields": { - "name": "Venomous Succor", - "desc": "You cause a searing poison to burn quickly through the target's wounds, dealing 1d6 poison damage. The target regains 2d4 hit points at the start of each of its turns for the next 1d4+1 rounds.", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "For each slot level above 2nd, the initial damage increases by 1d6 and target regains an additional 1d4 hit points.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_vicious-mockery", - "fields": { - "name": "Vicious Mockery", - "desc": "You verbally insult or mock the target so viciously its mind is seared. As long as the target hears you (understanding your words is not required) it takes 1d6 psychic damage and has disadvantage on the first attack roll it makes before the end of its next turn.", - "document": "a5e-ag", - "level": 0, - "school": "enchantment", - "higher_level": "The spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_wall-of-fire", - "fields": { - "name": "Wall of Fire", - "desc": "You create a wall of fire on a solid surface. The wall can be up to 60 feet long (it does not have to be a straight line; sections of the wall can angle as long as they are contiguous), 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall blocks sight.\n\nWhen the wall appears, each creature within its area makes a Dexterity saving throw, taking 5d8 fire damage on a failed save, or half as much damage on a successful save.\n\nOne side of the wall (chosen when the spell is cast) deals 5d8 fire damage to each creature that ends its turn within 10 feet of that side or inside the wall. A creature takes the same damage when it enters the wall itself for the first time on a turn or ends its turn there. The other side of the wall deals no damage.", - "document": "a5e-ag", - "level": 4, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_wall-of-flesh", - "fields": { - "name": "Wall of Flesh", - "desc": "A squirming wall of bodies, groping arms and tentacles, and moaning, biting mouths heaves itself up from the ground at a point you choose. The wall is 6 inches thick and is made up of a contiguous group of ten 10-foot square sections. The wall can have any shape you desire.\n\nIf the wall enters a creature's space when it appears, the creature makes a Dexterity saving throw, and on a success it moves up to its Speed to escape. On a failed save, it is swallowed by the wall (as below).\n\nWhen a creature enters the area for the first time on a turn or starts its turn within 10 feet of the wall, tentacles and arms reach out to grab it. The creature makes a Dexterity saving throw or takes 5d8 bludgeoning damage and becomes grappled. If the creature was already grappled by the wall at the start of its turn and fails its saving throw, a mouth opens in the wall and swallows the creature.\n\nA creature swallowed by the wall takes 5d8 ongoing bludgeoning damage and is blinded, deafened, and restrained.\n\nA creature grappled or restrained by the wall can use its action to make a Strength saving throw against your spell save DC. On a success, a grappled creature frees itself and a restrained creature claws its way out of the wall's space, exiting to an empty space next to the wall and still grappled.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above the 6th.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_wall-of-force", - "fields": { - "name": "Wall of Force", - "desc": "You create an invisible wall of force at a point you choose. The wall is a horizontal or vertical barrier, or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere, either with a radius of up to 10 feet. You may also choose to create a flat surface made up of a contiguous group of ten 10-foot square sections. The wall is 1/4 inch thick.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of the wall (your choice), but when a creature would be surrounded on all sides by the wall (or the wall and another solid surface), it can use its reaction to make a Dexterity saving throw to move up to its Speed to escape. Any creature without a special sense like blindsight has disadvantage on this saving throw.\n\nNothing can physically pass through the wall.\n\nIt can be destroyed with dispel magic cast using a spell slot of at least 5th-level or by being dealt at least 25 force damage at once. It is otherwise immune to damage. The wall also extends into the Ethereal Plane, blocking ethereal travel through it.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_wall-of-ice", - "fields": { - "name": "Wall of Ice", - "desc": "You create a wall of ice on a solid surface. You can form it into a hemispherical dome or a sphere, either with a radius of up to 10 feet. You may also choose to create a flat surface made up of a contiguous group of ten 10-foot square sections. The wall is 1 foot thick.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of it (your choice).\n\nIn addition, the creature makes a Dexterity saving throw, taking 10d6 cold damage on a failed save, or half as much damage on a success.\n\nThe wall is an object with vulnerability to fire damage, with AC 12 and 30 hit points per 10-foot section. Reducing a 10-foot section of wall to 0 hit points destroys it and leaves behind a sheet of frigid air in the space the section occupied. A creature moving through the sheet of frigid air for the first time on a turn makes a Constitution saving throw, taking 5d6 cold damage on a failed save, or half as much damage on a successful one.", - "document": "a5e-ag", - "level": 6, - "school": "evocation", - "higher_level": "The damage the wall deals when it appears increases by 2d6 and the damage from passing through the sheet of frigid air increases by 1d6 for each slot level above 6th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_wall-of-stone", - "fields": { - "name": "Wall of Stone", - "desc": "A nonmagical wall of solid stone appears at a point you choose. The wall is 6 inches thick and is made up of a contiguous group of ten 10-foot square sections. Alternatively, you can create 10-foot-by-20- foot sections that are only 3 inches thick.\n\nThe wall can have any shape you desire, though it can't occupy the same space as a creature or object.\n\nThe wall doesn't need to be vertical or rest on any firm foundation but must merge with and be solidly supported by existing stone. Thus, you can use this spell to bridge a chasm or create a ramp.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of the wall (your choice), but when a creature would be surrounded on all sides by the wall (or the wall and another solid surface), it can use its reaction to make a Dexterity saving throw to move up to its Speed to escape.\n\nIf you create a span greater than 20 feet in length, you must halve the size of each panel to create supports. You can crudely shape the wall to create crenelations, battlements, and so on.\n\nThe wall is an object made of stone. Each panel has AC 15 and 30 hit points per inch of thickness.\n\nReducing a panel to 0 hit points destroys it and at the Narrator's discretion might cause connected panels to collapse.\n\nYou can make the wall permanent by concentrating on the spell for the full duration.", - "document": "a5e-ag", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_wall-of-thorns", - "fields": { - "name": "Wall of Thorns", - "desc": "You create a wall of tough, pliable, tangled brush bristling with needle-sharp thorns on a solid surface. You can choose to make the wall up to 60 feet long, 10 feet high, and 5 feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and 5 feet thick. The wall blocks line of sight.\n\nWhen the wall appears, each creature within its area makes a Dexterity saving throw, taking 7d8 piercing damage on a failed save, or half as much damage on a successful save.\n\nA creature can move through the wall, albeit slowly and painfully. For every 1 foot a creature moves through the wall, it must spend 4 feet of movement. The first time a creature enters the wall on a turn or ends its turn there, it makes a Dexterity saving throw, taking 7d8 slashing damage on a failed save, or half as much damage on a successful save.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "Damage dealt by the wall increases by 1d8 for each slot level above 6th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_warding-bond", - "fields": { - "name": "Warding Bond", - "desc": "Until the spell ends, the target is warded by a mystic connection between it and you. While the target is within 60 feet it gains a +1 bonus to AC and saving throws, and it has resistance to all damage. Each time it takes damage, you take an equal amount of damage.\n\nThe spell ends if you are reduced to 0 hit points or if you and the target become separated by more than 60 feet. It also ends if you use an action to dismiss it, or if the spell is cast again on either you or the target.", - "document": "a5e-ag", - "level": 2, - "school": "abjuration", - "higher_level": "The duration increases by 1 hour for each slot level above 2nd.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_warriors-instincts", - "fields": { - "name": "Warrior's Instincts", - "desc": "Your senses sharpen, allowing you to anticipate incoming attacks and find weaknesses in the defenses of your foes. Until the spell ends, creatures cannot gain bonuses (like those granted by bless or expertise dice) or advantage on attack rolls against you. In addition, none of your movement provokes opportunity attacks, and you ignore nonmagical difficult terrain. Finally, you can end the spell early to treat a single weapon attack roll as though you had rolled a 15 on the d20.", - "document": "a5e-ag", - "level": 5, - "school": "divination", - "higher_level": "For each slot level above 5th, you can also apply this spell's benefits to an additional creature you can see within 30 feet.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_water-breathing", - "fields": { - "name": "Water Breathing", - "desc": "Until the spell ends, the targets are able to breathe underwater (and still able to respirate normally).", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 10, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_water-walk", - "fields": { - "name": "Water Walk", - "desc": "Until the spell ends, the targets are able to move across any liquid surface (such as water, acid, mud, snow, quicksand, or lava) as if it was solid ground.\n\nCreatures can still take damage from surfaces that would deliver damage from corrosion or extreme temperatures, but they do not sink while moving across it.\n\nA target submerged in a liquid is moved to the surface of the liquid at a rate of 60 feet per round.", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "The duration increases by 1 hour for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 10, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_web", - "fields": { - "name": "Web", - "desc": "Thick, sticky webs fill the area, lightly obscuring it and making it difficult terrain.\n\nYou must anchor the webs between two solid masses (such as walls or trees) or layer them across a flat surface. If you don't the conjured webs collapse and at the start of your next turn the spell ends.\n\nWebs layered over a flat surface are 5 feet deep.\n\nEach creature that starts its turn in the webs or that enters them during its turn makes a Dexterity saving throw or it is restrained as long as it remains in the webs (or until the creature breaks free).\n\nA creature restrained by the webs can escape by using its action to make a Strength check against your spell save DC.\n\nAny 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", - "document": "a5e-ag", - "level": 2, - "school": "conjuration", - "higher_level": "When using a 4th-level spell slot, you also summon a giant wolf spider in an unoccupied space within the web's area. When using a 6th-level spell slot, you summon up to two spiders.\n\nWhen using a 7th-level spell slot, you summon up to three spiders. The spiders are friendly to you and your companions. Roll initiative for the spiders as a group, which have their own turns. The spiders obey your verbal commands, but they disappear when the spell ends or when they leave the web's area.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_weird", - "fields": { - "name": "Weird", - "desc": "You create illusions which manifest the deepest fears and worst nightmares in the minds of all creatures in the spell's area. Each creature in the area makes a Wisdom saving throw or becomes frightened until the spell ends. At the end of each of a frightened creature's turns, it makes a Wisdom saving throw or it takes 4d10 psychic damage. On a successful save, the spell ends for that creature.", - "document": "a5e-ag", - "level": 9, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "4d10", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_whirlwind-kick", - "fields": { - "name": "Whirlwind Kick", - "desc": "You must be able to move in order to cast this spell. You leap into the air and spin like a tornado, striking foes all around you with supernatural force as you fly up to 60 feet in a straight line. Your movement (which does not provoke attacks of opportunity) must end on a surface that can support your weight or you fall as normal.\n\nAs part of the casting of this spell, make a melee spell attack against any number of creatures in the area. On a hit, you deal your unarmed strike damage plus 2d6 thunder damage. In addition, creatures in the area make a Dexterity saving throw or are either pulled 10 feet closer to you or pushed 10 feet away (your choice).", - "document": "a5e-ag", - "level": 3, - "school": "transmutation", - "higher_level": "The extra thunder damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_wind-up", - "fields": { - "name": "Wind Up", - "desc": "You wind your power up like a spring. You gain advantage on the next melee attack roll you make before the end of the spell's duration, after which the spell ends.", - "document": "a5e-ag", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_wind-walk", - "fields": { - "name": "Wind Walk", - "desc": "The targets assume a gaseous form and appear as wisps of cloud. Each target has a flying speed of 300 feet and resistance to damage from nonmagical weapons, but the only action it can take is the Dash action or to revert to its normal form (a process that takes 1 minute during which it is incapacitated and can't move).\n\nUntil the spell ends, a target can change again to cloud form (in an identical transformation process).\n\nWhen the effect ends for a target flying in cloud form, it descends 60 feet each round for up to 1 minute or until it safely lands. If the target can't land after 1 minute, the creature falls the rest of the way normally.", - "document": "a5e-ag", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_wind-wall", - "fields": { - "name": "Wind Wall", - "desc": "A wall of strong wind rises from the ground at a point you choose. You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You can shape the wall in any way you choose so long as it makes one continuous path along the ground.\n\nWhen the wall appears, each creature within its area makes a Strength saving throw, taking 3d8 bludgeoning damage on a failed save, or half as much damage on a successful one.\n\nThe wall keeps fog, smoke, and other gases (including creatures in gaseous form) at bay. Small or smaller flying creatures or objects can't pass through. Loose, lightweight materials brought into the area fly upward. Arrows, bolts, and other ordinary projectiles launched at targets behind the wall are deflected upward and automatically miss (larger projectiles such as boulders and siege engine attacks are unaffected).", - "document": "a5e-ag", - "level": 3, - "school": "evocation", - "higher_level": "The damage increases by 1d8 for each slot level above 3rd.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_wish", - "fields": { - "name": "Wish", - "desc": "This is the mightiest of mortal magics and alters reality itself.\n\nThe safest use of this spell is the duplication of any other spell of 8th-level or lower without needing to meet its requirements (including components).\n\nYou may instead choose one of the following:\n\n* One nonmagical object of your choice that is worth up to 25, 000 gold and no more than 300 feet in any dimension appears in an unoccupied space you can see on the ground.\n* Up to 20 creatures that you can see to regain all their hit points, and each is further healed as per the greater restoration spell.\n* Up to 10 creatures that you can see gain resistance to a damage type you choose.\n* Up to 10 creatures you can see gain immunity to a single spell or other magical effect for 8 hours.\n* You force a reroll of any roll made within the last round (including your last turn). You can force the reroll to be made with advantage or disadvantage, and you can choose whether to use the reroll or the original roll.\n\nYou might be able to achieve something beyond the scope of the above examples. State your wish to the Narrator as precisely as possible, being very careful in your wording. Be aware that the greater the wish, the greater the chance for an unexpected result. This spell might simply fizzle, your desired outcome might only be partly achieved, or you might suffer some unforeseen consequence as a result of how you worded the wish. The Narrator has the final authority in ruling what occurs—and reality is not tampered with lightly.\n\n**_Multiple Wishes:_** The stress of casting this spell to produce any effect other than duplicating another spell weakens you. Until finishing a long rest, each time you cast a spell you take 1d10 necrotic damage per level of that spell. This damage can't be reduced or prevented. In addition, your Strength drops to 3 for 2d4 days (if it isn't 3 or lower already). For each of those days that you spend resting and doing nothing more than light activity, your remaining recovery time decreases by 2 days. Finally, there is a 33% chance that you are unable to cast wish ever again.", - "document": "a5e-ag", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_word-of-recall", - "fields": { - "name": "Word of Recall", - "desc": "The targets instantly teleport to a previously designated sanctuary, appearing in the nearest unoccupied space to the spot you designated when you prepared your sanctuary.\n\nYou must first designate a sanctuary by casting this spell within a location aligned with your faith, such as a temple dedicated to or strongly linked to your deity.", - "document": "a5e-ag", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "5 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_wormway", - "fields": { - "name": "Wormway", - "desc": "You call a Gargantuan monstrosity from the depths of the world to carry you and your allies across great distances. When you cast this spell, the nearest purple worm within range is charmed by you and begins moving toward a point on the ground that you can see. If there are no purple worms within range, the spell fails. The earth rumbles slightly as it approaches and breaks through the surface. Any creatures within 20 feet of that point must make a Dexterity saving throw or be knocked prone and pushed 10 feet away from it.\n\nUpon emerging, the purple worm lays down before you and opens its maw. Targets can climb inside where they are enclosed in an impervious hemispherical dome of force.\n\nOnce targets are loaded into the purple worm, nothing—not physical objects, energy, or other spell effects —can pass through the barrier, in or out, though targets in the sphere can breathe there. The hemisphere is immune to all damage, and creatures and objects inside can't be damaged by attacks or effects originating from outside, nor can a target inside the hemisphere damage anything outside it.\n\nThe atmosphere inside the dome is comfortable and dry regardless of conditions outside it.\n\nThe purple worm waits until you give it a mental command to depart, at which point it dives back into the ground and travels, without need for rest or food, as directly as possible while avoiding obstacles to a destination known to you. It travels 150 miles per day.\n\nWhen the purple worm reaches its destination it surfaces, the dome vanishes, and it disgorges the targets in its mouth before diving back into the depths again.\n\nThe purple worm remains charmed by you until it has delivered you to your destination and returned to the depths, or until it is attacked at which point the charm ends, it vomits its targets in the nearest unoccupied space as soon as possible, and then retreats to safety.", - "document": "a5e-ag", - "level": 6, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "150 miles", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_writhing-transformation", - "fields": { - "name": "Writhing Transformation", - "desc": "As part of the casting of this spell, you lay down in the coffin on a patch of bare earth and it buries itself. Over the following week, you are incapacitated and do not need air, food, or sleep. Your insides are eaten by worms, but you do not die and your skin remains intact. If you are exhumed during this time, or if the spell is otherwise interrupted, you die.\n\nAt the end of the week, the transformation is complete and your true form is permanently changed. Your appearance is unchanged but underneath your skin is a sentient mass of worms. Any creature that makes a Medicine check against your spell save DC realizes that there is something moving underneath your skin.\n\nYour statistics change in the following ways:\n\n* Your type changes to aberration, and you do not age or require sleep.\n* You cannot be healed by normal means, but you can spend an action or bonus action to consume 2d6 live worms, regaining an equal amount of hit points by adding them to your body.\n* You can sense and telepathically control all worms that have the beast type and are within 60 feet of you.\n\nIn addition, you are able to discard your shell of skin and travel as a writhing mass of worms. As an action, you can abandon your skin and pour out onto the ground. In this form you have the statistics of **swarm of insects** with the following exceptions: you keep your hit points, Wisdom, Intelligence, and Charisma scores, and proficiencies. You know but cannot cast spells in this form. You also gain a burrow speed of 10 feet. Any worms touching you instantly join with your swarm, granting you a number of temporary hit points equal to the number of worms that join with your form (maximum 40 temporary hit points). These temporary hit points last until you are no longer in this form.\n\nIf you spend an hour in the same space as a dead creature of your original form's size, you can eat its insides and inhabit its skin in the same way you once inhabited your own. While you are in your swarm form, the most recent skin you inhabited remains intact and you can move back into a previously inhabited skin in 1 minute. You have advantage on checks made to impersonate a creature while wearing its skin.", - "document": "a5e-ag", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "a5e-ag_zone-of-truth", - "fields": { - "name": "Zone of Truth", - "desc": "You create a zone that minimizes deception. Any creature that is able to be charmed can't speak a deliberate lie while in the area.\n\nAn affected creature is aware of the spell and can choose not to speak, or it might be evasive in its communications. A creature that enters the zone for the first time on its turn or starts its turn there must make a Charisma saving throw. On a failed save, the creature takes 2d4 psychic damage when it intentionally tries to mislead or occlude important information. Each time the spell damages a creature, it makes a Deception check (DC 8 + the damage dealt) or its suffering is obvious. You know whether a creature succeeds on its saving throw", - "document": "a5e-ag", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "psychic" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - } -] \ No newline at end of file +{ + "model": "api_v2.spell", + "pk": "a5e-ag_accelerando", + "fields": { + "name": "Accelerando", + "desc": "You play a complex and quick up-tempo piece that gradually gets faster and more complex, instilling the targets with its speed. You cannot cast another spell through your spellcasting focus while concentrating on this spell.\n\nUntil the spell ends, targets gain cumulative benefits the longer you maintain concentration on this spell (including the turn you cast it).\n\n* **1 Round:** Double Speed.\n* **2 Rounds:** +2 bonus to AC.\n* **3 Rounds:** Advantage on Dexterity saving throws.\n* **4 Rounds:** An additional action each turn. This action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action.\n\nWhen the spell ends, a target can't move or take actions until after its next turn as the impact of their frenetic speed catches up to it.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "You may maintain concentration on this spell for an additional 2 rounds for each slot level above 4th.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "6 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_acid-arrow", + "fields": { + "name": "Acid Arrow", + "desc": "A jet of acid streaks towards the target like a hissing, green arrow. Make a ranged spell attack.\n\nOn a hit the target takes 4d4 acid damage and 2d4 ongoing acid damage for 1 round. On a miss the target takes half damage.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "Increase this spell's initial and ongoing damage by 1d4 per slot level above 2nd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "4d4", + "damage_types": [ + "acid" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_acid-splash", + "fields": { + "name": "Acid Splash", + "desc": "A stinking bubble of acid is conjured out of thin air to fly at the targets, dealing 1d6 acid damage.", + "document": "a5e-ag", + "level": 0, + "school": "conjuration", + "higher_level": "This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 2, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_aid", + "fields": { + "name": "Aid", + "desc": "You draw upon divine power, imbuing the targets with fortitude. Until the spell ends, each target increases its hit point maximum and current hit points by 5.", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "The granted hit points increase by an additional 5 for each slot level above 2nd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_air-wave", + "fields": { + "name": "Air Wave", + "desc": "Your deft weapon swing sends a wave of cutting air to assault a creature within range. Make a melee weapon attack against the target. If you are wielding one weapon in each hand, your attack deals an additional 1d6 damage. Regardless of the weapon you are wielding, your attack deals slashing damage.", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "The spell's range increases by 30 feet for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_alarm", + "fields": { + "name": "Alarm", + "desc": "You set an alarm against unwanted intrusion that alerts you whenever a creature of size Tiny or larger touches or enters the warded area. When you cast the spell, choose any number of creatures. These creatures don't set off the alarm.\n\nChoose whether the alarm is silent or audible. The silent alarm is heard in your mind if you are within 1 mile of the warded area and it awakens you if you are sleeping. An audible alarm produces a loud noise of your choosing for 10 seconds within 60 feet.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "You may create an additional alarm for each slot level above 1st. The spell's range increases to 600 feet, but you must be familiar with the locations you ward, and all alarms must be set within the same physical structure. Setting off one alarm does not activate the other alarms.\n\nYou may choose one of the following effects in place of creating an additional alarm. The effects apply to all alarms created during the spell's casting.\n\nIncreased Duration. The spell's duration increases to 24 hours.\n\nImproved Audible Alarm. The audible alarm produces any sound you choose and can be heard up to 300 feet away.\n\nImproved Mental Alarm. The mental alarm alerts you regardless of your location, even if you and the alarm are on different planes of existence.", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_alter-self", + "fields": { + "name": "Alter Self", + "desc": "You use magic to mold yourself into a new form. Choose one of the options below. Until the spell ends, you can use an action to choose a different option.\n\n* **Amphibian:** Your body takes on aquatic adaptations. You can breathe underwater normally and gain a swimming speed equal to your base Speed.\n* **Altered State:** You decide what you look like. \n \nNone of your gameplay statistics change but you can alter anything about your body's appearance, including but not limited to: your heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, sound of your voice, hair style and length, skin and eye coloration, sex, and any other distinguishing features. You cannot become a creature of a different size category, and your limb structure remains the same; for example if you're bipedal, you can't use this spell to become a quadruped. Until the spell ends, you can use an action to change your appearance.\n* **Red in Tooth and Claw:** You grow magical natural weapons of your choice with a +1 bonus to attack and damage. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage of a type determined by the natural weapon you chose; for example a tentacle deals bludgeoning, a horn deals piercing, and claws deal slashing.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "When using a spell slot of 5th-level, add the following to the list of forms you can adopt.\n\n* **Greater Natural Weapons:** The damage dealt by your natural weapon increases to 2d6, and you gain a +2 bonus to attack and damage rolls with your natural weapons.\n* **Mask of the Grave:** You adopt the appearance of a skeleton or zombie (your choice). Your type changes to undead, and mindless undead creatures ignore your presence, treating you as one of their own. You don't need to breathe and you become immune to poison.\n* **Wings:** A pair of wings sprouts from your back. The wings can appear bird-like, leathery like a bat or dragon's wings, or like the wings of an insect. You gain a fly speed equal to your base Speed.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_altered-strike", + "fields": { + "name": "Altered Strike", + "desc": "You briefly transform your weapon or fist into another material and strike with it, making a melee weapon attack against a target within your reach.\n\nYou use your spellcasting ability for your attack and damage rolls, and your melee weapon attack counts as if it were made with a different material for the purpose of overcoming resistance and immunity to nonmagical attacks and damage: either bone, bronze, cold iron, steel, stone, or wood.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "When you reach 5th level, you can choose silver or mithral as the material. When you reach 11th level, if you have the Extra Attack feature you make two melee weapon attacks as part of the casting of this spell instead of one. In addition, you can choose adamantine as the material.\n\nWhen you reach 17th level, your attacks with this spell deal an extra 1d6 damage.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_angel-paradox", + "fields": { + "name": "Angel Paradox", + "desc": "The target is bombarded with a fraction of energy stolen from some slumbering, deific source, immediately taking 40 radiant damage. This spell ignores resistances but does not ignore immunities. A creature killed by this spell does not decay and cannot become undead for the spell's duration. Days spent under the influence of this spell don't count against the time limit of spells such as _raise dead_. This effect ends early if the corpse takes necrotic damage.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "The damage and duration increase to 45 radiant damage and 1 year when using an 8th-level spell slot, or 50 damage and until dispelled when using a 9th-level spell slot.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "40", + "damage_types": [ + "radiant" + ], + "duration": "7 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_animal-friendship", + "fields": { + "name": "Animal Friendship", + "desc": "You allow your inner beauty to shine through in song and dance whether to call a bird from its tree or a badger from its sett. Until the spell ends or one of your companions harms it (whichever is sooner), the target is charmed by you.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "Choose one additional target for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_animal-messenger", + "fields": { + "name": "Animal Messenger", + "desc": "You call a Tiny beast to you, whisper a message to it, and then give it directions to the message's recipient. It is now your messenger.\n\nSpecify a location you have previously visited and a recipient who matches a general description, such as \"a person wearing a pointed red hat in Barter Town\" or \"a half-orc in a wheelchair at the Striped Lion Inn.\" Speak a message of up to 25 words. For the duration of the spell, the messenger travels towards the location at a rate of 50 miles per day for a messenger with a flying speed, or else 25 miles without.\n\nWhen the messenger arrives, it delivers your message to the first creature matching your description, replicating the sound of your voice exactly. If the messenger can't find the recipient or reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.", + "document": "a5e-ag", + "level": 2, + "school": "enchantment", + "higher_level": "The duration of the spell increases by 48 hours for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_animal-shapes", + "fields": { + "name": "Animal Shapes", + "desc": "You transform the bodies of creatures into beasts without altering their minds. Each target transforms into a Large or smaller beast with a Challenge Rating of 4 or lower. Each target may have the same or a different form than other targets.\n\nOn subsequent turns, you can use your action to transform targets into new forms, gaining new hit points when they do so.\n\nUntil the spell ends or it is dropped to 0 hit points, the target's game statistics (including its hit points) are replaced by the statistics of the chosen beast excepting its Intelligence, Wisdom, and Charisma scores. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effect on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.", + "document": "a5e-ag", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_animate-dead", + "fields": { + "name": "Animate Dead", + "desc": "You animate a mortal's remains to become your undead servant.\n\nIf the spell is cast upon bones you create a skeleton, and if cast upon a corpse you choose to create a skeleton or a zombie. The Narrator has the undead's statistics.\n\nWhile it is within 60 feet you can use a bonus action to mentally command the undead. When you command multiple undead using this spell, you must give them all the same command. You may decide the action the undead takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, the undead only defends itself. The undead continues to follow a command until its task is complete.\n\nThe undead is under your control for 24 hours, after which it stops obeying any commands. You must cast this spell on the undead before the spell ends to maintain control of it for another 24 hours.\n\nCasting the spell in this way reasserts control over up to 4 of your previously-animated undead instead of animating a new one.", + "document": "a5e-ag", + "level": 3, + "school": "necromancy", + "higher_level": "You create or reassert control over 2 additional undead for each slot level above 3rd. When commanding more than 3 undead they make group attack rolls (see page 454 in Chapter 8: Combat).", + "target_type": "area", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_animate-objects", + "fields": { + "name": "Animate Objects", + "desc": "Objects come to life at your command just like you dreamt of when you were an apprentice! Choose up to 6 unattended nonmagical Small or Tiny objects. You may also choose larger objects; treat Medium objects as 2 objects, Large objects as 3 objects, and Huge objects as 6 objects. You can't animate objects larger than Huge.\n\nUntil the spell ends or a target is reduced to 0 hit points, you animate the targets and turn them into constructs under your control.\n\nEach construct has Constitution 10, Intelligence 3, Wisdom 3, and Charisma 1, as well as a flying speed of 30 feet and the ability to hover (if securely fastened to something larger, it has a Speed of 0), and blindsight to a range of 30 feet (blind beyond that distance). Otherwise a construct's statistics are determined by its size.\n\nIf you animate 4 or more Small or Tiny objects, instead of controlling each construct individually they function as a construct swarm. Add together all swarm's total hit points. Attacks against a construct swarm deal half damage. The construct swarm reverts to individual constructs when it is reduced to 15 hit points or less.\n\nYou can use a bonus action to mentally command any construct made with this spell while it is within 500 feet. When you command multiple constructs using this spell, you may simultaneously give them all the same command. You decide the action the construct takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. Without commands the construct only defends itself. The construct continues to follow a command until its task is complete.\n\nWhen you command a construct to attack, it makes a single slam melee attack against a creature within 5 feet of it. On a hit the construct deals bludgeoning, piercing, or slashing damage appropriate to its shape.\n\nWhen the construct drops to 0 hit points, any excess damage carries over to its normal object form.", + "document": "a5e-ag", + "level": 5, + "school": "transmutation", + "higher_level": "You can animate 2 additional Small or Tiny objects for each slot level above 5th.", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_antilife-shell", + "fields": { + "name": "Antilife Shell", + "desc": "A barrier that glimmers with an oily rainbow hue pops into existence around you. The barrier moves with you and prevents creatures other than undead and constructs from passing or reaching through its surface.\n\nThe barrier does not prevent spells or attacks with ranged or reach weapons from passing through the barrier.\n\nThe spell ends if you move so that a Tiny or larger living creature is forced to pass through the barrier.", + "document": "a5e-ag", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_antimagic-field", + "fields": { + "name": "Antimagic Field", + "desc": "An invisible sphere of antimagic forms around you, moving with you and suppressing all magical effects within it. At the Narrator's discretion, sufficiently powerful artifacts and deities may be able to ignore the sphere's effects.\n\n* **Area Suppression:** When a magical effect protrudes into the sphere, that part of the effect's area is suppressed. For example, the ice created by a wall of ice is suppressed within the sphere, creating a gap in the wall if the overlap is large enough.\n* **Creatures and Objects:** While within the sphere, any creatures or objects created or conjured by magic temporarily wink out of existence, reappearing immediately once the space they occupied is no longer within the sphere.\n* **Dispel Magic:** The sphere is immune to dispel magic and similar magical effects, including other antimagic field spells.\n* **Magic Items:** While within the sphere, magic items function as if they were mundane objects. Magic weapons and ammunition cease to be suppressed when they fully leave the sphere.\n* **Magical Travel:** Whether the sphere includes a destination or departure point, any planar travel or teleportation within it automatically fails. Until the spell ends or the sphere moves, magical portals and extradimensional spaces (such as that created by a bag of holding) within the sphere are closed.\n* **Spells:** Any spell cast within the sphere or at a target within the sphere is suppressed and the spell slot is consumed. Active spells and magical effects are also suppressed within the sphere. If a spell or magical effect has a duration, time spent suppressed counts against it.", + "document": "a5e-ag", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_antipathysympathy", + "fields": { + "name": "Antipathy/Sympathy", + "desc": "You mystically impart great love or hatred for a place, thing, or creature. Designate a kind of intelligent creature, such as dragons, goblins, or vampires.\n\nThe target now causes either antipathy or sympathy for the specified creatures for the duration of the spell. When a designated creature successfully saves against the effects of this spell, it immediately understands it was under a magical effect and is immune to this spell's effects for 1 minute.\n\n* **Antipathy:** When a designated creature can see the target or comes within 60 feet of it, the creature makes a Wisdom saving throw or becomes frightened. While frightened the creature must use its movement to move away from the target to the nearest safe spot from which it can no longer see the target. If the creature moves more than 60 feet from the target and can no longer see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.\n* **Sympathy:** When a designated creature can see the target or comes within 60 feet of it, the creature must succeed on a Wisdom saving throw. On a failure, the creature uses its movement on each of its turns to enter the area or move within reach of the target, and is unwilling to move away from the target. \nIf the target damages or otherwise harms an affected creature, the affected creature can make a Wisdom saving throw to end the effect. An affected creature can also make a saving throw once every 24 hours while within the area of the spell, and whenever it ends its turn more than 60 feet from the target and is unable to see the target.", + "document": "a5e-ag", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_arcane-eye", + "fields": { + "name": "Arcane Eye", + "desc": "Until the spell ends, you create an invisible, floating magical eye that hovers in the air and sends you visual information. The eye has normal vision, darkvision to a range of 30 feet, and it can look in every direction.\n\nYou can use an action to move the eye up to 30 feet in any direction as long as it remains on the same plane of existence. The eye can pass through openings as small as 1 inch across but otherwise its movement is blocked by solid barriers.", + "document": "a5e-ag", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_arcane-hand", + "fields": { + "name": "Arcane Hand", + "desc": "You create a Large hand of shimmering, translucent force that mimics the appearance and movements of your own hand.\n\nThe hand doesn't fill its space and has AC 20, Strength 26 (+8), Dexterity 10 (+0), maneuver DC 18, and hit points equal to your hit point maximum. The spell ends early if it is dropped to 0 hit points.\n\nWhen you cast the spell and as a bonus action on subsequent turns, you can move the hand up to 60 feet and then choose one of the following.\n\n* **_Shove:_** The hand makes a Strength saving throw against the maneuver DC of a creature within 5 feet of it, with advantage if the creature is Medium or smaller. On a success, the hand pushes the creature in a direction of your choosing for up to 5 feet plus a number of feet equal to 5 times your spellcasting ability modifier, and remains within 5 feet of it.\n* **_Smash:_** Make a melee spell attack against a creature or object within 5 feet of the hand. On a hit, the hand deals 4d8 force damage.\n* **_Snatch:_** The hand makes a Strength saving throw against the maneuver DC of a creature within 5 feet of it, with advantage if the creature is Medium or smaller. On a success, the creature is grappled by the hand. You can use a bonus action to crush a creature grappled by the hand, dealing bludgeoning damage equal to 2d6 + your spellcasting ability modifier.\n* **_Stop:_** Until the hand is given another command it moves to stay between you and a creature of your choice, providing you with three-quarters cover against the chosen creature. A creature with a Strength score of 26 or less cannot move through the hand's space, and stronger creatures treat the hand as difficult terrain.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "The damage from Smash increases by 2d8 and the damage from Snatch increases by 2d6 for each slot level above 5th.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_arcane-lock", + "fields": { + "name": "Arcane Lock", + "desc": "The target is sealed to all creatures except those you designate (who can open the object normally). Alternatively, you may choose a password that suppresses this spell for 1 minute when it is spoken within 5 feet of the target. The spell can also be suppressed for 10 minutes by casting _knock_ on the target. Otherwise, the target cannot be opened normally and it is more difficult to break or force open, increasing the DC to break it or pick any locks on it by 10 (minimum DC 20).", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "Increase the DC to force open the object or pick any locks on the object by an additional 2 for each slot level above 2nd. Only a knock spell cast at a slot level equal to or greater than your arcane lock suppresses it.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_arcane-muscles", + "fields": { + "name": "Arcane Muscles", + "desc": "Your muscles swell with arcane power. They're too clumsy to effectively wield weapons but certainly strong enough for a powerful punch. Until the spell ends, you can choose to use your spellcasting ability score for Athletics checks, and for the attack and damage rolls of unarmed strikes. In addition, your unarmed strikes deal 1d6 bludgeoning damage and count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_arcane-riposte", + "fields": { + "name": "Arcane Riposte", + "desc": "You respond to an incoming attack with a magically-infused attack of your own. Make a melee spell attack against the creature that attacked you. If you hit, the creature takes 3d6 acid, cold, fire, lightning, poison, or thunder damage.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The spell deals an extra 1d6 damage for each slot level above 1st. When using a 4th-level spell slot, you may choose to deal psychic, radiant, or necrotic damage. When using a 6th-level spell slot, you may choose to deal force damage.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "3d6", + "damage_types": [ + "acid", + "cold", + "fire", + "lightning", + "poison", + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_arcane-sword", + "fields": { + "name": "Arcane Sword", + "desc": "You summon an insubstantial yet deadly sword to do your bidding.\n\nMake a melee spell attack against a target of your choice within 5 feet of the sword, dealing 3d10 force damage on a hit.\n\nUntil the spell ends, you can use a bonus action on subsequent turns to move the sword up to 20 feet to a space you can see and make an identical melee spell attack against a target.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_arcanists-magic-aura", + "fields": { + "name": "Arcanist's Magic Aura", + "desc": "You craft an illusion to deceive others about the target's true magical properties.\n\nChoose one or both of the following effects. When cast upon the same target with the same effect for 30 successive days, it lasts until it is dispelled.\n\n* **False Aura:** A magical target appears nonmagical, a nonmagical target appears magical, or you change a target's magical aura so that it appears to belong to a school of magic of your choosing. Additionally, you can choose to make the false magic apparent to any creature that handles the item.\n* **Masking Effect:** Choose a creature type. Spells and magical effects that detect creature types (such as a herald's Divine Sense or the trigger of a symbol spell) treat the target as if it were a creature of that type. Additionally, you can choose to mask the target's alignment trait (if it has one).", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "When cast using a 6th-level spell slot or higher the effects last until dispelled with a bonus action.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_aspect-of-the-moon", + "fields": { + "name": "Aspect of the Moon", + "desc": "You throw your head back and howl like a beast, embracing your most basic impulses. Until the spell ends your hair grows, your features become more feral, and sharp claws grow on your fingers. You gain a +1 bonus to AC, your Speed increases by 10 feet, you have advantage on Perception checks, and your unarmed strikes deal 1d8 slashing damage. You may use your Strength or Dexterity for attack and damage rolls with unarmed strikes, and treat your unarmed strikes as weapons with the finesse property. You gain an additional action on your turn, which may only be used to make a melee attack with your unarmed strike. If you are hit by a silvered weapon, you have disadvantage on your Constitution saving throw to maintain concentration.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_astral-projection", + "fields": { + "name": "Astral Projection", + "desc": "Until the spell ends, the targets leave their material bodies (unconscious and in a state of suspended animation, not aging or requiring food or air) and project astral forms that resemble their mortal forms in nearly all ways, keeping their game statistics and possessions.\n\nWhile in this astral form you trail a tether, a silvery-white cord that sprouts from between your shoulder blades and fades into immateriality a foot behind you. As long as the tether remains intact you can find your way back to your material body. When it is cut—which requires an effect specifically stating that it cuts your tether —your soul and body are separated and you immediately die. Damage against and other effects on your astral form have no effect on your material body either during this spell or after its duration ends. Your astral form travels freely through the Astral Plane and can pass through interplanar portals on the Astral Plane leading to any other plane. When you enter a new plane or return to the plane you were on when casting this spell, your material body and possessions are transported along the tether, allowing you to return fully intact with all your gear as you enter the new plane.\n\nThe spell ends for all targets when you use an action to dismiss it, for an individual target when a successful dispel magic is cast upon its astral form or material body, or when either its material body or its astral form drops to 0 hit points. When the spell ends for a target and the tether is intact, the tether pulls the target's astral form back to its material body, ending the suspended animation.\n\nIf the spell ends for you prematurely, other targets remain in their astral forms and must find their own way back to their bodies (usually by dropping to 0 hit points).", + "document": "a5e-ag", + "level": 9, + "school": "necromancy", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_augury", + "fields": { + "name": "Augury", + "desc": "With the aid of a divining tool, you receive an omen from beyond the Material Plane about the results of a specific course of action that you intend to take within the next 30 minutes. The Narrator chooses from the following:\n\n* Fortunate omen (good results)\n* Calamity omen (bad results)\n* Ambivalence omen (both good and bad results)\n* No omen (results that aren't especially good or bad)\n\nThis omen does not account for possible circumstances that could change the outcome, such as making additional preparations.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a random reading from the above options increases. The Narrator makes the following roll in secret: second casting—25%, third casting—50%, fourth casting—75%, fifth casting—100%.", + "document": "a5e-ag", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_awaken", + "fields": { + "name": "Awaken", + "desc": "You impart sentience in the target, granting it an Intelligence of 10 and proficiency in a language you know. A plant targeted by this spell gains the ability to move, as well as senses identical to those of a human. The Narrator assigns awakened plant statistics (such as an awakened shrub or awakened tree).\n\nThe target is charmed by you for 30 days or until you or your companions harm it. Depending on how you treated the target while it was charmed, when the condition ends the awakened creature may choose to remain friendly to you.", + "document": "a5e-ag", + "level": 5, + "school": "transmutation", + "higher_level": "Target an additional creature for each slot level above 5th. Each target requires its own material component.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_bane", + "fields": { + "name": "Bane", + "desc": "The senses of the targets are filled with phantom energies that make them more vulnerable and less capable. Until the spell ends, a d4 is subtracted from attack rolls and saving throws made by a target.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "You target an additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_banishment", + "fields": { + "name": "Banishment", + "desc": "You employ sheer force of will to make reality question the existence of a nearby creature, causing them to warp visibly in front of you.\n\nUntil the spell ends, a target native to your current plane is banished to a harmless demiplane and incapacitated. At the end of the duration the target reappears in the space it left (or the nearest unoccupied space). A target native to a different plane is instead banished to its native plane.\n\nAt the end of each of its turns, a banished creature can repeat the saving throw with a -1 penalty for each round it has spent banished, returning on a success. If the spell ends before its maximum duration, the target reappears in the space it left (or the nearest unoccupied space) but otherwise a target native to a different plane doesn't return.", + "document": "a5e-ag", + "level": 4, + "school": "abjuration", + "higher_level": "The duration of banishment increases by 1 round for each slot level above 4th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1d4+2 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_barkskin", + "fields": { + "name": "Barkskin", + "desc": "The target's skin takes on the texture and appearance of bark, increasing its AC to 16 (unless its AC is already higher).", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "The target's AC increases by +1 for every two slot levels above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_battlecry-ballad", + "fields": { + "name": "Battlecry Ballad", + "desc": "You fill your allies with a thirst for glory and battle using your triumphant rallying cry. Expend and roll a Bardic Inspiration die to determine the number of rounds you can maintain concentration on this spell (minimum 1 round). Each target gains a bonus to attack and damage rolls equal to the number of rounds you have maintained concentration on this spell (maximum +4).\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "You can maintain concentration on this spell for an additional round for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 100, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": " special", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_beacon-of-hope", + "fields": { + "name": "Beacon of Hope", + "desc": "The targets are filled with hope and vitality.\n\nUntil the spell ends, each target gains advantage on Wisdom saving throws and death saving throws, and when a target receives healing it regains the maximum number of hit points possible.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_bestow-curse", + "fields": { + "name": "Bestow Curse", + "desc": "Choose one of the following:\n\n* Select one ability score; the target has disadvantage on ability checks and saving throws using that ability score.\n* The target makes attack rolls against you with disadvantage.\n* Each turn, the target loses its action unless it succeeds a Wisdom saving throw at the start of its turn.\n* Your attacks and spells deal an additional 1d8 necrotic damage against the target.\n\nA curse lasts until the spell ends. At the Narrator's discretion you may create a different curse effect with this spell so long as it is weaker than the options above.\n\nA _remove curse_ spell ends the effect if the spell slot used to cast it is equal to or greater than the spell slot used to cast _bestow curse_.", + "document": "a5e-ag", + "level": 3, + "school": "necromancy", + "higher_level": "When using a 4th-level spell slot the duration increases to 10 minutes. When using a 5th-level spell slot the duration increases to 8 hours and it no longer requires your concentration. When using a 7th-level spell slot the duration is 24 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_black-tentacles", + "fields": { + "name": "Black Tentacles", + "desc": "Writhing black tentacles fill the ground within the area turning it into difficult terrain. When a creature starts its turn in the area or enters the area for the first time on its turn, it takes 3d6 bludgeoning damage and is restrained by the tentacles unless it succeeds on a Dexterity saving throw. A creature that starts its turn restrained by the tentacles takes 3d6 bludgeoning damage.\n\nA restrained creature can use its action to make an Acrobatics or Athletics check against the spell save DC, freeing itself on a success.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "The damage increases by 1d6 for every 2 slot levels above 4th.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_blade-barrier", + "fields": { + "name": "Blade Barrier", + "desc": "You create a wall of slashing blades. The wall can be up to 20 feet high and 5 feet thick, and can either be a straight wall up to 100 feet long or a ringed wall of up to 60 feet in diameter. The wall provides three-quarters cover and its area is difficult terrain.\n\nWhen a creature starts its turn within the wall's area or enters the wall's area for the first time on a turn, it makes a Dexterity saving throw, taking 6d10 slashing damage on a failed save, or half as much on a successful save.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "The damage increases by 1d10 for each slot level above 6th.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_bless", + "fields": { + "name": "Bless", + "desc": "The blessing you bestow upon the targets makes them more durable and competent. Until the spell ends, a d4 is added to attack rolls and saving throws made by a target.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "You target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_blight", + "fields": { + "name": "Blight", + "desc": "Necrotic energies drain moisture and vitality from the target, dealing 8d8 necrotic damage. Undead and constructs are immune to this spell.\n\nA plant creature or magical plant has disadvantage on its saving throw and takes the maximum damage possible from this spell. A nonmagical plant that isn't a creature receives no saving throw and instead withers until dead.", + "document": "a5e-ag", + "level": 4, + "school": "necromancy", + "higher_level": "The damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_blindnessdeafness", + "fields": { + "name": "Blindness/Deafness", + "desc": "Until the spell ends, the target is blinded or deafened (your choice). At the end of each of its turns the target can repeat its saving throw, ending the spell on a success.", + "document": "a5e-ag", + "level": 2, + "school": "necromancy", + "higher_level": "You target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_blink", + "fields": { + "name": "Blink", + "desc": "Until the spell ends, roll 1d20 at the end of each of your turns. When you roll an 11 or higher you disappear and reappear in the Ethereal Plane (if you are already on the Ethereal Plane, the spell fails and the spell slot is wasted). At the start of your next turn you return to an unoccupied space that you can see within 10 feet of where you disappeared from. If no unoccupied space is available within range, you reappear in the nearest unoccupied space (determined randomly when there are multiple nearest choices). As an action, you can dismiss this spell.\n\nWhile on the Ethereal Plane, you can see and hear into the plane you were originally on out to a range of 60 feet, but everything is obscured by mist and in shades of gray. You can only target and be targeted by other creatures on the Ethereal Plane.\n\nCreatures on your original plane cannot perceive or interact with you, unless they are able to interact with the Ethereal Plane.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_blood-writ-bargain", + "fields": { + "name": "Blood-Writ Bargain", + "desc": "This spell creates a pact which is enforced by celestial or fiendish forces. You and another willing creature commit to a mutual agreement, clearly declaring your parts of the agreement during the casting.\n\nUntil the spell ends, if for any reason either participant breaks the agreement or fails to uphold their part of the bargain, beings of celestial or fiendish origin appear within unoccupied spaces as close as possible to the participant who broke the bargain. The beings are hostile to the deal-breaking participant and attempt to kill them, as well as any creatures that defend them. When the dealbreaking participant is killed, or the spell's duration ends, the beings disappear in a flash of smoke.\n\nThe spellcaster chooses whether the beings are celestial or fiendish while casting the spell, and the Narrator chooses the exact creatures summoned (such as a couatl or 5 imps). There may be any number of beings, but their combined Challenge Rating can't exceed 5.", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "The combined Challenge Rating of summoned beings increases by 2 and the duration increases by 13 days for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "13 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_blur", + "fields": { + "name": "Blur", + "desc": "Until the spell ends, you are shrouded in distortion and your image is blurred. Creatures make attack rolls against you with disadvantage unless they have senses that allow them to perceive without sight or to see through illusions (like blindsight or truesight).", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "You may target an additional willing creature you can see within range for each slot level above 2nd. Whenever an affected creature other than you is hit by an attack, the spell ends for that creature. When using a higher level spell slot, increase the spell's range to 30 feet.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_burning-hands", + "fields": { + "name": "Burning Hands", + "desc": "A thin sheet of flames shoots forth from your outstretched hands. Each creature in the area takes 3d6 fire damage. The fire ignites any flammable unattended objects in the area.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The damage increases by 1d6 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_calculate", + "fields": { + "name": "Calculate", + "desc": "You instantly know the answer to any mathematical equation that you speak aloud. The equation must be a problem that a creature with Intelligence 20 could solve using nonmagical tools with 1 hour of calculation. Additionally, you gain an expertise die on Engineering checks made during the duration of the spell.\n\nNote: Using the _calculate_ cantrip allows a player to make use of a calculator at the table in order to rapidly answer mathematical equations.", + "document": "a5e-ag", + "level": 0, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_calculated-retribution", + "fields": { + "name": "Calculated Retribution", + "desc": "You surround yourself with a dampening magical field and collect the energy of a foe's attack to use against them. When you take damage from a weapon attack, you can end the spell to halve the attack's damage against you, gaining a retribution charge that lasts until the end of your next turn. By expending the retribution charge when you hit with a melee attack, you deal an additional 2d10 force damage.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "You may use your reaction to halve the damage of an attack against you up to a number of times equal to the level of the spell slot used, gaining a retribution charge each time that lasts until 1 round after the spell ends.\n\nYou must still make Constitution saving throws to maintain your concentration on this spell, but you do so with advantage, or if you already have advantage, you automatically succeed.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_call-lightning", + "fields": { + "name": "Call Lightning", + "desc": "A 60-foot radius storm cloud that is 10 feet high appears in a space 100 feet above you. If there is not a point in the air above you that the storm cloud could appear, the spell fails (such as if you are in a small cavern or indoors).\n\nOn the round you cast it, and as an action on subsequent turns until the spell ends, you can call down a bolt of lightning to a point directly beneath the cloud. Each creature within 5 feet of the point makes a Dexterity saving throw, taking 3d10 lightning damage on a failed save or half as much on a successful one.\n\nIf you are outdoors in a storm when you cast this spell, you take control of the storm instead of creating a new cloud and the spell's damage is increased by 1d10.", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "The damage increases by 1d10 for each slot level above 3rd.", + "target_type": "point", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_calm-emotions", + "fields": { + "name": "Calm Emotions", + "desc": "Strong and harmful emotions are suppressed within the area. You can choose which of the following two effects to apply to each target of this spell.\n\n* Suppress the charmed or frightened conditions, though they resume when the spell ends (time spent suppressed counts against a condition's duration).\n* Suppress hostile feelings towards creatures of your choice until the spell ends. This suppression ends if a target is attacked or sees its allies being attacked. Targets act normally when the spell ends.", + "document": "a5e-ag", + "level": 2, + "school": "enchantment", + "higher_level": "The spell area increases by 10 feet for each slot level above 2nd.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_ceremony", + "fields": { + "name": "Ceremony", + "desc": "You perform a religious ceremony during the casting time of this spell. When you cast the spell, you choose one of the following effects, any targets of which must be within range during the entire casting.\n\n* **Funeral:** You bless one or more corpses, acknowledging their transition away from this world. For the next week, they cannot become undead by any means short of a wish spell. This benefit lasts indefinitely regarding undead of CR 1/4 or less. A corpse can only benefit from this effect once.\n* **Guide the Passing:** You bless one or more creatures within range for their passage into the next life. For the next 7 days, their souls cannot be trapped or captured by any means short of a wish spell. Once a creature benefits from this effect, it can't do so again until it has been restored to life.\n* **Offering:** The gifts of the faithful are offered to the benefit of the gods and the community. Choose one skill or tool proficiency and target a number of creatures equal to your proficiency bonus that are within range. When a target makes an ability check using the skill or tool within the next week, it can choose to use this benefit to gain an expertise die on the check. A creature can be targeted by this effect no more than once per week.\n* **Purification:** A creature you touch is washed with your spiritual energy. Choose one disease or possession effect on the target. If the save DC for that effect is equal to or lower than your spell save DC, the effect ends.\n* **Rite of Passage:** You shepherd one or more creatures into the next phase of life, such as in a child dedication, coming of age, marriage, or conversion ceremony. These creatures gain inspiration. A creature can benefit from this effect no more than once per year.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_chain-lightning", + "fields": { + "name": "Chain Lightning", + "desc": "You fire a bolt of electricity at the primary target that deals 10d8 lightning damage. Electricity arcs to up to 3 additional targets you choose that are within 30 feet of the primary target.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "An extra arc leaps from the primary target to an additional target for each slot level above 6th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_charm-monster", + "fields": { + "name": "Charm Monster", + "desc": "You only require line of sight to the target (not line of effect) and it has advantage on its saving throw to resist the spell if you or your companions are fighting it. Until the spell ends, the target is charmed by you and friendly towards you.\n\nThe spell ends if you or your companions do anything harmful towards the target. The target knows it was charmed by you when the spell ends.", + "document": "a5e-ag", + "level": 4, + "school": "enchantment", + "higher_level": "For each slot level above 4th, you affect one additional target that is within 30 feet of other targets.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_charm-person", + "fields": { + "name": "Charm Person", + "desc": "You only require line of sight to the target (not line of effect) and it has advantage on its saving throw to resist the spell if you or your companions are fighting it. Until the spell ends, the target is charmed by you and friendly towards you.\n\nThe spell ends if you or your companions do anything harmful towards the target. The target knows it was charmed by you when the spell ends.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "For each slot level above 1st, you affect one additional target that is within 30 feet of other targets.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_chill-touch", + "fields": { + "name": "Chill Touch", + "desc": "You reach out with a spectral hand that carries the chill of death. Make a ranged spell attack. On a hit, the target takes 1d8 necrotic damage, and it cannot regain hit points until the start of your next turn. The hand remains visibly clutching onto the target for the duration. If the target you hit is undead, it makes attack rolls against you with disadvantage until the end of your next turn.", + "document": "a5e-ag", + "level": 0, + "school": "necromancy", + "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_circle-of-death", + "fields": { + "name": "Circle of Death", + "desc": "A sphere of negative energy sucks life from the area.\n\nCreatures in the area take 9d6 necrotic damage.", + "document": "a5e-ag", + "level": 6, + "school": "necromancy", + "higher_level": "The damage increases by 2d6 for each slot level above 6th.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_circular-breathing", + "fields": { + "name": "Circular Breathing", + "desc": "You begin carefully regulating your breath so that you can continue playing longer or keep breathing longer in adverse conditions.\n\nUntil the spell ends, you can breathe underwater, and you can utilize bardic performances that would normally require breathable air. In addition, you have advantage on saving throws against gases and environments with adverse breathing conditions.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "The duration of this spell increases when you reach 5th level (10 minutes), 11th level (30 minutes), and 17th level (1 hour).", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_clairvoyance", + "fields": { + "name": "Clairvoyance", + "desc": "An invisible sensor is created within the spell's range. The sensor remains there for the duration, and it cannot be targeted or attacked.\n\nChoose seeing or hearing when you cast the spell.\n\nYou may use that sense through the sensor as if you were there. As an action, you may switch which sense you are using through the sensor.\n\nA creature able to see invisible things (from the see invisibility spell or truesight, for instance) sees a 4-inch diameter glowing, ethereal orb.", + "document": "a5e-ag", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "1 mile", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_clone", + "fields": { + "name": "Clone", + "desc": "This spell grows a duplicate of the target that remains inert indefinitely as long as its vessel is sealed.\n\nThe clone grows inside the sealed vessel and matures over the course of 120 days. You can choose to have the clone be a younger version of the target.\n\nOnce the clone has matured, when the target dies its soul is transferred to the clone so long as it is free and willing. The clone is identical to the target (except perhaps in age) and has the same personality, memories, and abilities, but it is without the target's equipment. The target's original body cannot be brought back to life by magic since its soul now resides within the cloned body.", + "document": "a5e-ag", + "level": 8, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_cloudkill", + "fields": { + "name": "Cloudkill", + "desc": "You create a sphere of poisonous, sickly green fog, which can spread around corners but not change shape. The area is heavily obscured. A strong wind disperses the fog, ending the spell early.\n\nUntil the spell ends, when a creature enters the area for the first time on its turn or starts its turn there, it takes 5d8 poison damage.\n\nThe fog moves away from you 10 feet at the start of each of your turns, flowing along the ground. The fog is thicker than air, sinks to the lowest level in the land, and can even flow down openings and pits.", + "document": "a5e-ag", + "level": 5, + "school": "conjuration", + "higher_level": "The damage increases by 1d8 for each slot level above 5th.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "poison" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_cobras-spit", + "fields": { + "name": "Cobra's Spit", + "desc": "Until the spell ends, you can use an action to spit venom, making a ranged spell attack at a creature or object within 30 feet. On a hit, the venom deals 4d8 poison damage, and if the target is a creature it is poisoned until the end of its next turn.", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "The damage increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_color-spray", + "fields": { + "name": "Color Spray", + "desc": "A blast of dazzling multicolored light flashes from your hand to blind your targets until the start of your next turn. Starting with the target with the lowest hit points (ignoring unconscious creatures), targets within the area are blinded, in ascending order according to their hit points.\n\nWhen a target is blinded, subtract its hit points from the total before moving on to the next target.\n\nA target's hit points must be equal to or less than the total remaining for the spell to have any affect.", + "document": "a5e-ag", + "level": 1, + "school": "illusion", + "higher_level": "Add an additional 2d10 hit points for each slot level above 1st.", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_command", + "fields": { + "name": "Command", + "desc": "You only require line of sight to the target (not line of effect). On its next turn the target follows a one-word command of your choosing. The spell fails if the target is undead, if it does not understand your command, or if the command is immediately harmful to it.\n\nBelow are example commands, but at the Narrator's discretion you may give any one-word command.\n\n* **Approach/Come/Here:** The target uses its action to take the Dash action and move toward you by the shortest route, ending its turn if it reaches within 5 feet of you.\n* **Bow/Grovel/Kneel:** The target falls prone and ends its turn.\n* **Drop:** The target drops anything it is holding and ends its turn.\n* **Flee/Run:** The target uses its action to Dash and moves away from you as far as it can.\n* **Halt:** The target remains where it is and takes no actions. A flying creature that cannot hover moves the minimum distance needed to remain aloft.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "For each slot level above 1st, you affect one additional target that is within 30 feet of other targets.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_commune", + "fields": { + "name": "Commune", + "desc": "You contact your deity, a divine proxy, or a personified source of divine power and ask up to 3 questions that could be answered with a yes or a no. You must complete your questions before the spell ends. You receive a correct answer for each question, unless the being does not know. When the being does not know, you receive \"unclear\" as an answer. The being does not try to deceive, and the Narrator may offer a short phrase as an answer if necessary.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a no answer increases.\n\nThe Narrator makes the following roll in secret: second casting —25%, third casting —50%, fourth casting—75%, fifth casting—100%.", + "document": "a5e-ag", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_commune-with-nature", + "fields": { + "name": "Commune with Nature", + "desc": "Until the spell ends, your spirit bonds with that of nature and you learn about the surrounding land.\n\nWhen cast outdoors the spell reaches 3 miles around you, and in natural underground settings it reaches only 300 feet. The spell fails if you are in a heavily constructed area, such as a dungeon or town.\n\nYou learn up to 3 facts of your choice about the surrounding area:\n\n* Terrain and bodies of water\n* Common flora, fauna, minerals, and peoples\n* Any unnatural creatures in the area\n* Weaknesses in planar boundaries\n* Built structures", + "document": "a5e-ag", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_comprehend-languages", + "fields": { + "name": "Comprehend Languages", + "desc": "You gain a +10 bonus on Insight checks made to understand the meaning of any spoken language that you hear, or any written language that you can touch. Typically interpreting an unknown language is a DC 20 check, but the Narrator may use DC 15 for a language closely related to one you know, DC 25 for a language that is particularly unfamiliar or ancient, or DC 30 for a lost or dead language. This spell doesn't uncover secret messages or decode cyphers, and it does not assist in uncovering lies.", + "document": "a5e-ag", + "level": 1, + "school": "divination", + "higher_level": "The bonus increases by +5 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_cone-of-cold", + "fields": { + "name": "Cone of Cold", + "desc": "Frigid cold blasts from your hands. Each creature in the area takes 8d8 cold damage. Creatures killed by this spell become frozen statues until they thaw.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above 5th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "8d8", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_confusion", + "fields": { + "name": "Confusion", + "desc": "You assault the minds of your targets, filling them with delusions and making them confused until the spell ends. On a successful saving throw, a target is rattled for 1 round. At the end of each of its turns, a confused target makes a Wisdom saving throw to end the spell's effects on it.", + "document": "a5e-ag", + "level": 4, + "school": "enchantment", + "higher_level": "The spell's area increases by 5 feet for each slot level above 4th.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_conjure-animals", + "fields": { + "name": "Conjure Animals", + "desc": "You summon forth the spirit of a beast that takes the physical form of your choosing in unoccupied spaces you can see.\n\nChoose one of the following:\n\n* One beast of CR 2 or less\n* Two beasts of CR 1 or less\n* Three beasts of CR 1/2 or less\n\n Beasts summoned this way are allied to you and your companions. While it is within 60 feet you can use a bonus action to mentally command a summoned beast. When you command multiple beasts using this spell, you must give them all the same command. You may decide the action the beast takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, a conjured beast only defends itself.", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "The challenge rating of beasts you can summon increases by one step for each slot level above 3rd. For example, when using a 4th-level spell slot you can summon one beast of CR 3 or less, two beasts of CR 2 or less, or three beasts of CR 1 or less.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_conjure-celestial", + "fields": { + "name": "Conjure Celestial", + "desc": "You summon a creature from the realms celestial.\n\nThis creature uses the statistics of a celestial creature (detailed below) with certain traits determined by your choice of its type: an angel of battle, angel of protection, or angel of vengeance.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the celestial creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears 1 hour after you summoned it.", + "document": "a5e-ag", + "level": 7, + "school": "conjuration", + "higher_level": "For each slot level above 7th the celestial creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_conjure-elemental", + "fields": { + "name": "Conjure Elemental", + "desc": "You summon a creature from the Elemental Planes. This creature uses the statistics of a conjured elemental creature (detailed below) with certain traits determined by your choice of its type: air, earth, fire, or water.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the elemental creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears 1 hour after you summoned it.", + "document": "a5e-ag", + "level": 5, + "school": "conjuration", + "higher_level": "For each slot level above 5th the elemental creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_conjure-fey", + "fields": { + "name": "Conjure Fey", + "desc": "You summon a creature from The Dreaming.\n\nThis creature uses the statistics of a fey creature (detailed below) with certain traits determined by your choice of its type: hag, hound, or redcap.\n\nThe creature is friendly to you and your companions and takes its turn immediately after yours.\n\nIt obeys your verbal commands. Without such commands, the creature only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of the summoned creature, which becomes hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "For each slot level above 6th the fey creature's AC increases by 1, its hit points increase by 10, and when it deals damage with an attack it deals 1d4 extra damage.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_conjure-minor-elementals", + "fields": { + "name": "Conjure Minor Elementals", + "desc": "You summon up to 3 creatures from the Elemental Planes. These creatures use the statistics of a minor elemental (detailed below) with certain traits determined by your choice of its type: air, earth, fire, or water. If you summon only 2 creatures with this spell, increase its effective slot level by 1 when determining the minor elemental's statistics, and if you summon a single creature with this spell its effective slot level is increased by 2 instead.\n\nThe summoned creatures are friendly to you and your companions and take their turns immediately after yours. They obey your verbal commands. When you command multiple minor elementals using this spell, you must give them all the same command.\n\nWithout such commands, a minor elemental only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of any summoned creatures, which become hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "Use the higher spell slot level wherever the spell's level appears in the stat block.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_conjure-woodland-beings", + "fields": { + "name": "Conjure Woodland Beings", + "desc": "You summon up to 3 creatures from The Dreaming. These creatures use the statistics of a woodland being (detailed below) with certain traits determined by your choice of its type: blink dog, satyr, or sprite. If you summon only 2 creatures with this spell, increase its effective slot level by 1 when determining the minor woodland being's statistics, and if you summon a single creature with this spell its effective slot level is increased by 2 instead.\n\nThe summoned creatures are friendly to you and your companions and take their turns immediately after yours. They obey your verbal commands. When you command multiple woodland beings using this spell, you must give them all the same command.\n\nWithout such commands, a summoned creature only defends itself.\n\nThe summoned creature disappears when reduced to 0 hit points. If your concentration is broken before the spell ends, you lose control of any summoned creatures, which become hostile and might attack you and your companions. An uncontrolled creature disappears at the end of the spell's maximum duration.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "Use the higher spell slot level wherever the spell's level appears in the stat block.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_contact-other-plane", + "fields": { + "name": "Contact Other Plane", + "desc": "You consult an otherworldly entity, risking your very mind in the process. Make a DC 15 Intelligence saving throw. On a failure, you take 6d6 psychic damage and suffer four levels of strife until you finish a long rest. A _greater restoration_ spell ends this effect.\n\nOn a successful save, you can ask the entity up to 5 questions before the spell ends. When possible the entity responds with one-word answers: yes, no, maybe, never, irrelevant, or unclear. At the Narrator's discretion, it may instead provide a brief but truthful answer when necessary.", + "document": "a5e-ag", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_contagion", + "fields": { + "name": "Contagion", + "desc": "Your touch inflicts a hideous disease. Make a melee spell attack. On a hit, you afflict the target with a disease chosen from the list below.\n\nThe target must make a Constitution saving throw at the end of each of its turns. After three failed saves, the disease lasts for the duration and the creature stops making saves, or after three successful saves, the creature recovers and the spell ends. A greater restoration spell or similar effect also ends the disease.\n\n* **Blinding Sickness:** The target's eyes turn milky white. It is blinded and has disadvantage on Wisdom checks and saving throws.\n* **Filth Fever:** The target is wracked by fever. It has disadvantage when using Strength for an ability check, attack roll, or saving throw.\n* **Flesh Rot:** The target's flesh rots. It has disadvantage on Charisma ability checks and becomes vulnerable to all damage.\n* **Mindfire:** The target hallucinates. During combat it is confused, and it has disadvantage when using Intelligence for an ability check or saving throw.\n* **Rattling Cough:** The target becomes discombobulated as it hacks with body-wracking coughs. It is rattled and has disadvantage when using Dexterity for an ability check, attack roll, or saving throw.\n* **Slimy Doom:** The target bleeds uncontrollably. It has disadvantage when using Constitution for an ability check or saving throw. Whenever it takes damage, the target is stunned until the end of its next turn.", + "document": "a5e-ag", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "7 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_contingency", + "fields": { + "name": "Contingency", + "desc": "As part of this spell, cast a spell of 5th-level or lower that has a casting time of 1 action, expending spell slots for both. The second spell must target you, and doesn't target others even if it normally would.\n\nDescribe the circumstances under which the second spell should be cast. It is automatically triggered the first time these circumstances are met. This spell ends when the second spell is triggered, when you cast _contingency_ again, or if the material component for it is not on your person. For example, when you cast _contingency_ with _blur_ as a second spell you might make the trigger be when you see a creature target you with a weapon attack, or you might make it be when you make a weapon attack against a creature, or you could choose for it to be when you see an ally make a weapon attack against a creature.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_continual-flame", + "fields": { + "name": "Continual Flame", + "desc": "A magical torch-like flame springs forth from the target. The flame creates no heat, doesn't consume oxygen, and can't be extinguished, but it can be covered.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_control-water", + "fields": { + "name": "Control Water", + "desc": "Water inside the area is yours to command. On the round you cast it, and as an action on subsequent turns until the spell ends, you can choose one of the following effects. When you choose a different effect, the current one ends.\n\n* **Flood:** The standing water level rises by up to 20 feet. The flood water spills onto land if the area includes a shore, but when the area is in a large body of water you instead create a 20-foottall wave. The wave travels across the area and crashes down, carrying Huge or smaller vehicles to the other side, each of which has a 25% chance of capsizing. The wave repeats on the start of your next turn while this effect continues.\n* **Part Water:** You create a 20-foot wide trench spanning the area with walls of water to either side. When this effect ends, the trench slowly refills over the course of the next round.\nRedirect Flow: Flowing water in the area moves in a direction you choose, including up. Once the water moves beyond the spell's area, it resumes its regular flow based on the terrain.\n* **Whirlpool:** If the affected body of water is at least 50 feet square and 25 feet deep, a whirlpool forms within the area in a 50-foot wide cone that is 25 feet long. Creatures and objects that are in the area and within 25 feet of the whirlpool make an Athletics check against your spell save DC or are pulled 10 feet toward it. Once within the whirlpool, checks made to swim out of it have disadvantage. When a creature first enters the whirlpool on a turn or starts its turn there, it makes a Strength saving throw or takes 2d8 bludgeoning damage and is pulled into the center of the whirlpool. On a successful save, the creature takes half damage and isn't pulled.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "10 minutes", + "shape_type": "cone", + "shape_magnitude": 50, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_control-weather", + "fields": { + "name": "Control Weather", + "desc": "You must be outdoors to cast this spell, and it ends early if you don't have a clear path to the sky.\n\nUntil the spell ends, you change the weather conditions in the area from what is normal for the current climate and season. Choose to increase or decrease each weather condition (precipitation, temperature, and wind) up or down by one stage on the following tables. Whenever you change the wind, you can also change its direction. The new conditions take effect after 1d4 × 10 minutes, at which point you can change the conditions again. The weather gradually returns to normal when the spell ends.", + "document": "a5e-ag", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_corpse-explosion", + "fields": { + "name": "Corpse Explosion", + "desc": "A corpse explodes in a poisonous cloud. Each creature in a 10-foot radius of the corpse must make a Constitution saving throw. A creature takes 3d6 thunder damage and is poisoned for 1 minute on a failed save, or it takes half as much damage and is not poisoned on a successful one. A poisoned creature can repeat the saving throw at the end of each of its turns, ending the effect for itself on a success.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "You target an additional corpse for every 2 slot levels above 1st.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_counterspell", + "fields": { + "name": "Counterspell", + "desc": "You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 2nd-level or lower, its spell fails and has no effect.\n\nIf it is casting a spell of 3rd-level or higher, make an ability check using your spellcasting ability (DC 10 + the spell's level). On a success, the creature's spell fails and has no effect, but the creature can use its reaction to reshape the fraying magic and cast another spell with the same casting time as the original spell.\n\nThis new spell must be cast at a spell slot level equal to or less than half the original spell slot.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "The interrupted spell has no effect if its level is less than the level of the spell slot used to cast this spell, or if both spells use the same level spell slot an opposed spellcasting ability check is made.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "reaction", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_create-food-and-water", + "fields": { + "name": "Create Food and Water", + "desc": "Your magic turns one serving of food or water into 3 Supply. The food is nourishing but bland, and the water is clean. After 24 hours uneaten food spoils and water affected or created by this spell goes bad.", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "You create an additional 2 Supply for each slot level above 3rd.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_create-or-destroy-water", + "fields": { + "name": "Create or Destroy Water", + "desc": "Choose one of the following.\n\n* **Create Water:** You fill the target with up to 10 gallons of nonpotable water or 1 Supply of clean water. Alternatively, the water falls as rain that extinguishes exposed flames in the area.\n* **Destroy Water:** You destroy up to 10 gallons of water in the target. Alternatively, you destroy fog in the area.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "For each slot level above 1st, you either create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet.", + "target_type": "area", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_create-undead", + "fields": { + "name": "Create Undead", + "desc": "This spell cannot be cast in sunlight. You reanimate the targets as undead and transform them into ghouls under your control.\n\nWhile it is within 120 feet you can use a bonus action to mentally command the undead. When you command multiple undead using this spell, you must give them all the same command. You may decide the action the undead takes and where it moves during its next turn, or you can issue a general command, such as guarding an area. If not given a command, the undead only defends itself. The undead continues to follow a command until its task is complete.\n\nThe undead is under your control for 24 hours, after which it stops obeying any commands. You must cast this spell on the undead before the spell ends to maintain control of it for another 24 hours. Casting the spell in this way reasserts control over up to 3 undead you have animated with this spell, rather than animating a new one.", + "document": "a5e-ag", + "level": 6, + "school": "necromancy", + "higher_level": "You create or reassert control over one additional ghoul for each slot level above 6th. Alternatively, when using an 8th-level spell slot you create or reassert control over 2 ghasts or wights, or when using a 9th-level spell slot you create or reassert control over 3 ghasts or wights, or 2 mummies. When commanding more than 3 undead they make group attack rolls (see page 454 in Chapter 8: Combat).", + "target_type": "area", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_creation", + "fields": { + "name": "Creation", + "desc": "You weave raw magic into a mundane physical object no larger than a 5-foot cube. The object must be of a form and material you have seen before. Using the object as a material component for another spell causes that spell to fail.\n\nThe spell's duration is determined by the object's material. An object composed of multiple materials uses the shortest duration.", + "document": "a5e-ag", + "level": 5, + "school": "illusion", + "higher_level": "The size of the cube increases by 5 feet for each slot level above 5th.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_crushing-haymaker", + "fields": { + "name": "Crushing Haymaker", + "desc": "Your fist reverberates with destructive energy, and woe betide whatever it strikes. As part of casting the spell, make a melee spell attack against a creature or object within 5 feet. If you hit, the target of your attack takes 7d6 thunder damage, and must make a Constitution saving throw or be knocked prone and stunned until the end of its next turn. This spell's damage is doubled against objects and structures.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "The spell deals an extra 1d6 of thunder damage for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "7d6", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_cure-wounds", + "fields": { + "name": "Cure Wounds", + "desc": "The target regains hit points equal to 1d8 + your spellcasting ability modifier.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The hit points regained increase by 1d8 for each slot level above 1st.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_dancing-lights", + "fields": { + "name": "Dancing Lights", + "desc": "You create up to four hovering lights which appear as torches, lanterns, or glowing orbs that can be combined into a glowing Medium-sized humanoid form. Each sheds dim light in a 10-foot radius.\n\nYou can use a bonus action to move the lights up to 60 feet so long as each remains within 20 feet of another light created by this spell. A dancing light winks out when it exceeds the spell's range.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_darklight", + "fields": { + "name": "Darklight", + "desc": "You create an enchanted flame that surrounds your hand and produces no heat, but sheds bright light in a 20-foot radius around you and dim light for an additional 20 feet. Only you and up to 6 creatures of your choice can see this light.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_darkness", + "fields": { + "name": "Darkness", + "desc": "Magical darkness heavily obscures darkvision and blocks nonmagical light in the area. The darkness spreads around corners. If any of the area overlaps with magical light created by a spell of 2nd-level or lower, the spell that created the light is dispelled.\n\nWhen cast on an object that is in your possession or unattended, the darkness emanates from it and moves with it. Completely covering the object with something that is not transparent blocks the darkness.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_darkvision", + "fields": { + "name": "Darkvision", + "desc": "The target gains darkvision out to a range of 60 feet.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "The range of the target's darkvision increases to 120 feet. In addition, for each slot level above 3rd you may choose an additional target.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_daylight", + "fields": { + "name": "Daylight", + "desc": "Magical light fills the area. The area is brightly lit and sheds dim light for an additional 60 feet. If any of the area overlaps with magical darkness created by a spell of 3rd-level or lower, the spell that created the darkness is dispelled.\n\nWhen cast on an object that is in your possession or unattended, the light shines from it and moves with it. Completely covering the object with something that is not transparent blocks the light.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_deadweight", + "fields": { + "name": "Deadweight", + "desc": "The target object's weight is greatly increased. Any creature holding the object must succeed on a Strength saving throw or drop it. A creature which doesn't drop the object has disadvantage on attack rolls until the start of your next turn as it figures out the object's new balance.\n\nCreatures that attempt to push, drag, or lift the object must succeed on a Strength check against your spell save DC to do so.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_death-ward", + "fields": { + "name": "Death Ward", + "desc": "The first time damage would reduce the target to 0 hit points, it instead drops to 1 hit point. If the target is subjected to an effect that would kill it instantaneously without dealing damage, that effect is negated. The spell ends immediately after either of these conditions occur.", + "document": "a5e-ag", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_delayed-blast-fireball", + "fields": { + "name": "Delayed Blast Fireball", + "desc": "A glowing bead of yellow light flies from your finger and lingers at a point at the center of the area until you end the spell—either because your concentration is broken or because you choose to end it—and the bead detonates. Each creature in the area takes 12d6 fire damage. If at the end of your turn the bead has not yet detonated, the damage increases by 1d6.\n\nIf touched before the spell ends, the creature touching the bead makes a Dexterity saving throw or the bead detonates. On a successful save, the creature can use an action to throw the bead up to 40 feet, moving the area with it. If the bead strikes a creature or solid object, the bead detonates.\n\nThe fire spreads around corners, and it damages and ignites any flammable unattended objects in the area.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "The damage increases by 1d6 for each slot level above 7th.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "12d6", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_demiplane", + "fields": { + "name": "Demiplane", + "desc": "You create a shadowy door on the target. The door is large enough for Medium creatures to pass through. The door leads to a demiplane that appears as an empty, 30-foot-cube chamber made of wood or stone. When the spell ends, the door disappears from both sides, trapping any creatures or objects inside the demiplane.\n\nEach time you cast this spell, you can either create a new demiplane, conjure the door to a demiplane you have previously created, or make a door leading to a demiplane whose nature or contents you are familiar with.", + "document": "a5e-ag", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_detect-evil-and-good", + "fields": { + "name": "Detect Evil and Good", + "desc": "You attempt to sense the presence of otherworldly forces. You automatically know if there is a place or object within range that has been magically consecrated or desecrated. In addition, on the round you cast it and as an action on subsequent turns until the spell ends, you may make a Wisdom (Religion) check against the passive Deception score of any aberration, celestial, elemental, fey, fiend, or undead creature within range. On a success, you sense the creature's presence, as well as where the creature is located.\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", + "document": "a5e-ag", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_detect-magic", + "fields": { + "name": "Detect Magic", + "desc": "Until the spell ends, you automatically sense the presence of magic within range, and you can use an action to study the aura of a magic effect to learn its schools of magic (if any).\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", + "document": "a5e-ag", + "level": 1, + "school": "divination", + "higher_level": "When using a 2nd-level spell slot or higher, the spell no longer requires your concentration. When using a 3rd-level spell slot or higher, the duration increases to 1 hour. When using a 4th-level spell slot or higher, the duration increases to 8 hours.", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_detect-poison-and-disease", + "fields": { + "name": "Detect Poison and Disease", + "desc": "On the round you cast it, and as an action on subsequent turns until the spell ends, you can attempt to sense the presence of poisons, poisonous creatures, and disease by making a Perception check. On a success you identify the type of each poison or disease within range. Typically noticing and identifying a poison or disease is a DC 10 check, but the Narrator may use DC 15 for uncommon afflictions, DC 20 for rare afflictions, or DC 25 for afflictions that are truly unique. On a failed check, this casting of the spell cannot sense that specific poison or disease.\n\nThe spell penetrates most barriers but is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead.", + "document": "a5e-ag", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_detect-thoughts", + "fields": { + "name": "Detect Thoughts", + "desc": "On the round you cast it, and as an action on subsequent turns until the spell ends, you can probe a creature's mind to read its thoughts by focusing on one creature you can see within range. The creature makes a Wisdom saving throw. Creatures with an Intelligence score of 3 or less or that don't speak any languages are unaffected. On a failed save, you learn the creature's surface thoughts —what is most on its mind in that moment. On a successful save, you fail to read the creature's thoughts and can't attempt to probe its mind for the duration. Conversation naturally shapes the course of a creature's thoughts and what it is thinking about may change based on questions verbally directed at it.\n\nOnce you have read a creature's surface thoughts, you can use an action to probe deeper into its mind. The creature makes a second Wisdom saving throw. On a successful save, you fail to read the creature's deeper thoughts and the spell ends. On a failure, you gain insight into the creature's motivations, emotional state, and something that looms large in its mind.\n\nThe creature then becomes aware you are probing its mind and can use an action to make an Intelligence check contested by your Intelligence check, ending the spell if it succeeds.\n\nAdditionally, you can use an action to scan for thinking creatures within range that you can't see.\n\nOnce you detect the presence of a thinking creature, so long as it remains within range you can attempt to read its thoughts as described above (even if you can't see it).\n\nThe spell penetrates most barriers but is blocked by 2 feet of stone, 2 inches of common metal, or a thin sheet of lead.", + "document": "a5e-ag", + "level": 2, + "school": "divination", + "higher_level": "When using a 5th-level spell slot, increase the spell's range to 1 mile. When using a 7th-level spell slot, increase the range to 10 miles.\n\nWhen using a 9th-level spell slot, increase the range to 1, 000 miles.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_dimension-door", + "fields": { + "name": "Dimension Door", + "desc": "You teleport to any place you can see, visualize, or describe by stating distance and direction such as 200 feet straight downward or 400 feet upward at a 30-degree angle to the southeast.\n\nYou can bring along objects if their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller, provided it isn't carrying gear beyond its carrying capacity and is within 5 feet.\n\nIf you would arrive in an occupied space the spell fails, and you and any creature with you each take 4d6 force damage.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "500 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_disguise-self", + "fields": { + "name": "Disguise Self", + "desc": "Until the spell ends or you use an action to dismiss it, you and your gear are cloaked by an illusory disguise that makes you appear like another creature of your general size and body type, including but not limited to: your heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, hair style and length, skin and eye coloration, sex, and any other distinguishing features. You cannot disguise yourself as a creature of a different size category, and your limb structure remains the same; for example if you're bipedal, you can't use this spell to appear as a quadruped.\n\nThe disguise does not hold up to physical inspection. A creature that tries to grab an illusory hat, for example, finds its hand passes straight through the figment. To see through your disguise without such an inspection, a creature must use its action to make an Investigation check against your spell save DC.", + "document": "a5e-ag", + "level": 1, + "school": "illusion", + "higher_level": "When using a 3rd-level spell slot or higher, this spell functions identically to the seeming spell, except the spell's duration is 10 minutes.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_disintegrate", + "fields": { + "name": "Disintegrate", + "desc": "A pale ray emanates from your pointed finger to the target as you attempt to undo it.\n\nThe target takes 10d6 + 40 force damage. A creature reduced to 0 hit points is obliterated, leaving behind nothing but fine dust, along with anything it was wearing or carrying (except magic items). Only true resurrection or a wish spell can restore it to life.\n\nThis spell automatically disintegrates nonmagical objects and creations of magical force that are Large-sized or smaller. Larger objects and creations of magical force have a 10-foot-cube portion disintegrated instead. Magic items are unaffected.", + "document": "a5e-ag", + "level": 6, + "school": "transmutation", + "higher_level": "The damage increases by 3d6 for each slot level above 6th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "10d6+40", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_dispel-evil-and-good", + "fields": { + "name": "Dispel Evil and Good", + "desc": "A nimbus of power surrounds you, making you more able to resist and destroy beings from beyond the realms material.\n\nUntil the spell ends, celestials, elementals, fey, fiends, and undead have disadvantage on attack rolls against you.\n\nYou can end the spell early by using an action to do either of the following.\n\n* **Mental Resistance:** Choose up to 3 friendly creatures within 60 feet. Each of those creatures that is charmed, frightened, or possessed by a celestial, elemental, fey, fiend, or undead may make an immediate saving throw with advantage against the condition or possession, ending it on a success.\n* **Retribution:** Make a melee spell attack against a celestial, elemental, fey, fiend, or undead within reach. On a hit, the creature takes 7d8 radiant or necrotic damage (your choice) and is stunned until the beginning of your next turn.", + "document": "a5e-ag", + "level": 5, + "school": "abjuration", + "higher_level": "Mental Resistance targets one additional creature for each slot level above 5th, and Retribution's damage increases by 1d8 for each slot level above 5th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "7d8", + "damage_types": [ + "necrotic", + "radiant" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_dispel-magic", + "fields": { + "name": "Dispel Magic", + "desc": "You scour the magic from your target. Any spell cast on the target ends if it was cast with a spell slot of 3rd-level or lower. For spells using a spell slot of 4th-level or higher, make an ability check with a DC equal to 10 + the spell's level for each one, ending the effect on a success.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "You automatically end the effects of a spell on the target if the level of the spell slot used to cast it is equal to or less than the level of the spell slot used to cast dispel magic.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_divination", + "fields": { + "name": "Divination", + "desc": "Your offering and magic put you in contact with the higher power you serve or its representatives.\n\nYou ask a single question about something that will (or could) happen in the next 7 days. The Narrator offers a truthful reply, which may be cryptic or even nonverbal as appropriate to the being in question.\n\nThe reply does not account for possible circumstances that could change the outcome, such as making additional precautions.\n\nWhen you cast this spell again before finishing a long rest, the chance of getting a random reading from the above options increases. The Narrator makes the following roll in secret: second casting—25%, third casting—50%, fourth casting—75%, fifth casting—100%.", + "document": "a5e-ag", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_divine-favor", + "fields": { + "name": "Divine Favor", + "desc": "You imbue divine power into your strikes. Until the spell ends, you deal an extra 1d4 radiant damage with your weapon attacks.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_divine-word", + "fields": { + "name": "Divine Word", + "desc": "You utter a primordial imprecation that brings woe upon your enemies. A target suffers an effect based on its current hit points.\n\n* Fewer than 50 hit points: deafened for 1 minute.\n* Fewer than 40 hit points: blinded and deafened for 10 minutes.\n* Fewer than 30 hit points: stunned, blinded, and deafened for 1 hour.\n* Fewer than 20 hit points: instantly killed outright.\n\nAdditionally, when a celestial, elemental, fey, or fiend is affected by this spell it is immediately forced back to its home plane and for 24 hours it is unable to return to your current plane by any means less powerful than a wish spell. Such a creature does not suffer this effect if it is already on its plane of origin.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_dominate-beast", + "fields": { + "name": "Dominate Beast", + "desc": "You assert control over the target beast's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", + "document": "a5e-ag", + "level": 4, + "school": "enchantment", + "higher_level": "The spell's duration is extended: 5th-level—Concentration (10 minutes), 6th-level—Concentration (1 hour), 7th-level—Concentration (8 hours).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_dominate-monster", + "fields": { + "name": "Dominate Monster", + "desc": "You assert control over the target creature's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", + "document": "a5e-ag", + "level": 8, + "school": "enchantment", + "higher_level": "The duration is Concentration (8 hours)", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_dominate-person", + "fields": { + "name": "Dominate Person", + "desc": "You assert control over the target humanoid's mind and it is charmed for the duration. If it is engaged in combat with you or creatures friendly to you, it has advantage on its saving throw.\n\nUntil the charmed condition ends, you establish a telepathic link with it while you are on the same plane. You may issue commands through this link and the target does its best to obey. No action is required to issue commands, which can be a simple and general course of action such as \"Attack that target, \" \"Go over there, \" or \"Bring me that object.\" Without commands the target only defends itself. The target continues to follow a command until its task is complete.\n\nYou can use your action to assume direct control of the target. Until the end of your next turn, you decide all of the target's actions and it does nothing you do not allow it to. While a target is directly controlled in this way, you can also cause it to use a reaction, but this requires you to use your own reaction as well.\n\nEach time the target takes damage, it makes a new saving throw against the spell, ending the spell on a success.", + "document": "a5e-ag", + "level": 5, + "school": "enchantment", + "higher_level": "The spell's duration is extended: 6th-level—Concentration (10 minutes), 7th-level —Concentration (1 hour), 8th-level —Concentration (8 hours).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_dramatic-sting", + "fields": { + "name": "Dramatic Sting", + "desc": "You frighten the target by echoing its movements with ominous music and terrifying sound effects. It takes 1d4 psychic damage and becomes frightened of you until the spell ends.\n\nAt the end of each of the creature's turns, it can make another Wisdom saving throw, ending the effect on itself on a success. On a failed save, the creature takes 1d4 psychic damage.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "The damage increases by 1d4 for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "1d4", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_dream", + "fields": { + "name": "Dream", + "desc": "Until the spell ends, you manipulate the dreams of another creature. You designate a messenger, which may be you or a willing creature you touch, to enter a trance. The messenger remains aware of its surroundings while in the trance but cannot take actions or move.\n\nIf the target is sleeping the messenger appears in its dreams and can converse with the target as long as it remains asleep and the spell remains active. The messenger can also manipulate the dream, creating objects, landscapes, and various other sensory sensations. The messenger can choose to end the trance at any time, ending the spell. The target remembers the dream in perfect detail when it wakes. The messenger knows if the target is awake when you cast the spell and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the spell works as described.\n\nYou can choose to let the messenger terrorize the target. The messenger can deliver a message of 10 words or fewer and the target must make a Wisdom saving throw. If you have a portion of the target's body (some hair or a drop of blood) it has disadvantage on its saving throw. On a failed save, echoes of the messenger's fearful aspect create a nightmare that lasts the duration of the target's sleep and prevents it from gaining any benefit from the rest. In addition, upon waking the target suffers a level of fatigue or strife (your choice), up to a maximum of 3 in either condition.\n\nCreatures that don't sleep or don't dream (such as elves) cannot be contacted by this spell.", + "document": "a5e-ag", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Special", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_druidcraft", + "fields": { + "name": "Druidcraft", + "desc": "You call upon your mastery of nature to produce one of the following effects within range:\n\n* You create a minor, harmless sensory effect that lasts for 1 round and predicts the next 24 hours of weather in your current location. For example, the effect might create a miniature thunderhead if storms are predicted.\n* You instantly make a plant feature develop, but never to produce Supply. For example, you can cause a flower to bloom or a seed pod to open.\n* You create an instantaneous, harmless sensory effect such as the sound of running water, birdsong, or the smell of mulch. The effect must fit in a 5-foot cube.\n* You instantly ignite or extinguish a candle, torch, smoking pipe, or small campfire.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_earth-barrier", + "fields": { + "name": "Earth Barrier", + "desc": "Choose an unoccupied space between you and the source of the attack which triggers the spell. You call forth a pillar of earth or stone (3 feet diameter, 20 feet tall, AC 10, 20 hit points) in that space that provides you with three-quarters cover (+5 to AC, Dexterity saving throws, and ability checks made to hide).", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_earthquake", + "fields": { + "name": "Earthquake", + "desc": "You create a seismic disturbance in the spell's area. Until the spell ends, an intense tremor rips through the ground and shakes anything in contact with it.\n\nThe ground in the spell's area becomes difficult terrain as it warps and cracks.\n\nWhen you cast this spell and at the end of each turn you spend concentrating on it, each creature in contact with the ground in the spell's area must make a Dexterity saving throw or be knocked prone.\n\nAdditionally, any creature that is concentrating on a spell while in contact with the ground in the spell's area must make a Constitution saving throw or lose concentration.\n\nAt the Narrator's discretion, this spell may have additional effects depending on the terrain in the area.\n\n* **Fissures:** Fissures open within the spell's area at the start of your next turn after you cast the spell. A total of 1d6 such fissures open in locations you choose. Each is 1d10 × 10 feet deep, 10 feet wide, and extends from one edge of the spell's area to the opposite side. A creature standing on a spot where a fissure opens makes a Dexterity saving throw or falls in. On a successful save, a creature moves with the fissure's edge as it opens.\n* A structure automatically collapses if a fissure opens beneath it (see below).\n* **Structures:** A structure in contact with the ground in the spell's area takes 50 bludgeoning damage when you cast the spell and again at the start of each of your turns while the spell is active. A structure reduced to 0 hit points this way collapses.\n* Creatures within half the distance of a collapsing structure's height make a Dexterity saving throw or take 5d6 bludgeoning damage, are knocked prone, and are buried in the rubble, requiring a DC 20 Acrobatics or Athletics check as an action to escape. A creature inside (instead of near) a collapsing structure has disadvantage on its saving throw. The Narrator can adjust the DC higher or lower depending on the composition of the rubble. On a successful save, the creature takes half as much damage and doesn't fall prone or become buried.", + "document": "a5e-ag", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "500 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "50", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_eldritch-cube", + "fields": { + "name": "Eldritch Cube", + "desc": "A black, nonreflective, incorporeal 10-foot cube appears in an unoccupied space that you can see. Its space can be in midair if you so desire. When a creature starts its turn in the cube or enters the cube for the first time on its turn it must make an Intelligence saving throw, taking 5d6 psychic damage on a failed save, or half damage on a success.\n\nAs a bonus action, you can move the cube up to 10 feet in any direction to a space you can see. The cube cannot be made to pass through other creatures in this way.", + "document": "a5e-ag", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_enhance-ability", + "fields": { + "name": "Enhance Ability", + "desc": "You bestow a magical enhancement on the target. Choose one of the following effects for the target to receive until the spell ends.\n\n* **Bear's Endurance:** The target has advantage on Constitution checks and it gains 2d6 temporary hit points (lost when the spell ends).\n* **Bull's Strength:** The target has advantage on Strength checks and doubles its carrying capacity.\n* **Cat's Grace:** The target has advantage on Dexterity checks and it reduces any falling damage it takes by 10 unless it is incapacitated.\n* **Eagle's Splendor:** The target has advantage on Charisma checks and is instantly cleaned (as if it had just bathed and put on fresh clothing).\n* **Fox's Cunning:** The target has advantage on Intelligence checks and on checks using gaming sets.\n* **Owl's Wisdom:** The target has advantage on Wisdom checks and it gains darkvision to a range of 30 feet (or extends its existing darkvision by 30 feet).", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "You target one additional creature for each slot level above 2nd.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_enlargereduce", + "fields": { + "name": "Enlarge/Reduce", + "desc": "You cause the target to grow or shrink. An unwilling target may attempt a saving throw to resist the spell.\n\nIf the target is a creature, all items worn or carried by it also change size with it, but an item dropped by the target immediately returns to normal size.\n\n* **Enlarge:** Until the spell ends, the target's size increases by one size category. Its size doubles in all dimensions and its weight increases eightfold. The target also has advantage on Strength checks and Strength saving throws. Its weapons also enlarge, dealing an extra 1d4 damage.\n* **Reduce:** Until the spell ends, the target's size decreases one size category. Its size is halved in all dimensions and its weight decreases to one-eighth of its normal value. The target has disadvantage on Strength checks and Strength saving throws and its weapons shrink, dealing 1d4 less damage (its attacks deal a minimum of 1 damage).", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "When using a spell slot of 4th-level, you can cause the target and its gear to increase by two size categories—from Medium to Huge, for example. Until the spell ends, the target's size is quadrupled in all dimensions, multiplying its weight twentyfold. The target has advantage on Strength checks and Strength saving throws. Its weapons also enlarge, dealing an extra 2d4 damage.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_enrage-architecture", + "fields": { + "name": "Enrage Architecture", + "desc": "You animate and enrage a target building that lashes out at its inhabitants and surroundings. As a bonus action you may command the target to open, close, lock, or unlock any nonmagical doors or windows, or to thrash about and attempt to crush its inhabitants. While the target is thrashing, any creature inside or within 30 feet of it must make a Dexterity saving throw, taking 2d10+5 bludgeoning damage on a failed save or half as much on a successful one. When the spell ends, the target returns to its previous state, magically repairing any damage it sustained during the spell's duration.", + "document": "a5e-ag", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_entangle", + "fields": { + "name": "Entangle", + "desc": "Constraining plants erupt from the ground in the spell's area, wrapping vines and tendrils around creatures. Until the spell ends, the area is difficult terrain.\n\nA creature in the area when you cast the spell makes a Strength saving throw or it becomes restrained as the plants wrap around it. A creature restrained in this way can use its action to make a Strength check against your spell save DC, freeing itself on a success.\n\nWhen the spell ends, the plants wither away.", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_enthrall", + "fields": { + "name": "Enthrall", + "desc": "You weave a compelling stream of words that captivates your targets. Any target that can't be charmed automatically succeeds on its saving throw, and targets fighting you or creatures friendly to you have advantage on the saving throw.\n\nUntil the spell ends or a target can no longer hear you, it has disadvantage on Perception checks made to perceive any creature other than you. The spell ends if you are incapacitated or can no longer speak.", + "document": "a5e-ag", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_etherealness", + "fields": { + "name": "Etherealness", + "desc": "Until the spell ends or you use an action to end it, you step into the border regions of the Ethereal Plane where it overlaps with your current plane. While on the Ethereal Plane, you can move in any direction, but vertical movement is considered difficult terrain. You can see and hear the plane you originated from, but everything looks desaturated and you can see no further than 60 feet.\n\nWhile on the Ethereal Plane, you can only affect and be affected by other creatures on that plane. Creatures not on the Ethereal Plane can't perceive you unless some special ability or magic explicitly allows them to.\n\nWhen the spell ends, you immediately return to the plane you originated from in the spot you currently occupy. If you occupy the same spot as a solid object or creature when this happens, you are immediately shunted to the nearest unoccupied space and you take force damage equal to twice the number of feet you are moved.\n\nThe spell has no effect if you cast it while you are on the Ethereal Plane or a plane that doesn't border it, such as an Outer Plane.", + "document": "a5e-ag", + "level": 7, + "school": "transmutation", + "higher_level": "You can target up to 3 willing creatures within 10 feet (including you) for each slot level above 7th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_expeditious-retreat", + "fields": { + "name": "Expeditious Retreat", + "desc": "Until the spell ends, you're able to move with incredible speed. When you cast the spell and as a bonus action on subsequent turns, you can take the Dash action.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "Your Speed increases by 10 feet for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_eyebite", + "fields": { + "name": "Eyebite", + "desc": "Your eyes become an inky void imbued with fell power. One creature of your choice within 60 feet of you that you can see and that can see you must succeed on a Wisdom saving throw or be afflicted by one of the following effects for the duration. Until the spell ends, on each of your turns you can use an action to target a creature that has not already succeeded on a saving throw against this casting of _eyebite_.\n\n* **Asleep:** The target falls unconscious, waking if it takes any damage or another creature uses an action to rouse it.\n* **Panicked:** The target is frightened of you. On each of its turns, the frightened creature uses its action to take the Dash action and move away from you by the safest and shortest available route unless there is nowhere for it to move. If the target moves to a place at least 60 feet away from you where it can no longer see you, this effect ends.\n* **Sickened:** The target has disadvantage on attack rolls and ability checks. At the end of each of its turns, it can make another Wisdom saving throw, ending this effect on a successful save.", + "document": "a5e-ag", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_fabricate", + "fields": { + "name": "Fabricate", + "desc": "You convert raw materials into finished items of the same material. For example, you can fabricate a pitcher from a lump of clay, a bridge from a pile of lumber or group of trees, or rope from a patch of hemp.\n\nWhen you cast the spell, select raw materials you can see within range. From them, the spell fabricates a Large or smaller object (contained within a single 10-foot cube or up to eight connected 5-foot cubes) given a sufficient quantity of raw material. When fabricating with metal, stone, or another mineral substance, the fabricated object can be no larger than Medium (contained within a single 5-foot cube). The quality of any objects made with the spell is equivalent to the quality of the raw materials.\n\nCreatures or magic items can't be created or used as materials with this spell. It also may not be used to create items that require highly-specialized craftsmanship such as armor, weapons, clockworks, glass, or jewelry unless you have proficiency with the type of artisan's tools needed to craft such objects.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_faerie-fire", + "fields": { + "name": "Faerie Fire", + "desc": "Each object in a 20-foot cube within range is outlined in light (your choice of color). Any creature in the area when the spell is cast is also outlined unless it makes a Dexterity saving throw. Until the spell ends, affected objects and creatures shed dim light in a 10-foot radius.\n\nAny attack roll against an affected object or creature has advantage. The spell also negates the benefits of invisibility on affected creatures and objects.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_faithful-hound", + "fields": { + "name": "Faithful Hound", + "desc": "You conjure a phantasmal watchdog. Until the spell ends, the hound remains in the area unless you spend an action to dismiss it or you move more than 100 feet away from it.\n\nThe hound is invisible except to you and can't be harmed. When a Small or larger creature enters the area without speaking a password you specify when casting the spell, the hound starts barking loudly. The hound sees invisible creatures, can see into the Ethereal Plane, and is immune to illusions.\n\nAt the start of each of your turns, the hound makes a bite attack against a hostile creature of your choice that is within the area, using your spell attack bonus and dealing 4d8 piercing damage on a hit.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_false-life", + "fields": { + "name": "False Life", + "desc": "You are bolstered with fell energies resembling life, gaining 1d4+4 temporary hit points that last until the spell ends.", + "document": "a5e-ag", + "level": 1, + "school": "necromancy", + "higher_level": "Gain an additional 5 temporary hit points for each slot level above 1st.", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_fear", + "fields": { + "name": "Fear", + "desc": "You project a phantasmal image into the minds of each creature in the area showing them what they fear most. On a failed save, a creature becomes frightened until the spell ends and must drop whatever it is holding.\n\nOn each of its turns, a creature frightened by this spell uses its action to take the Dash action and move away from you by the safest available route. If there is nowhere it can move, it remains stationary. When the creature ends its turn in a location where it doesn't have line of sight to you, the creature can repeat the saving throw, ending the spell's effects on it on a successful save.", + "document": "a5e-ag", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_feather-fall", + "fields": { + "name": "Feather Fall", + "desc": "Magic slows the descent of each target. Until the spell ends, a target's rate of descent slows to 60 feet per round. If a target lands before the spell ends, it takes no falling damage and can land on its feet, ending the spell for that target.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "When using a 2nd-level spell slot, targets can move horizontally 1 foot for every 1 foot they descend, effectively gliding through the air until they land or the spell ends.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_feeblemind", + "fields": { + "name": "Feeblemind", + "desc": "You blast the target's mind, attempting to crush its intellect and sense of self. The target takes 4d6 psychic damage.\n\nOn a failed save, until the spell ends the creature's Intelligence and Charisma scores are both reduced to 1\\. The creature can't cast spells, activate magic items, understand language, or communicate in any intelligible way, but it is still able to recognize, follow, and even protect its allies.\n\nAt the end of every 30 days, the creature can repeat its saving throw against this spell, ending it on a success.\n\n_Greater restoration_, _heal_, or _wish_ can also be used to end the spell.", + "document": "a5e-ag", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_find-familiar", + "fields": { + "name": "Find Familiar", + "desc": "Your familiar, a spirit that takes the form of any CR 0 beast of Small or Tiny size, appears in an unoccupied space within range. It has the statistics of the chosen form, but is your choice of a celestial, fey, or fiend (instead of a beast).\n\nYour familiar is an independent creature that rolls its own initiative and acts on its own turn in combat (but cannot take the Attack action). However, it is loyal to you and always obeys your commands.\n\nWhen the familiar drops to 0 hit points, it vanishes without a trace. Casting the spell again causes it to reappear.\n\nYou are able to communicate telepathically with your familiar when it is within 100 feet. As long as it is within this range, you can use an action to see through your familiar's eyes and hear through its ears until the beginning of your next turn, gaining the benefit of any special senses it has. During this time, you are blind and deaf to your body's surroundings.\n\nYou can use an action to either permanently dismiss your familiar or temporarily dismiss it to a pocket dimension where it awaits your summons. While it is temporarily dismissed, you can use an action to call it back, causing it to appear in any unoccupied space within 30 feet of you.\n\nYou can't have more than one familiar at a time, but if you cast this spell while you already have a familiar, you can cause it to adopt a different form.\n\nFinally, when you cast a spell with a range of Touch and your familiar is within 100 feet of you, it can deliver the spell as if it was the spellcaster. Your familiar must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, use your attack bonus for the spell.", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_find-steed", + "fields": { + "name": "Find Steed", + "desc": "You summon a spirit that takes the form of a loyal mount, creating a lasting bond with it. You decide on the steed's appearance, and choose whether it uses the statistics of an elk, giant lizard, panther, warhorse, or wolf (the Narrator may offer additional options.) Its statistics change in the following ways:\n\n* Its type is your choice of celestial, fey, or fiend.\n* Its size is your choice of Medium or Large.\n* Its Intelligence is 6.\n* You can communicate with it telepathically while it's within 1 mile.\n* It understands one language that you speak.\n\nWhile mounted on your steed, when you cast a spell that targets only yourself, you may also target the steed.\n\nWhen you use an action to dismiss the steed, or when it drops to 0 hit points, it temporarily disappears. Casting this spell again resummons the steed, fully healed and with all conditions removed. You can't summon a different steed unless you spend an action to release your current steed from its bond, permanently dismissing it.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "The steed has an additional 20 hit points for each slot level above 2nd. When using a 4th-level spell slot or higher, you may grant the steed either a swim speed or fly speed equal to its base Speed.", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_find-the-path", + "fields": { + "name": "Find the Path", + "desc": "Name a specific, immovable location that you have visited before. If no such location is within range, the spell fails. For the duration, you know the location's direction and distance. While you are traveling there, you have advantage on ability checks made to determine the shortest path.", + "document": "a5e-ag", + "level": 6, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "Special", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 day", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_find-traps", + "fields": { + "name": "Find Traps", + "desc": "This spell reveals whether there is at least one trap within range and within line of sight. You don't learn the number, location, or kind of traps detected. For the purpose of this spell, a trap is a hidden mechanical device or magical effect which is designed to harm you or put you in danger, such as a pit trap, symbol spell, or alarm bell on a door, but not a natural hazard.", + "document": "a5e-ag", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_finger-of-death", + "fields": { + "name": "Finger of Death", + "desc": "Negative energy wracks the target and deals 7d8 + 30 necrotic damage. A humanoid killed by this spell turns into a zombie at the start of your next turn. It is permanently under your control and follows your spoken commands.", + "document": "a5e-ag", + "level": 7, + "school": "necromancy", + "higher_level": "The damage increases by 2d8 for each slot level above 7th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_fire-bolt", + "fields": { + "name": "Fire Bolt", + "desc": "You cast a streak of flame at the target. Make a ranged spell attack. On a hit, you deal 1d10 fire damage. An unattended flammable object is ignited.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_fire-shield", + "fields": { + "name": "Fire Shield", + "desc": "Until the spell ends, flames envelop your body, casting bright light in a 10-foot radius and dim light for an additional 10 feet. You can use an action to end the spell early. Choose one of the following options:\n\n* **Chill Shield:** You have resistance to fire damage. A creature within 5 feet of you takes 2d8 cold damage when it hits you with a melee attack.\n* **Warm Shield:** You have resistance to cold damage. A creature within 5 feet of you takes 2d8 fire damage when it hits you with a melee attack.", + "document": "a5e-ag", + "level": 4, + "school": "evocation", + "higher_level": "The duration increases to 1 hour when using a 6th-level spell slot, or 8 hours when using an 8th-level spell slot.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "cold" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_fire-storm", + "fields": { + "name": "Fire Storm", + "desc": "Flames roar, dealing 7d10 fire damage to creatures and objects in the area and igniting unattended flammable objects. If you choose, plant life in the area is unaffected. This spell's area consists of a contiguous group of ten 10-foot cubes in an arrangement you choose, with each cube adjacent to at least one other cube.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "The damage increases by 1d10 for each slot level above 7th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_fireball", + "fields": { + "name": "Fireball", + "desc": "A fiery mote streaks to a point within range and explodes in a burst of flame. The fire spreads around corners and ignites unattended flammable objects. Each creature in the area takes 6d6 fire damage.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_flame-blade", + "fields": { + "name": "Flame Blade", + "desc": "A scimitar-shaped blade of fire appears in your hand, lasting for the duration. It disappears if you drop it, but you can use a bonus action to recall it. The blade casts bright light in a 10-foot radius and dim light for another 10 feet. You can use an action to make a melee spell attack with the blade that deals 3d6 fire damage.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "The damage increases by 1d6 for every two slot levels above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_flame-strike", + "fields": { + "name": "Flame Strike", + "desc": "A column of divine flame deals 4d6 fire damage and 4d6 radiant damage to creatures in the area.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "Increase either the fire damage or the radiant damage by 1d6 for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_flaming-sphere", + "fields": { + "name": "Flaming Sphere", + "desc": "A 5-foot-diameter sphere of fire appears within range, lasting for the duration. It casts bright light in a 20-foot radius and dim light for another 20 feet, and ignites unattended flammable objects it touches.\n\nYou can use a bonus action to move the sphere up to 30 feet. It can jump over pits 10 feet wide or obstacles 5 feet tall. If you move the sphere into a creature, the sphere ends its movement for that turn and the creature makes a Dexterity saving throw, taking 2d6 fire damage on a failed save, or half as much on a successful one. A creature that ends its turn within 5 feet of the sphere makes a Dexterity saving throw against the sphere's damage.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "The damage increases by 1d6 for each slot level above 2nd.", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_flesh-to-stone", + "fields": { + "name": "Flesh to Stone", + "desc": "The target becomes restrained as it begins to turn to stone. On a successful saving throw, the target is instead slowed until the end of its next turn and the spell ends.\n\nA creature restrained by this spell makes a second saving throw at the end of its turn. On a success, the spell ends. On a failure, the target is petrified for the duration. If you maintain concentration for the maximum duration of the spell, this petrification is permanent.\n\nAny pieces removed from a petrified creature are missing when the petrification ends.", + "document": "a5e-ag", + "level": 6, + "school": "transmutation", + "higher_level": "Target one additional creature when you cast this spell with an 8th-level spell slot.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_flex", + "fields": { + "name": "Flex", + "desc": "You bestow a glamor upon a creature that highlights its physique to show a stunning idealized form. For the spell's duration, the target adds both its Strength modifier and Charisma modifier to any Charisma checks it makes.", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "Target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_floating-disk", + "fields": { + "name": "Floating Disk", + "desc": "A metallic disc made of force, 3 feet in diameter and hovering 3 feet off the ground, appears within range. It can support up to 500 pounds. If it is overloaded, or if you move more than 100 feet away from it, the spell ends. You can end the spell as an action. While it is not carrying anything, you can use a bonus action to teleport the disk to an unoccupied space within range.\n\nWhile you are within 20 feet of the disk, it is immobile. If you move more than 20 feet away, it tries to follow you, remaining 20 feet away. It can traverse stairs, slopes, and obstacles up to 3 feet high.\n\nAdditionally, you can ride the disc, spending your movement on your turn to move the disc up to 30 feet (following the movement rules above).\n\nMoving the disk in this way is just as tiring as walking for the same amount of time.", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "When you use a 3rd-level spell slot, either the spell's duration increases to 8 hours or the disk's diameter is 10 feet, it can support up to 2, 000 pounds, and it can traverse obstacles up to 10 feet high. When you use a 6th-level spell slot, the disk's diameter is 20 feet, it can support up to 16, 000 pounds, and it can traverse obstacles up to 20 feet high.", + "target_type": "point", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_fly", + "fields": { + "name": "Fly", + "desc": "The target gains a flying speed of 60 feet. When the spell ends, the target falls if it is off the ground.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "Target one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_fog-cloud", + "fields": { + "name": "Fog Cloud", + "desc": "You create a heavily obscured area of fog. The fog spreads around corners and can be dispersed by a moderate wind (at least 10 miles per hour).", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "The spell's radius increases by 20 feet for each slot level above 1st.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_forbiddance", + "fields": { + "name": "Forbiddance", + "desc": "You protect the target area against magical travel. Creatures can't teleport into the area, use a magical portal to enter it, or travel into it from another plane of existence, such as the Astral or Ethereal Plane. The spell's area can't overlap with another _forbiddance_ spell.\n\nThe spell damages specific types of trespassing creatures. Choose one or more of celestials, elementals, fey, fiends, and undead. When a chosen creature first enters the area on a turn or starts its turn there, it takes 5d10 radiant or necrotic damage (your choice when you cast the spell). You may designate a password. A creature speaking this password as it enters takes no damage from the spell.\n\nAfter casting this spell on the same area for 30 consecutive days it becomes permanent until dispelled. This final casting to make the spell permanent consumes its material components.", + "document": "a5e-ag", + "level": 6, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "necrotic", + "radiant" + ], + "duration": "1 day", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_force-of-will", + "fields": { + "name": "Force of Will", + "desc": "Your iron resolve allows you to withstand an attack. The damage you take from the triggering attack is reduced by 2d10 + your spellcasting ability modifier.", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "The damage is reduced by an additional 1d10 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_force-punch", + "fields": { + "name": "Force Punch", + "desc": "Make a melee spell attack. On a hit, the target takes 3d8 force damage.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_forcecage", + "fields": { + "name": "Forcecage", + "desc": "An opaque cube of banded force surrounds the area, preventing any matter or spells from passing through it, though creatures can breathe inside it. Creatures that make a Dexterity saving throw and creatures that are only partially inside the area are pushed out of the area. Any other creature is trapped and can't leave by nonmagical means. The cage also traps creatures on the Ethereal Plane, and can only be destroyed by being dealt at least 25 force damage at once or by a _dispel magic_ spell cast using an 8th-level or higher spell slot.\n\nIf a trapped creature tries to teleport or travel to another plane, it makes a Charisma saving throw. On a failure, the attempt fails and the spell or effect is wasted.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "The spell's area increases to a 20-foot cube when using a 9th-level spell slot.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_foresight", + "fields": { + "name": "Foresight", + "desc": "You impart the ability to see flashes of the immediate future. The target can't be surprised and has advantage on ability checks, attack rolls, and saving throws. Other creatures have disadvantage on attack rolls against the target.", + "document": "a5e-ag", + "level": 9, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_forest-army", + "fields": { + "name": "Forest Army", + "desc": "While casting and concentrating on this spell, you enter a deep trance and awaken an army of trees and plants within range. These plants rise up under your control as a grove swarm and act on your initiative. Although you are in a trance and deaf and blind with regard to your own senses, you see and hear through your grove swarm's senses. You can command your grove swarm telepathically, ordering it to advance, attack, or retreat. If the grove swarm enters your space, you can order it to carry you.\n\nIf you take any action other than continuing to concentrate on this spell, the spell ends and the trees and plants set down roots wherever they are currently located.", + "document": "a5e-ag", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_freedom-of-movement", + "fields": { + "name": "Freedom of Movement", + "desc": "The target ignores difficult terrain. Spells and magical effects can't reduce its speed or cause it to be paralyzed or restrained. It can spend 5 feet of movement to escape from nonmagical restraints or grapples. The target's movement and attacks aren't penalized from being underwater.", + "document": "a5e-ag", + "level": 4, + "school": "abjuration", + "higher_level": "When using a 6th-level spell slot the duration is 8 hours. When using an 8th-level spell slot the duration is 24 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_freezing-sphere", + "fields": { + "name": "Freezing Sphere", + "desc": "A freezing globe streaks to a point within range and explodes, dealing 10d6 cold damage to creatures in the area. Liquid in the area is frozen to a depth of 6 inches for 1 minute. Any creature caught in the ice can use an action to make a Strength check against your spell save DC to escape.\n\nInstead of firing the globe, you can hold it in your hand. If you handle it carefully, it won't explode until a minute after you cast the spell. At any time, you or another creature can strike the globe, throw it up to 60 feet, or use it as a slingstone, causing it to explode on impact.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "The damage increases by 1d6 for each slot level above 6th.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_friends", + "fields": { + "name": "Friends", + "desc": "Once before the start of your next turn, when you make a Charisma ability check against the target, you gain an expertise die. If you roll a 1 on the ability or skill check, the target realizes its judgment was influenced by magic and may become hostile.", + "document": "a5e-ag", + "level": 0, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_gaseous-form", + "fields": { + "name": "Gaseous Form", + "desc": "The target, along with anything it's wearing and carrying, becomes a hovering, wispy cloud. In this form, it can't attack, use or drop objects, talk, or cast spells.\n\nAs a cloud, the target's base Speed is 0 and it gains a flying speed of 10 feet. It can enter another creature's space, and can pass through small holes and cracks, but not through liquid. It is resistant to nonmagical damage, has advantage on Strength, Dexterity, and Constitution saving throws, and can't fall.\n\nThe spell ends if the creature drops to 0 hit points.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "The target's fly speed increases by 10 feet for each slot level above 3rd.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_gate", + "fields": { + "name": "Gate", + "desc": "You create a magic portal, a door between a space you can see and a specific place on another plane of existence. Each portal is a one-sided circular opening from 5 to 25 feet in diameter. Entering either portal transports you to the portal on the other plane. Deities and other planar rulers can prevent portals from opening in their domains.\n\nWhen you cast this spell, you can speak the true name of a specific creature (not its nickname or title). If that creature is on another plane, the portal opens next to it and draws it through to your side of the portal. This spell gives you no power over the creature, and it might choose to attack you, leave, or listen to you.", + "document": "a5e-ag", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_geas", + "fields": { + "name": "Geas", + "desc": "You give a command to a target which can understand you. It becomes charmed by you.\n\nWhile charmed in this way, it takes 5d10 psychic damage the first time each day that it disobeys your command. Your command can be any course of action or inaction that wouldn't result in the target's death. The spell ends if the command is suicidal or you use an action to dismiss the spell. Alternatively, a _remove curse_, _greater restoration_, or _wish_ spell cast on the target using a spell slot at least as high as the slot used to cast this spell also ends it.", + "document": "a5e-ag", + "level": 5, + "school": "enchantment", + "higher_level": "The spell's duration is 1 year when using a 7th-level spell slot, or permanent until dispelled when using a 9th-level spell slot.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "psychic" + ], + "duration": "30 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_gentle-repose", + "fields": { + "name": "Gentle Repose", + "desc": "The target can't become undead and doesn't decay. Days spent under the influence of this spell don't count towards the time limit of spells which raise the dead.", + "document": "a5e-ag", + "level": 2, + "school": "necromancy", + "higher_level": "The spell's duration is 1 year when using a 3rd-level spell slot, or permanent until dispelled when using a 4th-level spell slot.", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_giant-insect", + "fields": { + "name": "Giant Insect", + "desc": "You transform insects and other vermin into monstrous versions of themselves. Until the spell ends, up to 3 spiders become giant spiders, 2 ants become giant ants, 2 crickets or mantises become ankhegs, a centipede becomes a giant centipede, or a scorpion becomes a giant scorpion. The spell ends for a creature when it dies or when you use an action to end the effect on it.\n\nWhile it is within 60 feet you can use a bonus action to mentally command the insects. When you command multiple insects using this spell, you may simultaneously give them all the same command.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "The spell's duration is 1 hour when using a 5th-level spell slot, or 8 hours when using a 6th-level spell slot.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_glibness", + "fields": { + "name": "Glibness", + "desc": "When you make a Charisma check, you can replace the number you rolled with 15\\. Also, magic that prevents lying has no effect on you, and magic cannot determine that you are lying.", + "document": "a5e-ag", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_globe-of-invulnerability", + "fields": { + "name": "Globe of Invulnerability", + "desc": "An immobile, glimmering sphere forms around you. Any spell of 5th-level or lower cast from outside the sphere can't affect anything inside the sphere, even if it's cast with a higher level spell slot. Targeting something inside the sphere or including the globe's space in an area has no effect on anything inside.", + "document": "a5e-ag", + "level": 6, + "school": "abjuration", + "higher_level": "The barrier blocks spells of one spell slot level higher for each slot level above 6th.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_glyph-of-warding", + "fields": { + "name": "Glyph of Warding", + "desc": "You trace a glyph on the target. If the glyph is moved more than 10 feet from its original position, or if it comes within 20 feet of another glyph that you have cast, the spell ends. Finding the Tiny glyph requires an Investigation check against your spell save DC.\n\nDescribe the actions a creature must perform to trigger the spell, such as approaching within a certain distance, opening or touching the object the glyph is inscribed on, or seeing or reading the glyph. The creature must have a clear path to the glyph to trigger it. You can specify certain creatures which don't trigger the spell, such as those with a certain appearance or those who speak a certain phrase. Once the glyph is triggered, the spell ends.\n\nWhen you cast the spell, choose Explosive Runes or Spell Glyph.\n\n* **Explosive Runes:** When triggered, the glyph explodes. Creatures in a 20-foot radius sphere make a Dexterity saving throw or take 5d8 acid, cold, fire, lightning, or thunder damage (your choice when you cast the spell), or half damage on a successful save. The explosion spreads around corners.\n* **Spell Glyph:** You store a spell of 3rd-level or lower as part of creating the glyph, expending its spell slot. The stored spell must target a single creature or area with a non-beneficial effect and it is cast when the glyph is triggered. A spell that targets a creature targets the triggering creature. A spell with an area is centered on the targeting creature. A creation or conjuration spell affects an area next to that creature, and targets it with any harmful effects. Spells requiring concentration last for their full duration.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "The cost of the material component increases by 200 gold for each slot level above 3rd. For Explosive Runes, the damage increases by 1d8 for each slot level above 3rd, and for Spell Glyph you can store a spell of up to the same level as the spell slot used to cast glyph of warding.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_goodberry", + "fields": { + "name": "Goodberry", + "desc": "You transform the components into 2d4 berries.\n\nFor the next 24 hours, any creature that consumes one of these berries regains 1 hit point. Eating or administering a berry is an action. The berries do not provide any nourishment or sate hunger.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "You create 1d4 additional berries for every 2 slot levels above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_grapevine", + "fields": { + "name": "Grapevine", + "desc": "You cause a message in Druidic to appear on a tree or plant within range which you have seen before.\n\nYou can cast the spell again to erase the message.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "100 miles", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_grease", + "fields": { + "name": "Grease", + "desc": "Grease erupts from a point that you can see within range and coats the ground in the area, turning it into difficult terrain until the spell ends.\n\nWhen the grease appears, each creature within the area must succeed on a Dexterity saving throw or fall prone. A creature that enters or ends its turn in the area must also succeed on a Dexterity saving throw or fall prone.", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_greater-invisibility", + "fields": { + "name": "Greater Invisibility", + "desc": "The target is invisible. Anything the target is carrying or wearing is also invisible as long as it remains in the target's possession.", + "document": "a5e-ag", + "level": 4, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_greater-restoration", + "fields": { + "name": "Greater Restoration", + "desc": "Healing energy rejuvenates a creature you touch and undoes a debilitating effect. You can remove one of:\n\n* a level of fatigue.\n* a level of strife.\n* a charm or petrification effect.\n* a curse or cursed item attunement.\n* any reduction to a single ability score.\n* an effect that has reduced the target's hit point maximum.", + "document": "a5e-ag", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_guardian-of-faith", + "fields": { + "name": "Guardian of Faith", + "desc": "A large spectral guardian appears and hovers for the duration in an unoccupied space of your choice that you can see within range. This guardian occupies that space and is indistinct except for a gleaming sword and sheild emblazoned with the symbol of your deity.\n\nAny creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "20", + "damage_types": [ + "radiant" + ], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_guards-and-wards", + "fields": { + "name": "Guards and Wards", + "desc": "You create wards that protect the target area. Each warded area has a maximum height of 20 feet and can be shaped. Several stories of a stronghold can be warded by dividing the area among them if you can walk from one to the next while the spell is being cast.\n\nWhen cast, you can create a password that can make a creature immune to these effects when it is spoken aloud. You may also specify individuals that are unaffected by any or all of the effects that you choose.\n\n_Guards and wards_ creates the following effects within the area of the spell.\n\n* **_Corridors:_** Corridors are heavily obscured with fog. Additionally, creatures that choose between multiple passages or branches have a 50% chance to unknowingly choose a path other than the one they meant to choose.\n* **_Doors:_** Doors are magically locked as if by an _arcane lock_ spell. Additionally, you may conceal up to 10 doors with an illusion as per the illusory object component of the _minor illusion_ spell to make the doors appear as unadorned wall sections.\n* **_Stairs:_** Stairs are filled from top to bottom with webs as per the _web_ spell. Until the spell ends, the webbing strands regrow 10 minutes after they are damaged or destroyed.\n\nIn addition, one of the following spell effects can be placed within the spell's area.\n\n* _Dancing lights_ can be placed in 4 corridors and you can choose for them to repeat a simple sequence.\n* _Magic mouth_ spells can be placed in 2 locations.\n_Stinking clouds_ can be placed in 2 locations.\n\nThe clouds return after 10 minutes if dispersed while the spell remains.\n* A _gust of wind_ can be placed in a corridor or room.\n* Pick a 5-foot square. Any creature that passes through it subjected to a _suggestion_ spell, hearing the suggestion mentally.\n\nThe entirety of the warded area radiates as magic. Each effect must be targeted by separate dispel magic spells to be removed.\n\nThe spell can be made permanent by recasting the spell every day for a year.", + "document": "a5e-ag", + "level": 6, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_guidance", + "fields": { + "name": "Guidance", + "desc": "The target may gain an expertise die to one ability check of its choice, ending the spell. The expertise die can be rolled before or after the ability check is made.", + "document": "a5e-ag", + "level": 0, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_guiding-bolt", + "fields": { + "name": "Guiding Bolt", + "desc": "A bolt of light erupts from your hand. Make a ranged spell attack against the target. On a hit, you deal 4d6 radiant damage and the next attack roll made against the target before the end of your next turn has advantage.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The damage increases by 1d6 for each slot level above 1st.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_gust-of-wind", + "fields": { + "name": "Gust of Wind", + "desc": "A torrent of wind erupts from your hand in a direction you choose. Each creature that starts its turn in the area or moves into the area must succeed on a Strength saving throw or be pushed 15 feet from you in the direction of the line.\n\nAny creature in the area must spend 2 feet of movement for every foot moved when trying to approach you.\n\nThe blast of wind extinguishes small fires and disperses gas or vapor.\n\nYou can use a bonus action to change the direction of the gust.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_hallow", + "fields": { + "name": "Hallow", + "desc": "You imbue the area with divine power, bolstering some creatures and hindering others. Celestials, elementals, fey, fiends, and undead cannot enter the area. They are also incapable of charming, frightening, or possessing another creature within the area. Any such effects end on a creature that enters the area. When casting, you may exclude one or more creature types from this effect.\n\nAdditionally, you may anchor additional magical effects to the area. Choose one effect from the list below (the Narrator may also offer specific effects).\n\nSome effects apply to creatures. You may choose to affect all creatures, creatures of a specific type, or those that follow a specific leader or deity. Creatures make a Charisma saving throw when the spell is cast, when they enter the area for the first time on a turn, or if they end their turn within the area. On a successful save, a creature is immune to the effect until it leaves the area.\n\n* **Courage:** Creatures in the area cannot be frightened.\n* **Darkness:** The area is filled by darkness, and normal light sources or sources from a lower level spell slot are smothered within it.\n* **Daylight:** The area is filled with bright light, dispelling magical darkness created by spells of a lower level spell slot.\n* **Energy Protection:** Creatures in the area gain resistance against a damage type of your choice (excepting bludgeoning, piercing, or slashing).\n* **Energy Vulnerability:** Creatures in the area gain vulnerability against a damage type of your choice (excepting bludgeoning, piercing, or slashing).\n* **Everlasting Rest:** Dead bodies laid to rest in the area cannot be turned into undead by any means.\n* **Extradimensional Interference:** Extradimensional movement or travel is blocked to and from the area, including all teleportation effects.\n* **Fear**: Creatures are frightened while within the area.\n* **Silence:** No sound can enter or emanate from the area.\n* **Tongues:** Creatures within the area can freely communicate with one another whether they share a language or not.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_hallucinatory-terrain", + "fields": { + "name": "Hallucinatory Terrain", + "desc": "You weave a veil over the natural terrain within the area, making it look, sound, or smell like another sort of terrain. A small lake could be made to look like a grassy glade. A path or trail could be made to look like an impassable swamp. A cliff face could even appear as a gentle slope or seem to extend further than it does. This spell does not affect any manufactured structures, equipment, or creatures.\n\nOnly the visual, auditory, and olfactory components of the terrain are changed. Any creature that enters or attempts to interact with the illusion feels the real terrain below. If given sufficient reason, a creature may make an Investigation check against your spell save DC to disbelieve it. On a successful save, the creature sees the illusion superimposed over the actual terrain.", + "document": "a5e-ag", + "level": 4, + "school": "illusion", + "higher_level": "The spell targets an additional 50-foot cube for each slot level above 4th.", + "target_type": "area", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_harm", + "fields": { + "name": "Harm", + "desc": "You assail a target with an agonizing disease. The target takes 14d6 necrotic damage. If it fails its saving throw its hit point maximum is reduced by an amount equal to the damage taken for 1 hour or until the disease is magically cured. This spell cannot reduce a target to less than 1 hit point.", + "document": "a5e-ag", + "level": 6, + "school": "necromancy", + "higher_level": "Increase the damage by 2d6 for each slot level above 6th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "14d6", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_harmonic-resonance", + "fields": { + "name": "Harmonic Resonance", + "desc": "You harmonize with the rhythm of those around you until you're perfectly in sync. You may take the Help action as a bonus action. Additionally, when a creature within 30 feet uses a Bardic Inspiration die, you may choose to reroll the die after it is rolled but before the outcome is determined.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_haste", + "fields": { + "name": "Haste", + "desc": "Until the spell ends, the target's Speed is doubled, it gains a +2 bonus to AC, it has advantage on Dexterity saving throws, and it gains one additional action on each of its turns. This action can be used to make a single weapon attack, or to take the Dash, Disengage, Hide, or Use an Object action.\n\nWhen the spell ends, the target is tired and cannot move or take actions until after its next turn.", + "document": "a5e-ag", + "level": 3, + "school": "transformation", + "higher_level": "Target one additional creature for each slot level above 3rd. All targets of this spell must be within 30 feet of each other.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_heal", + "fields": { + "name": "Heal", + "desc": "A torrent of healing energy suffuses the target and it regains 70 hit points. The spell also ends blindness, deafness, and any diseases afflicting the target.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "The hit points regained increase by 10 for each slot level above 6th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_healing-word", + "fields": { + "name": "Healing Word", + "desc": "Healing energy washes over the target and it regains hit points equal to 1d4 + your spellcasting modifier.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The hit points regained increase by 1d4 for each slot level above 1st.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_heart-of-dis", + "fields": { + "name": "Heart of Dis", + "desc": "You magically replace your heart with one forged on the second layer of Hell. While the spell lasts, you are immune to fear and can't be poisoned, and you are immune to fire and poison damage. You gain resistance to cold damage, as well as to bludgeoning, piercing, and slashing damage from nonmagical weapons that aren't silvered. You have advantage on saving throws against spells and other magical effects. Finally, while you are conscious, any creature hostile to you that starts its turn within 20 feet of you must make a Wisdom saving throw. On a failed save, the creature is frightened of you until the start of your next turn. On a success, the creature is immune to the effect for 24 hours.\n\nCasting this spell magically transports your mortal heart to the lair of one of the lords of Hell. The heart returns to your body when the spell ends. If you die while under the effects of this spell, you can't be brought back to life until your original heart is retrieved.", + "document": "a5e-ag", + "level": 8, + "school": "necromancy", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_heat-metal", + "fields": { + "name": "Heat Metal", + "desc": "The target becomes oven hot. Any creature touching the target takes 2d8 fire damage when the spell is cast. Until the spell ends, on subsequent turns you can use a bonus action to inflict the same damage. If a creature is holding or wearing the target and suffers damage, it makes a Constitution saving throw or it drops the target. If a creature does not or cannot drop the target, it has disadvantage on attack rolls and ability checks until the start of your next turn.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "The damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_heroes-feast", + "fields": { + "name": "Heroes' Feast", + "desc": "The spell summons forth a sumptuous feast with a cuisine of your choosing that provides 1 Supply for a number of creatures equal to twice your proficiency bonus. Consuming the food takes 1 hour and leaves a creature feeling nourished—it immediately makes a saving throw with advantage against any disease or poison it is suffering from, and it is cured of any effect that frightens it.\n\nFor up to 24 hours afterward the feast's participants have advantage on Wisdom saving throws, advantage on saving throws made against disease and poison, resistance against damage from poison and disease, and each increases its hit point maximum by 2d10.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_heroism", + "fields": { + "name": "Heroism", + "desc": "The target's spirit is bolstered. Until the spell ends, the target gains temporary hit points equal to your spellcasting ability modifier at the start of each of its turns and it cannot be frightened. Any temporary hit points remaining are lost when the spell ends.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "Target one additional creature for each slot level above 1st.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_hideous-laughter", + "fields": { + "name": "Hideous Laughter", + "desc": "The target is overwhelmed by the absurdity of the world and is crippled by paroxysms of laughter. The target falls prone, becomes incapacitated, and cannot stand.\n\nUntil the spell ends, at the end of each of the target's turns and when it suffers damage, the target may attempt another saving throw (with advantage if triggered by damage). On a successful save, the spell ends.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "Target an additional creature within 30 feet of the original for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_hold-monster", + "fields": { + "name": "Hold Monster", + "desc": "The target is paralyzed. At the end of each of its turns, the target makes another saving throw, ending the spell's effects on it on a successful save.", + "document": "a5e-ag", + "level": 5, + "school": "enchantment", + "higher_level": "Target an additional creature within 30 feet of the first target for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_hold-person", + "fields": { + "name": "Hold Person", + "desc": "The target is paralyzed. At the end of each of its turns, the target makes another saving throw, ending the spell's effects on it on a successful save.", + "document": "a5e-ag", + "level": 2, + "school": "enchantment", + "higher_level": "Target an additional creature within 30 feet of the first target for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_holy-aura", + "fields": { + "name": "Holy Aura", + "desc": "Holy radiance emanates from you and fills the area. Targets shed dim light in a 5-foot radius and have advantage on saving throws. Attacks made against a target have disadvantage. When a fiend or undead hits a target, the aura erupts into blinding light, forcing the attacker to make a Constitution saving throw or be blinded until the spell ends.", + "document": "a5e-ag", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_hypnotic-pattern", + "fields": { + "name": "Hypnotic Pattern", + "desc": "You conjure a swirling pattern of twisting hues that roils through the air, appearing for a moment and then vanishing. Creatures in the area that can perceive the pattern make a Wisdom saving throw or become charmed. A creature charmed by this spell becomes incapacitated and its Speed is reduced to 0.\n\nThe effect ends on a creature when it takes damage or when another creature uses an action to shake it out of its daze.", + "document": "a5e-ag", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_ice-storm", + "fields": { + "name": "Ice Storm", + "desc": "A bombardment of jagged ice erupts throughout the target area. All creatures in the area take 2d8 bludgeoning damage and 4d6 cold damage. Large chunks of ice turn the area into difficult terrain until the end of your next turn.", + "document": "a5e-ag", + "level": 4, + "school": "evocation", + "higher_level": "The bludgeoning damage increases by 1d8 for each slot level above 4th.", + "target_type": "area", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_identify", + "fields": { + "name": "Identify", + "desc": "You learn the target item's magical properties along with how to use them. This spell also reveals whether or not a targeted item requires attunement and how many charges it has. You learn what spells are affecting the targeted item (if any) along with what spells were used to create it.\n\nAlternatively, you learn any spells that are currently affecting a targeted creature.\n\nWhat this spell can reveal is at the Narrator's discretion, and some powerful and rare magics are immune to identify.", + "document": "a5e-ag", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_illusory-script", + "fields": { + "name": "Illusory Script", + "desc": "You inscribe a message onto the target and wrap it in illusion until the spell ends. You and any creatures that you designate when the spell is cast perceive the message as normal. You may choose to have other creatures view the message as writing in an unknown or unintelligible magical script or a different message. If you choose to create another message, you can change the handwriting and the language that the message is written in, though you must know the language in question.\n\nIf the spell is dispelled, both the message and its illusory mask disappear.\n\nThe true message can be perceived by any creature with truesight.", + "document": "a5e-ag", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_imprisonment", + "fields": { + "name": "Imprisonment", + "desc": "You utter the target's name and attempt to bind them for eternity. On a successful save, a target is immune to any future attempts by you to cast this spell on it. On a failed save, choose from one of the forms of bindings below (each lasts until the spell ends).\n\n* **Burial:** The target is buried deep below the surface of the earth in a tomb just large enough to contain it. Nothing can enter the tomb. No teleportation or planar travel can be used to enter, leave, or affect the tomb or its contents. A small mithral orb is required for this casting.\n* **Chaining:** Chains made of unbreakable material erupt from the ground and root the target in place. The target is restrained and cannot be moved by any means. A small adamantine chain is required for this casting.\n* **Hedged Prison:** The target is imprisoned in a maze-like demiplane of your choosing, such as a labyrinth, a cage, a tower, a hedge maze, or any similar structure you desire. The demiplane is warded against teleportation and planar travel. A small jade representation of the demiplane is required for this casting.\n* **Minimus Containment:** The target shrinks to just under an inch and is imprisoned inside a gemstone, crystal, jar, or similar object. Nothing but light can pass in and out of the vessel, and it cannot be broken, cut, or otherwise damaged. The special component for this effect is whatever prison you wish to use.\n* **Slumber:** The target is plunged into an unbreakable slumber and cannot be awoken. Special soporific draughts are required for this casting.\n\nThe target does not need sustenance or air, nor does it age. No divination spells of any sort can be used to reveal the target's location.\n\nWhen cast, you must specify a condition that will cause the spell to end and release the target. This condition must be based on some observable action or quality and not related to mechanics like level, hitpoints, or class, and the Narrator must agree to it.\n\nA dispel magic only dispels an _imprisonment_ if it is cast using a 9th-level spell slot and targets the prison or the special component used to create the prison.\n\nEach casting that uses the same spell effect requires its own special component. Repeated castings with the same component free the prior occupant.", + "document": "a5e-ag", + "level": 9, + "school": "abjuration", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_incendiary-cloud", + "fields": { + "name": "Incendiary Cloud", + "desc": "A cloud of burning embers, smoke, and roiling flame appears within range. The cloud heavily obscures its area, spreading around corners and through cracks. When the cloud appears and a creature is in it, when a creature enters the cloud for the first time on a turn, or when a creature ends its turn within the cloud it makes a Dexterity saving throw, taking 10d8 fire damage on a failed save, or half as much on a successful one.\n\nThe cloud can be dispelled by a wind of at least 10 miles per hour. After it is cast, the cloud moves 10 feet away from you in a direction that you choose at the start of each of your turns.", + "document": "a5e-ag", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_inescapable-malady", + "fields": { + "name": "Inescapable Malady", + "desc": "You infect your target with an arcane disease. At any time after you cast this spell, as long as you are on the same plane of existence as the target, you can use an action to deal 7d10 necrotic damage to the target. If this damage would reduce the target to 0 hit points, you can choose to leave it with 1 hit point.\n\nAs part of dealing the damage, you may expend a 7th-level spell slot to sustain the disease. Otherwise, the spell ends. The spell ends when you die.\n\nCasting remove curse, greater restoration, or heal on the target allows the target to make a Constitution saving throw against the disease. Otherwise the disease can only be cured by a wish spell.", + "document": "a5e-ag", + "level": 7, + "school": "necromancy", + "higher_level": "The damage increases by 1d10 for each slot level above 7th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_infernal-weapon", + "fields": { + "name": "Infernal Weapon", + "desc": "A weapon formed from the essence of Hell appears in your hands. You must use two hands to wield the weapon. If you let go of the weapon, it disappears and the spell ends.\n\nWhen you cast the spell, choose either a flame fork or ice spear. While the spell lasts, you can use an action to make a melee spell attack with the weapon against a creature within 10 feet of you.\n\nOn a hit, you deal 5d8 damage of a type determined by the weapon's form. On a critical hit, you inflict an additional effect.\n\nIn addition, on a hit with the infernal weapon, you can end the spell early to inflict an automatic critical hit.\n\n**Flame Fork.** The weapon deals fire damage.\n\nOn a critical hit, the target catches fire, taking 2d6 ongoing fire damage.\n\n**Ice Spear.** The weapon deals cold damage. On a critical hit, for 1 minute the target is slowed.\n\nAt the end of each of its turns a slowed creature can make a Constitution saving throw, ending the effect on itself on a success.\n\nA creature reduced to 0 hit points by an infernal weapon immediately dies in a gruesome fashion.\n\nFor example, a creature killed by an ice spear might freeze solid, then shatter into a thousand pieces. Each creature of your choice within 60 feet of the creature and who can see it when it dies must make a Wisdom saving throw. On a failure, a creature becomes frightened of you until the end of your next turn.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_inflict-wounds", + "fields": { + "name": "Inflict Wounds", + "desc": "You impart fell energies that suck away the target's life force, making a melee spell attack that deals 3d10 necrotic damage.", + "document": "a5e-ag", + "level": 1, + "school": "necromancy", + "higher_level": "The damage increases by 1d10 for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_insect-plague", + "fields": { + "name": "Insect Plague", + "desc": "A roiling cloud of insects appears, biting and stinging any creatures it touches. The cloud lightly obscures its area, spreads around corners, and is considered difficult terrain. When the cloud appears and a creature is in it, when a creature enters the cloud for the first time on a turn, or when a creature ends its turn within the cloud it makes a Constitution saving throw, taking 4d10 piercing damage on a failed save, or half as much on a successful one.", + "document": "a5e-ag", + "level": 5, + "school": "conjuration", + "higher_level": "The damage increases by 1d10 for each slot level above 5th.", + "target_type": "creature", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_instant-summons", + "fields": { + "name": "Instant Summons", + "desc": "Until the spell ends, a mystical bond connects the target and the precious stone used to cast this spell.\n\nAny time after, you may crush the stone and speak the name of the item, summoning it instantly into your hand no matter the physical, metaphysical, or planar distances involved, at which point the spell ends. If another creature is holding the item when the stone is crushed, the item is not summoned to you. Instead, the spell grants you the knowledge of who possesses it and a general idea of the creature's location.\n\nEach time you cast this spell, you must use a different precious stone.\n\nDispel magic or a similar effect targeting the stone ends the spell.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_invigorated-strikes", + "fields": { + "name": "Invigorated Strikes", + "desc": "You allow long-forgotten fighting instincts to boil up to the surface. For the duration of the spell, whenever the target deals damage with an unarmed strike or natural weapon, it deals 1d4 extra damage.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell with a 3rd-level spell slot, the extra damage increases from 1d4 to 1d6\\. When you cast this spell with a 5th-level spell slot, the extra damage increases to 1d8.\n\nWhen you cast this spell with a 7th-level spell slot, the extra damage increases to 1d10.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_invisibility", + "fields": { + "name": "Invisibility", + "desc": "You wreathe a creature in an illusory veil, making it invisible. Anything the target is carrying or wearing is also invisible as long as it remains in the target's possession. The spell's effects end for a target that attacks or casts a spell.", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "Target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_irresistible-dance", + "fields": { + "name": "Irresistible Dance", + "desc": "You murmur a tune that takes root in the target's mind until the spell ends, forcing it to caper, dance, and shuffle. At the start of each of its turns, the dancing target must use all of its movement to dance in its space, and it has disadvantage on attack rolls and saving throws. Attacks made against the target have advantage. On each of its turns, the target can use an action to repeat the saving throw, ending the spell on a successful save.", + "document": "a5e-ag", + "level": 6, + "school": "enchantment", + "higher_level": "Target one additional creature within 30 feet for each slot level above 6th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_jump", + "fields": { + "name": "Jump", + "desc": "You imbue a target with the ability to make impossible leaps. The target's jump distances increase 15 feet vertically and 30 feet horizontally.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "Each of the target's jump distances increase by 5 feet for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_knock", + "fields": { + "name": "Knock", + "desc": "Make a check against the DC of a lock or door using your spell attack bonus. On a success, you unlock or open the target with a loud metallic clanging noise easily audible at up to 300 feet. In addition, any traps on the object are automatically triggered. An item with multiple locks requires multiple castings of this spell to be opened.\n\nWhen you target an object held shut by an arcane lock, that spell is suppressed for 10 minutes, allowing the object to be opened and shut normally during that time.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "The level of the arcane lock you can suppress increases by 1 for each slot level above 3rd. In addition, if the level of your knock spell is 2 or more levels higher than that of the arcane lock, you may dispel the arcane lock instead of suppressing it.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_legend-lore", + "fields": { + "name": "Legend Lore", + "desc": "You learn significant information about the target. This could range from the most up-todate research, lore forgotten in old tales, or even previously unknown information. The spell gives you additional, more detailed information if you already have some knowledge of the target. The spell will not return any information for items not of legendary renown.\n\nThe knowledge you gain is always true, but may be obscured by metaphor, poetic language, or verse.\n\nIf you use the spell for a cursed tome, for instance, you may gain knowledge of the dire words spoken by its creator as they brought it into the world.", + "document": "a5e-ag", + "level": 5, + "school": "divination", + "higher_level": "Your intuition surrounding the target is enhanced and you gain advantage on one Investigation check regarding it for each slot level above 6th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_lemure-transformation", + "fields": { + "name": "Lemure Transformation", + "desc": "Your body melts into a humanoid-shaped mass of liquid flesh. Each creature within 5 feet of you that can see the transformation must make a Wisdom saving throw. On a failure, the creature can't take reactions and is frightened of you until the start of its next turn. Until the end of your turn, your Speed becomes 20 feet, you can't speak, and you can move through spaces as narrow as 1 inch wide without squeezing. You revert to your normal form at the end of your turn.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 turn", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_lesser-restoration", + "fields": { + "name": "Lesser Restoration", + "desc": "Your glowing hand removes one disease or condition affecting the target. Choose from blinded, deafened, paralyzed, or poisoned. At the Narrator's discretion, some diseases might not be curable with this spell.", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_levitate", + "fields": { + "name": "Levitate", + "desc": "Until the spell ends, the target rises vertically in the air up to 20 feet and remains floating there, able to move only by pushing or pulling on fixed objects or surfaces within its reach. This allows the target to move as if it was climbing.\n\nOn subsequent turns, you can use your action to alter the target's altitude by up to 20 feet in either direction so long as it remains within range. If you have targeted yourself you may move up or down as part of your movement.\n\nThe target floats gently to the ground if it is still in the air when the spell ends.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "When using a 5th-level spell slot the target can levitate or come to the ground at will. When using a 7th-level spell slot its duration increases to 1 hour and it no longer requires concentration.", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_light", + "fields": { + "name": "Light", + "desc": "Until the spell ends, the target emits bright light in a 20-foot radius and dim light an additional 20 feet. Light emanating from the target may be any color. Completely covering the target with something that is not transparent blocks the light. The spell ends when you use an action to dismiss it or if you cast it again.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_lightning-bolt", + "fields": { + "name": "Lightning Bolt", + "desc": "A bolt of lightning arcs out from you in a direction you choose. Each creature in the area takes 8d6 lightning damage. The lightning ignites flammable objects in its path that aren't worn or carried by another creature.\n\nIf the spell is stopped by an object at least as large as its width, it ends there unless it deals enough damage to break through. When it does, it continues to the end of its area.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "Damage increases by 1d6 for every slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "lightning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_locate-animals-or-plants", + "fields": { + "name": "Locate Animals or Plants", + "desc": "Name or describe in detail a specific kind of beast or plant. The natural magics in range reveal the closest example of the target within 5 miles, including its general direction (north, west, southeast, and so on) and how many miles away it currently is.", + "document": "a5e-ag", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "5 miles", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_locate-creature", + "fields": { + "name": "Locate Creature", + "desc": "Name or describe in detail a creature familiar to you. The spell reveals the general direction the creature is in (south, east, northwest, and so on) if it exists within range. This includes its current trajectory if it's travelling.\n\nYou may locate specific, known creatures, or the nearest creature of a specific type (like a bat, gnome, or red dragon) provided that you have observed that type within 30 feet at least once. If a specific creature you seek is in a different form (for example a wildshaped druid) the spell is unable to find it.\n\nThe spell cannot travel across running water 10 feet across or wider—it is unable to find the creature and the trail ends.", + "document": "a5e-ag", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "1000 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_locate-object", + "fields": { + "name": "Locate Object", + "desc": "Name or describe in detail an object familiar to you. The spell reveals the general direction the object is in (south, east, northwest, and so on) if it exists within range. This includes its current trajectory if it's travelling.\n\nYou may locate a specific object known to you, provided that you have observed it within 30 feet at least once. You may also find the closest example of a certain type of object (for example an instrument, item of furniture, compass, or vase).\n\nWhen there is any thickness of lead in the direct path between you and the object the spell is unable to find it.", + "document": "a5e-ag", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "1000 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_longstrider", + "fields": { + "name": "Longstrider", + "desc": "Until the spell ends, the target's Speed increases by 10 feet.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "Target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_mage-armor", + "fields": { + "name": "Mage Armor", + "desc": "Until the spell ends, the target is protected by a shimmering magical force. Its AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor, or if you use an action to dismiss it.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "The target gains 5 temporary hit points for each slot level above 1st. The temporary hit points last for the spell's duration.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_mage-hand", + "fields": { + "name": "Mage Hand", + "desc": "A faintly shimmering phantasmal hand appears at a point you choose within range. It remains until you dismiss it as an action, or until you move more than 30 feet from it.\n\nYou can use an action to control the hand and direct it to do any of the following:\n\n* manipulate an object.\n* open an unlocked container or door.\n* stow or retrieve items from unlocked containers.\n\nThe hand cannot attack, use magic items, or carry more than 10 pounds.", + "document": "a5e-ag", + "level": 0, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_magic-circle", + "fields": { + "name": "Magic Circle", + "desc": "Magical energies surround the area and stop the type of designated creature from willingly entering by nonmagical means.\n\nDesignated creatures have disadvantage when attacking creatures within the area and are unable to charm, frighten, or possess creatures within the area. When a designated creature attempts to teleport or use interplanar travel to enter the area, it makes a Charisma saving throw or its attempt fails.\n\nYou may also choose to reverse this spell, trapping a creature of your chosen type within the area in order to protect targets outside it.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "The spell's duration increases by 1 hour for every slot level above 3rd.", + "target_type": "area", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_magic-jar", + "fields": { + "name": "Magic Jar", + "desc": "Your body becomes catatonic as your soul enters the vessel used as a material component. While within this vessel, you're aware of your surroundings as if you physically occupied the same space.\n\nThe only action you can take is to project your soul within range, whether to return to your living body (and end the spell) or to possess a humanoid.\n\nYou may not target creatures protected by protection from good and evil or magic circle spells. A creature you try to possess makes a Charisma saving throw or your soul moves from your vessel and into its body. The creature's soul is now within the container. On a successful save, the creature resists and you may not attempt to possess it again for 24 hours.\n\nOnce you possess a creature, you have control of it. Replace your game statistics with the creature's, except your Charisma, Intelligence and Wisdom scores. Your own cultural traits and class features also remain, and you may not use the creature's cultural traits or class features (if it has any).\n\nDuring possession, you can use an action to return to the vessel if it is within range, returning the host creature to its body. If the host body dies while you are possessing it, the creature also dies and you must make a Charisma save. On a success you return to the container if it's within range. Otherwise, you die.\n\nIf the vessel is destroyed, the spell ends and your soul returns to your body if it's within range. If your body is out of range or dead when you try to return, you die.\n\nThe possessed creature perceives the world as if it occupied the same space as the vessel, but may not take any actions or movement. If the vessel is destroyed while occupied by a creature other than yourself, the creature returns to its body if the body is alive and within range. Otherwise, the creature dies.\n\nThe vessel is destroyed when the spell ends.", + "document": "a5e-ag", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_magic-missile", + "fields": { + "name": "Magic Missile", + "desc": "A trio of glowing darts of magical force unerringly and simultaneously strike the targets, each dealing 1d4+1 force damage.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "Evoke one additional dart and target up to one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_magic-mouth", + "fields": { + "name": "Magic Mouth", + "desc": "The target is imbued with a spoken message of 25 words or fewer which it speaks when a trigger condition you choose is met. The message may take up to 10 minutes to convey.\n\nWhen your trigger condition is met, a magical mouth appears on the object and recites the message in the same voice and volume as you used when instructing it. If the object chosen has a mouth (for example, a painted portrait) this is where the mouth appears.\n\nYou may choose upon casting whether the message is a single event, or whether it repeats every time the trigger condition is met.\n\nThe trigger condition must be based upon audio or visual cues within 30 feet of the object, and may be highly detailed or as broad as you choose.\n\nFor example, the trigger could be when any attack action is made within range, or when the first spring shoot breaks ground within range.", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_magic-weapon", + "fields": { + "name": "Magic Weapon", + "desc": "Until the spell ends, the target becomes +1 magic weapon.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "The bonus increases by +1 for every 2 slot levels above 2nd (maximum +3).", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_magnificent-mansion", + "fields": { + "name": "Magnificent Mansion", + "desc": "You conjure an extradimensional residence within range. It has one entrance that is in a place of your choosing, has a faint luster to it, and is 5 feet wide and 10 feet tall. You and any designated creature may enter your mansion while the portal is open. You may open and close the portal while you are within 30 feet of it. Once closed the entrance is invisible.\n\nThe entrance leads to an opulent entrance hall, with many doors and halls coming from it. The atmosphere is welcoming, warm, and comfortable, and the whole place is sparkling clean.\n\nThe floor plan of the residence is up to you, but it must be made up of fifty or fewer 10-foot cubes.\n\nThe furniture and decor are chosen by you. The residence contains enough food to provide Supply for a number of people equal to 5 × your proficiency bonus. A staff of translucent, lustrous servants dwell within the residence. They may otherwise look how you wish. These servants obey your commands without question, and can perform the same nonhostile actions as a human servant—they might carry objects, prepare and serve food and drinks, clean, make simple repairs, and so on. Servants have access to the entire mansion but may not leave.\n\nAll objects and furnishings belonging to the mansion evaporate into shimmering smoke when they leave it. Any creature within the mansion when the spell ends is expelled into an unoccupied space near the entrance.", + "document": "a5e-ag", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_major-image", + "fields": { + "name": "Major Image", + "desc": "Until the spell ends, you create an image that appears completely real. The illusion includes sounds, smells, and temperature in addition to visual phenomena. None of the effects of the illusion are able to cause actual harm.\n\nWhile within range you can use an action to move the illusion. As the image moves you may also change its appearance to make the movement seem natural (like a roc moving its wings to fly) and also change the nonvisual elements of the illusion for the same reason (like the sound of beating wings as the roc flies).\n\nAny physical interaction immediately reveals the image is an illusion, as objects and creatures alike pass through it. An Investigation check against your spell save DC also reveals the image is an illusion.\n\nWhen a creature realizes the image is an illusion, the effects become fainter for that creature.", + "document": "a5e-ag", + "level": 3, + "school": "illusion", + "higher_level": "When cast using a 6th-level spell slot the illusion lasts until dispelled without requiring concentration.", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_mass-cure-wounds", + "fields": { + "name": "Mass Cure Wounds", + "desc": "Glowing energy rushes through the air and each target regains hit points equal to 3d8 + your spellcasting modifier.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "The hit points regained increase by 1d8 for each slot level above 5th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_mass-heal", + "fields": { + "name": "Mass Heal", + "desc": "Healing energy erupts from your steepled hands and restores up to 700 hit points between the targets.\n\nCreatures healed in this way are also cured of any diseases, and any effect causing them to be blinded or deafened. In addition, on subsequent turns within the next minute you can use a bonus action to distribute any unused hit points.", + "document": "a5e-ag", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_mass-healing-word", + "fields": { + "name": "Mass Healing Word", + "desc": "Healing energy flows from you in a wash of restorative power and each target regains hit points equal to 1d4 + your spellcasting ability modifier.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "The hit points regained increase by 1d4 for each slot level above 3rd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_mass-suggestion", + "fields": { + "name": "Mass Suggestion", + "desc": "Creatures that cannot be charmed are immune to this spell. Suggest an activity phrased in a sentence or two. The targets are magically influenced to follow that course of activity. The suggestion must be worded to sound reasonable. Asking the targets to perform an action that is obviously harmful to them ends the spell.\n\nA target carries out the activity suggested by you as well as it can. The activity can last for the duration of the spell, and if it requires less time the spell ends after a target has carried out the activity.\n\nYou may specify trigger conditions that cause a target to perform a specific activity while the spell lasts. For example, you may suggest that the target takes off its clothes and dives the next time it sees a body of water. If the target does not see a body of water before the spell ends, the specific activity isn't performed.\n\nAny damage done to a target by you or an ally ends the spell for that creature.", + "document": "a5e-ag", + "level": 6, + "school": "enchantment", + "higher_level": "When cast using a 7th-level spell slot, the duration of the spell increases to 10 days. When cast using an 8th-level spell slot, the duration increases to 30 days. When cast using a 9th-level spell slot, the duration increases to a year and a day.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_maze", + "fields": { + "name": "Maze", + "desc": "The target is banished to a complex maze on its own demiplane, and remains there for the duration or until the target succeeds in escaping.\n\nThe target can use an action to attempt to escape, making an Intelligence saving throw. On a successful save it escapes and the spell ends. A creature with Labyrinthine Recall (or a similar trait) automatically succeeds on its save.\n\nWhen the spell ends the target reappears in the space it occupied before the spell was cast, or the closest unoccupied space if that space is occupied.", + "document": "a5e-ag", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_meld-into-stone", + "fields": { + "name": "Meld Into Stone", + "desc": "Until the spell ends, you meld yourself and your carried equipment into the target stone. Using your movement, you may enter the stone from any point you can touch. No trace of your presence is visible or detectable by nonmagical senses.\n\nWithin the stone, you can't see outside it and have disadvantage on Perception checks made to hear beyond it. You are aware of time passing, and may cast spells upon yourself. You may use your movement only to step out of the target where you entered it, ending the spell.\n\nIf the target is damaged such that its shape changes and you no longer fit within it, you are expelled and take 6d6 bludgeoning damage. Complete destruction of the target, or its transmutation into another substance, expels you and you take 50 bludgeoning damage. When expelled you fall prone into the closest unoccupied space near your entrance point.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "When using a 5th-level spell slot, you may reach out of the target to make spell attacks or ranged weapon attacks without ending the spell. You make these attacks with disadvantage.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_mending", + "fields": { + "name": "Mending", + "desc": "You repair a single rip or break in the target object (for example, a cracked goblet, torn page, or ripped robe). The break must be smaller than 1 foot in all dimensions. The spell leaves no trace that the object was damaged.\n\nMagic items and constructs may be repaired in this way, but their magic is not restored. You gain an expertise die on maintenance checks if you are able to cast this spell on the item you are treating.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_mental-grip", + "fields": { + "name": "Mental Grip", + "desc": "You conjure extensions of your own mental fortitude to keep your foes at bay. For the spell's duration, you can use an action to attempt to grapple a creature within range by making a concentration check against its maneuver DC.\n\nOn its turn, a target grappled in this way can use an action to attempt to escape the grapple, using your spell save DC instead of your maneuver DC.\n\nSuccessful escape attempts do not break your concentration on the spell.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_message", + "fields": { + "name": "Message", + "desc": "You point and whisper your message at the target.\n\nIt alone hears the message and may reply in a whisper audible only to you.\n\nYou can cast this spell through solid objects if you are familiar with the target and are certain it is beyond the barrier. The message is blocked by 3 feet of wood, 1 foot of stone, 1 inch of common metals, or a thin sheet of lead.\n\nThe spell moves freely around corners or through openings.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_meteor-swarm", + "fields": { + "name": "Meteor Swarm", + "desc": "Scorching spheres of flame strike the ground at 4 different points within range. The effects of a sphere reach around corners. Creatures and objects in the area take 14d6 fire damage and 14d6 bludgeoning damage, and flammable unattended objects catch on fire. If a creature is in the area of more than one sphere, it is affected only once.", + "document": "a5e-ag", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "1 mile", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_mind-blank", + "fields": { + "name": "Mind Blank", + "desc": "The target is immune to psychic damage, any effect that would read its emotions or thoughts, divination spells, and the charmed condition.\n\nThis immunity extends even to the wish spell, and magical effects or spells of similar power that would affect the target's mind or gain information about it.", + "document": "a5e-ag", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_mindshield", + "fields": { + "name": "Mindshield", + "desc": "The target has resistance to psychic damage and advantage on saving throws made to resist being charmed or frightened.", + "document": "a5e-ag", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_minor-illusion", + "fields": { + "name": "Minor Illusion", + "desc": "This spell creates a sound or image of an object.\n\nThe illusion disappears if dismissed or you cast the spell again.\n\nYou may create any sound you choose, ranging in volume from a whisper to a scream. You may choose one sound for the duration or change them at varying points before the spell ends. Sounds are audible outside the spell's area.\n\nVisual illusions may replicate any image and remain within the spell's area, but cannot create sound, light, smell, or other sensory effects.\n\nThe image is revealed as an illusion with any physical interaction as physical objects and creatures pass through it. An Investigation check against your spell save DC also reveals the image is an illusion. When a creature realizes the image is an illusion, the effects become fainter for that creature.", + "document": "a5e-ag", + "level": 0, + "school": "illusion", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_mirage-arcane", + "fields": { + "name": "Mirage Arcane", + "desc": "You make terrain within the spell's area appear as another kind of terrain, tricking all senses (including touch).\n\nThe general shape of the terrain remains the same, however. A small town could resemble a woodland, a smooth road could appear rocky and overgrown, a deep pit could resemble a shallow pond, and so on.\n\nStructures may be altered in the similar way, or added where there are none. Creatures are not disguised, concealed, or added by the spell.\n\nThe illusion appears completely real in all aspects, including physical terrain, and can be physically interacted with. Clear terrain becomes difficult terrain, and vice versa. Any part of the illusory terrain such as a boulder, or water collected from an illusory stream, disappears immediately upon leaving the spell's area.\n\nCreatures with truesight see through the illusion, but are not immune to its effects. They may know that the overgrown path is in fact a well maintained road, but are still impeded by illusory rocks and branches.", + "document": "a5e-ag", + "level": 7, + "school": "illusion", + "higher_level": "", + "target_type": "area", + "range": "Sight", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_mirror-image", + "fields": { + "name": "Mirror Image", + "desc": "A total of 3 illusory copies of yourself appear in your space. For the duration, these copies move with you and mimic your actions, creating confusion as to which is real.\n\nYou can use an action to dismiss them.\n\nEach time you're targeted by a creature's attack, roll a d20 to see if it targets you or one of your copies.\n\nWith 3 copies, a roll of 6 or higher means a copy is targeted. With two copies, a roll of 8 or higher targets a copy, and with 1 copy a roll of 11 or higher targets the copy.\n\nA copy's AC is 10 + your Dexterity modifier, and when it is hit by an attack a copy is destroyed.\n\nIt may be destroyed only by an attack that hits it.\n\nAll other damage and effects have no impact.\n\nAttacking creatures that have truesight, cannot see, have blindsight, or rely on other nonvisual senses are unaffected by this spell.", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "When using a 5th-level spell slot, the duration increases to concentration (1 hour).", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_mislead", + "fields": { + "name": "Mislead", + "desc": "You become invisible. At the same time, an illusory copy of you appears where you're standing.\n\nThis invisibility ends when you cast a spell but the copy lasts until the spell ends.\n\nYou can use an action to move your copy up to twice your Speed, have it speak, make gestures, or behave however you'd like.\n\nYou may see and hear through your copy. Until the spell ends, you can use a bonus action to switch between your copy's senses and your own, or back again. While using your copy's senses you are blind and deaf to your body's surroundings.\n\nThe copy is revealed as an illusion with any physical interaction, as solid objects and creatures pass through it.", + "document": "a5e-ag", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_misty-step", + "fields": { + "name": "Misty Step", + "desc": "You teleport to an unoccupied space that you can see, disappearing and reappearing in a swirl of shimmering mist.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_modify-memory", + "fields": { + "name": "Modify Memory", + "desc": "The target has advantage on its saving throw if you are in combat with it. The target becomes charmed and incapacitated, though it can still hear you. Until the spell ends, any memories of an event that took place within the last 24 hours and lasted 10 minutes or less may be altered.\n\nYou may destroy the memory, have the target recall the event with perfect clarity, change the details, or create a new memory entirely with the same restrictions in time frame and length.\n\nYou must speak to the target in a language you both know to modify its memories and describe how the memory is changed. The target fills in the gaps in details based on your description.\n\nThe spell automatically ends if the target takes any damage or if it is targeted by another spell. If the spell ends before you have finished modifying its memories, the alteration fails. Otherwise, the alteration is complete when the spell ends and only greater restoration or remove curse can restore the memory.\n\nThe Narrator may deem a modified memory too illogical or nonsensical to affect a creature, in which case the modified memory is simply dismissed by the target. In addition, a modified memory doesn't specifically change the behavior of a creature, especially if the memory conflicts with the creature's personality, beliefs, or innate tendencies.\n\nThere may also be events that are practically unforgettable and after being modified can be remembered correctly when another creature succeeds on a Persuasion check to stir the target's memories. This check is made with disadvantage if the creature does not have indisputable proof on hand that is relevant to the altered memory.", + "document": "a5e-ag", + "level": 5, + "school": "enchantment", + "higher_level": "When using a 6th-level spell slot, the event can be from as far as 7 days ago. When using a 7th-level spell slot, the event can be from as far as 30 days ago. When using an 8th-level spell slot, the event can be from as far as 1 year ago. When using a 9th-level spell slot, any event can be altered.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_moonbeam", + "fields": { + "name": "Moonbeam", + "desc": "A beam of moonlight fills the area with dim light.\n\nWhen a creature enters the area for the first time on a turn or begins its turn in the area, it is struck by silver flames and makes a Constitution saving throw, taking 2d10 radiant damage on a failed save, or half as much on a success.\n\nShapechangers have disadvantage on this saving throw. On a failed save, a shapechanger is forced to take its original form while within the spell's light.\n\nOn your turn, you may use an action to move the beam 60 feet in any direction.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "The damage increases by 1d10 for each slot level above 2nd.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_move-earth", + "fields": { + "name": "Move Earth", + "desc": "You reshape the area, changing its elevation or creating and eliminating holes, walls, and pillars.\n\nThe only limitation is that the elevation change may not exceed half the area's horizontal dimensions.\n\nFor example, affecting a 40-by-40 area allows you to include 20 foot high pillars, holes 20 feet deep, and changes in terrain elevation of 20 feet or less.\n\nChanges that result in unstable terrain are subject to collapse.\n\nChanges take 10 minutes to complete, after which you can choose another area to affect. Due to the slow speed of transformation, it is nearly impossible for creatures to be hurt or captured by the spell.\n\nThis spell has no effect on stone, objects crafted from stone, or plants, though these objects will shift based on changes in the area.", + "document": "a5e-ag", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "2 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_nondetection", + "fields": { + "name": "Nondetection", + "desc": "The target is hidden from divination magic and cannot be perceived by magical scrying sensors.\n\nWhen used on a place or object, the spell only works if the target is no larger than 10 feet in any given dimension.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_pass-without-trace", + "fields": { + "name": "Pass Without Trace", + "desc": "You and allies within the area gain advantage and an expertise die on Dexterity (Stealth) checks as an aura of secrecy enshrouds you. Creatures in the area leave behind no evidence of their passage.", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_passwall", + "fields": { + "name": "Passwall", + "desc": "Until the spell ends, you create a passage extending into the target surface. When creating the passage you define its dimensions, as long as they do not exceed 5 feet in width, 8 feet in height, or 20 feet in depth.\n\nThe appearance of the passage has no effect on the stability of the surrounding environment.\n\nAny creatures or objects within the passage when the spell ends are expelled without harm into unoccupied spaces near where the spell was cast.", + "document": "a5e-ag", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_pestilence", + "fields": { + "name": "Pestilence", + "desc": "A swarm of insects fills the area. Creatures that begin their turn within the spell's area or who enter the area for the first time on their turn must make a Constitution saving throw or take 1d4 piercing damage. The pests also ravage any unattended organic material within their radius, such as plant, wood, or fabric.", + "document": "a5e-ag", + "level": 0, + "school": "conjuration", + "higher_level": "This spell's damage increases by 1d4 when you reach 5th level (2d4), 10th level (3d4), and 15th level (4d4).", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_phantasmal-killer", + "fields": { + "name": "Phantasmal Killer", + "desc": "You create an illusion that invokes the target's deepest fears. Only the target can see this illusion.\n\nWhen the spell is cast and at the end of each of its turns, the target makes a Wisdom saving throw or takes 4d10 psychic damage and becomes frightened.\n\nThe spell ends early when the target succeeds on its saving throw. A target that succeeds on its initial saving throw takes half damage.", + "document": "a5e-ag", + "level": 4, + "school": "illusion", + "higher_level": "The damage increases by 1d10 for each slot level above the 4th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "4d10", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_phantasmal-talons", + "fields": { + "name": "Phantasmal Talons", + "desc": "You silently clench your hand into a claw and invisible talons of pure will sprout from your fingers.\n\nThe talons do not interact with physical matter, but rip viciously at the psyche of any creature struck by them. For the duration, your unarmed strikes gain the finesse property and deal psychic damage. In addition, if your unarmed strike normally deals less than 1d4 damage, it instead deals 1d4 damage.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_phantom-steed", + "fields": { + "name": "Phantom Steed", + "desc": "You create an illusory Large creature with an appearance determined by you that comes into being with all the necessary equipment needed to use it as a mount. This equipment vanishes when more than 10 feet away from the creature.\n\nYou or any creature you allow may ride the steed, which uses the statistics for a riding horse but has a Speed of 100 feet and travels at 10 miles per hour at a steady pace (13 miles per hour at a fast pace).\n\nThe steed vanishes if it takes damage (disappearing instantly) or you use an action to dismiss it (fading away, giving the rider 1 minute to dismount).", + "document": "a5e-ag", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_planar-ally", + "fields": { + "name": "Planar Ally", + "desc": "An entity from beyond the realm material answers your call for assistance. You must know this entity whether it is holy, unholy, or beyond the bounds of mortal comprehension. The entity sends forth a servant loyal to it to aid you in your endeavors. If you have a specific servant in mind you may speak its name during the casting, but ultimately who is sent to answer your call is the entity's decision.\n\nThe creature that appears (a celestial, elemental, fey, or fiend), is under no compulsion to behave in any particular way other than how its nature and personality direct it. Any request made of the creature, simple or complex, requires an equal amount of payment which you must bargain with the creature to ascertain. The creature can request either items, sacrifices, or services in exchange for its assistance. A creature that you cannot communicate with cannot be bargained with.\n\nA task that can be completed in minutes is worth 100 gold per minute, a task that requires hours is worth 1, 000 gold per hour, and a task requiring days is worth 10, 000 gold per day (the creature can only accept tasks contained within a 10 day timeframe). A creature can often be persuaded to lower or raise prices depending on how a task aligns with its personality and the goals of its master —some require no payment at all if the task is deemed worthy. Additionally, a task that poses little or no risk only requires half the usual amount of payment, and an extremely dangerous task might call for double the usual payment. Still, only extreme circumstances will cause a creature summoned this way to accept tasks with a near certain result of death.\n\nA creature returns to its place of origin when a task is completed or if you fail to negotiate an agreeable task and payment. Should a creature join your party, it counts as a member of the group and receives a full portion of any experience gained.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_planar-binding", + "fields": { + "name": "Planar Binding", + "desc": "The target must remain within range for the entire casting of the spell (usually by means of a magic circle spell). Until the spell ends, you force the target to serve you. If the target was summoned through some other means, like a spell, the duration of the original spell is extended to match this spell's duration.\n\nOnce it is bound to you the target serves as best it can and follows your orders, but only to the letter of the instruction. A hostile or malevolent target actively seeks to take any advantage of errant phrasing to suit its nature. When a target completes a task you've assigned to it, if you are on the same plane of existence the target travels back to you to report it has done so. Otherwise, it returns to where it was bound and remains there until the spell ends.", + "document": "a5e-ag", + "level": 5, + "school": "abjuration", + "higher_level": "When using a 6th-level spell slot, its duration increases to 10 days. When using a 7th-level spell slot, its duration increases to 30 days. When using an 8th-level spell slot, its duration increases to 180 days. When using a 9th-level spell slot, its duration increases to a year and a day.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_plane-shift", + "fields": { + "name": "Plane Shift", + "desc": "Willing targets are transported to a plane of existence that you choose. If the destination is generally described, targets arrive near that destination in a location chosen by the Narrator. If you know the correct sequence of an existing teleportation circle (see teleportation circle), you can choose it as the destination (when the designated circle is too small for all targets to fit, any additional targets are shunted to the closest unoccupied spaces).\n\nAlternatively this spell can be used offensively to banish an unwilling target. You make a melee spell attack and on a hit the target makes a Charisma saving throw or is transported to a random location on a plane of existence that you choose. Once transported, you must spend 1 minute concentrating on this spell or the target returns to the last space it occupied (otherwise it must find its own way back).", + "document": "a5e-ag", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 8, + "saving_throw_ability": "charisma", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_plant-growth", + "fields": { + "name": "Plant Growth", + "desc": "You channel vitality into vegetation to achieve one of the following effects, chosen when casting the spell.\n\nEnlarged: Plants in the area are greatly enriched. Any harvests of the affected plants provide twice as much food as normal.\n\nRapid: All nonmagical plants in the area surge with the power of life. A creature that moves through the area must spend 4 feet of movement for every foot it moves. You can exclude one or more areas of any size from being affected.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_poison-skin", + "fields": { + "name": "Poison Skin", + "desc": "The target becomes poisonous to the touch. Until the spell ends, whenever a creature within 5 feet of the target damages the target with a melee weapon attack, the creature makes a Constitution saving throw. On a failed save, the creature becomes poisoned and takes 1d6 ongoing poison damage.\n\nA poisoned creature can make a Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThe target of the spell also becomes bright and multicolored like a poisonous dart frog, giving it disadvantage on Dexterity (Stealth) checks.", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "The target's skin is also covered in mucus, giving it advantage on saving throws and checks made to resist being grappled or restrained. In addition, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "poison" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_polymorph", + "fields": { + "name": "Polymorph", + "desc": "The target's body is transformed into a beast with a Challenge Rating equal to or less than its own. If the target doesn't have a Challenge Rating, use its level.\n\nUntil the spell ends or it is dropped to 0 hit points, the target's game statistics (including its hit points and mental ability scores) are replaced by the statistics of the chosen beast. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effects on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_power-word-kill", + "fields": { + "name": "Power Word Kill", + "desc": "With but a word you snuff out the target's life and it immediately dies. If you cast this on a creature with more than 100 hit points, it takes 50 hit points of damage.", + "document": "a5e-ag", + "level": 9, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_power-word-stun", + "fields": { + "name": "Power Word Stun", + "desc": "You utter a powerful word that stuns a target with 150 hit points or less. At the end of the target's turn, it makes a Constitution saving throw to end the effect. If the target has more than 150 hit points, it is instead rattled until the end of its next turn.", + "document": "a5e-ag", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_prayer-of-healing", + "fields": { + "name": "Prayer of Healing", + "desc": "The targets regain hit points equal to 2d8 + your spellcasting ability modifier.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "The hit points regained increase by 1d8 for each slot level above 2nd.", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_prestidigitation", + "fields": { + "name": "Prestidigitation", + "desc": "You wield arcane energies to produce minor effects. Choose one of the following:\n\n* create a single burst of magic that manifests to one of the senses (for example a burst of sound, sparks, or an odd odor).\n* clean or soil an object of 1 cubic foot or less.\n* light or snuff a flame.\n* chill, warm, or flavor nonliving material of 1 cubic foot or less for 1 hour.\n* color or mark an object or surface for 1 hour.\n* create an ordinary trinket or illusionary image that fits in your hand and lasts for 1 round.\n\nYou may cast this spell multiple times, though only three effects may be active at a time. Dismissing each effect requires an action.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_prismatic-spray", + "fields": { + "name": "Prismatic Spray", + "desc": "You unleash 8 rays of light, each with a different purpose and effect. For each target in the area, roll a d8 to determine the ray that affects it.\n\n1—Red: The target takes 10d6 fire damage.\n\n2—Orange: The target takes 10d6 acid damage.\n\n3—Yellow: The target takes 10d6 lightning damage.\n\n4—Green: The target takes 10d6 poison damage.\n\n5—Blue: The target takes 10d6 cold damage.\n\n6—Indigo: The target is restrained and at the end of each of its turns it makes a Constitution saving throw. Once it accumulates two failed saves it permanently turns to stone, or when it accumulates two successful saves the effect ends.\n\n7—Violet: The target is blinded. At the start of your next turn, the target makes a Wisdom saving throw, ending the effect on a success.\n\nOn a failed save, the target is banished to another random plane and is no longer blind. If it originated from another plane it returns there, while other creatures are generally cast into the Astral Plane or Ethereal Plane.\n\n8—Special: The target is hit by two rays.\n\nRoll a d8 twice to determine which rays, rerolling any 8s.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_prismatic-wall", + "fields": { + "name": "Prismatic Wall", + "desc": "You create a nontransparent barrier of prismatic energy that sheds bright light in a 100-foot radius and dim light for an additional 100 feet. You and creatures you choose at the time of casting are immune to the barrier's effects and may pass through it at will.\n\nThe barrier can be created as either a vertical wall or a sphere. If the wall intersects a space occupied by a creature the spell fails, you lose your action, and the spell slot is wasted.\n\nWhen a creature that can see the barrier moves within 20 feet of the area or starts its turn within 20 feet of the area, it makes a Constitution saving throw or it is blinded for 1 minute.\n\nThe wall has 7 layers, each layer of a different color in order from red to violet. Once a layer is destroyed, it is gone for the duration of the spell.\n\nTo pass or reach through the barrier a creature does so one layer at a time and must make a Dexterity saving throw for each layer or be subjected to that layer's effects. On a successful save, any damage taken from a layer is reduced by half.\n\nA rod of cancellation can destroy a prismatic wall, but an antimagic field has no effect.\n\nRed: The creature takes 10d6 fire damage.\n\nWhile active, nonmagical ranged attacks can't penetrate the barrier. The layer is destroyed by 25 cold damage.\n\nOrange: The creature takes 10d6 acid damage. While active, magical ranged attacks can't penetrate the barrier. The layer is destroyed by strong winds.\n\nYellow: The creature takes 10d6 lightning damage. This layer is destroyed by 60 force damage.\n\nGreen: The creature takes 10d6 poison damage. A passwall spell, or any spell of equal or greater level which can create a portal on a solid surface, destroys the layer.\n\nBlue: The creature takes 10d6 cold damage.\n\nThis layer is destroyed by 25 fire damage.\n\nIndigo: The creature is restrained and makes a Constitution saving throw at the end of each of its turns. Once it accumulates three failed saves it permanently turns to stone, or when it accumulates three successful saves the effect ends. This layer can be destroyed by bright light, such as that created by the daylight spell or a spell of equal or greater level.\n\nViolet: The creature is blinded. At the start of your next turn, the creature makes a Wisdom saving throw, ending the effect on a success.\n\nOn a failed save, the creature is banished to another random plane and is no longer blind. If it originated from another plane it returns there, while other creatures are generally cast into the Astral Plane or Ethereal Plane. This layer can be destroyed by dispel magic or a similar spell of equal or greater level capable of ending spells or magical effects.", + "document": "a5e-ag", + "level": 9, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "fire" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_private-sanctum", + "fields": { + "name": "Private Sanctum", + "desc": "You increase the magical security in an area, choosing one or more of the following:\n\n* sound cannot pass the edge of the area.\n* light and vision cannot pass the edge of the area.\n* sensors created by divination spells can neither enter the area nor appear within it.\n* creatures within the area cannot be targeted by divination spells.\n* nothing can teleport into or out of the area.\n* planar travel is impossible within the area.\n\nCasting this spell on the same area every day for a year makes the duration permanent.", + "document": "a5e-ag", + "level": 4, + "school": "abjuration", + "higher_level": "Increase the size of the sanctum by up to 100 feet for each slot level above 4th.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_produce-flame", + "fields": { + "name": "Produce Flame", + "desc": "You create a flame in your hand which lasts until the spell ends and does no harm to you or your equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nThe spell ends when you dismiss it, cast it again, or attack with the flame. As part of casting the spell or as an action on a following turn, you can fling the flame at a creature within 30 feet, making a ranged spell attack that deals 1d8 fire damage.", + "document": "a5e-ag", + "level": 0, + "school": "conjuration", + "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_programmed-illusion", + "fields": { + "name": "Programmed Illusion", + "desc": "You craft an illusory object, creature, or other effect which executes a scripted performance when a specific condition is met within 30 feet of the area.\n\nYou must describe both the condition and the details of the performance upon casting. The trigger must be based on something that can be seen or heard.\n\nOnce the illusion triggers, it runs its performance for up to 5 minutes before it disappears and goes dormant for 10 minutes. The illusion is undetectable until then and only reactivates when the condition is triggered and after the dormant period has passed.\n\nA creature can use an action to attempt an Investigation check against your spell save DC to reveal the spell's illusory nature. Physical interactions reveal the illusion for what it is as things can pass through it with ease. A creature aware of the illusion perceives the image as transparent and the sounds it generates hollow.", + "document": "a5e-ag", + "level": 6, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_project-image", + "fields": { + "name": "Project Image", + "desc": "You create an illusory duplicate of yourself that looks and sounds like you but is intangible. The duplicate can appear anywhere within range as long as you have seen the space before (it ignores any obstacles in the way).\n\nYou can use an action to move this duplicate up to twice your Speed and make it speak and behave in whatever way you choose, mimicking your mannerism with perfect accuracy. You can use a bonus action to see through your duplicate's eyes and hear through its ears until the beginning of your next turn. During this time, you are blind and deaf to your body's surroundings.\n\nA creature can use an action to attempt an Investigation check against your spell save DC to reveal the spell's illusory nature. Physical interactions reveal the illusion for what it is as things can pass through it with ease. A creature aware of the illusion perceives the image as transparent and the sounds it generates hollow.", + "document": "a5e-ag", + "level": 7, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 day", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_protection-from-energy", + "fields": { + "name": "Protection from Energy", + "desc": "Until the spell ends, the target has resistance to one of the following damage types: acid, cold, fire, lightning, thunder.", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "For each slot level above 2nd, the target gains resistance to one additional type of damage listed above, with a maximum number equal to your spellcasting ability modifier.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_protection-from-evil-and-good", + "fields": { + "name": "Protection from Evil and Good", + "desc": "The target is protected against the following types of creatures: aberrations, celestials, elementals, fey, fiends, and undead. Creatures of those types have disadvantage on attack rolls against the target and are unable to charm, frighten, or possess the target.\n\nIf the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against that effect.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_protection-from-poison", + "fields": { + "name": "Protection from Poison", + "desc": "The target has advantage on saving throws against being poisoned and resistance to poison damage.\n\nAdditionally, if the target is poisoned, you negate one poison affecting it. If more than one poison affects the target, you negate one poison you know is present (otherwise you negate one at random).", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_purify-food-and-drink", + "fields": { + "name": "Purify Food and Drink", + "desc": "You remove all poison and disease from a number of Supply equal to your proficiency bonus.", + "document": "a5e-ag", + "level": 1, + "school": "transmutation", + "higher_level": "Remove all poison and disease from an additional Supply for each slot level above 1st.", + "target_type": "point", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_rage-of-the-meek", + "fields": { + "name": "Rage of the Meek", + "desc": "You unleash the discipline of your magical training and let arcane power burn from your fists, consuming the material components of the spell. Until the spell ends you have resistance to bludgeoning, piercing, and slashing damage from nonmagical weapons, and on each of your turns you can use an action to make a melee spell attack against a target within 5 feet that deals 4d8 force damage on a successful hit.\n\nFor the duration, you cannot cast other spells or concentrate on other spells. The spell ends early if your turn ends and you haven't attacked a hostile creature since your last turn or taken damage since then. You can also end this spell early on your turn as a bonus action.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "When using a spell slot of 5th- or 6th-level, the damage increases to 5d8.\n\nWhen using a spell slot of 7th- or 8th-level, the damage increases to 6d8\\. When using a spell slot of 9th-level, the damage increases to 7d8.", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_raise-dead", + "fields": { + "name": "Raise Dead", + "desc": "You return the target to life, provided its soul is willing and able to return to its body. The creature returns to life with 1 hit point. The spell cannot return an undead creature to life.\n\nThe spell cures any poisons and nonmagical diseases that affected the creature at the time of death. It does not remove any magical diseases, curses, or other magical effects; these must be removed prior to the spell being cast, otherwise they immediately take effect when the creature returns to life.\n\nThe spell does not regrow limbs or organs, and it automatically fails if the target is missing any body parts necessary for life (like its heart or head).\n\nBeing raised from the dead takes a toll on the body, mind, and spirit. The target suffers 3 levels of fatigue and strife. At the conclusion of each long rest, the target removes one level of fatigue and strife until the target completely recovers.", + "document": "a5e-ag", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_raise-hell", + "fields": { + "name": "Raise Hell", + "desc": "You transform the land around you into a blasted hellscape. When you cast the spell, all nonmagical vegetation in the area immediately dies. In addition, you can create any of the following effects within the area. Fiends are immune to these effects, as are any creatures you specify at the time you cast the spell. A successful dispel magic ends a single effect, not the entire area.\n\nBrimstone Rubble. You can fill any number of unoccupied 5-foot squares in the area with smoldering brimstone. These spaces become difficult terrain. A creature that enters an affected square or starts its turn there takes 2d10 fire damage.\n\nField of Fear. Dread pervades the entire area.\n\nA creature that starts its turn in the area must make a successful Wisdom saving throw or be frightened until the start its next turn. While frightened, a creature must take the Dash action to escape the area by the safest available route on each of its turns. On a successful save, the creature becomes immune to this effect for 24 hours.\n\nSpawning Pits. The ground opens to create up to 6 pits filled with poisonous bile. Each pit fills a 10-foot cube that drops beneath the ground.\n\nWhen this spell is cast, any creature whose space is on a pit may make a Dexterity saving throw, moving to an unoccupied space next to the pit on a success. A creature that enters a pit or starts its turn there takes 15d6 poison damage, or half as much damage on a successful Constitution saving throw. A creature reduced to 0 hit points by this damage immediately dies and rises as a lemure at the start of its next turn. Lemures created this way obey your verbal commands, but they disappear when the spell ends or if they leave the area for any reason.\n\nUnhallowed Spires. Up to four spires of black ice rise from the ground in unoccupied 10-foot squares within the area. Each spire can be up to 66 feet tall and is immune to all damage and magical effects. Whenever a creature within 30 feet of a spire would regain hit points, it does not regain hit points and instead takes 3d6 necrotic damage.\n\nIf you maintain concentration on the spell for the full duration, the effects are permanent until dispelled.", + "document": "a5e-ag", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d10", + "damage_types": [ + "fire" + ], + "duration": "24 hours", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_ray-of-enfeeblement", + "fields": { + "name": "Ray of Enfeeblement", + "desc": "A black ray of necrotic energy shoots from your fingertip. Make a ranged spell attack against the target. On a hit, the target is weakened and only deals half damage with weapon attacks that use Strength.\n\nAt the end of each of the target's turns, it can make a Strength saving throw, ending the spell on a success.", + "document": "a5e-ag", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_ray-of-frost", + "fields": { + "name": "Ray of Frost", + "desc": "An icy beam shoots from your outstretched fingers.\n\nMake a ranged spell attack. On a hit, you deal 1d8 cold damage and reduce the target's Speed by 10 feet until the start of your next turn.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_regenerate", + "fields": { + "name": "Regenerate", + "desc": "You touch a creature, causing its body to spontaneously heal itself. The target immediately regains 4d8 + 15 hit points and regains 10 hit points per minute (1 hit point at the start of each of its turns).\n\nIf the target is missing any body parts, the lost parts are restored after 2 minutes. If a severed part is held against the stump, the limb instantaneously reattaches itself.", + "document": "a5e-ag", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_reincarnate", + "fields": { + "name": "Reincarnate", + "desc": "You return the target to life, provided the target's soul is willing and able to return to its body. If you only have a piece of the target, the spell reforms a new adult body for the soul to inhabit. Once reincarnated the target remembers everything from its former life, and retains all its proficiencies, cultural traits, and class features.\n\nThe target's heritage traits change according to its new form. The Narrator chooses the form of the new body, or rolls on Table: Reincarnation.", + "document": "a5e-ag", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_remove-curse", + "fields": { + "name": "Remove Curse", + "desc": "This spell ends a curse inflicted with a spell slot of 3rd-level or lower. If the curse was instead inflicted by a feature or trait, the spell ends a curse inflicted by a creature of Challenge Rating 6 or lower. If cast on a cursed object of Rare or lesser rarity, this spell breaks the owner's attunement to the item (although it does not end the curse on the object).", + "document": "a5e-ag", + "level": 3, + "school": "abjuration", + "higher_level": "For each slot level above 3rd, the spell ends a curse inflicted either by a spell one level higher or by a creature with a Challenge Rating two higher. When using a 6th-level spell slot, the spell breaks the owner's attunement to a Very Rare item.\n\nWhen using a 9th-level spell slot, the spell breaks the owner's attunement to a Legendary item.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_resilient-sphere", + "fields": { + "name": "Resilient Sphere", + "desc": "A transparent sphere of force encloses the target.\n\nThe sphere is weightless and just large enough for the target to fit inside. The sphere can be destroyed without harming anyone inside by being dealt at least 15 force damage at once or by being targeted with a dispel magic spell cast using a 4th-level or higher spell slot. The sphere is immune to all other damage, and no spell effects, physical objects, or anything else can pass through, though a target can breathe while inside it. The target cannot be damaged by any attacks or effects originating from outside the sphere, and the target cannot damage anything outside of it.\n\nThe target can use an action to roll the sphere at half its Speed. Similarly, the sphere can be picked up and moved by other creatures.", + "document": "a5e-ag", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_resistance", + "fields": { + "name": "Resistance", + "desc": "The target gains an expertise die to one saving throw of its choice, ending the spell. The expertise die can be rolled before or after the saving throw is made.", + "document": "a5e-ag", + "level": 0, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_resurrection", + "fields": { + "name": "Resurrection", + "desc": "Provided the target's soul is willing and able to return to its body, so long as it is not undead it returns to life with all of its hit points.\n\nThe spell cures any poisons and nonmagical diseases that affected the target at the time of death.\n\nIt does not remove any magical diseases, curses, or other magical effects; these must be removed prior to the spell being cast, otherwise they immediately take effect when the target returns to life. The spell closes all mortal wounds and restores any missing body parts.\n\nBeing raised from the dead takes a toll on the body, mind, and spirit. The target takes a -4 penalty to attack rolls, saving throws, and ability checks.\n\nAt the conclusion of each long rest, the penalty is reduced by 1 until the target completely recovers.\n\nResurrecting a creature that has been dead for one year or longer is exhausting. Until you finish a long rest, you can't cast spells again and you have disadvantage on attack rolls, ability checks, and saving throws.", + "document": "a5e-ag", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_reverse-gravity", + "fields": { + "name": "Reverse Gravity", + "desc": "Gravity reverses in the area. Any creatures or objects not anchored to the ground fall upward until they reach the top of the area. A creature may make a Dexterity saving throw to prevent the fall by grabbing hold of something. If a solid object (such as a ceiling) is encountered, the affected creatures and objects impact against it with the same force as a downward fall. When an object or creature reaches the top of the area, it remains suspended there until the spell ends.\n\nWhen the spell ends, all affected objects and creatures fall back down.", + "document": "a5e-ag", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_revivify", + "fields": { + "name": "Revivify", + "desc": "The target returns to life with 1 hit point. The spell does not restore any missing body parts and cannot return to life a creature that died of old age.", + "document": "a5e-ag", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_rope-trick", + "fields": { + "name": "Rope Trick", + "desc": "One end of the target rope rises into the air until it hangs perpendicular to the ground. At the upper end, a nearly imperceptible entrance opens to an extradimensional space that can fit up to 8 Medium or smaller creatures. The entrance can be reached by climbing the rope. Once inside, the rope can be pulled into the extradimensional space.\n\nNo spells or attacks can cross into or out of the extradimensional space. Creatures inside the extradimensional space can see out of a 3-foot-by- 5-foot window centered on its entrance. Creatures outside the space can spot the entrance with a Perception check against your spell save DC. If they can reach it, creatures can pass in and out of the space.\n\nWhen the spell ends, anything inside the extradimensional space falls to the ground.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_sacred-flame", + "fields": { + "name": "Sacred Flame", + "desc": "As long as you can see the target (even if it has cover) radiant holy flame envelops it, dealing 1d8 radiant damage.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_sanctuary", + "fields": { + "name": "Sanctuary", + "desc": "You ward a creature against intentional harm.\n\nAny creature that makes an attack against or casts a harmful spell against the target must first make a Wisdom saving throw. On a failed save, the attacking creature must choose a different creature to attack or it loses the attack or spell. This spell doesn't protect the target from area effects, such as an explosion.\n\nThis spell ends early when the target attacks or casts a spell that affects an enemy creature.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_scorching-ray", + "fields": { + "name": "Scorching Ray", + "desc": "Three rays of blazing orange fire shoot from your fingertips. Make a ranged spell attack for each ray.\n\nOn a hit, the target takes 2d6 fire damage.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "Create an additional ray for each slot level above 2nd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "2d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_scrying", + "fields": { + "name": "Scrying", + "desc": "You can see and hear a specific creature that you choose. The difficulty of the saving throw for this spell is modified by your knowledge of the target and whether you possess a physical item with a connection to the target.\n\nOn a failed save, you can see and hear the target through an invisible sensor that appears within 10 feet of it and moves with the target. Any creature who can see invisibility or rolls a critical success on its saving throw perceives the sensor as a fist-sized glowing orb hovering in the air. Creatures cannot see or hear you through the sensor.\n\nIf you choose to target a location, the sensor appears at that location and is immobile.", + "document": "a5e-ag", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_searing-equation", + "fields": { + "name": "Searing Equation", + "desc": "You briefly go into a magical trance and whisper an alien equation which you never fully remember once the spell is complete. Each creature in the area takes 3d4 psychic damage and is deafened for 1 round.\n\nCreatures who are unable to hear the equation, immune to psychic damage, or who have an Intelligence score lower than 4 are immune to this spell.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "Creatures are deafened for 1 additional round for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d4", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_secret-chest", + "fields": { + "name": "Secret Chest", + "desc": "You stash a chest and its contents on the Ethereal Plane. To do so, you must touch the chest and its Tiny replica. The chest can hold up to 12 cubic feet of nonliving matter. Food stored in the chest spoils after 1 day.\n\nWhile the chest is in the Ethereal Plane, you can recall it to you at any point by using an action to touch the Tiny replica. The chest reappears in an unoccupied space on the ground within 5 feet of you. You can use an action at any time to return the chest to the Ethereal Plane so long as you are touching both the chest and its Tiny replica.\n\nThis effect ends if you cast the spell again on a different chest, if the replica is destroyed, or if you use an action to end the spell. After 60 days without being recalled, there is a cumulative 5% chance per day that the spell effect will end. If for whatever reason the spell ends while the chest is still in the Ethereal Plane, the chest and all of its contents are lost.", + "document": "a5e-ag", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_see-invisibility", + "fields": { + "name": "See Invisibility", + "desc": "You can see invisible creatures and objects, and you can see into the Ethereal Plane. Ethereal creatures and objects appear translucent.", + "document": "a5e-ag", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_seed-bomb", + "fields": { + "name": "Seed Bomb", + "desc": "Up to four seeds appear in your hand and are infused with magic for the duration. As an action, a creature can throw one of these seeds at a point up to 60 feet away. Each creature within 5 feet of that point makes a Dexterity saving throw or takes 4d6 piercing damage. Depending on the material component used, a seed bomb also causes one of the following additional effects: Pinecone. Seed shrapnel explodes outward.\n\nA creature in the area of the exploding seed bomb makes a Constitution saving throw or it is blinded until the end of its next turn.\n\nSunflower. Seeds enlarge into a blanket of pointy needles. The area affected by the exploding seed bomb becomes difficult terrain for the next minute.\n\nTumbleweed. The weeds unravel to latch around creatures. A creature in the area of the exploding seed bomb makes a Dexterity saving throw or it becomes grappled until the end of its next turn.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "The damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "piercing" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_seeming", + "fields": { + "name": "Seeming", + "desc": "Until the spell ends or you use an action to dispel it, you can change the appearance of the targets. The spell disguises their clothing, weapons, and items as well as changes to their physical appearance. An unwilling target can make a Charisma saving throw to avoid being affected by the spell.\n\nYou can alter the appearance of the target as you see fit, including but not limited to: its heritage, 1 foot of height, weight, clothing, tattoos, piercings, facial features, hair style and length, skin and eye coloration, sex and any other distinguishing features.\n\nYou cannot disguise the target as a creature of a different size category, and its limb structure remains the same; for example if it's bipedal, you can't use this spell to make it appear as a quadruped.\n\nThe disguise does not hold up to physical inspection. A creature that tries to grab an illusory hat, for example, finds its hand passes straight through the figment. To see through your disguise without such an inspection, a creature must use its action to make an Investigation check against your spell save DC.", + "document": "a5e-ag", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_sending", + "fields": { + "name": "Sending", + "desc": "You send a message of 25 words or less to the target. It recognizes you as the sender and can reply immediately in kind. The message travels across any distance and into other planes of existence. If the target is on a different plane of existence than you, there is a 5% chance it doesn't receive your message. A target with an Intelligence score of at least 1 understands your message as you intend it (whether you share a language or not).", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Unlimited", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_sequester", + "fields": { + "name": "Sequester", + "desc": "You magically hide away a willing creature or object. The target becomes invisible, and it cannot be traced or detected by divination or scrying sensors. If the target is a living creature, it falls into a state of suspended animation and stops aging.\n\nThe spell ends when the target takes damage or a condition you set occurs. The condition can be anything you choose, like a set amount of time or a specific event, but it must occur within or be visible within 1 mile of the target.", + "document": "a5e-ag", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_shapechange", + "fields": { + "name": "Shapechange", + "desc": "You assume the form of a creature of a Challenge Rating equal to or lower than your level. The creature cannot be an undead or a construct, and it must be a creature you have seen. You change into the average version of that creature, and do not gain any class levels or the Spellcasting trait.\n\nUntil the spell ends or you are dropped to 0 hit points, your game statistics (including your hit points) are replaced by the statistics of the chosen creature, though you keep your Charisma, Intelligence, and Wisdom scores. You also keep your skill and saving throw proficiencies as well as gaining the creature's. However, if you share a proficiency with the creature, and the creature's bonus is higher than yours, you use the creature's bonus. You keep all of your features, skills, and traits gained from your class, heritage, culture, background, or other sources, and can use them as long as the creature is physically capable of doing so. You do not keep any special senses, such as darkvision, unless the creature also has them. You can only speak if the creature is typically capable of speech. You cannot use legendary actions or lair actions. Your gear melds into the new form. Equipment that merges with your form has no effect until you leave the form.\n\nWhen you revert to your normal form, you return to the number of hit points you had before you transformed. If the spell's effect on you ends early from dropping to 0 hit points, any excess damage carries over to your normal form and knocks you unconscious if the damage reduces you to 0 hit points.\n\nUntil the spell ends, you can use an action to change into another form of your choice. The new form follows all the rules as the previous form, with one exception: if the new form has more hit points than your previous form, your hit points remain at their previous value.", + "document": "a5e-ag", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_shatter", + "fields": { + "name": "Shatter", + "desc": "An ear-splitting ringing sound emanates through the area. Creatures in the area take 3d8 thunder damage. A creature made of stone, metal, or other inorganic material has disadvantage on its saving throw.\n\nAny nonmagical items within the area that are not worn or carried also take damage.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above 2nd.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_shattering-barrage", + "fields": { + "name": "Shattering Barrage", + "desc": "You create three orbs of jagged broken glass and hurl them at targets within range. You can hurl them at one target or several.\n\nMake a ranged spell attack for each orb. On a hit, the target takes 2d4 slashing damage and the shards of broken glass remain suspended in midair, filling the area they occupy (or 5 feet of the space they occupy if the creature is Large-sized or larger) with shards of suspended broken glass. Whenever a creature enters an area of broken glass for the first time or starts its turn there, it must succeed on a Dexterity saving throw or take 2d4 slashing damage.\n\nThe shards of broken glass dissolve into harmless wisps of sand and blow away after 1 minute.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "You create one additional orb for each slot level above 2nd.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": true, + "damage_roll": "2d4", + "damage_types": [ + "slashing" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_shield", + "fields": { + "name": "Shield", + "desc": "You create a shimmering arcane barrier between yourself and an oncoming attack. Until the spell ends, you gain a +5 bonus to your AC (including against the triggering attack) and any magic missile targeting you is harmlessly deflected.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_shield-of-faith", + "fields": { + "name": "Shield of Faith", + "desc": "Until the spell ends, a barrier of divine energy envelops the target and increases its AC by +2.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "The bonus to AC increases by +1 for every three slot levels above 1st.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_shillelagh", + "fields": { + "name": "Shillelagh", + "desc": "You imbue the target with nature's magical energy. Until the spell ends, the target becomes a magical weapon (if it wasn't already), its damage becomes 1d8, and you can use your spellcasting ability instead of Strength for melee attack and damage rolls made using it. The spell ends if you cast it again or let go of the target.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_shocking-grasp", + "fields": { + "name": "Shocking Grasp", + "desc": "Electricity arcs from your hand to shock the target. Make a melee spell attack (with advantage if the target is wearing armor made of metal). On a hit, you deal 1d8 lightning damage, and the target can't take reactions until the start of its next turn as the electricity courses through its body.", + "document": "a5e-ag", + "level": 0, + "school": "evocation", + "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_silence", + "fields": { + "name": "Silence", + "desc": "Until the spell ends, a bubble of silence envelops the area, and no sound can travel in or out of it.\n\nWhile in the area a creature is deafened and immune to thunder damage. Casting a spell that requires a vocalized component is impossible while within the area.", + "document": "a5e-ag", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_silent-image", + "fields": { + "name": "Silent Image", + "desc": "You create an illusory image of a creature, object, or other visible effect within the area. The illusion is purely visual, it cannot produce sound or smell, and items and other creatures pass through it.\n\nAs an action, you can move the image to any point within range. The image's movement can be natural and lifelike (for example, a ball will roll and a bird will fly).\n\nA creature can spend an action to make an Investigation check against your spell save DC to determine if the image is an illusion. On a success, it is able to see through the image.", + "document": "a5e-ag", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_simulacrum", + "fields": { + "name": "Simulacrum", + "desc": "You sculpt an illusory duplicate of the target from ice and snow. The duplicate looks exactly like the target and uses all the statistics of the original, though it is formed without any gear, and has only half of the target's hit point maximum. The duplicate is a creature, can take actions, and be affected like any other creature. If the target is able to cast spells, the duplicate cannot cast spells of 7th-level or higher.\n\nThe duplicate is friendly to you and creatures you designate. It follows your spoken commands, and moves and acts on your turn in combat. It is a static creature and it does not learn, age, or grow, so it never increases in levels and cannot regain any spent spell slots.\n\nWhen the simulacrum is damaged you can repair it in an alchemy lab using components worth 100 gold per hit point it regains. The simulacrum remains until it is reduced to 0 hit points, at which point it crumbles into snow and melts away immediately.\n\nIf you cast this spell again, any existing simulacrum you have created with this spell is instantly destroyed.", + "document": "a5e-ag", + "level": 7, + "school": "illusion", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_sleep", + "fields": { + "name": "Sleep", + "desc": "You send your enemies into a magical slumber.\n\nStarting with the target with the lowest hit points (ignoring unconscious creatures), targets within the area fall unconscious in ascending order according to their hit points. Slumbering creatures stay asleep until the spell ends, they take damage, or someone uses an action to physically wake them.\n\nAs each target falls asleep, subtract its hit points from the total before moving on to the next target.\n\nA target's hit points must be equal to or less than the total remaining for the spell to have any effect.\n\nIf the spell puts no creatures to sleep, the creature in the area with the lowest hit point total is rattled until the beginning of its next turn.\n\nConstructs and undead are not affected by this spell.", + "document": "a5e-ag", + "level": 1, + "school": "enchantment", + "higher_level": "The spell affects an additional 2d10 hit points worth of creatures for each slot level above 1st.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_sleet-storm", + "fields": { + "name": "Sleet Storm", + "desc": "You conjure a storm of freezing rain and sleet in the area. The ground in the area is covered with slick ice that makes it difficult terrain, exposed flames in the area are doused, and the area is heavily obscured.\n\nWhen a creature enters the area for the first time on a turn or starts its turn there, it makes a Dexterity saving throw or falls prone.\n\nWhen a creature concentrating on a spell starts its turn in the area or first enters into the area on a turn, it makes a Constitution saving throw or loses concentration.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_slow", + "fields": { + "name": "Slow", + "desc": "You alter the flow of time around your targets and they become slowed. On a successful saving throw, a target is rattled until the end of its next turn.\n\nIn addition, if a slowed target casts a spell with a casting time of 1 action, roll a d20\\. On an 11 or higher, the target doesn't finish casting the spell until its next turn. The target must use its action on that turn to complete the spell or the spell fails.\n\nAt the end of each of its turns, a slowed target repeats the saving throw to end the spell's effect on it.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_soulwrought-fists", + "fields": { + "name": "Soulwrought Fists", + "desc": "The target's hands harden with inner power, turning dexterous fingers into magical iron cudgels.\n\nUntil the spell ends, the target drops anything it is holding and cannot use its hands to grasp objects or perform complex tasks. A target can still cast any spell that does not specifically require its hands.\n\nWhen making unarmed strikes, the target can use its spellcasting ability or Dexterity (its choice) instead of Strength for the attack and damage rolls of unarmed strikes. In addition, the target's unarmed strikes deal 1d8 bludgeoning damage and count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_spare-the-dying", + "fields": { + "name": "Spare the Dying", + "desc": "A jolt of healing energy flows through the target and it becomes stable.", + "document": "a5e-ag", + "level": 0, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_speak-with-animals", + "fields": { + "name": "Speak with Animals", + "desc": "You call upon the secret lore of beasts and gain the ability to speak with them. Beasts have a different perspective of the world, and their knowledge and awareness is filtered through that perspective. At a minimum, beasts can tell you about nearby locations and monsters, including things they have recently perceived. At the Narrator's discretion, you might be able to persuade a beast to perform a small favor for you.", + "document": "a5e-ag", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_speak-with-dead", + "fields": { + "name": "Speak with Dead", + "desc": "You call forth the target's memories, animating it enough to answer 5 questions. The corpse's knowledge is limited: it knows only what it knew in life and cannot learn new information or speak about anything that has occurred since its death. It speaks only in the languages it knew, and is under no compulsion to offer a truthful answer if it has reason not to. Answers might be brief, cryptic, or repetitive.\n\nThis spell does not return a departed soul, nor does it have any effect on an undead corpse, or one without a mouth.", + "document": "a5e-ag", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_speak-with-plants", + "fields": { + "name": "Speak with Plants", + "desc": "Your voice takes on a magical timbre, awakening the targets to limited sentience. Until the spell ends, the targets can communicate with you and follow simple commands, telling you about recent events including creatures that have passed, weather, and nearby locations.\n\nThe targets have a limited mobility: they can move their branches, tendrils, and stalks freely. This allows them to turn ordinary terrain into difficult terrain, or make difficult terrain caused by vegetation into ordinary terrain for the duration as vines and branches move at your request. This spell can also release a creature restrained by an entangle spell.\n\nAt the Narrator's discretion the targets may be able to perform other tasks, though each must remain rooted in place. If a plant creature is in the area, you can communicate with it but it is not compelled to follow your requests.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_spider-climb", + "fields": { + "name": "Spider Climb", + "desc": "The target gains the ability to walk on walls and upside down on ceilings, as well as a climbing speed equal to its base Speed.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "You can affect one additional target for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_spike-growth", + "fields": { + "name": "Spike Growth", + "desc": "You cause sharp spikes and thorns to sprout in the area, making it difficult terrain. When a creature enters or moves within the area, it takes 2d4 piercing damage for every 5 feet it travels.\n\nYour magic causes the ground to look natural. A creature that can't see the area when the spell is cast can spot the hazardous terrain just before entering it by making a Perception check against your spell save DC.", + "document": "a5e-ag", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "piercing" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_spirit-guardians", + "fields": { + "name": "Spirit Guardians", + "desc": "You call down spirits of divine fury, filling the area with flitting spectral forms. You choose the form taken by the spirits.\n\nCreatures of your choice halve their Speed while in the area. When a creature enters the area for the first time on a turn or starts its turn there, it takes 3d6 radiant or necrotic damage (your choice).", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "necrotic", + "radiant" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_spiritual-weapon", + "fields": { + "name": "Spiritual Weapon", + "desc": "You create a floating, incandescent weapon with an appearance of your choosing and use it to attack your enemies. On the round you cast it, you can make a melee spell attack against a creature within 5 feet of the weapon that deals force damage equal to 1d8 + your spellcasting ability modifier.\n\nAs a bonus action on subsequent turns until the spell ends, you can move the weapon up to 20 feet and make another attack against a creature within 5 feet of it.", + "document": "a5e-ag", + "level": 2, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for every two slot levels above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_sporesight", + "fields": { + "name": "Sporesight", + "desc": "You throw a mushroom at a point within range and detonate it, creating a cloud of spores that fills the area. The cloud of spores travels around corners, and the area is considered lightly obscured for everyone except you. Creatures and objects within the area are covered in spores.\n\nUntil the spell ends, you know the exact location of all affected objects and creatures. Any attack roll you make against an affected creature or object has advantage, and the affected creatures and objects can't benefit from being invisible.", + "document": "a5e-ag", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_stinking-cloud", + "fields": { + "name": "Stinking Cloud", + "desc": "You create a roiling, noxious cloud that hinders creatures and leaves them retching. The cloud spreads around corners and lingers in the air until the spell ends.\n\nThe area is heavily obscured. A creature in the area at the start of its turn makes a Constitution saving throw or uses its action to retch and reel.\n\nCreatures that don't need to breathe or are immune to poison automatically succeed on the save.\n\nA moderate wind (10 miles per hour) disperses the cloud after 4 rounds, a strong wind (20 miles per hour) after 1 round.", + "document": "a5e-ag", + "level": 3, + "school": "conjuration", + "higher_level": "The spell's area increases by 5 feet for every 2 slot levels above 3rd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_stone-shape", + "fields": { + "name": "Stone Shape", + "desc": "You reshape the target into any form you choose.\n\nFor example, you could shape a large rock into a weapon, statue, or chest, make a small passage through a wall (as long as it isn't more than 5 feet thick), seal a stone door shut, or create a hiding place. The target can have up to two hinges and a latch, but finer mechanical detail isn't possible.", + "document": "a5e-ag", + "level": 4, + "school": "transmutation", + "higher_level": "You may select one additional target for every slot level above 4th.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_stoneskin", + "fields": { + "name": "Stoneskin", + "desc": "Until the spell ends, the target's flesh becomes as hard as stone and it gains resistance to nonmagical bludgeoning, piercing, and slashing damage.", + "document": "a5e-ag", + "level": 4, + "school": "abjuration", + "higher_level": "When using a 7th-level spell slot, the target gains resistance to magical bludgeoning, piercing, and slashing damage.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_storm-kick", + "fields": { + "name": "Storm Kick", + "desc": "You must be able to move in order to cast this spell.\n\nYou leap into the air and flash across the battlefield, arriving feet-first with the force of a thunderbolt. As part of casting this spell, make a ranged spell attack against a creature you can see within range. If you hit, you instantly flash to an open space of your choosing adjacent to the target, dealing bludgeoning damage equal to 1d6 + your spellcasting modifier plus 3d8 thunder damage and 6d8 lightning damage. If your unarmed strike normally uses a larger die, use that instead of a d6\\. If you miss, you may still choose to teleport next to the target.", + "document": "a5e-ag", + "level": 5, + "school": "transmutation", + "higher_level": "When using a 6th-level spell slot or higher, if you are able to make more than one attack when you take the Attack action, you may make an additional melee weapon attack against the target. When using a 7th-level spell slot, you may choose an additional target within 30 feet of the target for each spell slot level above 6th, forcing each additional target to make a Dexterity saving throw or take 6d8 lightning damage.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_storm-of-vengeance", + "fields": { + "name": "Storm of Vengeance", + "desc": "You conjure a churning storm cloud that spreads to cover the target area. As it forms, lightning and thunder mix with howling winds, and each creature beneath the cloud makes a Constitution saving throw or takes 2d6 thunder damage and becomes deafened for 5 minutes.\n\nUntil the spell ends, at the start of your turn the cloud produces additional effects: Round 2\\. Acidic rain falls throughout the area dealing 1d6 acid damage to each creature and object beneath the cloud.\n\nRound 3\\. Lightning bolts strike up to 6 creatures or objects of your choosing that are beneath the cloud (no more than one bolt per creature or object). A creature struck by this lightning makes a Dexterity saving throw, taking 10d6 lightning damage on a failed save, or half damage on a successful save.\n\nRound 4\\. Hailstones fall throughout the area dealing 2d6 bludgeoning damage to each creature beneath the cloud.\n\nRound 5�10\\. Gusts and freezing rain turn the area beneath the cloud into difficult terrain that is heavily obscured. Ranged weapon attacks are impossible while a creature or its target are beneath the cloud. When a creature concentrating on a spell starts its turn beneath the cloud or enters into the area, it makes a Constitution saving throw or loses concentration. Gusts of strong winds between 20�50 miles per hour automatically disperse fog, mists, and similar effects (whether mundane or magical). Finally, each creature beneath the cloud takes 1d6 cold damage.", + "document": "a5e-ag", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "Sight", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "thunder" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_suggestion", + "fields": { + "name": "Suggestion", + "desc": "Creatures that cannot be charmed are immune to this spell. Suggest an activity phrased in a sentence or two. The target is magically influenced to follow that course of activity. The suggestion must be worded to sound reasonable. Asking the target to perform an action that is obviously harmful to it ends the spell.\n\nThe target carries out the activity suggested by you as well as it can. The activity can last for the duration of the spell, and if it requires less time the spell ends after the target has carried out the activity.\n\nYou may specify trigger conditions that cause the target to perform a specific activity while the spell lasts. For example, you may suggest that the target takes off its clothes and dives the next time it sees a body of water. If the target does not see a body of water before the spell ends, the specific activity isn't performed.\n\nAny damage done to the target by you or an ally ends the spell for that creature.", + "document": "a5e-ag", + "level": 2, + "school": "enchantment", + "higher_level": "When using a 4th-level spell slot, the duration is concentration, up to 24 hours. When using a 5th-level spell slot, the duration is 7 days. When using a 7th-level spell slot, the duration is 1 year. When using a 9th-level spell slot, the suggestion lasts until it is dispelled.\n\nAny use of a 5th-level or higher spell slot grants a duration that doesn't require concentration.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_sunbeam", + "fields": { + "name": "Sunbeam", + "desc": "Oozes and undead have disadvantage on saving throws made to resist this spell. A beam of radiant sunlight streaks from your hand. Each creature in the area takes 6d8 radiant damage and is blinded for 1 round.\n\nUntil the spell ends, you can use an action on subsequent turns to create a new beam of sunlight and a mote of brilliant radiance lingers on your hand, shedding bright light in a 30-foot radius and dim light an additional 30 feet. This light is sunlight.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "When using an 8th-level spell slot the damage increases by 1d8.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "radiant" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_sunburst", + "fields": { + "name": "Sunburst", + "desc": "Oozes and undead have disadvantage on saving throws made to resist this spell. You create a burst of radiant sunlight that fills the area. Each creature in the area takes 12d6 radiant damage and is blinded for 1 minute. A creature blinded by this spell repeats its saving throw at the end of each of its turns, ending the blindness on a successful save.\n\nThis spell dispels any magical darkness in its area.", + "document": "a5e-ag", + "level": 8, + "school": "evocation", + "higher_level": "When using a 9th-level spell slot the damage increases by 2d6.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "12d6", + "damage_types": [ + "radiant" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_symbol", + "fields": { + "name": "Symbol", + "desc": "You inscribe a potent glyph on the target, setting a magical trap for your enemies. If the glyph is moved more than 10 feet from its original position, or if it comes within 20 feet of another glyph that you have cast, the spell ends. Finding the Tiny glyph requires an Investigation check against your spell save DC.\n\nDescribe the actions a creature must perform to trigger the spell, such as approaching within a certain distance, opening or touching the object the glyph is inscribed on, or seeing or reading the glyph. The creature must have a clear path to the glyph to trigger it. You can specify certain creatures which don't trigger the spell, such as those with a certain appearance or those who speak a certain phrase. Once the glyph is triggered, the spell ends.\n\nWhen triggered, the glyph sheds dim light in a 60-foot radius for 10 minutes, after which the spell ends. Each creature within the sphere's area is targeted by the glyph, as are creatures that enter the sphere for the first time on a turn.\n\nWhen you cast the spell, choose one of the following effects.\n\nDeath: Creatures in the area make a Constitution saving throw, taking 10d10 necrotic damage on a failed save, or half as much on a successful save.\n\nDiscord: Creatures in the area make a Constitution saving throw or bicker and argue with other creatures for 1 minute. While bickering, a creature cannot meaningfully communicate and it has disadvantage on attack rolls and ability checks.\n\nConfused: Creatures in the area make an Intelligence saving throw or become confused for 1 minute.\n\nFear: Creatures in the area make a Wisdom saving throw or are frightened for 1 minute.\n\nWhile frightened, a creature drops whatever it is holding and must move at least 30 feet away from the glyph on each of its turns.\n\nHopelessness: Creatures in the area make a Charisma saving throw or become overwhelmed with despair for 1 minute. While despairing, a creature can't attack or target any creature with harmful features, spells, traits, or other magical effects.\n\nPain: Creatures in the area make a Constitution saving throw or become incapacitated for 1 minute.\n\nSleep: Creatures in the area make a Wisdom saving throw or fall unconscious for 10 minutes.\n\nA sleeping creature awakens if it takes damage or an action is used to wake it.\n\nStunning: Creatures in the area make a Wisdom saving throw or become stunned for 1 minute.", + "document": "a5e-ag", + "level": 7, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_tearful-sonnet", + "fields": { + "name": "Tearful Sonnet", + "desc": "You quietly play a tragedy, a song that fills those around you with magical sorrow. Each creature in the area makes a Charisma saving throw at the start of its turn. On a failed save, a creature takes 2d4 psychic damage, it spends its action that turn crying, and it can't take reactions until the start of its next turn. Creatures that are immune to the charmed condition automatically succeed on this saving throw.\n\nIf a creature other than you hears the entire song (remaining within the spell's area from the casting through the duration) it is so wracked with sadness that it is stunned for 1d4 rounds.\n\nYou cannot cast another spell through your spellcasting focus while concentrating on this spell.", + "document": "a5e-ag", + "level": 4, + "school": "enchantment", + "higher_level": "The damage increases by 2d4 for each slot level above 4th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "psychic" + ], + "duration": "3 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_telekinesis", + "fields": { + "name": "Telekinesis", + "desc": "You move the target with the power of your mind.\n\nUntil the spell ends you can use an action on subsequent turns to pick a new target or continue to affect the same target. Depending on whether you target a creature or an object, the spell has the following effects:\n\n**Creature.** The target makes a Strength check against your spell save DC or it is moved up to 30 feet in any direction and restrained (even in mid-air) until the end of your next turn. You cannot move a target beyond the range of the spell.\n\n**Object.** You move the target 30 feet in any direction. If the object is worn or carried by a creature, that creature can make a Strength check against your spell save DC. If the target fails, you pull the object away from that creature and can move it up to 30 feet in any direction, but not beyond the range of the spell.\n\nYou can use telekinesis to finely manipulate objects as though you were using them yourself—you can open doors and unscrew lids, dip a quill in ink and make it write, and so on.", + "document": "a5e-ag", + "level": 5, + "school": "transmutation", + "higher_level": "When using an 8th-level spell slot, this spell does not require your concentration.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_telepathic-bond", + "fields": { + "name": "Telepathic Bond", + "desc": "Until the spell ends, a telepathic link connects the minds of the targets. So long as they remain on the same plane of existence, targets may communicate telepathically with each other regardless of language and across any distance.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "The spell's duration increases by 1d4 hours for each slot level above 5th.", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 8, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_teleport", + "fields": { + "name": "Teleport", + "desc": "You teleport the targets instantly across vast distances. When you cast this spell, choose a destination. You must know the location you're teleporting to, and it must be on the same plane of existence.\n\nTeleportation is difficult magic and you may arrive off-target or somewhere else entirely depending on how familiar you are with the location you're teleporting to. When you teleport, the Narrator rolls 1d100 and consults Table: Teleport Familiarity.\n\nFamiliarity is determined as follows: Permanent Circle: A permanent teleportation circle whose sigil sequence you know (see teleportation circle).\n\nAssociated Object: You have an object taken from the target location within the last 6 months, such as a piece of wood from the pew in a grand temple or a pinch of grave dust from a vampire's hidden redoubt.\n\nVery Familiar: A place you have frequented, carefully studied, or can see at the time you cast the spell.\n\nSeen Casually: A place you have seen more than once but don't know well. This could be a castle you've passed by but never visited, or the farms you look down on from your tower of ivory.\n\nViewed Once: A place you have seen once, either in person or via magic.\n\nDescription: A place you only know from someone else's description (whether spoken, written, or even marked on a map).\n\nFalse Destination: A place that doesn't actually exist. This typically happens when someone deceives you, either intentionally (like a wizard creating an illusion to hide their actual tower) or unintentionally (such as when the location you attempt to teleport to no longer exists).\n\nYour arrival is determined as follows: On Target: You and your targets arrive exactly where you mean to.\n\nOff Target: You and your targets arrive some distance away from the target in a random direction. The further you travel, the further away you are likely to arrive. You arrive off target by a number of miles equal to 1d10 × 1d10 percent of the total distance of your trip.\n\nIf you tried to travel 1, 000 miles and roll a 2 and 4 on the d10s, you land 6 percent off target and arrive 60 miles away from your intended destination in a random direction. Roll 1d8 to randomly determine the direction: 1—north, 2 —northeast, 3 —east, 4 —southeast, 5—south, 6 —southwest, 7—west, 8—northwest.\n\nSimilar Location: You and your targets arrive in a different location that somehow resembles the target area. If you tried to teleport to your favorite inn, you might end up at a different inn, or in a room with much of the same decor.\n\nTypically you appear at the closest similar location, but that is not always the case.\n\nMishap: The spell's magic goes awry, and each teleporting creature or object takes 3d10 force damage. The Narrator rerolls on the table to determine where you arrive. When multiple mishaps occur targets take damage each time.", + "document": "a5e-ag", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "Special", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d10", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_teleportation-circle", + "fields": { + "name": "Teleportation Circle", + "desc": "You draw a 10-foot diameter circle on the ground and open within it a shimmering portal to a permanent teleportation circle elsewhere in the world. The portal remains open until the end of your next turn. Any creature that enters the portal instantly travels to the destination circle.\n\nPermanent teleportation circles are commonly found within major temples, guilds, and other important locations. Each circle has a unique sequence of magical runes inscribed in a certain pattern called a sigil sequence.\n\nWhen you cast teleportation circle, you inscribe runes that match the sigil sequence of a teleportation circle you know. When you first gain the ability to cast this spell, you learn the sigil sequences for 2 destinations on the Material Plane, determined by the Narrator. You can learn a new sigil sequence with 1 minute of observation and study.\n\nCasting the spell in the same location every day for a year creates a permanent teleportation circle with its own unique sigil sequence. You do not need to teleport when casting the spell to make a permanent destination.", + "document": "a5e-ag", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_thaumaturgy", + "fields": { + "name": "Thaumaturgy", + "desc": "You draw upon divine power and create a minor divine effect. When you cast the spell, choose one of the following:\n\n* Your voice booms up to three times louder than normal\n* You cause flames to flicker, brighten, dim, or change color\n* You send harmless tremors throughout the ground.\n* You create an instantaneous sound, like ethereal chimes, sinister laughter, or a dragon's roar at a point of your choosing within range.\n* You instantaneously cause an unlocked door or window to fly open or slam shut.\n* You alter the appearance of your eyes.\n\nLingering effects last until the spell ends. If you cast this spell multiple times, you can have up to 3 of the lingering effects active at a time, and can dismiss an effect at any time on your turn.", + "document": "a5e-ag", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_thunderwave", + "fields": { + "name": "Thunderwave", + "desc": "You create a wave of thunderous force, damaging creatures and pushing them back. Creatures in the area take 2d8 thunder damage and are pushed 10 feet away from you.\n\nUnsecured objects completely within the area are also pushed 10 feet away from you. The thunderous boom of the spell is audible out to 300 feet.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_time-stop", + "fields": { + "name": "Time Stop", + "desc": "You stop time, granting yourself extra time to take actions. When you cast the spell, the world is frozen in place while you take 1d4 + 1 turns in a row, during which you can use actions and move as normal.\n\nThe spell ends if you move more than 1, 000 feet from where you cast the spell, or if you affect either a creature other than yourself or an object worn or carried by someone else.", + "document": "a5e-ag", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_tiny-hut", + "fields": { + "name": "Tiny Hut", + "desc": "You create an immobile dome of protective force that provides shelter and can be used as a safe haven (Chapter 4: Exploration in Trials & Treasures). The dome is of a color of your choosing, can't be seen through from the outside, is transparent on the inside, and can fit up to 10 Medium creatures (including you) within.\n\nThe dome prevents inclement weather and environmental effects from passing through it, though creatures and objects may pass through freely. Spells and other magical effects can't cross the dome in either direction, and the dome provides a comfortable dry interior no matter the conditions outside of it. You can command the interior to become dimly lit or dark at any time on your turn.\n\nThe spell fails if a Large creature or more than 10 creatures are inside the dome. The spell ends when you leave the dome.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_tongues", + "fields": { + "name": "Tongues", + "desc": "The target understands any words it hears, and when the target speaks its words are understood by creatures that know at least one language.", + "document": "a5e-ag", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_transport-via-plants", + "fields": { + "name": "Transport via Plants", + "desc": "You create a magical pathway between the target and a second plant that you've seen or touched before that is on the same plane of existence. Any creature can step into the target and exit from the second plant by using 5 feet of movement.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_travelers-ward", + "fields": { + "name": "Traveler's Ward", + "desc": "Until the spell ends, creatures have disadvantage on Sleight of Hand checks made against the target.\n\nIf a creature fails a Sleight of Hand check to steal from the target, the ward creates a loud noise and a flash of bright light easily heard and seen by creatures within 100 feet.", + "document": "a5e-ag", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_tree-stride", + "fields": { + "name": "Tree Stride", + "desc": "Until the spell ends, once per round you can use 5 feet of movement to enter a living tree and move to inside another living tree of the same kind within 500 feet so long as you end your turn outside of a tree. Both trees must be at least your size. You instantly know the location of all other trees of the same kind within 500 feet. You may step back outside of the original tree or spend 5 more feet of movement to appear within a spot of your choice within 5 feet of the destination tree. If you have no movement left, you appear within 5 feet of the tree you entered.", + "document": "a5e-ag", + "level": 5, + "school": "conjuration", + "higher_level": "Target one additional creature within reach for each slot level above 5th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_true-polymorph", + "fields": { + "name": "True Polymorph", + "desc": "The target is transformed until it drops to 0 hit points or the spell ends. You can make the transformation permanent by concentrating on the spell for the full duration.\n\nCreature into Creature: The target's body is transformed into a creature with a Challenge Rating equal to or less than its own. If the target doesn't have a Challenge Rating, use its level.\n\nThe target's game statistics (including its hit points and mental ability scores) are replaced by the statistics of the chosen creature. The target is limited to actions that it is physically capable of doing, and it can't speak or cast spells. The target's gear melds into the new form. Equipment that merges with a target's form has no effect until it leaves the form.\n\nWhen the target reverts to its normal form, it returns to the number of hit points it had before it transformed. If the spell's effects on the target end early from dropping to 0 hit points, any excess damage carries over to its normal form and knocks it unconscious if the damage reduces it to 0 hit points.\n\nObject into Creature: The target is transformed into any kind of creature, as long as the creature's size isn't larger than the object's size and it has a Challenge Rating of 9 or less. The creature is friendly to you and your allies and acts on each of your turns. You decide what action it takes and how it moves. The Narrator has the creature's statistics and resolves all of its actions and movement.\n\nIf the spell becomes permanent, you no longer control the creature. It might remain friendly to you, depending on how you have treated it.\n\nCreature into Object: You turn the target and whatever it is wearing and carrying into an object. The target's game statistics are replaced by the statistics of the chosen object. The target has no memory of time spent in this form, and when the spell ends it returns to its normal form.", + "document": "a5e-ag", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_true-resurrection", + "fields": { + "name": "True Resurrection", + "desc": "Provided the target's soul is willing and able to return to its body, it returns to life with all of its hit points.\n\nThe spell cures any poisons and diseases that affected the target at the time of death, closes all mortal wounds, and restores any missing body parts.\n\nIf no body (or body parts) exist, you can still cast the spell but must speak the creature's name. The creature then appears in an unoccupied space you choose within 10 feet of you. This option requires diamonds worth at least 50, 000 gold (consumed by the spell).", + "document": "a5e-ag", + "level": 9, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_true-seeing", + "fields": { + "name": "True Seeing", + "desc": "Until the spell ends, the target gains truesight to a range of 120 feet. The target also notices secret doors hidden by magic.", + "document": "a5e-ag", + "level": 6, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_true-strike", + "fields": { + "name": "True Strike", + "desc": "You gain an innate understanding of the defenses of a creature or object in range. You have advantage on your first attack roll made against the target before the end of your next turn.", + "document": "a5e-ag", + "level": 0, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_unholy-star", + "fields": { + "name": "Unholy Star", + "desc": "A meteor ripped from diabolical skies streaks through the air and explodes at a point you can see 100 feet directly above you. The spell fails if you can't see the point where the meteor explodes.\n\nEach creature within range that can see the meteor (other than you) makes a Dexterity saving throw or is blinded until the end of your next turn. Fiery chunks of the meteor then plummet to the ground at different areas you choose within range. Each creature in an area makes a Dexterity saving throw, taking 6d6 fire damage and 6d6 necrotic damage on a failed save, or half as much damage on a successful one. A creature in more than one area is affected only once.\n\nThe spell damages objects in the area and ignites flammable objects that aren't being worn or carried.", + "document": "a5e-ag", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_unseen-servant", + "fields": { + "name": "Unseen Servant", + "desc": "You create an invisible, mindless, shapeless force to perform simple tasks. The servant appears in an unoccupied space on the ground that you can see and endures until it takes damage, moves more than 60 feet away from you, or the spell ends. It has AC 10, a Strength of 2, and it can't attack.\n\nYou can use a bonus action to mentally command it to move up to 15 feet and interact with an object.\n\nThe servant can do anything a humanoid servant can do —fetching things, cleaning, mending, folding clothes, lighting fires, serving food, pouring wine, and so on. Once given a command the servant performs the task to the best of its ability until the task is completed, then waits for its next command.", + "document": "a5e-ag", + "level": 1, + "school": "conjuration", + "higher_level": "You create an additional servant for each slot level above 1st.", + "target_type": "point", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_vampiric-touch", + "fields": { + "name": "Vampiric Touch", + "desc": "Shadows roil about your hand and heal you by siphoning away the life force from others. On the round you cast it, and as an action on subsequent turns until the spell ends, you can make a melee spell attack against a creature within your reach.\n\nOn a hit, you deal 3d6 necrotic damage and regain hit points equal to half the amount of necrotic damage dealt.", + "document": "a5e-ag", + "level": 3, + "school": "necromancy", + "higher_level": "The damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_venomous-succor", + "fields": { + "name": "Venomous Succor", + "desc": "You cause a searing poison to burn quickly through the target's wounds, dealing 1d6 poison damage. The target regains 2d4 hit points at the start of each of its turns for the next 1d4+1 rounds.", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "For each slot level above 2nd, the initial damage increases by 1d6 and target regains an additional 1d4 hit points.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_vicious-mockery", + "fields": { + "name": "Vicious Mockery", + "desc": "You verbally insult or mock the target so viciously its mind is seared. As long as the target hears you (understanding your words is not required) it takes 1d6 psychic damage and has disadvantage on the first attack roll it makes before the end of its next turn.", + "document": "a5e-ag", + "level": 0, + "school": "enchantment", + "higher_level": "The spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_wall-of-fire", + "fields": { + "name": "Wall of Fire", + "desc": "You create a wall of fire on a solid surface. The wall can be up to 60 feet long (it does not have to be a straight line; sections of the wall can angle as long as they are contiguous), 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall blocks sight.\n\nWhen the wall appears, each creature within its area makes a Dexterity saving throw, taking 5d8 fire damage on a failed save, or half as much damage on a successful save.\n\nOne side of the wall (chosen when the spell is cast) deals 5d8 fire damage to each creature that ends its turn within 10 feet of that side or inside the wall. A creature takes the same damage when it enters the wall itself for the first time on a turn or ends its turn there. The other side of the wall deals no damage.", + "document": "a5e-ag", + "level": 4, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_wall-of-flesh", + "fields": { + "name": "Wall of Flesh", + "desc": "A squirming wall of bodies, groping arms and tentacles, and moaning, biting mouths heaves itself up from the ground at a point you choose. The wall is 6 inches thick and is made up of a contiguous group of ten 10-foot square sections. The wall can have any shape you desire.\n\nIf the wall enters a creature's space when it appears, the creature makes a Dexterity saving throw, and on a success it moves up to its Speed to escape. On a failed save, it is swallowed by the wall (as below).\n\nWhen a creature enters the area for the first time on a turn or starts its turn within 10 feet of the wall, tentacles and arms reach out to grab it. The creature makes a Dexterity saving throw or takes 5d8 bludgeoning damage and becomes grappled. If the creature was already grappled by the wall at the start of its turn and fails its saving throw, a mouth opens in the wall and swallows the creature.\n\nA creature swallowed by the wall takes 5d8 ongoing bludgeoning damage and is blinded, deafened, and restrained.\n\nA creature grappled or restrained by the wall can use its action to make a Strength saving throw against your spell save DC. On a success, a grappled creature frees itself and a restrained creature claws its way out of the wall's space, exiting to an empty space next to the wall and still grappled.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above the 6th.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_wall-of-force", + "fields": { + "name": "Wall of Force", + "desc": "You create an invisible wall of force at a point you choose. The wall is a horizontal or vertical barrier, or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere, either with a radius of up to 10 feet. You may also choose to create a flat surface made up of a contiguous group of ten 10-foot square sections. The wall is 1/4 inch thick.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of the wall (your choice), but when a creature would be surrounded on all sides by the wall (or the wall and another solid surface), it can use its reaction to make a Dexterity saving throw to move up to its Speed to escape. Any creature without a special sense like blindsight has disadvantage on this saving throw.\n\nNothing can physically pass through the wall.\n\nIt can be destroyed with dispel magic cast using a spell slot of at least 5th-level or by being dealt at least 25 force damage at once. It is otherwise immune to damage. The wall also extends into the Ethereal Plane, blocking ethereal travel through it.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_wall-of-ice", + "fields": { + "name": "Wall of Ice", + "desc": "You create a wall of ice on a solid surface. You can form it into a hemispherical dome or a sphere, either with a radius of up to 10 feet. You may also choose to create a flat surface made up of a contiguous group of ten 10-foot square sections. The wall is 1 foot thick.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of it (your choice).\n\nIn addition, the creature makes a Dexterity saving throw, taking 10d6 cold damage on a failed save, or half as much damage on a success.\n\nThe wall is an object with vulnerability to fire damage, with AC 12 and 30 hit points per 10-foot section. Reducing a 10-foot section of wall to 0 hit points destroys it and leaves behind a sheet of frigid air in the space the section occupied. A creature moving through the sheet of frigid air for the first time on a turn makes a Constitution saving throw, taking 5d6 cold damage on a failed save, or half as much damage on a successful one.", + "document": "a5e-ag", + "level": 6, + "school": "evocation", + "higher_level": "The damage the wall deals when it appears increases by 2d6 and the damage from passing through the sheet of frigid air increases by 1d6 for each slot level above 6th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_wall-of-stone", + "fields": { + "name": "Wall of Stone", + "desc": "A nonmagical wall of solid stone appears at a point you choose. The wall is 6 inches thick and is made up of a contiguous group of ten 10-foot square sections. Alternatively, you can create 10-foot-by-20- foot sections that are only 3 inches thick.\n\nThe wall can have any shape you desire, though it can't occupy the same space as a creature or object.\n\nThe wall doesn't need to be vertical or rest on any firm foundation but must merge with and be solidly supported by existing stone. Thus, you can use this spell to bridge a chasm or create a ramp.\n\nIf the wall enters a creature's space when it appears, the creature is pushed to one side of the wall (your choice), but when a creature would be surrounded on all sides by the wall (or the wall and another solid surface), it can use its reaction to make a Dexterity saving throw to move up to its Speed to escape.\n\nIf you create a span greater than 20 feet in length, you must halve the size of each panel to create supports. You can crudely shape the wall to create crenelations, battlements, and so on.\n\nThe wall is an object made of stone. Each panel has AC 15 and 30 hit points per inch of thickness.\n\nReducing a panel to 0 hit points destroys it and at the Narrator's discretion might cause connected panels to collapse.\n\nYou can make the wall permanent by concentrating on the spell for the full duration.", + "document": "a5e-ag", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_wall-of-thorns", + "fields": { + "name": "Wall of Thorns", + "desc": "You create a wall of tough, pliable, tangled brush bristling with needle-sharp thorns on a solid surface. You can choose to make the wall up to 60 feet long, 10 feet high, and 5 feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and 5 feet thick. The wall blocks line of sight.\n\nWhen the wall appears, each creature within its area makes a Dexterity saving throw, taking 7d8 piercing damage on a failed save, or half as much damage on a successful save.\n\nA creature can move through the wall, albeit slowly and painfully. For every 1 foot a creature moves through the wall, it must spend 4 feet of movement. The first time a creature enters the wall on a turn or ends its turn there, it makes a Dexterity saving throw, taking 7d8 slashing damage on a failed save, or half as much damage on a successful save.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "Damage dealt by the wall increases by 1d8 for each slot level above 6th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_warding-bond", + "fields": { + "name": "Warding Bond", + "desc": "Until the spell ends, the target is warded by a mystic connection between it and you. While the target is within 60 feet it gains a +1 bonus to AC and saving throws, and it has resistance to all damage. Each time it takes damage, you take an equal amount of damage.\n\nThe spell ends if you are reduced to 0 hit points or if you and the target become separated by more than 60 feet. It also ends if you use an action to dismiss it, or if the spell is cast again on either you or the target.", + "document": "a5e-ag", + "level": 2, + "school": "abjuration", + "higher_level": "The duration increases by 1 hour for each slot level above 2nd.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_warriors-instincts", + "fields": { + "name": "Warrior's Instincts", + "desc": "Your senses sharpen, allowing you to anticipate incoming attacks and find weaknesses in the defenses of your foes. Until the spell ends, creatures cannot gain bonuses (like those granted by bless or expertise dice) or advantage on attack rolls against you. In addition, none of your movement provokes opportunity attacks, and you ignore nonmagical difficult terrain. Finally, you can end the spell early to treat a single weapon attack roll as though you had rolled a 15 on the d20.", + "document": "a5e-ag", + "level": 5, + "school": "divination", + "higher_level": "For each slot level above 5th, you can also apply this spell's benefits to an additional creature you can see within 30 feet.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_water-breathing", + "fields": { + "name": "Water Breathing", + "desc": "Until the spell ends, the targets are able to breathe underwater (and still able to respirate normally).", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 10, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_water-walk", + "fields": { + "name": "Water Walk", + "desc": "Until the spell ends, the targets are able to move across any liquid surface (such as water, acid, mud, snow, quicksand, or lava) as if it was solid ground.\n\nCreatures can still take damage from surfaces that would deliver damage from corrosion or extreme temperatures, but they do not sink while moving across it.\n\nA target submerged in a liquid is moved to the surface of the liquid at a rate of 60 feet per round.", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "The duration increases by 1 hour for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 10, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_web", + "fields": { + "name": "Web", + "desc": "Thick, sticky webs fill the area, lightly obscuring it and making it difficult terrain.\n\nYou must anchor the webs between two solid masses (such as walls or trees) or layer them across a flat surface. If you don't the conjured webs collapse and at the start of your next turn the spell ends.\n\nWebs layered over a flat surface are 5 feet deep.\n\nEach creature that starts its turn in the webs or that enters them during its turn makes a Dexterity saving throw or it is restrained as long as it remains in the webs (or until the creature breaks free).\n\nA creature restrained by the webs can escape by using its action to make a Strength check against your spell save DC.\n\nAny 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", + "document": "a5e-ag", + "level": 2, + "school": "conjuration", + "higher_level": "When using a 4th-level spell slot, you also summon a giant wolf spider in an unoccupied space within the web's area. When using a 6th-level spell slot, you summon up to two spiders.\n\nWhen using a 7th-level spell slot, you summon up to three spiders. The spiders are friendly to you and your companions. Roll initiative for the spiders as a group, which have their own turns. The spiders obey your verbal commands, but they disappear when the spell ends or when they leave the web's area.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_weird", + "fields": { + "name": "Weird", + "desc": "You create illusions which manifest the deepest fears and worst nightmares in the minds of all creatures in the spell's area. Each creature in the area makes a Wisdom saving throw or becomes frightened until the spell ends. At the end of each of a frightened creature's turns, it makes a Wisdom saving throw or it takes 4d10 psychic damage. On a successful save, the spell ends for that creature.", + "document": "a5e-ag", + "level": 9, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "4d10", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_whirlwind-kick", + "fields": { + "name": "Whirlwind Kick", + "desc": "You must be able to move in order to cast this spell. You leap into the air and spin like a tornado, striking foes all around you with supernatural force as you fly up to 60 feet in a straight line. Your movement (which does not provoke attacks of opportunity) must end on a surface that can support your weight or you fall as normal.\n\nAs part of the casting of this spell, make a melee spell attack against any number of creatures in the area. On a hit, you deal your unarmed strike damage plus 2d6 thunder damage. In addition, creatures in the area make a Dexterity saving throw or are either pulled 10 feet closer to you or pushed 10 feet away (your choice).", + "document": "a5e-ag", + "level": 3, + "school": "transmutation", + "higher_level": "The extra thunder damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_wind-up", + "fields": { + "name": "Wind Up", + "desc": "You wind your power up like a spring. You gain advantage on the next melee attack roll you make before the end of the spell's duration, after which the spell ends.", + "document": "a5e-ag", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_wind-walk", + "fields": { + "name": "Wind Walk", + "desc": "The targets assume a gaseous form and appear as wisps of cloud. Each target has a flying speed of 300 feet and resistance to damage from nonmagical weapons, but the only action it can take is the Dash action or to revert to its normal form (a process that takes 1 minute during which it is incapacitated and can't move).\n\nUntil the spell ends, a target can change again to cloud form (in an identical transformation process).\n\nWhen the effect ends for a target flying in cloud form, it descends 60 feet each round for up to 1 minute or until it safely lands. If the target can't land after 1 minute, the creature falls the rest of the way normally.", + "document": "a5e-ag", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_wind-wall", + "fields": { + "name": "Wind Wall", + "desc": "A wall of strong wind rises from the ground at a point you choose. You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You can shape the wall in any way you choose so long as it makes one continuous path along the ground.\n\nWhen the wall appears, each creature within its area makes a Strength saving throw, taking 3d8 bludgeoning damage on a failed save, or half as much damage on a successful one.\n\nThe wall keeps fog, smoke, and other gases (including creatures in gaseous form) at bay. Small or smaller flying creatures or objects can't pass through. Loose, lightweight materials brought into the area fly upward. Arrows, bolts, and other ordinary projectiles launched at targets behind the wall are deflected upward and automatically miss (larger projectiles such as boulders and siege engine attacks are unaffected).", + "document": "a5e-ag", + "level": 3, + "school": "evocation", + "higher_level": "The damage increases by 1d8 for each slot level above 3rd.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_wish", + "fields": { + "name": "Wish", + "desc": "This is the mightiest of mortal magics and alters reality itself.\n\nThe safest use of this spell is the duplication of any other spell of 8th-level or lower without needing to meet its requirements (including components).\n\nYou may instead choose one of the following:\n\n* One nonmagical object of your choice that is worth up to 25, 000 gold and no more than 300 feet in any dimension appears in an unoccupied space you can see on the ground.\n* Up to 20 creatures that you can see to regain all their hit points, and each is further healed as per the greater restoration spell.\n* Up to 10 creatures that you can see gain resistance to a damage type you choose.\n* Up to 10 creatures you can see gain immunity to a single spell or other magical effect for 8 hours.\n* You force a reroll of any roll made within the last round (including your last turn). You can force the reroll to be made with advantage or disadvantage, and you can choose whether to use the reroll or the original roll.\n\nYou might be able to achieve something beyond the scope of the above examples. State your wish to the Narrator as precisely as possible, being very careful in your wording. Be aware that the greater the wish, the greater the chance for an unexpected result. This spell might simply fizzle, your desired outcome might only be partly achieved, or you might suffer some unforeseen consequence as a result of how you worded the wish. The Narrator has the final authority in ruling what occurs—and reality is not tampered with lightly.\n\n**_Multiple Wishes:_** The stress of casting this spell to produce any effect other than duplicating another spell weakens you. Until finishing a long rest, each time you cast a spell you take 1d10 necrotic damage per level of that spell. This damage can't be reduced or prevented. In addition, your Strength drops to 3 for 2d4 days (if it isn't 3 or lower already). For each of those days that you spend resting and doing nothing more than light activity, your remaining recovery time decreases by 2 days. Finally, there is a 33% chance that you are unable to cast wish ever again.", + "document": "a5e-ag", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_word-of-recall", + "fields": { + "name": "Word of Recall", + "desc": "The targets instantly teleport to a previously designated sanctuary, appearing in the nearest unoccupied space to the spot you designated when you prepared your sanctuary.\n\nYou must first designate a sanctuary by casting this spell within a location aligned with your faith, such as a temple dedicated to or strongly linked to your deity.", + "document": "a5e-ag", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "5 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_wormway", + "fields": { + "name": "Wormway", + "desc": "You call a Gargantuan monstrosity from the depths of the world to carry you and your allies across great distances. When you cast this spell, the nearest purple worm within range is charmed by you and begins moving toward a point on the ground that you can see. If there are no purple worms within range, the spell fails. The earth rumbles slightly as it approaches and breaks through the surface. Any creatures within 20 feet of that point must make a Dexterity saving throw or be knocked prone and pushed 10 feet away from it.\n\nUpon emerging, the purple worm lays down before you and opens its maw. Targets can climb inside where they are enclosed in an impervious hemispherical dome of force.\n\nOnce targets are loaded into the purple worm, nothing—not physical objects, energy, or other spell effects —can pass through the barrier, in or out, though targets in the sphere can breathe there. The hemisphere is immune to all damage, and creatures and objects inside can't be damaged by attacks or effects originating from outside, nor can a target inside the hemisphere damage anything outside it.\n\nThe atmosphere inside the dome is comfortable and dry regardless of conditions outside it.\n\nThe purple worm waits until you give it a mental command to depart, at which point it dives back into the ground and travels, without need for rest or food, as directly as possible while avoiding obstacles to a destination known to you. It travels 150 miles per day.\n\nWhen the purple worm reaches its destination it surfaces, the dome vanishes, and it disgorges the targets in its mouth before diving back into the depths again.\n\nThe purple worm remains charmed by you until it has delivered you to your destination and returned to the depths, or until it is attacked at which point the charm ends, it vomits its targets in the nearest unoccupied space as soon as possible, and then retreats to safety.", + "document": "a5e-ag", + "level": 6, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "150 miles", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_writhing-transformation", + "fields": { + "name": "Writhing Transformation", + "desc": "As part of the casting of this spell, you lay down in the coffin on a patch of bare earth and it buries itself. Over the following week, you are incapacitated and do not need air, food, or sleep. Your insides are eaten by worms, but you do not die and your skin remains intact. If you are exhumed during this time, or if the spell is otherwise interrupted, you die.\n\nAt the end of the week, the transformation is complete and your true form is permanently changed. Your appearance is unchanged but underneath your skin is a sentient mass of worms. Any creature that makes a Medicine check against your spell save DC realizes that there is something moving underneath your skin.\n\nYour statistics change in the following ways:\n\n* Your type changes to aberration, and you do not age or require sleep.\n* You cannot be healed by normal means, but you can spend an action or bonus action to consume 2d6 live worms, regaining an equal amount of hit points by adding them to your body.\n* You can sense and telepathically control all worms that have the beast type and are within 60 feet of you.\n\nIn addition, you are able to discard your shell of skin and travel as a writhing mass of worms. As an action, you can abandon your skin and pour out onto the ground. In this form you have the statistics of **swarm of insects** with the following exceptions: you keep your hit points, Wisdom, Intelligence, and Charisma scores, and proficiencies. You know but cannot cast spells in this form. You also gain a burrow speed of 10 feet. Any worms touching you instantly join with your swarm, granting you a number of temporary hit points equal to the number of worms that join with your form (maximum 40 temporary hit points). These temporary hit points last until you are no longer in this form.\n\nIf you spend an hour in the same space as a dead creature of your original form's size, you can eat its insides and inhabit its skin in the same way you once inhabited your own. While you are in your swarm form, the most recent skin you inhabited remains intact and you can move back into a previously inhabited skin in 1 minute. You have advantage on checks made to impersonate a creature while wearing its skin.", + "document": "a5e-ag", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "a5e-ag_zone-of-truth", + "fields": { + "name": "Zone of Truth", + "desc": "You create a zone that minimizes deception. Any creature that is able to be charmed can't speak a deliberate lie while in the area.\n\nAn affected creature is aware of the spell and can choose not to speak, or it might be evasive in its communications. A creature that enters the zone for the first time on its turn or starts its turn there must make a Charisma saving throw. On a failed save, the creature takes 2d4 psychic damage when it intentionally tries to mislead or occlude important information. Each time the spell damages a creature, it makes a Deception check (DC 8 + the damage dealt) or its suffering is obvious. You know whether a creature succeeds on its saving throw", + "document": "a5e-ag", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "psychic" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +} +] diff --git a/data/v2/en-publishing/a5e-ag/SpellCastingOption.json b/data/v2/en-publishing/a5e-ag/SpellCastingOption.json index adb7e992..8152e20a 100644 --- a/data/v2/en-publishing/a5e-ag/SpellCastingOption.json +++ b/data/v2/en-publishing/a5e-ag/SpellCastingOption.json @@ -1,19958 +1,19958 @@ [ - { - "model": "api_v2.spellcastingoption", - "pk": 403, - "fields": { - "parent": "a5e-ag_accelerando", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 405, - "fields": { - "parent": "a5e-ag_accelerando", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 406, - "fields": { - "parent": "a5e-ag_accelerando", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 407, - "fields": { - "parent": "a5e-ag_accelerando", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 408, - "fields": { - "parent": "a5e-ag_accelerando", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 409, - "fields": { - "parent": "a5e-ag_accelerando", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 410, - "fields": { - "parent": "a5e-ag_acid-arrow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 412, - "fields": { - "parent": "a5e-ag_acid-arrow", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 413, - "fields": { - "parent": "a5e-ag_acid-arrow", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 414, - "fields": { - "parent": "a5e-ag_acid-arrow", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 415, - "fields": { - "parent": "a5e-ag_acid-arrow", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 416, - "fields": { - "parent": "a5e-ag_acid-arrow", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 417, - "fields": { - "parent": "a5e-ag_acid-arrow", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 418, - "fields": { - "parent": "a5e-ag_acid-arrow", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 419, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 420, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 421, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 422, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 423, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 424, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_5", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 425, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_6", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 426, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_7", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 427, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_8", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 428, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_9", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 429, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_10", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 430, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_11", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 431, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_12", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 432, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_13", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 433, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_14", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 434, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_15", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 435, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_16", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 436, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_17", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 437, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_18", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 438, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_19", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 439, - "fields": { - "parent": "a5e-ag_acid-splash", - "type": "player_level_20", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 440, - "fields": { - "parent": "a5e-ag_aid", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 442, - "fields": { - "parent": "a5e-ag_aid", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 443, - "fields": { - "parent": "a5e-ag_aid", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 444, - "fields": { - "parent": "a5e-ag_aid", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 445, - "fields": { - "parent": "a5e-ag_aid", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 446, - "fields": { - "parent": "a5e-ag_aid", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 447, - "fields": { - "parent": "a5e-ag_aid", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 448, - "fields": { - "parent": "a5e-ag_aid", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 449, - "fields": { - "parent": "a5e-ag_air-wave", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 451, - "fields": { - "parent": "a5e-ag_air-wave", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "60 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 452, - "fields": { - "parent": "a5e-ag_air-wave", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "90 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 453, - "fields": { - "parent": "a5e-ag_air-wave", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "120 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 454, - "fields": { - "parent": "a5e-ag_air-wave", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "150 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 455, - "fields": { - "parent": "a5e-ag_air-wave", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "180 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 456, - "fields": { - "parent": "a5e-ag_air-wave", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "210 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 457, - "fields": { - "parent": "a5e-ag_air-wave", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "240 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 458, - "fields": { - "parent": "a5e-ag_air-wave", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "270 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 459, - "fields": { - "parent": "a5e-ag_alarm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 460, - "fields": { - "parent": "a5e-ag_alarm", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 462, - "fields": { - "parent": "a5e-ag_alarm", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": "600 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 463, - "fields": { - "parent": "a5e-ag_alarm", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": "600 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 464, - "fields": { - "parent": "a5e-ag_alarm", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": "600 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 465, - "fields": { - "parent": "a5e-ag_alarm", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": "600 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 466, - "fields": { - "parent": "a5e-ag_alarm", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": "600 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 467, - "fields": { - "parent": "a5e-ag_alarm", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": "600 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 468, - "fields": { - "parent": "a5e-ag_alarm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": "600 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 469, - "fields": { - "parent": "a5e-ag_alarm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": "600 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 470, - "fields": { - "parent": "a5e-ag_alter-self", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 472, - "fields": { - "parent": "a5e-ag_alter-self", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 473, - "fields": { - "parent": "a5e-ag_alter-self", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 474, - "fields": { - "parent": "a5e-ag_alter-self", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 475, - "fields": { - "parent": "a5e-ag_alter-self", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 476, - "fields": { - "parent": "a5e-ag_alter-self", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 477, - "fields": { - "parent": "a5e-ag_alter-self", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 478, - "fields": { - "parent": "a5e-ag_alter-self", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 479, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 480, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 481, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 482, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 483, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 484, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 485, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 486, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 487, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 488, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 489, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 490, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 491, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 492, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 493, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 494, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 495, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 496, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 497, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 498, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 499, - "fields": { - "parent": "a5e-ag_altered-strike", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 500, - "fields": { - "parent": "a5e-ag_angel-paradox", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 502, - "fields": { - "parent": "a5e-ag_angel-paradox", - "type": "slot_level_8", - "damage_roll": "45", - "target_count": null, - "duration": "1 year", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 503, - "fields": { - "parent": "a5e-ag_angel-paradox", - "type": "slot_level_9", - "damage_roll": "50", - "target_count": null, - "duration": "Until dispelled", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 504, - "fields": { - "parent": "a5e-ag_animal-friendship", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 506, - "fields": { - "parent": "a5e-ag_animal-friendship", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 507, - "fields": { - "parent": "a5e-ag_animal-friendship", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 508, - "fields": { - "parent": "a5e-ag_animal-friendship", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 509, - "fields": { - "parent": "a5e-ag_animal-friendship", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 510, - "fields": { - "parent": "a5e-ag_animal-friendship", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 511, - "fields": { - "parent": "a5e-ag_animal-friendship", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 512, - "fields": { - "parent": "a5e-ag_animal-friendship", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 513, - "fields": { - "parent": "a5e-ag_animal-friendship", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 514, - "fields": { - "parent": "a5e-ag_animal-messenger", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 515, - "fields": { - "parent": "a5e-ag_animal-messenger", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 517, - "fields": { - "parent": "a5e-ag_animal-messenger", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "3 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 518, - "fields": { - "parent": "a5e-ag_animal-messenger", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "5 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 519, - "fields": { - "parent": "a5e-ag_animal-messenger", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "7 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 520, - "fields": { - "parent": "a5e-ag_animal-messenger", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "9 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 521, - "fields": { - "parent": "a5e-ag_animal-messenger", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "11 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 522, - "fields": { - "parent": "a5e-ag_animal-messenger", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "13 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 523, - "fields": { - "parent": "a5e-ag_animal-messenger", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "15 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 524, - "fields": { - "parent": "a5e-ag_animal-shapes", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 525, - "fields": { - "parent": "a5e-ag_animate-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 527, - "fields": { - "parent": "a5e-ag_animate-dead", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 528, - "fields": { - "parent": "a5e-ag_animate-dead", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 529, - "fields": { - "parent": "a5e-ag_animate-dead", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 530, - "fields": { - "parent": "a5e-ag_animate-dead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 531, - "fields": { - "parent": "a5e-ag_animate-dead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 532, - "fields": { - "parent": "a5e-ag_animate-dead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 533, - "fields": { - "parent": "a5e-ag_animate-objects", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 535, - "fields": { - "parent": "a5e-ag_animate-objects", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 536, - "fields": { - "parent": "a5e-ag_animate-objects", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 537, - "fields": { - "parent": "a5e-ag_animate-objects", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 538, - "fields": { - "parent": "a5e-ag_animate-objects", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 539, - "fields": { - "parent": "a5e-ag_antilife-shell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 540, - "fields": { - "parent": "a5e-ag_antimagic-field", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 541, - "fields": { - "parent": "a5e-ag_antipathysympathy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 542, - "fields": { - "parent": "a5e-ag_arcane-eye", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 543, - "fields": { - "parent": "a5e-ag_arcane-hand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 545, - "fields": { - "parent": "a5e-ag_arcane-hand", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 546, - "fields": { - "parent": "a5e-ag_arcane-hand", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 547, - "fields": { - "parent": "a5e-ag_arcane-hand", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 548, - "fields": { - "parent": "a5e-ag_arcane-hand", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 549, - "fields": { - "parent": "a5e-ag_arcane-lock", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 551, - "fields": { - "parent": "a5e-ag_arcane-lock", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 552, - "fields": { - "parent": "a5e-ag_arcane-lock", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 553, - "fields": { - "parent": "a5e-ag_arcane-lock", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 554, - "fields": { - "parent": "a5e-ag_arcane-lock", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 555, - "fields": { - "parent": "a5e-ag_arcane-lock", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 556, - "fields": { - "parent": "a5e-ag_arcane-lock", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 557, - "fields": { - "parent": "a5e-ag_arcane-lock", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 558, - "fields": { - "parent": "a5e-ag_arcane-muscles", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 559, - "fields": { - "parent": "a5e-ag_arcane-riposte", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 561, - "fields": { - "parent": "a5e-ag_arcane-riposte", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 562, - "fields": { - "parent": "a5e-ag_arcane-riposte", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 563, - "fields": { - "parent": "a5e-ag_arcane-riposte", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 564, - "fields": { - "parent": "a5e-ag_arcane-riposte", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 565, - "fields": { - "parent": "a5e-ag_arcane-riposte", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 566, - "fields": { - "parent": "a5e-ag_arcane-riposte", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 567, - "fields": { - "parent": "a5e-ag_arcane-riposte", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 568, - "fields": { - "parent": "a5e-ag_arcane-riposte", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 569, - "fields": { - "parent": "a5e-ag_arcane-sword", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 570, - "fields": { - "parent": "a5e-ag_arcanists-magic-aura", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 572, - "fields": { - "parent": "a5e-ag_arcanists-magic-aura", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 573, - "fields": { - "parent": "a5e-ag_arcanists-magic-aura", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 574, - "fields": { - "parent": "a5e-ag_arcanists-magic-aura", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 575, - "fields": { - "parent": "a5e-ag_arcanists-magic-aura", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 576, - "fields": { - "parent": "a5e-ag_arcanists-magic-aura", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 577, - "fields": { - "parent": "a5e-ag_arcanists-magic-aura", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 578, - "fields": { - "parent": "a5e-ag_arcanists-magic-aura", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 579, - "fields": { - "parent": "a5e-ag_aspect-of-the-moon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 580, - "fields": { - "parent": "a5e-ag_astral-projection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 581, - "fields": { - "parent": "a5e-ag_augury", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 582, - "fields": { - "parent": "a5e-ag_awaken", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 584, - "fields": { - "parent": "a5e-ag_awaken", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 585, - "fields": { - "parent": "a5e-ag_awaken", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 586, - "fields": { - "parent": "a5e-ag_awaken", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 587, - "fields": { - "parent": "a5e-ag_awaken", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 588, - "fields": { - "parent": "a5e-ag_bane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 590, - "fields": { - "parent": "a5e-ag_bane", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 591, - "fields": { - "parent": "a5e-ag_bane", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 592, - "fields": { - "parent": "a5e-ag_bane", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 593, - "fields": { - "parent": "a5e-ag_bane", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 594, - "fields": { - "parent": "a5e-ag_bane", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 595, - "fields": { - "parent": "a5e-ag_bane", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 596, - "fields": { - "parent": "a5e-ag_bane", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 597, - "fields": { - "parent": "a5e-ag_bane", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 598, - "fields": { - "parent": "a5e-ag_banishment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 600, - "fields": { - "parent": "a5e-ag_banishment", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "1d4+3 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 601, - "fields": { - "parent": "a5e-ag_banishment", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1d4+4 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 602, - "fields": { - "parent": "a5e-ag_banishment", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1d4+5 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 603, - "fields": { - "parent": "a5e-ag_banishment", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1d4+6 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 604, - "fields": { - "parent": "a5e-ag_banishment", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1d4+7 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 605, - "fields": { - "parent": "a5e-ag_barkskin", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 607, - "fields": { - "parent": "a5e-ag_barkskin", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 608, - "fields": { - "parent": "a5e-ag_barkskin", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 609, - "fields": { - "parent": "a5e-ag_barkskin", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 610, - "fields": { - "parent": "a5e-ag_barkskin", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 611, - "fields": { - "parent": "a5e-ag_barkskin", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 612, - "fields": { - "parent": "a5e-ag_barkskin", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 613, - "fields": { - "parent": "a5e-ag_barkskin", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 614, - "fields": { - "parent": "a5e-ag_battlecry-ballad", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 616, - "fields": { - "parent": "a5e-ag_battlecry-ballad", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 617, - "fields": { - "parent": "a5e-ag_battlecry-ballad", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 618, - "fields": { - "parent": "a5e-ag_battlecry-ballad", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 619, - "fields": { - "parent": "a5e-ag_battlecry-ballad", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 620, - "fields": { - "parent": "a5e-ag_battlecry-ballad", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 621, - "fields": { - "parent": "a5e-ag_battlecry-ballad", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 622, - "fields": { - "parent": "a5e-ag_beacon-of-hope", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 623, - "fields": { - "parent": "a5e-ag_bestow-curse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 625, - "fields": { - "parent": "a5e-ag_bestow-curse", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 626, - "fields": { - "parent": "a5e-ag_bestow-curse", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 627, - "fields": { - "parent": "a5e-ag_bestow-curse", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 628, - "fields": { - "parent": "a5e-ag_bestow-curse", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 629, - "fields": { - "parent": "a5e-ag_bestow-curse", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 630, - "fields": { - "parent": "a5e-ag_bestow-curse", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 631, - "fields": { - "parent": "a5e-ag_black-tentacles", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 633, - "fields": { - "parent": "a5e-ag_black-tentacles", - "type": "slot_level_5", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 634, - "fields": { - "parent": "a5e-ag_black-tentacles", - "type": "slot_level_6", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 635, - "fields": { - "parent": "a5e-ag_black-tentacles", - "type": "slot_level_7", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 636, - "fields": { - "parent": "a5e-ag_black-tentacles", - "type": "slot_level_8", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 637, - "fields": { - "parent": "a5e-ag_black-tentacles", - "type": "slot_level_9", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 638, - "fields": { - "parent": "a5e-ag_blade-barrier", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 640, - "fields": { - "parent": "a5e-ag_blade-barrier", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 641, - "fields": { - "parent": "a5e-ag_blade-barrier", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 642, - "fields": { - "parent": "a5e-ag_blade-barrier", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 643, - "fields": { - "parent": "a5e-ag_bless", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 645, - "fields": { - "parent": "a5e-ag_bless", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 646, - "fields": { - "parent": "a5e-ag_bless", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 647, - "fields": { - "parent": "a5e-ag_bless", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 648, - "fields": { - "parent": "a5e-ag_bless", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 649, - "fields": { - "parent": "a5e-ag_bless", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 650, - "fields": { - "parent": "a5e-ag_bless", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 651, - "fields": { - "parent": "a5e-ag_bless", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 652, - "fields": { - "parent": "a5e-ag_bless", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 11, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 653, - "fields": { - "parent": "a5e-ag_blight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 655, - "fields": { - "parent": "a5e-ag_blight", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 656, - "fields": { - "parent": "a5e-ag_blight", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 657, - "fields": { - "parent": "a5e-ag_blight", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 658, - "fields": { - "parent": "a5e-ag_blight", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 659, - "fields": { - "parent": "a5e-ag_blight", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 660, - "fields": { - "parent": "a5e-ag_blindnessdeafness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 662, - "fields": { - "parent": "a5e-ag_blindnessdeafness", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 663, - "fields": { - "parent": "a5e-ag_blindnessdeafness", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 664, - "fields": { - "parent": "a5e-ag_blindnessdeafness", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 665, - "fields": { - "parent": "a5e-ag_blindnessdeafness", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 666, - "fields": { - "parent": "a5e-ag_blindnessdeafness", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 667, - "fields": { - "parent": "a5e-ag_blindnessdeafness", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 668, - "fields": { - "parent": "a5e-ag_blindnessdeafness", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 669, - "fields": { - "parent": "a5e-ag_blink", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 670, - "fields": { - "parent": "a5e-ag_blood-writ-bargain", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 671, - "fields": { - "parent": "a5e-ag_blood-writ-bargain", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 673, - "fields": { - "parent": "a5e-ag_blood-writ-bargain", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "26 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 674, - "fields": { - "parent": "a5e-ag_blood-writ-bargain", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "39 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 675, - "fields": { - "parent": "a5e-ag_blood-writ-bargain", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "52 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 676, - "fields": { - "parent": "a5e-ag_blood-writ-bargain", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "65 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 677, - "fields": { - "parent": "a5e-ag_blood-writ-bargain", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "78 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 678, - "fields": { - "parent": "a5e-ag_blood-writ-bargain", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "91 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 679, - "fields": { - "parent": "a5e-ag_blur", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 681, - "fields": { - "parent": "a5e-ag_blur", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 682, - "fields": { - "parent": "a5e-ag_blur", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 683, - "fields": { - "parent": "a5e-ag_blur", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 684, - "fields": { - "parent": "a5e-ag_blur", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 685, - "fields": { - "parent": "a5e-ag_blur", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 686, - "fields": { - "parent": "a5e-ag_blur", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 687, - "fields": { - "parent": "a5e-ag_blur", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 688, - "fields": { - "parent": "a5e-ag_burning-hands", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 690, - "fields": { - "parent": "a5e-ag_burning-hands", - "type": "slot_level_2", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 691, - "fields": { - "parent": "a5e-ag_burning-hands", - "type": "slot_level_3", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 692, - "fields": { - "parent": "a5e-ag_burning-hands", - "type": "slot_level_4", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 693, - "fields": { - "parent": "a5e-ag_burning-hands", - "type": "slot_level_5", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 694, - "fields": { - "parent": "a5e-ag_burning-hands", - "type": "slot_level_6", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 695, - "fields": { - "parent": "a5e-ag_burning-hands", - "type": "slot_level_7", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 696, - "fields": { - "parent": "a5e-ag_burning-hands", - "type": "slot_level_8", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 697, - "fields": { - "parent": "a5e-ag_burning-hands", - "type": "slot_level_9", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 698, - "fields": { - "parent": "a5e-ag_calculate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 699, - "fields": { - "parent": "a5e-ag_calculated-retribution", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 701, - "fields": { - "parent": "a5e-ag_calculated-retribution", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 702, - "fields": { - "parent": "a5e-ag_calculated-retribution", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 703, - "fields": { - "parent": "a5e-ag_calculated-retribution", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 704, - "fields": { - "parent": "a5e-ag_calculated-retribution", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 705, - "fields": { - "parent": "a5e-ag_calculated-retribution", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 706, - "fields": { - "parent": "a5e-ag_calculated-retribution", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 707, - "fields": { - "parent": "a5e-ag_calculated-retribution", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 708, - "fields": { - "parent": "a5e-ag_calculated-retribution", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 709, - "fields": { - "parent": "a5e-ag_call-lightning", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 711, - "fields": { - "parent": "a5e-ag_call-lightning", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 712, - "fields": { - "parent": "a5e-ag_call-lightning", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 713, - "fields": { - "parent": "a5e-ag_call-lightning", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 714, - "fields": { - "parent": "a5e-ag_call-lightning", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 715, - "fields": { - "parent": "a5e-ag_call-lightning", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 716, - "fields": { - "parent": "a5e-ag_call-lightning", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 717, - "fields": { - "parent": "a5e-ag_calm-emotions", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 719, - "fields": { - "parent": "a5e-ag_calm-emotions", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 720, - "fields": { - "parent": "a5e-ag_calm-emotions", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 721, - "fields": { - "parent": "a5e-ag_calm-emotions", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 722, - "fields": { - "parent": "a5e-ag_calm-emotions", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 723, - "fields": { - "parent": "a5e-ag_calm-emotions", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 724, - "fields": { - "parent": "a5e-ag_calm-emotions", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 725, - "fields": { - "parent": "a5e-ag_calm-emotions", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 726, - "fields": { - "parent": "a5e-ag_ceremony", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 727, - "fields": { - "parent": "a5e-ag_ceremony", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 728, - "fields": { - "parent": "a5e-ag_chain-lightning", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 730, - "fields": { - "parent": "a5e-ag_chain-lightning", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 731, - "fields": { - "parent": "a5e-ag_chain-lightning", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 732, - "fields": { - "parent": "a5e-ag_chain-lightning", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 733, - "fields": { - "parent": "a5e-ag_charm-monster", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 735, - "fields": { - "parent": "a5e-ag_charm-monster", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 736, - "fields": { - "parent": "a5e-ag_charm-monster", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 737, - "fields": { - "parent": "a5e-ag_charm-monster", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 738, - "fields": { - "parent": "a5e-ag_charm-monster", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 739, - "fields": { - "parent": "a5e-ag_charm-monster", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 740, - "fields": { - "parent": "a5e-ag_charm-person", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 742, - "fields": { - "parent": "a5e-ag_charm-person", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 743, - "fields": { - "parent": "a5e-ag_charm-person", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 744, - "fields": { - "parent": "a5e-ag_charm-person", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 745, - "fields": { - "parent": "a5e-ag_charm-person", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 746, - "fields": { - "parent": "a5e-ag_charm-person", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 747, - "fields": { - "parent": "a5e-ag_charm-person", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 748, - "fields": { - "parent": "a5e-ag_charm-person", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 749, - "fields": { - "parent": "a5e-ag_charm-person", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 750, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 751, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_1", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 752, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_2", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 753, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_3", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 754, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_4", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 755, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 756, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 757, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 758, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 759, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 760, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 761, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 762, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 763, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 764, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 765, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 766, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 767, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 768, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 769, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 770, - "fields": { - "parent": "a5e-ag_chill-touch", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 771, - "fields": { - "parent": "a5e-ag_circle-of-death", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 773, - "fields": { - "parent": "a5e-ag_circle-of-death", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 774, - "fields": { - "parent": "a5e-ag_circle-of-death", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 775, - "fields": { - "parent": "a5e-ag_circle-of-death", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 776, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 777, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 778, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 779, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 780, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 781, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 782, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 783, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 784, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 785, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 786, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 787, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 788, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 789, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 790, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 791, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 792, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 793, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 794, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 795, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 796, - "fields": { - "parent": "a5e-ag_circular-breathing", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 797, - "fields": { - "parent": "a5e-ag_clairvoyance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 798, - "fields": { - "parent": "a5e-ag_clone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 799, - "fields": { - "parent": "a5e-ag_cloudkill", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 801, - "fields": { - "parent": "a5e-ag_cloudkill", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 802, - "fields": { - "parent": "a5e-ag_cloudkill", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 803, - "fields": { - "parent": "a5e-ag_cloudkill", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 804, - "fields": { - "parent": "a5e-ag_cloudkill", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 805, - "fields": { - "parent": "a5e-ag_cobras-spit", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 807, - "fields": { - "parent": "a5e-ag_cobras-spit", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 808, - "fields": { - "parent": "a5e-ag_cobras-spit", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 809, - "fields": { - "parent": "a5e-ag_cobras-spit", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 810, - "fields": { - "parent": "a5e-ag_cobras-spit", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 811, - "fields": { - "parent": "a5e-ag_cobras-spit", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 812, - "fields": { - "parent": "a5e-ag_cobras-spit", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 813, - "fields": { - "parent": "a5e-ag_color-spray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 815, - "fields": { - "parent": "a5e-ag_color-spray", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 816, - "fields": { - "parent": "a5e-ag_color-spray", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 817, - "fields": { - "parent": "a5e-ag_color-spray", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 818, - "fields": { - "parent": "a5e-ag_color-spray", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 819, - "fields": { - "parent": "a5e-ag_color-spray", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 820, - "fields": { - "parent": "a5e-ag_color-spray", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 821, - "fields": { - "parent": "a5e-ag_color-spray", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 822, - "fields": { - "parent": "a5e-ag_color-spray", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 823, - "fields": { - "parent": "a5e-ag_command", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 825, - "fields": { - "parent": "a5e-ag_command", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 826, - "fields": { - "parent": "a5e-ag_command", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 827, - "fields": { - "parent": "a5e-ag_command", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 828, - "fields": { - "parent": "a5e-ag_command", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 829, - "fields": { - "parent": "a5e-ag_command", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 830, - "fields": { - "parent": "a5e-ag_command", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 831, - "fields": { - "parent": "a5e-ag_command", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 832, - "fields": { - "parent": "a5e-ag_command", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 833, - "fields": { - "parent": "a5e-ag_commune", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 834, - "fields": { - "parent": "a5e-ag_commune", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 835, - "fields": { - "parent": "a5e-ag_commune-with-nature", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 836, - "fields": { - "parent": "a5e-ag_commune-with-nature", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 837, - "fields": { - "parent": "a5e-ag_comprehend-languages", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 838, - "fields": { - "parent": "a5e-ag_comprehend-languages", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 840, - "fields": { - "parent": "a5e-ag_comprehend-languages", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 841, - "fields": { - "parent": "a5e-ag_comprehend-languages", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 842, - "fields": { - "parent": "a5e-ag_comprehend-languages", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 843, - "fields": { - "parent": "a5e-ag_comprehend-languages", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 844, - "fields": { - "parent": "a5e-ag_comprehend-languages", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 845, - "fields": { - "parent": "a5e-ag_comprehend-languages", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 846, - "fields": { - "parent": "a5e-ag_comprehend-languages", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 847, - "fields": { - "parent": "a5e-ag_comprehend-languages", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 848, - "fields": { - "parent": "a5e-ag_cone-of-cold", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 850, - "fields": { - "parent": "a5e-ag_cone-of-cold", - "type": "slot_level_6", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 851, - "fields": { - "parent": "a5e-ag_cone-of-cold", - "type": "slot_level_7", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 852, - "fields": { - "parent": "a5e-ag_cone-of-cold", - "type": "slot_level_8", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 853, - "fields": { - "parent": "a5e-ag_cone-of-cold", - "type": "slot_level_9", - "damage_roll": "12d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 854, - "fields": { - "parent": "a5e-ag_confusion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 856, - "fields": { - "parent": "a5e-ag_confusion", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 857, - "fields": { - "parent": "a5e-ag_confusion", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 858, - "fields": { - "parent": "a5e-ag_confusion", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 859, - "fields": { - "parent": "a5e-ag_confusion", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 860, - "fields": { - "parent": "a5e-ag_confusion", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 861, - "fields": { - "parent": "a5e-ag_conjure-animals", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 863, - "fields": { - "parent": "a5e-ag_conjure-animals", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 864, - "fields": { - "parent": "a5e-ag_conjure-animals", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 865, - "fields": { - "parent": "a5e-ag_conjure-animals", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 866, - "fields": { - "parent": "a5e-ag_conjure-animals", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 867, - "fields": { - "parent": "a5e-ag_conjure-animals", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 868, - "fields": { - "parent": "a5e-ag_conjure-animals", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 869, - "fields": { - "parent": "a5e-ag_conjure-celestial", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 871, - "fields": { - "parent": "a5e-ag_conjure-celestial", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 872, - "fields": { - "parent": "a5e-ag_conjure-celestial", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 873, - "fields": { - "parent": "a5e-ag_conjure-elemental", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 875, - "fields": { - "parent": "a5e-ag_conjure-elemental", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 876, - "fields": { - "parent": "a5e-ag_conjure-elemental", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 877, - "fields": { - "parent": "a5e-ag_conjure-elemental", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 878, - "fields": { - "parent": "a5e-ag_conjure-elemental", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 879, - "fields": { - "parent": "a5e-ag_conjure-fey", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 881, - "fields": { - "parent": "a5e-ag_conjure-fey", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 882, - "fields": { - "parent": "a5e-ag_conjure-fey", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 883, - "fields": { - "parent": "a5e-ag_conjure-fey", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 884, - "fields": { - "parent": "a5e-ag_conjure-minor-elementals", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 886, - "fields": { - "parent": "a5e-ag_conjure-minor-elementals", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 887, - "fields": { - "parent": "a5e-ag_conjure-minor-elementals", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 888, - "fields": { - "parent": "a5e-ag_conjure-minor-elementals", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 889, - "fields": { - "parent": "a5e-ag_conjure-minor-elementals", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 890, - "fields": { - "parent": "a5e-ag_conjure-minor-elementals", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 891, - "fields": { - "parent": "a5e-ag_conjure-woodland-beings", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 893, - "fields": { - "parent": "a5e-ag_conjure-woodland-beings", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 894, - "fields": { - "parent": "a5e-ag_conjure-woodland-beings", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 895, - "fields": { - "parent": "a5e-ag_conjure-woodland-beings", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 896, - "fields": { - "parent": "a5e-ag_conjure-woodland-beings", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 897, - "fields": { - "parent": "a5e-ag_conjure-woodland-beings", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 898, - "fields": { - "parent": "a5e-ag_contact-other-plane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 899, - "fields": { - "parent": "a5e-ag_contact-other-plane", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 900, - "fields": { - "parent": "a5e-ag_contagion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 901, - "fields": { - "parent": "a5e-ag_contingency", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 902, - "fields": { - "parent": "a5e-ag_continual-flame", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 903, - "fields": { - "parent": "a5e-ag_control-water", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 904, - "fields": { - "parent": "a5e-ag_control-weather", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 905, - "fields": { - "parent": "a5e-ag_corpse-explosion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 907, - "fields": { - "parent": "a5e-ag_corpse-explosion", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 908, - "fields": { - "parent": "a5e-ag_corpse-explosion", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 909, - "fields": { - "parent": "a5e-ag_corpse-explosion", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 910, - "fields": { - "parent": "a5e-ag_corpse-explosion", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 911, - "fields": { - "parent": "a5e-ag_corpse-explosion", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 912, - "fields": { - "parent": "a5e-ag_corpse-explosion", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 913, - "fields": { - "parent": "a5e-ag_corpse-explosion", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 914, - "fields": { - "parent": "a5e-ag_corpse-explosion", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 915, - "fields": { - "parent": "a5e-ag_counterspell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 917, - "fields": { - "parent": "a5e-ag_counterspell", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 918, - "fields": { - "parent": "a5e-ag_counterspell", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 919, - "fields": { - "parent": "a5e-ag_counterspell", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 920, - "fields": { - "parent": "a5e-ag_counterspell", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 921, - "fields": { - "parent": "a5e-ag_counterspell", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 922, - "fields": { - "parent": "a5e-ag_counterspell", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 923, - "fields": { - "parent": "a5e-ag_create-food-and-water", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 925, - "fields": { - "parent": "a5e-ag_create-food-and-water", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 926, - "fields": { - "parent": "a5e-ag_create-food-and-water", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 927, - "fields": { - "parent": "a5e-ag_create-food-and-water", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 928, - "fields": { - "parent": "a5e-ag_create-food-and-water", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 929, - "fields": { - "parent": "a5e-ag_create-food-and-water", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 930, - "fields": { - "parent": "a5e-ag_create-food-and-water", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 931, - "fields": { - "parent": "a5e-ag_create-or-destroy-water", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 933, - "fields": { - "parent": "a5e-ag_create-or-destroy-water", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 934, - "fields": { - "parent": "a5e-ag_create-or-destroy-water", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 935, - "fields": { - "parent": "a5e-ag_create-or-destroy-water", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 936, - "fields": { - "parent": "a5e-ag_create-or-destroy-water", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 937, - "fields": { - "parent": "a5e-ag_create-or-destroy-water", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 938, - "fields": { - "parent": "a5e-ag_create-or-destroy-water", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 939, - "fields": { - "parent": "a5e-ag_create-or-destroy-water", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 940, - "fields": { - "parent": "a5e-ag_create-or-destroy-water", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 941, - "fields": { - "parent": "a5e-ag_create-undead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 943, - "fields": { - "parent": "a5e-ag_create-undead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 944, - "fields": { - "parent": "a5e-ag_create-undead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 945, - "fields": { - "parent": "a5e-ag_create-undead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 946, - "fields": { - "parent": "a5e-ag_creation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 948, - "fields": { - "parent": "a5e-ag_creation", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 949, - "fields": { - "parent": "a5e-ag_creation", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 950, - "fields": { - "parent": "a5e-ag_creation", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 951, - "fields": { - "parent": "a5e-ag_creation", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 952, - "fields": { - "parent": "a5e-ag_crushing-haymaker", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 954, - "fields": { - "parent": "a5e-ag_crushing-haymaker", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 955, - "fields": { - "parent": "a5e-ag_crushing-haymaker", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 956, - "fields": { - "parent": "a5e-ag_crushing-haymaker", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 957, - "fields": { - "parent": "a5e-ag_crushing-haymaker", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 958, - "fields": { - "parent": "a5e-ag_crushing-haymaker", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 959, - "fields": { - "parent": "a5e-ag_crushing-haymaker", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 960, - "fields": { - "parent": "a5e-ag_cure-wounds", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 962, - "fields": { - "parent": "a5e-ag_cure-wounds", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 963, - "fields": { - "parent": "a5e-ag_cure-wounds", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 964, - "fields": { - "parent": "a5e-ag_cure-wounds", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 965, - "fields": { - "parent": "a5e-ag_cure-wounds", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 966, - "fields": { - "parent": "a5e-ag_cure-wounds", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 967, - "fields": { - "parent": "a5e-ag_cure-wounds", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 968, - "fields": { - "parent": "a5e-ag_cure-wounds", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 969, - "fields": { - "parent": "a5e-ag_cure-wounds", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 970, - "fields": { - "parent": "a5e-ag_dancing-lights", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 971, - "fields": { - "parent": "a5e-ag_darklight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 972, - "fields": { - "parent": "a5e-ag_darkness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 973, - "fields": { - "parent": "a5e-ag_darkvision", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 975, - "fields": { - "parent": "a5e-ag_darkvision", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 976, - "fields": { - "parent": "a5e-ag_darkvision", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 977, - "fields": { - "parent": "a5e-ag_darkvision", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 978, - "fields": { - "parent": "a5e-ag_darkvision", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 979, - "fields": { - "parent": "a5e-ag_darkvision", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 980, - "fields": { - "parent": "a5e-ag_darkvision", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 981, - "fields": { - "parent": "a5e-ag_darkvision", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 982, - "fields": { - "parent": "a5e-ag_daylight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 983, - "fields": { - "parent": "a5e-ag_deadweight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 984, - "fields": { - "parent": "a5e-ag_death-ward", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 985, - "fields": { - "parent": "a5e-ag_delayed-blast-fireball", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 987, - "fields": { - "parent": "a5e-ag_delayed-blast-fireball", - "type": "slot_level_8", - "damage_roll": "13d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 988, - "fields": { - "parent": "a5e-ag_delayed-blast-fireball", - "type": "slot_level_9", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 989, - "fields": { - "parent": "a5e-ag_demiplane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 990, - "fields": { - "parent": "a5e-ag_detect-evil-and-good", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 991, - "fields": { - "parent": "a5e-ag_detect-magic", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 992, - "fields": { - "parent": "a5e-ag_detect-magic", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 994, - "fields": { - "parent": "a5e-ag_detect-magic", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 995, - "fields": { - "parent": "a5e-ag_detect-magic", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 996, - "fields": { - "parent": "a5e-ag_detect-magic", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 997, - "fields": { - "parent": "a5e-ag_detect-magic", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 998, - "fields": { - "parent": "a5e-ag_detect-magic", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 999, - "fields": { - "parent": "a5e-ag_detect-magic", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1000, - "fields": { - "parent": "a5e-ag_detect-magic", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1001, - "fields": { - "parent": "a5e-ag_detect-magic", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1002, - "fields": { - "parent": "a5e-ag_detect-poison-and-disease", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1003, - "fields": { - "parent": "a5e-ag_detect-poison-and-disease", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1004, - "fields": { - "parent": "a5e-ag_detect-thoughts", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1006, - "fields": { - "parent": "a5e-ag_detect-thoughts", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1007, - "fields": { - "parent": "a5e-ag_detect-thoughts", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1008, - "fields": { - "parent": "a5e-ag_detect-thoughts", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "1 mile" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1009, - "fields": { - "parent": "a5e-ag_detect-thoughts", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "1 mile" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1010, - "fields": { - "parent": "a5e-ag_detect-thoughts", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "10 miles" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1011, - "fields": { - "parent": "a5e-ag_detect-thoughts", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "10 miles" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1012, - "fields": { - "parent": "a5e-ag_detect-thoughts", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "1000 miles" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1013, - "fields": { - "parent": "a5e-ag_dimension-door", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1014, - "fields": { - "parent": "a5e-ag_disguise-self", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1016, - "fields": { - "parent": "a5e-ag_disguise-self", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1017, - "fields": { - "parent": "a5e-ag_disguise-self", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1018, - "fields": { - "parent": "a5e-ag_disguise-self", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1019, - "fields": { - "parent": "a5e-ag_disguise-self", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1020, - "fields": { - "parent": "a5e-ag_disguise-self", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1021, - "fields": { - "parent": "a5e-ag_disguise-self", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1022, - "fields": { - "parent": "a5e-ag_disguise-self", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1023, - "fields": { - "parent": "a5e-ag_disguise-self", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1024, - "fields": { - "parent": "a5e-ag_disintegrate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1026, - "fields": { - "parent": "a5e-ag_disintegrate", - "type": "slot_level_7", - "damage_roll": "13d6+40", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1027, - "fields": { - "parent": "a5e-ag_disintegrate", - "type": "slot_level_8", - "damage_roll": "16d6+40", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1028, - "fields": { - "parent": "a5e-ag_disintegrate", - "type": "slot_level_9", - "damage_roll": "19d6+40", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1029, - "fields": { - "parent": "a5e-ag_dispel-evil-and-good", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1031, - "fields": { - "parent": "a5e-ag_dispel-evil-and-good", - "type": "slot_level_6", - "damage_roll": "8d8", - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1032, - "fields": { - "parent": "a5e-ag_dispel-evil-and-good", - "type": "slot_level_7", - "damage_roll": "9d8", - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1033, - "fields": { - "parent": "a5e-ag_dispel-evil-and-good", - "type": "slot_level_8", - "damage_roll": "10d8", - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1034, - "fields": { - "parent": "a5e-ag_dispel-evil-and-good", - "type": "slot_level_9", - "damage_roll": "11d8", - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1035, - "fields": { - "parent": "a5e-ag_dispel-magic", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1037, - "fields": { - "parent": "a5e-ag_dispel-magic", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1038, - "fields": { - "parent": "a5e-ag_dispel-magic", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1039, - "fields": { - "parent": "a5e-ag_dispel-magic", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1040, - "fields": { - "parent": "a5e-ag_dispel-magic", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1041, - "fields": { - "parent": "a5e-ag_dispel-magic", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1042, - "fields": { - "parent": "a5e-ag_dispel-magic", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1043, - "fields": { - "parent": "a5e-ag_divination", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1044, - "fields": { - "parent": "a5e-ag_divination", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1045, - "fields": { - "parent": "a5e-ag_divine-favor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1046, - "fields": { - "parent": "a5e-ag_divine-word", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1047, - "fields": { - "parent": "a5e-ag_dominate-beast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1049, - "fields": { - "parent": "a5e-ag_dominate-beast", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1050, - "fields": { - "parent": "a5e-ag_dominate-beast", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1051, - "fields": { - "parent": "a5e-ag_dominate-beast", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1052, - "fields": { - "parent": "a5e-ag_dominate-beast", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1053, - "fields": { - "parent": "a5e-ag_dominate-beast", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1054, - "fields": { - "parent": "a5e-ag_dominate-monster", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1056, - "fields": { - "parent": "a5e-ag_dominate-monster", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1057, - "fields": { - "parent": "a5e-ag_dominate-person", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1059, - "fields": { - "parent": "a5e-ag_dominate-person", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1060, - "fields": { - "parent": "a5e-ag_dominate-person", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1061, - "fields": { - "parent": "a5e-ag_dominate-person", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1062, - "fields": { - "parent": "a5e-ag_dominate-person", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1063, - "fields": { - "parent": "a5e-ag_dramatic-sting", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1065, - "fields": { - "parent": "a5e-ag_dramatic-sting", - "type": "slot_level_2", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1066, - "fields": { - "parent": "a5e-ag_dramatic-sting", - "type": "slot_level_3", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1067, - "fields": { - "parent": "a5e-ag_dramatic-sting", - "type": "slot_level_4", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1068, - "fields": { - "parent": "a5e-ag_dramatic-sting", - "type": "slot_level_5", - "damage_roll": "5d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1069, - "fields": { - "parent": "a5e-ag_dramatic-sting", - "type": "slot_level_6", - "damage_roll": "6d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1070, - "fields": { - "parent": "a5e-ag_dramatic-sting", - "type": "slot_level_7", - "damage_roll": "7d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1071, - "fields": { - "parent": "a5e-ag_dramatic-sting", - "type": "slot_level_8", - "damage_roll": "8d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1072, - "fields": { - "parent": "a5e-ag_dramatic-sting", - "type": "slot_level_9", - "damage_roll": "9d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1073, - "fields": { - "parent": "a5e-ag_dream", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1074, - "fields": { - "parent": "a5e-ag_druidcraft", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1075, - "fields": { - "parent": "a5e-ag_earth-barrier", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1076, - "fields": { - "parent": "a5e-ag_earthquake", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1077, - "fields": { - "parent": "a5e-ag_eldritch-cube", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1078, - "fields": { - "parent": "a5e-ag_enhance-ability", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1080, - "fields": { - "parent": "a5e-ag_enhance-ability", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1081, - "fields": { - "parent": "a5e-ag_enhance-ability", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1082, - "fields": { - "parent": "a5e-ag_enhance-ability", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1083, - "fields": { - "parent": "a5e-ag_enhance-ability", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1084, - "fields": { - "parent": "a5e-ag_enhance-ability", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1085, - "fields": { - "parent": "a5e-ag_enhance-ability", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1086, - "fields": { - "parent": "a5e-ag_enhance-ability", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1087, - "fields": { - "parent": "a5e-ag_enlargereduce", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1089, - "fields": { - "parent": "a5e-ag_enlargereduce", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1090, - "fields": { - "parent": "a5e-ag_enlargereduce", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1091, - "fields": { - "parent": "a5e-ag_enlargereduce", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1092, - "fields": { - "parent": "a5e-ag_enlargereduce", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1093, - "fields": { - "parent": "a5e-ag_enlargereduce", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1094, - "fields": { - "parent": "a5e-ag_enlargereduce", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1095, - "fields": { - "parent": "a5e-ag_enlargereduce", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1096, - "fields": { - "parent": "a5e-ag_enrage-architecture", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1097, - "fields": { - "parent": "a5e-ag_entangle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1098, - "fields": { - "parent": "a5e-ag_enthrall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1099, - "fields": { - "parent": "a5e-ag_etherealness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1101, - "fields": { - "parent": "a5e-ag_etherealness", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1102, - "fields": { - "parent": "a5e-ag_etherealness", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1103, - "fields": { - "parent": "a5e-ag_expeditious-retreat", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1105, - "fields": { - "parent": "a5e-ag_expeditious-retreat", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1106, - "fields": { - "parent": "a5e-ag_expeditious-retreat", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1107, - "fields": { - "parent": "a5e-ag_expeditious-retreat", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1108, - "fields": { - "parent": "a5e-ag_expeditious-retreat", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1109, - "fields": { - "parent": "a5e-ag_expeditious-retreat", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1110, - "fields": { - "parent": "a5e-ag_expeditious-retreat", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1111, - "fields": { - "parent": "a5e-ag_expeditious-retreat", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1112, - "fields": { - "parent": "a5e-ag_expeditious-retreat", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1113, - "fields": { - "parent": "a5e-ag_eyebite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1114, - "fields": { - "parent": "a5e-ag_fabricate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1115, - "fields": { - "parent": "a5e-ag_faerie-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1116, - "fields": { - "parent": "a5e-ag_faithful-hound", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1117, - "fields": { - "parent": "a5e-ag_false-life", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1119, - "fields": { - "parent": "a5e-ag_false-life", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1120, - "fields": { - "parent": "a5e-ag_false-life", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1121, - "fields": { - "parent": "a5e-ag_false-life", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1122, - "fields": { - "parent": "a5e-ag_false-life", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1123, - "fields": { - "parent": "a5e-ag_false-life", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1124, - "fields": { - "parent": "a5e-ag_false-life", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1125, - "fields": { - "parent": "a5e-ag_false-life", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1126, - "fields": { - "parent": "a5e-ag_false-life", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1127, - "fields": { - "parent": "a5e-ag_fear", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1128, - "fields": { - "parent": "a5e-ag_feather-fall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1130, - "fields": { - "parent": "a5e-ag_feather-fall", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1131, - "fields": { - "parent": "a5e-ag_feather-fall", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1132, - "fields": { - "parent": "a5e-ag_feather-fall", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1133, - "fields": { - "parent": "a5e-ag_feather-fall", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1134, - "fields": { - "parent": "a5e-ag_feather-fall", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1135, - "fields": { - "parent": "a5e-ag_feather-fall", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1136, - "fields": { - "parent": "a5e-ag_feather-fall", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1137, - "fields": { - "parent": "a5e-ag_feather-fall", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1138, - "fields": { - "parent": "a5e-ag_feeblemind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1139, - "fields": { - "parent": "a5e-ag_find-familiar", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1140, - "fields": { - "parent": "a5e-ag_find-familiar", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1141, - "fields": { - "parent": "a5e-ag_find-steed", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1143, - "fields": { - "parent": "a5e-ag_find-steed", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1144, - "fields": { - "parent": "a5e-ag_find-steed", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1145, - "fields": { - "parent": "a5e-ag_find-steed", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1146, - "fields": { - "parent": "a5e-ag_find-steed", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1147, - "fields": { - "parent": "a5e-ag_find-steed", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1148, - "fields": { - "parent": "a5e-ag_find-steed", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1149, - "fields": { - "parent": "a5e-ag_find-steed", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1150, - "fields": { - "parent": "a5e-ag_find-the-path", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1151, - "fields": { - "parent": "a5e-ag_find-traps", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1152, - "fields": { - "parent": "a5e-ag_finger-of-death", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1154, - "fields": { - "parent": "a5e-ag_finger-of-death", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1155, - "fields": { - "parent": "a5e-ag_finger-of-death", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1156, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1157, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1158, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1159, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1160, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1161, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_5", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1162, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_6", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1163, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_7", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1164, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_8", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1165, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_9", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1166, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_10", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1167, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_11", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1168, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_12", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1169, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_13", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1170, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_14", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1171, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_15", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1172, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_16", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1173, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_17", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1174, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_18", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1175, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_19", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1176, - "fields": { - "parent": "a5e-ag_fire-bolt", - "type": "player_level_20", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1177, - "fields": { - "parent": "a5e-ag_fire-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1179, - "fields": { - "parent": "a5e-ag_fire-shield", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1180, - "fields": { - "parent": "a5e-ag_fire-shield", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1181, - "fields": { - "parent": "a5e-ag_fire-shield", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1182, - "fields": { - "parent": "a5e-ag_fire-shield", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1183, - "fields": { - "parent": "a5e-ag_fire-shield", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1184, - "fields": { - "parent": "a5e-ag_fire-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1186, - "fields": { - "parent": "a5e-ag_fire-storm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1187, - "fields": { - "parent": "a5e-ag_fire-storm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1188, - "fields": { - "parent": "a5e-ag_fireball", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1190, - "fields": { - "parent": "a5e-ag_fireball", - "type": "slot_level_4", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1191, - "fields": { - "parent": "a5e-ag_fireball", - "type": "slot_level_5", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1192, - "fields": { - "parent": "a5e-ag_fireball", - "type": "slot_level_6", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1193, - "fields": { - "parent": "a5e-ag_fireball", - "type": "slot_level_7", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1194, - "fields": { - "parent": "a5e-ag_fireball", - "type": "slot_level_8", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1195, - "fields": { - "parent": "a5e-ag_fireball", - "type": "slot_level_9", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1196, - "fields": { - "parent": "a5e-ag_flame-blade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1198, - "fields": { - "parent": "a5e-ag_flame-blade", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1199, - "fields": { - "parent": "a5e-ag_flame-blade", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1200, - "fields": { - "parent": "a5e-ag_flame-blade", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1201, - "fields": { - "parent": "a5e-ag_flame-blade", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1202, - "fields": { - "parent": "a5e-ag_flame-blade", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1203, - "fields": { - "parent": "a5e-ag_flame-blade", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1204, - "fields": { - "parent": "a5e-ag_flame-blade", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1205, - "fields": { - "parent": "a5e-ag_flame-strike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1207, - "fields": { - "parent": "a5e-ag_flame-strike", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1208, - "fields": { - "parent": "a5e-ag_flame-strike", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1209, - "fields": { - "parent": "a5e-ag_flame-strike", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1210, - "fields": { - "parent": "a5e-ag_flame-strike", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1211, - "fields": { - "parent": "a5e-ag_flaming-sphere", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1213, - "fields": { - "parent": "a5e-ag_flaming-sphere", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1214, - "fields": { - "parent": "a5e-ag_flaming-sphere", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1215, - "fields": { - "parent": "a5e-ag_flaming-sphere", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1216, - "fields": { - "parent": "a5e-ag_flaming-sphere", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1217, - "fields": { - "parent": "a5e-ag_flaming-sphere", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1218, - "fields": { - "parent": "a5e-ag_flaming-sphere", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1219, - "fields": { - "parent": "a5e-ag_flaming-sphere", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1220, - "fields": { - "parent": "a5e-ag_flesh-to-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1222, - "fields": { - "parent": "a5e-ag_flesh-to-stone", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1223, - "fields": { - "parent": "a5e-ag_flesh-to-stone", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1224, - "fields": { - "parent": "a5e-ag_flesh-to-stone", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1225, - "fields": { - "parent": "a5e-ag_flex", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1227, - "fields": { - "parent": "a5e-ag_flex", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1228, - "fields": { - "parent": "a5e-ag_flex", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1229, - "fields": { - "parent": "a5e-ag_flex", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1230, - "fields": { - "parent": "a5e-ag_flex", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1231, - "fields": { - "parent": "a5e-ag_flex", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1232, - "fields": { - "parent": "a5e-ag_flex", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1233, - "fields": { - "parent": "a5e-ag_flex", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1234, - "fields": { - "parent": "a5e-ag_floating-disk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1235, - "fields": { - "parent": "a5e-ag_floating-disk", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1237, - "fields": { - "parent": "a5e-ag_floating-disk", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1238, - "fields": { - "parent": "a5e-ag_floating-disk", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1239, - "fields": { - "parent": "a5e-ag_floating-disk", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1240, - "fields": { - "parent": "a5e-ag_floating-disk", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1241, - "fields": { - "parent": "a5e-ag_floating-disk", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1242, - "fields": { - "parent": "a5e-ag_floating-disk", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1243, - "fields": { - "parent": "a5e-ag_floating-disk", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1244, - "fields": { - "parent": "a5e-ag_floating-disk", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1245, - "fields": { - "parent": "a5e-ag_fly", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1247, - "fields": { - "parent": "a5e-ag_fly", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1248, - "fields": { - "parent": "a5e-ag_fly", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1249, - "fields": { - "parent": "a5e-ag_fly", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1250, - "fields": { - "parent": "a5e-ag_fly", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1251, - "fields": { - "parent": "a5e-ag_fly", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1252, - "fields": { - "parent": "a5e-ag_fly", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1253, - "fields": { - "parent": "a5e-ag_fog-cloud", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1255, - "fields": { - "parent": "a5e-ag_fog-cloud", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1256, - "fields": { - "parent": "a5e-ag_fog-cloud", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1257, - "fields": { - "parent": "a5e-ag_fog-cloud", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1258, - "fields": { - "parent": "a5e-ag_fog-cloud", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1259, - "fields": { - "parent": "a5e-ag_fog-cloud", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1260, - "fields": { - "parent": "a5e-ag_fog-cloud", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1261, - "fields": { - "parent": "a5e-ag_fog-cloud", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1262, - "fields": { - "parent": "a5e-ag_fog-cloud", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1263, - "fields": { - "parent": "a5e-ag_forbiddance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1264, - "fields": { - "parent": "a5e-ag_forbiddance", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1265, - "fields": { - "parent": "a5e-ag_force-of-will", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1267, - "fields": { - "parent": "a5e-ag_force-of-will", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1268, - "fields": { - "parent": "a5e-ag_force-of-will", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1269, - "fields": { - "parent": "a5e-ag_force-of-will", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1270, - "fields": { - "parent": "a5e-ag_force-of-will", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1271, - "fields": { - "parent": "a5e-ag_force-of-will", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1272, - "fields": { - "parent": "a5e-ag_force-of-will", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1273, - "fields": { - "parent": "a5e-ag_force-of-will", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1274, - "fields": { - "parent": "a5e-ag_force-punch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1276, - "fields": { - "parent": "a5e-ag_force-punch", - "type": "slot_level_2", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1277, - "fields": { - "parent": "a5e-ag_force-punch", - "type": "slot_level_3", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1278, - "fields": { - "parent": "a5e-ag_force-punch", - "type": "slot_level_4", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1279, - "fields": { - "parent": "a5e-ag_force-punch", - "type": "slot_level_5", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1280, - "fields": { - "parent": "a5e-ag_force-punch", - "type": "slot_level_6", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1281, - "fields": { - "parent": "a5e-ag_force-punch", - "type": "slot_level_7", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1282, - "fields": { - "parent": "a5e-ag_force-punch", - "type": "slot_level_8", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1283, - "fields": { - "parent": "a5e-ag_force-punch", - "type": "slot_level_9", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1284, - "fields": { - "parent": "a5e-ag_forcecage", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1286, - "fields": { - "parent": "a5e-ag_forcecage", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1287, - "fields": { - "parent": "a5e-ag_forcecage", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1288, - "fields": { - "parent": "a5e-ag_foresight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1289, - "fields": { - "parent": "a5e-ag_forest-army", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1290, - "fields": { - "parent": "a5e-ag_freedom-of-movement", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1292, - "fields": { - "parent": "a5e-ag_freedom-of-movement", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1293, - "fields": { - "parent": "a5e-ag_freedom-of-movement", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1294, - "fields": { - "parent": "a5e-ag_freedom-of-movement", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1295, - "fields": { - "parent": "a5e-ag_freedom-of-movement", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1296, - "fields": { - "parent": "a5e-ag_freedom-of-movement", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1297, - "fields": { - "parent": "a5e-ag_freezing-sphere", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1299, - "fields": { - "parent": "a5e-ag_freezing-sphere", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1300, - "fields": { - "parent": "a5e-ag_freezing-sphere", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1301, - "fields": { - "parent": "a5e-ag_freezing-sphere", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1302, - "fields": { - "parent": "a5e-ag_friends", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1303, - "fields": { - "parent": "a5e-ag_gaseous-form", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1305, - "fields": { - "parent": "a5e-ag_gaseous-form", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1306, - "fields": { - "parent": "a5e-ag_gaseous-form", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1307, - "fields": { - "parent": "a5e-ag_gaseous-form", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1308, - "fields": { - "parent": "a5e-ag_gaseous-form", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1309, - "fields": { - "parent": "a5e-ag_gaseous-form", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1310, - "fields": { - "parent": "a5e-ag_gaseous-form", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1311, - "fields": { - "parent": "a5e-ag_gate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1312, - "fields": { - "parent": "a5e-ag_geas", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1314, - "fields": { - "parent": "a5e-ag_geas", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1315, - "fields": { - "parent": "a5e-ag_geas", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1316, - "fields": { - "parent": "a5e-ag_geas", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1317, - "fields": { - "parent": "a5e-ag_geas", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1318, - "fields": { - "parent": "a5e-ag_gentle-repose", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1319, - "fields": { - "parent": "a5e-ag_gentle-repose", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1321, - "fields": { - "parent": "a5e-ag_gentle-repose", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1322, - "fields": { - "parent": "a5e-ag_gentle-repose", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1323, - "fields": { - "parent": "a5e-ag_gentle-repose", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1324, - "fields": { - "parent": "a5e-ag_gentle-repose", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1325, - "fields": { - "parent": "a5e-ag_gentle-repose", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1326, - "fields": { - "parent": "a5e-ag_gentle-repose", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1327, - "fields": { - "parent": "a5e-ag_gentle-repose", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1328, - "fields": { - "parent": "a5e-ag_giant-insect", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1330, - "fields": { - "parent": "a5e-ag_giant-insect", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1331, - "fields": { - "parent": "a5e-ag_giant-insect", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1332, - "fields": { - "parent": "a5e-ag_giant-insect", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1333, - "fields": { - "parent": "a5e-ag_giant-insect", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1334, - "fields": { - "parent": "a5e-ag_giant-insect", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1335, - "fields": { - "parent": "a5e-ag_glibness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1336, - "fields": { - "parent": "a5e-ag_globe-of-invulnerability", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1338, - "fields": { - "parent": "a5e-ag_globe-of-invulnerability", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1339, - "fields": { - "parent": "a5e-ag_globe-of-invulnerability", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1340, - "fields": { - "parent": "a5e-ag_globe-of-invulnerability", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1341, - "fields": { - "parent": "a5e-ag_glyph-of-warding", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1343, - "fields": { - "parent": "a5e-ag_glyph-of-warding", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1344, - "fields": { - "parent": "a5e-ag_glyph-of-warding", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1345, - "fields": { - "parent": "a5e-ag_glyph-of-warding", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1346, - "fields": { - "parent": "a5e-ag_glyph-of-warding", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1347, - "fields": { - "parent": "a5e-ag_glyph-of-warding", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1348, - "fields": { - "parent": "a5e-ag_glyph-of-warding", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1349, - "fields": { - "parent": "a5e-ag_goodberry", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1351, - "fields": { - "parent": "a5e-ag_goodberry", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1352, - "fields": { - "parent": "a5e-ag_goodberry", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1353, - "fields": { - "parent": "a5e-ag_goodberry", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1354, - "fields": { - "parent": "a5e-ag_goodberry", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1355, - "fields": { - "parent": "a5e-ag_goodberry", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1356, - "fields": { - "parent": "a5e-ag_goodberry", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1357, - "fields": { - "parent": "a5e-ag_goodberry", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1358, - "fields": { - "parent": "a5e-ag_goodberry", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1359, - "fields": { - "parent": "a5e-ag_grapevine", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1360, - "fields": { - "parent": "a5e-ag_grease", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1361, - "fields": { - "parent": "a5e-ag_greater-invisibility", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1362, - "fields": { - "parent": "a5e-ag_greater-restoration", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1363, - "fields": { - "parent": "a5e-ag_guardian-of-faith", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1364, - "fields": { - "parent": "a5e-ag_guards-and-wards", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1365, - "fields": { - "parent": "a5e-ag_guidance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1366, - "fields": { - "parent": "a5e-ag_guiding-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1368, - "fields": { - "parent": "a5e-ag_guiding-bolt", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1369, - "fields": { - "parent": "a5e-ag_guiding-bolt", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1370, - "fields": { - "parent": "a5e-ag_guiding-bolt", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1371, - "fields": { - "parent": "a5e-ag_guiding-bolt", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1372, - "fields": { - "parent": "a5e-ag_guiding-bolt", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1373, - "fields": { - "parent": "a5e-ag_guiding-bolt", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1374, - "fields": { - "parent": "a5e-ag_guiding-bolt", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1375, - "fields": { - "parent": "a5e-ag_guiding-bolt", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1376, - "fields": { - "parent": "a5e-ag_gust-of-wind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1377, - "fields": { - "parent": "a5e-ag_hallow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1378, - "fields": { - "parent": "a5e-ag_hallucinatory-terrain", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1380, - "fields": { - "parent": "a5e-ag_hallucinatory-terrain", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1381, - "fields": { - "parent": "a5e-ag_hallucinatory-terrain", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1382, - "fields": { - "parent": "a5e-ag_hallucinatory-terrain", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1383, - "fields": { - "parent": "a5e-ag_hallucinatory-terrain", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1384, - "fields": { - "parent": "a5e-ag_hallucinatory-terrain", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1385, - "fields": { - "parent": "a5e-ag_harm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1387, - "fields": { - "parent": "a5e-ag_harm", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1388, - "fields": { - "parent": "a5e-ag_harm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1389, - "fields": { - "parent": "a5e-ag_harm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1390, - "fields": { - "parent": "a5e-ag_harmonic-resonance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1391, - "fields": { - "parent": "a5e-ag_haste", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1393, - "fields": { - "parent": "a5e-ag_haste", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1394, - "fields": { - "parent": "a5e-ag_haste", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1395, - "fields": { - "parent": "a5e-ag_haste", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1396, - "fields": { - "parent": "a5e-ag_haste", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1397, - "fields": { - "parent": "a5e-ag_haste", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1398, - "fields": { - "parent": "a5e-ag_haste", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1399, - "fields": { - "parent": "a5e-ag_heal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1401, - "fields": { - "parent": "a5e-ag_heal", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1402, - "fields": { - "parent": "a5e-ag_heal", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1403, - "fields": { - "parent": "a5e-ag_heal", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1404, - "fields": { - "parent": "a5e-ag_healing-word", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1406, - "fields": { - "parent": "a5e-ag_healing-word", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1407, - "fields": { - "parent": "a5e-ag_healing-word", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1408, - "fields": { - "parent": "a5e-ag_healing-word", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1409, - "fields": { - "parent": "a5e-ag_healing-word", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1410, - "fields": { - "parent": "a5e-ag_healing-word", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1411, - "fields": { - "parent": "a5e-ag_healing-word", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1412, - "fields": { - "parent": "a5e-ag_healing-word", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1413, - "fields": { - "parent": "a5e-ag_healing-word", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1414, - "fields": { - "parent": "a5e-ag_heart-of-dis", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1415, - "fields": { - "parent": "a5e-ag_heat-metal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1417, - "fields": { - "parent": "a5e-ag_heat-metal", - "type": "slot_level_3", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1418, - "fields": { - "parent": "a5e-ag_heat-metal", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1419, - "fields": { - "parent": "a5e-ag_heat-metal", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1420, - "fields": { - "parent": "a5e-ag_heat-metal", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1421, - "fields": { - "parent": "a5e-ag_heat-metal", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1422, - "fields": { - "parent": "a5e-ag_heat-metal", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1423, - "fields": { - "parent": "a5e-ag_heat-metal", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1424, - "fields": { - "parent": "a5e-ag_heroes-feast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1425, - "fields": { - "parent": "a5e-ag_heroism", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1427, - "fields": { - "parent": "a5e-ag_heroism", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1428, - "fields": { - "parent": "a5e-ag_heroism", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1429, - "fields": { - "parent": "a5e-ag_heroism", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1430, - "fields": { - "parent": "a5e-ag_heroism", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1431, - "fields": { - "parent": "a5e-ag_heroism", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1432, - "fields": { - "parent": "a5e-ag_heroism", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1433, - "fields": { - "parent": "a5e-ag_heroism", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1434, - "fields": { - "parent": "a5e-ag_heroism", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1435, - "fields": { - "parent": "a5e-ag_hideous-laughter", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1437, - "fields": { - "parent": "a5e-ag_hideous-laughter", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1438, - "fields": { - "parent": "a5e-ag_hideous-laughter", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1439, - "fields": { - "parent": "a5e-ag_hideous-laughter", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1440, - "fields": { - "parent": "a5e-ag_hideous-laughter", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1441, - "fields": { - "parent": "a5e-ag_hideous-laughter", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1442, - "fields": { - "parent": "a5e-ag_hideous-laughter", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1443, - "fields": { - "parent": "a5e-ag_hideous-laughter", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1444, - "fields": { - "parent": "a5e-ag_hideous-laughter", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1445, - "fields": { - "parent": "a5e-ag_hold-monster", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1447, - "fields": { - "parent": "a5e-ag_hold-monster", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1448, - "fields": { - "parent": "a5e-ag_hold-monster", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1449, - "fields": { - "parent": "a5e-ag_hold-monster", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1450, - "fields": { - "parent": "a5e-ag_hold-monster", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1451, - "fields": { - "parent": "a5e-ag_hold-person", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1453, - "fields": { - "parent": "a5e-ag_hold-person", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1454, - "fields": { - "parent": "a5e-ag_hold-person", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1455, - "fields": { - "parent": "a5e-ag_hold-person", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1456, - "fields": { - "parent": "a5e-ag_hold-person", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1457, - "fields": { - "parent": "a5e-ag_hold-person", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1458, - "fields": { - "parent": "a5e-ag_hold-person", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1459, - "fields": { - "parent": "a5e-ag_hold-person", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1460, - "fields": { - "parent": "a5e-ag_holy-aura", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1461, - "fields": { - "parent": "a5e-ag_hypnotic-pattern", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1462, - "fields": { - "parent": "a5e-ag_ice-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1464, - "fields": { - "parent": "a5e-ag_ice-storm", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1465, - "fields": { - "parent": "a5e-ag_ice-storm", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1466, - "fields": { - "parent": "a5e-ag_ice-storm", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1467, - "fields": { - "parent": "a5e-ag_ice-storm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1468, - "fields": { - "parent": "a5e-ag_ice-storm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1469, - "fields": { - "parent": "a5e-ag_identify", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1470, - "fields": { - "parent": "a5e-ag_identify", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1471, - "fields": { - "parent": "a5e-ag_illusory-script", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1472, - "fields": { - "parent": "a5e-ag_imprisonment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1473, - "fields": { - "parent": "a5e-ag_incendiary-cloud", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1474, - "fields": { - "parent": "a5e-ag_inescapable-malady", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1476, - "fields": { - "parent": "a5e-ag_inescapable-malady", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1477, - "fields": { - "parent": "a5e-ag_inescapable-malady", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1478, - "fields": { - "parent": "a5e-ag_infernal-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1479, - "fields": { - "parent": "a5e-ag_inflict-wounds", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1481, - "fields": { - "parent": "a5e-ag_inflict-wounds", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1482, - "fields": { - "parent": "a5e-ag_inflict-wounds", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1483, - "fields": { - "parent": "a5e-ag_inflict-wounds", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1484, - "fields": { - "parent": "a5e-ag_inflict-wounds", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1485, - "fields": { - "parent": "a5e-ag_inflict-wounds", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1486, - "fields": { - "parent": "a5e-ag_inflict-wounds", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1487, - "fields": { - "parent": "a5e-ag_inflict-wounds", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1488, - "fields": { - "parent": "a5e-ag_inflict-wounds", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1489, - "fields": { - "parent": "a5e-ag_insect-plague", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1491, - "fields": { - "parent": "a5e-ag_insect-plague", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1492, - "fields": { - "parent": "a5e-ag_insect-plague", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1493, - "fields": { - "parent": "a5e-ag_insect-plague", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1494, - "fields": { - "parent": "a5e-ag_insect-plague", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1495, - "fields": { - "parent": "a5e-ag_instant-summons", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1496, - "fields": { - "parent": "a5e-ag_instant-summons", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1497, - "fields": { - "parent": "a5e-ag_invigorated-strikes", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1499, - "fields": { - "parent": "a5e-ag_invigorated-strikes", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1500, - "fields": { - "parent": "a5e-ag_invigorated-strikes", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1501, - "fields": { - "parent": "a5e-ag_invigorated-strikes", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1502, - "fields": { - "parent": "a5e-ag_invigorated-strikes", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1503, - "fields": { - "parent": "a5e-ag_invigorated-strikes", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1504, - "fields": { - "parent": "a5e-ag_invigorated-strikes", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1505, - "fields": { - "parent": "a5e-ag_invigorated-strikes", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1506, - "fields": { - "parent": "a5e-ag_invisibility", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1508, - "fields": { - "parent": "a5e-ag_invisibility", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1509, - "fields": { - "parent": "a5e-ag_invisibility", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1510, - "fields": { - "parent": "a5e-ag_invisibility", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1511, - "fields": { - "parent": "a5e-ag_invisibility", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1512, - "fields": { - "parent": "a5e-ag_invisibility", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1513, - "fields": { - "parent": "a5e-ag_invisibility", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1514, - "fields": { - "parent": "a5e-ag_invisibility", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1515, - "fields": { - "parent": "a5e-ag_irresistible-dance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1517, - "fields": { - "parent": "a5e-ag_irresistible-dance", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1518, - "fields": { - "parent": "a5e-ag_irresistible-dance", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1519, - "fields": { - "parent": "a5e-ag_irresistible-dance", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1520, - "fields": { - "parent": "a5e-ag_jump", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1522, - "fields": { - "parent": "a5e-ag_jump", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1523, - "fields": { - "parent": "a5e-ag_jump", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1524, - "fields": { - "parent": "a5e-ag_jump", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1525, - "fields": { - "parent": "a5e-ag_jump", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1526, - "fields": { - "parent": "a5e-ag_jump", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1527, - "fields": { - "parent": "a5e-ag_jump", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1528, - "fields": { - "parent": "a5e-ag_jump", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1529, - "fields": { - "parent": "a5e-ag_jump", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1530, - "fields": { - "parent": "a5e-ag_knock", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1532, - "fields": { - "parent": "a5e-ag_knock", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1533, - "fields": { - "parent": "a5e-ag_knock", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1534, - "fields": { - "parent": "a5e-ag_knock", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1535, - "fields": { - "parent": "a5e-ag_knock", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1536, - "fields": { - "parent": "a5e-ag_knock", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1537, - "fields": { - "parent": "a5e-ag_knock", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1538, - "fields": { - "parent": "a5e-ag_knock", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1539, - "fields": { - "parent": "a5e-ag_legend-lore", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1541, - "fields": { - "parent": "a5e-ag_legend-lore", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1542, - "fields": { - "parent": "a5e-ag_legend-lore", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1543, - "fields": { - "parent": "a5e-ag_legend-lore", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1544, - "fields": { - "parent": "a5e-ag_legend-lore", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1545, - "fields": { - "parent": "a5e-ag_lemure-transformation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1546, - "fields": { - "parent": "a5e-ag_lesser-restoration", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1547, - "fields": { - "parent": "a5e-ag_levitate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1549, - "fields": { - "parent": "a5e-ag_levitate", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1550, - "fields": { - "parent": "a5e-ag_levitate", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1551, - "fields": { - "parent": "a5e-ag_levitate", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1552, - "fields": { - "parent": "a5e-ag_levitate", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1553, - "fields": { - "parent": "a5e-ag_levitate", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1554, - "fields": { - "parent": "a5e-ag_levitate", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1555, - "fields": { - "parent": "a5e-ag_levitate", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1556, - "fields": { - "parent": "a5e-ag_light", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1557, - "fields": { - "parent": "a5e-ag_lightning-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1559, - "fields": { - "parent": "a5e-ag_lightning-bolt", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1560, - "fields": { - "parent": "a5e-ag_lightning-bolt", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1561, - "fields": { - "parent": "a5e-ag_lightning-bolt", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1562, - "fields": { - "parent": "a5e-ag_lightning-bolt", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1563, - "fields": { - "parent": "a5e-ag_lightning-bolt", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1564, - "fields": { - "parent": "a5e-ag_lightning-bolt", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1565, - "fields": { - "parent": "a5e-ag_locate-animals-or-plants", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1566, - "fields": { - "parent": "a5e-ag_locate-animals-or-plants", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1567, - "fields": { - "parent": "a5e-ag_locate-creature", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1568, - "fields": { - "parent": "a5e-ag_locate-object", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1569, - "fields": { - "parent": "a5e-ag_longstrider", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1571, - "fields": { - "parent": "a5e-ag_longstrider", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1572, - "fields": { - "parent": "a5e-ag_longstrider", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1573, - "fields": { - "parent": "a5e-ag_longstrider", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1574, - "fields": { - "parent": "a5e-ag_longstrider", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1575, - "fields": { - "parent": "a5e-ag_longstrider", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1576, - "fields": { - "parent": "a5e-ag_longstrider", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1577, - "fields": { - "parent": "a5e-ag_longstrider", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1578, - "fields": { - "parent": "a5e-ag_longstrider", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1579, - "fields": { - "parent": "a5e-ag_mage-armor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1581, - "fields": { - "parent": "a5e-ag_mage-armor", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1582, - "fields": { - "parent": "a5e-ag_mage-armor", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1583, - "fields": { - "parent": "a5e-ag_mage-armor", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1584, - "fields": { - "parent": "a5e-ag_mage-armor", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1585, - "fields": { - "parent": "a5e-ag_mage-armor", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1586, - "fields": { - "parent": "a5e-ag_mage-armor", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1587, - "fields": { - "parent": "a5e-ag_mage-armor", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1588, - "fields": { - "parent": "a5e-ag_mage-armor", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1589, - "fields": { - "parent": "a5e-ag_mage-hand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1590, - "fields": { - "parent": "a5e-ag_magic-circle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1592, - "fields": { - "parent": "a5e-ag_magic-circle", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1593, - "fields": { - "parent": "a5e-ag_magic-circle", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1594, - "fields": { - "parent": "a5e-ag_magic-circle", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1595, - "fields": { - "parent": "a5e-ag_magic-circle", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1596, - "fields": { - "parent": "a5e-ag_magic-circle", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1597, - "fields": { - "parent": "a5e-ag_magic-circle", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1598, - "fields": { - "parent": "a5e-ag_magic-jar", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1599, - "fields": { - "parent": "a5e-ag_magic-missile", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1601, - "fields": { - "parent": "a5e-ag_magic-missile", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1602, - "fields": { - "parent": "a5e-ag_magic-missile", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1603, - "fields": { - "parent": "a5e-ag_magic-missile", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1604, - "fields": { - "parent": "a5e-ag_magic-missile", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1605, - "fields": { - "parent": "a5e-ag_magic-missile", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1606, - "fields": { - "parent": "a5e-ag_magic-missile", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1607, - "fields": { - "parent": "a5e-ag_magic-missile", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1608, - "fields": { - "parent": "a5e-ag_magic-missile", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 11, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1609, - "fields": { - "parent": "a5e-ag_magic-mouth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1610, - "fields": { - "parent": "a5e-ag_magic-mouth", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1611, - "fields": { - "parent": "a5e-ag_magic-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1613, - "fields": { - "parent": "a5e-ag_magic-weapon", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1614, - "fields": { - "parent": "a5e-ag_magic-weapon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1615, - "fields": { - "parent": "a5e-ag_magic-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1616, - "fields": { - "parent": "a5e-ag_magic-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1617, - "fields": { - "parent": "a5e-ag_magic-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1618, - "fields": { - "parent": "a5e-ag_magic-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1619, - "fields": { - "parent": "a5e-ag_magic-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1620, - "fields": { - "parent": "a5e-ag_magnificent-mansion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1621, - "fields": { - "parent": "a5e-ag_major-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1623, - "fields": { - "parent": "a5e-ag_major-image", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1624, - "fields": { - "parent": "a5e-ag_major-image", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1625, - "fields": { - "parent": "a5e-ag_major-image", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1626, - "fields": { - "parent": "a5e-ag_major-image", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1627, - "fields": { - "parent": "a5e-ag_major-image", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1628, - "fields": { - "parent": "a5e-ag_major-image", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1629, - "fields": { - "parent": "a5e-ag_mass-cure-wounds", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1631, - "fields": { - "parent": "a5e-ag_mass-cure-wounds", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1632, - "fields": { - "parent": "a5e-ag_mass-cure-wounds", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1633, - "fields": { - "parent": "a5e-ag_mass-cure-wounds", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1634, - "fields": { - "parent": "a5e-ag_mass-cure-wounds", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1635, - "fields": { - "parent": "a5e-ag_mass-heal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1636, - "fields": { - "parent": "a5e-ag_mass-healing-word", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1638, - "fields": { - "parent": "a5e-ag_mass-healing-word", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1639, - "fields": { - "parent": "a5e-ag_mass-healing-word", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1640, - "fields": { - "parent": "a5e-ag_mass-healing-word", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1641, - "fields": { - "parent": "a5e-ag_mass-healing-word", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1642, - "fields": { - "parent": "a5e-ag_mass-healing-word", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1643, - "fields": { - "parent": "a5e-ag_mass-healing-word", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1644, - "fields": { - "parent": "a5e-ag_mass-suggestion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1646, - "fields": { - "parent": "a5e-ag_mass-suggestion", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "10 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1647, - "fields": { - "parent": "a5e-ag_mass-suggestion", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "30 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1648, - "fields": { - "parent": "a5e-ag_mass-suggestion", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "A year and a day", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1649, - "fields": { - "parent": "a5e-ag_maze", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1650, - "fields": { - "parent": "a5e-ag_meld-into-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1652, - "fields": { - "parent": "a5e-ag_meld-into-stone", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1653, - "fields": { - "parent": "a5e-ag_meld-into-stone", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1654, - "fields": { - "parent": "a5e-ag_meld-into-stone", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1655, - "fields": { - "parent": "a5e-ag_meld-into-stone", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1656, - "fields": { - "parent": "a5e-ag_meld-into-stone", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1657, - "fields": { - "parent": "a5e-ag_meld-into-stone", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1658, - "fields": { - "parent": "a5e-ag_mending", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1659, - "fields": { - "parent": "a5e-ag_mental-grip", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1660, - "fields": { - "parent": "a5e-ag_message", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1661, - "fields": { - "parent": "a5e-ag_meteor-swarm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1662, - "fields": { - "parent": "a5e-ag_mind-blank", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1663, - "fields": { - "parent": "a5e-ag_mindshield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1664, - "fields": { - "parent": "a5e-ag_minor-illusion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1665, - "fields": { - "parent": "a5e-ag_mirage-arcane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1666, - "fields": { - "parent": "a5e-ag_mirror-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1668, - "fields": { - "parent": "a5e-ag_mirror-image", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1669, - "fields": { - "parent": "a5e-ag_mirror-image", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1670, - "fields": { - "parent": "a5e-ag_mirror-image", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1671, - "fields": { - "parent": "a5e-ag_mirror-image", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1672, - "fields": { - "parent": "a5e-ag_mirror-image", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1673, - "fields": { - "parent": "a5e-ag_mirror-image", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1674, - "fields": { - "parent": "a5e-ag_mirror-image", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1675, - "fields": { - "parent": "a5e-ag_mislead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1676, - "fields": { - "parent": "a5e-ag_misty-step", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1677, - "fields": { - "parent": "a5e-ag_modify-memory", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1679, - "fields": { - "parent": "a5e-ag_modify-memory", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1680, - "fields": { - "parent": "a5e-ag_modify-memory", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1681, - "fields": { - "parent": "a5e-ag_modify-memory", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1682, - "fields": { - "parent": "a5e-ag_modify-memory", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1683, - "fields": { - "parent": "a5e-ag_moonbeam", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1685, - "fields": { - "parent": "a5e-ag_moonbeam", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1686, - "fields": { - "parent": "a5e-ag_moonbeam", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1687, - "fields": { - "parent": "a5e-ag_moonbeam", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1688, - "fields": { - "parent": "a5e-ag_moonbeam", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1689, - "fields": { - "parent": "a5e-ag_moonbeam", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1690, - "fields": { - "parent": "a5e-ag_moonbeam", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1691, - "fields": { - "parent": "a5e-ag_moonbeam", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1692, - "fields": { - "parent": "a5e-ag_move-earth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1693, - "fields": { - "parent": "a5e-ag_nondetection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1694, - "fields": { - "parent": "a5e-ag_pass-without-trace", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1695, - "fields": { - "parent": "a5e-ag_passwall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1696, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1697, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1698, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1699, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1700, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1701, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1702, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1703, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1704, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1705, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1706, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1707, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1708, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1709, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1710, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1711, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1712, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1713, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1714, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1715, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1716, - "fields": { - "parent": "a5e-ag_pestilence", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1717, - "fields": { - "parent": "a5e-ag_phantasmal-killer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1719, - "fields": { - "parent": "a5e-ag_phantasmal-killer", - "type": "slot_level_5", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1720, - "fields": { - "parent": "a5e-ag_phantasmal-killer", - "type": "slot_level_6", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1721, - "fields": { - "parent": "a5e-ag_phantasmal-killer", - "type": "slot_level_7", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1722, - "fields": { - "parent": "a5e-ag_phantasmal-killer", - "type": "slot_level_8", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1723, - "fields": { - "parent": "a5e-ag_phantasmal-killer", - "type": "slot_level_9", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1724, - "fields": { - "parent": "a5e-ag_phantasmal-talons", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1725, - "fields": { - "parent": "a5e-ag_phantom-steed", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1726, - "fields": { - "parent": "a5e-ag_phantom-steed", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1727, - "fields": { - "parent": "a5e-ag_planar-ally", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1728, - "fields": { - "parent": "a5e-ag_planar-binding", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1730, - "fields": { - "parent": "a5e-ag_planar-binding", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "10 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1731, - "fields": { - "parent": "a5e-ag_planar-binding", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "30 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1732, - "fields": { - "parent": "a5e-ag_planar-binding", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "180 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1733, - "fields": { - "parent": "a5e-ag_planar-binding", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "A year and a day", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1734, - "fields": { - "parent": "a5e-ag_plane-shift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1735, - "fields": { - "parent": "a5e-ag_plant-growth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1736, - "fields": { - "parent": "a5e-ag_poison-skin", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1738, - "fields": { - "parent": "a5e-ag_poison-skin", - "type": "slot_level_4", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1739, - "fields": { - "parent": "a5e-ag_poison-skin", - "type": "slot_level_5", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1740, - "fields": { - "parent": "a5e-ag_poison-skin", - "type": "slot_level_6", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1741, - "fields": { - "parent": "a5e-ag_poison-skin", - "type": "slot_level_7", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1742, - "fields": { - "parent": "a5e-ag_poison-skin", - "type": "slot_level_8", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1743, - "fields": { - "parent": "a5e-ag_poison-skin", - "type": "slot_level_9", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1744, - "fields": { - "parent": "a5e-ag_polymorph", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1745, - "fields": { - "parent": "a5e-ag_power-word-kill", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1746, - "fields": { - "parent": "a5e-ag_power-word-stun", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1747, - "fields": { - "parent": "a5e-ag_prayer-of-healing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1749, - "fields": { - "parent": "a5e-ag_prayer-of-healing", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1750, - "fields": { - "parent": "a5e-ag_prayer-of-healing", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1751, - "fields": { - "parent": "a5e-ag_prayer-of-healing", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1752, - "fields": { - "parent": "a5e-ag_prayer-of-healing", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1753, - "fields": { - "parent": "a5e-ag_prayer-of-healing", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1754, - "fields": { - "parent": "a5e-ag_prayer-of-healing", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1755, - "fields": { - "parent": "a5e-ag_prayer-of-healing", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1756, - "fields": { - "parent": "a5e-ag_prestidigitation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1757, - "fields": { - "parent": "a5e-ag_prismatic-spray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1758, - "fields": { - "parent": "a5e-ag_prismatic-wall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1759, - "fields": { - "parent": "a5e-ag_private-sanctum", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1761, - "fields": { - "parent": "a5e-ag_private-sanctum", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1762, - "fields": { - "parent": "a5e-ag_private-sanctum", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1763, - "fields": { - "parent": "a5e-ag_private-sanctum", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1764, - "fields": { - "parent": "a5e-ag_private-sanctum", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1765, - "fields": { - "parent": "a5e-ag_private-sanctum", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1766, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1767, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1768, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1769, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1770, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1771, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1772, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1773, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1774, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1775, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1776, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1777, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1778, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1779, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1780, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1781, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1782, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1783, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1784, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1785, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1786, - "fields": { - "parent": "a5e-ag_produce-flame", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1787, - "fields": { - "parent": "a5e-ag_programmed-illusion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1788, - "fields": { - "parent": "a5e-ag_project-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1789, - "fields": { - "parent": "a5e-ag_protection-from-energy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1791, - "fields": { - "parent": "a5e-ag_protection-from-energy", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1792, - "fields": { - "parent": "a5e-ag_protection-from-energy", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1793, - "fields": { - "parent": "a5e-ag_protection-from-energy", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1794, - "fields": { - "parent": "a5e-ag_protection-from-energy", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1795, - "fields": { - "parent": "a5e-ag_protection-from-energy", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1796, - "fields": { - "parent": "a5e-ag_protection-from-energy", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1797, - "fields": { - "parent": "a5e-ag_protection-from-energy", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1798, - "fields": { - "parent": "a5e-ag_protection-from-evil-and-good", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1799, - "fields": { - "parent": "a5e-ag_protection-from-poison", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1800, - "fields": { - "parent": "a5e-ag_purify-food-and-drink", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1801, - "fields": { - "parent": "a5e-ag_purify-food-and-drink", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1803, - "fields": { - "parent": "a5e-ag_purify-food-and-drink", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1804, - "fields": { - "parent": "a5e-ag_purify-food-and-drink", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1805, - "fields": { - "parent": "a5e-ag_purify-food-and-drink", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1806, - "fields": { - "parent": "a5e-ag_purify-food-and-drink", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1807, - "fields": { - "parent": "a5e-ag_purify-food-and-drink", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1808, - "fields": { - "parent": "a5e-ag_purify-food-and-drink", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1809, - "fields": { - "parent": "a5e-ag_purify-food-and-drink", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1810, - "fields": { - "parent": "a5e-ag_purify-food-and-drink", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1811, - "fields": { - "parent": "a5e-ag_rage-of-the-meek", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1813, - "fields": { - "parent": "a5e-ag_rage-of-the-meek", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1814, - "fields": { - "parent": "a5e-ag_rage-of-the-meek", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1815, - "fields": { - "parent": "a5e-ag_rage-of-the-meek", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1816, - "fields": { - "parent": "a5e-ag_rage-of-the-meek", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1817, - "fields": { - "parent": "a5e-ag_rage-of-the-meek", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1818, - "fields": { - "parent": "a5e-ag_raise-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1819, - "fields": { - "parent": "a5e-ag_raise-hell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1820, - "fields": { - "parent": "a5e-ag_ray-of-enfeeblement", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1821, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1822, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1823, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1824, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1825, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1826, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1827, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1828, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1829, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1830, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1831, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1832, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1833, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1834, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1835, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1836, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1837, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1838, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1839, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1840, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1841, - "fields": { - "parent": "a5e-ag_ray-of-frost", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1842, - "fields": { - "parent": "a5e-ag_regenerate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1843, - "fields": { - "parent": "a5e-ag_reincarnate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1844, - "fields": { - "parent": "a5e-ag_remove-curse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1846, - "fields": { - "parent": "a5e-ag_remove-curse", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1847, - "fields": { - "parent": "a5e-ag_remove-curse", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1848, - "fields": { - "parent": "a5e-ag_remove-curse", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1849, - "fields": { - "parent": "a5e-ag_remove-curse", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1850, - "fields": { - "parent": "a5e-ag_remove-curse", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1851, - "fields": { - "parent": "a5e-ag_remove-curse", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1852, - "fields": { - "parent": "a5e-ag_resilient-sphere", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1853, - "fields": { - "parent": "a5e-ag_resistance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1854, - "fields": { - "parent": "a5e-ag_resurrection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1855, - "fields": { - "parent": "a5e-ag_reverse-gravity", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1856, - "fields": { - "parent": "a5e-ag_revivify", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1857, - "fields": { - "parent": "a5e-ag_rope-trick", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1858, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1859, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1860, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1861, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1862, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1863, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1864, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1865, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1866, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1867, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1868, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1869, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1870, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1871, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1872, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1873, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1874, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1875, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1876, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1877, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1878, - "fields": { - "parent": "a5e-ag_sacred-flame", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1879, - "fields": { - "parent": "a5e-ag_sanctuary", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1880, - "fields": { - "parent": "a5e-ag_scorching-ray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1882, - "fields": { - "parent": "a5e-ag_scorching-ray", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1883, - "fields": { - "parent": "a5e-ag_scorching-ray", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1884, - "fields": { - "parent": "a5e-ag_scorching-ray", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1885, - "fields": { - "parent": "a5e-ag_scorching-ray", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1886, - "fields": { - "parent": "a5e-ag_scorching-ray", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1887, - "fields": { - "parent": "a5e-ag_scorching-ray", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1888, - "fields": { - "parent": "a5e-ag_scorching-ray", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1889, - "fields": { - "parent": "a5e-ag_scrying", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1890, - "fields": { - "parent": "a5e-ag_searing-equation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1892, - "fields": { - "parent": "a5e-ag_searing-equation", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1893, - "fields": { - "parent": "a5e-ag_searing-equation", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1894, - "fields": { - "parent": "a5e-ag_searing-equation", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1895, - "fields": { - "parent": "a5e-ag_searing-equation", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1896, - "fields": { - "parent": "a5e-ag_searing-equation", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1897, - "fields": { - "parent": "a5e-ag_searing-equation", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1898, - "fields": { - "parent": "a5e-ag_searing-equation", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1899, - "fields": { - "parent": "a5e-ag_searing-equation", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1900, - "fields": { - "parent": "a5e-ag_secret-chest", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1901, - "fields": { - "parent": "a5e-ag_see-invisibility", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1902, - "fields": { - "parent": "a5e-ag_seed-bomb", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1904, - "fields": { - "parent": "a5e-ag_seed-bomb", - "type": "slot_level_3", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1905, - "fields": { - "parent": "a5e-ag_seed-bomb", - "type": "slot_level_4", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1906, - "fields": { - "parent": "a5e-ag_seed-bomb", - "type": "slot_level_5", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1907, - "fields": { - "parent": "a5e-ag_seed-bomb", - "type": "slot_level_6", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1908, - "fields": { - "parent": "a5e-ag_seed-bomb", - "type": "slot_level_7", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1909, - "fields": { - "parent": "a5e-ag_seed-bomb", - "type": "slot_level_8", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1910, - "fields": { - "parent": "a5e-ag_seed-bomb", - "type": "slot_level_9", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1911, - "fields": { - "parent": "a5e-ag_seeming", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1912, - "fields": { - "parent": "a5e-ag_sending", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1913, - "fields": { - "parent": "a5e-ag_sequester", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1914, - "fields": { - "parent": "a5e-ag_shapechange", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1915, - "fields": { - "parent": "a5e-ag_shatter", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1917, - "fields": { - "parent": "a5e-ag_shatter", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1918, - "fields": { - "parent": "a5e-ag_shatter", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1919, - "fields": { - "parent": "a5e-ag_shatter", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1920, - "fields": { - "parent": "a5e-ag_shatter", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1921, - "fields": { - "parent": "a5e-ag_shatter", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1922, - "fields": { - "parent": "a5e-ag_shatter", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1923, - "fields": { - "parent": "a5e-ag_shatter", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1924, - "fields": { - "parent": "a5e-ag_shattering-barrage", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1926, - "fields": { - "parent": "a5e-ag_shattering-barrage", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1927, - "fields": { - "parent": "a5e-ag_shattering-barrage", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1928, - "fields": { - "parent": "a5e-ag_shattering-barrage", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1929, - "fields": { - "parent": "a5e-ag_shattering-barrage", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1930, - "fields": { - "parent": "a5e-ag_shattering-barrage", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1931, - "fields": { - "parent": "a5e-ag_shattering-barrage", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1932, - "fields": { - "parent": "a5e-ag_shattering-barrage", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1933, - "fields": { - "parent": "a5e-ag_shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1934, - "fields": { - "parent": "a5e-ag_shield-of-faith", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1936, - "fields": { - "parent": "a5e-ag_shield-of-faith", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1937, - "fields": { - "parent": "a5e-ag_shield-of-faith", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1938, - "fields": { - "parent": "a5e-ag_shield-of-faith", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1939, - "fields": { - "parent": "a5e-ag_shield-of-faith", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1940, - "fields": { - "parent": "a5e-ag_shield-of-faith", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1941, - "fields": { - "parent": "a5e-ag_shield-of-faith", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1942, - "fields": { - "parent": "a5e-ag_shield-of-faith", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1943, - "fields": { - "parent": "a5e-ag_shield-of-faith", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1944, - "fields": { - "parent": "a5e-ag_shillelagh", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1945, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1946, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1947, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1948, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1949, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1950, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1951, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1952, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1953, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1954, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1955, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1956, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1957, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1958, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1959, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1960, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1961, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1962, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1963, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1964, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1965, - "fields": { - "parent": "a5e-ag_shocking-grasp", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1966, - "fields": { - "parent": "a5e-ag_silence", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1967, - "fields": { - "parent": "a5e-ag_silence", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1968, - "fields": { - "parent": "a5e-ag_silent-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1969, - "fields": { - "parent": "a5e-ag_simulacrum", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1970, - "fields": { - "parent": "a5e-ag_sleep", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1972, - "fields": { - "parent": "a5e-ag_sleep", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1973, - "fields": { - "parent": "a5e-ag_sleep", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1974, - "fields": { - "parent": "a5e-ag_sleep", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1975, - "fields": { - "parent": "a5e-ag_sleep", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1976, - "fields": { - "parent": "a5e-ag_sleep", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1977, - "fields": { - "parent": "a5e-ag_sleep", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1978, - "fields": { - "parent": "a5e-ag_sleep", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1979, - "fields": { - "parent": "a5e-ag_sleep", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1980, - "fields": { - "parent": "a5e-ag_sleet-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1981, - "fields": { - "parent": "a5e-ag_slow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1982, - "fields": { - "parent": "a5e-ag_soulwrought-fists", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1983, - "fields": { - "parent": "a5e-ag_spare-the-dying", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1984, - "fields": { - "parent": "a5e-ag_speak-with-animals", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1985, - "fields": { - "parent": "a5e-ag_speak-with-animals", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1986, - "fields": { - "parent": "a5e-ag_speak-with-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1987, - "fields": { - "parent": "a5e-ag_speak-with-plants", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1988, - "fields": { - "parent": "a5e-ag_spider-climb", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1990, - "fields": { - "parent": "a5e-ag_spider-climb", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1991, - "fields": { - "parent": "a5e-ag_spider-climb", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1992, - "fields": { - "parent": "a5e-ag_spider-climb", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1993, - "fields": { - "parent": "a5e-ag_spider-climb", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1994, - "fields": { - "parent": "a5e-ag_spider-climb", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1995, - "fields": { - "parent": "a5e-ag_spider-climb", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1996, - "fields": { - "parent": "a5e-ag_spider-climb", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1997, - "fields": { - "parent": "a5e-ag_spike-growth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 1998, - "fields": { - "parent": "a5e-ag_spirit-guardians", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2000, - "fields": { - "parent": "a5e-ag_spirit-guardians", - "type": "slot_level_4", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2001, - "fields": { - "parent": "a5e-ag_spirit-guardians", - "type": "slot_level_5", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2002, - "fields": { - "parent": "a5e-ag_spirit-guardians", - "type": "slot_level_6", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2003, - "fields": { - "parent": "a5e-ag_spirit-guardians", - "type": "slot_level_7", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2004, - "fields": { - "parent": "a5e-ag_spirit-guardians", - "type": "slot_level_8", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2005, - "fields": { - "parent": "a5e-ag_spirit-guardians", - "type": "slot_level_9", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2006, - "fields": { - "parent": "a5e-ag_spiritual-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2008, - "fields": { - "parent": "a5e-ag_spiritual-weapon", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2009, - "fields": { - "parent": "a5e-ag_spiritual-weapon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2010, - "fields": { - "parent": "a5e-ag_spiritual-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2011, - "fields": { - "parent": "a5e-ag_spiritual-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2012, - "fields": { - "parent": "a5e-ag_spiritual-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2013, - "fields": { - "parent": "a5e-ag_spiritual-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2014, - "fields": { - "parent": "a5e-ag_spiritual-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2015, - "fields": { - "parent": "a5e-ag_sporesight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2016, - "fields": { - "parent": "a5e-ag_stinking-cloud", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2018, - "fields": { - "parent": "a5e-ag_stinking-cloud", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2019, - "fields": { - "parent": "a5e-ag_stinking-cloud", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2020, - "fields": { - "parent": "a5e-ag_stinking-cloud", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2021, - "fields": { - "parent": "a5e-ag_stinking-cloud", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2022, - "fields": { - "parent": "a5e-ag_stinking-cloud", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2023, - "fields": { - "parent": "a5e-ag_stinking-cloud", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2024, - "fields": { - "parent": "a5e-ag_stone-shape", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2026, - "fields": { - "parent": "a5e-ag_stone-shape", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2027, - "fields": { - "parent": "a5e-ag_stone-shape", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2028, - "fields": { - "parent": "a5e-ag_stone-shape", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2029, - "fields": { - "parent": "a5e-ag_stone-shape", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2030, - "fields": { - "parent": "a5e-ag_stone-shape", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2031, - "fields": { - "parent": "a5e-ag_stoneskin", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2033, - "fields": { - "parent": "a5e-ag_stoneskin", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2034, - "fields": { - "parent": "a5e-ag_stoneskin", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2035, - "fields": { - "parent": "a5e-ag_stoneskin", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2036, - "fields": { - "parent": "a5e-ag_stoneskin", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2037, - "fields": { - "parent": "a5e-ag_stoneskin", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2038, - "fields": { - "parent": "a5e-ag_storm-kick", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2040, - "fields": { - "parent": "a5e-ag_storm-kick", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2041, - "fields": { - "parent": "a5e-ag_storm-kick", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2042, - "fields": { - "parent": "a5e-ag_storm-kick", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2043, - "fields": { - "parent": "a5e-ag_storm-kick", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2044, - "fields": { - "parent": "a5e-ag_storm-of-vengeance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2045, - "fields": { - "parent": "a5e-ag_suggestion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2047, - "fields": { - "parent": "a5e-ag_suggestion", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2048, - "fields": { - "parent": "a5e-ag_suggestion", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2049, - "fields": { - "parent": "a5e-ag_suggestion", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "7 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2050, - "fields": { - "parent": "a5e-ag_suggestion", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "7 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2051, - "fields": { - "parent": "a5e-ag_suggestion", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2052, - "fields": { - "parent": "a5e-ag_suggestion", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2053, - "fields": { - "parent": "a5e-ag_suggestion", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2054, - "fields": { - "parent": "a5e-ag_sunbeam", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2056, - "fields": { - "parent": "a5e-ag_sunbeam", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2057, - "fields": { - "parent": "a5e-ag_sunbeam", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2058, - "fields": { - "parent": "a5e-ag_sunbeam", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2059, - "fields": { - "parent": "a5e-ag_sunburst", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2061, - "fields": { - "parent": "a5e-ag_sunburst", - "type": "slot_level_9", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2062, - "fields": { - "parent": "a5e-ag_symbol", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2063, - "fields": { - "parent": "a5e-ag_tearful-sonnet", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2065, - "fields": { - "parent": "a5e-ag_tearful-sonnet", - "type": "slot_level_5", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2066, - "fields": { - "parent": "a5e-ag_tearful-sonnet", - "type": "slot_level_6", - "damage_roll": "6d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2067, - "fields": { - "parent": "a5e-ag_tearful-sonnet", - "type": "slot_level_7", - "damage_roll": "8d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2068, - "fields": { - "parent": "a5e-ag_tearful-sonnet", - "type": "slot_level_8", - "damage_roll": "10d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2069, - "fields": { - "parent": "a5e-ag_tearful-sonnet", - "type": "slot_level_9", - "damage_roll": "12d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2070, - "fields": { - "parent": "a5e-ag_telekinesis", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2072, - "fields": { - "parent": "a5e-ag_telekinesis", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2073, - "fields": { - "parent": "a5e-ag_telekinesis", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2074, - "fields": { - "parent": "a5e-ag_telekinesis", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2075, - "fields": { - "parent": "a5e-ag_telekinesis", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2076, - "fields": { - "parent": "a5e-ag_telepathic-bond", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2077, - "fields": { - "parent": "a5e-ag_telepathic-bond", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2079, - "fields": { - "parent": "a5e-ag_telepathic-bond", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1d4+1 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2080, - "fields": { - "parent": "a5e-ag_telepathic-bond", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "2d4+1 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2081, - "fields": { - "parent": "a5e-ag_telepathic-bond", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "3d4+1 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2082, - "fields": { - "parent": "a5e-ag_telepathic-bond", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "4d4+1 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2083, - "fields": { - "parent": "a5e-ag_teleport", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2084, - "fields": { - "parent": "a5e-ag_teleport", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2085, - "fields": { - "parent": "a5e-ag_teleportation-circle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2086, - "fields": { - "parent": "a5e-ag_thaumaturgy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2087, - "fields": { - "parent": "a5e-ag_thunderwave", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2089, - "fields": { - "parent": "a5e-ag_thunderwave", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2090, - "fields": { - "parent": "a5e-ag_thunderwave", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2091, - "fields": { - "parent": "a5e-ag_thunderwave", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2092, - "fields": { - "parent": "a5e-ag_thunderwave", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2093, - "fields": { - "parent": "a5e-ag_thunderwave", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2094, - "fields": { - "parent": "a5e-ag_thunderwave", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2095, - "fields": { - "parent": "a5e-ag_thunderwave", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2096, - "fields": { - "parent": "a5e-ag_thunderwave", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2097, - "fields": { - "parent": "a5e-ag_time-stop", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2098, - "fields": { - "parent": "a5e-ag_tiny-hut", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2099, - "fields": { - "parent": "a5e-ag_tiny-hut", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2100, - "fields": { - "parent": "a5e-ag_tongues", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2101, - "fields": { - "parent": "a5e-ag_transport-via-plants", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2102, - "fields": { - "parent": "a5e-ag_travelers-ward", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2103, - "fields": { - "parent": "a5e-ag_tree-stride", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2105, - "fields": { - "parent": "a5e-ag_tree-stride", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2106, - "fields": { - "parent": "a5e-ag_tree-stride", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2107, - "fields": { - "parent": "a5e-ag_tree-stride", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2108, - "fields": { - "parent": "a5e-ag_tree-stride", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2109, - "fields": { - "parent": "a5e-ag_true-polymorph", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2110, - "fields": { - "parent": "a5e-ag_true-resurrection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2111, - "fields": { - "parent": "a5e-ag_true-seeing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2112, - "fields": { - "parent": "a5e-ag_true-strike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2113, - "fields": { - "parent": "a5e-ag_unholy-star", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2114, - "fields": { - "parent": "a5e-ag_unseen-servant", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2115, - "fields": { - "parent": "a5e-ag_unseen-servant", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2117, - "fields": { - "parent": "a5e-ag_unseen-servant", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2118, - "fields": { - "parent": "a5e-ag_unseen-servant", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2119, - "fields": { - "parent": "a5e-ag_unseen-servant", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2120, - "fields": { - "parent": "a5e-ag_unseen-servant", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2121, - "fields": { - "parent": "a5e-ag_unseen-servant", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2122, - "fields": { - "parent": "a5e-ag_unseen-servant", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2123, - "fields": { - "parent": "a5e-ag_unseen-servant", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2124, - "fields": { - "parent": "a5e-ag_unseen-servant", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2125, - "fields": { - "parent": "a5e-ag_vampiric-touch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2127, - "fields": { - "parent": "a5e-ag_vampiric-touch", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2128, - "fields": { - "parent": "a5e-ag_vampiric-touch", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2129, - "fields": { - "parent": "a5e-ag_vampiric-touch", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2130, - "fields": { - "parent": "a5e-ag_vampiric-touch", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2131, - "fields": { - "parent": "a5e-ag_vampiric-touch", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2132, - "fields": { - "parent": "a5e-ag_vampiric-touch", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2133, - "fields": { - "parent": "a5e-ag_venomous-succor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2135, - "fields": { - "parent": "a5e-ag_venomous-succor", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2136, - "fields": { - "parent": "a5e-ag_venomous-succor", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2137, - "fields": { - "parent": "a5e-ag_venomous-succor", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2138, - "fields": { - "parent": "a5e-ag_venomous-succor", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2139, - "fields": { - "parent": "a5e-ag_venomous-succor", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2140, - "fields": { - "parent": "a5e-ag_venomous-succor", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2141, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2142, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_1", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2143, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_2", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2144, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_3", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2145, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_4", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2146, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_5", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2147, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_6", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2148, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_7", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2149, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_8", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2150, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_9", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2151, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_10", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2152, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_11", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2153, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_12", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2154, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_13", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2155, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_14", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2156, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_15", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2157, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_16", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2158, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_17", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2159, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_18", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2160, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_19", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2161, - "fields": { - "parent": "a5e-ag_vicious-mockery", - "type": "player_level_20", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2162, - "fields": { - "parent": "a5e-ag_wall-of-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2164, - "fields": { - "parent": "a5e-ag_wall-of-fire", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2165, - "fields": { - "parent": "a5e-ag_wall-of-fire", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2166, - "fields": { - "parent": "a5e-ag_wall-of-fire", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2167, - "fields": { - "parent": "a5e-ag_wall-of-fire", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2168, - "fields": { - "parent": "a5e-ag_wall-of-fire", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2169, - "fields": { - "parent": "a5e-ag_wall-of-flesh", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2171, - "fields": { - "parent": "a5e-ag_wall-of-flesh", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2172, - "fields": { - "parent": "a5e-ag_wall-of-flesh", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2173, - "fields": { - "parent": "a5e-ag_wall-of-flesh", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2174, - "fields": { - "parent": "a5e-ag_wall-of-force", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2175, - "fields": { - "parent": "a5e-ag_wall-of-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2177, - "fields": { - "parent": "a5e-ag_wall-of-ice", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2178, - "fields": { - "parent": "a5e-ag_wall-of-ice", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2179, - "fields": { - "parent": "a5e-ag_wall-of-ice", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2180, - "fields": { - "parent": "a5e-ag_wall-of-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2181, - "fields": { - "parent": "a5e-ag_wall-of-thorns", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2183, - "fields": { - "parent": "a5e-ag_wall-of-thorns", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2184, - "fields": { - "parent": "a5e-ag_wall-of-thorns", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2185, - "fields": { - "parent": "a5e-ag_wall-of-thorns", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2186, - "fields": { - "parent": "a5e-ag_warding-bond", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2188, - "fields": { - "parent": "a5e-ag_warding-bond", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2189, - "fields": { - "parent": "a5e-ag_warding-bond", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2190, - "fields": { - "parent": "a5e-ag_warding-bond", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2191, - "fields": { - "parent": "a5e-ag_warding-bond", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2192, - "fields": { - "parent": "a5e-ag_warding-bond", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2193, - "fields": { - "parent": "a5e-ag_warding-bond", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2194, - "fields": { - "parent": "a5e-ag_warding-bond", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2195, - "fields": { - "parent": "a5e-ag_warriors-instincts", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2197, - "fields": { - "parent": "a5e-ag_warriors-instincts", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2198, - "fields": { - "parent": "a5e-ag_warriors-instincts", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2199, - "fields": { - "parent": "a5e-ag_warriors-instincts", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2200, - "fields": { - "parent": "a5e-ag_warriors-instincts", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2201, - "fields": { - "parent": "a5e-ag_water-breathing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2202, - "fields": { - "parent": "a5e-ag_water-breathing", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2203, - "fields": { - "parent": "a5e-ag_water-walk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2205, - "fields": { - "parent": "a5e-ag_water-walk", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2206, - "fields": { - "parent": "a5e-ag_water-walk", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2207, - "fields": { - "parent": "a5e-ag_water-walk", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2208, - "fields": { - "parent": "a5e-ag_water-walk", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2209, - "fields": { - "parent": "a5e-ag_water-walk", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2210, - "fields": { - "parent": "a5e-ag_water-walk", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2211, - "fields": { - "parent": "a5e-ag_web", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2213, - "fields": { - "parent": "a5e-ag_web", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2214, - "fields": { - "parent": "a5e-ag_web", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2215, - "fields": { - "parent": "a5e-ag_web", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2216, - "fields": { - "parent": "a5e-ag_web", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2217, - "fields": { - "parent": "a5e-ag_web", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2218, - "fields": { - "parent": "a5e-ag_web", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2219, - "fields": { - "parent": "a5e-ag_web", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2220, - "fields": { - "parent": "a5e-ag_weird", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2221, - "fields": { - "parent": "a5e-ag_whirlwind-kick", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2223, - "fields": { - "parent": "a5e-ag_whirlwind-kick", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2224, - "fields": { - "parent": "a5e-ag_whirlwind-kick", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2225, - "fields": { - "parent": "a5e-ag_whirlwind-kick", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2226, - "fields": { - "parent": "a5e-ag_whirlwind-kick", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2227, - "fields": { - "parent": "a5e-ag_whirlwind-kick", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2228, - "fields": { - "parent": "a5e-ag_whirlwind-kick", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2229, - "fields": { - "parent": "a5e-ag_wind-up", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2230, - "fields": { - "parent": "a5e-ag_wind-walk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2231, - "fields": { - "parent": "a5e-ag_wind-wall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2233, - "fields": { - "parent": "a5e-ag_wind-wall", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2234, - "fields": { - "parent": "a5e-ag_wind-wall", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2235, - "fields": { - "parent": "a5e-ag_wind-wall", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2236, - "fields": { - "parent": "a5e-ag_wind-wall", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2237, - "fields": { - "parent": "a5e-ag_wind-wall", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2238, - "fields": { - "parent": "a5e-ag_wind-wall", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2239, - "fields": { - "parent": "a5e-ag_wish", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2240, - "fields": { - "parent": "a5e-ag_word-of-recall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2241, - "fields": { - "parent": "a5e-ag_wormway", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2242, - "fields": { - "parent": "a5e-ag_wormway", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2243, - "fields": { - "parent": "a5e-ag_writhing-transformation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2244, - "fields": { - "parent": "a5e-ag_writhing-transformation", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2245, - "fields": { - "parent": "a5e-ag_zone-of-truth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - } -] \ No newline at end of file +{ + "model": "api_v2.spellcastingoption", + "pk": 403, + "fields": { + "parent": "a5e-ag_accelerando", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 405, + "fields": { + "parent": "a5e-ag_accelerando", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 406, + "fields": { + "parent": "a5e-ag_accelerando", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 407, + "fields": { + "parent": "a5e-ag_accelerando", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 408, + "fields": { + "parent": "a5e-ag_accelerando", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 409, + "fields": { + "parent": "a5e-ag_accelerando", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 410, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 412, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 413, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 414, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 415, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 416, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 417, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 418, + "fields": { + "parent": "a5e-ag_acid-arrow", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 419, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 420, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 421, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 422, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 423, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 424, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_5", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 425, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_6", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 426, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_7", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 427, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_8", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 428, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_9", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 429, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_10", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 430, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_11", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 431, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_12", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 432, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_13", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 433, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_14", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 434, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_15", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 435, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_16", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 436, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_17", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 437, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_18", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 438, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_19", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 439, + "fields": { + "parent": "a5e-ag_acid-splash", + "type": "player_level_20", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 440, + "fields": { + "parent": "a5e-ag_aid", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 442, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 443, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 444, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 445, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 446, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 447, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 448, + "fields": { + "parent": "a5e-ag_aid", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 449, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 451, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "60 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 452, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "90 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 453, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "120 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 454, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "150 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 455, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "180 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 456, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "210 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 457, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "240 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 458, + "fields": { + "parent": "a5e-ag_air-wave", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "270 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 459, + "fields": { + "parent": "a5e-ag_alarm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 460, + "fields": { + "parent": "a5e-ag_alarm", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 462, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": "600 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 463, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": "600 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 464, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": "600 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 465, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": "600 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 466, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": "600 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 467, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": "600 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 468, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": "600 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 469, + "fields": { + "parent": "a5e-ag_alarm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": "600 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 470, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 472, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 473, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 474, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 475, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 476, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 477, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 478, + "fields": { + "parent": "a5e-ag_alter-self", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 479, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 480, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 481, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 482, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 483, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 484, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 485, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 486, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 487, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 488, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 489, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 490, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 491, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 492, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 493, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 494, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 495, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 496, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 497, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 498, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 499, + "fields": { + "parent": "a5e-ag_altered-strike", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 500, + "fields": { + "parent": "a5e-ag_angel-paradox", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 502, + "fields": { + "parent": "a5e-ag_angel-paradox", + "type": "slot_level_8", + "damage_roll": "45", + "target_count": null, + "duration": "1 year", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 503, + "fields": { + "parent": "a5e-ag_angel-paradox", + "type": "slot_level_9", + "damage_roll": "50", + "target_count": null, + "duration": "Until dispelled", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 504, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 506, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 507, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 508, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 509, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 510, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 511, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 512, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 513, + "fields": { + "parent": "a5e-ag_animal-friendship", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 514, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 515, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 517, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "3 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 518, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "5 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 519, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "7 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 520, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "9 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 521, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "11 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 522, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "13 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 523, + "fields": { + "parent": "a5e-ag_animal-messenger", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "15 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 524, + "fields": { + "parent": "a5e-ag_animal-shapes", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 525, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 527, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 528, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 529, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 530, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 531, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 532, + "fields": { + "parent": "a5e-ag_animate-dead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 533, + "fields": { + "parent": "a5e-ag_animate-objects", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 535, + "fields": { + "parent": "a5e-ag_animate-objects", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 536, + "fields": { + "parent": "a5e-ag_animate-objects", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 537, + "fields": { + "parent": "a5e-ag_animate-objects", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 538, + "fields": { + "parent": "a5e-ag_animate-objects", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 539, + "fields": { + "parent": "a5e-ag_antilife-shell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 540, + "fields": { + "parent": "a5e-ag_antimagic-field", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 541, + "fields": { + "parent": "a5e-ag_antipathysympathy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 542, + "fields": { + "parent": "a5e-ag_arcane-eye", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 543, + "fields": { + "parent": "a5e-ag_arcane-hand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 545, + "fields": { + "parent": "a5e-ag_arcane-hand", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 546, + "fields": { + "parent": "a5e-ag_arcane-hand", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 547, + "fields": { + "parent": "a5e-ag_arcane-hand", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 548, + "fields": { + "parent": "a5e-ag_arcane-hand", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 549, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 551, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 552, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 553, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 554, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 555, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 556, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 557, + "fields": { + "parent": "a5e-ag_arcane-lock", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 558, + "fields": { + "parent": "a5e-ag_arcane-muscles", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 559, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 561, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 562, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 563, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 564, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 565, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 566, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 567, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 568, + "fields": { + "parent": "a5e-ag_arcane-riposte", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 569, + "fields": { + "parent": "a5e-ag_arcane-sword", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 570, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 572, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 573, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 574, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 575, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 576, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 577, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 578, + "fields": { + "parent": "a5e-ag_arcanists-magic-aura", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 579, + "fields": { + "parent": "a5e-ag_aspect-of-the-moon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 580, + "fields": { + "parent": "a5e-ag_astral-projection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 581, + "fields": { + "parent": "a5e-ag_augury", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 582, + "fields": { + "parent": "a5e-ag_awaken", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 584, + "fields": { + "parent": "a5e-ag_awaken", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 585, + "fields": { + "parent": "a5e-ag_awaken", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 586, + "fields": { + "parent": "a5e-ag_awaken", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 587, + "fields": { + "parent": "a5e-ag_awaken", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 588, + "fields": { + "parent": "a5e-ag_bane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 590, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 591, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 592, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 593, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 594, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 595, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 596, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 597, + "fields": { + "parent": "a5e-ag_bane", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 598, + "fields": { + "parent": "a5e-ag_banishment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 600, + "fields": { + "parent": "a5e-ag_banishment", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "1d4+3 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 601, + "fields": { + "parent": "a5e-ag_banishment", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1d4+4 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 602, + "fields": { + "parent": "a5e-ag_banishment", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1d4+5 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 603, + "fields": { + "parent": "a5e-ag_banishment", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1d4+6 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 604, + "fields": { + "parent": "a5e-ag_banishment", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1d4+7 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 605, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 607, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 608, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 609, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 610, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 611, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 612, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 613, + "fields": { + "parent": "a5e-ag_barkskin", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 614, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 616, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 617, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 618, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 619, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 620, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 621, + "fields": { + "parent": "a5e-ag_battlecry-ballad", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 622, + "fields": { + "parent": "a5e-ag_beacon-of-hope", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 623, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 625, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 626, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 627, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 628, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 629, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 630, + "fields": { + "parent": "a5e-ag_bestow-curse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 631, + "fields": { + "parent": "a5e-ag_black-tentacles", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 633, + "fields": { + "parent": "a5e-ag_black-tentacles", + "type": "slot_level_5", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 634, + "fields": { + "parent": "a5e-ag_black-tentacles", + "type": "slot_level_6", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 635, + "fields": { + "parent": "a5e-ag_black-tentacles", + "type": "slot_level_7", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 636, + "fields": { + "parent": "a5e-ag_black-tentacles", + "type": "slot_level_8", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 637, + "fields": { + "parent": "a5e-ag_black-tentacles", + "type": "slot_level_9", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 638, + "fields": { + "parent": "a5e-ag_blade-barrier", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 640, + "fields": { + "parent": "a5e-ag_blade-barrier", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 641, + "fields": { + "parent": "a5e-ag_blade-barrier", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 642, + "fields": { + "parent": "a5e-ag_blade-barrier", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 643, + "fields": { + "parent": "a5e-ag_bless", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 645, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 646, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 647, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 648, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 649, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 650, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 651, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 652, + "fields": { + "parent": "a5e-ag_bless", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 11, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 653, + "fields": { + "parent": "a5e-ag_blight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 655, + "fields": { + "parent": "a5e-ag_blight", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 656, + "fields": { + "parent": "a5e-ag_blight", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 657, + "fields": { + "parent": "a5e-ag_blight", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 658, + "fields": { + "parent": "a5e-ag_blight", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 659, + "fields": { + "parent": "a5e-ag_blight", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 660, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 662, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 663, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 664, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 665, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 666, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 667, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 668, + "fields": { + "parent": "a5e-ag_blindnessdeafness", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 669, + "fields": { + "parent": "a5e-ag_blink", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 670, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 671, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 673, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "26 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 674, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "39 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 675, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "52 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 676, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "65 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 677, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "78 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 678, + "fields": { + "parent": "a5e-ag_blood-writ-bargain", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "91 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 679, + "fields": { + "parent": "a5e-ag_blur", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 681, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 682, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 683, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 684, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 685, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 686, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 687, + "fields": { + "parent": "a5e-ag_blur", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 688, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 690, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_2", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 691, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_3", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 692, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_4", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 693, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_5", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 694, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_6", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 695, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_7", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 696, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_8", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 697, + "fields": { + "parent": "a5e-ag_burning-hands", + "type": "slot_level_9", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 698, + "fields": { + "parent": "a5e-ag_calculate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 699, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 701, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 702, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 703, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 704, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 705, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 706, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 707, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 708, + "fields": { + "parent": "a5e-ag_calculated-retribution", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 709, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 711, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 712, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 713, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 714, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 715, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 716, + "fields": { + "parent": "a5e-ag_call-lightning", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 717, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 719, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 720, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 721, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 722, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 723, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 724, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 725, + "fields": { + "parent": "a5e-ag_calm-emotions", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 726, + "fields": { + "parent": "a5e-ag_ceremony", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 727, + "fields": { + "parent": "a5e-ag_ceremony", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 728, + "fields": { + "parent": "a5e-ag_chain-lightning", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 730, + "fields": { + "parent": "a5e-ag_chain-lightning", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 731, + "fields": { + "parent": "a5e-ag_chain-lightning", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 732, + "fields": { + "parent": "a5e-ag_chain-lightning", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 733, + "fields": { + "parent": "a5e-ag_charm-monster", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 735, + "fields": { + "parent": "a5e-ag_charm-monster", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 736, + "fields": { + "parent": "a5e-ag_charm-monster", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 737, + "fields": { + "parent": "a5e-ag_charm-monster", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 738, + "fields": { + "parent": "a5e-ag_charm-monster", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 739, + "fields": { + "parent": "a5e-ag_charm-monster", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 740, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 742, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 743, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 744, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 745, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 746, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 747, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 748, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 749, + "fields": { + "parent": "a5e-ag_charm-person", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 750, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 751, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_1", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 752, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_2", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 753, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_3", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 754, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_4", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 755, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 756, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 757, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 758, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 759, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 760, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 761, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 762, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 763, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 764, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 765, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 766, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 767, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 768, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 769, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 770, + "fields": { + "parent": "a5e-ag_chill-touch", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 771, + "fields": { + "parent": "a5e-ag_circle-of-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 773, + "fields": { + "parent": "a5e-ag_circle-of-death", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 774, + "fields": { + "parent": "a5e-ag_circle-of-death", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 775, + "fields": { + "parent": "a5e-ag_circle-of-death", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 776, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 777, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 778, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 779, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 780, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 781, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 782, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 783, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 784, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 785, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 786, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 787, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 788, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 789, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 790, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 791, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 792, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 793, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 794, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 795, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 796, + "fields": { + "parent": "a5e-ag_circular-breathing", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 797, + "fields": { + "parent": "a5e-ag_clairvoyance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 798, + "fields": { + "parent": "a5e-ag_clone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 799, + "fields": { + "parent": "a5e-ag_cloudkill", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 801, + "fields": { + "parent": "a5e-ag_cloudkill", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 802, + "fields": { + "parent": "a5e-ag_cloudkill", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 803, + "fields": { + "parent": "a5e-ag_cloudkill", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 804, + "fields": { + "parent": "a5e-ag_cloudkill", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 805, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 807, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 808, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 809, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 810, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 811, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 812, + "fields": { + "parent": "a5e-ag_cobras-spit", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 813, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 815, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 816, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 817, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 818, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 819, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 820, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 821, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 822, + "fields": { + "parent": "a5e-ag_color-spray", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 823, + "fields": { + "parent": "a5e-ag_command", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 825, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 826, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 827, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 828, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 829, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 830, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 831, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 832, + "fields": { + "parent": "a5e-ag_command", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 833, + "fields": { + "parent": "a5e-ag_commune", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 834, + "fields": { + "parent": "a5e-ag_commune", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 835, + "fields": { + "parent": "a5e-ag_commune-with-nature", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 836, + "fields": { + "parent": "a5e-ag_commune-with-nature", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 837, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 838, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 840, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 841, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 842, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 843, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 844, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 845, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 846, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 847, + "fields": { + "parent": "a5e-ag_comprehend-languages", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 848, + "fields": { + "parent": "a5e-ag_cone-of-cold", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 850, + "fields": { + "parent": "a5e-ag_cone-of-cold", + "type": "slot_level_6", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 851, + "fields": { + "parent": "a5e-ag_cone-of-cold", + "type": "slot_level_7", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 852, + "fields": { + "parent": "a5e-ag_cone-of-cold", + "type": "slot_level_8", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 853, + "fields": { + "parent": "a5e-ag_cone-of-cold", + "type": "slot_level_9", + "damage_roll": "12d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 854, + "fields": { + "parent": "a5e-ag_confusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 856, + "fields": { + "parent": "a5e-ag_confusion", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 857, + "fields": { + "parent": "a5e-ag_confusion", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 858, + "fields": { + "parent": "a5e-ag_confusion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 859, + "fields": { + "parent": "a5e-ag_confusion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 860, + "fields": { + "parent": "a5e-ag_confusion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 861, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 863, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 864, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 865, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 866, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 867, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 868, + "fields": { + "parent": "a5e-ag_conjure-animals", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 869, + "fields": { + "parent": "a5e-ag_conjure-celestial", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 871, + "fields": { + "parent": "a5e-ag_conjure-celestial", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 872, + "fields": { + "parent": "a5e-ag_conjure-celestial", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 873, + "fields": { + "parent": "a5e-ag_conjure-elemental", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 875, + "fields": { + "parent": "a5e-ag_conjure-elemental", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 876, + "fields": { + "parent": "a5e-ag_conjure-elemental", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 877, + "fields": { + "parent": "a5e-ag_conjure-elemental", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 878, + "fields": { + "parent": "a5e-ag_conjure-elemental", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 879, + "fields": { + "parent": "a5e-ag_conjure-fey", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 881, + "fields": { + "parent": "a5e-ag_conjure-fey", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 882, + "fields": { + "parent": "a5e-ag_conjure-fey", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 883, + "fields": { + "parent": "a5e-ag_conjure-fey", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 884, + "fields": { + "parent": "a5e-ag_conjure-minor-elementals", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 886, + "fields": { + "parent": "a5e-ag_conjure-minor-elementals", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 887, + "fields": { + "parent": "a5e-ag_conjure-minor-elementals", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 888, + "fields": { + "parent": "a5e-ag_conjure-minor-elementals", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 889, + "fields": { + "parent": "a5e-ag_conjure-minor-elementals", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 890, + "fields": { + "parent": "a5e-ag_conjure-minor-elementals", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 891, + "fields": { + "parent": "a5e-ag_conjure-woodland-beings", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 893, + "fields": { + "parent": "a5e-ag_conjure-woodland-beings", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 894, + "fields": { + "parent": "a5e-ag_conjure-woodland-beings", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 895, + "fields": { + "parent": "a5e-ag_conjure-woodland-beings", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 896, + "fields": { + "parent": "a5e-ag_conjure-woodland-beings", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 897, + "fields": { + "parent": "a5e-ag_conjure-woodland-beings", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 898, + "fields": { + "parent": "a5e-ag_contact-other-plane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 899, + "fields": { + "parent": "a5e-ag_contact-other-plane", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 900, + "fields": { + "parent": "a5e-ag_contagion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 901, + "fields": { + "parent": "a5e-ag_contingency", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 902, + "fields": { + "parent": "a5e-ag_continual-flame", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 903, + "fields": { + "parent": "a5e-ag_control-water", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 904, + "fields": { + "parent": "a5e-ag_control-weather", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 905, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 907, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 908, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 909, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 910, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 911, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 912, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 913, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 914, + "fields": { + "parent": "a5e-ag_corpse-explosion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 915, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 917, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 918, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 919, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 920, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 921, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 922, + "fields": { + "parent": "a5e-ag_counterspell", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 923, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 925, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 926, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 927, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 928, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 929, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 930, + "fields": { + "parent": "a5e-ag_create-food-and-water", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 931, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 933, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 934, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 935, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 936, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 937, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 938, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 939, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 940, + "fields": { + "parent": "a5e-ag_create-or-destroy-water", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 941, + "fields": { + "parent": "a5e-ag_create-undead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 943, + "fields": { + "parent": "a5e-ag_create-undead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 944, + "fields": { + "parent": "a5e-ag_create-undead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 945, + "fields": { + "parent": "a5e-ag_create-undead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 946, + "fields": { + "parent": "a5e-ag_creation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 948, + "fields": { + "parent": "a5e-ag_creation", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 949, + "fields": { + "parent": "a5e-ag_creation", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 950, + "fields": { + "parent": "a5e-ag_creation", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 951, + "fields": { + "parent": "a5e-ag_creation", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 952, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 954, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 955, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 956, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 957, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 958, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 959, + "fields": { + "parent": "a5e-ag_crushing-haymaker", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 960, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 962, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 963, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 964, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 965, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 966, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 967, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 968, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 969, + "fields": { + "parent": "a5e-ag_cure-wounds", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 970, + "fields": { + "parent": "a5e-ag_dancing-lights", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 971, + "fields": { + "parent": "a5e-ag_darklight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 972, + "fields": { + "parent": "a5e-ag_darkness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 973, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 975, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 976, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 977, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 978, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 979, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 980, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 981, + "fields": { + "parent": "a5e-ag_darkvision", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 982, + "fields": { + "parent": "a5e-ag_daylight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 983, + "fields": { + "parent": "a5e-ag_deadweight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 984, + "fields": { + "parent": "a5e-ag_death-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 985, + "fields": { + "parent": "a5e-ag_delayed-blast-fireball", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 987, + "fields": { + "parent": "a5e-ag_delayed-blast-fireball", + "type": "slot_level_8", + "damage_roll": "13d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 988, + "fields": { + "parent": "a5e-ag_delayed-blast-fireball", + "type": "slot_level_9", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 989, + "fields": { + "parent": "a5e-ag_demiplane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 990, + "fields": { + "parent": "a5e-ag_detect-evil-and-good", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 991, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 992, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 994, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 995, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 996, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 997, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 998, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 999, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1000, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1001, + "fields": { + "parent": "a5e-ag_detect-magic", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1002, + "fields": { + "parent": "a5e-ag_detect-poison-and-disease", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1003, + "fields": { + "parent": "a5e-ag_detect-poison-and-disease", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1004, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1006, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1007, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1008, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "1 mile" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1009, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "1 mile" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1010, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "10 miles" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1011, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "10 miles" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1012, + "fields": { + "parent": "a5e-ag_detect-thoughts", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "1000 miles" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1013, + "fields": { + "parent": "a5e-ag_dimension-door", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1014, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1016, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1017, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1018, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1019, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1020, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1021, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1022, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1023, + "fields": { + "parent": "a5e-ag_disguise-self", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1024, + "fields": { + "parent": "a5e-ag_disintegrate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1026, + "fields": { + "parent": "a5e-ag_disintegrate", + "type": "slot_level_7", + "damage_roll": "13d6+40", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1027, + "fields": { + "parent": "a5e-ag_disintegrate", + "type": "slot_level_8", + "damage_roll": "16d6+40", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1028, + "fields": { + "parent": "a5e-ag_disintegrate", + "type": "slot_level_9", + "damage_roll": "19d6+40", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1029, + "fields": { + "parent": "a5e-ag_dispel-evil-and-good", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1031, + "fields": { + "parent": "a5e-ag_dispel-evil-and-good", + "type": "slot_level_6", + "damage_roll": "8d8", + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1032, + "fields": { + "parent": "a5e-ag_dispel-evil-and-good", + "type": "slot_level_7", + "damage_roll": "9d8", + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1033, + "fields": { + "parent": "a5e-ag_dispel-evil-and-good", + "type": "slot_level_8", + "damage_roll": "10d8", + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1034, + "fields": { + "parent": "a5e-ag_dispel-evil-and-good", + "type": "slot_level_9", + "damage_roll": "11d8", + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1035, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1037, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1038, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1039, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1040, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1041, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1042, + "fields": { + "parent": "a5e-ag_dispel-magic", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1043, + "fields": { + "parent": "a5e-ag_divination", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1044, + "fields": { + "parent": "a5e-ag_divination", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1045, + "fields": { + "parent": "a5e-ag_divine-favor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1046, + "fields": { + "parent": "a5e-ag_divine-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1047, + "fields": { + "parent": "a5e-ag_dominate-beast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1049, + "fields": { + "parent": "a5e-ag_dominate-beast", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1050, + "fields": { + "parent": "a5e-ag_dominate-beast", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1051, + "fields": { + "parent": "a5e-ag_dominate-beast", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1052, + "fields": { + "parent": "a5e-ag_dominate-beast", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1053, + "fields": { + "parent": "a5e-ag_dominate-beast", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1054, + "fields": { + "parent": "a5e-ag_dominate-monster", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1056, + "fields": { + "parent": "a5e-ag_dominate-monster", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1057, + "fields": { + "parent": "a5e-ag_dominate-person", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1059, + "fields": { + "parent": "a5e-ag_dominate-person", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1060, + "fields": { + "parent": "a5e-ag_dominate-person", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1061, + "fields": { + "parent": "a5e-ag_dominate-person", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1062, + "fields": { + "parent": "a5e-ag_dominate-person", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1063, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1065, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_2", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1066, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_3", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1067, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_4", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1068, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_5", + "damage_roll": "5d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1069, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_6", + "damage_roll": "6d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1070, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_7", + "damage_roll": "7d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1071, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_8", + "damage_roll": "8d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1072, + "fields": { + "parent": "a5e-ag_dramatic-sting", + "type": "slot_level_9", + "damage_roll": "9d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1073, + "fields": { + "parent": "a5e-ag_dream", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1074, + "fields": { + "parent": "a5e-ag_druidcraft", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1075, + "fields": { + "parent": "a5e-ag_earth-barrier", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1076, + "fields": { + "parent": "a5e-ag_earthquake", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1077, + "fields": { + "parent": "a5e-ag_eldritch-cube", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1078, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1080, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1081, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1082, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1083, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1084, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1085, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1086, + "fields": { + "parent": "a5e-ag_enhance-ability", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1087, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1089, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1090, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1091, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1092, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1093, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1094, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1095, + "fields": { + "parent": "a5e-ag_enlargereduce", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1096, + "fields": { + "parent": "a5e-ag_enrage-architecture", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1097, + "fields": { + "parent": "a5e-ag_entangle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1098, + "fields": { + "parent": "a5e-ag_enthrall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1099, + "fields": { + "parent": "a5e-ag_etherealness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1101, + "fields": { + "parent": "a5e-ag_etherealness", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1102, + "fields": { + "parent": "a5e-ag_etherealness", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1103, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1105, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1106, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1107, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1108, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1109, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1110, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1111, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1112, + "fields": { + "parent": "a5e-ag_expeditious-retreat", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1113, + "fields": { + "parent": "a5e-ag_eyebite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1114, + "fields": { + "parent": "a5e-ag_fabricate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1115, + "fields": { + "parent": "a5e-ag_faerie-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1116, + "fields": { + "parent": "a5e-ag_faithful-hound", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1117, + "fields": { + "parent": "a5e-ag_false-life", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1119, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1120, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1121, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1122, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1123, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1124, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1125, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1126, + "fields": { + "parent": "a5e-ag_false-life", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1127, + "fields": { + "parent": "a5e-ag_fear", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1128, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1130, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1131, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1132, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1133, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1134, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1135, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1136, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1137, + "fields": { + "parent": "a5e-ag_feather-fall", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1138, + "fields": { + "parent": "a5e-ag_feeblemind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1139, + "fields": { + "parent": "a5e-ag_find-familiar", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1140, + "fields": { + "parent": "a5e-ag_find-familiar", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1141, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1143, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1144, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1145, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1146, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1147, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1148, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1149, + "fields": { + "parent": "a5e-ag_find-steed", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1150, + "fields": { + "parent": "a5e-ag_find-the-path", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1151, + "fields": { + "parent": "a5e-ag_find-traps", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1152, + "fields": { + "parent": "a5e-ag_finger-of-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1154, + "fields": { + "parent": "a5e-ag_finger-of-death", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1155, + "fields": { + "parent": "a5e-ag_finger-of-death", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1156, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1157, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1158, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1159, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1160, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1161, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_5", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1162, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_6", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1163, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_7", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1164, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_8", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1165, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_9", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1166, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_10", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1167, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_11", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1168, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_12", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1169, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_13", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1170, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_14", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1171, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_15", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1172, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_16", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1173, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_17", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1174, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_18", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1175, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_19", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1176, + "fields": { + "parent": "a5e-ag_fire-bolt", + "type": "player_level_20", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1177, + "fields": { + "parent": "a5e-ag_fire-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1179, + "fields": { + "parent": "a5e-ag_fire-shield", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1180, + "fields": { + "parent": "a5e-ag_fire-shield", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1181, + "fields": { + "parent": "a5e-ag_fire-shield", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1182, + "fields": { + "parent": "a5e-ag_fire-shield", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1183, + "fields": { + "parent": "a5e-ag_fire-shield", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1184, + "fields": { + "parent": "a5e-ag_fire-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1186, + "fields": { + "parent": "a5e-ag_fire-storm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1187, + "fields": { + "parent": "a5e-ag_fire-storm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1188, + "fields": { + "parent": "a5e-ag_fireball", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1190, + "fields": { + "parent": "a5e-ag_fireball", + "type": "slot_level_4", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1191, + "fields": { + "parent": "a5e-ag_fireball", + "type": "slot_level_5", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1192, + "fields": { + "parent": "a5e-ag_fireball", + "type": "slot_level_6", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1193, + "fields": { + "parent": "a5e-ag_fireball", + "type": "slot_level_7", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1194, + "fields": { + "parent": "a5e-ag_fireball", + "type": "slot_level_8", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1195, + "fields": { + "parent": "a5e-ag_fireball", + "type": "slot_level_9", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1196, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1198, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1199, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1200, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1201, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1202, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1203, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1204, + "fields": { + "parent": "a5e-ag_flame-blade", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1205, + "fields": { + "parent": "a5e-ag_flame-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1207, + "fields": { + "parent": "a5e-ag_flame-strike", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1208, + "fields": { + "parent": "a5e-ag_flame-strike", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1209, + "fields": { + "parent": "a5e-ag_flame-strike", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1210, + "fields": { + "parent": "a5e-ag_flame-strike", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1211, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1213, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1214, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1215, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1216, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1217, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1218, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1219, + "fields": { + "parent": "a5e-ag_flaming-sphere", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1220, + "fields": { + "parent": "a5e-ag_flesh-to-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1222, + "fields": { + "parent": "a5e-ag_flesh-to-stone", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1223, + "fields": { + "parent": "a5e-ag_flesh-to-stone", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1224, + "fields": { + "parent": "a5e-ag_flesh-to-stone", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1225, + "fields": { + "parent": "a5e-ag_flex", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1227, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1228, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1229, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1230, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1231, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1232, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1233, + "fields": { + "parent": "a5e-ag_flex", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1234, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1235, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1237, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1238, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1239, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1240, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1241, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1242, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1243, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1244, + "fields": { + "parent": "a5e-ag_floating-disk", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1245, + "fields": { + "parent": "a5e-ag_fly", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1247, + "fields": { + "parent": "a5e-ag_fly", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1248, + "fields": { + "parent": "a5e-ag_fly", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1249, + "fields": { + "parent": "a5e-ag_fly", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1250, + "fields": { + "parent": "a5e-ag_fly", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1251, + "fields": { + "parent": "a5e-ag_fly", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1252, + "fields": { + "parent": "a5e-ag_fly", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1253, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1255, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1256, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1257, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1258, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1259, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1260, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1261, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1262, + "fields": { + "parent": "a5e-ag_fog-cloud", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1263, + "fields": { + "parent": "a5e-ag_forbiddance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1264, + "fields": { + "parent": "a5e-ag_forbiddance", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1265, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1267, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1268, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1269, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1270, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1271, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1272, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1273, + "fields": { + "parent": "a5e-ag_force-of-will", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1274, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1276, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_2", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1277, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_3", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1278, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_4", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1279, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_5", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1280, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_6", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1281, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_7", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1282, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_8", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1283, + "fields": { + "parent": "a5e-ag_force-punch", + "type": "slot_level_9", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1284, + "fields": { + "parent": "a5e-ag_forcecage", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1286, + "fields": { + "parent": "a5e-ag_forcecage", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1287, + "fields": { + "parent": "a5e-ag_forcecage", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1288, + "fields": { + "parent": "a5e-ag_foresight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1289, + "fields": { + "parent": "a5e-ag_forest-army", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1290, + "fields": { + "parent": "a5e-ag_freedom-of-movement", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1292, + "fields": { + "parent": "a5e-ag_freedom-of-movement", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1293, + "fields": { + "parent": "a5e-ag_freedom-of-movement", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1294, + "fields": { + "parent": "a5e-ag_freedom-of-movement", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1295, + "fields": { + "parent": "a5e-ag_freedom-of-movement", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1296, + "fields": { + "parent": "a5e-ag_freedom-of-movement", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1297, + "fields": { + "parent": "a5e-ag_freezing-sphere", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1299, + "fields": { + "parent": "a5e-ag_freezing-sphere", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1300, + "fields": { + "parent": "a5e-ag_freezing-sphere", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1301, + "fields": { + "parent": "a5e-ag_freezing-sphere", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1302, + "fields": { + "parent": "a5e-ag_friends", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1303, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1305, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1306, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1307, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1308, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1309, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1310, + "fields": { + "parent": "a5e-ag_gaseous-form", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1311, + "fields": { + "parent": "a5e-ag_gate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1312, + "fields": { + "parent": "a5e-ag_geas", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1314, + "fields": { + "parent": "a5e-ag_geas", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1315, + "fields": { + "parent": "a5e-ag_geas", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1316, + "fields": { + "parent": "a5e-ag_geas", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1317, + "fields": { + "parent": "a5e-ag_geas", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1318, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1319, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1321, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1322, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1323, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1324, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1325, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1326, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1327, + "fields": { + "parent": "a5e-ag_gentle-repose", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1328, + "fields": { + "parent": "a5e-ag_giant-insect", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1330, + "fields": { + "parent": "a5e-ag_giant-insect", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1331, + "fields": { + "parent": "a5e-ag_giant-insect", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1332, + "fields": { + "parent": "a5e-ag_giant-insect", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1333, + "fields": { + "parent": "a5e-ag_giant-insect", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1334, + "fields": { + "parent": "a5e-ag_giant-insect", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1335, + "fields": { + "parent": "a5e-ag_glibness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1336, + "fields": { + "parent": "a5e-ag_globe-of-invulnerability", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1338, + "fields": { + "parent": "a5e-ag_globe-of-invulnerability", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1339, + "fields": { + "parent": "a5e-ag_globe-of-invulnerability", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1340, + "fields": { + "parent": "a5e-ag_globe-of-invulnerability", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1341, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1343, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1344, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1345, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1346, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1347, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1348, + "fields": { + "parent": "a5e-ag_glyph-of-warding", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1349, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1351, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1352, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1353, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1354, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1355, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1356, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1357, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1358, + "fields": { + "parent": "a5e-ag_goodberry", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1359, + "fields": { + "parent": "a5e-ag_grapevine", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1360, + "fields": { + "parent": "a5e-ag_grease", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1361, + "fields": { + "parent": "a5e-ag_greater-invisibility", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1362, + "fields": { + "parent": "a5e-ag_greater-restoration", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1363, + "fields": { + "parent": "a5e-ag_guardian-of-faith", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1364, + "fields": { + "parent": "a5e-ag_guards-and-wards", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1365, + "fields": { + "parent": "a5e-ag_guidance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1366, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1368, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1369, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1370, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1371, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1372, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1373, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1374, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1375, + "fields": { + "parent": "a5e-ag_guiding-bolt", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1376, + "fields": { + "parent": "a5e-ag_gust-of-wind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1377, + "fields": { + "parent": "a5e-ag_hallow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1378, + "fields": { + "parent": "a5e-ag_hallucinatory-terrain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1380, + "fields": { + "parent": "a5e-ag_hallucinatory-terrain", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1381, + "fields": { + "parent": "a5e-ag_hallucinatory-terrain", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1382, + "fields": { + "parent": "a5e-ag_hallucinatory-terrain", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1383, + "fields": { + "parent": "a5e-ag_hallucinatory-terrain", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1384, + "fields": { + "parent": "a5e-ag_hallucinatory-terrain", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1385, + "fields": { + "parent": "a5e-ag_harm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1387, + "fields": { + "parent": "a5e-ag_harm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1388, + "fields": { + "parent": "a5e-ag_harm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1389, + "fields": { + "parent": "a5e-ag_harm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1390, + "fields": { + "parent": "a5e-ag_harmonic-resonance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1391, + "fields": { + "parent": "a5e-ag_haste", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1393, + "fields": { + "parent": "a5e-ag_haste", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1394, + "fields": { + "parent": "a5e-ag_haste", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1395, + "fields": { + "parent": "a5e-ag_haste", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1396, + "fields": { + "parent": "a5e-ag_haste", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1397, + "fields": { + "parent": "a5e-ag_haste", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1398, + "fields": { + "parent": "a5e-ag_haste", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1399, + "fields": { + "parent": "a5e-ag_heal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1401, + "fields": { + "parent": "a5e-ag_heal", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1402, + "fields": { + "parent": "a5e-ag_heal", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1403, + "fields": { + "parent": "a5e-ag_heal", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1404, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1406, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1407, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1408, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1409, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1410, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1411, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1412, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1413, + "fields": { + "parent": "a5e-ag_healing-word", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1414, + "fields": { + "parent": "a5e-ag_heart-of-dis", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1415, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1417, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_3", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1418, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1419, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1420, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1421, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1422, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1423, + "fields": { + "parent": "a5e-ag_heat-metal", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1424, + "fields": { + "parent": "a5e-ag_heroes-feast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1425, + "fields": { + "parent": "a5e-ag_heroism", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1427, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1428, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1429, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1430, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1431, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1432, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1433, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1434, + "fields": { + "parent": "a5e-ag_heroism", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1435, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1437, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1438, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1439, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1440, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1441, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1442, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1443, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1444, + "fields": { + "parent": "a5e-ag_hideous-laughter", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1445, + "fields": { + "parent": "a5e-ag_hold-monster", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1447, + "fields": { + "parent": "a5e-ag_hold-monster", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1448, + "fields": { + "parent": "a5e-ag_hold-monster", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1449, + "fields": { + "parent": "a5e-ag_hold-monster", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1450, + "fields": { + "parent": "a5e-ag_hold-monster", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1451, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1453, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1454, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1455, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1456, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1457, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1458, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1459, + "fields": { + "parent": "a5e-ag_hold-person", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1460, + "fields": { + "parent": "a5e-ag_holy-aura", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1461, + "fields": { + "parent": "a5e-ag_hypnotic-pattern", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1462, + "fields": { + "parent": "a5e-ag_ice-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1464, + "fields": { + "parent": "a5e-ag_ice-storm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1465, + "fields": { + "parent": "a5e-ag_ice-storm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1466, + "fields": { + "parent": "a5e-ag_ice-storm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1467, + "fields": { + "parent": "a5e-ag_ice-storm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1468, + "fields": { + "parent": "a5e-ag_ice-storm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1469, + "fields": { + "parent": "a5e-ag_identify", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1470, + "fields": { + "parent": "a5e-ag_identify", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1471, + "fields": { + "parent": "a5e-ag_illusory-script", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1472, + "fields": { + "parent": "a5e-ag_imprisonment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1473, + "fields": { + "parent": "a5e-ag_incendiary-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1474, + "fields": { + "parent": "a5e-ag_inescapable-malady", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1476, + "fields": { + "parent": "a5e-ag_inescapable-malady", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1477, + "fields": { + "parent": "a5e-ag_inescapable-malady", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1478, + "fields": { + "parent": "a5e-ag_infernal-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1479, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1481, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1482, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1483, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1484, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1485, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1486, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1487, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1488, + "fields": { + "parent": "a5e-ag_inflict-wounds", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1489, + "fields": { + "parent": "a5e-ag_insect-plague", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1491, + "fields": { + "parent": "a5e-ag_insect-plague", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1492, + "fields": { + "parent": "a5e-ag_insect-plague", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1493, + "fields": { + "parent": "a5e-ag_insect-plague", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1494, + "fields": { + "parent": "a5e-ag_insect-plague", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1495, + "fields": { + "parent": "a5e-ag_instant-summons", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1496, + "fields": { + "parent": "a5e-ag_instant-summons", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1497, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1499, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1500, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1501, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1502, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1503, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1504, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1505, + "fields": { + "parent": "a5e-ag_invigorated-strikes", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1506, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1508, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1509, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1510, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1511, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1512, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1513, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1514, + "fields": { + "parent": "a5e-ag_invisibility", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1515, + "fields": { + "parent": "a5e-ag_irresistible-dance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1517, + "fields": { + "parent": "a5e-ag_irresistible-dance", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1518, + "fields": { + "parent": "a5e-ag_irresistible-dance", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1519, + "fields": { + "parent": "a5e-ag_irresistible-dance", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1520, + "fields": { + "parent": "a5e-ag_jump", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1522, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1523, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1524, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1525, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1526, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1527, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1528, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1529, + "fields": { + "parent": "a5e-ag_jump", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1530, + "fields": { + "parent": "a5e-ag_knock", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1532, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1533, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1534, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1535, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1536, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1537, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1538, + "fields": { + "parent": "a5e-ag_knock", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1539, + "fields": { + "parent": "a5e-ag_legend-lore", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1541, + "fields": { + "parent": "a5e-ag_legend-lore", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1542, + "fields": { + "parent": "a5e-ag_legend-lore", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1543, + "fields": { + "parent": "a5e-ag_legend-lore", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1544, + "fields": { + "parent": "a5e-ag_legend-lore", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1545, + "fields": { + "parent": "a5e-ag_lemure-transformation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1546, + "fields": { + "parent": "a5e-ag_lesser-restoration", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1547, + "fields": { + "parent": "a5e-ag_levitate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1549, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1550, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1551, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1552, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1553, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1554, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1555, + "fields": { + "parent": "a5e-ag_levitate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1556, + "fields": { + "parent": "a5e-ag_light", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1557, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1559, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1560, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1561, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1562, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1563, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1564, + "fields": { + "parent": "a5e-ag_lightning-bolt", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1565, + "fields": { + "parent": "a5e-ag_locate-animals-or-plants", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1566, + "fields": { + "parent": "a5e-ag_locate-animals-or-plants", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1567, + "fields": { + "parent": "a5e-ag_locate-creature", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1568, + "fields": { + "parent": "a5e-ag_locate-object", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1569, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1571, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1572, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1573, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1574, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1575, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1576, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1577, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1578, + "fields": { + "parent": "a5e-ag_longstrider", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1579, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1581, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1582, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1583, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1584, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1585, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1586, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1587, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1588, + "fields": { + "parent": "a5e-ag_mage-armor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1589, + "fields": { + "parent": "a5e-ag_mage-hand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1590, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1592, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1593, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1594, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1595, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1596, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1597, + "fields": { + "parent": "a5e-ag_magic-circle", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1598, + "fields": { + "parent": "a5e-ag_magic-jar", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1599, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1601, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1602, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1603, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1604, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1605, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1606, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1607, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1608, + "fields": { + "parent": "a5e-ag_magic-missile", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 11, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1609, + "fields": { + "parent": "a5e-ag_magic-mouth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1610, + "fields": { + "parent": "a5e-ag_magic-mouth", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1611, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1613, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1614, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1615, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1616, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1617, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1618, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1619, + "fields": { + "parent": "a5e-ag_magic-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1620, + "fields": { + "parent": "a5e-ag_magnificent-mansion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1621, + "fields": { + "parent": "a5e-ag_major-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1623, + "fields": { + "parent": "a5e-ag_major-image", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1624, + "fields": { + "parent": "a5e-ag_major-image", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1625, + "fields": { + "parent": "a5e-ag_major-image", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1626, + "fields": { + "parent": "a5e-ag_major-image", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1627, + "fields": { + "parent": "a5e-ag_major-image", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1628, + "fields": { + "parent": "a5e-ag_major-image", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1629, + "fields": { + "parent": "a5e-ag_mass-cure-wounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1631, + "fields": { + "parent": "a5e-ag_mass-cure-wounds", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1632, + "fields": { + "parent": "a5e-ag_mass-cure-wounds", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1633, + "fields": { + "parent": "a5e-ag_mass-cure-wounds", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1634, + "fields": { + "parent": "a5e-ag_mass-cure-wounds", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1635, + "fields": { + "parent": "a5e-ag_mass-heal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1636, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1638, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1639, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1640, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1641, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1642, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1643, + "fields": { + "parent": "a5e-ag_mass-healing-word", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1644, + "fields": { + "parent": "a5e-ag_mass-suggestion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1646, + "fields": { + "parent": "a5e-ag_mass-suggestion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "10 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1647, + "fields": { + "parent": "a5e-ag_mass-suggestion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "30 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1648, + "fields": { + "parent": "a5e-ag_mass-suggestion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "A year and a day", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1649, + "fields": { + "parent": "a5e-ag_maze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1650, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1652, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1653, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1654, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1655, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1656, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1657, + "fields": { + "parent": "a5e-ag_meld-into-stone", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1658, + "fields": { + "parent": "a5e-ag_mending", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1659, + "fields": { + "parent": "a5e-ag_mental-grip", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1660, + "fields": { + "parent": "a5e-ag_message", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1661, + "fields": { + "parent": "a5e-ag_meteor-swarm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1662, + "fields": { + "parent": "a5e-ag_mind-blank", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1663, + "fields": { + "parent": "a5e-ag_mindshield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1664, + "fields": { + "parent": "a5e-ag_minor-illusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1665, + "fields": { + "parent": "a5e-ag_mirage-arcane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1666, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1668, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1669, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1670, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1671, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1672, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1673, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1674, + "fields": { + "parent": "a5e-ag_mirror-image", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1675, + "fields": { + "parent": "a5e-ag_mislead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1676, + "fields": { + "parent": "a5e-ag_misty-step", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1677, + "fields": { + "parent": "a5e-ag_modify-memory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1679, + "fields": { + "parent": "a5e-ag_modify-memory", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1680, + "fields": { + "parent": "a5e-ag_modify-memory", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1681, + "fields": { + "parent": "a5e-ag_modify-memory", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1682, + "fields": { + "parent": "a5e-ag_modify-memory", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1683, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1685, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1686, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1687, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1688, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1689, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1690, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1691, + "fields": { + "parent": "a5e-ag_moonbeam", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1692, + "fields": { + "parent": "a5e-ag_move-earth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1693, + "fields": { + "parent": "a5e-ag_nondetection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1694, + "fields": { + "parent": "a5e-ag_pass-without-trace", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1695, + "fields": { + "parent": "a5e-ag_passwall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1696, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1697, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1698, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1699, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1700, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1701, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1702, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1703, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1704, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1705, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1706, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1707, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1708, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1709, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1710, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1711, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1712, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1713, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1714, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1715, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1716, + "fields": { + "parent": "a5e-ag_pestilence", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1717, + "fields": { + "parent": "a5e-ag_phantasmal-killer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1719, + "fields": { + "parent": "a5e-ag_phantasmal-killer", + "type": "slot_level_5", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1720, + "fields": { + "parent": "a5e-ag_phantasmal-killer", + "type": "slot_level_6", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1721, + "fields": { + "parent": "a5e-ag_phantasmal-killer", + "type": "slot_level_7", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1722, + "fields": { + "parent": "a5e-ag_phantasmal-killer", + "type": "slot_level_8", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1723, + "fields": { + "parent": "a5e-ag_phantasmal-killer", + "type": "slot_level_9", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1724, + "fields": { + "parent": "a5e-ag_phantasmal-talons", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1725, + "fields": { + "parent": "a5e-ag_phantom-steed", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1726, + "fields": { + "parent": "a5e-ag_phantom-steed", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1727, + "fields": { + "parent": "a5e-ag_planar-ally", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1728, + "fields": { + "parent": "a5e-ag_planar-binding", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1730, + "fields": { + "parent": "a5e-ag_planar-binding", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "10 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1731, + "fields": { + "parent": "a5e-ag_planar-binding", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "30 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1732, + "fields": { + "parent": "a5e-ag_planar-binding", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "180 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1733, + "fields": { + "parent": "a5e-ag_planar-binding", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "A year and a day", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1734, + "fields": { + "parent": "a5e-ag_plane-shift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1735, + "fields": { + "parent": "a5e-ag_plant-growth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1736, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1738, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "slot_level_4", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1739, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "slot_level_5", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1740, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "slot_level_6", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1741, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "slot_level_7", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1742, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "slot_level_8", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1743, + "fields": { + "parent": "a5e-ag_poison-skin", + "type": "slot_level_9", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1744, + "fields": { + "parent": "a5e-ag_polymorph", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1745, + "fields": { + "parent": "a5e-ag_power-word-kill", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1746, + "fields": { + "parent": "a5e-ag_power-word-stun", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1747, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1749, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1750, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1751, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1752, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1753, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1754, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1755, + "fields": { + "parent": "a5e-ag_prayer-of-healing", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1756, + "fields": { + "parent": "a5e-ag_prestidigitation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1757, + "fields": { + "parent": "a5e-ag_prismatic-spray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1758, + "fields": { + "parent": "a5e-ag_prismatic-wall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1759, + "fields": { + "parent": "a5e-ag_private-sanctum", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1761, + "fields": { + "parent": "a5e-ag_private-sanctum", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1762, + "fields": { + "parent": "a5e-ag_private-sanctum", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1763, + "fields": { + "parent": "a5e-ag_private-sanctum", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1764, + "fields": { + "parent": "a5e-ag_private-sanctum", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1765, + "fields": { + "parent": "a5e-ag_private-sanctum", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1766, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1767, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1768, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1769, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1770, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1771, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1772, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1773, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1774, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1775, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1776, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1777, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1778, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1779, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1780, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1781, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1782, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1783, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1784, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1785, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1786, + "fields": { + "parent": "a5e-ag_produce-flame", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1787, + "fields": { + "parent": "a5e-ag_programmed-illusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1788, + "fields": { + "parent": "a5e-ag_project-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1789, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1791, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1792, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1793, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1794, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1795, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1796, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1797, + "fields": { + "parent": "a5e-ag_protection-from-energy", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1798, + "fields": { + "parent": "a5e-ag_protection-from-evil-and-good", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1799, + "fields": { + "parent": "a5e-ag_protection-from-poison", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1800, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1801, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1803, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1804, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1805, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1806, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1807, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1808, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1809, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1810, + "fields": { + "parent": "a5e-ag_purify-food-and-drink", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1811, + "fields": { + "parent": "a5e-ag_rage-of-the-meek", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1813, + "fields": { + "parent": "a5e-ag_rage-of-the-meek", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1814, + "fields": { + "parent": "a5e-ag_rage-of-the-meek", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1815, + "fields": { + "parent": "a5e-ag_rage-of-the-meek", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1816, + "fields": { + "parent": "a5e-ag_rage-of-the-meek", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1817, + "fields": { + "parent": "a5e-ag_rage-of-the-meek", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1818, + "fields": { + "parent": "a5e-ag_raise-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1819, + "fields": { + "parent": "a5e-ag_raise-hell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1820, + "fields": { + "parent": "a5e-ag_ray-of-enfeeblement", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1821, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1822, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1823, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1824, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1825, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1826, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1827, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1828, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1829, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1830, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1831, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1832, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1833, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1834, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1835, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1836, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1837, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1838, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1839, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1840, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1841, + "fields": { + "parent": "a5e-ag_ray-of-frost", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1842, + "fields": { + "parent": "a5e-ag_regenerate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1843, + "fields": { + "parent": "a5e-ag_reincarnate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1844, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1846, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1847, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1848, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1849, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1850, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1851, + "fields": { + "parent": "a5e-ag_remove-curse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1852, + "fields": { + "parent": "a5e-ag_resilient-sphere", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1853, + "fields": { + "parent": "a5e-ag_resistance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1854, + "fields": { + "parent": "a5e-ag_resurrection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1855, + "fields": { + "parent": "a5e-ag_reverse-gravity", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1856, + "fields": { + "parent": "a5e-ag_revivify", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1857, + "fields": { + "parent": "a5e-ag_rope-trick", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1858, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1859, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1860, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1861, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1862, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1863, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1864, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1865, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1866, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1867, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1868, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1869, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1870, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1871, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1872, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1873, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1874, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1875, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1876, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1877, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1878, + "fields": { + "parent": "a5e-ag_sacred-flame", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1879, + "fields": { + "parent": "a5e-ag_sanctuary", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1880, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1882, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1883, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1884, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1885, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1886, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1887, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1888, + "fields": { + "parent": "a5e-ag_scorching-ray", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1889, + "fields": { + "parent": "a5e-ag_scrying", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1890, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1892, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1893, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1894, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1895, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1896, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1897, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1898, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1899, + "fields": { + "parent": "a5e-ag_searing-equation", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1900, + "fields": { + "parent": "a5e-ag_secret-chest", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1901, + "fields": { + "parent": "a5e-ag_see-invisibility", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1902, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1904, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_3", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1905, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_4", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1906, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_5", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1907, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_6", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1908, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_7", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1909, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_8", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1910, + "fields": { + "parent": "a5e-ag_seed-bomb", + "type": "slot_level_9", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1911, + "fields": { + "parent": "a5e-ag_seeming", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1912, + "fields": { + "parent": "a5e-ag_sending", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1913, + "fields": { + "parent": "a5e-ag_sequester", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1914, + "fields": { + "parent": "a5e-ag_shapechange", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1915, + "fields": { + "parent": "a5e-ag_shatter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1917, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1918, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1919, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1920, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1921, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1922, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1923, + "fields": { + "parent": "a5e-ag_shatter", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1924, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1926, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1927, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1928, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1929, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1930, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1931, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1932, + "fields": { + "parent": "a5e-ag_shattering-barrage", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1933, + "fields": { + "parent": "a5e-ag_shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1934, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1936, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1937, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1938, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1939, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1940, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1941, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1942, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1943, + "fields": { + "parent": "a5e-ag_shield-of-faith", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1944, + "fields": { + "parent": "a5e-ag_shillelagh", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1945, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1946, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1947, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1948, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1949, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1950, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1951, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1952, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1953, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1954, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1955, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1956, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1957, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1958, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1959, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1960, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1961, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1962, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1963, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1964, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1965, + "fields": { + "parent": "a5e-ag_shocking-grasp", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1966, + "fields": { + "parent": "a5e-ag_silence", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1967, + "fields": { + "parent": "a5e-ag_silence", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1968, + "fields": { + "parent": "a5e-ag_silent-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1969, + "fields": { + "parent": "a5e-ag_simulacrum", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1970, + "fields": { + "parent": "a5e-ag_sleep", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1972, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1973, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1974, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1975, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1976, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1977, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1978, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1979, + "fields": { + "parent": "a5e-ag_sleep", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1980, + "fields": { + "parent": "a5e-ag_sleet-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1981, + "fields": { + "parent": "a5e-ag_slow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1982, + "fields": { + "parent": "a5e-ag_soulwrought-fists", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1983, + "fields": { + "parent": "a5e-ag_spare-the-dying", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1984, + "fields": { + "parent": "a5e-ag_speak-with-animals", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1985, + "fields": { + "parent": "a5e-ag_speak-with-animals", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1986, + "fields": { + "parent": "a5e-ag_speak-with-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1987, + "fields": { + "parent": "a5e-ag_speak-with-plants", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1988, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1990, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1991, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1992, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1993, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1994, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1995, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1996, + "fields": { + "parent": "a5e-ag_spider-climb", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1997, + "fields": { + "parent": "a5e-ag_spike-growth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 1998, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2000, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "slot_level_4", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2001, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "slot_level_5", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2002, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "slot_level_6", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2003, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "slot_level_7", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2004, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "slot_level_8", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2005, + "fields": { + "parent": "a5e-ag_spirit-guardians", + "type": "slot_level_9", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2006, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2008, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2009, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2010, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2011, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2012, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2013, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2014, + "fields": { + "parent": "a5e-ag_spiritual-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2015, + "fields": { + "parent": "a5e-ag_sporesight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2016, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2018, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2019, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2020, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2021, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2022, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2023, + "fields": { + "parent": "a5e-ag_stinking-cloud", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2024, + "fields": { + "parent": "a5e-ag_stone-shape", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2026, + "fields": { + "parent": "a5e-ag_stone-shape", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2027, + "fields": { + "parent": "a5e-ag_stone-shape", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2028, + "fields": { + "parent": "a5e-ag_stone-shape", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2029, + "fields": { + "parent": "a5e-ag_stone-shape", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2030, + "fields": { + "parent": "a5e-ag_stone-shape", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2031, + "fields": { + "parent": "a5e-ag_stoneskin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2033, + "fields": { + "parent": "a5e-ag_stoneskin", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2034, + "fields": { + "parent": "a5e-ag_stoneskin", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2035, + "fields": { + "parent": "a5e-ag_stoneskin", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2036, + "fields": { + "parent": "a5e-ag_stoneskin", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2037, + "fields": { + "parent": "a5e-ag_stoneskin", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2038, + "fields": { + "parent": "a5e-ag_storm-kick", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2040, + "fields": { + "parent": "a5e-ag_storm-kick", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2041, + "fields": { + "parent": "a5e-ag_storm-kick", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2042, + "fields": { + "parent": "a5e-ag_storm-kick", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2043, + "fields": { + "parent": "a5e-ag_storm-kick", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2044, + "fields": { + "parent": "a5e-ag_storm-of-vengeance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2045, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2047, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2048, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2049, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "7 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2050, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "7 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2051, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2052, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2053, + "fields": { + "parent": "a5e-ag_suggestion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2054, + "fields": { + "parent": "a5e-ag_sunbeam", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2056, + "fields": { + "parent": "a5e-ag_sunbeam", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2057, + "fields": { + "parent": "a5e-ag_sunbeam", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2058, + "fields": { + "parent": "a5e-ag_sunbeam", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2059, + "fields": { + "parent": "a5e-ag_sunburst", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2061, + "fields": { + "parent": "a5e-ag_sunburst", + "type": "slot_level_9", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2062, + "fields": { + "parent": "a5e-ag_symbol", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2063, + "fields": { + "parent": "a5e-ag_tearful-sonnet", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2065, + "fields": { + "parent": "a5e-ag_tearful-sonnet", + "type": "slot_level_5", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2066, + "fields": { + "parent": "a5e-ag_tearful-sonnet", + "type": "slot_level_6", + "damage_roll": "6d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2067, + "fields": { + "parent": "a5e-ag_tearful-sonnet", + "type": "slot_level_7", + "damage_roll": "8d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2068, + "fields": { + "parent": "a5e-ag_tearful-sonnet", + "type": "slot_level_8", + "damage_roll": "10d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2069, + "fields": { + "parent": "a5e-ag_tearful-sonnet", + "type": "slot_level_9", + "damage_roll": "12d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2070, + "fields": { + "parent": "a5e-ag_telekinesis", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2072, + "fields": { + "parent": "a5e-ag_telekinesis", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2073, + "fields": { + "parent": "a5e-ag_telekinesis", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2074, + "fields": { + "parent": "a5e-ag_telekinesis", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2075, + "fields": { + "parent": "a5e-ag_telekinesis", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2076, + "fields": { + "parent": "a5e-ag_telepathic-bond", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2077, + "fields": { + "parent": "a5e-ag_telepathic-bond", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2079, + "fields": { + "parent": "a5e-ag_telepathic-bond", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1d4+1 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2080, + "fields": { + "parent": "a5e-ag_telepathic-bond", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "2d4+1 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2081, + "fields": { + "parent": "a5e-ag_telepathic-bond", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "3d4+1 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2082, + "fields": { + "parent": "a5e-ag_telepathic-bond", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "4d4+1 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2083, + "fields": { + "parent": "a5e-ag_teleport", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2084, + "fields": { + "parent": "a5e-ag_teleport", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2085, + "fields": { + "parent": "a5e-ag_teleportation-circle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2086, + "fields": { + "parent": "a5e-ag_thaumaturgy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2087, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2089, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2090, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2091, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2092, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2093, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2094, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2095, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2096, + "fields": { + "parent": "a5e-ag_thunderwave", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2097, + "fields": { + "parent": "a5e-ag_time-stop", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2098, + "fields": { + "parent": "a5e-ag_tiny-hut", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2099, + "fields": { + "parent": "a5e-ag_tiny-hut", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2100, + "fields": { + "parent": "a5e-ag_tongues", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2101, + "fields": { + "parent": "a5e-ag_transport-via-plants", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2102, + "fields": { + "parent": "a5e-ag_travelers-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2103, + "fields": { + "parent": "a5e-ag_tree-stride", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2105, + "fields": { + "parent": "a5e-ag_tree-stride", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2106, + "fields": { + "parent": "a5e-ag_tree-stride", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2107, + "fields": { + "parent": "a5e-ag_tree-stride", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2108, + "fields": { + "parent": "a5e-ag_tree-stride", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2109, + "fields": { + "parent": "a5e-ag_true-polymorph", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2110, + "fields": { + "parent": "a5e-ag_true-resurrection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2111, + "fields": { + "parent": "a5e-ag_true-seeing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2112, + "fields": { + "parent": "a5e-ag_true-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2113, + "fields": { + "parent": "a5e-ag_unholy-star", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2114, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2115, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2117, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2118, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2119, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2120, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2121, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2122, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2123, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2124, + "fields": { + "parent": "a5e-ag_unseen-servant", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2125, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2127, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2128, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2129, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2130, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2131, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2132, + "fields": { + "parent": "a5e-ag_vampiric-touch", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2133, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2135, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2136, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2137, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2138, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2139, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2140, + "fields": { + "parent": "a5e-ag_venomous-succor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2141, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2142, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_1", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2143, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_2", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2144, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_3", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2145, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_4", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2146, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_5", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2147, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_6", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2148, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_7", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2149, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_8", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2150, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_9", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2151, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_10", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2152, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_11", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2153, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_12", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2154, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_13", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2155, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_14", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2156, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_15", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2157, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_16", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2158, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_17", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2159, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_18", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2160, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_19", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2161, + "fields": { + "parent": "a5e-ag_vicious-mockery", + "type": "player_level_20", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2162, + "fields": { + "parent": "a5e-ag_wall-of-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2164, + "fields": { + "parent": "a5e-ag_wall-of-fire", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2165, + "fields": { + "parent": "a5e-ag_wall-of-fire", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2166, + "fields": { + "parent": "a5e-ag_wall-of-fire", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2167, + "fields": { + "parent": "a5e-ag_wall-of-fire", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2168, + "fields": { + "parent": "a5e-ag_wall-of-fire", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2169, + "fields": { + "parent": "a5e-ag_wall-of-flesh", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2171, + "fields": { + "parent": "a5e-ag_wall-of-flesh", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2172, + "fields": { + "parent": "a5e-ag_wall-of-flesh", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2173, + "fields": { + "parent": "a5e-ag_wall-of-flesh", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2174, + "fields": { + "parent": "a5e-ag_wall-of-force", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2175, + "fields": { + "parent": "a5e-ag_wall-of-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2177, + "fields": { + "parent": "a5e-ag_wall-of-ice", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2178, + "fields": { + "parent": "a5e-ag_wall-of-ice", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2179, + "fields": { + "parent": "a5e-ag_wall-of-ice", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2180, + "fields": { + "parent": "a5e-ag_wall-of-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2181, + "fields": { + "parent": "a5e-ag_wall-of-thorns", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2183, + "fields": { + "parent": "a5e-ag_wall-of-thorns", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2184, + "fields": { + "parent": "a5e-ag_wall-of-thorns", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2185, + "fields": { + "parent": "a5e-ag_wall-of-thorns", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2186, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2188, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2189, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2190, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2191, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2192, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2193, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2194, + "fields": { + "parent": "a5e-ag_warding-bond", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2195, + "fields": { + "parent": "a5e-ag_warriors-instincts", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2197, + "fields": { + "parent": "a5e-ag_warriors-instincts", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2198, + "fields": { + "parent": "a5e-ag_warriors-instincts", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2199, + "fields": { + "parent": "a5e-ag_warriors-instincts", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2200, + "fields": { + "parent": "a5e-ag_warriors-instincts", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2201, + "fields": { + "parent": "a5e-ag_water-breathing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2202, + "fields": { + "parent": "a5e-ag_water-breathing", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2203, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2205, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2206, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2207, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2208, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2209, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2210, + "fields": { + "parent": "a5e-ag_water-walk", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2211, + "fields": { + "parent": "a5e-ag_web", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2213, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2214, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2215, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2216, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2217, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2218, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2219, + "fields": { + "parent": "a5e-ag_web", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2220, + "fields": { + "parent": "a5e-ag_weird", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2221, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2223, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2224, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2225, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2226, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2227, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2228, + "fields": { + "parent": "a5e-ag_whirlwind-kick", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2229, + "fields": { + "parent": "a5e-ag_wind-up", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2230, + "fields": { + "parent": "a5e-ag_wind-walk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2231, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2233, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2234, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2235, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2236, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2237, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2238, + "fields": { + "parent": "a5e-ag_wind-wall", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2239, + "fields": { + "parent": "a5e-ag_wish", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2240, + "fields": { + "parent": "a5e-ag_word-of-recall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2241, + "fields": { + "parent": "a5e-ag_wormway", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2242, + "fields": { + "parent": "a5e-ag_wormway", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2243, + "fields": { + "parent": "a5e-ag_writhing-transformation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2244, + "fields": { + "parent": "a5e-ag_writhing-transformation", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2245, + "fields": { + "parent": "a5e-ag_zone-of-truth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +} +] diff --git a/data/v2/kobold-press/deepm/Spell.json b/data/v2/kobold-press/deepm/Spell.json index 9621a02a..37abee25 100644 --- a/data/v2/kobold-press/deepm/Spell.json +++ b/data/v2/kobold-press/deepm/Spell.json @@ -1,16169 +1,16169 @@ [ - { - "model": "api_v2.spell", - "pk": "deepm_abhorrent-apparition", - "fields": { - "name": "Abhorrent Apparition", - "desc": "You imbue a terrifying visage onto a gourd and toss it ahead of you to a spot of your choosing within range. Each creature within 15 feet of that spot takes 6d8 psychic damage and becomes frightened of you for 1 minute; a successful Wisdom saving throw halves the damage and negates the fright. A creature frightened in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 4, - "school": "illusion", - "higher_level": "If you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": false, - "material": true, - "material_specified": "a gourd with a face carved on it", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_accelerate", - "fields": { - "name": "Accelerate", - "desc": "Choose up to three willing creatures within range, which can include you. For the duration of the spell, each target’s walking speed is doubled. Each target can also use a bonus action on each of its turns to take the Dash action, and it has advantage on Dexterity saving throws.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a toy top", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_acid-gate", - "fields": { - "name": "Acid Gate", - "desc": "You create a portal of swirling, acidic green vapor in an unoccupied space you can see. This portal connects with a target destination within 100 miles that you are personally familiar with and have seen with your own eyes, such as your wizard’s tower or an inn you have stayed at. You and up to three creatures of your choice can enter the portal and pass through it, arriving at the target destination (or within 10 feet of it, if it is currently occupied). If the target destination doesn’t exist or is inaccessible, the spell automatically fails and the gate doesn’t form.\n\nAny creature that tries to move through the gate, other than those selected by you when the spell was cast, takes 10d6 acid damage and is teleported 1d100 × 10 feet in a random, horizontal direction. If the creature makes a successful Intelligence saving throw, it can’t be teleported by this portal, but it still takes acid damage when it enters the acid-filled portal and every time it ends its turn in contact with it.\n", - "document": "deepm", - "level": 7, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you can allow one additional creature to use the gate for each slot level above 7th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of acid and a polished silver mirror worth 125 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "acid" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_acid-rain", - "fields": { - "name": "Acid Rain", - "desc": "You unleash a storm of swirling acid in a cylinder 20 feet wide and 30 feet high, centered on a point you can see. The area is heavily obscured by the driving acidfall. A creature that starts its turn in the area or that enters the area for the first time on its turn takes 6d6 acid damage, or half as much damage if it makes a successful Dexterity saving throw. A creature takes half as much damage from the acid (as if it had made a successful saving throw) at the start of its first turn after leaving the affected area.\n", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d6 for each slot level above 5th.", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of acid", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "acid" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_adjust-position", - "fields": { - "name": "Adjust Position", - "desc": "You adjust the location of an ally to a better tactical position. You move one willing creature within range 5 feet. This movement does not provoke opportunity attacks. The creature moves bodily through the intervening space (as opposed to teleporting), so there can be no physical obstacle (such as a wall or a door) in the path.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target an additional willing creature for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_afflict-line", - "fields": { - "name": "Afflict Line", - "desc": "You invoke the darkest curses upon your victim and his or her descendants. This spell does not require that you have a clear path to your target, only that your target is within range. The target must make a successful Wisdom saving throw or be cursed until the magic is dispelled. While cursed, the victim has disadvantage on ability checks and saving throws made with the ability score that you used when you cast the spell. In addition, the target’s firstborn offspring is also targeted by the curse. That individual is allowed a saving throw of its own if it is currently alive, or it makes one upon its birth if it is not yet born when the spell is cast. If the target’s firstborn has already died, the curse passes to the target’s next oldest offspring.\n\n**Ritual Focus.** If you expend your ritual focus, the curse becomes hereditary, passing from firstborn to firstborn for the entire length of the family’s lineage until one of them successfully saves against the curse and throws off your dark magic.", - "document": "deepm", - "level": 9, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "1 mile", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a statuette carved in the likeness of the victim worth 1,250 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent; one generation", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_agonizing-mark", - "fields": { - "name": "Agonizing Mark", - "desc": "You choose a creature you can see within range to mark as your prey, and a ray of black energy issues forth from you. Until the spell ends, each time you deal damage to the target it must make a Charisma saving throw. On a failed save, it falls prone as its body is filled with torturous agony.", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_alchemical-form", - "fields": { - "name": "Alchemical Form", - "desc": "You transform into an amoebic form composed of highly acidic and poisonous alchemical jelly. While in this form:\n* you are immune to acid and poison damage and to the poisoned and stunned conditions;\n* you have resistance to nonmagical fire, piercing, and slashing damage;\n* you can’t speak, cast spells, use items or weapons, or manipulate objects;\n* your gear melds into your body and reappears when the spell ends;\n* you don't need to breathe;\n* your speed is 20 feet;\n* your size doesn’t change, but you can move through and between obstructions as if you were two size categories smaller; and\n* you gain the following action: **Melee Weapon Attack:** spellcasting ability modifier + proficiency bonus to hit, range 5 ft., one target; **Hit:** 4d6 acid or poison damage (your choice), and the target must make a successful Constitution saving throw or be poisoned until the start of your next turn.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of acid, poison, or alchemist's fire", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ale-dritch-blast", - "fields": { - "name": "Ale-dritch Blast", - "desc": "A stream of ice-cold ale blasts from your outstretched hands toward a creature or object within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage and it must make a successful Constitution saving throw or be poisoned until the end of its next turn. A targeted creature has disadvantage on the saving throw if it has drunk any alcohol within the last hour.", - "document": "deepm", - "level": 0, - "school": "conjuration", - "higher_level": "The damage increases when you reach higher levels: 2d8 at 5th level, 3d8 at 11th level, and 4d8 at 17th level.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ally-aegis", - "fields": { - "name": "Ally Aegis", - "desc": "When you see an ally within range in imminent danger, you can use your reaction to protect that creature with a shield of magical force. Until the start of your next turn, your ally has a +5 bonus to AC and is immune to force damage. In addition, if your ally must make a saving throw against an enemy’s spell that deals damage, the ally takes half as much damage on a failed saving throw and no damage on a successful save. Ally aegis offers no protection, however, against psychic damage from any source.\n", - "document": "deepm", - "level": 6, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can target one additional ally for each slot level above 6th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_alone", - "fields": { - "name": "Alone", - "desc": "You cause a creature within range to believe its allies have been banished to a different realm. The target must succeed on a Wisdom saving throw, or it treats its allies as if they were invisible and silenced. The affected creature cannot target, perceive, or otherwise interact with its allies for the duration of the spell. If one of its allies hits it with a melee attack, the affected creature can make another Wisdom saving throw. On a successful save, the spell ends.", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_alter-arrows-fortune", - "fields": { - "name": "Alter Arrow’s Fortune", - "desc": "You clap your hands, setting off a chain of tiny events that culminate in throwing off an enemy’s aim. When an enemy makes a ranged attack with a weapon or a spell that hits one of your allies, this spell causes the enemy to reroll the attack roll unless the enemy makes a successful Charisma saving throw. The attack is resolved using the lower of the two rolls (effectively giving the enemy disadvantage on the attack).", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_altheas-travel-tent", - "fields": { - "name": "Althea’s Travel Tent", - "desc": "You touch an ordinary, properly pitched canvas tent to create a space where you and a companion can sleep in comfort. From the outside, the tent appears normal, but inside it has a small foyer and a larger bedchamber. The foyer contains a writing desk with a chair; the bedchamber holds a soft bed large enough to sleep two, a small nightstand with a candle, and a small clothes rack. The floor of both rooms is a clean, dry, hard-packed version of the local ground. When the spell ends, the tent and the ground return to normal, and any creatures inside the tent are expelled to the nearest unoccupied spaces.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When the spell is cast using a 3rd-level slot, the foyer becomes a dining area with seats for six and enough floor space for six people to sleep, if they bring their own bedding. The sleeping room is unchanged. With a 4th-level slot, the temperature inside the tent is comfortable regardless of the outside temperature, and the dining area includes a small kitchen. With a 5th-level slot, an unseen servant is conjured to prepare and serve food (from your supplies). With a 6th-level slot, a third room is added that has three two-person beds. With a slot of 7th level or higher, the dining area and second sleeping area can each accommodate eight persons.", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a canvas tent", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_amplify-gravity", - "fields": { - "name": "Amplify Gravity", - "desc": "This spell intensifies gravity in a 50-foot-radius area within range. Inside the area, damage from falling is quadrupled (2d6 per 5 feet fallen) and maximum damage from falling is 40d6. Any creature on the ground in the area when the spell is cast must make a successful Strength saving throw or be knocked prone; the same applies to a creature that enters the area or ends its turn in the area. A prone creature in the area must make a successful Strength saving throw to stand up. A creature on the ground in the area moves at half speed and has disadvantage on Dexterity checks and ranged attack rolls.", - "document": "deepm", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of lead", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_analyze-device", - "fields": { - "name": "Analyze Device", - "desc": "You discover all mechanical properties, mechanisms, and functions of a single construct or clockwork device, including how to activate or deactivate those functions, if appropriate.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a set of clockworker’s tools", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ancestors-strength", - "fields": { - "name": "Ancestor’s Strength", - "desc": "Choose a willing creature you can see and touch. Its muscles bulge and become invigorated. For the duration, the target is considered one size category larger for determining its carrying capacity, the maximum weight it can lift, push, or pull, and its ability to break objects. It also has advantage on Strength checks.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_anchoring-rope", - "fields": { - "name": "Anchoring Rope", - "desc": "You create a spectral lanyard. One end is tied around your waist, and the other end is magically anchored in the air at a point you select within range. You can choose to make the rope from 5 to 30 feet long, and it can support up to 800 pounds. The point where the end of the rope is anchored in midair can’t be moved after the spell is cast. If this spell is cast as a reaction while you are falling, you stop at a point of your choosing in midair and take no falling damage. You can dismiss the rope as a bonus action.\n", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional rope for every two slot levels above 1st. Each rope must be attached to a different creature.", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ancient-shade", - "fields": { - "name": "Ancient Shade", - "desc": "You grant the semblance of life and intelligence to a pile of bones (or even bone dust) of your choice within range, allowing the ancient spirit to answer the questions you pose. These remains can be the remnants of undead, including animated but unintelligent undead, such as skeletons and zombies. (Intelligent undead are not affected.) Though it can have died centuries ago, the older the spirit called, the less it remembers of its mortal life.\n\nUntil the spell ends, you can ask the ancient spirit up to five questions if it died within the past year, four questions if it died within ten years, three within one hundred years, two within one thousand years, and but a single question for spirits more than one thousand years dead. The ancient shade knows only what it knew in life, including languages. Answers are usually brief, cryptic, or repetitive, and the corpse is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This spell doesn’t return the creature’s soul to its body, only its animating spirit. Thus, the corpse can’t learn new information, doesn’t comprehend anything that has happened since it died, and can’t speculate about future events.", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "object", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "burning candles of planar origin worth 500 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_angelic-guardian", - "fields": { - "name": "Angelic Guardian", - "desc": "You conjure a minor celestial manifestation to protect a creature you can see within range. A faintly glowing image resembling a human head and shoulders hovers within 5 feet of the target for the duration. The manifestation moves to interpose itself between the target and any incoming attacks, granting the target a +2 bonus to AC.\n\nAlso, the first time the target gets a failure on a Dexterity saving throw while the spell is active, it can use its reaction to reroll the save. The spell then ends.", - "document": "deepm", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_animate-ghoul", - "fields": { - "name": "Animate Ghoul", - "desc": "You raise one Medium or Small humanoid corpse as a ghoul under your control. Any class levels or abilities the creature had in life are gone, replaced by the standard ghoul stat block.\n", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "When you cast this spell using a 3rd-level spell slot, it can be used on the corpse of a Large humanoid to create a Large ghoul. When you cast this spell using a spell slot of 4th level or higher, this spell creates a ghast, but the material component changes to an onyx gemstone worth at least 200 gp.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "piece of rotting flesh and an onyx gemstone worth 100 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_animate-greater-undead", - "fields": { - "name": "Animate Greater Undead", - "desc": "**Animate greater undead** creates an undead servant from a pile of bones or from the corpse of a Large or Huge humanoid within range. The spell imbues the target with a foul mimicry of life, raising it as an undead skeleton or zombie. A skeleton uses the stat block of a minotaur skeleton, or a zombie uses the stat block of an ogre zombie, unless a more appropriate stat block is available.\n\nThe creature is under your control for 24 hours, after which it stops obeying your commands. To maintain control of the creature for another 24 hours, you must cast this spell on it again while you have it controlled. Casting the spell for this purpose reasserts your control over up to four creatures you have previously animated rather than animating a new one.\n", - "document": "deepm", - "level": 6, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can reanimate one additional creature for each slot level above 6th.", - "target_type": "creature", - "range": "15 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pint of blood, a pound of flesh, and an ounce of bone dust, all of which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_animated-scroll", - "fields": { - "name": "Animated Scroll", - "desc": "The paper or parchment must be folded into the shape of an animal before casting the spell. It then becomes an animated paper animal of the kind the folded paper most closely resembles. The creature uses the stat block of any beast that has a challenge rating of 0. It is made of paper, not flesh and bone, but it can do anything the real creature can do: a paper owl can fly and attack with its talons, a paper frog can swim without disintegrating in water, and so forth. It follows your commands to the best of its ability, including carrying messages to a recipient whose location you know.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "The duration increases by 24 hours at 5th level (48 hours), 11th level (72 hours), and 17th level (96 hours).", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "intricately folded paper or parchment", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_anticipate-arcana", - "fields": { - "name": "Anticipate Arcana", - "desc": "Your foresight gives you an instant to ready your defenses against a magical attack. When you cast **anticipate arcana**, you have advantage on saving throws against spells and other magical effects until the start of your next turn.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_anticipate-attack", - "fields": { - "name": "Anticipate Attack", - "desc": "In a flash of foreknowledge, you spot an oncoming attack with enough time to avoid it. Upon casting this spell, you can move up to half your speed without provoking opportunity attacks. The oncoming attack still occurs but misses automatically if you are no longer within the attack’s range, are in a space that's impossible for the attack to hit, or can’t be targeted by that attack in your new position. If none of those circumstances apply but the situation has changed—you have moved into a position where you have cover, for example—then the attack is made after taking the new situation into account.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_anticipate-weakness", - "fields": { - "name": "Anticipate Weakness", - "desc": "With a quick glance into the future, you pinpoint where a gap is about to open in your foe’s defense, and then you strike. After casting **anticipate weakness**, you have advantage on attack rolls until the end of your turn.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_arcane-sight", - "fields": { - "name": "Arcane Sight", - "desc": "The recipient of this spell gains the benefits of both [true seeing](https://api.open5e.com/spells/true-seeing) and [detect magic](https://api.open5e.com/spells/detect-magic) until the spell ends, and also knows the name and effect of every spell he or she witnesses during the spell’s duration.", - "document": "deepm", - "level": 8, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of clear quartz", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_as-you-were", - "fields": { - "name": "As You Were", - "desc": "When cast on a dead or undead body, **as you were** returns that creature to the appearance it had in life while it was healthy and uninjured. The target must have a physical body; the spell fails if the target is normally noncorporeal.\n\nIf as you were is cast on a corpse, its effect is identical to that of [gentle repose](https://api.open5e.com/spells/gentle-repose), except that the corpse’s appearance is restored to that of a healthy, uninjured (albeit dead) person.\n\nIf the target is an undead creature, it also is restored to the appearance it had in life, even if it died from disease or from severe wounds, or centuries ago. The target looks, smells, and sounds (if it can speak) as it did in life. Friends and family can tell something is wrong only with a successful Wisdom (Insight) check against your spell save DC, and only if they have reason to be suspicious. (Knowing that the person should be dead is sufficient reason.) Spells and abilities that detect undead are also fooled, but the creature remains susceptible to Turn Undead as normal.\n\nThis spell doesn’t confer the ability to speak on undead that normally can’t speak. The creature eats, drinks, and breathes as a living creature does; it can mimic sleep, but it has no more need for it than it had before.\n\nThe effect lasts for a number of hours equal to your caster level. You can use an action to end the spell early. Any amount of radiant or necrotic damage dealt to the creature, or any effect that reduces its Constitution, also ends the spell.\n\nIf this spell is cast on an undead creature that isn’t your ally or under your control, it makes a Charisma saving throw to resist the effect.", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of flesh from a creature of the target’s race", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ashen-memories", - "fields": { - "name": "Ashen Memories", - "desc": "You touch the ashes, embers, or soot left behind by a fire and receive a vision of one significant event that occurred in the area while the fire was burning. For example, if you were to touch the cold embers of a campfire, you might witness a snippet of a conversation that occurred around the fire. Similarly, touching the ashes of a burned letter might grant you a vision of the person who destroyed the letter or the contents of the letter. You have no control over what information the spell reveals, but your vision usually is tied to the most meaningful event related to the fire. The GM determines the details of what is revealed.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_aspect-of-the-dragon", - "fields": { - "name": "Aspect of the Dragon", - "desc": "This spell draws out the ancient nature within your blood, allowing you to assume the form of any dragon-type creature of challenge 10 or less.\n\nYou assume the hit points and Hit Dice of the new form. When you revert to your normal form, you return to the number of hit points you had before you transformed. If you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. As long as the excess damage doesn’t reduce your normal form to 0 hit points, you aren’t knocked unconscious.\n\nYou retain the benefits of any features from your class, race, or other source and can use them, provided that your new form is physically capable of doing so. You can speak only if the dragon can normally speak.\n\nWhen you transform, you choose whether your equipment falls to the ground, merges into the new form, or is worn by it. Worn equipment functions normally, but equipment doesn’t change shape or size to match the new form. Any equipment that the new form can’t wear must either fall to the ground or merge into the new form. The GM has final say on whether the new form can wear or use a particular piece of equipment. Equipment that merges has no effect in that state.", - "document": "deepm", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dragon scale", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_aspect-of-the-serpent", - "fields": { - "name": "Aspect of the Serpent", - "desc": "A creature you touch takes on snakelike aspects for the duration of the spell. Its tongue becomes long and forked, its canine teeth become fangs with venom sacs, and its pupils become sharply vertical. The target gains darkvision with a range of 60 feet and blindsight with a range of 30 feet. As a bonus action when you cast the spell, the target can make a ranged weapon attack with a normal range of 60 feet that deals 2d6 poison damage on a hit.\n\nAs an action, the target can make a bite attack using either Strength or Dexterity (Melee Weapon Attack: range 5 ft., one creature; Hit: 2d6 piercing damage), and the creature must make a successful DC 14 Constitution saving throw or be paralyzed for 1 minute. A creature paralyzed in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success).\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, both the ranged attack and bite attack damage increase by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dried snakeskin", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_aura-of-protection-or-destruction", - "fields": { - "name": "Aura of Protection or Destruction", - "desc": "When you cast this spell, you radiate an otherworldly energy that warps the fate of all creatures within 30 feet of you. Decide whether to call upon either a celestial or a fiend for aid. Choosing a celestial charges a 30-foot-radius around you with an aura of nonviolence; until the start of your next turn, every attack roll made by or against a creature inside the aura is treated as a natural 1. Choosing a fiend charges the area with an aura of violence; until the start of your next turn, every attack roll made by or against a creature inside the aura, including you, is treated as a natural 20.\n", - "document": "deepm", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can extend the duration by 1 round for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_auspicious-warning", - "fields": { - "name": "Auspicious Warning", - "desc": "Just in time, you call out a fortunate warning to a creature within range. The target rolls a d4 and adds the number rolled to an attack roll, ability check, or saving throw that it has just made and uses the new result for determining success or failure.", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_avoid-grievous-injury", - "fields": { - "name": "Avoid Grievous Injury", - "desc": "You cast this spell when a foe strikes you with a critical hit but before damage dice are rolled. The critical hit against you becomes a normal hit.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_avronins-astral-assembly", - "fields": { - "name": "Avronin’s Astral Assembly", - "desc": "You alert a number of creatures that you are familiar with, up to your spellcasting ability modifier (minimum of 1), of your intent to communicate with them through spiritual projection. The invitation can extend any distance and even cross to other planes of existence. Once notified, the creatures can choose to accept this communication at any time during the duration of the spell.\n\nWhen a creature accepts, its spirit is projected into one of the gems used in casting the spell. The material body it leaves behind falls unconscious and doesn't need food or air. The creature's consciousness is present in the room with you, and its normal form appears as an astral projection within 5 feet of the gem its spirit occupies. You can see and hear all the creatures who have joined in the assembly, and they can see and hear you and each other as if they were present (which they are, astrally). They can't interact with anything physically.\n\nA creature can end the spell's effect on itself voluntarily at any time, as can you. When the effect ends or the duration expires, a creature's spirit returns to its body and it regains consciousness. A creature that withdraws voluntarily from the assembly can't rejoin it even if the spell is still active. If a gem is broken while occupied by a creature's astral self, the spirit in the gem returns to its body and the creature suffers two levels of exhaustion.", - "document": "deepm", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Unlimited", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a spool of fine copper wire and a gem worth at least 100 gp for each target", - "material_cost": "100.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_awaken-object", - "fields": { - "name": "Awaken Object", - "desc": "After spending the casting time enchanting a ruby along with a Large or smaller nonmagical object in humanoid form, you touch the ruby to the object. The ruby dissolves into the object, which becomes a living construct imbued with sentience. If the object has no face, a humanoid face appears on it in an appropriate location. The awakened object's statistics are determined by its size, as shown on the table below. An awakened object can use an action to make a melee weapon attack against a target within 5 feet of it. It has free will, acts independently, and speaks one language you know. It is initially friendly to anyone who assisted in its creation.\n\nAn awakened object's speed is 30 feet. If it has no apparent legs or other means of moving, it gains a flying speed of 30 feet and it can hover. Its sight and hearing are equivalent to a typical human's senses. Intelligence, Wisdom, and Charisma can be adjusted up or down by the GM to fit unusual circumstances. A beautiful statue might awaken with increased Charisma, for example, or the bust of a great philosopher could have surprisingly high Wisdom.\n\nAn awakened object needs no air, food, water, or sleep. Damage to an awakened object can be healed or mechanically repaired.\n\n| Size | HP | AC | Attack | Str | Dex | Con | Int | Wis | Cha |\n|-|-|-|-|-|-|-|-|-|-|\n| T | 20 | 18 | +8 to hit, 1d4 + 4 damage | 4 | 18 | 10 | 2d6 | 2d6 | 2d6 |\n| S | 25 | 16 | +6 to hit, 1d8 + 2 damage | 6 | 14 | 10 | 3d6 | 2d6 | 2d6 |\n| M | 40 | 13 | +5 to hit, 2d6 + 1 damage | 10 | 12 | 10 | 3d6 | 3d6 | 2d6 |\n| L | 50 | 10 | +6 to hit, 2d10 + 2 damage | 14 | 10 | 10 | 3d6 | 3d6 | 2d6 + 2 |\n\n", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a ruby worth at least 1,000 gp, which the spell consumes", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bad-timing", - "fields": { - "name": "Bad Timing", - "desc": "You point toward a creature that you can see and twist strands of chaotic energy around its fate. If the target gets a failure on a Charisma saving throw, the next attack roll or ability check the creature attempts within 10 minutes is made with disadvantage.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_batsense", - "fields": { - "name": "Batsense", - "desc": "For the duration of the spell, a creature you touch can produce and interpret squeaking sounds used for echolocation, giving it blindsight out to a range of 60 feet. The target cannot use its blindsight while deafened, and its blindsight doesn't penetrate areas of magical silence. While using blindsight, the target has disadvantage on Dexterity (Stealth) checks that rely on being silent. Additionally, the target has advantage on Wisdom (Perception) checks that rely on hearing.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a bit of fur from a bat’s ear", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_become-nightwing", - "fields": { - "name": "Become Nightwing", - "desc": "This spell imbues you with wings of shadow. For the duration of the spell, you gain a flying speed of 60 feet and a new attack action: Nightwing Breath.\n\n***Nightwing Breath (Recharge 4–6).*** You exhale shadow‐substance in a 30-foot cone. Each creature in the area takes 5d6 necrotic damage, or half the damage with a successful Dexterity saving throw.", - "document": "deepm", - "level": 6, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a crow’s eye", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d6", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_beguiling-bet", - "fields": { - "name": "Beguiling Bet", - "desc": "You issue a challenge against one creature you can see within range, which must make a successful Wisdom saving throw or become charmed. On a failed save, you can make an ability check as a bonus action. For example, you could make a Strength (Athletics) check to climb a difficult surface or to jump as high as possible; you could make a Dexterity (Acrobatics) check to perform a backflip; or you could make a Charisma (Performance) check to sing a high note or to extemporize a clever rhyme. You can choose to use your spellcasting ability modifier in place of the usual ability modifier for this check, and you add your proficiency bonus if you're proficient in the skill being used.\n\nThe charmed creature must use its next action (which can be a legendary action) to make the same ability check in a contest against your check. Even if the creature can't perform the action—it may not be close enough to a wall to climb it, or it might not have appendages suitable for strumming a lute—it must still attempt the action to the best of its capability. If you win the contest, the spell (and the contest) continues, with you making a new ability check as a bonus action on your turn. The spell ends when it expires or when the creature wins the contest. ", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for every two slot levels above 2nd. Each creature must be within 30 feet of another creature when you cast the spell.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_benediction", - "fields": { - "name": "Benediction", - "desc": "You call down a blessing in the name of an angel of protection. A creature you can see within range shimmers with a faint white light. The next time the creature takes damage, it rolls a d4 and reduces the damage by the result. The spell then ends.", - "document": "deepm", - "level": 0, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bestial-fury", - "fields": { - "name": "Bestial Fury", - "desc": "You instill primal fury into a creature you can see within range. The target must make a Charisma saving throw; a creature can choose to fail this saving throw. On a failure, the target must use its action to attack its nearest enemy it can see with unarmed strikes or natural weapons. For the duration, the target’s attacks deal an extra 1d6 damage of the same type dealt by its weapon, and the target can’t be charmed or frightened. If there are no enemies within reach, the target can use its action to repeat the saving throw, ending the effect on a success.\n\nThis spell has no effect on undead or constructs.\n", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_binding-oath", - "fields": { - "name": "Binding Oath", - "desc": "You seal an agreement between two or more willing creatures with an oath in the name of the god of justice, using ceremonial blessings during which both the oath and the consequences of breaking it are set: if any of the sworn break this vow, they are struck by a curse. For each individual that does so, you choose one of the options given in the [bestow curse](https://api.open5e.com/spells/bestow-curse) spell. When the oath is broken, all participants are immediately aware that this has occurred, but they know no other details.\n\nThe curse effect of binding oath can’t be dismissed by [dispel magic](https://api.open5e.com/spells/dispel-magic), but it can be removed with [dispel evil and good](https://api.open5e.com/spells/dispel-evil-and-good)[remove curse](https://api.open5e.com/remove-curse), or [wish](https://api.open5e.com/spells/wish). Remove curse functions only if the spell slot used to cast it is equal to or higher than the spell slot used to cast **binding oath**. Depending on the nature of the oath, one creature’s breaking it may or may not invalidate the oath for the other targets. If the oath is completely broken, the spell ends for every affected creature, but curse effects already bestowed remain until dispelled.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_biting-arrow", - "fields": { - "name": "Biting Arrow", - "desc": "As part of the action used to cast this spell, you make a ranged weapon attack with a bow, a crossbow, or a thrown weapon. The effect is limited to a range of 120 feet despite the weapon’s range, and the attack is made with disadvantage if the target is in the weapon’s long range.\n\nIf the weapon attack hits, it deals damage as usual. In addition, the target becomes coated in thin frost until the start of your next turn. If the target uses its reaction before the start of your next turn, it immediately takes 1d6 cold damage and the spell ends.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "The spell’s damage, for both the ranged attack and the cold damage, increases by 1d6 when you reach 5th level (+1d6 and 2d6), 11th level (+2d6 and 3d6), and 17th level (+3d6 and 4d6).", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "an arrow or a thrown weapon", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "cold" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bitter-chains", - "fields": { - "name": "Bitter Chains", - "desc": "The spiked ring in your hand expands into a long, barbed chain to ensnare a creature you touch. Make a melee spell attack against the target. On a hit, the target is bound in metal chains for the duration. While bound, the target can move only at half speed and has disadvantage on attack rolls, saving throws, and Dexterity checks. If it moves more than 5 feet during a turn, it takes 3d6 piercing damage from the barbs.\n\nThe creature can escape from the chains by using an action and making a successful Strength or Dexterity check against your spell save DC, or if the chains are destroyed. The chains have AC 18 and 20 hit points.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a spiked metal ring", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": true, - "damage_roll": "3d6", - "damage_types": [ - "piercing" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_black-goats-blessing", - "fields": { - "name": "Black Goat’s Blessing", - "desc": "You raise your hand with fingers splayed and utter an incantation of the Black Goat with a Thousand Young. Your magic is blessed with the eldritch virility of the All‑Mother. The target has disadvantage on saving throws against spells you cast until the end of your next turn.", - "document": "deepm", - "level": 0, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_black-hand", - "fields": { - "name": "Black Hand", - "desc": "You gather the powers of darkness into your fist and fling dark, paralyzing flame at a target within 30 feet. If you make a successful ranged spell attack, this spell siphons vitality from the target into you. For the duration, the target has disadvantage (and you have advantage) on attack rolls, ability checks, and saving throws made with Strength, Dexterity, or Constitution. An affected target makes a Constitution saving throw (with disadvantage) at the end of its turn, ending the effect on a success.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_black-ribbons", - "fields": { - "name": "Black Ribbons", - "desc": "You pull pieces of the plane of shadow into your own reality, causing a 20-foot cube to fill with inky ribbons that turn the area into difficult terrain and wrap around nearby creatures. Any creature that ends its turn in the area becomes restrained by the ribbons until the end of its next turn, unless it makes a successful Dexterity saving throw. Once a creature succeeds on this saving throw, it can’t be restrained again by the ribbons, but it’s still affected by the difficult terrain.", - "document": "deepm", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "40 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of ribbon", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_black-sunshine", - "fields": { - "name": "Black Sunshine", - "desc": "You hold up a flawed pearl and it disappears, leaving behind a magic orb in your hand that pulses with dim purple light. Allies that you designate become invisible if they're within 60 feet of you and if light from the orb can reach the space they occupy. An invisible creature still casts a faint, purple shadow.\n\nThe orb can be used as a thrown weapon to attack an enemy. On a hit, the orb explodes in a flash of light and the spell ends. The targeted enemy and each creature within 10 feet of it must make a successful Dexterity saving throw or be blinded for 1 minute. A creature blinded in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "deepm", - "level": 8, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a discolored pearl, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_black-swan-storm", - "fields": { - "name": "Black Swan Storm", - "desc": "You call forth a whirlwind of black feathers that fills a 5-foot cube within range. The feathers deal 2d8 force damage to creatures in the cube’s area and radiate darkness, causing the illumination level within 20 feet of the cube to drop by one step (from bright light to dim light, and from dim light to darkness). Creatures that make a successful Dexterity saving throw take half the damage and are still affected by the change in light.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the feathers deal an extra 1d8 force damage for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a feather from a black swan", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_black-well", - "fields": { - "name": "Black Well", - "desc": "You summon a seething sphere of dark energy 5 feet in diameter at a point within range. The sphere pulls creatures toward it and devours the life force of those it envelops. Every creature other than you that starts its turn within 90 feet of the black well must make a successful Strength saving throw or be pulled 50 feet toward the well. A creature pulled into the well takes 6d8 necrotic damage and is stunned; a successful Constitution saving throw halves the damage and causes the creature to become incapacitated. A creature that starts its turn inside the well also makes a Constitution saving throw; the creature is stunned on a failed save or incapacitated on a success. An incapacitated creature that leaves the well recovers immediately and can take actions and reactions on that turn. A creature takes damage only upon entering the well—it takes no additional damage for remaining there—but if it leaves the well and is pulled back in again, it takes damage again. A total of nine Medium creatures, three Large creatures, or one Huge creature can be inside the well’s otherdimensional space at one time. When the spell’s duration ends, all creatures inside it tumble out in a heap, landing prone.\n", - "document": "deepm", - "level": 6, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage dealt by the well increases by 1d8—and the well pulls creatures an additional 5 feet—for each slot level above 6th.", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blade-of-my-brother", - "fields": { - "name": "Blade of my Brother", - "desc": "You touch a melee weapon that was used by an ally who is now dead, and it leaps into the air and flies to another ally (chosen by you) within 15 feet of you. The weapon enters that ally’s space and moves when the ally moves. If the weapon or the ally is forced to move more than 5 feet from the other, the spell ends.\n\nThe weapon acts on your turn by making an attack if a target presents itself. Its attack modifier equals your spellcasting level + the weapon’s inherent magical bonus, if any; it receives only its own inherent magical bonus to damage. The weapon fights for up to 4 rounds or until your concentration is broken, after which the spell ends and it falls to the ground.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "melee weapon owned by a dead ally of the target", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "4 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blade-of-wrath", - "fields": { - "name": "Blade of Wrath", - "desc": "You create a sword of pure white fire in your free hand. The blade is similar in size and shape to a longsword, and it lasts for the duration. The blade disappears if you let go of it, but you can call it forth again as a bonus action.\n\nYou can use your action to make a melee spell attack with the blade. On a hit, the target takes 2d8 fire damage and 2d8 radiant damage. An aberration, fey, fiend, or undead creature damaged by the blade must succeed on a Wisdom saving throw or be frightened until the start of your next turn.\n\nThe blade sheds bright light in a 20-foot radius and dim light for an additional 20 feet.\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, either the fire damage or the radiant damage (your choice) increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a rebuke of evil, written in Celestial", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": true, - "damage_roll": "2d8", - "damage_types": [ - "fire" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blazing-chariot", - "fields": { - "name": "Blazing Chariot", - "desc": "Calling upon the might of the angels, you conjure a flaming chariot made of gold and mithral in an unoccupied 10-foot‐square space you can see within range. Two horses made of fire and light pull the chariot. You and up to three other Medium or smaller creatures you designate can board the chariot (at the cost of 5 feet of movement) and are unharmed by the flames. Any other creature that touches the chariot or hits it (or a creature riding in it) with a melee attack while within 5 feet of the chariot takes 3d6 fire damage and 3d6 radiant damage. The chariot has AC 18 and 50 hit points, is immune to fire, poison, psychic, and radiant damage, and has resistance to all other nonmagical damage. The horses are not separate creatures but are part of the chariot. The chariot vanishes if it is reduced to 0 hit points, and any creature riding it falls out. The chariot has a speed of 50 feet and a flying speed of 40 feet.\n\nOn your turn, you can guide the chariot in place of your own movement. You can use a bonus action to direct it to take the Dash, Disengage, or Dodge action. As an action, you can use the chariot to overrun creatures in its path. On this turn, the chariot can enter a hostile creature’s space. The creature takes damage as if it had touched the chariot, is shunted to the nearest unoccupied space that it can occupy, and must make a successful Strength saving throw or fall prone in that space.", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small golden wheel worth 250 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "fire" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bleating-call", - "fields": { - "name": "Bleating Call", - "desc": "You create a sound on a point within range. The sound’s volume can range from a whisper to a scream, and it can be any sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.\n\nEach creature that starts its turn within 30 feet of the sound and can hear it must make a Wisdom saving throw. On a failed save, the target must take the Dash or Disengage action and move toward the sound by the safest available route on each of its turns. When it arrives to the source of the sound, the target must use its action to examine the sound. Once it has examined the sound, the target determines the sound is illusory and can no longer hear it, ending the spell’s effects on that target and preventing the target from being affected by the sound again for the duration of the spell. If a target takes damage from you or a creature friendly to you, it is no longer under the effects of this spell.\n\nCreatures that can’t be charmed are immune to this spell.", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "a bit of fur or hair from a young beast or humanoid", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bleed", - "fields": { - "name": "Bleed", - "desc": "Crackling energy coats the blade of one weapon you are carrying that deals slashing damage. Until the spell ends, when you hit a creature with the weapon, the weapon deals an extra 1d4 necrotic damage and the creature must make a Constitution saving throw. On a failed save, the creature suffers a bleeding wound. Each time you hit a creature with this weapon while it suffers from a bleeding wound, your weapon deals an extra 1 necrotic damage for each time you have previously hit the creature with this weapon (to a maximum of 10 necrotic damage).\n\nAny creature can take an action to stanch the bleeding wound by succeeding on a Wisdom (Medicine) check against your spell save DC. The wound also closes if the target receives magical healing. This spell has no effect on undead or constructs.", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bless-the-dead", - "fields": { - "name": "Bless the Dead", - "desc": "You grant a blessing to one deceased creature, enabling it to cross over to the realm of the dead in peace. A creature that benefits from **bless the dead** can’t become undead. The spell has no effect on living creatures or the undead.", - "document": "deepm", - "level": 0, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blessed-halo", - "fields": { - "name": "Blessed Halo", - "desc": "A nimbus of golden light surrounds your head for the duration. The halo sheds bright light in a 20-foot radius and dim light for an additional 20 feet.\n\nThis spell grants you a pool of 10 points of healing. When you cast the spell and as an action on subsequent turns during the spell’s duration, you can expend points from this pool to restore an equal number of hit points to one creature within 20 feet that you can see.\n\nAdditionally, you have advantage on Charisma checks made against good creatures within 20 feet.\n\nIf any of the light created by this spell overlaps an area of magical darkness created by a spell of 2nd level or lower, the spell that created the darkness is dispelled.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the spell’s pool of healing points increases by 5 for each spell slot above 2nd, and the spell dispels magical darkness created by a spell of a level equal to the slot used to cast this spell.", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blizzard", - "fields": { - "name": "Blizzard", - "desc": "A howling storm of thick snow and ice crystals appears in a cylinder 40 feet high and 40 feet in diameter within range. The area is heavily obscured by the swirling snow. When the storm appears, each creature in the area takes 8d8 cold damage, or half as much damage with a successful Constitution saving throw. A creature also makes this saving throw and takes damage when it enters the area for the first time on a turn or ends its turn there. In addition, a creature that takes cold damage from this spell has disadvantage on Constitution saving throws to maintain concentration until the start of its next turn.", - "document": "deepm", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d8", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blood-and-steel", - "fields": { - "name": "Blood and Steel", - "desc": "When you cast this spell, you cut your hand and take 1d4 slashing damage that can’t be healed until you take a long rest. You then touch a construct; it must make a successful Constitution saving throw or be charmed by you for the duration. If you or your allies are fighting the construct, it has advantage on the saving throw. Even constructs that are immune to charm effects can be affected by this spell.\n\nWhile the construct is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as, “Attack the ghouls,” “Block the bridge,” or, “Fetch that bucket.” If the construct completes the order and doesn’t receive further direction from you, it defends itself.\n\nYou can use your action to take total and precise control of the target. Until the end of your next turn, the construct takes only the actions you specify and does nothing you haven’t ordered it to do. During this time, you can also cause the construct to use a reaction, but doing this requires you to use your own reaction as well.\n\nEach time the construct takes damage, it makes a new Constitution saving throw against the spell. If the saving throw succeeds, the spell ends.\n\nIf the construct is already under your control when the spell is cast, it gains an Intelligence of 10 (unless its own Intelligence is higher, in which case it retains the higher score) for 4 hours. The construct is capable of acting independently, though it remains loyal to you for the spell’s duration. You can also grant the target a bonus equal to your Intelligence modifier on one skill in which you have proficiency.\n", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a 5th‑level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blood-armor", - "fields": { - "name": "Blood Armor", - "desc": "When you strike a foe with a melee weapon attack, you can immediately cast **blood armor** as a bonus action. The foe you struck must contain blood; if the target doesn’t bleed, the spell ends without effect. The blood flowing from your foe magically increases in volume and forms a suit of armor around you, granting you an Armor Class of 18 + your Dexterity modifier for the spell’s duration. This armor has no Strength requirement, doesn’t hinder spellcasting, and doesn’t incur disadvantage on Dexterity (Stealth) checks.\n\nIf the creature you struck was a celestial, **blood armor** also grants you advantage on Charisma saving throws for the duration of the spell.", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "you must have just struck a foe with a melee weapon", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blood-lure", - "fields": { - "name": "Blood Lure", - "desc": "You point at any location (a jar, a bowl, even a puddle) within range that contains at least a pint of blood. Each creature that feeds on blood and is within 60 feet of that location must make a Charisma saving throw. (This includes undead, such as vampires.) A creature that has Keen Smell or any similar scent-boosting ability has disadvantage on the saving throw, while undead have advantage on the saving throw. On a failed save, the creature is attracted to the blood and must move toward it unless impeded.\n\nOnce an affected creature reaches the blood, it tries to consume it, foregoing all other actions while the blood is present. A successful attack against an affected creature ends the effect, as does the consumption of the blood, which requires an action by an affected creature.", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a container or pool of blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blood-offering", - "fields": { - "name": "Blood Offering", - "desc": "You touch the corpse of a creature that isn’t undead or a construct and consume its life force. You must have dealt damage to the creature before it died, and it must have been dead for no more than 1 hour. You regain a number of hit points equal to 1d4 × the creature's challenge rating (minimum of 1d4). The creature can be restored to life only by means of a [true resurrection](https://api.open5e.com/spells/true-resurrection) or a [wish](https://api.open5e.com/spells/wish) spell.", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blood-puppet", - "fields": { - "name": "Blood Puppet", - "desc": "With a sample of its blood, you are able to magically control a creature’s actions, like a marionette on magical strings. Choose a creature you can see within range whose blood you hold. The target must succeed on a Constitution saving throw, or you gain control over its physical activity (as long as you interact with the blood material component each round). As a bonus action on your turn, you can direct the creature to perform various activities. You can specify a simple and general course of action, such as, “Attack that creature,” “Run over there,” or, “Fetch that object.” If the creature completes the order and doesn’t receive further direction from you, it defends and preserves itself to the best of its ability. The target is aware of being controlled. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a drop of blood from the target", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blood-scarab", - "fields": { - "name": "Blood Scarab", - "desc": "Your blood is absorbed into the beetle’s exoskeleton to form a beautiful, rubylike scarab that flies toward a creature of your choice within range. The target must make a successful Constitution saving throw or take 1d6 necrotic damage. You gain temporary hit points equal to the necrotic damage dealt.\n", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the number of scarabs increases by one for each slot level above 1st. You can direct the scarabs at the same target or at different targets. Each target makes a single saving throw, regardless of the number of scarabs targeting it.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a drop of the caster’s blood, and the exoskeleton of a scarab beetle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blood-spoor", - "fields": { - "name": "Blood Spoor", - "desc": "By touching a drop of your quarry’s blood (spilled or drawn within the past hour), you can follow the creature’s trail unerringly across any surface or under water, no matter how fast you are moving. If your quarry takes flight, you can follow its trail along the ground—or through the air, if you have the means to fly.\n\nIf your quarry moves magically (such as by way of a [dimension door](https://api.open5e.com/spells/dimension-door) or a [teleport](https://api.open5e.com/spells/teleport) spell), you sense its trail as a straight path leading from where the magical movement started to where it ended. Such a route might lead through lethal or impassable barriers. This spell even reveals the route of a creature using [pass without trace](https://api.open5e.com/spells/pass-without-trace), but it fails to locate a creature protected by [nondetection](https://api.open5e.com/spells/nondetection) or by other effects that prevent [scrying](https://api.open5e.com/spells/scrying) spells or cause [divination](https://api.open5e.com/spells/divination) spells to fail. If your quarry moves to another plane, its trail ends without trace, but **blood spoor** picks up the trail again if the caster moves to the same plane as the quarry before the spell’s duration expires.", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of the quarry’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blood-tide", - "fields": { - "name": "Blood Tide", - "desc": "When you cast this spell, a creature you designate within range must succeed on a Constitution saving throw or bleed from its nose, eyes, ears, and mouth. This bleeding deals no damage but imposes a –2 penalty on the creature’s Intelligence, Charisma, and Wisdom checks. **Blood tide** has no effect on undead or constructs.\n\nA bleeding creature might attract the attention of creatures such as stirges, sharks, or giant mosquitoes, depending on the circumstances.\n\nA [cure wounds](https://api.open5e.com/spells/cure-wounds) spell stops the bleeding before the duration of blood tide expires, as does a successful DC 10 Wisdom (Medicine) check.", - "document": "deepm", - "level": 0, - "school": "necromancy", - "higher_level": "The spell’s duration increases to 2 minutes when you reach 5th level, to 10 minutes when you reach 11th level, and to 1 hour when you reach 17th level.", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "4 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_blood-to-acid", - "fields": { - "name": "Blood to Acid", - "desc": "When you cast this spell, you designate a creature within range and convert its blood into virulent acid. The target must make a Constitution saving throw. On a failed save, it takes 10d12 acid damage and is stunned by the pain for 1d4 rounds. On a successful save, it takes half the damage and isn’t stunned.\n\nCreatures without blood, such as constructs and plants, are not affected by this spell. If **blood to acid** is cast on a creature composed mainly of blood, such as a [blood elemental](https://api.open5e.com/monsters/blood-elemental) or a [blood zombie](https://api.open5e.com/monsters/blood-zombie), the creature is slain by the spell if its saving throw fails.", - "document": "deepm", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d12", - "damage_types": [ - "acid" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bloodhound", - "fields": { - "name": "Bloodhound", - "desc": "You touch a willing creature to grant it an enhanced sense of smell. For the duration, that creature has advantage on Wisdom (Perception) checks that rely on smell and Wisdom (Survival) checks to follow tracks.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a 3rd-level spell slot, you also grant the target blindsight out to a range of 30 feet for the duration.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of ammonia", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bloodshot", - "fields": { - "name": "Bloodshot", - "desc": "You launch a jet of boiling blood from your eyes at a creature within range. You take 1d6 necrotic damage and make a ranged spell attack against the target. If the attack hits, the target takes 2d10 fire damage plus 2d8 psychic damage.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the fire damage increases by 1d10 for each slot level above 2nd.", - "target_type": "creature", - "range": "40 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "2d10", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bloody-hands", - "fields": { - "name": "Bloody Hands", - "desc": "You cause the hands (or other appropriate body parts, such as claws or tentacles) of a creature within range to bleed profusely. The target must succeed on a Constitution saving throw or take 1 necrotic damage each round and suffer disadvantage on all melee and ranged attack rolls that require the use of its hands for the spell’s duration.\n\nCasting any spell that has somatic or material components while under the influence of this spell requires a DC 10 Constitution saving throw. On a failed save, the spell is not cast but it is not lost; the casting can be attempted again in the next round.", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bloody-smite", - "fields": { - "name": "Bloody Smite", - "desc": "The next time during the spell’s duration that you hit a creature with a melee weapon attack, your weapon pulses with a dull red light, and the attack deals an extra 1d6 necrotic damage to the target. Until the spell ends, the target must make a Constitution saving throw at the start of each of its turns. On a failed save, it takes 1d6 necrotic damage, it bleeds profusely from the mouth, and it can’t speak intelligibly or cast spells that have a verbal component. On a successful save, the spell ends. If the target or an ally within 5 feet of it uses an action to tend the wound and makes a successful Wisdom (Medicine) check against your spell save DC, or if the target receives magical healing, the spell ends.", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bloom", - "fields": { - "name": "Bloom", - "desc": "You plant a silver acorn in solid ground and spend an hour chanting a litany of praises to the natural world, after which the land within 1 mile of the acorn becomes extremely fertile, regardless of its previous state. Any seeds planted in the area grow at twice the natural rate. Food harvested regrows within a week. After one year, the land slowly reverts to its normal fertility, unable to stave off the march of nature.\n\nChoose one of the following effects, which appears and grows immediately:\n* A field planted with vegetables of your choice, ready for harvest.\n* A thick forest of stout trees and ample undergrowth.\n* A grassland with wildflowers and fodder for grazing.\n* An orchard of fruit trees of your choice, growing in orderly rows and ready for harvest.\nLiving creatures that take a short rest within the area of a bloom spell receive the maximum hit points for Hit Dice expended. **Bloom** counters the effects of a [desolation](https://api.open5e.com/spells/desolation) spell.\n\n***Ritual Focus.*** If you expend your ritual focus, the duration becomes permanent.", - "document": "deepm", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "1 mile", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a silver acorn worth 500 gp, which is consumed in the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 year", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_boiling-blood", - "fields": { - "name": "Boiling Blood", - "desc": "You cause the blood within a creature’s body to boil with supernatural heat. Choose one creature that you can see within range that isn’t a construct or an undead. The target must make a Constitution saving throw. On a successful save, it takes 2d6 fire damage and the spell ends. On a failed save, the creature takes 4d6 fire damage and is blinded. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends. On a failure, the creature takes an additional 2d6 fire damage and remains blinded.\n", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_boiling-oil", - "fields": { - "name": "Boiling Oil", - "desc": "You conjure a shallow, 15-foot-radius pool of boiling oil centered on a point within range. The pool is difficult terrain, and any creature that enters the pool or starts its turn there must make a Dexterity saving throw. On a failed save, the creature takes 3d8 fire damage and falls prone. On a successful save, a creature takes half as much damage and doesn’t fall prone.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of oil", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bolster-undead", - "fields": { - "name": "Bolster Undead", - "desc": "You suffuse an area with negative energy to increase the difficulty of harming or affecting undead creatures.\n\nChoose up to three undead creatures within range. When a targeted creature makes a saving throw against being turned or against spells or effects that deal radiant damage, the target has advantage on the saving throw.\n", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional undead creature for each slot level above 1st.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a sprinkle of unholy water", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_booster-shot", - "fields": { - "name": "Booster Shot", - "desc": "You imbue a two-handed ranged weapon (typically a shortbow, longbow, light crossbow, or heavy crossbow) that you touch with a random magical benefit. While the spell lasts, a projectile fired from the weapon has an effect that occurs on a hit in addition to its normal damage. Roll a d6 to determine the additional effect for each casting of this spell.\n\n| D6 | EFFECT |\n|-|-|\n| 1 | 2d10 acid damage to all creatures within 10 feet of the target |\n| 2 | 2d10 lightning damage to the target and 1d10 lightning damage to all creatures in a 5-foot-wide line between the weapon and the target |\n| 3 | 2d10 necrotic damage to the target, and the target has disadvantage on its first attack roll before the start of the weapon user’s next turn |\n| 4 | 2d10 cold damage to the target and 1d10 cold damage to all other creatures in a 60-foot cone in front of the weapon |\n| 5 | 2d10 force damage to the target, and the target is pushed 20 feet |\n| 6 | 2d10 psychic damage to the target, and the target is stunned until the start of the weapon user’s next turn |\n\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, all damage increases by 1d10 for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "line", - "shape_magnitude": 60, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_boreass-breath", - "fields": { - "name": "Boreas’s Breath", - "desc": "You freeze standing water in a 20-foot cube or running water in a 10-foot cube centered on you. The water turns to solid ice. The surface becomes difficult terrain, and any creature that ends its turn on the ice must make a successful DC 10 Dexterity saving throw or fall prone.\n\nCreatures that are partially submerged in the water when it freezes become restrained. While restrained in this way, a creature takes 1d6 cold damage at the end of its turn. It can break free by using an action to make a successful Strength check against your spell save DC.\n\nCreatures that are fully submerged in the water when it freezes become incapacitated and cannot breathe. While incapacitated in this way, a creature takes 2d6 cold damage at the end of its turn. A trapped creature makes a DC 20 Strength saving throw after taking this damage at the end of its turn, breaking free from the ice on a success.\n\nThe ice has AC 10 and 15 hit points. It is vulnerable to fire damage, has resistance to nonmagical slashing and piercing damage, and is immune to cold, necrotic, poison, psychic, and thunder damage.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the size of the cube increases by 10 feet for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bottled-arcana", - "fields": { - "name": "Bottled Arcana", - "desc": "By touching an empty, stoppered glass container such as a vial or flask, you magically enable it to hold a single spell. To be captured, the spell must be cast within 1 round of casting **bottled arcana** and it must be intentionally cast into the container. The container can hold one spell of 3rd level or lower. The spell can be held in the container for as much as 24 hours, after which the container reverts to a mundane vessel and any magic inside it dissipates harmlessly.\n\nAs an action, any creature can unstop the container, thereby releasing the spell. If the spell has a range of self, the creature opening the container is affected; otherwise, the creature opening the container designates the target according to the captured spell’s description. If a creature opens the container unwittingly (not knowing that the container holds a spell), the spell targets the creature opening the container or is centered on its space instead (whichever is more appropriate). [Dispel magic](https://api.open5e.com/spells/dispel-magic) cast on the container targets **bottled arcana**, not the spell inside. If **bottled arcana** is dispelled, the container becomes mundane and the spell inside dissipates harmlessly.\n\nUntil the spell in the container is released, its caster can’t regain the spell slot used to cast that spell. Once the spell is released, its caster regains the use of that slot normally.\n", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the level of the spell the container can hold increases by one for every slot level above 5th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an empty glass container", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "see below", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_bottomless-stomach", - "fields": { - "name": "Bottomless Stomach", - "desc": "When you cast this spell, you gain the ability to consume dangerous substances and contain them in an extradimensional reservoir in your stomach. The spell allows you to swallow most liquids, such as acids, alcohol, poison, and even quicksilver, and hold them safely in your stomach. You are unaffected by swallowing the substance, but the spell doesn’t give you resistance or immunity to the substance in general; for example, you could safely drink a bucket of a black dragon’s acidic spittle, but you’d still be burned if you were caught in the dragon’s breath attack or if that bucket of acid were dumped over your head.\n\nThe spell allows you to store up to 10 gallons of liquid at one time. The liquid doesn’t need to all be of the same type, and different types don’t mix while in your stomach. Any liquid in excess of 10 gallons has its normal effect when you try to swallow it.\n\nAt any time before you stop concentrating on the spell, you can regurgitate up to 1 gallon of liquid stored in your stomach as a bonus action. The liquid is vomited into an adjacent 5-foot square. A target in that square must succeed on a DC 15 Dexterity saving throw or be affected by the liquid. The GM determines the exact effect based on the type of liquid regurgitated, using 1d6 damage of the appropriate type as the baseline.\n\nWhen you stop concentrating on the spell, its duration expires, or it’s dispelled, the extradimensional reservoir and the liquid it contains cease to exist.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_breathtaking-wind", - "fields": { - "name": "Breathtaking Wind", - "desc": "You target a creature with a blast of wintry air. That creature must make a successful Constitution saving throw or become unable to speak or cast spells with a vocal component for the duration of the spell.", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_breeze-compass", - "fields": { - "name": "Breeze Compass", - "desc": "When you cast **breeze compass**, you must clearly imagine or mentally describe a location. It doesn’t need to be a location you’ve been to as long as you know it exists on the Material Plane. Within moments, a gentle breeze arises and blows along the most efficient path toward that destination. Only you can sense this breeze, and whenever it brings you to a decision point (a fork in a passageway, for example), you must make a successful DC 8 Intelligence (Arcana) check to deduce which way the breeze indicates you should go. On a failed check, the spell ends. The breeze guides you around cliffs, lava pools, and other natural obstacles, but it doesn’t avoid enemies or hostile creatures.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a magnetized needle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_brimstone-infusion", - "fields": { - "name": "Brimstone Infusion", - "desc": "You infuse an ordinary flask of alchemist's fire with magical brimstone. While so enchanted, the alchemist's fire can be thrown 40 feet instead of 20, and it does 2d6 fire damage instead of 1d4. The Dexterity saving throw to extinguish the flames uses your spell save DC instead of DC 10. Infused alchemist's fire returns to its normal properties after 24 hours.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a flask of alchemist's fire and 5 gp worth of brimstone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_brittling", - "fields": { - "name": "Brittling", - "desc": "This spell uses biting cold to make a metal or stone object you touch become brittle and more easily shattered. The object’s hit points are reduced by a number equal to your level as a spellcaster, and Strength checks to shatter or break the object are made with advantage if they occur within 1 minute of the spell’s casting. If the object isn’t shattered during this time, it reverts to the state it was in before the spell was cast.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an icicle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_broken-charge", - "fields": { - "name": "Broken Charge", - "desc": "When an enemy that you can see moves to within 5 feet of you, you utter a perplexing word that alters the foe’s course. The enemy must make a successful Wisdom saving throw or take 2d4 psychic damage and use the remainder of its speed to move in a direction of your choosing.\n", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the target takes an additional 2d4 psychic damage for each slot level above 1st.", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_by-the-light-of-the-moon", - "fields": { - "name": "By the Light of the Moon", - "desc": "The area within 30 feet of you becomes bathed in magical moonlight. In addition to providing dim light, it highlights objects and locations that are hidden or that hold a useful clue. Until the spell ends, all Wisdom (Perception) and Intelligence (Investigation) checks made in the area are made with advantage.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_by-the-light-of-the-watchful-moon", - "fields": { - "name": "By the Light of the Watchful Moon", - "desc": "Regardless of the time of day or your location, you command the watchful gaze of the moon to illuminate threats to you and your allies. Shafts of bright moonlight, each 5 feet wide, shine down from the sky (or from the ceiling if you are indoors), illuminating all spaces within range that contain threats, whether they are enemies, traps, or hidden hazards. An enemy creature that makes a successful Charisma saving throw resists the effect and is not picked out by the moon’s glow.\n\nThe glow does not make invisible creatures visible, but it does indicate an invisible creature’s general location (somewhere within the 5-foot beam). The light continues to illuminate any target that moves, but a target that moves out of the spell’s area is no longer illuminated. A threat that enters the area after the spell is cast is not subject to the spell’s effect.", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_call-shadow-mastiff", - "fields": { - "name": "Call Shadow Mastiff", - "desc": "You conjure a [shadow mastiff](https://api.open5e.com/monsters/shadow-mastiff) from the plane of shadow. This creature obeys your verbal commands to aid you in battle or to seek out a specific creature. It has the body of a large dog with a smooth black coat, 2 feet high at the shoulder and weighing 200 pounds.\n\nThe mastiff is friendly to you and your companions. Roll initiative for the mastiff; it acts on its own turn. It obeys simple, verbal commands from you, within its ability to act. Giving a command takes no action on your part.\n\nThe mastiff disappears when it drops to 0 hit points or when the spell ends.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dog’s tooth", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_calm-of-the-storm", - "fields": { - "name": "Calm of the Storm", - "desc": "While visualizing the world as you wish it was, you lay your hands upon a creature other than yourself and undo the effect of a chaos magic surge that affected the creature within the last minute. Reality reshapes itself as if the surge never happened, but only for that creature.\n", - "document": "deepm", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the time since the chaos magic surge can be 1 minute longer for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an amethyst worth 250 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_candles-insight", - "fields": { - "name": "Candle’s Insight", - "desc": "**Candle’s insight** is cast on its target as the component candle is lit. The candle burns for up to 10 minutes unless it’s extinguished normally or by the spell’s effect. While the candle burns, the caster can question the spell’s target, and the candle reveals whether the target speaks truthfully. An intentionally misleading or partial answer causes the flame to flicker and dim. An outright lie causes the flame to flare and then go out, ending the spell. The candle judges honesty, not absolute truth; the flame burns steadily through even an outrageously false statement, as long as the target believes it’s true.\n\n**Candle’s insight** is used across society: by merchants while negotiating deals, by inquisitors investigating heresy, and by monarchs as they interview foreign diplomats. In some societies, casting candle’s insight without the consent of the spell’s target is considered a serious breach of hospitality.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a blessed candle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_carmello-voltas-irksome-preserves", - "fields": { - "name": "Carmello-Volta’s Irksome Preserves", - "desc": "At your command, delicious fruit jam oozes from a small mechanical device (such as a crossbow trigger, a lock, or a clockwork toy), rendering the device inoperable until the spell ends and the device is cleaned with a damp cloth. Cleaning away the jam takes an action, but doing so has no effect until the spell ends. One serving of the jam can be collected in a suitable container. If it's eaten (as a bonus action) within 24 hours, the jam restores 1d4 hit points. The jam's flavor is determined by the material component.\n\nThe spell can affect constructs, with two limitations. First, the target creature negates the effect with a successful Dexterity saving throw. Second, unless the construct is Tiny, only one component (an eye, a knee, an elbow, and so forth) can be disabled. The affected construct has disadvantage on attack rolls and ability checks that depend on the disabled component until the spell ends and the jam is removed.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small berry or a piece of fruit", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_catapult", - "fields": { - "name": "Catapult", - "desc": "You magically hurl an object or creature weighing 500 pounds or less 40 feet through the air in a direction of your choosing (including straight up). Objects hurled at specific targets require a spell attack roll to hit. A thrown creature takes 6d10 bludgeoning damage from the force of the throw, plus any appropriate falling damage, and lands prone. If the target of the spell is thrown against another creature, the total damage is divided evenly between them and both creatures are knocked prone.\n", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d10, the distance thrown increases by 10 feet, and the weight thrown increases by 100 pounds for each slot level above 6th.", - "target_type": "object", - "range": "400 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small platinum lever and fulcrum worth 400 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "6d10", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_catch-the-breath", - "fields": { - "name": "Catch the Breath", - "desc": "You can cast this spell as a reaction when you’re targeted by a breath weapon. Doing so gives you advantage on your saving throw against the breath weapon. If your saving throw succeeds, you take no damage from the attack even if a successful save normally only halves the damage.\n\nWhether your saving throw succeeded or failed, you absorb and store energy from the attack. On your next turn, you can make a ranged spell attack against a target within 60 feet. On a hit, the target takes 3d10 force damage. If you opt not to make this attack, the stored energy dissipates harmlessly.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage done by your attack increases by 1d10 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "3d10", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_caustic-blood", - "fields": { - "name": "Caustic Blood", - "desc": "Your blood becomes caustic when exposed to the air. When you take piercing or slashing damage, you can use your reaction to select up to three creatures within 30 feet of you. Each target takes 1d10 acid damage unless it makes a successful Dexterity saving throw.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the number of targets increases by one for each slot level above 2nd, to a maximum of six targets.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "1d10", - "damage_types": [ - "acid" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_caustic-torrent", - "fields": { - "name": "Caustic Torrent", - "desc": "A swirling jet of acid sprays from you in a direction you choose. The acid fills a line 60 feet long and 5 feet wide. Each creature in the line takes 14d6 acid damage, or half as much damage if it makes a successful Dexterity saving throw. A creature reduced to 0 hit points by this spell is killed, and its body is liquefied. In addition, each creature other than you that’s in the line or within 5 feet of it is poisoned for 1 minute by toxic fumes. Creatures that don’t breathe or that are immune to acid damage aren’t poisoned. A poisoned creature can repeat the Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "deepm", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a chip of bone pitted by acid", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "14d6", - "damage_types": [ - "acid" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_caustic-touch", - "fields": { - "name": "Caustic Touch", - "desc": "Your hand sweats profusely and becomes coated in a film of caustic slime. Make a melee spell attack against a creature you touch. On a hit, the target takes 1d8 acid damage. If the target was concentrating on a spell, it has disadvantage on its Constitution saving throw to maintain concentration.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "This spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "acid" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_celebration", - "fields": { - "name": "Celebration", - "desc": "You create a 30-foot-radius area around a point that you choose within range. An intelligent creature that enters the area or starts its turn there must make a Wisdom saving throw. On a failed save, the creature starts to engage in celebratory revelry: drinking, singing, laughing, and dancing. Affected creatures are reluctant to leave the area until the spell ends, preferring to continue the festivities. They forsake appointments, cease caring about their woes, and generally behave in a cordial (if not hedonistic) manner. This preoccupation with merrymaking occurs regardless of an affected creature’s agenda or alignment. Assassins procrastinate, servants join in the celebration rather than working, and guards abandon their posts.\n\nThe effect ends on a creature when it is attacked, takes damage, or is forced to leave the area. A creature that makes a successful saving throw can enter or leave the area without danger of being enchanted. A creature that fails the saving throw and is forcibly removed from the area must repeat the saving throw if it returns to the area.\n", - "document": "deepm", - "level": 7, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the spell lasts for an additional hour for each slot level above 7th.\n\n***Ritual Focus.*** If you expend your ritual focus, an unaffected intelligent creature must make a new saving throw every time it starts its turn in the area, even if it has previously succeeded on a save against the spell.", - "target_type": "area", - "range": "90 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small party favor", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_chains-of-the-goddess", - "fields": { - "name": "Chains of the Goddess", - "desc": "Choose a creature you can see within 90 feet. The target must make a successful Wisdom saving throw or be restrained by chains of psychic force and take 6d8 bludgeoning damage. A restrained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a successful save. While restrained in this way, the creature also takes 6d8 bludgeoning damage at the start of each of your turns.", - "document": "deepm", - "level": 5, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "1 foot of iron chain", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_chains-of-torment", - "fields": { - "name": "Chains of Torment", - "desc": "You are surrounded by an aura of dim light in a 10-foot radius as you conjure an iron chain that extends out to a creature you can see within 30 feet. The creature must make a successful Dexterity saving throw or be grappled (escape DC equal to your spell save DC). While grappled in this way, the creature is also restrained. A creature that’s restrained at the start of its turn takes 4d6 psychic damage. You can have only one creature restrained in this way at a time.\n\nAs an action, you can scan the mind of the creature that’s restrained by your chain. If the creature gets a failure on a Wisdom saving throw, you learn one discrete piece of information of your choosing known by the creature (such as a name, a password, or an important number). The effect is otherwise harmless.\n", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the psychic damage increases by 1d6 for each slot level above 4th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an iron chain link dipped in blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_champions-weapon", - "fields": { - "name": "Champion’s Weapon", - "desc": "A spectral version of a melee weapon of your choice materializes in your hand. It has standard statistics for a weapon of its kind, but it deals force damage instead of its normal damage type and it sheds dim light in a 10-foot radius. You have proficiency with this weapon for the spell’s duration. The weapon can be wielded only by the caster; the spell ends if the weapon is held by a creature other than you or if you start your turn more than 10 feet from the weapon.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the weapon deals an extra 1d8 force damage for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_chaotic-form", - "fields": { - "name": "Chaotic Form", - "desc": "You cause the form of a willing creature to become malleable, dripping and flowing according to the target’s will as if the creature were a vaguely humanoid-shaped ooze. The creature is not affected by difficult terrain, it has advantage on Dexterity (Acrobatics) checks made to escape a grapple, and it suffers no penalties when squeezing through spaces one size smaller than itself. The target’s movement is halved while it is affected by **chaotic form**.\n", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration increases by 10 minutes for each slot level above 4th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_chaotic-vitality", - "fields": { - "name": "Chaotic Vitality", - "desc": "Make a melee spell attack against a creature that has a number of Hit Dice no greater than your level and has at least 1 hit point. On a hit, you conjure pulsating waves of chaotic energy within the creature and yourself. After a brief moment that seems to last forever, your hit point total changes, as does the creature’s. Roll a d100 and increase or decrease the number rolled by any number up to your spellcasting level, then find the result on the Hit Point Flux table. Apply that result both to yourself and the target creature. Any hit points gained beyond a creature’s normal maximum are temporary hit points that last for 1 round per caster level.\n\nFor example, a 3rd-level spellcaster who currently has 17 of her maximum 30 hit points casts **chaotic vitality** on a creature with 54 hit points and rolls a 75 on the Hit Point Flux table. The two creatures have a combined total of 71 hit points. A result of 75 indicates that both creatures get 50 percent of the total, so the spellcaster and the target end up with 35 hit points each. In the spellcaster’s case, 5 of those hit points are temporary and will last for 3 rounds.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the maximum Hit Dice of the affected creature increases by 2 for each slot level above 2nd.\n ## Hit Point Flux \n| SIZE | HP |\n|-|-|\n| 01–09 | 0 |\n| 10–39 | 1 |\n| 40–69 | 25 percent of total |\n| 70–84 | 50 percent of total |\n| 85–94 | 75 percent of total |\n| 95–99 | 100 percent of total |\n| 100 | 200 percent of total, and both creatures gain the effect of a haste spell that lasts for 1 round per caster level |\n\n", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_chaotic-world", - "fields": { - "name": "Chaotic World", - "desc": "You throw a handful of colored cloth into the air while screaming a litany of disjointed phrases. A moment later, a 30-foot cube centered on a point within range fills with multicolored light, cacophonous sound, overpowering scents, and other confusing sensory information. The effect is dizzying and overwhelming. Each enemy within the cube must make a successful Intelligence saving throw or become blinded and deafened, and fall prone. An affected enemy cannot stand up or recover from the blindness or deafness while within the area, but all three conditions end immediately for a creature that leaves the spell’s area.", - "document": "deepm", - "level": 6, - "school": "illusion", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "seven irregular pieces of colored cloth that you throw into the air", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 30, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_chilling-words", - "fields": { - "name": "Chilling Words", - "desc": "You utter a short phrase and designate a creature within range to be affected by it. The target must make a Wisdom saving throw to avoid the spell. On a failed save, the target is susceptible to the phrase for the duration of the spell. At any later time while the spell is in effect, you and any of your allies within range when you cast the spell can use an action to utter the phrase, which causes the target to freeze in fear. Each of you can use the phrase against the target once only, and the target must be within 30 feet of the speaker for the phrase to be effective.\n\nWhen the target hears the phrase, it must make a successful Constitution saving throw or take 1d6 psychic damage and become restrained for 1 round. Whether this saving throw succeeds or fails, the target can’t be affected by the phrase for 1 minute afterward.\n\nYou can end the spell early by making a final utterance of the phrase (even if you’ve used the phrase on this target previously). On hearing this final utterance, the target takes 4d6 psychic damage and is restrained for 1 minute or, with a successful Constitution saving throw, it takes half the damage and is restrained for 1 round.", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a strip of paper with writing on it", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "psychic" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_chronal-lance", - "fields": { - "name": "Chronal Lance", - "desc": "You inflict the ravages of aging on up to three creatures within range, temporarily discomfiting them and making them appear elderly for a time. Each target must make a successful Wisdom saving throw, or its walking speed is halved (round up to the nearest 5-foot increment) and it has disadvantage on Dexterity checks (but not saving throws). An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_circle-of-wind", - "fields": { - "name": "Circle of Wind", - "desc": "Light wind encircles you, leaving you in the center of a mild vortex. For the duration, you gain a +2 bonus to your AC against ranged attacks. You also have advantage on saving throws against extreme environmental heat and against harmful gases, vapors, and inhaled poisons.", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a crystal ring", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_clash-of-glaciers", - "fields": { - "name": "Clash of Glaciers", - "desc": "You conjure up icy boulders that crush creatures in a line 100 feet long. Each creature in the area takes 5d6 bludgeoning damage plus 5d6 cold damage, or half the damage with a successful Dexterity saving throw.\n", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d6 for each slot level above 5th. You decide whether each extra die deals bludgeoning or cold damage.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of cracked glass", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_claws-of-darkness", - "fields": { - "name": "Claws of Darkness", - "desc": "You shape shadows into claws that grow from your fingers and drip inky blackness. The claws have a reach of 10 feet. While the spell lasts, you can make a melee spell attack with them that deals 1d10 cold damage.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_claws-of-the-earth-dragon", - "fields": { - "name": "Claws of the Earth Dragon", - "desc": "You summon the power of the earth dragon and shoot a ray at one target within 60 feet. The target falls prone and takes 6d8 bludgeoning damage from being slammed to the ground. If the target was flying or levitating, it takes an additional 1d6 bludgeoning damage per 10 feet it falls. If the target makes a successful Strength saving throw, damage is halved, it doesn’t fall, and it isn’t knocked prone.\n", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage done by the attack increases by 1d8 and the range increases by 10 feet for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_clearing-the-field", - "fields": { - "name": "Clearing the Field", - "desc": "With a harsh word and a vicious chopping motion, you cause every tree, shrub, and stump within 40 feet of you to sink into the ground, leaving the vacated area clear of plant life that might otherwise hamper movement or obscure sight. Overgrown areas that counted as difficult terrain become clear ground and no longer hamper movement. The original plant life instantly rises from the ground again when the spell ends or is dispelled. Plant creatures are not affected by **clearing the field**.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the spell lasts for an additional hour for each slot level above 2nd.\n\n***Ritual Focus.*** If you expend your ritual focus, plant creatures in the area must make a successful Constitution saving throw or be affected as though by a [enlarge/reduce](https://api.open5e.com/spells/enlargereduce) spell.", - "target_type": "area", - "range": "40 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_cloak-of-shadow", - "fields": { - "name": "Cloak of Shadow", - "desc": "You cloak yourself in shadow, giving you advantage on Dexterity (Stealth) checks against creatures that rely on sight.", - "document": "deepm", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_clockwork-bolt", - "fields": { - "name": "Clockwork Bolt", - "desc": "You imbue an arrow or crossbow bolt with clockwork magic just as you fire it at your target; spinning blades materialize on the missile after it strikes to further mutilate your enemy.\n\nAs part of the action used to cast this spell, you make a ranged weapon attack with a bow or a crossbow against one creature within range. If the attack hits, the missile embeds in the target. Unless the target (or an ally of it within 5 feet) uses an action to remove the projectile (which deals no additional damage), the target takes an additional 1d8 slashing damage at the end of its next turn from spinning blades that briefly sprout from the missile’s shaft. Afterward, the projectile reverts to normal.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "This spell deals more damage when you reach higher levels. At 5th level, the ranged attack deals an extra 1d8 slashing damage to the target, and the target takes an additional 1d8 slashing damage (2d8 total) if the embedded ammunition isn’t removed. Both damage amounts increase by 1d8 again at 11th level and at 17th level.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an arrow or crossbow bolt", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d8", - "damage_types": [ - "slashing" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_closing-in", - "fields": { - "name": "Closing In", - "desc": "Choose a creature you can see within range. The target must succeed on a Wisdom saving throw, which it makes with disadvantage if it’s in an enclosed space. On a failed save, the creature believes the world around it is closing in and threatening to crush it. Even in open or clear terrain, the creature feels as though it is sinking into a pit, or that the land is rising around it. The creature has disadvantage on ability checks and attack rolls for the duration, and it takes 2d6 psychic damage at the end of each of its turns. An affected creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_cobra-fangs", - "fields": { - "name": "Cobra Fangs", - "desc": "The spell causes the target to grow great, snake-like fangs. An unwilling creature must make a Wisdom saving throw to avoid the effect. The spell fails if the target already has a bite attack that deals poison damage.\n\nIf the target doesn’t have a bite attack, it gains one. The target is proficient with the bite, and it adds its Strength modifier to the attack and damage rolls. The damage is piercing and the damage die is a d4.\n\nWhen the target hits a creature with its bite attack, the creature must make a Constitution saving throw, taking 3d6 poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the target’s bite counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of snake venom or a patch of snakeskin", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_compelled-movement", - "fields": { - "name": "Compelled Movement", - "desc": "Choose two living creatures (not constructs or undead) you can see within range. Each must make a Charisma saving throw. On a failed save, a creature is compelled to use its movement to move toward the other creature. Its route must be as direct as possible, but it avoids dangerous terrain and enemies. If the creatures are within 5 feet of each other at the end of either one’s turn, their bodies fuse together. Fused creatures still take their own turns, but they can’t move, can’t use reactions, and have disadvantage on attack rolls, Dexterity saving throws, and Constitution checks to maintain concentration.\n\nA fused creature can use its action to make a Charisma saving throw. On a success, the creature breaks free and can move as it wants. It can become fused again, however, if it’s within 5 feet of a creature that’s still under the spell’s effect at the end of either creature’s turn.\n\n**Compelled movement** doesn’t affect a creature that can’t be charmed or that is incorporeal.\n", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the number of creatures you can affect increases by one for every two slot levels above 3rd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "the embalmed body of a millipede with its right legs removed, worth at least 50 gp", - "material_cost": "50.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_compelling-fate", - "fields": { - "name": "Compelling Fate", - "desc": "You view the actions of a single creature you can see through the influence of the stars, and you read what is written there. If the target fails a Charisma saving throw, you can predict that creature’s actions. This has the following effects:\n* You have advantage on attack rolls against the target.\n* For every 5 feet the target moves, you can move 5 feet (up to your normal movement) on the target’s turn when it has completed its movement. This is deducted from your next turn’s movement.\n* As a reaction at the start of the target’s turn, you can warn yourself and allies that can hear you of the target’s offensive intentions; any creature targeted by the target’s next attack gains a +2 bonus to AC or to its saving throw against that attack.\n", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration is extended by 1 round for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a sprinkling of silver dust worth 20 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_comprehend-wild-shape", - "fields": { - "name": "Comprehend Wild Shape", - "desc": "Give one of the carved totems to an ally while keeping the other yourself. For the duration of the spell, you and whoever holds the other totem can communicate while either of you is in a beast shape. This isn’t a telepathic link; you simply understand each other’s verbal communication, similar to the effect of a speak with animals spell. This effect doesn’t allow a druid in beast shape to cast spells.\n", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can increase the number of target creatures by two for each slot level above 2nd. Each creature must receive a matching carved totem.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "two or more matching carved totems", - "material_cost": null, - "material_consumed": false, - "target_count": 2, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_confound-senses", - "fields": { - "name": "Confound Senses", - "desc": "This spell befuddles the minds of up to six creatures that you can see within range, causing the creatures to see images of shifting terrain. Each target that fails an Intelligence saving throw is reduced to half speed until the spell ends because of confusion over its surroundings, and it makes ranged attack rolls with disadvantage.\n\nAffected creatures also find it impossible to keep track of their location. They automatically fail Wisdom (Survival) checks to avoid getting lost. Whenever an affected creature must choose between one or more paths, it chooses at random and immediately forgets which direction it came from.", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a broken compass", - "material_cost": null, - "material_consumed": false, - "target_count": 6, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_conjure-fey-hound", - "fields": { - "name": "Conjure Fey Hound", - "desc": "You summon a fey hound to fight by your side. A [hound of the night](https://api.open5e.com/monsters/hound-of-the-night) appears in an unoccupied space that you can see within range. The hound disappears when it drops to 0 hit points or when the spell ends.\n\nThe summoned hound is friendly to you and your companions. Roll initiative for the summoned hound, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the hound, it stands by your side and attacks nearby creatures that are hostile to you but otherwise takes no actions.\n", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you summon two hounds. When you cast this spell using a 9th-level spell slot, you summon three hounds.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a wooden or metal whistle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_conjure-forest-defender", - "fields": { - "name": "Conjure Forest Defender", - "desc": "When you cast this spell in a forest, you fasten sticks and twigs around a body. The body comes to life as a [forest defender](https://api.open5e.com/monsters/forest-defender). The forest defender is friendly to you and your companions. Roll initiative for the forest defender, which has its own turns. It obeys any verbal or mental commands that you issue to it (no action required by you), as long as you remain within its line of sight. If you don’t issue any commands to the forest defender, if you are out of its line of sight, or if you are unconscious, it defends itself from hostile creatures but otherwise takes no actions. A body sacrificed to form the forest defender is permanently destroyed and can be restored to life only by means of a [true resurrection](https://api.open5e.com/spells/true-resurrection) or a [wish](https://api.open5e.com/spells/wish) spell. You can have only one forest defender under your control at a time. If you cast this spell again, the previous forest defender crumbles to dust.\n", - "document": "deepm", - "level": 6, - "school": "conjuration", - "higher_level": "When you cast this spell using a 9th‐level spell slot, you summon two forest defenders instead of one, and you can control up to two forest defenders at a time.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "one humanoid body, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until destroyed", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_conjure-greater-spectral-dead", - "fields": { - "name": "Conjure Greater Spectral Dead", - "desc": "You summon an incorporeal undead creature that appears in an unoccupied space you can see within range. You choose one of the following options for what appears:\n* One [wraith](https://api.open5e.com/monsters/wraith)\n* One [spectral guardian](https://api.open5e.com/monsters/spectral-guardian)\n* One [wolf spirit swarm](https://api.open5e.com/monsters/wolf-spirit-swarm)\nSummoned creatures disappear when they drop to 0 hit points or when the spell ends.\n\nThe summoned creature doesn’t attack you or your companions for the duration. Roll initiative for the summoned creature, which has its own turns. The creature attacks your enemies and tries to stay within 60 feet of you, but it otherwise controls its own actions. The summoned creature despises being bound and might harm or impede you and your companions by any means at its disposal other than direct attacks if the opportunity arises. At the beginning of the creature’s turn, you can use your reaction to verbally command it. The creature obeys your commands for that turn, and you take 1d6 psychic damage at the end of the turn. If your concentration is broken, the creature doesn’t disappear. Instead, you can no longer command it, it becomes hostile to you and your companions, and it attacks you and your allies if it believes it has a chance to win the fight or to inflict meaningful harm; otherwise it flees. You can’t dismiss the uncontrolled creature, but it disappears 1 hour after you summoned it.\n", - "document": "deepm", - "level": 7, - "school": "conjuration", - "higher_level": "When you cast this spell using a 9th‐level spell slot, you summon a [deathwisp](https://api.open5e.com/monsters/deathwisp) or two [ghosts](https://api.open5e.com/monsters/ghost) instead.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of bone dust, a crystal prism worth at least 100 gp, and a platinum coin", - "material_cost": "100.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_conjure-minor-voidborn", - "fields": { - "name": "Conjure Minor Voidborn", - "desc": "You summon fiends or aberrations that appear in unoccupied spaces you can see within range. You choose one of the following options:\n* One creature of challenge rating 2 or lower\n* Two creatures of challenge rating 1 or lower\n* Four creatures of challenge rating 1/2 or lower\n* Eight creatures of challenge rating 1/4 or lower\nSummoned creatures disappear when they drop to 0 hit points or when the spell ends.\n\nThe summoned creatures do not directly attack you or your companions. Roll initiative for the summoned creatures as a group; they take their own turns on their initiative result. They attack your enemies and try to stay within 90 feet of you, but they control their own actions. The summoned creatures despise being bound, so they might harm or impede you and your companions with secondary effects (but not direct attacks) if the opportunity arises. At the beginning of the creatures’ turn, you can use your reaction to verbally command them. They obey your commands on that turn, and you take 1d6 psychic damage at the end of the turn.\n\nIf your concentration is broken, the spell ends but the creatures don’t disappear. Instead, you can no longer command them, and they become hostile to you and your companions. They will attack you and your allies if they believe they have a chance to win the fight or to inflict meaningful harm, but they won’t fight if they fear it would mean their own death. You can’t dismiss the creatures, but they disappear 1 hour after being summoned.\n", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a 7th‑or 9th-level spell slot, you choose one of the summoning options above, and more creatures appear­—twice as many with a 7th-level spell slot and three times as many with a 9th-level spell slot.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_conjure-scarab-swarm", - "fields": { - "name": "Conjure Scarab Swarm", - "desc": "You summon swarms of scarab beetles to attack your foes. Two swarms of insects (beetles) appear in unoccupied spaces that you can see within range.\n\nEach swarm disappears when it drops to 0 hit points or when the spell ends. The swarms are friendly to you and your allies. Make one initiative roll for both swarms, which have their own turns. They obey verbal commands that you issue to them (no action required by you). If you don’t issue any commands to them, they defend themselves from hostile creatures but otherwise take no actions.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a beetle carapace", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_conjure-shadow-titan", - "fields": { - "name": "Conjure Shadow Titan", - "desc": "You summon a shadow titan, which appears in an unoccupied space that you can see within range. The shadow titan’s statistics are identical to a [stone giant’s](https://api.open5e.com/monsters/stone-giant), with two differences: its camouflage ability works in dim light instead of rocky terrain, and the “rocks” it hurls are composed of shadow-stuff and cause cold damage.\n\nThe shadow titan is friendly to you and your companions. Roll initiative for the shadow titan; it acts on its own turn. It obeys verbal or telepathic commands that you issue to it (giving a command takes no action on your part). If you don’t issue any commands to the shadow titan, it defends itself from hostile creatures but otherwise takes no actions.\n\nThe shadow titan disappears when it drops to 0 hit points or when the spell ends.", - "document": "deepm", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_conjure-spectral-dead", - "fields": { - "name": "Conjure Spectral Dead", - "desc": "You summon a [shroud](https://api.open5e.com/monsters/shroud) to do your bidding. The creature appears in an unoccupied space that you can see within range. The creature is friendly to you and your allies for the duration. Roll initiative for the creature, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the creature, it defends itself from hostile creatures but otherwise takes no actions. The creature disappears when it drops to 0 hit points or when the spell ends.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a 3rd-level spell slot, you can choose to summon two [shrouds](https://api.open5e.com/monsters/shroud) or one [specter](https://api.open5e.com/monsters/specter). When you cast this spell with a spell slot of 4th level or higher, you can choose to summon four [shrouds](https://api.open5e.com/monsters/shroud) or one [will-o’-wisp](https://api.open5e.com/monsters/will-o-wisp).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of bone dust, a crystal prism, and a silver coin", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_conjure-undead", - "fields": { - "name": "Conjure Undead", - "desc": "You summon a [shadow](https://api.open5e.com/monsters/shadow) to do your bidding. The creature appears in an unoccupied space that you can see within range. The creature is friendly to you and your allies for the duration. Roll initiative for the shadow, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the creature, it defends itself from hostile creatures but otherwise takes no actions. The shadow disappears when the spell ends.\n", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a 4th-level spell slot, you can choose to summon a [wight](https://api.open5e.com/monsters/wight) or a [shadow](https://api.open5e.com/monsters/shadow). When you cast this spell with a spell slot of 5th level or higher, you can choose to summon a [ghost](https://api.open5e.com/monsters/ghost), a [shadow](https://api.open5e.com/monsters/shadow), or a [wight](https://api.open5e.com/monsters/wight).", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a humanoid skull", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_conjure-voidborn", - "fields": { - "name": "Conjure Voidborn", - "desc": "You summon a fiend or aberration of challenge rating 6 or lower, which appears in an unoccupied space that you can see within range. The creature disappears when it drops to 0 hit points or when the spell ends.\n\nRoll initiative for the creature, which takes its own turns. It attacks the nearest creature on its turn. At the start of the fiend’s turn, you can use your reaction to command the creature by speaking in Void Speech. It obeys your verbal command, and you take 2d6 psychic damage at the end of the creature’s turn.\n\nIf your concentration is broken, the spell ends but the creature doesn’t disappear. Instead, you can no longer issue commands to the fiend, and it becomes hostile to you and your companions. It will attack you and your allies if it believes it has a chance to win the fight or to inflict meaningful harm, but it won’t fight if it fears doing so would mean its own death. You can’t dismiss the creature, but it disappears 1 hour after you summoned it.\n", - "document": "deepm", - "level": 7, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the challenge rating increases by 1 for each slot level above 7th.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_consult-the-storm", - "fields": { - "name": "Consult the Storm", - "desc": "You ask a question of an entity connected to storms, such as an elemental, a deity, or a primal spirit, and the entity replies with destructive fury.\n\nAs part of the casting of the spell, you must speak a question consisting of fifteen words or fewer. Choose a point within range. A short, truthful answer to your question booms from that point. It can be heard clearly by any creature within 600 feet. Each creature within 15 feet of the point takes 7d6 thunder damage, or half as much damage with a successful Constitution saving throw.\n", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "7d6", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_converse-with-dragon", - "fields": { - "name": "Converse With Dragon", - "desc": "You gain limited telepathy, allowing you to communicate with any creature within 120 feet of you that has the dragon type, regardless of the creature’s languages. A dragon can choose to make a Charisma saving throw to prevent telepathic contact with itself.\n\nThis spell doesn’t change a dragon’s disposition toward you or your allies, it only opens a channel of communication. In some cases, unwanted telepathic contact can worsen the dragon’s attitude toward you.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_costly-victory", - "fields": { - "name": "Costly Victory", - "desc": "You select up to ten enemies you can see that are within range. Each target must make a Wisdom saving throw. On a failed save, that creature is cursed to burst into flame if it reduces one of your allies to 0 hit points before this spell’s duration expires. The affected creature takes 6d8 fire damage and 6d8 radiant damage when it bursts into flame.\n\nIf the affected creature is wearing flammable material (or is made of flammable material, such as a plant creature), it catches on fire and continues burning; the creature takes fire damage equal to your spellcasting ability modifier at the end of each of its turns until the creature or one of its allies within 5 feet of it uses an action to extinguish the fire.", - "document": "deepm", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "fire" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_create-ring-servant", - "fields": { - "name": "Create Ring Servant", - "desc": "You touch two metal rings and infuse them with life, creating a short-lived but sentient construct known as a [ring servant](https://api.open5e.com/monsters/ring-servant). The ring servant appears adjacent to you. It reverts form, changing back into the rings used to cast the spell, when it drops to 0 hit points or when the spell ends.\n\nThe ring servant is friendly to you and your companions for the duration. Roll initiative for the ring servant, which acts on its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the ring servant, it defends itself and you from hostile creatures but otherwise takes no actions.", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "two metal rings", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_create-thunderstaff", - "fields": { - "name": "Create Thunderstaff", - "desc": "After you cast **create thunderstaff** on a normal quarterstaff, the staff must then be mounted in a noisy location, such as a busy marketplace, and left there for 60 days. During that time, the staff gradually absorbs ambient sound.\n\nAfter 60 days, the staff is fully charged and can’t absorb any more sound. At that point, it becomes a **thunderstaff**, a +1 quarterstaff that has 10 charges. When you hit on a melee attack with the staff and expend 1 charge, the target takes an extra 1d8 thunder damage. You can cast a [thunderwave](https://api.open5e.com/spells/thunderwave) spell from the staff as a bonus action by expending 2 charges. The staff cannot be recharged.\n\nIf the final charge is not expended within 60 days, the staff becomes nonmagical again.", - "document": "deepm", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a quarterstaff", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d8", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_creeping-ice", - "fields": { - "name": "Creeping Ice", - "desc": "You create a sheet of ice that covers a 5-foot square within range and lasts for the spell’s duration. The iced area is difficult terrain.\n\nA creature in the area where you cast the spell must make a successful Strength saving throw or be restrained by ice that rapidly encases it. A creature restrained by the ice takes 2d6 cold damage at the start of its turn. A restrained creature can use an action to make a Strength check against your spell save DC, freeing itself on a success, but it has disadvantage on this check. The creature can also be freed (and the spell ended) by dealing at least 20 damage to the ice. The restrained creature takes half the damage from any attacks against the ice.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th to 6th level, the area increases to a 10-foot square, the ice deals 4d6 cold damage, and 40 damage is needed to melt each 5-foot square. When you cast this spell using a spell slot of 7th level or higher, the area increases to a 20-foot square, the ice deals 6d6 cold damage, and 60 damage is needed to melt each 5-foot square.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_crushing-curse", - "fields": { - "name": "Crushing Curse", - "desc": "You speak a word of Void Speech. Choose a creature you can see within range. If the target can hear you, it must succeed on a Wisdom saving throw or take 1d6 psychic damage and be deafened for 1 minute, except that it can still hear Void Speech. A creature deafened in this way can repeat the saving throw at the end of each of its turns, ending the effect on a success.", - "document": "deepm", - "level": 0, - "school": "enchantment", - "higher_level": "This spell’s damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_crushing-trample", - "fields": { - "name": "Crushing Trample", - "desc": "Upon casting this spell, you are filled with a desire to overrun your foes. You immediately move up to twice your speed in a straight line, trampling every foe in your path that is of your size category or smaller. If you try to move through the space of an enemy whose size is larger than yours, your movement (and the spell) ends. Each enemy whose space you move through must make a successful Strength saving throw or be knocked prone and take 4d6 bludgeoning damage. If you have hooves, add your Strength modifier (minimum of +1) to the damage.\n\nYou move through the spaces of foes whether or not they succeed on their Strength saving throws. You do not provoke opportunity attacks while moving under the effect of **crushing trample**.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_cure-beast", - "fields": { - "name": "Cure Beast", - "desc": "A beast of your choice that you can see within range regains a number of hit points equal to 1d6 + your spellcasting modifier.\n", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d6 for each slot level above 1st.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_curse-of-boreas", - "fields": { - "name": "Curse of Boreas", - "desc": "You designate a creature within range that you can see. If the target fails a Charisma saving throw, it and its equipment are frozen solid, becoming an inert statue of ice. The creature is effectively paralyzed, but mental activity does not cease, and signs of life are detectable; the creature still breathes and its heart continues to beat, though both acts are almost imperceptible. If the ice statue is broken or damaged while frozen, the creature will have matching damage or injury when returned to its original state. [Dispel magic](https://api.open5e.com/spells/dispel-magic) can’t end this spell, but it can allow the target to speak (but not move or cast spells) for a number of rounds equal to the spell slot used. [Greater restoration](https://api.open5e.com/spells/greater-restoration) or more potent magic is needed to free a creature from the ice.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_curse-of-dust", - "fields": { - "name": "Curse of Dust", - "desc": "You cast a curse on a creature within range that you’re familiar with, causing it to be unsatiated by food no matter how much it eats. This effect isn’t merely an issue of perception; the target physically can’t draw sustenance from food. Within minutes after the spell is cast, the target feels constant hunger no matter how much food it consumes. The target must make a Constitution saving throw 24 hours after the spell is cast and every 24 hours thereafter. On a failed save, the target gains one level of exhaustion. The effect ends when the duration expires or when the target makes two consecutive successful saves.", - "document": "deepm", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "500 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of spoiled food", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_curse-of-incompetence", - "fields": { - "name": "Curse of Incompetence", - "desc": "By making mocking gestures toward one creature within\nrange that can see you, you leave the creature incapable of\nperforming at its best. If the target fails on an Intelligence\nsaving throw, roll a d4 and refer to the following table to\ndetermine what the target does on its turn. An affected\ntarget repeats the saving throw at the end of each of its\nturns, ending the effect on itself on a success or applying\nthe result of another roll on the table on a failure.\n\n| D4 | RESULT |\n|-|-|\n| 1 | Target spends its turn shouting mocking words at caster and takes a -5 penalty to its initiative roll. |\n| 2 | Target stands transfixed and blinking, takes no action. |\n| 3 | Target flees or fights (50 percent chance of each). |\n| 4 | Target charges directly at caster, enraged. |\n\n", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_curse-of-the-grave", - "fields": { - "name": "Curse of the Grave", - "desc": "You tap your connection to death to curse a humanoid, making the grim pull of the grave stronger on that creature’s soul.\n\nChoose one humanoid you can see within range. The target must succeed on a Constitution saving throw or become cursed. A [remove curse](https://api.open5e.com/spells/remove-curse) spell or similar magic ends this curse. While cursed in this way, the target suffers the following effects:\n\n* The target fails death saving throws on any roll but a 20.\n* If the target dies while cursed, it rises 1 round later as a vampire spawn under your control and is no longer cursed.\n* The target, as a vampire spawn, seeks you out in an attempt to serve its new master. You can have only one vampire spawn under your control at a time through this spell. If you create another, the existing one turns to dust. If you or your companions do anything harmful to the target, it can make a Wisdom saving throw. On a success, it is no longer under your control.", - "document": "deepm", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of dirt from a freshly dug grave", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_curse-of-yig", - "fields": { - "name": "Curse of Yig", - "desc": "This spell transforms a Small, Medium, or Large creature that you can see within range into a [servant of Yig](https://api.open5e.com/monsters/servant-of-yig). An unwilling creature can attempt a Wisdom saving throw, negating the effect with a success. A willing creature is automatically affected and remains so for as long as you maintain concentration on the spell.\n\nThe transformation lasts for the duration or until the target drops to 0 hit points or dies. The target’s statistics, including mental ability scores, are replaced by the statistics of a servant of Yig. The transformed creature’s alignment becomes neutral evil, and it is both friendly to you and reverent toward the Father of Serpents. Its equipment is unchanged. If the transformed creature was unwilling, it makes a Wisdom saving throw at the end of each of its turns. On a successful save, the spell ends, the creature’s alignment and personality return to normal, and it regains its former attitude toward you and toward Yig.\n\nWhen it reverts to its normal form, the creature has the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form.", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of snake venom", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_curse-ring", - "fields": { - "name": "Curse Ring", - "desc": "You lay a curse upon a ring you touch that isn’t being worn or carried. When you cast this spell, select one of the possible effects of [bestow curse](https://api.open5e.com/spells/bestow-curse). The next creature that willingly wears the ring suffers the chosen effect with no saving throw. The curse transfers from the ring to the wearer once the ring is put on; the ring becomes a mundane ring that can be taken off, but the curse remains on the creature that wore the ring until the curse is removed or dispelled. An [identify](https://api.open5e.com/spells/identify) spell cast on the cursed ring reveals the fact that it is cursed.", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "250 gp worth of diamond dust, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent until discharged", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_cursed-gift", - "fields": { - "name": "Cursed Gift", - "desc": "**Cursed gift** imbues an object with a harmful magical effect that you or another creature in physical contact with you is currently suffering from. If you give this object to a creature that freely accepts it during the duration of the spell, the recipient must make a Charisma saving throw. On a failed save, the harmful effect is transferred to the recipient for the duration of the spell (or until the effect ends). Returning the object to you, destroying it, or giving it to someone else has no effect. Remove curse and comparable magic can relieve the individual who received the item, but the harmful effect still returns to the previous victim when this spell ends if the effect’s duration has not expired.\n", - "document": "deepm", - "level": 4, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration increases by 24 hours for each slot level above 4th.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an object worth at least 75 gp", - "material_cost": "75.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_cynophobia", - "fields": { - "name": "Cynophobia", - "desc": "Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or develop an overriding fear of canids, such as dogs, wolves, foxes, and worgs. For the duration, the first time the target sees a canid, the target must succeed on a Wisdom saving throw or become frightened of that canid until the end of its next turn. Each time the target sees a different canid, it must make the saving throw. In addition, the target has disadvantage on ability checks and attack rolls while a canid is within 10 feet of it.\n", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a 5th-level spell slot, the duration is 24 hours. When you use a 7th-level spell slot, the duration is 1 month. When you use a spell slot of 8th or 9th level, the spell lasts until it is dispelled.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dog’s tooth", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_daggerhawk", - "fields": { - "name": "Daggerhawk", - "desc": "When **daggerhawk** is cast on a nonmagical dagger, a ghostly hawk appears around the weapon. The hawk and dagger fly into the air and make a melee attack against one creature you select within 60 feet, using your spell attack modifier and dealing piercing damage equal to 1d4 + your Intelligence modifier on a hit. On your subsequent turns, you can use an action to cause the daggerhawk to attack the same target. The daggerhawk has AC 14 and, although it’s invulnerable to all damage, a successful attack against it that deals bludgeoning, force, or slashing damage sends the daggerhawk tumbling, so it can’t attack again until after your next turn.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dagger", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_dark-dementing", - "fields": { - "name": "Dark Dementing", - "desc": "A dark shadow creeps across the target’s mind and leaves a small bit of shadow essence behind, triggering a profound fear of the dark. A creature you designate within range must make a Charisma saving throw. If it fails, the target becomes frightened of you for the duration. A frightened creature can repeat the saving throw each time it takes damage, ending the effect on a success. While frightened in this way, the creature will not willingly enter or attack into a space that isn’t brightly lit. If it’s in dim light or darkness, the creature must either move toward bright light or create its own (by lighting a lantern, casting a [light](https://api.open5e.com/spells/light) spell, or the like).", - "document": "deepm", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a moonstone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_dark-heraldry", - "fields": { - "name": "Dark Heraldry", - "desc": "Dark entities herald your entry into combat, instilling an existential dread in your enemies. Designate a number of creatures up to your spellcasting ability modifier (minimum of one) that you can see within range and that have an alignment different from yours. Each of those creatures takes 5d8 psychic damage and becomes frightened of you; a creature that makes a successful Wisdom saving throw takes half as much damage and is not frightened.\n\nA creature frightened in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success. The creature makes this saving throw with disadvantage if you can see it.\n", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_dark-maw", - "fields": { - "name": "Dark Maw", - "desc": "Thick, penumbral ichor drips from your shadow-stained mouth, filling your mouth with giant shadow fangs. Make a melee spell attack against the target. On a hit, the target takes 1d8 necrotic damage as your shadowy fangs sink into it. If you have a bite attack (such as from a racial trait or a spell like [alter self](https://api.open5e.com/spells/after-self)), you can add your spellcasting ability modifier to the damage roll but not to your temporary hit points.\n\nIf you hit a humanoid target, you gain 1d4 temporary hit points until the start of your next turn.", - "document": "deepm", - "level": 0, - "school": "necromancy", - "higher_level": "This spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_dark-path", - "fields": { - "name": "Dark Path", - "desc": "You conjure a shadowy road between two points within range to create a bridge or path. This effect can bridge a chasm or create a smooth path through difficult terrain. The dark path is 10 feet wide and up to 50 feet long. It can support up to 500 pounds of weight at one time. A creature that adds more weight than the path can support sinks through the path as if it didn’t exist.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a lodestone", - "material_cost": null, - "material_consumed": false, - "target_count": 2, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_darkbolt", - "fields": { - "name": "Darkbolt", - "desc": "You utter a quick invocation to create a black nimbus around your hand, then hurl three rays of darkness at one or more targets in range. The rays can be divided between targets however you like. Make a ranged spell attack for each target (not each ray); each ray that hits deals 1d10 cold damage. A target that was hit by one or more rays must make a successful Constitution saving throw or be unable to use reactions until the start of its next turn.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_dead-walking", - "fields": { - "name": "Dead Walking", - "desc": "As part of the casting of this spell, you place a copper piece under your tongue. This spell makes up to six willing creatures you can see within range invisible to undead for the duration. Anything a target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for all targets if one target attacks or casts a spell.", - "document": "deepm", - "level": 2, - "school": "illusion", - "higher_level": "When you cast this spell using a 3rd-level spell slot, it lasts for 1 hour without requiring your concentration. When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 hour for each slot level above 3rd.", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a copper piece", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_deadly-sting", - "fields": { - "name": "Deadly Sting", - "desc": "You grow a 10-foot-long tail as supple as a whip, tipped with a horrible stinger. During the spell’s duration, you can use the stinger to make a melee spell attack with a reach of 10 feet. On a hit, the target takes 1d4 piercing damage plus 4d10 poison damage, and a creature must make a successful Constitution saving throw or become vulnerable to poison damage for the duration of the spell.", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a thorn", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "1d4", - "damage_types": [ - "piercing" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_death-gods-touch", - "fields": { - "name": "Death God’s Touch", - "desc": "This spell allows you to shred the life force of a creature you touch. You become invisible and make a melee spell attack against the target. On a hit, the target takes 10d10 necrotic damage. If this damage reduces the target to 0 hit points, the target dies. Whether the attack hits or misses, you remain invisible until the start of your next turn.\n", - "document": "deepm", - "level": 7, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 2d10 for each slot level above 7th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "10d10", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_decay", - "fields": { - "name": "Decay", - "desc": "Make a melee spell attack against a creature you touch. On a hit, the target takes 1d10 necrotic damage. If the target is a Tiny or Small nonmagical object that isn’t being worn or carried by a creature, it automatically takes maximum damage from the spell.", - "document": "deepm", - "level": 0, - "school": "necromancy", - "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of ash", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d10", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_decelerate", - "fields": { - "name": "Decelerate", - "desc": "You slow the flow of time around a creature within range that you can see. The creature must make a successful Wisdom saving throw, or its walking speed is halved (round up to the nearest 5-foot increment). The creature can repeat the saving throw at the end of each of its turns, ending the effect on a success. Until the spell ends, on a failed save the target’s speed is halved again at the start of each of your turns. For example, if a creature with a speed of 30 feet fails its initial saving throw, its speed drops to 15 feet. At the start of your next turn, the creature’s speed drops to 10 feet on a failed save, then to 5 feet on the following round on another failed save. **Decelerate** can’t reduce a creature’s speed to less than 5 feet.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can affect an additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a toy top", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_deep-breath", - "fields": { - "name": "Deep Breath", - "desc": "The recipient of this spell can breathe and function normally in thin atmosphere, suffering no ill effect at altitudes of up to 20,000 feet. If more than one creature is touched during the casting, the duration is divided evenly among all creatures touched.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 2 hours for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "2 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_defile-healing", - "fields": { - "name": "Defile Healing", - "desc": "You attempt to reverse the energy of a healing spell so that it deals damage instead of healing. If the healing spell is being cast with a spell slot of 5th level or lower, the slot is expended but the spell restores no hit points. In addition, each creature that was targeted by the healing spell takes necrotic damage equal to the healing it would have received, or half as much damage with a successful Constitution saving throw.\n", - "document": "deepm", - "level": 7, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 8th level, it can reverse a healing spell being cast using a spell slot of 6th level or lower. If you use a 9th-level spell slot, it can reverse a healing spell being cast using a spell slot of 7th level or lower.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_delay-potion", - "fields": { - "name": "Delay Potion", - "desc": "Upon casting this spell, you delay the next potion you consume from taking effect for up to 1 hour. You must consume the potion within 1 round of casting **delay potion**; otherwise the spell has no effect. At any point during **delay potion’s** duration, you can use a bonus action to cause the potion to go into effect. When the potion is activated, it works as if you had just drunk it. While the potion is delayed, it has no effect at all and you can consume and benefit from other potions normally.\n\nYou can delay only one potion at a time. If you try to delay the effect of a second potion, the spell fails, the first potion has no effect, and the second potion has its normal effect when you drink it.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour (see below)", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_delayed-healing", - "fields": { - "name": "Delayed Healing", - "desc": "Touch a living creature (not a construct or undead) as you cast the spell. The next time that creature takes damage, it immediately regains hit points equal to 1d4 + your spellcasting ability modifier (minimum of 1).\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a bloodstone worth 100 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_demon-within", - "fields": { - "name": "Demon Within", - "desc": "One humanoid of your choice within range becomes a gateway for a demon to enter the plane of existence you are on. You choose the demon’s type from among those of challenge rating of 4 or lower. The target must make a Wisdom saving throw. On a success, the gateway fails to open, and the spell has no effect. On a failed save, the target takes 4d6 force damage from the demon’s attempt to claw its way through the gate. For the spell’s duration, you can use a bonus action to further agitate the demon, dealing an additional 2d6 force damage to the target each time.\n\nIf the target drops to 0 hit points while affected by this spell, the demon tears through the body and appears in the same space as its now incapacitated or dead victim. You do not control this demon; it is free to either attack or leave the area as it chooses. The demon disappears after 24 hours or when it drops to 0 hit points.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of blood from a humanoid killed within the previous 24 hours", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "force" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_desiccating-breath", - "fields": { - "name": "Desiccating Breath", - "desc": "You spew forth a cloud of black dust that draws all moisture from a 30-foot cone. Each animal in the cone takes 4d10 necrotic damage, or half as much damage if it makes a successful Constitution saving throw. The damage is 6d10 for plants and plant creatures, also halved on a successful Constitution saving throw.", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a clump of dried clay", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d10", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_desolation", - "fields": { - "name": "Desolation", - "desc": "You plant an obsidian acorn in solid ground and spend an hour chanting a litany of curses to the natural world, after which the land within 1 mile of the acorn becomes infertile, regardless of its previous state. Nothing will grow there, and all plant life in the area dies over the course of a day. Plant creatures are not affected. Spells that summon plants, such as [entangle](https://api.open5e.com/spells/entangle), require an ability check using the caster’s spellcasting ability against your spell save DC. On a successful check, the spell functions normally; if the check fails, the spell is countered by **desolation**.\n\nAfter one year, the land slowly reverts to its normal fertility, unable to stave off the march of nature.\n\nA living creature that finishes a short rest within the area of a **desolation** spell halves the result of any Hit Dice it expends. Desolation counters the effects of a [bloom](https://api.open5e.com/spells/bloom) spell.\n\n***Ritual Focus.*** If you expend your ritual focus, the duration becomes permanent.", - "document": "deepm", - "level": 8, - "school": "necromancy", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an obsidian acorn worth 500 gp, which is consumed in the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 year", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_destructive-resonance", - "fields": { - "name": "Destructive Resonance", - "desc": "You shout a scathing string of Void Speech that assaults the minds of those before you. Each creature in a 15-foot cone that can hear you takes 4d6 psychic damage, or half that damage with a successful Wisdom saving throw. A creature damaged by this spell can’t take reactions until the start of its next turn.\n", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 15, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_detect-dragons", - "fields": { - "name": "Detect Dragons", - "desc": "You can detect the presence of dragons and other draconic creatures within your line of sight and 120 feet, regardless of disguises, illusions, and alteration magic such as polymorph. The information you uncover depends on the number of consecutive rounds you spend an action studying a subject or area. On the first round of examination, you detect whether any draconic creatures are present, but not their number, location, identity, or type. On the second round, you learn the number of such creatures as well as the general condition of the most powerful one. On the third and subsequent rounds, you make a DC 15 Intelligence (Arcana) check; if it succeeds, you learn the age, type, and location of one draconic creature. Note that the spell provides no information on the turn in which it is cast, unless you have the means to take a second action that turn.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_devas-wings", - "fields": { - "name": "Deva’s Wings", - "desc": "You touch a willing creature. The target grows feathery wings of pure white that grant it a flying speed of 60 feet and the ability to hover. When the target takes the Attack action, it can use a bonus action to make a melee weapon attack with the wings, with a reach of 10 feet. If the wing attack hits, the target takes bludgeoning damage equal to 1d6 + your spellcasting ability modifier and must make a successful Strength saving throw or fall prone. When the spell ends, the wings disappear, and the target falls if it was aloft.\n", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional target for each slot level above 4th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a wing feather from any bird", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_dimensional-shove", - "fields": { - "name": "Dimensional Shove", - "desc": "This spell pushes a creature you touch through a dimensional portal, causing it to disappear and then reappear a short distance away. If the target fails a Wisdom saving throw, it disappears from its current location and reappears 30 feet away from you in a direction of your choice. This travel can take it through walls, creatures, or other solid surfaces, but the target can't reappear inside a solid object or not on solid ground; instead, it reappears in the nearest safe, unoccupied space along the path of travel.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the target is shoved an additional 30 feet for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_disquieting-gaze", - "fields": { - "name": "Disquieting Gaze", - "desc": "Your eyes burn with scintillating motes of unholy crimson light. Until the spell ends, you have advantage on Charisma (Intimidation) checks made against creatures that can see you, and you have advantage on spell attack rolls that deal necrotic damage to creatures that can see your eyes.", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_disruptive-aura", - "fields": { - "name": "Disruptive Aura", - "desc": "A warping, prismatic aura surrounds and outlines each creature inside a 10-foot cube within range. The aura sheds dim light out to 10 feet, and the the locations of hidden or invisible creatures are outlined. If a creature in the area tries to cast a spell or use a magic item, it must make a Wisdom saving throw. On a successful save, the spell or item functions normally. On a failed save, the effect of the spell or the item is suppressed for the duration of the aura. Time spent suppressed counts against the duration of the spell’s or item’s effect.\n", - "document": "deepm", - "level": 8, - "school": "evocation", - "higher_level": "When you cast this spell using a 9th‐level spell slot, the cube is 20 feet on a side.", - "target_type": "creature", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_distracting-divination", - "fields": { - "name": "Distracting Divination", - "desc": "Foresight tells you when and how to be just distracting enough to foil an enemy spellcaster. When an adjacent enemy tries to cast a spell, make a melee spell attack against that enemy. On a hit, the enemy’s spell fails and has no effect; the enemy’s action is used up but the spell slot isn’t expended.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_distraction-cascade", - "fields": { - "name": "Distraction Cascade", - "desc": "With a flash of foresight, you throw a foe off balance. Choose one creature you can see that your ally has just declared as the target of an attack. Unless that creature makes a successful Charisma saving throw, attacks against it are made with advantage until the end of this turn.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_doom-of-blue-crystal", - "fields": { - "name": "Doom of Blue Crystal", - "desc": "You are surrounded by a field of glowing, blue energy lasting 3 rounds. Creatures within 5 feet of you, including yourself, must make a Constitution saving throw when the spell is cast and again at the start of each of your turns while the spell is in effect. A creature whose saving throw fails is restrained; a restrained creature whose saving throw fails is paralyzed; and a paralyzed creature whose saving throw fails is petrified and transforms into a statue of blue crystal. As with all concentration spells, you can end the field at any time (no action required). If you are turned to crystal, the spell ends after all affected creatures make their saving throws. Restrained and paralyzed creatures recover immediately when the spell ends, but petrification is permanent.\n\nCreatures turned to crystal can see, hear, and smell normally, but they don’t need to eat or breathe. If shatter is cast on a crystal creature, it must succeed on a Constitution saving throw against the caster’s spell save DC or be killed.\n\nCreatures transformed into blue crystal can be restored with dispel magic, greater restoration, or comparable magic.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a blue crystal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "3 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_doom-of-consuming-fire", - "fields": { - "name": "Doom of Consuming Fire", - "desc": "You are wreathed in cold, purple fire that damages creatures near you. You take 1d6 cold damage each round for the duration of the spell. Creatures within 5 feet of you when you cast the spell and at the start of each of your turns while the spell is in effect take 1d8 cold damage.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a 3rd-level spell slot, the purple fire extends 10 feet from you, you take 1d8 cold damage, and other creatures take 1d10 cold damage. When you cast this spell using a 4th‐level slot, the fire extends 15 feet from you, you take1d10 cold damage, and other creatures take 1d12 cold damage. When you cast this spell using a slot of 5th level or higher, the fire extends to 20 feet, you take 1d12 cold damage, and other creatures take 1d20 cold damage.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dead coal or a fistful of ashes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_doom-of-dancing-blades", - "fields": { - "name": "Doom of Dancing Blades", - "desc": "When you cast **doom of dancing blades**, you create 1d4 illusory copies of your weapon that float in the air 5 feet from you. These images move with you, spinning, shifting, and mimicking your attacks. When you are hit by a melee attack but the attack roll exceeded your Armor Class by 3 or less, one illusory weapon parries the attack; you take no damage and the illusory weapon is destroyed. When you are hit by a melee attack that an illusory weapon can’t parry (the attack roll exceeds your AC by 4 or more), you take only half as much damage from the attack, and an illusory weapon is destroyed. Spells and effects that affect an area or don’t require an attack roll affect you normally and don’t destroy any illusory weapons.\n\nIf you make a melee attack that scores a critical hit while **doom of dancing blades** is in effect on you, all your illusory weapons also strike the target and deal 1d8 bludgeoning, piercing, or slashing damage (your choice) each.\n\nThe spell ends when its duration expires or when all your illusory weapons are destroyed or expended.\n\nAn attacker must be able to see the illusory weapons to be affected. The spell has no effect if you are invisible or in total darkness or if the attacker is blinded.", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_doom-of-disenchantment", - "fields": { - "name": "Doom of Disenchantment", - "desc": "When you cast **doom of disenchantment**, your armor and shield glow with light. When a creature hits you with an attack, the spell counters any magic that provides the attack with a bonus to hit or to damage. For example, a +1 weapon would still be considered magical, but it gets neither +1 to hit nor +1 to damage on any attack against you.\n\nThe spell also suppresses other magical properties of the attack. A [sword of wounding](https://api.open5e.com/magicitems/sword-of-wounding), for example, can’t cause ongoing wounds on you, and you recover hit points lost to the weapon's damage normally. If the attack was a spell, it’s affected as if you had cast [counterspell](https://api.open5e.com/spells/counterspell), using Charisma as your spellcasting ability. Spells with a duration of instantaneous, however, are unaffected.", - "document": "deepm", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_doom-of-serpent-coils", - "fields": { - "name": "Doom of Serpent Coils", - "desc": "You drink a dose of venom or other poison and spread the effect to other living things around you. If the poison normally allows a saving throw, your save automatically fails. You suffer the effect of the poison normally before spreading the poison to all other living creatures within 10 feet of you. Instead of making the usual saving throw against the poison, each creature around you makes a Constitution saving throw against the spell. On a successful save, a target suffers no damage or other effect from the poison and is immune to further castings of **doom of serpent coils** for 24 hours. On a failed save, a target doesn't suffer the poison’s usual effect; instead, it takes 4d6 poison damage and is poisoned. While poisoned in this way, a creature repeats the saving throw at the end of each of its turns. On a subsequent failed save, it takes 4d6 poison damage and is still poisoned. On a subsequent successful save, it is no longer poisoned and is immune to further castings of **doom of serpent coils** for 24 hours.\n\nMultiple castings of this spell have no additional effect on creatures that are already poisoned by it. The effect can be ended by [protection from poison](https://api.open5e.com/spells/protection-from-poison) or comparable magic.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of poison", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "poison" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_doom-of-the-cracked-shield", - "fields": { - "name": "Doom of the Cracked Shield", - "desc": "Doom of the cracked shield is cast on a melee weapon. The next time that weapon is used, it destroys the target’s nonmagical shield or damages nonmagical armor, in addition to the normal effect of the attack. If the foe is using a nonmagical shield, it breaks into pieces. If the foe doesn’t use a shield, its nonmagical armor takes a -2 penalty to AC. If the target doesn’t use armor or a shield, the spell is expended with no effect.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_doom-of-the-earthen-maw", - "fields": { - "name": "Doom of the Earthen Maw", - "desc": "The ground within 30 feet of a point you designate turns into filthy and slippery muck. This spell affects sand, earth, mud, and ice, but not stone, wood, or other material. For the duration, the ground in the affected area is difficult terrain. A creature in the area when you cast the spell must succeed on a Strength saving throw or be restrained by the mud until the spell ends. A restrained creature can free itself by using an action to make a successful Strength saving throw. A creature that frees itself or that enters the area after the spell was cast is affected by the difficult terrain but doesn’t become restrained.\n\nEach round, a restrained creature sinks deeper into the muck. A Medium or smaller creature that is restrained for 3 rounds becomes submerged at the end of its third turn. A Large creature becomes submerged after 4 rounds. Submerged creatures begin suffocating if they aren’t holding their breath. A creature that is still submerged when the spell ends is sealed beneath the newly solidified ground. The creature can escape only if someone else digs it out or it has a burrowing speed.", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_doom-of-the-slippery-rogue", - "fields": { - "name": "Doom of the Slippery Rogue", - "desc": "A **doom of the slippery rogue** spell covers a 20-foot-by-20-foot section of wall or floor within range with a thin coating of grease. If a vertical surface is affected, each climber on that surface must make a successful DC 20 Strength (Athletics) check or immediately fall from the surface unless it is held in place by ropes or other climbing gear. A creature standing on an affected floor falls prone unless it makes a successful Dexterity saving throw. Creatures that try to climb or move through the affected area can move no faster than half speed (this is cumulative with the usual reduction for climbing), and any movement must be followed by a Strength saving throw (for climbing) or a Dexterity saving throw (for walking). On a failed save, the moving creature falls or falls prone.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "40 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "bacon fat", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_douse-light", - "fields": { - "name": "Douse Light", - "desc": "With a simple gesture, you can put out a single small source of light within range. This spell extinguishes a torch, a candle, a lantern, or a [light](https://api.open5e.com/spells/light) or [dancing lights](https://api.open5e.com/spells/dancing-lights) cantrip.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_draconic-smite", - "fields": { - "name": "Draconic Smite", - "desc": "The next time you hit a creature with a melee weapon attack during the spell’s duration, your weapon takes on the form of a silver dragon’s head. Your attack deals an extra 1d6 cold damage, and up to four other creatures of your choosing within 30 feet of the attack’s target must each make a successful Constitution saving throw or take 1d6 cold damage.\n", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the extra cold damage and the cold damage dealt to the secondary creatures increases by 1d6 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_dragon-breath", - "fields": { - "name": "Dragon Breath", - "desc": "You summon draconic power to gain a breath weapon. When you cast dragon breath, you can immediately exhale a cone or line of elemental energy, depending on the type of dragon you select. While the spell remains active, roll a d6 at the start of your turn. On a roll of 5 or 6, you can take a bonus action that turn to use the breath weapon again.\n\nWhen you cast the spell, choose one of the dragon types listed below. Your choice determines the affected area and the damage of the breath attack for the spell’s duration.\n\n| Dragon Type | Area | Damage |\n|-|-|-|\n| Black | 30-foot line, 5 feet wide | 6d6 acid damage |\n| Blue | 30-foot line, 5 feet wide | 6d6 lightning damage |\n| Green | 15-foot cone | 6d6 poison damage |\n| Red | 15-foot cone | 6d6 fire damage |\n| White | 15-foot cone | 6d6 cold damage |\n\n", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 2d6 for each slot level above 5th.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of a dragon’s tooth", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "line", - "shape_magnitude": 15, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_dragon-roar", - "fields": { - "name": "Dragon Roar", - "desc": "Your voice is amplified to assault the mind of one creature. The target must make a Charisma saving throw. If it fails, the target takes 1d4 psychic damage and is frightened until the start of your next turn. A target can be affected by your dragon roar only once per 24 hours.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "This spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "1d4", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_drown", - "fields": { - "name": "Drown", - "desc": "You cause a creature's lungs to fill with seawater. Unless the target makes a successful Constitution saving throw, it immediately begins suffocating. A suffocating creature can’t speak or perform verbal spell components. It can hold its breath, and thereafter can survive for a number of rounds equal to its Constitution modifier (minimum of 1 round), after which it drops to 0 hit points and is dying. Huge or larger creatures are unaffected, as are creatures that can breathe water or that don’t require air.\n\nA suffocating (not dying) creature can repeat the saving throw at the end of each of its turns, ending the effect on a success.\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.\n\nNOTE: Midgard Heroes Handbook has a very different [drown-heroes-handbook/drown](https://api.open5e.com/spells/drown) spell.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small piece of flotsam or seaweed", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_dryads-kiss", - "fields": { - "name": "Dryad’s Kiss", - "desc": "You perform an ancient incantation that summons flora from the fey realm. A creature you can see within range is covered with small, purple buds and takes 3d8 necrotic damage; a successful Wisdom saving throw negates the damage but doesn’t prevent the plant growth. The buds can be removed by the target or an ally of the target within 5 feet who uses an action to make a successful Intelligence (Nature) or Wisdom (Medicine) check against your spell save DC, or by a [greater restoration](https://api.open5e.com/spells/greater-restoration) or [blight](https://api.open5e.com/spells/blight) spell. While the buds remain, whenever the target takes damage from a source other than this spell, one bud blossoms into a purple and yellow flower that deals an extra 1d8 necrotic damage to the target. Once four blossoms have formed in this way, the buds can no longer be removed by nonmagical means. The buds and blossoms wilt and fall away when the spell ends, provided the creature is still alive.\n\nIf a creature affected by this spell dies, sweet-smelling blossoms quickly cover its body. The flowers wilt and die after one month.\n", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "If this spell is cast using a spell slot of 5th level or higher, the number of targets increases by one for every two slot levels above 3rd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a flower petal or a drop of blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_earthskimmer", - "fields": { - "name": "Earthskimmer", - "desc": "You cause earth and stone to rise up beneath your feet, lifting you up to 5 feet. For the duration, you can use your movement to cause the slab to skim along the ground or other solid, horizontal surface at a speed of 60 feet. This movement ignores difficult terrain. If you are pushed or moved against your will by any means other than teleporting, the slab moves with you.\n\nUntil the end of your turn, you can enter the space of a creature up to one size larger than yourself when you take the Dash action. The creature must make a Strength saving throw. It takes 4d6 bludgeoning damage and is knocked prone on a failed save, or takes half as much damage and isn’t knocked prone on a succesful one.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of shale or slate", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_earworm-melody", - "fields": { - "name": "Earworm Melody", - "desc": "You sing or play a catchy tune that only one creature of your choice within range can hear. Unless the creature makes a successful Wisdom saving throw, the verse becomes ingrained in its head. If the target is concentrating on a spell, it must make a Constitution check with disadvantage against your spell save DC in order to maintain concentration.\n\nFor the spell’s duration, the target takes 2d4 psychic damage at the start of each of its turns as the melody plays over and over in its mind. The target repeats the saving throw at the end of each of its turns, ending the effect on a success. On a failed save, the target must also repeat the Constitution check with disadvantage if it is concentrating on a spell.\n", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "If you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d4 for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_echoes-of-steel", - "fields": { - "name": "Echoes of Steel", - "desc": "When you hit a creature with a melee weapon attack, you can use a bonus action to cast echoes of steel. All creatures you designate within 30 feet of you take thunder damage equal to the damage from the melee attack, or half as much damage with a successful Constitution saving throw.", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ectoplasm", - "fields": { - "name": "Ectoplasm", - "desc": "You call forth an ectoplasmic manifestation of Medium size that appears in an unoccupied space of your choice within range that you can see. The manifestation lasts for the spell’s duration. Any creature that ends its turn within 5 feet of the manifestation takes 2d6 psychic damage, or half the damage with a successful Wisdom saving throw.\n\nAs a bonus action, you can move the manifestation up to 30 feet. It can move through a creature’s space but can’t remain in the same space as that creature. If it enters a creature’s space, that creature takes 2d6 psychic damage, or half the damage with a successful Wisdom saving throw. On a failed save, the creature also has disadvantage on Dexterity checks until the end of its next turn.\n\nWhen you move the manifestation, it can flow through a gap as small as 1 square inch, over barriers up to 5 feet tall, and across pits up to 10 feet wide. The manifestation sheds dim light in a 10-foot radius. It also leaves a thin film of ectoplasmic residue on everything it touches or moves through. This residue doesn’t illuminate the surroundings but does glow dimly enough to show the manifestation’s path. The residue dissipates 1 round after it is deposited.\n", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of bone dust", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_eidetic-memory", - "fields": { - "name": "Eidetic Memory", - "desc": "When you cast this spell, you can recall any piece of information you’ve ever read or heard in the past. This ability translates into a +10 bonus on Intelligence checks for the duration of the spell.", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a string tied in a knot", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_eldritch-communion", - "fields": { - "name": "Eldritch Communion", - "desc": "You contact a Great Old One and ask one question that can be answered with a one-sentence reply no more than twenty words long. You must ask your question before the spell ends. There is a 25 percent chance that the answer contains a falsehood or is misleading in some way. (The GM determines this secretly.)\n\nGreat Old Ones have vast knowledge, but they aren’t omniscient, so if your question pertains to information beyond the Old One’s knowledge, the answer might be vacuous, gibberish, or an angry, “I don’t know.”\n\nThis also reveals the presence of all aberrations within 300 feet of you. There is a 1-in-6 chance that each aberration you become aware of also becomes aware of you.\n\nIf you cast **eldritch communion** two or more times before taking a long rest, there is a cumulative 25 percent chance for each casting after the first that you receive no answer and become afflicted with short-term madness.", - "document": "deepm", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "corvid entrails, a dried opium poppy, and a glass dagger", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_elemental-horns", - "fields": { - "name": "Elemental Horns", - "desc": "The target of this spell must be a creature that has horns, or the spell fails. **Elemental horns** causes the touched creature’s horns to crackle with elemental energy. Select one of the following energy types when casting this spell: acid, cold, fire, lightning, or radiant. The creature’s gore attack deals 3d6 damage of the chosen type in addition to any other damage the attack normally deals.\n\nAlthough commonly seen among tieflings and minotaurs, this spell is rarely employed by other races.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 2d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a brass wand", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_elemental-twist", - "fields": { - "name": "Elemental Twist", - "desc": "During this spell’s duration, reality shifts around you whenever you cast a spell that deals acid, cold, fire, lightning, poison, or thunder damage. Assign each damage type a number and roll a d6 to determine the type of damage this casting of the spell deals. In addition, the spell’s damage increases by 1d6. All other properties or effects of the spell are unchanged.", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a thin piece of copper twisted around itself", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_emanation-of-yoth", - "fields": { - "name": "Emanation of Yoth", - "desc": "You call forth a [ghost](https://api.open5e.com/monsters/ghost)// that takes the form of a spectral, serpentlike assassin. It appears in an unoccupied space that you can see within range. The ghost disappears when it’s reduced to 0 hit points or when the spell ends.\n\nThe ghost is friendly to you and your companions for the duration of the spell. Roll initiative for the ghost, which takes its own turns. It obeys verbal commands that you issue to it (no action required by you). If you don’t issue a command to it, the ghost defends itself from hostile creatures but doesn’t move or take other actions.\n\nYou are immune to the ghost’s Horrifying Visage action but can willingly become the target of the ghost’s Possession ability. You can end this effect on yourself as a bonus action.\n", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 6th or 7th level, you call forth two ghosts. If you cast it using a spell slot of 8th or 9th level, you call forth three ghosts.", - "target_type": "point", - "range": "90 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a fistful of grave earth and a vial of child’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_enchant-ring", - "fields": { - "name": "Enchant Ring", - "desc": "You enchant a ring you touch that isn’t being worn or carried. The next creature that willingly wears the ring becomes charmed by you for 1 week or until it is harmed by you or one of your allies. If the creature dons the ring while directly threatened by you or one of your allies, the spell fails.\n\nThe charmed creature regards you as a friend. When the spell ends, it doesn’t know it was charmed by you, but it does realize that its attitude toward you has changed (possibly greatly) in a short time. How the creature reacts to you and regards you in the future is up to the GM.", - "document": "deepm", - "level": 6, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "500 gp worth of diamond dust, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent until discharged", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_encroaching-shadows", - "fields": { - "name": "Encroaching Shadows", - "desc": "You cause menacing shadows to invade an area 200 feet on a side and 50 feet high, centered on a point within range. Illumination in the area drops one step (from bright light to dim, or from dim light to darkness). Any spell that creates light in the area that is cast using a lower-level spell slot than was used to cast encroaching shadows is dispelled, and a spell that creates light doesn’t function in the area if that spell is cast using a spell slot of 5th level or lower. Nonmagical effects can’t increase the level of illumination in the affected area.\n\nA spell that creates darkness or shadow takes effect in the area as if the spell slot expended was one level higher than the spell slot actually used.\n", - "document": "deepm", - "level": 6, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the effect lasts for an additional 12 hours for each slot level above 6th.\n\n***Ritual Focus.*** If you expend your ritual focus, the spell’s duration increases by 12 hours, and it cannot be dispelled by a spell that creates light, even if that spell is cast using a higher-level spell slot.", - "target_type": "area", - "range": "150 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of blood smeared on a silver rod worth 100 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "12 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_encrypt-decrypt", - "fields": { - "name": "Encrypt / Decrypt", - "desc": "By touching a page of written information, you can encode its contents. All creatures that try to read the information when its contents are encoded see the markings on the page as nothing but gibberish. The effect ends when either **encrypt / decrypt** or [dispel magic](https://api.open5e.com/spells/dispel-magic) is cast on the encoded writing, which turns it back into its normal state.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_endow-attribute", - "fields": { - "name": "Endow Attribute", - "desc": "You touch a creature with a ring that has been etched with symbols representing a particular ability (Strength, Dexterity, and so forth). The creature must make a successful Constitution saving throw or lose one-fifth (rounded down) of its points from that ability score. Those points are absorbed into the ring and stored there for the spell’s duration. If you then use an action to touch the ring to another creature on a later turn, the absorbed ability score points transfer to that creature. Once the points are transferred to another creature, you don’t need to maintain concentration on the spell; the recipient creature retains the transferred ability score points for the remainder of the hour.\n\nThe spell ends if you lose concentration before the transfer takes place, if either the target or the recipient dies, or if either the target or the recipient is affected by a successful [dispel magic](https://api.open5e.com/spells/dispel-magic) spell. When the spell ends, the ability score points return to the original owner. Before then, that creature can’t regain the stolen attribute points, even with greater restoration or comparable magic.\n", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "If you cast this spell using a spell slot of 7th or 8th level, the duration is 8 hours. If you use a 9th‐level spell slot, the duration is 24 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a ring worth at least 200 gp, which the spell consumes", - "material_cost": "200.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_energy-absorption", - "fields": { - "name": "Energy Absorption", - "desc": "A creature you touch has resistance to acid, cold, fire, force, lightning, and thunder damage until the spell ends.\n\nIf the spell is used against an unwilling creature, you must make a melee spell attack with a reach of 5 feet. If the attack hits, for the duration of the spell the affected creature must make a saving throw using its spellcasting ability whenever it casts a spell that deals one of the given damage types. On a failed save, the spell is not cast but its slot is expended; on a successful save, the spell is cast but its damage is halved before applying the effects of saving throws, resistance, and other factors.", - "document": "deepm", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_energy-foreknowledge", - "fields": { - "name": "Energy Foreknowledge", - "desc": "When you cast this spell, you gain resistance to every type of energy listed above that is dealt by the spell hitting you. This resistance lasts until the end of your next turn.\n", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can include one additional ally in its effect for each slot level above 4th. Affected allies must be within 15 feet of you.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_enhance-greed", - "fields": { - "name": "Enhance Greed", - "desc": "You detect precious metals, gems, and jewelry within 60 feet. You do not discern their exact location, only their presence and direction. Their exact location is revealed if you are within 10 feet of the spot.\n\n**Enhance greed** penetrates barriers but is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of dirt or wood.\n", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 1 minute, and another 10 feet can be added to its range, for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_entomb", - "fields": { - "name": "Entomb", - "desc": "You cause slabs of rock to burst out of the ground or other stone surface to form a hollow, 10-foot cube within range. A creature inside the cube when it forms must make a successful Dexterity saving throw or be trapped inside the stone tomb. The tomb is airtight, with enough air for a single Medium or Small creature to breathe for 8 hours. If more than one creature is trapped inside, divide the time evenly between all the occupants. A Large creature counts as four Medium creatures. If the creature is still trapped inside when the air runs out, it begins to suffocate.\n\nThe tomb has AC 18 and 50 hit points. It is resistant to fire, cold, lightning, bludgeoning, and slashing damage, is immune to poison and psychic damage, and is vulnerable to thunder damage. When reduced to 0 hit points, the tomb crumbles into harmless powder.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a chip of granite", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_entropic-damage-field", - "fields": { - "name": "Entropic Damage Field", - "desc": "By twisting a length of silver wire around your finger, you tie your fate to those around you. When you take damage, that damage is divided equally between you and all creatures in range who get a failure on a Charisma saving throw. Any leftover damage that can’t be divided equally is taken by you. Creatures that approach to within 60 feet of you after the spell was cast are also affected. A creature is allowed a new saving throw against this spell each time you take damage, and a successful save ends the spell’s effect on that creature.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a silver wire", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_essence-instability", - "fields": { - "name": "Essence Instability", - "desc": "You cause the target to radiate a harmful aura. Both the target and every creature beginning or ending its turn within 20 feet of the target suffer 2d6 poison damage per round. The target can make a Constitution saving throw each round to negate the damage and end the affliction. Success means the target no longer takes damage from the aura, but the aura still persists around the target for the full duration.\n\nCreatures affected by the aura must make a successful Constitution saving throw each round to negate the damage. The aura moves with the original target and is unaffected by [gust of wind](https://api.open5e.com/spells/gust-of-wind) and similar spells.\n\nThe aura does not detect as magical or poison, and is invisible, odorless, and intangible (though the spell’s presence can be detected on the original target). [Protection from poison](https://api.open5e.com/spells/protection-from-poison) negates the spell’s effects on targets but will not dispel the aura. A foot of metal or stone, two inches of lead, or a force effect such as [mage armor](https://api.open5e.com/spells/mage-armor) or [wall of force](https://api.open5e.com/spells/wall-of-force) will block it.\n", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the aura lasts 1 minute longer and the poison damage increases by 1d6 for each slot level above 5th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_evercold", - "fields": { - "name": "Evercold", - "desc": "You target a creature within the spell’s range, and that creature must make a successful Wisdom saving throw or take 1d6 cold damage. In addition, the target is cursed to feel as if it’s exposed to extreme cold. For the duration of **evercold**, the target must make a successful DC 10 Constitution saving throw at the end of each hour or gain one level of exhaustion. The target has advantage on the hourly saving throws if wearing suitable cold-weather clothing, but it has disadvantage on saving throws against other spells and magic that deal cold damage (regardless of its clothing) for the spell’s duration.\n\nThe spell can be ended by its caster or by [dispel magic](https://api.open5e.com/spells/dispel-magic) or [remove curse](https://api.open5e.com/spells/remove-curse).", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an insect that froze to death", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_exsanguinate", - "fields": { - "name": "Exsanguinate", - "desc": "You cause the body of a creature within range to become engorged with blood or ichor. The target must make a Constitution saving throw. On a successful save, it takes 2d6 bludgeoning damage. On a failed save, it takes 4d6 bludgeoning damage each round, it is incapacitated, and it cannot speak, as it vomits up torrents of blood or ichor. In addition, its hit point maximum is reduced by an amount equal to the damage taken. The target dies if this effect reduces its hit point maximum to 0.\n\nAt the end of each of its turns, a creature can make a Constitution saving throw, ending the effect on a success—except for the reduction of its hit point maximum, which lasts until the creature finishes a long rest.\n", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can target one additional creature for each slot level above 5th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a desiccated horse heart", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_exsanguinating-cloud", - "fields": { - "name": "Exsanguinating Cloud", - "desc": "When you cast this spell, a rose-colored mist billows up in a 20-foot radius, centered on a point you indicate within range, making the area heavily obscured and draining blood from living creatures in the cloud. The cloud spreads around corners. It lasts for the duration or until strong wind disperses it, ending the spell.\n\nThis cloud leaches the blood or similar fluid from creatures in the area. It doesn’t affect undead or constructs. Any creature in the cloud when it’s created or at the start of your turn takes 6d6 necrotic damage and gains one level of exhaustion; a successful Constitution saving throw halves the damage and prevents the exhaustion.", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "point", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "necrotic" - ], - "duration": "5 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_extract-knowledge", - "fields": { - "name": "Extract Knowledge", - "desc": "By touching a recently deceased corpse, you gain one specific bit of knowledge from it that was known to the creature in life. You must form a question in your mind as part of casting the spell; if the corpse has an answer to your question, it reveals the information to you telepathically. The answer is always brief—no more than a sentence—and very specific to the framed question. It doesn’t matter whether the creature was your friend or enemy; the spell compels it to answer in any case.", - "document": "deepm", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a blank page", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_fault-line", - "fields": { - "name": "Fault Line", - "desc": "The ground thrusts sharply upward along a 5-foot-wide, 60‐foot-long line that you designate. All spaces affected by the spell become difficult terrain. In addition, all creatures in the affected area are knocked prone and take 8d6 bludgeoning damage. Creatures that make a successful Dexterity saving throw take half as much damage and are not knocked prone. This spell doesn’t damage permanent structures.", - "document": "deepm", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_feather-field", - "fields": { - "name": "Feather Field", - "desc": "A magical barrier of chaff in the form of feathers appears and protects you. Until the start of your next turn, you have a +5 bonus to AC against ranged attacks by magic weapons.\n", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "When you cast **feather field** using a spell slot of 2nd level or higher, the duration is increased by 1 round for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "fletching from an arrow", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_feather-travel", - "fields": { - "name": "Feather Travel", - "desc": "The target of **feather travel** (along with its clothing and other gear) transforms into a feather and drifts on the wind. The drifting creature has a limited ability to control its travel. It can move only in the direction the wind is blowing and at the speed of the wind. It can, however, shift up, down, or sideways 5 feet per round as if caught by a gust, allowing the creature to aim for an open window or doorway, to avoid a flame, or to steer around an animal or another creature. When the spell ends, the feather settles gently to the ground and transforms back into the original creature.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, two additional creatures can be transformed per slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a feather", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_fey-crown", - "fields": { - "name": "Fey Crown", - "desc": "By channeling the ancient wards of the Seelie Court, you create a crown of five flowers on your head. While wearing this crown, you have advantage on saving throws against spells and other magical effects and are immune to being charmed. As a bonus action, you can choose a creature within 30 feet of you (including yourself). Until the end of its next turn, the chosen creature is invisible and has advantage on saving throws against spells and other magical effects. Each time a chosen creature becomes invisible, one of the blossoms in the crown closes. After the last of the blossoms closes, the spell ends at the start of your next turn and the crown disappears.\n", - "document": "deepm", - "level": 5, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the crown can have one additional flower for each slot level above 5th. One additional flower is required as a material component for each additional flower in the crown.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "five flowers of different colors", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_find-kin", - "fields": { - "name": "Find Kin", - "desc": "You touch one willing creature or make a melee spell attack against an unwilling creature, which is entitled to a Wisdom saving throw. On a failed save, or automatically if the target is willing, you learn the identity, appearance, and location of one randomly selected living relative of the target.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a freshly dug up tree root that is consumed by the spell", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_fire-darts", - "fields": { - "name": "Fire Darts", - "desc": "When this spell is cast on any fire that’s at least as large as a small campfire or cooking fire, three darts of flame shoot out from the fire toward creatures within 30 feet of the fire. Darts can be directed against the same or separate targets as the caster chooses. Each dart deals 4d6 fire damage, or half as much damage if its target makes a successful Dexterity saving throw.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "20 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a fire the size of a small campfire or larger", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_fire-under-the-tongue", - "fields": { - "name": "Fire Under the Tongue", - "desc": "You can ingest a nonmagical fire up to the size of a normal campfire that is within range. The fire is stored harmlessly in your mouth and dissipates without effect if it is not used before the spell ends. You can spit out the stored fire as an action. If you try to hit a particular target, then treat this as a ranged attack with a range of 5 feet. Campfire-sized flames deal 2d6 fire damage, while torch-sized flames deal 1d6 fire damage. Once you have spit it out, the fire goes out immediately unless it hits flammable material that can keep it fed.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "5 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_firewalk", - "fields": { - "name": "Firewalk", - "desc": "The creature you cast **firewalk** on becomes immune to fire damage. In addition, that creature can walk along any burning surface, such as a burning wall or burning oil spread on water, as if it were solid and horizontal. Even if there is no other surface to walk on, the creature can walk along the tops of the flames.\n", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, two additional creatures can be affected for each slot level above 6th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_fist-of-iron", - "fields": { - "name": "Fist of Iron", - "desc": "You transform your naked hand into iron. Your unarmed attacks deal 1d6 bludgeoning damage and are considered magical.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_flame-wave", - "fields": { - "name": "Flame Wave", - "desc": "A rushing burst of fire rips out from you in a rolling wave, filling a 40-foot cone. Each creature in the area must make a Dexterity saving throw. A creature takes 6d8 fire damage and is pushed 20 feet away from you on a failed save; on a successful save, the creature takes half as much damage and isn’t pushed.\n", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of tar, pitch, or oil", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 40, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_flesh-to-paper", - "fields": { - "name": "Flesh to Paper", - "desc": "A willing creature you touch becomes as thin as a sheet of paper until the spell ends. Anything the target is wearing or carrying is also flattened. The target can’t cast spells or attack, and attack rolls against it are made with disadvantage. It has advantage on Dexterity (Stealth) checks while next to a wall or similar flat surface. The target can move through a space as narrow as 1 inch without squeezing. If it occupies the same space as an object or a creature when the spell ends, the creature is shunted to the nearest unoccupied space and takes force damage equal to twice the number of feet it was moved.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_flickering-fate", - "fields": { - "name": "Flickering Fate", - "desc": "You or a creature that you touch can see a few seconds into the future. When the spell is cast, each other creature within 30 feet of the target must make a Wisdom saving throw. Those that fail must declare, in initiative order, what their next action will be. The target of the spell declares his or her action last, after hearing what all other creatures will do. Each creature that declared an action must follow its declaration as closely as possible when its turn comes. For the duration of the spell, the target has advantage on attack rolls, ability checks, and saving throws, and creatures that declared their actions have disadvantage on attack rolls against the target.", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_fluctuating-alignment", - "fields": { - "name": "Fluctuating Alignment", - "desc": "You channel the force of chaos to taint your target’s mind. A target that gets a failure on a Wisdom saving throw must roll 1d20 and consult the Alignment Fluctuation table to find its new alignment, and it must roll again after every minute of the spell’s duration. The target’s alignment stops fluctuating and returns to normal when the spell ends. These changes do not make the affected creature friendly or hostile toward the caster, but they can cause creatures to behave in unpredictable ways.\n ## Alignment Fluctuation \n| D20 | Alignment |\n|-|-|\n| 1-2 | Chaotic good |\n| 3-4 | Chaotic neutral |\n| 5-7 | Chaotic evil |\n| 8-9 | Neutral evil |\n| 10-11 | Lawful evil |\n| 12-14 | Lawful good |\n| 15-16 | Lawful neutral |\n| 17-18 | Neutral good |\n| 19-20 | Neutral |\n\n", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_flurry", - "fields": { - "name": "Flurry", - "desc": "A flurry of snow surrounds you and extends to a 5-foot radius around you. While it lasts, anyone trying to see into, out of, or through the affected area (including you) has disadvantage on Wisdom (Perception) checks and attack rolls.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a fleck of quartz", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_forest-native", - "fields": { - "name": "Forest Native", - "desc": "While in a forest, you touch a willing creature and infuse it with the forest’s energy, creating a bond between the creature and the environment. For the duration of the spell, as long as the creature remains within the forest, its movement is not hindered by difficult terrain composed of natural vegetation. In addition, the creature has advantage on saving throws against environmental effects such as excessive heat or cold or high altitude.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a clump of soil from a forest", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_forest-sanctuary", - "fields": { - "name": "Forest Sanctuary", - "desc": "While in a forest, you create a protective, 200-foot cube centered on a point you can see within range. The atmosphere inside the cube has the lighting, temperature, and moisture that is most ideal for the forest, regardless of the lighting or weather outside the area. The cube is transparent, and creatures and objects can move freely through it. The cube protects the area inside it from storms, strong winds, and floods, including those created by magic such as [control weather](https://api.open5e.com/spells/control-weather)[control water](https://api.open5e.com/spells/control-water), or [meteor swarm](https://api.open5e.com/spells/meteor-swarm). Such spells can’t be cast while the spellcaster is in the cube.\n\nYou can create a permanently protected area by casting this spell at the same location every day for one year.", - "document": "deepm", - "level": 9, - "school": "abjuration", - "higher_level": "", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a bowl of fresh rainwater and a tree branch", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": "cube", - "shape_magnitude": 200, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_foretell-distraction", - "fields": { - "name": "Foretell Distraction", - "desc": "Thanks to your foreknowledge, you know exactly when your foe will take his or her eyes off you. Casting this spell has the same effect as making a successful Dexterity (Stealth) check, provided cover or concealment is available within 10 feet of you. It doesn’t matter whether enemies can see you when you cast the spell; they glance away at just the right moment. You can move up to 10 feet as part of casting the spell, provided you’re able to move (not restrained or grappled or reduced to a speed of less than 10 feet for any other reason). This move doesn’t count as part of your normal movement. After the spell is cast, you must be in a position where you can remain hidden: a lightly obscured space, for example, or a space where you have total cover. Otherwise, enemies see you again immediately and you’re not hidden.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_form-of-the-gods", - "fields": { - "name": "Form of the Gods", - "desc": "By drawing on the energy of the gods, you can temporarily assume the form of your patron’s avatar. Form of the gods transforms you into an entirely new shape and brings about the following changes (summarized below and in the [avatar form](https://api.open5e.com/monsters/avatar-form) stat block).\n* Your size becomes Large, unless you were already at least that big.\n* You gain resistance to nonmagical bludgeoning, piercing, and slashing damage and to one other damage type of your choice.\n* You gain a Multiattack action option, allowing you to make two slam attacks and a bite.\n* Your ability scores change to reflect your new form, as shown in the stat block.\n\nYou remain in this form until you stop concentrating on the spell or until you drop to 0 hit points, at which time you revert to your natural form.", - "document": "deepm", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a holy symbol", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_freeze-blood", - "fields": { - "name": "Freeze Blood", - "desc": "When you cast **freeze blood** as a successful melee spell attack against a living creature with a circulatory system, the creature’s blood freezes. For the spell’s duration, the affected creature’s speed is halved and it takes 2d6 cold damage at the start of each of its turns. If the creature takes bludgeoning damage from a critical hit, the attack’s damage dice are rolled three times instead of twice. At the end of each of its turns, the creature can make a Constitution saving throw, ending the effect on a success.\n\nNOTE: This was previously a 5th-level spell that did 4d10 cold damage.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_freeze-potion", - "fields": { - "name": "Freeze Potion", - "desc": "A blue spark flies from your hand and strikes a potion vial, drinking horn, waterskin, or similar container, instantly freezing the contents. The substance melts normally thereafter and is not otherwise harmed, but it can’t be consumed while it’s frozen.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the range increases by 5 feet for each slot level above 1st.", - "target_type": "object", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_freezing-fog", - "fields": { - "name": "Freezing Fog", - "desc": "The spell creates a 20-foot-radius sphere of mist similar to a [fog cloud](https://api.open5e.com/spells/fog-cloud) spell centered on a point you can see within range. The cloud spreads around corners, and the area it occupies is heavily obscured. A wind of moderate or greater velocity (at least 10 miles per hour) disperses it in 1 round. The fog is freezing cold; any creature that ends its turn in the area must make a Constitution saving throw. It takes 2d6 cold damage and gains one level of exhaustion on a failed save, or takes half as much damage and no exhaustion on a successful one.\n", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "point", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "cold" - ], - "duration": "5 minutes", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_frenzied-bolt", - "fields": { - "name": "Frenzied Bolt", - "desc": "You direct a bolt of rainbow colors toward a creature of your choice within range. If the bolt hits, the target takes 3d8 damage, of a type determined by rolling on the Random Damage Type table. If your attack roll (not the adjusted result) was odd, the bolt leaps to a new target of your choice within range that has not already been targeted by frenzied bolt, requiring a new spell attack roll to hit. The bolt continues leaping to new targets until you roll an even number on your spell attack roll, miss a target, or run out of potential targets. You and your allies are legal targets for this spell if you are particularly lucky—or unlucky.", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create an additional bolt for each slot level above 2nd. Each potential target can be hit only once by each casting of the spell, not once per bolt.\n \n **Random Damage Type** \n \n| d10 | Damage Type | \n|--------------|---------| \n| 1 | Acid | \n| 2 | Cold | \n| 3 | Fire | \n| 4 | Force | \n| 5 | Lightning | \n| 6 | Necrotic | \n| 7 | Poision | \n| 8 | Psychic | \n| 9 | Radiant | \n| 10 | Thunder | \n \n", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_frostbite", - "fields": { - "name": "Frostbite", - "desc": "Biting cold settles onto a creature you can see. The creature must make a Constitution saving throw. On a failed save, the creature takes 4d8 cold damage. In addition, for the duration of the spell, the creature’s speed is halved, it has disadvantage on attack rolls and ability checks, and it takes another 4d8 cold damage at the start of each of its turns.\n\nAn affected creature can repeat the saving throw at the start of each of its turns. The effect ends when the creature makes its third successful save.\n\nCreatures that are immune to cold damage are unaffected by **frostbite**.\n", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can target two additional creatures for each slot level above 5th.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a strip of dried flesh that has been frozen at least once", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d8", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_frostbitten-fingers", - "fields": { - "name": "Frostbitten Fingers", - "desc": "You fire a ray of intense cold that instantly induces frostbite. With a successful ranged spell attack, this spell causes one of the target’s hands to lose sensation. When the spell is cast, the target must make a successful Dexterity saving throw to maintain its grip on any object with the affected hand. The saving throw must be repeated every time the target tries to manipulate, wield, or pick up an item with the affected hand. Additionally, the target has disadvantage on Dexterity checks or Strength checks that require the use of both hands.\n\nAfter every 10 minutes of being affected by frostbitten fingers, the target must make a successful Constitution saving throw, or take 1d6 cold damage and lose one of the fingers on the affected hand, beginning with the pinkie.", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_frozen-razors", - "fields": { - "name": "Frozen Razors", - "desc": "Razor-sharp blades of ice erupt from the ground or other surface, filling a 20-foot cube centered on a point you can see within range. For the duration, the area is lightly obscured and is difficult terrain. A creature that moves more than 5 feet into or inside the area on a turn takes 2d6 slashing damage and 3d6 cold damage, or half as much damage if it makes a successful Dexterity saving throw. A creature that takes cold damage from frozen razors is reduced to half speed until the start of its next turn.\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "water from a melted icicle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "slashing" - ], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_furious-hooves", - "fields": { - "name": "Furious Hooves", - "desc": "You enhance the feet or hooves of a creature you touch, imbuing it with power and swiftness. The target doubles its walking speed or increases it by 30 feet, whichever addition is smaller. In addition to any attacks the creature can normally make, this spell grants two hoof attacks, each of which deals bludgeoning damage equal to 1d6 + plus the target’s Strength modifier (or 1d8 if the target of the spell is Large). For the duration of the spell, the affected creature automatically deals this bludgeoning damage to the target of its successful shove attack.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a nail", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_fusillade-of-ice", - "fields": { - "name": "Fusillade of Ice", - "desc": "You unleash a spray of razor-sharp ice shards. Each creature in the 30-foot cone takes 4d6 cold damage and 3d6 piercing damage, or half as much damage with a successful Dexterity saving throw.\n", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by your choice of 1d6 cold damage or 1d6 piercing damage for each slot level above 4th. You can make a different choice (cold damage or piercing damage) for each slot level above 4th. Casting this spell with a spell slot of 6th level or higher increases the range to a 60-foot cone.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dagger shaped like an icicle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "7d6", - "damage_types": [ - "cold", - "piercing" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_gear-barrage", - "fields": { - "name": "Gear Barrage", - "desc": "You create a burst of magically propelled gears. Each creature within a 60-foot cone takes 3d8 slashing damage, or half as much damage with a successful Dexterity saving throw. Constructs have disadvantage on the saving throw.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of gears and sprockets worth 5 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "slashing" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 60, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ghoul-kings-cloak", - "fields": { - "name": "Ghoul King’s Cloak", - "desc": "You touch a creature, giving it some of the power of a ghoul king. The target gains the following benefits for the duration:\n* Its Armor Class increases by 2, to a maximum of 20.\n* When it uses the Attack action to make a melee weapon attack or a ranged weapon attack, it can make one additional attack of the same kind.\n* It is immune to necrotic damage and radiant damage.\n* It can’t be reduced to less than 1 hit point.", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "When you cast this spell using a 9th-level spell slot, the spell lasts for 10 minutes and doesn’t require concentration.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_gird-the-spirit", - "fields": { - "name": "Gird the Spirit", - "desc": "Your magic protects the target creature from the lifesapping energies of the undead. For the duration, the target has immunity to effects from undead creatures that reduce its ability scores, such as a shadow's Strength Drain, or its hit point maximum, such as a specter's Life Drain. This spell doesn't prevent damage from those attacks; it prevents only the reduction in ability score or hit point maximum.", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_glacial-cascade", - "fields": { - "name": "Glacial Cascade", - "desc": "By harnessing the power of ice and frost, you emanate pure cold, filling a 30-foot-radius sphere. Creatures other than you in the sphere take 10d8 cold damage, or half as much damage with a successful Constitution saving throw. A creature killed by this spell is transformed into ice, leaving behind no trace of its original body.", - "document": "deepm", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of alexandrite", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_glacial-fog", - "fields": { - "name": "Glacial Fog", - "desc": "As you cast this spell, a 30-foot-radius sphere centered on a point within range becomes covered in a frigid fog. Each creature that is in the area at the start of its turn while the spell remains in effect must make a Constitution saving throw. On a failed save, a creature takes 12d6 cold damage and gains one level of exhaustion, and it has disadvantage on Perception checks until the start of its next turn. On a successful save, the creature takes half the damage and ignores the other effects.\n\nStored devices and tools are all frozen by the fog: crossbow mechanisms become sluggish, weapons are stuck in scabbards, potions turn to ice, bag cords freeze together, and so forth. Such items require the application of heat for 1 round or longer in order to become useful again.\n", - "document": "deepm", - "level": 7, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 1d6 for each slot level above 7th.", - "target_type": "point", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "crystalline statue of a polar bear worth at least 25 gp", - "material_cost": "25.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "12d6", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_gliding-step", - "fields": { - "name": "Gliding Step", - "desc": "Provided you’re not carrying more of a load than your carrying capacity permits, you can walk on the surface of snow rather than wading through it, and you ignore its effect on movement. Ice supports your weight no matter how thin it is, and you can travel on ice as if you were wearing ice skates. You still leave tracks normally while under these effects.\n", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 10 minutes for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_glimpse-of-the-void", - "fields": { - "name": "Glimpse of the Void", - "desc": "Muttering Void Speech, you force images of terror and nonexistence upon your foes. Each creature in a 30-foot cube centered on a point within range must make an Intelligence saving throw. On a failed save, the creature goes insane for the duration. While insane, a creature takes no actions other than to shriek, wail, gibber, and babble unintelligibly. The GM controls the creature’s movement, which is erratic.", - "document": "deepm", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a scrap of parchment with Void glyph scrawlings", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 30, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_gloomwrought-barrier", - "fields": { - "name": "Gloomwrought Barrier", - "desc": "When you cast this spell, you erect a barrier of energy drawn from the realm of death and shadow. This barrier is a wall 20 feet high and 60 feet long, or a ring 20 feet high and 20 feet in diameter. The wall is transparent when viewed from one side of your choice and translucent—lightly obscuring the area beyond it—from the other. A creature that tries to move through the wall must make a successful Wisdom saving throw or stop in front of the wall and become frightened until the start of the creature’s next turn, when it can try again to move through. Once a creature makes a successful saving throw against the wall, it is immune to the effect of this barrier.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of obsidian", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_gluey-globule", - "fields": { - "name": "Gluey Globule", - "desc": "You make a ranged spell attack to hurl a large globule of sticky, magical glue at a creature within 120 feet. If the attack hits, the target creature is restrained. A restrained creature can break free by using an action to make a successful Strength saving throw. When the creature breaks free, it takes 2d6 slashing damage from the glue tearing its skin. If your ranged spell attack roll was a critical hit or exceeded the target’s AC by 5 or more, the Strength saving throw is made with disadvantage. The target can also be freed by an application of universal solvent or by taking 20 acid damage. The glue dissolves when the creature breaks free or at the end of 1 minute.\n\nAlternatively, **gluey globule** can also be used to glue an object to a solid surface or to another object. In this case, the spell works like a single application of [sovereign glue](https://api.open5e.com/spells/sovereign-glue) and lasts for 1 hour.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of glue", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": true, - "damage_roll": "2d6", - "damage_types": [ - "slashing" - ], - "duration": "1 minute or 1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_glyph-of-shifting", - "fields": { - "name": "Glyph of Shifting", - "desc": "You create a hidden glyph by tracing it on a surface or object that you touch. When you cast the spell, you can also choose a location that's known to you, within 5 miles, and on the same plane of existence, to serve as the destination for the glyph's shifting effect.\n The glyph is triggered when it's touched by a creature that's not aware of its presence. The triggering creature must make a successful Wisdom saving throw or be teleported to the glyph's destination. If no destination was set, the creature takes 4d4 force damage and is knocked prone.\n The glyph disappears after being triggered or when the spell's duration expires.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, its duration increases by 24 hours and the maximum distance to the destination increases by 5 miles for each slot level above 2nd.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "powdered diamond worth at least 50 gp, which the spell consumes", - "material_cost": "50.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "4d4", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_goats-hoof-charm", - "fields": { - "name": "Goat's Hoof Charm", - "desc": "A creature you touch traverses craggy slopes with the surefootedness of a mountain goat. When ascending a slope that would normally be difficult terrain for it, the target can move at its full speed instead. The target also gains a +2 bonus on Dexterity checks and saving throws to prevent falling, to catch a ledge or otherwise stop a fall, or to move along a narrow ledge.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can increase the duration by 1 minute, or you can affect one additional creature, for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a goat’s hoof", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_going-in-circles", - "fields": { - "name": "Going in Circles", - "desc": "You make natural terrain in a 1-mile cube difficult to traverse. A creature in the affected area has disadvantage on Wisdom (Survival) checks to follow tracks or travel safely through the area as paths through the terrain seem to twist and turn nonsensically. The terrain itself isn't changed, only the perception of those inside it. A creature who succeeds on two Wisdom (Survival) checks while within the terrain discerns the illusion for what it is and sees the illusory twists and turns superimposed on the terrain. A creature that reenters the area after exiting it before the spell ends is affected by the spell even if it previously succeeded in traversing the terrain. A creature with truesight can see through the illusion and is unaffected by the spell. A creature that casts find the path automatically succeeds in discovering a way out of the terrain.\n When you cast this spell, you can designate a password. A creature that speaks the password as it enters the area automatically sees the illusion and is unaffected by the spell.\n If you cast this spell on the same spot every day for one year, the illusion lasts until it is dispelled.", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Sight", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of the target terrain", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_gordolays-pleasant-aroma", - "fields": { - "name": "Gordolay’s Pleasant Aroma", - "desc": "You create an intoxicating aroma that fills the area within 30 feet of a point you can see within range. Creatures in this area smell something they find so pleasing that it’s distracting. Each creature in the area that makes an attack roll must first make a Wisdom saving throw; on a failed save, the attack is made with disadvantage. Only a creature’s first attack in a round is affected this way; subsequent attacks are resolved normally. On a successful save, a creature becomes immune to the effect of this particular scent, but they can be affected again by a new casting of the spell.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "a few flower petals or a piece of fruit, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_grasp-of-the-tupilak", - "fields": { - "name": "Grasp of the Tupilak", - "desc": "This spell functions only against an arcane or divine spellcaster that prepares spells in advance and that has at least one unexpended spell slot of 6th level or lower. If you make a successful melee attack against such a creature before the spell ends, in addition to the usual effect of that attack, the target takes 2d4 necrotic damage and one or more of the victim’s available spell slots are transferred to you, to be used as your own. Roll a d6; the result equals the total levels of the slots transferred. Spell slots of the highest possible level are transferred before lower-level slots.\n\nFor example, if you roll a 5 and the target has at least one 5th-level spell slot available, that slot transfers to you. If the target’s highest available spell slot is 3rd level, then you might receive a 3rd-level slot and a 2nd-level slot, or a 3rd-level slot and two 1st-level slots if no 2nd-level slot is available.\n\nIf the target has no available spell slots of an appropriate level—for example, if you roll a 2 and the target has expended all of its 1st- and 2nd-level spell slots—then **grasp of the tupilak** has no effect, including causing no necrotic damage. If a stolen spell slot is of a higher level than you’re able to use, treat it as of the highest level you can use.\n\nUnused stolen spell slots disappear, returning whence they came, when you take a long rest or when the creature you stole them from receives the benefit of [remove curse](https://api.open5e.com/spells/remove-curse)[greater restoration](https://api.open5e.com/greater-restoration), or comparable magic.", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "tupilak idol", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "necrotic" - ], - "duration": "1 hour or until triggered", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_greater-maze", - "fields": { - "name": "Greater Maze", - "desc": "This spell functions as [maze](https://api.open5e.com/spells/maze), but the target must make a Dexterity saving throw each time it starts its turn in the maze. The target takes 4d6 psychic damage on a failed save, or half as much damage on a success.\n\nEscaping this maze is especially difficult. To do so, the target must use an action to make a DC 20 Intelligence check. It escapes when it makes its second successful check.", - "document": "deepm", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "psychic" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_greater-seal-of-sanctuary", - "fields": { - "name": "Greater Seal of Sanctuary", - "desc": "You inscribe an angelic seal on the ground, the floor, or other solid surface of a structure. The seal creates a spherical sanctuary with a radius of 100 feet, centered on the seal. For the duration, aberrations, elementals, fey, fiends, and undead that approach to within 5 feet of the boundary know they are about to come into contact with a deadly barrier. If such a creature moves so as to touch the boundary, or tries to cross the boundary by any means, including teleportation and extradimensional travel, it must make a Charisma saving throw. On a failed save, it takes 15d8 radiant damage, is repelled to 5 feet outside the boundary, and can’t target anything inside the boundary with attacks, spells, or abilities until the spell ends. On a successful save, the creature takes half as much radiant damage and can cross the boundary. If the creature is a fiend that isn’t on its home plane, it is immediately destroyed (no saving throw) instead of taking damage.\n\nAberrations, elementals, fey, and undead that are within 100 feet of the seal (inside the boundary) have disadvantage on ability checks, attack rolls, and saving throws, and each such creature takes 4d8 radiant damage at the start of its turn.\n\nCreatures other than aberrations, elementals, fey, fiends, and undead can’t be charmed or frightened while within 100 feet of the seal.\n\nThe seal has AC 18, 75 hit points, resistance to bludgeoning, piercing, and slashing damage, and immunity to psychic and poison damage. Ranged attacks against the seal are made with disadvantage. If it is scribed on the surface of an object that is later destroyed (such as a wooden door), the seal is not damaged and remains in place, perhaps suspended in midair. The spell ends only if the seal itself is reduced to 0 hit points.", - "document": "deepm", - "level": 9, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "incense and special inks worth 500 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "15d8", - "damage_types": [ - "radiant" - ], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_green-decay", - "fields": { - "name": "Green Decay", - "desc": "Your touch inflicts a nauseating, alien rot. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with the supernatural disease green decay (see below), and creatures within 15 feet of the target who can see it must make a successful Constitution saving throw or become poisoned until the end of their next turn.\n\nYou lose concentration on this spell if you can’t see the target at the end of your turn.\n\n***Green Decay.*** The flesh of a creature that has this disease is slowly consumed by a virulent extraterrestrial fungus. While the disease persists, the creature has disadvantage on Charisma and Wisdom checks and on Wisdom saving throws, and it has vulnerability to acid, fire, and necrotic damage. An affected creature must make a Constitution saving throw at the end of each of its turns. On a failed save, the creature takes 1d6 necrotic damage, and its hit point maximum is reduced by an amount equal to the necrotic damage taken. If the creature gets three successes on these saving throws before it gets three failures, the disease ends immediately (but the damage and the hit point maximum reduction remain in effect). If the creature gets three failures on these saving throws before it gets three successes, the disease lasts for the duration of the spell, and no further saving throws are allowed.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "1d6", - "damage_types": [ - "necrotic" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_grudge-match", - "fields": { - "name": "Grudge Match", - "desc": "This spell affects any creatures you designate within range, as long as the group contains an equal number of allies and enemies. If the number of allies and enemies targeted isn’t the same, the spell fails. For the duration of the spell, each target gains a +2 bonus on saving throws, attack rolls, ability checks, skill checks, and weapon damage rolls made involving other targets of the spell. All affected creatures can identify fellow targets of the spell by sight. If an affected creature makes any of the above rolls against a non-target, it takes a -2 penalty on that roll.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration increases by 1 round for each slot level above 2nd.", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_guest-of-honor", - "fields": { - "name": "Guest of Honor", - "desc": "You whisper words of encouragement, and a creature that you touch gains confidence along with approval from strangers. For the spell’s duration, the target puts its best foot forward and strangers associate the creature with positive feelings. The target adds 1d4 to all Charisma (Persuasion) checks made to influence the attitudes of others.\n", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the effect lasts for an additional 10 minutes for each slot level above 1st.\n\n***Ritual Focus.*** If you expend your ritual focus, the effect lasts for 24 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a signet ring worth 25 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_guiding-star", - "fields": { - "name": "Guiding Star", - "desc": "By observing the stars or the position of the sun, you are able to determine the cardinal directions, as well as the direction and distance to a stated destination. You can’t become directionally disoriented or lose track of the destination. The spell doesn’t, however, reveal the best route to your destination or warn you about deep gorges, flooded rivers, or other impassable or treacherous terrain.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_hamstring", - "fields": { - "name": "Hamstring", - "desc": "You create an arrow of eldritch energy and send it at a target you can see within range. Make a ranged spell attack against the target. On a hit, the target takes 1d4 force damage, and it can’t take reactions until the end of its next turn.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "The spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d4", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_hard-heart", - "fields": { - "name": "Hard Heart", - "desc": "You imbue your touch with the power to make a creature aloof, hardhearted, and unfeeling. The creature you touch as part of casting this spell must make a Wisdom saving throw; a creature can choose to fail this saving throw unless it’s currently charmed. On a successful save, this spell fails. On a failed save, the target becomes immune to being charmed for the duration; if it’s currently charmed, that effect ends. In addition, Charisma checks against the target are made with disadvantage for the spell’s duration.\n", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd or 4th level, the duration increases to 1 hour. If you use a spell slot of 5th level or higher, the duration is 8 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an iron key", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_harry", - "fields": { - "name": "Harry", - "desc": "You instill an irresistible sense of insecurity and terror in the target. The target must make a Wisdom saving throw. On a failed save, the target has disadvantage on Dexterity (Stealth) checks to avoid your notice and is frightened of you while you are within its line of sight. While you are within 1 mile of the target, you have advantage on Wisdom (Survival) checks to track the target, and the target can't take a long rest, terrified you are just around the corner. The target can repeat the saving throw once every 10 minutes, ending the spell on a success.\n On a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "When you cast this spell with a 6th-level spell slot, the duration is concentration, up to 8 hours and the target can repeat the saving throw once each hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 24 hours, and the target can repeat the saving throw every 8 hours.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a bit of fur from a game animal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_harrying-hounds", - "fields": { - "name": "Harrying Hounds", - "desc": "When you cast this spell, choose a direction (north, south, northeast, or the like). Each creature in a 20-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it. When an affected creature travels, it travels at a fast pace in the opposite direction of the direction you chose as it believes a pack of dogs or wolves follows it from the chosen direction.\n When an affected creature isn't traveling, it is frightened of your chosen direction. The affected creature occasionally hears howls or sees glowing eyes in the darkness at the edge of its vision in that direction. An affected creature will not stop at a destination, instead pacing half-circles around the destination until the effect ends, terrified the pack will overcome it if it stops moving.\n An affected creature can make a Wisdom saving throw at the end of each 4-hour period, ending the effect on itself on a success. An affected creature moves along the safest available route unless it has nowhere to move, such as if it arrives at the edge of a cliff. When an affected creature can't safely move in the opposite direction of your chosen direction, it cowers in place, defending itself from hostile creatures but otherwise taking no actions. In such circumstances, the affected creature can repeat the saving throw every minute, ending the effect on itself on a success. The spell's effect is suspended when an affected creature is engaged in combat, allowing it to move as necessary to face hostile creatures.", - "document": "deepm", - "level": 5, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the duration increases by 4 hours for each slot level above 5th. If an affected creature travels for more than 8 hours, it risks exhaustion as if on a forced march.", - "target_type": "creature", - "range": "180 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a tuft of fur from a hunting dog", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_harsh-light-of-summers-glare", - "fields": { - "name": "Harsh Light of Summer’s Glare", - "desc": "You emit a burst of brilliant light, which bears down oppressively upon all creatures within range that can see you. Creatures with darkvision that fail a Constitution saving throw are blinded and stunned. Creatures without darkvision that fail a Constitution saving throw are blinded. This is not a gaze attack, and it cannot be avoided by averting one’s eyes or wearing a blindfold.", - "document": "deepm", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_heart-seeking-arrow", - "fields": { - "name": "Heart-Seeking Arrow", - "desc": "The next time you make a ranged weapon attack during the spell's duration, the weapon's ammunition—or the weapon itself if it's a thrown weapon—seeks its target's vital organs. Make the attack roll as normal. On a hit, the weapon deals an extra 6d6 damage of the same type dealt by the weapon, or half as much damage on a miss as it streaks unerringly toward its target. If this attack reduces the target to 0 hit points, the target has disadvantage on its next death saving throw, and, if it dies, it can be restored to life only by means of a true resurrection or a wish spell. This spell has no effect on undead or constructs.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the extra damage on a hit increases by 1d6 for each slot level above 4th.", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_heart-to-heart", - "fields": { - "name": "Heart to Heart", - "desc": "For the duration, you and the creature you touch remain stable and unconscious if reduced to 0 hit points while the other has 1 or more hit points. If you touch a dying creature, it becomes stable but remains unconscious while it has 0 hit points. If both of you are reduced to 0 hit points, you must both make death saving throws, as normal. If you or the target regain hit points, either of you can choose to split those hit points between the two of you if both of you are within 60 feet of each other.", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of your blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_heartache", - "fields": { - "name": "Heartache", - "desc": "You force an enemy to experience pangs of unrequited love and emotional distress. These feelings manifest with such intensity that the creature takes 5d6 psychic damage on a failed Charisma saving throw, or half the damage on a successful save.\n", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target an additional enemy for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a silver locket", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "5d6", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_heartstop", - "fields": { - "name": "Heartstop", - "desc": "You slow the beating of a willing target’s heart to the rate of one beat per minute. The creature’s breathing almost stops. To a casual or brief observer, the subject appears dead. At the end of the spell, the creature returns to normal with no ill effects.", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_heartstrike", - "fields": { - "name": "Heartstrike", - "desc": "The spirits of ancient archers carry your missiles straight to their targets. You have advantage on ranged weapon attacks until the start of your next turn, and you can ignore penalties for your enemies having half cover or three-quarters cover, and for an area being lightly obscured, when making those attacks.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an arrow, bolt, or other missile", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_heavenly-crown", - "fields": { - "name": "Heavenly Crown", - "desc": "A glowing, golden crown appears on your head and sheds dim light in a 30-foot radius. When you cast the spell (and as a bonus action on subsequent turns, until the spell ends), you can target one willing creature within 30 feet of you that you can see. If the target can hear you, it can use its reaction to make one melee weapon attack and then move up to half its speed, or vice versa.", - "document": "deepm", - "level": 6, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small golden crown worth 50 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_hedrens-birds-of-clay", - "fields": { - "name": "Hedren’s Birds of Clay", - "desc": "You create a number of clay pigeons equal to 1d4 + your spellcasting modifier (minimum of one) that swirl around you. When you are the target of a ranged weapon attack or a ranged spell attack and before the attack roll is made, you can use your reaction to shout “Pull!” When you do, one clay pigeon maneuvers to block the incoming attack. If the attack roll is less than 10 + your proficiency bonus, the attack misses. Otherwise, make a check with your spellcasting ability modifier and compare it to the attack roll. If your roll is higher, the attack is intercepted and has no effect. Regardless of whether the attack is intercepted, one clay pigeon is expended. The spell ends when the last clay pigeon is used.\n", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, add 1 to your to your roll for each slot level above 3rd when determining if an attack misses or when making a check to intercept the attack.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a clay figurine shaped like a bird", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_hematomancy", - "fields": { - "name": "Hematomancy", - "desc": "You can learn information about a creature whose blood you possess. The target must make a Wisdom saving throw. If the target knows you’re casting the spell, it can fail the saving throw voluntarily if it wants you to learn the information. On a successful save, the target isn’t affected, and you can’t use this spell against it again for 24 hours. On a failed save, or if the blood belongs to a dead creature, you learn the following information:\n* The target’s most common name (if any).\n* The target’s creature type (and subtype, if any), gender, and which of its ability scores is highest (though not the exact numerical score).\n* The target’s current status (alive, dead, sick, wounded, healthy, etc.).\n* The circumstances of the target shedding the blood you’re holding (bleeding wound, splatter from an attack, how long ago it was shed, etc.).\nAlternatively, you can forgo all of the above information and instead use the blood as a beacon to track the target. For 1 hour, as long as you are on the same plane of existence as the creature, you know the direction and distance to the target’s location at the time you cast this spell. While moving toward the location, if you are presented with a choice of paths, the spell automatically indicates which path provides the shortest and most direct route to the location.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of a creature’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_heros-steel", - "fields": { - "name": "Hero's Steel", - "desc": "You infuse the metal of a melee weapon you touch with the fearsome aura of a mighty hero. The weapon’s wielder has advantage on Charisma (Intimidation) checks made while aggressively brandishing the weapon. In addition, an opponent that currently has 30 or fewer hit points and is struck by the weapon must make a successful Charisma saving throw or be stunned for 1 round. If the creature has more than 30 hit points but fewer than the weapon’s wielder currently has, it becomes frightened instead; a frightened creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a successful save. A creature that succeeds on the saving throw is immune to castings of this spell on the same weapon for 24 hours.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a warrior's amulet worth 5 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_hide-in-ones-shadow", - "fields": { - "name": "Hide in One’s Shadow", - "desc": "When you touch a willing creature with a piece of charcoal while casting this spell, the target and everything it carries blends into and becomes part of the target’s shadow, which remains discernible, although its body seems to disappear. The shadow is incorporeal, has no weight, and is immune to all but psychic and radiant damage. The target remains aware of its surroundings and can move, but only as a shadow could move—flowing along surfaces as if the creature were moving normally. The creature can step out of the shadow at will, resuming its physical shape in the shadow’s space and ending the spell.\n\nThis spell cannot be cast in an area devoid of light, where a shadow would not normally appear. Even a faint light source, such as moonlight or starlight, is sufficient. If that light source is removed, or if the shadow is flooded with light in such a way that the physical creature wouldn’t cast a shadow, the spell ends and the creature reappears in the shadow’s space.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "charcoal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "3 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_hoarfrost", - "fields": { - "name": "Hoarfrost", - "desc": "A melee weapon you are holding is imbued with cold. For the duration, a rime of frost covers the weapon and light vapor rises from it if the temperature is above freezing. The weapon becomes magical and deals an extra 1d4 cold damage on a successful hit. The spell ends after 1 minute, or earlier if you make a successful attack with the weapon or let go of it.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "The spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a melee weapon", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_hobble", - "fields": { - "name": "Hobble", - "desc": "You create an ethereal trap in the space of a creature you can see within range. The target must succeed on a Dexterity saving throw or its speed is halved until the end of its next turn.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a broken rabbit’s foot", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_hobble-mount", - "fields": { - "name": "Hobble Mount", - "desc": "When you cast **hobble mount** as a successful melee spell attack against a horse, wolf, or other four-legged or two-legged beast being ridden as a mount, that beast is disabled so that it can’t move at its normal speed without incurring injury. An affected creature that moves more than half its base speed in a turn takes 2d6 bludgeoning damage.\n\nThis spell has no effect on a creature that your GM deems to not be a mount.\n", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 2d6 for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_holy-ground", - "fields": { - "name": "Holy Ground", - "desc": "You invoke divine powers to bless the ground within 60 feet of you. Creatures slain in the affected area cannot be raised as undead by magic or by the abilities of monsters, even if the corpse is later removed from the area. Any spell of 4th level or lower that would summon or animate undead within the area fails automatically. Such spells cast with spell slots of 5th level or higher function normally.\n", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the level of spells that are prevented from functioning increases by 1 for each slot level above 5th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of holy water that is consumed in the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_hone-blade", - "fields": { - "name": "Hone Blade", - "desc": "You magically sharpen the edge of any bladed weapon or object you are touching. The target weapon gets a +1 bonus to damage on its next successful hit.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a chip of whetstone or lodestone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_hunger-of-leng", - "fields": { - "name": "Hunger of Leng", - "desc": "You curse a creature that you can see in range with an insatiable, ghoulish appetite. If it has a digestive system, the creature must make a successful Wisdom saving throw or be compelled to consume the flesh of living creatures for the duration.\n\nThe target gains a bite attack and moves to and attacks the closest creature that isn’t an undead or a construct. The target is proficient with the bite, and it adds its Strength modifier to the attack and damage rolls. The damage is piercing and the damage die is a d4. If the target is larger than Medium, its damage die increases by 1d4 for each size category it is above Medium. In addition, the target has advantage on melee attack rolls against any creature that doesn’t have all of its hit points.\n\nIf there isn’t a viable creature within range for the target to attack, it deals piercing damage to itself equal to 2d4 + its Strength modifier. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. If the target has two consecutive failures, **hunger of Leng** lasts its full duration with no further saving throws allowed.", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of salt and a drop of the caster’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_hunters-endurance", - "fields": { - "name": "Hunter's Endurance", - "desc": "You call on the land to sustain you as you hunt your quarry. Describe or name a creature that is familiar to you. If you aren't familiar with the target creature, you must use a fingernail, lock of hair, bit of fur, or drop of blood from it as a material component to target that creature with this spell. Until the spell ends, you have advantage on all Wisdom (Perception) and Wisdom (Survival) checks to find and track the target, and you must actively pursue the target as if under a geas. In addition, you don't suffer from exhaustion levels you gain from pursuing your quarry, such as from lack of rest or environmental hazards between you and the target, while the spell is active. When the spell ends, you suffer from all levels of exhaustion that were suspended by the spell. The spell ends only after 24 hours, when the target is dead, when the target is on a different plane, or when the target is restrained in your line of sight.", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a fingernail, lock of hair, bit of fur, or drop of blood from the target, if unfamiliar", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_hunting-stand", - "fields": { - "name": "Hunting Stand", - "desc": "You make a camouflaged shelter nestled in the branches of a tree or among a collection of stones. The shelter is a 10-foot cube centered on a point within range. It can hold as many as nine Medium or smaller creatures. The atmosphere inside the shelter is comfortable and dry, regardless of the weather outside. The shelter's camouflage provides a modicum of concealment to its inhabitants; a creature outside the shelter has disadvantage on Wisdom (Perception) and Intelligence (Investigation) checks to detect or locate a creature within the shelter.", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a crude model of the stand", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ice-fortress", - "fields": { - "name": "Ice Fortress", - "desc": "A gleaming fortress of ice springs from a square area of ground that you can see within range. It is a 10-foot cube (including floor and roof). The fortress can’t overlap any other structures, but any creatures in its space are harmlessly lifted up as the ice rises into position. The walls are made of ice (AC 13), have 120 hit points each, and are immune to cold, necrotic, poison, and psychic damage. Reducing a wall to 0 hit points destroys it and has a 50 percent chance to cause the roof to collapse. A damaged wall can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis.\n\nEach wall has two arrow slits. One wall also includes an ice door with an [arcane lock](https://api.open5e.com/spells/arcane-lock). You designate at the time of the fort’s creation which creatures can enter the fortification. The door has AC 18 and 60 hit points, or it can be broken open with a successful DC 25 Strength (Athletics) check (DC 15 if the [arcane lock](https://api.open5e.com/spells/arcane-lock) is dispelled).\n\nThe fortress catches and reflects light, so that creatures outside the fortress who rely on sight have disadvantage on Perception checks and attack rolls made against those within the fortress if it’s in an area of bright sunlight.\n", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can increase the length or width of the fortification by 5 feet for every slot level above 5th. You can make a different choice (width or length) for each slot level above 5th.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a miniature keep carved from ice or glass that is consumed in the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled or destroyed", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ice-hammer", - "fields": { - "name": "Ice Hammer", - "desc": "When you cast **ice hammer**, a warhammer fashioned from ice appears in your hands. This weapon functions as a standard warhammer in all ways, and it deals an extra 1d10 cold damage on a hit. You can drop the warhammer or give it to another creature.\n\nThe warhammer melts and is destroyed when it or its user accumulates 20 or more fire damage, or when the spell ends.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional hammer for each slot level above 2nd. Alternatively, you can create half as many hammers (round down), but each is oversized (1d10 bludgeoning damage, or 1d12 if wielded with two hands, plus 2d8 cold damage). Medium or smaller creatures have disadvantage when using oversized weapons, even if they are proficient with them.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a miniature hammer carved from ice or glass", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ice-soldiers", - "fields": { - "name": "Ice Soldiers", - "desc": "You pour water from the vial and cause two [ice soldiers](https://api.open5e.com/monsters/ice-soldier) to appear within range. The ice soldiers cannot form if there is no space available for them. The ice soldiers act immediately on your turn. You can mentally command them (no action required by you) to move and act where and how you desire. If you command an ice soldier to attack, it attacks that creature exclusively until the target is dead, at which time the soldier melts into a puddle of water. If an ice soldier moves farther than 30 feet from you, it immediately melts.\n", - "document": "deepm", - "level": 7, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you create one additional ice soldier.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "vial of water", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_icicle-daggers", - "fields": { - "name": "Icicle Daggers", - "desc": "When you cast this spell, three icicles appear in your hand. Each icicle has the same properties as a dagger but deals an extra 1d4 cold damage on a hit.\n\nThe icicle daggers melt a few seconds after leaving your hand, making it impossible for other creatures to wield them. If the surrounding temperature is at or below freezing, the daggers last for 1 hour. They melt instantly if you take 10 or more fire damage.\n", - "document": "deepm", - "level": 1, - "school": "conjuration", - "higher_level": "If you cast this spell using a spell slot of 2nd level or higher, you can create two additional daggers for each slot level above 1st. If you cast this spell using a spell slot of 4th level or higher, daggers that leave your hand don’t melt until the start of your next turn.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a miniature dagger shaped like an icicle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous or special", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_icy-grasp-of-the-void", - "fields": { - "name": "Icy Grasp of the Void", - "desc": "You summon the cold, inky darkness of the Void into being around a creature that you can see. The target takes 10d10 cold damage and is restrained for the duration; a successful Constitution saving throw halves the damage and negates the restrained condition. A restrained creature gains one level of exhaustion at the start of each of its turns. Creatures immune to cold and that do not breathe do not gain exhaustion. A creature restrained in this way can repeat the saving throw at the end of each of its turns, ending the spell on a success.", - "document": "deepm", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d10", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_icy-manipulation", - "fields": { - "name": "Icy Manipulation", - "desc": "One creature you can see within range must make a Constitution saving throw. On a failed save, the creature is petrified (frozen solid). A petrified creature can repeat the saving throw at the end of each of its turns, ending the effect on itself if it makes two successful saves. If a petrified creature gets two failures on the saving throw (not counting the original failure that caused the petrification), the petrification becomes permenant.\n\nThe petrification also becomes permanent if you maintain concentration on this spell for a full minute. A permanently petrified/frozen creature can be restored to normal with [greater restoration](https://api.open5e.com/spells/greater-restoration) or comparable magic, or by casting this spell on the creature again and maintaining concentration for a full minute.\n\nIf the frozen creature is damaged or broken before it recovers from being petrified, the injury carries over to its normal state.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of ice preserved from the plane of elemental ice", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ill-fated-word", - "fields": { - "name": "Ill-Fated Word", - "desc": "You call out a distracting epithet to a creature, worsening its chance to succeed at whatever it's doing. Roll a d4 and subtract the number rolled from an attack roll, ability check, or saving throw that the target has just made; the target uses the lowered result to determine the outcome of its roll.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_illuminate-spoor", - "fields": { - "name": "Illuminate Spoor", - "desc": "You touch a set of tracks created by a single creature. That set of tracks and all other tracks made by the same creature give off a faint glow. You and up to three creatures you designate when you cast this spell can see the glow. A creature that can see the glow automatically succeeds on Wisdom (Survival) checks to track that creature. If the tracks are covered by obscuring objects such as leaves or mud, you and the creatures you designate have advantage on Wisdom (Survival) checks to follow the tracks.\n If the creature leaving the tracks changes its tracks, such as by adding or removing footwear, the glow stops where the tracks change. Until the spell ends, you can use an action to touch and illuminate a new set of tracks.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 8 hours. When you use a spell slot of 5th level or higher, the duration is concentration, up to 24 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a firefly", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_impending-ally", - "fields": { - "name": "Impending Ally", - "desc": "You summon a duplicate of yourself as an ally who appears in an unoccupied space you can see within range. You control this ally, whose turn comes immediately after yours. When you or the ally uses a class feature, spell slot, or other expendable resource, it’s considered expended for both of you. When the spell ends, or if you are killed, the ally disappears immediately.\n", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration is extended by 1 round for every two slot levels above 3rd.", - "target_type": "point", - "range": "40 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a broken chain link", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "2 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_innocuous-aspect", - "fields": { - "name": "Innocuous Aspect", - "desc": "An area of false vision encompasses all creatures within 20 feet of you. You and each creature in the area that you choose to affect take on the appearance of a harmless creature or object, chosen by you. Each image is identical, and only appearance is affected. Sound, movement, or physical inspection can reveal the ruse.\n\nA creature that uses its action to study the image visually can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, that creature sees through the image.", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a paper ring", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_insightful-maneuver", - "fields": { - "name": "Insightful Maneuver", - "desc": "With a flash of insight, you know how to take advantage of your foe’s vulnerabilities. Until the end of your turn, the target has vulnerability to one type of damage (your choice). Additionally, if the target has any other vulnerabilities, you learn them.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_inspiring-speech", - "fields": { - "name": "Inspiring Speech", - "desc": "The verbal component of this spell is a 10-minute-long, rousing speech. At the end of the speech, all your allies within the affected area who heard the speech gain a +1 bonus on attack rolls and advantage on saving throws for 1 hour against effects that cause the charmed or frightened condition. Additionally, each recipient gains temporary hit points equal to your spellcasting ability modifier. If you move farther than 1 mile from your allies or you die, this spell ends. A character can be affected by only one casting of this spell at a time; subsequent, overlapping castings have no additional effect and don't extend the spell's duration.", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_instant-fortification", - "fields": { - "name": "Instant Fortification", - "desc": "Through this spell, you transform a miniature statuette of a keep into an actual fort. The fortification springs from the ground in an unoccupied space within range. It is a 10- foot cube (including floor and roof).\n\nEach wall has two arrow slits. One wall also includes a metal door with an [arcane lock](https://api.open5e.com/spells/arcane-lock) effect on it. You designate at the time of the fort’s creation which creatures can ignore the lock and enter the fortification. The door has AC 20 and 60 hit points, and it can be broken open with a successful DC 25 Strength (Athletics) check. The walls are made of stone (AC 15) and are immune to necrotic, poison, and psychic damage. Each 5-foot-square section of wall has 90 hit points. Reducing a section of wall to 0 hit points destroys it, allowing access to the inside of the fortification.\n", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can increase the length or width of the fortification by 5 feet for each slot level above 5th. You can make a different choice (width or length) for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a statuette of a keep worth 250 gp, which is consumed in the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_instant-siege-weapon", - "fields": { - "name": "Instant Siege Weapon", - "desc": "With this spell, you instantly transform raw materials into a siege engine of Large size or smaller (the GM has information on this topic). The raw materials for the spell don’t need to be the actual components a siege weapon is normally built from; they just need to be manufactured goods made of the appropriate substances (typically including some form of finished wood and a few bits of worked metal) and have a gold piece value of no less than the weapon’s hit points.\n\nFor example, a mangonel has 100 hit points. **Instant siege weapon** will fashion any collection of raw materials worth at least 100 gp into a mangonel. Those materials might be lumber and fittings salvaged from a small house, or 100 gp worth of finished goods such as three wagons or two heavy crossbows. The spell also creates enough ammunition for ten shots, if the siege engine uses ammunition.\n", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 6th level, a Huge siege engine can be made; at 8th level, a Gargantuan siege engine can be made. In addition, for each slot level above 4th, the spell creates another ten shots’ worth of ammunition.", - "target_type": "point", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "raw materials with a value in gp equal to the hit points of the siege weapon to be created", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_instant-snare", - "fields": { - "name": "Instant Snare", - "desc": "You create a snare on a point you can see within range. You can leave the snare as a magical trap, or you can use your reaction to trigger the trap when a Large or smaller creature you can see moves within 10 feet of the snare. If you leave the snare as a trap, a creature must succeed on an Intelligence (Investigation) or Wisdom (Perception) check against your spell save DC to find the trap.\n When a Large or smaller creature moves within 5 feet of the snare, the trap triggers. The creature must succeed on a Dexterity saving throw or be magically pulled into the air. The creature is restrained and hangs upside down 5 feet above the snare's location for 1 minute. A restrained creature can repeat the saving throw at the end of each of its turns, escaping the snare on a success. Alternatively, a creature, including the restrained target, can use its action to make an Intelligence (Arcana) check against your spell save DC. On a success, the restrained creature is freed, and the snare resets itself 1 minute later. If the creature succeeds on the check by 5 or more, the snare is destroyed instead.\n This spell alerts you with a ping in your mind when the trap is triggered if you are within 1 mile of the snare. This ping awakens you if you are sleeping.", - "document": "deepm", - "level": 2, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional snare for each slot level above 3rd. When you receive the mental ping that a trap was triggered, you know which snare was triggered if you have more than one.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a loop of twine", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ire-of-the-mountain", - "fields": { - "name": "Ire of the Mountain", - "desc": "An **ire of the mountain** spell melts nonmagical objects that are made primarily of metal. Choose one metal object weighing 10 pounds or less that you can see within range. Tendrils of blistering air writhe toward the target. A creature holding or wearing the item must make a Dexterity saving throw. On a successful save, the creature takes 1d8 fire damage and the spell has no further effect. On a failed save, the targeted object melts and is destroyed, and the creature takes 4d8 fire damage if it is wearing the object, or 2d8 fire damage if it is holding the object. If the object is not being held or worn by a creature, it is automatically melted and rendered useless. This spell cannot affect magic items.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional object for each slot level above 3rd.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of coal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "1d8", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_iron-hand", - "fields": { - "name": "Iron Hand", - "desc": "**Iron hand** is a common spell among metalsmiths and other crafters who work with heat. When you use this spell, one of your arms becomes immune to fire damage, allowing you to grasp red-hot metal, scoop up molten glass with your fingers, or reach deep into a roaring fire to pick up an object. In addition, if you take the Dodge action while you’re protected by **iron hand**, you have resistance to fire damage until the start of your next turn.", - "document": "deepm", - "level": 0, - "school": "abjuration", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_kareefs-entreaty", - "fields": { - "name": "Kareef’s Entreaty", - "desc": "Your kind words offer hope and support to a fallen comrade. Choose a willing creature you can see within range that is about to make a death saving throw. The creature gains advantage on the saving throw, and if the result of the saving throw is 18 or higher, the creature regains 3d4 hit points immediately.\n", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the creature adds 1 to its death saving throw for every two slot levels above 1st and regains an additional 1d4 hit points for each slot level above 1st if its saving throw result is 18 or higher.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_keening-wail", - "fields": { - "name": "Keening Wail", - "desc": "You emit an unholy shriek from beyond the grave. Each creature in a 15-foot cone must make a Constitution saving throw. A creature takes 6d6 necrotic damage on a failed save, or half as much damage on a successful one. If a creature with 50 hit points or fewer fails the saving throw by 5 or more, it is instead reduced to 0 hit points. This wail has no effect on constructs and undead.\n", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a ringed lock of hair from an undead creature", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 15, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_killing-fields", - "fields": { - "name": "Killing Fields", - "desc": "You invoke primal spirits of nature to transform natural terrain in a 100-foot cube in range into a private hunting preserve. The area can't include manufactured structures and if such a structure exists in the area, the spell ends.\n While you are conscious and within the area, you are aware of the presence and direction, though not exact location, of each beast and monstrosity with an Intelligence of 3 or lower in the area. When a beast or monstrosity with an Intelligence of 3 or lower tries to leave the area, it must make a Wisdom saving throw. On a failure, it is disoriented, uncertain of its surroundings or direction, and remains within the area for 1 hour. On a success, it leaves the area.\n When you cast this spell, you can specify individuals that are helped by the area's effects. All other creatures in the area are hindered by the area's effects. You can also specify a password that, when spoken aloud, gives the speaker the benefits of being helped by the area's effects.\n *Killing fields* creates the following effects within the area.\n ***Pack Hunters.*** A helped creature has advantage on attack rolls against a hindered creature if at least one helped ally is within 5 feet of the hindered creature and the helped ally isn't incapacitated. Slaying. Once per turn, when a helped creature hits with any weapon, the weapon deals an extra 1d6 damage of its type to a hindered creature. Tracking. A helped creature has advantage on Wisdom (Survival) and Dexterity (Stealth) checks against a hindered creature.\n You can create a permanent killing field by casting this spell in the same location every day for one year. Structures built in the area after the killing field is permanent don't end the spell.", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a game animal, which must be sacrificed as part of casting the spell", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": "cube", - "shape_magnitude": 100, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_kiss-of-the-succubus", - "fields": { - "name": "Kiss of the Succubus", - "desc": "You kiss a willing creature or one you have charmed or held spellbound through spells or abilities such as [dominate person](https://api.open5e.com/spells/dominate-person). The target must make a Constitution saving throw. A creature takes 5d10 psychic damage on a failed save, or half as much damage on a successful one. The target’s hit point maximum is reduced by an amount equal to the damage taken; this reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_kobolds-fury", - "fields": { - "name": "Kobold’s Fury", - "desc": "Your touch infuses the rage of a threatened kobold into the target. The target has advantage on melee weapon attacks until the end of its next turn. In addition, its next successful melee weapon attack against a creature larger than itself does an additional 2d8 damage.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a kobold scale", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_labyrinth-mastery", - "fields": { - "name": "Labyrinth Mastery", - "desc": "Upon casting this spell, you immediately gain a sense of your surroundings. If you are in a physical maze or any similar structure with multiple paths and dead ends, this spell guides you to the nearest exit, although not necessarily along the fastest or shortest route.\n\nIn addition, while the spell is guiding you out of such a structure, you have advantage on ability checks to avoid being surprised and on initiative rolls.\n\nYou gain a perfect memory of all portions of the structure you move through during the spell’s duration. If you revisit such a portion, you recognize that you’ve been there before and automatically notice any changes to the environment.\n\nAlso, while under the effect of this spell, you can exit any [maze](https://api.open5e.com/spells/maze) spell (and its lesser and greater varieties) as an action without needing to make an Intelligence check.", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of blank parchment", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_labyrinthine-howl", - "fields": { - "name": "Labyrinthine Howl", - "desc": "You let loose the howl of a ravenous beast, causing each enemy within range that can hear you to make a Wisdom saving throw. On a failed save, a creature believes it has been transported into a labyrinth and is under attack by savage beasts. An affected creature must choose either to face the beasts or to curl into a ball for protection. A creature that faces the beasts takes 7d8 psychic damage, and then the spell ends on it. A creature that curls into a ball falls prone and is stunned until the end of your next turn.\n", - "document": "deepm", - "level": 5, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 2d8 for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dead mouse", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "7d8", - "damage_types": [ - "psychic" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_lacerate", - "fields": { - "name": "Lacerate", - "desc": "You make a swift cutting motion through the air to lacerate a creature you can see within range. The target must make a Constitution saving throw. It takes 4d8 slashing damage on a failed save, or half as much damage on a successful one. If the saving throw fails by 5 or more, the wound erupts with a violent spray of blood, and the target gains one level of exhaustion.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a shard of bone or crystal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d8", - "damage_types": [ - "slashing" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_lair-sense", - "fields": { - "name": "Lair Sense", - "desc": "You set up a magical boundary around your lair. The boundary can’t exceed the dimensions of a 100-foot cube, but within that maximum, you can shape it as you like—to follow the walls of a building or cave, for example. While the spell lasts, you instantly become aware of any Tiny or larger creature that enters the enclosed area. You know the creature’s type but nothing else about it. You are also aware when creatures leave the area.\n\nThis awareness is enough to wake you from sleep, and you receive the knowledge as long as you’re on the same plane of existence as your lair.\n", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, add 50 feet to the maximum dimensions of the cube and add 12 hours to the spell’s duration for each slot level above 2nd.", - "target_type": "creature", - "range": "120 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "treasure worth at least 500 gp, which is not consumed in casting", - "material_cost": "500.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": "cube", - "shape_magnitude": 100, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_last-rays-of-the-dying-sun", - "fields": { - "name": "Last Rays of the Dying Sun", - "desc": "A burst of searing heat explodes from you, dealing 6d6 fire damage to all enemies within range. Immediately afterward, a wave of frigid cold rolls across the same area, dealing 6d6 cold damage to enemies. A creature that makes a successful Dexterity saving throw takes half the damage.\n", - "document": "deepm", - "level": 7, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 8th or 9th level, the damage from both waves increases by 1d6 for each slot level above 7th.", - "target_type": "area", - "range": "40 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_lava-stone", - "fields": { - "name": "Lava Stone", - "desc": "When you cast **lava stone** on a piece of sling ammo, the stone or bullet becomes intensely hot. As a bonus action, you can launch the heated stone with a sling: the stone increases in size and melts into a glob of lava while in flight. Make a ranged spell attack against the target. If it hits, the target takes 1d8 bludgeoning damage plus 6d6 fire damage. The target takes additional fire damage at the start of each of your next three turns, starting with 4d6, then 2d6, and then 1d6. The additional damage can be avoided if the target or an ally within 5 feet of the target scrapes off the lava. This is done by using an action to make a successful Wisdom (Medicine) check against your spellcasting save DC. The spell ends if the heated sling stone isn’t used immediately.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a sling stone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_lay-to-rest", - "fields": { - "name": "Lay to Rest", - "desc": "A pulse of searing light rushes out from you. Each undead creature within 15 feet of you must make a Constitution saving throw. A target takes 8d6 radiant damage on a failed save, or half as much damage on a successful one.\n An undead creature reduced to 0 hit points by this spell disintegrates in a burst of radiant motes, leaving anything it was wearing or carrying in a space it formerly occupied.", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of grave dirt", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "radiant" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_legend-killer", - "fields": { - "name": "Legend Killer", - "desc": "You tap into the life force of a creature that is capable of performing legendary actions. When you cast the spell, the target must make a successful Constitution saving throw or lose the ability to take legendary actions for the spell’s duration. A creature can’t use legendary resistance to automatically succeed on the saving throw against this spell. An affected creature can repeat the saving throw at the end of each of its turns, regaining 1 legendary action on a successful save. The target continues repeating the saving throw until the spell ends or it regains all its legendary actions.", - "document": "deepm", - "level": 7, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a silver scroll describing the spell’s target worth at least 1,000 gp, which the spell consumes", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_legion", - "fields": { - "name": "Legion", - "desc": "You call down a legion of shadowy soldiers in a 10-foot cube. Their features resemble a mockery of once-living creatures. Whenever a creature starts its turn inside the cube or within 5 feet of it, or enters the cube for the first time on its turn, the conjured shades make an attack using your melee spell attack modifier; on a hit, the target takes 3d8 necrotic damage. The space inside the cube is difficult terrain.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a toy soldier", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_legion-of-rabid-squirrels", - "fields": { - "name": "Legion of Rabid Squirrels", - "desc": "While in a forest, you call a legion of rabid squirrels to descend from the nearby trees at a point you can see within range. The squirrels form into a swarm that uses the statistics of a [swarm of poisonous snakes](https://api.open5e.com/monsters/swarm-of-poisonous-snakes), except it has a climbing speed of 30 feet rather than a swimming speed. The legion of squirrels is friendly to you and your companions. Roll initiative for the legion, which has its own turns. The legion of squirrels obeys your verbal commands (no action required by you). If you don’t issue any commands to the legion, it defends itself from hostile creatures but otherwise takes no actions. If you command it to move farther than 60 feet from you, the spell ends and the legion disperses back into the forest. A canid, such as a dog, wolf, fox, or worg, has disadvantage on attack rolls against targets other than the legion of rabid squirrels while the swarm is within 60 feet of the creature. When the spell ends, the squirrels disperse back into the forest.\n", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the legion’s poison damage increases by 1d6 for each slot level above 3rd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an acorn or nut", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_lesser-maze", - "fields": { - "name": "Lesser Maze", - "desc": "This spell functions as [maze](https://api.open5e.com/spells/maze), but the target can resist being sent to the extradimensional prison with a successful Intelligence saving throw. In addition, the maze is easier to navigate, requiring only a DC 12 Intelligence check to escape.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_life-drain", - "fields": { - "name": "Life Drain", - "desc": "With a snarled word of Void Speech, you create a swirling vortex of purple energy. Choose a point you can see within range. Creatures within 15 feet of the point take 10d6 necrotic damage, or half that damage with a successful Constitution saving throw. For each creature damaged by the spell, you can choose one other creature within range, including yourself, that is not a construct or undead. The secondary targets regain hit points equal to half the necrotic damage you dealt.\n", - "document": "deepm", - "level": 6, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the vortex’s damage increases by 1d6 for each slot level above 6th.", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_life-from-death", - "fields": { - "name": "Life from Death", - "desc": "Your touch can siphon energy from undead to heal your wounds. Make a melee spell attack against an undead creature within your reach. On a hit, the target takes 2d6 radiant damage, and you or an ally within 30 feet of you regains hit points equal to half the amount of radiant damage dealt. If used on an ally, this effect can restore the ally to no more than half of the ally's hit point maximum. This effect can't heal an undead or a construct. Until the spell ends, you can make the attack again on each of your turns as an action.", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "2d6", - "damage_types": [ - "radiant" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_life-hack", - "fields": { - "name": "Life Hack", - "desc": "Choose up to five creatures that you can see within range. Each of the creatures gains access to a pool of temporary hit points that it can draw upon over the spell’s duration or until the pool is used up. The pool contains 120 temporary hit points. The number of temporary hit points each individual creature can draw is determined by dividing 120 by the number of creatures with access to the pool. Hit points are drawn as a bonus action by the creature gaining the temporary hit points. Any number can be drawn at once, up to the maximum allowed.\n\nA creature can’t draw temporary hit points from the pool while it has temporary hit points from any source, including a previous casting of this spell.", - "document": "deepm", - "level": 8, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a ruby worth 500 gp, which is consumed during the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_life-sense", - "fields": { - "name": "Life Sense", - "desc": "For the duration, you can sense the location of any creature that isn’t a construct or an undead within 30 feet of you, regardless of impediments to your other senses. This spell doesn’t sense creatures that are dead. A creature trying to hide its life force from you can make a Charisma saving throw. On a success, you can’t sense the creature with this casting of the spell. If you cast the spell again, the creature must make the saving throw again to remain hidden from your senses.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a clear piece of quartz", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_life-transference-arrow", - "fields": { - "name": "Life Transference Arrow", - "desc": "You create a glowing arrow of necrotic magic and command it to strike a creature you can see within range. The arrow can have one of two effects; you choose which at the moment of casting. If you make a successful ranged spell attack, you and the target experience the desired effect. If the attack misses, the spell fails.\n* The arrow deals 2d6 necrotic damage to the target, and you heal the same amount of hit points.\n* You take 2d6 necrotic damage, and the target heals the same amount of hit points.\n", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the spell’s damage and hit points healed increase by 1d6 for each slot level above 1st.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_litany-of-sure-hands", - "fields": { - "name": "Litany of Sure Hands", - "desc": "This spell allows a creature within range to quickly perform a simple task (other than attacking or casting a spell) as a bonus action on its turn. Examples include finding an item in a backpack, drinking a potion, and pulling a rope. Other actions may also fall into this category, depending on the GM's ruling. The target also ignores the loading property of weapons.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_living-shadows", - "fields": { - "name": "Living Shadows", - "desc": "You whisper sibilant words of void speech that cause shadows to writhe with unholy life. Choose a point you can see within range. Writhing shadows spread out in a 15-foot-radius sphere centered on that point, grasping at creatures in the area. A creature that starts its turn in the area or that enters the area for the first time on its turn must make a successful Strength saving throw or be restrained by the shadows. A creature that starts its turn restrained by the shadows must make a successful Constitution saving throw or gain one level of exhaustion.\n\nA restrained creature can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.", - "document": "deepm", - "level": 5, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 15, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_lock-armor", - "fields": { - "name": "Lock Armor", - "desc": "You target a piece of metal equipment or a metal construct. If the target is a creature wearing metal armor or is a construct, it makes a Wisdom saving throw to negate the effect. On a failed save, the spell causes metal to cling to metal, making it impossible to move pieces against each other. This effectively paralyzes a creature that is made of metal or that is wearing metal armor with moving pieces; for example, scale mail would lock up because the scales must slide across each other, but a breastplate would be unaffected. Limited movement might still be possible, depending on how extensive the armor is, and speech is usually not affected. Metal constructs are paralyzed. An affected creature or construct can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A grease spell dispels lock armor on everything in its area.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of rust and metal shavings", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_looping-trail", - "fields": { - "name": "Looping Trail", - "desc": "You touch a trail no more than 1 mile in length, reconfiguring it to give it switchbacks and curves that make the trail loop back on itself. For the duration, the trail makes subtle changes in its configuration and in the surrounding environment to give the impression of forward progression along a continuous path. A creature on the trail must succeed on a Wisdom (Survival) check to notice that the trail is leading it in a closed loop.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of rope twisted into a loop", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_lovesick", - "fields": { - "name": "Lovesick", - "desc": "This spell causes creatures to behave unpredictably, as they randomly experience the full gamut of emotions of someone who has fallen head over heels in love. Each creature in a 10-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\n\nAn affected target can’t take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|-|-|\n| 1-3 | The creature spends its turn moping like a lovelorn teenager; it doesn’t move or take actions. |\n| 4–5 | The creature bursts into tears, takes the Dash action, and uses all its movement to run off in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. |\n| 6 | The creature uses its action to remove one item of clothing or piece of armor. Each round spent removing pieces of armor reduces its AC by 1. |\n| 7–8 | The creature drops anything it is holding in its hands and passionately embraces a randomly determined creature. Treat this as a grapple attempt which uses the Attack action. |\n| 9 | The creature flies into a jealous rage and uses its action to make a melee attack against a randomly determined creature. |\n| 10 | The creature can act and move normally. |\n\nAt the end of each of its turns, an affected target can make a Wisdom saving throw, ending the effect on itself on a successful save.\n", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of red rose petals", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 10, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_maddening-whispers", - "fields": { - "name": "Maddening Whispers", - "desc": "You whisper a string of Void Speech toward a target within range that can hear you. The target must succeed on a Charisma saving throw or be incapacitated. While incapacitated by this spell, the target’s speed is 0, and it can’t benefit from increases to its speed. To maintain the effect for the duration, you must use your action on subsequent turns to continue whispering; otherwise, the spell ends. The spell also ends if the target takes damage.", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_maim", - "fields": { - "name": "Maim", - "desc": "Your hands become claws bathed in necrotic energy. Make a melee spell attack against a creature you can reach. On a hit, the target takes 4d6 necrotic damage and a section of its body of your choosing withers:\n ***Upper Limb.*** The target has disadvantage on Strength checks, and, if it has the Multiattack action, it has disadvantage on its first attack roll each round.\n ***Lower Limb.*** The target's speed is reduced by 10 feet, and it has disadvantage on Dexterity checks.\n ***Body.*** Choose one damage type: bludgeoning, piercing, or slashing. The target loses its resistance to that damage type. If the target doesn't have resistance to the chosen damage type, it is vulnerable to that damage type instead.\n The effect is permanent until removed by *remove curse*, *greater restoration*, or similar magic.", - "document": "deepm", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "4d6", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_malevolent-waves", - "fields": { - "name": "Malevolent Waves", - "desc": "You create an invisible miasma that fills the area within 30 feet of you. All your allies have advantage on Dexterity (Stealth) checks they make within 30 feet of you, and all your enemies are poisoned while within that radius.", - "document": "deepm", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a profane object that has been bathed in blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_mammons-due", - "fields": { - "name": "Mammon’s Due", - "desc": "You summon a cylindrical sinkhole filled with burning ash and grasping arms made of molten metal at a point on the ground you can see within range. The sinkhole is 20 feet deep and 50 feet in diameter, and is difficult terrain. A creature that’s in the area when the spell is cast, or that begins its turn in the area or enters it during its turn, takes 10d6 fire damage and must make a Strength or Dexterity (creature’s choice) saving throw. On a failed save, the creature is restrained by the molten arms, which try to drag it below the surface of the ash.\n\nA creature that’s restrained by the arms at the start of your turn must make a successful Strength saving throw or be pulled 5 feet farther down into the ash. A creature pulled below the surface is blinded, deafened, and can’t breathe. To escape, a creature must use an action to make a successful Strength or Dexterity check against your spell save DC. On a successful check, the creature is no longer restrained and can move through the difficult terrain of the ash pit. It doesn’t need to make a Strength or Dexterity saving throw this turn to not be grabbed by the arms again, but it must make the saving throw as normal if it’s still in the ash pit at the start of its next turn.\n\nThe diameter of the ash pit increases by 10 feet at the start of each of your turns for the duration of the spell. The ash pit remains after the spell ends, but the grasping arms disappear and restrained creatures are freed automatically. As the ash slowly cools, it deals 1d6 less fire damage for each hour that passes after the spell ends.", - "document": "deepm", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "500 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "11 gilded human skulls worth 150 gp each, which are consumed by the spell", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_mark-prey", - "fields": { - "name": "Mark Prey", - "desc": "You choose a creature you can see within range as your prey. Until the spell ends, you have advantage on Wisdom (Perception) and Wisdom (Survival) checks to find or track your prey. In addition, the target is outlined in light that only you can see. Any attack roll you make against your prey has advantage if you can see it, and your prey can't benefit from being invisible against you. If the target drops to 0 hit points before this spell ends, you can use a bonus action on a subsequent turn to mark a new target as your prey.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 4th level, you can maintain your concentration on the spell for up to 8 hours. When you use a spell slot of 5th level or higher, you can maintain your concentration on the spell for up to 24 hours.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_mass-hobble-mount", - "fields": { - "name": "Mass Hobble Mount", - "desc": "When you cast **mass hobble mount**, you make separate ranged spell attacks against up to six horses, wolves, or other four-legged or two-legged beasts being ridden as mounts within 60 feet of you. The targets can be different types of beasts and can have different numbers of legs. Each beast hit by your spell is disabled so that it can’t move at its normal speed without incurring injury. An affected creature that moves more than half its base speed in a turn takes 4d6 bludgeoning damage.\n\nThis spell has no effect on a creature that your GM deems to not be a mount.\n", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_mass-surge-dampener", - "fields": { - "name": "Mass Surge Dampener", - "desc": "Using your strength of will, you protect up to three creatures other than yourself from the effect of a chaos magic surge. A protected creature can make a DC 13 Charisma saving throw to negate the effect of a chaos magic surge that does not normally allow a saving throw, or it gains advantage on a saving throw that is normally allowed. Once a protected creature makes a successful saving throw allowed by **mass surge dampener**, the spell’s effect ends for that creature.", - "document": "deepm", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute, or until expended", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_maw-of-needles", - "fields": { - "name": "Maw of Needles", - "desc": "A spiny array of needle-like fangs protrudes from your gums, giving you a spiny bite. For the duration, you can use your action to make a melee spell attack with the bite. On a hit, the target takes 2d6 piercing damage and must succeed on a Dexterity saving throw or some of the spines in your mouth break off, sticking in the target. Until this spell ends, the target must succeed on a Constitution saving throw at the start of each of its turns or take 1d6 piercing damage from the spines. If you hit a target that has your spines stuck in it, your attack deals extra damage equal to your spellcasting ability modifier, and more spines don’t break off in the target. Your spines can stick in only one target at a time. If your spines stick into another target, the spines on the previous target crumble to dust, ending the effect on that target.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage of the spiny bite and the spines increases by 1d6 for every two slot levels above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": true, - "damage_roll": "2d6", - "damage_types": [ - "piercing" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_memento-mori", - "fields": { - "name": "Memento Mori", - "desc": "You transform yourself into a horrifying vision of death, rotted and crawling with maggots, exuding the stench of the grave. Each creature that can see you must succeed on a Charisma saving throw or be stunned until the end of your next turn.\n\nA creature that succeeds on the saving throw is immune to further castings of this spell for 24 hours.", - "document": "deepm", - "level": 0, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_mephitic-croak", - "fields": { - "name": "Mephitic Croak", - "desc": "You release an intensely loud burp of acidic gas in a 15-foot cone. Creatures in the area take 2d6 acid damage plus 2d6 thunder damage, or half as much damage with a successful Dexterity saving throw. A creature whose Dexterity saving throw fails must also make a successful Constitution saving throw or be stunned and poisoned until the start of your next turn.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, both acid and thunder damage increase by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dead toad and a dram of arsenic worth 10 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 15, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_mind-exchange", - "fields": { - "name": "Mind Exchange", - "desc": "One humanoid of your choice that you can see within range must make a Charisma saving throw. On a failed save, you project your mind into the body of the target. You use the target’s statistics but don’t gain access to its knowledge, class features, or proficiencies, retaining your own instead. Meanwhile, the target’s mind is shunted into your body, where it uses your statistics but likewise retains its own knowledge, class features, and proficiencies.\n\nThe exchange lasts until either of the the two bodies drops to 0 hit points, until you end it as a bonus action, or until you are forced out of the target body by an effect such as a [dispel magic](https://api.open5e.com/spells/dispel-magic) or [dispel evil and good](https://api.open5e.com/spells/dispel-evil-and-good) spell (the latter spell defeats **mind exchange** even though possession by a humanoid isn’t usually affected by that spell). When the effect of this spell ends, both switched minds return to their original bodies. The target of the spell is immune to mind exchange for 24 hours after succeeding on the saving throw or after the exchange ends.\n\nThe effects of the exchange can be made permanent with a [wish](https://api.open5e.com/spells/wish) spell or comparable magic.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a prism and silver coin", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_mire", - "fields": { - "name": "Mire", - "desc": "When you cast mire, you create a 10-foot-diameter pit of quicksand, sticky mud, or a similar dangerous natural hazard suited to the region. A creature that’s in the area when the spell is cast or that enters the affected area must make a successful Strength saving throw or sink up to its waist and be restrained by the mire. From that point on, the mire acts as quicksand, but the DC for Strength checks to escape from the quicksand is equal to your spell save DC. A creature outside the mire trying to pull another creature free receives a +5 bonus on its Strength check.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of sand mixed with water", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_misstep", - "fields": { - "name": "Misstep", - "desc": "You gesture to a creature within range that you can see. If the target fails a Wisdom saving throw, it uses its reaction to move 5 feet in a direction you dictate. This movement does not provoke opportunity attacks. The spell automatically fails if you direct the target into a dangerous area such as a pit trap, a bonfire, or off the edge of a cliff, or if the target has already used its reaction.", - "document": "deepm", - "level": 0, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_mist-of-wonders", - "fields": { - "name": "Mist of Wonders", - "desc": "A colorful mist surrounds you out to a radius of 30 feet. Creatures inside the mist see odd shapes in it and hear random sounds that don’t make sense. The very concepts of order and logic don’t seem to exist inside the mist.\n\nAny 1st-level spell that’s cast in the mist by another caster or that travels through the mist is affected by its strange nature. The caster must make a Constitution saving throw when casting the spell. On a failed save, the spell transforms into another 1st-level spell the caster knows (chosen by the GM from those available), even if that spell is not currently prepared. The altered spell’s slot level or its original target or targeted area can’t be changed. Cantrips are unaffected. If (in the GM’s judgment) none of the caster’s spells known of that level can be transformed, the spell being cast simply fails.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, it affects any spell cast using a spell slot of any lower level. For instance, using a 6th-level slot enables you to transform a spell of 5th level or lower into another spell of the same level.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_monstrous-empathy", - "fields": { - "name": "Monstrous Empathy", - "desc": "This spell lets you forge a connection with a monstrosity. Choose a monstrosity that you can see within range. It must see and hear you. If the monstrosity’s Intelligence is 4 or higher, the spell fails. Otherwise, the monstrosity must succeed on a Wisdom saving throw or be charmed by you for the spell’s duration. If you or one of your companions harms the target, the spell ends.\n", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional monstrosity for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a morsel of food", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_moon-trap", - "fields": { - "name": "Moon Trap", - "desc": "While casting this spell under the light of the moon, you inscribe a glyph that covers a 10-foot-square area on a flat, stationary surface such as a floor or a wall. Once the spell is complete, the glyph is invisible in moonlight but glows with a faint white light in darkness.\n\nAny creature that touches the glyph, except those you designate during the casting of the spell, must make a successful Wisdom saving throw or be drawn into an inescapable maze until the sun rises.\n\nThe glyph lasts until the next sunrise, at which time it flares with bright light, and any creature trapped inside returns to the space it last occupied, unharmed. If that space has become occupied or dangerous, the creature appears in the nearest safe unoccupied space.", - "document": "deepm", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "powdered silver worth 250 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "up to 8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_mosquito-bane", - "fields": { - "name": "Mosquito Bane", - "desc": "This spell kills any insects or swarms of insects within range that have a total of 25 hit points or fewer.\n", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the number of hit points affected increases by 15 for each slot level above 1st. Thus, a 2nd-level spell kills insects or swarms that have up to 40 hit points, a 3rd-level spell kills those with 55 hit points or fewer, and so forth, up to a maximum of 85 hit points for a slot of 6th level or higher.", - "target_type": "point", - "range": "50 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_mud-pack", - "fields": { - "name": "Mud Pack", - "desc": "This spell covers you or a willing creature you touch in mud consistent with the surrounding terrain. For the duration, the spell protects the target from extreme cold and heat, allowing the target to automatically succeed on Constitution saving throws against environmental hazards related to temperature. In addition, the target has advantage on Dexterity (Stealth) checks while traveling at a slow pace in the terrain related to the component for this spell.\n\nIf the target is subject to heavy precipitation for 1 minute, the precipitation removes the mud, ending the spell.\n", - "document": "deepm", - "level": 1, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is 8 hours and you can target up to ten willing creatures within 30 feet of you.", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a clump of mud", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_negative-image", - "fields": { - "name": "Negative Image", - "desc": "You create a shadow-tunnel between your location and one other creature you can see within range. You and that creature instantly swap positions. If the target creature is unwilling to exchange places with you, it can resist the effect by making a Charisma saving throw. On a successful save, the spell has no effect.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of reflective obsidian", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_nether-weapon", - "fields": { - "name": "Nether Weapon", - "desc": "You whisper in Void Speech and touch a weapon. Until the spell ends, the weapon turns black, becomes magical if it wasn’t before, and deals 2d6 necrotic damage (in addition to its normal damage) on a successful hit. A creature that takes necrotic damage from the enchanted weapon can’t regain hit points until the start of your next turn.\n", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "ink, chalk, or some other writing medium", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_night-terrors", - "fields": { - "name": "Night Terrors", - "desc": "You amplify the fear that lurks in the heart of all creatures. Select a target point you can see within the spell’s range. Every creature within 20 feet of that point becomes frightened until the start of your next turn and must make a successful Wisdom saving throw or become paralyzed. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Creatures immune to being frightened are not affected by **night terrors**.", - "document": "deepm", - "level": 4, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a crow’s eye", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_nightfall", - "fields": { - "name": "Nightfall", - "desc": "You call upon night to arrive ahead of schedule. With a sharp word, you create a 30-foot-radius cylinder of night centered on a point on the ground within range. The cylinder extends vertically for 100 feet or until it reaches an obstruction, such as a ceiling. The area inside the cylinder is normal darkness, and thus heavily obscured. Creatures inside the darkened cylinder can see illuminated areas outside the cylinder normally.", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "100 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "cylinder", - "shape_magnitude": 30, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_nip-at-the-heels", - "fields": { - "name": "Nip at the Heels", - "desc": "You create an illusory pack of wild dogs that bark and nip at one creature you can see within range, which must make a Wisdom saving throw. On a failed save, the target has disadvantage on ability checks and attack rolls for the duration as it is distracted by the dogs. At the end of each of its turns, the target can make a Wisdom saving throw, ending the effect on itself on a successful save. A target that is at least 10 feet off the ground (in a tree, flying, and so forth) has advantage on the saving throw, staying just out of reach of the jumping and barking dogs.\n", - "document": "deepm", - "level": 2, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dog’s tooth", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_not-dead-yet", - "fields": { - "name": "Not Dead Yet", - "desc": "You cast this spell while touching the cloth doll against the intact corpse of a Medium or smaller humanoid that died within the last hour. At the end of the casting, the body reanimates as an undead creature under your control. While the spell lasts, your consciousness resides in the animated body. You can use an action to manipulate the body’s limbs in order to make it move, and you can see and hear through the body’s eyes and ears, but your own body becomes unconscious. The animated body can neither attack nor defend itself. This spell doesn’t change the appearance of the corpse, so further measures might be needed if the body is to be used in a way that involves fooling observers into believing it’s still alive. The spell ends instantly, and your consciousness returns to your body, if either your real body or the animated body takes any damage.\n\nYou can’t use any of the target’s abilities except for nonmagical movement and darkvision. You don’t have access to its knowledge, proficiencies, or anything else that was held in its now dead mind, and you can’t make it speak.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a cloth doll filled with herbs and diamond dust worth 100 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_not-this-day", - "fields": { - "name": "Not This Day!", - "desc": "The creature you touch gains protection against either a specific damage type (slashing, poison, fire, radiant, and the like) or a category of creature (giant, beast, elemental, monstrosity, and so forth) that you name when the spell is cast. For the next 24 hours, the target has advantage on saving throws involving that type of damage or kind of creature, including death saving throws if the attack that dropped the target to 0 hit points is affected by this spell. A character can be under the effect of only a single **not this day!** spell at one time; a second casting on the same target cancels the preexisting protection.", - "document": "deepm", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_orb-of-light", - "fields": { - "name": "Orb of Light", - "desc": "An orb of light the size of your hand shoots from your fingertips toward a creature within range, which takes 3d8 radiant damage and is blinded for 1 round. A target that makes a successful Dexterity saving throw takes half the damage and is not blinded.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "radiant" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_outflanking-boon", - "fields": { - "name": "Outflanking Boon", - "desc": "This spell targets one enemy, which must make a Wisdom saving throw. On a failed save, an illusory ally of yours appears in a space from which it threatens to make a melee attack against the target. Your allies gain advantage on melee attacks against the target for the duration because of the distracting effect of the illusion. An affected target repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the spell targets one additional enemy for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_paragon-of-chaos", - "fields": { - "name": "Paragon of Chaos", - "desc": "You become a humanoid-shaped swirling mass of color and sound. You gain resistance to bludgeoning, piercing, and slashing damage, and immunity to poison and psychic damage. You are also immune to the following conditions: exhaustion, paralyzed, petrified, poisoned, and unconscious. Finally, you gain truesight to 30 feet and can teleport 30 feet as a move.\n\nEach round, as a bonus action, you can cause an automatic chaos magic surge, choosing either yourself or another creature you can see within 60 feet as the caster for the purpose of resolving the effect. You must choose the target before rolling percentile dice to determine the nature of the surge. The DC of any required saving throw is calculated as if you were the caster.", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_pendulum", - "fields": { - "name": "Pendulum", - "desc": "You give the touched creature an aspect of regularity in its motions and fortunes. If the target gets a failure on a Wisdom saving throw, then for the duration of the spell it doesn’t make d20 rolls—to determine the results of attack rolls, ability checks, and saving throws it instead follows the sequence 20, 1, 19, 2, 18, 3, 17, 4, and so on.", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small pendulum or metronome made of brass and rosewood worth 10 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_phantom-dragon", - "fields": { - "name": "Phantom Dragon", - "desc": "You tap your dragon magic to make an ally appear as a draconic beast. The target of the spell appears to be a dragon of size Large or smaller. When seeing this illusion, observers make a Wisdom saving throw to see through it.\n\nYou can use an action to make the illusory dragon seem ferocious. Choose one creature within 30 feet of the illusory dragon to make a Wisdom saving throw. If it fails, the creature is frightened. The creature remains frightened until it uses an action to make a successful Wisdom saving throw or the spell’s duration expires.\n", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, increase the number of targets the illusion can affect by one for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of dragon egg shell", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_pitfall", - "fields": { - "name": "Pitfall", - "desc": "A pit opens under a Huge or smaller creature you can see within range that does not have a flying speed. This pit isn’t a simple hole in the floor or ground, but a passage to an extradimensional space. The target must succeed on a Dexterity saving throw or fall into the pit, which closes over it. At the end of your next turn, a new portal opens 20 feet above where the pit was located, and the creature falls out. It lands prone and takes 6d6 bludgeoning damage.\n\nIf the original target makes a successful saving throw, you can use a bonus action on your turn to reopen the pit in any location within range that you can see. The spell ends when a creature has fallen through the pit and taken damage, or when the duration expires.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_poisoned-volley", - "fields": { - "name": "Poisoned Volley", - "desc": "By drawing back and releasing an imaginary bowstring, you summon forth dozens of glowing green arrows. The arrows dissipate when they hit, but all creatures in a 20-foot square within range take 3d8 poison damage and become poisoned. A creature that makes a successful Constitution saving throw takes half as much damage and is not poisoned.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_potency-of-the-pack", - "fields": { - "name": "Potency of the Pack", - "desc": "You bestow lupine traits on a group of living creatures that you designate within range. Choose one of the following benefits to be gained by all targets for the duration:\n\n* ***Thick Fur.*** Each target sprouts fur over its entire body, giving it a +2 bonus to Armor Class.\n* ***Keen Hearing and Smell.*** Each target has advantage on Wisdom (Perception) checks that rely on hearing or smell.\n* ***Pack Tactics.*** Each affected creature has advantage on an attack roll against a target if at least one of the attacker’s allies (also under the effect of this spell) is within 5 feet of the target of the attack and the ally isn’t incapacitated.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 minute for each slot level above 3rd.", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a few hairs from a wolf", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_power-word-kneel", - "fields": { - "name": "Power Word Kneel", - "desc": "When you shout this word of power, creatures within 20 feet of a point you specify are compelled to kneel down facing you. A kneeling creature is treated as prone. Up to 55 hit points of creatures are affected, beginning with those that have the fewest hit points. A kneeling creature makes a Wisdom saving throw at the end of its turn, ending the effect on itself on a successful save. The effect ends immediately on any creature that takes damage while kneeling.", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an emerald worth at least 100 gp", - "material_cost": "100.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_power-word-pain", - "fields": { - "name": "Power Word Pain", - "desc": "When you utter this word of power, one creature within 60 feet of you takes 4d10 force damage. At the start of each of its turns, the creature must make a successful Constitution saving throw or take an extra 4d10 force damage. The effect ends on a successful save.", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a quill jabbed into your own body", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d10", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_primal-infusion", - "fields": { - "name": "Primal Infusion", - "desc": "You channel the fury of nature, drawing on its power. Until the spell ends, you gain the following benefits:\n* You gain 30 temporary hit points. If any of these remain when the spell ends, they are lost.\n* You have advantage on attack rolls when one of your allies is within 5 feet of the target and the ally isn’t incapacitated.\n* Your weapon attacks deal an extra 1d10 damage of the same type dealt by the weapon on a hit.\n* You gain a +2 bonus to AC.\n* You have proficiency on Constitution saving throws.", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a bit of fur from a carnivorous animal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_prismatic-ray", - "fields": { - "name": "Prismatic Ray", - "desc": "A ray of shifting color springs from your hand. Make a ranged spell attack against a single creature you can see within range. The ray’s effect and the saving throw that applies to it depend on which color is dominant when the beam strikes its target, determined by rolling a d8.\n\n| d8 | Color | Effect | Saving Throw |\n|-|-|-|-|\n| 1 | Red | 8d10 fire damage | Dexterity |\n| 2 | Orange | 8d10 acid damage | Dexterity |\n| 3 | Yellow | 8d10 lightning damage | Dexterity |\n| 4 | Green | Target Poisoned | Constitution |\n| 5 | Blue | Target Deafened | Constitution |\n| 6 | Indigo | Target Frightened | Wisdom |\n| 7 | Violet | Target Stunned | Constitution |\n| 8 | Shifting Ray | Target Blinded | Constitution |\n\nA target takes half as much damage on a successful Dexterity saving throw. A successful Constitution or Wisdom saving throw negates the effect of a ray that inflicts a condition on the target; on a failed save, the target is affected for 5 rounds or until the effect is negated. If the result of your attack roll is a critical hit, you can choose the color of the beam that hits the target, but the attack does not deal additional damage.", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_protection-from-the-void", - "fields": { - "name": "Protection from the Void", - "desc": "Until the spell ends, one willing creature you touch has resistance to necrotic and psychic damage and has advantage on saving throws against Void spells.", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small bar of silver worth 15 sp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_protective-ice", - "fields": { - "name": "Protective Ice", - "desc": "When you cast **protective ice**, you encase a willing target in icy, medium armor equivalent to a breastplate (AC 14). A creature without the appropriate armor proficiency has the usual penalties. If the target is already wearing armor, it only uses the better of the two armor classes.\n\nA creature striking a target encased in **protective ice** with a melee attack while within 5 feet of it takes 1d6 cold damage.\n\nIf the armor’s wearer takes fire damage, an equal amount of damage is done to the armor, which has 30 hit points and is damaged only when its wearer takes fire damage. Damaged ice can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis, but the armor can’t have more than 30 points repaired.\n", - "document": "deepm", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a 4th-level spell slot, it creates splint armor (AC 17, 40 hit points). If you cast this spell using a 5th-level spell slot, it creates plate armor (AC 18, 50 hit points). The armor’s hit points increase by 10 for each spell slot above 5th, but the AC remains 18. Additionally, if you cast this spell using a spell slot of 4th level or higher, the armor deals an extra +2 cold damage for each spell slot above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a seed encased in ice or glass", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "cold" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_puff-of-smoke", - "fields": { - "name": "Puff of Smoke", - "desc": "By harnessing the elemental power of fire, you warp nearby air into obscuring smoke. One creature you can see within range must make a Dexterity saving throw. If it fails, the creature is blinded until the start of your next turn. **Puff of smoke** has no effect on creatures that have tremorsense or blindsight.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_pummelstone", - "fields": { - "name": "Pummelstone", - "desc": "You cause a fist-sized chunk of stone to appear and hurl itself against the spell’s target. Make a ranged spell attack. On a hit, the target takes 1d6 bludgeoning damage and must roll a d4 when it makes an attack roll or ability check during its next turn, subtracting the result of the d4 from the attack or check roll.", - "document": "deepm", - "level": 0, - "school": "conjuration", - "higher_level": "The spell’s damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pebble", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_pyroclasm", - "fields": { - "name": "Pyroclasm", - "desc": "You point toward an area of ground or a similar surface within range. A geyser of lava erupts from the chosen spot. The geyser is 5 feet in diameter and 40 feet high. Each creature in the cylinder when it erupts or at the start of your turn takes 10d8 fire damage, or half as much damage if it makes a successful Dexterity saving throw.\n\nThe geyser also forms a pool of lava at its base. Initially, the pool is the same size as the geyser, but at the start of each of your turns for the duration, the pool’s radius increases by 5 feet. A creature in the pool of lava (but not in the geyser) at the start of your turn takes 5d8 fire damage.\n\nWhen a creature leaves the pool of lava, its speed is reduced by half and it has disadvantage on Dexterity saving throws, caused by a hardening layer of lava. These penalties last until the creature uses an action to break the hardened stone away from itself.\n\nIf you maintain concentration on **pyroclasm** for a full minute, the lava geyser and pool harden into permanent, nonmagical stone. A creature in either area when the stone hardens is restrained until the stone is broken away.", - "document": "deepm", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "500 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a shard of obsidian", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "10d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_quick-time", - "fields": { - "name": "Quick Time", - "desc": "You make one living creature or plant within range move rapidly in time compared to you. The target becomes one year older. For example, you could cast this spell on a seedling, which causes the plant to sprout from the soil, or you could cast this spell on a newly hatched duckling, causing it to become a full-grown duck. If the target is a creature with an Intelligence of 3 or higher, it must succeed on a Constitution saving throw to resist the aging. It can choose to fail the saving throw.\n", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you increase the target’s age by one additional year for each slot level above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "any seed", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_quicken", - "fields": { - "name": "Quicken", - "desc": "You touch one willing creature. Once before the duration of the spell expires, the target can roll a d4 and add the number rolled to an initiative roll or Dexterity saving throw it has just made. The spell then ends.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_quicksilver-mantle", - "fields": { - "name": "Quicksilver Mantle", - "desc": "You transform an ordinary cloak into a highly reflective, silvery garment. This mantle increases your AC by 2 and grants advantage on saving throws against gaze attacks. In addition, whenever you are struck by a ray such as a [ray of enfeeblement](https://api.open5e.com/spells/ray-of-enfeeblement), [scorching ray](https://api.open5e.com/spells/scorching-ray), or even [disintegrate](https://api.open5e.com/spells/disintegrate), roll 1d4. On a result of 4, the cloak deflects the ray, which instead strikes a randomly selected target within 10 feet of you. The cloak deflects only the first ray that strikes it each round; rays after the first affect you as normal.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a nonmagical cloak and a dram of quicksilver worth 10 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_quintessence", - "fields": { - "name": "Quintessence", - "desc": "By calling upon an archangel, you become infused with celestial essence and take on angelic features such as golden skin, glowing eyes, and ethereal wings. For the duration of the spell, your Armor Class can’t be lower than 20, you can’t be frightened, and you are immune to necrotic damage.\n\nIn addition, each hostile creature that starts its turn within 120 feet of you or enters that area for the first time on a turn must succeed on a Wisdom saving throw or be frightened for 1 minute. A creature frightened in this way is restrained. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature’s saving throw is successful or if the effect ends for it, the creature is immune to the frightening effect of the spell until you cast **quintessence** again.", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_raid-the-lair", - "fields": { - "name": "Raid the Lair", - "desc": "You create an invisible circle of protective energy centered on yourself with a radius of 10 feet. This field moves with you. The caster and all allies within the energy field are protected against dragons’ lair actions.\n* Attack rolls resulting directly from lair actions are made with disadvantage.\n* Saving throws resulting directly from lair actions are made with advantage, and damage done by these lair actions is halved.\n* Lair actions occur on an initiative count 10 lower than normal.\n\nThe caster has advantage on Constitution saving throws to maintain concentration on this spell.", - "document": "deepm", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of the dragon whose lair you are raiding", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_rain-of-blades", - "fields": { - "name": "Rain of Blades", - "desc": "You call down a rain of swords, spears, and axes. The blades fill 150 square feet (six 5-foot squares, a circle 15 feet in diameter, or any other pattern you want as long as it forms one contiguous space at least 5 feet wide in all places. The blades deal 6d6 slashing damage to each creature in the area at the moment the spell is cast, or half as much damage on a successful Dexterity saving throw. An intelligent undead injured by the blades is frightened for 1d4 rounds if it fails a Charisma saving throw. Most of the blades break or are driven into the ground on impact, but enough survive intact that any single piercing or slashing melee weapon can be salvaged from the affected area and used normally if it is claimed before the spell ends. When the duration expires, all the blades (including the one that was salvaged) disappear.\n", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, an unbroken blade can be picked up and used as a magical +1 weapon until it disappears.", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "shard of metal from a weapon", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "4 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ray-of-alchemical-negation", - "fields": { - "name": "Ray of Alchemical Negation", - "desc": "You launch a ray of blazing, polychromatic energy from your fingertips. Make a ranged spell attack against an alchemical item or a trap that uses alchemy to achieve its ends, such as a trap that sprays acid, releases poisonous gas, or triggers an explosion of alchemist’s fire. A hit destroys the alchemical reagents, rendering them harmless. The attack is made against the most suitable object Armor Class.\n\nThis spell can also be used against a creature within range that is wholly or partially composed of acidic, poisonous, or alchemical components, such as an alchemical golem or an ochre jelly. In that case, a hit deals 6d6 force damage, and the target must make a successful Constitution saving throw or it deals only half as much damage with its acidic, poisonous, or alchemical attacks for 1 minute. A creature whose damage is halved can repeat the saving throw at the end of each of its turns, ending the effect on a success.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ray-of-life-suppression", - "fields": { - "name": "Ray of Life Suppression", - "desc": "You launch a swirling ray of disruptive energy at a creature within range. Make a ranged spell attack. On a hit, the creature takes 6d8 necrotic damage and its maximum hit points are reduced by an equal amount. This reduction lasts until the creature finishes a short or long rest, or until it receives the benefit of a [greater restoration](https://api.open5e.com/spells/greater-restoration) spell or comparable magic.\n\nThis spell has no effect on constructs or undead.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "6d8", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_reaver-spirit", - "fields": { - "name": "Reaver Spirit", - "desc": "You inspire allies to fight with the savagery of berserkers. You and any allies you can see within range have advantage on Strength checks and Strength saving throws; resistance to bludgeoning, piercing, and slashing damage from nonmagical attacks; and a +2 bonus to damage with melee weapons.\n\nWhen the spell ends, each affected creature must succeed on a Constitution saving throw or gain 1d4 levels of exhaustion.\n", - "document": "deepm", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bonus to damage increases by 1 for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_reposition", - "fields": { - "name": "Reposition", - "desc": "You designate up to three friendly creatures (one of which can be yourself) within range. Each target teleports to an unoccupied space of its choosing that it can see within 30 feet of itself.", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the spell targets one additional friendly creature for each slot level above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_reset", - "fields": { - "name": "Reset", - "desc": "Choose up to four creatures within range. If a target is your ally, it can reroll initiative, keeping whichever of the two results it prefers. If a target is your enemy, it must make a successful Wisdom saving throw or reroll initiative, keeping whichever of the two results you prefer. Changes to the initiative order go into effect at the start of the next round.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can affect one additional creature for each slot level above 4th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 4, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_reverberate", - "fields": { - "name": "Reverberate", - "desc": "You touch the ground at your feet with the metal ring, creating an impact that shakes the earth ahead of you. Creatures and unattended objects touching the ground in a 15-foot cone emanating from you take 4d6 thunder damage, and creatures fall prone; a creature that makes a successful Dexterity saving throw takes half the damage and does not fall prone.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a metal ring", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 15, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_revive-beast", - "fields": { - "name": "Revive Beast", - "desc": "You touch a beast that has died within the last minute. That beast returns to life with 1 hit point. This spell can’t return to life a beast that has died of old age, nor can it restore any missing body parts.", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "emeralds worth 100 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_right-the-stars", - "fields": { - "name": "Right the Stars", - "desc": "You subtly warp the flow of space and time to enhance your conjurations with cosmic potency. Until the spell ends, the maximum duration of any conjuration spell you cast that requires concentration is doubled, any creature that you summon or create with a conjuration spell has 30 temporary hit points, and you have advantage on Charisma checks and Charisma saving throws.", - "document": "deepm", - "level": 7, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "seven black candles and a circle of powdered charred bone or basalt", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ring-strike", - "fields": { - "name": "Ring Strike", - "desc": "You infuse two metal rings with magic, causing them to revolve in a slow orbit around your head or hand. For the duration, when you hit a target within 60 feet of you with an attack, you can launch one of the rings to strike the target as well. The target takes 1d10 bludgeoning damage and must succeed on a Strength saving throw or be pushed 5 feet directly away from you. The ring is destroyed when it strikes.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect up to two additional rings for each spell slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "two metal rings", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "1d10", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_ring-ward", - "fields": { - "name": "Ring Ward", - "desc": "The iron ring you use to cast the spell becomes a faintly shimmering circlet of energy that spins slowly around you at a radius of 15 feet. For the duration, you and your allies inside the protected area have advantage on saving throws against spells, and all affected creatures gain resistance to one type of damage of your choice.", - "document": "deepm", - "level": 7, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an iron ring worth 200 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_riptide", - "fields": { - "name": "Riptide", - "desc": "With a sweeping gesture, you cause water to swell up into a 20-foot tall, 20-foot radius cylinder centered on a point on the ground that you can see. Each creature in the cylinder must make a Strength saving throw. On a failed save, the creature is restrained and suspended in the cylinder; on a successful save, the creature moves to just outside the nearest edge of the cylinder.\n\nAt the start of your next turn, you can direct the current of the swell as it dissipates. Choose one of the following options.\n\n* ***Riptide.*** The water in the cylinder flows in a direction you choose, sweeping along each creature in the cylinder. An affected creature takes 3d8 bludgeoning damage and is pushed 40 feet in the chosen direction, landing prone.\n* ***Undertow.*** The water rushes downward, pulling each creature in the cylinder into an unoccupied space at the center. Each creature is knocked prone and must make a successful Constitution saving throw or be stunned until the start of your next turn.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 round", - "shape_type": "cylinder", - "shape_magnitude": 20, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_rolling-thunder", - "fields": { - "name": "Rolling Thunder", - "desc": "A tremendous bell note explodes from your outstretched hand and rolls forward in a line 30 feet long and 5 feet wide. Each creature in the line must make a successful Constitution saving throw or be deafened for 1 minute. A creature made of material such as stone, crystal, or metal has disadvantage on its saving throw against this spell.\n\nWhile a creature is deafened in this way, it is wreathed in thundering energy; it takes 2d8 thunder damage at the start of its turn, and its speed is halved. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a sliver of metal from a gong", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_rotting-corpse", - "fields": { - "name": "Rotting Corpse", - "desc": "Your familiarity with the foul effects of death allows you to prevent a dead body from being returned to life using anything but the most powerful forms of magic.\n\nYou cast this spell by touching a creature that died within the last 24 hours. The body immediately decomposes to a state that prevents the body from being returned to life by the [raise dead](https://api.open5e.com/spells/raise-dead) spell (though a [resurrection](https://api.open5e.com/spells/resurrection) spell still works). At the end of this spell’s duration, the body decomposes to a rancid slime, and it can’t be returned to life except through a [true resurrection](https://api.open5e.com/spells/true-resurrection) spell.\n", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can affect one additional corpse for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a rotting piece of flesh from an undead creature", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "3 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_rune-of-imprisonment", - "fields": { - "name": "Rune of Imprisonment", - "desc": "You trace a glowing black rune in the air which streaks toward and envelops its target. Make a ranged spell attack against the target. On a successful hit, the rune absorbs the target creature, leaving only the glowing rune hanging in the space the target occupied. The subject can take no actions while imprisoned, nor can the subject be targeted or affected by any means. Any spell durations or conditions affecting the creature are postponed until the creature is freed. A dying creature does not lose hit points or stabilize until freed.\n\nA creature adjacent to the rune can use a move action to attempt to disrupt its energies; doing so allows the imprisoned creature to make a Wisdom saving throw. On a success, this disruption negates the imprisonment and ends the effect. Disruption can be attempted only once per round.", - "document": "deepm", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "ink", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_salt-lash", - "fields": { - "name": "Salt Lash", - "desc": "You create a long, thin blade of razor-sharp salt crystals. You can wield it as a longsword, using your spellcasting ability to modify your weapon attack rolls. The sword deals 2d8 slashing damage on a hit, and any creature struck by the blade must make a successful Constitution saving throw or be stunned by searing pain until the start of your next turn. Constructs and undead are immune to the blade’s secondary (stun) effect; plants and creatures composed mostly of water, such as water elementals, also take an additional 2d8 necrotic damage if they fail the saving throw.\n\nThe spell lasts until you stop concentrating on it, the duration expires, or you let go of the blade for any reason.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of salt worth 1 sp, which is consumed during the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_sand-ship", - "fields": { - "name": "Sand Ship", - "desc": "Casting **sand ship** on a water vessel up to the size of a small sailing ship transforms it into a vessel capable of sailing on sand as easily as water. The vessel still needs a trained crew and relies on wind or oars for propulsion, but it moves at its normal speed across sand instead of water for the duration of the spell. It can sail only over sand, not soil or solid rock. For the duration of the spell, the vessel doesn’t float; it must be beached or resting on the bottom of a body of water (partially drawn up onto a beach, for example) when the spell is cast, or it sinks into the water.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a boat or ship of 10,000 gp value or less", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_sanguine-horror", - "fields": { - "name": "Sanguine Horror", - "desc": "When you cast this spell, you prick yourself with the material component, taking 1 piercing damage. The spell fails if this damage is prevented or negated in any way. From the drop of blood, you conjure a [blood elemental](https://api.open5e.com/monsters/blood-elemental). The blood elemental is friendly to you and your companions for the duration. It disappears when it’s reduced to 0 hit points or when the spell ends.\n\nRoll initiative for the elemental, which has its own turns. It obeys verbal commands from you (no action required by you). If you don’t issue any commands to the blood elemental, it defends itself but otherwise takes no actions. If your concentration is broken, the blood elemental doesn’t disappear, but you lose control of it and it becomes hostile to you and your companions. An uncontrolled blood elemental cannot be dismissed by you, and it disappears 1 hour after you summoned it.", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "5 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a miniature dagger", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_scale-rot", - "fields": { - "name": "Scale Rot", - "desc": "You summon death and decay to plague your enemies. For dragons, this act often takes the form of attacking a foe’s armor and scales, as a way of weakening an enemy dragon and leaving it plagued by self-doubt and fear. (This enchantment is useful against any armored creature, not just dragons.)\n\nOne creature of your choice within range that has natural armor must make a Constitution saving throw. If it fails, attacks against that creature’s Armor Class are made with advantage, and the creature can’t regain hit points through any means while the spell remains in effect. An affected creature can end the spell by making a successful Constitution saving throw, which also makes the creature immune to further castings of **scale rot** for 24 hours.\n", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the number of affected targets increases by one for each slot level above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of rotten meat", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_scentless", - "fields": { - "name": "Scentless", - "desc": "You touch a willing creature or object that is not being worn or carried. For the duration, the target gives off no odor. A creature that relies on smell has disadvantage on Wisdom (Perception) checks to detect the target and Wisdom (Survival) checks to track the target. The target is invisible to a creature that relies solely on smell to sense its surroundings. This spell has no effect on targets with unusually strong scents, such as ghasts.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "1 ounce of pure water", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_screaming-ray", - "fields": { - "name": "Screaming Ray", - "desc": "You create a ray of psychic energy to attack your enemies. Make a ranged spell attack against a creature. On a hit, the target takes 1d4 psychic damage and is deafened until the end of your next turn. If the target succeeds on a Constitution saving throw, it is not deafened.\n", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you create one additional ray for each slot level above 1st. You can direct the rays at one target or several.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "1d4", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_scribe", - "fields": { - "name": "Scribe", - "desc": "This spell enables you to create a copy of a one-page written work by placing a blank piece of paper or parchment near the work that you are copying. All the writing, illustrations, and other elements in the original are reproduced in the new document, in your handwriting or drawing style. The new medium must be large enough to accommodate the original source. Any magical properties of the original aren’t reproduced, so you can’t use scribe to make copies of spell scrolls or magic books.", - "document": "deepm", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_scry-ambush", - "fields": { - "name": "Scry Ambush", - "desc": "You foresee your foe’s strike a split second before it occurs. When you cast this spell successfully, you also designate a number of your allies that can see or hear you equal to your spellcasting ability modifier + your proficiency bonus. Those allies are also not surprised by the attack and can act normally in the first round of combat.\n\nIf you would be surprised, you must make a check using your spellcasting ability at the moment your reaction would be triggered. The check DC is equal to the current initiative count. On a failed check, you are surprised and can’t use your reaction to cast this spell until after your next turn. On a successful check, you can use your reaction to cast this spell immediately.", - "document": "deepm", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_sculpt-snow", - "fields": { - "name": "Sculpt Snow", - "desc": "When you **cast sculpt** snow in an area filled with snow, you can create one Large object, two Medium objects, or four smaller objects from snow. With a casting time of 1 action, your sculptings bear only a crude resemblance to generic creatures or objects. If you increase the casting time to 1 minute, your creations take on a more realistic appearance and can even vaguely resemble specific creatures; the resemblance isn’t strong enough to fool anyone, but the creature can be recognized. The sculptures are as durable as a typical snowman.\n\nSculptures created by this spell can be animated with [animate objects](https://api.open5e.com/spells/animate-objects) or comparable magic. Animated sculptures gain the AC, hit points, and other attributes provided by that spell. When they attack, they deal normal damage plus a similar amount of cold damage; an animated Medium sculpture, for example, deals 2d6 + 1 bludgeoning damage plus 2d6 + 1 cold damage.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can sculpt one additional Large object for each slot level above 2nd. Two Large objects can be replaced with one Huge object.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_seal-of-sanctuary", - "fields": { - "name": "Seal of Sanctuary", - "desc": "You inscribe an angelic seal on the ground, the floor, or other solid surface of a structure. The seal creates a spherical sanctuary with a radius of 50 feet, centered on the seal. For the duration, aberrations, elementals, fey, fiends, and undead that approach to within 5 feet of the boundary know they are about to come into contact with a deadly barrier. If such a creature moves so as to touch the boundary, or tries to cross the boundary by any means, including teleportation and extradimensional travel, it must make a Charisma saving throw. On a failed save, it takes 10d8 radiant damage, is repelled to 5 feet outside the boundary, and can’t target anything inside the boundary with attacks, spells, or abilities until the spell ends. On a successful save, the creature takes half as much radiant damage and can cross the boundary. If the creature is a fiend that isn’t on its home plane, it is immediately destroyed (no saving throw) instead of taking damage.\n\nAberrations, elementals, fey, and undead that are within 50 feet of the seal (inside the boundary) have disadvantage on ability checks, attack rolls, and saving throws, and each such creature takes 2d8 radiant damage at the start of its turn.\n\nCreatures other than aberrations, elementals, fey, fiends, and undead can’t be charmed or frightened while within 50 feet of the seal.\n\nThe seal has AC 18, 50 hit points, resistance to bludgeoning, piercing, and slashing damage, and immunity to psychic and poison damage. Ranged attacks against the seal are made with disadvantage. If it is scribed on the surface of an object that is later destroyed (such as a wooden door), the seal is not damaged and remains in place, perhaps suspended in midair. The spell ends only if the seal is reduced to 0 hit points.", - "document": "deepm", - "level": 7, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "incense and special inks worth 250 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "10d8", - "damage_types": [ - "radiant" - ], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_searing-sun", - "fields": { - "name": "Searing Sun", - "desc": "This spell intensifies the light and heat of the sun, so that it burns exposed flesh. You must be able to see the sun when you cast the spell. The searing sunlight affects a cylindrical area 50 feet in radius and 200 feet high, centered on the a point within range. Each creature that starts its turn in that area takes 5d8 fire damage, or half the damage with a successful Constitution saving throw. A creature that’s shaded by a solid object —such as an awning, a building, or an overhanging boulder— has advantage on the saving throw. On your turn, you can use an action to move the center of the cylinder up to 20 feet along the ground in any direction.", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "200 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a magnifying lens", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_see-beyond", - "fields": { - "name": "See Beyond", - "desc": "This spell enables a willing creature you touch to see through any obstructions as if they were transparent. For the duration, the target can see into and through opaque objects, creatures, spells, and effects that obstruct line of sight to a range of 30 feet. Inside that distance, the creature can choose what it perceives as opaque and what it perceives as transparent as freely and as naturally as it can shift its focus from nearby to distant objects.\n\nAlthough the creature can see any target within 30 feet of itself, all other requirements must still be satisfied before casting a spell or making an attack against that target. For example, the creature can see an enemy that has total cover but can’t shoot that enemy with an arrow because the cover physically prevents it. That enemy could be targeted by a [geas](https://api.open5e.com/spells/geas) spell, however, because [geas](https://api.open5e.com/spells/geas) needs only a visible target.", - "document": "deepm", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a transparent crystal", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_seed-of-destruction", - "fields": { - "name": "Seed of Destruction", - "desc": "This spell impregnates a living creature with a rapidly gestating [hydra](https://api.open5e.com/spells/hydra) that consumes the target from within before emerging to wreak havoc on the world. Make a ranged spell attack against a living creature within range that you can see. On a hit, you implant a five‑headed embryonic growth into the creature. Roll 1d3 + 1 to determine how many rounds it takes the embryo to mature.\n\nDuring the rounds when the embryo is gestating, the affected creature takes 5d4 slashing damage at the start of its turn, or half the damage with a successful Constitution saving throw.\n\nWhen the gestation period has elapsed, a tiny hydra erupts from the target’s abdomen at the start of your turn. The hydra appears in an unoccupied space adjacent to the target and immediately grows into a full-size Huge aberration. Nearby creatures are pushed away to clear a sufficient space as the hydra grows. This creature is a standard hydra, but with the ability to cast [bane](https://api.open5e.com/spells/bane) as an action (spell save DC 11) requiring no spell components. Roll initiative for the hydra, which takes its own turns. It obeys verbal commands that you issue to it (no action required by you). If you don’t give it a command or it can’t follow your command, the hydra attacks the nearest living creature.\n\nAt the end of each of the hydra’s turns, you must make a DC 15 Charisma saving throw. On a successful save, the hydra remains under your control and friendly to you and your companions. On a failed save, your control ends, the hydra becomes hostile to all creatures, and it attacks the nearest creature to the best of its ability.\n\nThe hydra disappears at the end of the spell’s duration, or its existence can be cut short with a [wish](https://api.open5e.com/spells/wish) spell or comparable magic, but nothing less. The embryo can be destroyed before it reaches maturity by using a [dispel magic](https://api.open5e.com/spells/dispel-magic) spell under the normal rules for dispelling high-level magic.", - "document": "deepm", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "five teeth from a still-living humanoid and a vial of the caster’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "5d4", - "damage_types": [ - "slashing" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_seeping-death", - "fields": { - "name": "Seeping Death", - "desc": "Your touch inflicts a virulent, flesh-eating disease. Make a melee spell attack against a creature within your reach. On a hit, the creature’s Dexterity score is reduced by 1d4, and it is afflicted with the seeping death disease for the duration.\n\nSince this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease’s effects apply to it and can end the spell early.\n\n***Seeping Death.*** The creature’s flesh is slowly liquefied by a lingering necrotic pestilence. At the end of each long rest, the diseased creature must succeed on a Constitution saving throw or its Dexterity score is reduced by 1d4. The reduction lasts until the target finishes a long rest after the disease is cured. If the disease reduces the creature’s Dexterity to 0, the creature dies.", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "3 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_seers-reaction", - "fields": { - "name": "Seer’s Reaction", - "desc": "Your foreknowledge allows you to act before others, because you knew what was going to happen. When you cast this spell, make a new initiative roll with a +5 bonus. If the result is higher than your current initiative, your place in the initiative order changes accordingly. If the result is also higher than the current place in the initiative order, you take your next turn immediately and then use the higher number starting in the next round.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_semblance-of-dread", - "fields": { - "name": "Semblance of Dread", - "desc": "You adopt the visage of the faceless god Nyarlathotep. For the duration, any creature within 10 feet of you and able to see you can’t willingly move closer to you unless it makes a successful Wisdom saving throw at the start of its turn. Constructs and undead are immune to this effect.\n\nFor the duration of the spell, you also gain vulnerability to radiant damage and have advantage on saving throws against effects that cause the frightened condition.", - "document": "deepm", - "level": 0, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shade", - "fields": { - "name": "Shade", - "desc": "You create a magical screen across your eyes. While the screen remains, you are immune to blindness caused by visible effects, such as [color spray](https://api.open5e.com/spells/color-spray). The spell doesn’t alleviate blindness that’s already been inflicted on you. If you normally suffer penalties on attacks or ability checks while in sunlight, those penalties don’t apply while you’re under the effect of this spell.\n", - "document": "deepm", - "level": 2, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 10 minutes for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shadow-armor", - "fields": { - "name": "Shadow Armor", - "desc": "You can siphon energy from the plane of shadow to protect yourself from an immediate threat. As a reaction, you pull shadows around yourself to distort reality. The attack against you is made with disadvantage, and you have resistance to radiant damage until the start of your next turn.", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shadow-bite", - "fields": { - "name": "Shadow Bite", - "desc": "You create a momentary needle of cold, sharp pain in a creature within range. The target must make a successful Constitution saving throw or take 1d6 necrotic damage immediately and have its speed halved until the start of your next turn.", - "document": "deepm", - "level": 0, - "school": "illusion", - "higher_level": "This spell’s damage increases to 2d6 when you reach 5th level, 3d6 when you reach 11th level, and 4d6 when you reach 17th level.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shadow-blindness", - "fields": { - "name": "Shadow Blindness", - "desc": "You make a melee spell attack against a creature you touch that has darkvision as an innate ability; on a hit, the target’s darkvision is negated until the spell ends. This spell has no effect against darkvision that derives from a spell or a magic item. The target retains all of its other senses.", - "document": "deepm", - "level": 0, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shadow-hands", - "fields": { - "name": "Shadow Hands", - "desc": "A freezing blast of shadow explodes out from you in a 10-foot cone. Any creature caught in the shadow takes 2d4 necrotic damage and is frightened; a successful Wisdom saving throw halves the damage and negates the frightened condition.\n", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage dealt by the attack increases by 2d4 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shadow-monsters", - "fields": { - "name": "Shadow Monsters", - "desc": "You choose up to two creatures within range. Each creature must make a Wisdom saving throw. On a failed save, the creature perceives its allies as hostile, shadowy monsters, and it must attack its nearest ally. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 4, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a doll", - "material_cost": null, - "material_consumed": false, - "target_count": 2, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shadow-puppets", - "fields": { - "name": "Shadow Puppets", - "desc": "You animate the shadow of a creature within range, causing it to attack that creature. As a bonus action when you cast the spell, or as an action on subsequent rounds while you maintain concentration, make a melee spell attack against the creature. If it hits, the target takes 2d8 psychic damage and must make a successful Intelligence saving throw or be incapacitated until the start of your next turn.\n", - "document": "deepm", - "level": 2, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of powdered lead", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": true, - "damage_roll": "2d8", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shadow-trove", - "fields": { - "name": "Shadow Trove", - "desc": "You paint a small door approximately 2 feet square on a hard surface to create a portal into the void of space. The portal “peels off” the surface you painted it on and follows you when you move, always floating in the air within 5 feet of you. An icy chill flows out from the portal. You can place up to 750 pounds of nonliving matter in the portal, where it stays suspended in the frigid void until you withdraw it. Items that are still inside the shadow trove when the duration ends spill out onto the ground. You can designate a number of creatures up to your Intelligence modifier who have access to the shadow trove; only you and those creatures can move objects into the portal.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 2 hours for each slot level above 3rd.", - "target_type": "creature", - "range": "5 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "ink made from the blood of a raven", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shadows-brought-to-light", - "fields": { - "name": "Shadows Brought to Light", - "desc": "If a creature you designate within range fails a Charisma saving throw, you cause the target’s shadow to come to life and reveal one of the creature’s most scandalous secrets: some fact that the target would not want widely known (GM’s choice). When casting the spell, you choose whether everyone present will hear the secret, in which case the shadow speaks loudly in a twisted version of the target’s voice, or if the secret is whispered only to you. The shadow speaks in the target’s native language.\n\nIf the target does not have a scandalous secret or does not have a spoken language, the spell fails as if the creature’s saving throw had succeeded.\n\nIf the secret was spoken aloud, the target takes a −2 penalty to Charisma checks involving anyone who was present when it was revealed. This penalty lasts until you finish a long rest.\n\n***Ritual Focus.*** If you expend your ritual focus, the target has disadvantage on Charisma checks instead of taking the −2 penalty.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shadowy-retribution", - "fields": { - "name": "Shadowy Retribution", - "desc": "You fill a small silver cup with your own blood (taking 1d4 piercing damage) while chanting vile curses in the dark. Once the chant is completed, you consume the blood and swear an oath of vengeance against any who harm you.\n\nIf you are reduced to 0 hit points, your oath is invoked; a shadow materializes within 5 feet of you. The shadow attacks the creature that reduced you to 0 hit points, ignoring all other targets, until it or the target is slain, at which point the shadow dissipates into nothing.\n", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, an additional shadow is conjured for each slot level above 4th.\n\n***Ritual Focus.*** If you expend your ritual focus, the spell summons a banshee instead of a shadow. If you also use a higher-level spell slot, additional undead are still shadows.", - "target_type": "point", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small silver cup filled with the caster’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "12 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shared-sacrifice", - "fields": { - "name": "Shared Sacrifice", - "desc": "You and up to five of your allies within range contribute part of your life force to create a pool that can be used for healing. Each target takes 5 necrotic damage (which can’t be reduced but can be healed normally), and those donated hit points are channeled into a reservoir of life essence. As an action, any creature who contributed to the pool of hit points can heal another creature by touching it and drawing hit points from the pool into the injured creature. The injured creature heals a number of hit points equal to your spellcasting ability modifier, and the hit points in the pool decrease by the same amount. This process can be repeated until the pool is exhausted or the spell’s duration expires.", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "5", - "damage_types": [ - "necrotic" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_sheen-of-ice", - "fields": { - "name": "Sheen of Ice", - "desc": "A small icy globe shoots from your finger to a point within range and then explodes in a spray of ice. Each creature within 20 feet of that point must make a successful Dexterity saving throw or become coated in ice for 1 minute. Ice-coated creatures move at half speed. An invisible creature becomes outlined by the ice so that it loses the benefits of invisibility while the ice remains. The spell ends for a specific creature if that creature takes 5 or more fire damage.", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "water within a glass globe", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shifting-the-odds", - "fields": { - "name": "Shifting the Odds", - "desc": "By wrapping yourself in strands of chaotic energy, you gain advantage on the next attack roll or ability check that you make. Fate is a cruel mistress, however, and her scales must always be balanced. The second attack roll or ability check (whichever occurs first) that you make after casting **shifting the odds** is made with disadvantage.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shiver", - "fields": { - "name": "Shiver", - "desc": "You fill a humanoid creature with such cold that its teeth begin to chatter and its body shakes uncontrollably. Roll 5d8; the total is the maximum hit points of a creature this spell can affect. The affected creature must succeed on a Constitution saving throw, or it cannot cast a spell or load a missile weapon until the end of your next turn. Once a creature has been affected by this spell, it is immune to further castings of this spell for 24 hours.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "The maximum hit points you can affect increases by 4d8 when you reach 5th level (9d8), 11th level (13d8), and 17th level (17d8).", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "humanoid tooth", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_shroud-of-death", - "fields": { - "name": "Shroud of Death", - "desc": "You call up a black veil of necrotic energy that devours the living. You draw on the life energy of all living creatures within 30 feet of you that you can see. When you cast the spell, every living creature within 30 feet of you that you can see takes 1 necrotic damage, and all those hit points transfer to you as temporary hit points. The damage and the temporary hit points increase to 2 per creature at the start of your second turn concentrating on the spell, 3 per creature at the start of your third turn, and so on. All living creatures you can see within 30 feet of you at the start of each of your turns are affected. A creature can avoid the effect by moving more than 30 feet away from you or by getting out of your line of sight, but it becomes susceptible again if the necessary conditions are met. The temporary hit points last until the spell ends.", - "document": "deepm", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of ice", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1", - "damage_types": [ - "necrotic" - ], - "duration": "10 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_sidestep-arrow", - "fields": { - "name": "Sidestep Arrow", - "desc": "With a few perfectly timed steps, you interpose a foe between you and danger. You cast this spell when an enemy makes a ranged attack or a ranged spell attack against you but before the attack is resolved. At least one other foe must be within 10 feet of you when you cast **sidestep arrow**. As part of casting the spell, you can move up to 15 feet to a place where an enemy lies between you and the attacker. If no such location is available, the spell has no effect. You must be able to move (not restrained or grappled or prevented from moving for any other reason), and this move does not provoke opportunity attacks. After you move, the ranged attack is resolved with the intervening foe as the target instead of you.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_sign-of-koth", - "fields": { - "name": "Sign of Koth", - "desc": "You invoke the twilight citadels of Koth to create a field of magical energy in the shape of a 60-foot-radius, 60-foot‑tall cylinder centered on you. The only visible evidence of this field is a black rune that appears on every doorway, window, or other portal inside the area.\n\nChoose one of the following creature types: aberration, beast, celestial, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead. The sign affects creatures of the chosen type (including you, if applicable) in the following ways:\n* The creatures can’t willingly enter the cylinder’s area by nonmagical means; the cylinder acts as an invisible, impenetrable wall of force. If an affected creature tries to enter the cylinder’s area by using teleportation, a dimensional shortcut, or other magical means, it must make a successful Charisma saving throw or the attempt fails.\n* They cannot hear any sounds that originate inside the cylinder.\n* They have disadvantage on attack rolls against targets inside the cylinder.\n* They can’t charm, frighten, or possess creatures inside the cylinder.\nCreatures that aren’t affected by the field and that take a short rest inside it regain twice the usual number of hit points for each Hit Die spent at the end of the rest.\n\nWhen you cast this spell, you can choose to reverse its magic; doing this will prevent affected creatures from leaving the area instead of from entering it, make them unable to hear sounds that originate outside the cylinder, and so forth. In this case, the field provides no benefit for taking a short rest.\n", - "document": "deepm", - "level": 7, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the radius increases by 30 feet for each slot level above 7th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a platinum dagger and a powdered black pearl worth 500 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_silhouette", - "fields": { - "name": "Silhouette", - "desc": "You create a shadow play against a screen or wall. The surface can encompass up to 100 square feet. The number of creatures that can see the shadow play equals your Intelligence score. The shadowy figures make no sound but they can dance, run, move, kiss, fight, and so forth. Most of the figures are generic types—a rabbit, a dwarf—but a number of them equal to your Intelligence modifier can be recognizable as specific individuals.", - "document": "deepm", - "level": 0, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_sir-mittinzs-move-curse", - "fields": { - "name": "Sir Mittinz’s Move Curse", - "desc": "When you are within range of a cursed creature or object, you can transfer the curse to a different creature or object that’s also within range. The curse must be transferred from object to object or from creature to creature.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "20 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a finely crafted hollow glass sphere and incense worth 50 gp, which the spell consumes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_sleep-of-the-deep", - "fields": { - "name": "Sleep of the Deep", - "desc": "Your magic haunts the dreams of others. Choose a sleeping creature that you are aware of within range. Creatures that don’t sleep, such as elves, can’t be targeted. The creature must succeed on a Wisdom saving throw or it garners no benefit from the rest, and when it awakens, it gains one level of exhaustion and is afflicted with short‑term madness.\n", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of black sand, a tallow candle, and a drop of cephalopod ink", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_slippery-fingers", - "fields": { - "name": "Slippery Fingers", - "desc": "You set a series of small events in motion that cause the targeted creature to drop one nonmagical item of your choice that it’s currently holding, unless it makes a successful Charisma saving throw.", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_slither", - "fields": { - "name": "Slither", - "desc": "You momentarily become a shadow (a humanoid-shaped absence of light, not the undead creature of that name). You can slide under a door, through a keyhole, or through any other tiny opening. All of your equipment is transformed with you, and you can move up to your full speed during the spell’s duration. While in this form, you have advantage on Dexterity (Stealth) checks made in darkness or dim light and you are immune to nonmagical bludgeoning, piercing, and slashing damage. You can dismiss this spell by using an action to do so.\n\nIf you return to your normal form while in a space too small for you (such as a mouse hole, sewer pipe, or the like), you take 4d6 force damage and are pushed to the nearest space within 50 feet big enough to hold you. If the distance is greater than 50 feet, you take an extra 1d6 force damage for every additional 10 feet traveled.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target an additional willing creature that you touch for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "ashes from a wooden statue of you, made into ink and used to draw your portrait, worth 50 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_snow-boulder", - "fields": { - "name": "Snow Boulder", - "desc": "A ball of snow forms 5 feet away from you and rolls in the direction you point at a speed of 30 feet, growing larger as it moves. To roll the boulder into a creature, you must make a successful ranged spell attack. If the boulder hits, the creature must make a successful Dexterity saving throw or be knocked prone and take the damage indicated below. Hitting a creature doesn’t stop the snow boulder’s movement or impede its growth, as long as you continue to maintain concentration on the effect. When the spell ends, the boulder stops moving.\n\n| Round | Size | Damage |\n|-|-|-|\n| 1 | Small | 1d6 bludgeoning |\n| 2 | Medium | 2d6 bludgeoning |\n| 3 | Large | 4d6 bludgeoning |\n| 4 | Huge | 6d6 bludgeoning |\n\n", - "document": "deepm", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of snow", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "4 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_snow-fort", - "fields": { - "name": "Snow Fort", - "desc": "This spell creates a simple “fort” from packed snow. The snow fort springs from the ground in an unoccupied space within range. It encircles a 10-foot area with sloping walls 4 feet high. The fort provides half cover (+2 AC) against ranged and melee attacks coming from outside the fort. The walls have AC 12, 30 hit points per side, are immune to cold, necrotic, poison, and psychic damage, and are vulnerable to fire damage. A damaged wall can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis, up to a maximum of 30 points.\n\nThe spell also creates a dozen snowballs that can be thrown (range 20/60) and that deal 1d4 bludgeoning damage plus 1d4 cold damage on a hit.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a ring carved from chalk or white stone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_snowy-coat", - "fields": { - "name": "Snowy Coat", - "desc": "This spell makes a slight alteration to a target creature’s appearance that gives it advantage on Dexterity (Stealth) checks to hide in snowy terrain. In addition, the target can use a bonus action to make itself invisible in snowy terrain for 1 minute. The spell ends at the end of the minute or when the creature attacks or casts a spell.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_song-of-the-forest", - "fields": { - "name": "Song of the Forest", - "desc": "You attune your senses to the natural world, so that you detect every sound that occurs within 60 feet: wind blowing through branches, falling leaves, grazing deer, trickling streams, and more. You can clearly picture the source of each sound in your mind. The spell gives you tremorsense out to a range of 10 feet. In addition, you have advantage on Wisdom (Perception) checks that rely on hearing. Creatures that make no noise or that are magically silent cannot be detected by this spell’s effect.\n\n**Song of the forest** functions only in natural environments; it fails if cast underground, in a city, or in a building that isolates the caster from nature (GM’s discretion).\n\n***Ritual Focus.*** If you expend your ritual focus, the spell also gives you blindsight out to a range of 30 feet.", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dried leaf, crumpled and released", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_speak-with-inanimate-object", - "fields": { - "name": "Speak with Inanimate Object", - "desc": "You awaken a spirit that resides inside an inanimate object such as a rock, a sign, or a table, and can ask it up to three yes-or-no questions. The spirit is indifferent toward you unless you have done something to harm or help it. The spirit can give you information about its environment and about things it has observed (with its limited senses), and it can act as a spy for you in certain situations. The spell ends when its duration expires or after you have received answers to three questions.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_spin", - "fields": { - "name": "Spin", - "desc": "You designate a creature you can see within range and tell it to spin. The creature can resist this command with a successful Wisdom saving throw. On a failed save, the creature spins in place for the duration of the spell. A spinning creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A creature that has spun for 1 round or longer becomes dizzy and has disadvantage on attack rolls and ability checks until 1 round after it stops spinning.", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_spinning-axes", - "fields": { - "name": "Spinning Axes", - "desc": "Spinning axes made of luminous force burst out from you to strike all creatures within 10 feet of you. Each of those creatures takes 5d8 force damage, or half the damage with a successful Dexterity saving throw. Creatures damaged by this spell that aren’t undead or constructs begin bleeding. A bleeding creature takes 2d6 necrotic damage at the end of each of its turns for 1 minute. A creature can stop the bleeding for itself or another creature by using an action to make a successful Wisdom (Medicine) check against your spell save DC or by applying any amount of magical healing.\n", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an iron ring", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_spiteful-weapon", - "fields": { - "name": "Spiteful Weapon", - "desc": "You create a connection between the target of the spell, an attacker that injured the target during the last 24 hours, and the melee weapon that caused the injury, all of which must be within range when the spell is cast.\n\nFor the duration of the spell, whenever the attacker takes damage while holding the weapon, the target must make a Charisma saving throw. On a failed save, the target takes the same amount and type of damage, or half as much damage on a successful one. The attacker can use the weapon on itself and thus cause the target to take identical damage. A self-inflicted wound hits automatically, but damage is still rolled randomly.\n\nOnce the connection is established, it lasts for the duration of the spell regardless of range, so long as all three elements remain on the same plane. The spell ends immediately if the attacker receives any healing.\n", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "The target has disadvantage on its Charisma saving throws if **spiteful weapon** is cast using a spell slot of 5th level or higher.", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a melee weapon that has been used to injure the target", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_spur-mount", - "fields": { - "name": "Spur Mount", - "desc": "You urge your mount to a sudden burst of speed. Until the end of your next turn, you can direct your mount to use the Dash or Disengage action as a bonus action. This spell has no effect on a creature that you are not riding.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an apple or a sugar cube", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_staff-of-violet-fire", - "fields": { - "name": "Staff of Violet Fire", - "desc": "You create a quarterstaff of pure necrotic energy that blazes with intense purple light; it appears in your chosen hand. If you let it go, it disappears, though you can evoke it again as a bonus action if you have maintained concentration on the spell.\n\nThis staff is an extremely unstable and impermanent magic item; it has 10 charges and does not require attunement. The wielder can use one of three effects:\n\n* By using your action to make a melee attack and expending 1 charge, you can attack with it. On a hit, the target takes 5d10 necrotic damage.\n* By expending 2 charges, you can release bolts of necrotic fire against up to 3 targets as ranged attacks for 1d8+4 necrotic damage each.\n\nThe staff disappears and the spell ends when all the staff's charges have been expended or if you stop concentrating on the spell.\n", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the melee damage increases by 1d10 for every two slot levels above 4th, or you add one additional ranged bolt for every two slot levels above 4th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "mummy dust", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "necrotic" - ], - "duration": "special", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_stanch", - "fields": { - "name": "Stanch", - "desc": "The target’s blood coagulates rapidly, so that a dying target stabilizes and any ongoing bleeding or wounding effect on the target ends. The target can't be the source of blood for any spell or effect that requires even a drop of blood.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_starburst", - "fields": { - "name": "Starburst", - "desc": "You cause a mote of starlight to appear and explode in a 5-foot cube you can see within range. If a creature is in the cube, it must succeed on a Charisma saving throw or take 1d8 radiant damage.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "This spell’s damage increases to 2d8 when you reach 5th level, 3d8 when you reach 11th level, and 4d8 when you reach 17th level.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_starfall", - "fields": { - "name": "Starfall", - "desc": "You cause bolts of shimmering starlight to fall from the heavens, striking up to five creatures that you can see within range. Each bolt strikes one target, dealing 6d6 radiant damage, knocking the target prone, and blinding it until the start of your next turn. A creature that makes a successful Dexterity saving throw takes half the damage, is not knocked prone, and is not blinded. If you name fewer than five targets, excess bolts strike the ground harmlessly.\n", - "document": "deepm", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can create one additional bolt for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_starry-vision", - "fields": { - "name": "Starry Vision", - "desc": "This spell acts as [compelling fate](https://api.open5e.com/spells/compelling-fate), except as noted above (**starry** vision can be cast as a reaction, has twice the range of [compelling fate](https://api.open5e.com/spells/compelling-fate), and lasts up to 1 minute). At the end of each of its turns, the target repeats the Charisma saving throw, ending the effect on a success.\n", - "document": "deepm", - "level": 7, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the bonus to AC increases by 1 for each slot level above 7th.", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "a sprinkle of gold dust worth 400 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_stars-heart", - "fields": { - "name": "Star's Heart", - "desc": "This spell increases gravity tenfold in a 50-foot radius centered on you. Each creature in the area other than you drops whatever it’s holding, falls prone, becomes incapacitated, and can’t move. If a solid object (such as the ground) is encountered when a flying or levitating creature falls, the creature takes three times the normal falling damage. Any creature except you that enters the area or starts its turn there must make a successful Strength saving throw or fall prone and become incapacitated and unable to move. A creature that starts its turn prone and incapacitated makes a Strength saving throw. On a failed save, the creature takes 8d6 bludgeoning damage; on a successful save, it takes 4d6 bludgeoning damage, it’s no longer incapacitated, and it can move at half speed.\n\nAll ranged weapon attacks inside the area have a normal range of 5 feet and a maximum range of 10 feet. The same applies to spells that create missiles that have mass, such as [flaming sphere](https://api.open5e.com/spells/flaming-sphere). A creature under the influence of a [freedom of movement](https://api.open5e.com/spells/freedom-of-movement) spell or comparable magic has advantage on the Strength saving throws required by this spell, and its speed isn’t reduced once it recovers from being incapacitated.", - "document": "deepm", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "50 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an ioun stone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_steal-warmth", - "fields": { - "name": "Steal Warmth", - "desc": "When you cast **steal warmth** after taking cold damage, you select a living creature within 5 feet of you. That creature takes the cold damage instead, or half the damage with a successful Constitution saving throw. You regain hit points equal to the amount of cold damage taken by the target.\n", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the distance to the target you can affect with this spell increases by 5 feet for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_steam-blast", - "fields": { - "name": "Steam Blast", - "desc": "You unleash a burst of superheated steam in a 15-foot radius around you. All other creatures in the area take 5d8 fire damage, or half as much damage on a successful Dexterity saving throw. Nonmagical fires smaller than a bonfire are extinguished, and everything becomes wet.\n", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a tiny copper kettle or boiler", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_steam-whistle", - "fields": { - "name": "Steam Whistle", - "desc": "You open your mouth and unleash a shattering scream. All other creatures in a 30-foot radius around you take 10d10 thunder damage and are deafened for 1d8 hours. A successful Constitution saving throw halves the damage and reduces the deafness to 1 round.", - "document": "deepm", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a small brass whistle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_stench-of-rot", - "fields": { - "name": "Stench of Rot", - "desc": "Choose one creature you can see within range that isn’t a construct or an undead. The target must succeed on a Charisma saving throw or become cursed for the duration of the spell. While cursed, the target reeks of death and rot, and nothing short of magic can mask or remove the smell. The target has disadvantage on all Charisma checks and on Constitution saving throws to maintain concentration on spells. A creature with the Keen Smell trait, or a similar trait indicating the creature has a strong sense of smell, can add your spellcasting ability modifier to its Wisdom (Perception) or Wisdom (Survival) checks to find the target. A [remove curse](https://api.open5e.com/spells/remove-curse) spell or similar magic ends the spell early.\n", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration increases by 1 hour for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a live maggot", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_storm-of-wings", - "fields": { - "name": "Storm of Wings", - "desc": "You create a storm of spectral birds, bats, or flying insects in a 15-foot-radius sphere on a point you can see within range. The storm spreads around corners, and its area is lightly obscured. Each creature in the storm when it appears and each a creature that starts its turn in the storm is affected by the storm.\n As a bonus action on your turn, you can move the storm up to 30 feet. As an action on your turn, you can change the storm from one type to another, such as from a storm of bats to a storm of insects.\n ***Bats.*** The creature takes 4d6 necrotic damage, and its speed is halved while within the storm as the bats cling to it and drain its blood.\n ***Birds.*** The creature takes 4d6 slashing damage, and has disadvantage on attack rolls while within the storm as the birds fly in the way of the creature's attacks.\n ***Insects.*** The creature takes 4d6 poison damage, and it must make a Constitution saving throw each time it casts a spell while within the storm. On a failed save, the creature fails to cast the spell, losing the action but not the spell slot.", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of honey", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 15, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_sudden-dawn", - "fields": { - "name": "Sudden Dawn", - "desc": "You call upon morning to arrive ahead of schedule. With a sharp word, you create a 30-foot-radius cylinder of light centered on a point on the ground within range. The cylinder extends vertically for 100 feet or until it reaches an obstruction, such as a ceiling. The area inside the cylinder is brightly lit.", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "100 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "cylinder", - "shape_magnitude": 30, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_summon-eldritch-servitor", - "fields": { - "name": "Summon Eldritch Servitor", - "desc": "You summon eldritch aberrations that appear in unoccupied spaces you can see within range. Choose one of the following options for what appears:\n* Two [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng)\n* One [shantak](https://api.open5e.com/monsters/shantak)\n\nWhen the summoned creatures appear, you must make a Charisma saving throw. On a success, the creatures are friendly to you and your allies. On a failure, the creatures are friendly to no one and attack the nearest creatures, pursuing and fighting for as long as possible.\n\nRoll initiative for the summoned creatures, which take their own turns as a group. If friendly to you, they obey your verbal commands (no action required by you to issue a command), or they attack the nearest living creature if they are not commanded otherwise.\n\nEach round when you maintain concentration on the spell, you must make a successful DC 15 Wisdom saving throw at the end of your turn or take 1d4 psychic damage. If the total of this damage exceeds your Wisdom score, you gain 1 point of Void taint and you are afflicted with a form of short-term madness. The same penalty applies when the damage exceeds twice your Wisdom score, three times your Wisdom score, and so forth, if you maintain concentration for that long.\n\nA summoned creature disappears when it drops to 0 hit points or when the spell ends. If you stop concentrating on the spell before 1 hour has elapsed, the creatures become uncontrolled and hostile until they disappear 1d6 rounds later or until they are killed.\n", - "document": "deepm", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a 7th- or 8th-level spell slot, you can summon four [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng) or a [hound of Tindalos](https://api.open5e.com/monsters/hound-of-tindalos). When you cast it with a 9th-level spell slot, you can summon five [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng) or a [nightgaunt](https://api.open5e.com/monsters/nightgaunt).", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of the caster’s blood and a silver dagger", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_summon-star", - "fields": { - "name": "Summon Star", - "desc": "You summon a friendly star from the heavens to do your bidding. It appears in an unoccupied space you can see within range and takes the form of a glowing humanoid with long white hair. All creatures other than you who view the star must make a successful Wisdom saving throw or be charmed for the duration of the spell. A creature charmed in this way can repeat the Wisdom saving throw at the end of each of its turns. On a success, the creature is no longer charmed and is immune to the effect of this casting of the spell. In all other ways, the star is equivalent to a [deva](https://api.open5e.com/monsters/deva). It understands and obeys verbal commands you give it. If you do not give the star a command, it defends itself and attacks the last creature that attacked it. The star disappears when it drops to 0 hit points or when the spell ends.", - "document": "deepm", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_surge-dampener", - "fields": { - "name": "Surge Dampener", - "desc": "Using your strength of will, you cause one creature other than yourself that you touch to become so firmly entrenched within reality that it is protected from the effects of a chaos magic surge. The protected creature can make a DC 13 Charisma saving throw to negate the effect of a chaos magic surge that does not normally allow a saving throw, or it gains advantage on a saving throw that is normally allowed. Once the protected creature makes a successful saving throw allowed by **surge dampener**, the spell ends.", - "document": "deepm", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute, until expended", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_surprise-blessing", - "fields": { - "name": "Surprise Blessing", - "desc": "You touch a willing creature and choose one of the conditions listed below that the creature is currently subjected to. The condition’s normal effect on the target is suspended, and the indicated effect applies instead. This spell’s effect on the target lasts for the duration of the original condition or until the spell ends. If this spell ends before the original condition’s duration expires, you become affected by the condition for as long as it lasts, even if you were not the original recipient of the condition.\n\n***Blinded:*** The target gains truesight out to a range of 10 feet and can see 10 feet into the Ethereal Plane.\n\n***Charmed:*** The target’s Charisma score becomes 19, unless it is already higher than 19, and it gains immunity to charm effects.\n\n***Frightened:*** The target emits a 10-foot-radius aura of dread. Each creature the target designates that starts its turn in the aura must make a successful Wisdom saving throw or be frightened of the target. A creature frightened in this way that starts its turn outside the aura repeats the saving throw, ending the condition on itself on a success.\n\n***Paralyzed:*** The target can use one extra bonus action or reaction per round.\n\n***Petrified:*** The target gains a +2 bonus to AC.\n\n***Poisoned:*** The target heals 2d6 hit points at the start of its next turn, and it gains immunity to poison damage and the poisoned condition.\n\n***Stunned:*** The target has advantage on Intelligence, Wisdom, and Charisma saving throws.", - "document": "deepm", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_symbol-of-sorcery", - "fields": { - "name": "Symbol of Sorcery", - "desc": "You draw an arcane symbol on an object, wall, or other surface at least 5 feet wide. When a creature other than you approaches within 5 feet of the symbol, that act triggers an arcane explosion. Each creature in a 60-foot cone must make a successful Wisdom saving throw or be stunned. A stunned creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a successful save. After this symbol explodes or when the duration expires, its power is spent and the spell ends.", - "document": "deepm", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a stick of incense worth 20 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": "cone", - "shape_magnitude": 60, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_talons-of-a-hungry-land", - "fields": { - "name": "Talons of a Hungry Land", - "desc": "You cause three parallel lines of thick, flared obsidian spikes to erupt from the ground. They appear within range on a solid surface, last for the duration, and provide three‐quarters cover to creatures behind them. You can make lines (up to 60 feet long, 10 feet high, and 5 feet thick) or form a circle (20 feet in diameter, up to 15 feet high and 5 feet thick).\n\nWhen the lines appear, each creature in their area must make a Dexterity saving throw. Creatures takes 8d8 slashing damage, or half as much damage on a successful save.\n\nA creature can move through the lines at the risk of cutting itself on the exposed edges. For every 1 foot a creature moves through the lines, it must spend 4 feet of movement. Furthermore, the first time a creature enters the lines on a turn or ends its turn there, the creature must make a Dexterity saving throw. It takes 8d8 slashing damage on a failure, or half as much damage on a success.\n\nWhen you stop concentrating on the spell, you can cause the obsidian spikes to explode, dealing 5d8 slashing damage to any creature within 15 feet, or half as much damage on a successful Dexterity save.\n", - "document": "deepm", - "level": 7, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage from all effects of the lines increases by 1d8 for each slot level above 7th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "8d8", - "damage_types": [ - "slashing" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_targeting-foreknowledge", - "fields": { - "name": "Targeting Foreknowledge", - "desc": "Twisting the knife, slapping with the butt of the spear, slashing out again as you recover from a lunge, and countless other double-strike maneuvers are skillful ways to get more from your weapon. By casting this spell as a bonus action after making a successful melee weapon attack, you deal an extra 2d6 damage of the weapon’s type to the target. In addition, if your weapon attack roll was a 19 or higher, it is a critical hit and increases the weapon’s damage dice as normal. The extra damage from this spell is not increased on a critical hit.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_thin-the-ice", - "fields": { - "name": "Thin the Ice", - "desc": "You target a point within range. That point becomes the top center of a cylinder 10 feet in radius and 40 feet deep. All ice inside that area melts immediately. The uppermost layer of ice seems to remain intact and sturdy, but it covers a 40-foot-deep pit filled with ice water. A successful Wisdom (Survival) check or passive Perception check against your spell save DC notices the thin ice. If a creature weighing more than 20 pounds (or a greater weight specified by you when casting the spell) treads over the cylinder or is already standing on it, the ice gives way. Unless the creature makes a successful Dexterity saving throw, it falls into the icy water, taking 2d6 cold damage plus whatever other problems are caused by water, by armor, or by being drenched in a freezing environment. The water gradually refreezes normally.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of sunstone", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_thousand-darts", - "fields": { - "name": "Thousand Darts", - "desc": "You launch thousands of needlelike darts in a 5-foot‐wide line that is 120 feet long. Each creature in the line takes 6d6 piercing damage, or half as much damage if it makes a successful Dexterity saving throw. The first creature struck by the darts makes the saving throw with disadvantage.\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a set of mithral darts worth 25 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "piercing" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_throes-of-ecstasy", - "fields": { - "name": "Throes of Ecstasy", - "desc": "Choose a humanoid that you can see within range. The target must succeed on a Constitution saving throw or become overcome with euphoria, rendering it incapacitated for the duration. The target automatically fails Wisdom saving throws, and attack rolls against the target have advantage. At the end of each of its turns, the target can make another Constitution saving throw. On a successful save, the spell ends on the target and it gains one level of exhaustion. If the spell continues for its maximum duration, the target gains three levels of exhaustion when the spell ends.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional humanoid for each slot level above 3rd. The humanoids must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a hazel or oak wand", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_thunder-bolt", - "fields": { - "name": "Thunder Bolt", - "desc": "You cast a knot of thunder at one enemy. Make a ranged spell attack against the target. If it hits, the target takes 1d8 thunder damage and can’t use reactions until the start of your next turn.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_thunderclap", - "fields": { - "name": "Thunderclap", - "desc": "You clap your hands, emitting a peal of thunder. Each creature within 20 feet of you takes 8d4 thunder damage and is deafened for 1d8 rounds, or it takes half as much damage and isn’t deafened if it makes a successful Constitution saving throw. On a saving throw that fails by 5 or more, the creature is also stunned for 1 round.\n\nThis spell doesn’t function in an area affected by a [silence](https://api.open5e.com/spells/silence) spell. Very brittle material such as crystal might be shattered if it’s within range, at the GM’s discretion; a character holding such an object can protect it from harm by making a successful Dexterity saving throw.", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d4", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_thunderous-charge", - "fields": { - "name": "Thunderous Charge", - "desc": "With a thunderous battle cry, you move up to 10 feet in a straight line and make a melee weapon attack. If it hits, you can choose to either gain a +5 bonus on the attack’s damage or shove the target 10 feet.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the distance you can move increases by 10 feet, and the attack deals an additional 1d6 thunder damage, for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_thunderous-stampede", - "fields": { - "name": "Thunderous Stampede", - "desc": "This spell acts as [thunderous charge](https://api.open5e.com/spells/thunderous-charge), but affecting up to three targets within range, including yourself. A target other than you must use its reaction to move and attack under the effect of thunderous stampede.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the distance your targets can move increases by 10 feet, and the attack deals an additional 1d6 thunder damage, for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_thunderous-wave", - "fields": { - "name": "Thunderous Wave", - "desc": "You initiate a shock wave centered at a point you designate within range. The wave explodes outward into a 30-foot-radius sphere. This force deals no damage directly, but every creature the wave passes through must make a Strength saving throw. On a failed save, a creature is pushed 30 feet and knocked prone; if it strikes a solid obstruction, it also takes 5d6 bludgeoning damage. On a successful save, a creature is pushed 15 feet and not knocked prone, and it takes 2d6 bludgeoning damage if it strikes an obstruction. The spell also emits a thunderous boom that can be heard within 400 feet.", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "5d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_thunderstorm", - "fields": { - "name": "Thunderstorm", - "desc": "You touch a willing creature, and it becomes surrounded by a roiling storm cloud 30 feet in diameter, erupting with (harmless) thunder and lightning. The creature gains a flying speed of 60 feet. The cloud heavily obscures the creature inside it from view, though it is transparent to the creature itself.", - "document": "deepm", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of lightning-fused glass", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_tidal-barrier", - "fields": { - "name": "Tidal Barrier", - "desc": "A swirling wave of seawater surrounds you, crashing and rolling in a 10-foot radius around your space. The area is difficult terrain, and a creature that starts its turn there or that enters it for the first time on a turn must make a Strength saving throw. On a failed save, the creature is pushed 10 feet away from you and its speed is reduced to 0 until the start of its next turn.", - "document": "deepm", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of driftwood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_time-in-a-bottle", - "fields": { - "name": "Time in a Bottle", - "desc": "You designate a spot within your sight. Time comes under your control in a 20-foot radius centered on that spot. You can freeze it, reverse it, or move it forward by as much as 1 minute as long as you maintain concentration. Nothing and no one, yourself included, can enter the field or affect what happens inside it. You can choose to end the effect at any moment as an action on your turn.", - "document": "deepm", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Sight", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_time-jump", - "fields": { - "name": "Time Jump", - "desc": "You touch a construct and throw it forward in time if it fails a Constitution saving throw. The construct disappears for 1d4 + 1 rounds, during which time it cannot act or be acted upon in any way. When the construct returns, it is unaware that any time has passed.", - "document": "deepm", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_time-loop", - "fields": { - "name": "Time Loop", - "desc": "You capture a creature within range in a loop of time. The target is teleported to the space where it began its most recent turn. The target then makes a Wisdom saving throw. On a successful save, the spell ends. On a failed save, the creature must repeat the activities it undertook on its previous turn, following the sequence of moves and actions to the best of its ability. It doesn’t need to move along the same path or attack the same target, but if it moved and then attacked on its previous turn, its only option is to move and then attack on this turn. If the space where the target began its previous turn is occupied or if it’s impossible for the target to take the same action (if it cast a spell but is now unable to do so, for example), the target becomes incapacitated.\n\nAn affected target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. For as long as the spell lasts, the target teleports back to its starting point at the start of each of its turns, and it must repeat the same sequence of moves and actions.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a metal loop", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_time-slippage", - "fields": { - "name": "Time Slippage", - "desc": "You ensnare a creature within range in an insidious trap, causing different parts of its body to function at different speeds. The creature must make an Intelligence saving throw. On a failed save, it is stunned until the end of its next turn. On a success, the creature’s speed is halved and it has disadvantage on attack rolls and saving throws until the end of its next turn. The creature repeats the saving throw at the end of each of its turns, with the same effects for success and failure. In addition, the creature has disadvantage on Strength or Dexterity saving throws but advantage on Constitution or Charisma saving throws for the spell’s duration (a side effect of the chronal anomaly suffusing its body). The spell ends if the creature makes three successful saves in a row.", - "document": "deepm", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "the heart of a chaotic creature of challenge rating 5 or higher, worth 500 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_time-step", - "fields": { - "name": "Time Step", - "desc": "You briefly step forward in time. You disappear from your location and reappear at the start of your next turn in a location of your choice that you can see within 30 feet of the space you disappeared from. You can’t be affected by anything that happens during the time you’re missing, and you aren’t aware of anything that happens during that time.", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_time-vortex", - "fields": { - "name": "Time Vortex", - "desc": "This spell destabilizes the flow of time, enabling you to create a vortex of temporal fluctuations that are visible as a spherical distortion with a 10-foot radius, centered on a point within range. Each creature in the area when you cast the spell must succeed on a Wisdom saving throw or be affected by the time vortex. While the spell lasts, a creature that enters the sphere or starts its turn inside the sphere must also succeed on a Wisdom saving throw or be affected. On a successful save, it becomes immune to this casting of the spell.\n\nAn affected creature can’t take reactions and rolls a d10 at the start of its turn to determine its behavior for that turn.\n\n| D10 | EFFECT |\n|-|-|\n| 1–2 | The creature is affected as if by a slow spell until the start of its next turn. |\n| 3–5 | The creature is stunned until the start of its next turn. |\n| 6–8 | The creature’s current initiative result is reduced by 5. The creature begins using this new initiative result in the next round. Multiple occurrences of this effect for the same creature are cumulative. |\n| 9–10 | The creature’s speed is halved (round up to the nearest 5-foot increment) until the start of its next turn. |\n\nYou can move the temporal vortex 10 feet each round as a bonus action. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "deepm", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_timely-distraction", - "fields": { - "name": "Timely Distraction", - "desc": "You call forth a swirling, crackling wave of constantly shifting pops, flashes, and swept-up debris. This chaos can confound one creature. If the target gets a failure on a Wisdom saving throw, roll a d4 and consult the following table to determine the result. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Otherwise, the spell ends when its duration expires.\n\n| D4 | Effect |\n|-|-|\n| 1 | Blinded |\n| 2 | Stunned |\n| 3 | Deafened |\n| 4 | Prone |\n\n", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of sand or dirt thrown in the air", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "3 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_tireless", - "fields": { - "name": "Tireless", - "desc": "You grant machinelike stamina to a creature you touch for the duration of the spell. The target requires no food or drink or rest. It can move at three times its normal speed overland and perform three times the usual amount of labor. The target is not protected from fatigue or exhaustion caused by a magical effect.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "an ever-wound spring worth 50 gp", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_tongue-of-sand", - "fields": { - "name": "Tongue of Sand", - "desc": "**Tongue of sand** is similar in many ways to [magic mouth](https://api.open5e.com/spells/magic-mouth). When you cast it, you implant a message in a quantity of sand. The sand must fill a space no smaller than 4 square feet and at least 2 inches deep. The message can be up to 25 words. You also decide the conditions that trigger the speaking of the message. When the message is triggered, a mouth forms in the sand and delivers the message in a raspy, whispered voice that can be heard by creatures within 10 feet of the sand.\n\nAdditionally, **tongue of sand** has the ability to interact in a simple, brief manner with creatures who hear its message. For up to 10 minutes after the message is triggered, questions addressed to the sand will be answered as you would answer them. Each answer can be no more than ten words long, and the spell ends after a second question is answered.", - "document": "deepm", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_tongue-tied", - "fields": { - "name": "Tongue Tied", - "desc": "You make a choking motion while pointing at a target, which must make a successful Wisdom saving throw or become unable to communicate verbally. The target’s speech becomes garbled, and it has disadvantage on Charisma checks that require speech. The creature can cast a spell that has a verbal component only by making a successful Constitution check against your spell save DC. On a failed check, the creature’s action is used but the spell slot isn’t expended.", - "document": "deepm", - "level": 5, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_torrent-of-fire", - "fields": { - "name": "Torrent of Fire", - "desc": "You harness the power of fire contained in ley lines with this spell. You create a 60-foot cone of flame. Creatures in the cone take 6d6 fire damage, or half as much damage with a successful Dexterity saving throw. You can then flow along the flames, reappearing anywhere inside the cone’s area. This repositioning doesn’t count as movement and doesn’t trigger opportunity attacks.", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of obsidian", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 60, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_touch-of-the-unliving", - "fields": { - "name": "Touch of the Unliving", - "desc": "Make a melee spell attack against a creature you can reach. On a hit, the target takes 2d6 necrotic damage and, if it is not an undead creature, it is paralyzed until the end of its next turn. Until the spell ends, you can make the attack again on each of your turns as an action.\n", - "document": "deepm", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_tracer", - "fields": { - "name": "Tracer", - "desc": "When you cast this spell and as a bonus action on each of your turns until the spell ends, you can imbue a piece of ammunition you fire from a ranged weapon with a tiny, invisible beacon. If a ranged attack roll with an imbued piece of ammunition hits a target, the beacon is transferred to the target. The weapon that fired the ammunition is attuned to the beacon and becomes warm to the touch when it points in the direction of the target as long as the target is on the same plane of existence as you. You can have only one *tracer* target at a time. If you put a *tracer* on a different target, the effect on the previous target ends.\n A creature must succeed on an Intelligence (Arcana) check against your spell save DC to notice the magical beacon.", - "document": "deepm", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a drop of bright paint", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_treasure-chasm", - "fields": { - "name": "Treasure Chasm", - "desc": "You cause the glint of a golden coin to haze over the vision of one creature in range. The target creature must make a Wisdom saving throw. If it fails, it sees a gorge, trench, or other hole in the ground, at a spot within range chosen by you, which is filled with gold and treasure. On its next turn, the creature must move toward that spot. When it reaches the spot, it becomes incapacitated, as it devotes all its attention to scooping imaginary treasure into its pockets or a pouch.\n\nAn affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The effect also ends if the creature takes damage from you or one of your allies.\n\nCreatures with the dragon type have disadvantage on the initial saving throw but have advantage on saving throws against this spell made after reaching the designated spot.", - "document": "deepm", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a gold coin", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_tree-heal", - "fields": { - "name": "Tree Heal", - "desc": "You touch a plant and it regains 1d4 hit points. Alternatively, you can cure it of one disease or remove pests from it. Once you cast this spell on a plant or plant creature, you can't cast it on that target again for 24 hours. This spell can be used only on plants and plant creatures.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_tree-running", - "fields": { - "name": "Tree Running", - "desc": "One willing creature you touch gains a climbing speed equal to its walking speed. This climbing speed functions only while the creature is in contact with a living plant or fungus that’s growing from the ground. The creature can cling to an appropriate surface with just one hand or with just its feet, leaving its hands free to wield weapons or cast spells. The plant doesn’t give under the creature’s weight, so the creature can walk on the tiniest of tree branches, stand on a leaf, or run across the waving top of a field of wheat without bending a stalk or touching the ground.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "a maple catkin", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_tree-speak", - "fields": { - "name": "Tree Speak", - "desc": "You touch a tree and ask one question about anything that might have happened in its immediate vicinity (such as “Who passed by here?”). You get a mental sensation of the response, which lasts for the duration of the spell. Trees do not have a humanoid’s sense of time, so the tree might speak about something that happened last night or a hundred years ago. The sensation you receive might include sight, hearing, vibration, or smell, all from the tree’s perspective. Trees are particularly attentive to anything that might harm the forest and always report such activities when questioned.\n\nIf you cast this spell on a tree that contains a creature that can merge with trees, such as a dryad, you can freely communicate with the merged creature for the duration of the spell.", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_trench", - "fields": { - "name": "Trench", - "desc": "By making a scooping gesture, you cause the ground to slowly sink in an area 5 feet wide and 60 feet long, originating from a point within range. When the casting is finished, a 5-foot-deep trench is the result.\n\nThe spell works only on flat, open ground (not on stone or paved surfaces) that is not occupied by creatures or objects.\n", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can increase the width of the trench by 5 feet or the length by 30 feet for each slot level above 2nd. You can make a different choice (width or length) for each slot level above 2nd.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_trick-question", - "fields": { - "name": "Trick Question", - "desc": "You pose a question that can be answered by one word, directed at a creature that can hear you. The target must make a successful Wisdom saving throw or be compelled to answer your question truthfully. When the answer is given, the target knows that you used magic to compel it.", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_triumph-of-ice", - "fields": { - "name": "Triumph of Ice", - "desc": "You transform one of the four elements—air, earth, fire, or water—into ice or snow. The affected area is a sphere with a radius of 100 feet, centered on you. The specific effect depends on the element you choose.\n* ***Air.*** Vapor condenses into snowfall. If the effect of a [fog cloud](https://api.open5e.com/spells/fog-cloud) spell, a [stinking cloud](https://api.open5e.com/spells/stinking-cloud), or similar magic is in the area, this spell negates it. A creature of elemental air within range takes 8d6 cold damage—and, if airborne, it must make a successful Constitution saving throw at the start of its turn to avoid being knocked prone (no falling damage).\n* ***Earth.*** Soil freezes into permafrost to a depth of 10 feet. A creature burrowing through the area has its speed halved until the area thaws, unless it can burrow through solid rock. A creature of elemental earth within range must make a successful Constitution saving throw or take 8d6 cold damage.\n* ***Fire.*** Flames or other sources of extreme heat (such as molten lava) on the ground within range transform into shards of ice, and the area they occupy becomes difficult terrain. Each creature in the previously burning area takes 2d6 slashing damage when the spell is cast and 1d6 slashing damage for every 5 feet it moves in the area (unless it is not hindered by icy terrain) until the spell ends; a successful Dexterity saving throw reduces the slashing damage by half. A creature of elemental fire within range must make a successful Constitution saving throw or take 8d6 cold damage and be stunned for 1d6 rounds.\n* ***Water.*** Open water (a pond, lake, or river) freezes to a depth of 4 feet. A creature on the surface of the water when it freezes must make a successful Dexterity saving throw to avoid being trapped in the ice. A trapped creature can free itself by using an action to make a successful Strength (Athletics) check. A creature of elemental water within range takes no damage from the spell but is paralyzed for 1d6 rounds unless it makes a successful Constitution saving throw, and it treats the affected area as difficult terrain.", - "document": "deepm", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a stone extracted from glacial ice", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "cold" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_twist-the-skein", - "fields": { - "name": "Twist the Skein", - "desc": "You tweak a strand of a creature’s fate as it attempts an attack roll, saving throw, or skill check. Roll a d20 and subtract 10 to produce a number from 10 to –9. Add that number to the creature’s roll. This adjustment can turn a failure into a success or vice versa, or it might not change the outcome at all.", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_umbral-storm", - "fields": { - "name": "Umbral Storm", - "desc": "You create a channel to a region of the Plane of Shadow that is inimical to life and order. A storm of dark, raging entropy fills a 20-foot-radius sphere centered on a point you can see within range. Any creature that starts its turn in the storm or enters it for the first time on its turn takes 6d8 necrotic damage and gains one level of exhaustion; a successful Constitution saving throw halves the damage and prevents the exhaustion.\n\nYou can use a bonus action on your turn to move the area of the storm 30 feet in any direction.", - "document": "deepm", - "level": 9, - "school": "necromancy", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_uncontrollable-transformation", - "fields": { - "name": "Uncontrollable Transformation", - "desc": "You infuse your body with raw chaos and will it to adopt a helpful mutation. Roll a d10 and consult the Uncontrollable Transformation table below to determine what mutation occurs. You can try to control the shifting of your body to gain a mutation you prefer, but doing so is taxing; you can roll a d10 twice and choose the result you prefer, but you gain one level of exhaustion. At the end of the spell, your body returns to its normal form.\n", - "document": "deepm", - "level": 7, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you gain an additional mutation for each slot level above 7th. You gain one level of exhaustion for each mutation you try to control.\n ## Uncontrollable Transformation \n| D10 | Mutation |\n|-|-|\n| 1 | A spindly third arm sprouts from your shoulder. As a bonus action, you can use it to attack with a light weapon. You have advantage on Dexterity (Sleight of Hand) checks and any checks that require the manipulation of tools. |\n| 2 | Your skin is covered by rough scales that increase your AC by 1 and give you resistance to a random damage type (roll on the Damage Type table). |\n| 3 | A puckered orifice grows on your back. You can forcefully expel air from it, granting you a flying speed of 30 feet. You must land at the end of your turn. In addition, as a bonus action, you can try to push a creature away with a blast of air. The target is pushed 5 feet away from you if it fails a Strength saving throw with a DC equal to 10 + your Constitution modifier. |\n| 4 | A second face appears on the back of your head. You gain darkvision out to a range of 120 feet and advantage on sight‐based and scent-based Wisdom (Perception) checks. You become adept at carrying on conversations with yourself. |\n| 5 | You grow gills that not only allow you to breathe underwater but also filter poison out of the air. You gain immunity to inhaled poisons. |\n| 6 | Your hindquarters elongate, and you grow a second set of legs. Your base walking speed increases by 10 feet, and your carrying capacity becomes your Strength score multiplied by 20. |\n| 7 | You become incorporeal and can move through other creatures and objects as if they were difficult terrain. You take 1d10 force damage if you end your turn inside an object. You can’t pick up or interact with physical objects that you weren’t carrying when you became incorporeal. |\n| 8 | Your limbs elongate and flatten into prehensile paddles. You gain a swimming speed equal to your base walking speed and have advantage on Strength (Athletics) checks made to climb or swim. In addition, your unarmed strikes deal 1d6 bludgeoning damage. |\n| 9 | Your head fills with a light gas and swells to four times its normal size, causing your hair to fall out. You have advantage on Intelligence and Wisdom ability checks and can levitate up to 5 feet above the ground. |\n| 10 | You grow three sets of feathered wings that give you a flying speed equal to your walking speed and the ability to hover. |\n\n ## Damage Type \n\n| d10 | Damage Type |\n|-|-|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |\n\n", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "the bill of a platypus", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_undermine-armor", - "fields": { - "name": "Undermine Armor", - "desc": "You unravel the bonds of reality that hold a suit of armor together. A target wearing armor must succeed on a Constitution saving throw or its armor softens to the consistency of candle wax, decreasing the target’s AC by 2.\n\n**Undermine armor** has no effect on creatures that aren’t wearing armor.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_unholy-defiance", - "fields": { - "name": "Unholy Defiance", - "desc": "Until the spell ends, undead creatures within range have advantage on saving throws against effects that turn undead. If an undead creature within this area has the Turning Defiance trait, that creature can roll a d4 when it makes a saving throw against an effect that turns undead and add the number rolled to the saving throw.", - "document": "deepm", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of earth from a grave", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_unleash-effigy", - "fields": { - "name": "Unleash Effigy", - "desc": "You cause a stone statue that you can see within 60 feet of you to animate as your ally. The statue has the statistics of a [stone golem](https://api.open5e.com/monsters/stone-golem). It takes a turn immediately after your turn. As a bonus action on your turn, you can order the golem to move and attack, provided you’re within 60 feet of it. Without orders from you, the statue does nothing.\n\nWhenever the statue has 75 hit points or fewer at the start of your turn or it is more than 60 feet from you at the start of your turn, you must make a successful DC 16 spellcasting check or the statue goes berserk. On each of its turns, the berserk statue attacks you or one of your allies. If no creature is near enough to be attacked, the statue dashes toward the nearest one instead. Once the statue goes berserk, it remains berserk until it’s destroyed.\n\nWhen the spell ends, the animated statue reverts to a normal, mundane statue.", - "document": "deepm", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_unluck-on-that", - "fields": { - "name": "Unluck On That", - "desc": "By uttering a swift curse (“Unluck on that!”), you bring misfortune to the target’s attempt; the affected creature has disadvantage on the roll.\n", - "document": "deepm", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the range of the spell increases by 5 feet for each slot level above 1st.", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_unseen-strangler", - "fields": { - "name": "Unseen Strangler", - "desc": "You conjure an immaterial, tentacled aberration in an unoccupied space you can see within range, and you specify a password that the phantom recognizes. The entity remains where you conjured it until the spell ends, until you dismiss it as an action, or until you move more than 80 feet from it.\n\nThe strangler is invisible to all creatures except you, and it can’t be harmed. When a Small or larger creature approaches within 30 feet of it without speaking the password that you specified, the strangler starts whispering your name. This whispering is always audible to you, regardless of other sounds in the area, as long as you’re conscious. The strangler sees invisible creatures and can see into the Ethereal Plane. It ignores illusions.\n\nIf any creatures hostile to you are within 5 feet of the strangler at the start of your turn, the strangler attacks one of them with a tentacle. It makes a melee weapon attack with a bonus equal to your spellcasting ability modifier + your proficiency bonus. On a hit, it deals 3d6 bludgeoning damage, and a Large or smaller creature is grappled (escape DC = your spellcasting ability modifier + your proficiency bonus). Until this grapple ends, the target is restrained, and the strangler can’t attack another target. If the strangler scores a critical hit, the target begins to suffocate and can’t speak until the grapple ends.", - "document": "deepm", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of sulfur and a live rodent", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_vine-trestle", - "fields": { - "name": "Vine Trestle", - "desc": "You cause a vine to sprout from the ground and crawl across a surface or rise into the air in a direction chosen by you. The vine must sprout from a solid surface (such as the ground or a wall), and it is strong enough to support 600 pounds of weight along its entire length. The vine collapses immediately if that 600-pound limit is exceeded. A vine that collapses from weight or damage instantly disintegrates.\n\nThe vine has many small shoots, so it can be climbed with a successful DC 5 Strength (Athletics) check. It has AC 8, hit points equal to 5 × your spellcasting level, and a damage threshold of 5.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the vine can support an additional 30 pounds, and its damage threshold increases by 1 for each slot level above 2nd.\n\n***Ritual Focus.*** If you expend your ritual focus, the vine is permanent until destroyed or dispelled.", - "target_type": "point", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a 1-inch piece of green vine that is consumed in the casting", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_visage-of-madness", - "fields": { - "name": "Visage of Madness", - "desc": "When you cast this spell, your face momentarily becomes that of a demon lord, frightful enough to drive enemies mad. Every foe that’s within 30 feet of you and that can see you must make a Wisdom saving throw. On a failed save, a creature claws savagely at its eyes, dealing piercing damage to itself equal to 1d6 + the creature’s Strength modifier. The creature is also stunned until the end of its next turn and blinded for 1d4 rounds. A creature that rolls maximum damage against itself (a 6 on the d6) is blinded permanently.", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_vital-mark", - "fields": { - "name": "Vital Mark", - "desc": "You mark an unattended magic item (including weapons and armor) with a clearly visible stain of your blood. The exact appearance of the bloodstain is up to you. The item’s magical abilities don’t function for anyone else as long as the bloodstain remains on it. For example, a **+1 flaming longsword** with a vital mark functions as a nonmagical longsword in the hands of anyone but the caster, but it still functions as a **+1 flaming longsword** for the caster who placed the bloodstain on it. A [wand of magic missiles](https://api.open5e.com/spells/wand-of-magic-missiles) would be no more than a stick in the hands of anyone but the caster.\n", - "document": "deepm", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher on the same item for 28 consecutive days, the effect becomes permanent until dispelled.", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_void-rift", - "fields": { - "name": "Void Rift", - "desc": "You speak a hideous string of Void Speech that leaves your mouth bloodied, causing a rift into nothingness to tear open. The rift takes the form of a 10-foot-radius sphere, and it forms around a point you can see within range. The area within 40 feet of the sphere’s outer edge becomes difficult terrain as the Void tries to draw everything into itself. A creature that starts its turn within 40 feet of the sphere or that enters that area for the first time on its turn must succeed on a Strength saving throw or be pulled 15 feet toward the rift. A creature that starts its turn in the rift or that comes into contact with it for the first time on its turn takes 8d10 necrotic damage. Creatures inside the rift are blinded and deafened. Unattended objects within 40 feet of the rift are drawn 15 feet toward it at the start of your turn, and they take damage as creatures if they come into contact with it.\n\nWhile concentrating on the spell, you take 2d6 necrotic damage at the end of each of your turns.", - "document": "deepm", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a black opal worth 500 gp, carved with a Void glyph", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "8d10", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 10, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_void-strike", - "fields": { - "name": "Void Strike", - "desc": "With a short phrase of Void Speech, you gather writhing darkness around your hand. When you cast the spell, and as an action on subsequent turns while you maintain concentration, you can unleash a bolt of darkness at a creature within range. Make a ranged spell attack. If the target is in dim light or darkness, you have advantage on the roll. On a hit, the target takes 5d8 necrotic damage and is frightened of you until the start of your next turn.\n", - "document": "deepm", - "level": 3, - "school": "evocation", - "higher_level": "When you cast the spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "5d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_volley-shield", - "fields": { - "name": "Volley Shield", - "desc": "You touch a willing creature and create a shimmering shield of energy to protect it. The shield grants the target a +5 bonus to AC and gives it resistance against nonmagical bludgeoning, piercing, and slashing damage for the duration of the spell.\n\nIn addition, the shield can reflect hostile spells back at their casters. When the target makes a successful saving throw against a hostile spell, the caster of the spell immediately becomes the spell’s new target. The caster is entitled to the appropriate saving throw against the returned spell, if any, and is affected by the spell as if it came from a spellcaster of the caster’s level.", - "document": "deepm", - "level": 7, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_vomit-tentacles", - "fields": { - "name": "Vomit Tentacles", - "desc": "Your jaws distend and dozens of thin, slimy tentacles emerge from your mouth to grasp and bind your opponents. Make a melee spell attack against a foe within 15 feet of you. On a hit, the target takes bludgeoning damage equal to 2d6 + your Strength modifier and is grappled (escape DC equal to your spell save DC). Until this grapple ends, the target is restrained and it takes the same damage at the start of each of your turns. You can grapple only one creature at a time.\n\nThe Armor Class of the tentacles is equal to yours. If they take slashing damage equal to 5 + your Constitution modifier from a single attack, enough tentacles are severed to enable a grappled creature to escape. Severed tentacles are replaced by new ones at the start of your turn. Damage dealt to the tentacles doesn’t affect your hit points.\n\nWhile the spell is in effect, you are incapable of speech and can’t cast spells that have verbal components.", - "document": "deepm", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of a tentacle", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "5 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_voorish-sign", - "fields": { - "name": "Voorish Sign", - "desc": "For the duration, invisible creatures and objects within 20 feet of you become visible to you, and you have advantage on saving throws against effects that cause the frightened condition. The effect moves with you, remaining centered on you until the duration expires.\n", - "document": "deepm", - "level": 1, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the radius increases by 5 feet for every two slot levels above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_waft", - "fields": { - "name": "Waft", - "desc": "This spell was first invented by dragon parents to assist their offspring when learning to fly. You gain a flying speed of 60 feet for 1 round. At the start of your next turn, you float rapidly down and land gently on a solid surface beneath you.", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a topaz worth at least 10 gp", - "material_cost": "10.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_walk-the-twisted-path", - "fields": { - "name": "Walk the Twisted Path", - "desc": "When you cast this spell, you and up to five creatures you can see within 20 feet of you enter a shifting landscape of endless walls and corridors that connect to many places throughout the world.\n\nYou can find your way to a destination within 100 miles, as long as you know for certain that your destination exists (though you don’t need to have seen or visited it before), and you must make a successful DC 20 Intelligence check. If you have the ability to retrace a path you have previously taken without making a check (as a minotaur or a goristro can), this check automatically succeeds. On a failed check, you don't find your path this round, and you and your companions each take 4d6 psychic damage as the madness of the shifting maze exacts its toll. You must repeat the check at the start of each of your turns until you find your way to your destination or until you die. In either event, the spell ends.\n\nWhen the spell ends, you and those traveling with you appear in a safe location at your destination.\n", - "document": "deepm", - "level": 6, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can bring along two additional creatures or travel an additional 100 miles for each slot level above 6th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a map", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_walking-wall", - "fields": { - "name": "Walking Wall", - "desc": "This spell creates a wall of swinging axes from the pile of miniature axes you provide when casting the spell. The wall fills a rectangle 10 feet wide, 10 feet high, and 20 feet long. The wall has a base speed of 50 feet, but it can’t take the Dash action. It can make up to four attacks per round on your turn, using your spell attack modifier to hit and with a reach of 10 feet. You direct the wall’s movement and attacks as a bonus action. If you choose not to direct it, the wall continues trying to execute the last command you gave it. The wall can’t use reactions. Each successful attack deals 4d6 slashing damage, and the damage is considered magical.\n\nThe wall has AC 12 and 200 hit points, and is immune to necrotic, poison, psychic, and piercing damage. If it is reduced to 0 hit points or when the spell’s duration ends, the wall disappears and the miniature axes fall to the ground in a tidy heap.", - "document": "deepm", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "100 miniature axes", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_wall-of-time", - "fields": { - "name": "Wall of Time", - "desc": "You create a wall of shimmering, transparent blocks on a solid surface within range. You can make a straight wall up to 60 feet long, 20 feet high, and 1 foot thick, or a cylindrical wall up to 20 feet high, 1 foot thick, and 20 feet in diameter. Nonmagical ranged attacks that cross the wall vanish into the time stream with no other effect. Ranged spell attacks and ranged weapon attacks made with magic weapons that pass through the wall are made with disadvantage. A creature that intentionally enters or passes through the wall is affected as if it had just failed its initial saving throw against a [slow](https://api.open5e.com/spells/slow) spell.", - "document": "deepm", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "an hourglass", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_warning-shout", - "fields": { - "name": "Warning Shout", - "desc": "You sense danger before it happens and call out a warning to an ally. One creature you can see and that can hear you gains advantage on its initiative roll.", - "document": "deepm", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_warp-mind-and-matter", - "fields": { - "name": "Warp Mind and Matter", - "desc": "A creature you can see within range undergoes a baleful transmogrification. The target must make a successful Wisdom saving throw or suffer a flesh warp and be afflicted with a form of indefinite madness.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "root of deadly nightshade and a drop of the caster’s blood", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until cured or dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_weapon-of-blood", - "fields": { - "name": "Weapon of Blood", - "desc": "When you cast this spell, you inflict 1d4 slashing damage on yourself that can’t be healed until after the blade created by this spell is destroyed or the spell ends. The trickling blood transforms into a dagger of red metal that functions as a **+1 dagger**.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd to 5th level, the self-inflicted wound deals 3d4 slashing damage and the spell produces a **+2 dagger**. When you cast this spell using a spell slot of 6th to 8th level, the self-inflicted wound deals 6d4 slashing damage and the spell produces a **+2 dagger of wounding**. When you cast this spell using a 9th-level spell slot, the self-inflicted wound deals 9d4 slashing damage and the spell produces a **+3 dagger of wounding**.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a pinch of iron shavings", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_weilers-ward", - "fields": { - "name": "Weiler’s Ward", - "desc": "You create four small orbs of faerie magic that float around your head and give off dim light out to a radius of 15 feet. Whenever a Large or smaller enemy enters that area of dim light, or starts its turn in the area, you can use your reaction to attack it with one or more of the orbs. The enemy creature makes a Charisma saving throw. On a failed save, the creature is pushed 20 feet directly away from you, and each orb you used in the attack explodes violently, dealing 1d6 force damage to the creature.\n", - "document": "deepm", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the number of orbs increases by one for each slot level above 2nd.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a lock of hair from a fey creature", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_wild-shield", - "fields": { - "name": "Wild Shield", - "desc": "You surround yourself with the forces of chaos. Wild lights and strange sounds engulf you, making stealth impossible. While **wild shield** is active, you can use a reaction to repel a spell of 4th level or lower that targets you or whose area you are within. A repelled spell has no effect on you, but doing this causes the chance of a chaos magic surge as if you had cast a spell, with you considered the caster for any effect of the surge.\n\n**Wild shield** ends when the duration expires or when it absorbs 4 levels of spells. If you try to repel a spell whose level exceeds the number of levels remaining, make an ability check using your spellcasting ability. The DC equals 10 + the spell’s level – the number of levels **wild shield** can still repel. If the check succeeds, the spell is repelled; if the check fails, the spell has its full effect. The chance of a chaos magic surge exists regardless of whether the spell is repelled.\n", - "document": "deepm", - "level": 4, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can repel one additional spell level for each slot level above 4th.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_wind-lash", - "fields": { - "name": "Wind Lash", - "desc": "Your swift gesture creates a solid lash of howling wind. Make a melee spell attack against the target. On a hit, the target takes 1d8 slashing damage from the shearing wind and is pushed 5 feet away from you.", - "document": "deepm", - "level": 0, - "school": "evocation", - "higher_level": "The spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "20 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "slashing" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_wind-of-the-hereafter", - "fields": { - "name": "Wind of the Hereafter", - "desc": "You create a 30-foot-radius sphere of roiling wind that carries the choking stench of death. The sphere is centered on a point you choose within range. The wind blows around corners. When a creature starts its turn in the sphere, it takes 8d8 necrotic damage, or half as much damage if it makes a successful Constitution saving throw. Creatures are affected even if they hold their breath or don’t need to breathe.\n\nThe sphere moves 10 feet away from you at the start of each of your turns, drifting along the surface of the ground. It is not heavier than air but drifts in a straight line for the duration of the spell, even if that carries it over a cliff or gully. If the sphere meets a wall or other impassable obstacle, it turns to the left or right (select randomly).", - "document": "deepm", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a vial of air from a tomb", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d8", - "damage_types": [ - "necrotic" - ], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_wind-tunnel", - "fields": { - "name": "Wind Tunnel", - "desc": "You create a swirling tunnel of strong wind extending from yourself in a direction you choose. The tunnel is a line 60 feet long and 10 feet wide. The wind blows from you toward the end of the line, which is stationary once created. A creature in the line moving with the wind (away from you) adds 10 feet to its speed, and ranged weapon attacks launched with the wind don’t have disadvantage because of long range. Creatures in the line moving against the wind (toward you) spend 2 feet of movement for every 1 foot they move, and ranged weapon attacks launched along the line against the wind are made with disadvantage.\n\nThe wind tunnel immediately disperses gas or vapor, and it extinguishes candles, torches, and similar unprotected flames in the line. It causes protected flames, such as those of lanterns, to dance wildly and has a 50 percent chance of extinguishing them.", - "document": "deepm", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a paper straw", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_winterdark", - "fields": { - "name": "Winterdark", - "desc": "This spell invokes the deepest part of night on the winter solstice. You target a 40-foot-radius, 60-foot-high cylinder centered on a point within range, which is plunged into darkness and unbearable cold. Each creature in the area when you cast the spell and at the start of its turn must make a successful Constitution saving throw or take 1d6 cold damage and gain one level of exhaustion. Creatures immune to cold damage are also immune to the exhaustion effect, as are creatures wearing cold weather gear or otherwise adapted for a cold environment.\n\nAs a bonus action, you can move the center of the effect 20 feet.", - "document": "deepm", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_winters-radiance", - "fields": { - "name": "Winter's Radiance", - "desc": "When you cast this spell, the piercing rays of a day’s worth of sunlight reflecting off fresh snow blankets the area. A creature caught in the spell’s area must succeed on a Constitution saving throw or have disadvantage on ranged attacks and Wisdom (Perception) checks for the duration of the spell. In addition, an affected creature’s vision is hampered such that foes it targets are treated as having three-quarters cover.", - "document": "deepm", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "400 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a piece of polished glass", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_wintry-glide", - "fields": { - "name": "Wintry Glide", - "desc": "Upon casting wintry glide, you can travel via ice or snow without crossing the intervening space. If you are adjacent to a mass of ice or snow, you can enter it by expending 5 feet of movement. By expending another 5 feet of movement, you can immediately exit from that mass at any point—within 500 feet—that’s part of the contiguous mass of ice or snow. When you enter the ice or snow, you instantly know the extent of the material within 500 feet. You must have at least 10 feet of movement available when you cast the spell, or it fails.\n\nIf the mass of ice or snow is destroyed while you are transiting it, you must make a successful Constitution saving throw against your spell save DC to avoid taking 4d6 bludgeoning damage and falling prone at the midpoint of a line between your entrance point and your intended exit point.", - "document": "deepm", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_withered-sight", - "fields": { - "name": "Withered Sight", - "desc": "You cause the eyes of a creature you can see within range to lose acuity. The target must make a Constitution saving throw. On a failed save, the creature has disadvantage on Wisdom (Perception) checks and all attack rolls for the duration of the spell. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This spell has no effect on a creature that is blind or that doesn’t use its eyes to see.\n", - "document": "deepm", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a dried lizard's eye", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_wolfsong", - "fields": { - "name": "Wolfsong", - "desc": "You emit a howl that can be heard clearly from 300 feet away outdoors. The howl can convey a message of up to nine words, which can be understood by all dogs and wolves in that area, as well as (if you choose) one specific creature of any kind that you name when casting the spell.\n\nIf you cast the spell indoors and aboveground, the howl can be heard out to 200 feet from you. If you cast the spell underground, the howl can be heard from 100 feet away. A creature that understands the message is not compelled to act in a particular way, though the nature of the message might suggest or even dictate a course of action.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can name another specific recipient for each slot level above 2nd.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_word-of-misfortune", - "fields": { - "name": "Word of Misfortune", - "desc": "You hiss a word of Void Speech. Choose one creature you can see within range. The next time the target makes a saving throw during the spell’s duration, it must roll a d4 and subtract the result from the total of the saving throw. The spell then ends.", - "document": "deepm", - "level": 0, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute.", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_wresting-wind", - "fields": { - "name": "Wresting Wind", - "desc": "By blowing a pinch of confetti from your cupped hand, you create a burst of air that can rip weapons and other items out of the hands of your enemies. Each enemy in a 20-foot radius centered on a point you target within range must make a successful Strength saving throw or drop anything held in its hands. The objects land 10 feet away from the creatures that dropped them, in random directions.", - "document": "deepm", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "a handful of paper confetti", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_writhing-arms", - "fields": { - "name": "Writhing Arms", - "desc": "Your arms become constantly writhing tentacles. You can use your action to make a melee spell attack against any target within range. The target takes 1d10 necrotic damage and is grappled (escape DC is your spell save DC). If the target does not escape your grapple, you can use your action on each subsequent turn to deal 1d10 necrotic damage to the target automatically.\n\nAlthough you control the tentacles, they make it difficult to manipulate items. You cannot wield weapons or hold objects, including material components, while under the effects of this spell.\n", - "document": "deepm", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage you deal with your tentacle attack increases by 1d10 for each slot level above 1st.", - "target_type": "object", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d10", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "deepm_yellow-sign", - "fields": { - "name": "Yellow Sign", - "desc": "You attempt to afflict a humanoid you can see within range with memories of distant, alien realms and their peculiar inhabitants. The target must make a successful Wisdom saving throw or be afflicted with a form of long-term madness and be charmed by you for the duration of the spell or until you or one of your allies harms it in any way. While charmed in this way, the creature regards you as a sacred monarch. If you or an ally of yours is fighting the creature, it has advantage on its saving throw.\n\nA successful [remove curse](https://api.open5e.com/spells/remove-curse) spell ends both effects.", - "document": "deepm", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1d10 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - } -] \ No newline at end of file +{ + "model": "api_v2.spell", + "pk": "deepm_abhorrent-apparition", + "fields": { + "name": "Abhorrent Apparition", + "desc": "You imbue a terrifying visage onto a gourd and toss it ahead of you to a spot of your choosing within range. Each creature within 15 feet of that spot takes 6d8 psychic damage and becomes frightened of you for 1 minute; a successful Wisdom saving throw halves the damage and negates the fright. A creature frightened in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 4, + "school": "illusion", + "higher_level": "If you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": false, + "material": true, + "material_specified": "a gourd with a face carved on it", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_accelerate", + "fields": { + "name": "Accelerate", + "desc": "Choose up to three willing creatures within range, which can include you. For the duration of the spell, each target’s walking speed is doubled. Each target can also use a bonus action on each of its turns to take the Dash action, and it has advantage on Dexterity saving throws.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a toy top", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_acid-gate", + "fields": { + "name": "Acid Gate", + "desc": "You create a portal of swirling, acidic green vapor in an unoccupied space you can see. This portal connects with a target destination within 100 miles that you are personally familiar with and have seen with your own eyes, such as your wizard’s tower or an inn you have stayed at. You and up to three creatures of your choice can enter the portal and pass through it, arriving at the target destination (or within 10 feet of it, if it is currently occupied). If the target destination doesn’t exist or is inaccessible, the spell automatically fails and the gate doesn’t form.\n\nAny creature that tries to move through the gate, other than those selected by you when the spell was cast, takes 10d6 acid damage and is teleported 1d100 × 10 feet in a random, horizontal direction. If the creature makes a successful Intelligence saving throw, it can’t be teleported by this portal, but it still takes acid damage when it enters the acid-filled portal and every time it ends its turn in contact with it.\n", + "document": "deepm", + "level": 7, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you can allow one additional creature to use the gate for each slot level above 7th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of acid and a polished silver mirror worth 125 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "acid" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_acid-rain", + "fields": { + "name": "Acid Rain", + "desc": "You unleash a storm of swirling acid in a cylinder 20 feet wide and 30 feet high, centered on a point you can see. The area is heavily obscured by the driving acidfall. A creature that starts its turn in the area or that enters the area for the first time on its turn takes 6d6 acid damage, or half as much damage if it makes a successful Dexterity saving throw. A creature takes half as much damage from the acid (as if it had made a successful saving throw) at the start of its first turn after leaving the affected area.\n", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d6 for each slot level above 5th.", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of acid", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "acid" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_adjust-position", + "fields": { + "name": "Adjust Position", + "desc": "You adjust the location of an ally to a better tactical position. You move one willing creature within range 5 feet. This movement does not provoke opportunity attacks. The creature moves bodily through the intervening space (as opposed to teleporting), so there can be no physical obstacle (such as a wall or a door) in the path.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target an additional willing creature for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_afflict-line", + "fields": { + "name": "Afflict Line", + "desc": "You invoke the darkest curses upon your victim and his or her descendants. This spell does not require that you have a clear path to your target, only that your target is within range. The target must make a successful Wisdom saving throw or be cursed until the magic is dispelled. While cursed, the victim has disadvantage on ability checks and saving throws made with the ability score that you used when you cast the spell. In addition, the target’s firstborn offspring is also targeted by the curse. That individual is allowed a saving throw of its own if it is currently alive, or it makes one upon its birth if it is not yet born when the spell is cast. If the target’s firstborn has already died, the curse passes to the target’s next oldest offspring.\n\n**Ritual Focus.** If you expend your ritual focus, the curse becomes hereditary, passing from firstborn to firstborn for the entire length of the family’s lineage until one of them successfully saves against the curse and throws off your dark magic.", + "document": "deepm", + "level": 9, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "1 mile", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a statuette carved in the likeness of the victim worth 1,250 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent; one generation", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_agonizing-mark", + "fields": { + "name": "Agonizing Mark", + "desc": "You choose a creature you can see within range to mark as your prey, and a ray of black energy issues forth from you. Until the spell ends, each time you deal damage to the target it must make a Charisma saving throw. On a failed save, it falls prone as its body is filled with torturous agony.", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_alchemical-form", + "fields": { + "name": "Alchemical Form", + "desc": "You transform into an amoebic form composed of highly acidic and poisonous alchemical jelly. While in this form:\n* you are immune to acid and poison damage and to the poisoned and stunned conditions;\n* you have resistance to nonmagical fire, piercing, and slashing damage;\n* you can’t speak, cast spells, use items or weapons, or manipulate objects;\n* your gear melds into your body and reappears when the spell ends;\n* you don't need to breathe;\n* your speed is 20 feet;\n* your size doesn’t change, but you can move through and between obstructions as if you were two size categories smaller; and\n* you gain the following action: **Melee Weapon Attack:** spellcasting ability modifier + proficiency bonus to hit, range 5 ft., one target; **Hit:** 4d6 acid or poison damage (your choice), and the target must make a successful Constitution saving throw or be poisoned until the start of your next turn.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of acid, poison, or alchemist's fire", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ale-dritch-blast", + "fields": { + "name": "Ale-dritch Blast", + "desc": "A stream of ice-cold ale blasts from your outstretched hands toward a creature or object within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage and it must make a successful Constitution saving throw or be poisoned until the end of its next turn. A targeted creature has disadvantage on the saving throw if it has drunk any alcohol within the last hour.", + "document": "deepm", + "level": 0, + "school": "conjuration", + "higher_level": "The damage increases when you reach higher levels: 2d8 at 5th level, 3d8 at 11th level, and 4d8 at 17th level.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ally-aegis", + "fields": { + "name": "Ally Aegis", + "desc": "When you see an ally within range in imminent danger, you can use your reaction to protect that creature with a shield of magical force. Until the start of your next turn, your ally has a +5 bonus to AC and is immune to force damage. In addition, if your ally must make a saving throw against an enemy’s spell that deals damage, the ally takes half as much damage on a failed saving throw and no damage on a successful save. Ally aegis offers no protection, however, against psychic damage from any source.\n", + "document": "deepm", + "level": 6, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can target one additional ally for each slot level above 6th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_alone", + "fields": { + "name": "Alone", + "desc": "You cause a creature within range to believe its allies have been banished to a different realm. The target must succeed on a Wisdom saving throw, or it treats its allies as if they were invisible and silenced. The affected creature cannot target, perceive, or otherwise interact with its allies for the duration of the spell. If one of its allies hits it with a melee attack, the affected creature can make another Wisdom saving throw. On a successful save, the spell ends.", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_alter-arrows-fortune", + "fields": { + "name": "Alter Arrow’s Fortune", + "desc": "You clap your hands, setting off a chain of tiny events that culminate in throwing off an enemy’s aim. When an enemy makes a ranged attack with a weapon or a spell that hits one of your allies, this spell causes the enemy to reroll the attack roll unless the enemy makes a successful Charisma saving throw. The attack is resolved using the lower of the two rolls (effectively giving the enemy disadvantage on the attack).", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_altheas-travel-tent", + "fields": { + "name": "Althea’s Travel Tent", + "desc": "You touch an ordinary, properly pitched canvas tent to create a space where you and a companion can sleep in comfort. From the outside, the tent appears normal, but inside it has a small foyer and a larger bedchamber. The foyer contains a writing desk with a chair; the bedchamber holds a soft bed large enough to sleep two, a small nightstand with a candle, and a small clothes rack. The floor of both rooms is a clean, dry, hard-packed version of the local ground. When the spell ends, the tent and the ground return to normal, and any creatures inside the tent are expelled to the nearest unoccupied spaces.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When the spell is cast using a 3rd-level slot, the foyer becomes a dining area with seats for six and enough floor space for six people to sleep, if they bring their own bedding. The sleeping room is unchanged. With a 4th-level slot, the temperature inside the tent is comfortable regardless of the outside temperature, and the dining area includes a small kitchen. With a 5th-level slot, an unseen servant is conjured to prepare and serve food (from your supplies). With a 6th-level slot, a third room is added that has three two-person beds. With a slot of 7th level or higher, the dining area and second sleeping area can each accommodate eight persons.", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a canvas tent", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_amplify-gravity", + "fields": { + "name": "Amplify Gravity", + "desc": "This spell intensifies gravity in a 50-foot-radius area within range. Inside the area, damage from falling is quadrupled (2d6 per 5 feet fallen) and maximum damage from falling is 40d6. Any creature on the ground in the area when the spell is cast must make a successful Strength saving throw or be knocked prone; the same applies to a creature that enters the area or ends its turn in the area. A prone creature in the area must make a successful Strength saving throw to stand up. A creature on the ground in the area moves at half speed and has disadvantage on Dexterity checks and ranged attack rolls.", + "document": "deepm", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of lead", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_analyze-device", + "fields": { + "name": "Analyze Device", + "desc": "You discover all mechanical properties, mechanisms, and functions of a single construct or clockwork device, including how to activate or deactivate those functions, if appropriate.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a set of clockworker’s tools", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ancestors-strength", + "fields": { + "name": "Ancestor’s Strength", + "desc": "Choose a willing creature you can see and touch. Its muscles bulge and become invigorated. For the duration, the target is considered one size category larger for determining its carrying capacity, the maximum weight it can lift, push, or pull, and its ability to break objects. It also has advantage on Strength checks.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_anchoring-rope", + "fields": { + "name": "Anchoring Rope", + "desc": "You create a spectral lanyard. One end is tied around your waist, and the other end is magically anchored in the air at a point you select within range. You can choose to make the rope from 5 to 30 feet long, and it can support up to 800 pounds. The point where the end of the rope is anchored in midair can’t be moved after the spell is cast. If this spell is cast as a reaction while you are falling, you stop at a point of your choosing in midair and take no falling damage. You can dismiss the rope as a bonus action.\n", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional rope for every two slot levels above 1st. Each rope must be attached to a different creature.", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ancient-shade", + "fields": { + "name": "Ancient Shade", + "desc": "You grant the semblance of life and intelligence to a pile of bones (or even bone dust) of your choice within range, allowing the ancient spirit to answer the questions you pose. These remains can be the remnants of undead, including animated but unintelligent undead, such as skeletons and zombies. (Intelligent undead are not affected.) Though it can have died centuries ago, the older the spirit called, the less it remembers of its mortal life.\n\nUntil the spell ends, you can ask the ancient spirit up to five questions if it died within the past year, four questions if it died within ten years, three within one hundred years, two within one thousand years, and but a single question for spirits more than one thousand years dead. The ancient shade knows only what it knew in life, including languages. Answers are usually brief, cryptic, or repetitive, and the corpse is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This spell doesn’t return the creature’s soul to its body, only its animating spirit. Thus, the corpse can’t learn new information, doesn’t comprehend anything that has happened since it died, and can’t speculate about future events.", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "object", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "burning candles of planar origin worth 500 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_angelic-guardian", + "fields": { + "name": "Angelic Guardian", + "desc": "You conjure a minor celestial manifestation to protect a creature you can see within range. A faintly glowing image resembling a human head and shoulders hovers within 5 feet of the target for the duration. The manifestation moves to interpose itself between the target and any incoming attacks, granting the target a +2 bonus to AC.\n\nAlso, the first time the target gets a failure on a Dexterity saving throw while the spell is active, it can use its reaction to reroll the save. The spell then ends.", + "document": "deepm", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_animate-ghoul", + "fields": { + "name": "Animate Ghoul", + "desc": "You raise one Medium or Small humanoid corpse as a ghoul under your control. Any class levels or abilities the creature had in life are gone, replaced by the standard ghoul stat block.\n", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "When you cast this spell using a 3rd-level spell slot, it can be used on the corpse of a Large humanoid to create a Large ghoul. When you cast this spell using a spell slot of 4th level or higher, this spell creates a ghast, but the material component changes to an onyx gemstone worth at least 200 gp.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "piece of rotting flesh and an onyx gemstone worth 100 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_animate-greater-undead", + "fields": { + "name": "Animate Greater Undead", + "desc": "**Animate greater undead** creates an undead servant from a pile of bones or from the corpse of a Large or Huge humanoid within range. The spell imbues the target with a foul mimicry of life, raising it as an undead skeleton or zombie. A skeleton uses the stat block of a minotaur skeleton, or a zombie uses the stat block of an ogre zombie, unless a more appropriate stat block is available.\n\nThe creature is under your control for 24 hours, after which it stops obeying your commands. To maintain control of the creature for another 24 hours, you must cast this spell on it again while you have it controlled. Casting the spell for this purpose reasserts your control over up to four creatures you have previously animated rather than animating a new one.\n", + "document": "deepm", + "level": 6, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can reanimate one additional creature for each slot level above 6th.", + "target_type": "creature", + "range": "15 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pint of blood, a pound of flesh, and an ounce of bone dust, all of which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_animated-scroll", + "fields": { + "name": "Animated Scroll", + "desc": "The paper or parchment must be folded into the shape of an animal before casting the spell. It then becomes an animated paper animal of the kind the folded paper most closely resembles. The creature uses the stat block of any beast that has a challenge rating of 0. It is made of paper, not flesh and bone, but it can do anything the real creature can do: a paper owl can fly and attack with its talons, a paper frog can swim without disintegrating in water, and so forth. It follows your commands to the best of its ability, including carrying messages to a recipient whose location you know.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "The duration increases by 24 hours at 5th level (48 hours), 11th level (72 hours), and 17th level (96 hours).", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "intricately folded paper or parchment", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_anticipate-arcana", + "fields": { + "name": "Anticipate Arcana", + "desc": "Your foresight gives you an instant to ready your defenses against a magical attack. When you cast **anticipate arcana**, you have advantage on saving throws against spells and other magical effects until the start of your next turn.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_anticipate-attack", + "fields": { + "name": "Anticipate Attack", + "desc": "In a flash of foreknowledge, you spot an oncoming attack with enough time to avoid it. Upon casting this spell, you can move up to half your speed without provoking opportunity attacks. The oncoming attack still occurs but misses automatically if you are no longer within the attack’s range, are in a space that's impossible for the attack to hit, or can’t be targeted by that attack in your new position. If none of those circumstances apply but the situation has changed—you have moved into a position where you have cover, for example—then the attack is made after taking the new situation into account.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_anticipate-weakness", + "fields": { + "name": "Anticipate Weakness", + "desc": "With a quick glance into the future, you pinpoint where a gap is about to open in your foe’s defense, and then you strike. After casting **anticipate weakness**, you have advantage on attack rolls until the end of your turn.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_arcane-sight", + "fields": { + "name": "Arcane Sight", + "desc": "The recipient of this spell gains the benefits of both [true seeing](https://api.open5e.com/spells/true-seeing) and [detect magic](https://api.open5e.com/spells/detect-magic) until the spell ends, and also knows the name and effect of every spell he or she witnesses during the spell’s duration.", + "document": "deepm", + "level": 8, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of clear quartz", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_as-you-were", + "fields": { + "name": "As You Were", + "desc": "When cast on a dead or undead body, **as you were** returns that creature to the appearance it had in life while it was healthy and uninjured. The target must have a physical body; the spell fails if the target is normally noncorporeal.\n\nIf as you were is cast on a corpse, its effect is identical to that of [gentle repose](https://api.open5e.com/spells/gentle-repose), except that the corpse’s appearance is restored to that of a healthy, uninjured (albeit dead) person.\n\nIf the target is an undead creature, it also is restored to the appearance it had in life, even if it died from disease or from severe wounds, or centuries ago. The target looks, smells, and sounds (if it can speak) as it did in life. Friends and family can tell something is wrong only with a successful Wisdom (Insight) check against your spell save DC, and only if they have reason to be suspicious. (Knowing that the person should be dead is sufficient reason.) Spells and abilities that detect undead are also fooled, but the creature remains susceptible to Turn Undead as normal.\n\nThis spell doesn’t confer the ability to speak on undead that normally can’t speak. The creature eats, drinks, and breathes as a living creature does; it can mimic sleep, but it has no more need for it than it had before.\n\nThe effect lasts for a number of hours equal to your caster level. You can use an action to end the spell early. Any amount of radiant or necrotic damage dealt to the creature, or any effect that reduces its Constitution, also ends the spell.\n\nIf this spell is cast on an undead creature that isn’t your ally or under your control, it makes a Charisma saving throw to resist the effect.", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of flesh from a creature of the target’s race", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ashen-memories", + "fields": { + "name": "Ashen Memories", + "desc": "You touch the ashes, embers, or soot left behind by a fire and receive a vision of one significant event that occurred in the area while the fire was burning. For example, if you were to touch the cold embers of a campfire, you might witness a snippet of a conversation that occurred around the fire. Similarly, touching the ashes of a burned letter might grant you a vision of the person who destroyed the letter or the contents of the letter. You have no control over what information the spell reveals, but your vision usually is tied to the most meaningful event related to the fire. The GM determines the details of what is revealed.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_aspect-of-the-dragon", + "fields": { + "name": "Aspect of the Dragon", + "desc": "This spell draws out the ancient nature within your blood, allowing you to assume the form of any dragon-type creature of challenge 10 or less.\n\nYou assume the hit points and Hit Dice of the new form. When you revert to your normal form, you return to the number of hit points you had before you transformed. If you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. As long as the excess damage doesn’t reduce your normal form to 0 hit points, you aren’t knocked unconscious.\n\nYou retain the benefits of any features from your class, race, or other source and can use them, provided that your new form is physically capable of doing so. You can speak only if the dragon can normally speak.\n\nWhen you transform, you choose whether your equipment falls to the ground, merges into the new form, or is worn by it. Worn equipment functions normally, but equipment doesn’t change shape or size to match the new form. Any equipment that the new form can’t wear must either fall to the ground or merge into the new form. The GM has final say on whether the new form can wear or use a particular piece of equipment. Equipment that merges has no effect in that state.", + "document": "deepm", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dragon scale", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_aspect-of-the-serpent", + "fields": { + "name": "Aspect of the Serpent", + "desc": "A creature you touch takes on snakelike aspects for the duration of the spell. Its tongue becomes long and forked, its canine teeth become fangs with venom sacs, and its pupils become sharply vertical. The target gains darkvision with a range of 60 feet and blindsight with a range of 30 feet. As a bonus action when you cast the spell, the target can make a ranged weapon attack with a normal range of 60 feet that deals 2d6 poison damage on a hit.\n\nAs an action, the target can make a bite attack using either Strength or Dexterity (Melee Weapon Attack: range 5 ft., one creature; Hit: 2d6 piercing damage), and the creature must make a successful DC 14 Constitution saving throw or be paralyzed for 1 minute. A creature paralyzed in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success).\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, both the ranged attack and bite attack damage increase by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dried snakeskin", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_aura-of-protection-or-destruction", + "fields": { + "name": "Aura of Protection or Destruction", + "desc": "When you cast this spell, you radiate an otherworldly energy that warps the fate of all creatures within 30 feet of you. Decide whether to call upon either a celestial or a fiend for aid. Choosing a celestial charges a 30-foot-radius around you with an aura of nonviolence; until the start of your next turn, every attack roll made by or against a creature inside the aura is treated as a natural 1. Choosing a fiend charges the area with an aura of violence; until the start of your next turn, every attack roll made by or against a creature inside the aura, including you, is treated as a natural 20.\n", + "document": "deepm", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can extend the duration by 1 round for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_auspicious-warning", + "fields": { + "name": "Auspicious Warning", + "desc": "Just in time, you call out a fortunate warning to a creature within range. The target rolls a d4 and adds the number rolled to an attack roll, ability check, or saving throw that it has just made and uses the new result for determining success or failure.", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_avoid-grievous-injury", + "fields": { + "name": "Avoid Grievous Injury", + "desc": "You cast this spell when a foe strikes you with a critical hit but before damage dice are rolled. The critical hit against you becomes a normal hit.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_avronins-astral-assembly", + "fields": { + "name": "Avronin’s Astral Assembly", + "desc": "You alert a number of creatures that you are familiar with, up to your spellcasting ability modifier (minimum of 1), of your intent to communicate with them through spiritual projection. The invitation can extend any distance and even cross to other planes of existence. Once notified, the creatures can choose to accept this communication at any time during the duration of the spell.\n\nWhen a creature accepts, its spirit is projected into one of the gems used in casting the spell. The material body it leaves behind falls unconscious and doesn't need food or air. The creature's consciousness is present in the room with you, and its normal form appears as an astral projection within 5 feet of the gem its spirit occupies. You can see and hear all the creatures who have joined in the assembly, and they can see and hear you and each other as if they were present (which they are, astrally). They can't interact with anything physically.\n\nA creature can end the spell's effect on itself voluntarily at any time, as can you. When the effect ends or the duration expires, a creature's spirit returns to its body and it regains consciousness. A creature that withdraws voluntarily from the assembly can't rejoin it even if the spell is still active. If a gem is broken while occupied by a creature's astral self, the spirit in the gem returns to its body and the creature suffers two levels of exhaustion.", + "document": "deepm", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Unlimited", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a spool of fine copper wire and a gem worth at least 100 gp for each target", + "material_cost": "100.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_awaken-object", + "fields": { + "name": "Awaken Object", + "desc": "After spending the casting time enchanting a ruby along with a Large or smaller nonmagical object in humanoid form, you touch the ruby to the object. The ruby dissolves into the object, which becomes a living construct imbued with sentience. If the object has no face, a humanoid face appears on it in an appropriate location. The awakened object's statistics are determined by its size, as shown on the table below. An awakened object can use an action to make a melee weapon attack against a target within 5 feet of it. It has free will, acts independently, and speaks one language you know. It is initially friendly to anyone who assisted in its creation.\n\nAn awakened object's speed is 30 feet. If it has no apparent legs or other means of moving, it gains a flying speed of 30 feet and it can hover. Its sight and hearing are equivalent to a typical human's senses. Intelligence, Wisdom, and Charisma can be adjusted up or down by the GM to fit unusual circumstances. A beautiful statue might awaken with increased Charisma, for example, or the bust of a great philosopher could have surprisingly high Wisdom.\n\nAn awakened object needs no air, food, water, or sleep. Damage to an awakened object can be healed or mechanically repaired.\n\n| Size | HP | AC | Attack | Str | Dex | Con | Int | Wis | Cha |\n|-|-|-|-|-|-|-|-|-|-|\n| T | 20 | 18 | +8 to hit, 1d4 + 4 damage | 4 | 18 | 10 | 2d6 | 2d6 | 2d6 |\n| S | 25 | 16 | +6 to hit, 1d8 + 2 damage | 6 | 14 | 10 | 3d6 | 2d6 | 2d6 |\n| M | 40 | 13 | +5 to hit, 2d6 + 1 damage | 10 | 12 | 10 | 3d6 | 3d6 | 2d6 |\n| L | 50 | 10 | +6 to hit, 2d10 + 2 damage | 14 | 10 | 10 | 3d6 | 3d6 | 2d6 + 2 |\n\n", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a ruby worth at least 1,000 gp, which the spell consumes", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bad-timing", + "fields": { + "name": "Bad Timing", + "desc": "You point toward a creature that you can see and twist strands of chaotic energy around its fate. If the target gets a failure on a Charisma saving throw, the next attack roll or ability check the creature attempts within 10 minutes is made with disadvantage.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_batsense", + "fields": { + "name": "Batsense", + "desc": "For the duration of the spell, a creature you touch can produce and interpret squeaking sounds used for echolocation, giving it blindsight out to a range of 60 feet. The target cannot use its blindsight while deafened, and its blindsight doesn't penetrate areas of magical silence. While using blindsight, the target has disadvantage on Dexterity (Stealth) checks that rely on being silent. Additionally, the target has advantage on Wisdom (Perception) checks that rely on hearing.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a bit of fur from a bat’s ear", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_become-nightwing", + "fields": { + "name": "Become Nightwing", + "desc": "This spell imbues you with wings of shadow. For the duration of the spell, you gain a flying speed of 60 feet and a new attack action: Nightwing Breath.\n\n***Nightwing Breath (Recharge 4–6).*** You exhale shadow‐substance in a 30-foot cone. Each creature in the area takes 5d6 necrotic damage, or half the damage with a successful Dexterity saving throw.", + "document": "deepm", + "level": 6, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a crow’s eye", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d6", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_beguiling-bet", + "fields": { + "name": "Beguiling Bet", + "desc": "You issue a challenge against one creature you can see within range, which must make a successful Wisdom saving throw or become charmed. On a failed save, you can make an ability check as a bonus action. For example, you could make a Strength (Athletics) check to climb a difficult surface or to jump as high as possible; you could make a Dexterity (Acrobatics) check to perform a backflip; or you could make a Charisma (Performance) check to sing a high note or to extemporize a clever rhyme. You can choose to use your spellcasting ability modifier in place of the usual ability modifier for this check, and you add your proficiency bonus if you're proficient in the skill being used.\n\nThe charmed creature must use its next action (which can be a legendary action) to make the same ability check in a contest against your check. Even if the creature can't perform the action—it may not be close enough to a wall to climb it, or it might not have appendages suitable for strumming a lute—it must still attempt the action to the best of its capability. If you win the contest, the spell (and the contest) continues, with you making a new ability check as a bonus action on your turn. The spell ends when it expires or when the creature wins the contest. ", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for every two slot levels above 2nd. Each creature must be within 30 feet of another creature when you cast the spell.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_benediction", + "fields": { + "name": "Benediction", + "desc": "You call down a blessing in the name of an angel of protection. A creature you can see within range shimmers with a faint white light. The next time the creature takes damage, it rolls a d4 and reduces the damage by the result. The spell then ends.", + "document": "deepm", + "level": 0, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bestial-fury", + "fields": { + "name": "Bestial Fury", + "desc": "You instill primal fury into a creature you can see within range. The target must make a Charisma saving throw; a creature can choose to fail this saving throw. On a failure, the target must use its action to attack its nearest enemy it can see with unarmed strikes or natural weapons. For the duration, the target’s attacks deal an extra 1d6 damage of the same type dealt by its weapon, and the target can’t be charmed or frightened. If there are no enemies within reach, the target can use its action to repeat the saving throw, ending the effect on a success.\n\nThis spell has no effect on undead or constructs.\n", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_binding-oath", + "fields": { + "name": "Binding Oath", + "desc": "You seal an agreement between two or more willing creatures with an oath in the name of the god of justice, using ceremonial blessings during which both the oath and the consequences of breaking it are set: if any of the sworn break this vow, they are struck by a curse. For each individual that does so, you choose one of the options given in the [bestow curse](https://api.open5e.com/spells/bestow-curse) spell. When the oath is broken, all participants are immediately aware that this has occurred, but they know no other details.\n\nThe curse effect of binding oath can’t be dismissed by [dispel magic](https://api.open5e.com/spells/dispel-magic), but it can be removed with [dispel evil and good](https://api.open5e.com/spells/dispel-evil-and-good)[remove curse](https://api.open5e.com/remove-curse), or [wish](https://api.open5e.com/spells/wish). Remove curse functions only if the spell slot used to cast it is equal to or higher than the spell slot used to cast **binding oath**. Depending on the nature of the oath, one creature’s breaking it may or may not invalidate the oath for the other targets. If the oath is completely broken, the spell ends for every affected creature, but curse effects already bestowed remain until dispelled.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_biting-arrow", + "fields": { + "name": "Biting Arrow", + "desc": "As part of the action used to cast this spell, you make a ranged weapon attack with a bow, a crossbow, or a thrown weapon. The effect is limited to a range of 120 feet despite the weapon’s range, and the attack is made with disadvantage if the target is in the weapon’s long range.\n\nIf the weapon attack hits, it deals damage as usual. In addition, the target becomes coated in thin frost until the start of your next turn. If the target uses its reaction before the start of your next turn, it immediately takes 1d6 cold damage and the spell ends.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "The spell’s damage, for both the ranged attack and the cold damage, increases by 1d6 when you reach 5th level (+1d6 and 2d6), 11th level (+2d6 and 3d6), and 17th level (+3d6 and 4d6).", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "an arrow or a thrown weapon", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "cold" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bitter-chains", + "fields": { + "name": "Bitter Chains", + "desc": "The spiked ring in your hand expands into a long, barbed chain to ensnare a creature you touch. Make a melee spell attack against the target. On a hit, the target is bound in metal chains for the duration. While bound, the target can move only at half speed and has disadvantage on attack rolls, saving throws, and Dexterity checks. If it moves more than 5 feet during a turn, it takes 3d6 piercing damage from the barbs.\n\nThe creature can escape from the chains by using an action and making a successful Strength or Dexterity check against your spell save DC, or if the chains are destroyed. The chains have AC 18 and 20 hit points.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a spiked metal ring", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": true, + "damage_roll": "3d6", + "damage_types": [ + "piercing" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_black-goats-blessing", + "fields": { + "name": "Black Goat’s Blessing", + "desc": "You raise your hand with fingers splayed and utter an incantation of the Black Goat with a Thousand Young. Your magic is blessed with the eldritch virility of the All‑Mother. The target has disadvantage on saving throws against spells you cast until the end of your next turn.", + "document": "deepm", + "level": 0, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_black-hand", + "fields": { + "name": "Black Hand", + "desc": "You gather the powers of darkness into your fist and fling dark, paralyzing flame at a target within 30 feet. If you make a successful ranged spell attack, this spell siphons vitality from the target into you. For the duration, the target has disadvantage (and you have advantage) on attack rolls, ability checks, and saving throws made with Strength, Dexterity, or Constitution. An affected target makes a Constitution saving throw (with disadvantage) at the end of its turn, ending the effect on a success.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_black-ribbons", + "fields": { + "name": "Black Ribbons", + "desc": "You pull pieces of the plane of shadow into your own reality, causing a 20-foot cube to fill with inky ribbons that turn the area into difficult terrain and wrap around nearby creatures. Any creature that ends its turn in the area becomes restrained by the ribbons until the end of its next turn, unless it makes a successful Dexterity saving throw. Once a creature succeeds on this saving throw, it can’t be restrained again by the ribbons, but it’s still affected by the difficult terrain.", + "document": "deepm", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "40 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of ribbon", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_black-sunshine", + "fields": { + "name": "Black Sunshine", + "desc": "You hold up a flawed pearl and it disappears, leaving behind a magic orb in your hand that pulses with dim purple light. Allies that you designate become invisible if they're within 60 feet of you and if light from the orb can reach the space they occupy. An invisible creature still casts a faint, purple shadow.\n\nThe orb can be used as a thrown weapon to attack an enemy. On a hit, the orb explodes in a flash of light and the spell ends. The targeted enemy and each creature within 10 feet of it must make a successful Dexterity saving throw or be blinded for 1 minute. A creature blinded in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "deepm", + "level": 8, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a discolored pearl, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_black-swan-storm", + "fields": { + "name": "Black Swan Storm", + "desc": "You call forth a whirlwind of black feathers that fills a 5-foot cube within range. The feathers deal 2d8 force damage to creatures in the cube’s area and radiate darkness, causing the illumination level within 20 feet of the cube to drop by one step (from bright light to dim light, and from dim light to darkness). Creatures that make a successful Dexterity saving throw take half the damage and are still affected by the change in light.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the feathers deal an extra 1d8 force damage for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a feather from a black swan", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_black-well", + "fields": { + "name": "Black Well", + "desc": "You summon a seething sphere of dark energy 5 feet in diameter at a point within range. The sphere pulls creatures toward it and devours the life force of those it envelops. Every creature other than you that starts its turn within 90 feet of the black well must make a successful Strength saving throw or be pulled 50 feet toward the well. A creature pulled into the well takes 6d8 necrotic damage and is stunned; a successful Constitution saving throw halves the damage and causes the creature to become incapacitated. A creature that starts its turn inside the well also makes a Constitution saving throw; the creature is stunned on a failed save or incapacitated on a success. An incapacitated creature that leaves the well recovers immediately and can take actions and reactions on that turn. A creature takes damage only upon entering the well—it takes no additional damage for remaining there—but if it leaves the well and is pulled back in again, it takes damage again. A total of nine Medium creatures, three Large creatures, or one Huge creature can be inside the well’s otherdimensional space at one time. When the spell’s duration ends, all creatures inside it tumble out in a heap, landing prone.\n", + "document": "deepm", + "level": 6, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage dealt by the well increases by 1d8—and the well pulls creatures an additional 5 feet—for each slot level above 6th.", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blade-of-my-brother", + "fields": { + "name": "Blade of my Brother", + "desc": "You touch a melee weapon that was used by an ally who is now dead, and it leaps into the air and flies to another ally (chosen by you) within 15 feet of you. The weapon enters that ally’s space and moves when the ally moves. If the weapon or the ally is forced to move more than 5 feet from the other, the spell ends.\n\nThe weapon acts on your turn by making an attack if a target presents itself. Its attack modifier equals your spellcasting level + the weapon’s inherent magical bonus, if any; it receives only its own inherent magical bonus to damage. The weapon fights for up to 4 rounds or until your concentration is broken, after which the spell ends and it falls to the ground.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "melee weapon owned by a dead ally of the target", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "4 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blade-of-wrath", + "fields": { + "name": "Blade of Wrath", + "desc": "You create a sword of pure white fire in your free hand. The blade is similar in size and shape to a longsword, and it lasts for the duration. The blade disappears if you let go of it, but you can call it forth again as a bonus action.\n\nYou can use your action to make a melee spell attack with the blade. On a hit, the target takes 2d8 fire damage and 2d8 radiant damage. An aberration, fey, fiend, or undead creature damaged by the blade must succeed on a Wisdom saving throw or be frightened until the start of your next turn.\n\nThe blade sheds bright light in a 20-foot radius and dim light for an additional 20 feet.\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, either the fire damage or the radiant damage (your choice) increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a rebuke of evil, written in Celestial", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": true, + "damage_roll": "2d8", + "damage_types": [ + "fire" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blazing-chariot", + "fields": { + "name": "Blazing Chariot", + "desc": "Calling upon the might of the angels, you conjure a flaming chariot made of gold and mithral in an unoccupied 10-foot‐square space you can see within range. Two horses made of fire and light pull the chariot. You and up to three other Medium or smaller creatures you designate can board the chariot (at the cost of 5 feet of movement) and are unharmed by the flames. Any other creature that touches the chariot or hits it (or a creature riding in it) with a melee attack while within 5 feet of the chariot takes 3d6 fire damage and 3d6 radiant damage. The chariot has AC 18 and 50 hit points, is immune to fire, poison, psychic, and radiant damage, and has resistance to all other nonmagical damage. The horses are not separate creatures but are part of the chariot. The chariot vanishes if it is reduced to 0 hit points, and any creature riding it falls out. The chariot has a speed of 50 feet and a flying speed of 40 feet.\n\nOn your turn, you can guide the chariot in place of your own movement. You can use a bonus action to direct it to take the Dash, Disengage, or Dodge action. As an action, you can use the chariot to overrun creatures in its path. On this turn, the chariot can enter a hostile creature’s space. The creature takes damage as if it had touched the chariot, is shunted to the nearest unoccupied space that it can occupy, and must make a successful Strength saving throw or fall prone in that space.", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small golden wheel worth 250 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "fire" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bleating-call", + "fields": { + "name": "Bleating Call", + "desc": "You create a sound on a point within range. The sound’s volume can range from a whisper to a scream, and it can be any sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends.\n\nEach creature that starts its turn within 30 feet of the sound and can hear it must make a Wisdom saving throw. On a failed save, the target must take the Dash or Disengage action and move toward the sound by the safest available route on each of its turns. When it arrives to the source of the sound, the target must use its action to examine the sound. Once it has examined the sound, the target determines the sound is illusory and can no longer hear it, ending the spell’s effects on that target and preventing the target from being affected by the sound again for the duration of the spell. If a target takes damage from you or a creature friendly to you, it is no longer under the effects of this spell.\n\nCreatures that can’t be charmed are immune to this spell.", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "a bit of fur or hair from a young beast or humanoid", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bleed", + "fields": { + "name": "Bleed", + "desc": "Crackling energy coats the blade of one weapon you are carrying that deals slashing damage. Until the spell ends, when you hit a creature with the weapon, the weapon deals an extra 1d4 necrotic damage and the creature must make a Constitution saving throw. On a failed save, the creature suffers a bleeding wound. Each time you hit a creature with this weapon while it suffers from a bleeding wound, your weapon deals an extra 1 necrotic damage for each time you have previously hit the creature with this weapon (to a maximum of 10 necrotic damage).\n\nAny creature can take an action to stanch the bleeding wound by succeeding on a Wisdom (Medicine) check against your spell save DC. The wound also closes if the target receives magical healing. This spell has no effect on undead or constructs.", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bless-the-dead", + "fields": { + "name": "Bless the Dead", + "desc": "You grant a blessing to one deceased creature, enabling it to cross over to the realm of the dead in peace. A creature that benefits from **bless the dead** can’t become undead. The spell has no effect on living creatures or the undead.", + "document": "deepm", + "level": 0, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blessed-halo", + "fields": { + "name": "Blessed Halo", + "desc": "A nimbus of golden light surrounds your head for the duration. The halo sheds bright light in a 20-foot radius and dim light for an additional 20 feet.\n\nThis spell grants you a pool of 10 points of healing. When you cast the spell and as an action on subsequent turns during the spell’s duration, you can expend points from this pool to restore an equal number of hit points to one creature within 20 feet that you can see.\n\nAdditionally, you have advantage on Charisma checks made against good creatures within 20 feet.\n\nIf any of the light created by this spell overlaps an area of magical darkness created by a spell of 2nd level or lower, the spell that created the darkness is dispelled.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the spell’s pool of healing points increases by 5 for each spell slot above 2nd, and the spell dispels magical darkness created by a spell of a level equal to the slot used to cast this spell.", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blizzard", + "fields": { + "name": "Blizzard", + "desc": "A howling storm of thick snow and ice crystals appears in a cylinder 40 feet high and 40 feet in diameter within range. The area is heavily obscured by the swirling snow. When the storm appears, each creature in the area takes 8d8 cold damage, or half as much damage with a successful Constitution saving throw. A creature also makes this saving throw and takes damage when it enters the area for the first time on a turn or ends its turn there. In addition, a creature that takes cold damage from this spell has disadvantage on Constitution saving throws to maintain concentration until the start of its next turn.", + "document": "deepm", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d8", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blood-and-steel", + "fields": { + "name": "Blood and Steel", + "desc": "When you cast this spell, you cut your hand and take 1d4 slashing damage that can’t be healed until you take a long rest. You then touch a construct; it must make a successful Constitution saving throw or be charmed by you for the duration. If you or your allies are fighting the construct, it has advantage on the saving throw. Even constructs that are immune to charm effects can be affected by this spell.\n\nWhile the construct is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as, “Attack the ghouls,” “Block the bridge,” or, “Fetch that bucket.” If the construct completes the order and doesn’t receive further direction from you, it defends itself.\n\nYou can use your action to take total and precise control of the target. Until the end of your next turn, the construct takes only the actions you specify and does nothing you haven’t ordered it to do. During this time, you can also cause the construct to use a reaction, but doing this requires you to use your own reaction as well.\n\nEach time the construct takes damage, it makes a new Constitution saving throw against the spell. If the saving throw succeeds, the spell ends.\n\nIf the construct is already under your control when the spell is cast, it gains an Intelligence of 10 (unless its own Intelligence is higher, in which case it retains the higher score) for 4 hours. The construct is capable of acting independently, though it remains loyal to you for the spell’s duration. You can also grant the target a bonus equal to your Intelligence modifier on one skill in which you have proficiency.\n", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a 5th‑level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blood-armor", + "fields": { + "name": "Blood Armor", + "desc": "When you strike a foe with a melee weapon attack, you can immediately cast **blood armor** as a bonus action. The foe you struck must contain blood; if the target doesn’t bleed, the spell ends without effect. The blood flowing from your foe magically increases in volume and forms a suit of armor around you, granting you an Armor Class of 18 + your Dexterity modifier for the spell’s duration. This armor has no Strength requirement, doesn’t hinder spellcasting, and doesn’t incur disadvantage on Dexterity (Stealth) checks.\n\nIf the creature you struck was a celestial, **blood armor** also grants you advantage on Charisma saving throws for the duration of the spell.", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "you must have just struck a foe with a melee weapon", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blood-lure", + "fields": { + "name": "Blood Lure", + "desc": "You point at any location (a jar, a bowl, even a puddle) within range that contains at least a pint of blood. Each creature that feeds on blood and is within 60 feet of that location must make a Charisma saving throw. (This includes undead, such as vampires.) A creature that has Keen Smell or any similar scent-boosting ability has disadvantage on the saving throw, while undead have advantage on the saving throw. On a failed save, the creature is attracted to the blood and must move toward it unless impeded.\n\nOnce an affected creature reaches the blood, it tries to consume it, foregoing all other actions while the blood is present. A successful attack against an affected creature ends the effect, as does the consumption of the blood, which requires an action by an affected creature.", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a container or pool of blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blood-offering", + "fields": { + "name": "Blood Offering", + "desc": "You touch the corpse of a creature that isn’t undead or a construct and consume its life force. You must have dealt damage to the creature before it died, and it must have been dead for no more than 1 hour. You regain a number of hit points equal to 1d4 × the creature's challenge rating (minimum of 1d4). The creature can be restored to life only by means of a [true resurrection](https://api.open5e.com/spells/true-resurrection) or a [wish](https://api.open5e.com/spells/wish) spell.", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blood-puppet", + "fields": { + "name": "Blood Puppet", + "desc": "With a sample of its blood, you are able to magically control a creature’s actions, like a marionette on magical strings. Choose a creature you can see within range whose blood you hold. The target must succeed on a Constitution saving throw, or you gain control over its physical activity (as long as you interact with the blood material component each round). As a bonus action on your turn, you can direct the creature to perform various activities. You can specify a simple and general course of action, such as, “Attack that creature,” “Run over there,” or, “Fetch that object.” If the creature completes the order and doesn’t receive further direction from you, it defends and preserves itself to the best of its ability. The target is aware of being controlled. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a drop of blood from the target", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blood-scarab", + "fields": { + "name": "Blood Scarab", + "desc": "Your blood is absorbed into the beetle’s exoskeleton to form a beautiful, rubylike scarab that flies toward a creature of your choice within range. The target must make a successful Constitution saving throw or take 1d6 necrotic damage. You gain temporary hit points equal to the necrotic damage dealt.\n", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the number of scarabs increases by one for each slot level above 1st. You can direct the scarabs at the same target or at different targets. Each target makes a single saving throw, regardless of the number of scarabs targeting it.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a drop of the caster’s blood, and the exoskeleton of a scarab beetle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blood-spoor", + "fields": { + "name": "Blood Spoor", + "desc": "By touching a drop of your quarry’s blood (spilled or drawn within the past hour), you can follow the creature’s trail unerringly across any surface or under water, no matter how fast you are moving. If your quarry takes flight, you can follow its trail along the ground—or through the air, if you have the means to fly.\n\nIf your quarry moves magically (such as by way of a [dimension door](https://api.open5e.com/spells/dimension-door) or a [teleport](https://api.open5e.com/spells/teleport) spell), you sense its trail as a straight path leading from where the magical movement started to where it ended. Such a route might lead through lethal or impassable barriers. This spell even reveals the route of a creature using [pass without trace](https://api.open5e.com/spells/pass-without-trace), but it fails to locate a creature protected by [nondetection](https://api.open5e.com/spells/nondetection) or by other effects that prevent [scrying](https://api.open5e.com/spells/scrying) spells or cause [divination](https://api.open5e.com/spells/divination) spells to fail. If your quarry moves to another plane, its trail ends without trace, but **blood spoor** picks up the trail again if the caster moves to the same plane as the quarry before the spell’s duration expires.", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of the quarry’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blood-tide", + "fields": { + "name": "Blood Tide", + "desc": "When you cast this spell, a creature you designate within range must succeed on a Constitution saving throw or bleed from its nose, eyes, ears, and mouth. This bleeding deals no damage but imposes a –2 penalty on the creature’s Intelligence, Charisma, and Wisdom checks. **Blood tide** has no effect on undead or constructs.\n\nA bleeding creature might attract the attention of creatures such as stirges, sharks, or giant mosquitoes, depending on the circumstances.\n\nA [cure wounds](https://api.open5e.com/spells/cure-wounds) spell stops the bleeding before the duration of blood tide expires, as does a successful DC 10 Wisdom (Medicine) check.", + "document": "deepm", + "level": 0, + "school": "necromancy", + "higher_level": "The spell’s duration increases to 2 minutes when you reach 5th level, to 10 minutes when you reach 11th level, and to 1 hour when you reach 17th level.", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "4 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_blood-to-acid", + "fields": { + "name": "Blood to Acid", + "desc": "When you cast this spell, you designate a creature within range and convert its blood into virulent acid. The target must make a Constitution saving throw. On a failed save, it takes 10d12 acid damage and is stunned by the pain for 1d4 rounds. On a successful save, it takes half the damage and isn’t stunned.\n\nCreatures without blood, such as constructs and plants, are not affected by this spell. If **blood to acid** is cast on a creature composed mainly of blood, such as a [blood elemental](https://api.open5e.com/monsters/blood-elemental) or a [blood zombie](https://api.open5e.com/monsters/blood-zombie), the creature is slain by the spell if its saving throw fails.", + "document": "deepm", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d12", + "damage_types": [ + "acid" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bloodhound", + "fields": { + "name": "Bloodhound", + "desc": "You touch a willing creature to grant it an enhanced sense of smell. For the duration, that creature has advantage on Wisdom (Perception) checks that rely on smell and Wisdom (Survival) checks to follow tracks.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a 3rd-level spell slot, you also grant the target blindsight out to a range of 30 feet for the duration.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of ammonia", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bloodshot", + "fields": { + "name": "Bloodshot", + "desc": "You launch a jet of boiling blood from your eyes at a creature within range. You take 1d6 necrotic damage and make a ranged spell attack against the target. If the attack hits, the target takes 2d10 fire damage plus 2d8 psychic damage.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the fire damage increases by 1d10 for each slot level above 2nd.", + "target_type": "creature", + "range": "40 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "2d10", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bloody-hands", + "fields": { + "name": "Bloody Hands", + "desc": "You cause the hands (or other appropriate body parts, such as claws or tentacles) of a creature within range to bleed profusely. The target must succeed on a Constitution saving throw or take 1 necrotic damage each round and suffer disadvantage on all melee and ranged attack rolls that require the use of its hands for the spell’s duration.\n\nCasting any spell that has somatic or material components while under the influence of this spell requires a DC 10 Constitution saving throw. On a failed save, the spell is not cast but it is not lost; the casting can be attempted again in the next round.", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bloody-smite", + "fields": { + "name": "Bloody Smite", + "desc": "The next time during the spell’s duration that you hit a creature with a melee weapon attack, your weapon pulses with a dull red light, and the attack deals an extra 1d6 necrotic damage to the target. Until the spell ends, the target must make a Constitution saving throw at the start of each of its turns. On a failed save, it takes 1d6 necrotic damage, it bleeds profusely from the mouth, and it can’t speak intelligibly or cast spells that have a verbal component. On a successful save, the spell ends. If the target or an ally within 5 feet of it uses an action to tend the wound and makes a successful Wisdom (Medicine) check against your spell save DC, or if the target receives magical healing, the spell ends.", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bloom", + "fields": { + "name": "Bloom", + "desc": "You plant a silver acorn in solid ground and spend an hour chanting a litany of praises to the natural world, after which the land within 1 mile of the acorn becomes extremely fertile, regardless of its previous state. Any seeds planted in the area grow at twice the natural rate. Food harvested regrows within a week. After one year, the land slowly reverts to its normal fertility, unable to stave off the march of nature.\n\nChoose one of the following effects, which appears and grows immediately:\n* A field planted with vegetables of your choice, ready for harvest.\n* A thick forest of stout trees and ample undergrowth.\n* A grassland with wildflowers and fodder for grazing.\n* An orchard of fruit trees of your choice, growing in orderly rows and ready for harvest.\nLiving creatures that take a short rest within the area of a bloom spell receive the maximum hit points for Hit Dice expended. **Bloom** counters the effects of a [desolation](https://api.open5e.com/spells/desolation) spell.\n\n***Ritual Focus.*** If you expend your ritual focus, the duration becomes permanent.", + "document": "deepm", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "1 mile", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a silver acorn worth 500 gp, which is consumed in the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 year", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_boiling-blood", + "fields": { + "name": "Boiling Blood", + "desc": "You cause the blood within a creature’s body to boil with supernatural heat. Choose one creature that you can see within range that isn’t a construct or an undead. The target must make a Constitution saving throw. On a successful save, it takes 2d6 fire damage and the spell ends. On a failed save, the creature takes 4d6 fire damage and is blinded. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends. On a failure, the creature takes an additional 2d6 fire damage and remains blinded.\n", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_boiling-oil", + "fields": { + "name": "Boiling Oil", + "desc": "You conjure a shallow, 15-foot-radius pool of boiling oil centered on a point within range. The pool is difficult terrain, and any creature that enters the pool or starts its turn there must make a Dexterity saving throw. On a failed save, the creature takes 3d8 fire damage and falls prone. On a successful save, a creature takes half as much damage and doesn’t fall prone.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of oil", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bolster-undead", + "fields": { + "name": "Bolster Undead", + "desc": "You suffuse an area with negative energy to increase the difficulty of harming or affecting undead creatures.\n\nChoose up to three undead creatures within range. When a targeted creature makes a saving throw against being turned or against spells or effects that deal radiant damage, the target has advantage on the saving throw.\n", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional undead creature for each slot level above 1st.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a sprinkle of unholy water", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_booster-shot", + "fields": { + "name": "Booster Shot", + "desc": "You imbue a two-handed ranged weapon (typically a shortbow, longbow, light crossbow, or heavy crossbow) that you touch with a random magical benefit. While the spell lasts, a projectile fired from the weapon has an effect that occurs on a hit in addition to its normal damage. Roll a d6 to determine the additional effect for each casting of this spell.\n\n| D6 | EFFECT |\n|-|-|\n| 1 | 2d10 acid damage to all creatures within 10 feet of the target |\n| 2 | 2d10 lightning damage to the target and 1d10 lightning damage to all creatures in a 5-foot-wide line between the weapon and the target |\n| 3 | 2d10 necrotic damage to the target, and the target has disadvantage on its first attack roll before the start of the weapon user’s next turn |\n| 4 | 2d10 cold damage to the target and 1d10 cold damage to all other creatures in a 60-foot cone in front of the weapon |\n| 5 | 2d10 force damage to the target, and the target is pushed 20 feet |\n| 6 | 2d10 psychic damage to the target, and the target is stunned until the start of the weapon user’s next turn |\n\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, all damage increases by 1d10 for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "line", + "shape_magnitude": 60, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_boreass-breath", + "fields": { + "name": "Boreas’s Breath", + "desc": "You freeze standing water in a 20-foot cube or running water in a 10-foot cube centered on you. The water turns to solid ice. The surface becomes difficult terrain, and any creature that ends its turn on the ice must make a successful DC 10 Dexterity saving throw or fall prone.\n\nCreatures that are partially submerged in the water when it freezes become restrained. While restrained in this way, a creature takes 1d6 cold damage at the end of its turn. It can break free by using an action to make a successful Strength check against your spell save DC.\n\nCreatures that are fully submerged in the water when it freezes become incapacitated and cannot breathe. While incapacitated in this way, a creature takes 2d6 cold damage at the end of its turn. A trapped creature makes a DC 20 Strength saving throw after taking this damage at the end of its turn, breaking free from the ice on a success.\n\nThe ice has AC 10 and 15 hit points. It is vulnerable to fire damage, has resistance to nonmagical slashing and piercing damage, and is immune to cold, necrotic, poison, psychic, and thunder damage.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the size of the cube increases by 10 feet for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bottled-arcana", + "fields": { + "name": "Bottled Arcana", + "desc": "By touching an empty, stoppered glass container such as a vial or flask, you magically enable it to hold a single spell. To be captured, the spell must be cast within 1 round of casting **bottled arcana** and it must be intentionally cast into the container. The container can hold one spell of 3rd level or lower. The spell can be held in the container for as much as 24 hours, after which the container reverts to a mundane vessel and any magic inside it dissipates harmlessly.\n\nAs an action, any creature can unstop the container, thereby releasing the spell. If the spell has a range of self, the creature opening the container is affected; otherwise, the creature opening the container designates the target according to the captured spell’s description. If a creature opens the container unwittingly (not knowing that the container holds a spell), the spell targets the creature opening the container or is centered on its space instead (whichever is more appropriate). [Dispel magic](https://api.open5e.com/spells/dispel-magic) cast on the container targets **bottled arcana**, not the spell inside. If **bottled arcana** is dispelled, the container becomes mundane and the spell inside dissipates harmlessly.\n\nUntil the spell in the container is released, its caster can’t regain the spell slot used to cast that spell. Once the spell is released, its caster regains the use of that slot normally.\n", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the level of the spell the container can hold increases by one for every slot level above 5th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an empty glass container", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "see below", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_bottomless-stomach", + "fields": { + "name": "Bottomless Stomach", + "desc": "When you cast this spell, you gain the ability to consume dangerous substances and contain them in an extradimensional reservoir in your stomach. The spell allows you to swallow most liquids, such as acids, alcohol, poison, and even quicksilver, and hold them safely in your stomach. You are unaffected by swallowing the substance, but the spell doesn’t give you resistance or immunity to the substance in general; for example, you could safely drink a bucket of a black dragon’s acidic spittle, but you’d still be burned if you were caught in the dragon’s breath attack or if that bucket of acid were dumped over your head.\n\nThe spell allows you to store up to 10 gallons of liquid at one time. The liquid doesn’t need to all be of the same type, and different types don’t mix while in your stomach. Any liquid in excess of 10 gallons has its normal effect when you try to swallow it.\n\nAt any time before you stop concentrating on the spell, you can regurgitate up to 1 gallon of liquid stored in your stomach as a bonus action. The liquid is vomited into an adjacent 5-foot square. A target in that square must succeed on a DC 15 Dexterity saving throw or be affected by the liquid. The GM determines the exact effect based on the type of liquid regurgitated, using 1d6 damage of the appropriate type as the baseline.\n\nWhen you stop concentrating on the spell, its duration expires, or it’s dispelled, the extradimensional reservoir and the liquid it contains cease to exist.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_breathtaking-wind", + "fields": { + "name": "Breathtaking Wind", + "desc": "You target a creature with a blast of wintry air. That creature must make a successful Constitution saving throw or become unable to speak or cast spells with a vocal component for the duration of the spell.", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_breeze-compass", + "fields": { + "name": "Breeze Compass", + "desc": "When you cast **breeze compass**, you must clearly imagine or mentally describe a location. It doesn’t need to be a location you’ve been to as long as you know it exists on the Material Plane. Within moments, a gentle breeze arises and blows along the most efficient path toward that destination. Only you can sense this breeze, and whenever it brings you to a decision point (a fork in a passageway, for example), you must make a successful DC 8 Intelligence (Arcana) check to deduce which way the breeze indicates you should go. On a failed check, the spell ends. The breeze guides you around cliffs, lava pools, and other natural obstacles, but it doesn’t avoid enemies or hostile creatures.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a magnetized needle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_brimstone-infusion", + "fields": { + "name": "Brimstone Infusion", + "desc": "You infuse an ordinary flask of alchemist's fire with magical brimstone. While so enchanted, the alchemist's fire can be thrown 40 feet instead of 20, and it does 2d6 fire damage instead of 1d4. The Dexterity saving throw to extinguish the flames uses your spell save DC instead of DC 10. Infused alchemist's fire returns to its normal properties after 24 hours.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a flask of alchemist's fire and 5 gp worth of brimstone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_brittling", + "fields": { + "name": "Brittling", + "desc": "This spell uses biting cold to make a metal or stone object you touch become brittle and more easily shattered. The object’s hit points are reduced by a number equal to your level as a spellcaster, and Strength checks to shatter or break the object are made with advantage if they occur within 1 minute of the spell’s casting. If the object isn’t shattered during this time, it reverts to the state it was in before the spell was cast.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an icicle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_broken-charge", + "fields": { + "name": "Broken Charge", + "desc": "When an enemy that you can see moves to within 5 feet of you, you utter a perplexing word that alters the foe’s course. The enemy must make a successful Wisdom saving throw or take 2d4 psychic damage and use the remainder of its speed to move in a direction of your choosing.\n", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the target takes an additional 2d4 psychic damage for each slot level above 1st.", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_by-the-light-of-the-moon", + "fields": { + "name": "By the Light of the Moon", + "desc": "The area within 30 feet of you becomes bathed in magical moonlight. In addition to providing dim light, it highlights objects and locations that are hidden or that hold a useful clue. Until the spell ends, all Wisdom (Perception) and Intelligence (Investigation) checks made in the area are made with advantage.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_by-the-light-of-the-watchful-moon", + "fields": { + "name": "By the Light of the Watchful Moon", + "desc": "Regardless of the time of day or your location, you command the watchful gaze of the moon to illuminate threats to you and your allies. Shafts of bright moonlight, each 5 feet wide, shine down from the sky (or from the ceiling if you are indoors), illuminating all spaces within range that contain threats, whether they are enemies, traps, or hidden hazards. An enemy creature that makes a successful Charisma saving throw resists the effect and is not picked out by the moon’s glow.\n\nThe glow does not make invisible creatures visible, but it does indicate an invisible creature’s general location (somewhere within the 5-foot beam). The light continues to illuminate any target that moves, but a target that moves out of the spell’s area is no longer illuminated. A threat that enters the area after the spell is cast is not subject to the spell’s effect.", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_call-shadow-mastiff", + "fields": { + "name": "Call Shadow Mastiff", + "desc": "You conjure a [shadow mastiff](https://api.open5e.com/monsters/shadow-mastiff) from the plane of shadow. This creature obeys your verbal commands to aid you in battle or to seek out a specific creature. It has the body of a large dog with a smooth black coat, 2 feet high at the shoulder and weighing 200 pounds.\n\nThe mastiff is friendly to you and your companions. Roll initiative for the mastiff; it acts on its own turn. It obeys simple, verbal commands from you, within its ability to act. Giving a command takes no action on your part.\n\nThe mastiff disappears when it drops to 0 hit points or when the spell ends.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dog’s tooth", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_calm-of-the-storm", + "fields": { + "name": "Calm of the Storm", + "desc": "While visualizing the world as you wish it was, you lay your hands upon a creature other than yourself and undo the effect of a chaos magic surge that affected the creature within the last minute. Reality reshapes itself as if the surge never happened, but only for that creature.\n", + "document": "deepm", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the time since the chaos magic surge can be 1 minute longer for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an amethyst worth 250 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_candles-insight", + "fields": { + "name": "Candle’s Insight", + "desc": "**Candle’s insight** is cast on its target as the component candle is lit. The candle burns for up to 10 minutes unless it’s extinguished normally or by the spell’s effect. While the candle burns, the caster can question the spell’s target, and the candle reveals whether the target speaks truthfully. An intentionally misleading or partial answer causes the flame to flicker and dim. An outright lie causes the flame to flare and then go out, ending the spell. The candle judges honesty, not absolute truth; the flame burns steadily through even an outrageously false statement, as long as the target believes it’s true.\n\n**Candle’s insight** is used across society: by merchants while negotiating deals, by inquisitors investigating heresy, and by monarchs as they interview foreign diplomats. In some societies, casting candle’s insight without the consent of the spell’s target is considered a serious breach of hospitality.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a blessed candle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_carmello-voltas-irksome-preserves", + "fields": { + "name": "Carmello-Volta’s Irksome Preserves", + "desc": "At your command, delicious fruit jam oozes from a small mechanical device (such as a crossbow trigger, a lock, or a clockwork toy), rendering the device inoperable until the spell ends and the device is cleaned with a damp cloth. Cleaning away the jam takes an action, but doing so has no effect until the spell ends. One serving of the jam can be collected in a suitable container. If it's eaten (as a bonus action) within 24 hours, the jam restores 1d4 hit points. The jam's flavor is determined by the material component.\n\nThe spell can affect constructs, with two limitations. First, the target creature negates the effect with a successful Dexterity saving throw. Second, unless the construct is Tiny, only one component (an eye, a knee, an elbow, and so forth) can be disabled. The affected construct has disadvantage on attack rolls and ability checks that depend on the disabled component until the spell ends and the jam is removed.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small berry or a piece of fruit", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_catapult", + "fields": { + "name": "Catapult", + "desc": "You magically hurl an object or creature weighing 500 pounds or less 40 feet through the air in a direction of your choosing (including straight up). Objects hurled at specific targets require a spell attack roll to hit. A thrown creature takes 6d10 bludgeoning damage from the force of the throw, plus any appropriate falling damage, and lands prone. If the target of the spell is thrown against another creature, the total damage is divided evenly between them and both creatures are knocked prone.\n", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d10, the distance thrown increases by 10 feet, and the weight thrown increases by 100 pounds for each slot level above 6th.", + "target_type": "object", + "range": "400 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small platinum lever and fulcrum worth 400 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "6d10", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_catch-the-breath", + "fields": { + "name": "Catch the Breath", + "desc": "You can cast this spell as a reaction when you’re targeted by a breath weapon. Doing so gives you advantage on your saving throw against the breath weapon. If your saving throw succeeds, you take no damage from the attack even if a successful save normally only halves the damage.\n\nWhether your saving throw succeeded or failed, you absorb and store energy from the attack. On your next turn, you can make a ranged spell attack against a target within 60 feet. On a hit, the target takes 3d10 force damage. If you opt not to make this attack, the stored energy dissipates harmlessly.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage done by your attack increases by 1d10 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "3d10", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_caustic-blood", + "fields": { + "name": "Caustic Blood", + "desc": "Your blood becomes caustic when exposed to the air. When you take piercing or slashing damage, you can use your reaction to select up to three creatures within 30 feet of you. Each target takes 1d10 acid damage unless it makes a successful Dexterity saving throw.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the number of targets increases by one for each slot level above 2nd, to a maximum of six targets.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "1d10", + "damage_types": [ + "acid" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_caustic-torrent", + "fields": { + "name": "Caustic Torrent", + "desc": "A swirling jet of acid sprays from you in a direction you choose. The acid fills a line 60 feet long and 5 feet wide. Each creature in the line takes 14d6 acid damage, or half as much damage if it makes a successful Dexterity saving throw. A creature reduced to 0 hit points by this spell is killed, and its body is liquefied. In addition, each creature other than you that’s in the line or within 5 feet of it is poisoned for 1 minute by toxic fumes. Creatures that don’t breathe or that are immune to acid damage aren’t poisoned. A poisoned creature can repeat the Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "deepm", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a chip of bone pitted by acid", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "14d6", + "damage_types": [ + "acid" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_caustic-touch", + "fields": { + "name": "Caustic Touch", + "desc": "Your hand sweats profusely and becomes coated in a film of caustic slime. Make a melee spell attack against a creature you touch. On a hit, the target takes 1d8 acid damage. If the target was concentrating on a spell, it has disadvantage on its Constitution saving throw to maintain concentration.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "This spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "acid" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_celebration", + "fields": { + "name": "Celebration", + "desc": "You create a 30-foot-radius area around a point that you choose within range. An intelligent creature that enters the area or starts its turn there must make a Wisdom saving throw. On a failed save, the creature starts to engage in celebratory revelry: drinking, singing, laughing, and dancing. Affected creatures are reluctant to leave the area until the spell ends, preferring to continue the festivities. They forsake appointments, cease caring about their woes, and generally behave in a cordial (if not hedonistic) manner. This preoccupation with merrymaking occurs regardless of an affected creature’s agenda or alignment. Assassins procrastinate, servants join in the celebration rather than working, and guards abandon their posts.\n\nThe effect ends on a creature when it is attacked, takes damage, or is forced to leave the area. A creature that makes a successful saving throw can enter or leave the area without danger of being enchanted. A creature that fails the saving throw and is forcibly removed from the area must repeat the saving throw if it returns to the area.\n", + "document": "deepm", + "level": 7, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the spell lasts for an additional hour for each slot level above 7th.\n\n***Ritual Focus.*** If you expend your ritual focus, an unaffected intelligent creature must make a new saving throw every time it starts its turn in the area, even if it has previously succeeded on a save against the spell.", + "target_type": "area", + "range": "90 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small party favor", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_chains-of-the-goddess", + "fields": { + "name": "Chains of the Goddess", + "desc": "Choose a creature you can see within 90 feet. The target must make a successful Wisdom saving throw or be restrained by chains of psychic force and take 6d8 bludgeoning damage. A restrained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a successful save. While restrained in this way, the creature also takes 6d8 bludgeoning damage at the start of each of your turns.", + "document": "deepm", + "level": 5, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "1 foot of iron chain", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_chains-of-torment", + "fields": { + "name": "Chains of Torment", + "desc": "You are surrounded by an aura of dim light in a 10-foot radius as you conjure an iron chain that extends out to a creature you can see within 30 feet. The creature must make a successful Dexterity saving throw or be grappled (escape DC equal to your spell save DC). While grappled in this way, the creature is also restrained. A creature that’s restrained at the start of its turn takes 4d6 psychic damage. You can have only one creature restrained in this way at a time.\n\nAs an action, you can scan the mind of the creature that’s restrained by your chain. If the creature gets a failure on a Wisdom saving throw, you learn one discrete piece of information of your choosing known by the creature (such as a name, a password, or an important number). The effect is otherwise harmless.\n", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the psychic damage increases by 1d6 for each slot level above 4th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an iron chain link dipped in blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_champions-weapon", + "fields": { + "name": "Champion’s Weapon", + "desc": "A spectral version of a melee weapon of your choice materializes in your hand. It has standard statistics for a weapon of its kind, but it deals force damage instead of its normal damage type and it sheds dim light in a 10-foot radius. You have proficiency with this weapon for the spell’s duration. The weapon can be wielded only by the caster; the spell ends if the weapon is held by a creature other than you or if you start your turn more than 10 feet from the weapon.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the weapon deals an extra 1d8 force damage for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_chaotic-form", + "fields": { + "name": "Chaotic Form", + "desc": "You cause the form of a willing creature to become malleable, dripping and flowing according to the target’s will as if the creature were a vaguely humanoid-shaped ooze. The creature is not affected by difficult terrain, it has advantage on Dexterity (Acrobatics) checks made to escape a grapple, and it suffers no penalties when squeezing through spaces one size smaller than itself. The target’s movement is halved while it is affected by **chaotic form**.\n", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration increases by 10 minutes for each slot level above 4th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_chaotic-vitality", + "fields": { + "name": "Chaotic Vitality", + "desc": "Make a melee spell attack against a creature that has a number of Hit Dice no greater than your level and has at least 1 hit point. On a hit, you conjure pulsating waves of chaotic energy within the creature and yourself. After a brief moment that seems to last forever, your hit point total changes, as does the creature’s. Roll a d100 and increase or decrease the number rolled by any number up to your spellcasting level, then find the result on the Hit Point Flux table. Apply that result both to yourself and the target creature. Any hit points gained beyond a creature’s normal maximum are temporary hit points that last for 1 round per caster level.\n\nFor example, a 3rd-level spellcaster who currently has 17 of her maximum 30 hit points casts **chaotic vitality** on a creature with 54 hit points and rolls a 75 on the Hit Point Flux table. The two creatures have a combined total of 71 hit points. A result of 75 indicates that both creatures get 50 percent of the total, so the spellcaster and the target end up with 35 hit points each. In the spellcaster’s case, 5 of those hit points are temporary and will last for 3 rounds.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the maximum Hit Dice of the affected creature increases by 2 for each slot level above 2nd.\n ## Hit Point Flux \n| SIZE | HP |\n|-|-|\n| 01–09 | 0 |\n| 10–39 | 1 |\n| 40–69 | 25 percent of total |\n| 70–84 | 50 percent of total |\n| 85–94 | 75 percent of total |\n| 95–99 | 100 percent of total |\n| 100 | 200 percent of total, and both creatures gain the effect of a haste spell that lasts for 1 round per caster level |\n\n", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_chaotic-world", + "fields": { + "name": "Chaotic World", + "desc": "You throw a handful of colored cloth into the air while screaming a litany of disjointed phrases. A moment later, a 30-foot cube centered on a point within range fills with multicolored light, cacophonous sound, overpowering scents, and other confusing sensory information. The effect is dizzying and overwhelming. Each enemy within the cube must make a successful Intelligence saving throw or become blinded and deafened, and fall prone. An affected enemy cannot stand up or recover from the blindness or deafness while within the area, but all three conditions end immediately for a creature that leaves the spell’s area.", + "document": "deepm", + "level": 6, + "school": "illusion", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "seven irregular pieces of colored cloth that you throw into the air", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 30, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_chilling-words", + "fields": { + "name": "Chilling Words", + "desc": "You utter a short phrase and designate a creature within range to be affected by it. The target must make a Wisdom saving throw to avoid the spell. On a failed save, the target is susceptible to the phrase for the duration of the spell. At any later time while the spell is in effect, you and any of your allies within range when you cast the spell can use an action to utter the phrase, which causes the target to freeze in fear. Each of you can use the phrase against the target once only, and the target must be within 30 feet of the speaker for the phrase to be effective.\n\nWhen the target hears the phrase, it must make a successful Constitution saving throw or take 1d6 psychic damage and become restrained for 1 round. Whether this saving throw succeeds or fails, the target can’t be affected by the phrase for 1 minute afterward.\n\nYou can end the spell early by making a final utterance of the phrase (even if you’ve used the phrase on this target previously). On hearing this final utterance, the target takes 4d6 psychic damage and is restrained for 1 minute or, with a successful Constitution saving throw, it takes half the damage and is restrained for 1 round.", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a strip of paper with writing on it", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "psychic" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_chronal-lance", + "fields": { + "name": "Chronal Lance", + "desc": "You inflict the ravages of aging on up to three creatures within range, temporarily discomfiting them and making them appear elderly for a time. Each target must make a successful Wisdom saving throw, or its walking speed is halved (round up to the nearest 5-foot increment) and it has disadvantage on Dexterity checks (but not saving throws). An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_circle-of-wind", + "fields": { + "name": "Circle of Wind", + "desc": "Light wind encircles you, leaving you in the center of a mild vortex. For the duration, you gain a +2 bonus to your AC against ranged attacks. You also have advantage on saving throws against extreme environmental heat and against harmful gases, vapors, and inhaled poisons.", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a crystal ring", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_clash-of-glaciers", + "fields": { + "name": "Clash of Glaciers", + "desc": "You conjure up icy boulders that crush creatures in a line 100 feet long. Each creature in the area takes 5d6 bludgeoning damage plus 5d6 cold damage, or half the damage with a successful Dexterity saving throw.\n", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d6 for each slot level above 5th. You decide whether each extra die deals bludgeoning or cold damage.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of cracked glass", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_claws-of-darkness", + "fields": { + "name": "Claws of Darkness", + "desc": "You shape shadows into claws that grow from your fingers and drip inky blackness. The claws have a reach of 10 feet. While the spell lasts, you can make a melee spell attack with them that deals 1d10 cold damage.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_claws-of-the-earth-dragon", + "fields": { + "name": "Claws of the Earth Dragon", + "desc": "You summon the power of the earth dragon and shoot a ray at one target within 60 feet. The target falls prone and takes 6d8 bludgeoning damage from being slammed to the ground. If the target was flying or levitating, it takes an additional 1d6 bludgeoning damage per 10 feet it falls. If the target makes a successful Strength saving throw, damage is halved, it doesn’t fall, and it isn’t knocked prone.\n", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage done by the attack increases by 1d8 and the range increases by 10 feet for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_clearing-the-field", + "fields": { + "name": "Clearing the Field", + "desc": "With a harsh word and a vicious chopping motion, you cause every tree, shrub, and stump within 40 feet of you to sink into the ground, leaving the vacated area clear of plant life that might otherwise hamper movement or obscure sight. Overgrown areas that counted as difficult terrain become clear ground and no longer hamper movement. The original plant life instantly rises from the ground again when the spell ends or is dispelled. Plant creatures are not affected by **clearing the field**.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the spell lasts for an additional hour for each slot level above 2nd.\n\n***Ritual Focus.*** If you expend your ritual focus, plant creatures in the area must make a successful Constitution saving throw or be affected as though by a [enlarge/reduce](https://api.open5e.com/spells/enlargereduce) spell.", + "target_type": "area", + "range": "40 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_cloak-of-shadow", + "fields": { + "name": "Cloak of Shadow", + "desc": "You cloak yourself in shadow, giving you advantage on Dexterity (Stealth) checks against creatures that rely on sight.", + "document": "deepm", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_clockwork-bolt", + "fields": { + "name": "Clockwork Bolt", + "desc": "You imbue an arrow or crossbow bolt with clockwork magic just as you fire it at your target; spinning blades materialize on the missile after it strikes to further mutilate your enemy.\n\nAs part of the action used to cast this spell, you make a ranged weapon attack with a bow or a crossbow against one creature within range. If the attack hits, the missile embeds in the target. Unless the target (or an ally of it within 5 feet) uses an action to remove the projectile (which deals no additional damage), the target takes an additional 1d8 slashing damage at the end of its next turn from spinning blades that briefly sprout from the missile’s shaft. Afterward, the projectile reverts to normal.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "This spell deals more damage when you reach higher levels. At 5th level, the ranged attack deals an extra 1d8 slashing damage to the target, and the target takes an additional 1d8 slashing damage (2d8 total) if the embedded ammunition isn’t removed. Both damage amounts increase by 1d8 again at 11th level and at 17th level.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an arrow or crossbow bolt", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d8", + "damage_types": [ + "slashing" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_closing-in", + "fields": { + "name": "Closing In", + "desc": "Choose a creature you can see within range. The target must succeed on a Wisdom saving throw, which it makes with disadvantage if it’s in an enclosed space. On a failed save, the creature believes the world around it is closing in and threatening to crush it. Even in open or clear terrain, the creature feels as though it is sinking into a pit, or that the land is rising around it. The creature has disadvantage on ability checks and attack rolls for the duration, and it takes 2d6 psychic damage at the end of each of its turns. An affected creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_cobra-fangs", + "fields": { + "name": "Cobra Fangs", + "desc": "The spell causes the target to grow great, snake-like fangs. An unwilling creature must make a Wisdom saving throw to avoid the effect. The spell fails if the target already has a bite attack that deals poison damage.\n\nIf the target doesn’t have a bite attack, it gains one. The target is proficient with the bite, and it adds its Strength modifier to the attack and damage rolls. The damage is piercing and the damage die is a d4.\n\nWhen the target hits a creature with its bite attack, the creature must make a Constitution saving throw, taking 3d6 poison damage on a failed save, or half as much damage on a successful one.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the target’s bite counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of snake venom or a patch of snakeskin", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_compelled-movement", + "fields": { + "name": "Compelled Movement", + "desc": "Choose two living creatures (not constructs or undead) you can see within range. Each must make a Charisma saving throw. On a failed save, a creature is compelled to use its movement to move toward the other creature. Its route must be as direct as possible, but it avoids dangerous terrain and enemies. If the creatures are within 5 feet of each other at the end of either one’s turn, their bodies fuse together. Fused creatures still take their own turns, but they can’t move, can’t use reactions, and have disadvantage on attack rolls, Dexterity saving throws, and Constitution checks to maintain concentration.\n\nA fused creature can use its action to make a Charisma saving throw. On a success, the creature breaks free and can move as it wants. It can become fused again, however, if it’s within 5 feet of a creature that’s still under the spell’s effect at the end of either creature’s turn.\n\n**Compelled movement** doesn’t affect a creature that can’t be charmed or that is incorporeal.\n", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the number of creatures you can affect increases by one for every two slot levels above 3rd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "the embalmed body of a millipede with its right legs removed, worth at least 50 gp", + "material_cost": "50.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_compelling-fate", + "fields": { + "name": "Compelling Fate", + "desc": "You view the actions of a single creature you can see through the influence of the stars, and you read what is written there. If the target fails a Charisma saving throw, you can predict that creature’s actions. This has the following effects:\n* You have advantage on attack rolls against the target.\n* For every 5 feet the target moves, you can move 5 feet (up to your normal movement) on the target’s turn when it has completed its movement. This is deducted from your next turn’s movement.\n* As a reaction at the start of the target’s turn, you can warn yourself and allies that can hear you of the target’s offensive intentions; any creature targeted by the target’s next attack gains a +2 bonus to AC or to its saving throw against that attack.\n", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration is extended by 1 round for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a sprinkling of silver dust worth 20 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_comprehend-wild-shape", + "fields": { + "name": "Comprehend Wild Shape", + "desc": "Give one of the carved totems to an ally while keeping the other yourself. For the duration of the spell, you and whoever holds the other totem can communicate while either of you is in a beast shape. This isn’t a telepathic link; you simply understand each other’s verbal communication, similar to the effect of a speak with animals spell. This effect doesn’t allow a druid in beast shape to cast spells.\n", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can increase the number of target creatures by two for each slot level above 2nd. Each creature must receive a matching carved totem.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "two or more matching carved totems", + "material_cost": null, + "material_consumed": false, + "target_count": 2, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_confound-senses", + "fields": { + "name": "Confound Senses", + "desc": "This spell befuddles the minds of up to six creatures that you can see within range, causing the creatures to see images of shifting terrain. Each target that fails an Intelligence saving throw is reduced to half speed until the spell ends because of confusion over its surroundings, and it makes ranged attack rolls with disadvantage.\n\nAffected creatures also find it impossible to keep track of their location. They automatically fail Wisdom (Survival) checks to avoid getting lost. Whenever an affected creature must choose between one or more paths, it chooses at random and immediately forgets which direction it came from.", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a broken compass", + "material_cost": null, + "material_consumed": false, + "target_count": 6, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_conjure-fey-hound", + "fields": { + "name": "Conjure Fey Hound", + "desc": "You summon a fey hound to fight by your side. A [hound of the night](https://api.open5e.com/monsters/hound-of-the-night) appears in an unoccupied space that you can see within range. The hound disappears when it drops to 0 hit points or when the spell ends.\n\nThe summoned hound is friendly to you and your companions. Roll initiative for the summoned hound, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the hound, it stands by your side and attacks nearby creatures that are hostile to you but otherwise takes no actions.\n", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you summon two hounds. When you cast this spell using a 9th-level spell slot, you summon three hounds.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a wooden or metal whistle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_conjure-forest-defender", + "fields": { + "name": "Conjure Forest Defender", + "desc": "When you cast this spell in a forest, you fasten sticks and twigs around a body. The body comes to life as a [forest defender](https://api.open5e.com/monsters/forest-defender). The forest defender is friendly to you and your companions. Roll initiative for the forest defender, which has its own turns. It obeys any verbal or mental commands that you issue to it (no action required by you), as long as you remain within its line of sight. If you don’t issue any commands to the forest defender, if you are out of its line of sight, or if you are unconscious, it defends itself from hostile creatures but otherwise takes no actions. A body sacrificed to form the forest defender is permanently destroyed and can be restored to life only by means of a [true resurrection](https://api.open5e.com/spells/true-resurrection) or a [wish](https://api.open5e.com/spells/wish) spell. You can have only one forest defender under your control at a time. If you cast this spell again, the previous forest defender crumbles to dust.\n", + "document": "deepm", + "level": 6, + "school": "conjuration", + "higher_level": "When you cast this spell using a 9th‐level spell slot, you summon two forest defenders instead of one, and you can control up to two forest defenders at a time.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "one humanoid body, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until destroyed", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_conjure-greater-spectral-dead", + "fields": { + "name": "Conjure Greater Spectral Dead", + "desc": "You summon an incorporeal undead creature that appears in an unoccupied space you can see within range. You choose one of the following options for what appears:\n* One [wraith](https://api.open5e.com/monsters/wraith)\n* One [spectral guardian](https://api.open5e.com/monsters/spectral-guardian)\n* One [wolf spirit swarm](https://api.open5e.com/monsters/wolf-spirit-swarm)\nSummoned creatures disappear when they drop to 0 hit points or when the spell ends.\n\nThe summoned creature doesn’t attack you or your companions for the duration. Roll initiative for the summoned creature, which has its own turns. The creature attacks your enemies and tries to stay within 60 feet of you, but it otherwise controls its own actions. The summoned creature despises being bound and might harm or impede you and your companions by any means at its disposal other than direct attacks if the opportunity arises. At the beginning of the creature’s turn, you can use your reaction to verbally command it. The creature obeys your commands for that turn, and you take 1d6 psychic damage at the end of the turn. If your concentration is broken, the creature doesn’t disappear. Instead, you can no longer command it, it becomes hostile to you and your companions, and it attacks you and your allies if it believes it has a chance to win the fight or to inflict meaningful harm; otherwise it flees. You can’t dismiss the uncontrolled creature, but it disappears 1 hour after you summoned it.\n", + "document": "deepm", + "level": 7, + "school": "conjuration", + "higher_level": "When you cast this spell using a 9th‐level spell slot, you summon a [deathwisp](https://api.open5e.com/monsters/deathwisp) or two [ghosts](https://api.open5e.com/monsters/ghost) instead.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of bone dust, a crystal prism worth at least 100 gp, and a platinum coin", + "material_cost": "100.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_conjure-minor-voidborn", + "fields": { + "name": "Conjure Minor Voidborn", + "desc": "You summon fiends or aberrations that appear in unoccupied spaces you can see within range. You choose one of the following options:\n* One creature of challenge rating 2 or lower\n* Two creatures of challenge rating 1 or lower\n* Four creatures of challenge rating 1/2 or lower\n* Eight creatures of challenge rating 1/4 or lower\nSummoned creatures disappear when they drop to 0 hit points or when the spell ends.\n\nThe summoned creatures do not directly attack you or your companions. Roll initiative for the summoned creatures as a group; they take their own turns on their initiative result. They attack your enemies and try to stay within 90 feet of you, but they control their own actions. The summoned creatures despise being bound, so they might harm or impede you and your companions with secondary effects (but not direct attacks) if the opportunity arises. At the beginning of the creatures’ turn, you can use your reaction to verbally command them. They obey your commands on that turn, and you take 1d6 psychic damage at the end of the turn.\n\nIf your concentration is broken, the spell ends but the creatures don’t disappear. Instead, you can no longer command them, and they become hostile to you and your companions. They will attack you and your allies if they believe they have a chance to win the fight or to inflict meaningful harm, but they won’t fight if they fear it would mean their own death. You can’t dismiss the creatures, but they disappear 1 hour after being summoned.\n", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a 7th‑or 9th-level spell slot, you choose one of the summoning options above, and more creatures appear­—twice as many with a 7th-level spell slot and three times as many with a 9th-level spell slot.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_conjure-scarab-swarm", + "fields": { + "name": "Conjure Scarab Swarm", + "desc": "You summon swarms of scarab beetles to attack your foes. Two swarms of insects (beetles) appear in unoccupied spaces that you can see within range.\n\nEach swarm disappears when it drops to 0 hit points or when the spell ends. The swarms are friendly to you and your allies. Make one initiative roll for both swarms, which have their own turns. They obey verbal commands that you issue to them (no action required by you). If you don’t issue any commands to them, they defend themselves from hostile creatures but otherwise take no actions.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a beetle carapace", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_conjure-shadow-titan", + "fields": { + "name": "Conjure Shadow Titan", + "desc": "You summon a shadow titan, which appears in an unoccupied space that you can see within range. The shadow titan’s statistics are identical to a [stone giant’s](https://api.open5e.com/monsters/stone-giant), with two differences: its camouflage ability works in dim light instead of rocky terrain, and the “rocks” it hurls are composed of shadow-stuff and cause cold damage.\n\nThe shadow titan is friendly to you and your companions. Roll initiative for the shadow titan; it acts on its own turn. It obeys verbal or telepathic commands that you issue to it (giving a command takes no action on your part). If you don’t issue any commands to the shadow titan, it defends itself from hostile creatures but otherwise takes no actions.\n\nThe shadow titan disappears when it drops to 0 hit points or when the spell ends.", + "document": "deepm", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_conjure-spectral-dead", + "fields": { + "name": "Conjure Spectral Dead", + "desc": "You summon a [shroud](https://api.open5e.com/monsters/shroud) to do your bidding. The creature appears in an unoccupied space that you can see within range. The creature is friendly to you and your allies for the duration. Roll initiative for the creature, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the creature, it defends itself from hostile creatures but otherwise takes no actions. The creature disappears when it drops to 0 hit points or when the spell ends.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a 3rd-level spell slot, you can choose to summon two [shrouds](https://api.open5e.com/monsters/shroud) or one [specter](https://api.open5e.com/monsters/specter). When you cast this spell with a spell slot of 4th level or higher, you can choose to summon four [shrouds](https://api.open5e.com/monsters/shroud) or one [will-o’-wisp](https://api.open5e.com/monsters/will-o-wisp).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of bone dust, a crystal prism, and a silver coin", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_conjure-undead", + "fields": { + "name": "Conjure Undead", + "desc": "You summon a [shadow](https://api.open5e.com/monsters/shadow) to do your bidding. The creature appears in an unoccupied space that you can see within range. The creature is friendly to you and your allies for the duration. Roll initiative for the shadow, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the creature, it defends itself from hostile creatures but otherwise takes no actions. The shadow disappears when the spell ends.\n", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a 4th-level spell slot, you can choose to summon a [wight](https://api.open5e.com/monsters/wight) or a [shadow](https://api.open5e.com/monsters/shadow). When you cast this spell with a spell slot of 5th level or higher, you can choose to summon a [ghost](https://api.open5e.com/monsters/ghost), a [shadow](https://api.open5e.com/monsters/shadow), or a [wight](https://api.open5e.com/monsters/wight).", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a humanoid skull", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_conjure-voidborn", + "fields": { + "name": "Conjure Voidborn", + "desc": "You summon a fiend or aberration of challenge rating 6 or lower, which appears in an unoccupied space that you can see within range. The creature disappears when it drops to 0 hit points or when the spell ends.\n\nRoll initiative for the creature, which takes its own turns. It attacks the nearest creature on its turn. At the start of the fiend’s turn, you can use your reaction to command the creature by speaking in Void Speech. It obeys your verbal command, and you take 2d6 psychic damage at the end of the creature’s turn.\n\nIf your concentration is broken, the spell ends but the creature doesn’t disappear. Instead, you can no longer issue commands to the fiend, and it becomes hostile to you and your companions. It will attack you and your allies if it believes it has a chance to win the fight or to inflict meaningful harm, but it won’t fight if it fears doing so would mean its own death. You can’t dismiss the creature, but it disappears 1 hour after you summoned it.\n", + "document": "deepm", + "level": 7, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the challenge rating increases by 1 for each slot level above 7th.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_consult-the-storm", + "fields": { + "name": "Consult the Storm", + "desc": "You ask a question of an entity connected to storms, such as an elemental, a deity, or a primal spirit, and the entity replies with destructive fury.\n\nAs part of the casting of the spell, you must speak a question consisting of fifteen words or fewer. Choose a point within range. A short, truthful answer to your question booms from that point. It can be heard clearly by any creature within 600 feet. Each creature within 15 feet of the point takes 7d6 thunder damage, or half as much damage with a successful Constitution saving throw.\n", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "7d6", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_converse-with-dragon", + "fields": { + "name": "Converse With Dragon", + "desc": "You gain limited telepathy, allowing you to communicate with any creature within 120 feet of you that has the dragon type, regardless of the creature’s languages. A dragon can choose to make a Charisma saving throw to prevent telepathic contact with itself.\n\nThis spell doesn’t change a dragon’s disposition toward you or your allies, it only opens a channel of communication. In some cases, unwanted telepathic contact can worsen the dragon’s attitude toward you.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_costly-victory", + "fields": { + "name": "Costly Victory", + "desc": "You select up to ten enemies you can see that are within range. Each target must make a Wisdom saving throw. On a failed save, that creature is cursed to burst into flame if it reduces one of your allies to 0 hit points before this spell’s duration expires. The affected creature takes 6d8 fire damage and 6d8 radiant damage when it bursts into flame.\n\nIf the affected creature is wearing flammable material (or is made of flammable material, such as a plant creature), it catches on fire and continues burning; the creature takes fire damage equal to your spellcasting ability modifier at the end of each of its turns until the creature or one of its allies within 5 feet of it uses an action to extinguish the fire.", + "document": "deepm", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "fire" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_create-ring-servant", + "fields": { + "name": "Create Ring Servant", + "desc": "You touch two metal rings and infuse them with life, creating a short-lived but sentient construct known as a [ring servant](https://api.open5e.com/monsters/ring-servant). The ring servant appears adjacent to you. It reverts form, changing back into the rings used to cast the spell, when it drops to 0 hit points or when the spell ends.\n\nThe ring servant is friendly to you and your companions for the duration. Roll initiative for the ring servant, which acts on its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don’t issue any commands to the ring servant, it defends itself and you from hostile creatures but otherwise takes no actions.", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "two metal rings", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_create-thunderstaff", + "fields": { + "name": "Create Thunderstaff", + "desc": "After you cast **create thunderstaff** on a normal quarterstaff, the staff must then be mounted in a noisy location, such as a busy marketplace, and left there for 60 days. During that time, the staff gradually absorbs ambient sound.\n\nAfter 60 days, the staff is fully charged and can’t absorb any more sound. At that point, it becomes a **thunderstaff**, a +1 quarterstaff that has 10 charges. When you hit on a melee attack with the staff and expend 1 charge, the target takes an extra 1d8 thunder damage. You can cast a [thunderwave](https://api.open5e.com/spells/thunderwave) spell from the staff as a bonus action by expending 2 charges. The staff cannot be recharged.\n\nIf the final charge is not expended within 60 days, the staff becomes nonmagical again.", + "document": "deepm", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a quarterstaff", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d8", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_creeping-ice", + "fields": { + "name": "Creeping Ice", + "desc": "You create a sheet of ice that covers a 5-foot square within range and lasts for the spell’s duration. The iced area is difficult terrain.\n\nA creature in the area where you cast the spell must make a successful Strength saving throw or be restrained by ice that rapidly encases it. A creature restrained by the ice takes 2d6 cold damage at the start of its turn. A restrained creature can use an action to make a Strength check against your spell save DC, freeing itself on a success, but it has disadvantage on this check. The creature can also be freed (and the spell ended) by dealing at least 20 damage to the ice. The restrained creature takes half the damage from any attacks against the ice.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th to 6th level, the area increases to a 10-foot square, the ice deals 4d6 cold damage, and 40 damage is needed to melt each 5-foot square. When you cast this spell using a spell slot of 7th level or higher, the area increases to a 20-foot square, the ice deals 6d6 cold damage, and 60 damage is needed to melt each 5-foot square.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_crushing-curse", + "fields": { + "name": "Crushing Curse", + "desc": "You speak a word of Void Speech. Choose a creature you can see within range. If the target can hear you, it must succeed on a Wisdom saving throw or take 1d6 psychic damage and be deafened for 1 minute, except that it can still hear Void Speech. A creature deafened in this way can repeat the saving throw at the end of each of its turns, ending the effect on a success.", + "document": "deepm", + "level": 0, + "school": "enchantment", + "higher_level": "This spell’s damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_crushing-trample", + "fields": { + "name": "Crushing Trample", + "desc": "Upon casting this spell, you are filled with a desire to overrun your foes. You immediately move up to twice your speed in a straight line, trampling every foe in your path that is of your size category or smaller. If you try to move through the space of an enemy whose size is larger than yours, your movement (and the spell) ends. Each enemy whose space you move through must make a successful Strength saving throw or be knocked prone and take 4d6 bludgeoning damage. If you have hooves, add your Strength modifier (minimum of +1) to the damage.\n\nYou move through the spaces of foes whether or not they succeed on their Strength saving throws. You do not provoke opportunity attacks while moving under the effect of **crushing trample**.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_cure-beast", + "fields": { + "name": "Cure Beast", + "desc": "A beast of your choice that you can see within range regains a number of hit points equal to 1d6 + your spellcasting modifier.\n", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d6 for each slot level above 1st.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_curse-of-boreas", + "fields": { + "name": "Curse of Boreas", + "desc": "You designate a creature within range that you can see. If the target fails a Charisma saving throw, it and its equipment are frozen solid, becoming an inert statue of ice. The creature is effectively paralyzed, but mental activity does not cease, and signs of life are detectable; the creature still breathes and its heart continues to beat, though both acts are almost imperceptible. If the ice statue is broken or damaged while frozen, the creature will have matching damage or injury when returned to its original state. [Dispel magic](https://api.open5e.com/spells/dispel-magic) can’t end this spell, but it can allow the target to speak (but not move or cast spells) for a number of rounds equal to the spell slot used. [Greater restoration](https://api.open5e.com/spells/greater-restoration) or more potent magic is needed to free a creature from the ice.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_curse-of-dust", + "fields": { + "name": "Curse of Dust", + "desc": "You cast a curse on a creature within range that you’re familiar with, causing it to be unsatiated by food no matter how much it eats. This effect isn’t merely an issue of perception; the target physically can’t draw sustenance from food. Within minutes after the spell is cast, the target feels constant hunger no matter how much food it consumes. The target must make a Constitution saving throw 24 hours after the spell is cast and every 24 hours thereafter. On a failed save, the target gains one level of exhaustion. The effect ends when the duration expires or when the target makes two consecutive successful saves.", + "document": "deepm", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "500 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of spoiled food", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_curse-of-incompetence", + "fields": { + "name": "Curse of Incompetence", + "desc": "By making mocking gestures toward one creature within\nrange that can see you, you leave the creature incapable of\nperforming at its best. If the target fails on an Intelligence\nsaving throw, roll a d4 and refer to the following table to\ndetermine what the target does on its turn. An affected\ntarget repeats the saving throw at the end of each of its\nturns, ending the effect on itself on a success or applying\nthe result of another roll on the table on a failure.\n\n| D4 | RESULT |\n|-|-|\n| 1 | Target spends its turn shouting mocking words at caster and takes a -5 penalty to its initiative roll. |\n| 2 | Target stands transfixed and blinking, takes no action. |\n| 3 | Target flees or fights (50 percent chance of each). |\n| 4 | Target charges directly at caster, enraged. |\n\n", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_curse-of-the-grave", + "fields": { + "name": "Curse of the Grave", + "desc": "You tap your connection to death to curse a humanoid, making the grim pull of the grave stronger on that creature’s soul.\n\nChoose one humanoid you can see within range. The target must succeed on a Constitution saving throw or become cursed. A [remove curse](https://api.open5e.com/spells/remove-curse) spell or similar magic ends this curse. While cursed in this way, the target suffers the following effects:\n\n* The target fails death saving throws on any roll but a 20.\n* If the target dies while cursed, it rises 1 round later as a vampire spawn under your control and is no longer cursed.\n* The target, as a vampire spawn, seeks you out in an attempt to serve its new master. You can have only one vampire spawn under your control at a time through this spell. If you create another, the existing one turns to dust. If you or your companions do anything harmful to the target, it can make a Wisdom saving throw. On a success, it is no longer under your control.", + "document": "deepm", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of dirt from a freshly dug grave", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_curse-of-yig", + "fields": { + "name": "Curse of Yig", + "desc": "This spell transforms a Small, Medium, or Large creature that you can see within range into a [servant of Yig](https://api.open5e.com/monsters/servant-of-yig). An unwilling creature can attempt a Wisdom saving throw, negating the effect with a success. A willing creature is automatically affected and remains so for as long as you maintain concentration on the spell.\n\nThe transformation lasts for the duration or until the target drops to 0 hit points or dies. The target’s statistics, including mental ability scores, are replaced by the statistics of a servant of Yig. The transformed creature’s alignment becomes neutral evil, and it is both friendly to you and reverent toward the Father of Serpents. Its equipment is unchanged. If the transformed creature was unwilling, it makes a Wisdom saving throw at the end of each of its turns. On a successful save, the spell ends, the creature’s alignment and personality return to normal, and it regains its former attitude toward you and toward Yig.\n\nWhen it reverts to its normal form, the creature has the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form.", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of snake venom", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_curse-ring", + "fields": { + "name": "Curse Ring", + "desc": "You lay a curse upon a ring you touch that isn’t being worn or carried. When you cast this spell, select one of the possible effects of [bestow curse](https://api.open5e.com/spells/bestow-curse). The next creature that willingly wears the ring suffers the chosen effect with no saving throw. The curse transfers from the ring to the wearer once the ring is put on; the ring becomes a mundane ring that can be taken off, but the curse remains on the creature that wore the ring until the curse is removed or dispelled. An [identify](https://api.open5e.com/spells/identify) spell cast on the cursed ring reveals the fact that it is cursed.", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "250 gp worth of diamond dust, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent until discharged", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_cursed-gift", + "fields": { + "name": "Cursed Gift", + "desc": "**Cursed gift** imbues an object with a harmful magical effect that you or another creature in physical contact with you is currently suffering from. If you give this object to a creature that freely accepts it during the duration of the spell, the recipient must make a Charisma saving throw. On a failed save, the harmful effect is transferred to the recipient for the duration of the spell (or until the effect ends). Returning the object to you, destroying it, or giving it to someone else has no effect. Remove curse and comparable magic can relieve the individual who received the item, but the harmful effect still returns to the previous victim when this spell ends if the effect’s duration has not expired.\n", + "document": "deepm", + "level": 4, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration increases by 24 hours for each slot level above 4th.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an object worth at least 75 gp", + "material_cost": "75.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_cynophobia", + "fields": { + "name": "Cynophobia", + "desc": "Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or develop an overriding fear of canids, such as dogs, wolves, foxes, and worgs. For the duration, the first time the target sees a canid, the target must succeed on a Wisdom saving throw or become frightened of that canid until the end of its next turn. Each time the target sees a different canid, it must make the saving throw. In addition, the target has disadvantage on ability checks and attack rolls while a canid is within 10 feet of it.\n", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a 5th-level spell slot, the duration is 24 hours. When you use a 7th-level spell slot, the duration is 1 month. When you use a spell slot of 8th or 9th level, the spell lasts until it is dispelled.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dog’s tooth", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_daggerhawk", + "fields": { + "name": "Daggerhawk", + "desc": "When **daggerhawk** is cast on a nonmagical dagger, a ghostly hawk appears around the weapon. The hawk and dagger fly into the air and make a melee attack against one creature you select within 60 feet, using your spell attack modifier and dealing piercing damage equal to 1d4 + your Intelligence modifier on a hit. On your subsequent turns, you can use an action to cause the daggerhawk to attack the same target. The daggerhawk has AC 14 and, although it’s invulnerable to all damage, a successful attack against it that deals bludgeoning, force, or slashing damage sends the daggerhawk tumbling, so it can’t attack again until after your next turn.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dagger", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_dark-dementing", + "fields": { + "name": "Dark Dementing", + "desc": "A dark shadow creeps across the target’s mind and leaves a small bit of shadow essence behind, triggering a profound fear of the dark. A creature you designate within range must make a Charisma saving throw. If it fails, the target becomes frightened of you for the duration. A frightened creature can repeat the saving throw each time it takes damage, ending the effect on a success. While frightened in this way, the creature will not willingly enter or attack into a space that isn’t brightly lit. If it’s in dim light or darkness, the creature must either move toward bright light or create its own (by lighting a lantern, casting a [light](https://api.open5e.com/spells/light) spell, or the like).", + "document": "deepm", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a moonstone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_dark-heraldry", + "fields": { + "name": "Dark Heraldry", + "desc": "Dark entities herald your entry into combat, instilling an existential dread in your enemies. Designate a number of creatures up to your spellcasting ability modifier (minimum of one) that you can see within range and that have an alignment different from yours. Each of those creatures takes 5d8 psychic damage and becomes frightened of you; a creature that makes a successful Wisdom saving throw takes half as much damage and is not frightened.\n\nA creature frightened in this way repeats the saving throw at the end of each of its turns, ending the effect on itself on a success. The creature makes this saving throw with disadvantage if you can see it.\n", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_dark-maw", + "fields": { + "name": "Dark Maw", + "desc": "Thick, penumbral ichor drips from your shadow-stained mouth, filling your mouth with giant shadow fangs. Make a melee spell attack against the target. On a hit, the target takes 1d8 necrotic damage as your shadowy fangs sink into it. If you have a bite attack (such as from a racial trait or a spell like [alter self](https://api.open5e.com/spells/after-self)), you can add your spellcasting ability modifier to the damage roll but not to your temporary hit points.\n\nIf you hit a humanoid target, you gain 1d4 temporary hit points until the start of your next turn.", + "document": "deepm", + "level": 0, + "school": "necromancy", + "higher_level": "This spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_dark-path", + "fields": { + "name": "Dark Path", + "desc": "You conjure a shadowy road between two points within range to create a bridge or path. This effect can bridge a chasm or create a smooth path through difficult terrain. The dark path is 10 feet wide and up to 50 feet long. It can support up to 500 pounds of weight at one time. A creature that adds more weight than the path can support sinks through the path as if it didn’t exist.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a lodestone", + "material_cost": null, + "material_consumed": false, + "target_count": 2, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_darkbolt", + "fields": { + "name": "Darkbolt", + "desc": "You utter a quick invocation to create a black nimbus around your hand, then hurl three rays of darkness at one or more targets in range. The rays can be divided between targets however you like. Make a ranged spell attack for each target (not each ray); each ray that hits deals 1d10 cold damage. A target that was hit by one or more rays must make a successful Constitution saving throw or be unable to use reactions until the start of its next turn.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_dead-walking", + "fields": { + "name": "Dead Walking", + "desc": "As part of the casting of this spell, you place a copper piece under your tongue. This spell makes up to six willing creatures you can see within range invisible to undead for the duration. Anything a target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for all targets if one target attacks or casts a spell.", + "document": "deepm", + "level": 2, + "school": "illusion", + "higher_level": "When you cast this spell using a 3rd-level spell slot, it lasts for 1 hour without requiring your concentration. When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 hour for each slot level above 3rd.", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a copper piece", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_deadly-sting", + "fields": { + "name": "Deadly Sting", + "desc": "You grow a 10-foot-long tail as supple as a whip, tipped with a horrible stinger. During the spell’s duration, you can use the stinger to make a melee spell attack with a reach of 10 feet. On a hit, the target takes 1d4 piercing damage plus 4d10 poison damage, and a creature must make a successful Constitution saving throw or become vulnerable to poison damage for the duration of the spell.", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a thorn", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "1d4", + "damage_types": [ + "piercing" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_death-gods-touch", + "fields": { + "name": "Death God’s Touch", + "desc": "This spell allows you to shred the life force of a creature you touch. You become invisible and make a melee spell attack against the target. On a hit, the target takes 10d10 necrotic damage. If this damage reduces the target to 0 hit points, the target dies. Whether the attack hits or misses, you remain invisible until the start of your next turn.\n", + "document": "deepm", + "level": 7, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 2d10 for each slot level above 7th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "10d10", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_decay", + "fields": { + "name": "Decay", + "desc": "Make a melee spell attack against a creature you touch. On a hit, the target takes 1d10 necrotic damage. If the target is a Tiny or Small nonmagical object that isn’t being worn or carried by a creature, it automatically takes maximum damage from the spell.", + "document": "deepm", + "level": 0, + "school": "necromancy", + "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of ash", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d10", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_decelerate", + "fields": { + "name": "Decelerate", + "desc": "You slow the flow of time around a creature within range that you can see. The creature must make a successful Wisdom saving throw, or its walking speed is halved (round up to the nearest 5-foot increment). The creature can repeat the saving throw at the end of each of its turns, ending the effect on a success. Until the spell ends, on a failed save the target’s speed is halved again at the start of each of your turns. For example, if a creature with a speed of 30 feet fails its initial saving throw, its speed drops to 15 feet. At the start of your next turn, the creature’s speed drops to 10 feet on a failed save, then to 5 feet on the following round on another failed save. **Decelerate** can’t reduce a creature’s speed to less than 5 feet.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can affect an additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a toy top", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_deep-breath", + "fields": { + "name": "Deep Breath", + "desc": "The recipient of this spell can breathe and function normally in thin atmosphere, suffering no ill effect at altitudes of up to 20,000 feet. If more than one creature is touched during the casting, the duration is divided evenly among all creatures touched.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 2 hours for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "2 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_defile-healing", + "fields": { + "name": "Defile Healing", + "desc": "You attempt to reverse the energy of a healing spell so that it deals damage instead of healing. If the healing spell is being cast with a spell slot of 5th level or lower, the slot is expended but the spell restores no hit points. In addition, each creature that was targeted by the healing spell takes necrotic damage equal to the healing it would have received, or half as much damage with a successful Constitution saving throw.\n", + "document": "deepm", + "level": 7, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 8th level, it can reverse a healing spell being cast using a spell slot of 6th level or lower. If you use a 9th-level spell slot, it can reverse a healing spell being cast using a spell slot of 7th level or lower.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_delay-potion", + "fields": { + "name": "Delay Potion", + "desc": "Upon casting this spell, you delay the next potion you consume from taking effect for up to 1 hour. You must consume the potion within 1 round of casting **delay potion**; otherwise the spell has no effect. At any point during **delay potion’s** duration, you can use a bonus action to cause the potion to go into effect. When the potion is activated, it works as if you had just drunk it. While the potion is delayed, it has no effect at all and you can consume and benefit from other potions normally.\n\nYou can delay only one potion at a time. If you try to delay the effect of a second potion, the spell fails, the first potion has no effect, and the second potion has its normal effect when you drink it.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour (see below)", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_delayed-healing", + "fields": { + "name": "Delayed Healing", + "desc": "Touch a living creature (not a construct or undead) as you cast the spell. The next time that creature takes damage, it immediately regains hit points equal to 1d4 + your spellcasting ability modifier (minimum of 1).\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a bloodstone worth 100 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_demon-within", + "fields": { + "name": "Demon Within", + "desc": "One humanoid of your choice within range becomes a gateway for a demon to enter the plane of existence you are on. You choose the demon’s type from among those of challenge rating of 4 or lower. The target must make a Wisdom saving throw. On a success, the gateway fails to open, and the spell has no effect. On a failed save, the target takes 4d6 force damage from the demon’s attempt to claw its way through the gate. For the spell’s duration, you can use a bonus action to further agitate the demon, dealing an additional 2d6 force damage to the target each time.\n\nIf the target drops to 0 hit points while affected by this spell, the demon tears through the body and appears in the same space as its now incapacitated or dead victim. You do not control this demon; it is free to either attack or leave the area as it chooses. The demon disappears after 24 hours or when it drops to 0 hit points.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of blood from a humanoid killed within the previous 24 hours", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "force" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_desiccating-breath", + "fields": { + "name": "Desiccating Breath", + "desc": "You spew forth a cloud of black dust that draws all moisture from a 30-foot cone. Each animal in the cone takes 4d10 necrotic damage, or half as much damage if it makes a successful Constitution saving throw. The damage is 6d10 for plants and plant creatures, also halved on a successful Constitution saving throw.", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a clump of dried clay", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d10", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_desolation", + "fields": { + "name": "Desolation", + "desc": "You plant an obsidian acorn in solid ground and spend an hour chanting a litany of curses to the natural world, after which the land within 1 mile of the acorn becomes infertile, regardless of its previous state. Nothing will grow there, and all plant life in the area dies over the course of a day. Plant creatures are not affected. Spells that summon plants, such as [entangle](https://api.open5e.com/spells/entangle), require an ability check using the caster’s spellcasting ability against your spell save DC. On a successful check, the spell functions normally; if the check fails, the spell is countered by **desolation**.\n\nAfter one year, the land slowly reverts to its normal fertility, unable to stave off the march of nature.\n\nA living creature that finishes a short rest within the area of a **desolation** spell halves the result of any Hit Dice it expends. Desolation counters the effects of a [bloom](https://api.open5e.com/spells/bloom) spell.\n\n***Ritual Focus.*** If you expend your ritual focus, the duration becomes permanent.", + "document": "deepm", + "level": 8, + "school": "necromancy", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an obsidian acorn worth 500 gp, which is consumed in the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 year", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_destructive-resonance", + "fields": { + "name": "Destructive Resonance", + "desc": "You shout a scathing string of Void Speech that assaults the minds of those before you. Each creature in a 15-foot cone that can hear you takes 4d6 psychic damage, or half that damage with a successful Wisdom saving throw. A creature damaged by this spell can’t take reactions until the start of its next turn.\n", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 15, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_detect-dragons", + "fields": { + "name": "Detect Dragons", + "desc": "You can detect the presence of dragons and other draconic creatures within your line of sight and 120 feet, regardless of disguises, illusions, and alteration magic such as polymorph. The information you uncover depends on the number of consecutive rounds you spend an action studying a subject or area. On the first round of examination, you detect whether any draconic creatures are present, but not their number, location, identity, or type. On the second round, you learn the number of such creatures as well as the general condition of the most powerful one. On the third and subsequent rounds, you make a DC 15 Intelligence (Arcana) check; if it succeeds, you learn the age, type, and location of one draconic creature. Note that the spell provides no information on the turn in which it is cast, unless you have the means to take a second action that turn.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_devas-wings", + "fields": { + "name": "Deva’s Wings", + "desc": "You touch a willing creature. The target grows feathery wings of pure white that grant it a flying speed of 60 feet and the ability to hover. When the target takes the Attack action, it can use a bonus action to make a melee weapon attack with the wings, with a reach of 10 feet. If the wing attack hits, the target takes bludgeoning damage equal to 1d6 + your spellcasting ability modifier and must make a successful Strength saving throw or fall prone. When the spell ends, the wings disappear, and the target falls if it was aloft.\n", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional target for each slot level above 4th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a wing feather from any bird", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_dimensional-shove", + "fields": { + "name": "Dimensional Shove", + "desc": "This spell pushes a creature you touch through a dimensional portal, causing it to disappear and then reappear a short distance away. If the target fails a Wisdom saving throw, it disappears from its current location and reappears 30 feet away from you in a direction of your choice. This travel can take it through walls, creatures, or other solid surfaces, but the target can't reappear inside a solid object or not on solid ground; instead, it reappears in the nearest safe, unoccupied space along the path of travel.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the target is shoved an additional 30 feet for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_disquieting-gaze", + "fields": { + "name": "Disquieting Gaze", + "desc": "Your eyes burn with scintillating motes of unholy crimson light. Until the spell ends, you have advantage on Charisma (Intimidation) checks made against creatures that can see you, and you have advantage on spell attack rolls that deal necrotic damage to creatures that can see your eyes.", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_disruptive-aura", + "fields": { + "name": "Disruptive Aura", + "desc": "A warping, prismatic aura surrounds and outlines each creature inside a 10-foot cube within range. The aura sheds dim light out to 10 feet, and the the locations of hidden or invisible creatures are outlined. If a creature in the area tries to cast a spell or use a magic item, it must make a Wisdom saving throw. On a successful save, the spell or item functions normally. On a failed save, the effect of the spell or the item is suppressed for the duration of the aura. Time spent suppressed counts against the duration of the spell’s or item’s effect.\n", + "document": "deepm", + "level": 8, + "school": "evocation", + "higher_level": "When you cast this spell using a 9th‐level spell slot, the cube is 20 feet on a side.", + "target_type": "creature", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_distracting-divination", + "fields": { + "name": "Distracting Divination", + "desc": "Foresight tells you when and how to be just distracting enough to foil an enemy spellcaster. When an adjacent enemy tries to cast a spell, make a melee spell attack against that enemy. On a hit, the enemy’s spell fails and has no effect; the enemy’s action is used up but the spell slot isn’t expended.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_distraction-cascade", + "fields": { + "name": "Distraction Cascade", + "desc": "With a flash of foresight, you throw a foe off balance. Choose one creature you can see that your ally has just declared as the target of an attack. Unless that creature makes a successful Charisma saving throw, attacks against it are made with advantage until the end of this turn.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_doom-of-blue-crystal", + "fields": { + "name": "Doom of Blue Crystal", + "desc": "You are surrounded by a field of glowing, blue energy lasting 3 rounds. Creatures within 5 feet of you, including yourself, must make a Constitution saving throw when the spell is cast and again at the start of each of your turns while the spell is in effect. A creature whose saving throw fails is restrained; a restrained creature whose saving throw fails is paralyzed; and a paralyzed creature whose saving throw fails is petrified and transforms into a statue of blue crystal. As with all concentration spells, you can end the field at any time (no action required). If you are turned to crystal, the spell ends after all affected creatures make their saving throws. Restrained and paralyzed creatures recover immediately when the spell ends, but petrification is permanent.\n\nCreatures turned to crystal can see, hear, and smell normally, but they don’t need to eat or breathe. If shatter is cast on a crystal creature, it must succeed on a Constitution saving throw against the caster’s spell save DC or be killed.\n\nCreatures transformed into blue crystal can be restored with dispel magic, greater restoration, or comparable magic.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a blue crystal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "3 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_doom-of-consuming-fire", + "fields": { + "name": "Doom of Consuming Fire", + "desc": "You are wreathed in cold, purple fire that damages creatures near you. You take 1d6 cold damage each round for the duration of the spell. Creatures within 5 feet of you when you cast the spell and at the start of each of your turns while the spell is in effect take 1d8 cold damage.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a 3rd-level spell slot, the purple fire extends 10 feet from you, you take 1d8 cold damage, and other creatures take 1d10 cold damage. When you cast this spell using a 4th‐level slot, the fire extends 15 feet from you, you take1d10 cold damage, and other creatures take 1d12 cold damage. When you cast this spell using a slot of 5th level or higher, the fire extends to 20 feet, you take 1d12 cold damage, and other creatures take 1d20 cold damage.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dead coal or a fistful of ashes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_doom-of-dancing-blades", + "fields": { + "name": "Doom of Dancing Blades", + "desc": "When you cast **doom of dancing blades**, you create 1d4 illusory copies of your weapon that float in the air 5 feet from you. These images move with you, spinning, shifting, and mimicking your attacks. When you are hit by a melee attack but the attack roll exceeded your Armor Class by 3 or less, one illusory weapon parries the attack; you take no damage and the illusory weapon is destroyed. When you are hit by a melee attack that an illusory weapon can’t parry (the attack roll exceeds your AC by 4 or more), you take only half as much damage from the attack, and an illusory weapon is destroyed. Spells and effects that affect an area or don’t require an attack roll affect you normally and don’t destroy any illusory weapons.\n\nIf you make a melee attack that scores a critical hit while **doom of dancing blades** is in effect on you, all your illusory weapons also strike the target and deal 1d8 bludgeoning, piercing, or slashing damage (your choice) each.\n\nThe spell ends when its duration expires or when all your illusory weapons are destroyed or expended.\n\nAn attacker must be able to see the illusory weapons to be affected. The spell has no effect if you are invisible or in total darkness or if the attacker is blinded.", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_doom-of-disenchantment", + "fields": { + "name": "Doom of Disenchantment", + "desc": "When you cast **doom of disenchantment**, your armor and shield glow with light. When a creature hits you with an attack, the spell counters any magic that provides the attack with a bonus to hit or to damage. For example, a +1 weapon would still be considered magical, but it gets neither +1 to hit nor +1 to damage on any attack against you.\n\nThe spell also suppresses other magical properties of the attack. A [sword of wounding](https://api.open5e.com/magicitems/sword-of-wounding), for example, can’t cause ongoing wounds on you, and you recover hit points lost to the weapon's damage normally. If the attack was a spell, it’s affected as if you had cast [counterspell](https://api.open5e.com/spells/counterspell), using Charisma as your spellcasting ability. Spells with a duration of instantaneous, however, are unaffected.", + "document": "deepm", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_doom-of-serpent-coils", + "fields": { + "name": "Doom of Serpent Coils", + "desc": "You drink a dose of venom or other poison and spread the effect to other living things around you. If the poison normally allows a saving throw, your save automatically fails. You suffer the effect of the poison normally before spreading the poison to all other living creatures within 10 feet of you. Instead of making the usual saving throw against the poison, each creature around you makes a Constitution saving throw against the spell. On a successful save, a target suffers no damage or other effect from the poison and is immune to further castings of **doom of serpent coils** for 24 hours. On a failed save, a target doesn't suffer the poison’s usual effect; instead, it takes 4d6 poison damage and is poisoned. While poisoned in this way, a creature repeats the saving throw at the end of each of its turns. On a subsequent failed save, it takes 4d6 poison damage and is still poisoned. On a subsequent successful save, it is no longer poisoned and is immune to further castings of **doom of serpent coils** for 24 hours.\n\nMultiple castings of this spell have no additional effect on creatures that are already poisoned by it. The effect can be ended by [protection from poison](https://api.open5e.com/spells/protection-from-poison) or comparable magic.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of poison", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "poison" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_doom-of-the-cracked-shield", + "fields": { + "name": "Doom of the Cracked Shield", + "desc": "Doom of the cracked shield is cast on a melee weapon. The next time that weapon is used, it destroys the target’s nonmagical shield or damages nonmagical armor, in addition to the normal effect of the attack. If the foe is using a nonmagical shield, it breaks into pieces. If the foe doesn’t use a shield, its nonmagical armor takes a -2 penalty to AC. If the target doesn’t use armor or a shield, the spell is expended with no effect.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_doom-of-the-earthen-maw", + "fields": { + "name": "Doom of the Earthen Maw", + "desc": "The ground within 30 feet of a point you designate turns into filthy and slippery muck. This spell affects sand, earth, mud, and ice, but not stone, wood, or other material. For the duration, the ground in the affected area is difficult terrain. A creature in the area when you cast the spell must succeed on a Strength saving throw or be restrained by the mud until the spell ends. A restrained creature can free itself by using an action to make a successful Strength saving throw. A creature that frees itself or that enters the area after the spell was cast is affected by the difficult terrain but doesn’t become restrained.\n\nEach round, a restrained creature sinks deeper into the muck. A Medium or smaller creature that is restrained for 3 rounds becomes submerged at the end of its third turn. A Large creature becomes submerged after 4 rounds. Submerged creatures begin suffocating if they aren’t holding their breath. A creature that is still submerged when the spell ends is sealed beneath the newly solidified ground. The creature can escape only if someone else digs it out or it has a burrowing speed.", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_doom-of-the-slippery-rogue", + "fields": { + "name": "Doom of the Slippery Rogue", + "desc": "A **doom of the slippery rogue** spell covers a 20-foot-by-20-foot section of wall or floor within range with a thin coating of grease. If a vertical surface is affected, each climber on that surface must make a successful DC 20 Strength (Athletics) check or immediately fall from the surface unless it is held in place by ropes or other climbing gear. A creature standing on an affected floor falls prone unless it makes a successful Dexterity saving throw. Creatures that try to climb or move through the affected area can move no faster than half speed (this is cumulative with the usual reduction for climbing), and any movement must be followed by a Strength saving throw (for climbing) or a Dexterity saving throw (for walking). On a failed save, the moving creature falls or falls prone.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "40 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "bacon fat", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_douse-light", + "fields": { + "name": "Douse Light", + "desc": "With a simple gesture, you can put out a single small source of light within range. This spell extinguishes a torch, a candle, a lantern, or a [light](https://api.open5e.com/spells/light) or [dancing lights](https://api.open5e.com/spells/dancing-lights) cantrip.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_draconic-smite", + "fields": { + "name": "Draconic Smite", + "desc": "The next time you hit a creature with a melee weapon attack during the spell’s duration, your weapon takes on the form of a silver dragon’s head. Your attack deals an extra 1d6 cold damage, and up to four other creatures of your choosing within 30 feet of the attack’s target must each make a successful Constitution saving throw or take 1d6 cold damage.\n", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the extra cold damage and the cold damage dealt to the secondary creatures increases by 1d6 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_dragon-breath", + "fields": { + "name": "Dragon Breath", + "desc": "You summon draconic power to gain a breath weapon. When you cast dragon breath, you can immediately exhale a cone or line of elemental energy, depending on the type of dragon you select. While the spell remains active, roll a d6 at the start of your turn. On a roll of 5 or 6, you can take a bonus action that turn to use the breath weapon again.\n\nWhen you cast the spell, choose one of the dragon types listed below. Your choice determines the affected area and the damage of the breath attack for the spell’s duration.\n\n| Dragon Type | Area | Damage |\n|-|-|-|\n| Black | 30-foot line, 5 feet wide | 6d6 acid damage |\n| Blue | 30-foot line, 5 feet wide | 6d6 lightning damage |\n| Green | 15-foot cone | 6d6 poison damage |\n| Red | 15-foot cone | 6d6 fire damage |\n| White | 15-foot cone | 6d6 cold damage |\n\n", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 2d6 for each slot level above 5th.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of a dragon’s tooth", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "line", + "shape_magnitude": 15, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_dragon-roar", + "fields": { + "name": "Dragon Roar", + "desc": "Your voice is amplified to assault the mind of one creature. The target must make a Charisma saving throw. If it fails, the target takes 1d4 psychic damage and is frightened until the start of your next turn. A target can be affected by your dragon roar only once per 24 hours.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "This spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "1d4", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_drown", + "fields": { + "name": "Drown", + "desc": "You cause a creature's lungs to fill with seawater. Unless the target makes a successful Constitution saving throw, it immediately begins suffocating. A suffocating creature can’t speak or perform verbal spell components. It can hold its breath, and thereafter can survive for a number of rounds equal to its Constitution modifier (minimum of 1 round), after which it drops to 0 hit points and is dying. Huge or larger creatures are unaffected, as are creatures that can breathe water or that don’t require air.\n\nA suffocating (not dying) creature can repeat the saving throw at the end of each of its turns, ending the effect on a success.\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.\n\nNOTE: Midgard Heroes Handbook has a very different [drown-heroes-handbook/drown](https://api.open5e.com/spells/drown) spell.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small piece of flotsam or seaweed", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_dryads-kiss", + "fields": { + "name": "Dryad’s Kiss", + "desc": "You perform an ancient incantation that summons flora from the fey realm. A creature you can see within range is covered with small, purple buds and takes 3d8 necrotic damage; a successful Wisdom saving throw negates the damage but doesn’t prevent the plant growth. The buds can be removed by the target or an ally of the target within 5 feet who uses an action to make a successful Intelligence (Nature) or Wisdom (Medicine) check against your spell save DC, or by a [greater restoration](https://api.open5e.com/spells/greater-restoration) or [blight](https://api.open5e.com/spells/blight) spell. While the buds remain, whenever the target takes damage from a source other than this spell, one bud blossoms into a purple and yellow flower that deals an extra 1d8 necrotic damage to the target. Once four blossoms have formed in this way, the buds can no longer be removed by nonmagical means. The buds and blossoms wilt and fall away when the spell ends, provided the creature is still alive.\n\nIf a creature affected by this spell dies, sweet-smelling blossoms quickly cover its body. The flowers wilt and die after one month.\n", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "If this spell is cast using a spell slot of 5th level or higher, the number of targets increases by one for every two slot levels above 3rd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a flower petal or a drop of blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_earthskimmer", + "fields": { + "name": "Earthskimmer", + "desc": "You cause earth and stone to rise up beneath your feet, lifting you up to 5 feet. For the duration, you can use your movement to cause the slab to skim along the ground or other solid, horizontal surface at a speed of 60 feet. This movement ignores difficult terrain. If you are pushed or moved against your will by any means other than teleporting, the slab moves with you.\n\nUntil the end of your turn, you can enter the space of a creature up to one size larger than yourself when you take the Dash action. The creature must make a Strength saving throw. It takes 4d6 bludgeoning damage and is knocked prone on a failed save, or takes half as much damage and isn’t knocked prone on a succesful one.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of shale or slate", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_earworm-melody", + "fields": { + "name": "Earworm Melody", + "desc": "You sing or play a catchy tune that only one creature of your choice within range can hear. Unless the creature makes a successful Wisdom saving throw, the verse becomes ingrained in its head. If the target is concentrating on a spell, it must make a Constitution check with disadvantage against your spell save DC in order to maintain concentration.\n\nFor the spell’s duration, the target takes 2d4 psychic damage at the start of each of its turns as the melody plays over and over in its mind. The target repeats the saving throw at the end of each of its turns, ending the effect on a success. On a failed save, the target must also repeat the Constitution check with disadvantage if it is concentrating on a spell.\n", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "If you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d4 for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_echoes-of-steel", + "fields": { + "name": "Echoes of Steel", + "desc": "When you hit a creature with a melee weapon attack, you can use a bonus action to cast echoes of steel. All creatures you designate within 30 feet of you take thunder damage equal to the damage from the melee attack, or half as much damage with a successful Constitution saving throw.", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ectoplasm", + "fields": { + "name": "Ectoplasm", + "desc": "You call forth an ectoplasmic manifestation of Medium size that appears in an unoccupied space of your choice within range that you can see. The manifestation lasts for the spell’s duration. Any creature that ends its turn within 5 feet of the manifestation takes 2d6 psychic damage, or half the damage with a successful Wisdom saving throw.\n\nAs a bonus action, you can move the manifestation up to 30 feet. It can move through a creature’s space but can’t remain in the same space as that creature. If it enters a creature’s space, that creature takes 2d6 psychic damage, or half the damage with a successful Wisdom saving throw. On a failed save, the creature also has disadvantage on Dexterity checks until the end of its next turn.\n\nWhen you move the manifestation, it can flow through a gap as small as 1 square inch, over barriers up to 5 feet tall, and across pits up to 10 feet wide. The manifestation sheds dim light in a 10-foot radius. It also leaves a thin film of ectoplasmic residue on everything it touches or moves through. This residue doesn’t illuminate the surroundings but does glow dimly enough to show the manifestation’s path. The residue dissipates 1 round after it is deposited.\n", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of bone dust", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_eidetic-memory", + "fields": { + "name": "Eidetic Memory", + "desc": "When you cast this spell, you can recall any piece of information you’ve ever read or heard in the past. This ability translates into a +10 bonus on Intelligence checks for the duration of the spell.", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a string tied in a knot", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_eldritch-communion", + "fields": { + "name": "Eldritch Communion", + "desc": "You contact a Great Old One and ask one question that can be answered with a one-sentence reply no more than twenty words long. You must ask your question before the spell ends. There is a 25 percent chance that the answer contains a falsehood or is misleading in some way. (The GM determines this secretly.)\n\nGreat Old Ones have vast knowledge, but they aren’t omniscient, so if your question pertains to information beyond the Old One’s knowledge, the answer might be vacuous, gibberish, or an angry, “I don’t know.”\n\nThis also reveals the presence of all aberrations within 300 feet of you. There is a 1-in-6 chance that each aberration you become aware of also becomes aware of you.\n\nIf you cast **eldritch communion** two or more times before taking a long rest, there is a cumulative 25 percent chance for each casting after the first that you receive no answer and become afflicted with short-term madness.", + "document": "deepm", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "corvid entrails, a dried opium poppy, and a glass dagger", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_elemental-horns", + "fields": { + "name": "Elemental Horns", + "desc": "The target of this spell must be a creature that has horns, or the spell fails. **Elemental horns** causes the touched creature’s horns to crackle with elemental energy. Select one of the following energy types when casting this spell: acid, cold, fire, lightning, or radiant. The creature’s gore attack deals 3d6 damage of the chosen type in addition to any other damage the attack normally deals.\n\nAlthough commonly seen among tieflings and minotaurs, this spell is rarely employed by other races.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 2d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a brass wand", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_elemental-twist", + "fields": { + "name": "Elemental Twist", + "desc": "During this spell’s duration, reality shifts around you whenever you cast a spell that deals acid, cold, fire, lightning, poison, or thunder damage. Assign each damage type a number and roll a d6 to determine the type of damage this casting of the spell deals. In addition, the spell’s damage increases by 1d6. All other properties or effects of the spell are unchanged.", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a thin piece of copper twisted around itself", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_emanation-of-yoth", + "fields": { + "name": "Emanation of Yoth", + "desc": "You call forth a [ghost](https://api.open5e.com/monsters/ghost)// that takes the form of a spectral, serpentlike assassin. It appears in an unoccupied space that you can see within range. The ghost disappears when it’s reduced to 0 hit points or when the spell ends.\n\nThe ghost is friendly to you and your companions for the duration of the spell. Roll initiative for the ghost, which takes its own turns. It obeys verbal commands that you issue to it (no action required by you). If you don’t issue a command to it, the ghost defends itself from hostile creatures but doesn’t move or take other actions.\n\nYou are immune to the ghost’s Horrifying Visage action but can willingly become the target of the ghost’s Possession ability. You can end this effect on yourself as a bonus action.\n", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 6th or 7th level, you call forth two ghosts. If you cast it using a spell slot of 8th or 9th level, you call forth three ghosts.", + "target_type": "point", + "range": "90 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a fistful of grave earth and a vial of child’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_enchant-ring", + "fields": { + "name": "Enchant Ring", + "desc": "You enchant a ring you touch that isn’t being worn or carried. The next creature that willingly wears the ring becomes charmed by you for 1 week or until it is harmed by you or one of your allies. If the creature dons the ring while directly threatened by you or one of your allies, the spell fails.\n\nThe charmed creature regards you as a friend. When the spell ends, it doesn’t know it was charmed by you, but it does realize that its attitude toward you has changed (possibly greatly) in a short time. How the creature reacts to you and regards you in the future is up to the GM.", + "document": "deepm", + "level": 6, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "500 gp worth of diamond dust, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent until discharged", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_encroaching-shadows", + "fields": { + "name": "Encroaching Shadows", + "desc": "You cause menacing shadows to invade an area 200 feet on a side and 50 feet high, centered on a point within range. Illumination in the area drops one step (from bright light to dim, or from dim light to darkness). Any spell that creates light in the area that is cast using a lower-level spell slot than was used to cast encroaching shadows is dispelled, and a spell that creates light doesn’t function in the area if that spell is cast using a spell slot of 5th level or lower. Nonmagical effects can’t increase the level of illumination in the affected area.\n\nA spell that creates darkness or shadow takes effect in the area as if the spell slot expended was one level higher than the spell slot actually used.\n", + "document": "deepm", + "level": 6, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the effect lasts for an additional 12 hours for each slot level above 6th.\n\n***Ritual Focus.*** If you expend your ritual focus, the spell’s duration increases by 12 hours, and it cannot be dispelled by a spell that creates light, even if that spell is cast using a higher-level spell slot.", + "target_type": "area", + "range": "150 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of blood smeared on a silver rod worth 100 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "12 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_encrypt-decrypt", + "fields": { + "name": "Encrypt / Decrypt", + "desc": "By touching a page of written information, you can encode its contents. All creatures that try to read the information when its contents are encoded see the markings on the page as nothing but gibberish. The effect ends when either **encrypt / decrypt** or [dispel magic](https://api.open5e.com/spells/dispel-magic) is cast on the encoded writing, which turns it back into its normal state.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_endow-attribute", + "fields": { + "name": "Endow Attribute", + "desc": "You touch a creature with a ring that has been etched with symbols representing a particular ability (Strength, Dexterity, and so forth). The creature must make a successful Constitution saving throw or lose one-fifth (rounded down) of its points from that ability score. Those points are absorbed into the ring and stored there for the spell’s duration. If you then use an action to touch the ring to another creature on a later turn, the absorbed ability score points transfer to that creature. Once the points are transferred to another creature, you don’t need to maintain concentration on the spell; the recipient creature retains the transferred ability score points for the remainder of the hour.\n\nThe spell ends if you lose concentration before the transfer takes place, if either the target or the recipient dies, or if either the target or the recipient is affected by a successful [dispel magic](https://api.open5e.com/spells/dispel-magic) spell. When the spell ends, the ability score points return to the original owner. Before then, that creature can’t regain the stolen attribute points, even with greater restoration or comparable magic.\n", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "If you cast this spell using a spell slot of 7th or 8th level, the duration is 8 hours. If you use a 9th‐level spell slot, the duration is 24 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a ring worth at least 200 gp, which the spell consumes", + "material_cost": "200.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_energy-absorption", + "fields": { + "name": "Energy Absorption", + "desc": "A creature you touch has resistance to acid, cold, fire, force, lightning, and thunder damage until the spell ends.\n\nIf the spell is used against an unwilling creature, you must make a melee spell attack with a reach of 5 feet. If the attack hits, for the duration of the spell the affected creature must make a saving throw using its spellcasting ability whenever it casts a spell that deals one of the given damage types. On a failed save, the spell is not cast but its slot is expended; on a successful save, the spell is cast but its damage is halved before applying the effects of saving throws, resistance, and other factors.", + "document": "deepm", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_energy-foreknowledge", + "fields": { + "name": "Energy Foreknowledge", + "desc": "When you cast this spell, you gain resistance to every type of energy listed above that is dealt by the spell hitting you. This resistance lasts until the end of your next turn.\n", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can include one additional ally in its effect for each slot level above 4th. Affected allies must be within 15 feet of you.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_enhance-greed", + "fields": { + "name": "Enhance Greed", + "desc": "You detect precious metals, gems, and jewelry within 60 feet. You do not discern their exact location, only their presence and direction. Their exact location is revealed if you are within 10 feet of the spot.\n\n**Enhance greed** penetrates barriers but is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of dirt or wood.\n", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 1 minute, and another 10 feet can be added to its range, for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_entomb", + "fields": { + "name": "Entomb", + "desc": "You cause slabs of rock to burst out of the ground or other stone surface to form a hollow, 10-foot cube within range. A creature inside the cube when it forms must make a successful Dexterity saving throw or be trapped inside the stone tomb. The tomb is airtight, with enough air for a single Medium or Small creature to breathe for 8 hours. If more than one creature is trapped inside, divide the time evenly between all the occupants. A Large creature counts as four Medium creatures. If the creature is still trapped inside when the air runs out, it begins to suffocate.\n\nThe tomb has AC 18 and 50 hit points. It is resistant to fire, cold, lightning, bludgeoning, and slashing damage, is immune to poison and psychic damage, and is vulnerable to thunder damage. When reduced to 0 hit points, the tomb crumbles into harmless powder.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a chip of granite", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_entropic-damage-field", + "fields": { + "name": "Entropic Damage Field", + "desc": "By twisting a length of silver wire around your finger, you tie your fate to those around you. When you take damage, that damage is divided equally between you and all creatures in range who get a failure on a Charisma saving throw. Any leftover damage that can’t be divided equally is taken by you. Creatures that approach to within 60 feet of you after the spell was cast are also affected. A creature is allowed a new saving throw against this spell each time you take damage, and a successful save ends the spell’s effect on that creature.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a silver wire", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_essence-instability", + "fields": { + "name": "Essence Instability", + "desc": "You cause the target to radiate a harmful aura. Both the target and every creature beginning or ending its turn within 20 feet of the target suffer 2d6 poison damage per round. The target can make a Constitution saving throw each round to negate the damage and end the affliction. Success means the target no longer takes damage from the aura, but the aura still persists around the target for the full duration.\n\nCreatures affected by the aura must make a successful Constitution saving throw each round to negate the damage. The aura moves with the original target and is unaffected by [gust of wind](https://api.open5e.com/spells/gust-of-wind) and similar spells.\n\nThe aura does not detect as magical or poison, and is invisible, odorless, and intangible (though the spell’s presence can be detected on the original target). [Protection from poison](https://api.open5e.com/spells/protection-from-poison) negates the spell’s effects on targets but will not dispel the aura. A foot of metal or stone, two inches of lead, or a force effect such as [mage armor](https://api.open5e.com/spells/mage-armor) or [wall of force](https://api.open5e.com/spells/wall-of-force) will block it.\n", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the aura lasts 1 minute longer and the poison damage increases by 1d6 for each slot level above 5th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_evercold", + "fields": { + "name": "Evercold", + "desc": "You target a creature within the spell’s range, and that creature must make a successful Wisdom saving throw or take 1d6 cold damage. In addition, the target is cursed to feel as if it’s exposed to extreme cold. For the duration of **evercold**, the target must make a successful DC 10 Constitution saving throw at the end of each hour or gain one level of exhaustion. The target has advantage on the hourly saving throws if wearing suitable cold-weather clothing, but it has disadvantage on saving throws against other spells and magic that deal cold damage (regardless of its clothing) for the spell’s duration.\n\nThe spell can be ended by its caster or by [dispel magic](https://api.open5e.com/spells/dispel-magic) or [remove curse](https://api.open5e.com/spells/remove-curse).", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an insect that froze to death", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_exsanguinate", + "fields": { + "name": "Exsanguinate", + "desc": "You cause the body of a creature within range to become engorged with blood or ichor. The target must make a Constitution saving throw. On a successful save, it takes 2d6 bludgeoning damage. On a failed save, it takes 4d6 bludgeoning damage each round, it is incapacitated, and it cannot speak, as it vomits up torrents of blood or ichor. In addition, its hit point maximum is reduced by an amount equal to the damage taken. The target dies if this effect reduces its hit point maximum to 0.\n\nAt the end of each of its turns, a creature can make a Constitution saving throw, ending the effect on a success—except for the reduction of its hit point maximum, which lasts until the creature finishes a long rest.\n", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can target one additional creature for each slot level above 5th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a desiccated horse heart", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_exsanguinating-cloud", + "fields": { + "name": "Exsanguinating Cloud", + "desc": "When you cast this spell, a rose-colored mist billows up in a 20-foot radius, centered on a point you indicate within range, making the area heavily obscured and draining blood from living creatures in the cloud. The cloud spreads around corners. It lasts for the duration or until strong wind disperses it, ending the spell.\n\nThis cloud leaches the blood or similar fluid from creatures in the area. It doesn’t affect undead or constructs. Any creature in the cloud when it’s created or at the start of your turn takes 6d6 necrotic damage and gains one level of exhaustion; a successful Constitution saving throw halves the damage and prevents the exhaustion.", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "point", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "necrotic" + ], + "duration": "5 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_extract-knowledge", + "fields": { + "name": "Extract Knowledge", + "desc": "By touching a recently deceased corpse, you gain one specific bit of knowledge from it that was known to the creature in life. You must form a question in your mind as part of casting the spell; if the corpse has an answer to your question, it reveals the information to you telepathically. The answer is always brief—no more than a sentence—and very specific to the framed question. It doesn’t matter whether the creature was your friend or enemy; the spell compels it to answer in any case.", + "document": "deepm", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a blank page", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_fault-line", + "fields": { + "name": "Fault Line", + "desc": "The ground thrusts sharply upward along a 5-foot-wide, 60‐foot-long line that you designate. All spaces affected by the spell become difficult terrain. In addition, all creatures in the affected area are knocked prone and take 8d6 bludgeoning damage. Creatures that make a successful Dexterity saving throw take half as much damage and are not knocked prone. This spell doesn’t damage permanent structures.", + "document": "deepm", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_feather-field", + "fields": { + "name": "Feather Field", + "desc": "A magical barrier of chaff in the form of feathers appears and protects you. Until the start of your next turn, you have a +5 bonus to AC against ranged attacks by magic weapons.\n", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "When you cast **feather field** using a spell slot of 2nd level or higher, the duration is increased by 1 round for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "fletching from an arrow", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_feather-travel", + "fields": { + "name": "Feather Travel", + "desc": "The target of **feather travel** (along with its clothing and other gear) transforms into a feather and drifts on the wind. The drifting creature has a limited ability to control its travel. It can move only in the direction the wind is blowing and at the speed of the wind. It can, however, shift up, down, or sideways 5 feet per round as if caught by a gust, allowing the creature to aim for an open window or doorway, to avoid a flame, or to steer around an animal or another creature. When the spell ends, the feather settles gently to the ground and transforms back into the original creature.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, two additional creatures can be transformed per slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a feather", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_fey-crown", + "fields": { + "name": "Fey Crown", + "desc": "By channeling the ancient wards of the Seelie Court, you create a crown of five flowers on your head. While wearing this crown, you have advantage on saving throws against spells and other magical effects and are immune to being charmed. As a bonus action, you can choose a creature within 30 feet of you (including yourself). Until the end of its next turn, the chosen creature is invisible and has advantage on saving throws against spells and other magical effects. Each time a chosen creature becomes invisible, one of the blossoms in the crown closes. After the last of the blossoms closes, the spell ends at the start of your next turn and the crown disappears.\n", + "document": "deepm", + "level": 5, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the crown can have one additional flower for each slot level above 5th. One additional flower is required as a material component for each additional flower in the crown.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "five flowers of different colors", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_find-kin", + "fields": { + "name": "Find Kin", + "desc": "You touch one willing creature or make a melee spell attack against an unwilling creature, which is entitled to a Wisdom saving throw. On a failed save, or automatically if the target is willing, you learn the identity, appearance, and location of one randomly selected living relative of the target.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a freshly dug up tree root that is consumed by the spell", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_fire-darts", + "fields": { + "name": "Fire Darts", + "desc": "When this spell is cast on any fire that’s at least as large as a small campfire or cooking fire, three darts of flame shoot out from the fire toward creatures within 30 feet of the fire. Darts can be directed against the same or separate targets as the caster chooses. Each dart deals 4d6 fire damage, or half as much damage if its target makes a successful Dexterity saving throw.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "20 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a fire the size of a small campfire or larger", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_fire-under-the-tongue", + "fields": { + "name": "Fire Under the Tongue", + "desc": "You can ingest a nonmagical fire up to the size of a normal campfire that is within range. The fire is stored harmlessly in your mouth and dissipates without effect if it is not used before the spell ends. You can spit out the stored fire as an action. If you try to hit a particular target, then treat this as a ranged attack with a range of 5 feet. Campfire-sized flames deal 2d6 fire damage, while torch-sized flames deal 1d6 fire damage. Once you have spit it out, the fire goes out immediately unless it hits flammable material that can keep it fed.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "5 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_firewalk", + "fields": { + "name": "Firewalk", + "desc": "The creature you cast **firewalk** on becomes immune to fire damage. In addition, that creature can walk along any burning surface, such as a burning wall or burning oil spread on water, as if it were solid and horizontal. Even if there is no other surface to walk on, the creature can walk along the tops of the flames.\n", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, two additional creatures can be affected for each slot level above 6th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_fist-of-iron", + "fields": { + "name": "Fist of Iron", + "desc": "You transform your naked hand into iron. Your unarmed attacks deal 1d6 bludgeoning damage and are considered magical.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_flame-wave", + "fields": { + "name": "Flame Wave", + "desc": "A rushing burst of fire rips out from you in a rolling wave, filling a 40-foot cone. Each creature in the area must make a Dexterity saving throw. A creature takes 6d8 fire damage and is pushed 20 feet away from you on a failed save; on a successful save, the creature takes half as much damage and isn’t pushed.\n", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of tar, pitch, or oil", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 40, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_flesh-to-paper", + "fields": { + "name": "Flesh to Paper", + "desc": "A willing creature you touch becomes as thin as a sheet of paper until the spell ends. Anything the target is wearing or carrying is also flattened. The target can’t cast spells or attack, and attack rolls against it are made with disadvantage. It has advantage on Dexterity (Stealth) checks while next to a wall or similar flat surface. The target can move through a space as narrow as 1 inch without squeezing. If it occupies the same space as an object or a creature when the spell ends, the creature is shunted to the nearest unoccupied space and takes force damage equal to twice the number of feet it was moved.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_flickering-fate", + "fields": { + "name": "Flickering Fate", + "desc": "You or a creature that you touch can see a few seconds into the future. When the spell is cast, each other creature within 30 feet of the target must make a Wisdom saving throw. Those that fail must declare, in initiative order, what their next action will be. The target of the spell declares his or her action last, after hearing what all other creatures will do. Each creature that declared an action must follow its declaration as closely as possible when its turn comes. For the duration of the spell, the target has advantage on attack rolls, ability checks, and saving throws, and creatures that declared their actions have disadvantage on attack rolls against the target.", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_fluctuating-alignment", + "fields": { + "name": "Fluctuating Alignment", + "desc": "You channel the force of chaos to taint your target’s mind. A target that gets a failure on a Wisdom saving throw must roll 1d20 and consult the Alignment Fluctuation table to find its new alignment, and it must roll again after every minute of the spell’s duration. The target’s alignment stops fluctuating and returns to normal when the spell ends. These changes do not make the affected creature friendly or hostile toward the caster, but they can cause creatures to behave in unpredictable ways.\n ## Alignment Fluctuation \n| D20 | Alignment |\n|-|-|\n| 1-2 | Chaotic good |\n| 3-4 | Chaotic neutral |\n| 5-7 | Chaotic evil |\n| 8-9 | Neutral evil |\n| 10-11 | Lawful evil |\n| 12-14 | Lawful good |\n| 15-16 | Lawful neutral |\n| 17-18 | Neutral good |\n| 19-20 | Neutral |\n\n", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_flurry", + "fields": { + "name": "Flurry", + "desc": "A flurry of snow surrounds you and extends to a 5-foot radius around you. While it lasts, anyone trying to see into, out of, or through the affected area (including you) has disadvantage on Wisdom (Perception) checks and attack rolls.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a fleck of quartz", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_forest-native", + "fields": { + "name": "Forest Native", + "desc": "While in a forest, you touch a willing creature and infuse it with the forest’s energy, creating a bond between the creature and the environment. For the duration of the spell, as long as the creature remains within the forest, its movement is not hindered by difficult terrain composed of natural vegetation. In addition, the creature has advantage on saving throws against environmental effects such as excessive heat or cold or high altitude.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a clump of soil from a forest", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_forest-sanctuary", + "fields": { + "name": "Forest Sanctuary", + "desc": "While in a forest, you create a protective, 200-foot cube centered on a point you can see within range. The atmosphere inside the cube has the lighting, temperature, and moisture that is most ideal for the forest, regardless of the lighting or weather outside the area. The cube is transparent, and creatures and objects can move freely through it. The cube protects the area inside it from storms, strong winds, and floods, including those created by magic such as [control weather](https://api.open5e.com/spells/control-weather)[control water](https://api.open5e.com/spells/control-water), or [meteor swarm](https://api.open5e.com/spells/meteor-swarm). Such spells can’t be cast while the spellcaster is in the cube.\n\nYou can create a permanently protected area by casting this spell at the same location every day for one year.", + "document": "deepm", + "level": 9, + "school": "abjuration", + "higher_level": "", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a bowl of fresh rainwater and a tree branch", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": "cube", + "shape_magnitude": 200, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_foretell-distraction", + "fields": { + "name": "Foretell Distraction", + "desc": "Thanks to your foreknowledge, you know exactly when your foe will take his or her eyes off you. Casting this spell has the same effect as making a successful Dexterity (Stealth) check, provided cover or concealment is available within 10 feet of you. It doesn’t matter whether enemies can see you when you cast the spell; they glance away at just the right moment. You can move up to 10 feet as part of casting the spell, provided you’re able to move (not restrained or grappled or reduced to a speed of less than 10 feet for any other reason). This move doesn’t count as part of your normal movement. After the spell is cast, you must be in a position where you can remain hidden: a lightly obscured space, for example, or a space where you have total cover. Otherwise, enemies see you again immediately and you’re not hidden.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_form-of-the-gods", + "fields": { + "name": "Form of the Gods", + "desc": "By drawing on the energy of the gods, you can temporarily assume the form of your patron’s avatar. Form of the gods transforms you into an entirely new shape and brings about the following changes (summarized below and in the [avatar form](https://api.open5e.com/monsters/avatar-form) stat block).\n* Your size becomes Large, unless you were already at least that big.\n* You gain resistance to nonmagical bludgeoning, piercing, and slashing damage and to one other damage type of your choice.\n* You gain a Multiattack action option, allowing you to make two slam attacks and a bite.\n* Your ability scores change to reflect your new form, as shown in the stat block.\n\nYou remain in this form until you stop concentrating on the spell or until you drop to 0 hit points, at which time you revert to your natural form.", + "document": "deepm", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a holy symbol", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_freeze-blood", + "fields": { + "name": "Freeze Blood", + "desc": "When you cast **freeze blood** as a successful melee spell attack against a living creature with a circulatory system, the creature’s blood freezes. For the spell’s duration, the affected creature’s speed is halved and it takes 2d6 cold damage at the start of each of its turns. If the creature takes bludgeoning damage from a critical hit, the attack’s damage dice are rolled three times instead of twice. At the end of each of its turns, the creature can make a Constitution saving throw, ending the effect on a success.\n\nNOTE: This was previously a 5th-level spell that did 4d10 cold damage.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_freeze-potion", + "fields": { + "name": "Freeze Potion", + "desc": "A blue spark flies from your hand and strikes a potion vial, drinking horn, waterskin, or similar container, instantly freezing the contents. The substance melts normally thereafter and is not otherwise harmed, but it can’t be consumed while it’s frozen.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the range increases by 5 feet for each slot level above 1st.", + "target_type": "object", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_freezing-fog", + "fields": { + "name": "Freezing Fog", + "desc": "The spell creates a 20-foot-radius sphere of mist similar to a [fog cloud](https://api.open5e.com/spells/fog-cloud) spell centered on a point you can see within range. The cloud spreads around corners, and the area it occupies is heavily obscured. A wind of moderate or greater velocity (at least 10 miles per hour) disperses it in 1 round. The fog is freezing cold; any creature that ends its turn in the area must make a Constitution saving throw. It takes 2d6 cold damage and gains one level of exhaustion on a failed save, or takes half as much damage and no exhaustion on a successful one.\n", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "point", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "cold" + ], + "duration": "5 minutes", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_frenzied-bolt", + "fields": { + "name": "Frenzied Bolt", + "desc": "You direct a bolt of rainbow colors toward a creature of your choice within range. If the bolt hits, the target takes 3d8 damage, of a type determined by rolling on the Random Damage Type table. If your attack roll (not the adjusted result) was odd, the bolt leaps to a new target of your choice within range that has not already been targeted by frenzied bolt, requiring a new spell attack roll to hit. The bolt continues leaping to new targets until you roll an even number on your spell attack roll, miss a target, or run out of potential targets. You and your allies are legal targets for this spell if you are particularly lucky—or unlucky.", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create an additional bolt for each slot level above 2nd. Each potential target can be hit only once by each casting of the spell, not once per bolt.\n \n **Random Damage Type** \n \n| d10 | Damage Type | \n|--------------|---------| \n| 1 | Acid | \n| 2 | Cold | \n| 3 | Fire | \n| 4 | Force | \n| 5 | Lightning | \n| 6 | Necrotic | \n| 7 | Poision | \n| 8 | Psychic | \n| 9 | Radiant | \n| 10 | Thunder | \n \n", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_frostbite", + "fields": { + "name": "Frostbite", + "desc": "Biting cold settles onto a creature you can see. The creature must make a Constitution saving throw. On a failed save, the creature takes 4d8 cold damage. In addition, for the duration of the spell, the creature’s speed is halved, it has disadvantage on attack rolls and ability checks, and it takes another 4d8 cold damage at the start of each of its turns.\n\nAn affected creature can repeat the saving throw at the start of each of its turns. The effect ends when the creature makes its third successful save.\n\nCreatures that are immune to cold damage are unaffected by **frostbite**.\n", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can target two additional creatures for each slot level above 5th.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a strip of dried flesh that has been frozen at least once", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d8", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_frostbitten-fingers", + "fields": { + "name": "Frostbitten Fingers", + "desc": "You fire a ray of intense cold that instantly induces frostbite. With a successful ranged spell attack, this spell causes one of the target’s hands to lose sensation. When the spell is cast, the target must make a successful Dexterity saving throw to maintain its grip on any object with the affected hand. The saving throw must be repeated every time the target tries to manipulate, wield, or pick up an item with the affected hand. Additionally, the target has disadvantage on Dexterity checks or Strength checks that require the use of both hands.\n\nAfter every 10 minutes of being affected by frostbitten fingers, the target must make a successful Constitution saving throw, or take 1d6 cold damage and lose one of the fingers on the affected hand, beginning with the pinkie.", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_frozen-razors", + "fields": { + "name": "Frozen Razors", + "desc": "Razor-sharp blades of ice erupt from the ground or other surface, filling a 20-foot cube centered on a point you can see within range. For the duration, the area is lightly obscured and is difficult terrain. A creature that moves more than 5 feet into or inside the area on a turn takes 2d6 slashing damage and 3d6 cold damage, or half as much damage if it makes a successful Dexterity saving throw. A creature that takes cold damage from frozen razors is reduced to half speed until the start of its next turn.\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "water from a melted icicle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "slashing" + ], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_furious-hooves", + "fields": { + "name": "Furious Hooves", + "desc": "You enhance the feet or hooves of a creature you touch, imbuing it with power and swiftness. The target doubles its walking speed or increases it by 30 feet, whichever addition is smaller. In addition to any attacks the creature can normally make, this spell grants two hoof attacks, each of which deals bludgeoning damage equal to 1d6 + plus the target’s Strength modifier (or 1d8 if the target of the spell is Large). For the duration of the spell, the affected creature automatically deals this bludgeoning damage to the target of its successful shove attack.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a nail", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_fusillade-of-ice", + "fields": { + "name": "Fusillade of Ice", + "desc": "You unleash a spray of razor-sharp ice shards. Each creature in the 30-foot cone takes 4d6 cold damage and 3d6 piercing damage, or half as much damage with a successful Dexterity saving throw.\n", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by your choice of 1d6 cold damage or 1d6 piercing damage for each slot level above 4th. You can make a different choice (cold damage or piercing damage) for each slot level above 4th. Casting this spell with a spell slot of 6th level or higher increases the range to a 60-foot cone.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dagger shaped like an icicle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "7d6", + "damage_types": [ + "cold", + "piercing" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_gear-barrage", + "fields": { + "name": "Gear Barrage", + "desc": "You create a burst of magically propelled gears. Each creature within a 60-foot cone takes 3d8 slashing damage, or half as much damage with a successful Dexterity saving throw. Constructs have disadvantage on the saving throw.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of gears and sprockets worth 5 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "slashing" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 60, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ghoul-kings-cloak", + "fields": { + "name": "Ghoul King’s Cloak", + "desc": "You touch a creature, giving it some of the power of a ghoul king. The target gains the following benefits for the duration:\n* Its Armor Class increases by 2, to a maximum of 20.\n* When it uses the Attack action to make a melee weapon attack or a ranged weapon attack, it can make one additional attack of the same kind.\n* It is immune to necrotic damage and radiant damage.\n* It can’t be reduced to less than 1 hit point.", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "When you cast this spell using a 9th-level spell slot, the spell lasts for 10 minutes and doesn’t require concentration.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_gird-the-spirit", + "fields": { + "name": "Gird the Spirit", + "desc": "Your magic protects the target creature from the lifesapping energies of the undead. For the duration, the target has immunity to effects from undead creatures that reduce its ability scores, such as a shadow's Strength Drain, or its hit point maximum, such as a specter's Life Drain. This spell doesn't prevent damage from those attacks; it prevents only the reduction in ability score or hit point maximum.", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_glacial-cascade", + "fields": { + "name": "Glacial Cascade", + "desc": "By harnessing the power of ice and frost, you emanate pure cold, filling a 30-foot-radius sphere. Creatures other than you in the sphere take 10d8 cold damage, or half as much damage with a successful Constitution saving throw. A creature killed by this spell is transformed into ice, leaving behind no trace of its original body.", + "document": "deepm", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of alexandrite", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_glacial-fog", + "fields": { + "name": "Glacial Fog", + "desc": "As you cast this spell, a 30-foot-radius sphere centered on a point within range becomes covered in a frigid fog. Each creature that is in the area at the start of its turn while the spell remains in effect must make a Constitution saving throw. On a failed save, a creature takes 12d6 cold damage and gains one level of exhaustion, and it has disadvantage on Perception checks until the start of its next turn. On a successful save, the creature takes half the damage and ignores the other effects.\n\nStored devices and tools are all frozen by the fog: crossbow mechanisms become sluggish, weapons are stuck in scabbards, potions turn to ice, bag cords freeze together, and so forth. Such items require the application of heat for 1 round or longer in order to become useful again.\n", + "document": "deepm", + "level": 7, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 1d6 for each slot level above 7th.", + "target_type": "point", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "crystalline statue of a polar bear worth at least 25 gp", + "material_cost": "25.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "12d6", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_gliding-step", + "fields": { + "name": "Gliding Step", + "desc": "Provided you’re not carrying more of a load than your carrying capacity permits, you can walk on the surface of snow rather than wading through it, and you ignore its effect on movement. Ice supports your weight no matter how thin it is, and you can travel on ice as if you were wearing ice skates. You still leave tracks normally while under these effects.\n", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 10 minutes for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_glimpse-of-the-void", + "fields": { + "name": "Glimpse of the Void", + "desc": "Muttering Void Speech, you force images of terror and nonexistence upon your foes. Each creature in a 30-foot cube centered on a point within range must make an Intelligence saving throw. On a failed save, the creature goes insane for the duration. While insane, a creature takes no actions other than to shriek, wail, gibber, and babble unintelligibly. The GM controls the creature’s movement, which is erratic.", + "document": "deepm", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a scrap of parchment with Void glyph scrawlings", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 30, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_gloomwrought-barrier", + "fields": { + "name": "Gloomwrought Barrier", + "desc": "When you cast this spell, you erect a barrier of energy drawn from the realm of death and shadow. This barrier is a wall 20 feet high and 60 feet long, or a ring 20 feet high and 20 feet in diameter. The wall is transparent when viewed from one side of your choice and translucent—lightly obscuring the area beyond it—from the other. A creature that tries to move through the wall must make a successful Wisdom saving throw or stop in front of the wall and become frightened until the start of the creature’s next turn, when it can try again to move through. Once a creature makes a successful saving throw against the wall, it is immune to the effect of this barrier.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of obsidian", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_gluey-globule", + "fields": { + "name": "Gluey Globule", + "desc": "You make a ranged spell attack to hurl a large globule of sticky, magical glue at a creature within 120 feet. If the attack hits, the target creature is restrained. A restrained creature can break free by using an action to make a successful Strength saving throw. When the creature breaks free, it takes 2d6 slashing damage from the glue tearing its skin. If your ranged spell attack roll was a critical hit or exceeded the target’s AC by 5 or more, the Strength saving throw is made with disadvantage. The target can also be freed by an application of universal solvent or by taking 20 acid damage. The glue dissolves when the creature breaks free or at the end of 1 minute.\n\nAlternatively, **gluey globule** can also be used to glue an object to a solid surface or to another object. In this case, the spell works like a single application of [sovereign glue](https://api.open5e.com/spells/sovereign-glue) and lasts for 1 hour.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of glue", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": true, + "damage_roll": "2d6", + "damage_types": [ + "slashing" + ], + "duration": "1 minute or 1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_glyph-of-shifting", + "fields": { + "name": "Glyph of Shifting", + "desc": "You create a hidden glyph by tracing it on a surface or object that you touch. When you cast the spell, you can also choose a location that's known to you, within 5 miles, and on the same plane of existence, to serve as the destination for the glyph's shifting effect.\n The glyph is triggered when it's touched by a creature that's not aware of its presence. The triggering creature must make a successful Wisdom saving throw or be teleported to the glyph's destination. If no destination was set, the creature takes 4d4 force damage and is knocked prone.\n The glyph disappears after being triggered or when the spell's duration expires.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, its duration increases by 24 hours and the maximum distance to the destination increases by 5 miles for each slot level above 2nd.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "powdered diamond worth at least 50 gp, which the spell consumes", + "material_cost": "50.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "4d4", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_goats-hoof-charm", + "fields": { + "name": "Goat's Hoof Charm", + "desc": "A creature you touch traverses craggy slopes with the surefootedness of a mountain goat. When ascending a slope that would normally be difficult terrain for it, the target can move at its full speed instead. The target also gains a +2 bonus on Dexterity checks and saving throws to prevent falling, to catch a ledge or otherwise stop a fall, or to move along a narrow ledge.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can increase the duration by 1 minute, or you can affect one additional creature, for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a goat’s hoof", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_going-in-circles", + "fields": { + "name": "Going in Circles", + "desc": "You make natural terrain in a 1-mile cube difficult to traverse. A creature in the affected area has disadvantage on Wisdom (Survival) checks to follow tracks or travel safely through the area as paths through the terrain seem to twist and turn nonsensically. The terrain itself isn't changed, only the perception of those inside it. A creature who succeeds on two Wisdom (Survival) checks while within the terrain discerns the illusion for what it is and sees the illusory twists and turns superimposed on the terrain. A creature that reenters the area after exiting it before the spell ends is affected by the spell even if it previously succeeded in traversing the terrain. A creature with truesight can see through the illusion and is unaffected by the spell. A creature that casts find the path automatically succeeds in discovering a way out of the terrain.\n When you cast this spell, you can designate a password. A creature that speaks the password as it enters the area automatically sees the illusion and is unaffected by the spell.\n If you cast this spell on the same spot every day for one year, the illusion lasts until it is dispelled.", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Sight", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of the target terrain", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_gordolays-pleasant-aroma", + "fields": { + "name": "Gordolay’s Pleasant Aroma", + "desc": "You create an intoxicating aroma that fills the area within 30 feet of a point you can see within range. Creatures in this area smell something they find so pleasing that it’s distracting. Each creature in the area that makes an attack roll must first make a Wisdom saving throw; on a failed save, the attack is made with disadvantage. Only a creature’s first attack in a round is affected this way; subsequent attacks are resolved normally. On a successful save, a creature becomes immune to the effect of this particular scent, but they can be affected again by a new casting of the spell.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "a few flower petals or a piece of fruit, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_grasp-of-the-tupilak", + "fields": { + "name": "Grasp of the Tupilak", + "desc": "This spell functions only against an arcane or divine spellcaster that prepares spells in advance and that has at least one unexpended spell slot of 6th level or lower. If you make a successful melee attack against such a creature before the spell ends, in addition to the usual effect of that attack, the target takes 2d4 necrotic damage and one or more of the victim’s available spell slots are transferred to you, to be used as your own. Roll a d6; the result equals the total levels of the slots transferred. Spell slots of the highest possible level are transferred before lower-level slots.\n\nFor example, if you roll a 5 and the target has at least one 5th-level spell slot available, that slot transfers to you. If the target’s highest available spell slot is 3rd level, then you might receive a 3rd-level slot and a 2nd-level slot, or a 3rd-level slot and two 1st-level slots if no 2nd-level slot is available.\n\nIf the target has no available spell slots of an appropriate level—for example, if you roll a 2 and the target has expended all of its 1st- and 2nd-level spell slots—then **grasp of the tupilak** has no effect, including causing no necrotic damage. If a stolen spell slot is of a higher level than you’re able to use, treat it as of the highest level you can use.\n\nUnused stolen spell slots disappear, returning whence they came, when you take a long rest or when the creature you stole them from receives the benefit of [remove curse](https://api.open5e.com/spells/remove-curse)[greater restoration](https://api.open5e.com/greater-restoration), or comparable magic.", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "tupilak idol", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "necrotic" + ], + "duration": "1 hour or until triggered", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_greater-maze", + "fields": { + "name": "Greater Maze", + "desc": "This spell functions as [maze](https://api.open5e.com/spells/maze), but the target must make a Dexterity saving throw each time it starts its turn in the maze. The target takes 4d6 psychic damage on a failed save, or half as much damage on a success.\n\nEscaping this maze is especially difficult. To do so, the target must use an action to make a DC 20 Intelligence check. It escapes when it makes its second successful check.", + "document": "deepm", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "psychic" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_greater-seal-of-sanctuary", + "fields": { + "name": "Greater Seal of Sanctuary", + "desc": "You inscribe an angelic seal on the ground, the floor, or other solid surface of a structure. The seal creates a spherical sanctuary with a radius of 100 feet, centered on the seal. For the duration, aberrations, elementals, fey, fiends, and undead that approach to within 5 feet of the boundary know they are about to come into contact with a deadly barrier. If such a creature moves so as to touch the boundary, or tries to cross the boundary by any means, including teleportation and extradimensional travel, it must make a Charisma saving throw. On a failed save, it takes 15d8 radiant damage, is repelled to 5 feet outside the boundary, and can’t target anything inside the boundary with attacks, spells, or abilities until the spell ends. On a successful save, the creature takes half as much radiant damage and can cross the boundary. If the creature is a fiend that isn’t on its home plane, it is immediately destroyed (no saving throw) instead of taking damage.\n\nAberrations, elementals, fey, and undead that are within 100 feet of the seal (inside the boundary) have disadvantage on ability checks, attack rolls, and saving throws, and each such creature takes 4d8 radiant damage at the start of its turn.\n\nCreatures other than aberrations, elementals, fey, fiends, and undead can’t be charmed or frightened while within 100 feet of the seal.\n\nThe seal has AC 18, 75 hit points, resistance to bludgeoning, piercing, and slashing damage, and immunity to psychic and poison damage. Ranged attacks against the seal are made with disadvantage. If it is scribed on the surface of an object that is later destroyed (such as a wooden door), the seal is not damaged and remains in place, perhaps suspended in midair. The spell ends only if the seal itself is reduced to 0 hit points.", + "document": "deepm", + "level": 9, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "incense and special inks worth 500 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "15d8", + "damage_types": [ + "radiant" + ], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_green-decay", + "fields": { + "name": "Green Decay", + "desc": "Your touch inflicts a nauseating, alien rot. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with the supernatural disease green decay (see below), and creatures within 15 feet of the target who can see it must make a successful Constitution saving throw or become poisoned until the end of their next turn.\n\nYou lose concentration on this spell if you can’t see the target at the end of your turn.\n\n***Green Decay.*** The flesh of a creature that has this disease is slowly consumed by a virulent extraterrestrial fungus. While the disease persists, the creature has disadvantage on Charisma and Wisdom checks and on Wisdom saving throws, and it has vulnerability to acid, fire, and necrotic damage. An affected creature must make a Constitution saving throw at the end of each of its turns. On a failed save, the creature takes 1d6 necrotic damage, and its hit point maximum is reduced by an amount equal to the necrotic damage taken. If the creature gets three successes on these saving throws before it gets three failures, the disease ends immediately (but the damage and the hit point maximum reduction remain in effect). If the creature gets three failures on these saving throws before it gets three successes, the disease lasts for the duration of the spell, and no further saving throws are allowed.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "1d6", + "damage_types": [ + "necrotic" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_grudge-match", + "fields": { + "name": "Grudge Match", + "desc": "This spell affects any creatures you designate within range, as long as the group contains an equal number of allies and enemies. If the number of allies and enemies targeted isn’t the same, the spell fails. For the duration of the spell, each target gains a +2 bonus on saving throws, attack rolls, ability checks, skill checks, and weapon damage rolls made involving other targets of the spell. All affected creatures can identify fellow targets of the spell by sight. If an affected creature makes any of the above rolls against a non-target, it takes a -2 penalty on that roll.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration increases by 1 round for each slot level above 2nd.", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_guest-of-honor", + "fields": { + "name": "Guest of Honor", + "desc": "You whisper words of encouragement, and a creature that you touch gains confidence along with approval from strangers. For the spell’s duration, the target puts its best foot forward and strangers associate the creature with positive feelings. The target adds 1d4 to all Charisma (Persuasion) checks made to influence the attitudes of others.\n", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the effect lasts for an additional 10 minutes for each slot level above 1st.\n\n***Ritual Focus.*** If you expend your ritual focus, the effect lasts for 24 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a signet ring worth 25 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_guiding-star", + "fields": { + "name": "Guiding Star", + "desc": "By observing the stars or the position of the sun, you are able to determine the cardinal directions, as well as the direction and distance to a stated destination. You can’t become directionally disoriented or lose track of the destination. The spell doesn’t, however, reveal the best route to your destination or warn you about deep gorges, flooded rivers, or other impassable or treacherous terrain.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_hamstring", + "fields": { + "name": "Hamstring", + "desc": "You create an arrow of eldritch energy and send it at a target you can see within range. Make a ranged spell attack against the target. On a hit, the target takes 1d4 force damage, and it can’t take reactions until the end of its next turn.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "The spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d4", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_hard-heart", + "fields": { + "name": "Hard Heart", + "desc": "You imbue your touch with the power to make a creature aloof, hardhearted, and unfeeling. The creature you touch as part of casting this spell must make a Wisdom saving throw; a creature can choose to fail this saving throw unless it’s currently charmed. On a successful save, this spell fails. On a failed save, the target becomes immune to being charmed for the duration; if it’s currently charmed, that effect ends. In addition, Charisma checks against the target are made with disadvantage for the spell’s duration.\n", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd or 4th level, the duration increases to 1 hour. If you use a spell slot of 5th level or higher, the duration is 8 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an iron key", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_harry", + "fields": { + "name": "Harry", + "desc": "You instill an irresistible sense of insecurity and terror in the target. The target must make a Wisdom saving throw. On a failed save, the target has disadvantage on Dexterity (Stealth) checks to avoid your notice and is frightened of you while you are within its line of sight. While you are within 1 mile of the target, you have advantage on Wisdom (Survival) checks to track the target, and the target can't take a long rest, terrified you are just around the corner. The target can repeat the saving throw once every 10 minutes, ending the spell on a success.\n On a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours.", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "When you cast this spell with a 6th-level spell slot, the duration is concentration, up to 8 hours and the target can repeat the saving throw once each hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 24 hours, and the target can repeat the saving throw every 8 hours.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a bit of fur from a game animal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_harrying-hounds", + "fields": { + "name": "Harrying Hounds", + "desc": "When you cast this spell, choose a direction (north, south, northeast, or the like). Each creature in a 20-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it. When an affected creature travels, it travels at a fast pace in the opposite direction of the direction you chose as it believes a pack of dogs or wolves follows it from the chosen direction.\n When an affected creature isn't traveling, it is frightened of your chosen direction. The affected creature occasionally hears howls or sees glowing eyes in the darkness at the edge of its vision in that direction. An affected creature will not stop at a destination, instead pacing half-circles around the destination until the effect ends, terrified the pack will overcome it if it stops moving.\n An affected creature can make a Wisdom saving throw at the end of each 4-hour period, ending the effect on itself on a success. An affected creature moves along the safest available route unless it has nowhere to move, such as if it arrives at the edge of a cliff. When an affected creature can't safely move in the opposite direction of your chosen direction, it cowers in place, defending itself from hostile creatures but otherwise taking no actions. In such circumstances, the affected creature can repeat the saving throw every minute, ending the effect on itself on a success. The spell's effect is suspended when an affected creature is engaged in combat, allowing it to move as necessary to face hostile creatures.", + "document": "deepm", + "level": 5, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the duration increases by 4 hours for each slot level above 5th. If an affected creature travels for more than 8 hours, it risks exhaustion as if on a forced march.", + "target_type": "creature", + "range": "180 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a tuft of fur from a hunting dog", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_harsh-light-of-summers-glare", + "fields": { + "name": "Harsh Light of Summer’s Glare", + "desc": "You emit a burst of brilliant light, which bears down oppressively upon all creatures within range that can see you. Creatures with darkvision that fail a Constitution saving throw are blinded and stunned. Creatures without darkvision that fail a Constitution saving throw are blinded. This is not a gaze attack, and it cannot be avoided by averting one’s eyes or wearing a blindfold.", + "document": "deepm", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_heart-seeking-arrow", + "fields": { + "name": "Heart-Seeking Arrow", + "desc": "The next time you make a ranged weapon attack during the spell's duration, the weapon's ammunition—or the weapon itself if it's a thrown weapon—seeks its target's vital organs. Make the attack roll as normal. On a hit, the weapon deals an extra 6d6 damage of the same type dealt by the weapon, or half as much damage on a miss as it streaks unerringly toward its target. If this attack reduces the target to 0 hit points, the target has disadvantage on its next death saving throw, and, if it dies, it can be restored to life only by means of a true resurrection or a wish spell. This spell has no effect on undead or constructs.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the extra damage on a hit increases by 1d6 for each slot level above 4th.", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_heart-to-heart", + "fields": { + "name": "Heart to Heart", + "desc": "For the duration, you and the creature you touch remain stable and unconscious if reduced to 0 hit points while the other has 1 or more hit points. If you touch a dying creature, it becomes stable but remains unconscious while it has 0 hit points. If both of you are reduced to 0 hit points, you must both make death saving throws, as normal. If you or the target regain hit points, either of you can choose to split those hit points between the two of you if both of you are within 60 feet of each other.", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of your blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_heartache", + "fields": { + "name": "Heartache", + "desc": "You force an enemy to experience pangs of unrequited love and emotional distress. These feelings manifest with such intensity that the creature takes 5d6 psychic damage on a failed Charisma saving throw, or half the damage on a successful save.\n", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target an additional enemy for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a silver locket", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "5d6", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_heartstop", + "fields": { + "name": "Heartstop", + "desc": "You slow the beating of a willing target’s heart to the rate of one beat per minute. The creature’s breathing almost stops. To a casual or brief observer, the subject appears dead. At the end of the spell, the creature returns to normal with no ill effects.", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_heartstrike", + "fields": { + "name": "Heartstrike", + "desc": "The spirits of ancient archers carry your missiles straight to their targets. You have advantage on ranged weapon attacks until the start of your next turn, and you can ignore penalties for your enemies having half cover or three-quarters cover, and for an area being lightly obscured, when making those attacks.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an arrow, bolt, or other missile", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_heavenly-crown", + "fields": { + "name": "Heavenly Crown", + "desc": "A glowing, golden crown appears on your head and sheds dim light in a 30-foot radius. When you cast the spell (and as a bonus action on subsequent turns, until the spell ends), you can target one willing creature within 30 feet of you that you can see. If the target can hear you, it can use its reaction to make one melee weapon attack and then move up to half its speed, or vice versa.", + "document": "deepm", + "level": 6, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small golden crown worth 50 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_hedrens-birds-of-clay", + "fields": { + "name": "Hedren’s Birds of Clay", + "desc": "You create a number of clay pigeons equal to 1d4 + your spellcasting modifier (minimum of one) that swirl around you. When you are the target of a ranged weapon attack or a ranged spell attack and before the attack roll is made, you can use your reaction to shout “Pull!” When you do, one clay pigeon maneuvers to block the incoming attack. If the attack roll is less than 10 + your proficiency bonus, the attack misses. Otherwise, make a check with your spellcasting ability modifier and compare it to the attack roll. If your roll is higher, the attack is intercepted and has no effect. Regardless of whether the attack is intercepted, one clay pigeon is expended. The spell ends when the last clay pigeon is used.\n", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, add 1 to your to your roll for each slot level above 3rd when determining if an attack misses or when making a check to intercept the attack.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a clay figurine shaped like a bird", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_hematomancy", + "fields": { + "name": "Hematomancy", + "desc": "You can learn information about a creature whose blood you possess. The target must make a Wisdom saving throw. If the target knows you’re casting the spell, it can fail the saving throw voluntarily if it wants you to learn the information. On a successful save, the target isn’t affected, and you can’t use this spell against it again for 24 hours. On a failed save, or if the blood belongs to a dead creature, you learn the following information:\n* The target’s most common name (if any).\n* The target’s creature type (and subtype, if any), gender, and which of its ability scores is highest (though not the exact numerical score).\n* The target’s current status (alive, dead, sick, wounded, healthy, etc.).\n* The circumstances of the target shedding the blood you’re holding (bleeding wound, splatter from an attack, how long ago it was shed, etc.).\nAlternatively, you can forgo all of the above information and instead use the blood as a beacon to track the target. For 1 hour, as long as you are on the same plane of existence as the creature, you know the direction and distance to the target’s location at the time you cast this spell. While moving toward the location, if you are presented with a choice of paths, the spell automatically indicates which path provides the shortest and most direct route to the location.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of a creature’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_heros-steel", + "fields": { + "name": "Hero's Steel", + "desc": "You infuse the metal of a melee weapon you touch with the fearsome aura of a mighty hero. The weapon’s wielder has advantage on Charisma (Intimidation) checks made while aggressively brandishing the weapon. In addition, an opponent that currently has 30 or fewer hit points and is struck by the weapon must make a successful Charisma saving throw or be stunned for 1 round. If the creature has more than 30 hit points but fewer than the weapon’s wielder currently has, it becomes frightened instead; a frightened creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a successful save. A creature that succeeds on the saving throw is immune to castings of this spell on the same weapon for 24 hours.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a warrior's amulet worth 5 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_hide-in-ones-shadow", + "fields": { + "name": "Hide in One’s Shadow", + "desc": "When you touch a willing creature with a piece of charcoal while casting this spell, the target and everything it carries blends into and becomes part of the target’s shadow, which remains discernible, although its body seems to disappear. The shadow is incorporeal, has no weight, and is immune to all but psychic and radiant damage. The target remains aware of its surroundings and can move, but only as a shadow could move—flowing along surfaces as if the creature were moving normally. The creature can step out of the shadow at will, resuming its physical shape in the shadow’s space and ending the spell.\n\nThis spell cannot be cast in an area devoid of light, where a shadow would not normally appear. Even a faint light source, such as moonlight or starlight, is sufficient. If that light source is removed, or if the shadow is flooded with light in such a way that the physical creature wouldn’t cast a shadow, the spell ends and the creature reappears in the shadow’s space.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "charcoal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "3 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_hoarfrost", + "fields": { + "name": "Hoarfrost", + "desc": "A melee weapon you are holding is imbued with cold. For the duration, a rime of frost covers the weapon and light vapor rises from it if the temperature is above freezing. The weapon becomes magical and deals an extra 1d4 cold damage on a successful hit. The spell ends after 1 minute, or earlier if you make a successful attack with the weapon or let go of it.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "The spell’s damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a melee weapon", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_hobble", + "fields": { + "name": "Hobble", + "desc": "You create an ethereal trap in the space of a creature you can see within range. The target must succeed on a Dexterity saving throw or its speed is halved until the end of its next turn.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a broken rabbit’s foot", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_hobble-mount", + "fields": { + "name": "Hobble Mount", + "desc": "When you cast **hobble mount** as a successful melee spell attack against a horse, wolf, or other four-legged or two-legged beast being ridden as a mount, that beast is disabled so that it can’t move at its normal speed without incurring injury. An affected creature that moves more than half its base speed in a turn takes 2d6 bludgeoning damage.\n\nThis spell has no effect on a creature that your GM deems to not be a mount.\n", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 2d6 for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_holy-ground", + "fields": { + "name": "Holy Ground", + "desc": "You invoke divine powers to bless the ground within 60 feet of you. Creatures slain in the affected area cannot be raised as undead by magic or by the abilities of monsters, even if the corpse is later removed from the area. Any spell of 4th level or lower that would summon or animate undead within the area fails automatically. Such spells cast with spell slots of 5th level or higher function normally.\n", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the level of spells that are prevented from functioning increases by 1 for each slot level above 5th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of holy water that is consumed in the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_hone-blade", + "fields": { + "name": "Hone Blade", + "desc": "You magically sharpen the edge of any bladed weapon or object you are touching. The target weapon gets a +1 bonus to damage on its next successful hit.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a chip of whetstone or lodestone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_hunger-of-leng", + "fields": { + "name": "Hunger of Leng", + "desc": "You curse a creature that you can see in range with an insatiable, ghoulish appetite. If it has a digestive system, the creature must make a successful Wisdom saving throw or be compelled to consume the flesh of living creatures for the duration.\n\nThe target gains a bite attack and moves to and attacks the closest creature that isn’t an undead or a construct. The target is proficient with the bite, and it adds its Strength modifier to the attack and damage rolls. The damage is piercing and the damage die is a d4. If the target is larger than Medium, its damage die increases by 1d4 for each size category it is above Medium. In addition, the target has advantage on melee attack rolls against any creature that doesn’t have all of its hit points.\n\nIf there isn’t a viable creature within range for the target to attack, it deals piercing damage to itself equal to 2d4 + its Strength modifier. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. If the target has two consecutive failures, **hunger of Leng** lasts its full duration with no further saving throws allowed.", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of salt and a drop of the caster’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_hunters-endurance", + "fields": { + "name": "Hunter's Endurance", + "desc": "You call on the land to sustain you as you hunt your quarry. Describe or name a creature that is familiar to you. If you aren't familiar with the target creature, you must use a fingernail, lock of hair, bit of fur, or drop of blood from it as a material component to target that creature with this spell. Until the spell ends, you have advantage on all Wisdom (Perception) and Wisdom (Survival) checks to find and track the target, and you must actively pursue the target as if under a geas. In addition, you don't suffer from exhaustion levels you gain from pursuing your quarry, such as from lack of rest or environmental hazards between you and the target, while the spell is active. When the spell ends, you suffer from all levels of exhaustion that were suspended by the spell. The spell ends only after 24 hours, when the target is dead, when the target is on a different plane, or when the target is restrained in your line of sight.", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a fingernail, lock of hair, bit of fur, or drop of blood from the target, if unfamiliar", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_hunting-stand", + "fields": { + "name": "Hunting Stand", + "desc": "You make a camouflaged shelter nestled in the branches of a tree or among a collection of stones. The shelter is a 10-foot cube centered on a point within range. It can hold as many as nine Medium or smaller creatures. The atmosphere inside the shelter is comfortable and dry, regardless of the weather outside. The shelter's camouflage provides a modicum of concealment to its inhabitants; a creature outside the shelter has disadvantage on Wisdom (Perception) and Intelligence (Investigation) checks to detect or locate a creature within the shelter.", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a crude model of the stand", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ice-fortress", + "fields": { + "name": "Ice Fortress", + "desc": "A gleaming fortress of ice springs from a square area of ground that you can see within range. It is a 10-foot cube (including floor and roof). The fortress can’t overlap any other structures, but any creatures in its space are harmlessly lifted up as the ice rises into position. The walls are made of ice (AC 13), have 120 hit points each, and are immune to cold, necrotic, poison, and psychic damage. Reducing a wall to 0 hit points destroys it and has a 50 percent chance to cause the roof to collapse. A damaged wall can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis.\n\nEach wall has two arrow slits. One wall also includes an ice door with an [arcane lock](https://api.open5e.com/spells/arcane-lock). You designate at the time of the fort’s creation which creatures can enter the fortification. The door has AC 18 and 60 hit points, or it can be broken open with a successful DC 25 Strength (Athletics) check (DC 15 if the [arcane lock](https://api.open5e.com/spells/arcane-lock) is dispelled).\n\nThe fortress catches and reflects light, so that creatures outside the fortress who rely on sight have disadvantage on Perception checks and attack rolls made against those within the fortress if it’s in an area of bright sunlight.\n", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can increase the length or width of the fortification by 5 feet for every slot level above 5th. You can make a different choice (width or length) for each slot level above 5th.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a miniature keep carved from ice or glass that is consumed in the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled or destroyed", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ice-hammer", + "fields": { + "name": "Ice Hammer", + "desc": "When you cast **ice hammer**, a warhammer fashioned from ice appears in your hands. This weapon functions as a standard warhammer in all ways, and it deals an extra 1d10 cold damage on a hit. You can drop the warhammer or give it to another creature.\n\nThe warhammer melts and is destroyed when it or its user accumulates 20 or more fire damage, or when the spell ends.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional hammer for each slot level above 2nd. Alternatively, you can create half as many hammers (round down), but each is oversized (1d10 bludgeoning damage, or 1d12 if wielded with two hands, plus 2d8 cold damage). Medium or smaller creatures have disadvantage when using oversized weapons, even if they are proficient with them.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a miniature hammer carved from ice or glass", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ice-soldiers", + "fields": { + "name": "Ice Soldiers", + "desc": "You pour water from the vial and cause two [ice soldiers](https://api.open5e.com/monsters/ice-soldier) to appear within range. The ice soldiers cannot form if there is no space available for them. The ice soldiers act immediately on your turn. You can mentally command them (no action required by you) to move and act where and how you desire. If you command an ice soldier to attack, it attacks that creature exclusively until the target is dead, at which time the soldier melts into a puddle of water. If an ice soldier moves farther than 30 feet from you, it immediately melts.\n", + "document": "deepm", + "level": 7, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you create one additional ice soldier.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "vial of water", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_icicle-daggers", + "fields": { + "name": "Icicle Daggers", + "desc": "When you cast this spell, three icicles appear in your hand. Each icicle has the same properties as a dagger but deals an extra 1d4 cold damage on a hit.\n\nThe icicle daggers melt a few seconds after leaving your hand, making it impossible for other creatures to wield them. If the surrounding temperature is at or below freezing, the daggers last for 1 hour. They melt instantly if you take 10 or more fire damage.\n", + "document": "deepm", + "level": 1, + "school": "conjuration", + "higher_level": "If you cast this spell using a spell slot of 2nd level or higher, you can create two additional daggers for each slot level above 1st. If you cast this spell using a spell slot of 4th level or higher, daggers that leave your hand don’t melt until the start of your next turn.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a miniature dagger shaped like an icicle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous or special", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_icy-grasp-of-the-void", + "fields": { + "name": "Icy Grasp of the Void", + "desc": "You summon the cold, inky darkness of the Void into being around a creature that you can see. The target takes 10d10 cold damage and is restrained for the duration; a successful Constitution saving throw halves the damage and negates the restrained condition. A restrained creature gains one level of exhaustion at the start of each of its turns. Creatures immune to cold and that do not breathe do not gain exhaustion. A creature restrained in this way can repeat the saving throw at the end of each of its turns, ending the spell on a success.", + "document": "deepm", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d10", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_icy-manipulation", + "fields": { + "name": "Icy Manipulation", + "desc": "One creature you can see within range must make a Constitution saving throw. On a failed save, the creature is petrified (frozen solid). A petrified creature can repeat the saving throw at the end of each of its turns, ending the effect on itself if it makes two successful saves. If a petrified creature gets two failures on the saving throw (not counting the original failure that caused the petrification), the petrification becomes permenant.\n\nThe petrification also becomes permanent if you maintain concentration on this spell for a full minute. A permanently petrified/frozen creature can be restored to normal with [greater restoration](https://api.open5e.com/spells/greater-restoration) or comparable magic, or by casting this spell on the creature again and maintaining concentration for a full minute.\n\nIf the frozen creature is damaged or broken before it recovers from being petrified, the injury carries over to its normal state.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of ice preserved from the plane of elemental ice", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ill-fated-word", + "fields": { + "name": "Ill-Fated Word", + "desc": "You call out a distracting epithet to a creature, worsening its chance to succeed at whatever it's doing. Roll a d4 and subtract the number rolled from an attack roll, ability check, or saving throw that the target has just made; the target uses the lowered result to determine the outcome of its roll.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_illuminate-spoor", + "fields": { + "name": "Illuminate Spoor", + "desc": "You touch a set of tracks created by a single creature. That set of tracks and all other tracks made by the same creature give off a faint glow. You and up to three creatures you designate when you cast this spell can see the glow. A creature that can see the glow automatically succeeds on Wisdom (Survival) checks to track that creature. If the tracks are covered by obscuring objects such as leaves or mud, you and the creatures you designate have advantage on Wisdom (Survival) checks to follow the tracks.\n If the creature leaving the tracks changes its tracks, such as by adding or removing footwear, the glow stops where the tracks change. Until the spell ends, you can use an action to touch and illuminate a new set of tracks.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 8 hours. When you use a spell slot of 5th level or higher, the duration is concentration, up to 24 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a firefly", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_impending-ally", + "fields": { + "name": "Impending Ally", + "desc": "You summon a duplicate of yourself as an ally who appears in an unoccupied space you can see within range. You control this ally, whose turn comes immediately after yours. When you or the ally uses a class feature, spell slot, or other expendable resource, it’s considered expended for both of you. When the spell ends, or if you are killed, the ally disappears immediately.\n", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the duration is extended by 1 round for every two slot levels above 3rd.", + "target_type": "point", + "range": "40 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a broken chain link", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "2 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_innocuous-aspect", + "fields": { + "name": "Innocuous Aspect", + "desc": "An area of false vision encompasses all creatures within 20 feet of you. You and each creature in the area that you choose to affect take on the appearance of a harmless creature or object, chosen by you. Each image is identical, and only appearance is affected. Sound, movement, or physical inspection can reveal the ruse.\n\nA creature that uses its action to study the image visually can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, that creature sees through the image.", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a paper ring", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_insightful-maneuver", + "fields": { + "name": "Insightful Maneuver", + "desc": "With a flash of insight, you know how to take advantage of your foe’s vulnerabilities. Until the end of your turn, the target has vulnerability to one type of damage (your choice). Additionally, if the target has any other vulnerabilities, you learn them.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_inspiring-speech", + "fields": { + "name": "Inspiring Speech", + "desc": "The verbal component of this spell is a 10-minute-long, rousing speech. At the end of the speech, all your allies within the affected area who heard the speech gain a +1 bonus on attack rolls and advantage on saving throws for 1 hour against effects that cause the charmed or frightened condition. Additionally, each recipient gains temporary hit points equal to your spellcasting ability modifier. If you move farther than 1 mile from your allies or you die, this spell ends. A character can be affected by only one casting of this spell at a time; subsequent, overlapping castings have no additional effect and don't extend the spell's duration.", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_instant-fortification", + "fields": { + "name": "Instant Fortification", + "desc": "Through this spell, you transform a miniature statuette of a keep into an actual fort. The fortification springs from the ground in an unoccupied space within range. It is a 10- foot cube (including floor and roof).\n\nEach wall has two arrow slits. One wall also includes a metal door with an [arcane lock](https://api.open5e.com/spells/arcane-lock) effect on it. You designate at the time of the fort’s creation which creatures can ignore the lock and enter the fortification. The door has AC 20 and 60 hit points, and it can be broken open with a successful DC 25 Strength (Athletics) check. The walls are made of stone (AC 15) and are immune to necrotic, poison, and psychic damage. Each 5-foot-square section of wall has 90 hit points. Reducing a section of wall to 0 hit points destroys it, allowing access to the inside of the fortification.\n", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can increase the length or width of the fortification by 5 feet for each slot level above 5th. You can make a different choice (width or length) for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a statuette of a keep worth 250 gp, which is consumed in the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_instant-siege-weapon", + "fields": { + "name": "Instant Siege Weapon", + "desc": "With this spell, you instantly transform raw materials into a siege engine of Large size or smaller (the GM has information on this topic). The raw materials for the spell don’t need to be the actual components a siege weapon is normally built from; they just need to be manufactured goods made of the appropriate substances (typically including some form of finished wood and a few bits of worked metal) and have a gold piece value of no less than the weapon’s hit points.\n\nFor example, a mangonel has 100 hit points. **Instant siege weapon** will fashion any collection of raw materials worth at least 100 gp into a mangonel. Those materials might be lumber and fittings salvaged from a small house, or 100 gp worth of finished goods such as three wagons or two heavy crossbows. The spell also creates enough ammunition for ten shots, if the siege engine uses ammunition.\n", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 6th level, a Huge siege engine can be made; at 8th level, a Gargantuan siege engine can be made. In addition, for each slot level above 4th, the spell creates another ten shots’ worth of ammunition.", + "target_type": "point", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "raw materials with a value in gp equal to the hit points of the siege weapon to be created", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_instant-snare", + "fields": { + "name": "Instant Snare", + "desc": "You create a snare on a point you can see within range. You can leave the snare as a magical trap, or you can use your reaction to trigger the trap when a Large or smaller creature you can see moves within 10 feet of the snare. If you leave the snare as a trap, a creature must succeed on an Intelligence (Investigation) or Wisdom (Perception) check against your spell save DC to find the trap.\n When a Large or smaller creature moves within 5 feet of the snare, the trap triggers. The creature must succeed on a Dexterity saving throw or be magically pulled into the air. The creature is restrained and hangs upside down 5 feet above the snare's location for 1 minute. A restrained creature can repeat the saving throw at the end of each of its turns, escaping the snare on a success. Alternatively, a creature, including the restrained target, can use its action to make an Intelligence (Arcana) check against your spell save DC. On a success, the restrained creature is freed, and the snare resets itself 1 minute later. If the creature succeeds on the check by 5 or more, the snare is destroyed instead.\n This spell alerts you with a ping in your mind when the trap is triggered if you are within 1 mile of the snare. This ping awakens you if you are sleeping.", + "document": "deepm", + "level": 2, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional snare for each slot level above 3rd. When you receive the mental ping that a trap was triggered, you know which snare was triggered if you have more than one.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a loop of twine", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ire-of-the-mountain", + "fields": { + "name": "Ire of the Mountain", + "desc": "An **ire of the mountain** spell melts nonmagical objects that are made primarily of metal. Choose one metal object weighing 10 pounds or less that you can see within range. Tendrils of blistering air writhe toward the target. A creature holding or wearing the item must make a Dexterity saving throw. On a successful save, the creature takes 1d8 fire damage and the spell has no further effect. On a failed save, the targeted object melts and is destroyed, and the creature takes 4d8 fire damage if it is wearing the object, or 2d8 fire damage if it is holding the object. If the object is not being held or worn by a creature, it is automatically melted and rendered useless. This spell cannot affect magic items.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional object for each slot level above 3rd.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of coal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "1d8", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_iron-hand", + "fields": { + "name": "Iron Hand", + "desc": "**Iron hand** is a common spell among metalsmiths and other crafters who work with heat. When you use this spell, one of your arms becomes immune to fire damage, allowing you to grasp red-hot metal, scoop up molten glass with your fingers, or reach deep into a roaring fire to pick up an object. In addition, if you take the Dodge action while you’re protected by **iron hand**, you have resistance to fire damage until the start of your next turn.", + "document": "deepm", + "level": 0, + "school": "abjuration", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_kareefs-entreaty", + "fields": { + "name": "Kareef’s Entreaty", + "desc": "Your kind words offer hope and support to a fallen comrade. Choose a willing creature you can see within range that is about to make a death saving throw. The creature gains advantage on the saving throw, and if the result of the saving throw is 18 or higher, the creature regains 3d4 hit points immediately.\n", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the creature adds 1 to its death saving throw for every two slot levels above 1st and regains an additional 1d4 hit points for each slot level above 1st if its saving throw result is 18 or higher.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_keening-wail", + "fields": { + "name": "Keening Wail", + "desc": "You emit an unholy shriek from beyond the grave. Each creature in a 15-foot cone must make a Constitution saving throw. A creature takes 6d6 necrotic damage on a failed save, or half as much damage on a successful one. If a creature with 50 hit points or fewer fails the saving throw by 5 or more, it is instead reduced to 0 hit points. This wail has no effect on constructs and undead.\n", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a ringed lock of hair from an undead creature", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 15, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_killing-fields", + "fields": { + "name": "Killing Fields", + "desc": "You invoke primal spirits of nature to transform natural terrain in a 100-foot cube in range into a private hunting preserve. The area can't include manufactured structures and if such a structure exists in the area, the spell ends.\n While you are conscious and within the area, you are aware of the presence and direction, though not exact location, of each beast and monstrosity with an Intelligence of 3 or lower in the area. When a beast or monstrosity with an Intelligence of 3 or lower tries to leave the area, it must make a Wisdom saving throw. On a failure, it is disoriented, uncertain of its surroundings or direction, and remains within the area for 1 hour. On a success, it leaves the area.\n When you cast this spell, you can specify individuals that are helped by the area's effects. All other creatures in the area are hindered by the area's effects. You can also specify a password that, when spoken aloud, gives the speaker the benefits of being helped by the area's effects.\n *Killing fields* creates the following effects within the area.\n ***Pack Hunters.*** A helped creature has advantage on attack rolls against a hindered creature if at least one helped ally is within 5 feet of the hindered creature and the helped ally isn't incapacitated. Slaying. Once per turn, when a helped creature hits with any weapon, the weapon deals an extra 1d6 damage of its type to a hindered creature. Tracking. A helped creature has advantage on Wisdom (Survival) and Dexterity (Stealth) checks against a hindered creature.\n You can create a permanent killing field by casting this spell in the same location every day for one year. Structures built in the area after the killing field is permanent don't end the spell.", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a game animal, which must be sacrificed as part of casting the spell", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": "cube", + "shape_magnitude": 100, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_kiss-of-the-succubus", + "fields": { + "name": "Kiss of the Succubus", + "desc": "You kiss a willing creature or one you have charmed or held spellbound through spells or abilities such as [dominate person](https://api.open5e.com/spells/dominate-person). The target must make a Constitution saving throw. A creature takes 5d10 psychic damage on a failed save, or half as much damage on a successful one. The target’s hit point maximum is reduced by an amount equal to the damage taken; this reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_kobolds-fury", + "fields": { + "name": "Kobold’s Fury", + "desc": "Your touch infuses the rage of a threatened kobold into the target. The target has advantage on melee weapon attacks until the end of its next turn. In addition, its next successful melee weapon attack against a creature larger than itself does an additional 2d8 damage.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a kobold scale", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_labyrinth-mastery", + "fields": { + "name": "Labyrinth Mastery", + "desc": "Upon casting this spell, you immediately gain a sense of your surroundings. If you are in a physical maze or any similar structure with multiple paths and dead ends, this spell guides you to the nearest exit, although not necessarily along the fastest or shortest route.\n\nIn addition, while the spell is guiding you out of such a structure, you have advantage on ability checks to avoid being surprised and on initiative rolls.\n\nYou gain a perfect memory of all portions of the structure you move through during the spell’s duration. If you revisit such a portion, you recognize that you’ve been there before and automatically notice any changes to the environment.\n\nAlso, while under the effect of this spell, you can exit any [maze](https://api.open5e.com/spells/maze) spell (and its lesser and greater varieties) as an action without needing to make an Intelligence check.", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of blank parchment", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_labyrinthine-howl", + "fields": { + "name": "Labyrinthine Howl", + "desc": "You let loose the howl of a ravenous beast, causing each enemy within range that can hear you to make a Wisdom saving throw. On a failed save, a creature believes it has been transported into a labyrinth and is under attack by savage beasts. An affected creature must choose either to face the beasts or to curl into a ball for protection. A creature that faces the beasts takes 7d8 psychic damage, and then the spell ends on it. A creature that curls into a ball falls prone and is stunned until the end of your next turn.\n", + "document": "deepm", + "level": 5, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 2d8 for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dead mouse", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "7d8", + "damage_types": [ + "psychic" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_lacerate", + "fields": { + "name": "Lacerate", + "desc": "You make a swift cutting motion through the air to lacerate a creature you can see within range. The target must make a Constitution saving throw. It takes 4d8 slashing damage on a failed save, or half as much damage on a successful one. If the saving throw fails by 5 or more, the wound erupts with a violent spray of blood, and the target gains one level of exhaustion.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a shard of bone or crystal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d8", + "damage_types": [ + "slashing" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_lair-sense", + "fields": { + "name": "Lair Sense", + "desc": "You set up a magical boundary around your lair. The boundary can’t exceed the dimensions of a 100-foot cube, but within that maximum, you can shape it as you like—to follow the walls of a building or cave, for example. While the spell lasts, you instantly become aware of any Tiny or larger creature that enters the enclosed area. You know the creature’s type but nothing else about it. You are also aware when creatures leave the area.\n\nThis awareness is enough to wake you from sleep, and you receive the knowledge as long as you’re on the same plane of existence as your lair.\n", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, add 50 feet to the maximum dimensions of the cube and add 12 hours to the spell’s duration for each slot level above 2nd.", + "target_type": "creature", + "range": "120 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "treasure worth at least 500 gp, which is not consumed in casting", + "material_cost": "500.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": "cube", + "shape_magnitude": 100, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_last-rays-of-the-dying-sun", + "fields": { + "name": "Last Rays of the Dying Sun", + "desc": "A burst of searing heat explodes from you, dealing 6d6 fire damage to all enemies within range. Immediately afterward, a wave of frigid cold rolls across the same area, dealing 6d6 cold damage to enemies. A creature that makes a successful Dexterity saving throw takes half the damage.\n", + "document": "deepm", + "level": 7, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 8th or 9th level, the damage from both waves increases by 1d6 for each slot level above 7th.", + "target_type": "area", + "range": "40 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_lava-stone", + "fields": { + "name": "Lava Stone", + "desc": "When you cast **lava stone** on a piece of sling ammo, the stone or bullet becomes intensely hot. As a bonus action, you can launch the heated stone with a sling: the stone increases in size and melts into a glob of lava while in flight. Make a ranged spell attack against the target. If it hits, the target takes 1d8 bludgeoning damage plus 6d6 fire damage. The target takes additional fire damage at the start of each of your next three turns, starting with 4d6, then 2d6, and then 1d6. The additional damage can be avoided if the target or an ally within 5 feet of the target scrapes off the lava. This is done by using an action to make a successful Wisdom (Medicine) check against your spellcasting save DC. The spell ends if the heated sling stone isn’t used immediately.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a sling stone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_lay-to-rest", + "fields": { + "name": "Lay to Rest", + "desc": "A pulse of searing light rushes out from you. Each undead creature within 15 feet of you must make a Constitution saving throw. A target takes 8d6 radiant damage on a failed save, or half as much damage on a successful one.\n An undead creature reduced to 0 hit points by this spell disintegrates in a burst of radiant motes, leaving anything it was wearing or carrying in a space it formerly occupied.", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of grave dirt", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "radiant" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_legend-killer", + "fields": { + "name": "Legend Killer", + "desc": "You tap into the life force of a creature that is capable of performing legendary actions. When you cast the spell, the target must make a successful Constitution saving throw or lose the ability to take legendary actions for the spell’s duration. A creature can’t use legendary resistance to automatically succeed on the saving throw against this spell. An affected creature can repeat the saving throw at the end of each of its turns, regaining 1 legendary action on a successful save. The target continues repeating the saving throw until the spell ends or it regains all its legendary actions.", + "document": "deepm", + "level": 7, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a silver scroll describing the spell’s target worth at least 1,000 gp, which the spell consumes", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_legion", + "fields": { + "name": "Legion", + "desc": "You call down a legion of shadowy soldiers in a 10-foot cube. Their features resemble a mockery of once-living creatures. Whenever a creature starts its turn inside the cube or within 5 feet of it, or enters the cube for the first time on its turn, the conjured shades make an attack using your melee spell attack modifier; on a hit, the target takes 3d8 necrotic damage. The space inside the cube is difficult terrain.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a toy soldier", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_legion-of-rabid-squirrels", + "fields": { + "name": "Legion of Rabid Squirrels", + "desc": "While in a forest, you call a legion of rabid squirrels to descend from the nearby trees at a point you can see within range. The squirrels form into a swarm that uses the statistics of a [swarm of poisonous snakes](https://api.open5e.com/monsters/swarm-of-poisonous-snakes), except it has a climbing speed of 30 feet rather than a swimming speed. The legion of squirrels is friendly to you and your companions. Roll initiative for the legion, which has its own turns. The legion of squirrels obeys your verbal commands (no action required by you). If you don’t issue any commands to the legion, it defends itself from hostile creatures but otherwise takes no actions. If you command it to move farther than 60 feet from you, the spell ends and the legion disperses back into the forest. A canid, such as a dog, wolf, fox, or worg, has disadvantage on attack rolls against targets other than the legion of rabid squirrels while the swarm is within 60 feet of the creature. When the spell ends, the squirrels disperse back into the forest.\n", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the legion’s poison damage increases by 1d6 for each slot level above 3rd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an acorn or nut", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_lesser-maze", + "fields": { + "name": "Lesser Maze", + "desc": "This spell functions as [maze](https://api.open5e.com/spells/maze), but the target can resist being sent to the extradimensional prison with a successful Intelligence saving throw. In addition, the maze is easier to navigate, requiring only a DC 12 Intelligence check to escape.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_life-drain", + "fields": { + "name": "Life Drain", + "desc": "With a snarled word of Void Speech, you create a swirling vortex of purple energy. Choose a point you can see within range. Creatures within 15 feet of the point take 10d6 necrotic damage, or half that damage with a successful Constitution saving throw. For each creature damaged by the spell, you can choose one other creature within range, including yourself, that is not a construct or undead. The secondary targets regain hit points equal to half the necrotic damage you dealt.\n", + "document": "deepm", + "level": 6, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the vortex’s damage increases by 1d6 for each slot level above 6th.", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_life-from-death", + "fields": { + "name": "Life from Death", + "desc": "Your touch can siphon energy from undead to heal your wounds. Make a melee spell attack against an undead creature within your reach. On a hit, the target takes 2d6 radiant damage, and you or an ally within 30 feet of you regains hit points equal to half the amount of radiant damage dealt. If used on an ally, this effect can restore the ally to no more than half of the ally's hit point maximum. This effect can't heal an undead or a construct. Until the spell ends, you can make the attack again on each of your turns as an action.", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "2d6", + "damage_types": [ + "radiant" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_life-hack", + "fields": { + "name": "Life Hack", + "desc": "Choose up to five creatures that you can see within range. Each of the creatures gains access to a pool of temporary hit points that it can draw upon over the spell’s duration or until the pool is used up. The pool contains 120 temporary hit points. The number of temporary hit points each individual creature can draw is determined by dividing 120 by the number of creatures with access to the pool. Hit points are drawn as a bonus action by the creature gaining the temporary hit points. Any number can be drawn at once, up to the maximum allowed.\n\nA creature can’t draw temporary hit points from the pool while it has temporary hit points from any source, including a previous casting of this spell.", + "document": "deepm", + "level": 8, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a ruby worth 500 gp, which is consumed during the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_life-sense", + "fields": { + "name": "Life Sense", + "desc": "For the duration, you can sense the location of any creature that isn’t a construct or an undead within 30 feet of you, regardless of impediments to your other senses. This spell doesn’t sense creatures that are dead. A creature trying to hide its life force from you can make a Charisma saving throw. On a success, you can’t sense the creature with this casting of the spell. If you cast the spell again, the creature must make the saving throw again to remain hidden from your senses.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a clear piece of quartz", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_life-transference-arrow", + "fields": { + "name": "Life Transference Arrow", + "desc": "You create a glowing arrow of necrotic magic and command it to strike a creature you can see within range. The arrow can have one of two effects; you choose which at the moment of casting. If you make a successful ranged spell attack, you and the target experience the desired effect. If the attack misses, the spell fails.\n* The arrow deals 2d6 necrotic damage to the target, and you heal the same amount of hit points.\n* You take 2d6 necrotic damage, and the target heals the same amount of hit points.\n", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the spell’s damage and hit points healed increase by 1d6 for each slot level above 1st.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_litany-of-sure-hands", + "fields": { + "name": "Litany of Sure Hands", + "desc": "This spell allows a creature within range to quickly perform a simple task (other than attacking or casting a spell) as a bonus action on its turn. Examples include finding an item in a backpack, drinking a potion, and pulling a rope. Other actions may also fall into this category, depending on the GM's ruling. The target also ignores the loading property of weapons.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_living-shadows", + "fields": { + "name": "Living Shadows", + "desc": "You whisper sibilant words of void speech that cause shadows to writhe with unholy life. Choose a point you can see within range. Writhing shadows spread out in a 15-foot-radius sphere centered on that point, grasping at creatures in the area. A creature that starts its turn in the area or that enters the area for the first time on its turn must make a successful Strength saving throw or be restrained by the shadows. A creature that starts its turn restrained by the shadows must make a successful Constitution saving throw or gain one level of exhaustion.\n\nA restrained creature can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.", + "document": "deepm", + "level": 5, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 15, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_lock-armor", + "fields": { + "name": "Lock Armor", + "desc": "You target a piece of metal equipment or a metal construct. If the target is a creature wearing metal armor or is a construct, it makes a Wisdom saving throw to negate the effect. On a failed save, the spell causes metal to cling to metal, making it impossible to move pieces against each other. This effectively paralyzes a creature that is made of metal or that is wearing metal armor with moving pieces; for example, scale mail would lock up because the scales must slide across each other, but a breastplate would be unaffected. Limited movement might still be possible, depending on how extensive the armor is, and speech is usually not affected. Metal constructs are paralyzed. An affected creature or construct can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A grease spell dispels lock armor on everything in its area.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of rust and metal shavings", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_looping-trail", + "fields": { + "name": "Looping Trail", + "desc": "You touch a trail no more than 1 mile in length, reconfiguring it to give it switchbacks and curves that make the trail loop back on itself. For the duration, the trail makes subtle changes in its configuration and in the surrounding environment to give the impression of forward progression along a continuous path. A creature on the trail must succeed on a Wisdom (Survival) check to notice that the trail is leading it in a closed loop.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of rope twisted into a loop", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_lovesick", + "fields": { + "name": "Lovesick", + "desc": "This spell causes creatures to behave unpredictably, as they randomly experience the full gamut of emotions of someone who has fallen head over heels in love. Each creature in a 10-foot-radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\n\nAn affected target can’t take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|-|-|\n| 1-3 | The creature spends its turn moping like a lovelorn teenager; it doesn’t move or take actions. |\n| 4–5 | The creature bursts into tears, takes the Dash action, and uses all its movement to run off in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. |\n| 6 | The creature uses its action to remove one item of clothing or piece of armor. Each round spent removing pieces of armor reduces its AC by 1. |\n| 7–8 | The creature drops anything it is holding in its hands and passionately embraces a randomly determined creature. Treat this as a grapple attempt which uses the Attack action. |\n| 9 | The creature flies into a jealous rage and uses its action to make a melee attack against a randomly determined creature. |\n| 10 | The creature can act and move normally. |\n\nAt the end of each of its turns, an affected target can make a Wisdom saving throw, ending the effect on itself on a successful save.\n", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of red rose petals", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 10, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_maddening-whispers", + "fields": { + "name": "Maddening Whispers", + "desc": "You whisper a string of Void Speech toward a target within range that can hear you. The target must succeed on a Charisma saving throw or be incapacitated. While incapacitated by this spell, the target’s speed is 0, and it can’t benefit from increases to its speed. To maintain the effect for the duration, you must use your action on subsequent turns to continue whispering; otherwise, the spell ends. The spell also ends if the target takes damage.", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_maim", + "fields": { + "name": "Maim", + "desc": "Your hands become claws bathed in necrotic energy. Make a melee spell attack against a creature you can reach. On a hit, the target takes 4d6 necrotic damage and a section of its body of your choosing withers:\n ***Upper Limb.*** The target has disadvantage on Strength checks, and, if it has the Multiattack action, it has disadvantage on its first attack roll each round.\n ***Lower Limb.*** The target's speed is reduced by 10 feet, and it has disadvantage on Dexterity checks.\n ***Body.*** Choose one damage type: bludgeoning, piercing, or slashing. The target loses its resistance to that damage type. If the target doesn't have resistance to the chosen damage type, it is vulnerable to that damage type instead.\n The effect is permanent until removed by *remove curse*, *greater restoration*, or similar magic.", + "document": "deepm", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "4d6", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_malevolent-waves", + "fields": { + "name": "Malevolent Waves", + "desc": "You create an invisible miasma that fills the area within 30 feet of you. All your allies have advantage on Dexterity (Stealth) checks they make within 30 feet of you, and all your enemies are poisoned while within that radius.", + "document": "deepm", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a profane object that has been bathed in blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_mammons-due", + "fields": { + "name": "Mammon’s Due", + "desc": "You summon a cylindrical sinkhole filled with burning ash and grasping arms made of molten metal at a point on the ground you can see within range. The sinkhole is 20 feet deep and 50 feet in diameter, and is difficult terrain. A creature that’s in the area when the spell is cast, or that begins its turn in the area or enters it during its turn, takes 10d6 fire damage and must make a Strength or Dexterity (creature’s choice) saving throw. On a failed save, the creature is restrained by the molten arms, which try to drag it below the surface of the ash.\n\nA creature that’s restrained by the arms at the start of your turn must make a successful Strength saving throw or be pulled 5 feet farther down into the ash. A creature pulled below the surface is blinded, deafened, and can’t breathe. To escape, a creature must use an action to make a successful Strength or Dexterity check against your spell save DC. On a successful check, the creature is no longer restrained and can move through the difficult terrain of the ash pit. It doesn’t need to make a Strength or Dexterity saving throw this turn to not be grabbed by the arms again, but it must make the saving throw as normal if it’s still in the ash pit at the start of its next turn.\n\nThe diameter of the ash pit increases by 10 feet at the start of each of your turns for the duration of the spell. The ash pit remains after the spell ends, but the grasping arms disappear and restrained creatures are freed automatically. As the ash slowly cools, it deals 1d6 less fire damage for each hour that passes after the spell ends.", + "document": "deepm", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "500 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "11 gilded human skulls worth 150 gp each, which are consumed by the spell", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_mark-prey", + "fields": { + "name": "Mark Prey", + "desc": "You choose a creature you can see within range as your prey. Until the spell ends, you have advantage on Wisdom (Perception) and Wisdom (Survival) checks to find or track your prey. In addition, the target is outlined in light that only you can see. Any attack roll you make against your prey has advantage if you can see it, and your prey can't benefit from being invisible against you. If the target drops to 0 hit points before this spell ends, you can use a bonus action on a subsequent turn to mark a new target as your prey.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 4th level, you can maintain your concentration on the spell for up to 8 hours. When you use a spell slot of 5th level or higher, you can maintain your concentration on the spell for up to 24 hours.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_mass-hobble-mount", + "fields": { + "name": "Mass Hobble Mount", + "desc": "When you cast **mass hobble mount**, you make separate ranged spell attacks against up to six horses, wolves, or other four-legged or two-legged beasts being ridden as mounts within 60 feet of you. The targets can be different types of beasts and can have different numbers of legs. Each beast hit by your spell is disabled so that it can’t move at its normal speed without incurring injury. An affected creature that moves more than half its base speed in a turn takes 4d6 bludgeoning damage.\n\nThis spell has no effect on a creature that your GM deems to not be a mount.\n", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_mass-surge-dampener", + "fields": { + "name": "Mass Surge Dampener", + "desc": "Using your strength of will, you protect up to three creatures other than yourself from the effect of a chaos magic surge. A protected creature can make a DC 13 Charisma saving throw to negate the effect of a chaos magic surge that does not normally allow a saving throw, or it gains advantage on a saving throw that is normally allowed. Once a protected creature makes a successful saving throw allowed by **mass surge dampener**, the spell’s effect ends for that creature.", + "document": "deepm", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute, or until expended", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_maw-of-needles", + "fields": { + "name": "Maw of Needles", + "desc": "A spiny array of needle-like fangs protrudes from your gums, giving you a spiny bite. For the duration, you can use your action to make a melee spell attack with the bite. On a hit, the target takes 2d6 piercing damage and must succeed on a Dexterity saving throw or some of the spines in your mouth break off, sticking in the target. Until this spell ends, the target must succeed on a Constitution saving throw at the start of each of its turns or take 1d6 piercing damage from the spines. If you hit a target that has your spines stuck in it, your attack deals extra damage equal to your spellcasting ability modifier, and more spines don’t break off in the target. Your spines can stick in only one target at a time. If your spines stick into another target, the spines on the previous target crumble to dust, ending the effect on that target.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage of the spiny bite and the spines increases by 1d6 for every two slot levels above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": true, + "damage_roll": "2d6", + "damage_types": [ + "piercing" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_memento-mori", + "fields": { + "name": "Memento Mori", + "desc": "You transform yourself into a horrifying vision of death, rotted and crawling with maggots, exuding the stench of the grave. Each creature that can see you must succeed on a Charisma saving throw or be stunned until the end of your next turn.\n\nA creature that succeeds on the saving throw is immune to further castings of this spell for 24 hours.", + "document": "deepm", + "level": 0, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_mephitic-croak", + "fields": { + "name": "Mephitic Croak", + "desc": "You release an intensely loud burp of acidic gas in a 15-foot cone. Creatures in the area take 2d6 acid damage plus 2d6 thunder damage, or half as much damage with a successful Dexterity saving throw. A creature whose Dexterity saving throw fails must also make a successful Constitution saving throw or be stunned and poisoned until the start of your next turn.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, both acid and thunder damage increase by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dead toad and a dram of arsenic worth 10 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 15, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_mind-exchange", + "fields": { + "name": "Mind Exchange", + "desc": "One humanoid of your choice that you can see within range must make a Charisma saving throw. On a failed save, you project your mind into the body of the target. You use the target’s statistics but don’t gain access to its knowledge, class features, or proficiencies, retaining your own instead. Meanwhile, the target’s mind is shunted into your body, where it uses your statistics but likewise retains its own knowledge, class features, and proficiencies.\n\nThe exchange lasts until either of the the two bodies drops to 0 hit points, until you end it as a bonus action, or until you are forced out of the target body by an effect such as a [dispel magic](https://api.open5e.com/spells/dispel-magic) or [dispel evil and good](https://api.open5e.com/spells/dispel-evil-and-good) spell (the latter spell defeats **mind exchange** even though possession by a humanoid isn’t usually affected by that spell). When the effect of this spell ends, both switched minds return to their original bodies. The target of the spell is immune to mind exchange for 24 hours after succeeding on the saving throw or after the exchange ends.\n\nThe effects of the exchange can be made permanent with a [wish](https://api.open5e.com/spells/wish) spell or comparable magic.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a prism and silver coin", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_mire", + "fields": { + "name": "Mire", + "desc": "When you cast mire, you create a 10-foot-diameter pit of quicksand, sticky mud, or a similar dangerous natural hazard suited to the region. A creature that’s in the area when the spell is cast or that enters the affected area must make a successful Strength saving throw or sink up to its waist and be restrained by the mire. From that point on, the mire acts as quicksand, but the DC for Strength checks to escape from the quicksand is equal to your spell save DC. A creature outside the mire trying to pull another creature free receives a +5 bonus on its Strength check.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of sand mixed with water", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_misstep", + "fields": { + "name": "Misstep", + "desc": "You gesture to a creature within range that you can see. If the target fails a Wisdom saving throw, it uses its reaction to move 5 feet in a direction you dictate. This movement does not provoke opportunity attacks. The spell automatically fails if you direct the target into a dangerous area such as a pit trap, a bonfire, or off the edge of a cliff, or if the target has already used its reaction.", + "document": "deepm", + "level": 0, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_mist-of-wonders", + "fields": { + "name": "Mist of Wonders", + "desc": "A colorful mist surrounds you out to a radius of 30 feet. Creatures inside the mist see odd shapes in it and hear random sounds that don’t make sense. The very concepts of order and logic don’t seem to exist inside the mist.\n\nAny 1st-level spell that’s cast in the mist by another caster or that travels through the mist is affected by its strange nature. The caster must make a Constitution saving throw when casting the spell. On a failed save, the spell transforms into another 1st-level spell the caster knows (chosen by the GM from those available), even if that spell is not currently prepared. The altered spell’s slot level or its original target or targeted area can’t be changed. Cantrips are unaffected. If (in the GM’s judgment) none of the caster’s spells known of that level can be transformed, the spell being cast simply fails.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, it affects any spell cast using a spell slot of any lower level. For instance, using a 6th-level slot enables you to transform a spell of 5th level or lower into another spell of the same level.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_monstrous-empathy", + "fields": { + "name": "Monstrous Empathy", + "desc": "This spell lets you forge a connection with a monstrosity. Choose a monstrosity that you can see within range. It must see and hear you. If the monstrosity’s Intelligence is 4 or higher, the spell fails. Otherwise, the monstrosity must succeed on a Wisdom saving throw or be charmed by you for the spell’s duration. If you or one of your companions harms the target, the spell ends.\n", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional monstrosity for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a morsel of food", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_moon-trap", + "fields": { + "name": "Moon Trap", + "desc": "While casting this spell under the light of the moon, you inscribe a glyph that covers a 10-foot-square area on a flat, stationary surface such as a floor or a wall. Once the spell is complete, the glyph is invisible in moonlight but glows with a faint white light in darkness.\n\nAny creature that touches the glyph, except those you designate during the casting of the spell, must make a successful Wisdom saving throw or be drawn into an inescapable maze until the sun rises.\n\nThe glyph lasts until the next sunrise, at which time it flares with bright light, and any creature trapped inside returns to the space it last occupied, unharmed. If that space has become occupied or dangerous, the creature appears in the nearest safe unoccupied space.", + "document": "deepm", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "powdered silver worth 250 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "up to 8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_mosquito-bane", + "fields": { + "name": "Mosquito Bane", + "desc": "This spell kills any insects or swarms of insects within range that have a total of 25 hit points or fewer.\n", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the number of hit points affected increases by 15 for each slot level above 1st. Thus, a 2nd-level spell kills insects or swarms that have up to 40 hit points, a 3rd-level spell kills those with 55 hit points or fewer, and so forth, up to a maximum of 85 hit points for a slot of 6th level or higher.", + "target_type": "point", + "range": "50 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_mud-pack", + "fields": { + "name": "Mud Pack", + "desc": "This spell covers you or a willing creature you touch in mud consistent with the surrounding terrain. For the duration, the spell protects the target from extreme cold and heat, allowing the target to automatically succeed on Constitution saving throws against environmental hazards related to temperature. In addition, the target has advantage on Dexterity (Stealth) checks while traveling at a slow pace in the terrain related to the component for this spell.\n\nIf the target is subject to heavy precipitation for 1 minute, the precipitation removes the mud, ending the spell.\n", + "document": "deepm", + "level": 1, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is 8 hours and you can target up to ten willing creatures within 30 feet of you.", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a clump of mud", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_negative-image", + "fields": { + "name": "Negative Image", + "desc": "You create a shadow-tunnel between your location and one other creature you can see within range. You and that creature instantly swap positions. If the target creature is unwilling to exchange places with you, it can resist the effect by making a Charisma saving throw. On a successful save, the spell has no effect.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of reflective obsidian", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_nether-weapon", + "fields": { + "name": "Nether Weapon", + "desc": "You whisper in Void Speech and touch a weapon. Until the spell ends, the weapon turns black, becomes magical if it wasn’t before, and deals 2d6 necrotic damage (in addition to its normal damage) on a successful hit. A creature that takes necrotic damage from the enchanted weapon can’t regain hit points until the start of your next turn.\n", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d6 for each slot level above 4th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "ink, chalk, or some other writing medium", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_night-terrors", + "fields": { + "name": "Night Terrors", + "desc": "You amplify the fear that lurks in the heart of all creatures. Select a target point you can see within the spell’s range. Every creature within 20 feet of that point becomes frightened until the start of your next turn and must make a successful Wisdom saving throw or become paralyzed. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Creatures immune to being frightened are not affected by **night terrors**.", + "document": "deepm", + "level": 4, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a crow’s eye", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_nightfall", + "fields": { + "name": "Nightfall", + "desc": "You call upon night to arrive ahead of schedule. With a sharp word, you create a 30-foot-radius cylinder of night centered on a point on the ground within range. The cylinder extends vertically for 100 feet or until it reaches an obstruction, such as a ceiling. The area inside the cylinder is normal darkness, and thus heavily obscured. Creatures inside the darkened cylinder can see illuminated areas outside the cylinder normally.", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "100 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "cylinder", + "shape_magnitude": 30, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_nip-at-the-heels", + "fields": { + "name": "Nip at the Heels", + "desc": "You create an illusory pack of wild dogs that bark and nip at one creature you can see within range, which must make a Wisdom saving throw. On a failed save, the target has disadvantage on ability checks and attack rolls for the duration as it is distracted by the dogs. At the end of each of its turns, the target can make a Wisdom saving throw, ending the effect on itself on a successful save. A target that is at least 10 feet off the ground (in a tree, flying, and so forth) has advantage on the saving throw, staying just out of reach of the jumping and barking dogs.\n", + "document": "deepm", + "level": 2, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dog’s tooth", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_not-dead-yet", + "fields": { + "name": "Not Dead Yet", + "desc": "You cast this spell while touching the cloth doll against the intact corpse of a Medium or smaller humanoid that died within the last hour. At the end of the casting, the body reanimates as an undead creature under your control. While the spell lasts, your consciousness resides in the animated body. You can use an action to manipulate the body’s limbs in order to make it move, and you can see and hear through the body’s eyes and ears, but your own body becomes unconscious. The animated body can neither attack nor defend itself. This spell doesn’t change the appearance of the corpse, so further measures might be needed if the body is to be used in a way that involves fooling observers into believing it’s still alive. The spell ends instantly, and your consciousness returns to your body, if either your real body or the animated body takes any damage.\n\nYou can’t use any of the target’s abilities except for nonmagical movement and darkvision. You don’t have access to its knowledge, proficiencies, or anything else that was held in its now dead mind, and you can’t make it speak.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a cloth doll filled with herbs and diamond dust worth 100 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_not-this-day", + "fields": { + "name": "Not This Day!", + "desc": "The creature you touch gains protection against either a specific damage type (slashing, poison, fire, radiant, and the like) or a category of creature (giant, beast, elemental, monstrosity, and so forth) that you name when the spell is cast. For the next 24 hours, the target has advantage on saving throws involving that type of damage or kind of creature, including death saving throws if the attack that dropped the target to 0 hit points is affected by this spell. A character can be under the effect of only a single **not this day!** spell at one time; a second casting on the same target cancels the preexisting protection.", + "document": "deepm", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_orb-of-light", + "fields": { + "name": "Orb of Light", + "desc": "An orb of light the size of your hand shoots from your fingertips toward a creature within range, which takes 3d8 radiant damage and is blinded for 1 round. A target that makes a successful Dexterity saving throw takes half the damage and is not blinded.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "radiant" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_outflanking-boon", + "fields": { + "name": "Outflanking Boon", + "desc": "This spell targets one enemy, which must make a Wisdom saving throw. On a failed save, an illusory ally of yours appears in a space from which it threatens to make a melee attack against the target. Your allies gain advantage on melee attacks against the target for the duration because of the distracting effect of the illusion. An affected target repeats the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the spell targets one additional enemy for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_paragon-of-chaos", + "fields": { + "name": "Paragon of Chaos", + "desc": "You become a humanoid-shaped swirling mass of color and sound. You gain resistance to bludgeoning, piercing, and slashing damage, and immunity to poison and psychic damage. You are also immune to the following conditions: exhaustion, paralyzed, petrified, poisoned, and unconscious. Finally, you gain truesight to 30 feet and can teleport 30 feet as a move.\n\nEach round, as a bonus action, you can cause an automatic chaos magic surge, choosing either yourself or another creature you can see within 60 feet as the caster for the purpose of resolving the effect. You must choose the target before rolling percentile dice to determine the nature of the surge. The DC of any required saving throw is calculated as if you were the caster.", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_pendulum", + "fields": { + "name": "Pendulum", + "desc": "You give the touched creature an aspect of regularity in its motions and fortunes. If the target gets a failure on a Wisdom saving throw, then for the duration of the spell it doesn’t make d20 rolls—to determine the results of attack rolls, ability checks, and saving throws it instead follows the sequence 20, 1, 19, 2, 18, 3, 17, 4, and so on.", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small pendulum or metronome made of brass and rosewood worth 10 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_phantom-dragon", + "fields": { + "name": "Phantom Dragon", + "desc": "You tap your dragon magic to make an ally appear as a draconic beast. The target of the spell appears to be a dragon of size Large or smaller. When seeing this illusion, observers make a Wisdom saving throw to see through it.\n\nYou can use an action to make the illusory dragon seem ferocious. Choose one creature within 30 feet of the illusory dragon to make a Wisdom saving throw. If it fails, the creature is frightened. The creature remains frightened until it uses an action to make a successful Wisdom saving throw or the spell’s duration expires.\n", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, increase the number of targets the illusion can affect by one for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of dragon egg shell", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_pitfall", + "fields": { + "name": "Pitfall", + "desc": "A pit opens under a Huge or smaller creature you can see within range that does not have a flying speed. This pit isn’t a simple hole in the floor or ground, but a passage to an extradimensional space. The target must succeed on a Dexterity saving throw or fall into the pit, which closes over it. At the end of your next turn, a new portal opens 20 feet above where the pit was located, and the creature falls out. It lands prone and takes 6d6 bludgeoning damage.\n\nIf the original target makes a successful saving throw, you can use a bonus action on your turn to reopen the pit in any location within range that you can see. The spell ends when a creature has fallen through the pit and taken damage, or when the duration expires.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_poisoned-volley", + "fields": { + "name": "Poisoned Volley", + "desc": "By drawing back and releasing an imaginary bowstring, you summon forth dozens of glowing green arrows. The arrows dissipate when they hit, but all creatures in a 20-foot square within range take 3d8 poison damage and become poisoned. A creature that makes a successful Constitution saving throw takes half as much damage and is not poisoned.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_potency-of-the-pack", + "fields": { + "name": "Potency of the Pack", + "desc": "You bestow lupine traits on a group of living creatures that you designate within range. Choose one of the following benefits to be gained by all targets for the duration:\n\n* ***Thick Fur.*** Each target sprouts fur over its entire body, giving it a +2 bonus to Armor Class.\n* ***Keen Hearing and Smell.*** Each target has advantage on Wisdom (Perception) checks that rely on hearing or smell.\n* ***Pack Tactics.*** Each affected creature has advantage on an attack roll against a target if at least one of the attacker’s allies (also under the effect of this spell) is within 5 feet of the target of the attack and the ally isn’t incapacitated.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 minute for each slot level above 3rd.", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a few hairs from a wolf", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_power-word-kneel", + "fields": { + "name": "Power Word Kneel", + "desc": "When you shout this word of power, creatures within 20 feet of a point you specify are compelled to kneel down facing you. A kneeling creature is treated as prone. Up to 55 hit points of creatures are affected, beginning with those that have the fewest hit points. A kneeling creature makes a Wisdom saving throw at the end of its turn, ending the effect on itself on a successful save. The effect ends immediately on any creature that takes damage while kneeling.", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an emerald worth at least 100 gp", + "material_cost": "100.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_power-word-pain", + "fields": { + "name": "Power Word Pain", + "desc": "When you utter this word of power, one creature within 60 feet of you takes 4d10 force damage. At the start of each of its turns, the creature must make a successful Constitution saving throw or take an extra 4d10 force damage. The effect ends on a successful save.", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a quill jabbed into your own body", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d10", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_primal-infusion", + "fields": { + "name": "Primal Infusion", + "desc": "You channel the fury of nature, drawing on its power. Until the spell ends, you gain the following benefits:\n* You gain 30 temporary hit points. If any of these remain when the spell ends, they are lost.\n* You have advantage on attack rolls when one of your allies is within 5 feet of the target and the ally isn’t incapacitated.\n* Your weapon attacks deal an extra 1d10 damage of the same type dealt by the weapon on a hit.\n* You gain a +2 bonus to AC.\n* You have proficiency on Constitution saving throws.", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a bit of fur from a carnivorous animal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_prismatic-ray", + "fields": { + "name": "Prismatic Ray", + "desc": "A ray of shifting color springs from your hand. Make a ranged spell attack against a single creature you can see within range. The ray’s effect and the saving throw that applies to it depend on which color is dominant when the beam strikes its target, determined by rolling a d8.\n\n| d8 | Color | Effect | Saving Throw |\n|-|-|-|-|\n| 1 | Red | 8d10 fire damage | Dexterity |\n| 2 | Orange | 8d10 acid damage | Dexterity |\n| 3 | Yellow | 8d10 lightning damage | Dexterity |\n| 4 | Green | Target Poisoned | Constitution |\n| 5 | Blue | Target Deafened | Constitution |\n| 6 | Indigo | Target Frightened | Wisdom |\n| 7 | Violet | Target Stunned | Constitution |\n| 8 | Shifting Ray | Target Blinded | Constitution |\n\nA target takes half as much damage on a successful Dexterity saving throw. A successful Constitution or Wisdom saving throw negates the effect of a ray that inflicts a condition on the target; on a failed save, the target is affected for 5 rounds or until the effect is negated. If the result of your attack roll is a critical hit, you can choose the color of the beam that hits the target, but the attack does not deal additional damage.", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_protection-from-the-void", + "fields": { + "name": "Protection from the Void", + "desc": "Until the spell ends, one willing creature you touch has resistance to necrotic and psychic damage and has advantage on saving throws against Void spells.", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small bar of silver worth 15 sp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_protective-ice", + "fields": { + "name": "Protective Ice", + "desc": "When you cast **protective ice**, you encase a willing target in icy, medium armor equivalent to a breastplate (AC 14). A creature without the appropriate armor proficiency has the usual penalties. If the target is already wearing armor, it only uses the better of the two armor classes.\n\nA creature striking a target encased in **protective ice** with a melee attack while within 5 feet of it takes 1d6 cold damage.\n\nIf the armor’s wearer takes fire damage, an equal amount of damage is done to the armor, which has 30 hit points and is damaged only when its wearer takes fire damage. Damaged ice can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis, but the armor can’t have more than 30 points repaired.\n", + "document": "deepm", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a 4th-level spell slot, it creates splint armor (AC 17, 40 hit points). If you cast this spell using a 5th-level spell slot, it creates plate armor (AC 18, 50 hit points). The armor’s hit points increase by 10 for each spell slot above 5th, but the AC remains 18. Additionally, if you cast this spell using a spell slot of 4th level or higher, the armor deals an extra +2 cold damage for each spell slot above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a seed encased in ice or glass", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "cold" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_puff-of-smoke", + "fields": { + "name": "Puff of Smoke", + "desc": "By harnessing the elemental power of fire, you warp nearby air into obscuring smoke. One creature you can see within range must make a Dexterity saving throw. If it fails, the creature is blinded until the start of your next turn. **Puff of smoke** has no effect on creatures that have tremorsense or blindsight.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_pummelstone", + "fields": { + "name": "Pummelstone", + "desc": "You cause a fist-sized chunk of stone to appear and hurl itself against the spell’s target. Make a ranged spell attack. On a hit, the target takes 1d6 bludgeoning damage and must roll a d4 when it makes an attack roll or ability check during its next turn, subtracting the result of the d4 from the attack or check roll.", + "document": "deepm", + "level": 0, + "school": "conjuration", + "higher_level": "The spell’s damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pebble", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_pyroclasm", + "fields": { + "name": "Pyroclasm", + "desc": "You point toward an area of ground or a similar surface within range. A geyser of lava erupts from the chosen spot. The geyser is 5 feet in diameter and 40 feet high. Each creature in the cylinder when it erupts or at the start of your turn takes 10d8 fire damage, or half as much damage if it makes a successful Dexterity saving throw.\n\nThe geyser also forms a pool of lava at its base. Initially, the pool is the same size as the geyser, but at the start of each of your turns for the duration, the pool’s radius increases by 5 feet. A creature in the pool of lava (but not in the geyser) at the start of your turn takes 5d8 fire damage.\n\nWhen a creature leaves the pool of lava, its speed is reduced by half and it has disadvantage on Dexterity saving throws, caused by a hardening layer of lava. These penalties last until the creature uses an action to break the hardened stone away from itself.\n\nIf you maintain concentration on **pyroclasm** for a full minute, the lava geyser and pool harden into permanent, nonmagical stone. A creature in either area when the stone hardens is restrained until the stone is broken away.", + "document": "deepm", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "500 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a shard of obsidian", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "10d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_quick-time", + "fields": { + "name": "Quick Time", + "desc": "You make one living creature or plant within range move rapidly in time compared to you. The target becomes one year older. For example, you could cast this spell on a seedling, which causes the plant to sprout from the soil, or you could cast this spell on a newly hatched duckling, causing it to become a full-grown duck. If the target is a creature with an Intelligence of 3 or higher, it must succeed on a Constitution saving throw to resist the aging. It can choose to fail the saving throw.\n", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you increase the target’s age by one additional year for each slot level above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "any seed", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_quicken", + "fields": { + "name": "Quicken", + "desc": "You touch one willing creature. Once before the duration of the spell expires, the target can roll a d4 and add the number rolled to an initiative roll or Dexterity saving throw it has just made. The spell then ends.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_quicksilver-mantle", + "fields": { + "name": "Quicksilver Mantle", + "desc": "You transform an ordinary cloak into a highly reflective, silvery garment. This mantle increases your AC by 2 and grants advantage on saving throws against gaze attacks. In addition, whenever you are struck by a ray such as a [ray of enfeeblement](https://api.open5e.com/spells/ray-of-enfeeblement), [scorching ray](https://api.open5e.com/spells/scorching-ray), or even [disintegrate](https://api.open5e.com/spells/disintegrate), roll 1d4. On a result of 4, the cloak deflects the ray, which instead strikes a randomly selected target within 10 feet of you. The cloak deflects only the first ray that strikes it each round; rays after the first affect you as normal.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a nonmagical cloak and a dram of quicksilver worth 10 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_quintessence", + "fields": { + "name": "Quintessence", + "desc": "By calling upon an archangel, you become infused with celestial essence and take on angelic features such as golden skin, glowing eyes, and ethereal wings. For the duration of the spell, your Armor Class can’t be lower than 20, you can’t be frightened, and you are immune to necrotic damage.\n\nIn addition, each hostile creature that starts its turn within 120 feet of you or enters that area for the first time on a turn must succeed on a Wisdom saving throw or be frightened for 1 minute. A creature frightened in this way is restrained. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature’s saving throw is successful or if the effect ends for it, the creature is immune to the frightening effect of the spell until you cast **quintessence** again.", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_raid-the-lair", + "fields": { + "name": "Raid the Lair", + "desc": "You create an invisible circle of protective energy centered on yourself with a radius of 10 feet. This field moves with you. The caster and all allies within the energy field are protected against dragons’ lair actions.\n* Attack rolls resulting directly from lair actions are made with disadvantage.\n* Saving throws resulting directly from lair actions are made with advantage, and damage done by these lair actions is halved.\n* Lair actions occur on an initiative count 10 lower than normal.\n\nThe caster has advantage on Constitution saving throws to maintain concentration on this spell.", + "document": "deepm", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of the dragon whose lair you are raiding", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_rain-of-blades", + "fields": { + "name": "Rain of Blades", + "desc": "You call down a rain of swords, spears, and axes. The blades fill 150 square feet (six 5-foot squares, a circle 15 feet in diameter, or any other pattern you want as long as it forms one contiguous space at least 5 feet wide in all places. The blades deal 6d6 slashing damage to each creature in the area at the moment the spell is cast, or half as much damage on a successful Dexterity saving throw. An intelligent undead injured by the blades is frightened for 1d4 rounds if it fails a Charisma saving throw. Most of the blades break or are driven into the ground on impact, but enough survive intact that any single piercing or slashing melee weapon can be salvaged from the affected area and used normally if it is claimed before the spell ends. When the duration expires, all the blades (including the one that was salvaged) disappear.\n", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, an unbroken blade can be picked up and used as a magical +1 weapon until it disappears.", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "shard of metal from a weapon", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "4 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ray-of-alchemical-negation", + "fields": { + "name": "Ray of Alchemical Negation", + "desc": "You launch a ray of blazing, polychromatic energy from your fingertips. Make a ranged spell attack against an alchemical item or a trap that uses alchemy to achieve its ends, such as a trap that sprays acid, releases poisonous gas, or triggers an explosion of alchemist’s fire. A hit destroys the alchemical reagents, rendering them harmless. The attack is made against the most suitable object Armor Class.\n\nThis spell can also be used against a creature within range that is wholly or partially composed of acidic, poisonous, or alchemical components, such as an alchemical golem or an ochre jelly. In that case, a hit deals 6d6 force damage, and the target must make a successful Constitution saving throw or it deals only half as much damage with its acidic, poisonous, or alchemical attacks for 1 minute. A creature whose damage is halved can repeat the saving throw at the end of each of its turns, ending the effect on a success.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ray-of-life-suppression", + "fields": { + "name": "Ray of Life Suppression", + "desc": "You launch a swirling ray of disruptive energy at a creature within range. Make a ranged spell attack. On a hit, the creature takes 6d8 necrotic damage and its maximum hit points are reduced by an equal amount. This reduction lasts until the creature finishes a short or long rest, or until it receives the benefit of a [greater restoration](https://api.open5e.com/spells/greater-restoration) spell or comparable magic.\n\nThis spell has no effect on constructs or undead.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "6d8", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_reaver-spirit", + "fields": { + "name": "Reaver Spirit", + "desc": "You inspire allies to fight with the savagery of berserkers. You and any allies you can see within range have advantage on Strength checks and Strength saving throws; resistance to bludgeoning, piercing, and slashing damage from nonmagical attacks; and a +2 bonus to damage with melee weapons.\n\nWhen the spell ends, each affected creature must succeed on a Constitution saving throw or gain 1d4 levels of exhaustion.\n", + "document": "deepm", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bonus to damage increases by 1 for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_reposition", + "fields": { + "name": "Reposition", + "desc": "You designate up to three friendly creatures (one of which can be yourself) within range. Each target teleports to an unoccupied space of its choosing that it can see within 30 feet of itself.", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the spell targets one additional friendly creature for each slot level above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_reset", + "fields": { + "name": "Reset", + "desc": "Choose up to four creatures within range. If a target is your ally, it can reroll initiative, keeping whichever of the two results it prefers. If a target is your enemy, it must make a successful Wisdom saving throw or reroll initiative, keeping whichever of the two results you prefer. Changes to the initiative order go into effect at the start of the next round.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can affect one additional creature for each slot level above 4th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 4, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_reverberate", + "fields": { + "name": "Reverberate", + "desc": "You touch the ground at your feet with the metal ring, creating an impact that shakes the earth ahead of you. Creatures and unattended objects touching the ground in a 15-foot cone emanating from you take 4d6 thunder damage, and creatures fall prone; a creature that makes a successful Dexterity saving throw takes half the damage and does not fall prone.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a metal ring", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 15, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_revive-beast", + "fields": { + "name": "Revive Beast", + "desc": "You touch a beast that has died within the last minute. That beast returns to life with 1 hit point. This spell can’t return to life a beast that has died of old age, nor can it restore any missing body parts.", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "emeralds worth 100 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_right-the-stars", + "fields": { + "name": "Right the Stars", + "desc": "You subtly warp the flow of space and time to enhance your conjurations with cosmic potency. Until the spell ends, the maximum duration of any conjuration spell you cast that requires concentration is doubled, any creature that you summon or create with a conjuration spell has 30 temporary hit points, and you have advantage on Charisma checks and Charisma saving throws.", + "document": "deepm", + "level": 7, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "seven black candles and a circle of powdered charred bone or basalt", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ring-strike", + "fields": { + "name": "Ring Strike", + "desc": "You infuse two metal rings with magic, causing them to revolve in a slow orbit around your head or hand. For the duration, when you hit a target within 60 feet of you with an attack, you can launch one of the rings to strike the target as well. The target takes 1d10 bludgeoning damage and must succeed on a Strength saving throw or be pushed 5 feet directly away from you. The ring is destroyed when it strikes.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect up to two additional rings for each spell slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "two metal rings", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "1d10", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_ring-ward", + "fields": { + "name": "Ring Ward", + "desc": "The iron ring you use to cast the spell becomes a faintly shimmering circlet of energy that spins slowly around you at a radius of 15 feet. For the duration, you and your allies inside the protected area have advantage on saving throws against spells, and all affected creatures gain resistance to one type of damage of your choice.", + "document": "deepm", + "level": 7, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an iron ring worth 200 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_riptide", + "fields": { + "name": "Riptide", + "desc": "With a sweeping gesture, you cause water to swell up into a 20-foot tall, 20-foot radius cylinder centered on a point on the ground that you can see. Each creature in the cylinder must make a Strength saving throw. On a failed save, the creature is restrained and suspended in the cylinder; on a successful save, the creature moves to just outside the nearest edge of the cylinder.\n\nAt the start of your next turn, you can direct the current of the swell as it dissipates. Choose one of the following options.\n\n* ***Riptide.*** The water in the cylinder flows in a direction you choose, sweeping along each creature in the cylinder. An affected creature takes 3d8 bludgeoning damage and is pushed 40 feet in the chosen direction, landing prone.\n* ***Undertow.*** The water rushes downward, pulling each creature in the cylinder into an unoccupied space at the center. Each creature is knocked prone and must make a successful Constitution saving throw or be stunned until the start of your next turn.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 round", + "shape_type": "cylinder", + "shape_magnitude": 20, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_rolling-thunder", + "fields": { + "name": "Rolling Thunder", + "desc": "A tremendous bell note explodes from your outstretched hand and rolls forward in a line 30 feet long and 5 feet wide. Each creature in the line must make a successful Constitution saving throw or be deafened for 1 minute. A creature made of material such as stone, crystal, or metal has disadvantage on its saving throw against this spell.\n\nWhile a creature is deafened in this way, it is wreathed in thundering energy; it takes 2d8 thunder damage at the start of its turn, and its speed is halved. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a sliver of metal from a gong", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_rotting-corpse", + "fields": { + "name": "Rotting Corpse", + "desc": "Your familiarity with the foul effects of death allows you to prevent a dead body from being returned to life using anything but the most powerful forms of magic.\n\nYou cast this spell by touching a creature that died within the last 24 hours. The body immediately decomposes to a state that prevents the body from being returned to life by the [raise dead](https://api.open5e.com/spells/raise-dead) spell (though a [resurrection](https://api.open5e.com/spells/resurrection) spell still works). At the end of this spell’s duration, the body decomposes to a rancid slime, and it can’t be returned to life except through a [true resurrection](https://api.open5e.com/spells/true-resurrection) spell.\n", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can affect one additional corpse for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a rotting piece of flesh from an undead creature", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "3 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_rune-of-imprisonment", + "fields": { + "name": "Rune of Imprisonment", + "desc": "You trace a glowing black rune in the air which streaks toward and envelops its target. Make a ranged spell attack against the target. On a successful hit, the rune absorbs the target creature, leaving only the glowing rune hanging in the space the target occupied. The subject can take no actions while imprisoned, nor can the subject be targeted or affected by any means. Any spell durations or conditions affecting the creature are postponed until the creature is freed. A dying creature does not lose hit points or stabilize until freed.\n\nA creature adjacent to the rune can use a move action to attempt to disrupt its energies; doing so allows the imprisoned creature to make a Wisdom saving throw. On a success, this disruption negates the imprisonment and ends the effect. Disruption can be attempted only once per round.", + "document": "deepm", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "ink", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_salt-lash", + "fields": { + "name": "Salt Lash", + "desc": "You create a long, thin blade of razor-sharp salt crystals. You can wield it as a longsword, using your spellcasting ability to modify your weapon attack rolls. The sword deals 2d8 slashing damage on a hit, and any creature struck by the blade must make a successful Constitution saving throw or be stunned by searing pain until the start of your next turn. Constructs and undead are immune to the blade’s secondary (stun) effect; plants and creatures composed mostly of water, such as water elementals, also take an additional 2d8 necrotic damage if they fail the saving throw.\n\nThe spell lasts until you stop concentrating on it, the duration expires, or you let go of the blade for any reason.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of salt worth 1 sp, which is consumed during the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_sand-ship", + "fields": { + "name": "Sand Ship", + "desc": "Casting **sand ship** on a water vessel up to the size of a small sailing ship transforms it into a vessel capable of sailing on sand as easily as water. The vessel still needs a trained crew and relies on wind or oars for propulsion, but it moves at its normal speed across sand instead of water for the duration of the spell. It can sail only over sand, not soil or solid rock. For the duration of the spell, the vessel doesn’t float; it must be beached or resting on the bottom of a body of water (partially drawn up onto a beach, for example) when the spell is cast, or it sinks into the water.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a boat or ship of 10,000 gp value or less", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_sanguine-horror", + "fields": { + "name": "Sanguine Horror", + "desc": "When you cast this spell, you prick yourself with the material component, taking 1 piercing damage. The spell fails if this damage is prevented or negated in any way. From the drop of blood, you conjure a [blood elemental](https://api.open5e.com/monsters/blood-elemental). The blood elemental is friendly to you and your companions for the duration. It disappears when it’s reduced to 0 hit points or when the spell ends.\n\nRoll initiative for the elemental, which has its own turns. It obeys verbal commands from you (no action required by you). If you don’t issue any commands to the blood elemental, it defends itself but otherwise takes no actions. If your concentration is broken, the blood elemental doesn’t disappear, but you lose control of it and it becomes hostile to you and your companions. An uncontrolled blood elemental cannot be dismissed by you, and it disappears 1 hour after you summoned it.", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "5 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a miniature dagger", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_scale-rot", + "fields": { + "name": "Scale Rot", + "desc": "You summon death and decay to plague your enemies. For dragons, this act often takes the form of attacking a foe’s armor and scales, as a way of weakening an enemy dragon and leaving it plagued by self-doubt and fear. (This enchantment is useful against any armored creature, not just dragons.)\n\nOne creature of your choice within range that has natural armor must make a Constitution saving throw. If it fails, attacks against that creature’s Armor Class are made with advantage, and the creature can’t regain hit points through any means while the spell remains in effect. An affected creature can end the spell by making a successful Constitution saving throw, which also makes the creature immune to further castings of **scale rot** for 24 hours.\n", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the number of affected targets increases by one for each slot level above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of rotten meat", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_scentless", + "fields": { + "name": "Scentless", + "desc": "You touch a willing creature or object that is not being worn or carried. For the duration, the target gives off no odor. A creature that relies on smell has disadvantage on Wisdom (Perception) checks to detect the target and Wisdom (Survival) checks to track the target. The target is invisible to a creature that relies solely on smell to sense its surroundings. This spell has no effect on targets with unusually strong scents, such as ghasts.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "1 ounce of pure water", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_screaming-ray", + "fields": { + "name": "Screaming Ray", + "desc": "You create a ray of psychic energy to attack your enemies. Make a ranged spell attack against a creature. On a hit, the target takes 1d4 psychic damage and is deafened until the end of your next turn. If the target succeeds on a Constitution saving throw, it is not deafened.\n", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you create one additional ray for each slot level above 1st. You can direct the rays at one target or several.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "1d4", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_scribe", + "fields": { + "name": "Scribe", + "desc": "This spell enables you to create a copy of a one-page written work by placing a blank piece of paper or parchment near the work that you are copying. All the writing, illustrations, and other elements in the original are reproduced in the new document, in your handwriting or drawing style. The new medium must be large enough to accommodate the original source. Any magical properties of the original aren’t reproduced, so you can’t use scribe to make copies of spell scrolls or magic books.", + "document": "deepm", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_scry-ambush", + "fields": { + "name": "Scry Ambush", + "desc": "You foresee your foe’s strike a split second before it occurs. When you cast this spell successfully, you also designate a number of your allies that can see or hear you equal to your spellcasting ability modifier + your proficiency bonus. Those allies are also not surprised by the attack and can act normally in the first round of combat.\n\nIf you would be surprised, you must make a check using your spellcasting ability at the moment your reaction would be triggered. The check DC is equal to the current initiative count. On a failed check, you are surprised and can’t use your reaction to cast this spell until after your next turn. On a successful check, you can use your reaction to cast this spell immediately.", + "document": "deepm", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_sculpt-snow", + "fields": { + "name": "Sculpt Snow", + "desc": "When you **cast sculpt** snow in an area filled with snow, you can create one Large object, two Medium objects, or four smaller objects from snow. With a casting time of 1 action, your sculptings bear only a crude resemblance to generic creatures or objects. If you increase the casting time to 1 minute, your creations take on a more realistic appearance and can even vaguely resemble specific creatures; the resemblance isn’t strong enough to fool anyone, but the creature can be recognized. The sculptures are as durable as a typical snowman.\n\nSculptures created by this spell can be animated with [animate objects](https://api.open5e.com/spells/animate-objects) or comparable magic. Animated sculptures gain the AC, hit points, and other attributes provided by that spell. When they attack, they deal normal damage plus a similar amount of cold damage; an animated Medium sculpture, for example, deals 2d6 + 1 bludgeoning damage plus 2d6 + 1 cold damage.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can sculpt one additional Large object for each slot level above 2nd. Two Large objects can be replaced with one Huge object.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_seal-of-sanctuary", + "fields": { + "name": "Seal of Sanctuary", + "desc": "You inscribe an angelic seal on the ground, the floor, or other solid surface of a structure. The seal creates a spherical sanctuary with a radius of 50 feet, centered on the seal. For the duration, aberrations, elementals, fey, fiends, and undead that approach to within 5 feet of the boundary know they are about to come into contact with a deadly barrier. If such a creature moves so as to touch the boundary, or tries to cross the boundary by any means, including teleportation and extradimensional travel, it must make a Charisma saving throw. On a failed save, it takes 10d8 radiant damage, is repelled to 5 feet outside the boundary, and can’t target anything inside the boundary with attacks, spells, or abilities until the spell ends. On a successful save, the creature takes half as much radiant damage and can cross the boundary. If the creature is a fiend that isn’t on its home plane, it is immediately destroyed (no saving throw) instead of taking damage.\n\nAberrations, elementals, fey, and undead that are within 50 feet of the seal (inside the boundary) have disadvantage on ability checks, attack rolls, and saving throws, and each such creature takes 2d8 radiant damage at the start of its turn.\n\nCreatures other than aberrations, elementals, fey, fiends, and undead can’t be charmed or frightened while within 50 feet of the seal.\n\nThe seal has AC 18, 50 hit points, resistance to bludgeoning, piercing, and slashing damage, and immunity to psychic and poison damage. Ranged attacks against the seal are made with disadvantage. If it is scribed on the surface of an object that is later destroyed (such as a wooden door), the seal is not damaged and remains in place, perhaps suspended in midair. The spell ends only if the seal is reduced to 0 hit points.", + "document": "deepm", + "level": 7, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "incense and special inks worth 250 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "10d8", + "damage_types": [ + "radiant" + ], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_searing-sun", + "fields": { + "name": "Searing Sun", + "desc": "This spell intensifies the light and heat of the sun, so that it burns exposed flesh. You must be able to see the sun when you cast the spell. The searing sunlight affects a cylindrical area 50 feet in radius and 200 feet high, centered on the a point within range. Each creature that starts its turn in that area takes 5d8 fire damage, or half the damage with a successful Constitution saving throw. A creature that’s shaded by a solid object —such as an awning, a building, or an overhanging boulder— has advantage on the saving throw. On your turn, you can use an action to move the center of the cylinder up to 20 feet along the ground in any direction.", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "200 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a magnifying lens", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_see-beyond", + "fields": { + "name": "See Beyond", + "desc": "This spell enables a willing creature you touch to see through any obstructions as if they were transparent. For the duration, the target can see into and through opaque objects, creatures, spells, and effects that obstruct line of sight to a range of 30 feet. Inside that distance, the creature can choose what it perceives as opaque and what it perceives as transparent as freely and as naturally as it can shift its focus from nearby to distant objects.\n\nAlthough the creature can see any target within 30 feet of itself, all other requirements must still be satisfied before casting a spell or making an attack against that target. For example, the creature can see an enemy that has total cover but can’t shoot that enemy with an arrow because the cover physically prevents it. That enemy could be targeted by a [geas](https://api.open5e.com/spells/geas) spell, however, because [geas](https://api.open5e.com/spells/geas) needs only a visible target.", + "document": "deepm", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a transparent crystal", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_seed-of-destruction", + "fields": { + "name": "Seed of Destruction", + "desc": "This spell impregnates a living creature with a rapidly gestating [hydra](https://api.open5e.com/spells/hydra) that consumes the target from within before emerging to wreak havoc on the world. Make a ranged spell attack against a living creature within range that you can see. On a hit, you implant a five‑headed embryonic growth into the creature. Roll 1d3 + 1 to determine how many rounds it takes the embryo to mature.\n\nDuring the rounds when the embryo is gestating, the affected creature takes 5d4 slashing damage at the start of its turn, or half the damage with a successful Constitution saving throw.\n\nWhen the gestation period has elapsed, a tiny hydra erupts from the target’s abdomen at the start of your turn. The hydra appears in an unoccupied space adjacent to the target and immediately grows into a full-size Huge aberration. Nearby creatures are pushed away to clear a sufficient space as the hydra grows. This creature is a standard hydra, but with the ability to cast [bane](https://api.open5e.com/spells/bane) as an action (spell save DC 11) requiring no spell components. Roll initiative for the hydra, which takes its own turns. It obeys verbal commands that you issue to it (no action required by you). If you don’t give it a command or it can’t follow your command, the hydra attacks the nearest living creature.\n\nAt the end of each of the hydra’s turns, you must make a DC 15 Charisma saving throw. On a successful save, the hydra remains under your control and friendly to you and your companions. On a failed save, your control ends, the hydra becomes hostile to all creatures, and it attacks the nearest creature to the best of its ability.\n\nThe hydra disappears at the end of the spell’s duration, or its existence can be cut short with a [wish](https://api.open5e.com/spells/wish) spell or comparable magic, but nothing less. The embryo can be destroyed before it reaches maturity by using a [dispel magic](https://api.open5e.com/spells/dispel-magic) spell under the normal rules for dispelling high-level magic.", + "document": "deepm", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "five teeth from a still-living humanoid and a vial of the caster’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "5d4", + "damage_types": [ + "slashing" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_seeping-death", + "fields": { + "name": "Seeping Death", + "desc": "Your touch inflicts a virulent, flesh-eating disease. Make a melee spell attack against a creature within your reach. On a hit, the creature’s Dexterity score is reduced by 1d4, and it is afflicted with the seeping death disease for the duration.\n\nSince this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease’s effects apply to it and can end the spell early.\n\n***Seeping Death.*** The creature’s flesh is slowly liquefied by a lingering necrotic pestilence. At the end of each long rest, the diseased creature must succeed on a Constitution saving throw or its Dexterity score is reduced by 1d4. The reduction lasts until the target finishes a long rest after the disease is cured. If the disease reduces the creature’s Dexterity to 0, the creature dies.", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "3 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_seers-reaction", + "fields": { + "name": "Seer’s Reaction", + "desc": "Your foreknowledge allows you to act before others, because you knew what was going to happen. When you cast this spell, make a new initiative roll with a +5 bonus. If the result is higher than your current initiative, your place in the initiative order changes accordingly. If the result is also higher than the current place in the initiative order, you take your next turn immediately and then use the higher number starting in the next round.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_semblance-of-dread", + "fields": { + "name": "Semblance of Dread", + "desc": "You adopt the visage of the faceless god Nyarlathotep. For the duration, any creature within 10 feet of you and able to see you can’t willingly move closer to you unless it makes a successful Wisdom saving throw at the start of its turn. Constructs and undead are immune to this effect.\n\nFor the duration of the spell, you also gain vulnerability to radiant damage and have advantage on saving throws against effects that cause the frightened condition.", + "document": "deepm", + "level": 0, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shade", + "fields": { + "name": "Shade", + "desc": "You create a magical screen across your eyes. While the screen remains, you are immune to blindness caused by visible effects, such as [color spray](https://api.open5e.com/spells/color-spray). The spell doesn’t alleviate blindness that’s already been inflicted on you. If you normally suffer penalties on attacks or ability checks while in sunlight, those penalties don’t apply while you’re under the effect of this spell.\n", + "document": "deepm", + "level": 2, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration of the spell increases by 10 minutes for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shadow-armor", + "fields": { + "name": "Shadow Armor", + "desc": "You can siphon energy from the plane of shadow to protect yourself from an immediate threat. As a reaction, you pull shadows around yourself to distort reality. The attack against you is made with disadvantage, and you have resistance to radiant damage until the start of your next turn.", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shadow-bite", + "fields": { + "name": "Shadow Bite", + "desc": "You create a momentary needle of cold, sharp pain in a creature within range. The target must make a successful Constitution saving throw or take 1d6 necrotic damage immediately and have its speed halved until the start of your next turn.", + "document": "deepm", + "level": 0, + "school": "illusion", + "higher_level": "This spell’s damage increases to 2d6 when you reach 5th level, 3d6 when you reach 11th level, and 4d6 when you reach 17th level.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shadow-blindness", + "fields": { + "name": "Shadow Blindness", + "desc": "You make a melee spell attack against a creature you touch that has darkvision as an innate ability; on a hit, the target’s darkvision is negated until the spell ends. This spell has no effect against darkvision that derives from a spell or a magic item. The target retains all of its other senses.", + "document": "deepm", + "level": 0, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shadow-hands", + "fields": { + "name": "Shadow Hands", + "desc": "A freezing blast of shadow explodes out from you in a 10-foot cone. Any creature caught in the shadow takes 2d4 necrotic damage and is frightened; a successful Wisdom saving throw halves the damage and negates the frightened condition.\n", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage dealt by the attack increases by 2d4 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shadow-monsters", + "fields": { + "name": "Shadow Monsters", + "desc": "You choose up to two creatures within range. Each creature must make a Wisdom saving throw. On a failed save, the creature perceives its allies as hostile, shadowy monsters, and it must attack its nearest ally. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 4, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a doll", + "material_cost": null, + "material_consumed": false, + "target_count": 2, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shadow-puppets", + "fields": { + "name": "Shadow Puppets", + "desc": "You animate the shadow of a creature within range, causing it to attack that creature. As a bonus action when you cast the spell, or as an action on subsequent rounds while you maintain concentration, make a melee spell attack against the creature. If it hits, the target takes 2d8 psychic damage and must make a successful Intelligence saving throw or be incapacitated until the start of your next turn.\n", + "document": "deepm", + "level": 2, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of powdered lead", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": true, + "damage_roll": "2d8", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shadow-trove", + "fields": { + "name": "Shadow Trove", + "desc": "You paint a small door approximately 2 feet square on a hard surface to create a portal into the void of space. The portal “peels off” the surface you painted it on and follows you when you move, always floating in the air within 5 feet of you. An icy chill flows out from the portal. You can place up to 750 pounds of nonliving matter in the portal, where it stays suspended in the frigid void until you withdraw it. Items that are still inside the shadow trove when the duration ends spill out onto the ground. You can designate a number of creatures up to your Intelligence modifier who have access to the shadow trove; only you and those creatures can move objects into the portal.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 2 hours for each slot level above 3rd.", + "target_type": "creature", + "range": "5 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "ink made from the blood of a raven", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shadows-brought-to-light", + "fields": { + "name": "Shadows Brought to Light", + "desc": "If a creature you designate within range fails a Charisma saving throw, you cause the target’s shadow to come to life and reveal one of the creature’s most scandalous secrets: some fact that the target would not want widely known (GM’s choice). When casting the spell, you choose whether everyone present will hear the secret, in which case the shadow speaks loudly in a twisted version of the target’s voice, or if the secret is whispered only to you. The shadow speaks in the target’s native language.\n\nIf the target does not have a scandalous secret or does not have a spoken language, the spell fails as if the creature’s saving throw had succeeded.\n\nIf the secret was spoken aloud, the target takes a −2 penalty to Charisma checks involving anyone who was present when it was revealed. This penalty lasts until you finish a long rest.\n\n***Ritual Focus.*** If you expend your ritual focus, the target has disadvantage on Charisma checks instead of taking the −2 penalty.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shadowy-retribution", + "fields": { + "name": "Shadowy Retribution", + "desc": "You fill a small silver cup with your own blood (taking 1d4 piercing damage) while chanting vile curses in the dark. Once the chant is completed, you consume the blood and swear an oath of vengeance against any who harm you.\n\nIf you are reduced to 0 hit points, your oath is invoked; a shadow materializes within 5 feet of you. The shadow attacks the creature that reduced you to 0 hit points, ignoring all other targets, until it or the target is slain, at which point the shadow dissipates into nothing.\n", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, an additional shadow is conjured for each slot level above 4th.\n\n***Ritual Focus.*** If you expend your ritual focus, the spell summons a banshee instead of a shadow. If you also use a higher-level spell slot, additional undead are still shadows.", + "target_type": "point", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small silver cup filled with the caster’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "12 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shared-sacrifice", + "fields": { + "name": "Shared Sacrifice", + "desc": "You and up to five of your allies within range contribute part of your life force to create a pool that can be used for healing. Each target takes 5 necrotic damage (which can’t be reduced but can be healed normally), and those donated hit points are channeled into a reservoir of life essence. As an action, any creature who contributed to the pool of hit points can heal another creature by touching it and drawing hit points from the pool into the injured creature. The injured creature heals a number of hit points equal to your spellcasting ability modifier, and the hit points in the pool decrease by the same amount. This process can be repeated until the pool is exhausted or the spell’s duration expires.", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "5", + "damage_types": [ + "necrotic" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_sheen-of-ice", + "fields": { + "name": "Sheen of Ice", + "desc": "A small icy globe shoots from your finger to a point within range and then explodes in a spray of ice. Each creature within 20 feet of that point must make a successful Dexterity saving throw or become coated in ice for 1 minute. Ice-coated creatures move at half speed. An invisible creature becomes outlined by the ice so that it loses the benefits of invisibility while the ice remains. The spell ends for a specific creature if that creature takes 5 or more fire damage.", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "water within a glass globe", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shifting-the-odds", + "fields": { + "name": "Shifting the Odds", + "desc": "By wrapping yourself in strands of chaotic energy, you gain advantage on the next attack roll or ability check that you make. Fate is a cruel mistress, however, and her scales must always be balanced. The second attack roll or ability check (whichever occurs first) that you make after casting **shifting the odds** is made with disadvantage.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shiver", + "fields": { + "name": "Shiver", + "desc": "You fill a humanoid creature with such cold that its teeth begin to chatter and its body shakes uncontrollably. Roll 5d8; the total is the maximum hit points of a creature this spell can affect. The affected creature must succeed on a Constitution saving throw, or it cannot cast a spell or load a missile weapon until the end of your next turn. Once a creature has been affected by this spell, it is immune to further castings of this spell for 24 hours.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "The maximum hit points you can affect increases by 4d8 when you reach 5th level (9d8), 11th level (13d8), and 17th level (17d8).", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "humanoid tooth", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_shroud-of-death", + "fields": { + "name": "Shroud of Death", + "desc": "You call up a black veil of necrotic energy that devours the living. You draw on the life energy of all living creatures within 30 feet of you that you can see. When you cast the spell, every living creature within 30 feet of you that you can see takes 1 necrotic damage, and all those hit points transfer to you as temporary hit points. The damage and the temporary hit points increase to 2 per creature at the start of your second turn concentrating on the spell, 3 per creature at the start of your third turn, and so on. All living creatures you can see within 30 feet of you at the start of each of your turns are affected. A creature can avoid the effect by moving more than 30 feet away from you or by getting out of your line of sight, but it becomes susceptible again if the necessary conditions are met. The temporary hit points last until the spell ends.", + "document": "deepm", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of ice", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1", + "damage_types": [ + "necrotic" + ], + "duration": "10 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_sidestep-arrow", + "fields": { + "name": "Sidestep Arrow", + "desc": "With a few perfectly timed steps, you interpose a foe between you and danger. You cast this spell when an enemy makes a ranged attack or a ranged spell attack against you but before the attack is resolved. At least one other foe must be within 10 feet of you when you cast **sidestep arrow**. As part of casting the spell, you can move up to 15 feet to a place where an enemy lies between you and the attacker. If no such location is available, the spell has no effect. You must be able to move (not restrained or grappled or prevented from moving for any other reason), and this move does not provoke opportunity attacks. After you move, the ranged attack is resolved with the intervening foe as the target instead of you.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_sign-of-koth", + "fields": { + "name": "Sign of Koth", + "desc": "You invoke the twilight citadels of Koth to create a field of magical energy in the shape of a 60-foot-radius, 60-foot‑tall cylinder centered on you. The only visible evidence of this field is a black rune that appears on every doorway, window, or other portal inside the area.\n\nChoose one of the following creature types: aberration, beast, celestial, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead. The sign affects creatures of the chosen type (including you, if applicable) in the following ways:\n* The creatures can’t willingly enter the cylinder’s area by nonmagical means; the cylinder acts as an invisible, impenetrable wall of force. If an affected creature tries to enter the cylinder’s area by using teleportation, a dimensional shortcut, or other magical means, it must make a successful Charisma saving throw or the attempt fails.\n* They cannot hear any sounds that originate inside the cylinder.\n* They have disadvantage on attack rolls against targets inside the cylinder.\n* They can’t charm, frighten, or possess creatures inside the cylinder.\nCreatures that aren’t affected by the field and that take a short rest inside it regain twice the usual number of hit points for each Hit Die spent at the end of the rest.\n\nWhen you cast this spell, you can choose to reverse its magic; doing this will prevent affected creatures from leaving the area instead of from entering it, make them unable to hear sounds that originate outside the cylinder, and so forth. In this case, the field provides no benefit for taking a short rest.\n", + "document": "deepm", + "level": 7, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the radius increases by 30 feet for each slot level above 7th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a platinum dagger and a powdered black pearl worth 500 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_silhouette", + "fields": { + "name": "Silhouette", + "desc": "You create a shadow play against a screen or wall. The surface can encompass up to 100 square feet. The number of creatures that can see the shadow play equals your Intelligence score. The shadowy figures make no sound but they can dance, run, move, kiss, fight, and so forth. Most of the figures are generic types—a rabbit, a dwarf—but a number of them equal to your Intelligence modifier can be recognizable as specific individuals.", + "document": "deepm", + "level": 0, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_sir-mittinzs-move-curse", + "fields": { + "name": "Sir Mittinz’s Move Curse", + "desc": "When you are within range of a cursed creature or object, you can transfer the curse to a different creature or object that’s also within range. The curse must be transferred from object to object or from creature to creature.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "20 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a finely crafted hollow glass sphere and incense worth 50 gp, which the spell consumes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_sleep-of-the-deep", + "fields": { + "name": "Sleep of the Deep", + "desc": "Your magic haunts the dreams of others. Choose a sleeping creature that you are aware of within range. Creatures that don’t sleep, such as elves, can’t be targeted. The creature must succeed on a Wisdom saving throw or it garners no benefit from the rest, and when it awakens, it gains one level of exhaustion and is afflicted with short‑term madness.\n", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can affect one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of black sand, a tallow candle, and a drop of cephalopod ink", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_slippery-fingers", + "fields": { + "name": "Slippery Fingers", + "desc": "You set a series of small events in motion that cause the targeted creature to drop one nonmagical item of your choice that it’s currently holding, unless it makes a successful Charisma saving throw.", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_slither", + "fields": { + "name": "Slither", + "desc": "You momentarily become a shadow (a humanoid-shaped absence of light, not the undead creature of that name). You can slide under a door, through a keyhole, or through any other tiny opening. All of your equipment is transformed with you, and you can move up to your full speed during the spell’s duration. While in this form, you have advantage on Dexterity (Stealth) checks made in darkness or dim light and you are immune to nonmagical bludgeoning, piercing, and slashing damage. You can dismiss this spell by using an action to do so.\n\nIf you return to your normal form while in a space too small for you (such as a mouse hole, sewer pipe, or the like), you take 4d6 force damage and are pushed to the nearest space within 50 feet big enough to hold you. If the distance is greater than 50 feet, you take an extra 1d6 force damage for every additional 10 feet traveled.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target an additional willing creature that you touch for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "ashes from a wooden statue of you, made into ink and used to draw your portrait, worth 50 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_snow-boulder", + "fields": { + "name": "Snow Boulder", + "desc": "A ball of snow forms 5 feet away from you and rolls in the direction you point at a speed of 30 feet, growing larger as it moves. To roll the boulder into a creature, you must make a successful ranged spell attack. If the boulder hits, the creature must make a successful Dexterity saving throw or be knocked prone and take the damage indicated below. Hitting a creature doesn’t stop the snow boulder’s movement or impede its growth, as long as you continue to maintain concentration on the effect. When the spell ends, the boulder stops moving.\n\n| Round | Size | Damage |\n|-|-|-|\n| 1 | Small | 1d6 bludgeoning |\n| 2 | Medium | 2d6 bludgeoning |\n| 3 | Large | 4d6 bludgeoning |\n| 4 | Huge | 6d6 bludgeoning |\n\n", + "document": "deepm", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of snow", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "4 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_snow-fort", + "fields": { + "name": "Snow Fort", + "desc": "This spell creates a simple “fort” from packed snow. The snow fort springs from the ground in an unoccupied space within range. It encircles a 10-foot area with sloping walls 4 feet high. The fort provides half cover (+2 AC) against ranged and melee attacks coming from outside the fort. The walls have AC 12, 30 hit points per side, are immune to cold, necrotic, poison, and psychic damage, and are vulnerable to fire damage. A damaged wall can be repaired by casting a spell that deals cold damage on it, on a point-for-point basis, up to a maximum of 30 points.\n\nThe spell also creates a dozen snowballs that can be thrown (range 20/60) and that deal 1d4 bludgeoning damage plus 1d4 cold damage on a hit.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a ring carved from chalk or white stone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_snowy-coat", + "fields": { + "name": "Snowy Coat", + "desc": "This spell makes a slight alteration to a target creature’s appearance that gives it advantage on Dexterity (Stealth) checks to hide in snowy terrain. In addition, the target can use a bonus action to make itself invisible in snowy terrain for 1 minute. The spell ends at the end of the minute or when the creature attacks or casts a spell.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_song-of-the-forest", + "fields": { + "name": "Song of the Forest", + "desc": "You attune your senses to the natural world, so that you detect every sound that occurs within 60 feet: wind blowing through branches, falling leaves, grazing deer, trickling streams, and more. You can clearly picture the source of each sound in your mind. The spell gives you tremorsense out to a range of 10 feet. In addition, you have advantage on Wisdom (Perception) checks that rely on hearing. Creatures that make no noise or that are magically silent cannot be detected by this spell’s effect.\n\n**Song of the forest** functions only in natural environments; it fails if cast underground, in a city, or in a building that isolates the caster from nature (GM’s discretion).\n\n***Ritual Focus.*** If you expend your ritual focus, the spell also gives you blindsight out to a range of 30 feet.", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dried leaf, crumpled and released", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_speak-with-inanimate-object", + "fields": { + "name": "Speak with Inanimate Object", + "desc": "You awaken a spirit that resides inside an inanimate object such as a rock, a sign, or a table, and can ask it up to three yes-or-no questions. The spirit is indifferent toward you unless you have done something to harm or help it. The spirit can give you information about its environment and about things it has observed (with its limited senses), and it can act as a spy for you in certain situations. The spell ends when its duration expires or after you have received answers to three questions.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_spin", + "fields": { + "name": "Spin", + "desc": "You designate a creature you can see within range and tell it to spin. The creature can resist this command with a successful Wisdom saving throw. On a failed save, the creature spins in place for the duration of the spell. A spinning creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. A creature that has spun for 1 round or longer becomes dizzy and has disadvantage on attack rolls and ability checks until 1 round after it stops spinning.", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_spinning-axes", + "fields": { + "name": "Spinning Axes", + "desc": "Spinning axes made of luminous force burst out from you to strike all creatures within 10 feet of you. Each of those creatures takes 5d8 force damage, or half the damage with a successful Dexterity saving throw. Creatures damaged by this spell that aren’t undead or constructs begin bleeding. A bleeding creature takes 2d6 necrotic damage at the end of each of its turns for 1 minute. A creature can stop the bleeding for itself or another creature by using an action to make a successful Wisdom (Medicine) check against your spell save DC or by applying any amount of magical healing.\n", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an iron ring", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_spiteful-weapon", + "fields": { + "name": "Spiteful Weapon", + "desc": "You create a connection between the target of the spell, an attacker that injured the target during the last 24 hours, and the melee weapon that caused the injury, all of which must be within range when the spell is cast.\n\nFor the duration of the spell, whenever the attacker takes damage while holding the weapon, the target must make a Charisma saving throw. On a failed save, the target takes the same amount and type of damage, or half as much damage on a successful one. The attacker can use the weapon on itself and thus cause the target to take identical damage. A self-inflicted wound hits automatically, but damage is still rolled randomly.\n\nOnce the connection is established, it lasts for the duration of the spell regardless of range, so long as all three elements remain on the same plane. The spell ends immediately if the attacker receives any healing.\n", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "The target has disadvantage on its Charisma saving throws if **spiteful weapon** is cast using a spell slot of 5th level or higher.", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a melee weapon that has been used to injure the target", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_spur-mount", + "fields": { + "name": "Spur Mount", + "desc": "You urge your mount to a sudden burst of speed. Until the end of your next turn, you can direct your mount to use the Dash or Disengage action as a bonus action. This spell has no effect on a creature that you are not riding.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an apple or a sugar cube", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_staff-of-violet-fire", + "fields": { + "name": "Staff of Violet Fire", + "desc": "You create a quarterstaff of pure necrotic energy that blazes with intense purple light; it appears in your chosen hand. If you let it go, it disappears, though you can evoke it again as a bonus action if you have maintained concentration on the spell.\n\nThis staff is an extremely unstable and impermanent magic item; it has 10 charges and does not require attunement. The wielder can use one of three effects:\n\n* By using your action to make a melee attack and expending 1 charge, you can attack with it. On a hit, the target takes 5d10 necrotic damage.\n* By expending 2 charges, you can release bolts of necrotic fire against up to 3 targets as ranged attacks for 1d8+4 necrotic damage each.\n\nThe staff disappears and the spell ends when all the staff's charges have been expended or if you stop concentrating on the spell.\n", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the melee damage increases by 1d10 for every two slot levels above 4th, or you add one additional ranged bolt for every two slot levels above 4th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "mummy dust", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "necrotic" + ], + "duration": "special", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_stanch", + "fields": { + "name": "Stanch", + "desc": "The target’s blood coagulates rapidly, so that a dying target stabilizes and any ongoing bleeding or wounding effect on the target ends. The target can't be the source of blood for any spell or effect that requires even a drop of blood.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_starburst", + "fields": { + "name": "Starburst", + "desc": "You cause a mote of starlight to appear and explode in a 5-foot cube you can see within range. If a creature is in the cube, it must succeed on a Charisma saving throw or take 1d8 radiant damage.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "This spell’s damage increases to 2d8 when you reach 5th level, 3d8 when you reach 11th level, and 4d8 when you reach 17th level.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_starfall", + "fields": { + "name": "Starfall", + "desc": "You cause bolts of shimmering starlight to fall from the heavens, striking up to five creatures that you can see within range. Each bolt strikes one target, dealing 6d6 radiant damage, knocking the target prone, and blinding it until the start of your next turn. A creature that makes a successful Dexterity saving throw takes half the damage, is not knocked prone, and is not blinded. If you name fewer than five targets, excess bolts strike the ground harmlessly.\n", + "document": "deepm", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can create one additional bolt for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_starry-vision", + "fields": { + "name": "Starry Vision", + "desc": "This spell acts as [compelling fate](https://api.open5e.com/spells/compelling-fate), except as noted above (**starry** vision can be cast as a reaction, has twice the range of [compelling fate](https://api.open5e.com/spells/compelling-fate), and lasts up to 1 minute). At the end of each of its turns, the target repeats the Charisma saving throw, ending the effect on a success.\n", + "document": "deepm", + "level": 7, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the bonus to AC increases by 1 for each slot level above 7th.", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "a sprinkle of gold dust worth 400 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_stars-heart", + "fields": { + "name": "Star's Heart", + "desc": "This spell increases gravity tenfold in a 50-foot radius centered on you. Each creature in the area other than you drops whatever it’s holding, falls prone, becomes incapacitated, and can’t move. If a solid object (such as the ground) is encountered when a flying or levitating creature falls, the creature takes three times the normal falling damage. Any creature except you that enters the area or starts its turn there must make a successful Strength saving throw or fall prone and become incapacitated and unable to move. A creature that starts its turn prone and incapacitated makes a Strength saving throw. On a failed save, the creature takes 8d6 bludgeoning damage; on a successful save, it takes 4d6 bludgeoning damage, it’s no longer incapacitated, and it can move at half speed.\n\nAll ranged weapon attacks inside the area have a normal range of 5 feet and a maximum range of 10 feet. The same applies to spells that create missiles that have mass, such as [flaming sphere](https://api.open5e.com/spells/flaming-sphere). A creature under the influence of a [freedom of movement](https://api.open5e.com/spells/freedom-of-movement) spell or comparable magic has advantage on the Strength saving throws required by this spell, and its speed isn’t reduced once it recovers from being incapacitated.", + "document": "deepm", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "50 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an ioun stone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_steal-warmth", + "fields": { + "name": "Steal Warmth", + "desc": "When you cast **steal warmth** after taking cold damage, you select a living creature within 5 feet of you. That creature takes the cold damage instead, or half the damage with a successful Constitution saving throw. You regain hit points equal to the amount of cold damage taken by the target.\n", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the distance to the target you can affect with this spell increases by 5 feet for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_steam-blast", + "fields": { + "name": "Steam Blast", + "desc": "You unleash a burst of superheated steam in a 15-foot radius around you. All other creatures in the area take 5d8 fire damage, or half as much damage on a successful Dexterity saving throw. Nonmagical fires smaller than a bonfire are extinguished, and everything becomes wet.\n", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a tiny copper kettle or boiler", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_steam-whistle", + "fields": { + "name": "Steam Whistle", + "desc": "You open your mouth and unleash a shattering scream. All other creatures in a 30-foot radius around you take 10d10 thunder damage and are deafened for 1d8 hours. A successful Constitution saving throw halves the damage and reduces the deafness to 1 round.", + "document": "deepm", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a small brass whistle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_stench-of-rot", + "fields": { + "name": "Stench of Rot", + "desc": "Choose one creature you can see within range that isn’t a construct or an undead. The target must succeed on a Charisma saving throw or become cursed for the duration of the spell. While cursed, the target reeks of death and rot, and nothing short of magic can mask or remove the smell. The target has disadvantage on all Charisma checks and on Constitution saving throws to maintain concentration on spells. A creature with the Keen Smell trait, or a similar trait indicating the creature has a strong sense of smell, can add your spellcasting ability modifier to its Wisdom (Perception) or Wisdom (Survival) checks to find the target. A [remove curse](https://api.open5e.com/spells/remove-curse) spell or similar magic ends the spell early.\n", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration increases by 1 hour for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a live maggot", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_storm-of-wings", + "fields": { + "name": "Storm of Wings", + "desc": "You create a storm of spectral birds, bats, or flying insects in a 15-foot-radius sphere on a point you can see within range. The storm spreads around corners, and its area is lightly obscured. Each creature in the storm when it appears and each a creature that starts its turn in the storm is affected by the storm.\n As a bonus action on your turn, you can move the storm up to 30 feet. As an action on your turn, you can change the storm from one type to another, such as from a storm of bats to a storm of insects.\n ***Bats.*** The creature takes 4d6 necrotic damage, and its speed is halved while within the storm as the bats cling to it and drain its blood.\n ***Birds.*** The creature takes 4d6 slashing damage, and has disadvantage on attack rolls while within the storm as the birds fly in the way of the creature's attacks.\n ***Insects.*** The creature takes 4d6 poison damage, and it must make a Constitution saving throw each time it casts a spell while within the storm. On a failed save, the creature fails to cast the spell, losing the action but not the spell slot.", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of honey", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 15, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_sudden-dawn", + "fields": { + "name": "Sudden Dawn", + "desc": "You call upon morning to arrive ahead of schedule. With a sharp word, you create a 30-foot-radius cylinder of light centered on a point on the ground within range. The cylinder extends vertically for 100 feet or until it reaches an obstruction, such as a ceiling. The area inside the cylinder is brightly lit.", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "100 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "cylinder", + "shape_magnitude": 30, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_summon-eldritch-servitor", + "fields": { + "name": "Summon Eldritch Servitor", + "desc": "You summon eldritch aberrations that appear in unoccupied spaces you can see within range. Choose one of the following options for what appears:\n* Two [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng)\n* One [shantak](https://api.open5e.com/monsters/shantak)\n\nWhen the summoned creatures appear, you must make a Charisma saving throw. On a success, the creatures are friendly to you and your allies. On a failure, the creatures are friendly to no one and attack the nearest creatures, pursuing and fighting for as long as possible.\n\nRoll initiative for the summoned creatures, which take their own turns as a group. If friendly to you, they obey your verbal commands (no action required by you to issue a command), or they attack the nearest living creature if they are not commanded otherwise.\n\nEach round when you maintain concentration on the spell, you must make a successful DC 15 Wisdom saving throw at the end of your turn or take 1d4 psychic damage. If the total of this damage exceeds your Wisdom score, you gain 1 point of Void taint and you are afflicted with a form of short-term madness. The same penalty applies when the damage exceeds twice your Wisdom score, three times your Wisdom score, and so forth, if you maintain concentration for that long.\n\nA summoned creature disappears when it drops to 0 hit points or when the spell ends. If you stop concentrating on the spell before 1 hour has elapsed, the creatures become uncontrolled and hostile until they disappear 1d6 rounds later or until they are killed.\n", + "document": "deepm", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a 7th- or 8th-level spell slot, you can summon four [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng) or a [hound of Tindalos](https://api.open5e.com/monsters/hound-of-tindalos). When you cast it with a 9th-level spell slot, you can summon five [ghasts of Leng](https://api.open5e.com/monsters/ghast-of-leng) or a [nightgaunt](https://api.open5e.com/monsters/nightgaunt).", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of the caster’s blood and a silver dagger", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_summon-star", + "fields": { + "name": "Summon Star", + "desc": "You summon a friendly star from the heavens to do your bidding. It appears in an unoccupied space you can see within range and takes the form of a glowing humanoid with long white hair. All creatures other than you who view the star must make a successful Wisdom saving throw or be charmed for the duration of the spell. A creature charmed in this way can repeat the Wisdom saving throw at the end of each of its turns. On a success, the creature is no longer charmed and is immune to the effect of this casting of the spell. In all other ways, the star is equivalent to a [deva](https://api.open5e.com/monsters/deva). It understands and obeys verbal commands you give it. If you do not give the star a command, it defends itself and attacks the last creature that attacked it. The star disappears when it drops to 0 hit points or when the spell ends.", + "document": "deepm", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_surge-dampener", + "fields": { + "name": "Surge Dampener", + "desc": "Using your strength of will, you cause one creature other than yourself that you touch to become so firmly entrenched within reality that it is protected from the effects of a chaos magic surge. The protected creature can make a DC 13 Charisma saving throw to negate the effect of a chaos magic surge that does not normally allow a saving throw, or it gains advantage on a saving throw that is normally allowed. Once the protected creature makes a successful saving throw allowed by **surge dampener**, the spell ends.", + "document": "deepm", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute, until expended", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_surprise-blessing", + "fields": { + "name": "Surprise Blessing", + "desc": "You touch a willing creature and choose one of the conditions listed below that the creature is currently subjected to. The condition’s normal effect on the target is suspended, and the indicated effect applies instead. This spell’s effect on the target lasts for the duration of the original condition or until the spell ends. If this spell ends before the original condition’s duration expires, you become affected by the condition for as long as it lasts, even if you were not the original recipient of the condition.\n\n***Blinded:*** The target gains truesight out to a range of 10 feet and can see 10 feet into the Ethereal Plane.\n\n***Charmed:*** The target’s Charisma score becomes 19, unless it is already higher than 19, and it gains immunity to charm effects.\n\n***Frightened:*** The target emits a 10-foot-radius aura of dread. Each creature the target designates that starts its turn in the aura must make a successful Wisdom saving throw or be frightened of the target. A creature frightened in this way that starts its turn outside the aura repeats the saving throw, ending the condition on itself on a success.\n\n***Paralyzed:*** The target can use one extra bonus action or reaction per round.\n\n***Petrified:*** The target gains a +2 bonus to AC.\n\n***Poisoned:*** The target heals 2d6 hit points at the start of its next turn, and it gains immunity to poison damage and the poisoned condition.\n\n***Stunned:*** The target has advantage on Intelligence, Wisdom, and Charisma saving throws.", + "document": "deepm", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_symbol-of-sorcery", + "fields": { + "name": "Symbol of Sorcery", + "desc": "You draw an arcane symbol on an object, wall, or other surface at least 5 feet wide. When a creature other than you approaches within 5 feet of the symbol, that act triggers an arcane explosion. Each creature in a 60-foot cone must make a successful Wisdom saving throw or be stunned. A stunned creature repeats the saving throw at the end of each of its turns, ending the effect on itself on a successful save. After this symbol explodes or when the duration expires, its power is spent and the spell ends.", + "document": "deepm", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a stick of incense worth 20 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": "cone", + "shape_magnitude": 60, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_talons-of-a-hungry-land", + "fields": { + "name": "Talons of a Hungry Land", + "desc": "You cause three parallel lines of thick, flared obsidian spikes to erupt from the ground. They appear within range on a solid surface, last for the duration, and provide three‐quarters cover to creatures behind them. You can make lines (up to 60 feet long, 10 feet high, and 5 feet thick) or form a circle (20 feet in diameter, up to 15 feet high and 5 feet thick).\n\nWhen the lines appear, each creature in their area must make a Dexterity saving throw. Creatures takes 8d8 slashing damage, or half as much damage on a successful save.\n\nA creature can move through the lines at the risk of cutting itself on the exposed edges. For every 1 foot a creature moves through the lines, it must spend 4 feet of movement. Furthermore, the first time a creature enters the lines on a turn or ends its turn there, the creature must make a Dexterity saving throw. It takes 8d8 slashing damage on a failure, or half as much damage on a success.\n\nWhen you stop concentrating on the spell, you can cause the obsidian spikes to explode, dealing 5d8 slashing damage to any creature within 15 feet, or half as much damage on a successful Dexterity save.\n", + "document": "deepm", + "level": 7, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage from all effects of the lines increases by 1d8 for each slot level above 7th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "8d8", + "damage_types": [ + "slashing" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_targeting-foreknowledge", + "fields": { + "name": "Targeting Foreknowledge", + "desc": "Twisting the knife, slapping with the butt of the spear, slashing out again as you recover from a lunge, and countless other double-strike maneuvers are skillful ways to get more from your weapon. By casting this spell as a bonus action after making a successful melee weapon attack, you deal an extra 2d6 damage of the weapon’s type to the target. In addition, if your weapon attack roll was a 19 or higher, it is a critical hit and increases the weapon’s damage dice as normal. The extra damage from this spell is not increased on a critical hit.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_thin-the-ice", + "fields": { + "name": "Thin the Ice", + "desc": "You target a point within range. That point becomes the top center of a cylinder 10 feet in radius and 40 feet deep. All ice inside that area melts immediately. The uppermost layer of ice seems to remain intact and sturdy, but it covers a 40-foot-deep pit filled with ice water. A successful Wisdom (Survival) check or passive Perception check against your spell save DC notices the thin ice. If a creature weighing more than 20 pounds (or a greater weight specified by you when casting the spell) treads over the cylinder or is already standing on it, the ice gives way. Unless the creature makes a successful Dexterity saving throw, it falls into the icy water, taking 2d6 cold damage plus whatever other problems are caused by water, by armor, or by being drenched in a freezing environment. The water gradually refreezes normally.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of sunstone", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_thousand-darts", + "fields": { + "name": "Thousand Darts", + "desc": "You launch thousands of needlelike darts in a 5-foot‐wide line that is 120 feet long. Each creature in the line takes 6d6 piercing damage, or half as much damage if it makes a successful Dexterity saving throw. The first creature struck by the darts makes the saving throw with disadvantage.\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a set of mithral darts worth 25 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "piercing" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_throes-of-ecstasy", + "fields": { + "name": "Throes of Ecstasy", + "desc": "Choose a humanoid that you can see within range. The target must succeed on a Constitution saving throw or become overcome with euphoria, rendering it incapacitated for the duration. The target automatically fails Wisdom saving throws, and attack rolls against the target have advantage. At the end of each of its turns, the target can make another Constitution saving throw. On a successful save, the spell ends on the target and it gains one level of exhaustion. If the spell continues for its maximum duration, the target gains three levels of exhaustion when the spell ends.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional humanoid for each slot level above 3rd. The humanoids must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a hazel or oak wand", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_thunder-bolt", + "fields": { + "name": "Thunder Bolt", + "desc": "You cast a knot of thunder at one enemy. Make a ranged spell attack against the target. If it hits, the target takes 1d8 thunder damage and can’t use reactions until the start of your next turn.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_thunderclap", + "fields": { + "name": "Thunderclap", + "desc": "You clap your hands, emitting a peal of thunder. Each creature within 20 feet of you takes 8d4 thunder damage and is deafened for 1d8 rounds, or it takes half as much damage and isn’t deafened if it makes a successful Constitution saving throw. On a saving throw that fails by 5 or more, the creature is also stunned for 1 round.\n\nThis spell doesn’t function in an area affected by a [silence](https://api.open5e.com/spells/silence) spell. Very brittle material such as crystal might be shattered if it’s within range, at the GM’s discretion; a character holding such an object can protect it from harm by making a successful Dexterity saving throw.", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d4", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_thunderous-charge", + "fields": { + "name": "Thunderous Charge", + "desc": "With a thunderous battle cry, you move up to 10 feet in a straight line and make a melee weapon attack. If it hits, you can choose to either gain a +5 bonus on the attack’s damage or shove the target 10 feet.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the distance you can move increases by 10 feet, and the attack deals an additional 1d6 thunder damage, for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_thunderous-stampede", + "fields": { + "name": "Thunderous Stampede", + "desc": "This spell acts as [thunderous charge](https://api.open5e.com/spells/thunderous-charge), but affecting up to three targets within range, including yourself. A target other than you must use its reaction to move and attack under the effect of thunderous stampede.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the distance your targets can move increases by 10 feet, and the attack deals an additional 1d6 thunder damage, for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_thunderous-wave", + "fields": { + "name": "Thunderous Wave", + "desc": "You initiate a shock wave centered at a point you designate within range. The wave explodes outward into a 30-foot-radius sphere. This force deals no damage directly, but every creature the wave passes through must make a Strength saving throw. On a failed save, a creature is pushed 30 feet and knocked prone; if it strikes a solid obstruction, it also takes 5d6 bludgeoning damage. On a successful save, a creature is pushed 15 feet and not knocked prone, and it takes 2d6 bludgeoning damage if it strikes an obstruction. The spell also emits a thunderous boom that can be heard within 400 feet.", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "5d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_thunderstorm", + "fields": { + "name": "Thunderstorm", + "desc": "You touch a willing creature, and it becomes surrounded by a roiling storm cloud 30 feet in diameter, erupting with (harmless) thunder and lightning. The creature gains a flying speed of 60 feet. The cloud heavily obscures the creature inside it from view, though it is transparent to the creature itself.", + "document": "deepm", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of lightning-fused glass", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_tidal-barrier", + "fields": { + "name": "Tidal Barrier", + "desc": "A swirling wave of seawater surrounds you, crashing and rolling in a 10-foot radius around your space. The area is difficult terrain, and a creature that starts its turn there or that enters it for the first time on a turn must make a Strength saving throw. On a failed save, the creature is pushed 10 feet away from you and its speed is reduced to 0 until the start of its next turn.", + "document": "deepm", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of driftwood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_time-in-a-bottle", + "fields": { + "name": "Time in a Bottle", + "desc": "You designate a spot within your sight. Time comes under your control in a 20-foot radius centered on that spot. You can freeze it, reverse it, or move it forward by as much as 1 minute as long as you maintain concentration. Nothing and no one, yourself included, can enter the field or affect what happens inside it. You can choose to end the effect at any moment as an action on your turn.", + "document": "deepm", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Sight", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_time-jump", + "fields": { + "name": "Time Jump", + "desc": "You touch a construct and throw it forward in time if it fails a Constitution saving throw. The construct disappears for 1d4 + 1 rounds, during which time it cannot act or be acted upon in any way. When the construct returns, it is unaware that any time has passed.", + "document": "deepm", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_time-loop", + "fields": { + "name": "Time Loop", + "desc": "You capture a creature within range in a loop of time. The target is teleported to the space where it began its most recent turn. The target then makes a Wisdom saving throw. On a successful save, the spell ends. On a failed save, the creature must repeat the activities it undertook on its previous turn, following the sequence of moves and actions to the best of its ability. It doesn’t need to move along the same path or attack the same target, but if it moved and then attacked on its previous turn, its only option is to move and then attack on this turn. If the space where the target began its previous turn is occupied or if it’s impossible for the target to take the same action (if it cast a spell but is now unable to do so, for example), the target becomes incapacitated.\n\nAn affected target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. For as long as the spell lasts, the target teleports back to its starting point at the start of each of its turns, and it must repeat the same sequence of moves and actions.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a metal loop", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_time-slippage", + "fields": { + "name": "Time Slippage", + "desc": "You ensnare a creature within range in an insidious trap, causing different parts of its body to function at different speeds. The creature must make an Intelligence saving throw. On a failed save, it is stunned until the end of its next turn. On a success, the creature’s speed is halved and it has disadvantage on attack rolls and saving throws until the end of its next turn. The creature repeats the saving throw at the end of each of its turns, with the same effects for success and failure. In addition, the creature has disadvantage on Strength or Dexterity saving throws but advantage on Constitution or Charisma saving throws for the spell’s duration (a side effect of the chronal anomaly suffusing its body). The spell ends if the creature makes three successful saves in a row.", + "document": "deepm", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "the heart of a chaotic creature of challenge rating 5 or higher, worth 500 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_time-step", + "fields": { + "name": "Time Step", + "desc": "You briefly step forward in time. You disappear from your location and reappear at the start of your next turn in a location of your choice that you can see within 30 feet of the space you disappeared from. You can’t be affected by anything that happens during the time you’re missing, and you aren’t aware of anything that happens during that time.", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_time-vortex", + "fields": { + "name": "Time Vortex", + "desc": "This spell destabilizes the flow of time, enabling you to create a vortex of temporal fluctuations that are visible as a spherical distortion with a 10-foot radius, centered on a point within range. Each creature in the area when you cast the spell must succeed on a Wisdom saving throw or be affected by the time vortex. While the spell lasts, a creature that enters the sphere or starts its turn inside the sphere must also succeed on a Wisdom saving throw or be affected. On a successful save, it becomes immune to this casting of the spell.\n\nAn affected creature can’t take reactions and rolls a d10 at the start of its turn to determine its behavior for that turn.\n\n| D10 | EFFECT |\n|-|-|\n| 1–2 | The creature is affected as if by a slow spell until the start of its next turn. |\n| 3–5 | The creature is stunned until the start of its next turn. |\n| 6–8 | The creature’s current initiative result is reduced by 5. The creature begins using this new initiative result in the next round. Multiple occurrences of this effect for the same creature are cumulative. |\n| 9–10 | The creature’s speed is halved (round up to the nearest 5-foot increment) until the start of its next turn. |\n\nYou can move the temporal vortex 10 feet each round as a bonus action. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "document": "deepm", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_timely-distraction", + "fields": { + "name": "Timely Distraction", + "desc": "You call forth a swirling, crackling wave of constantly shifting pops, flashes, and swept-up debris. This chaos can confound one creature. If the target gets a failure on a Wisdom saving throw, roll a d4 and consult the following table to determine the result. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Otherwise, the spell ends when its duration expires.\n\n| D4 | Effect |\n|-|-|\n| 1 | Blinded |\n| 2 | Stunned |\n| 3 | Deafened |\n| 4 | Prone |\n\n", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of sand or dirt thrown in the air", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "3 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_tireless", + "fields": { + "name": "Tireless", + "desc": "You grant machinelike stamina to a creature you touch for the duration of the spell. The target requires no food or drink or rest. It can move at three times its normal speed overland and perform three times the usual amount of labor. The target is not protected from fatigue or exhaustion caused by a magical effect.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "an ever-wound spring worth 50 gp", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_tongue-of-sand", + "fields": { + "name": "Tongue of Sand", + "desc": "**Tongue of sand** is similar in many ways to [magic mouth](https://api.open5e.com/spells/magic-mouth). When you cast it, you implant a message in a quantity of sand. The sand must fill a space no smaller than 4 square feet and at least 2 inches deep. The message can be up to 25 words. You also decide the conditions that trigger the speaking of the message. When the message is triggered, a mouth forms in the sand and delivers the message in a raspy, whispered voice that can be heard by creatures within 10 feet of the sand.\n\nAdditionally, **tongue of sand** has the ability to interact in a simple, brief manner with creatures who hear its message. For up to 10 minutes after the message is triggered, questions addressed to the sand will be answered as you would answer them. Each answer can be no more than ten words long, and the spell ends after a second question is answered.", + "document": "deepm", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_tongue-tied", + "fields": { + "name": "Tongue Tied", + "desc": "You make a choking motion while pointing at a target, which must make a successful Wisdom saving throw or become unable to communicate verbally. The target’s speech becomes garbled, and it has disadvantage on Charisma checks that require speech. The creature can cast a spell that has a verbal component only by making a successful Constitution check against your spell save DC. On a failed check, the creature’s action is used but the spell slot isn’t expended.", + "document": "deepm", + "level": 5, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_torrent-of-fire", + "fields": { + "name": "Torrent of Fire", + "desc": "You harness the power of fire contained in ley lines with this spell. You create a 60-foot cone of flame. Creatures in the cone take 6d6 fire damage, or half as much damage with a successful Dexterity saving throw. You can then flow along the flames, reappearing anywhere inside the cone’s area. This repositioning doesn’t count as movement and doesn’t trigger opportunity attacks.", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of obsidian", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 60, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_touch-of-the-unliving", + "fields": { + "name": "Touch of the Unliving", + "desc": "Make a melee spell attack against a creature you can reach. On a hit, the target takes 2d6 necrotic damage and, if it is not an undead creature, it is paralyzed until the end of its next turn. Until the spell ends, you can make the attack again on each of your turns as an action.\n", + "document": "deepm", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_tracer", + "fields": { + "name": "Tracer", + "desc": "When you cast this spell and as a bonus action on each of your turns until the spell ends, you can imbue a piece of ammunition you fire from a ranged weapon with a tiny, invisible beacon. If a ranged attack roll with an imbued piece of ammunition hits a target, the beacon is transferred to the target. The weapon that fired the ammunition is attuned to the beacon and becomes warm to the touch when it points in the direction of the target as long as the target is on the same plane of existence as you. You can have only one *tracer* target at a time. If you put a *tracer* on a different target, the effect on the previous target ends.\n A creature must succeed on an Intelligence (Arcana) check against your spell save DC to notice the magical beacon.", + "document": "deepm", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a drop of bright paint", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_treasure-chasm", + "fields": { + "name": "Treasure Chasm", + "desc": "You cause the glint of a golden coin to haze over the vision of one creature in range. The target creature must make a Wisdom saving throw. If it fails, it sees a gorge, trench, or other hole in the ground, at a spot within range chosen by you, which is filled with gold and treasure. On its next turn, the creature must move toward that spot. When it reaches the spot, it becomes incapacitated, as it devotes all its attention to scooping imaginary treasure into its pockets or a pouch.\n\nAn affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The effect also ends if the creature takes damage from you or one of your allies.\n\nCreatures with the dragon type have disadvantage on the initial saving throw but have advantage on saving throws against this spell made after reaching the designated spot.", + "document": "deepm", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a gold coin", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_tree-heal", + "fields": { + "name": "Tree Heal", + "desc": "You touch a plant and it regains 1d4 hit points. Alternatively, you can cure it of one disease or remove pests from it. Once you cast this spell on a plant or plant creature, you can't cast it on that target again for 24 hours. This spell can be used only on plants and plant creatures.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_tree-running", + "fields": { + "name": "Tree Running", + "desc": "One willing creature you touch gains a climbing speed equal to its walking speed. This climbing speed functions only while the creature is in contact with a living plant or fungus that’s growing from the ground. The creature can cling to an appropriate surface with just one hand or with just its feet, leaving its hands free to wield weapons or cast spells. The plant doesn’t give under the creature’s weight, so the creature can walk on the tiniest of tree branches, stand on a leaf, or run across the waving top of a field of wheat without bending a stalk or touching the ground.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "a maple catkin", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_tree-speak", + "fields": { + "name": "Tree Speak", + "desc": "You touch a tree and ask one question about anything that might have happened in its immediate vicinity (such as “Who passed by here?”). You get a mental sensation of the response, which lasts for the duration of the spell. Trees do not have a humanoid’s sense of time, so the tree might speak about something that happened last night or a hundred years ago. The sensation you receive might include sight, hearing, vibration, or smell, all from the tree’s perspective. Trees are particularly attentive to anything that might harm the forest and always report such activities when questioned.\n\nIf you cast this spell on a tree that contains a creature that can merge with trees, such as a dryad, you can freely communicate with the merged creature for the duration of the spell.", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_trench", + "fields": { + "name": "Trench", + "desc": "By making a scooping gesture, you cause the ground to slowly sink in an area 5 feet wide and 60 feet long, originating from a point within range. When the casting is finished, a 5-foot-deep trench is the result.\n\nThe spell works only on flat, open ground (not on stone or paved surfaces) that is not occupied by creatures or objects.\n", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can increase the width of the trench by 5 feet or the length by 30 feet for each slot level above 2nd. You can make a different choice (width or length) for each slot level above 2nd.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_trick-question", + "fields": { + "name": "Trick Question", + "desc": "You pose a question that can be answered by one word, directed at a creature that can hear you. The target must make a successful Wisdom saving throw or be compelled to answer your question truthfully. When the answer is given, the target knows that you used magic to compel it.", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_triumph-of-ice", + "fields": { + "name": "Triumph of Ice", + "desc": "You transform one of the four elements—air, earth, fire, or water—into ice or snow. The affected area is a sphere with a radius of 100 feet, centered on you. The specific effect depends on the element you choose.\n* ***Air.*** Vapor condenses into snowfall. If the effect of a [fog cloud](https://api.open5e.com/spells/fog-cloud) spell, a [stinking cloud](https://api.open5e.com/spells/stinking-cloud), or similar magic is in the area, this spell negates it. A creature of elemental air within range takes 8d6 cold damage—and, if airborne, it must make a successful Constitution saving throw at the start of its turn to avoid being knocked prone (no falling damage).\n* ***Earth.*** Soil freezes into permafrost to a depth of 10 feet. A creature burrowing through the area has its speed halved until the area thaws, unless it can burrow through solid rock. A creature of elemental earth within range must make a successful Constitution saving throw or take 8d6 cold damage.\n* ***Fire.*** Flames or other sources of extreme heat (such as molten lava) on the ground within range transform into shards of ice, and the area they occupy becomes difficult terrain. Each creature in the previously burning area takes 2d6 slashing damage when the spell is cast and 1d6 slashing damage for every 5 feet it moves in the area (unless it is not hindered by icy terrain) until the spell ends; a successful Dexterity saving throw reduces the slashing damage by half. A creature of elemental fire within range must make a successful Constitution saving throw or take 8d6 cold damage and be stunned for 1d6 rounds.\n* ***Water.*** Open water (a pond, lake, or river) freezes to a depth of 4 feet. A creature on the surface of the water when it freezes must make a successful Dexterity saving throw to avoid being trapped in the ice. A trapped creature can free itself by using an action to make a successful Strength (Athletics) check. A creature of elemental water within range takes no damage from the spell but is paralyzed for 1d6 rounds unless it makes a successful Constitution saving throw, and it treats the affected area as difficult terrain.", + "document": "deepm", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a stone extracted from glacial ice", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "cold" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_twist-the-skein", + "fields": { + "name": "Twist the Skein", + "desc": "You tweak a strand of a creature’s fate as it attempts an attack roll, saving throw, or skill check. Roll a d20 and subtract 10 to produce a number from 10 to –9. Add that number to the creature’s roll. This adjustment can turn a failure into a success or vice versa, or it might not change the outcome at all.", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_umbral-storm", + "fields": { + "name": "Umbral Storm", + "desc": "You create a channel to a region of the Plane of Shadow that is inimical to life and order. A storm of dark, raging entropy fills a 20-foot-radius sphere centered on a point you can see within range. Any creature that starts its turn in the storm or enters it for the first time on its turn takes 6d8 necrotic damage and gains one level of exhaustion; a successful Constitution saving throw halves the damage and prevents the exhaustion.\n\nYou can use a bonus action on your turn to move the area of the storm 30 feet in any direction.", + "document": "deepm", + "level": 9, + "school": "necromancy", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_uncontrollable-transformation", + "fields": { + "name": "Uncontrollable Transformation", + "desc": "You infuse your body with raw chaos and will it to adopt a helpful mutation. Roll a d10 and consult the Uncontrollable Transformation table below to determine what mutation occurs. You can try to control the shifting of your body to gain a mutation you prefer, but doing so is taxing; you can roll a d10 twice and choose the result you prefer, but you gain one level of exhaustion. At the end of the spell, your body returns to its normal form.\n", + "document": "deepm", + "level": 7, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you gain an additional mutation for each slot level above 7th. You gain one level of exhaustion for each mutation you try to control.\n ## Uncontrollable Transformation \n| D10 | Mutation |\n|-|-|\n| 1 | A spindly third arm sprouts from your shoulder. As a bonus action, you can use it to attack with a light weapon. You have advantage on Dexterity (Sleight of Hand) checks and any checks that require the manipulation of tools. |\n| 2 | Your skin is covered by rough scales that increase your AC by 1 and give you resistance to a random damage type (roll on the Damage Type table). |\n| 3 | A puckered orifice grows on your back. You can forcefully expel air from it, granting you a flying speed of 30 feet. You must land at the end of your turn. In addition, as a bonus action, you can try to push a creature away with a blast of air. The target is pushed 5 feet away from you if it fails a Strength saving throw with a DC equal to 10 + your Constitution modifier. |\n| 4 | A second face appears on the back of your head. You gain darkvision out to a range of 120 feet and advantage on sight‐based and scent-based Wisdom (Perception) checks. You become adept at carrying on conversations with yourself. |\n| 5 | You grow gills that not only allow you to breathe underwater but also filter poison out of the air. You gain immunity to inhaled poisons. |\n| 6 | Your hindquarters elongate, and you grow a second set of legs. Your base walking speed increases by 10 feet, and your carrying capacity becomes your Strength score multiplied by 20. |\n| 7 | You become incorporeal and can move through other creatures and objects as if they were difficult terrain. You take 1d10 force damage if you end your turn inside an object. You can’t pick up or interact with physical objects that you weren’t carrying when you became incorporeal. |\n| 8 | Your limbs elongate and flatten into prehensile paddles. You gain a swimming speed equal to your base walking speed and have advantage on Strength (Athletics) checks made to climb or swim. In addition, your unarmed strikes deal 1d6 bludgeoning damage. |\n| 9 | Your head fills with a light gas and swells to four times its normal size, causing your hair to fall out. You have advantage on Intelligence and Wisdom ability checks and can levitate up to 5 feet above the ground. |\n| 10 | You grow three sets of feathered wings that give you a flying speed equal to your walking speed and the ability to hover. |\n\n ## Damage Type \n\n| d10 | Damage Type |\n|-|-|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |\n\n", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "the bill of a platypus", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_undermine-armor", + "fields": { + "name": "Undermine Armor", + "desc": "You unravel the bonds of reality that hold a suit of armor together. A target wearing armor must succeed on a Constitution saving throw or its armor softens to the consistency of candle wax, decreasing the target’s AC by 2.\n\n**Undermine armor** has no effect on creatures that aren’t wearing armor.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_unholy-defiance", + "fields": { + "name": "Unholy Defiance", + "desc": "Until the spell ends, undead creatures within range have advantage on saving throws against effects that turn undead. If an undead creature within this area has the Turning Defiance trait, that creature can roll a d4 when it makes a saving throw against an effect that turns undead and add the number rolled to the saving throw.", + "document": "deepm", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of earth from a grave", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_unleash-effigy", + "fields": { + "name": "Unleash Effigy", + "desc": "You cause a stone statue that you can see within 60 feet of you to animate as your ally. The statue has the statistics of a [stone golem](https://api.open5e.com/monsters/stone-golem). It takes a turn immediately after your turn. As a bonus action on your turn, you can order the golem to move and attack, provided you’re within 60 feet of it. Without orders from you, the statue does nothing.\n\nWhenever the statue has 75 hit points or fewer at the start of your turn or it is more than 60 feet from you at the start of your turn, you must make a successful DC 16 spellcasting check or the statue goes berserk. On each of its turns, the berserk statue attacks you or one of your allies. If no creature is near enough to be attacked, the statue dashes toward the nearest one instead. Once the statue goes berserk, it remains berserk until it’s destroyed.\n\nWhen the spell ends, the animated statue reverts to a normal, mundane statue.", + "document": "deepm", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_unluck-on-that", + "fields": { + "name": "Unluck On That", + "desc": "By uttering a swift curse (“Unluck on that!”), you bring misfortune to the target’s attempt; the affected creature has disadvantage on the roll.\n", + "document": "deepm", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the range of the spell increases by 5 feet for each slot level above 1st.", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_unseen-strangler", + "fields": { + "name": "Unseen Strangler", + "desc": "You conjure an immaterial, tentacled aberration in an unoccupied space you can see within range, and you specify a password that the phantom recognizes. The entity remains where you conjured it until the spell ends, until you dismiss it as an action, or until you move more than 80 feet from it.\n\nThe strangler is invisible to all creatures except you, and it can’t be harmed. When a Small or larger creature approaches within 30 feet of it without speaking the password that you specified, the strangler starts whispering your name. This whispering is always audible to you, regardless of other sounds in the area, as long as you’re conscious. The strangler sees invisible creatures and can see into the Ethereal Plane. It ignores illusions.\n\nIf any creatures hostile to you are within 5 feet of the strangler at the start of your turn, the strangler attacks one of them with a tentacle. It makes a melee weapon attack with a bonus equal to your spellcasting ability modifier + your proficiency bonus. On a hit, it deals 3d6 bludgeoning damage, and a Large or smaller creature is grappled (escape DC = your spellcasting ability modifier + your proficiency bonus). Until this grapple ends, the target is restrained, and the strangler can’t attack another target. If the strangler scores a critical hit, the target begins to suffocate and can’t speak until the grapple ends.", + "document": "deepm", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of sulfur and a live rodent", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_vine-trestle", + "fields": { + "name": "Vine Trestle", + "desc": "You cause a vine to sprout from the ground and crawl across a surface or rise into the air in a direction chosen by you. The vine must sprout from a solid surface (such as the ground or a wall), and it is strong enough to support 600 pounds of weight along its entire length. The vine collapses immediately if that 600-pound limit is exceeded. A vine that collapses from weight or damage instantly disintegrates.\n\nThe vine has many small shoots, so it can be climbed with a successful DC 5 Strength (Athletics) check. It has AC 8, hit points equal to 5 × your spellcasting level, and a damage threshold of 5.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the vine can support an additional 30 pounds, and its damage threshold increases by 1 for each slot level above 2nd.\n\n***Ritual Focus.*** If you expend your ritual focus, the vine is permanent until destroyed or dispelled.", + "target_type": "point", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a 1-inch piece of green vine that is consumed in the casting", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_visage-of-madness", + "fields": { + "name": "Visage of Madness", + "desc": "When you cast this spell, your face momentarily becomes that of a demon lord, frightful enough to drive enemies mad. Every foe that’s within 30 feet of you and that can see you must make a Wisdom saving throw. On a failed save, a creature claws savagely at its eyes, dealing piercing damage to itself equal to 1d6 + the creature’s Strength modifier. The creature is also stunned until the end of its next turn and blinded for 1d4 rounds. A creature that rolls maximum damage against itself (a 6 on the d6) is blinded permanently.", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_vital-mark", + "fields": { + "name": "Vital Mark", + "desc": "You mark an unattended magic item (including weapons and armor) with a clearly visible stain of your blood. The exact appearance of the bloodstain is up to you. The item’s magical abilities don’t function for anyone else as long as the bloodstain remains on it. For example, a **+1 flaming longsword** with a vital mark functions as a nonmagical longsword in the hands of anyone but the caster, but it still functions as a **+1 flaming longsword** for the caster who placed the bloodstain on it. A [wand of magic missiles](https://api.open5e.com/spells/wand-of-magic-missiles) would be no more than a stick in the hands of anyone but the caster.\n", + "document": "deepm", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher on the same item for 28 consecutive days, the effect becomes permanent until dispelled.", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_void-rift", + "fields": { + "name": "Void Rift", + "desc": "You speak a hideous string of Void Speech that leaves your mouth bloodied, causing a rift into nothingness to tear open. The rift takes the form of a 10-foot-radius sphere, and it forms around a point you can see within range. The area within 40 feet of the sphere’s outer edge becomes difficult terrain as the Void tries to draw everything into itself. A creature that starts its turn within 40 feet of the sphere or that enters that area for the first time on its turn must succeed on a Strength saving throw or be pulled 15 feet toward the rift. A creature that starts its turn in the rift or that comes into contact with it for the first time on its turn takes 8d10 necrotic damage. Creatures inside the rift are blinded and deafened. Unattended objects within 40 feet of the rift are drawn 15 feet toward it at the start of your turn, and they take damage as creatures if they come into contact with it.\n\nWhile concentrating on the spell, you take 2d6 necrotic damage at the end of each of your turns.", + "document": "deepm", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a black opal worth 500 gp, carved with a Void glyph", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "8d10", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 10, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_void-strike", + "fields": { + "name": "Void Strike", + "desc": "With a short phrase of Void Speech, you gather writhing darkness around your hand. When you cast the spell, and as an action on subsequent turns while you maintain concentration, you can unleash a bolt of darkness at a creature within range. Make a ranged spell attack. If the target is in dim light or darkness, you have advantage on the roll. On a hit, the target takes 5d8 necrotic damage and is frightened of you until the start of your next turn.\n", + "document": "deepm", + "level": 3, + "school": "evocation", + "higher_level": "When you cast the spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "5d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_volley-shield", + "fields": { + "name": "Volley Shield", + "desc": "You touch a willing creature and create a shimmering shield of energy to protect it. The shield grants the target a +5 bonus to AC and gives it resistance against nonmagical bludgeoning, piercing, and slashing damage for the duration of the spell.\n\nIn addition, the shield can reflect hostile spells back at their casters. When the target makes a successful saving throw against a hostile spell, the caster of the spell immediately becomes the spell’s new target. The caster is entitled to the appropriate saving throw against the returned spell, if any, and is affected by the spell as if it came from a spellcaster of the caster’s level.", + "document": "deepm", + "level": 7, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_vomit-tentacles", + "fields": { + "name": "Vomit Tentacles", + "desc": "Your jaws distend and dozens of thin, slimy tentacles emerge from your mouth to grasp and bind your opponents. Make a melee spell attack against a foe within 15 feet of you. On a hit, the target takes bludgeoning damage equal to 2d6 + your Strength modifier and is grappled (escape DC equal to your spell save DC). Until this grapple ends, the target is restrained and it takes the same damage at the start of each of your turns. You can grapple only one creature at a time.\n\nThe Armor Class of the tentacles is equal to yours. If they take slashing damage equal to 5 + your Constitution modifier from a single attack, enough tentacles are severed to enable a grappled creature to escape. Severed tentacles are replaced by new ones at the start of your turn. Damage dealt to the tentacles doesn’t affect your hit points.\n\nWhile the spell is in effect, you are incapable of speech and can’t cast spells that have verbal components.", + "document": "deepm", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of a tentacle", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "5 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_voorish-sign", + "fields": { + "name": "Voorish Sign", + "desc": "For the duration, invisible creatures and objects within 20 feet of you become visible to you, and you have advantage on saving throws against effects that cause the frightened condition. The effect moves with you, remaining centered on you until the duration expires.\n", + "document": "deepm", + "level": 1, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the radius increases by 5 feet for every two slot levels above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_waft", + "fields": { + "name": "Waft", + "desc": "This spell was first invented by dragon parents to assist their offspring when learning to fly. You gain a flying speed of 60 feet for 1 round. At the start of your next turn, you float rapidly down and land gently on a solid surface beneath you.", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a topaz worth at least 10 gp", + "material_cost": "10.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_walk-the-twisted-path", + "fields": { + "name": "Walk the Twisted Path", + "desc": "When you cast this spell, you and up to five creatures you can see within 20 feet of you enter a shifting landscape of endless walls and corridors that connect to many places throughout the world.\n\nYou can find your way to a destination within 100 miles, as long as you know for certain that your destination exists (though you don’t need to have seen or visited it before), and you must make a successful DC 20 Intelligence check. If you have the ability to retrace a path you have previously taken without making a check (as a minotaur or a goristro can), this check automatically succeeds. On a failed check, you don't find your path this round, and you and your companions each take 4d6 psychic damage as the madness of the shifting maze exacts its toll. You must repeat the check at the start of each of your turns until you find your way to your destination or until you die. In either event, the spell ends.\n\nWhen the spell ends, you and those traveling with you appear in a safe location at your destination.\n", + "document": "deepm", + "level": 6, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, you can bring along two additional creatures or travel an additional 100 miles for each slot level above 6th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a map", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_walking-wall", + "fields": { + "name": "Walking Wall", + "desc": "This spell creates a wall of swinging axes from the pile of miniature axes you provide when casting the spell. The wall fills a rectangle 10 feet wide, 10 feet high, and 20 feet long. The wall has a base speed of 50 feet, but it can’t take the Dash action. It can make up to four attacks per round on your turn, using your spell attack modifier to hit and with a reach of 10 feet. You direct the wall’s movement and attacks as a bonus action. If you choose not to direct it, the wall continues trying to execute the last command you gave it. The wall can’t use reactions. Each successful attack deals 4d6 slashing damage, and the damage is considered magical.\n\nThe wall has AC 12 and 200 hit points, and is immune to necrotic, poison, psychic, and piercing damage. If it is reduced to 0 hit points or when the spell’s duration ends, the wall disappears and the miniature axes fall to the ground in a tidy heap.", + "document": "deepm", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "100 miniature axes", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_wall-of-time", + "fields": { + "name": "Wall of Time", + "desc": "You create a wall of shimmering, transparent blocks on a solid surface within range. You can make a straight wall up to 60 feet long, 20 feet high, and 1 foot thick, or a cylindrical wall up to 20 feet high, 1 foot thick, and 20 feet in diameter. Nonmagical ranged attacks that cross the wall vanish into the time stream with no other effect. Ranged spell attacks and ranged weapon attacks made with magic weapons that pass through the wall are made with disadvantage. A creature that intentionally enters or passes through the wall is affected as if it had just failed its initial saving throw against a [slow](https://api.open5e.com/spells/slow) spell.", + "document": "deepm", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "an hourglass", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_warning-shout", + "fields": { + "name": "Warning Shout", + "desc": "You sense danger before it happens and call out a warning to an ally. One creature you can see and that can hear you gains advantage on its initiative roll.", + "document": "deepm", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_warp-mind-and-matter", + "fields": { + "name": "Warp Mind and Matter", + "desc": "A creature you can see within range undergoes a baleful transmogrification. The target must make a successful Wisdom saving throw or suffer a flesh warp and be afflicted with a form of indefinite madness.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "root of deadly nightshade and a drop of the caster’s blood", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until cured or dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_weapon-of-blood", + "fields": { + "name": "Weapon of Blood", + "desc": "When you cast this spell, you inflict 1d4 slashing damage on yourself that can’t be healed until after the blade created by this spell is destroyed or the spell ends. The trickling blood transforms into a dagger of red metal that functions as a **+1 dagger**.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd to 5th level, the self-inflicted wound deals 3d4 slashing damage and the spell produces a **+2 dagger**. When you cast this spell using a spell slot of 6th to 8th level, the self-inflicted wound deals 6d4 slashing damage and the spell produces a **+2 dagger of wounding**. When you cast this spell using a 9th-level spell slot, the self-inflicted wound deals 9d4 slashing damage and the spell produces a **+3 dagger of wounding**.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a pinch of iron shavings", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_weilers-ward", + "fields": { + "name": "Weiler’s Ward", + "desc": "You create four small orbs of faerie magic that float around your head and give off dim light out to a radius of 15 feet. Whenever a Large or smaller enemy enters that area of dim light, or starts its turn in the area, you can use your reaction to attack it with one or more of the orbs. The enemy creature makes a Charisma saving throw. On a failed save, the creature is pushed 20 feet directly away from you, and each orb you used in the attack explodes violently, dealing 1d6 force damage to the creature.\n", + "document": "deepm", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the number of orbs increases by one for each slot level above 2nd.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a lock of hair from a fey creature", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_wild-shield", + "fields": { + "name": "Wild Shield", + "desc": "You surround yourself with the forces of chaos. Wild lights and strange sounds engulf you, making stealth impossible. While **wild shield** is active, you can use a reaction to repel a spell of 4th level or lower that targets you or whose area you are within. A repelled spell has no effect on you, but doing this causes the chance of a chaos magic surge as if you had cast a spell, with you considered the caster for any effect of the surge.\n\n**Wild shield** ends when the duration expires or when it absorbs 4 levels of spells. If you try to repel a spell whose level exceeds the number of levels remaining, make an ability check using your spellcasting ability. The DC equals 10 + the spell’s level – the number of levels **wild shield** can still repel. If the check succeeds, the spell is repelled; if the check fails, the spell has its full effect. The chance of a chaos magic surge exists regardless of whether the spell is repelled.\n", + "document": "deepm", + "level": 4, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can repel one additional spell level for each slot level above 4th.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_wind-lash", + "fields": { + "name": "Wind Lash", + "desc": "Your swift gesture creates a solid lash of howling wind. Make a melee spell attack against the target. On a hit, the target takes 1d8 slashing damage from the shearing wind and is pushed 5 feet away from you.", + "document": "deepm", + "level": 0, + "school": "evocation", + "higher_level": "The spell’s damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "20 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "slashing" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_wind-of-the-hereafter", + "fields": { + "name": "Wind of the Hereafter", + "desc": "You create a 30-foot-radius sphere of roiling wind that carries the choking stench of death. The sphere is centered on a point you choose within range. The wind blows around corners. When a creature starts its turn in the sphere, it takes 8d8 necrotic damage, or half as much damage if it makes a successful Constitution saving throw. Creatures are affected even if they hold their breath or don’t need to breathe.\n\nThe sphere moves 10 feet away from you at the start of each of your turns, drifting along the surface of the ground. It is not heavier than air but drifts in a straight line for the duration of the spell, even if that carries it over a cliff or gully. If the sphere meets a wall or other impassable obstacle, it turns to the left or right (select randomly).", + "document": "deepm", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a vial of air from a tomb", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d8", + "damage_types": [ + "necrotic" + ], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_wind-tunnel", + "fields": { + "name": "Wind Tunnel", + "desc": "You create a swirling tunnel of strong wind extending from yourself in a direction you choose. The tunnel is a line 60 feet long and 10 feet wide. The wind blows from you toward the end of the line, which is stationary once created. A creature in the line moving with the wind (away from you) adds 10 feet to its speed, and ranged weapon attacks launched with the wind don’t have disadvantage because of long range. Creatures in the line moving against the wind (toward you) spend 2 feet of movement for every 1 foot they move, and ranged weapon attacks launched along the line against the wind are made with disadvantage.\n\nThe wind tunnel immediately disperses gas or vapor, and it extinguishes candles, torches, and similar unprotected flames in the line. It causes protected flames, such as those of lanterns, to dance wildly and has a 50 percent chance of extinguishing them.", + "document": "deepm", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a paper straw", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_winterdark", + "fields": { + "name": "Winterdark", + "desc": "This spell invokes the deepest part of night on the winter solstice. You target a 40-foot-radius, 60-foot-high cylinder centered on a point within range, which is plunged into darkness and unbearable cold. Each creature in the area when you cast the spell and at the start of its turn must make a successful Constitution saving throw or take 1d6 cold damage and gain one level of exhaustion. Creatures immune to cold damage are also immune to the exhaustion effect, as are creatures wearing cold weather gear or otherwise adapted for a cold environment.\n\nAs a bonus action, you can move the center of the effect 20 feet.", + "document": "deepm", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_winters-radiance", + "fields": { + "name": "Winter's Radiance", + "desc": "When you cast this spell, the piercing rays of a day’s worth of sunlight reflecting off fresh snow blankets the area. A creature caught in the spell’s area must succeed on a Constitution saving throw or have disadvantage on ranged attacks and Wisdom (Perception) checks for the duration of the spell. In addition, an affected creature’s vision is hampered such that foes it targets are treated as having three-quarters cover.", + "document": "deepm", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "400 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a piece of polished glass", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_wintry-glide", + "fields": { + "name": "Wintry Glide", + "desc": "Upon casting wintry glide, you can travel via ice or snow without crossing the intervening space. If you are adjacent to a mass of ice or snow, you can enter it by expending 5 feet of movement. By expending another 5 feet of movement, you can immediately exit from that mass at any point—within 500 feet—that’s part of the contiguous mass of ice or snow. When you enter the ice or snow, you instantly know the extent of the material within 500 feet. You must have at least 10 feet of movement available when you cast the spell, or it fails.\n\nIf the mass of ice or snow is destroyed while you are transiting it, you must make a successful Constitution saving throw against your spell save DC to avoid taking 4d6 bludgeoning damage and falling prone at the midpoint of a line between your entrance point and your intended exit point.", + "document": "deepm", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_withered-sight", + "fields": { + "name": "Withered Sight", + "desc": "You cause the eyes of a creature you can see within range to lose acuity. The target must make a Constitution saving throw. On a failed save, the creature has disadvantage on Wisdom (Perception) checks and all attack rolls for the duration of the spell. An affected creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This spell has no effect on a creature that is blind or that doesn’t use its eyes to see.\n", + "document": "deepm", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a dried lizard's eye", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_wolfsong", + "fields": { + "name": "Wolfsong", + "desc": "You emit a howl that can be heard clearly from 300 feet away outdoors. The howl can convey a message of up to nine words, which can be understood by all dogs and wolves in that area, as well as (if you choose) one specific creature of any kind that you name when casting the spell.\n\nIf you cast the spell indoors and aboveground, the howl can be heard out to 200 feet from you. If you cast the spell underground, the howl can be heard from 100 feet away. A creature that understands the message is not compelled to act in a particular way, though the nature of the message might suggest or even dictate a course of action.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can name another specific recipient for each slot level above 2nd.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_word-of-misfortune", + "fields": { + "name": "Word of Misfortune", + "desc": "You hiss a word of Void Speech. Choose one creature you can see within range. The next time the target makes a saving throw during the spell’s duration, it must roll a d4 and subtract the result from the total of the saving throw. The spell then ends.", + "document": "deepm", + "level": 0, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute.", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_wresting-wind", + "fields": { + "name": "Wresting Wind", + "desc": "By blowing a pinch of confetti from your cupped hand, you create a burst of air that can rip weapons and other items out of the hands of your enemies. Each enemy in a 20-foot radius centered on a point you target within range must make a successful Strength saving throw or drop anything held in its hands. The objects land 10 feet away from the creatures that dropped them, in random directions.", + "document": "deepm", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "a handful of paper confetti", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_writhing-arms", + "fields": { + "name": "Writhing Arms", + "desc": "Your arms become constantly writhing tentacles. You can use your action to make a melee spell attack against any target within range. The target takes 1d10 necrotic damage and is grappled (escape DC is your spell save DC). If the target does not escape your grapple, you can use your action on each subsequent turn to deal 1d10 necrotic damage to the target automatically.\n\nAlthough you control the tentacles, they make it difficult to manipulate items. You cannot wield weapons or hold objects, including material components, while under the effects of this spell.\n", + "document": "deepm", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage you deal with your tentacle attack increases by 1d10 for each slot level above 1st.", + "target_type": "object", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d10", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "deepm_yellow-sign", + "fields": { + "name": "Yellow Sign", + "desc": "You attempt to afflict a humanoid you can see within range with memories of distant, alien realms and their peculiar inhabitants. The target must make a successful Wisdom saving throw or be afflicted with a form of long-term madness and be charmed by you for the duration of the spell or until you or one of your allies harms it in any way. While charmed in this way, the creature regards you as a sacred monarch. If you or an ally of yours is fighting the creature, it has advantage on its saving throw.\n\nA successful [remove curse](https://api.open5e.com/spells/remove-curse) spell ends both effects.", + "document": "deepm", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1d10 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +} +] diff --git a/data/v2/kobold-press/deepm/SpellCastingOption.json b/data/v2/kobold-press/deepm/SpellCastingOption.json index a36e9882..77ee20f3 100644 --- a/data/v2/kobold-press/deepm/SpellCastingOption.json +++ b/data/v2/kobold-press/deepm/SpellCastingOption.json @@ -1,25202 +1,25202 @@ [ - { - "model": "api_v2.spellcastingoption", - "pk": 2246, - "fields": { - "parent": "deepm_abhorrent-apparition", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2248, - "fields": { - "parent": "deepm_abhorrent-apparition", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2249, - "fields": { - "parent": "deepm_abhorrent-apparition", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2250, - "fields": { - "parent": "deepm_abhorrent-apparition", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2251, - "fields": { - "parent": "deepm_abhorrent-apparition", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2252, - "fields": { - "parent": "deepm_abhorrent-apparition", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2253, - "fields": { - "parent": "deepm_accelerate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2255, - "fields": { - "parent": "deepm_accelerate", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2256, - "fields": { - "parent": "deepm_accelerate", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2257, - "fields": { - "parent": "deepm_accelerate", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2258, - "fields": { - "parent": "deepm_accelerate", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2259, - "fields": { - "parent": "deepm_accelerate", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2260, - "fields": { - "parent": "deepm_accelerate", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2261, - "fields": { - "parent": "deepm_acid-gate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2263, - "fields": { - "parent": "deepm_acid-gate", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2264, - "fields": { - "parent": "deepm_acid-gate", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2265, - "fields": { - "parent": "deepm_acid-rain", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2267, - "fields": { - "parent": "deepm_acid-rain", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2268, - "fields": { - "parent": "deepm_acid-rain", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2269, - "fields": { - "parent": "deepm_acid-rain", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2270, - "fields": { - "parent": "deepm_acid-rain", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2271, - "fields": { - "parent": "deepm_adjust-position", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2273, - "fields": { - "parent": "deepm_adjust-position", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2274, - "fields": { - "parent": "deepm_adjust-position", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2275, - "fields": { - "parent": "deepm_adjust-position", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2276, - "fields": { - "parent": "deepm_adjust-position", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2277, - "fields": { - "parent": "deepm_adjust-position", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2278, - "fields": { - "parent": "deepm_adjust-position", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2279, - "fields": { - "parent": "deepm_adjust-position", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2280, - "fields": { - "parent": "deepm_adjust-position", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2281, - "fields": { - "parent": "deepm_afflict-line", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2282, - "fields": { - "parent": "deepm_afflict-line", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2283, - "fields": { - "parent": "deepm_agonizing-mark", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2284, - "fields": { - "parent": "deepm_alchemical-form", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2285, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2286, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2287, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2288, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2289, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2290, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2291, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2292, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2293, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2294, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2295, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2296, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2297, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2298, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2299, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2300, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2301, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2302, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2303, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2304, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2305, - "fields": { - "parent": "deepm_ale-dritch-blast", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2306, - "fields": { - "parent": "deepm_ally-aegis", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2308, - "fields": { - "parent": "deepm_ally-aegis", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2309, - "fields": { - "parent": "deepm_ally-aegis", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2310, - "fields": { - "parent": "deepm_ally-aegis", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2311, - "fields": { - "parent": "deepm_alone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2312, - "fields": { - "parent": "deepm_alter-arrows-fortune", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2313, - "fields": { - "parent": "deepm_altheas-travel-tent", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2314, - "fields": { - "parent": "deepm_altheas-travel-tent", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2316, - "fields": { - "parent": "deepm_altheas-travel-tent", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2317, - "fields": { - "parent": "deepm_altheas-travel-tent", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2318, - "fields": { - "parent": "deepm_altheas-travel-tent", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2319, - "fields": { - "parent": "deepm_altheas-travel-tent", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2320, - "fields": { - "parent": "deepm_altheas-travel-tent", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2321, - "fields": { - "parent": "deepm_altheas-travel-tent", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2322, - "fields": { - "parent": "deepm_altheas-travel-tent", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2323, - "fields": { - "parent": "deepm_amplify-gravity", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2324, - "fields": { - "parent": "deepm_analyze-device", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2325, - "fields": { - "parent": "deepm_ancestors-strength", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2326, - "fields": { - "parent": "deepm_anchoring-rope", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2328, - "fields": { - "parent": "deepm_anchoring-rope", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 1, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2329, - "fields": { - "parent": "deepm_anchoring-rope", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2330, - "fields": { - "parent": "deepm_anchoring-rope", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2331, - "fields": { - "parent": "deepm_anchoring-rope", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2332, - "fields": { - "parent": "deepm_anchoring-rope", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2333, - "fields": { - "parent": "deepm_anchoring-rope", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2334, - "fields": { - "parent": "deepm_anchoring-rope", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2335, - "fields": { - "parent": "deepm_anchoring-rope", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2336, - "fields": { - "parent": "deepm_ancient-shade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2337, - "fields": { - "parent": "deepm_angelic-guardian", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2338, - "fields": { - "parent": "deepm_animate-ghoul", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2340, - "fields": { - "parent": "deepm_animate-ghoul", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2341, - "fields": { - "parent": "deepm_animate-ghoul", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2342, - "fields": { - "parent": "deepm_animate-ghoul", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2343, - "fields": { - "parent": "deepm_animate-ghoul", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2344, - "fields": { - "parent": "deepm_animate-ghoul", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2345, - "fields": { - "parent": "deepm_animate-ghoul", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2346, - "fields": { - "parent": "deepm_animate-ghoul", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2347, - "fields": { - "parent": "deepm_animate-greater-undead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2349, - "fields": { - "parent": "deepm_animate-greater-undead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2350, - "fields": { - "parent": "deepm_animate-greater-undead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2351, - "fields": { - "parent": "deepm_animate-greater-undead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2352, - "fields": { - "parent": "deepm_animated-scroll", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2353, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2354, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2355, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2356, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2357, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2358, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2359, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2360, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2361, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2362, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2363, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2364, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2365, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2366, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2367, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2368, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2369, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": "96 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2370, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": "96 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2371, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": "96 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2372, - "fields": { - "parent": "deepm_animated-scroll", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": "96 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2373, - "fields": { - "parent": "deepm_anticipate-arcana", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2374, - "fields": { - "parent": "deepm_anticipate-attack", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2375, - "fields": { - "parent": "deepm_anticipate-weakness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2376, - "fields": { - "parent": "deepm_arcane-sight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2377, - "fields": { - "parent": "deepm_as-you-were", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2378, - "fields": { - "parent": "deepm_ashen-memories", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2379, - "fields": { - "parent": "deepm_ashen-memories", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2380, - "fields": { - "parent": "deepm_aspect-of-the-dragon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2381, - "fields": { - "parent": "deepm_aspect-of-the-serpent", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2383, - "fields": { - "parent": "deepm_aspect-of-the-serpent", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2384, - "fields": { - "parent": "deepm_aspect-of-the-serpent", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2385, - "fields": { - "parent": "deepm_aspect-of-the-serpent", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2386, - "fields": { - "parent": "deepm_aspect-of-the-serpent", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2387, - "fields": { - "parent": "deepm_aspect-of-the-serpent", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2388, - "fields": { - "parent": "deepm_aspect-of-the-serpent", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2389, - "fields": { - "parent": "deepm_aura-of-protection-or-destruction", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2391, - "fields": { - "parent": "deepm_aura-of-protection-or-destruction", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "1 round", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2392, - "fields": { - "parent": "deepm_aura-of-protection-or-destruction", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "2 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2393, - "fields": { - "parent": "deepm_aura-of-protection-or-destruction", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2394, - "fields": { - "parent": "deepm_aura-of-protection-or-destruction", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "4 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2395, - "fields": { - "parent": "deepm_aura-of-protection-or-destruction", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2396, - "fields": { - "parent": "deepm_aura-of-protection-or-destruction", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2397, - "fields": { - "parent": "deepm_auspicious-warning", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2398, - "fields": { - "parent": "deepm_avoid-grievous-injury", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2399, - "fields": { - "parent": "deepm_avronins-astral-assembly", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2400, - "fields": { - "parent": "deepm_avronins-astral-assembly", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2401, - "fields": { - "parent": "deepm_awaken-object", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2402, - "fields": { - "parent": "deepm_bad-timing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2403, - "fields": { - "parent": "deepm_batsense", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2404, - "fields": { - "parent": "deepm_become-nightwing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2405, - "fields": { - "parent": "deepm_beguiling-bet", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2407, - "fields": { - "parent": "deepm_beguiling-bet", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 1, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2408, - "fields": { - "parent": "deepm_beguiling-bet", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2409, - "fields": { - "parent": "deepm_beguiling-bet", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2410, - "fields": { - "parent": "deepm_beguiling-bet", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2411, - "fields": { - "parent": "deepm_beguiling-bet", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2412, - "fields": { - "parent": "deepm_beguiling-bet", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2413, - "fields": { - "parent": "deepm_beguiling-bet", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2414, - "fields": { - "parent": "deepm_benediction", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2415, - "fields": { - "parent": "deepm_bestial-fury", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2417, - "fields": { - "parent": "deepm_bestial-fury", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2418, - "fields": { - "parent": "deepm_bestial-fury", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2419, - "fields": { - "parent": "deepm_bestial-fury", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2420, - "fields": { - "parent": "deepm_bestial-fury", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2421, - "fields": { - "parent": "deepm_bestial-fury", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2422, - "fields": { - "parent": "deepm_bestial-fury", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2423, - "fields": { - "parent": "deepm_bestial-fury", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2424, - "fields": { - "parent": "deepm_binding-oath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2425, - "fields": { - "parent": "deepm_biting-arrow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2426, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2427, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2428, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2429, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2430, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2431, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2432, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2433, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2434, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2435, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2436, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2437, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2438, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2439, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2440, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2441, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2442, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2443, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2444, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2445, - "fields": { - "parent": "deepm_biting-arrow", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2446, - "fields": { - "parent": "deepm_bitter-chains", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2447, - "fields": { - "parent": "deepm_black-goats-blessing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2448, - "fields": { - "parent": "deepm_black-hand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2449, - "fields": { - "parent": "deepm_black-ribbons", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2450, - "fields": { - "parent": "deepm_black-sunshine", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2451, - "fields": { - "parent": "deepm_black-swan-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2453, - "fields": { - "parent": "deepm_black-swan-storm", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2454, - "fields": { - "parent": "deepm_black-swan-storm", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2455, - "fields": { - "parent": "deepm_black-swan-storm", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2456, - "fields": { - "parent": "deepm_black-swan-storm", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2457, - "fields": { - "parent": "deepm_black-swan-storm", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2458, - "fields": { - "parent": "deepm_black-swan-storm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2459, - "fields": { - "parent": "deepm_black-swan-storm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2460, - "fields": { - "parent": "deepm_black-well", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2462, - "fields": { - "parent": "deepm_black-well", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2463, - "fields": { - "parent": "deepm_black-well", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2464, - "fields": { - "parent": "deepm_black-well", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2465, - "fields": { - "parent": "deepm_blade-of-my-brother", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2466, - "fields": { - "parent": "deepm_blade-of-wrath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2468, - "fields": { - "parent": "deepm_blade-of-wrath", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2469, - "fields": { - "parent": "deepm_blade-of-wrath", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2470, - "fields": { - "parent": "deepm_blade-of-wrath", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2471, - "fields": { - "parent": "deepm_blade-of-wrath", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2472, - "fields": { - "parent": "deepm_blade-of-wrath", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2473, - "fields": { - "parent": "deepm_blade-of-wrath", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2474, - "fields": { - "parent": "deepm_blazing-chariot", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2475, - "fields": { - "parent": "deepm_bleating-call", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2476, - "fields": { - "parent": "deepm_bleed", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2477, - "fields": { - "parent": "deepm_bless-the-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2478, - "fields": { - "parent": "deepm_blessed-halo", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2480, - "fields": { - "parent": "deepm_blessed-halo", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2481, - "fields": { - "parent": "deepm_blessed-halo", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2482, - "fields": { - "parent": "deepm_blessed-halo", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2483, - "fields": { - "parent": "deepm_blessed-halo", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2484, - "fields": { - "parent": "deepm_blessed-halo", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2485, - "fields": { - "parent": "deepm_blessed-halo", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2486, - "fields": { - "parent": "deepm_blessed-halo", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2487, - "fields": { - "parent": "deepm_blizzard", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2488, - "fields": { - "parent": "deepm_blood-and-steel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2490, - "fields": { - "parent": "deepm_blood-and-steel", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2491, - "fields": { - "parent": "deepm_blood-and-steel", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2492, - "fields": { - "parent": "deepm_blood-and-steel", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2493, - "fields": { - "parent": "deepm_blood-and-steel", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2494, - "fields": { - "parent": "deepm_blood-and-steel", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2495, - "fields": { - "parent": "deepm_blood-armor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2496, - "fields": { - "parent": "deepm_blood-lure", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2497, - "fields": { - "parent": "deepm_blood-offering", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2498, - "fields": { - "parent": "deepm_blood-puppet", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2499, - "fields": { - "parent": "deepm_blood-scarab", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2501, - "fields": { - "parent": "deepm_blood-scarab", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2502, - "fields": { - "parent": "deepm_blood-scarab", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2503, - "fields": { - "parent": "deepm_blood-scarab", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2504, - "fields": { - "parent": "deepm_blood-scarab", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2505, - "fields": { - "parent": "deepm_blood-scarab", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2506, - "fields": { - "parent": "deepm_blood-scarab", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2507, - "fields": { - "parent": "deepm_blood-scarab", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2508, - "fields": { - "parent": "deepm_blood-scarab", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2509, - "fields": { - "parent": "deepm_blood-spoor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2510, - "fields": { - "parent": "deepm_blood-tide", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2511, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2512, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2513, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2514, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2515, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2516, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2517, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2518, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2519, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2520, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2521, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2522, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2523, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2524, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2525, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2526, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2527, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2528, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2529, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2530, - "fields": { - "parent": "deepm_blood-tide", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2531, - "fields": { - "parent": "deepm_blood-to-acid", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2532, - "fields": { - "parent": "deepm_bloodhound", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2534, - "fields": { - "parent": "deepm_bloodhound", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2535, - "fields": { - "parent": "deepm_bloodhound", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2536, - "fields": { - "parent": "deepm_bloodhound", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2537, - "fields": { - "parent": "deepm_bloodhound", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2538, - "fields": { - "parent": "deepm_bloodhound", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2539, - "fields": { - "parent": "deepm_bloodhound", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2540, - "fields": { - "parent": "deepm_bloodhound", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2541, - "fields": { - "parent": "deepm_bloodhound", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2542, - "fields": { - "parent": "deepm_bloodshot", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2544, - "fields": { - "parent": "deepm_bloodshot", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2545, - "fields": { - "parent": "deepm_bloodshot", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2546, - "fields": { - "parent": "deepm_bloodshot", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2547, - "fields": { - "parent": "deepm_bloodshot", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2548, - "fields": { - "parent": "deepm_bloodshot", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2549, - "fields": { - "parent": "deepm_bloodshot", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2550, - "fields": { - "parent": "deepm_bloodshot", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2551, - "fields": { - "parent": "deepm_bloody-hands", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2552, - "fields": { - "parent": "deepm_bloody-smite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2553, - "fields": { - "parent": "deepm_bloom", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2554, - "fields": { - "parent": "deepm_bloom", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2555, - "fields": { - "parent": "deepm_boiling-blood", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2557, - "fields": { - "parent": "deepm_boiling-blood", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2558, - "fields": { - "parent": "deepm_boiling-blood", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2559, - "fields": { - "parent": "deepm_boiling-blood", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2560, - "fields": { - "parent": "deepm_boiling-blood", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2561, - "fields": { - "parent": "deepm_boiling-blood", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2562, - "fields": { - "parent": "deepm_boiling-oil", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2564, - "fields": { - "parent": "deepm_boiling-oil", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2565, - "fields": { - "parent": "deepm_boiling-oil", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2566, - "fields": { - "parent": "deepm_boiling-oil", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2567, - "fields": { - "parent": "deepm_boiling-oil", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2568, - "fields": { - "parent": "deepm_boiling-oil", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2569, - "fields": { - "parent": "deepm_boiling-oil", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2570, - "fields": { - "parent": "deepm_boiling-oil", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2571, - "fields": { - "parent": "deepm_bolster-undead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2573, - "fields": { - "parent": "deepm_bolster-undead", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2574, - "fields": { - "parent": "deepm_bolster-undead", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2575, - "fields": { - "parent": "deepm_bolster-undead", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2576, - "fields": { - "parent": "deepm_bolster-undead", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2577, - "fields": { - "parent": "deepm_bolster-undead", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2578, - "fields": { - "parent": "deepm_bolster-undead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2579, - "fields": { - "parent": "deepm_bolster-undead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2580, - "fields": { - "parent": "deepm_bolster-undead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2581, - "fields": { - "parent": "deepm_booster-shot", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2583, - "fields": { - "parent": "deepm_booster-shot", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2584, - "fields": { - "parent": "deepm_booster-shot", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2585, - "fields": { - "parent": "deepm_booster-shot", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2586, - "fields": { - "parent": "deepm_booster-shot", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2587, - "fields": { - "parent": "deepm_booster-shot", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2588, - "fields": { - "parent": "deepm_booster-shot", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2589, - "fields": { - "parent": "deepm_boreass-breath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2590, - "fields": { - "parent": "deepm_boreass-breath", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2592, - "fields": { - "parent": "deepm_boreass-breath", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2593, - "fields": { - "parent": "deepm_boreass-breath", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2594, - "fields": { - "parent": "deepm_boreass-breath", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2595, - "fields": { - "parent": "deepm_boreass-breath", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2596, - "fields": { - "parent": "deepm_boreass-breath", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2597, - "fields": { - "parent": "deepm_boreass-breath", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2598, - "fields": { - "parent": "deepm_boreass-breath", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2599, - "fields": { - "parent": "deepm_bottled-arcana", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2601, - "fields": { - "parent": "deepm_bottled-arcana", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2602, - "fields": { - "parent": "deepm_bottled-arcana", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2603, - "fields": { - "parent": "deepm_bottled-arcana", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2604, - "fields": { - "parent": "deepm_bottled-arcana", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2605, - "fields": { - "parent": "deepm_bottomless-stomach", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2606, - "fields": { - "parent": "deepm_breathtaking-wind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2607, - "fields": { - "parent": "deepm_breeze-compass", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2608, - "fields": { - "parent": "deepm_brimstone-infusion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2609, - "fields": { - "parent": "deepm_brittling", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2610, - "fields": { - "parent": "deepm_broken-charge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2612, - "fields": { - "parent": "deepm_broken-charge", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2613, - "fields": { - "parent": "deepm_broken-charge", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2614, - "fields": { - "parent": "deepm_broken-charge", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2615, - "fields": { - "parent": "deepm_broken-charge", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2616, - "fields": { - "parent": "deepm_broken-charge", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2617, - "fields": { - "parent": "deepm_broken-charge", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2618, - "fields": { - "parent": "deepm_broken-charge", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2619, - "fields": { - "parent": "deepm_broken-charge", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2620, - "fields": { - "parent": "deepm_by-the-light-of-the-moon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2621, - "fields": { - "parent": "deepm_by-the-light-of-the-watchful-moon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2622, - "fields": { - "parent": "deepm_call-shadow-mastiff", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2623, - "fields": { - "parent": "deepm_calm-of-the-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2625, - "fields": { - "parent": "deepm_calm-of-the-storm", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2626, - "fields": { - "parent": "deepm_calm-of-the-storm", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2627, - "fields": { - "parent": "deepm_calm-of-the-storm", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2628, - "fields": { - "parent": "deepm_calm-of-the-storm", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2629, - "fields": { - "parent": "deepm_calm-of-the-storm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2630, - "fields": { - "parent": "deepm_calm-of-the-storm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2631, - "fields": { - "parent": "deepm_candles-insight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2632, - "fields": { - "parent": "deepm_carmello-voltas-irksome-preserves", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2633, - "fields": { - "parent": "deepm_catapult", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2635, - "fields": { - "parent": "deepm_catapult", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2636, - "fields": { - "parent": "deepm_catapult", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2637, - "fields": { - "parent": "deepm_catapult", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2638, - "fields": { - "parent": "deepm_catch-the-breath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2640, - "fields": { - "parent": "deepm_catch-the-breath", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2641, - "fields": { - "parent": "deepm_catch-the-breath", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2642, - "fields": { - "parent": "deepm_catch-the-breath", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2643, - "fields": { - "parent": "deepm_catch-the-breath", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2644, - "fields": { - "parent": "deepm_catch-the-breath", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2645, - "fields": { - "parent": "deepm_catch-the-breath", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2646, - "fields": { - "parent": "deepm_caustic-blood", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2648, - "fields": { - "parent": "deepm_caustic-blood", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2649, - "fields": { - "parent": "deepm_caustic-blood", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2650, - "fields": { - "parent": "deepm_caustic-blood", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2651, - "fields": { - "parent": "deepm_caustic-blood", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2652, - "fields": { - "parent": "deepm_caustic-blood", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2653, - "fields": { - "parent": "deepm_caustic-blood", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2654, - "fields": { - "parent": "deepm_caustic-blood", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2655, - "fields": { - "parent": "deepm_caustic-torrent", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2656, - "fields": { - "parent": "deepm_caustic-touch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2657, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_1", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2658, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_2", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2659, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_3", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2660, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_4", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2661, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2662, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2663, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2664, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2665, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2666, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2667, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2668, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2669, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2670, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2671, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2672, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2673, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2674, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2675, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2676, - "fields": { - "parent": "deepm_caustic-touch", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2677, - "fields": { - "parent": "deepm_celebration", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2678, - "fields": { - "parent": "deepm_celebration", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2680, - "fields": { - "parent": "deepm_celebration", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2681, - "fields": { - "parent": "deepm_celebration", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2682, - "fields": { - "parent": "deepm_chains-of-the-goddess", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2683, - "fields": { - "parent": "deepm_chains-of-torment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2685, - "fields": { - "parent": "deepm_chains-of-torment", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2686, - "fields": { - "parent": "deepm_chains-of-torment", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2687, - "fields": { - "parent": "deepm_chains-of-torment", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2688, - "fields": { - "parent": "deepm_chains-of-torment", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2689, - "fields": { - "parent": "deepm_chains-of-torment", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2690, - "fields": { - "parent": "deepm_champions-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2692, - "fields": { - "parent": "deepm_champions-weapon", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2693, - "fields": { - "parent": "deepm_champions-weapon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2694, - "fields": { - "parent": "deepm_champions-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2695, - "fields": { - "parent": "deepm_champions-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2696, - "fields": { - "parent": "deepm_champions-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2697, - "fields": { - "parent": "deepm_champions-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2698, - "fields": { - "parent": "deepm_champions-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2699, - "fields": { - "parent": "deepm_chaotic-form", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2701, - "fields": { - "parent": "deepm_chaotic-form", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "20 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2702, - "fields": { - "parent": "deepm_chaotic-form", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2703, - "fields": { - "parent": "deepm_chaotic-form", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "40 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2704, - "fields": { - "parent": "deepm_chaotic-form", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "50 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2705, - "fields": { - "parent": "deepm_chaotic-form", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "60 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2706, - "fields": { - "parent": "deepm_chaotic-vitality", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2708, - "fields": { - "parent": "deepm_chaotic-vitality", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2709, - "fields": { - "parent": "deepm_chaotic-vitality", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2710, - "fields": { - "parent": "deepm_chaotic-vitality", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2711, - "fields": { - "parent": "deepm_chaotic-vitality", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2712, - "fields": { - "parent": "deepm_chaotic-vitality", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2713, - "fields": { - "parent": "deepm_chaotic-vitality", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2714, - "fields": { - "parent": "deepm_chaotic-vitality", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2715, - "fields": { - "parent": "deepm_chaotic-world", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2716, - "fields": { - "parent": "deepm_chilling-words", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2717, - "fields": { - "parent": "deepm_chronal-lance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2719, - "fields": { - "parent": "deepm_chronal-lance", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2720, - "fields": { - "parent": "deepm_chronal-lance", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2721, - "fields": { - "parent": "deepm_chronal-lance", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2722, - "fields": { - "parent": "deepm_chronal-lance", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2723, - "fields": { - "parent": "deepm_chronal-lance", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2724, - "fields": { - "parent": "deepm_chronal-lance", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2725, - "fields": { - "parent": "deepm_chronal-lance", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2726, - "fields": { - "parent": "deepm_chronal-lance", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 11, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2727, - "fields": { - "parent": "deepm_circle-of-wind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2728, - "fields": { - "parent": "deepm_clash-of-glaciers", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2730, - "fields": { - "parent": "deepm_clash-of-glaciers", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2731, - "fields": { - "parent": "deepm_clash-of-glaciers", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2732, - "fields": { - "parent": "deepm_clash-of-glaciers", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2733, - "fields": { - "parent": "deepm_clash-of-glaciers", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2734, - "fields": { - "parent": "deepm_claws-of-darkness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2735, - "fields": { - "parent": "deepm_claws-of-the-earth-dragon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2737, - "fields": { - "parent": "deepm_claws-of-the-earth-dragon", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": "70 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2738, - "fields": { - "parent": "deepm_claws-of-the-earth-dragon", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": "80 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2739, - "fields": { - "parent": "deepm_claws-of-the-earth-dragon", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": "90 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2740, - "fields": { - "parent": "deepm_claws-of-the-earth-dragon", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": "100 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2741, - "fields": { - "parent": "deepm_clearing-the-field", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2742, - "fields": { - "parent": "deepm_clearing-the-field", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2744, - "fields": { - "parent": "deepm_clearing-the-field", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2745, - "fields": { - "parent": "deepm_clearing-the-field", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2746, - "fields": { - "parent": "deepm_clearing-the-field", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2747, - "fields": { - "parent": "deepm_clearing-the-field", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2748, - "fields": { - "parent": "deepm_clearing-the-field", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2749, - "fields": { - "parent": "deepm_clearing-the-field", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2750, - "fields": { - "parent": "deepm_clearing-the-field", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2751, - "fields": { - "parent": "deepm_cloak-of-shadow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2752, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2753, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2754, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2755, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2756, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2757, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2758, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2759, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2760, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2761, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2762, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2763, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2764, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2765, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2766, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2767, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2768, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2769, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2770, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2771, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2772, - "fields": { - "parent": "deepm_clockwork-bolt", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2773, - "fields": { - "parent": "deepm_closing-in", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2775, - "fields": { - "parent": "deepm_closing-in", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2776, - "fields": { - "parent": "deepm_closing-in", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2777, - "fields": { - "parent": "deepm_closing-in", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2778, - "fields": { - "parent": "deepm_closing-in", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2779, - "fields": { - "parent": "deepm_closing-in", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2780, - "fields": { - "parent": "deepm_closing-in", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2781, - "fields": { - "parent": "deepm_cobra-fangs", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2783, - "fields": { - "parent": "deepm_cobra-fangs", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2784, - "fields": { - "parent": "deepm_cobra-fangs", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2785, - "fields": { - "parent": "deepm_cobra-fangs", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2786, - "fields": { - "parent": "deepm_cobra-fangs", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2787, - "fields": { - "parent": "deepm_cobra-fangs", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2788, - "fields": { - "parent": "deepm_cobra-fangs", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2789, - "fields": { - "parent": "deepm_cobra-fangs", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2790, - "fields": { - "parent": "deepm_cobra-fangs", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2791, - "fields": { - "parent": "deepm_compelled-movement", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2793, - "fields": { - "parent": "deepm_compelled-movement", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2794, - "fields": { - "parent": "deepm_compelled-movement", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2795, - "fields": { - "parent": "deepm_compelled-movement", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2796, - "fields": { - "parent": "deepm_compelled-movement", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2797, - "fields": { - "parent": "deepm_compelled-movement", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2798, - "fields": { - "parent": "deepm_compelled-movement", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2799, - "fields": { - "parent": "deepm_compelling-fate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2801, - "fields": { - "parent": "deepm_compelling-fate", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2802, - "fields": { - "parent": "deepm_compelling-fate", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2803, - "fields": { - "parent": "deepm_compelling-fate", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2804, - "fields": { - "parent": "deepm_compelling-fate", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2805, - "fields": { - "parent": "deepm_compelling-fate", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2806, - "fields": { - "parent": "deepm_compelling-fate", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2807, - "fields": { - "parent": "deepm_comprehend-wild-shape", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2809, - "fields": { - "parent": "deepm_comprehend-wild-shape", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2810, - "fields": { - "parent": "deepm_comprehend-wild-shape", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2811, - "fields": { - "parent": "deepm_comprehend-wild-shape", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2812, - "fields": { - "parent": "deepm_comprehend-wild-shape", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2813, - "fields": { - "parent": "deepm_comprehend-wild-shape", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2814, - "fields": { - "parent": "deepm_comprehend-wild-shape", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2815, - "fields": { - "parent": "deepm_comprehend-wild-shape", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2816, - "fields": { - "parent": "deepm_confound-senses", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2817, - "fields": { - "parent": "deepm_conjure-fey-hound", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2819, - "fields": { - "parent": "deepm_conjure-fey-hound", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2820, - "fields": { - "parent": "deepm_conjure-fey-hound", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2821, - "fields": { - "parent": "deepm_conjure-fey-hound", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2822, - "fields": { - "parent": "deepm_conjure-fey-hound", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2823, - "fields": { - "parent": "deepm_conjure-forest-defender", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2825, - "fields": { - "parent": "deepm_conjure-forest-defender", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2826, - "fields": { - "parent": "deepm_conjure-forest-defender", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2827, - "fields": { - "parent": "deepm_conjure-forest-defender", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2828, - "fields": { - "parent": "deepm_conjure-greater-spectral-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2830, - "fields": { - "parent": "deepm_conjure-greater-spectral-dead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2831, - "fields": { - "parent": "deepm_conjure-greater-spectral-dead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2832, - "fields": { - "parent": "deepm_conjure-minor-voidborn", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2834, - "fields": { - "parent": "deepm_conjure-minor-voidborn", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2835, - "fields": { - "parent": "deepm_conjure-minor-voidborn", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2836, - "fields": { - "parent": "deepm_conjure-minor-voidborn", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2837, - "fields": { - "parent": "deepm_conjure-minor-voidborn", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2838, - "fields": { - "parent": "deepm_conjure-scarab-swarm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2839, - "fields": { - "parent": "deepm_conjure-shadow-titan", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2840, - "fields": { - "parent": "deepm_conjure-spectral-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2842, - "fields": { - "parent": "deepm_conjure-spectral-dead", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2843, - "fields": { - "parent": "deepm_conjure-spectral-dead", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2844, - "fields": { - "parent": "deepm_conjure-spectral-dead", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2845, - "fields": { - "parent": "deepm_conjure-spectral-dead", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2846, - "fields": { - "parent": "deepm_conjure-spectral-dead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2847, - "fields": { - "parent": "deepm_conjure-spectral-dead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2848, - "fields": { - "parent": "deepm_conjure-spectral-dead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2849, - "fields": { - "parent": "deepm_conjure-undead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2851, - "fields": { - "parent": "deepm_conjure-undead", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2852, - "fields": { - "parent": "deepm_conjure-undead", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2853, - "fields": { - "parent": "deepm_conjure-undead", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2854, - "fields": { - "parent": "deepm_conjure-undead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2855, - "fields": { - "parent": "deepm_conjure-undead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2856, - "fields": { - "parent": "deepm_conjure-undead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2857, - "fields": { - "parent": "deepm_conjure-voidborn", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2859, - "fields": { - "parent": "deepm_conjure-voidborn", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2860, - "fields": { - "parent": "deepm_conjure-voidborn", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2861, - "fields": { - "parent": "deepm_consult-the-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2863, - "fields": { - "parent": "deepm_consult-the-storm", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2864, - "fields": { - "parent": "deepm_consult-the-storm", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2865, - "fields": { - "parent": "deepm_consult-the-storm", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2866, - "fields": { - "parent": "deepm_consult-the-storm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2867, - "fields": { - "parent": "deepm_consult-the-storm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2868, - "fields": { - "parent": "deepm_converse-with-dragon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2869, - "fields": { - "parent": "deepm_costly-victory", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2870, - "fields": { - "parent": "deepm_create-ring-servant", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2871, - "fields": { - "parent": "deepm_create-thunderstaff", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2872, - "fields": { - "parent": "deepm_creeping-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2874, - "fields": { - "parent": "deepm_creeping-ice", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2875, - "fields": { - "parent": "deepm_creeping-ice", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2876, - "fields": { - "parent": "deepm_creeping-ice", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2877, - "fields": { - "parent": "deepm_creeping-ice", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2878, - "fields": { - "parent": "deepm_creeping-ice", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2879, - "fields": { - "parent": "deepm_creeping-ice", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2880, - "fields": { - "parent": "deepm_creeping-ice", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2881, - "fields": { - "parent": "deepm_crushing-curse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2882, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2883, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2884, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2885, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2886, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_5", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2887, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_6", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2888, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_7", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2889, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_8", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2890, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_9", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2891, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_10", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2892, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_11", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2893, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_12", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2894, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_13", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2895, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_14", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2896, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_15", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2897, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_16", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2898, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_17", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2899, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_18", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2900, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_19", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2901, - "fields": { - "parent": "deepm_crushing-curse", - "type": "player_level_20", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2902, - "fields": { - "parent": "deepm_crushing-trample", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2903, - "fields": { - "parent": "deepm_cure-beast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2905, - "fields": { - "parent": "deepm_cure-beast", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2906, - "fields": { - "parent": "deepm_cure-beast", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2907, - "fields": { - "parent": "deepm_cure-beast", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2908, - "fields": { - "parent": "deepm_cure-beast", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2909, - "fields": { - "parent": "deepm_cure-beast", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2910, - "fields": { - "parent": "deepm_cure-beast", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2911, - "fields": { - "parent": "deepm_cure-beast", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2912, - "fields": { - "parent": "deepm_cure-beast", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2913, - "fields": { - "parent": "deepm_curse-of-boreas", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2914, - "fields": { - "parent": "deepm_curse-of-dust", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2915, - "fields": { - "parent": "deepm_curse-of-incompetence", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2916, - "fields": { - "parent": "deepm_curse-of-the-grave", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2917, - "fields": { - "parent": "deepm_curse-of-yig", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2918, - "fields": { - "parent": "deepm_curse-of-yig", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2919, - "fields": { - "parent": "deepm_curse-ring", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2920, - "fields": { - "parent": "deepm_cursed-gift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2922, - "fields": { - "parent": "deepm_cursed-gift", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2923, - "fields": { - "parent": "deepm_cursed-gift", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "3 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2924, - "fields": { - "parent": "deepm_cursed-gift", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "4 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2925, - "fields": { - "parent": "deepm_cursed-gift", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "5 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2926, - "fields": { - "parent": "deepm_cursed-gift", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "6 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2927, - "fields": { - "parent": "deepm_cynophobia", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2929, - "fields": { - "parent": "deepm_cynophobia", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2930, - "fields": { - "parent": "deepm_cynophobia", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2931, - "fields": { - "parent": "deepm_cynophobia", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2932, - "fields": { - "parent": "deepm_cynophobia", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 month", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2933, - "fields": { - "parent": "deepm_cynophobia", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 month", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2934, - "fields": { - "parent": "deepm_cynophobia", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2935, - "fields": { - "parent": "deepm_daggerhawk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2936, - "fields": { - "parent": "deepm_dark-dementing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2937, - "fields": { - "parent": "deepm_dark-heraldry", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2939, - "fields": { - "parent": "deepm_dark-heraldry", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2940, - "fields": { - "parent": "deepm_dark-heraldry", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2941, - "fields": { - "parent": "deepm_dark-heraldry", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2942, - "fields": { - "parent": "deepm_dark-heraldry", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2943, - "fields": { - "parent": "deepm_dark-heraldry", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2944, - "fields": { - "parent": "deepm_dark-heraldry", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2945, - "fields": { - "parent": "deepm_dark-maw", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2946, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_1", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2947, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_2", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2948, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_3", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2949, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_4", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2950, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2951, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2952, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2953, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2954, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2955, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2956, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2957, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2958, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2959, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2960, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2961, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2962, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2963, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2964, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2965, - "fields": { - "parent": "deepm_dark-maw", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2966, - "fields": { - "parent": "deepm_dark-path", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2967, - "fields": { - "parent": "deepm_darkbolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2969, - "fields": { - "parent": "deepm_darkbolt", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2970, - "fields": { - "parent": "deepm_darkbolt", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2971, - "fields": { - "parent": "deepm_darkbolt", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2972, - "fields": { - "parent": "deepm_darkbolt", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2973, - "fields": { - "parent": "deepm_darkbolt", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2974, - "fields": { - "parent": "deepm_darkbolt", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2975, - "fields": { - "parent": "deepm_darkbolt", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2976, - "fields": { - "parent": "deepm_dead-walking", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2978, - "fields": { - "parent": "deepm_dead-walking", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2979, - "fields": { - "parent": "deepm_dead-walking", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2980, - "fields": { - "parent": "deepm_dead-walking", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2981, - "fields": { - "parent": "deepm_dead-walking", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2982, - "fields": { - "parent": "deepm_dead-walking", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2983, - "fields": { - "parent": "deepm_dead-walking", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2984, - "fields": { - "parent": "deepm_dead-walking", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2985, - "fields": { - "parent": "deepm_deadly-sting", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2986, - "fields": { - "parent": "deepm_death-gods-touch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2988, - "fields": { - "parent": "deepm_death-gods-touch", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2989, - "fields": { - "parent": "deepm_death-gods-touch", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2990, - "fields": { - "parent": "deepm_decay", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2991, - "fields": { - "parent": "deepm_decay", - "type": "player_level_1", - "damage_roll": "1d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2992, - "fields": { - "parent": "deepm_decay", - "type": "player_level_2", - "damage_roll": "1d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2993, - "fields": { - "parent": "deepm_decay", - "type": "player_level_3", - "damage_roll": "1d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2994, - "fields": { - "parent": "deepm_decay", - "type": "player_level_4", - "damage_roll": "1d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2995, - "fields": { - "parent": "deepm_decay", - "type": "player_level_5", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2996, - "fields": { - "parent": "deepm_decay", - "type": "player_level_6", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2997, - "fields": { - "parent": "deepm_decay", - "type": "player_level_7", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2998, - "fields": { - "parent": "deepm_decay", - "type": "player_level_8", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 2999, - "fields": { - "parent": "deepm_decay", - "type": "player_level_9", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3000, - "fields": { - "parent": "deepm_decay", - "type": "player_level_10", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3001, - "fields": { - "parent": "deepm_decay", - "type": "player_level_11", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3002, - "fields": { - "parent": "deepm_decay", - "type": "player_level_12", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3003, - "fields": { - "parent": "deepm_decay", - "type": "player_level_13", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3004, - "fields": { - "parent": "deepm_decay", - "type": "player_level_14", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3005, - "fields": { - "parent": "deepm_decay", - "type": "player_level_15", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3006, - "fields": { - "parent": "deepm_decay", - "type": "player_level_16", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3007, - "fields": { - "parent": "deepm_decay", - "type": "player_level_17", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3008, - "fields": { - "parent": "deepm_decay", - "type": "player_level_18", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3009, - "fields": { - "parent": "deepm_decay", - "type": "player_level_19", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3010, - "fields": { - "parent": "deepm_decay", - "type": "player_level_20", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3011, - "fields": { - "parent": "deepm_decelerate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3013, - "fields": { - "parent": "deepm_decelerate", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3014, - "fields": { - "parent": "deepm_decelerate", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3015, - "fields": { - "parent": "deepm_decelerate", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3016, - "fields": { - "parent": "deepm_decelerate", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3017, - "fields": { - "parent": "deepm_decelerate", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3018, - "fields": { - "parent": "deepm_decelerate", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3019, - "fields": { - "parent": "deepm_decelerate", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3020, - "fields": { - "parent": "deepm_deep-breath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3022, - "fields": { - "parent": "deepm_deep-breath", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3023, - "fields": { - "parent": "deepm_deep-breath", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3024, - "fields": { - "parent": "deepm_deep-breath", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3025, - "fields": { - "parent": "deepm_deep-breath", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "10 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3026, - "fields": { - "parent": "deepm_deep-breath", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "12 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3027, - "fields": { - "parent": "deepm_deep-breath", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "14 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3028, - "fields": { - "parent": "deepm_deep-breath", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "16 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3029, - "fields": { - "parent": "deepm_deep-breath", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "18 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3030, - "fields": { - "parent": "deepm_defile-healing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3032, - "fields": { - "parent": "deepm_defile-healing", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3033, - "fields": { - "parent": "deepm_defile-healing", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3034, - "fields": { - "parent": "deepm_delay-potion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3035, - "fields": { - "parent": "deepm_delayed-healing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3037, - "fields": { - "parent": "deepm_delayed-healing", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3038, - "fields": { - "parent": "deepm_delayed-healing", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3039, - "fields": { - "parent": "deepm_delayed-healing", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3040, - "fields": { - "parent": "deepm_delayed-healing", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3041, - "fields": { - "parent": "deepm_delayed-healing", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3042, - "fields": { - "parent": "deepm_delayed-healing", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3043, - "fields": { - "parent": "deepm_demon-within", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3044, - "fields": { - "parent": "deepm_desiccating-breath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3045, - "fields": { - "parent": "deepm_desolation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3046, - "fields": { - "parent": "deepm_desolation", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3047, - "fields": { - "parent": "deepm_destructive-resonance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3049, - "fields": { - "parent": "deepm_destructive-resonance", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3050, - "fields": { - "parent": "deepm_destructive-resonance", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3051, - "fields": { - "parent": "deepm_destructive-resonance", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3052, - "fields": { - "parent": "deepm_destructive-resonance", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3053, - "fields": { - "parent": "deepm_destructive-resonance", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3054, - "fields": { - "parent": "deepm_destructive-resonance", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3055, - "fields": { - "parent": "deepm_destructive-resonance", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3056, - "fields": { - "parent": "deepm_detect-dragons", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3057, - "fields": { - "parent": "deepm_devas-wings", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3059, - "fields": { - "parent": "deepm_devas-wings", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3060, - "fields": { - "parent": "deepm_devas-wings", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3061, - "fields": { - "parent": "deepm_devas-wings", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3062, - "fields": { - "parent": "deepm_devas-wings", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3063, - "fields": { - "parent": "deepm_devas-wings", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3064, - "fields": { - "parent": "deepm_dimensional-shove", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3066, - "fields": { - "parent": "deepm_dimensional-shove", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3067, - "fields": { - "parent": "deepm_dimensional-shove", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3068, - "fields": { - "parent": "deepm_dimensional-shove", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3069, - "fields": { - "parent": "deepm_dimensional-shove", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3070, - "fields": { - "parent": "deepm_dimensional-shove", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3071, - "fields": { - "parent": "deepm_dimensional-shove", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3072, - "fields": { - "parent": "deepm_disquieting-gaze", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3073, - "fields": { - "parent": "deepm_disruptive-aura", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3075, - "fields": { - "parent": "deepm_disruptive-aura", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3076, - "fields": { - "parent": "deepm_distracting-divination", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3077, - "fields": { - "parent": "deepm_distraction-cascade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3078, - "fields": { - "parent": "deepm_doom-of-blue-crystal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3079, - "fields": { - "parent": "deepm_doom-of-consuming-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3081, - "fields": { - "parent": "deepm_doom-of-consuming-fire", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3082, - "fields": { - "parent": "deepm_doom-of-consuming-fire", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3083, - "fields": { - "parent": "deepm_doom-of-consuming-fire", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3084, - "fields": { - "parent": "deepm_doom-of-consuming-fire", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3085, - "fields": { - "parent": "deepm_doom-of-consuming-fire", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3086, - "fields": { - "parent": "deepm_doom-of-consuming-fire", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3087, - "fields": { - "parent": "deepm_doom-of-consuming-fire", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3088, - "fields": { - "parent": "deepm_doom-of-dancing-blades", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3089, - "fields": { - "parent": "deepm_doom-of-disenchantment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3090, - "fields": { - "parent": "deepm_doom-of-serpent-coils", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3091, - "fields": { - "parent": "deepm_doom-of-the-cracked-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3092, - "fields": { - "parent": "deepm_doom-of-the-earthen-maw", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3093, - "fields": { - "parent": "deepm_doom-of-the-slippery-rogue", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3094, - "fields": { - "parent": "deepm_douse-light", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3095, - "fields": { - "parent": "deepm_draconic-smite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3097, - "fields": { - "parent": "deepm_draconic-smite", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3098, - "fields": { - "parent": "deepm_draconic-smite", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3099, - "fields": { - "parent": "deepm_draconic-smite", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3100, - "fields": { - "parent": "deepm_draconic-smite", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3101, - "fields": { - "parent": "deepm_draconic-smite", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3102, - "fields": { - "parent": "deepm_draconic-smite", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3103, - "fields": { - "parent": "deepm_draconic-smite", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3104, - "fields": { - "parent": "deepm_draconic-smite", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3105, - "fields": { - "parent": "deepm_dragon-breath", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3107, - "fields": { - "parent": "deepm_dragon-breath", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3108, - "fields": { - "parent": "deepm_dragon-breath", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3109, - "fields": { - "parent": "deepm_dragon-breath", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3110, - "fields": { - "parent": "deepm_dragon-breath", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3111, - "fields": { - "parent": "deepm_dragon-roar", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3112, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_1", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3113, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_2", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3114, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_3", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3115, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_4", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3116, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_5", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3117, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_6", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3118, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_7", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3119, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_8", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3120, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_9", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3121, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_10", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3122, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_11", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3123, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_12", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3124, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_13", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3125, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_14", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3126, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_15", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3127, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_16", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3128, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_17", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3129, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_18", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3130, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_19", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3131, - "fields": { - "parent": "deepm_dragon-roar", - "type": "player_level_20", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3132, - "fields": { - "parent": "deepm_drown", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3134, - "fields": { - "parent": "deepm_drown", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3135, - "fields": { - "parent": "deepm_drown", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3136, - "fields": { - "parent": "deepm_drown", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3137, - "fields": { - "parent": "deepm_drown", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3138, - "fields": { - "parent": "deepm_drown", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3139, - "fields": { - "parent": "deepm_drown", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3140, - "fields": { - "parent": "deepm_dryads-kiss", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3142, - "fields": { - "parent": "deepm_dryads-kiss", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3143, - "fields": { - "parent": "deepm_dryads-kiss", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3144, - "fields": { - "parent": "deepm_dryads-kiss", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3145, - "fields": { - "parent": "deepm_dryads-kiss", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3146, - "fields": { - "parent": "deepm_dryads-kiss", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3147, - "fields": { - "parent": "deepm_dryads-kiss", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3148, - "fields": { - "parent": "deepm_earthskimmer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3149, - "fields": { - "parent": "deepm_earworm-melody", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3151, - "fields": { - "parent": "deepm_earworm-melody", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3152, - "fields": { - "parent": "deepm_earworm-melody", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3153, - "fields": { - "parent": "deepm_earworm-melody", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3154, - "fields": { - "parent": "deepm_earworm-melody", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3155, - "fields": { - "parent": "deepm_earworm-melody", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3156, - "fields": { - "parent": "deepm_earworm-melody", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3157, - "fields": { - "parent": "deepm_earworm-melody", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3158, - "fields": { - "parent": "deepm_earworm-melody", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3159, - "fields": { - "parent": "deepm_echoes-of-steel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3160, - "fields": { - "parent": "deepm_ectoplasm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3162, - "fields": { - "parent": "deepm_ectoplasm", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3163, - "fields": { - "parent": "deepm_ectoplasm", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3164, - "fields": { - "parent": "deepm_ectoplasm", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3165, - "fields": { - "parent": "deepm_ectoplasm", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3166, - "fields": { - "parent": "deepm_ectoplasm", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3167, - "fields": { - "parent": "deepm_ectoplasm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3168, - "fields": { - "parent": "deepm_ectoplasm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3169, - "fields": { - "parent": "deepm_eidetic-memory", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3170, - "fields": { - "parent": "deepm_eidetic-memory", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3171, - "fields": { - "parent": "deepm_eldritch-communion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3172, - "fields": { - "parent": "deepm_eldritch-communion", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3173, - "fields": { - "parent": "deepm_elemental-horns", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3175, - "fields": { - "parent": "deepm_elemental-horns", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3176, - "fields": { - "parent": "deepm_elemental-horns", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3177, - "fields": { - "parent": "deepm_elemental-horns", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3178, - "fields": { - "parent": "deepm_elemental-horns", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3179, - "fields": { - "parent": "deepm_elemental-horns", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3180, - "fields": { - "parent": "deepm_elemental-horns", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3181, - "fields": { - "parent": "deepm_elemental-horns", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3182, - "fields": { - "parent": "deepm_elemental-twist", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3183, - "fields": { - "parent": "deepm_emanation-of-yoth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3184, - "fields": { - "parent": "deepm_emanation-of-yoth", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3186, - "fields": { - "parent": "deepm_emanation-of-yoth", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3187, - "fields": { - "parent": "deepm_emanation-of-yoth", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3188, - "fields": { - "parent": "deepm_emanation-of-yoth", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3189, - "fields": { - "parent": "deepm_emanation-of-yoth", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3190, - "fields": { - "parent": "deepm_emanation-of-yoth", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3191, - "fields": { - "parent": "deepm_enchant-ring", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3192, - "fields": { - "parent": "deepm_encroaching-shadows", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3193, - "fields": { - "parent": "deepm_encroaching-shadows", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3195, - "fields": { - "parent": "deepm_encroaching-shadows", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3196, - "fields": { - "parent": "deepm_encroaching-shadows", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "36 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3197, - "fields": { - "parent": "deepm_encroaching-shadows", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3198, - "fields": { - "parent": "deepm_encrypt-decrypt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3199, - "fields": { - "parent": "deepm_endow-attribute", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3201, - "fields": { - "parent": "deepm_endow-attribute", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3202, - "fields": { - "parent": "deepm_endow-attribute", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3203, - "fields": { - "parent": "deepm_endow-attribute", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3204, - "fields": { - "parent": "deepm_endow-attribute", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3205, - "fields": { - "parent": "deepm_endow-attribute", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3206, - "fields": { - "parent": "deepm_energy-absorption", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3207, - "fields": { - "parent": "deepm_energy-foreknowledge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3209, - "fields": { - "parent": "deepm_energy-foreknowledge", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3210, - "fields": { - "parent": "deepm_energy-foreknowledge", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3211, - "fields": { - "parent": "deepm_energy-foreknowledge", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3212, - "fields": { - "parent": "deepm_energy-foreknowledge", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3213, - "fields": { - "parent": "deepm_energy-foreknowledge", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3214, - "fields": { - "parent": "deepm_enhance-greed", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3216, - "fields": { - "parent": "deepm_enhance-greed", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "11 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3217, - "fields": { - "parent": "deepm_enhance-greed", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "12 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3218, - "fields": { - "parent": "deepm_enhance-greed", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "13 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3219, - "fields": { - "parent": "deepm_enhance-greed", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "14 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3220, - "fields": { - "parent": "deepm_enhance-greed", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "15 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3221, - "fields": { - "parent": "deepm_enhance-greed", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "16 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3222, - "fields": { - "parent": "deepm_enhance-greed", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "17 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3223, - "fields": { - "parent": "deepm_entomb", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3224, - "fields": { - "parent": "deepm_entropic-damage-field", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3225, - "fields": { - "parent": "deepm_essence-instability", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3227, - "fields": { - "parent": "deepm_essence-instability", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3228, - "fields": { - "parent": "deepm_essence-instability", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3229, - "fields": { - "parent": "deepm_essence-instability", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3230, - "fields": { - "parent": "deepm_essence-instability", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3231, - "fields": { - "parent": "deepm_evercold", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3232, - "fields": { - "parent": "deepm_exsanguinate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3234, - "fields": { - "parent": "deepm_exsanguinate", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3235, - "fields": { - "parent": "deepm_exsanguinate", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3236, - "fields": { - "parent": "deepm_exsanguinate", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3237, - "fields": { - "parent": "deepm_exsanguinate", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3238, - "fields": { - "parent": "deepm_exsanguinating-cloud", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3239, - "fields": { - "parent": "deepm_extract-knowledge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3240, - "fields": { - "parent": "deepm_extract-knowledge", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3241, - "fields": { - "parent": "deepm_fault-line", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3242, - "fields": { - "parent": "deepm_feather-field", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3244, - "fields": { - "parent": "deepm_feather-field", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": "2 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3245, - "fields": { - "parent": "deepm_feather-field", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3246, - "fields": { - "parent": "deepm_feather-field", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "4 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3247, - "fields": { - "parent": "deepm_feather-field", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3248, - "fields": { - "parent": "deepm_feather-field", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3249, - "fields": { - "parent": "deepm_feather-field", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "7 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3250, - "fields": { - "parent": "deepm_feather-field", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3251, - "fields": { - "parent": "deepm_feather-field", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "9 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3252, - "fields": { - "parent": "deepm_feather-travel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3254, - "fields": { - "parent": "deepm_feather-travel", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3255, - "fields": { - "parent": "deepm_feather-travel", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3256, - "fields": { - "parent": "deepm_feather-travel", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3257, - "fields": { - "parent": "deepm_feather-travel", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3258, - "fields": { - "parent": "deepm_feather-travel", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3259, - "fields": { - "parent": "deepm_feather-travel", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3260, - "fields": { - "parent": "deepm_feather-travel", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3261, - "fields": { - "parent": "deepm_fey-crown", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3263, - "fields": { - "parent": "deepm_fey-crown", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3264, - "fields": { - "parent": "deepm_fey-crown", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3265, - "fields": { - "parent": "deepm_fey-crown", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3266, - "fields": { - "parent": "deepm_fey-crown", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3267, - "fields": { - "parent": "deepm_find-kin", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3268, - "fields": { - "parent": "deepm_find-kin", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3269, - "fields": { - "parent": "deepm_fire-darts", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3271, - "fields": { - "parent": "deepm_fire-darts", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3272, - "fields": { - "parent": "deepm_fire-darts", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3273, - "fields": { - "parent": "deepm_fire-darts", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3274, - "fields": { - "parent": "deepm_fire-darts", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3275, - "fields": { - "parent": "deepm_fire-darts", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3276, - "fields": { - "parent": "deepm_fire-darts", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3277, - "fields": { - "parent": "deepm_fire-darts", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3278, - "fields": { - "parent": "deepm_fire-under-the-tongue", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3279, - "fields": { - "parent": "deepm_firewalk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3281, - "fields": { - "parent": "deepm_firewalk", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3282, - "fields": { - "parent": "deepm_firewalk", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3283, - "fields": { - "parent": "deepm_firewalk", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3284, - "fields": { - "parent": "deepm_fist-of-iron", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3285, - "fields": { - "parent": "deepm_flame-wave", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3287, - "fields": { - "parent": "deepm_flame-wave", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3288, - "fields": { - "parent": "deepm_flame-wave", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3289, - "fields": { - "parent": "deepm_flame-wave", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3290, - "fields": { - "parent": "deepm_flame-wave", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3291, - "fields": { - "parent": "deepm_flame-wave", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3292, - "fields": { - "parent": "deepm_flesh-to-paper", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3294, - "fields": { - "parent": "deepm_flesh-to-paper", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3295, - "fields": { - "parent": "deepm_flesh-to-paper", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3296, - "fields": { - "parent": "deepm_flesh-to-paper", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3297, - "fields": { - "parent": "deepm_flesh-to-paper", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3298, - "fields": { - "parent": "deepm_flesh-to-paper", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3299, - "fields": { - "parent": "deepm_flesh-to-paper", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3300, - "fields": { - "parent": "deepm_flickering-fate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3301, - "fields": { - "parent": "deepm_fluctuating-alignment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3302, - "fields": { - "parent": "deepm_flurry", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3303, - "fields": { - "parent": "deepm_forest-native", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3304, - "fields": { - "parent": "deepm_forest-sanctuary", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3305, - "fields": { - "parent": "deepm_foretell-distraction", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3306, - "fields": { - "parent": "deepm_form-of-the-gods", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3307, - "fields": { - "parent": "deepm_freeze-blood", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3308, - "fields": { - "parent": "deepm_freeze-potion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3310, - "fields": { - "parent": "deepm_freeze-potion", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3311, - "fields": { - "parent": "deepm_freeze-potion", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "35 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3312, - "fields": { - "parent": "deepm_freeze-potion", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "40 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3313, - "fields": { - "parent": "deepm_freeze-potion", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "45 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3314, - "fields": { - "parent": "deepm_freeze-potion", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "50 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3315, - "fields": { - "parent": "deepm_freeze-potion", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "55 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3316, - "fields": { - "parent": "deepm_freeze-potion", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "60 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3317, - "fields": { - "parent": "deepm_freeze-potion", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "65 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3318, - "fields": { - "parent": "deepm_freezing-fog", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3320, - "fields": { - "parent": "deepm_freezing-fog", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3321, - "fields": { - "parent": "deepm_freezing-fog", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3322, - "fields": { - "parent": "deepm_freezing-fog", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3323, - "fields": { - "parent": "deepm_freezing-fog", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3324, - "fields": { - "parent": "deepm_freezing-fog", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3325, - "fields": { - "parent": "deepm_freezing-fog", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3326, - "fields": { - "parent": "deepm_frenzied-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3328, - "fields": { - "parent": "deepm_frenzied-bolt", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3329, - "fields": { - "parent": "deepm_frenzied-bolt", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3330, - "fields": { - "parent": "deepm_frenzied-bolt", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3331, - "fields": { - "parent": "deepm_frenzied-bolt", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3332, - "fields": { - "parent": "deepm_frenzied-bolt", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3333, - "fields": { - "parent": "deepm_frenzied-bolt", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3334, - "fields": { - "parent": "deepm_frenzied-bolt", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3335, - "fields": { - "parent": "deepm_frostbite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3337, - "fields": { - "parent": "deepm_frostbite", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3338, - "fields": { - "parent": "deepm_frostbite", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3339, - "fields": { - "parent": "deepm_frostbite", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3340, - "fields": { - "parent": "deepm_frostbite", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3341, - "fields": { - "parent": "deepm_frostbitten-fingers", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3342, - "fields": { - "parent": "deepm_frozen-razors", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3344, - "fields": { - "parent": "deepm_frozen-razors", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3345, - "fields": { - "parent": "deepm_frozen-razors", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3346, - "fields": { - "parent": "deepm_frozen-razors", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3347, - "fields": { - "parent": "deepm_frozen-razors", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3348, - "fields": { - "parent": "deepm_frozen-razors", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3349, - "fields": { - "parent": "deepm_frozen-razors", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3350, - "fields": { - "parent": "deepm_furious-hooves", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3351, - "fields": { - "parent": "deepm_fusillade-of-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3353, - "fields": { - "parent": "deepm_fusillade-of-ice", - "type": "slot_level_5", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3354, - "fields": { - "parent": "deepm_fusillade-of-ice", - "type": "slot_level_6", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3355, - "fields": { - "parent": "deepm_fusillade-of-ice", - "type": "slot_level_7", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3356, - "fields": { - "parent": "deepm_fusillade-of-ice", - "type": "slot_level_8", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3357, - "fields": { - "parent": "deepm_fusillade-of-ice", - "type": "slot_level_9", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3358, - "fields": { - "parent": "deepm_gear-barrage", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3359, - "fields": { - "parent": "deepm_ghoul-kings-cloak", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3361, - "fields": { - "parent": "deepm_ghoul-kings-cloak", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3362, - "fields": { - "parent": "deepm_gird-the-spirit", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3363, - "fields": { - "parent": "deepm_glacial-cascade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3364, - "fields": { - "parent": "deepm_glacial-fog", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3366, - "fields": { - "parent": "deepm_glacial-fog", - "type": "slot_level_8", - "damage_roll": "13d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3367, - "fields": { - "parent": "deepm_glacial-fog", - "type": "slot_level_9", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3368, - "fields": { - "parent": "deepm_gliding-step", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3370, - "fields": { - "parent": "deepm_gliding-step", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": "20 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3371, - "fields": { - "parent": "deepm_gliding-step", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3372, - "fields": { - "parent": "deepm_gliding-step", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "40 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3373, - "fields": { - "parent": "deepm_gliding-step", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "50 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3374, - "fields": { - "parent": "deepm_gliding-step", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "60 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3375, - "fields": { - "parent": "deepm_gliding-step", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "70 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3376, - "fields": { - "parent": "deepm_gliding-step", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "80 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3377, - "fields": { - "parent": "deepm_gliding-step", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "90 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3378, - "fields": { - "parent": "deepm_glimpse-of-the-void", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3379, - "fields": { - "parent": "deepm_gloomwrought-barrier", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3380, - "fields": { - "parent": "deepm_gluey-globule", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3381, - "fields": { - "parent": "deepm_glyph-of-shifting", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3383, - "fields": { - "parent": "deepm_glyph-of-shifting", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3384, - "fields": { - "parent": "deepm_glyph-of-shifting", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3385, - "fields": { - "parent": "deepm_glyph-of-shifting", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3386, - "fields": { - "parent": "deepm_glyph-of-shifting", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3387, - "fields": { - "parent": "deepm_glyph-of-shifting", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3388, - "fields": { - "parent": "deepm_glyph-of-shifting", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3389, - "fields": { - "parent": "deepm_glyph-of-shifting", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3390, - "fields": { - "parent": "deepm_goats-hoof-charm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3392, - "fields": { - "parent": "deepm_goats-hoof-charm", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": "2 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3393, - "fields": { - "parent": "deepm_goats-hoof-charm", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": "3 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3394, - "fields": { - "parent": "deepm_goats-hoof-charm", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": "4 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3395, - "fields": { - "parent": "deepm_goats-hoof-charm", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": "5 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3396, - "fields": { - "parent": "deepm_goats-hoof-charm", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": "6 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3397, - "fields": { - "parent": "deepm_goats-hoof-charm", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": "7 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3398, - "fields": { - "parent": "deepm_goats-hoof-charm", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": "8 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3399, - "fields": { - "parent": "deepm_goats-hoof-charm", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": "9 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3400, - "fields": { - "parent": "deepm_going-in-circles", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3401, - "fields": { - "parent": "deepm_gordolays-pleasant-aroma", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3402, - "fields": { - "parent": "deepm_grasp-of-the-tupilak", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3403, - "fields": { - "parent": "deepm_greater-maze", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3404, - "fields": { - "parent": "deepm_greater-seal-of-sanctuary", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3405, - "fields": { - "parent": "deepm_greater-seal-of-sanctuary", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3406, - "fields": { - "parent": "deepm_green-decay", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3407, - "fields": { - "parent": "deepm_green-decay", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3408, - "fields": { - "parent": "deepm_grudge-match", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3410, - "fields": { - "parent": "deepm_grudge-match", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "2 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3411, - "fields": { - "parent": "deepm_grudge-match", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3412, - "fields": { - "parent": "deepm_grudge-match", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "4 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3413, - "fields": { - "parent": "deepm_grudge-match", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3414, - "fields": { - "parent": "deepm_grudge-match", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3415, - "fields": { - "parent": "deepm_grudge-match", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "7 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3416, - "fields": { - "parent": "deepm_grudge-match", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3417, - "fields": { - "parent": "deepm_guest-of-honor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3418, - "fields": { - "parent": "deepm_guest-of-honor", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3420, - "fields": { - "parent": "deepm_guest-of-honor", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3421, - "fields": { - "parent": "deepm_guest-of-honor", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3422, - "fields": { - "parent": "deepm_guest-of-honor", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3423, - "fields": { - "parent": "deepm_guest-of-honor", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3424, - "fields": { - "parent": "deepm_guest-of-honor", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3425, - "fields": { - "parent": "deepm_guest-of-honor", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3426, - "fields": { - "parent": "deepm_guest-of-honor", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3427, - "fields": { - "parent": "deepm_guest-of-honor", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3428, - "fields": { - "parent": "deepm_guiding-star", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3429, - "fields": { - "parent": "deepm_guiding-star", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3430, - "fields": { - "parent": "deepm_hamstring", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3431, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_1", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3432, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_2", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3433, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_3", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3434, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_4", - "damage_roll": "1d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3435, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_5", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3436, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_6", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3437, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_7", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3438, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_8", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3439, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_9", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3440, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_10", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3441, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_11", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3442, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_12", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3443, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_13", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3444, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_14", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3445, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_15", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3446, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_16", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3447, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_17", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3448, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_18", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3449, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_19", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3450, - "fields": { - "parent": "deepm_hamstring", - "type": "player_level_20", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3451, - "fields": { - "parent": "deepm_hard-heart", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3453, - "fields": { - "parent": "deepm_hard-heart", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3454, - "fields": { - "parent": "deepm_hard-heart", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3455, - "fields": { - "parent": "deepm_hard-heart", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3456, - "fields": { - "parent": "deepm_hard-heart", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3457, - "fields": { - "parent": "deepm_hard-heart", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3458, - "fields": { - "parent": "deepm_hard-heart", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3459, - "fields": { - "parent": "deepm_hard-heart", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3460, - "fields": { - "parent": "deepm_hard-heart", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3461, - "fields": { - "parent": "deepm_harry", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3463, - "fields": { - "parent": "deepm_harry", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3464, - "fields": { - "parent": "deepm_harry", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3465, - "fields": { - "parent": "deepm_harry", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3466, - "fields": { - "parent": "deepm_harry", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3467, - "fields": { - "parent": "deepm_harry", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3468, - "fields": { - "parent": "deepm_harrying-hounds", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3470, - "fields": { - "parent": "deepm_harrying-hounds", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "12 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3471, - "fields": { - "parent": "deepm_harrying-hounds", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "16 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3472, - "fields": { - "parent": "deepm_harrying-hounds", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "20 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3473, - "fields": { - "parent": "deepm_harrying-hounds", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3474, - "fields": { - "parent": "deepm_harsh-light-of-summers-glare", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3475, - "fields": { - "parent": "deepm_heart-seeking-arrow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3477, - "fields": { - "parent": "deepm_heart-seeking-arrow", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3478, - "fields": { - "parent": "deepm_heart-seeking-arrow", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3479, - "fields": { - "parent": "deepm_heart-seeking-arrow", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3480, - "fields": { - "parent": "deepm_heart-seeking-arrow", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3481, - "fields": { - "parent": "deepm_heart-seeking-arrow", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3482, - "fields": { - "parent": "deepm_heart-to-heart", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3483, - "fields": { - "parent": "deepm_heartache", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3485, - "fields": { - "parent": "deepm_heartache", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3486, - "fields": { - "parent": "deepm_heartache", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3487, - "fields": { - "parent": "deepm_heartache", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3488, - "fields": { - "parent": "deepm_heartache", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3489, - "fields": { - "parent": "deepm_heartache", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3490, - "fields": { - "parent": "deepm_heartache", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3491, - "fields": { - "parent": "deepm_heartache", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3492, - "fields": { - "parent": "deepm_heartstop", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3493, - "fields": { - "parent": "deepm_heartstrike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3494, - "fields": { - "parent": "deepm_heavenly-crown", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3495, - "fields": { - "parent": "deepm_hedrens-birds-of-clay", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3497, - "fields": { - "parent": "deepm_hedrens-birds-of-clay", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3498, - "fields": { - "parent": "deepm_hedrens-birds-of-clay", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3499, - "fields": { - "parent": "deepm_hedrens-birds-of-clay", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3500, - "fields": { - "parent": "deepm_hedrens-birds-of-clay", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3501, - "fields": { - "parent": "deepm_hedrens-birds-of-clay", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3502, - "fields": { - "parent": "deepm_hedrens-birds-of-clay", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3503, - "fields": { - "parent": "deepm_hematomancy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3504, - "fields": { - "parent": "deepm_heros-steel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3505, - "fields": { - "parent": "deepm_hide-in-ones-shadow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3506, - "fields": { - "parent": "deepm_hoarfrost", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3507, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3508, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3509, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3510, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3511, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_5", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3512, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_6", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3513, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_7", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3514, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_8", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3515, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_9", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3516, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_10", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3517, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_11", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3518, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_12", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3519, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_13", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3520, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_14", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3521, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_15", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3522, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_16", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3523, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_17", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3524, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_18", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3525, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_19", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3526, - "fields": { - "parent": "deepm_hoarfrost", - "type": "player_level_20", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3527, - "fields": { - "parent": "deepm_hobble", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3528, - "fields": { - "parent": "deepm_hobble-mount", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3530, - "fields": { - "parent": "deepm_hobble-mount", - "type": "slot_level_2", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3531, - "fields": { - "parent": "deepm_hobble-mount", - "type": "slot_level_3", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3532, - "fields": { - "parent": "deepm_hobble-mount", - "type": "slot_level_4", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3533, - "fields": { - "parent": "deepm_hobble-mount", - "type": "slot_level_5", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3534, - "fields": { - "parent": "deepm_hobble-mount", - "type": "slot_level_6", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3535, - "fields": { - "parent": "deepm_hobble-mount", - "type": "slot_level_7", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3536, - "fields": { - "parent": "deepm_hobble-mount", - "type": "slot_level_8", - "damage_roll": "16d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3537, - "fields": { - "parent": "deepm_hobble-mount", - "type": "slot_level_9", - "damage_roll": "18d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3538, - "fields": { - "parent": "deepm_holy-ground", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3540, - "fields": { - "parent": "deepm_holy-ground", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3541, - "fields": { - "parent": "deepm_holy-ground", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3542, - "fields": { - "parent": "deepm_holy-ground", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3543, - "fields": { - "parent": "deepm_holy-ground", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3544, - "fields": { - "parent": "deepm_hone-blade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3545, - "fields": { - "parent": "deepm_hunger-of-leng", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3546, - "fields": { - "parent": "deepm_hunters-endurance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3547, - "fields": { - "parent": "deepm_hunting-stand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3548, - "fields": { - "parent": "deepm_ice-fortress", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3550, - "fields": { - "parent": "deepm_ice-fortress", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3551, - "fields": { - "parent": "deepm_ice-fortress", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3552, - "fields": { - "parent": "deepm_ice-fortress", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3553, - "fields": { - "parent": "deepm_ice-fortress", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3554, - "fields": { - "parent": "deepm_ice-hammer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3556, - "fields": { - "parent": "deepm_ice-hammer", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3557, - "fields": { - "parent": "deepm_ice-hammer", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3558, - "fields": { - "parent": "deepm_ice-hammer", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3559, - "fields": { - "parent": "deepm_ice-hammer", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3560, - "fields": { - "parent": "deepm_ice-hammer", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3561, - "fields": { - "parent": "deepm_ice-hammer", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3562, - "fields": { - "parent": "deepm_ice-hammer", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3563, - "fields": { - "parent": "deepm_ice-soldiers", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3565, - "fields": { - "parent": "deepm_ice-soldiers", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3566, - "fields": { - "parent": "deepm_ice-soldiers", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3567, - "fields": { - "parent": "deepm_icicle-daggers", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3569, - "fields": { - "parent": "deepm_icicle-daggers", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3570, - "fields": { - "parent": "deepm_icicle-daggers", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3571, - "fields": { - "parent": "deepm_icicle-daggers", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3572, - "fields": { - "parent": "deepm_icicle-daggers", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3573, - "fields": { - "parent": "deepm_icicle-daggers", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3574, - "fields": { - "parent": "deepm_icicle-daggers", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3575, - "fields": { - "parent": "deepm_icicle-daggers", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3576, - "fields": { - "parent": "deepm_icicle-daggers", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3577, - "fields": { - "parent": "deepm_icy-grasp-of-the-void", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3578, - "fields": { - "parent": "deepm_icy-manipulation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3579, - "fields": { - "parent": "deepm_ill-fated-word", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3580, - "fields": { - "parent": "deepm_illuminate-spoor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3582, - "fields": { - "parent": "deepm_illuminate-spoor", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3583, - "fields": { - "parent": "deepm_illuminate-spoor", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3584, - "fields": { - "parent": "deepm_illuminate-spoor", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3585, - "fields": { - "parent": "deepm_illuminate-spoor", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3586, - "fields": { - "parent": "deepm_illuminate-spoor", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3587, - "fields": { - "parent": "deepm_illuminate-spoor", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3588, - "fields": { - "parent": "deepm_illuminate-spoor", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3589, - "fields": { - "parent": "deepm_illuminate-spoor", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3590, - "fields": { - "parent": "deepm_impending-ally", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3592, - "fields": { - "parent": "deepm_impending-ally", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3593, - "fields": { - "parent": "deepm_impending-ally", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3594, - "fields": { - "parent": "deepm_impending-ally", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3595, - "fields": { - "parent": "deepm_impending-ally", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3596, - "fields": { - "parent": "deepm_impending-ally", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3597, - "fields": { - "parent": "deepm_impending-ally", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3598, - "fields": { - "parent": "deepm_innocuous-aspect", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3599, - "fields": { - "parent": "deepm_insightful-maneuver", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3600, - "fields": { - "parent": "deepm_inspiring-speech", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3601, - "fields": { - "parent": "deepm_instant-fortification", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3602, - "fields": { - "parent": "deepm_instant-fortification", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3604, - "fields": { - "parent": "deepm_instant-fortification", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3605, - "fields": { - "parent": "deepm_instant-fortification", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3606, - "fields": { - "parent": "deepm_instant-fortification", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3607, - "fields": { - "parent": "deepm_instant-fortification", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3608, - "fields": { - "parent": "deepm_instant-siege-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3609, - "fields": { - "parent": "deepm_instant-siege-weapon", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3611, - "fields": { - "parent": "deepm_instant-siege-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3612, - "fields": { - "parent": "deepm_instant-siege-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3613, - "fields": { - "parent": "deepm_instant-siege-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3614, - "fields": { - "parent": "deepm_instant-siege-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3615, - "fields": { - "parent": "deepm_instant-siege-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3616, - "fields": { - "parent": "deepm_instant-snare", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3618, - "fields": { - "parent": "deepm_instant-snare", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3619, - "fields": { - "parent": "deepm_instant-snare", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3620, - "fields": { - "parent": "deepm_instant-snare", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3621, - "fields": { - "parent": "deepm_instant-snare", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3622, - "fields": { - "parent": "deepm_instant-snare", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3623, - "fields": { - "parent": "deepm_instant-snare", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3624, - "fields": { - "parent": "deepm_instant-snare", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3625, - "fields": { - "parent": "deepm_ire-of-the-mountain", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3627, - "fields": { - "parent": "deepm_ire-of-the-mountain", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3628, - "fields": { - "parent": "deepm_ire-of-the-mountain", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3629, - "fields": { - "parent": "deepm_ire-of-the-mountain", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3630, - "fields": { - "parent": "deepm_ire-of-the-mountain", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3631, - "fields": { - "parent": "deepm_ire-of-the-mountain", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3632, - "fields": { - "parent": "deepm_ire-of-the-mountain", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3633, - "fields": { - "parent": "deepm_iron-hand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3634, - "fields": { - "parent": "deepm_kareefs-entreaty", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3636, - "fields": { - "parent": "deepm_kareefs-entreaty", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3637, - "fields": { - "parent": "deepm_kareefs-entreaty", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3638, - "fields": { - "parent": "deepm_kareefs-entreaty", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3639, - "fields": { - "parent": "deepm_kareefs-entreaty", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3640, - "fields": { - "parent": "deepm_kareefs-entreaty", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3641, - "fields": { - "parent": "deepm_kareefs-entreaty", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3642, - "fields": { - "parent": "deepm_kareefs-entreaty", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3643, - "fields": { - "parent": "deepm_kareefs-entreaty", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3644, - "fields": { - "parent": "deepm_keening-wail", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3646, - "fields": { - "parent": "deepm_keening-wail", - "type": "slot_level_5", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3647, - "fields": { - "parent": "deepm_keening-wail", - "type": "slot_level_6", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3648, - "fields": { - "parent": "deepm_keening-wail", - "type": "slot_level_7", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3649, - "fields": { - "parent": "deepm_keening-wail", - "type": "slot_level_8", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3650, - "fields": { - "parent": "deepm_keening-wail", - "type": "slot_level_9", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3651, - "fields": { - "parent": "deepm_killing-fields", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3652, - "fields": { - "parent": "deepm_kiss-of-the-succubus", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3654, - "fields": { - "parent": "deepm_kiss-of-the-succubus", - "type": "slot_level_6", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3655, - "fields": { - "parent": "deepm_kiss-of-the-succubus", - "type": "slot_level_7", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3656, - "fields": { - "parent": "deepm_kiss-of-the-succubus", - "type": "slot_level_8", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3657, - "fields": { - "parent": "deepm_kiss-of-the-succubus", - "type": "slot_level_9", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3658, - "fields": { - "parent": "deepm_kobolds-fury", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3659, - "fields": { - "parent": "deepm_labyrinth-mastery", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3660, - "fields": { - "parent": "deepm_labyrinthine-howl", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3662, - "fields": { - "parent": "deepm_labyrinthine-howl", - "type": "slot_level_6", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3663, - "fields": { - "parent": "deepm_labyrinthine-howl", - "type": "slot_level_7", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3664, - "fields": { - "parent": "deepm_labyrinthine-howl", - "type": "slot_level_8", - "damage_roll": "13d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3665, - "fields": { - "parent": "deepm_labyrinthine-howl", - "type": "slot_level_9", - "damage_roll": "15d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3666, - "fields": { - "parent": "deepm_lacerate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3668, - "fields": { - "parent": "deepm_lacerate", - "type": "slot_level_3", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3669, - "fields": { - "parent": "deepm_lacerate", - "type": "slot_level_4", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3670, - "fields": { - "parent": "deepm_lacerate", - "type": "slot_level_5", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3671, - "fields": { - "parent": "deepm_lacerate", - "type": "slot_level_6", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3672, - "fields": { - "parent": "deepm_lacerate", - "type": "slot_level_7", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3673, - "fields": { - "parent": "deepm_lacerate", - "type": "slot_level_8", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3674, - "fields": { - "parent": "deepm_lacerate", - "type": "slot_level_9", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3675, - "fields": { - "parent": "deepm_lair-sense", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3676, - "fields": { - "parent": "deepm_lair-sense", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3678, - "fields": { - "parent": "deepm_lair-sense", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "36 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3679, - "fields": { - "parent": "deepm_lair-sense", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3680, - "fields": { - "parent": "deepm_lair-sense", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "60 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3681, - "fields": { - "parent": "deepm_lair-sense", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3682, - "fields": { - "parent": "deepm_lair-sense", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "84 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3683, - "fields": { - "parent": "deepm_lair-sense", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "96 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3684, - "fields": { - "parent": "deepm_lair-sense", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "108 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3685, - "fields": { - "parent": "deepm_last-rays-of-the-dying-sun", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3687, - "fields": { - "parent": "deepm_last-rays-of-the-dying-sun", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3688, - "fields": { - "parent": "deepm_last-rays-of-the-dying-sun", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3689, - "fields": { - "parent": "deepm_lava-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3690, - "fields": { - "parent": "deepm_lay-to-rest", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3691, - "fields": { - "parent": "deepm_legend-killer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3692, - "fields": { - "parent": "deepm_legion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3693, - "fields": { - "parent": "deepm_legion-of-rabid-squirrels", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3695, - "fields": { - "parent": "deepm_legion-of-rabid-squirrels", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3696, - "fields": { - "parent": "deepm_legion-of-rabid-squirrels", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3697, - "fields": { - "parent": "deepm_legion-of-rabid-squirrels", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3698, - "fields": { - "parent": "deepm_legion-of-rabid-squirrels", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3699, - "fields": { - "parent": "deepm_legion-of-rabid-squirrels", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3700, - "fields": { - "parent": "deepm_legion-of-rabid-squirrels", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3701, - "fields": { - "parent": "deepm_lesser-maze", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3702, - "fields": { - "parent": "deepm_life-drain", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3704, - "fields": { - "parent": "deepm_life-drain", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3705, - "fields": { - "parent": "deepm_life-drain", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3706, - "fields": { - "parent": "deepm_life-drain", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3707, - "fields": { - "parent": "deepm_life-from-death", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3709, - "fields": { - "parent": "deepm_life-from-death", - "type": "slot_level_4", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3710, - "fields": { - "parent": "deepm_life-from-death", - "type": "slot_level_5", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3711, - "fields": { - "parent": "deepm_life-from-death", - "type": "slot_level_6", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3712, - "fields": { - "parent": "deepm_life-from-death", - "type": "slot_level_7", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3713, - "fields": { - "parent": "deepm_life-from-death", - "type": "slot_level_8", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3714, - "fields": { - "parent": "deepm_life-from-death", - "type": "slot_level_9", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3715, - "fields": { - "parent": "deepm_life-hack", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3716, - "fields": { - "parent": "deepm_life-sense", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3717, - "fields": { - "parent": "deepm_life-transference-arrow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3719, - "fields": { - "parent": "deepm_life-transference-arrow", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3720, - "fields": { - "parent": "deepm_life-transference-arrow", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3721, - "fields": { - "parent": "deepm_life-transference-arrow", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3722, - "fields": { - "parent": "deepm_life-transference-arrow", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3723, - "fields": { - "parent": "deepm_life-transference-arrow", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3724, - "fields": { - "parent": "deepm_life-transference-arrow", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3725, - "fields": { - "parent": "deepm_life-transference-arrow", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3726, - "fields": { - "parent": "deepm_life-transference-arrow", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3727, - "fields": { - "parent": "deepm_litany-of-sure-hands", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3728, - "fields": { - "parent": "deepm_living-shadows", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3729, - "fields": { - "parent": "deepm_lock-armor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3731, - "fields": { - "parent": "deepm_lock-armor", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3732, - "fields": { - "parent": "deepm_lock-armor", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3733, - "fields": { - "parent": "deepm_lock-armor", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3734, - "fields": { - "parent": "deepm_lock-armor", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3735, - "fields": { - "parent": "deepm_lock-armor", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3736, - "fields": { - "parent": "deepm_lock-armor", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3737, - "fields": { - "parent": "deepm_lock-armor", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3738, - "fields": { - "parent": "deepm_looping-trail", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3739, - "fields": { - "parent": "deepm_lovesick", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3741, - "fields": { - "parent": "deepm_lovesick", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3742, - "fields": { - "parent": "deepm_lovesick", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3743, - "fields": { - "parent": "deepm_lovesick", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3744, - "fields": { - "parent": "deepm_lovesick", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3745, - "fields": { - "parent": "deepm_lovesick", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3746, - "fields": { - "parent": "deepm_maddening-whispers", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3747, - "fields": { - "parent": "deepm_maim", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3748, - "fields": { - "parent": "deepm_malevolent-waves", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3749, - "fields": { - "parent": "deepm_mammons-due", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3750, - "fields": { - "parent": "deepm_mammons-due", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3751, - "fields": { - "parent": "deepm_mark-prey", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3753, - "fields": { - "parent": "deepm_mark-prey", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3754, - "fields": { - "parent": "deepm_mark-prey", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3755, - "fields": { - "parent": "deepm_mark-prey", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3756, - "fields": { - "parent": "deepm_mark-prey", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3757, - "fields": { - "parent": "deepm_mark-prey", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3758, - "fields": { - "parent": "deepm_mark-prey", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3759, - "fields": { - "parent": "deepm_mark-prey", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3760, - "fields": { - "parent": "deepm_mass-hobble-mount", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3762, - "fields": { - "parent": "deepm_mass-hobble-mount", - "type": "slot_level_4", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3763, - "fields": { - "parent": "deepm_mass-hobble-mount", - "type": "slot_level_5", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3764, - "fields": { - "parent": "deepm_mass-hobble-mount", - "type": "slot_level_6", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3765, - "fields": { - "parent": "deepm_mass-hobble-mount", - "type": "slot_level_7", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3766, - "fields": { - "parent": "deepm_mass-hobble-mount", - "type": "slot_level_8", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3767, - "fields": { - "parent": "deepm_mass-hobble-mount", - "type": "slot_level_9", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3768, - "fields": { - "parent": "deepm_mass-surge-dampener", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3769, - "fields": { - "parent": "deepm_mass-surge-dampener", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3770, - "fields": { - "parent": "deepm_maw-of-needles", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3772, - "fields": { - "parent": "deepm_maw-of-needles", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3773, - "fields": { - "parent": "deepm_maw-of-needles", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3774, - "fields": { - "parent": "deepm_maw-of-needles", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3775, - "fields": { - "parent": "deepm_maw-of-needles", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3776, - "fields": { - "parent": "deepm_maw-of-needles", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3777, - "fields": { - "parent": "deepm_maw-of-needles", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3778, - "fields": { - "parent": "deepm_maw-of-needles", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3779, - "fields": { - "parent": "deepm_maw-of-needles", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3780, - "fields": { - "parent": "deepm_memento-mori", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3781, - "fields": { - "parent": "deepm_mephitic-croak", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3783, - "fields": { - "parent": "deepm_mephitic-croak", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3784, - "fields": { - "parent": "deepm_mephitic-croak", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3785, - "fields": { - "parent": "deepm_mephitic-croak", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3786, - "fields": { - "parent": "deepm_mephitic-croak", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3787, - "fields": { - "parent": "deepm_mephitic-croak", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3788, - "fields": { - "parent": "deepm_mephitic-croak", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3789, - "fields": { - "parent": "deepm_mephitic-croak", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3790, - "fields": { - "parent": "deepm_mind-exchange", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3791, - "fields": { - "parent": "deepm_mind-exchange", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3792, - "fields": { - "parent": "deepm_mire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3793, - "fields": { - "parent": "deepm_misstep", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3794, - "fields": { - "parent": "deepm_mist-of-wonders", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3796, - "fields": { - "parent": "deepm_mist-of-wonders", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3797, - "fields": { - "parent": "deepm_mist-of-wonders", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3798, - "fields": { - "parent": "deepm_mist-of-wonders", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3799, - "fields": { - "parent": "deepm_mist-of-wonders", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3800, - "fields": { - "parent": "deepm_mist-of-wonders", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3801, - "fields": { - "parent": "deepm_mist-of-wonders", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3802, - "fields": { - "parent": "deepm_mist-of-wonders", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3803, - "fields": { - "parent": "deepm_monstrous-empathy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3805, - "fields": { - "parent": "deepm_monstrous-empathy", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3806, - "fields": { - "parent": "deepm_monstrous-empathy", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3807, - "fields": { - "parent": "deepm_monstrous-empathy", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3808, - "fields": { - "parent": "deepm_monstrous-empathy", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3809, - "fields": { - "parent": "deepm_monstrous-empathy", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3810, - "fields": { - "parent": "deepm_monstrous-empathy", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3811, - "fields": { - "parent": "deepm_moon-trap", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3812, - "fields": { - "parent": "deepm_mosquito-bane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3814, - "fields": { - "parent": "deepm_mosquito-bane", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3815, - "fields": { - "parent": "deepm_mosquito-bane", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3816, - "fields": { - "parent": "deepm_mosquito-bane", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3817, - "fields": { - "parent": "deepm_mosquito-bane", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3818, - "fields": { - "parent": "deepm_mosquito-bane", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3819, - "fields": { - "parent": "deepm_mosquito-bane", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3820, - "fields": { - "parent": "deepm_mosquito-bane", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3821, - "fields": { - "parent": "deepm_mosquito-bane", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3822, - "fields": { - "parent": "deepm_mud-pack", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3823, - "fields": { - "parent": "deepm_mud-pack", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3825, - "fields": { - "parent": "deepm_mud-pack", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3826, - "fields": { - "parent": "deepm_mud-pack", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3827, - "fields": { - "parent": "deepm_mud-pack", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3828, - "fields": { - "parent": "deepm_mud-pack", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3829, - "fields": { - "parent": "deepm_mud-pack", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3830, - "fields": { - "parent": "deepm_mud-pack", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3831, - "fields": { - "parent": "deepm_mud-pack", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3832, - "fields": { - "parent": "deepm_mud-pack", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 10, - "duration": "8 hours", - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3833, - "fields": { - "parent": "deepm_negative-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3834, - "fields": { - "parent": "deepm_nether-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3836, - "fields": { - "parent": "deepm_nether-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3837, - "fields": { - "parent": "deepm_nether-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3838, - "fields": { - "parent": "deepm_nether-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3839, - "fields": { - "parent": "deepm_nether-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3840, - "fields": { - "parent": "deepm_nether-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3841, - "fields": { - "parent": "deepm_night-terrors", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3842, - "fields": { - "parent": "deepm_nightfall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3843, - "fields": { - "parent": "deepm_nightfall", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3844, - "fields": { - "parent": "deepm_nip-at-the-heels", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3846, - "fields": { - "parent": "deepm_nip-at-the-heels", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3847, - "fields": { - "parent": "deepm_nip-at-the-heels", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3848, - "fields": { - "parent": "deepm_nip-at-the-heels", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3849, - "fields": { - "parent": "deepm_nip-at-the-heels", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3850, - "fields": { - "parent": "deepm_nip-at-the-heels", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3851, - "fields": { - "parent": "deepm_nip-at-the-heels", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3852, - "fields": { - "parent": "deepm_nip-at-the-heels", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3853, - "fields": { - "parent": "deepm_not-dead-yet", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3854, - "fields": { - "parent": "deepm_not-dead-yet", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3855, - "fields": { - "parent": "deepm_not-this-day", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3856, - "fields": { - "parent": "deepm_orb-of-light", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3858, - "fields": { - "parent": "deepm_orb-of-light", - "type": "slot_level_3", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3859, - "fields": { - "parent": "deepm_orb-of-light", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3860, - "fields": { - "parent": "deepm_orb-of-light", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3861, - "fields": { - "parent": "deepm_orb-of-light", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3862, - "fields": { - "parent": "deepm_orb-of-light", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3863, - "fields": { - "parent": "deepm_orb-of-light", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3864, - "fields": { - "parent": "deepm_orb-of-light", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3865, - "fields": { - "parent": "deepm_outflanking-boon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3867, - "fields": { - "parent": "deepm_outflanking-boon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3868, - "fields": { - "parent": "deepm_outflanking-boon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3869, - "fields": { - "parent": "deepm_outflanking-boon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3870, - "fields": { - "parent": "deepm_outflanking-boon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3871, - "fields": { - "parent": "deepm_outflanking-boon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3872, - "fields": { - "parent": "deepm_outflanking-boon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3873, - "fields": { - "parent": "deepm_paragon-of-chaos", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3874, - "fields": { - "parent": "deepm_pendulum", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3875, - "fields": { - "parent": "deepm_phantom-dragon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3877, - "fields": { - "parent": "deepm_phantom-dragon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3878, - "fields": { - "parent": "deepm_phantom-dragon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3879, - "fields": { - "parent": "deepm_phantom-dragon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3880, - "fields": { - "parent": "deepm_phantom-dragon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3881, - "fields": { - "parent": "deepm_phantom-dragon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3882, - "fields": { - "parent": "deepm_phantom-dragon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3883, - "fields": { - "parent": "deepm_pitfall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3884, - "fields": { - "parent": "deepm_poisoned-volley", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3886, - "fields": { - "parent": "deepm_poisoned-volley", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3887, - "fields": { - "parent": "deepm_poisoned-volley", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3888, - "fields": { - "parent": "deepm_poisoned-volley", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3889, - "fields": { - "parent": "deepm_poisoned-volley", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3890, - "fields": { - "parent": "deepm_poisoned-volley", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3891, - "fields": { - "parent": "deepm_poisoned-volley", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3892, - "fields": { - "parent": "deepm_poisoned-volley", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3893, - "fields": { - "parent": "deepm_potency-of-the-pack", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3895, - "fields": { - "parent": "deepm_potency-of-the-pack", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3896, - "fields": { - "parent": "deepm_potency-of-the-pack", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3897, - "fields": { - "parent": "deepm_potency-of-the-pack", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3898, - "fields": { - "parent": "deepm_potency-of-the-pack", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3899, - "fields": { - "parent": "deepm_potency-of-the-pack", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3900, - "fields": { - "parent": "deepm_potency-of-the-pack", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3901, - "fields": { - "parent": "deepm_power-word-kneel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3902, - "fields": { - "parent": "deepm_power-word-pain", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3903, - "fields": { - "parent": "deepm_primal-infusion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3904, - "fields": { - "parent": "deepm_prismatic-ray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3905, - "fields": { - "parent": "deepm_protection-from-the-void", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3906, - "fields": { - "parent": "deepm_protective-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3908, - "fields": { - "parent": "deepm_protective-ice", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3909, - "fields": { - "parent": "deepm_protective-ice", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3910, - "fields": { - "parent": "deepm_protective-ice", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3911, - "fields": { - "parent": "deepm_protective-ice", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3912, - "fields": { - "parent": "deepm_protective-ice", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3913, - "fields": { - "parent": "deepm_protective-ice", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3914, - "fields": { - "parent": "deepm_puff-of-smoke", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3915, - "fields": { - "parent": "deepm_pummelstone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3916, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_1", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3917, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_2", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3918, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_3", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3919, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_4", - "damage_roll": "1d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3920, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_5", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3921, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_6", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3922, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_7", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3923, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_8", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3924, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_9", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3925, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_10", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3926, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_11", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3927, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_12", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3928, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_13", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3929, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_14", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3930, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_15", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3931, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_16", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3932, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_17", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3933, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_18", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3934, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_19", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3935, - "fields": { - "parent": "deepm_pummelstone", - "type": "player_level_20", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3936, - "fields": { - "parent": "deepm_pyroclasm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3937, - "fields": { - "parent": "deepm_quick-time", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3939, - "fields": { - "parent": "deepm_quick-time", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3940, - "fields": { - "parent": "deepm_quick-time", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3941, - "fields": { - "parent": "deepm_quick-time", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3942, - "fields": { - "parent": "deepm_quick-time", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3943, - "fields": { - "parent": "deepm_quick-time", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3944, - "fields": { - "parent": "deepm_quicken", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3945, - "fields": { - "parent": "deepm_quicksilver-mantle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3946, - "fields": { - "parent": "deepm_quintessence", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3947, - "fields": { - "parent": "deepm_raid-the-lair", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3948, - "fields": { - "parent": "deepm_rain-of-blades", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3950, - "fields": { - "parent": "deepm_rain-of-blades", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3951, - "fields": { - "parent": "deepm_rain-of-blades", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3952, - "fields": { - "parent": "deepm_rain-of-blades", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3953, - "fields": { - "parent": "deepm_rain-of-blades", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3954, - "fields": { - "parent": "deepm_ray-of-alchemical-negation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3955, - "fields": { - "parent": "deepm_ray-of-life-suppression", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3956, - "fields": { - "parent": "deepm_reaver-spirit", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3958, - "fields": { - "parent": "deepm_reaver-spirit", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3959, - "fields": { - "parent": "deepm_reaver-spirit", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3960, - "fields": { - "parent": "deepm_reaver-spirit", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3961, - "fields": { - "parent": "deepm_reaver-spirit", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3962, - "fields": { - "parent": "deepm_reaver-spirit", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3963, - "fields": { - "parent": "deepm_reaver-spirit", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3964, - "fields": { - "parent": "deepm_reposition", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3966, - "fields": { - "parent": "deepm_reposition", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3967, - "fields": { - "parent": "deepm_reposition", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3968, - "fields": { - "parent": "deepm_reposition", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3969, - "fields": { - "parent": "deepm_reposition", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3970, - "fields": { - "parent": "deepm_reposition", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3971, - "fields": { - "parent": "deepm_reset", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3973, - "fields": { - "parent": "deepm_reset", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3974, - "fields": { - "parent": "deepm_reset", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3975, - "fields": { - "parent": "deepm_reset", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3976, - "fields": { - "parent": "deepm_reset", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3977, - "fields": { - "parent": "deepm_reset", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3978, - "fields": { - "parent": "deepm_reverberate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3980, - "fields": { - "parent": "deepm_reverberate", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3981, - "fields": { - "parent": "deepm_reverberate", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3982, - "fields": { - "parent": "deepm_reverberate", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3983, - "fields": { - "parent": "deepm_reverberate", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3984, - "fields": { - "parent": "deepm_reverberate", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3985, - "fields": { - "parent": "deepm_reverberate", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3986, - "fields": { - "parent": "deepm_reverberate", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3987, - "fields": { - "parent": "deepm_revive-beast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3988, - "fields": { - "parent": "deepm_right-the-stars", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3989, - "fields": { - "parent": "deepm_ring-strike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3991, - "fields": { - "parent": "deepm_ring-strike", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3992, - "fields": { - "parent": "deepm_ring-strike", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3993, - "fields": { - "parent": "deepm_ring-strike", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3994, - "fields": { - "parent": "deepm_ring-strike", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3995, - "fields": { - "parent": "deepm_ring-strike", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3996, - "fields": { - "parent": "deepm_ring-strike", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3997, - "fields": { - "parent": "deepm_ring-strike", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3998, - "fields": { - "parent": "deepm_ring-strike", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3999, - "fields": { - "parent": "deepm_ring-ward", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4000, - "fields": { - "parent": "deepm_riptide", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4001, - "fields": { - "parent": "deepm_rolling-thunder", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4003, - "fields": { - "parent": "deepm_rolling-thunder", - "type": "slot_level_3", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4004, - "fields": { - "parent": "deepm_rolling-thunder", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4005, - "fields": { - "parent": "deepm_rolling-thunder", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4006, - "fields": { - "parent": "deepm_rolling-thunder", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4007, - "fields": { - "parent": "deepm_rolling-thunder", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4008, - "fields": { - "parent": "deepm_rolling-thunder", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4009, - "fields": { - "parent": "deepm_rolling-thunder", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4010, - "fields": { - "parent": "deepm_rotting-corpse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4012, - "fields": { - "parent": "deepm_rotting-corpse", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4013, - "fields": { - "parent": "deepm_rotting-corpse", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4014, - "fields": { - "parent": "deepm_rotting-corpse", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4015, - "fields": { - "parent": "deepm_rotting-corpse", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4016, - "fields": { - "parent": "deepm_rotting-corpse", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4017, - "fields": { - "parent": "deepm_rotting-corpse", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4018, - "fields": { - "parent": "deepm_rotting-corpse", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4019, - "fields": { - "parent": "deepm_rune-of-imprisonment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4020, - "fields": { - "parent": "deepm_salt-lash", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4021, - "fields": { - "parent": "deepm_sand-ship", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4022, - "fields": { - "parent": "deepm_sand-ship", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4023, - "fields": { - "parent": "deepm_sanguine-horror", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4024, - "fields": { - "parent": "deepm_scale-rot", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4026, - "fields": { - "parent": "deepm_scale-rot", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4027, - "fields": { - "parent": "deepm_scale-rot", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4028, - "fields": { - "parent": "deepm_scale-rot", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4029, - "fields": { - "parent": "deepm_scale-rot", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4030, - "fields": { - "parent": "deepm_scale-rot", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4031, - "fields": { - "parent": "deepm_scentless", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4032, - "fields": { - "parent": "deepm_screaming-ray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4034, - "fields": { - "parent": "deepm_screaming-ray", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4035, - "fields": { - "parent": "deepm_screaming-ray", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4036, - "fields": { - "parent": "deepm_screaming-ray", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4037, - "fields": { - "parent": "deepm_screaming-ray", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4038, - "fields": { - "parent": "deepm_screaming-ray", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4039, - "fields": { - "parent": "deepm_screaming-ray", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4040, - "fields": { - "parent": "deepm_screaming-ray", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4041, - "fields": { - "parent": "deepm_screaming-ray", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4042, - "fields": { - "parent": "deepm_scribe", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4043, - "fields": { - "parent": "deepm_scry-ambush", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4044, - "fields": { - "parent": "deepm_sculpt-snow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4046, - "fields": { - "parent": "deepm_sculpt-snow", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4047, - "fields": { - "parent": "deepm_sculpt-snow", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4048, - "fields": { - "parent": "deepm_sculpt-snow", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4049, - "fields": { - "parent": "deepm_sculpt-snow", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4050, - "fields": { - "parent": "deepm_sculpt-snow", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4051, - "fields": { - "parent": "deepm_sculpt-snow", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4052, - "fields": { - "parent": "deepm_sculpt-snow", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4053, - "fields": { - "parent": "deepm_seal-of-sanctuary", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4054, - "fields": { - "parent": "deepm_seal-of-sanctuary", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4055, - "fields": { - "parent": "deepm_searing-sun", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4056, - "fields": { - "parent": "deepm_see-beyond", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4057, - "fields": { - "parent": "deepm_seed-of-destruction", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4058, - "fields": { - "parent": "deepm_seed-of-destruction", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4059, - "fields": { - "parent": "deepm_seeping-death", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4060, - "fields": { - "parent": "deepm_seers-reaction", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4061, - "fields": { - "parent": "deepm_semblance-of-dread", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4062, - "fields": { - "parent": "deepm_shade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4064, - "fields": { - "parent": "deepm_shade", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "20 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4065, - "fields": { - "parent": "deepm_shade", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "30 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4066, - "fields": { - "parent": "deepm_shade", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "40 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4067, - "fields": { - "parent": "deepm_shade", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "50 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4068, - "fields": { - "parent": "deepm_shade", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "60 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4069, - "fields": { - "parent": "deepm_shade", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "70 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4070, - "fields": { - "parent": "deepm_shade", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "80 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4071, - "fields": { - "parent": "deepm_shadow-armor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4072, - "fields": { - "parent": "deepm_shadow-bite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4073, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4074, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4075, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4076, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4077, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4078, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4079, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4080, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4081, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4082, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4083, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4084, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4085, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4086, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4087, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4088, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4089, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4090, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4091, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4092, - "fields": { - "parent": "deepm_shadow-bite", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4093, - "fields": { - "parent": "deepm_shadow-blindness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4094, - "fields": { - "parent": "deepm_shadow-hands", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4096, - "fields": { - "parent": "deepm_shadow-hands", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4097, - "fields": { - "parent": "deepm_shadow-hands", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4098, - "fields": { - "parent": "deepm_shadow-hands", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4099, - "fields": { - "parent": "deepm_shadow-hands", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4100, - "fields": { - "parent": "deepm_shadow-hands", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4101, - "fields": { - "parent": "deepm_shadow-hands", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4102, - "fields": { - "parent": "deepm_shadow-hands", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4103, - "fields": { - "parent": "deepm_shadow-hands", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4104, - "fields": { - "parent": "deepm_shadow-monsters", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4106, - "fields": { - "parent": "deepm_shadow-monsters", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4107, - "fields": { - "parent": "deepm_shadow-monsters", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4108, - "fields": { - "parent": "deepm_shadow-monsters", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4109, - "fields": { - "parent": "deepm_shadow-monsters", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4110, - "fields": { - "parent": "deepm_shadow-monsters", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4111, - "fields": { - "parent": "deepm_shadow-puppets", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4113, - "fields": { - "parent": "deepm_shadow-puppets", - "type": "slot_level_3", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4114, - "fields": { - "parent": "deepm_shadow-puppets", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4115, - "fields": { - "parent": "deepm_shadow-puppets", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4116, - "fields": { - "parent": "deepm_shadow-puppets", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4117, - "fields": { - "parent": "deepm_shadow-puppets", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4118, - "fields": { - "parent": "deepm_shadow-puppets", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4119, - "fields": { - "parent": "deepm_shadow-puppets", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4120, - "fields": { - "parent": "deepm_shadow-trove", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4121, - "fields": { - "parent": "deepm_shadow-trove", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4123, - "fields": { - "parent": "deepm_shadow-trove", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4124, - "fields": { - "parent": "deepm_shadow-trove", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4125, - "fields": { - "parent": "deepm_shadow-trove", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4126, - "fields": { - "parent": "deepm_shadow-trove", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "9 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4127, - "fields": { - "parent": "deepm_shadow-trove", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "11 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4128, - "fields": { - "parent": "deepm_shadow-trove", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "13 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4129, - "fields": { - "parent": "deepm_shadows-brought-to-light", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4130, - "fields": { - "parent": "deepm_shadows-brought-to-light", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4131, - "fields": { - "parent": "deepm_shadowy-retribution", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4132, - "fields": { - "parent": "deepm_shadowy-retribution", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4134, - "fields": { - "parent": "deepm_shadowy-retribution", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4135, - "fields": { - "parent": "deepm_shadowy-retribution", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4136, - "fields": { - "parent": "deepm_shadowy-retribution", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4137, - "fields": { - "parent": "deepm_shadowy-retribution", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4138, - "fields": { - "parent": "deepm_shadowy-retribution", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4139, - "fields": { - "parent": "deepm_shared-sacrifice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4140, - "fields": { - "parent": "deepm_sheen-of-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4141, - "fields": { - "parent": "deepm_shifting-the-odds", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4142, - "fields": { - "parent": "deepm_shiver", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4143, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4144, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4145, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4146, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4147, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4148, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4149, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4150, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4151, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4152, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4153, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4154, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4155, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4156, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4157, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4158, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4159, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4160, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4161, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4162, - "fields": { - "parent": "deepm_shiver", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4163, - "fields": { - "parent": "deepm_shroud-of-death", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4164, - "fields": { - "parent": "deepm_sidestep-arrow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4165, - "fields": { - "parent": "deepm_sign-of-koth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4167, - "fields": { - "parent": "deepm_sign-of-koth", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4168, - "fields": { - "parent": "deepm_sign-of-koth", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4169, - "fields": { - "parent": "deepm_silhouette", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4170, - "fields": { - "parent": "deepm_sir-mittinzs-move-curse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4171, - "fields": { - "parent": "deepm_sir-mittinzs-move-curse", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4172, - "fields": { - "parent": "deepm_sleep-of-the-deep", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4173, - "fields": { - "parent": "deepm_sleep-of-the-deep", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4175, - "fields": { - "parent": "deepm_sleep-of-the-deep", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4176, - "fields": { - "parent": "deepm_sleep-of-the-deep", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4177, - "fields": { - "parent": "deepm_sleep-of-the-deep", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4178, - "fields": { - "parent": "deepm_sleep-of-the-deep", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4179, - "fields": { - "parent": "deepm_sleep-of-the-deep", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4180, - "fields": { - "parent": "deepm_sleep-of-the-deep", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4181, - "fields": { - "parent": "deepm_slippery-fingers", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4182, - "fields": { - "parent": "deepm_slither", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4184, - "fields": { - "parent": "deepm_slither", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4185, - "fields": { - "parent": "deepm_slither", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4186, - "fields": { - "parent": "deepm_slither", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4187, - "fields": { - "parent": "deepm_slither", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4188, - "fields": { - "parent": "deepm_slither", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4189, - "fields": { - "parent": "deepm_slither", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4190, - "fields": { - "parent": "deepm_slither", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4191, - "fields": { - "parent": "deepm_snow-boulder", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4192, - "fields": { - "parent": "deepm_snow-fort", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4193, - "fields": { - "parent": "deepm_snowy-coat", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4195, - "fields": { - "parent": "deepm_snowy-coat", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4196, - "fields": { - "parent": "deepm_snowy-coat", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4197, - "fields": { - "parent": "deepm_snowy-coat", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4198, - "fields": { - "parent": "deepm_snowy-coat", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4199, - "fields": { - "parent": "deepm_snowy-coat", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4200, - "fields": { - "parent": "deepm_snowy-coat", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4201, - "fields": { - "parent": "deepm_snowy-coat", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4202, - "fields": { - "parent": "deepm_snowy-coat", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4203, - "fields": { - "parent": "deepm_song-of-the-forest", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4204, - "fields": { - "parent": "deepm_song-of-the-forest", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4205, - "fields": { - "parent": "deepm_speak-with-inanimate-object", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4206, - "fields": { - "parent": "deepm_speak-with-inanimate-object", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4207, - "fields": { - "parent": "deepm_spin", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4208, - "fields": { - "parent": "deepm_spinning-axes", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4210, - "fields": { - "parent": "deepm_spinning-axes", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4211, - "fields": { - "parent": "deepm_spinning-axes", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4212, - "fields": { - "parent": "deepm_spinning-axes", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4213, - "fields": { - "parent": "deepm_spinning-axes", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4214, - "fields": { - "parent": "deepm_spinning-axes", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4215, - "fields": { - "parent": "deepm_spiteful-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4217, - "fields": { - "parent": "deepm_spiteful-weapon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4218, - "fields": { - "parent": "deepm_spiteful-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4219, - "fields": { - "parent": "deepm_spiteful-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4220, - "fields": { - "parent": "deepm_spiteful-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4221, - "fields": { - "parent": "deepm_spiteful-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4222, - "fields": { - "parent": "deepm_spiteful-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4223, - "fields": { - "parent": "deepm_spur-mount", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4224, - "fields": { - "parent": "deepm_staff-of-violet-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4226, - "fields": { - "parent": "deepm_staff-of-violet-fire", - "type": "slot_level_5", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4227, - "fields": { - "parent": "deepm_staff-of-violet-fire", - "type": "slot_level_6", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4228, - "fields": { - "parent": "deepm_staff-of-violet-fire", - "type": "slot_level_7", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4229, - "fields": { - "parent": "deepm_staff-of-violet-fire", - "type": "slot_level_8", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4230, - "fields": { - "parent": "deepm_staff-of-violet-fire", - "type": "slot_level_9", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4231, - "fields": { - "parent": "deepm_stanch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4232, - "fields": { - "parent": "deepm_starburst", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4233, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4234, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4235, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4236, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4237, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4238, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4239, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4240, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4241, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4242, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4243, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4244, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4245, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4246, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4247, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4248, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4249, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4250, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4251, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4252, - "fields": { - "parent": "deepm_starburst", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4253, - "fields": { - "parent": "deepm_starfall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4255, - "fields": { - "parent": "deepm_starfall", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4256, - "fields": { - "parent": "deepm_starfall", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4257, - "fields": { - "parent": "deepm_starfall", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4258, - "fields": { - "parent": "deepm_starfall", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4259, - "fields": { - "parent": "deepm_starry-vision", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4261, - "fields": { - "parent": "deepm_starry-vision", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4262, - "fields": { - "parent": "deepm_starry-vision", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4263, - "fields": { - "parent": "deepm_stars-heart", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4264, - "fields": { - "parent": "deepm_steal-warmth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4266, - "fields": { - "parent": "deepm_steal-warmth", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4267, - "fields": { - "parent": "deepm_steal-warmth", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4268, - "fields": { - "parent": "deepm_steal-warmth", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4269, - "fields": { - "parent": "deepm_steal-warmth", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4270, - "fields": { - "parent": "deepm_steal-warmth", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4271, - "fields": { - "parent": "deepm_steal-warmth", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4272, - "fields": { - "parent": "deepm_steam-blast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4274, - "fields": { - "parent": "deepm_steam-blast", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4275, - "fields": { - "parent": "deepm_steam-blast", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4276, - "fields": { - "parent": "deepm_steam-blast", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4277, - "fields": { - "parent": "deepm_steam-blast", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4278, - "fields": { - "parent": "deepm_steam-blast", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4279, - "fields": { - "parent": "deepm_steam-whistle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4280, - "fields": { - "parent": "deepm_stench-of-rot", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4282, - "fields": { - "parent": "deepm_stench-of-rot", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4283, - "fields": { - "parent": "deepm_stench-of-rot", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4284, - "fields": { - "parent": "deepm_stench-of-rot", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4285, - "fields": { - "parent": "deepm_stench-of-rot", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4286, - "fields": { - "parent": "deepm_stench-of-rot", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4287, - "fields": { - "parent": "deepm_stench-of-rot", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4288, - "fields": { - "parent": "deepm_stench-of-rot", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4289, - "fields": { - "parent": "deepm_storm-of-wings", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4290, - "fields": { - "parent": "deepm_sudden-dawn", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4291, - "fields": { - "parent": "deepm_sudden-dawn", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4292, - "fields": { - "parent": "deepm_summon-eldritch-servitor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4293, - "fields": { - "parent": "deepm_summon-eldritch-servitor", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4295, - "fields": { - "parent": "deepm_summon-eldritch-servitor", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4296, - "fields": { - "parent": "deepm_summon-eldritch-servitor", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4297, - "fields": { - "parent": "deepm_summon-eldritch-servitor", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4298, - "fields": { - "parent": "deepm_summon-eldritch-servitor", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4299, - "fields": { - "parent": "deepm_summon-star", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4300, - "fields": { - "parent": "deepm_surge-dampener", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4301, - "fields": { - "parent": "deepm_surge-dampener", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4302, - "fields": { - "parent": "deepm_surprise-blessing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4303, - "fields": { - "parent": "deepm_symbol-of-sorcery", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4304, - "fields": { - "parent": "deepm_talons-of-a-hungry-land", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4306, - "fields": { - "parent": "deepm_talons-of-a-hungry-land", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4307, - "fields": { - "parent": "deepm_talons-of-a-hungry-land", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4308, - "fields": { - "parent": "deepm_targeting-foreknowledge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4309, - "fields": { - "parent": "deepm_thin-the-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4310, - "fields": { - "parent": "deepm_thousand-darts", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4312, - "fields": { - "parent": "deepm_thousand-darts", - "type": "slot_level_4", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4313, - "fields": { - "parent": "deepm_thousand-darts", - "type": "slot_level_5", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4314, - "fields": { - "parent": "deepm_thousand-darts", - "type": "slot_level_6", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4315, - "fields": { - "parent": "deepm_thousand-darts", - "type": "slot_level_7", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4316, - "fields": { - "parent": "deepm_thousand-darts", - "type": "slot_level_8", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4317, - "fields": { - "parent": "deepm_thousand-darts", - "type": "slot_level_9", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4318, - "fields": { - "parent": "deepm_throes-of-ecstasy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4320, - "fields": { - "parent": "deepm_throes-of-ecstasy", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4321, - "fields": { - "parent": "deepm_throes-of-ecstasy", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4322, - "fields": { - "parent": "deepm_throes-of-ecstasy", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4323, - "fields": { - "parent": "deepm_throes-of-ecstasy", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4324, - "fields": { - "parent": "deepm_throes-of-ecstasy", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4325, - "fields": { - "parent": "deepm_throes-of-ecstasy", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4326, - "fields": { - "parent": "deepm_thunder-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4327, - "fields": { - "parent": "deepm_thunderclap", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4328, - "fields": { - "parent": "deepm_thunderous-charge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4330, - "fields": { - "parent": "deepm_thunderous-charge", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4331, - "fields": { - "parent": "deepm_thunderous-charge", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4332, - "fields": { - "parent": "deepm_thunderous-charge", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4333, - "fields": { - "parent": "deepm_thunderous-charge", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4334, - "fields": { - "parent": "deepm_thunderous-charge", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4335, - "fields": { - "parent": "deepm_thunderous-charge", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4336, - "fields": { - "parent": "deepm_thunderous-charge", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4337, - "fields": { - "parent": "deepm_thunderous-charge", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4338, - "fields": { - "parent": "deepm_thunderous-stampede", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4340, - "fields": { - "parent": "deepm_thunderous-stampede", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4341, - "fields": { - "parent": "deepm_thunderous-stampede", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4342, - "fields": { - "parent": "deepm_thunderous-stampede", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4343, - "fields": { - "parent": "deepm_thunderous-stampede", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4344, - "fields": { - "parent": "deepm_thunderous-stampede", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4345, - "fields": { - "parent": "deepm_thunderous-stampede", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4346, - "fields": { - "parent": "deepm_thunderous-stampede", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4347, - "fields": { - "parent": "deepm_thunderous-wave", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4348, - "fields": { - "parent": "deepm_thunderstorm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4349, - "fields": { - "parent": "deepm_tidal-barrier", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4350, - "fields": { - "parent": "deepm_time-in-a-bottle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4351, - "fields": { - "parent": "deepm_time-jump", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4352, - "fields": { - "parent": "deepm_time-loop", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4353, - "fields": { - "parent": "deepm_time-slippage", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4354, - "fields": { - "parent": "deepm_time-step", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4355, - "fields": { - "parent": "deepm_time-vortex", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4357, - "fields": { - "parent": "deepm_time-vortex", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4358, - "fields": { - "parent": "deepm_time-vortex", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4359, - "fields": { - "parent": "deepm_time-vortex", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4360, - "fields": { - "parent": "deepm_time-vortex", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4361, - "fields": { - "parent": "deepm_time-vortex", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4362, - "fields": { - "parent": "deepm_timely-distraction", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4363, - "fields": { - "parent": "deepm_tireless", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4364, - "fields": { - "parent": "deepm_tongue-of-sand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4365, - "fields": { - "parent": "deepm_tongue-of-sand", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4366, - "fields": { - "parent": "deepm_tongue-tied", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4367, - "fields": { - "parent": "deepm_torrent-of-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4368, - "fields": { - "parent": "deepm_touch-of-the-unliving", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4370, - "fields": { - "parent": "deepm_touch-of-the-unliving", - "type": "slot_level_4", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4371, - "fields": { - "parent": "deepm_touch-of-the-unliving", - "type": "slot_level_5", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4372, - "fields": { - "parent": "deepm_touch-of-the-unliving", - "type": "slot_level_6", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4373, - "fields": { - "parent": "deepm_touch-of-the-unliving", - "type": "slot_level_7", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4374, - "fields": { - "parent": "deepm_touch-of-the-unliving", - "type": "slot_level_8", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4375, - "fields": { - "parent": "deepm_touch-of-the-unliving", - "type": "slot_level_9", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4376, - "fields": { - "parent": "deepm_tracer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4377, - "fields": { - "parent": "deepm_treasure-chasm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4378, - "fields": { - "parent": "deepm_tree-heal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4379, - "fields": { - "parent": "deepm_tree-running", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4380, - "fields": { - "parent": "deepm_tree-speak", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4381, - "fields": { - "parent": "deepm_trench", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4383, - "fields": { - "parent": "deepm_trench", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4384, - "fields": { - "parent": "deepm_trench", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4385, - "fields": { - "parent": "deepm_trench", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4386, - "fields": { - "parent": "deepm_trench", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4387, - "fields": { - "parent": "deepm_trench", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4388, - "fields": { - "parent": "deepm_trench", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4389, - "fields": { - "parent": "deepm_trench", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4390, - "fields": { - "parent": "deepm_trick-question", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4391, - "fields": { - "parent": "deepm_triumph-of-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4392, - "fields": { - "parent": "deepm_twist-the-skein", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4393, - "fields": { - "parent": "deepm_umbral-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4394, - "fields": { - "parent": "deepm_uncontrollable-transformation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4395, - "fields": { - "parent": "deepm_uncontrollable-transformation", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4397, - "fields": { - "parent": "deepm_uncontrollable-transformation", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4398, - "fields": { - "parent": "deepm_uncontrollable-transformation", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4399, - "fields": { - "parent": "deepm_undermine-armor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4400, - "fields": { - "parent": "deepm_unholy-defiance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4401, - "fields": { - "parent": "deepm_unleash-effigy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4402, - "fields": { - "parent": "deepm_unluck-on-that", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4404, - "fields": { - "parent": "deepm_unluck-on-that", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "30 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4405, - "fields": { - "parent": "deepm_unluck-on-that", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "35 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4406, - "fields": { - "parent": "deepm_unluck-on-that", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "40 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4407, - "fields": { - "parent": "deepm_unluck-on-that", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "45 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4408, - "fields": { - "parent": "deepm_unluck-on-that", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "50 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4409, - "fields": { - "parent": "deepm_unluck-on-that", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "55 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4410, - "fields": { - "parent": "deepm_unluck-on-that", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "60 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4411, - "fields": { - "parent": "deepm_unluck-on-that", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "65 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4412, - "fields": { - "parent": "deepm_unseen-strangler", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4413, - "fields": { - "parent": "deepm_unseen-strangler", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4414, - "fields": { - "parent": "deepm_vine-trestle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4415, - "fields": { - "parent": "deepm_vine-trestle", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4417, - "fields": { - "parent": "deepm_vine-trestle", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4418, - "fields": { - "parent": "deepm_vine-trestle", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4419, - "fields": { - "parent": "deepm_vine-trestle", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4420, - "fields": { - "parent": "deepm_vine-trestle", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4421, - "fields": { - "parent": "deepm_vine-trestle", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4422, - "fields": { - "parent": "deepm_vine-trestle", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4423, - "fields": { - "parent": "deepm_vine-trestle", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4424, - "fields": { - "parent": "deepm_visage-of-madness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4425, - "fields": { - "parent": "deepm_vital-mark", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4426, - "fields": { - "parent": "deepm_vital-mark", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4428, - "fields": { - "parent": "deepm_vital-mark", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4429, - "fields": { - "parent": "deepm_vital-mark", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4430, - "fields": { - "parent": "deepm_vital-mark", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4431, - "fields": { - "parent": "deepm_vital-mark", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4432, - "fields": { - "parent": "deepm_vital-mark", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4433, - "fields": { - "parent": "deepm_vital-mark", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4434, - "fields": { - "parent": "deepm_void-rift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4435, - "fields": { - "parent": "deepm_void-strike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4437, - "fields": { - "parent": "deepm_void-strike", - "type": "slot_level_4", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4438, - "fields": { - "parent": "deepm_void-strike", - "type": "slot_level_5", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4439, - "fields": { - "parent": "deepm_void-strike", - "type": "slot_level_6", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4440, - "fields": { - "parent": "deepm_void-strike", - "type": "slot_level_7", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4441, - "fields": { - "parent": "deepm_void-strike", - "type": "slot_level_8", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4442, - "fields": { - "parent": "deepm_void-strike", - "type": "slot_level_9", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4443, - "fields": { - "parent": "deepm_volley-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4444, - "fields": { - "parent": "deepm_vomit-tentacles", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4445, - "fields": { - "parent": "deepm_voorish-sign", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4447, - "fields": { - "parent": "deepm_voorish-sign", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4448, - "fields": { - "parent": "deepm_voorish-sign", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4449, - "fields": { - "parent": "deepm_voorish-sign", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4450, - "fields": { - "parent": "deepm_voorish-sign", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4451, - "fields": { - "parent": "deepm_voorish-sign", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4452, - "fields": { - "parent": "deepm_voorish-sign", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4453, - "fields": { - "parent": "deepm_voorish-sign", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4454, - "fields": { - "parent": "deepm_voorish-sign", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4455, - "fields": { - "parent": "deepm_waft", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4456, - "fields": { - "parent": "deepm_walk-the-twisted-path", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4458, - "fields": { - "parent": "deepm_walk-the-twisted-path", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4459, - "fields": { - "parent": "deepm_walk-the-twisted-path", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4460, - "fields": { - "parent": "deepm_walk-the-twisted-path", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4461, - "fields": { - "parent": "deepm_walking-wall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4462, - "fields": { - "parent": "deepm_wall-of-time", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4463, - "fields": { - "parent": "deepm_warning-shout", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4464, - "fields": { - "parent": "deepm_warp-mind-and-matter", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4465, - "fields": { - "parent": "deepm_warp-mind-and-matter", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4466, - "fields": { - "parent": "deepm_weapon-of-blood", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4468, - "fields": { - "parent": "deepm_weapon-of-blood", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4469, - "fields": { - "parent": "deepm_weapon-of-blood", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4470, - "fields": { - "parent": "deepm_weapon-of-blood", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4471, - "fields": { - "parent": "deepm_weapon-of-blood", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4472, - "fields": { - "parent": "deepm_weapon-of-blood", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4473, - "fields": { - "parent": "deepm_weapon-of-blood", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4474, - "fields": { - "parent": "deepm_weapon-of-blood", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4475, - "fields": { - "parent": "deepm_weapon-of-blood", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4476, - "fields": { - "parent": "deepm_weilers-ward", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4478, - "fields": { - "parent": "deepm_weilers-ward", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4479, - "fields": { - "parent": "deepm_weilers-ward", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4480, - "fields": { - "parent": "deepm_weilers-ward", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4481, - "fields": { - "parent": "deepm_weilers-ward", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4482, - "fields": { - "parent": "deepm_weilers-ward", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4483, - "fields": { - "parent": "deepm_weilers-ward", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4484, - "fields": { - "parent": "deepm_weilers-ward", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4485, - "fields": { - "parent": "deepm_wild-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4487, - "fields": { - "parent": "deepm_wild-shield", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4488, - "fields": { - "parent": "deepm_wild-shield", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4489, - "fields": { - "parent": "deepm_wild-shield", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4490, - "fields": { - "parent": "deepm_wild-shield", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4491, - "fields": { - "parent": "deepm_wild-shield", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4492, - "fields": { - "parent": "deepm_wind-lash", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4493, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_1", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4494, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_2", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4495, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_3", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4496, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_4", - "damage_roll": "1d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4497, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4498, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4499, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4500, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4501, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4502, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4503, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4504, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4505, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4506, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4507, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4508, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4509, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4510, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4511, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4512, - "fields": { - "parent": "deepm_wind-lash", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4513, - "fields": { - "parent": "deepm_wind-of-the-hereafter", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4514, - "fields": { - "parent": "deepm_wind-tunnel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4515, - "fields": { - "parent": "deepm_winterdark", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4516, - "fields": { - "parent": "deepm_winters-radiance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4517, - "fields": { - "parent": "deepm_wintry-glide", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4518, - "fields": { - "parent": "deepm_withered-sight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4520, - "fields": { - "parent": "deepm_withered-sight", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4521, - "fields": { - "parent": "deepm_withered-sight", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4522, - "fields": { - "parent": "deepm_withered-sight", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4523, - "fields": { - "parent": "deepm_withered-sight", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4524, - "fields": { - "parent": "deepm_withered-sight", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4525, - "fields": { - "parent": "deepm_withered-sight", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4526, - "fields": { - "parent": "deepm_withered-sight", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4527, - "fields": { - "parent": "deepm_withered-sight", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4528, - "fields": { - "parent": "deepm_wolfsong", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4530, - "fields": { - "parent": "deepm_wolfsong", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4531, - "fields": { - "parent": "deepm_wolfsong", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4532, - "fields": { - "parent": "deepm_wolfsong", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4533, - "fields": { - "parent": "deepm_wolfsong", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4534, - "fields": { - "parent": "deepm_wolfsong", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4535, - "fields": { - "parent": "deepm_wolfsong", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4536, - "fields": { - "parent": "deepm_wolfsong", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4537, - "fields": { - "parent": "deepm_wolfsong", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4538, - "fields": { - "parent": "deepm_word-of-misfortune", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4539, - "fields": { - "parent": "deepm_wresting-wind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4540, - "fields": { - "parent": "deepm_writhing-arms", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4542, - "fields": { - "parent": "deepm_writhing-arms", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4543, - "fields": { - "parent": "deepm_writhing-arms", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4544, - "fields": { - "parent": "deepm_writhing-arms", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4545, - "fields": { - "parent": "deepm_writhing-arms", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4546, - "fields": { - "parent": "deepm_writhing-arms", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4547, - "fields": { - "parent": "deepm_writhing-arms", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4548, - "fields": { - "parent": "deepm_writhing-arms", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4549, - "fields": { - "parent": "deepm_writhing-arms", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4550, - "fields": { - "parent": "deepm_yellow-sign", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - } -] \ No newline at end of file +{ + "model": "api_v2.spellcastingoption", + "pk": 2246, + "fields": { + "parent": "deepm_abhorrent-apparition", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2248, + "fields": { + "parent": "deepm_abhorrent-apparition", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2249, + "fields": { + "parent": "deepm_abhorrent-apparition", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2250, + "fields": { + "parent": "deepm_abhorrent-apparition", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2251, + "fields": { + "parent": "deepm_abhorrent-apparition", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2252, + "fields": { + "parent": "deepm_abhorrent-apparition", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2253, + "fields": { + "parent": "deepm_accelerate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2255, + "fields": { + "parent": "deepm_accelerate", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2256, + "fields": { + "parent": "deepm_accelerate", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2257, + "fields": { + "parent": "deepm_accelerate", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2258, + "fields": { + "parent": "deepm_accelerate", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2259, + "fields": { + "parent": "deepm_accelerate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2260, + "fields": { + "parent": "deepm_accelerate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2261, + "fields": { + "parent": "deepm_acid-gate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2263, + "fields": { + "parent": "deepm_acid-gate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2264, + "fields": { + "parent": "deepm_acid-gate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2265, + "fields": { + "parent": "deepm_acid-rain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2267, + "fields": { + "parent": "deepm_acid-rain", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2268, + "fields": { + "parent": "deepm_acid-rain", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2269, + "fields": { + "parent": "deepm_acid-rain", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2270, + "fields": { + "parent": "deepm_acid-rain", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2271, + "fields": { + "parent": "deepm_adjust-position", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2273, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2274, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2275, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2276, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2277, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2278, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2279, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2280, + "fields": { + "parent": "deepm_adjust-position", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2281, + "fields": { + "parent": "deepm_afflict-line", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2282, + "fields": { + "parent": "deepm_afflict-line", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2283, + "fields": { + "parent": "deepm_agonizing-mark", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2284, + "fields": { + "parent": "deepm_alchemical-form", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2285, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2286, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2287, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2288, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2289, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2290, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2291, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2292, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2293, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2294, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2295, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2296, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2297, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2298, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2299, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2300, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2301, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2302, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2303, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2304, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2305, + "fields": { + "parent": "deepm_ale-dritch-blast", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2306, + "fields": { + "parent": "deepm_ally-aegis", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2308, + "fields": { + "parent": "deepm_ally-aegis", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2309, + "fields": { + "parent": "deepm_ally-aegis", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2310, + "fields": { + "parent": "deepm_ally-aegis", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2311, + "fields": { + "parent": "deepm_alone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2312, + "fields": { + "parent": "deepm_alter-arrows-fortune", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2313, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2314, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2316, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2317, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2318, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2319, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2320, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2321, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2322, + "fields": { + "parent": "deepm_altheas-travel-tent", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2323, + "fields": { + "parent": "deepm_amplify-gravity", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2324, + "fields": { + "parent": "deepm_analyze-device", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2325, + "fields": { + "parent": "deepm_ancestors-strength", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2326, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2328, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 1, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2329, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2330, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2331, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2332, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2333, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2334, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2335, + "fields": { + "parent": "deepm_anchoring-rope", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2336, + "fields": { + "parent": "deepm_ancient-shade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2337, + "fields": { + "parent": "deepm_angelic-guardian", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2338, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2340, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2341, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2342, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2343, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2344, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2345, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2346, + "fields": { + "parent": "deepm_animate-ghoul", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2347, + "fields": { + "parent": "deepm_animate-greater-undead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2349, + "fields": { + "parent": "deepm_animate-greater-undead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2350, + "fields": { + "parent": "deepm_animate-greater-undead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2351, + "fields": { + "parent": "deepm_animate-greater-undead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2352, + "fields": { + "parent": "deepm_animated-scroll", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2353, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2354, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2355, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2356, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2357, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2358, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2359, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2360, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2361, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2362, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2363, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2364, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2365, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2366, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2367, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2368, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2369, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": "96 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2370, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": "96 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2371, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": "96 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2372, + "fields": { + "parent": "deepm_animated-scroll", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": "96 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2373, + "fields": { + "parent": "deepm_anticipate-arcana", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2374, + "fields": { + "parent": "deepm_anticipate-attack", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2375, + "fields": { + "parent": "deepm_anticipate-weakness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2376, + "fields": { + "parent": "deepm_arcane-sight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2377, + "fields": { + "parent": "deepm_as-you-were", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2378, + "fields": { + "parent": "deepm_ashen-memories", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2379, + "fields": { + "parent": "deepm_ashen-memories", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2380, + "fields": { + "parent": "deepm_aspect-of-the-dragon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2381, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2383, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2384, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2385, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2386, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2387, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2388, + "fields": { + "parent": "deepm_aspect-of-the-serpent", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2389, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2391, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "1 round", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2392, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "2 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2393, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2394, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "4 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2395, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2396, + "fields": { + "parent": "deepm_aura-of-protection-or-destruction", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2397, + "fields": { + "parent": "deepm_auspicious-warning", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2398, + "fields": { + "parent": "deepm_avoid-grievous-injury", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2399, + "fields": { + "parent": "deepm_avronins-astral-assembly", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2400, + "fields": { + "parent": "deepm_avronins-astral-assembly", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2401, + "fields": { + "parent": "deepm_awaken-object", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2402, + "fields": { + "parent": "deepm_bad-timing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2403, + "fields": { + "parent": "deepm_batsense", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2404, + "fields": { + "parent": "deepm_become-nightwing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2405, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2407, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 1, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2408, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2409, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2410, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2411, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2412, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2413, + "fields": { + "parent": "deepm_beguiling-bet", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2414, + "fields": { + "parent": "deepm_benediction", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2415, + "fields": { + "parent": "deepm_bestial-fury", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2417, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2418, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2419, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2420, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2421, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2422, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2423, + "fields": { + "parent": "deepm_bestial-fury", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2424, + "fields": { + "parent": "deepm_binding-oath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2425, + "fields": { + "parent": "deepm_biting-arrow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2426, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2427, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2428, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2429, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2430, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2431, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2432, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2433, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2434, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2435, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2436, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2437, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2438, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2439, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2440, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2441, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2442, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2443, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2444, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2445, + "fields": { + "parent": "deepm_biting-arrow", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2446, + "fields": { + "parent": "deepm_bitter-chains", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2447, + "fields": { + "parent": "deepm_black-goats-blessing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2448, + "fields": { + "parent": "deepm_black-hand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2449, + "fields": { + "parent": "deepm_black-ribbons", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2450, + "fields": { + "parent": "deepm_black-sunshine", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2451, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2453, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2454, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2455, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2456, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2457, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2458, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2459, + "fields": { + "parent": "deepm_black-swan-storm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2460, + "fields": { + "parent": "deepm_black-well", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2462, + "fields": { + "parent": "deepm_black-well", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2463, + "fields": { + "parent": "deepm_black-well", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2464, + "fields": { + "parent": "deepm_black-well", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2465, + "fields": { + "parent": "deepm_blade-of-my-brother", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2466, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2468, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2469, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2470, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2471, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2472, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2473, + "fields": { + "parent": "deepm_blade-of-wrath", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2474, + "fields": { + "parent": "deepm_blazing-chariot", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2475, + "fields": { + "parent": "deepm_bleating-call", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2476, + "fields": { + "parent": "deepm_bleed", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2477, + "fields": { + "parent": "deepm_bless-the-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2478, + "fields": { + "parent": "deepm_blessed-halo", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2480, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2481, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2482, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2483, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2484, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2485, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2486, + "fields": { + "parent": "deepm_blessed-halo", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2487, + "fields": { + "parent": "deepm_blizzard", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2488, + "fields": { + "parent": "deepm_blood-and-steel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2490, + "fields": { + "parent": "deepm_blood-and-steel", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2491, + "fields": { + "parent": "deepm_blood-and-steel", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2492, + "fields": { + "parent": "deepm_blood-and-steel", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2493, + "fields": { + "parent": "deepm_blood-and-steel", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2494, + "fields": { + "parent": "deepm_blood-and-steel", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2495, + "fields": { + "parent": "deepm_blood-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2496, + "fields": { + "parent": "deepm_blood-lure", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2497, + "fields": { + "parent": "deepm_blood-offering", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2498, + "fields": { + "parent": "deepm_blood-puppet", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2499, + "fields": { + "parent": "deepm_blood-scarab", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2501, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2502, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2503, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2504, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2505, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2506, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2507, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2508, + "fields": { + "parent": "deepm_blood-scarab", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2509, + "fields": { + "parent": "deepm_blood-spoor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2510, + "fields": { + "parent": "deepm_blood-tide", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2511, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2512, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2513, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2514, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2515, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2516, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2517, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2518, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2519, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2520, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2521, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2522, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2523, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2524, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2525, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2526, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2527, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2528, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2529, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2530, + "fields": { + "parent": "deepm_blood-tide", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2531, + "fields": { + "parent": "deepm_blood-to-acid", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2532, + "fields": { + "parent": "deepm_bloodhound", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2534, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2535, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2536, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2537, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2538, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2539, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2540, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2541, + "fields": { + "parent": "deepm_bloodhound", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2542, + "fields": { + "parent": "deepm_bloodshot", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2544, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2545, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2546, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2547, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2548, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2549, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2550, + "fields": { + "parent": "deepm_bloodshot", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2551, + "fields": { + "parent": "deepm_bloody-hands", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2552, + "fields": { + "parent": "deepm_bloody-smite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2553, + "fields": { + "parent": "deepm_bloom", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2554, + "fields": { + "parent": "deepm_bloom", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2555, + "fields": { + "parent": "deepm_boiling-blood", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2557, + "fields": { + "parent": "deepm_boiling-blood", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2558, + "fields": { + "parent": "deepm_boiling-blood", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2559, + "fields": { + "parent": "deepm_boiling-blood", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2560, + "fields": { + "parent": "deepm_boiling-blood", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2561, + "fields": { + "parent": "deepm_boiling-blood", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2562, + "fields": { + "parent": "deepm_boiling-oil", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2564, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2565, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2566, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2567, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2568, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2569, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2570, + "fields": { + "parent": "deepm_boiling-oil", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2571, + "fields": { + "parent": "deepm_bolster-undead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2573, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2574, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2575, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2576, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2577, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2578, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2579, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2580, + "fields": { + "parent": "deepm_bolster-undead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2581, + "fields": { + "parent": "deepm_booster-shot", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2583, + "fields": { + "parent": "deepm_booster-shot", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2584, + "fields": { + "parent": "deepm_booster-shot", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2585, + "fields": { + "parent": "deepm_booster-shot", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2586, + "fields": { + "parent": "deepm_booster-shot", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2587, + "fields": { + "parent": "deepm_booster-shot", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2588, + "fields": { + "parent": "deepm_booster-shot", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2589, + "fields": { + "parent": "deepm_boreass-breath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2590, + "fields": { + "parent": "deepm_boreass-breath", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2592, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2593, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2594, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2595, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2596, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2597, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2598, + "fields": { + "parent": "deepm_boreass-breath", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2599, + "fields": { + "parent": "deepm_bottled-arcana", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2601, + "fields": { + "parent": "deepm_bottled-arcana", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2602, + "fields": { + "parent": "deepm_bottled-arcana", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2603, + "fields": { + "parent": "deepm_bottled-arcana", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2604, + "fields": { + "parent": "deepm_bottled-arcana", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2605, + "fields": { + "parent": "deepm_bottomless-stomach", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2606, + "fields": { + "parent": "deepm_breathtaking-wind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2607, + "fields": { + "parent": "deepm_breeze-compass", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2608, + "fields": { + "parent": "deepm_brimstone-infusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2609, + "fields": { + "parent": "deepm_brittling", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2610, + "fields": { + "parent": "deepm_broken-charge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2612, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2613, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2614, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2615, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2616, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2617, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2618, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2619, + "fields": { + "parent": "deepm_broken-charge", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2620, + "fields": { + "parent": "deepm_by-the-light-of-the-moon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2621, + "fields": { + "parent": "deepm_by-the-light-of-the-watchful-moon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2622, + "fields": { + "parent": "deepm_call-shadow-mastiff", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2623, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2625, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2626, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2627, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2628, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2629, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2630, + "fields": { + "parent": "deepm_calm-of-the-storm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2631, + "fields": { + "parent": "deepm_candles-insight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2632, + "fields": { + "parent": "deepm_carmello-voltas-irksome-preserves", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2633, + "fields": { + "parent": "deepm_catapult", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2635, + "fields": { + "parent": "deepm_catapult", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2636, + "fields": { + "parent": "deepm_catapult", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2637, + "fields": { + "parent": "deepm_catapult", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2638, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2640, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2641, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2642, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2643, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2644, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2645, + "fields": { + "parent": "deepm_catch-the-breath", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2646, + "fields": { + "parent": "deepm_caustic-blood", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2648, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2649, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2650, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2651, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2652, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2653, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2654, + "fields": { + "parent": "deepm_caustic-blood", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2655, + "fields": { + "parent": "deepm_caustic-torrent", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2656, + "fields": { + "parent": "deepm_caustic-touch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2657, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_1", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2658, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_2", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2659, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_3", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2660, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_4", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2661, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2662, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2663, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2664, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2665, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2666, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2667, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2668, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2669, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2670, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2671, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2672, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2673, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2674, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2675, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2676, + "fields": { + "parent": "deepm_caustic-touch", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2677, + "fields": { + "parent": "deepm_celebration", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2678, + "fields": { + "parent": "deepm_celebration", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2680, + "fields": { + "parent": "deepm_celebration", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2681, + "fields": { + "parent": "deepm_celebration", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2682, + "fields": { + "parent": "deepm_chains-of-the-goddess", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2683, + "fields": { + "parent": "deepm_chains-of-torment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2685, + "fields": { + "parent": "deepm_chains-of-torment", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2686, + "fields": { + "parent": "deepm_chains-of-torment", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2687, + "fields": { + "parent": "deepm_chains-of-torment", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2688, + "fields": { + "parent": "deepm_chains-of-torment", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2689, + "fields": { + "parent": "deepm_chains-of-torment", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2690, + "fields": { + "parent": "deepm_champions-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2692, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2693, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2694, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2695, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2696, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2697, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2698, + "fields": { + "parent": "deepm_champions-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2699, + "fields": { + "parent": "deepm_chaotic-form", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2701, + "fields": { + "parent": "deepm_chaotic-form", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "20 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2702, + "fields": { + "parent": "deepm_chaotic-form", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2703, + "fields": { + "parent": "deepm_chaotic-form", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "40 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2704, + "fields": { + "parent": "deepm_chaotic-form", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "50 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2705, + "fields": { + "parent": "deepm_chaotic-form", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "60 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2706, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2708, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2709, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2710, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2711, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2712, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2713, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2714, + "fields": { + "parent": "deepm_chaotic-vitality", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2715, + "fields": { + "parent": "deepm_chaotic-world", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2716, + "fields": { + "parent": "deepm_chilling-words", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2717, + "fields": { + "parent": "deepm_chronal-lance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2719, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2720, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2721, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2722, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2723, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2724, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2725, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2726, + "fields": { + "parent": "deepm_chronal-lance", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 11, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2727, + "fields": { + "parent": "deepm_circle-of-wind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2728, + "fields": { + "parent": "deepm_clash-of-glaciers", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2730, + "fields": { + "parent": "deepm_clash-of-glaciers", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2731, + "fields": { + "parent": "deepm_clash-of-glaciers", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2732, + "fields": { + "parent": "deepm_clash-of-glaciers", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2733, + "fields": { + "parent": "deepm_clash-of-glaciers", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2734, + "fields": { + "parent": "deepm_claws-of-darkness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2735, + "fields": { + "parent": "deepm_claws-of-the-earth-dragon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2737, + "fields": { + "parent": "deepm_claws-of-the-earth-dragon", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": "70 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2738, + "fields": { + "parent": "deepm_claws-of-the-earth-dragon", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": "80 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2739, + "fields": { + "parent": "deepm_claws-of-the-earth-dragon", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": "90 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2740, + "fields": { + "parent": "deepm_claws-of-the-earth-dragon", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": "100 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2741, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2742, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2744, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2745, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2746, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2747, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2748, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2749, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2750, + "fields": { + "parent": "deepm_clearing-the-field", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2751, + "fields": { + "parent": "deepm_cloak-of-shadow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2752, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2753, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2754, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2755, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2756, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2757, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2758, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2759, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2760, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2761, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2762, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2763, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2764, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2765, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2766, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2767, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2768, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2769, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2770, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2771, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2772, + "fields": { + "parent": "deepm_clockwork-bolt", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2773, + "fields": { + "parent": "deepm_closing-in", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2775, + "fields": { + "parent": "deepm_closing-in", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2776, + "fields": { + "parent": "deepm_closing-in", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2777, + "fields": { + "parent": "deepm_closing-in", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2778, + "fields": { + "parent": "deepm_closing-in", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2779, + "fields": { + "parent": "deepm_closing-in", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2780, + "fields": { + "parent": "deepm_closing-in", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2781, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2783, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2784, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2785, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2786, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2787, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2788, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2789, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2790, + "fields": { + "parent": "deepm_cobra-fangs", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2791, + "fields": { + "parent": "deepm_compelled-movement", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2793, + "fields": { + "parent": "deepm_compelled-movement", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2794, + "fields": { + "parent": "deepm_compelled-movement", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2795, + "fields": { + "parent": "deepm_compelled-movement", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2796, + "fields": { + "parent": "deepm_compelled-movement", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2797, + "fields": { + "parent": "deepm_compelled-movement", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2798, + "fields": { + "parent": "deepm_compelled-movement", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2799, + "fields": { + "parent": "deepm_compelling-fate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2801, + "fields": { + "parent": "deepm_compelling-fate", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2802, + "fields": { + "parent": "deepm_compelling-fate", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2803, + "fields": { + "parent": "deepm_compelling-fate", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2804, + "fields": { + "parent": "deepm_compelling-fate", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2805, + "fields": { + "parent": "deepm_compelling-fate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2806, + "fields": { + "parent": "deepm_compelling-fate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2807, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2809, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2810, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2811, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2812, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2813, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2814, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2815, + "fields": { + "parent": "deepm_comprehend-wild-shape", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2816, + "fields": { + "parent": "deepm_confound-senses", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2817, + "fields": { + "parent": "deepm_conjure-fey-hound", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2819, + "fields": { + "parent": "deepm_conjure-fey-hound", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2820, + "fields": { + "parent": "deepm_conjure-fey-hound", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2821, + "fields": { + "parent": "deepm_conjure-fey-hound", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2822, + "fields": { + "parent": "deepm_conjure-fey-hound", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2823, + "fields": { + "parent": "deepm_conjure-forest-defender", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2825, + "fields": { + "parent": "deepm_conjure-forest-defender", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2826, + "fields": { + "parent": "deepm_conjure-forest-defender", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2827, + "fields": { + "parent": "deepm_conjure-forest-defender", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2828, + "fields": { + "parent": "deepm_conjure-greater-spectral-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2830, + "fields": { + "parent": "deepm_conjure-greater-spectral-dead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2831, + "fields": { + "parent": "deepm_conjure-greater-spectral-dead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2832, + "fields": { + "parent": "deepm_conjure-minor-voidborn", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2834, + "fields": { + "parent": "deepm_conjure-minor-voidborn", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2835, + "fields": { + "parent": "deepm_conjure-minor-voidborn", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2836, + "fields": { + "parent": "deepm_conjure-minor-voidborn", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2837, + "fields": { + "parent": "deepm_conjure-minor-voidborn", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2838, + "fields": { + "parent": "deepm_conjure-scarab-swarm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2839, + "fields": { + "parent": "deepm_conjure-shadow-titan", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2840, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2842, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2843, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2844, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2845, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2846, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2847, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2848, + "fields": { + "parent": "deepm_conjure-spectral-dead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2849, + "fields": { + "parent": "deepm_conjure-undead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2851, + "fields": { + "parent": "deepm_conjure-undead", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2852, + "fields": { + "parent": "deepm_conjure-undead", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2853, + "fields": { + "parent": "deepm_conjure-undead", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2854, + "fields": { + "parent": "deepm_conjure-undead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2855, + "fields": { + "parent": "deepm_conjure-undead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2856, + "fields": { + "parent": "deepm_conjure-undead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2857, + "fields": { + "parent": "deepm_conjure-voidborn", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2859, + "fields": { + "parent": "deepm_conjure-voidborn", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2860, + "fields": { + "parent": "deepm_conjure-voidborn", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2861, + "fields": { + "parent": "deepm_consult-the-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2863, + "fields": { + "parent": "deepm_consult-the-storm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2864, + "fields": { + "parent": "deepm_consult-the-storm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2865, + "fields": { + "parent": "deepm_consult-the-storm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2866, + "fields": { + "parent": "deepm_consult-the-storm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2867, + "fields": { + "parent": "deepm_consult-the-storm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2868, + "fields": { + "parent": "deepm_converse-with-dragon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2869, + "fields": { + "parent": "deepm_costly-victory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2870, + "fields": { + "parent": "deepm_create-ring-servant", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2871, + "fields": { + "parent": "deepm_create-thunderstaff", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2872, + "fields": { + "parent": "deepm_creeping-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2874, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2875, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2876, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2877, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2878, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2879, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2880, + "fields": { + "parent": "deepm_creeping-ice", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2881, + "fields": { + "parent": "deepm_crushing-curse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2882, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2883, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2884, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2885, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2886, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_5", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2887, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_6", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2888, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_7", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2889, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_8", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2890, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_9", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2891, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_10", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2892, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_11", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2893, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_12", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2894, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_13", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2895, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_14", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2896, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_15", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2897, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_16", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2898, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_17", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2899, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_18", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2900, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_19", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2901, + "fields": { + "parent": "deepm_crushing-curse", + "type": "player_level_20", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2902, + "fields": { + "parent": "deepm_crushing-trample", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2903, + "fields": { + "parent": "deepm_cure-beast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2905, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2906, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2907, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2908, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2909, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2910, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2911, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2912, + "fields": { + "parent": "deepm_cure-beast", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2913, + "fields": { + "parent": "deepm_curse-of-boreas", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2914, + "fields": { + "parent": "deepm_curse-of-dust", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2915, + "fields": { + "parent": "deepm_curse-of-incompetence", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2916, + "fields": { + "parent": "deepm_curse-of-the-grave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2917, + "fields": { + "parent": "deepm_curse-of-yig", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2918, + "fields": { + "parent": "deepm_curse-of-yig", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2919, + "fields": { + "parent": "deepm_curse-ring", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2920, + "fields": { + "parent": "deepm_cursed-gift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2922, + "fields": { + "parent": "deepm_cursed-gift", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2923, + "fields": { + "parent": "deepm_cursed-gift", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "3 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2924, + "fields": { + "parent": "deepm_cursed-gift", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "4 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2925, + "fields": { + "parent": "deepm_cursed-gift", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "5 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2926, + "fields": { + "parent": "deepm_cursed-gift", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "6 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2927, + "fields": { + "parent": "deepm_cynophobia", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2929, + "fields": { + "parent": "deepm_cynophobia", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2930, + "fields": { + "parent": "deepm_cynophobia", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2931, + "fields": { + "parent": "deepm_cynophobia", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2932, + "fields": { + "parent": "deepm_cynophobia", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 month", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2933, + "fields": { + "parent": "deepm_cynophobia", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 month", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2934, + "fields": { + "parent": "deepm_cynophobia", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2935, + "fields": { + "parent": "deepm_daggerhawk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2936, + "fields": { + "parent": "deepm_dark-dementing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2937, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2939, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2940, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2941, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2942, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2943, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2944, + "fields": { + "parent": "deepm_dark-heraldry", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2945, + "fields": { + "parent": "deepm_dark-maw", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2946, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_1", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2947, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_2", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2948, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_3", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2949, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_4", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2950, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2951, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2952, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2953, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2954, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2955, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2956, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2957, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2958, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2959, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2960, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2961, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2962, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2963, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2964, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2965, + "fields": { + "parent": "deepm_dark-maw", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2966, + "fields": { + "parent": "deepm_dark-path", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2967, + "fields": { + "parent": "deepm_darkbolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2969, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2970, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2971, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2972, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2973, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2974, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2975, + "fields": { + "parent": "deepm_darkbolt", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2976, + "fields": { + "parent": "deepm_dead-walking", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2978, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2979, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2980, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2981, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2982, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2983, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2984, + "fields": { + "parent": "deepm_dead-walking", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2985, + "fields": { + "parent": "deepm_deadly-sting", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2986, + "fields": { + "parent": "deepm_death-gods-touch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2988, + "fields": { + "parent": "deepm_death-gods-touch", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2989, + "fields": { + "parent": "deepm_death-gods-touch", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2990, + "fields": { + "parent": "deepm_decay", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2991, + "fields": { + "parent": "deepm_decay", + "type": "player_level_1", + "damage_roll": "1d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2992, + "fields": { + "parent": "deepm_decay", + "type": "player_level_2", + "damage_roll": "1d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2993, + "fields": { + "parent": "deepm_decay", + "type": "player_level_3", + "damage_roll": "1d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2994, + "fields": { + "parent": "deepm_decay", + "type": "player_level_4", + "damage_roll": "1d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2995, + "fields": { + "parent": "deepm_decay", + "type": "player_level_5", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2996, + "fields": { + "parent": "deepm_decay", + "type": "player_level_6", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2997, + "fields": { + "parent": "deepm_decay", + "type": "player_level_7", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2998, + "fields": { + "parent": "deepm_decay", + "type": "player_level_8", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 2999, + "fields": { + "parent": "deepm_decay", + "type": "player_level_9", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3000, + "fields": { + "parent": "deepm_decay", + "type": "player_level_10", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3001, + "fields": { + "parent": "deepm_decay", + "type": "player_level_11", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3002, + "fields": { + "parent": "deepm_decay", + "type": "player_level_12", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3003, + "fields": { + "parent": "deepm_decay", + "type": "player_level_13", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3004, + "fields": { + "parent": "deepm_decay", + "type": "player_level_14", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3005, + "fields": { + "parent": "deepm_decay", + "type": "player_level_15", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3006, + "fields": { + "parent": "deepm_decay", + "type": "player_level_16", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3007, + "fields": { + "parent": "deepm_decay", + "type": "player_level_17", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3008, + "fields": { + "parent": "deepm_decay", + "type": "player_level_18", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3009, + "fields": { + "parent": "deepm_decay", + "type": "player_level_19", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3010, + "fields": { + "parent": "deepm_decay", + "type": "player_level_20", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3011, + "fields": { + "parent": "deepm_decelerate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3013, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3014, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3015, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3016, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3017, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3018, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3019, + "fields": { + "parent": "deepm_decelerate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3020, + "fields": { + "parent": "deepm_deep-breath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3022, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3023, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3024, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3025, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "10 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3026, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "12 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3027, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "14 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3028, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "16 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3029, + "fields": { + "parent": "deepm_deep-breath", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "18 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3030, + "fields": { + "parent": "deepm_defile-healing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3032, + "fields": { + "parent": "deepm_defile-healing", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3033, + "fields": { + "parent": "deepm_defile-healing", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3034, + "fields": { + "parent": "deepm_delay-potion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3035, + "fields": { + "parent": "deepm_delayed-healing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3037, + "fields": { + "parent": "deepm_delayed-healing", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3038, + "fields": { + "parent": "deepm_delayed-healing", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3039, + "fields": { + "parent": "deepm_delayed-healing", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3040, + "fields": { + "parent": "deepm_delayed-healing", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3041, + "fields": { + "parent": "deepm_delayed-healing", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3042, + "fields": { + "parent": "deepm_delayed-healing", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3043, + "fields": { + "parent": "deepm_demon-within", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3044, + "fields": { + "parent": "deepm_desiccating-breath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3045, + "fields": { + "parent": "deepm_desolation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3046, + "fields": { + "parent": "deepm_desolation", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3047, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3049, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3050, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3051, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3052, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3053, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3054, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3055, + "fields": { + "parent": "deepm_destructive-resonance", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3056, + "fields": { + "parent": "deepm_detect-dragons", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3057, + "fields": { + "parent": "deepm_devas-wings", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3059, + "fields": { + "parent": "deepm_devas-wings", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3060, + "fields": { + "parent": "deepm_devas-wings", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3061, + "fields": { + "parent": "deepm_devas-wings", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3062, + "fields": { + "parent": "deepm_devas-wings", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3063, + "fields": { + "parent": "deepm_devas-wings", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3064, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3066, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3067, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3068, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3069, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3070, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3071, + "fields": { + "parent": "deepm_dimensional-shove", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3072, + "fields": { + "parent": "deepm_disquieting-gaze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3073, + "fields": { + "parent": "deepm_disruptive-aura", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3075, + "fields": { + "parent": "deepm_disruptive-aura", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3076, + "fields": { + "parent": "deepm_distracting-divination", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3077, + "fields": { + "parent": "deepm_distraction-cascade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3078, + "fields": { + "parent": "deepm_doom-of-blue-crystal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3079, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3081, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3082, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3083, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3084, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3085, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3086, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3087, + "fields": { + "parent": "deepm_doom-of-consuming-fire", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3088, + "fields": { + "parent": "deepm_doom-of-dancing-blades", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3089, + "fields": { + "parent": "deepm_doom-of-disenchantment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3090, + "fields": { + "parent": "deepm_doom-of-serpent-coils", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3091, + "fields": { + "parent": "deepm_doom-of-the-cracked-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3092, + "fields": { + "parent": "deepm_doom-of-the-earthen-maw", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3093, + "fields": { + "parent": "deepm_doom-of-the-slippery-rogue", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3094, + "fields": { + "parent": "deepm_douse-light", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3095, + "fields": { + "parent": "deepm_draconic-smite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3097, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3098, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3099, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3100, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3101, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3102, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3103, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3104, + "fields": { + "parent": "deepm_draconic-smite", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3105, + "fields": { + "parent": "deepm_dragon-breath", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3107, + "fields": { + "parent": "deepm_dragon-breath", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3108, + "fields": { + "parent": "deepm_dragon-breath", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3109, + "fields": { + "parent": "deepm_dragon-breath", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3110, + "fields": { + "parent": "deepm_dragon-breath", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3111, + "fields": { + "parent": "deepm_dragon-roar", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3112, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_1", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3113, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_2", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3114, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_3", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3115, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_4", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3116, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_5", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3117, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_6", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3118, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_7", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3119, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_8", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3120, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_9", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3121, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_10", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3122, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_11", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3123, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_12", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3124, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_13", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3125, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_14", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3126, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_15", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3127, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_16", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3128, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_17", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3129, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_18", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3130, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_19", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3131, + "fields": { + "parent": "deepm_dragon-roar", + "type": "player_level_20", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3132, + "fields": { + "parent": "deepm_drown", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3134, + "fields": { + "parent": "deepm_drown", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3135, + "fields": { + "parent": "deepm_drown", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3136, + "fields": { + "parent": "deepm_drown", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3137, + "fields": { + "parent": "deepm_drown", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3138, + "fields": { + "parent": "deepm_drown", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3139, + "fields": { + "parent": "deepm_drown", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3140, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3142, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3143, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3144, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3145, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3146, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3147, + "fields": { + "parent": "deepm_dryads-kiss", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3148, + "fields": { + "parent": "deepm_earthskimmer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3149, + "fields": { + "parent": "deepm_earworm-melody", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3151, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3152, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3153, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3154, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3155, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3156, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3157, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3158, + "fields": { + "parent": "deepm_earworm-melody", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3159, + "fields": { + "parent": "deepm_echoes-of-steel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3160, + "fields": { + "parent": "deepm_ectoplasm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3162, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3163, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3164, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3165, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3166, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3167, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3168, + "fields": { + "parent": "deepm_ectoplasm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3169, + "fields": { + "parent": "deepm_eidetic-memory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3170, + "fields": { + "parent": "deepm_eidetic-memory", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3171, + "fields": { + "parent": "deepm_eldritch-communion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3172, + "fields": { + "parent": "deepm_eldritch-communion", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3173, + "fields": { + "parent": "deepm_elemental-horns", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3175, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3176, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3177, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3178, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3179, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3180, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3181, + "fields": { + "parent": "deepm_elemental-horns", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3182, + "fields": { + "parent": "deepm_elemental-twist", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3183, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3184, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3186, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3187, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3188, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3189, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3190, + "fields": { + "parent": "deepm_emanation-of-yoth", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3191, + "fields": { + "parent": "deepm_enchant-ring", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3192, + "fields": { + "parent": "deepm_encroaching-shadows", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3193, + "fields": { + "parent": "deepm_encroaching-shadows", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3195, + "fields": { + "parent": "deepm_encroaching-shadows", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3196, + "fields": { + "parent": "deepm_encroaching-shadows", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "36 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3197, + "fields": { + "parent": "deepm_encroaching-shadows", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3198, + "fields": { + "parent": "deepm_encrypt-decrypt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3199, + "fields": { + "parent": "deepm_endow-attribute", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3201, + "fields": { + "parent": "deepm_endow-attribute", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3202, + "fields": { + "parent": "deepm_endow-attribute", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3203, + "fields": { + "parent": "deepm_endow-attribute", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3204, + "fields": { + "parent": "deepm_endow-attribute", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3205, + "fields": { + "parent": "deepm_endow-attribute", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3206, + "fields": { + "parent": "deepm_energy-absorption", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3207, + "fields": { + "parent": "deepm_energy-foreknowledge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3209, + "fields": { + "parent": "deepm_energy-foreknowledge", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3210, + "fields": { + "parent": "deepm_energy-foreknowledge", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3211, + "fields": { + "parent": "deepm_energy-foreknowledge", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3212, + "fields": { + "parent": "deepm_energy-foreknowledge", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3213, + "fields": { + "parent": "deepm_energy-foreknowledge", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3214, + "fields": { + "parent": "deepm_enhance-greed", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3216, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "11 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3217, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "12 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3218, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "13 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3219, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "14 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3220, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "15 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3221, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "16 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3222, + "fields": { + "parent": "deepm_enhance-greed", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "17 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3223, + "fields": { + "parent": "deepm_entomb", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3224, + "fields": { + "parent": "deepm_entropic-damage-field", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3225, + "fields": { + "parent": "deepm_essence-instability", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3227, + "fields": { + "parent": "deepm_essence-instability", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3228, + "fields": { + "parent": "deepm_essence-instability", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3229, + "fields": { + "parent": "deepm_essence-instability", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3230, + "fields": { + "parent": "deepm_essence-instability", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3231, + "fields": { + "parent": "deepm_evercold", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3232, + "fields": { + "parent": "deepm_exsanguinate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3234, + "fields": { + "parent": "deepm_exsanguinate", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3235, + "fields": { + "parent": "deepm_exsanguinate", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3236, + "fields": { + "parent": "deepm_exsanguinate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3237, + "fields": { + "parent": "deepm_exsanguinate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3238, + "fields": { + "parent": "deepm_exsanguinating-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3239, + "fields": { + "parent": "deepm_extract-knowledge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3240, + "fields": { + "parent": "deepm_extract-knowledge", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3241, + "fields": { + "parent": "deepm_fault-line", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3242, + "fields": { + "parent": "deepm_feather-field", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3244, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": "2 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3245, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3246, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "4 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3247, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3248, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3249, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "7 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3250, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3251, + "fields": { + "parent": "deepm_feather-field", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "9 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3252, + "fields": { + "parent": "deepm_feather-travel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3254, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3255, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3256, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3257, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3258, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3259, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3260, + "fields": { + "parent": "deepm_feather-travel", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3261, + "fields": { + "parent": "deepm_fey-crown", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3263, + "fields": { + "parent": "deepm_fey-crown", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3264, + "fields": { + "parent": "deepm_fey-crown", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3265, + "fields": { + "parent": "deepm_fey-crown", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3266, + "fields": { + "parent": "deepm_fey-crown", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3267, + "fields": { + "parent": "deepm_find-kin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3268, + "fields": { + "parent": "deepm_find-kin", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3269, + "fields": { + "parent": "deepm_fire-darts", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3271, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3272, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3273, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3274, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3275, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3276, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3277, + "fields": { + "parent": "deepm_fire-darts", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3278, + "fields": { + "parent": "deepm_fire-under-the-tongue", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3279, + "fields": { + "parent": "deepm_firewalk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3281, + "fields": { + "parent": "deepm_firewalk", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3282, + "fields": { + "parent": "deepm_firewalk", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3283, + "fields": { + "parent": "deepm_firewalk", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3284, + "fields": { + "parent": "deepm_fist-of-iron", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3285, + "fields": { + "parent": "deepm_flame-wave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3287, + "fields": { + "parent": "deepm_flame-wave", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3288, + "fields": { + "parent": "deepm_flame-wave", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3289, + "fields": { + "parent": "deepm_flame-wave", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3290, + "fields": { + "parent": "deepm_flame-wave", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3291, + "fields": { + "parent": "deepm_flame-wave", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3292, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3294, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3295, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3296, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3297, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3298, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3299, + "fields": { + "parent": "deepm_flesh-to-paper", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3300, + "fields": { + "parent": "deepm_flickering-fate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3301, + "fields": { + "parent": "deepm_fluctuating-alignment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3302, + "fields": { + "parent": "deepm_flurry", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3303, + "fields": { + "parent": "deepm_forest-native", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3304, + "fields": { + "parent": "deepm_forest-sanctuary", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3305, + "fields": { + "parent": "deepm_foretell-distraction", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3306, + "fields": { + "parent": "deepm_form-of-the-gods", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3307, + "fields": { + "parent": "deepm_freeze-blood", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3308, + "fields": { + "parent": "deepm_freeze-potion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3310, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3311, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "35 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3312, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "40 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3313, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "45 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3314, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "50 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3315, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "55 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3316, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "60 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3317, + "fields": { + "parent": "deepm_freeze-potion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "65 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3318, + "fields": { + "parent": "deepm_freezing-fog", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3320, + "fields": { + "parent": "deepm_freezing-fog", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3321, + "fields": { + "parent": "deepm_freezing-fog", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3322, + "fields": { + "parent": "deepm_freezing-fog", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3323, + "fields": { + "parent": "deepm_freezing-fog", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3324, + "fields": { + "parent": "deepm_freezing-fog", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3325, + "fields": { + "parent": "deepm_freezing-fog", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3326, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3328, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3329, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3330, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3331, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3332, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3333, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3334, + "fields": { + "parent": "deepm_frenzied-bolt", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3335, + "fields": { + "parent": "deepm_frostbite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3337, + "fields": { + "parent": "deepm_frostbite", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3338, + "fields": { + "parent": "deepm_frostbite", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3339, + "fields": { + "parent": "deepm_frostbite", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3340, + "fields": { + "parent": "deepm_frostbite", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3341, + "fields": { + "parent": "deepm_frostbitten-fingers", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3342, + "fields": { + "parent": "deepm_frozen-razors", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3344, + "fields": { + "parent": "deepm_frozen-razors", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3345, + "fields": { + "parent": "deepm_frozen-razors", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3346, + "fields": { + "parent": "deepm_frozen-razors", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3347, + "fields": { + "parent": "deepm_frozen-razors", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3348, + "fields": { + "parent": "deepm_frozen-razors", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3349, + "fields": { + "parent": "deepm_frozen-razors", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3350, + "fields": { + "parent": "deepm_furious-hooves", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3351, + "fields": { + "parent": "deepm_fusillade-of-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3353, + "fields": { + "parent": "deepm_fusillade-of-ice", + "type": "slot_level_5", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3354, + "fields": { + "parent": "deepm_fusillade-of-ice", + "type": "slot_level_6", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3355, + "fields": { + "parent": "deepm_fusillade-of-ice", + "type": "slot_level_7", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3356, + "fields": { + "parent": "deepm_fusillade-of-ice", + "type": "slot_level_8", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3357, + "fields": { + "parent": "deepm_fusillade-of-ice", + "type": "slot_level_9", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3358, + "fields": { + "parent": "deepm_gear-barrage", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3359, + "fields": { + "parent": "deepm_ghoul-kings-cloak", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3361, + "fields": { + "parent": "deepm_ghoul-kings-cloak", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3362, + "fields": { + "parent": "deepm_gird-the-spirit", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3363, + "fields": { + "parent": "deepm_glacial-cascade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3364, + "fields": { + "parent": "deepm_glacial-fog", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3366, + "fields": { + "parent": "deepm_glacial-fog", + "type": "slot_level_8", + "damage_roll": "13d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3367, + "fields": { + "parent": "deepm_glacial-fog", + "type": "slot_level_9", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3368, + "fields": { + "parent": "deepm_gliding-step", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3370, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": "20 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3371, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3372, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "40 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3373, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "50 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3374, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "60 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3375, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "70 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3376, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "80 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3377, + "fields": { + "parent": "deepm_gliding-step", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "90 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3378, + "fields": { + "parent": "deepm_glimpse-of-the-void", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3379, + "fields": { + "parent": "deepm_gloomwrought-barrier", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3380, + "fields": { + "parent": "deepm_gluey-globule", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3381, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3383, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3384, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3385, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3386, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3387, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3388, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3389, + "fields": { + "parent": "deepm_glyph-of-shifting", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3390, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3392, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": "2 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3393, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": "3 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3394, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": "4 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3395, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": "5 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3396, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": "6 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3397, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": "7 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3398, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": "8 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3399, + "fields": { + "parent": "deepm_goats-hoof-charm", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": "9 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3400, + "fields": { + "parent": "deepm_going-in-circles", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3401, + "fields": { + "parent": "deepm_gordolays-pleasant-aroma", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3402, + "fields": { + "parent": "deepm_grasp-of-the-tupilak", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3403, + "fields": { + "parent": "deepm_greater-maze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3404, + "fields": { + "parent": "deepm_greater-seal-of-sanctuary", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3405, + "fields": { + "parent": "deepm_greater-seal-of-sanctuary", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3406, + "fields": { + "parent": "deepm_green-decay", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3407, + "fields": { + "parent": "deepm_green-decay", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3408, + "fields": { + "parent": "deepm_grudge-match", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3410, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "2 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3411, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3412, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "4 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3413, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3414, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3415, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "7 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3416, + "fields": { + "parent": "deepm_grudge-match", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3417, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3418, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3420, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3421, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3422, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3423, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3424, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3425, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3426, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3427, + "fields": { + "parent": "deepm_guest-of-honor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3428, + "fields": { + "parent": "deepm_guiding-star", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3429, + "fields": { + "parent": "deepm_guiding-star", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3430, + "fields": { + "parent": "deepm_hamstring", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3431, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_1", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3432, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_2", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3433, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_3", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3434, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_4", + "damage_roll": "1d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3435, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_5", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3436, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_6", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3437, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_7", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3438, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_8", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3439, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_9", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3440, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_10", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3441, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_11", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3442, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_12", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3443, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_13", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3444, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_14", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3445, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_15", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3446, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_16", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3447, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_17", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3448, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_18", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3449, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_19", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3450, + "fields": { + "parent": "deepm_hamstring", + "type": "player_level_20", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3451, + "fields": { + "parent": "deepm_hard-heart", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3453, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3454, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3455, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3456, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3457, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3458, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3459, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3460, + "fields": { + "parent": "deepm_hard-heart", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3461, + "fields": { + "parent": "deepm_harry", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3463, + "fields": { + "parent": "deepm_harry", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3464, + "fields": { + "parent": "deepm_harry", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3465, + "fields": { + "parent": "deepm_harry", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3466, + "fields": { + "parent": "deepm_harry", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3467, + "fields": { + "parent": "deepm_harry", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3468, + "fields": { + "parent": "deepm_harrying-hounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3470, + "fields": { + "parent": "deepm_harrying-hounds", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "12 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3471, + "fields": { + "parent": "deepm_harrying-hounds", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "16 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3472, + "fields": { + "parent": "deepm_harrying-hounds", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "20 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3473, + "fields": { + "parent": "deepm_harrying-hounds", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3474, + "fields": { + "parent": "deepm_harsh-light-of-summers-glare", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3475, + "fields": { + "parent": "deepm_heart-seeking-arrow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3477, + "fields": { + "parent": "deepm_heart-seeking-arrow", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3478, + "fields": { + "parent": "deepm_heart-seeking-arrow", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3479, + "fields": { + "parent": "deepm_heart-seeking-arrow", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3480, + "fields": { + "parent": "deepm_heart-seeking-arrow", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3481, + "fields": { + "parent": "deepm_heart-seeking-arrow", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3482, + "fields": { + "parent": "deepm_heart-to-heart", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3483, + "fields": { + "parent": "deepm_heartache", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3485, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3486, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3487, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3488, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3489, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3490, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3491, + "fields": { + "parent": "deepm_heartache", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3492, + "fields": { + "parent": "deepm_heartstop", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3493, + "fields": { + "parent": "deepm_heartstrike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3494, + "fields": { + "parent": "deepm_heavenly-crown", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3495, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3497, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3498, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3499, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3500, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3501, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3502, + "fields": { + "parent": "deepm_hedrens-birds-of-clay", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3503, + "fields": { + "parent": "deepm_hematomancy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3504, + "fields": { + "parent": "deepm_heros-steel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3505, + "fields": { + "parent": "deepm_hide-in-ones-shadow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3506, + "fields": { + "parent": "deepm_hoarfrost", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3507, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3508, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3509, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3510, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3511, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_5", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3512, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_6", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3513, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_7", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3514, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_8", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3515, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_9", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3516, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_10", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3517, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_11", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3518, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_12", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3519, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_13", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3520, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_14", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3521, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_15", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3522, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_16", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3523, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_17", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3524, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_18", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3525, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_19", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3526, + "fields": { + "parent": "deepm_hoarfrost", + "type": "player_level_20", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3527, + "fields": { + "parent": "deepm_hobble", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3528, + "fields": { + "parent": "deepm_hobble-mount", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3530, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_2", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3531, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_3", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3532, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_4", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3533, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_5", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3534, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_6", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3535, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_7", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3536, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_8", + "damage_roll": "16d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3537, + "fields": { + "parent": "deepm_hobble-mount", + "type": "slot_level_9", + "damage_roll": "18d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3538, + "fields": { + "parent": "deepm_holy-ground", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3540, + "fields": { + "parent": "deepm_holy-ground", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3541, + "fields": { + "parent": "deepm_holy-ground", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3542, + "fields": { + "parent": "deepm_holy-ground", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3543, + "fields": { + "parent": "deepm_holy-ground", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3544, + "fields": { + "parent": "deepm_hone-blade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3545, + "fields": { + "parent": "deepm_hunger-of-leng", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3546, + "fields": { + "parent": "deepm_hunters-endurance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3547, + "fields": { + "parent": "deepm_hunting-stand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3548, + "fields": { + "parent": "deepm_ice-fortress", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3550, + "fields": { + "parent": "deepm_ice-fortress", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3551, + "fields": { + "parent": "deepm_ice-fortress", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3552, + "fields": { + "parent": "deepm_ice-fortress", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3553, + "fields": { + "parent": "deepm_ice-fortress", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3554, + "fields": { + "parent": "deepm_ice-hammer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3556, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3557, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3558, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3559, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3560, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3561, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3562, + "fields": { + "parent": "deepm_ice-hammer", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3563, + "fields": { + "parent": "deepm_ice-soldiers", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3565, + "fields": { + "parent": "deepm_ice-soldiers", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3566, + "fields": { + "parent": "deepm_ice-soldiers", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3567, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3569, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3570, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3571, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3572, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3573, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3574, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3575, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3576, + "fields": { + "parent": "deepm_icicle-daggers", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3577, + "fields": { + "parent": "deepm_icy-grasp-of-the-void", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3578, + "fields": { + "parent": "deepm_icy-manipulation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3579, + "fields": { + "parent": "deepm_ill-fated-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3580, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3582, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3583, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3584, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3585, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3586, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3587, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3588, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3589, + "fields": { + "parent": "deepm_illuminate-spoor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3590, + "fields": { + "parent": "deepm_impending-ally", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3592, + "fields": { + "parent": "deepm_impending-ally", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3593, + "fields": { + "parent": "deepm_impending-ally", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3594, + "fields": { + "parent": "deepm_impending-ally", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3595, + "fields": { + "parent": "deepm_impending-ally", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3596, + "fields": { + "parent": "deepm_impending-ally", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3597, + "fields": { + "parent": "deepm_impending-ally", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3598, + "fields": { + "parent": "deepm_innocuous-aspect", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3599, + "fields": { + "parent": "deepm_insightful-maneuver", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3600, + "fields": { + "parent": "deepm_inspiring-speech", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3601, + "fields": { + "parent": "deepm_instant-fortification", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3602, + "fields": { + "parent": "deepm_instant-fortification", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3604, + "fields": { + "parent": "deepm_instant-fortification", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3605, + "fields": { + "parent": "deepm_instant-fortification", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3606, + "fields": { + "parent": "deepm_instant-fortification", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3607, + "fields": { + "parent": "deepm_instant-fortification", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3608, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3609, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3611, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3612, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3613, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3614, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3615, + "fields": { + "parent": "deepm_instant-siege-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3616, + "fields": { + "parent": "deepm_instant-snare", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3618, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3619, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3620, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3621, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3622, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3623, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3624, + "fields": { + "parent": "deepm_instant-snare", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3625, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3627, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3628, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3629, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3630, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3631, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3632, + "fields": { + "parent": "deepm_ire-of-the-mountain", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3633, + "fields": { + "parent": "deepm_iron-hand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3634, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3636, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3637, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3638, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3639, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3640, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3641, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3642, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3643, + "fields": { + "parent": "deepm_kareefs-entreaty", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3644, + "fields": { + "parent": "deepm_keening-wail", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3646, + "fields": { + "parent": "deepm_keening-wail", + "type": "slot_level_5", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3647, + "fields": { + "parent": "deepm_keening-wail", + "type": "slot_level_6", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3648, + "fields": { + "parent": "deepm_keening-wail", + "type": "slot_level_7", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3649, + "fields": { + "parent": "deepm_keening-wail", + "type": "slot_level_8", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3650, + "fields": { + "parent": "deepm_keening-wail", + "type": "slot_level_9", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3651, + "fields": { + "parent": "deepm_killing-fields", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3652, + "fields": { + "parent": "deepm_kiss-of-the-succubus", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3654, + "fields": { + "parent": "deepm_kiss-of-the-succubus", + "type": "slot_level_6", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3655, + "fields": { + "parent": "deepm_kiss-of-the-succubus", + "type": "slot_level_7", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3656, + "fields": { + "parent": "deepm_kiss-of-the-succubus", + "type": "slot_level_8", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3657, + "fields": { + "parent": "deepm_kiss-of-the-succubus", + "type": "slot_level_9", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3658, + "fields": { + "parent": "deepm_kobolds-fury", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3659, + "fields": { + "parent": "deepm_labyrinth-mastery", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3660, + "fields": { + "parent": "deepm_labyrinthine-howl", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3662, + "fields": { + "parent": "deepm_labyrinthine-howl", + "type": "slot_level_6", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3663, + "fields": { + "parent": "deepm_labyrinthine-howl", + "type": "slot_level_7", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3664, + "fields": { + "parent": "deepm_labyrinthine-howl", + "type": "slot_level_8", + "damage_roll": "13d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3665, + "fields": { + "parent": "deepm_labyrinthine-howl", + "type": "slot_level_9", + "damage_roll": "15d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3666, + "fields": { + "parent": "deepm_lacerate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3668, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_3", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3669, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_4", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3670, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_5", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3671, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_6", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3672, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_7", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3673, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_8", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3674, + "fields": { + "parent": "deepm_lacerate", + "type": "slot_level_9", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3675, + "fields": { + "parent": "deepm_lair-sense", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3676, + "fields": { + "parent": "deepm_lair-sense", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3678, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "36 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3679, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3680, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "60 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3681, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3682, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "84 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3683, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "96 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3684, + "fields": { + "parent": "deepm_lair-sense", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "108 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3685, + "fields": { + "parent": "deepm_last-rays-of-the-dying-sun", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3687, + "fields": { + "parent": "deepm_last-rays-of-the-dying-sun", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3688, + "fields": { + "parent": "deepm_last-rays-of-the-dying-sun", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3689, + "fields": { + "parent": "deepm_lava-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3690, + "fields": { + "parent": "deepm_lay-to-rest", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3691, + "fields": { + "parent": "deepm_legend-killer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3692, + "fields": { + "parent": "deepm_legion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3693, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3695, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3696, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3697, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3698, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3699, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3700, + "fields": { + "parent": "deepm_legion-of-rabid-squirrels", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3701, + "fields": { + "parent": "deepm_lesser-maze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3702, + "fields": { + "parent": "deepm_life-drain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3704, + "fields": { + "parent": "deepm_life-drain", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3705, + "fields": { + "parent": "deepm_life-drain", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3706, + "fields": { + "parent": "deepm_life-drain", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3707, + "fields": { + "parent": "deepm_life-from-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3709, + "fields": { + "parent": "deepm_life-from-death", + "type": "slot_level_4", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3710, + "fields": { + "parent": "deepm_life-from-death", + "type": "slot_level_5", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3711, + "fields": { + "parent": "deepm_life-from-death", + "type": "slot_level_6", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3712, + "fields": { + "parent": "deepm_life-from-death", + "type": "slot_level_7", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3713, + "fields": { + "parent": "deepm_life-from-death", + "type": "slot_level_8", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3714, + "fields": { + "parent": "deepm_life-from-death", + "type": "slot_level_9", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3715, + "fields": { + "parent": "deepm_life-hack", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3716, + "fields": { + "parent": "deepm_life-sense", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3717, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3719, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3720, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3721, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3722, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3723, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3724, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3725, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3726, + "fields": { + "parent": "deepm_life-transference-arrow", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3727, + "fields": { + "parent": "deepm_litany-of-sure-hands", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3728, + "fields": { + "parent": "deepm_living-shadows", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3729, + "fields": { + "parent": "deepm_lock-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3731, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3732, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3733, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3734, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3735, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3736, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3737, + "fields": { + "parent": "deepm_lock-armor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3738, + "fields": { + "parent": "deepm_looping-trail", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3739, + "fields": { + "parent": "deepm_lovesick", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3741, + "fields": { + "parent": "deepm_lovesick", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3742, + "fields": { + "parent": "deepm_lovesick", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3743, + "fields": { + "parent": "deepm_lovesick", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3744, + "fields": { + "parent": "deepm_lovesick", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3745, + "fields": { + "parent": "deepm_lovesick", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3746, + "fields": { + "parent": "deepm_maddening-whispers", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3747, + "fields": { + "parent": "deepm_maim", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3748, + "fields": { + "parent": "deepm_malevolent-waves", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3749, + "fields": { + "parent": "deepm_mammons-due", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3750, + "fields": { + "parent": "deepm_mammons-due", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3751, + "fields": { + "parent": "deepm_mark-prey", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3753, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3754, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3755, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3756, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3757, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3758, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3759, + "fields": { + "parent": "deepm_mark-prey", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3760, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3762, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "slot_level_4", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3763, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "slot_level_5", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3764, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "slot_level_6", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3765, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "slot_level_7", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3766, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "slot_level_8", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3767, + "fields": { + "parent": "deepm_mass-hobble-mount", + "type": "slot_level_9", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3768, + "fields": { + "parent": "deepm_mass-surge-dampener", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3769, + "fields": { + "parent": "deepm_mass-surge-dampener", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3770, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3772, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3773, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3774, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3775, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3776, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3777, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3778, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3779, + "fields": { + "parent": "deepm_maw-of-needles", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3780, + "fields": { + "parent": "deepm_memento-mori", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3781, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3783, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3784, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3785, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3786, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3787, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3788, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3789, + "fields": { + "parent": "deepm_mephitic-croak", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3790, + "fields": { + "parent": "deepm_mind-exchange", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3791, + "fields": { + "parent": "deepm_mind-exchange", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3792, + "fields": { + "parent": "deepm_mire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3793, + "fields": { + "parent": "deepm_misstep", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3794, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3796, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3797, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3798, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3799, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3800, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3801, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3802, + "fields": { + "parent": "deepm_mist-of-wonders", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3803, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3805, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3806, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3807, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3808, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3809, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3810, + "fields": { + "parent": "deepm_monstrous-empathy", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3811, + "fields": { + "parent": "deepm_moon-trap", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3812, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3814, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3815, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3816, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3817, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3818, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3819, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3820, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3821, + "fields": { + "parent": "deepm_mosquito-bane", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3822, + "fields": { + "parent": "deepm_mud-pack", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3823, + "fields": { + "parent": "deepm_mud-pack", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3825, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3826, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3827, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3828, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3829, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3830, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3831, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3832, + "fields": { + "parent": "deepm_mud-pack", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 10, + "duration": "8 hours", + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3833, + "fields": { + "parent": "deepm_negative-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3834, + "fields": { + "parent": "deepm_nether-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3836, + "fields": { + "parent": "deepm_nether-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3837, + "fields": { + "parent": "deepm_nether-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3838, + "fields": { + "parent": "deepm_nether-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3839, + "fields": { + "parent": "deepm_nether-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3840, + "fields": { + "parent": "deepm_nether-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3841, + "fields": { + "parent": "deepm_night-terrors", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3842, + "fields": { + "parent": "deepm_nightfall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3843, + "fields": { + "parent": "deepm_nightfall", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3844, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3846, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3847, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3848, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3849, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3850, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3851, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3852, + "fields": { + "parent": "deepm_nip-at-the-heels", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3853, + "fields": { + "parent": "deepm_not-dead-yet", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3854, + "fields": { + "parent": "deepm_not-dead-yet", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3855, + "fields": { + "parent": "deepm_not-this-day", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3856, + "fields": { + "parent": "deepm_orb-of-light", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3858, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_3", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3859, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3860, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3861, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3862, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3863, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3864, + "fields": { + "parent": "deepm_orb-of-light", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3865, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3867, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3868, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3869, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3870, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3871, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3872, + "fields": { + "parent": "deepm_outflanking-boon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3873, + "fields": { + "parent": "deepm_paragon-of-chaos", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3874, + "fields": { + "parent": "deepm_pendulum", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3875, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3877, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3878, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3879, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3880, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3881, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3882, + "fields": { + "parent": "deepm_phantom-dragon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3883, + "fields": { + "parent": "deepm_pitfall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3884, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3886, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3887, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3888, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3889, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3890, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3891, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3892, + "fields": { + "parent": "deepm_poisoned-volley", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3893, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3895, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3896, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3897, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3898, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3899, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3900, + "fields": { + "parent": "deepm_potency-of-the-pack", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3901, + "fields": { + "parent": "deepm_power-word-kneel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3902, + "fields": { + "parent": "deepm_power-word-pain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3903, + "fields": { + "parent": "deepm_primal-infusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3904, + "fields": { + "parent": "deepm_prismatic-ray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3905, + "fields": { + "parent": "deepm_protection-from-the-void", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3906, + "fields": { + "parent": "deepm_protective-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3908, + "fields": { + "parent": "deepm_protective-ice", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3909, + "fields": { + "parent": "deepm_protective-ice", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3910, + "fields": { + "parent": "deepm_protective-ice", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3911, + "fields": { + "parent": "deepm_protective-ice", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3912, + "fields": { + "parent": "deepm_protective-ice", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3913, + "fields": { + "parent": "deepm_protective-ice", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3914, + "fields": { + "parent": "deepm_puff-of-smoke", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3915, + "fields": { + "parent": "deepm_pummelstone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3916, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_1", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3917, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_2", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3918, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_3", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3919, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_4", + "damage_roll": "1d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3920, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_5", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3921, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_6", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3922, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_7", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3923, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_8", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3924, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_9", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3925, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_10", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3926, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_11", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3927, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_12", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3928, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_13", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3929, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_14", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3930, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_15", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3931, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_16", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3932, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_17", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3933, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_18", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3934, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_19", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3935, + "fields": { + "parent": "deepm_pummelstone", + "type": "player_level_20", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3936, + "fields": { + "parent": "deepm_pyroclasm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3937, + "fields": { + "parent": "deepm_quick-time", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3939, + "fields": { + "parent": "deepm_quick-time", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3940, + "fields": { + "parent": "deepm_quick-time", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3941, + "fields": { + "parent": "deepm_quick-time", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3942, + "fields": { + "parent": "deepm_quick-time", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3943, + "fields": { + "parent": "deepm_quick-time", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3944, + "fields": { + "parent": "deepm_quicken", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3945, + "fields": { + "parent": "deepm_quicksilver-mantle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3946, + "fields": { + "parent": "deepm_quintessence", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3947, + "fields": { + "parent": "deepm_raid-the-lair", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3948, + "fields": { + "parent": "deepm_rain-of-blades", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3950, + "fields": { + "parent": "deepm_rain-of-blades", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3951, + "fields": { + "parent": "deepm_rain-of-blades", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3952, + "fields": { + "parent": "deepm_rain-of-blades", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3953, + "fields": { + "parent": "deepm_rain-of-blades", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3954, + "fields": { + "parent": "deepm_ray-of-alchemical-negation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3955, + "fields": { + "parent": "deepm_ray-of-life-suppression", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3956, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3958, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3959, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3960, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3961, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3962, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3963, + "fields": { + "parent": "deepm_reaver-spirit", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3964, + "fields": { + "parent": "deepm_reposition", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3966, + "fields": { + "parent": "deepm_reposition", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3967, + "fields": { + "parent": "deepm_reposition", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3968, + "fields": { + "parent": "deepm_reposition", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3969, + "fields": { + "parent": "deepm_reposition", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3970, + "fields": { + "parent": "deepm_reposition", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3971, + "fields": { + "parent": "deepm_reset", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3973, + "fields": { + "parent": "deepm_reset", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3974, + "fields": { + "parent": "deepm_reset", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3975, + "fields": { + "parent": "deepm_reset", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3976, + "fields": { + "parent": "deepm_reset", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3977, + "fields": { + "parent": "deepm_reset", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3978, + "fields": { + "parent": "deepm_reverberate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3980, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3981, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3982, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3983, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3984, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3985, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3986, + "fields": { + "parent": "deepm_reverberate", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3987, + "fields": { + "parent": "deepm_revive-beast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3988, + "fields": { + "parent": "deepm_right-the-stars", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3989, + "fields": { + "parent": "deepm_ring-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3991, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3992, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3993, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3994, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3995, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3996, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3997, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3998, + "fields": { + "parent": "deepm_ring-strike", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3999, + "fields": { + "parent": "deepm_ring-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4000, + "fields": { + "parent": "deepm_riptide", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4001, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4003, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_3", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4004, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4005, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4006, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4007, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4008, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4009, + "fields": { + "parent": "deepm_rolling-thunder", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4010, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4012, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4013, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4014, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4015, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4016, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4017, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4018, + "fields": { + "parent": "deepm_rotting-corpse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4019, + "fields": { + "parent": "deepm_rune-of-imprisonment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4020, + "fields": { + "parent": "deepm_salt-lash", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4021, + "fields": { + "parent": "deepm_sand-ship", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4022, + "fields": { + "parent": "deepm_sand-ship", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4023, + "fields": { + "parent": "deepm_sanguine-horror", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4024, + "fields": { + "parent": "deepm_scale-rot", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4026, + "fields": { + "parent": "deepm_scale-rot", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4027, + "fields": { + "parent": "deepm_scale-rot", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4028, + "fields": { + "parent": "deepm_scale-rot", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4029, + "fields": { + "parent": "deepm_scale-rot", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4030, + "fields": { + "parent": "deepm_scale-rot", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4031, + "fields": { + "parent": "deepm_scentless", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4032, + "fields": { + "parent": "deepm_screaming-ray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4034, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4035, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4036, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4037, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4038, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4039, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4040, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4041, + "fields": { + "parent": "deepm_screaming-ray", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4042, + "fields": { + "parent": "deepm_scribe", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4043, + "fields": { + "parent": "deepm_scry-ambush", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4044, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4046, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4047, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4048, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4049, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4050, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4051, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4052, + "fields": { + "parent": "deepm_sculpt-snow", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4053, + "fields": { + "parent": "deepm_seal-of-sanctuary", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4054, + "fields": { + "parent": "deepm_seal-of-sanctuary", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4055, + "fields": { + "parent": "deepm_searing-sun", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4056, + "fields": { + "parent": "deepm_see-beyond", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4057, + "fields": { + "parent": "deepm_seed-of-destruction", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4058, + "fields": { + "parent": "deepm_seed-of-destruction", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4059, + "fields": { + "parent": "deepm_seeping-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4060, + "fields": { + "parent": "deepm_seers-reaction", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4061, + "fields": { + "parent": "deepm_semblance-of-dread", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4062, + "fields": { + "parent": "deepm_shade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4064, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "20 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4065, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "30 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4066, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "40 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4067, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "50 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4068, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "60 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4069, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "70 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4070, + "fields": { + "parent": "deepm_shade", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "80 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4071, + "fields": { + "parent": "deepm_shadow-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4072, + "fields": { + "parent": "deepm_shadow-bite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4073, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4074, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4075, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4076, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4077, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4078, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4079, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4080, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4081, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4082, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4083, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4084, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4085, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4086, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4087, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4088, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4089, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4090, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4091, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4092, + "fields": { + "parent": "deepm_shadow-bite", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4093, + "fields": { + "parent": "deepm_shadow-blindness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4094, + "fields": { + "parent": "deepm_shadow-hands", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4096, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4097, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4098, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4099, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4100, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4101, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4102, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4103, + "fields": { + "parent": "deepm_shadow-hands", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4104, + "fields": { + "parent": "deepm_shadow-monsters", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4106, + "fields": { + "parent": "deepm_shadow-monsters", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4107, + "fields": { + "parent": "deepm_shadow-monsters", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4108, + "fields": { + "parent": "deepm_shadow-monsters", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4109, + "fields": { + "parent": "deepm_shadow-monsters", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4110, + "fields": { + "parent": "deepm_shadow-monsters", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4111, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4113, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_3", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4114, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4115, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4116, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4117, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4118, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4119, + "fields": { + "parent": "deepm_shadow-puppets", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4120, + "fields": { + "parent": "deepm_shadow-trove", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4121, + "fields": { + "parent": "deepm_shadow-trove", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4123, + "fields": { + "parent": "deepm_shadow-trove", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4124, + "fields": { + "parent": "deepm_shadow-trove", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4125, + "fields": { + "parent": "deepm_shadow-trove", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4126, + "fields": { + "parent": "deepm_shadow-trove", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "9 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4127, + "fields": { + "parent": "deepm_shadow-trove", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "11 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4128, + "fields": { + "parent": "deepm_shadow-trove", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "13 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4129, + "fields": { + "parent": "deepm_shadows-brought-to-light", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4130, + "fields": { + "parent": "deepm_shadows-brought-to-light", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4131, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4132, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4134, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4135, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4136, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4137, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4138, + "fields": { + "parent": "deepm_shadowy-retribution", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4139, + "fields": { + "parent": "deepm_shared-sacrifice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4140, + "fields": { + "parent": "deepm_sheen-of-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4141, + "fields": { + "parent": "deepm_shifting-the-odds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4142, + "fields": { + "parent": "deepm_shiver", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4143, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4144, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4145, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4146, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4147, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4148, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4149, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4150, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4151, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4152, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4153, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4154, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4155, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4156, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4157, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4158, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4159, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4160, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4161, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4162, + "fields": { + "parent": "deepm_shiver", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4163, + "fields": { + "parent": "deepm_shroud-of-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4164, + "fields": { + "parent": "deepm_sidestep-arrow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4165, + "fields": { + "parent": "deepm_sign-of-koth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4167, + "fields": { + "parent": "deepm_sign-of-koth", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4168, + "fields": { + "parent": "deepm_sign-of-koth", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4169, + "fields": { + "parent": "deepm_silhouette", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4170, + "fields": { + "parent": "deepm_sir-mittinzs-move-curse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4171, + "fields": { + "parent": "deepm_sir-mittinzs-move-curse", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4172, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4173, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4175, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4176, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4177, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4178, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4179, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4180, + "fields": { + "parent": "deepm_sleep-of-the-deep", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4181, + "fields": { + "parent": "deepm_slippery-fingers", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4182, + "fields": { + "parent": "deepm_slither", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4184, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4185, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4186, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4187, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4188, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4189, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4190, + "fields": { + "parent": "deepm_slither", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4191, + "fields": { + "parent": "deepm_snow-boulder", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4192, + "fields": { + "parent": "deepm_snow-fort", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4193, + "fields": { + "parent": "deepm_snowy-coat", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4195, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4196, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4197, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4198, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4199, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4200, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4201, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4202, + "fields": { + "parent": "deepm_snowy-coat", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4203, + "fields": { + "parent": "deepm_song-of-the-forest", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4204, + "fields": { + "parent": "deepm_song-of-the-forest", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4205, + "fields": { + "parent": "deepm_speak-with-inanimate-object", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4206, + "fields": { + "parent": "deepm_speak-with-inanimate-object", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4207, + "fields": { + "parent": "deepm_spin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4208, + "fields": { + "parent": "deepm_spinning-axes", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4210, + "fields": { + "parent": "deepm_spinning-axes", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4211, + "fields": { + "parent": "deepm_spinning-axes", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4212, + "fields": { + "parent": "deepm_spinning-axes", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4213, + "fields": { + "parent": "deepm_spinning-axes", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4214, + "fields": { + "parent": "deepm_spinning-axes", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4215, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4217, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4218, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4219, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4220, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4221, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4222, + "fields": { + "parent": "deepm_spiteful-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4223, + "fields": { + "parent": "deepm_spur-mount", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4224, + "fields": { + "parent": "deepm_staff-of-violet-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4226, + "fields": { + "parent": "deepm_staff-of-violet-fire", + "type": "slot_level_5", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4227, + "fields": { + "parent": "deepm_staff-of-violet-fire", + "type": "slot_level_6", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4228, + "fields": { + "parent": "deepm_staff-of-violet-fire", + "type": "slot_level_7", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4229, + "fields": { + "parent": "deepm_staff-of-violet-fire", + "type": "slot_level_8", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4230, + "fields": { + "parent": "deepm_staff-of-violet-fire", + "type": "slot_level_9", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4231, + "fields": { + "parent": "deepm_stanch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4232, + "fields": { + "parent": "deepm_starburst", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4233, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4234, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4235, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4236, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4237, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4238, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4239, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4240, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4241, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4242, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4243, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4244, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4245, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4246, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4247, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4248, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4249, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4250, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4251, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4252, + "fields": { + "parent": "deepm_starburst", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4253, + "fields": { + "parent": "deepm_starfall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4255, + "fields": { + "parent": "deepm_starfall", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4256, + "fields": { + "parent": "deepm_starfall", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4257, + "fields": { + "parent": "deepm_starfall", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4258, + "fields": { + "parent": "deepm_starfall", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4259, + "fields": { + "parent": "deepm_starry-vision", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4261, + "fields": { + "parent": "deepm_starry-vision", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4262, + "fields": { + "parent": "deepm_starry-vision", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4263, + "fields": { + "parent": "deepm_stars-heart", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4264, + "fields": { + "parent": "deepm_steal-warmth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4266, + "fields": { + "parent": "deepm_steal-warmth", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4267, + "fields": { + "parent": "deepm_steal-warmth", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4268, + "fields": { + "parent": "deepm_steal-warmth", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4269, + "fields": { + "parent": "deepm_steal-warmth", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4270, + "fields": { + "parent": "deepm_steal-warmth", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4271, + "fields": { + "parent": "deepm_steal-warmth", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4272, + "fields": { + "parent": "deepm_steam-blast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4274, + "fields": { + "parent": "deepm_steam-blast", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4275, + "fields": { + "parent": "deepm_steam-blast", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4276, + "fields": { + "parent": "deepm_steam-blast", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4277, + "fields": { + "parent": "deepm_steam-blast", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4278, + "fields": { + "parent": "deepm_steam-blast", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4279, + "fields": { + "parent": "deepm_steam-whistle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4280, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4282, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4283, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4284, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4285, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4286, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4287, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4288, + "fields": { + "parent": "deepm_stench-of-rot", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4289, + "fields": { + "parent": "deepm_storm-of-wings", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4290, + "fields": { + "parent": "deepm_sudden-dawn", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4291, + "fields": { + "parent": "deepm_sudden-dawn", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4292, + "fields": { + "parent": "deepm_summon-eldritch-servitor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4293, + "fields": { + "parent": "deepm_summon-eldritch-servitor", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4295, + "fields": { + "parent": "deepm_summon-eldritch-servitor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4296, + "fields": { + "parent": "deepm_summon-eldritch-servitor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4297, + "fields": { + "parent": "deepm_summon-eldritch-servitor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4298, + "fields": { + "parent": "deepm_summon-eldritch-servitor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4299, + "fields": { + "parent": "deepm_summon-star", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4300, + "fields": { + "parent": "deepm_surge-dampener", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4301, + "fields": { + "parent": "deepm_surge-dampener", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4302, + "fields": { + "parent": "deepm_surprise-blessing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4303, + "fields": { + "parent": "deepm_symbol-of-sorcery", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4304, + "fields": { + "parent": "deepm_talons-of-a-hungry-land", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4306, + "fields": { + "parent": "deepm_talons-of-a-hungry-land", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4307, + "fields": { + "parent": "deepm_talons-of-a-hungry-land", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4308, + "fields": { + "parent": "deepm_targeting-foreknowledge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4309, + "fields": { + "parent": "deepm_thin-the-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4310, + "fields": { + "parent": "deepm_thousand-darts", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4312, + "fields": { + "parent": "deepm_thousand-darts", + "type": "slot_level_4", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4313, + "fields": { + "parent": "deepm_thousand-darts", + "type": "slot_level_5", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4314, + "fields": { + "parent": "deepm_thousand-darts", + "type": "slot_level_6", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4315, + "fields": { + "parent": "deepm_thousand-darts", + "type": "slot_level_7", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4316, + "fields": { + "parent": "deepm_thousand-darts", + "type": "slot_level_8", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4317, + "fields": { + "parent": "deepm_thousand-darts", + "type": "slot_level_9", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4318, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4320, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4321, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4322, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4323, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4324, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4325, + "fields": { + "parent": "deepm_throes-of-ecstasy", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4326, + "fields": { + "parent": "deepm_thunder-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4327, + "fields": { + "parent": "deepm_thunderclap", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4328, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4330, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4331, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4332, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4333, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4334, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4335, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4336, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4337, + "fields": { + "parent": "deepm_thunderous-charge", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4338, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4340, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4341, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4342, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4343, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4344, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4345, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4346, + "fields": { + "parent": "deepm_thunderous-stampede", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4347, + "fields": { + "parent": "deepm_thunderous-wave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4348, + "fields": { + "parent": "deepm_thunderstorm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4349, + "fields": { + "parent": "deepm_tidal-barrier", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4350, + "fields": { + "parent": "deepm_time-in-a-bottle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4351, + "fields": { + "parent": "deepm_time-jump", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4352, + "fields": { + "parent": "deepm_time-loop", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4353, + "fields": { + "parent": "deepm_time-slippage", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4354, + "fields": { + "parent": "deepm_time-step", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4355, + "fields": { + "parent": "deepm_time-vortex", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4357, + "fields": { + "parent": "deepm_time-vortex", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4358, + "fields": { + "parent": "deepm_time-vortex", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4359, + "fields": { + "parent": "deepm_time-vortex", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4360, + "fields": { + "parent": "deepm_time-vortex", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4361, + "fields": { + "parent": "deepm_time-vortex", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4362, + "fields": { + "parent": "deepm_timely-distraction", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4363, + "fields": { + "parent": "deepm_tireless", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4364, + "fields": { + "parent": "deepm_tongue-of-sand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4365, + "fields": { + "parent": "deepm_tongue-of-sand", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4366, + "fields": { + "parent": "deepm_tongue-tied", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4367, + "fields": { + "parent": "deepm_torrent-of-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4368, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4370, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "slot_level_4", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4371, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "slot_level_5", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4372, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "slot_level_6", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4373, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "slot_level_7", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4374, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "slot_level_8", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4375, + "fields": { + "parent": "deepm_touch-of-the-unliving", + "type": "slot_level_9", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4376, + "fields": { + "parent": "deepm_tracer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4377, + "fields": { + "parent": "deepm_treasure-chasm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4378, + "fields": { + "parent": "deepm_tree-heal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4379, + "fields": { + "parent": "deepm_tree-running", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4380, + "fields": { + "parent": "deepm_tree-speak", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4381, + "fields": { + "parent": "deepm_trench", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4383, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4384, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4385, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4386, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4387, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4388, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4389, + "fields": { + "parent": "deepm_trench", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4390, + "fields": { + "parent": "deepm_trick-question", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4391, + "fields": { + "parent": "deepm_triumph-of-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4392, + "fields": { + "parent": "deepm_twist-the-skein", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4393, + "fields": { + "parent": "deepm_umbral-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4394, + "fields": { + "parent": "deepm_uncontrollable-transformation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4395, + "fields": { + "parent": "deepm_uncontrollable-transformation", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4397, + "fields": { + "parent": "deepm_uncontrollable-transformation", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4398, + "fields": { + "parent": "deepm_uncontrollable-transformation", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4399, + "fields": { + "parent": "deepm_undermine-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4400, + "fields": { + "parent": "deepm_unholy-defiance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4401, + "fields": { + "parent": "deepm_unleash-effigy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4402, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4404, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "30 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4405, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "35 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4406, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "40 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4407, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "45 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4408, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "50 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4409, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "55 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4410, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "60 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4411, + "fields": { + "parent": "deepm_unluck-on-that", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "65 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4412, + "fields": { + "parent": "deepm_unseen-strangler", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4413, + "fields": { + "parent": "deepm_unseen-strangler", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4414, + "fields": { + "parent": "deepm_vine-trestle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4415, + "fields": { + "parent": "deepm_vine-trestle", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4417, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4418, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4419, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4420, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4421, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4422, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4423, + "fields": { + "parent": "deepm_vine-trestle", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4424, + "fields": { + "parent": "deepm_visage-of-madness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4425, + "fields": { + "parent": "deepm_vital-mark", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4426, + "fields": { + "parent": "deepm_vital-mark", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4428, + "fields": { + "parent": "deepm_vital-mark", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4429, + "fields": { + "parent": "deepm_vital-mark", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4430, + "fields": { + "parent": "deepm_vital-mark", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4431, + "fields": { + "parent": "deepm_vital-mark", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4432, + "fields": { + "parent": "deepm_vital-mark", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4433, + "fields": { + "parent": "deepm_vital-mark", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4434, + "fields": { + "parent": "deepm_void-rift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4435, + "fields": { + "parent": "deepm_void-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4437, + "fields": { + "parent": "deepm_void-strike", + "type": "slot_level_4", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4438, + "fields": { + "parent": "deepm_void-strike", + "type": "slot_level_5", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4439, + "fields": { + "parent": "deepm_void-strike", + "type": "slot_level_6", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4440, + "fields": { + "parent": "deepm_void-strike", + "type": "slot_level_7", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4441, + "fields": { + "parent": "deepm_void-strike", + "type": "slot_level_8", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4442, + "fields": { + "parent": "deepm_void-strike", + "type": "slot_level_9", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4443, + "fields": { + "parent": "deepm_volley-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4444, + "fields": { + "parent": "deepm_vomit-tentacles", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4445, + "fields": { + "parent": "deepm_voorish-sign", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4447, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4448, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4449, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4450, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4451, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4452, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4453, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4454, + "fields": { + "parent": "deepm_voorish-sign", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4455, + "fields": { + "parent": "deepm_waft", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4456, + "fields": { + "parent": "deepm_walk-the-twisted-path", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4458, + "fields": { + "parent": "deepm_walk-the-twisted-path", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4459, + "fields": { + "parent": "deepm_walk-the-twisted-path", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4460, + "fields": { + "parent": "deepm_walk-the-twisted-path", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4461, + "fields": { + "parent": "deepm_walking-wall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4462, + "fields": { + "parent": "deepm_wall-of-time", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4463, + "fields": { + "parent": "deepm_warning-shout", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4464, + "fields": { + "parent": "deepm_warp-mind-and-matter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4465, + "fields": { + "parent": "deepm_warp-mind-and-matter", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4466, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4468, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4469, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4470, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4471, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4472, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4473, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4474, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4475, + "fields": { + "parent": "deepm_weapon-of-blood", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4476, + "fields": { + "parent": "deepm_weilers-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4478, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4479, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4480, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4481, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4482, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4483, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4484, + "fields": { + "parent": "deepm_weilers-ward", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4485, + "fields": { + "parent": "deepm_wild-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4487, + "fields": { + "parent": "deepm_wild-shield", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4488, + "fields": { + "parent": "deepm_wild-shield", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4489, + "fields": { + "parent": "deepm_wild-shield", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4490, + "fields": { + "parent": "deepm_wild-shield", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4491, + "fields": { + "parent": "deepm_wild-shield", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4492, + "fields": { + "parent": "deepm_wind-lash", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4493, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_1", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4494, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_2", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4495, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_3", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4496, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_4", + "damage_roll": "1d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4497, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4498, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4499, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4500, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4501, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4502, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4503, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4504, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4505, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4506, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4507, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4508, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4509, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4510, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4511, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4512, + "fields": { + "parent": "deepm_wind-lash", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4513, + "fields": { + "parent": "deepm_wind-of-the-hereafter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4514, + "fields": { + "parent": "deepm_wind-tunnel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4515, + "fields": { + "parent": "deepm_winterdark", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4516, + "fields": { + "parent": "deepm_winters-radiance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4517, + "fields": { + "parent": "deepm_wintry-glide", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4518, + "fields": { + "parent": "deepm_withered-sight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4520, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4521, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4522, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4523, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4524, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4525, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4526, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4527, + "fields": { + "parent": "deepm_withered-sight", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4528, + "fields": { + "parent": "deepm_wolfsong", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4530, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4531, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4532, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4533, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4534, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4535, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4536, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4537, + "fields": { + "parent": "deepm_wolfsong", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4538, + "fields": { + "parent": "deepm_word-of-misfortune", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4539, + "fields": { + "parent": "deepm_wresting-wind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4540, + "fields": { + "parent": "deepm_writhing-arms", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4542, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4543, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4544, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4545, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4546, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4547, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4548, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4549, + "fields": { + "parent": "deepm_writhing-arms", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4550, + "fields": { + "parent": "deepm_yellow-sign", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +} +] diff --git a/data/v2/kobold-press/deepmx/Spell.json b/data/v2/kobold-press/deepmx/Spell.json index d1a444f1..9f75141f 100644 --- a/data/v2/kobold-press/deepmx/Spell.json +++ b/data/v2/kobold-press/deepmx/Spell.json @@ -1,2004 +1,2004 @@ [ - { - "model": "api_v2.spell", - "pk": "deepmx_absolute-command", - "fields": { - "name": "Absolute Command", - "desc": "Deep Magic: clockwork You can control a construct you have built with a challenge rating of 6 or less. You can manipulate objects with your construct as precisely as its construction allows, and you perceive its surroundings through its sensory inputs as if you inhabited its body. The construct uses the caster's Proficiency bonus (modified by the construct's Strength and Dexterity scores). You can use the manipulators of the construct to perform any number of skill-based tasks, using the construct's Strength and Dexterity modifiers when using skills based on those particular abilities. Your body remains immobile, as if paralyzed, for the duration of the spell. The construct must remain within 100 feet of you. If it moves beyond this distance, the spell immediately ends and the caster's mind returns to his or her body.", - "document": "deepmx", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using higher-level spell slots, you may control a construct with a challenge rating 2 higher for each slot level you use above 4th. The construct's range also increases by 10 feet for each slot level.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_amplify-ley-field", - "fields": { - "name": "Amplify Ley Field", - "desc": "You create a faintly shimmering field of charged energy around yourself. Within that area, the intensity of ley lines you're able to draw on increases from weak to strong, or from strong to titanic. If no ley lines are near enough for you to draw on, you can treat the area of the spell itself as an unlocked, weak ley line.", - "document": "deepmx", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_animate-construct", - "fields": { - "name": "Animate Construct", - "desc": "Deep Magic: clockwork This spell animates a carefully prepared construct of Tiny size. The object acts immediately, on your turn, and can attack your opponents to the best of its ability. You can direct it not to attack, to attack particular enemies, or to perform other actions. You choose the object to animate, and you can change that choice each time you cast the spell. The cost of the body to be animated is 10 gp x its hit points. The body can be reused any number of times, provided it isn't severely damaged or destroyed. If no prepared construct body is available, you can animate a mass of loose metal or stone instead. Before casting, the loose objects must be arranged in a suitable shape (taking up to a minute), and the construct's hit points are halved. An animated construct has a Constitution of 10, Intelligence and Wisdom 3, and Charisma 1. Other characteristics are determined by the construct's size as follows. Size HP AC Attack STR DEX Spell Slot Tiny 15 12 +3, 1d4+4 4 16 1st Small 25 13 +4, 1d8+2 6 14 2nd Medium 40 14 +5, 2d6+1 10 12 3rd Large 50 15 +6, 2d10+2 14 10 4th Huge 80 16 +8, 2d12+4 18 8 5th Gargantuan 100 17 +10, 4d8+6 20 6 6th", - "document": "deepmx", - "level": 1, - "school": "transmutation", - "higher_level": "Casting this spell using higher level spell slots allows you to increase the size of the construct animated, as shown on the table.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_anomalous-object", - "fields": { - "name": "Anomalous Object", - "desc": "Deep Magic: temporal By touching an object, you retrieve another version of the object from elsewhere in time. If the object is attended, you must succeed on a melee spell attack roll against the creature holding or controlling the object. Any effect that affects the original object also affects the duplicate (charges spent, damage taken, etc.) and any effect that affects the duplicate also affects the original object. If either object is destroyed, both are destroyed. This spell does not affect sentient items or unique artifacts.", - "document": "deepmx", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_armored-heart", - "fields": { - "name": "Armored Heart", - "desc": "Deep Magic: clockwork The targeted creature gains resistance to bludgeoning, slashing, and piercing damage. This resistance can be overcome with adamantine or magical weapons.", - "document": "deepmx", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_armored-shell", - "fields": { - "name": "Armored Shell", - "desc": "Deep Magic: clockwork This spell creates a suit of magical studded leather armor (AC 12). It does not grant you proficiency in its use. Casters without the appropriate armor proficiency suffer disadvantage on any ability check, saving throw, or attack roll that involves Strength or Dexterity and cannot cast spells.", - "document": "deepmx", - "level": 1, - "school": "conjuration", - "higher_level": "Casting armored shell using a higher-level spell slot creates stronger armor: a chain shirt (AC 13) at level 2, scale mail (AC 14) at level 3, chain mail (AC 16) at level 4, and plate armor (AC 18) at level 5.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_banshee-wail", - "fields": { - "name": "Banshee Wail", - "desc": "You emit a soul-shattering wail. Every creature within a 30-foot cone who hears the wail must make a Wisdom saving throw. Those that fail take 6d10 psychic damage and become frightened of you; a frightened creature repeats the saving throw at the end of its turn, ending the effect on itself on a success. Those that succeed take 3d10 psychic damage and aren't frightened. This spell has no effect on constructs and undead.", - "document": "deepmx", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_beguiling-gift", - "fields": { - "name": "Beguiling Gift", - "desc": "Deep Magic: hieroglyph You implant a powerful suggestion into an item as you hand it to someone. If the person you hand it to accepts it willingly, they must make a successful Wisdom saving throw or use the object as it's meant to be used at their first opportunity: writing with a pen, consuming food or drink, wearing clothing, drawing a weapon, etc. After the first use, they're under no compulsion to continue using the object or even to keep it.", - "document": "deepmx", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_borrowing", - "fields": { - "name": "Borrowing", - "desc": "By touching a target, you gain one sense, movement type and speed, feat, language, immunity, or extraordinary ability of the target for the duration of the spell. The target also retains the use of the borrowed ability. An unwilling target prevents the effect with a successful Constitution saving throw. The target can be a living creature or one that's been dead no longer than 1 minute; a corpse makes no saving throw. You can possess only one borrowed power at a time.", - "document": "deepmx", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level, its duration increases to 1 hour. Additionally, the target loses the stolen power for the duration of the spell.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_call-the-hunter", - "fields": { - "name": "Call the Hunter", - "desc": "Deep Magic: clockwork You detach a portion of your soul to become the embodiment of justice in the form of a clockwork outsider known as a Zelekhut who will serve at your commands for the duration, so long as those commands are consistent with its desire to punish wrongdoers. You may give the creature commands as a bonus action; it acts either immediately before or after you.", - "document": "deepmx", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_circle-of-devestation", - "fields": { - "name": "Circle of Devestation", - "desc": "You create a 10-foot tall, 20-foot radius ring of destructive energy around a point you can see within range. The area inside the ring is difficult terrain. When you cast the spell and as a bonus action on each of your turns, you can choose one of the following damage types: cold, fire, lightning, necrotic, or radiant. Creatures and objects that touch the ring, that are inside it when it's created, or that end their turn inside the ring take 6d6 damage of the chosen type, or half damage with a successful Constitution saving throw. A creature or object reduced to 0 hit points by the spell is reduced to fine ash. At the start of each of your subsequent turns, the ring's radius expands by 20 feet. Any creatures or objects touched by the expanding ring are subject to its effects immediately.", - "document": "deepmx", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "1 mile", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_cloying-darkness", - "fields": { - "name": "Cloying Darkness", - "desc": "You reach out with a hand of decaying shadows. Make a ranged spell attack. If it hits, the target takes 2d8 necrotic damage and must make a Constitution saving throw. If it fails, its visual organs are enveloped in shadow until the start of your next turn, causing it to treat all lighting as if it's one step lower in intensity (it treats bright light as dim, dim light as darkness, and darkness as magical darkness).", - "document": "deepmx", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "2d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_cosmic-alignment", - "fields": { - "name": "Cosmic Alignment", - "desc": "Deep Magic: illumination You arrange the forces of the cosmos to your benefit. Choose a cosmic event from the Comprehension of the Starry Sky ability that affects spellcasting (conjunction, eclipse, or nova; listed after the spell). You cast spells as if under the effect of the cosmic event until the next sunrise or 24 hours have passed. When the ability requires you to expend your insight, you expend your ritual focus instead. This spell must be cast outdoors, and the casting of this spell is obvious to everyone within 100 miles of its casting when an appropriate symbol, such as a flaming comet, appears in the sky above your location while you are casting the spell. Conjunction: Planetary conjunctions destabilize minds and emotions. You can give one creature you can see disadvantage on a saving throw against one enchantment or illusion spell cast by you. Eclipse: Eclipses plunge the world into darkness and strengthen connections to the shadow plane. When you cast a spell of 5th level or lower that causes necrotic damage, you can reroll a number of damage dice up to your Intelligence modifier (minimum of one). You must use the new rolls. Nova: The nova is a powerful aid to divination spells. You can treat one divination spell you cast as though you had used a spell slot one level higher than the slot actually used.", - "document": "deepmx", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_cruor-of-visions", - "fields": { - "name": "Cruor of Visions", - "desc": "You prick your finger with a bone needle as you cast this spell, taking 1 necrotic damage. This drop of blood must be caught in a container such as a platter or a bowl, where it grows into a pool 1 foot in diameter. This pool acts as a crystal ball for the purpose of scrying. If you place a drop (or dried flakes) of another creature's blood in the cruor of visions, the creature has disadvantage on any Wisdom saving throw to resist scrying. Additionally, you can treat the pool of blood as a crystal ball of telepathy (see the crystal ball description in the Fifth Edition rules). I When you cast this spell using a spell slot of 7th level or higher, the pool of blood acts as either a crystal ball of mind reading or a crystal ball of true seeing (your choice when the spell is cast).", - "document": "deepmx", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_extract-foyson", - "fields": { - "name": "Extract Foyson", - "desc": "You extract the goodness in food, pulling all the nutrition out of three days' worth of meals and concentrating it into about a tablespoon of bland, flourlike powder. The flour can be mixed with liquid and drunk or baked into elven bread. Foyson used in this way still imparts all the nutritional value of the original food, for the amount consumed. The original food appears unchanged and though it's still filling, it has no nutritional value. Someone eating nothing but foyson-free food will eventually starve.", - "document": "deepmx", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, an additional three meals' worth of food can be extracted for each slot level above 1st. Ritual Focus. If you expend your ritual focus, you can choose to have each day's worth of foyson take the form of a slice of delicious elven bread.", - "target_type": "object", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_find-the-flaw", - "fields": { - "name": "Find the Flaw", - "desc": "Deep Magic: clockwork You touch one creature. The next attack roll that creature makes against a clockwork or metal construct, or any machine, is a critical hit.", - "document": "deepmx", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_gear-shield", - "fields": { - "name": "Gear Shield", - "desc": "Deep Magic: clockwork You cause a handful of gears to orbit the target's body. These shield the spell's target from incoming attacks, granting a +2 bonus to AC and to Dexterity and Constitution saving throws for the duration, without hindering the subject's movement, vision, or outgoing attacks.", - "document": "deepmx", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_gift-of-azathoth", - "fields": { - "name": "Gift of Azathoth", - "desc": "Deep Magic: void magic A willing creature you touch is imbued with the persistence of ultimate Chaos. Until the spell ends, the target has advantage on the first three death saving throws it attempts.", - "document": "deepmx", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 5th, 6th, or 7th level, the duration increases to 48 hours. When you cast this spell using a spell slot of 8th or 9th level, the duration increases to 72 hours.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours or until the target attempts a third death saving throw", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_greater-ley-pulse", - "fields": { - "name": "Greater Ley Pulse", - "desc": "You set up ley energy vibrations in a 20-foot cube within range, and name one type of damage. Each creature in the area must succeed on a Wisdom saving throw or lose immunity to the chosen damage type for the duration.", - "document": "deepmx", - "level": 7, - "school": "transmutation", - "higher_level": "When you cast this spell using a 9th-level spell slot, choose two damage types instead of one.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_gremlins", - "fields": { - "name": "Gremlins", - "desc": "Deep Magic: clockwork You target a construct and summon a plague of invisible spirits to harass it. The target resists the spell and negates its effect with a successful Wisdom saving throw. While the spell remains in effect, the construct has disadvantage on attack rolls, ability checks, and saving throws, and it takes 3d8 force damage at the start of each of its turns as it is magically disassembled by the spirits.", - "document": "deepmx", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th or higher, the damage increases by 1d8 for each slot above 4th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "force" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_grinding-gears", - "fields": { - "name": "Grinding Gears", - "desc": "Deep Magic: clockwork You designate a spot within range, and massive gears emerge from the ground at that spot, creating difficult terrain in a 20-foot radius. Creatures that move in the area must make successful Dexterity saving throws after every 10 feet of movement or when they stand up. Failure indicates that the creature falls prone and takes 1d8 points of bludgeoning damage.", - "document": "deepmx", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "1d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_hearth-charm", - "fields": { - "name": "Hearth Charm", - "desc": "This spell makes flammable material burn twice as long as normal.", - "document": "deepmx", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_hellforging", - "fields": { - "name": "Hellforging", - "desc": "Deep Magic: clockwork You spend an hour calling forth a disembodied evil spirit. At the end of that time, the summoned spirit must make a Charisma saving throw. If the saving throw succeeds, you take 2d10 psychic damage plus 2d10 necrotic damage from waves of uncontrolled energy rippling out from the disembodied spirit. You can maintain the spell, forcing the subject to repeat the saving throw at the end of each of your turns, with the same consequence to you for each failure. If you choose not to maintain the spell or are unable to do so, the evil spirit returns to its place of torment and cannot be recalled. If the saving throw fails, the summoned spirit is transferred into the waiting soul gem and immediately animates the constructed body. The subject is now a hellforged; it loses all of its previous racial traits and gains gearforged traits except as follows: Vulnerability: Hellforged are vulnerable to radiant damage. Evil Mind: Hellforged have disadvantage on saving throws against spells and abilities of evil fiends or aberrations that effect the mind or behavior. Past Life: The hellforged retains only a vague sense of who it was in its former existence, but these memories are enough for it to gain proficiency in one skill. Languages: Hellforged speak Common, Machine Speech, and Infernal or Abyssal Up to four other spellcasters of at least 5th level can assist you in the ritual. Each assistant increases the DC of the Charisma saving throw by 1. In the event of a failed saving throw, the spellcaster and each assistant take damage. An assistant who drops out of the casting can't rejoin.", - "document": "deepmx", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_hods-gift", - "fields": { - "name": "Hod's Gift", - "desc": "The target gains blindsight to a range of 60 feet.", - "document": "deepmx", - "level": 5, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the duration is increased by 1 hour for every slot above 5th level.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_imbue-spell", - "fields": { - "name": "Imbue Spell", - "desc": "Deep Magic: clockwork You imbue a spell of 1st thru 3rd level that has a casting time of instantaneous onto a gear worth 100 gp per level of spell you are imbuing. At the end of the ritual, the gear is placed into a piece of clockwork that includes a timer or trigger mechanism. When the timer or trigger goes off, the spell is cast. If the range of the spell was Touch, it effects only a target touching the device. If the spell had a range in feet, the spell is cast on the closest viable target within range, based on the nature of the spell. Spells with a range of Self or Sight can't be imbued. If the gear is placed with a timer, it activates when the time elapses regardless of whether a legitimate target is available.", - "document": "deepmx", - "level": 5, - "school": "transmutation", - "higher_level": "You can perform this ritual as a 7th-level spell to imbue a spell of 4th or 5th level.", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_jotuns-jest", - "fields": { - "name": "Jotun's Jest", - "desc": "Giants never tire of having fun with this spell. It causes a weapon or other item to vastly increase in size, temporarily becoming sized for a Gargantuan creature. The item weighs 12 times its original weight and in most circumstances cannot be used effectively by creatures smaller than Gargantuan size. The item retains its usual qualities (including magical powers and effects) and returns to normal size when the spell ends.", - "document": "deepmx", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_land-bond", - "fields": { - "name": "Land Bond", - "desc": "You touch a willing creature and infuse it with ley energy, creating a bond between the creature and the land. For the duration of the spell, if the target is in contact with the ground, the target has advantage on saving throws and ability checks made to avoid being moved or knocked prone against its will. Additionally, the creature ignores nonmagical difficult terrain and is immune to effects from extreme environments such as heat, cold (but not cold or fire damage), and altitude.", - "document": "deepmx", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_lesser-ley-pulse", - "fields": { - "name": "Lesser Ley Pulse", - "desc": "You set up ley energy vibrations in a 10-foot cube within range, and name one type of damage. Each creature in the area must make a successful Wisdom saving throw or lose resistance to the chosen damage type for the duration of the spell.", - "document": "deepmx", - "level": 5, - "school": "transmutation", - "higher_level": "When you cast this spell using a 7th-level spell slot, choose two damage types instead of one.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_ley-disruption", - "fields": { - "name": "Ley Disruption", - "desc": "You create a 15-foot-radius sphere filled with disruptive ley energy. The sphere is centered around a point you can see within range. Surfaces inside the sphere shift erratically, becoming difficult terrain for the duration. Any creature in the area when it appears, that starts its turn in the area, or that enters the area for the first time on a turn must succeed on a Dexterity saving throw or fall prone. If you cast this spell in an area within the influence of a ley line, creatures have disadvantage on their saving throws against its effect. Special. A geomancer with a bound ley line is “within the influence of a ley line” for purposes of ley disruption as long as he or she is on the same plane as the bound line.", - "document": "deepmx", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "50 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 15, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_ley-energy-bolt", - "fields": { - "name": "Ley Energy Bolt", - "desc": "You transform ambient ley power into a crackling bolt of energy 100 feet long and 5 feet wide. Each creature in the line takes 5d8 force damage, or half damage with a successful Dexterity saving throw. The bolt passes through the first inanimate object in its path, and creatures on the other side of the obstacle receive no bonus to their saving throw from cover. The bolt stops if it strikes a second object.", - "document": "deepmx", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bolt's damage increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_ley-leech", - "fields": { - "name": "Ley Leech", - "desc": "You channel destructive ley energy through your touch. Make a melee spell attack against a creature within your reach. The target takes 8d10 necrotic damage and must succeed on a Constitution saving throw or have disadvantage on attack rolls, saving throws, and ability checks. An affected creature repeats the saving throw at the end of its turn, ending the effect on itself with a success. This spell has no effect against constructs or undead.", - "document": "deepmx", - "level": 5, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the spell's damage increases by 1d10 for each slot level above 5th.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "8d10", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_ley-sense", - "fields": { - "name": "Ley Sense", - "desc": "You tune your senses to the pulse of ambient ley energy flowing through the world. For the duration, you gain tremorsense with a range of 20 feet and you are instantly aware of the presence of any ley line within 5 miles. You know the distance and direction to every ley line within that range.", - "document": "deepmx", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_ley-storm", - "fields": { - "name": "Ley Storm", - "desc": "A roiling stormcloud of ley energy forms, centered around a point you can see and extending horizontally to a radius of 360 feet, with a thickness of 30 feet. Shifting color shoots through the writhing cloud, and thunder roars out of it. Each creature under the cloud at the moment when it's created (no more than 5,000 feet beneath it) takes 2d6 thunder damage and is disruptive aura spell. Rounds 5-10. Flashes of multicolored light burst through and out of the cloud, causing creatures to have disadvantage on Wisdom (Perception) checks that rely on sight while they are beneath the cloud. In addition, each round, you trigger a burst of energy that fills a 20-foot sphere centered on a point you can see beneath the cloud. Each creature in the sphere takes 4d8 force damage (no saving throw). Special. A geomancer who casts this spell regains 4d10 hit points.", - "document": "deepmx", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "Special", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "thunder" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_ley-surge", - "fields": { - "name": "Ley Surge", - "desc": "You unleash the power of a ley line within 5 miles, releasing a spark that flares into a 30-foot sphere centered around a point within 150 feet of you. Each creature in the sphere takes 14d6 force damage and is stunned for 1 minute; a successful Constitution saving throw halves the damage and negates the stun. A stunned creature repeats the saving throw at the end of its turn, ending the effect on itself on a success. Special. A geomancer with a bound ley line can cast this spell as long as he or she is on the same plane as the bound line.", - "document": "deepmx", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "14d6", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_ley-whip", - "fields": { - "name": "Ley Whip", - "desc": "You channel the power of a ley line within 1 mile into a crackling tendril of multicolored ley energy. The tendril extends from your hand but doesn't interfere with your ability to hold or manipulate objects. When you cast the spell and as a bonus action on subsequent turns, you can direct the tendril to strike a target within 50 feet of you. Make a melee spell attack; on a hit, the tendril does 3d8 force damage and the target must make a Strength saving throw. If the saving throw fails, you can push the target away or pull it closer, up to 10 feet in either direction. Special. A geomancer with a bound ley line can cast this spell as long as he or she is on the same plane as the bound line.", - "document": "deepmx", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_lokis-gift", - "fields": { - "name": "Loki's Gift", - "desc": "Loki's gift makes even the most barefaced lie seem strangely plausible: you gain advantage to Charisma (Deception) checks for whatever you're currently saying. If your Deception check fails, the creature knows that you tried to manipulate it with magic. If you lie to a creature that has a friendly attitude toward you and it fails a Charisma saving throw, you can also coax him or her to reveal a potentially embarrassing secret. The secret can involve wrongdoing (adultery, cheating at tafl, a secret fear, etc.) but not something life-threatening or dishonorable enough to earn the subject repute as a nithling. The verbal component of this spell is the lie you are telling.", - "document": "deepmx", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_machine-sacrifice", - "fields": { - "name": "Machine Sacrifice", - "desc": "Deep Magic: clockwork You sacrifice a willing construct you can see to imbue a willing target with construct traits. The target gains resistance to all nonmagical damage and gains immunity to the blinded, charmed, deafened, frightened, petrified, and poisoned conditions.", - "document": "deepmx", - "level": 8, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_machine-speech", - "fields": { - "name": "Machine Speech", - "desc": "Deep Magic: clockwork Your voice, and to a lesser extent your mind, changes to communicate only in the whirring clicks of machine speech. Until the end of your next turn, all clockwork spells you cast have advantage on their attack rolls or the targets have disadvantage on their saving throws.", - "document": "deepmx", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_machines-load", - "fields": { - "name": "Machine's Load", - "desc": "Deep Magic: clockwork You touch a creature and give it the capacity to carry, lift, push, or drag weight as if it were one size category larger. If you're using the encumbrance rules, the target is not subject to penalties for weight. Furthermore, the subject can carry loads that would normally be unwieldy.", - "document": "deepmx", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot higher than 1st, you can touch one additional creature for each spell level.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_mass-blade-ward", - "fields": { - "name": "Mass Blade Ward", - "desc": "You make a protective gesture toward your allies. Choose three creatures that you can see within range. Until the end of your next turn, the targets have resistance against bludgeoning, piercing, and slashing damage from weapon attacks. If a target moves farther than 30 feet from you, the effect ends for that creature.", - "document": "deepmx", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_mass-repair-metal", - "fields": { - "name": "Mass Repair Metal", - "desc": "Deep Magic: clockwork As repair metal, but you can affect all metal within range. You repair 1d8 + 5 damage to a metal object or construct by sealing up rents and bending metal back into place.", - "document": "deepmx", - "level": 5, - "school": "transmutation", - "higher_level": "Casting mass repair metal as a 6th-level spell repairs 2d8 + 10 damage.", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_mechanical-union", - "fields": { - "name": "Mechanical Union", - "desc": "Deep Magic: clockwork You can take control of a construct by voice or mental commands. The construct makes a Wisdom saving throw to resist the spell, and it gets advantage on the saving throw if its CR equals or exceeds your level in the class used to cast this spell. Once a command is given, the construct does everything it can to complete the command. Giving a new command takes an action. Constructs will risk harm, even go into combat, on your orders but will not self-destruct; giving such an order ends the spell.", - "document": "deepmx", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_molechs-blessing", - "fields": { - "name": "Molech's Blessing", - "desc": "Deep Magic: clockwork ritual You call upon the dark blessings of the furnace god Molech. In an hour-long ritual begun at midnight, you dedicate a living being to Molech by branding the deity's symbol onto the victim's forehead. If the ritual is completed and the victim fails to make a successful Wisdom saving throw (or the victim chooses not to make one), the being is transformed into an avatar of Molech under your control. The avatar is 8 feet tall and appears to be made of black iron wreathed in flames. Its eyes, mouth, and a portion of its torso are cut away to show the churning fire inside that crackles with wailing voices. The avatar has all the statistics and abilities of an earth elemental, with the following differences: Alignment is Neutral Evil; Speed is 50 feet and it cannot burrow or use earth glide; it gains the fire form ability of a fire elemental, but it cannot squeeze through small spaces; its Slam does an additional 1d10 fire damage. This transformation lasts for 24 hours. At the end of that time, the subject returns to its normal state and takes 77 (14d10) fire damage, or half damage with a successful DC 15 Constitution saving throw.", - "document": "deepmx", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "77", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_move-the-cosmic-wheel", - "fields": { - "name": "Move the Cosmic Wheel", - "desc": "Deep Magic: clockwork You wind your music box and call forth a piece of another plane of existence with which you are familiar, either through personal experience or intense study. The magic creates a bubble of space with a 30-foot radius within range of you and at a spot you designate. The portion of your plane that's inside the bubble swaps places with a corresponding portion of the plane your music box is attuned with. There is a 10% chance that the portion of the plane you summon arrives with native creatures on it. Inanimate objects and non-ambulatory life (like trees) are cut off at the edge of the bubble, while living creatures that don't fit inside the bubble are shunted outside of it before the swap occurs. Otherwise, creatures from both planes that are caught inside the bubble are sent along with their chunk of reality to the other plane for the duration of the spell unless they make a successful Charisma saving throw when the spell is cast; with a successful save, a creature can choose whether to shift planes with the bubble or leap outside of it a moment before the shift occurs. Any natural reaction between the two planes occurs normally (fire spreads, water flows, etc.) while energy (such as necrotic energy) leaks slowly across the edge of the sphere (no more than a foot or two per hour). Otherwise, creatures and effects can move freely across the boundary of the sphere; for the duration of the spell, it becomes a part of its new location to the fullest extent possible, given the natures of the two planes. The two displaced bubbles shift back to their original places automatically after 24 hours. Note that the amount of preparation involved (acquiring and attuning the music box) precludes this spell from being cast on the spur of the moment. Because of its unpredictable and potentially wide-ranging effect, it's also advisable to discuss your interest in this spell with your GM before adding it to your character's repertoire.", - "document": "deepmx", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_overclock", - "fields": { - "name": "Overclock", - "desc": "Deep Magic: clockwork You cause a targeted piece of clockwork to speed up past the point of control for the duration of the spell. The targeted clockwork can't cast spells with verbal components or even communicate effectively (all its utterances sound like grinding gears). At the start of each of its turns, the target must make a Wisdom saving throw. If the saving throw fails, the clockwork moves at three times its normal speed in a random direction and its turn ends; it can't perform any other actions. If the saving throw succeeds, then until the end of its turn, the clockwork's speed is doubled and it gains an additional action, which must be Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object. When the spell ends, the clockwork takes 2d8 force damage. It also must be rewound or refueled and it needs to have its daily maintenance performed immediately, if it relies on any of those things.", - "document": "deepmx", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "force" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_power-word-restore", - "fields": { - "name": "Power Word Restore", - "desc": "Deep Magic: clockwork You speak a word of power, and energy washes over a single construct you touch. The construct regains all of its lost hit points, all negative conditions on the construct end, and it can use a reaction to stand up, if it was prone.", - "document": "deepmx", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_read-memory", - "fields": { - "name": "Read Memory", - "desc": "Deep Magic: clockwork You copy the memories of one memory gear into your own mind. You recall these memories as if you had experienced them but without any emotional attachment or context.", - "document": "deepmx", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_repair-metal", - "fields": { - "name": "Repair Metal", - "desc": "Deep Magic: clockwork A damaged construct or metal object regains 1d8 + 5 hit points when this spell is cast on it.", - "document": "deepmx", - "level": 2, - "school": "transmutation", - "higher_level": "The spell restores 2d8 + 10 hit points at 4th level, 3d8 + 15 at 6th level, and 4d8 + 20 at 8th level.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_risen-road", - "fields": { - "name": "Risen Road", - "desc": "When you cast this spell, you open a glowing portal into the plane of shadow. The portal remains open for 1 minute, until 10 creatures step through it, or until you collapse it (no action required). Stepping through the portal places you on a shadow road leading to a destination within 50 miles, or in a direction specified by you. The road is in ideal condition. You and your companions can travel it safely at a normal pace, but you can't rest on the road; if you stop for more than 10 minutes, the spell expires and dumps you back into the real world at a random spot within 10 miles of your starting point. The spell expires 2d6 hours after being cast. When that happens, travelers on the road are safely deposited near their specified destination or 50 miles from their starting point in the direction that was specified when the spell was cast. Travelers never incur exhaustion no matter how many hours they spent walking or riding on the shadow road. The temporary shadow road ceases to exist; anything left behind is lost in the shadow realm. Each casting of risen road creates a new shadow road. A small chance exists that a temporary shadow road might intersect with an existing shadow road, opening the possibility for meeting other travelers or monsters, or for choosing a different destination mid-journey. The likelihood is entirely up to the GM.", - "document": "deepmx", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "2-12 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_robe-of-shards", - "fields": { - "name": "Robe of Shards", - "desc": "Deep Magic: clockwork You create a robe of metal shards, gears, and cogs that provides a base AC of 14 + your Dexterity modifier. As a bonus action while protected by a robe of shards, you can command bits of metal from a fallen foe to be absorbed by your robe; each infusion of metal increases your AC by 1, to a maximum of 18 + Dexterity modifier. You can also use a bonus action to dispel the robe, causing it to explode into a shower of flying metal that does 8d6 slashing damage, +1d6 per point of basic (non-Dexterity) AC above 14, to all creatures within 30 feet of you.", - "document": "deepmx", - "level": 6, - "school": "abjuration", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_shadow-realm-gateway", - "fields": { - "name": "Shadow Realm Gateway", - "desc": "By drawing a circle of black chalk up to 15 feet in diameter and chanting for one minute, you open a portal directly into the Shadow Realm. The portal fills the chalk circle and appears as a vortex of inky blackness; nothing can be seen through it. Any object or creature that passes through the portal instantly arrives safely in the Shadow Realm. The portal remains open for one minute or until you lose concentration on it, and it can be used to travel between the Shadow Realm and the chalk circle, in both directions, as many times as desired during the spell's duration. This spell can only be cast as a ritual.", - "document": "deepmx", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_shield-of-star-and-shadow", - "fields": { - "name": "Shield of Star and Shadow", - "desc": "You wrap yourself in a protective shroud of the night sky made from swirling shadows punctuated with twinkling motes of light. The shroud grants you resistance against either radiant or necrotic damage (choose when the spell is cast). You also shed dim light in a 10-foot radius. You can end the spell early by using an action to dismiss it.", - "document": "deepmx", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_snowblind-stare", - "fields": { - "name": "Snowblind Stare", - "desc": "Your eyes burn with a bright, cold light that inflicts snow blindness on a creature you target within 30 feet of you. If the target fails a Constitution saving throw, it suffers the first stage of snow blindness (see [Conditions](https://api.open5e.com/sections/conditions)), or the second stage of snow blindness if it already has the first stage. The target recovers as described in [Conditions](https://api.open5e.com/sections/conditions).", - "document": "deepmx", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "2 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_soothsayers-shield", - "fields": { - "name": "Soothsayer's Shield", - "desc": "This spell can be cast when you are hit by an enemy's attack. Until the start of your next turn, you have a +4 bonus to AC, including against the triggering attack.", - "document": "deepmx", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_soul-of-the-machine", - "fields": { - "name": "Soul of the Machine", - "desc": "Deep Magic: clockwork One willing creature you touch becomes immune to mind-altering effects and psychic damage for the spell's duration.", - "document": "deepmx", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_sphere-of-order", - "fields": { - "name": "Sphere of Order", - "desc": "Deep Magic: clockwork You surround yourself with the perfect order of clockwork. Chaotic creatures that start their turn in the area or enter it on their turn take 5d8 psychic damage. The damage is 8d8 for Chaotic aberrations, celestials, elementals, and fiends. A successful Wisdom saving throw halves the damage, but Chaotic creatures (the only ones affected by the spell) make the saving throw with disadvantage.", - "document": "deepmx", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_spire-of-stone", - "fields": { - "name": "Spire of Stone", - "desc": "You cause a spire of rock to burst out of the ground, floor, or another surface beneath your feet. The spire is as wide as your space, and lifting you, it can rise up to 20 feet in height. When the spire appears, a creature within 5 feet of you must succeed on a Dexterity saving throw or fall prone. As a bonus action on your turn, you can cause the spire to rise or descend up to 20 feet to a maximum height of 40 feet. If you move off of the spire, it immediately collapses back into the ground. When the spire disappears, it leaves the surface from which it sprang unharmed. You can create a new spire as a bonus action for the duration of the spell.", - "document": "deepmx", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_strength-of-the-underworld", - "fields": { - "name": "Strength of the Underworld", - "desc": "You call on the power of the dark gods of the afterlife to strengthen the target's undead energy. The spell's target has advantage on saving throws against Turn Undead while the spell lasts. If this spell is cast on a corpse that died from darakhul fever, the corpse gains a +5 bonus on its roll to determine whether it rises as a darakhul.", - "document": "deepmx", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_summon-old-ones-avatar", - "fields": { - "name": "Summon Old One's Avatar", - "desc": "Deep Magic: void magic You summon a worldly incarnation of a Great Old One, which appears in an unoccupied space you can see within range. This avatar manifests as a Void speaker (Creature Codex NPC) augmented by boons from the Void. Choose one of the following options for the type of avatar that appears (other options might be available if the GM allows): Avatar of Cthulhu. The Void speaker is a goat-man with the ability to cast black goat's blessing and unseen strangler at will. Avatar of Yog-Sothoth. The Void speaker is a human with 1d4 + 1 flesh warps and the ability to cast gift of Azathoth and thunderwave at will. When the avatar appears, you must make a Charisma saving throw. If it succeeds, the avatar is friendly to you and your allies. If it fails, the avatar is friendly to no one and attacks the nearest creature to it, pursuing and fighting for as long as possible. Roll initiative for the avatar, which takes its own turn. If friendly to you, it obeys verbal commands you issue to it (no action required by you). If the avatar has no command, it attacks the nearest creature. Each round you maintain concentration on the spell, you must make a successful DC 15 Wisdom saving throw or take 1d6 psychic damage. If the cumulative total of this damage exceeds your Wisdom score, you gain one point of Void taint and you are afflicted with a short-term madness. The same penalty recurs when the damage exceeds twice your Wisdom, three times your Wisdom, etc. The avatar disappears when it drops to 0 hit points or when the spell ends. If you stop concentrating on the spell before an hour has elapsed, the avatar becomes uncontrolled and hostile and doesn't disappear until 1d6 rounds later or it's killed.", - "document": "deepmx", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_tick-stop", - "fields": { - "name": "Tick Stop", - "desc": "Deep Magic: clockwork You speak a word and the target construct can take one action or bonus action on its next turn, but not both. The construct is immune to further tick stops from the same caster for 24 hours.", - "document": "deepmx", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_timeless-engine", - "fields": { - "name": "Timeless Engine", - "desc": "Deep Magic: clockwork You halt the normal processes of degradation and wear in a nonmagical clockwork device, making normal maintenance unnecessary and slowing fuel consumption to 1/10th of normal. For magical devices and constructs, the spell greatly reduces wear. A magical clockwork device, machine, or creature that normally needs daily maintenance only needs care once a year; if it previously needed monthly maintenance, it now requires attention only once a decade.", - "document": "deepmx", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_winding-key", - "fields": { - "name": "Winding Key", - "desc": "Deep Magic: clockwork You target a construct, giving it an extra action or move on each of its turns.", - "document": "deepmx", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_wotans-rede", - "fields": { - "name": "Wotan's Rede", - "desc": "You recite a poem in the Northern tongue, sent to your lips by Wotan himself, to gain supernatural insight or advice. Your next Intelligence or Charisma check within 1 minute is made with advantage, and you can include twice your proficiency bonus. At the GM's discretion, this spell can instead provide a piece of general advice equivalent to an contact other plane.", - "document": "deepmx", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "deepmx_write-memory", - "fields": { - "name": "Write Memory", - "desc": "Deep Magic: clockwork You copy your memories, or those learned from the spell read memory, onto an empty memory gear.", - "document": "deepmx", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - } -] \ No newline at end of file +{ + "model": "api_v2.spell", + "pk": "deepmx_absolute-command", + "fields": { + "name": "Absolute Command", + "desc": "Deep Magic: clockwork You can control a construct you have built with a challenge rating of 6 or less. You can manipulate objects with your construct as precisely as its construction allows, and you perceive its surroundings through its sensory inputs as if you inhabited its body. The construct uses the caster's Proficiency bonus (modified by the construct's Strength and Dexterity scores). You can use the manipulators of the construct to perform any number of skill-based tasks, using the construct's Strength and Dexterity modifiers when using skills based on those particular abilities. Your body remains immobile, as if paralyzed, for the duration of the spell. The construct must remain within 100 feet of you. If it moves beyond this distance, the spell immediately ends and the caster's mind returns to his or her body.", + "document": "deepmx", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using higher-level spell slots, you may control a construct with a challenge rating 2 higher for each slot level you use above 4th. The construct's range also increases by 10 feet for each slot level.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_amplify-ley-field", + "fields": { + "name": "Amplify Ley Field", + "desc": "You create a faintly shimmering field of charged energy around yourself. Within that area, the intensity of ley lines you're able to draw on increases from weak to strong, or from strong to titanic. If no ley lines are near enough for you to draw on, you can treat the area of the spell itself as an unlocked, weak ley line.", + "document": "deepmx", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_animate-construct", + "fields": { + "name": "Animate Construct", + "desc": "Deep Magic: clockwork This spell animates a carefully prepared construct of Tiny size. The object acts immediately, on your turn, and can attack your opponents to the best of its ability. You can direct it not to attack, to attack particular enemies, or to perform other actions. You choose the object to animate, and you can change that choice each time you cast the spell. The cost of the body to be animated is 10 gp x its hit points. The body can be reused any number of times, provided it isn't severely damaged or destroyed. If no prepared construct body is available, you can animate a mass of loose metal or stone instead. Before casting, the loose objects must be arranged in a suitable shape (taking up to a minute), and the construct's hit points are halved. An animated construct has a Constitution of 10, Intelligence and Wisdom 3, and Charisma 1. Other characteristics are determined by the construct's size as follows. Size HP AC Attack STR DEX Spell Slot Tiny 15 12 +3, 1d4+4 4 16 1st Small 25 13 +4, 1d8+2 6 14 2nd Medium 40 14 +5, 2d6+1 10 12 3rd Large 50 15 +6, 2d10+2 14 10 4th Huge 80 16 +8, 2d12+4 18 8 5th Gargantuan 100 17 +10, 4d8+6 20 6 6th", + "document": "deepmx", + "level": 1, + "school": "transmutation", + "higher_level": "Casting this spell using higher level spell slots allows you to increase the size of the construct animated, as shown on the table.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_anomalous-object", + "fields": { + "name": "Anomalous Object", + "desc": "Deep Magic: temporal By touching an object, you retrieve another version of the object from elsewhere in time. If the object is attended, you must succeed on a melee spell attack roll against the creature holding or controlling the object. Any effect that affects the original object also affects the duplicate (charges spent, damage taken, etc.) and any effect that affects the duplicate also affects the original object. If either object is destroyed, both are destroyed. This spell does not affect sentient items or unique artifacts.", + "document": "deepmx", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_armored-heart", + "fields": { + "name": "Armored Heart", + "desc": "Deep Magic: clockwork The targeted creature gains resistance to bludgeoning, slashing, and piercing damage. This resistance can be overcome with adamantine or magical weapons.", + "document": "deepmx", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_armored-shell", + "fields": { + "name": "Armored Shell", + "desc": "Deep Magic: clockwork This spell creates a suit of magical studded leather armor (AC 12). It does not grant you proficiency in its use. Casters without the appropriate armor proficiency suffer disadvantage on any ability check, saving throw, or attack roll that involves Strength or Dexterity and cannot cast spells.", + "document": "deepmx", + "level": 1, + "school": "conjuration", + "higher_level": "Casting armored shell using a higher-level spell slot creates stronger armor: a chain shirt (AC 13) at level 2, scale mail (AC 14) at level 3, chain mail (AC 16) at level 4, and plate armor (AC 18) at level 5.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_banshee-wail", + "fields": { + "name": "Banshee Wail", + "desc": "You emit a soul-shattering wail. Every creature within a 30-foot cone who hears the wail must make a Wisdom saving throw. Those that fail take 6d10 psychic damage and become frightened of you; a frightened creature repeats the saving throw at the end of its turn, ending the effect on itself on a success. Those that succeed take 3d10 psychic damage and aren't frightened. This spell has no effect on constructs and undead.", + "document": "deepmx", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_beguiling-gift", + "fields": { + "name": "Beguiling Gift", + "desc": "Deep Magic: hieroglyph You implant a powerful suggestion into an item as you hand it to someone. If the person you hand it to accepts it willingly, they must make a successful Wisdom saving throw or use the object as it's meant to be used at their first opportunity: writing with a pen, consuming food or drink, wearing clothing, drawing a weapon, etc. After the first use, they're under no compulsion to continue using the object or even to keep it.", + "document": "deepmx", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_borrowing", + "fields": { + "name": "Borrowing", + "desc": "By touching a target, you gain one sense, movement type and speed, feat, language, immunity, or extraordinary ability of the target for the duration of the spell. The target also retains the use of the borrowed ability. An unwilling target prevents the effect with a successful Constitution saving throw. The target can be a living creature or one that's been dead no longer than 1 minute; a corpse makes no saving throw. You can possess only one borrowed power at a time.", + "document": "deepmx", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level, its duration increases to 1 hour. Additionally, the target loses the stolen power for the duration of the spell.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_call-the-hunter", + "fields": { + "name": "Call the Hunter", + "desc": "Deep Magic: clockwork You detach a portion of your soul to become the embodiment of justice in the form of a clockwork outsider known as a Zelekhut who will serve at your commands for the duration, so long as those commands are consistent with its desire to punish wrongdoers. You may give the creature commands as a bonus action; it acts either immediately before or after you.", + "document": "deepmx", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_circle-of-devestation", + "fields": { + "name": "Circle of Devestation", + "desc": "You create a 10-foot tall, 20-foot radius ring of destructive energy around a point you can see within range. The area inside the ring is difficult terrain. When you cast the spell and as a bonus action on each of your turns, you can choose one of the following damage types: cold, fire, lightning, necrotic, or radiant. Creatures and objects that touch the ring, that are inside it when it's created, or that end their turn inside the ring take 6d6 damage of the chosen type, or half damage with a successful Constitution saving throw. A creature or object reduced to 0 hit points by the spell is reduced to fine ash. At the start of each of your subsequent turns, the ring's radius expands by 20 feet. Any creatures or objects touched by the expanding ring are subject to its effects immediately.", + "document": "deepmx", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "1 mile", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_cloying-darkness", + "fields": { + "name": "Cloying Darkness", + "desc": "You reach out with a hand of decaying shadows. Make a ranged spell attack. If it hits, the target takes 2d8 necrotic damage and must make a Constitution saving throw. If it fails, its visual organs are enveloped in shadow until the start of your next turn, causing it to treat all lighting as if it's one step lower in intensity (it treats bright light as dim, dim light as darkness, and darkness as magical darkness).", + "document": "deepmx", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "2d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_cosmic-alignment", + "fields": { + "name": "Cosmic Alignment", + "desc": "Deep Magic: illumination You arrange the forces of the cosmos to your benefit. Choose a cosmic event from the Comprehension of the Starry Sky ability that affects spellcasting (conjunction, eclipse, or nova; listed after the spell). You cast spells as if under the effect of the cosmic event until the next sunrise or 24 hours have passed. When the ability requires you to expend your insight, you expend your ritual focus instead. This spell must be cast outdoors, and the casting of this spell is obvious to everyone within 100 miles of its casting when an appropriate symbol, such as a flaming comet, appears in the sky above your location while you are casting the spell. Conjunction: Planetary conjunctions destabilize minds and emotions. You can give one creature you can see disadvantage on a saving throw against one enchantment or illusion spell cast by you. Eclipse: Eclipses plunge the world into darkness and strengthen connections to the shadow plane. When you cast a spell of 5th level or lower that causes necrotic damage, you can reroll a number of damage dice up to your Intelligence modifier (minimum of one). You must use the new rolls. Nova: The nova is a powerful aid to divination spells. You can treat one divination spell you cast as though you had used a spell slot one level higher than the slot actually used.", + "document": "deepmx", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_cruor-of-visions", + "fields": { + "name": "Cruor of Visions", + "desc": "You prick your finger with a bone needle as you cast this spell, taking 1 necrotic damage. This drop of blood must be caught in a container such as a platter or a bowl, where it grows into a pool 1 foot in diameter. This pool acts as a crystal ball for the purpose of scrying. If you place a drop (or dried flakes) of another creature's blood in the cruor of visions, the creature has disadvantage on any Wisdom saving throw to resist scrying. Additionally, you can treat the pool of blood as a crystal ball of telepathy (see the crystal ball description in the Fifth Edition rules). I When you cast this spell using a spell slot of 7th level or higher, the pool of blood acts as either a crystal ball of mind reading or a crystal ball of true seeing (your choice when the spell is cast).", + "document": "deepmx", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_extract-foyson", + "fields": { + "name": "Extract Foyson", + "desc": "You extract the goodness in food, pulling all the nutrition out of three days' worth of meals and concentrating it into about a tablespoon of bland, flourlike powder. The flour can be mixed with liquid and drunk or baked into elven bread. Foyson used in this way still imparts all the nutritional value of the original food, for the amount consumed. The original food appears unchanged and though it's still filling, it has no nutritional value. Someone eating nothing but foyson-free food will eventually starve.", + "document": "deepmx", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, an additional three meals' worth of food can be extracted for each slot level above 1st. Ritual Focus. If you expend your ritual focus, you can choose to have each day's worth of foyson take the form of a slice of delicious elven bread.", + "target_type": "object", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_find-the-flaw", + "fields": { + "name": "Find the Flaw", + "desc": "Deep Magic: clockwork You touch one creature. The next attack roll that creature makes against a clockwork or metal construct, or any machine, is a critical hit.", + "document": "deepmx", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_gear-shield", + "fields": { + "name": "Gear Shield", + "desc": "Deep Magic: clockwork You cause a handful of gears to orbit the target's body. These shield the spell's target from incoming attacks, granting a +2 bonus to AC and to Dexterity and Constitution saving throws for the duration, without hindering the subject's movement, vision, or outgoing attacks.", + "document": "deepmx", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_gift-of-azathoth", + "fields": { + "name": "Gift of Azathoth", + "desc": "Deep Magic: void magic A willing creature you touch is imbued with the persistence of ultimate Chaos. Until the spell ends, the target has advantage on the first three death saving throws it attempts.", + "document": "deepmx", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 5th, 6th, or 7th level, the duration increases to 48 hours. When you cast this spell using a spell slot of 8th or 9th level, the duration increases to 72 hours.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours or until the target attempts a third death saving throw", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_greater-ley-pulse", + "fields": { + "name": "Greater Ley Pulse", + "desc": "You set up ley energy vibrations in a 20-foot cube within range, and name one type of damage. Each creature in the area must succeed on a Wisdom saving throw or lose immunity to the chosen damage type for the duration.", + "document": "deepmx", + "level": 7, + "school": "transmutation", + "higher_level": "When you cast this spell using a 9th-level spell slot, choose two damage types instead of one.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_gremlins", + "fields": { + "name": "Gremlins", + "desc": "Deep Magic: clockwork You target a construct and summon a plague of invisible spirits to harass it. The target resists the spell and negates its effect with a successful Wisdom saving throw. While the spell remains in effect, the construct has disadvantage on attack rolls, ability checks, and saving throws, and it takes 3d8 force damage at the start of each of its turns as it is magically disassembled by the spirits.", + "document": "deepmx", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th or higher, the damage increases by 1d8 for each slot above 4th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "force" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_grinding-gears", + "fields": { + "name": "Grinding Gears", + "desc": "Deep Magic: clockwork You designate a spot within range, and massive gears emerge from the ground at that spot, creating difficult terrain in a 20-foot radius. Creatures that move in the area must make successful Dexterity saving throws after every 10 feet of movement or when they stand up. Failure indicates that the creature falls prone and takes 1d8 points of bludgeoning damage.", + "document": "deepmx", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "1d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_hearth-charm", + "fields": { + "name": "Hearth Charm", + "desc": "This spell makes flammable material burn twice as long as normal.", + "document": "deepmx", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_hellforging", + "fields": { + "name": "Hellforging", + "desc": "Deep Magic: clockwork You spend an hour calling forth a disembodied evil spirit. At the end of that time, the summoned spirit must make a Charisma saving throw. If the saving throw succeeds, you take 2d10 psychic damage plus 2d10 necrotic damage from waves of uncontrolled energy rippling out from the disembodied spirit. You can maintain the spell, forcing the subject to repeat the saving throw at the end of each of your turns, with the same consequence to you for each failure. If you choose not to maintain the spell or are unable to do so, the evil spirit returns to its place of torment and cannot be recalled. If the saving throw fails, the summoned spirit is transferred into the waiting soul gem and immediately animates the constructed body. The subject is now a hellforged; it loses all of its previous racial traits and gains gearforged traits except as follows: Vulnerability: Hellforged are vulnerable to radiant damage. Evil Mind: Hellforged have disadvantage on saving throws against spells and abilities of evil fiends or aberrations that effect the mind or behavior. Past Life: The hellforged retains only a vague sense of who it was in its former existence, but these memories are enough for it to gain proficiency in one skill. Languages: Hellforged speak Common, Machine Speech, and Infernal or Abyssal Up to four other spellcasters of at least 5th level can assist you in the ritual. Each assistant increases the DC of the Charisma saving throw by 1. In the event of a failed saving throw, the spellcaster and each assistant take damage. An assistant who drops out of the casting can't rejoin.", + "document": "deepmx", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_hods-gift", + "fields": { + "name": "Hod's Gift", + "desc": "The target gains blindsight to a range of 60 feet.", + "document": "deepmx", + "level": 5, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the duration is increased by 1 hour for every slot above 5th level.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_imbue-spell", + "fields": { + "name": "Imbue Spell", + "desc": "Deep Magic: clockwork You imbue a spell of 1st thru 3rd level that has a casting time of instantaneous onto a gear worth 100 gp per level of spell you are imbuing. At the end of the ritual, the gear is placed into a piece of clockwork that includes a timer or trigger mechanism. When the timer or trigger goes off, the spell is cast. If the range of the spell was Touch, it effects only a target touching the device. If the spell had a range in feet, the spell is cast on the closest viable target within range, based on the nature of the spell. Spells with a range of Self or Sight can't be imbued. If the gear is placed with a timer, it activates when the time elapses regardless of whether a legitimate target is available.", + "document": "deepmx", + "level": 5, + "school": "transmutation", + "higher_level": "You can perform this ritual as a 7th-level spell to imbue a spell of 4th or 5th level.", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_jotuns-jest", + "fields": { + "name": "Jotun's Jest", + "desc": "Giants never tire of having fun with this spell. It causes a weapon or other item to vastly increase in size, temporarily becoming sized for a Gargantuan creature. The item weighs 12 times its original weight and in most circumstances cannot be used effectively by creatures smaller than Gargantuan size. The item retains its usual qualities (including magical powers and effects) and returns to normal size when the spell ends.", + "document": "deepmx", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_land-bond", + "fields": { + "name": "Land Bond", + "desc": "You touch a willing creature and infuse it with ley energy, creating a bond between the creature and the land. For the duration of the spell, if the target is in contact with the ground, the target has advantage on saving throws and ability checks made to avoid being moved or knocked prone against its will. Additionally, the creature ignores nonmagical difficult terrain and is immune to effects from extreme environments such as heat, cold (but not cold or fire damage), and altitude.", + "document": "deepmx", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_lesser-ley-pulse", + "fields": { + "name": "Lesser Ley Pulse", + "desc": "You set up ley energy vibrations in a 10-foot cube within range, and name one type of damage. Each creature in the area must make a successful Wisdom saving throw or lose resistance to the chosen damage type for the duration of the spell.", + "document": "deepmx", + "level": 5, + "school": "transmutation", + "higher_level": "When you cast this spell using a 7th-level spell slot, choose two damage types instead of one.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_ley-disruption", + "fields": { + "name": "Ley Disruption", + "desc": "You create a 15-foot-radius sphere filled with disruptive ley energy. The sphere is centered around a point you can see within range. Surfaces inside the sphere shift erratically, becoming difficult terrain for the duration. Any creature in the area when it appears, that starts its turn in the area, or that enters the area for the first time on a turn must succeed on a Dexterity saving throw or fall prone. If you cast this spell in an area within the influence of a ley line, creatures have disadvantage on their saving throws against its effect. Special. A geomancer with a bound ley line is “within the influence of a ley line” for purposes of ley disruption as long as he or she is on the same plane as the bound line.", + "document": "deepmx", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "50 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 15, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_ley-energy-bolt", + "fields": { + "name": "Ley Energy Bolt", + "desc": "You transform ambient ley power into a crackling bolt of energy 100 feet long and 5 feet wide. Each creature in the line takes 5d8 force damage, or half damage with a successful Dexterity saving throw. The bolt passes through the first inanimate object in its path, and creatures on the other side of the obstacle receive no bonus to their saving throw from cover. The bolt stops if it strikes a second object.", + "document": "deepmx", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bolt's damage increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_ley-leech", + "fields": { + "name": "Ley Leech", + "desc": "You channel destructive ley energy through your touch. Make a melee spell attack against a creature within your reach. The target takes 8d10 necrotic damage and must succeed on a Constitution saving throw or have disadvantage on attack rolls, saving throws, and ability checks. An affected creature repeats the saving throw at the end of its turn, ending the effect on itself with a success. This spell has no effect against constructs or undead.", + "document": "deepmx", + "level": 5, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the spell's damage increases by 1d10 for each slot level above 5th.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "8d10", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_ley-sense", + "fields": { + "name": "Ley Sense", + "desc": "You tune your senses to the pulse of ambient ley energy flowing through the world. For the duration, you gain tremorsense with a range of 20 feet and you are instantly aware of the presence of any ley line within 5 miles. You know the distance and direction to every ley line within that range.", + "document": "deepmx", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_ley-storm", + "fields": { + "name": "Ley Storm", + "desc": "A roiling stormcloud of ley energy forms, centered around a point you can see and extending horizontally to a radius of 360 feet, with a thickness of 30 feet. Shifting color shoots through the writhing cloud, and thunder roars out of it. Each creature under the cloud at the moment when it's created (no more than 5,000 feet beneath it) takes 2d6 thunder damage and is disruptive aura spell. Rounds 5-10. Flashes of multicolored light burst through and out of the cloud, causing creatures to have disadvantage on Wisdom (Perception) checks that rely on sight while they are beneath the cloud. In addition, each round, you trigger a burst of energy that fills a 20-foot sphere centered on a point you can see beneath the cloud. Each creature in the sphere takes 4d8 force damage (no saving throw). Special. A geomancer who casts this spell regains 4d10 hit points.", + "document": "deepmx", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "Special", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "thunder" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_ley-surge", + "fields": { + "name": "Ley Surge", + "desc": "You unleash the power of a ley line within 5 miles, releasing a spark that flares into a 30-foot sphere centered around a point within 150 feet of you. Each creature in the sphere takes 14d6 force damage and is stunned for 1 minute; a successful Constitution saving throw halves the damage and negates the stun. A stunned creature repeats the saving throw at the end of its turn, ending the effect on itself on a success. Special. A geomancer with a bound ley line can cast this spell as long as he or she is on the same plane as the bound line.", + "document": "deepmx", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "14d6", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_ley-whip", + "fields": { + "name": "Ley Whip", + "desc": "You channel the power of a ley line within 1 mile into a crackling tendril of multicolored ley energy. The tendril extends from your hand but doesn't interfere with your ability to hold or manipulate objects. When you cast the spell and as a bonus action on subsequent turns, you can direct the tendril to strike a target within 50 feet of you. Make a melee spell attack; on a hit, the tendril does 3d8 force damage and the target must make a Strength saving throw. If the saving throw fails, you can push the target away or pull it closer, up to 10 feet in either direction. Special. A geomancer with a bound ley line can cast this spell as long as he or she is on the same plane as the bound line.", + "document": "deepmx", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_lokis-gift", + "fields": { + "name": "Loki's Gift", + "desc": "Loki's gift makes even the most barefaced lie seem strangely plausible: you gain advantage to Charisma (Deception) checks for whatever you're currently saying. If your Deception check fails, the creature knows that you tried to manipulate it with magic. If you lie to a creature that has a friendly attitude toward you and it fails a Charisma saving throw, you can also coax him or her to reveal a potentially embarrassing secret. The secret can involve wrongdoing (adultery, cheating at tafl, a secret fear, etc.) but not something life-threatening or dishonorable enough to earn the subject repute as a nithling. The verbal component of this spell is the lie you are telling.", + "document": "deepmx", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_machine-sacrifice", + "fields": { + "name": "Machine Sacrifice", + "desc": "Deep Magic: clockwork You sacrifice a willing construct you can see to imbue a willing target with construct traits. The target gains resistance to all nonmagical damage and gains immunity to the blinded, charmed, deafened, frightened, petrified, and poisoned conditions.", + "document": "deepmx", + "level": 8, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_machine-speech", + "fields": { + "name": "Machine Speech", + "desc": "Deep Magic: clockwork Your voice, and to a lesser extent your mind, changes to communicate only in the whirring clicks of machine speech. Until the end of your next turn, all clockwork spells you cast have advantage on their attack rolls or the targets have disadvantage on their saving throws.", + "document": "deepmx", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_machines-load", + "fields": { + "name": "Machine's Load", + "desc": "Deep Magic: clockwork You touch a creature and give it the capacity to carry, lift, push, or drag weight as if it were one size category larger. If you're using the encumbrance rules, the target is not subject to penalties for weight. Furthermore, the subject can carry loads that would normally be unwieldy.", + "document": "deepmx", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot higher than 1st, you can touch one additional creature for each spell level.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_mass-blade-ward", + "fields": { + "name": "Mass Blade Ward", + "desc": "You make a protective gesture toward your allies. Choose three creatures that you can see within range. Until the end of your next turn, the targets have resistance against bludgeoning, piercing, and slashing damage from weapon attacks. If a target moves farther than 30 feet from you, the effect ends for that creature.", + "document": "deepmx", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_mass-repair-metal", + "fields": { + "name": "Mass Repair Metal", + "desc": "Deep Magic: clockwork As repair metal, but you can affect all metal within range. You repair 1d8 + 5 damage to a metal object or construct by sealing up rents and bending metal back into place.", + "document": "deepmx", + "level": 5, + "school": "transmutation", + "higher_level": "Casting mass repair metal as a 6th-level spell repairs 2d8 + 10 damage.", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_mechanical-union", + "fields": { + "name": "Mechanical Union", + "desc": "Deep Magic: clockwork You can take control of a construct by voice or mental commands. The construct makes a Wisdom saving throw to resist the spell, and it gets advantage on the saving throw if its CR equals or exceeds your level in the class used to cast this spell. Once a command is given, the construct does everything it can to complete the command. Giving a new command takes an action. Constructs will risk harm, even go into combat, on your orders but will not self-destruct; giving such an order ends the spell.", + "document": "deepmx", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_molechs-blessing", + "fields": { + "name": "Molech's Blessing", + "desc": "Deep Magic: clockwork ritual You call upon the dark blessings of the furnace god Molech. In an hour-long ritual begun at midnight, you dedicate a living being to Molech by branding the deity's symbol onto the victim's forehead. If the ritual is completed and the victim fails to make a successful Wisdom saving throw (or the victim chooses not to make one), the being is transformed into an avatar of Molech under your control. The avatar is 8 feet tall and appears to be made of black iron wreathed in flames. Its eyes, mouth, and a portion of its torso are cut away to show the churning fire inside that crackles with wailing voices. The avatar has all the statistics and abilities of an earth elemental, with the following differences: Alignment is Neutral Evil; Speed is 50 feet and it cannot burrow or use earth glide; it gains the fire form ability of a fire elemental, but it cannot squeeze through small spaces; its Slam does an additional 1d10 fire damage. This transformation lasts for 24 hours. At the end of that time, the subject returns to its normal state and takes 77 (14d10) fire damage, or half damage with a successful DC 15 Constitution saving throw.", + "document": "deepmx", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "77", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_move-the-cosmic-wheel", + "fields": { + "name": "Move the Cosmic Wheel", + "desc": "Deep Magic: clockwork You wind your music box and call forth a piece of another plane of existence with which you are familiar, either through personal experience or intense study. The magic creates a bubble of space with a 30-foot radius within range of you and at a spot you designate. The portion of your plane that's inside the bubble swaps places with a corresponding portion of the plane your music box is attuned with. There is a 10% chance that the portion of the plane you summon arrives with native creatures on it. Inanimate objects and non-ambulatory life (like trees) are cut off at the edge of the bubble, while living creatures that don't fit inside the bubble are shunted outside of it before the swap occurs. Otherwise, creatures from both planes that are caught inside the bubble are sent along with their chunk of reality to the other plane for the duration of the spell unless they make a successful Charisma saving throw when the spell is cast; with a successful save, a creature can choose whether to shift planes with the bubble or leap outside of it a moment before the shift occurs. Any natural reaction between the two planes occurs normally (fire spreads, water flows, etc.) while energy (such as necrotic energy) leaks slowly across the edge of the sphere (no more than a foot or two per hour). Otherwise, creatures and effects can move freely across the boundary of the sphere; for the duration of the spell, it becomes a part of its new location to the fullest extent possible, given the natures of the two planes. The two displaced bubbles shift back to their original places automatically after 24 hours. Note that the amount of preparation involved (acquiring and attuning the music box) precludes this spell from being cast on the spur of the moment. Because of its unpredictable and potentially wide-ranging effect, it's also advisable to discuss your interest in this spell with your GM before adding it to your character's repertoire.", + "document": "deepmx", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_overclock", + "fields": { + "name": "Overclock", + "desc": "Deep Magic: clockwork You cause a targeted piece of clockwork to speed up past the point of control for the duration of the spell. The targeted clockwork can't cast spells with verbal components or even communicate effectively (all its utterances sound like grinding gears). At the start of each of its turns, the target must make a Wisdom saving throw. If the saving throw fails, the clockwork moves at three times its normal speed in a random direction and its turn ends; it can't perform any other actions. If the saving throw succeeds, then until the end of its turn, the clockwork's speed is doubled and it gains an additional action, which must be Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object. When the spell ends, the clockwork takes 2d8 force damage. It also must be rewound or refueled and it needs to have its daily maintenance performed immediately, if it relies on any of those things.", + "document": "deepmx", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "force" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_power-word-restore", + "fields": { + "name": "Power Word Restore", + "desc": "Deep Magic: clockwork You speak a word of power, and energy washes over a single construct you touch. The construct regains all of its lost hit points, all negative conditions on the construct end, and it can use a reaction to stand up, if it was prone.", + "document": "deepmx", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_read-memory", + "fields": { + "name": "Read Memory", + "desc": "Deep Magic: clockwork You copy the memories of one memory gear into your own mind. You recall these memories as if you had experienced them but without any emotional attachment or context.", + "document": "deepmx", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_repair-metal", + "fields": { + "name": "Repair Metal", + "desc": "Deep Magic: clockwork A damaged construct or metal object regains 1d8 + 5 hit points when this spell is cast on it.", + "document": "deepmx", + "level": 2, + "school": "transmutation", + "higher_level": "The spell restores 2d8 + 10 hit points at 4th level, 3d8 + 15 at 6th level, and 4d8 + 20 at 8th level.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_risen-road", + "fields": { + "name": "Risen Road", + "desc": "When you cast this spell, you open a glowing portal into the plane of shadow. The portal remains open for 1 minute, until 10 creatures step through it, or until you collapse it (no action required). Stepping through the portal places you on a shadow road leading to a destination within 50 miles, or in a direction specified by you. The road is in ideal condition. You and your companions can travel it safely at a normal pace, but you can't rest on the road; if you stop for more than 10 minutes, the spell expires and dumps you back into the real world at a random spot within 10 miles of your starting point. The spell expires 2d6 hours after being cast. When that happens, travelers on the road are safely deposited near their specified destination or 50 miles from their starting point in the direction that was specified when the spell was cast. Travelers never incur exhaustion no matter how many hours they spent walking or riding on the shadow road. The temporary shadow road ceases to exist; anything left behind is lost in the shadow realm. Each casting of risen road creates a new shadow road. A small chance exists that a temporary shadow road might intersect with an existing shadow road, opening the possibility for meeting other travelers or monsters, or for choosing a different destination mid-journey. The likelihood is entirely up to the GM.", + "document": "deepmx", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "2-12 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_robe-of-shards", + "fields": { + "name": "Robe of Shards", + "desc": "Deep Magic: clockwork You create a robe of metal shards, gears, and cogs that provides a base AC of 14 + your Dexterity modifier. As a bonus action while protected by a robe of shards, you can command bits of metal from a fallen foe to be absorbed by your robe; each infusion of metal increases your AC by 1, to a maximum of 18 + Dexterity modifier. You can also use a bonus action to dispel the robe, causing it to explode into a shower of flying metal that does 8d6 slashing damage, +1d6 per point of basic (non-Dexterity) AC above 14, to all creatures within 30 feet of you.", + "document": "deepmx", + "level": 6, + "school": "abjuration", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_shadow-realm-gateway", + "fields": { + "name": "Shadow Realm Gateway", + "desc": "By drawing a circle of black chalk up to 15 feet in diameter and chanting for one minute, you open a portal directly into the Shadow Realm. The portal fills the chalk circle and appears as a vortex of inky blackness; nothing can be seen through it. Any object or creature that passes through the portal instantly arrives safely in the Shadow Realm. The portal remains open for one minute or until you lose concentration on it, and it can be used to travel between the Shadow Realm and the chalk circle, in both directions, as many times as desired during the spell's duration. This spell can only be cast as a ritual.", + "document": "deepmx", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_shield-of-star-and-shadow", + "fields": { + "name": "Shield of Star and Shadow", + "desc": "You wrap yourself in a protective shroud of the night sky made from swirling shadows punctuated with twinkling motes of light. The shroud grants you resistance against either radiant or necrotic damage (choose when the spell is cast). You also shed dim light in a 10-foot radius. You can end the spell early by using an action to dismiss it.", + "document": "deepmx", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_snowblind-stare", + "fields": { + "name": "Snowblind Stare", + "desc": "Your eyes burn with a bright, cold light that inflicts snow blindness on a creature you target within 30 feet of you. If the target fails a Constitution saving throw, it suffers the first stage of snow blindness (see [Conditions](https://api.open5e.com/sections/conditions)), or the second stage of snow blindness if it already has the first stage. The target recovers as described in [Conditions](https://api.open5e.com/sections/conditions).", + "document": "deepmx", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "2 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_soothsayers-shield", + "fields": { + "name": "Soothsayer's Shield", + "desc": "This spell can be cast when you are hit by an enemy's attack. Until the start of your next turn, you have a +4 bonus to AC, including against the triggering attack.", + "document": "deepmx", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_soul-of-the-machine", + "fields": { + "name": "Soul of the Machine", + "desc": "Deep Magic: clockwork One willing creature you touch becomes immune to mind-altering effects and psychic damage for the spell's duration.", + "document": "deepmx", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_sphere-of-order", + "fields": { + "name": "Sphere of Order", + "desc": "Deep Magic: clockwork You surround yourself with the perfect order of clockwork. Chaotic creatures that start their turn in the area or enter it on their turn take 5d8 psychic damage. The damage is 8d8 for Chaotic aberrations, celestials, elementals, and fiends. A successful Wisdom saving throw halves the damage, but Chaotic creatures (the only ones affected by the spell) make the saving throw with disadvantage.", + "document": "deepmx", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_spire-of-stone", + "fields": { + "name": "Spire of Stone", + "desc": "You cause a spire of rock to burst out of the ground, floor, or another surface beneath your feet. The spire is as wide as your space, and lifting you, it can rise up to 20 feet in height. When the spire appears, a creature within 5 feet of you must succeed on a Dexterity saving throw or fall prone. As a bonus action on your turn, you can cause the spire to rise or descend up to 20 feet to a maximum height of 40 feet. If you move off of the spire, it immediately collapses back into the ground. When the spire disappears, it leaves the surface from which it sprang unharmed. You can create a new spire as a bonus action for the duration of the spell.", + "document": "deepmx", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_strength-of-the-underworld", + "fields": { + "name": "Strength of the Underworld", + "desc": "You call on the power of the dark gods of the afterlife to strengthen the target's undead energy. The spell's target has advantage on saving throws against Turn Undead while the spell lasts. If this spell is cast on a corpse that died from darakhul fever, the corpse gains a +5 bonus on its roll to determine whether it rises as a darakhul.", + "document": "deepmx", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_summon-old-ones-avatar", + "fields": { + "name": "Summon Old One's Avatar", + "desc": "Deep Magic: void magic You summon a worldly incarnation of a Great Old One, which appears in an unoccupied space you can see within range. This avatar manifests as a Void speaker (Creature Codex NPC) augmented by boons from the Void. Choose one of the following options for the type of avatar that appears (other options might be available if the GM allows): Avatar of Cthulhu. The Void speaker is a goat-man with the ability to cast black goat's blessing and unseen strangler at will. Avatar of Yog-Sothoth. The Void speaker is a human with 1d4 + 1 flesh warps and the ability to cast gift of Azathoth and thunderwave at will. When the avatar appears, you must make a Charisma saving throw. If it succeeds, the avatar is friendly to you and your allies. If it fails, the avatar is friendly to no one and attacks the nearest creature to it, pursuing and fighting for as long as possible. Roll initiative for the avatar, which takes its own turn. If friendly to you, it obeys verbal commands you issue to it (no action required by you). If the avatar has no command, it attacks the nearest creature. Each round you maintain concentration on the spell, you must make a successful DC 15 Wisdom saving throw or take 1d6 psychic damage. If the cumulative total of this damage exceeds your Wisdom score, you gain one point of Void taint and you are afflicted with a short-term madness. The same penalty recurs when the damage exceeds twice your Wisdom, three times your Wisdom, etc. The avatar disappears when it drops to 0 hit points or when the spell ends. If you stop concentrating on the spell before an hour has elapsed, the avatar becomes uncontrolled and hostile and doesn't disappear until 1d6 rounds later or it's killed.", + "document": "deepmx", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_tick-stop", + "fields": { + "name": "Tick Stop", + "desc": "Deep Magic: clockwork You speak a word and the target construct can take one action or bonus action on its next turn, but not both. The construct is immune to further tick stops from the same caster for 24 hours.", + "document": "deepmx", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_timeless-engine", + "fields": { + "name": "Timeless Engine", + "desc": "Deep Magic: clockwork You halt the normal processes of degradation and wear in a nonmagical clockwork device, making normal maintenance unnecessary and slowing fuel consumption to 1/10th of normal. For magical devices and constructs, the spell greatly reduces wear. A magical clockwork device, machine, or creature that normally needs daily maintenance only needs care once a year; if it previously needed monthly maintenance, it now requires attention only once a decade.", + "document": "deepmx", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_winding-key", + "fields": { + "name": "Winding Key", + "desc": "Deep Magic: clockwork You target a construct, giving it an extra action or move on each of its turns.", + "document": "deepmx", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_wotans-rede", + "fields": { + "name": "Wotan's Rede", + "desc": "You recite a poem in the Northern tongue, sent to your lips by Wotan himself, to gain supernatural insight or advice. Your next Intelligence or Charisma check within 1 minute is made with advantage, and you can include twice your proficiency bonus. At the GM's discretion, this spell can instead provide a piece of general advice equivalent to an contact other plane.", + "document": "deepmx", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "deepmx_write-memory", + "fields": { + "name": "Write Memory", + "desc": "Deep Magic: clockwork You copy your memories, or those learned from the spell read memory, onto an empty memory gear.", + "document": "deepmx", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +} +] diff --git a/data/v2/kobold-press/deepmx/SpellCastingOption.json b/data/v2/kobold-press/deepmx/SpellCastingOption.json index 3454beb5..e11b492c 100644 --- a/data/v2/kobold-press/deepmx/SpellCastingOption.json +++ b/data/v2/kobold-press/deepmx/SpellCastingOption.json @@ -1,2030 +1,2030 @@ [ - { - "model": "api_v2.spellcastingoption", - "pk": 4726, - "fields": { - "parent": "deepmx_absolute-command", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4728, - "fields": { - "parent": "deepmx_absolute-command", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4729, - "fields": { - "parent": "deepmx_absolute-command", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4730, - "fields": { - "parent": "deepmx_absolute-command", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4731, - "fields": { - "parent": "deepmx_absolute-command", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4732, - "fields": { - "parent": "deepmx_absolute-command", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "0" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4733, - "fields": { - "parent": "deepmx_amplify-ley-field", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4734, - "fields": { - "parent": "deepmx_animate-construct", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4736, - "fields": { - "parent": "deepmx_animate-construct", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4737, - "fields": { - "parent": "deepmx_animate-construct", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4738, - "fields": { - "parent": "deepmx_animate-construct", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4739, - "fields": { - "parent": "deepmx_animate-construct", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4740, - "fields": { - "parent": "deepmx_animate-construct", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4741, - "fields": { - "parent": "deepmx_animate-construct", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4742, - "fields": { - "parent": "deepmx_animate-construct", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4743, - "fields": { - "parent": "deepmx_animate-construct", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4744, - "fields": { - "parent": "deepmx_anomalous-object", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4745, - "fields": { - "parent": "deepmx_armored-heart", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4746, - "fields": { - "parent": "deepmx_armored-shell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4748, - "fields": { - "parent": "deepmx_armored-shell", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4749, - "fields": { - "parent": "deepmx_armored-shell", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4750, - "fields": { - "parent": "deepmx_armored-shell", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4751, - "fields": { - "parent": "deepmx_armored-shell", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4752, - "fields": { - "parent": "deepmx_armored-shell", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4753, - "fields": { - "parent": "deepmx_armored-shell", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4754, - "fields": { - "parent": "deepmx_armored-shell", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4755, - "fields": { - "parent": "deepmx_armored-shell", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4756, - "fields": { - "parent": "deepmx_banshee-wail", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4757, - "fields": { - "parent": "deepmx_beguiling-gift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4758, - "fields": { - "parent": "deepmx_borrowing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4760, - "fields": { - "parent": "deepmx_borrowing", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4761, - "fields": { - "parent": "deepmx_borrowing", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4762, - "fields": { - "parent": "deepmx_borrowing", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4763, - "fields": { - "parent": "deepmx_borrowing", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4764, - "fields": { - "parent": "deepmx_borrowing", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4765, - "fields": { - "parent": "deepmx_borrowing", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4766, - "fields": { - "parent": "deepmx_call-the-hunter", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4767, - "fields": { - "parent": "deepmx_circle-of-devestation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4768, - "fields": { - "parent": "deepmx_cloying-darkness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4770, - "fields": { - "parent": "deepmx_cloying-darkness", - "type": "slot_level_2", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4771, - "fields": { - "parent": "deepmx_cloying-darkness", - "type": "slot_level_3", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4772, - "fields": { - "parent": "deepmx_cloying-darkness", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4773, - "fields": { - "parent": "deepmx_cloying-darkness", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4774, - "fields": { - "parent": "deepmx_cloying-darkness", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4775, - "fields": { - "parent": "deepmx_cloying-darkness", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4776, - "fields": { - "parent": "deepmx_cloying-darkness", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4777, - "fields": { - "parent": "deepmx_cloying-darkness", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4778, - "fields": { - "parent": "deepmx_cosmic-alignment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4779, - "fields": { - "parent": "deepmx_cosmic-alignment", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4780, - "fields": { - "parent": "deepmx_cruor-of-visions", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4781, - "fields": { - "parent": "deepmx_extract-foyson", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4782, - "fields": { - "parent": "deepmx_extract-foyson", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4784, - "fields": { - "parent": "deepmx_extract-foyson", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4785, - "fields": { - "parent": "deepmx_extract-foyson", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4786, - "fields": { - "parent": "deepmx_extract-foyson", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4787, - "fields": { - "parent": "deepmx_extract-foyson", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4788, - "fields": { - "parent": "deepmx_extract-foyson", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4789, - "fields": { - "parent": "deepmx_extract-foyson", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4790, - "fields": { - "parent": "deepmx_extract-foyson", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4791, - "fields": { - "parent": "deepmx_extract-foyson", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4792, - "fields": { - "parent": "deepmx_find-the-flaw", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4793, - "fields": { - "parent": "deepmx_gear-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4794, - "fields": { - "parent": "deepmx_gift-of-azathoth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4796, - "fields": { - "parent": "deepmx_gift-of-azathoth", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4797, - "fields": { - "parent": "deepmx_gift-of-azathoth", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4798, - "fields": { - "parent": "deepmx_gift-of-azathoth", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4799, - "fields": { - "parent": "deepmx_gift-of-azathoth", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4800, - "fields": { - "parent": "deepmx_gift-of-azathoth", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "48 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4801, - "fields": { - "parent": "deepmx_gift-of-azathoth", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4802, - "fields": { - "parent": "deepmx_gift-of-azathoth", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "72 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4803, - "fields": { - "parent": "deepmx_greater-ley-pulse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4805, - "fields": { - "parent": "deepmx_greater-ley-pulse", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4806, - "fields": { - "parent": "deepmx_greater-ley-pulse", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4807, - "fields": { - "parent": "deepmx_gremlins", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4809, - "fields": { - "parent": "deepmx_gremlins", - "type": "slot_level_5", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4810, - "fields": { - "parent": "deepmx_gremlins", - "type": "slot_level_6", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4811, - "fields": { - "parent": "deepmx_gremlins", - "type": "slot_level_7", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4812, - "fields": { - "parent": "deepmx_gremlins", - "type": "slot_level_8", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4813, - "fields": { - "parent": "deepmx_gremlins", - "type": "slot_level_9", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4814, - "fields": { - "parent": "deepmx_grinding-gears", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4815, - "fields": { - "parent": "deepmx_hearth-charm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4816, - "fields": { - "parent": "deepmx_hellforging", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4817, - "fields": { - "parent": "deepmx_hellforging", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4818, - "fields": { - "parent": "deepmx_hods-gift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4820, - "fields": { - "parent": "deepmx_hods-gift", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4821, - "fields": { - "parent": "deepmx_hods-gift", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4822, - "fields": { - "parent": "deepmx_hods-gift", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4823, - "fields": { - "parent": "deepmx_hods-gift", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4824, - "fields": { - "parent": "deepmx_imbue-spell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4825, - "fields": { - "parent": "deepmx_imbue-spell", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4827, - "fields": { - "parent": "deepmx_imbue-spell", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4828, - "fields": { - "parent": "deepmx_imbue-spell", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4829, - "fields": { - "parent": "deepmx_imbue-spell", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4830, - "fields": { - "parent": "deepmx_imbue-spell", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4831, - "fields": { - "parent": "deepmx_jotuns-jest", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4832, - "fields": { - "parent": "deepmx_land-bond", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4833, - "fields": { - "parent": "deepmx_lesser-ley-pulse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4835, - "fields": { - "parent": "deepmx_lesser-ley-pulse", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4836, - "fields": { - "parent": "deepmx_lesser-ley-pulse", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4837, - "fields": { - "parent": "deepmx_lesser-ley-pulse", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4838, - "fields": { - "parent": "deepmx_lesser-ley-pulse", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4839, - "fields": { - "parent": "deepmx_ley-disruption", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4840, - "fields": { - "parent": "deepmx_ley-energy-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4842, - "fields": { - "parent": "deepmx_ley-energy-bolt", - "type": "slot_level_4", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4843, - "fields": { - "parent": "deepmx_ley-energy-bolt", - "type": "slot_level_5", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4844, - "fields": { - "parent": "deepmx_ley-energy-bolt", - "type": "slot_level_6", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4845, - "fields": { - "parent": "deepmx_ley-energy-bolt", - "type": "slot_level_7", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4846, - "fields": { - "parent": "deepmx_ley-energy-bolt", - "type": "slot_level_8", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4847, - "fields": { - "parent": "deepmx_ley-energy-bolt", - "type": "slot_level_9", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4848, - "fields": { - "parent": "deepmx_ley-leech", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4850, - "fields": { - "parent": "deepmx_ley-leech", - "type": "slot_level_6", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4851, - "fields": { - "parent": "deepmx_ley-leech", - "type": "slot_level_7", - "damage_roll": "10d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4852, - "fields": { - "parent": "deepmx_ley-leech", - "type": "slot_level_8", - "damage_roll": "11d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4853, - "fields": { - "parent": "deepmx_ley-leech", - "type": "slot_level_9", - "damage_roll": "12d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4854, - "fields": { - "parent": "deepmx_ley-sense", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4855, - "fields": { - "parent": "deepmx_ley-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4856, - "fields": { - "parent": "deepmx_ley-surge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4857, - "fields": { - "parent": "deepmx_ley-whip", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4858, - "fields": { - "parent": "deepmx_lokis-gift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4859, - "fields": { - "parent": "deepmx_machine-sacrifice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4860, - "fields": { - "parent": "deepmx_machine-speech", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4861, - "fields": { - "parent": "deepmx_machines-load", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4863, - "fields": { - "parent": "deepmx_machines-load", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4864, - "fields": { - "parent": "deepmx_machines-load", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4865, - "fields": { - "parent": "deepmx_machines-load", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4866, - "fields": { - "parent": "deepmx_machines-load", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4867, - "fields": { - "parent": "deepmx_machines-load", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4868, - "fields": { - "parent": "deepmx_machines-load", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4869, - "fields": { - "parent": "deepmx_machines-load", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4870, - "fields": { - "parent": "deepmx_machines-load", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4871, - "fields": { - "parent": "deepmx_mass-blade-ward", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4872, - "fields": { - "parent": "deepmx_mass-repair-metal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4874, - "fields": { - "parent": "deepmx_mass-repair-metal", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4875, - "fields": { - "parent": "deepmx_mass-repair-metal", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4876, - "fields": { - "parent": "deepmx_mass-repair-metal", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4877, - "fields": { - "parent": "deepmx_mass-repair-metal", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4878, - "fields": { - "parent": "deepmx_mechanical-union", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4879, - "fields": { - "parent": "deepmx_molechs-blessing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4880, - "fields": { - "parent": "deepmx_move-the-cosmic-wheel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4881, - "fields": { - "parent": "deepmx_overclock", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4882, - "fields": { - "parent": "deepmx_power-word-restore", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4883, - "fields": { - "parent": "deepmx_read-memory", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4884, - "fields": { - "parent": "deepmx_repair-metal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4886, - "fields": { - "parent": "deepmx_repair-metal", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4887, - "fields": { - "parent": "deepmx_repair-metal", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4888, - "fields": { - "parent": "deepmx_repair-metal", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4889, - "fields": { - "parent": "deepmx_repair-metal", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4890, - "fields": { - "parent": "deepmx_repair-metal", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4891, - "fields": { - "parent": "deepmx_repair-metal", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4892, - "fields": { - "parent": "deepmx_repair-metal", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4893, - "fields": { - "parent": "deepmx_risen-road", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4894, - "fields": { - "parent": "deepmx_robe-of-shards", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4895, - "fields": { - "parent": "deepmx_shadow-realm-gateway", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4896, - "fields": { - "parent": "deepmx_shadow-realm-gateway", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4897, - "fields": { - "parent": "deepmx_shield-of-star-and-shadow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4898, - "fields": { - "parent": "deepmx_snowblind-stare", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4899, - "fields": { - "parent": "deepmx_soothsayers-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4900, - "fields": { - "parent": "deepmx_soul-of-the-machine", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4901, - "fields": { - "parent": "deepmx_sphere-of-order", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4902, - "fields": { - "parent": "deepmx_spire-of-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4903, - "fields": { - "parent": "deepmx_strength-of-the-underworld", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4904, - "fields": { - "parent": "deepmx_summon-old-ones-avatar", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4905, - "fields": { - "parent": "deepmx_summon-old-ones-avatar", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4906, - "fields": { - "parent": "deepmx_tick-stop", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4907, - "fields": { - "parent": "deepmx_timeless-engine", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4908, - "fields": { - "parent": "deepmx_winding-key", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4909, - "fields": { - "parent": "deepmx_wotans-rede", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4910, - "fields": { - "parent": "deepmx_wotans-rede", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4911, - "fields": { - "parent": "deepmx_write-memory", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - } -] \ No newline at end of file +{ + "model": "api_v2.spellcastingoption", + "pk": 4726, + "fields": { + "parent": "deepmx_absolute-command", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4728, + "fields": { + "parent": "deepmx_absolute-command", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4729, + "fields": { + "parent": "deepmx_absolute-command", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4730, + "fields": { + "parent": "deepmx_absolute-command", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4731, + "fields": { + "parent": "deepmx_absolute-command", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4732, + "fields": { + "parent": "deepmx_absolute-command", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "0" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4733, + "fields": { + "parent": "deepmx_amplify-ley-field", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4734, + "fields": { + "parent": "deepmx_animate-construct", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4736, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4737, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4738, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4739, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4740, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4741, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4742, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4743, + "fields": { + "parent": "deepmx_animate-construct", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4744, + "fields": { + "parent": "deepmx_anomalous-object", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4745, + "fields": { + "parent": "deepmx_armored-heart", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4746, + "fields": { + "parent": "deepmx_armored-shell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4748, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4749, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4750, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4751, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4752, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4753, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4754, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4755, + "fields": { + "parent": "deepmx_armored-shell", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4756, + "fields": { + "parent": "deepmx_banshee-wail", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4757, + "fields": { + "parent": "deepmx_beguiling-gift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4758, + "fields": { + "parent": "deepmx_borrowing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4760, + "fields": { + "parent": "deepmx_borrowing", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4761, + "fields": { + "parent": "deepmx_borrowing", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4762, + "fields": { + "parent": "deepmx_borrowing", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4763, + "fields": { + "parent": "deepmx_borrowing", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4764, + "fields": { + "parent": "deepmx_borrowing", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4765, + "fields": { + "parent": "deepmx_borrowing", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4766, + "fields": { + "parent": "deepmx_call-the-hunter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4767, + "fields": { + "parent": "deepmx_circle-of-devestation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4768, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4770, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_2", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4771, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_3", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4772, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4773, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4774, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4775, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4776, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4777, + "fields": { + "parent": "deepmx_cloying-darkness", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4778, + "fields": { + "parent": "deepmx_cosmic-alignment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4779, + "fields": { + "parent": "deepmx_cosmic-alignment", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4780, + "fields": { + "parent": "deepmx_cruor-of-visions", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4781, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4782, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4784, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4785, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4786, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4787, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4788, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4789, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4790, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4791, + "fields": { + "parent": "deepmx_extract-foyson", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4792, + "fields": { + "parent": "deepmx_find-the-flaw", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4793, + "fields": { + "parent": "deepmx_gear-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4794, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4796, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4797, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4798, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4799, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4800, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "48 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4801, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4802, + "fields": { + "parent": "deepmx_gift-of-azathoth", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "72 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4803, + "fields": { + "parent": "deepmx_greater-ley-pulse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4805, + "fields": { + "parent": "deepmx_greater-ley-pulse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4806, + "fields": { + "parent": "deepmx_greater-ley-pulse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4807, + "fields": { + "parent": "deepmx_gremlins", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4809, + "fields": { + "parent": "deepmx_gremlins", + "type": "slot_level_5", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4810, + "fields": { + "parent": "deepmx_gremlins", + "type": "slot_level_6", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4811, + "fields": { + "parent": "deepmx_gremlins", + "type": "slot_level_7", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4812, + "fields": { + "parent": "deepmx_gremlins", + "type": "slot_level_8", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4813, + "fields": { + "parent": "deepmx_gremlins", + "type": "slot_level_9", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4814, + "fields": { + "parent": "deepmx_grinding-gears", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4815, + "fields": { + "parent": "deepmx_hearth-charm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4816, + "fields": { + "parent": "deepmx_hellforging", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4817, + "fields": { + "parent": "deepmx_hellforging", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4818, + "fields": { + "parent": "deepmx_hods-gift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4820, + "fields": { + "parent": "deepmx_hods-gift", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4821, + "fields": { + "parent": "deepmx_hods-gift", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4822, + "fields": { + "parent": "deepmx_hods-gift", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4823, + "fields": { + "parent": "deepmx_hods-gift", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4824, + "fields": { + "parent": "deepmx_imbue-spell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4825, + "fields": { + "parent": "deepmx_imbue-spell", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4827, + "fields": { + "parent": "deepmx_imbue-spell", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4828, + "fields": { + "parent": "deepmx_imbue-spell", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4829, + "fields": { + "parent": "deepmx_imbue-spell", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4830, + "fields": { + "parent": "deepmx_imbue-spell", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4831, + "fields": { + "parent": "deepmx_jotuns-jest", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4832, + "fields": { + "parent": "deepmx_land-bond", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4833, + "fields": { + "parent": "deepmx_lesser-ley-pulse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4835, + "fields": { + "parent": "deepmx_lesser-ley-pulse", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4836, + "fields": { + "parent": "deepmx_lesser-ley-pulse", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4837, + "fields": { + "parent": "deepmx_lesser-ley-pulse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4838, + "fields": { + "parent": "deepmx_lesser-ley-pulse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4839, + "fields": { + "parent": "deepmx_ley-disruption", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4840, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4842, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "slot_level_4", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4843, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "slot_level_5", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4844, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "slot_level_6", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4845, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "slot_level_7", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4846, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "slot_level_8", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4847, + "fields": { + "parent": "deepmx_ley-energy-bolt", + "type": "slot_level_9", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4848, + "fields": { + "parent": "deepmx_ley-leech", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4850, + "fields": { + "parent": "deepmx_ley-leech", + "type": "slot_level_6", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4851, + "fields": { + "parent": "deepmx_ley-leech", + "type": "slot_level_7", + "damage_roll": "10d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4852, + "fields": { + "parent": "deepmx_ley-leech", + "type": "slot_level_8", + "damage_roll": "11d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4853, + "fields": { + "parent": "deepmx_ley-leech", + "type": "slot_level_9", + "damage_roll": "12d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4854, + "fields": { + "parent": "deepmx_ley-sense", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4855, + "fields": { + "parent": "deepmx_ley-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4856, + "fields": { + "parent": "deepmx_ley-surge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4857, + "fields": { + "parent": "deepmx_ley-whip", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4858, + "fields": { + "parent": "deepmx_lokis-gift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4859, + "fields": { + "parent": "deepmx_machine-sacrifice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4860, + "fields": { + "parent": "deepmx_machine-speech", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4861, + "fields": { + "parent": "deepmx_machines-load", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4863, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4864, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4865, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4866, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4867, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4868, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4869, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4870, + "fields": { + "parent": "deepmx_machines-load", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4871, + "fields": { + "parent": "deepmx_mass-blade-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4872, + "fields": { + "parent": "deepmx_mass-repair-metal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4874, + "fields": { + "parent": "deepmx_mass-repair-metal", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4875, + "fields": { + "parent": "deepmx_mass-repair-metal", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4876, + "fields": { + "parent": "deepmx_mass-repair-metal", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4877, + "fields": { + "parent": "deepmx_mass-repair-metal", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4878, + "fields": { + "parent": "deepmx_mechanical-union", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4879, + "fields": { + "parent": "deepmx_molechs-blessing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4880, + "fields": { + "parent": "deepmx_move-the-cosmic-wheel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4881, + "fields": { + "parent": "deepmx_overclock", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4882, + "fields": { + "parent": "deepmx_power-word-restore", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4883, + "fields": { + "parent": "deepmx_read-memory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4884, + "fields": { + "parent": "deepmx_repair-metal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4886, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4887, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4888, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4889, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4890, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4891, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4892, + "fields": { + "parent": "deepmx_repair-metal", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4893, + "fields": { + "parent": "deepmx_risen-road", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4894, + "fields": { + "parent": "deepmx_robe-of-shards", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4895, + "fields": { + "parent": "deepmx_shadow-realm-gateway", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4896, + "fields": { + "parent": "deepmx_shadow-realm-gateway", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4897, + "fields": { + "parent": "deepmx_shield-of-star-and-shadow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4898, + "fields": { + "parent": "deepmx_snowblind-stare", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4899, + "fields": { + "parent": "deepmx_soothsayers-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4900, + "fields": { + "parent": "deepmx_soul-of-the-machine", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4901, + "fields": { + "parent": "deepmx_sphere-of-order", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4902, + "fields": { + "parent": "deepmx_spire-of-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4903, + "fields": { + "parent": "deepmx_strength-of-the-underworld", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4904, + "fields": { + "parent": "deepmx_summon-old-ones-avatar", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4905, + "fields": { + "parent": "deepmx_summon-old-ones-avatar", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4906, + "fields": { + "parent": "deepmx_tick-stop", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4907, + "fields": { + "parent": "deepmx_timeless-engine", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4908, + "fields": { + "parent": "deepmx_winding-key", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4909, + "fields": { + "parent": "deepmx_wotans-rede", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4910, + "fields": { + "parent": "deepmx_wotans-rede", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4911, + "fields": { + "parent": "deepmx_write-memory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +} +] diff --git a/data/v2/kobold-press/kp/Spell.json b/data/v2/kobold-press/kp/Spell.json index 9ce782e2..faa0a69e 100644 --- a/data/v2/kobold-press/kp/Spell.json +++ b/data/v2/kobold-press/kp/Spell.json @@ -1,971 +1,971 @@ [ - { - "model": "api_v2.spell", - "pk": "kp_ambush", - "fields": { - "name": "Ambush", - "desc": "The forest floor swirls and shifts around you to welcome you into its embrace. While in a forest, you have advantage on Dexterity (Stealth) checks to Hide. While hidden in a forest, you have advantage on your next Initiative check. The spell ends if you attack or cast a spell.", - "document": "kp", - "level": 1, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The spell ends if you or any target of this spell attacks or casts a spell.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "kp_blood-strike", - "fields": { - "name": "Blood Strike", - "desc": "By performing this ritual, you can cast a spell on one nearby creature and have it affect a different, more distant creature. Both targets must be related by blood (no more distantly than first cousins). Neither of them needs to be a willing target. The blood strike ritual is completed first, taking 10 minutes to cast on yourself. Then the spell to be transferred is immediately cast by you on the initial target, which must be close enough to touch no matter what the spell's normal range is. The secondary target must be within 1 mile and on the same plane of existence as you. If the second spell allows a saving throw, it's made by the secondary target, not the initial target. If the saving throw succeeds, any portion of the spell that's avoided or negated by the secondary target affects the initial target instead. A creature can be the secondary target of blood strike only once every 24 hours; subsequent attempts during that time take full effect against the initial target with no chance to affect the secondary target. Only spells that have a single target can be transferred via blood stike. For example, a lesser restoration) currently affecting the initial creature and transfer it to the secondary creature, which then makes any applicable saving throw against the effect. If the saving throw fails or there is no saving throw, the affliction transfers completely and no longer affects the initial target. If the saving throw succeeds, the initial creature is still afflicted and also suffers anew any damage or conditions associated with first exposure to the affliction.", - "document": "kp", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special (see below)", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_conjure-manabane-swarm", - "fields": { - "name": "Conjure Manabane Swarm", - "desc": "Deep Magic: summoning You summon a swarm of manabane scarabs that has just 40 hit points. The swarm appears at a spot you choose within 60 feet and attacks the closest enemy. You can conjure the swarm to appear in an enemy's space. If you prefer, you can summon two full-strength, standard swarms of insects (including beetles, centipedes, spiders, or wasps) instead.", - "document": "kp", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_curse-of-formlessness", - "fields": { - "name": "Curse of Formlessness", - "desc": "A creature you touch must make a successful Constitution saving throw or be cursed with a shifting, amorphous form. Spells that change the target creature's shape (such as polymorph) do not end the curse, but they do hold the creature in a stable form, temporarily mitigating it until the end of that particular spell's duration; shapechange and stoneskin have similar effects. While under the effect of the curse of formlessness, the target creature is resistant to slashing and piercing damage and ignores the additional damage done by critical hits, but it can neither hold nor use any item, nor can it cast spells or activate magic items. Its movement is halved, and winged flight becomes impossible. Any armor, clothing, helmet, or ring becomes useless. Large items that are carried or worn, such as armor, backpacks, or clothing, become hindrances, so the target has disadvantage on Dexterity checks and saving throws while such items are in place. A creature under the effect of a curse of formlessness can try to hold itself together through force of will. The afflicted creature uses its action to repeat the saving throw; if it succeeds, the afflicted creature negates the penalties from the spell until the start of its next turn.", - "document": "kp", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_delay-passing", - "fields": { - "name": "Delay Passing", - "desc": "You draw forth the ebbing life force of a creature and question it. Upon casting this spell, you must touch a creature that dropped to 0 hit points since your last turn. If it fails a Wisdom saving throw, you temporarily prevent its spirit from passing into the next realm. You are able to hear the spirit, though the spirit doesn't appear to any creature without the ability to see invisible creatures. The spirit communicates directly with your psyche and cannot see or hear anything but what you tell it. You can ask the spirit a number of questions equal to your proficiency bonus. Questions must be asked directly; a delay of more than 10 seconds between the spirit answering one question and you asking another allows the spirit to escape into the afterlife. The corpse's knowledge is limited to what it knew during life, including the languages it spoke. The spirit cannot lie to you, but it can refuse to answer a question that would harm its living family or friends, or truthfully answer that it doesn't know. Once the spirit answers your allotment of questions, it passes on.", - "document": "kp", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_doom-of-ancient-decrepitude", - "fields": { - "name": "Doom of Ancient Decrepitude", - "desc": "You generate an entropic field that rapidly ages every creature in the area of effect. The field covers a sphere with a 20-foot radius centered on you. Every creature inside the sphere when it's created, including you, must make a successful Constitution saving throw or gain 2 levels of exhaustion from sudden, traumatic aging. A creature that ends its turn in the field must repeat the saving throw, gaining 1 level of exhaustion per subsequent failure. You have advantage on these saving throws. An affected creature sheds 1 level of exhaustion at the end of its turn, if it started the turn outside the spell's area of effect (or the spell has ended). Only 1 level of exhaustion can be removed this way; all remaining levels are removed when the creature completes a short or long rest. A creature that died from gaining 6 levels of exhaustion, however, remains dead.", - "document": "kp", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_doom-of-voracity", - "fields": { - "name": "Doom of Voracity", - "desc": "You create a ripple of dark energy that destroys everything it touches. You create a 10-foot-radius, 10-foot-deep cylindrical extra-dimensional hole on a horizontal surface of sufficient size. Since it extends into another dimension, the pit has no weight and does not otherwise displace the original underlying material. You can create the pit in the deck of a ship as easily as in a dungeon floor or the ground of a forest. Any creature standing in the original conjured space, or on an expanded space as it grows, must succeed on a Dexterity saving throw to avoid falling in. The sloped pit edges crumble continuously, and any creature adjacent to the pit when it expands must succeed on a Dexterity saving throw to avoid falling in. Creatures subjected to a successful pushing effect (such as by a spell like incapacitated for 2 rounds. When the spell ends, creatures within the pit must make a Constitution saving throw. Those who succeed rise up with the bottom of the pit until they are standing on the original surface. Those who fail also rise up but are stunned for 2 rounds.", - "document": "kp", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, increase the depth of the pit by 10 feet for each slot level above 3rd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_feed-the-worms", - "fields": { - "name": "Feed the Worms", - "desc": "You draw forth the ebbing life force of a creature and use it to feed the worms. Upon casting this spell, you touch a creature that dropped to 0 hit points since your last turn. If it fails a Constitution saving throw, its body is completely consumed by worms in moments, leaving no remains. In its place is a swarm of worms (treat as a standard swarm of insects) that considers all other creatures except you as enemies. The swarm remains until it's killed.", - "document": "kp", - "level": 1, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until destroyed", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_greater-ley-protection", - "fields": { - "name": "Greater Ley Protection", - "desc": "Deep Magic: forest-bound You create a 20-foot cube of antimagic within range that specifically protects against ley line magic. Ley line spells and magical effects up to level 7 that target a creature within the cube have no effect on that target. Any active ley line spells or magical effects up to level 7 on a creature or an object in the cube is suppressed while the creature or object is in it. The area of a ley line spell or magical effect up to level 7 can't extend into the cube. If the cube overlaps an area of ley line magic, such as greater ley pulse, the part of the area that is covered by the cube is suppressed. The cube has no effect on other types of magic or spells. You can exclude specific individuals within the cube from the protection.", - "document": "kp", - "level": 7, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 9th level or higher, its duration is concentration, up to 1 hour.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "line", - "shape_magnitude": 20, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_hirvsths-call", - "fields": { - "name": "Hirvsth's Call", - "desc": "Deep Magic: Rothenian You summon a spectral herd of ponies to drag off a creature that you can see in range. The target must be no bigger than Large and must make a Dexterity saving throw. On a successful save, the spell has no effect. On a failed save, a spectral rope wraps around the target and pulls it 60 feet in a direction of your choosing as the herd races off. The ponies continue running in the chosen direction for the duration of the spell but will alter course to avoid impassable obstacles. Once you choose the direction, you cannot change it. The ponies ignore difficult terrain and are immune to damage. The target is prone and immobilized but can use its action to make a Strength or Dexterity check against your spell DC to escape the spectral bindings. The target takes 1d6 bludgeoning damage for every 20 feet it is dragged by the ponies. The herd moves 60 feet each round at the beginning of your turn.", - "document": "kp", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, one additional creature can be targeted for each slot level above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_incantation-of-lies-made-truth", - "fields": { - "name": "Incantation of Lies Made Truth", - "desc": "This ritual must be cast during a solar eclipse. It can target a person, an organization (including a city), or a kingdom. If targeting an organization or a kingdom, the incantation requires an object epitomizing the entity as part of the material component, such as a crown, mayoral seal, standard, or primary relic. If targeting a person, the primary performer must hold a vial of the person's blood. Over the course of the incantation, the components are mixed and the primary caster inscribes a false history and a sum of knowledge concerning the target into the book using the mockingbird quills. When the incantation is completed, whatever the caster wrote in the book becomes known and accepted as truth by the target. The target can attempt a Wisdom saving throw to negate this effect. If the target was a city or a kingdom, the saving throw is made with advantage by its current leader or ruler. If the saving throw fails, all citizens or members of the target organization or kingdom believe the account written in the book to be fact. Any information contrary to what was written in the book is forgotten within an hour, but individuals who make a sustained study of such information can attempt a Wisdom saving throw to retain the contradictory knowledge. Books containing contradictory information are considered obsolete or purposely misleading. Permanent structures such as statues of heroes who've been written out of existence are believed to be purely artistic endeavors or so old that no one remembers their identities anymore. The effects of this ritual can be reversed by washing the written words from the book using universal solvent and then burning the book to ashes in a magical fire. Incantation of lies made truth is intended to be a villainous motivator in a campaign, with the player characters fighting to uncover the truth and reverse the spell's effect. The GM should take care not to remove too much player agency with this ritual. The creatures affected should be predominantly NPCs, with PCs and even select NPCs able to resist it. Reversing the effect of the ritual can be the entire basis of a campaign.", - "document": "kp", - "level": 9, - "school": "enchantment", - "higher_level": "", - "target_type": "object", - "range": "1000 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "permanent", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_jeweled-fissure", - "fields": { - "name": "Jeweled Fissure", - "desc": "Deep Magic: dragon With a sweeping gesture, you cause jagged crystals to burst from the ground and hurtle directly upward. Choose an origin point within the spell's range that you can see. Starting from that point, the crystals burst out of the ground along a 30-foot line. All creatures in that line and up to 100 feet above it take 2d8 thunder damage plus 2d8 piercing damage; a successful Dexterity saving throw negates the piercing damage. A creature that fails the saving throw is impaled by a chunk of crystal that halves the creature's speed, prevents it from flying, and causes it to fall to the ground if it was flying. To remove a crystal, the creature or an ally within 5 feet of it must use an action and make a successful DC 13 Strength check. If the check succeeds, the impaled creature takes 1d8 piercing damage and its speed and flying ability are restored to normal.", - "document": "kp", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "1d8", - "damage_types": [ - "piercing" - ], - "duration": "instantaneous", - "shape_type": "line", - "shape_magnitude": 30, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_lesser-ley-protection", - "fields": { - "name": "Lesser Ley Protection", - "desc": "Deep Magic: forest-bound You create a 10-foot cube of antimagic within range that specifically protects against ley line magic. Ley line spells and magical effects up to level 5 that target a creature within the cube have no effect on that target. Any active ley line spells or magical effects up to level 5 on a creature or an object in the cube is suppressed while the creature or object is in it. The area of a ley line spell or magical effect up to level 5 can't extend into the cube. If the cube overlaps an area of ley line magic, such as lesser ley pulse, the part of the area that is covered by the cube is suppressed. The cube has no effect on other types of magic or spells. You can exclude specific individuals within the cube from the protection.", - "document": "kp", - "level": 5, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, its duration is concentration, up to 1 hour.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "line", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_ley-disturbance", - "fields": { - "name": "Ley Disturbance", - "desc": "Deep Magic: forest-bound While in your bound forest, you tune your senses to any disturbances of ley energy flowing through it. For the duration, you are aware of any ley line manipulation or ley spell casting within 5 miles of you. You know the approximate distance and general direction to each disturbance within that range, but you don't know its exact location. This doesn't allow you to locate the ley lines themselves, just any use or modification of them.", - "document": "kp", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_locate-red-portal", - "fields": { - "name": "Locate Red Portal", - "desc": "For the duration, you can sense the presence of any dimensional portals within range and whether they are one-way or two-way. If you sense a portal using this spell, you can use your action to peer through the portal to determine its destination. You gain a glimpse of the area at the other end of the shadow road. If the destination is not somewhere you have previously visited, you can make a DC 25 Intelligence (Arcana, History or Nature-whichever is most relevant) check to determine to where and when the portal leads.", - "document": "kp", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_moons-respite", - "fields": { - "name": "Moon's Respite", - "desc": "You touch a creature who must be present for the entire casting. A beam of moonlight shines down from above, bathing the target in radiant light. The spell fails if you can't see the open sky. If the target has any levels of shadow corruption, the moonlight burns away some of the Shadow tainting it. The creature must make a Constitution saving throw against a DC of 10 + the number of shadow corruption levels it has. The creature takes 2d10 radiant damage per level of shadow corruption and removes 1 level of shadow corruption on a failed saving throw, or half as much damage and removes 2 levels of shadow corruption on a success.", - "document": "kp", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d10", - "damage_types": [ - "radiant" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_morphic-flux", - "fields": { - "name": "Morphic Flux", - "desc": "When you cast this spell, your body becomes highly mutable, your flesh constantly shifting and quivering, occasionally growing extra parts-limbs and eyes-only to reabsorb them soon afterward. While under the effect of this spell, you have resistance to slashing and piercing damage and ignore the additional damage done by critical hits. You can squeeze through Tiny spaces without penalty. In addition, once per round, as a bonus action, you can make an unarmed attack with a newly- grown limb. Treat it as a standard unarmed attack, but you choose whether it does bludgeoning, piercing, or slashing damage.", - "document": "kp", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_open-red-portal", - "fields": { - "name": "Open Red Portal", - "desc": "You must tap the power of a titanic or strong ley line to cast this spell (see the Ley Initiate feat). You open a new two-way Red Portal on the shadow road, leading to a precise location of your choosing on any plane of existence. If located on the Prime Material Plane, this destination can be in the present day or up to 1,000 years in the past. The portal lasts for the duration. Deities and other planar rulers can prevent portals from opening in their presence or anywhere within their domains.", - "document": "kp", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_peruns-doom", - "fields": { - "name": "Perun's Doom", - "desc": "Deep Magic: Rothenian A powerful wind swirls from your outstretched hand toward a point you choose within range, where it explodes with a low roar into vortex of air. Each creature in a 20-foot-radius cylinder centered on that point must make a Strength saving throw. On a failed save, the creature takes 3d8 bludgeoning damage, is pulled to the center of the cylinder, and thrown 50 feet upward into the air. If a creature hits a solid obstruction, such as a stone ceiling, when it's thrown upward, it takes bludgeoning damage as if it had fallen (50 feet - the distance it's traveled upward). For example, if a creature hits the ceiling after rising only 10 feet, it takes bludgeoning damage as if it had fallen (50 feet - 10 feet =) 40 feet, or 4d6 bludgeoning damage.", - "document": "kp", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, increase the distance affected creatures are thrown into the air by 10 feet for each slot above 3rd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": "cylinder", - "shape_magnitude": 20, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_reset-red-portal", - "fields": { - "name": "Reset Red Portal", - "desc": "When you cast this spell, you can reset the destination of a Red Portal within range, diverting the shadow road so it leads to a location of your choosing. This destination must be in the present day. You can specify the target destination in general terms such as the City of the Fire Snakes, Mammon's home, the Halls of Avarice, or in the Eleven Hells, and anyone stepping through the portal while the spell is in effect will appear in or near that destination. If you reset the destination to the City of the Fire Snakes, for example, the portal might now lead to the first inner courtyard inside the city, or to the marketplace just outside at the GM's discretion. Once the spell's duration expires, the Red Portal resets to its original destination (50% chance) or to a new random destination (roll on the Destinations table).", - "document": "kp", - "level": 5, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can specify a destination up to 100 years in the past for each slot level beyond 5th.", - "target_type": "object", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_sanguine-spear", - "fields": { - "name": "Sanguine Spear", - "desc": "You draw blood from the corpse of a creature that has been dead for no more than 24 hours and magically fashion it into a spear of frozen blood. This functions as a +1 spear that does cold damage instead of piercing damage. If the spear leaves your hand for more than 1 round, it melts and the spell ends.", - "document": "kp", - "level": 2, - "school": "transmutation", - "higher_level": "If the spell is cast with a 4th-level spell slot, it creates a +2 spear. A 6th-level spell slot creates a +3 spear.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_scattered-images", - "fields": { - "name": "Scattered Images", - "desc": "When you cast this spell, you create illusory doubles that move when you move but in different directions, distracting and misdirecting your opponents. When scattered images is cast, 1d4 + 2 images are created. Images behave exactly as those created with mirror image, with the exceptions described here. These images remain in your space, acting as invisible or the attacker is blind, the spell has no effect.", - "document": "kp", - "level": 4, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_seal-red-portal", - "fields": { - "name": "Seal Red Portal", - "desc": "You seal a Red Portal or other dimensional gate within range, rendering it inoperable until this spell is dispelled. While the portal remains sealed in this way, it cannot be found with the locate Red Portal spell.", - "document": "kp", - "level": 6, - "school": "abjuration", - "higher_level": "", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_selfish-wish", - "fields": { - "name": "Selfish Wish", - "desc": "The selfish wish grants the desires of a supplicant in exchange for power. Like a wish for a great increase in Strength may come with an equal reduction in Intelligence). In exchange for casting the selfish wish, the caster also receives an influx of power. The caster receives the following bonuses for 2 minutes: Doubled speed one extra action each round (as haste) Armor class increases by 3", - "document": "kp", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_shadow-spawn", - "fields": { - "name": "Shadow Spawn", - "desc": "Casting this spell consumes the corpse of a creature and creates a shadowy duplicate of it. The creature returns as a shadow beast. The shadow beast has dim memories of its former life and retains free will; casters are advised to be ready to make an attractive offer to the newly-risen shadow beast, to gain its cooperation.", - "document": "kp", - "level": 6, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_shadow-tree", - "fields": { - "name": "Shadow Tree", - "desc": "This spell temporarily draws a willow tree from the Shadow Realm to the location you designate within range. The tree is 5 feet in diameter and 20 feet tall.\n When you cast the spell, you can specify individuals who can interact with the tree. All other creatures see the tree as a shadow version of itself and can't grasp or climb it, passing through its shadowy substance. A creature that can interact with the tree and that has Sunlight Sensitivity or Sunlight Hypersensitivity is protected from sunlight while within 20 feet of the tree. A creature that can interact with the tree can climb into its branches, giving the creature half cover.", - "document": "kp", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_shadows-brand", - "fields": { - "name": "Shadow's Brand", - "desc": "You draw a rune or inscription no larger than your hand on the target. The target must succeed on a Constitution saving throw or be branded with the mark on a location of your choosing. The brand appears as an unintelligible mark to most creatures. Those who understand the Umbral language recognize it as a mark indicating the target is an enemy of the shadow fey. Shadow fey who view the brand see it outlined in a faint glow. The brand can be hidden by mundane means, such as clothing, but it can be removed only by the *remove curse* spell.\n While branded, the target has disadvantage on ability checks when interacting socially with shadow fey.", - "document": "kp", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_stigmata-of-the-red-goddess", - "fields": { - "name": "Stigmata of the Red Goddess", - "desc": "You cut yourself and bleed as tribute to Marena, gaining power as long as the blood continues flowing. The stigmata typically appears as blood running from the eyes or ears, or from wounds manifesting on the neck or chest. You take 1 piercing damage at the beginning of each turn and gain a +2 bonus on damage rolls. Any healing received by you, magical or otherwise, ends the spell.", - "document": "kp", - "level": 2, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage you take at the start of each of your turns and the bonus damage you do both increase by 1 for each slot level above 2nd, and the duration increases by 1 round for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "3 rounds", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_the-black-gods-blessing", - "fields": { - "name": "The Black God's Blessing", - "desc": "Chernobog doesn't care that the Night Cauldron only focuses on one aspect of his dominion. After all, eternal night leads perfectly well to destruction and murder, especially by the desperate fools seeking to survive in the new, lightless world. Having devotees at the forefront of the mayhem suits him, so he allows a small measure of his power to infuse worthy souls. After contacting the Black God, the ritual caster makes a respectful yet forceful demand for him to deposit some of his power into the creature that is the target of the ritual. For Chernobog to comply with this demand, the caster must make a successful DC 20 spellcasting check. If the check fails, the spell fails and the caster and the spell's target become permanently vulnerable to fire; this vulnerability can be ended with remove curse or comparable magic. If the spell succeeds, the target creature gains darkvision (60 feet) and immunity to cold. Chernobog retains the privilege of revoking these gifts if the recipient ever wavers in devotion to him.", - "document": "kp", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_wield-soul", - "fields": { - "name": "Wield Soul", - "desc": "You draw forth the ebbing life force of a creature and use its arcane power. Upon casting this spell, you must touch a creature that dropped to 0 hit points since your last turn. If it fails a Wisdom saving throw, you gain knowledge of spells, innate spells, and similar abilities it could have used today were it still alive. Expended spells and abilities aren't revealed. Choose one of these spells or abilities with a casting time no longer than 1 action. Until you complete a long rest, you can use this spell or ability once, as a bonus action, using the creature's spell save DC or spellcasting ability bonus.", - "document": "kp", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "kp_winged-spies", - "fields": { - "name": "Winged Spies", - "desc": "This spell summons a swarm of ravens or other birds-or a swarm of bats if cast at night or underground-to serve you as spies. The swarm moves out as you direct, but it won't patrol farther away than the spell's range. Commands must be simple, such as “search the valley to the east for travelers” or “search everywhere for humans on horses.” The GM can judge how clear and effective your instructions are and use that estimation in determining what the spies report. You can recall the spies at any time by whispering into the air, but the spell ends when the swarm returns to you and reports. You must receive the swarm's report before the spell expires, or you gain nothing. The swarm doesn't fight for you; it avoids danger if possible but defends itself if it must. You know if the swarm is destroyed, and the spell ends.", - "document": "kp", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "10 miles", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } +{ + "model": "api_v2.spell", + "pk": "kp_ambush", + "fields": { + "name": "Ambush", + "desc": "The forest floor swirls and shifts around you to welcome you into its embrace. While in a forest, you have advantage on Dexterity (Stealth) checks to Hide. While hidden in a forest, you have advantage on your next Initiative check. The spell ends if you attack or cast a spell.", + "document": "kp", + "level": 1, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The spell ends if you or any target of this spell attacks or casts a spell.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true } -] \ No newline at end of file +}, +{ + "model": "api_v2.spell", + "pk": "kp_blood-strike", + "fields": { + "name": "Blood Strike", + "desc": "By performing this ritual, you can cast a spell on one nearby creature and have it affect a different, more distant creature. Both targets must be related by blood (no more distantly than first cousins). Neither of them needs to be a willing target. The blood strike ritual is completed first, taking 10 minutes to cast on yourself. Then the spell to be transferred is immediately cast by you on the initial target, which must be close enough to touch no matter what the spell's normal range is. The secondary target must be within 1 mile and on the same plane of existence as you. If the second spell allows a saving throw, it's made by the secondary target, not the initial target. If the saving throw succeeds, any portion of the spell that's avoided or negated by the secondary target affects the initial target instead. A creature can be the secondary target of blood strike only once every 24 hours; subsequent attempts during that time take full effect against the initial target with no chance to affect the secondary target. Only spells that have a single target can be transferred via blood stike. For example, a lesser restoration) currently affecting the initial creature and transfer it to the secondary creature, which then makes any applicable saving throw against the effect. If the saving throw fails or there is no saving throw, the affliction transfers completely and no longer affects the initial target. If the saving throw succeeds, the initial creature is still afflicted and also suffers anew any damage or conditions associated with first exposure to the affliction.", + "document": "kp", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special (see below)", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_conjure-manabane-swarm", + "fields": { + "name": "Conjure Manabane Swarm", + "desc": "Deep Magic: summoning You summon a swarm of manabane scarabs that has just 40 hit points. The swarm appears at a spot you choose within 60 feet and attacks the closest enemy. You can conjure the swarm to appear in an enemy's space. If you prefer, you can summon two full-strength, standard swarms of insects (including beetles, centipedes, spiders, or wasps) instead.", + "document": "kp", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_curse-of-formlessness", + "fields": { + "name": "Curse of Formlessness", + "desc": "A creature you touch must make a successful Constitution saving throw or be cursed with a shifting, amorphous form. Spells that change the target creature's shape (such as polymorph) do not end the curse, but they do hold the creature in a stable form, temporarily mitigating it until the end of that particular spell's duration; shapechange and stoneskin have similar effects. While under the effect of the curse of formlessness, the target creature is resistant to slashing and piercing damage and ignores the additional damage done by critical hits, but it can neither hold nor use any item, nor can it cast spells or activate magic items. Its movement is halved, and winged flight becomes impossible. Any armor, clothing, helmet, or ring becomes useless. Large items that are carried or worn, such as armor, backpacks, or clothing, become hindrances, so the target has disadvantage on Dexterity checks and saving throws while such items are in place. A creature under the effect of a curse of formlessness can try to hold itself together through force of will. The afflicted creature uses its action to repeat the saving throw; if it succeeds, the afflicted creature negates the penalties from the spell until the start of its next turn.", + "document": "kp", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_delay-passing", + "fields": { + "name": "Delay Passing", + "desc": "You draw forth the ebbing life force of a creature and question it. Upon casting this spell, you must touch a creature that dropped to 0 hit points since your last turn. If it fails a Wisdom saving throw, you temporarily prevent its spirit from passing into the next realm. You are able to hear the spirit, though the spirit doesn't appear to any creature without the ability to see invisible creatures. The spirit communicates directly with your psyche and cannot see or hear anything but what you tell it. You can ask the spirit a number of questions equal to your proficiency bonus. Questions must be asked directly; a delay of more than 10 seconds between the spirit answering one question and you asking another allows the spirit to escape into the afterlife. The corpse's knowledge is limited to what it knew during life, including the languages it spoke. The spirit cannot lie to you, but it can refuse to answer a question that would harm its living family or friends, or truthfully answer that it doesn't know. Once the spirit answers your allotment of questions, it passes on.", + "document": "kp", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_doom-of-ancient-decrepitude", + "fields": { + "name": "Doom of Ancient Decrepitude", + "desc": "You generate an entropic field that rapidly ages every creature in the area of effect. The field covers a sphere with a 20-foot radius centered on you. Every creature inside the sphere when it's created, including you, must make a successful Constitution saving throw or gain 2 levels of exhaustion from sudden, traumatic aging. A creature that ends its turn in the field must repeat the saving throw, gaining 1 level of exhaustion per subsequent failure. You have advantage on these saving throws. An affected creature sheds 1 level of exhaustion at the end of its turn, if it started the turn outside the spell's area of effect (or the spell has ended). Only 1 level of exhaustion can be removed this way; all remaining levels are removed when the creature completes a short or long rest. A creature that died from gaining 6 levels of exhaustion, however, remains dead.", + "document": "kp", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_doom-of-voracity", + "fields": { + "name": "Doom of Voracity", + "desc": "You create a ripple of dark energy that destroys everything it touches. You create a 10-foot-radius, 10-foot-deep cylindrical extra-dimensional hole on a horizontal surface of sufficient size. Since it extends into another dimension, the pit has no weight and does not otherwise displace the original underlying material. You can create the pit in the deck of a ship as easily as in a dungeon floor or the ground of a forest. Any creature standing in the original conjured space, or on an expanded space as it grows, must succeed on a Dexterity saving throw to avoid falling in. The sloped pit edges crumble continuously, and any creature adjacent to the pit when it expands must succeed on a Dexterity saving throw to avoid falling in. Creatures subjected to a successful pushing effect (such as by a spell like incapacitated for 2 rounds. When the spell ends, creatures within the pit must make a Constitution saving throw. Those who succeed rise up with the bottom of the pit until they are standing on the original surface. Those who fail also rise up but are stunned for 2 rounds.", + "document": "kp", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, increase the depth of the pit by 10 feet for each slot level above 3rd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_feed-the-worms", + "fields": { + "name": "Feed the Worms", + "desc": "You draw forth the ebbing life force of a creature and use it to feed the worms. Upon casting this spell, you touch a creature that dropped to 0 hit points since your last turn. If it fails a Constitution saving throw, its body is completely consumed by worms in moments, leaving no remains. In its place is a swarm of worms (treat as a standard swarm of insects) that considers all other creatures except you as enemies. The swarm remains until it's killed.", + "document": "kp", + "level": 1, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until destroyed", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_greater-ley-protection", + "fields": { + "name": "Greater Ley Protection", + "desc": "Deep Magic: forest-bound You create a 20-foot cube of antimagic within range that specifically protects against ley line magic. Ley line spells and magical effects up to level 7 that target a creature within the cube have no effect on that target. Any active ley line spells or magical effects up to level 7 on a creature or an object in the cube is suppressed while the creature or object is in it. The area of a ley line spell or magical effect up to level 7 can't extend into the cube. If the cube overlaps an area of ley line magic, such as greater ley pulse, the part of the area that is covered by the cube is suppressed. The cube has no effect on other types of magic or spells. You can exclude specific individuals within the cube from the protection.", + "document": "kp", + "level": 7, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 9th level or higher, its duration is concentration, up to 1 hour.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "line", + "shape_magnitude": 20, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_hirvsths-call", + "fields": { + "name": "Hirvsth's Call", + "desc": "Deep Magic: Rothenian You summon a spectral herd of ponies to drag off a creature that you can see in range. The target must be no bigger than Large and must make a Dexterity saving throw. On a successful save, the spell has no effect. On a failed save, a spectral rope wraps around the target and pulls it 60 feet in a direction of your choosing as the herd races off. The ponies continue running in the chosen direction for the duration of the spell but will alter course to avoid impassable obstacles. Once you choose the direction, you cannot change it. The ponies ignore difficult terrain and are immune to damage. The target is prone and immobilized but can use its action to make a Strength or Dexterity check against your spell DC to escape the spectral bindings. The target takes 1d6 bludgeoning damage for every 20 feet it is dragged by the ponies. The herd moves 60 feet each round at the beginning of your turn.", + "document": "kp", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, one additional creature can be targeted for each slot level above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_incantation-of-lies-made-truth", + "fields": { + "name": "Incantation of Lies Made Truth", + "desc": "This ritual must be cast during a solar eclipse. It can target a person, an organization (including a city), or a kingdom. If targeting an organization or a kingdom, the incantation requires an object epitomizing the entity as part of the material component, such as a crown, mayoral seal, standard, or primary relic. If targeting a person, the primary performer must hold a vial of the person's blood. Over the course of the incantation, the components are mixed and the primary caster inscribes a false history and a sum of knowledge concerning the target into the book using the mockingbird quills. When the incantation is completed, whatever the caster wrote in the book becomes known and accepted as truth by the target. The target can attempt a Wisdom saving throw to negate this effect. If the target was a city or a kingdom, the saving throw is made with advantage by its current leader or ruler. If the saving throw fails, all citizens or members of the target organization or kingdom believe the account written in the book to be fact. Any information contrary to what was written in the book is forgotten within an hour, but individuals who make a sustained study of such information can attempt a Wisdom saving throw to retain the contradictory knowledge. Books containing contradictory information are considered obsolete or purposely misleading. Permanent structures such as statues of heroes who've been written out of existence are believed to be purely artistic endeavors or so old that no one remembers their identities anymore. The effects of this ritual can be reversed by washing the written words from the book using universal solvent and then burning the book to ashes in a magical fire. Incantation of lies made truth is intended to be a villainous motivator in a campaign, with the player characters fighting to uncover the truth and reverse the spell's effect. The GM should take care not to remove too much player agency with this ritual. The creatures affected should be predominantly NPCs, with PCs and even select NPCs able to resist it. Reversing the effect of the ritual can be the entire basis of a campaign.", + "document": "kp", + "level": 9, + "school": "enchantment", + "higher_level": "", + "target_type": "object", + "range": "1000 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "permanent", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_jeweled-fissure", + "fields": { + "name": "Jeweled Fissure", + "desc": "Deep Magic: dragon With a sweeping gesture, you cause jagged crystals to burst from the ground and hurtle directly upward. Choose an origin point within the spell's range that you can see. Starting from that point, the crystals burst out of the ground along a 30-foot line. All creatures in that line and up to 100 feet above it take 2d8 thunder damage plus 2d8 piercing damage; a successful Dexterity saving throw negates the piercing damage. A creature that fails the saving throw is impaled by a chunk of crystal that halves the creature's speed, prevents it from flying, and causes it to fall to the ground if it was flying. To remove a crystal, the creature or an ally within 5 feet of it must use an action and make a successful DC 13 Strength check. If the check succeeds, the impaled creature takes 1d8 piercing damage and its speed and flying ability are restored to normal.", + "document": "kp", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "1d8", + "damage_types": [ + "piercing" + ], + "duration": "instantaneous", + "shape_type": "line", + "shape_magnitude": 30, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_lesser-ley-protection", + "fields": { + "name": "Lesser Ley Protection", + "desc": "Deep Magic: forest-bound You create a 10-foot cube of antimagic within range that specifically protects against ley line magic. Ley line spells and magical effects up to level 5 that target a creature within the cube have no effect on that target. Any active ley line spells or magical effects up to level 5 on a creature or an object in the cube is suppressed while the creature or object is in it. The area of a ley line spell or magical effect up to level 5 can't extend into the cube. If the cube overlaps an area of ley line magic, such as lesser ley pulse, the part of the area that is covered by the cube is suppressed. The cube has no effect on other types of magic or spells. You can exclude specific individuals within the cube from the protection.", + "document": "kp", + "level": 5, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, its duration is concentration, up to 1 hour.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "line", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_ley-disturbance", + "fields": { + "name": "Ley Disturbance", + "desc": "Deep Magic: forest-bound While in your bound forest, you tune your senses to any disturbances of ley energy flowing through it. For the duration, you are aware of any ley line manipulation or ley spell casting within 5 miles of you. You know the approximate distance and general direction to each disturbance within that range, but you don't know its exact location. This doesn't allow you to locate the ley lines themselves, just any use or modification of them.", + "document": "kp", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_locate-red-portal", + "fields": { + "name": "Locate Red Portal", + "desc": "For the duration, you can sense the presence of any dimensional portals within range and whether they are one-way or two-way. If you sense a portal using this spell, you can use your action to peer through the portal to determine its destination. You gain a glimpse of the area at the other end of the shadow road. If the destination is not somewhere you have previously visited, you can make a DC 25 Intelligence (Arcana, History or Nature-whichever is most relevant) check to determine to where and when the portal leads.", + "document": "kp", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_moons-respite", + "fields": { + "name": "Moon's Respite", + "desc": "You touch a creature who must be present for the entire casting. A beam of moonlight shines down from above, bathing the target in radiant light. The spell fails if you can't see the open sky. If the target has any levels of shadow corruption, the moonlight burns away some of the Shadow tainting it. The creature must make a Constitution saving throw against a DC of 10 + the number of shadow corruption levels it has. The creature takes 2d10 radiant damage per level of shadow corruption and removes 1 level of shadow corruption on a failed saving throw, or half as much damage and removes 2 levels of shadow corruption on a success.", + "document": "kp", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d10", + "damage_types": [ + "radiant" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_morphic-flux", + "fields": { + "name": "Morphic Flux", + "desc": "When you cast this spell, your body becomes highly mutable, your flesh constantly shifting and quivering, occasionally growing extra parts-limbs and eyes-only to reabsorb them soon afterward. While under the effect of this spell, you have resistance to slashing and piercing damage and ignore the additional damage done by critical hits. You can squeeze through Tiny spaces without penalty. In addition, once per round, as a bonus action, you can make an unarmed attack with a newly- grown limb. Treat it as a standard unarmed attack, but you choose whether it does bludgeoning, piercing, or slashing damage.", + "document": "kp", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_open-red-portal", + "fields": { + "name": "Open Red Portal", + "desc": "You must tap the power of a titanic or strong ley line to cast this spell (see the Ley Initiate feat). You open a new two-way Red Portal on the shadow road, leading to a precise location of your choosing on any plane of existence. If located on the Prime Material Plane, this destination can be in the present day or up to 1,000 years in the past. The portal lasts for the duration. Deities and other planar rulers can prevent portals from opening in their presence or anywhere within their domains.", + "document": "kp", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_peruns-doom", + "fields": { + "name": "Perun's Doom", + "desc": "Deep Magic: Rothenian A powerful wind swirls from your outstretched hand toward a point you choose within range, where it explodes with a low roar into vortex of air. Each creature in a 20-foot-radius cylinder centered on that point must make a Strength saving throw. On a failed save, the creature takes 3d8 bludgeoning damage, is pulled to the center of the cylinder, and thrown 50 feet upward into the air. If a creature hits a solid obstruction, such as a stone ceiling, when it's thrown upward, it takes bludgeoning damage as if it had fallen (50 feet - the distance it's traveled upward). For example, if a creature hits the ceiling after rising only 10 feet, it takes bludgeoning damage as if it had fallen (50 feet - 10 feet =) 40 feet, or 4d6 bludgeoning damage.", + "document": "kp", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, increase the distance affected creatures are thrown into the air by 10 feet for each slot above 3rd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": "cylinder", + "shape_magnitude": 20, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_reset-red-portal", + "fields": { + "name": "Reset Red Portal", + "desc": "When you cast this spell, you can reset the destination of a Red Portal within range, diverting the shadow road so it leads to a location of your choosing. This destination must be in the present day. You can specify the target destination in general terms such as the City of the Fire Snakes, Mammon's home, the Halls of Avarice, or in the Eleven Hells, and anyone stepping through the portal while the spell is in effect will appear in or near that destination. If you reset the destination to the City of the Fire Snakes, for example, the portal might now lead to the first inner courtyard inside the city, or to the marketplace just outside at the GM's discretion. Once the spell's duration expires, the Red Portal resets to its original destination (50% chance) or to a new random destination (roll on the Destinations table).", + "document": "kp", + "level": 5, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, you can specify a destination up to 100 years in the past for each slot level beyond 5th.", + "target_type": "object", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_sanguine-spear", + "fields": { + "name": "Sanguine Spear", + "desc": "You draw blood from the corpse of a creature that has been dead for no more than 24 hours and magically fashion it into a spear of frozen blood. This functions as a +1 spear that does cold damage instead of piercing damage. If the spear leaves your hand for more than 1 round, it melts and the spell ends.", + "document": "kp", + "level": 2, + "school": "transmutation", + "higher_level": "If the spell is cast with a 4th-level spell slot, it creates a +2 spear. A 6th-level spell slot creates a +3 spear.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_scattered-images", + "fields": { + "name": "Scattered Images", + "desc": "When you cast this spell, you create illusory doubles that move when you move but in different directions, distracting and misdirecting your opponents. When scattered images is cast, 1d4 + 2 images are created. Images behave exactly as those created with mirror image, with the exceptions described here. These images remain in your space, acting as invisible or the attacker is blind, the spell has no effect.", + "document": "kp", + "level": 4, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_seal-red-portal", + "fields": { + "name": "Seal Red Portal", + "desc": "You seal a Red Portal or other dimensional gate within range, rendering it inoperable until this spell is dispelled. While the portal remains sealed in this way, it cannot be found with the locate Red Portal spell.", + "document": "kp", + "level": 6, + "school": "abjuration", + "higher_level": "", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_selfish-wish", + "fields": { + "name": "Selfish Wish", + "desc": "The selfish wish grants the desires of a supplicant in exchange for power. Like a wish for a great increase in Strength may come with an equal reduction in Intelligence). In exchange for casting the selfish wish, the caster also receives an influx of power. The caster receives the following bonuses for 2 minutes: Doubled speed one extra action each round (as haste) Armor class increases by 3", + "document": "kp", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_shadow-spawn", + "fields": { + "name": "Shadow Spawn", + "desc": "Casting this spell consumes the corpse of a creature and creates a shadowy duplicate of it. The creature returns as a shadow beast. The shadow beast has dim memories of its former life and retains free will; casters are advised to be ready to make an attractive offer to the newly-risen shadow beast, to gain its cooperation.", + "document": "kp", + "level": 6, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_shadow-tree", + "fields": { + "name": "Shadow Tree", + "desc": "This spell temporarily draws a willow tree from the Shadow Realm to the location you designate within range. The tree is 5 feet in diameter and 20 feet tall.\n When you cast the spell, you can specify individuals who can interact with the tree. All other creatures see the tree as a shadow version of itself and can't grasp or climb it, passing through its shadowy substance. A creature that can interact with the tree and that has Sunlight Sensitivity or Sunlight Hypersensitivity is protected from sunlight while within 20 feet of the tree. A creature that can interact with the tree can climb into its branches, giving the creature half cover.", + "document": "kp", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_shadows-brand", + "fields": { + "name": "Shadow's Brand", + "desc": "You draw a rune or inscription no larger than your hand on the target. The target must succeed on a Constitution saving throw or be branded with the mark on a location of your choosing. The brand appears as an unintelligible mark to most creatures. Those who understand the Umbral language recognize it as a mark indicating the target is an enemy of the shadow fey. Shadow fey who view the brand see it outlined in a faint glow. The brand can be hidden by mundane means, such as clothing, but it can be removed only by the *remove curse* spell.\n While branded, the target has disadvantage on ability checks when interacting socially with shadow fey.", + "document": "kp", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_stigmata-of-the-red-goddess", + "fields": { + "name": "Stigmata of the Red Goddess", + "desc": "You cut yourself and bleed as tribute to Marena, gaining power as long as the blood continues flowing. The stigmata typically appears as blood running from the eyes or ears, or from wounds manifesting on the neck or chest. You take 1 piercing damage at the beginning of each turn and gain a +2 bonus on damage rolls. Any healing received by you, magical or otherwise, ends the spell.", + "document": "kp", + "level": 2, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage you take at the start of each of your turns and the bonus damage you do both increase by 1 for each slot level above 2nd, and the duration increases by 1 round for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "3 rounds", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_the-black-gods-blessing", + "fields": { + "name": "The Black God's Blessing", + "desc": "Chernobog doesn't care that the Night Cauldron only focuses on one aspect of his dominion. After all, eternal night leads perfectly well to destruction and murder, especially by the desperate fools seeking to survive in the new, lightless world. Having devotees at the forefront of the mayhem suits him, so he allows a small measure of his power to infuse worthy souls. After contacting the Black God, the ritual caster makes a respectful yet forceful demand for him to deposit some of his power into the creature that is the target of the ritual. For Chernobog to comply with this demand, the caster must make a successful DC 20 spellcasting check. If the check fails, the spell fails and the caster and the spell's target become permanently vulnerable to fire; this vulnerability can be ended with remove curse or comparable magic. If the spell succeeds, the target creature gains darkvision (60 feet) and immunity to cold. Chernobog retains the privilege of revoking these gifts if the recipient ever wavers in devotion to him.", + "document": "kp", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_wield-soul", + "fields": { + "name": "Wield Soul", + "desc": "You draw forth the ebbing life force of a creature and use its arcane power. Upon casting this spell, you must touch a creature that dropped to 0 hit points since your last turn. If it fails a Wisdom saving throw, you gain knowledge of spells, innate spells, and similar abilities it could have used today were it still alive. Expended spells and abilities aren't revealed. Choose one of these spells or abilities with a casting time no longer than 1 action. Until you complete a long rest, you can use this spell or ability once, as a bonus action, using the creature's spell save DC or spellcasting ability bonus.", + "document": "kp", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "kp_winged-spies", + "fields": { + "name": "Winged Spies", + "desc": "This spell summons a swarm of ravens or other birds-or a swarm of bats if cast at night or underground-to serve you as spies. The swarm moves out as you direct, but it won't patrol farther away than the spell's range. Commands must be simple, such as “search the valley to the east for travelers” or “search everywhere for humans on horses.” The GM can judge how clear and effective your instructions are and use that estimation in determining what the spies report. You can recall the spies at any time by whispering into the air, but the spell ends when the swarm returns to you and reports. You must receive the swarm's report before the spell expires, or you gain nothing. The swarm doesn't fight for you; it avoids danger if possible but defends itself if it must. You know if the swarm is destroyed, and the spell ends.", + "document": "kp", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "10 miles", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +} +] diff --git a/data/v2/kobold-press/kp/SpellCastingOption.json b/data/v2/kobold-press/kp/SpellCastingOption.json index 504bb92e..3b146b91 100644 --- a/data/v2/kobold-press/kp/SpellCastingOption.json +++ b/data/v2/kobold-press/kp/SpellCastingOption.json @@ -1,1010 +1,1010 @@ [ - { - "model": "api_v2.spellcastingoption", - "pk": 4912, - "fields": { - "parent": "kp_ambush", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4914, - "fields": { - "parent": "kp_ambush", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4915, - "fields": { - "parent": "kp_ambush", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4916, - "fields": { - "parent": "kp_ambush", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4917, - "fields": { - "parent": "kp_ambush", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4918, - "fields": { - "parent": "kp_ambush", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4919, - "fields": { - "parent": "kp_ambush", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4920, - "fields": { - "parent": "kp_ambush", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4921, - "fields": { - "parent": "kp_ambush", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4922, - "fields": { - "parent": "kp_blood-strike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4923, - "fields": { - "parent": "kp_blood-strike", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4924, - "fields": { - "parent": "kp_conjure-manabane-swarm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4925, - "fields": { - "parent": "kp_curse-of-formlessness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4926, - "fields": { - "parent": "kp_delay-passing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4927, - "fields": { - "parent": "kp_doom-of-ancient-decrepitude", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4928, - "fields": { - "parent": "kp_doom-of-voracity", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4930, - "fields": { - "parent": "kp_doom-of-voracity", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4931, - "fields": { - "parent": "kp_doom-of-voracity", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4932, - "fields": { - "parent": "kp_doom-of-voracity", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4933, - "fields": { - "parent": "kp_doom-of-voracity", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4934, - "fields": { - "parent": "kp_doom-of-voracity", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4935, - "fields": { - "parent": "kp_doom-of-voracity", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4936, - "fields": { - "parent": "kp_feed-the-worms", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4937, - "fields": { - "parent": "kp_greater-ley-protection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4939, - "fields": { - "parent": "kp_greater-ley-protection", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4940, - "fields": { - "parent": "kp_greater-ley-protection", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4941, - "fields": { - "parent": "kp_hirvsths-call", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4943, - "fields": { - "parent": "kp_hirvsths-call", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4944, - "fields": { - "parent": "kp_hirvsths-call", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4945, - "fields": { - "parent": "kp_hirvsths-call", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4946, - "fields": { - "parent": "kp_hirvsths-call", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4947, - "fields": { - "parent": "kp_hirvsths-call", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4948, - "fields": { - "parent": "kp_incantation-of-lies-made-truth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4949, - "fields": { - "parent": "kp_incantation-of-lies-made-truth", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4950, - "fields": { - "parent": "kp_jeweled-fissure", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4951, - "fields": { - "parent": "kp_lesser-ley-protection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4953, - "fields": { - "parent": "kp_lesser-ley-protection", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4954, - "fields": { - "parent": "kp_lesser-ley-protection", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4955, - "fields": { - "parent": "kp_lesser-ley-protection", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4956, - "fields": { - "parent": "kp_lesser-ley-protection", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4957, - "fields": { - "parent": "kp_ley-disturbance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4958, - "fields": { - "parent": "kp_locate-red-portal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4959, - "fields": { - "parent": "kp_moons-respite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4960, - "fields": { - "parent": "kp_moons-respite", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4961, - "fields": { - "parent": "kp_morphic-flux", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4962, - "fields": { - "parent": "kp_open-red-portal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4963, - "fields": { - "parent": "kp_peruns-doom", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4965, - "fields": { - "parent": "kp_peruns-doom", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4966, - "fields": { - "parent": "kp_peruns-doom", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4967, - "fields": { - "parent": "kp_peruns-doom", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4968, - "fields": { - "parent": "kp_peruns-doom", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4969, - "fields": { - "parent": "kp_peruns-doom", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4970, - "fields": { - "parent": "kp_peruns-doom", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4971, - "fields": { - "parent": "kp_reset-red-portal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4973, - "fields": { - "parent": "kp_reset-red-portal", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4974, - "fields": { - "parent": "kp_reset-red-portal", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4975, - "fields": { - "parent": "kp_reset-red-portal", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4976, - "fields": { - "parent": "kp_reset-red-portal", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4977, - "fields": { - "parent": "kp_sanguine-spear", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4979, - "fields": { - "parent": "kp_sanguine-spear", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4980, - "fields": { - "parent": "kp_sanguine-spear", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4981, - "fields": { - "parent": "kp_sanguine-spear", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4982, - "fields": { - "parent": "kp_sanguine-spear", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4983, - "fields": { - "parent": "kp_sanguine-spear", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4984, - "fields": { - "parent": "kp_sanguine-spear", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4985, - "fields": { - "parent": "kp_sanguine-spear", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4986, - "fields": { - "parent": "kp_scattered-images", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4987, - "fields": { - "parent": "kp_seal-red-portal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4988, - "fields": { - "parent": "kp_selfish-wish", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4989, - "fields": { - "parent": "kp_shadow-spawn", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4990, - "fields": { - "parent": "kp_shadow-tree", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4991, - "fields": { - "parent": "kp_shadows-brand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4992, - "fields": { - "parent": "kp_stigmata-of-the-red-goddess", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4994, - "fields": { - "parent": "kp_stigmata-of-the-red-goddess", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "4 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4995, - "fields": { - "parent": "kp_stigmata-of-the-red-goddess", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4996, - "fields": { - "parent": "kp_stigmata-of-the-red-goddess", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4997, - "fields": { - "parent": "kp_stigmata-of-the-red-goddess", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "7 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4998, - "fields": { - "parent": "kp_stigmata-of-the-red-goddess", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4999, - "fields": { - "parent": "kp_stigmata-of-the-red-goddess", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "9 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5000, - "fields": { - "parent": "kp_stigmata-of-the-red-goddess", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "10 rounds", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5001, - "fields": { - "parent": "kp_the-black-gods-blessing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5002, - "fields": { - "parent": "kp_the-black-gods-blessing", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5003, - "fields": { - "parent": "kp_wield-soul", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5004, - "fields": { - "parent": "kp_winged-spies", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - } -] \ No newline at end of file +{ + "model": "api_v2.spellcastingoption", + "pk": 4912, + "fields": { + "parent": "kp_ambush", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4914, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4915, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4916, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4917, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4918, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4919, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4920, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4921, + "fields": { + "parent": "kp_ambush", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4922, + "fields": { + "parent": "kp_blood-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4923, + "fields": { + "parent": "kp_blood-strike", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4924, + "fields": { + "parent": "kp_conjure-manabane-swarm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4925, + "fields": { + "parent": "kp_curse-of-formlessness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4926, + "fields": { + "parent": "kp_delay-passing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4927, + "fields": { + "parent": "kp_doom-of-ancient-decrepitude", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4928, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4930, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4931, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4932, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4933, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4934, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4935, + "fields": { + "parent": "kp_doom-of-voracity", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4936, + "fields": { + "parent": "kp_feed-the-worms", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4937, + "fields": { + "parent": "kp_greater-ley-protection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4939, + "fields": { + "parent": "kp_greater-ley-protection", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4940, + "fields": { + "parent": "kp_greater-ley-protection", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4941, + "fields": { + "parent": "kp_hirvsths-call", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4943, + "fields": { + "parent": "kp_hirvsths-call", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4944, + "fields": { + "parent": "kp_hirvsths-call", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4945, + "fields": { + "parent": "kp_hirvsths-call", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4946, + "fields": { + "parent": "kp_hirvsths-call", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4947, + "fields": { + "parent": "kp_hirvsths-call", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4948, + "fields": { + "parent": "kp_incantation-of-lies-made-truth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4949, + "fields": { + "parent": "kp_incantation-of-lies-made-truth", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4950, + "fields": { + "parent": "kp_jeweled-fissure", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4951, + "fields": { + "parent": "kp_lesser-ley-protection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4953, + "fields": { + "parent": "kp_lesser-ley-protection", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4954, + "fields": { + "parent": "kp_lesser-ley-protection", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4955, + "fields": { + "parent": "kp_lesser-ley-protection", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4956, + "fields": { + "parent": "kp_lesser-ley-protection", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4957, + "fields": { + "parent": "kp_ley-disturbance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4958, + "fields": { + "parent": "kp_locate-red-portal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4959, + "fields": { + "parent": "kp_moons-respite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4960, + "fields": { + "parent": "kp_moons-respite", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4961, + "fields": { + "parent": "kp_morphic-flux", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4962, + "fields": { + "parent": "kp_open-red-portal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4963, + "fields": { + "parent": "kp_peruns-doom", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4965, + "fields": { + "parent": "kp_peruns-doom", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4966, + "fields": { + "parent": "kp_peruns-doom", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4967, + "fields": { + "parent": "kp_peruns-doom", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4968, + "fields": { + "parent": "kp_peruns-doom", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4969, + "fields": { + "parent": "kp_peruns-doom", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4970, + "fields": { + "parent": "kp_peruns-doom", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4971, + "fields": { + "parent": "kp_reset-red-portal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4973, + "fields": { + "parent": "kp_reset-red-portal", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4974, + "fields": { + "parent": "kp_reset-red-portal", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4975, + "fields": { + "parent": "kp_reset-red-portal", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4976, + "fields": { + "parent": "kp_reset-red-portal", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4977, + "fields": { + "parent": "kp_sanguine-spear", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4979, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4980, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4981, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4982, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4983, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4984, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4985, + "fields": { + "parent": "kp_sanguine-spear", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4986, + "fields": { + "parent": "kp_scattered-images", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4987, + "fields": { + "parent": "kp_seal-red-portal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4988, + "fields": { + "parent": "kp_selfish-wish", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4989, + "fields": { + "parent": "kp_shadow-spawn", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4990, + "fields": { + "parent": "kp_shadow-tree", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4991, + "fields": { + "parent": "kp_shadows-brand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4992, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4994, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "4 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4995, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4996, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4997, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "7 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4998, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4999, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "9 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5000, + "fields": { + "parent": "kp_stigmata-of-the-red-goddess", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "10 rounds", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5001, + "fields": { + "parent": "kp_the-black-gods-blessing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5002, + "fields": { + "parent": "kp_the-black-gods-blessing", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5003, + "fields": { + "parent": "kp_wield-soul", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5004, + "fields": { + "parent": "kp_winged-spies", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +} +] diff --git a/data/v2/kobold-press/toh/Spell.json b/data/v2/kobold-press/toh/Spell.json index 7bd0b595..586b75b7 100644 --- a/data/v2/kobold-press/toh/Spell.json +++ b/data/v2/kobold-press/toh/Spell.json @@ -1,2873 +1,2873 @@ [ - { - "model": "api_v2.spell", - "pk": "toh_ambush-chute", - "fields": { - "name": "Ambush Chute", - "desc": "You touch a wooden, plaster, or stone surface and create a passage with two trapdoors. The first trapdoor appears where you touch the surface, and the other appears at a point you can see up to 30 feet away. The two trapdoors can be wooden with a metal ring handle, or they can match the surrounding surfaces, each with a small notch for opening the door. The two trapdoors are connected by an extradimensional passage that is up to 5 feet wide, up to 5 feet tall, and up to 30 feet long. The trapdoors don't need to be on the same surface, allowing the passage to connect two separated locations, such as the two sides of a chasm or river. The passage is always straight and level for creatures inside it, and the creatures exit the tunnel in such a way that allows them to maintain the same orientation as when they entered the passage. No more than five creatures can transit the passage at the same time.\n When the spell ends and the trapdoors disappear, any creatures or objects still in the passage created by the spell are safely ejected to an unoccupied space nearest the end of the passage closest to them.", - "document": "toh", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the length of the passage and the distance you can place the second trapdoor increases by 10 feet for each slot level above 3rd.", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_armored-formation", - "fields": { - "name": "Armored Formation", - "desc": "You bolster the defenses of those nearby. Choose up to twelve willing creatures in range. When an affected creature is within 5 feet of at least one other affected creature, they create a formation. The formation must be a contiguous grouping of affected creatures, and each affected creature must be within 5 feet of at least one other affected creature within the formation. If the formation ever has less than two affected creatures, it ends, and an affected creature that moves further than 5 feet from other creatures in formation is no longer in that formation. Affected creatures don't have to all be in the same formation, and they can create or end as many formations of various sizes as they want for the duration of the spell. Each creature in a formation gains a bonus depending on how many affected creatures are in that formation.\n ***Two or More Creatures.*** Each creature gains a +2 bonus to AC.\n ***Four or More Creatures.*** Each creature gains a +2 bonus to AC, and when it hits with any weapon, it deals an extra 1d6 damage of the weapon's type.\n ***Six or More Creatures.*** Each creature gains a +3 bonus to AC, and when it hits with any weapon, it deals an extra 2d6 damage of the weapon's type.", - "document": "toh", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_babble", - "fields": { - "name": "Babble", - "desc": "This spell causes the speech of affected creatures to sound like nonsense. Each creature in a 30-foot-radius sphere centered on a point you choose within range must succeed on an Intelligence saving throw when you cast this spell or be affected by it.\n An affected creature cannot communicate in any spoken language that it knows. When it speaks, the words come out as gibberish. Spells with verbal components cannot be cast. The spell does not affect telepathic communication, nonverbal communication, or sounds emitted by any creature that does not have a spoken language. As an action, a creature under the effect of this spell can attempt another Intelligence saving throw against the effect. On a successful save, the spell ends.", - "document": "toh", - "level": 5, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_battle-mind", - "fields": { - "name": "Battle Mind", - "desc": "You gain a preternatural sense of the surrounding area, allowing you insights you can share with comrades to provide them with an edge in combat. You gain advantage on Wisdom (Perception) checks made when determining surprise at the beginning of a combat encounter. If you are not surprised, then neither are your allies. When you are engaged in combat while the spell is active, you can use a bonus action on your turn to produce one of the following effects (allies must be able to see or hear you in order to benefit):\n* One ally gains advantage on its next attack roll, saving throw, or ability check.\n* An enemy has disadvantage on the next attack roll it makes against you or an ally.\n* You divine the location of an invisible or hidden creature and impart that knowledge to any allies who can see or hear you. This knowledge does not negate any advantages the creature has, it only allows your allies to be aware of its location at the time. If the creature moves after being detected, its new location is not imparted to your allies.\n* Three allies who can see and hear you on your turn are given the benefit of a *bless*, *guidance*, or *resistance spell* on their turns; you choose the benefit individually for each ally. An ally must use the benefit on its turn, or the benefit is lost.", - "document": "toh", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_beast-within", - "fields": { - "name": "Beast Within", - "desc": "You imbue a willing creature with a touch of lycanthropy. The target gains a few bestial qualities appropriate to the type of lycanthrope you choose, such as tufts of fur, elongated claws, a fang-lined maw or tusks, and similar features. For the duration, the target has resistance to bludgeoning, piercing, and slashing damage from nonmagical attacks that aren't silvered. In addition, the target has advantage on Wisdom (Perception) checks that rely on hearing or smell. Finally, the creature can use its new claws and jaw or tusks to make unarmed strikes. The claws deal slashing damage equal to 1d4 + the target's Strength modifier on a hit. The bite deals piercing damage equal to 1d6 + the target's Strength modifier on a hit. The target's bite doesn't inflict lycanthropy.", - "document": "toh", - "level": 4, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each spell slot above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_betraying-bauble", - "fields": { - "name": "Betraying Bauble", - "desc": "When you cast this spell, you touch a pair of objects. Each object must be small enough to fit in one hand. While holding one of the objects, you can sense the direction to the other object's location.\n If the paired object is in motion, you know the direction and relative speed of its movement (walking, running, galloping, or similar). When the two objects are within 30 feet of each other, they vibrate faintly unless they are touching. If you aren't holding either item and the spell hasn't ended, you can sense the direction of the closest of the two objects within 1,000 feet of you, and you can sense if it is in motion. If neither object is within 1,000 feet of you, you sense the closest object as soon as you come within 1,000 feet of one of them. If an inch or more of lead blocks a direct path between you and an affected object, you can't sense that object.", - "document": "toh", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_bloodlust", - "fields": { - "name": "Bloodlust", - "desc": "You imbue a willing creature that you can see within range with vitality and fury. The target gains 1d6 temporary hit points, has advantage on Strength checks, and deals an extra 1d6 damage when it hits with a weapon attack. When the spell ends, the target suffers one level of exhaustion for 1 minute.", - "document": "toh", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_blunted-edge", - "fields": { - "name": "Blunted Edge", - "desc": "Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or have disadvantage on weapon attack rolls. In addition, when an affected creature rolls damage dice for a successful attack, it must roll the weapon's damage dice twice and use the lower total. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_bolster-fortifications", - "fields": { - "name": "Bolster Fortifications", - "desc": "You create a ward that bolsters a structure or a collection of structures that occupy up to 2,500 square feet of floor space. The bolstered structures can be up to 20 feet tall and shaped as you desire. You can ward several small buildings in a stronghold by dividing the area among them, as long as you can walk into each contiguous area while you are casting the spell. For the purpose of this spell, “structures” include walls, such as the palisade that might surround a small fort, provided the wall is no more than 20 feet tall.\n For the duration, each structure you bolstered has a damage threshold of 5. If a structure already has a damage threshold, that threshold increases by 5.\n This spell protects only the walls, support beams, roofs, and similar that make up the core components of the structure. It doesn't bolster objects within the structures, such as furniture.\n The protected structure or structures radiate magic. A *dispel magic* cast on a structure removes the bolstering from only that structure. You can create a permanently bolstered structure or collection of structures by casting this spell there every day for one year.", - "document": "toh", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the square feet of floor space you can bolster increases by 500 and the damage threshold increases by 2 for each slot level above 3rd.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_bound-haze", - "fields": { - "name": "Bound Haze", - "desc": "You cause a swirling gyre of dust, small rocks, and wind to encircle a creature you can see within range. The target must succeed on a Dexterity saving throw or have disadvantage on attack rolls and on Wisdom (Perception) checks. At the end of each of its turns, the target can make a Dexterity saving throw. On a success, the spell ends.\n In addition, if the target is within a cloud or gas, such as the area of a *fog cloud* spell or a dretch's Fetid Cloud, the affected target has disadvantage on this spell's saving throws and on any saving throws associated with being in the cloud or gas, such as the saving throw to reduce the poison damage the target might take from starting its turn in the area of a *cloudkill* spell.", - "document": "toh", - "level": 3, - "school": "conjuration", - "higher_level": "If you cast this spell using a spell slot of 4th level or higher, the duration is 1 minute, and the spell doesn't require concentration.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_burst-stone", - "fields": { - "name": "Burst Stone", - "desc": "You cause the ground at a point you can see within range to explode. The ground must be sand, earth, or unworked rock. Each creature within 10 feet of that point must make a Dexterity saving throw. On a failed save, the creature takes 4d8 bludgeoning damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone. The area then becomes difficult terrain with a 5-foot-deep pit centered on the point you chose.", - "document": "toh", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_butterfly-effect", - "fields": { - "name": "Butterfly Effect", - "desc": "You cause a cloud of illusory butterflies to swarm around a target you can see within range. The target must succeed on a Charisma saving throw or be charmed for the duration. While charmed, the target can't take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|------|-------------------|\n| 1 | The creature uses all its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. The creature doesn't take an action this turn. |\n| 2-6 | The creature doesn't take an action this turn. |\n| 7-8 | The creature uses its action to make a melee attack against a randomly determined creature within its reach. If there is no creature within its reach, the creature does nothing this turn. |\n| 9-10 | The creature can act and move normally. |\n\nAt the end of each of its turns, and each time it takes damage, the target can make another Charisma saving throw. On a success, the spell ends on the target.", - "document": "toh", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_calm-beasts", - "fields": { - "name": "Calm Beasts", - "desc": "You attempt to calm aggressive or frightened animals. Each beast in a 20-foot-radius sphere centered on a point you choose within range must make a Charisma saving throw. If a creature fails its saving throw, choose one of the following two effects.\n ***Suppress Hold.*** You can suppress any effect causing the target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime.\n ***Suppress Hostility.*** You can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its allies being harmed. When the spell ends, the creature becomes hostile again, unless the GM rules otherwise.", - "document": "toh", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_clear-the-board", - "fields": { - "name": "Clear the Board", - "desc": "You send your allies and your enemies to opposite sides of the battlefield. Pick a cardinal direction. With a shout and a gesture, you and up to five willing friendly creatures within range are teleported up to 90 feet in that direction to spaces you can see. At the same time, up to six hostile creatures within range must make a Wisdom saving throw. On a failed save, the hostile creature is teleported up to 90 feet in the opposite direction of where you teleport yourself and the friendly creatures to spaces you can see. You can't teleport a target into dangerous terrain, such as lava or off the edge of a cliff, and each target must be teleported to an unoccupied space that is on the ground or on a floor.", - "document": "toh", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_conjure-construct", - "fields": { - "name": "Conjure Construct", - "desc": "You summon a construct of challenge rating 5 or lower to harry your foes. It appears in an unoccupied space you can see within range. It disappears when it drops to 0 hit points or when the spell ends.\n The construct is friendly to you and your companions for the duration. Roll initiative for the construct, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the construct, it defends itself from hostile creatures but otherwise takes no actions.\n If your concentration is broken, the construct doesn't disappear. Instead, you lose control of the construct, it becomes hostile toward you and your companions, and it might attack. An uncontrolled construct can't be dismissed by you, and it disappears 1 hour after you summoned it.\n The construct deals double damage to objects and structures.\n The GM has the construct's statistics.", - "document": "toh", - "level": 6, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the challenge rating increases by 1 for each slot level above 6th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_conjure-spectral-allies", - "fields": { - "name": "Conjure Spectral Allies", - "desc": "You sprinkle some graveyard dirt before you and call forth vengeful spirits. The spirits erupt from the ground at a point you choose within range and sweep outward. Each creature in a 30-foot-radius sphere centered on that point must make a Wisdom saving throw. On a failed save, a creature takes 6d10 necrotic damage and becomes frightened for 1 minute. On a successful save, the creature takes half as much damage and isn't frightened.\n At the end of each of its turns, a creature frightened by this spell can make another saving throw. On a success, this spell ends on the creature.", - "document": "toh", - "level": 7, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 1d10 for each slot level above 7th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "6d10", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_convey-inner-peace", - "fields": { - "name": "Convey Inner Peace", - "desc": "You imbue yourself and up to five willing creatures within range with the ability to enter a meditative trance like an elf. Once before the spell ends, an affected creature can complete a long rest in 4 hours, meditating as an elf does while in trance. After resting in this way, each creature gains the same benefit it would normally gain from 8 hours of rest.", - "document": "toh", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_crown-of-thorns", - "fields": { - "name": "Crown of Thorns", - "desc": "You create a psychic binding on the mind of a creature within range. Until this spell ends, the creature must make a Charisma saving throw each time it casts a spell. On a failed save, it takes 2d6 psychic damage, and it fails to cast the spell. It doesn't expend a spell slot if it fails to cast the spell.", - "document": "toh", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_damaging-intel", - "fields": { - "name": "Damaging Intel", - "desc": "You study a creature you can see within range, learning its weaknesses. The creature must make a Charisma saving throw. If it fails, you learn its damage vulnerabilities, damage resistances, and damage immunities, and the next attack one of your allies in range makes against the target before the end of your next turn has advantage.", - "document": "toh", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_deadly-salvo", - "fields": { - "name": "Deadly Salvo", - "desc": "When you cast this spell, the ammunition flies from your hand with a loud bang, targeting up to five creatures or objects you can see within range. You can launch the bullets at one target or several. Make a ranged spell attack for each bullet. On a hit, the target takes 3d6 piercing damage. This damage can experience a burst, as described in the gunpowder weapon property (see the Adventuring Gear chapter), but this spell counts as a single effect for the purposes of determining how many times the damage can burst, regardless of the number of targets affected.", - "document": "toh", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "3d6", - "damage_types": [ - "piercing" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_divine-retribution", - "fields": { - "name": "Divine Retribution", - "desc": "With a last word before you fall unconscious, this spell inflicts radiant damage to your attacker equal to 1d8 + the amount of damage you took from the triggering attack. If the attacker is a fiend or undead, it takes an extra 1d8 radiant damage. The creature then must succeed on a Constitution saving throw or become stunned for 1 minute. At the end of each of its turns, the creature can make another Constitution saving throw. On a successful save, it is no longer stunned.", - "document": "toh", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "1d8", - "damage_types": [ - "radiant" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_dreamwine", - "fields": { - "name": "Dreamwine", - "desc": "You imbue a bottle of wine with fey magic. While casting this spell, you and up to seven other creatures can drink the imbued wine. At the completion of the casting, each creature that drank the wine can see invisible creatures and objects as if they were visible, can see into the Ethereal plane, and has advantage on Charisma checks and saving throws for the duration. Ethereal creatures and objects appear ghostly and translucent.", - "document": "toh", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_emerald-eyes", - "fields": { - "name": "Emerald Eyes", - "desc": "You attempt to convince a creature to enter a paranoid, murderous rage. Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or be convinced those around it intend to steal anything and everything it possesses, from its position of employment, to the affections of its loved ones, to its monetary wealth and possessions, no matter how trusted those nearby might be or how ludicrous such a theft might seem. While affected by this spell, the target must use its action to attack the nearest creature other than itself or you. If the target starts its turn with no other creature near enough to move to and attack, the target can make another Wisdom saving throw. On a success, the target's head clears momentarily and it can act freely that turn. If the target starts its turn a second time with no other creature near enough to move to and attack, it can make another Wisdom saving throw. On a success, the spell ends on the target.\n Each time the target takes damage, it can make another Wisdom saving throw. On a success, the spell ends on the target.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_enchanted-bloom", - "fields": { - "name": "Enchanted Bloom", - "desc": "You spend an hour anointing a rose with scented oils and imbuing it with fey magic. The first creature other than you that touches the rose before the spell ends pricks itself on the thorns and must make a Charisma saving throw. On a failed save, the creature falls into a deep slumber for 24 hours, and it can be awoken only by the greater restoration spell or similar magic or if you choose to end the spell as an action. While slumbering, the creature doesn't need to eat or drink, and it doesn't age.\n Each time the creature takes damage, it makes a new Charisma saving throw. On a success, the spell ends on the creature.", - "document": "toh", - "level": 5, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of a higher level, the duration of the slumber increases to 7 days with a 6th-level slot, to 30 days with a 7th-level slot, to 180 days with an 8th-level slot, and to a year with a 9th-level spell slot.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_eruption", - "fields": { - "name": "Eruption", - "desc": "You create a furiously erupting volcano centered on a point you can see within range. The ground heaves violently as a cinder cone that is 2 feet wide and 5 feet tall bursts up from it. Each creature within 30 feet of the cinder cone when it appears must make a Strength saving throw. On a failed save, a creature takes 8d6 bludgeoning damage and is knocked prone. On a successful save, a creature takes half as much damage and isn't knocked prone.\n Each round you maintain concentration on this spell, the cinder cone produces additional effects on your turn.\n ***Round 2.*** Smoke pours from the cinder cone. Each creature within 10 feet of the cinder cone when the smoke appears takes 4d6 poison damage. Afterwards, each creature that enters the smoky area for the first time on a turn or starts its turn there takes 2d6 poison damage. The smoke spreads around corners, and its area is heavily obscured. A wind of moderate or greater speed (at least 10 miles per hour) disperses the smoke until the start of your next turn, when the smoke reforms.\n ***Round 3.*** Lava bubbles out from the cinder cone, spreading out to cover the ground within 20 feet of the cinder cone. Each creature and object in the area when the lava appears takes 10d10 fire damage and is on fire. Afterwards, each creature that enters the lava for the first time on a turn or starts its turn there takes 5d10 fire damage. In addition, the smoke spreads to fill a 20-foot-radius sphere centered on the cinder cone.\n ***Round 4.*** The lava continues spreading and covers the ground within 30 feet of the cinder cone in lava that is 1-foot-deep. The lava-covered ground becomes difficult terrain. In addition, the smoke fills a 30-footradius sphere centered on the cinder cone.\n ***Round 5.*** The lava expands to cover the ground within 40 feet of the cinder cone, and the smoke fills a 40-foot radius sphere centered on the cinder cone. In addition, the cinder cone begins spewing hot rocks. Choose up to three creatures within 90 feet of the cinder cone. Each target must succeed on a Dexterity saving throw or take 3d6 bludgeoning damage and 3d6 fire damage.\n ***Rounds 6-10.*** The lava and smoke continue to expand in size by 10 feet each round. In addition, each round you can direct the cinder cone to spew hot rocks at three targets, as described in Round 5.\n When the spell ends, the volcano ceases erupting, but the smoke and lava remain for 1 minute before cooling and dispersing. The landscape is permanently altered by the spell.", - "document": "toh", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_feint", - "fields": { - "name": "Feint", - "desc": "You create a momentary, flickering duplicate of yourself just as you make an attack against a creature. You have advantage on the next attack roll you make against the target before the end of your next turn as it's distracted by your illusory copy.", - "document": "toh", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_fey-food", - "fields": { - "name": "Fey Food", - "desc": "You enchant up to 1 pound of food or 1 gallon of drink within range with fey magic. Choose one of the effects below. For the duration, any creature that consumes the enchanted food or drink, up to four creatures per pound of food or gallon of drink, must succeed on a Charisma saving throw or succumb to the chosen effect.\n ***Slumber.*** The creature falls asleep and is unconscious for 1 hour. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n ***Friendly Face.*** The creature is charmed by you for 1 hour. If you or your allies do anything harmful to it, the creature can make another Charisma saving throw. On a success, the spell ends on the creature.\n ***Muddled Memory.*** The creature remembers only fragments of the events of the past hour. A remove curse or greater restoration spell cast on the creature restores the creature's memory.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can enchant an additional pound of food or gallon of drink for each slot level over 3rd.", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_fey-touched-blade", - "fields": { - "name": "Fey-Touched Blade", - "desc": "You touch a nonmagical weapon and imbue it with the magic of the fey. Choose one of the following damage types: force, psychic, necrotic, or radiant. Until the spell ends, the weapon becomes a magic weapon and deals an extra 1d4 damage of the chosen type to any target it hits.", - "document": "toh", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can imbue one additional weapon for each slot level above 2nd.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_forced-reposition", - "fields": { - "name": "Forced Reposition", - "desc": "One creature of your choice that you can see within range is teleported to an unoccupied space you can see up to 60 feet above you. The space can be open air or a balcony, ledge, or other surface above you. An unwilling creature that succeeds on a Constitution saving throw is unaffected. A creature teleported to open air immediately falls, taking falling damage as normal, unless it can fly or it has some other method of catching itself or preventing a fall. A creature can't be teleported into a solid object.", - "document": "toh", - "level": 4, - "school": "conjuration", - "higher_level": "If you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The targets must be within 30 feet of each other when you target them, but they don't need to be teleported to the same locations.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_furious-wail", - "fields": { - "name": "Furious Wail", - "desc": "You let out a scream of white-hot fury that pierces the minds of up to five creatures within range. Each target must make a Charisma saving throw. On a failed save, it takes 10d10 + 30 psychic damage and is stunned until the end of its next turn. On a success, it takes half as much damage.", - "document": "toh", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 5, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "10d10+30", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_fuse-armor", - "fields": { - "name": "Fuse Armor", - "desc": "Choose a manufactured metal object with movable parts, such as a drawbridge pulley or winch or a suit of heavy or medium metal armor, that you can see within range. You cause the object's moveable parts to fuse together for the duration. The object's movable aspects can't be moved: a pulley's wheel won't turn and the joints of armor won't bend.\n A creature wearing armor affected by this spell has its speed reduced by 10 feet and has disadvantage on weapon attacks and ability checks that use Strength or Dexterity. At the end of each of its turns, the creature wearing the armor can make a Strength saving throw. On a success, the spell ends on the armor.\n A creature in physical contact with an affected object that isn't a suit of armor can use its action to make a Strength check against your spell save DC. On a success, the spell ends on the object.\n If you target a construct with this spell, it must succeed on a Strength saving throw or have its speed reduced by 10 feet and have disadvantage on weapon attacks. At the end of each of its turns, the construct can make another Strength saving throw. On a success, the spell ends on the construct.", - "document": "toh", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional object for each slot level above 2nd. The objects must be within 30 feet of each other when you target them.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_gale", - "fields": { - "name": "Gale", - "desc": "You summon a storm to batter your oncoming enemies. Until the spell ends, freezing rain and turbulent winds fill a 20-foot-tall cylinder with a 300- foot radius centered on a point you choose within range. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.\n The spell's area is heavily obscured, and exposed flames in the area are doused. The ground in the area becomes slick, difficult terrain, and a flying creature in the area must land at the end of its turn or fall. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a Constitution saving throw as the wind and rain assail it. On a failed save, the creature takes 1d6 cold damage.\n If a creature is concentrating in the spell's area, the creature must make a successful Constitution saving throw against your spell save DC or lose concentration.", - "document": "toh", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "1 mile", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_glare", - "fields": { - "name": "Glare", - "desc": "You cast a disdainful glare at up to two creatures you can see within range. Each target must succeed on a Wisdom saving throw or take no actions on its next turn as it reassesses its life choices. If a creature fails the saving throw by 5 or more, it can't take actions on its next two turns.", - "document": "toh", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 2, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_high-ground", - "fields": { - "name": "High Ground", - "desc": "With a word, you gesture across an area and cause the terrain to rise up into a 10-foot-tall hillock at a point you choose within range. You must be outdoors to cast this spell. The hillock is up to 30 feet long and up to 15 feet wide, and it must be in a line. If the hillock cuts through a creature's space when it appears, the creature is pushed to one side of the hillock or to the top of the hillock (your choice). The ranged attack distance for a creature on top of the hillock is doubled, provided the target is at a lower elevation than the creature on the hillock. At the GM's discretion, creatures on top of the hillock gain any additional bonuses or penalties that higher elevation might provide, such as advantage on attacks against those on lower elevations, being easier to spot, longer sight distance, or similar.\n The steep sides of the hillock are difficult to climb. A creature at the bottom of the hillock that attempts to move up to the top must succeed on a Strength (Athletics) or Dexterity (Acrobatics) check against your spell save DC to climb to the top of the hillock.\n This spell can't manipulate stone construction, and rocks and structures shift to accommodate the hillock. If the hillock's formation would make a structure unstable, the hillock fails to form in the structure's spaces. Similarly, this spell doesn't directly affect plant growth. The hillock carries any plants along with it.", - "document": "toh", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell at 4th level or higher, you can increase the width of the hillock by 5 feet or the length by 10 feet for each slot above 3rd.", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_immolating-gibbet", - "fields": { - "name": "Immolating Gibbet", - "desc": "You cause up to three creatures you can see within range to be yanked into the air where their blood turns to fire, burning them from within. Each target must succeed on a Dexterity saving throw or be magically pulled up to 60 into the air. The creature is restrained there until the spell ends. A restrained creature must make a Constitution saving throw at the start of each of its turns. The creature takes 7d6 fire damage on a failed save, or half as much damage on a successful one.\n At the end of each of its turns, a restrained creature can make another Dexterity saving throw. On a success, the spell ends on the creature, and the creature falls to the ground, taking falling damage as normal. Alternatively, the restrained creature or someone else who can reach it can use an action to make an Intelligence (Arcana) check against your spell save DC. On a success, the restrained effect ends, and the creature falls to the ground, taking falling damage as normal.", - "document": "toh", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "7d6", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_inexorable-summons", - "fields": { - "name": "Inexorable Summons", - "desc": "You reach out toward a creature and call to it. The target teleports to an unoccupied space that you can see within 5 feet of you. An unwilling creature can make a Wisdom saving throw, and if it succeeds, it isn't affected by this spell. You can't teleport a target into dangerous terrain, such as lava, and the target must be teleported to a space on the ground or on a floor.", - "document": "toh", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_instant-armored-vehicle", - "fields": { - "name": "Instant Armored Vehicle", - "desc": "You transform a handful of materials into a Huge armored vehicle. The vehicle can take whatever form you want, but it has AC 18 and 100 hit points. If it is reduced to 0 hit points, it is destroyed. If it is a ground vehicle, it has a speed of 90 feet. If it is an airborne vehicle, it has a flying speed of 45 feet. If it is a waterborne vehicle, it has a speed of 2 miles per hour. The vehicle can hold up to four Medium creatures within it.\n A creature inside it has three-quarters cover from attacks outside the vehicle, which contains arrow slits, portholes, and other small openings. A creature piloting the armored vehicle can take the Careen action. To do so, the vehicle must move at least 10 feet in a straight line and enter or pass through the space of at least one Large or smaller creature. This movement doesn't provoke opportunity attacks. Each creature in the armored vehicle's path must make a Dexterity saving throw against your spell save DC. On a failed save, the creature takes 5d8 bludgeoning damage and is knocked prone. On a successful save, the creature can choose to be pushed 5 feet away from the space through which the vehicle passed. A creature that chooses not to be pushed suffers the consequences of a failed saving throw. If the creature piloting the armored vehicle isn't proficient in land, water, or air vehicles (whichever is appropriate for the vehicle's type), each target has advantage on the saving throw against the Careen action.", - "document": "toh", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_invested-champion", - "fields": { - "name": "Invested Champion", - "desc": "You touch one creature and choose either to become its champion, or for it to become yours. If you choose a creature to become your champion, it fights on your behalf. While this spell is in effect, you can cast any spell with a range of touch on your champion as if the spell had a range of 60 feet. Your champion's attacks are considered magical, and you can use a bonus action on your turn to encourage your champion, granting it advantage on its next attack roll.\n If you become the champion of another creature, you gain advantage on all attack rolls against creatures that have attacked your charge within the last round. If you are wielding a shield, and a creature within 5 feet of you attacks your charge, you can use your reaction to impose disadvantage on the attack roll, as if you had the Protection fighting style. If you already have the Protection fighting style, then in addition to imposing disadvantage, you can also push an enemy 5 feet in any direction away from your charge when you take your reaction. You can use a bonus action on your turn to reroll the damage for any successful attack against a creature that is threatening your charge.\n Whichever version of the spell is cast, if the distance between the champion and its designated ally increases to more than 60 feet, the spell ends.", - "document": "toh", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_iron-gut", - "fields": { - "name": "Iron Gut", - "desc": "For the duration, one willing creature you touch has resistance to poison damage and advantage on saving throws against poison. When the affected creature makes a Constitution saving throw against an effect that deals poison damage or that would cause the creature to become poisoned, the creature can choose to succeed on the saving throw. If it does so, the spell ends on the creature.\n While affected by this spell, a creature can't gain any benefit from consuming magical foodstuffs, such as those produced by the goodberry and heroes' feast spells, and it doesn't suffer ill effects from consuming potentially harmful, nonmagical foodstuffs, such as spoiled food or non-potable water. The creature is affected normally by other consumable magic items, such as potions. The creature can identify poisoned food by a sour taste, with deadlier poisons tasting more sour.", - "document": "toh", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "up to 1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_jagged-forcelance", - "fields": { - "name": "Jagged Forcelance", - "desc": "You create a magical tether of pulsing, golden force between two willing creatures you can see within range. The two creatures must be within 15 feet of each other. The tether remains as long as each tethered creature ends its turn within 15 feet of the other tethered creature. If a tethered creature ends its turn more than 15 feet away from its tethered partner, the spell ends. Though the tether appears as a thin line, its effect extends the full height of the tethered creatures and can affect prone or hovering creatures, provided the hovering creature hovers no higher than the tallest tethered creature.\n Any creature that touches the tether or ends its turn in a space the tether passes through must make a Strength saving throw. On a failure, a creature takes 3d6 force damage and is knocked prone. On a success, a creature takes half as much damage and isn't knocked prone. A creature that makes this saving throw, whether it succeeds or fails, can't be affected by the tether again until the start of your next turn.", - "document": "toh", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the maximum distance between the tethered creatures increases by 5 feet, and the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_jarring-growl", - "fields": { - "name": "Jarring Growl", - "desc": "You loose a growl from deep within the pit of your stomach, causing others who can hear it to become unnerved. You have advantage on Charisma (Intimidation) checks you make before the beginning of your next turn. In addition, each creature within 5 feet of you must make a Wisdom saving throw. On a failure, you have advantage on attack rolls against that creature until the end of your turn. You are aware of which creatures failed their saving throws.", - "document": "toh", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_lance", - "fields": { - "name": "Lance", - "desc": "You create a shimmering lance of force and hurl it toward a creature you can see within range. Make a ranged spell attack against the target. On a hit, the target takes 5d6 force damage, and it is restrained by the lance until the end of its next turn.", - "document": "toh", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "5d6", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_less-fool-i", - "fields": { - "name": "Less Fool, I", - "desc": "A creature you touch becomes less susceptible to lies and magical influence. For the duration, other creatures have disadvantage on Charisma checks to influence the protected creature, and the creature has advantage on spells that cause it to become charmed or frightened.", - "document": "toh", - "level": 1, - "school": "divination", - "higher_level": "If you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 1 hour. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the duration is 1 year. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_life-burst", - "fields": { - "name": "Life Burst", - "desc": "You make a jubilant shout when you cast this spell, releasing your stores of divine energy in a wave of healing. You distribute the remaining power of your Lay on Hands to allies within 30 feet of you, restoring hit points and curing diseases and poisons. This healing energy removes diseases and poisons first (starting with the nearest ally), removing 5 hit points from the hit point total for each disease or poison cured, until all the points are spent or all diseases and poisons are cured. If any hit points remain, you regain hit points equal to that amount.\n This spell expends all of the healing energy in your Lay on Hands, which replenishes, as normal, when you finish a long rest.", - "document": "toh", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_lightless-torch", - "fields": { - "name": "Lightless Torch", - "desc": "You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds a shadowy miasma in a 30-foot radius. A creature with darkvision inside the radius sees the area as if it were filled with bright light. The miasma doesn't shed light, and a creature with darkvision inside the radius can still see outside the radius as normal. A creature with darkvision outside the radius or a creature without darkvision sees only that the object is surrounded by wisps of shadow.\n Completely covering the affected object with an opaque object, such as a bowl or a helm, blocks the effect. Though the effect doesn't shed light, it can be dispelled if the area of a darkness spell overlaps the area of this spell.\n If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.", - "document": "toh", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 2 hours for each slot level above 1st.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_long-game", - "fields": { - "name": "Long Game", - "desc": "While casting this spell, you must engage your target in conversation. At the completion of the casting, the target must make a Charisma saving throw. If it fails, you place a latent magical effect in the target's mind for the duration. If the target succeeds on the saving throw, it realizes that you used magic to affect its mind and might become hostile toward you, at the GM's discretion.\n Once before the spell ends, you can use an action to trigger the magical effect in the target's mind, provided you are on the same plane of existence as the target. When the effect is triggered, the target takes 5d8 psychic damage plus an extra 1d8 psychic damage for every 24 hours that has passed since you cast the spell, up to a total of 12d8 psychic damage. The spell has no effect on the target if it ends before you trigger the magical effect.\n *A greater restoration* or *wish* spell cast on the target ends the spell early. You know if the spell is ended early, provided you are on the same plane of existence as the target.", - "document": "toh", - "level": 7, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "psychic" - ], - "duration": "7 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_magma-spray", - "fields": { - "name": "Magma Spray", - "desc": "A 5-foot-diameter, 5-foot-tall cylindrical fountain of magma erupts from the ground in a space of your choice within range. A creature in that space takes 3d8 fire damage, or half as much damage with a successful Dexterity saving throw. A creature that enters the area on its turn or ends its turn there also takes 3d8 fire damage, or half as much damage with a successful Dexterity saving throw. A creature can take this damage only once per turn.\n A creature killed by this spell is reduced to ash.", - "document": "toh", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "40 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_mantle-of-the-brave", - "fields": { - "name": "Mantle of the Brave", - "desc": "You touch up to four individuals, bolstering their courage. The next time a creature affected by this spell must make a saving throw against a spell or effect that would cause the frightened condition, it has advantage on the roll. Once a creature has received this benefit, the spell ends for that creature.", - "document": "toh", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_martyrs-rally", - "fields": { - "name": "Martyr's Rally", - "desc": "With a hopeful rallying cry just as you fall unconscious, you rouse your allies to action. Each ally within 60 feet of you that can see and hear you has advantage on attack rolls for the duration. If you regain hit points, the spell immediately ends.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_mass-faerie-fire", - "fields": { - "name": "Mass Faerie Fire", - "desc": "You can place up to three 20-foot cubes each centered on a point you can see within range. Each object in a cube is outlined in blue, green, or violet light (your choice). Any creature in a cube when the spell is cast is also outlined in light if it fails a Dexterity saving throw. A creature in the area of more than one cube is affected only once. Each affected object and creature sheds dim light in a 10-foot radius for the duration.\n Any attack roll against an affected object or creature has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.", - "document": "toh", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_misdirection", - "fields": { - "name": "Misdirection", - "desc": "You create a brief flash of light, loud sound, or other distraction that interrupts a creature's attack. When a creature you can see within range makes an attack, you can impose disadvantage on its attack roll.", - "document": "toh", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_mud", - "fields": { - "name": "Mud", - "desc": "The ground in a 20-foot radius centered on a point within range becomes thick, viscous mud. The area becomes difficult terrain for the duration. When a creature enters the affected area for the first time on a turn or starts its turn there, the creature must make a Strength saving throw. On a failed save, its movement speed is reduced to 0 until the start of its next turn.", - "document": "toh", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_muted-foe", - "fields": { - "name": "Muted Foe", - "desc": "You touch a nonmagical weapon. The next time a creature hits with the affected weapon before the spell ends, the weapon booms with a thunderous peal as the weapon strikes. The attack deals an extra 1d6 thunder damage to the target, and the target becomes deafened, immune to thunder damage, and unable to cast spells with verbal components for 1 minute. At the end of each of its turns, the target can make a Wisdom saving throw. On a success, the effect ends.", - "document": "toh", - "level": 1, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the extra damage increases by 1d6 for each slot level above 1st.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_never-surrender", - "fields": { - "name": "Never Surrender", - "desc": "When the target is reduced to 0 hit points, it can fight looming death to stay in the fight. The target doesn't fall unconscious but must still make death saving throws, as normal. The target doesn't need to make a death saving throw until the end of its next turn, but it has disadvantage on that first death saving throw. In addition, massive damage required to kill the target outright must equal or exceed twice the target's hit point maximum instead. If the target regains 1 or more hit points, this spell ends.", - "document": "toh", - "level": 3, - "school": "abjuration", - "higher_level": "If you cast this spell using a spell slot of 6th level or higher, the target doesn't have disadvantage on its first death saving throw.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_oathbound-implement", - "fields": { - "name": "Oathbound Implement", - "desc": "You place a magical oath upon a creature you can see within range, compelling it to complete a specific task or service that involves using a weapon as you decide. If the creature can understand you, it must succeed on a Wisdom saving throw or become bound by the task. When acting to complete the directed task, the target has advantage on the first attack roll it makes on each of its turns using a weapon. If the target attempts to use a weapon for a purpose other than completing the specific task or service, it has disadvantage on attack rolls with a weapon and must roll the weapon's damage dice twice, using the lower total.\n Completing the task ends the spell early. Should you issue a suicidal task, the spell ends. You can end the spell early by using an action to dismiss it. A *remove curse*, *greater restoration*, or *wish* spell also ends it.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_outmaneuver", - "fields": { - "name": "Outmaneuver", - "desc": "When a creature provokes an opportunity attack from an ally you can see within range, you can force the creature to make a Wisdom saving throw. On a failed save, the creature's movement is reduced to 0, and you can move up to your speed toward the creature without provoking opportunity attacks. This spell doesn't interrupt your ally's opportunity attack, which happens before the effects of this spell.", - "document": "toh", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_oversized-paws", - "fields": { - "name": "Oversized Paws", - "desc": "Until this spell ends, the hands and feet of one willing creature within range become oversized and more powerful. For the duration, the creature adds 1d4 to damage it deals with its unarmed strike.", - "document": "toh", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each spell slot above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_pincer", - "fields": { - "name": "Pincer", - "desc": "You force your enemies into a tight spot. Choose two points you can see within range. The points must be at least 30 feet apart from each other. Each point then emits a thunderous boom in a 30-foot cone in the direction of the other point. The boom is audible out to 300 feet.\n Each creature within a cone must make a Constitution saving throw. On a failed save, a creature takes 5d10 thunder damage and is pushed up to 10 feet away from the point that emitted the cone. On a successful save, the creature takes half as much damage and isn't pushed. Objects that aren't being worn or carried within each cone are automatically pushed.", - "document": "toh", - "level": 6, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d10 for each slot level above 6th.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 2, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_pipers-lure", - "fields": { - "name": "Piper's Lure", - "desc": "You touch a nonmagical pipe or horn instrument and imbue it with magic that lures creatures toward it. Each creature that enters or starts its turn within 150 feet of the affected object must succeed on a Wisdom saving throw or be charmed for 10 minutes. A creature charmed by this spell must take the Dash action and move toward the affected object by the safest available route on each of its turns. Once a charmed creature moves within 5 feet of the object, it is also incapacitated as it stares at the object and sways in place to a mesmerizing tune only it can hear. If the object is moved, the charmed creature attempts to follow it.\n For every 10 minutes that elapse, the creature can make a new Wisdom saving throw. On a success, the spell ends on that creature. If a charmed creature is attacked, the spell ends immediately on that creature. Once a creature has been charmed by this spell, it can't be charmed by it again for 24 hours.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_portal-jaunt", - "fields": { - "name": "Portal Jaunt", - "desc": "You touch a specially prepared key to a door or gate, turning it into a one-way portal to another such door within range. This spell works with any crafted door, doorway, archway, or any other artificial opening, but not natural or accidental openings such as cave entrances or cracks in walls. You must be aware of your destination or be able to see it from where you cast the spell.\n On completing the spell, the touched door opens, revealing a shimmering image of the location beyond the destination door. You can move through the door, emerging instantly out of the destination door. You can also allow one other willing creature to pass through the portal instead. Anything you carry moves through the door with you, including other creatures, willing or unwilling.\n For the purpose of this spell, any locks, bars, or magical effects such as arcane lock are ineffectual for the spell's duration. You can travel only to a side of the door you can see or have physically visited in the past (divinations such as clairvoyance count as seeing). Once you or a willing creature passes through, both doors shut, ending the spell. If you or another creature does not move through the portal within 1 round, the spell ends.", - "document": "toh", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the range increases by 100 feet and the duration increases by 1 round for each slot level above 3rd. Each round added to the duration allows one additional creature to move through the portal before the spell ends.", - "target_type": "creature", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_portal-trap", - "fields": { - "name": "Portal Trap", - "desc": "You create a magical portal on a surface in an unoccupied space you can see within range. The portal occupies up to 5 square feet of the surface and is instantly covered with an illusion. The illusion looks like the surrounding terrain or surface features, such as mortared stone if the portal is placed on a stone wall, or a simple image of your choice like those created by the *minor illusion* spell. A creature that touches, steps on, or otherwise interacts with or enters the portal must succeed on a Wisdom saving throw or be teleported to an unoccupied space up to 30 feet away in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. The creature can't be teleported into a solid object.\n Physical interaction with the illusion reveals it to be an illusion, but such touching triggers the portal's effect. A creature that uses an action to examine the area where the portal is located can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC.", - "document": "toh", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional portal for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_power-word-fling", - "fields": { - "name": "Power Word Fling", - "desc": "You mutter a word of power that causes a creature you can see within range to be flung vertically or horizontally. The creature must succeed on a Strength saving throw or be thrown up to 15 feet vertically or horizontally. If the target impacts a surface, such as a ceiling or wall, it stops moving and takes 3d6 bludgeoning damage. If the target was thrown vertically, it plummets to the ground, taking falling damage as normal, unless it has a flying speed or other method of preventing a fall. If the target impacts a creature, the target stops moving and takes 3d6 bludgeoning damage, and the creature the target hits must succeed on a Strength saving throw or be knocked prone. After the target is thrown horizontally or it falls from being thrown vertically, regardless of whether it impacted a surface, it is knocked prone.\n As a bonus action on each of your subsequent turns, you can attempt to fling the same creature again. The target must succeed on another Strength saving throw or be thrown.", - "document": "toh", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the distance you can fling the target increases by 5 feet, and the damage from impacting a surface or creature increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_power-word-rend", - "fields": { - "name": "Power Word Rend", - "desc": "You speak a word of power that causes the internal organs of a creature you can see within range to rupture. The target must make a Constitution saving throw. It takes 4d6 + 20 force damage on a failed save, or half as much damage on a successful one. If the target is below half its hit point maximum, it has disadvantage on this saving throw. This spell has no effect on creatures without vital internal organs, such as constructs, oozes, and undead.", - "document": "toh", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d6+20", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_reapers-knell", - "fields": { - "name": "Reaper's Knell", - "desc": "As the bell rings, a burst of necrotic energy ripples out in a 20-foot-radius sphere from a point you can see within range. Each creature in that area must make a Wisdom saving throw. On a failed save, the creature is marked with necrotic energy for the duration. If a marked creature is reduced to 0 hit points or dies before the spell ends, you regain hit points equal to 2d8 + your spellcasting ability modifier. Alternatively, you can choose for one ally you can see within range to regain the hit points instead.", - "document": "toh", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the healing increases by 1d8 for each slot level above 4th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_rebounding-bolt", - "fields": { - "name": "Rebounding Bolt", - "desc": "You fire a vibrant blue beam of energy at a creature you can see within range. The beam then bounces to a creature of your choice within 30 feet of the target, losing some of its vibrancy and continuing to bounce to other creatures of your choice until it sputters out. Each subsequent target must be within 30 feet of the target affected before it, and the beam can't bounce to a target it has already affected.\n Each target must make a Constitution saving throw. The first target takes 5d6 force damage on a failed save, or half as much damage on a successful one. The beam loses some of its power then bounces to the second target. The beam deals 1d6 force damage less (4d6, then 3d6, then 2d6, then 1d6) to each subsequent target with the final target taking 1d6 force damage on a failed save, or half as much damage on a successful one.", - "document": "toh", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd. This increase allows the beam to jump an additional time, reducing the damage it deals by 1d6 with each bounce as normal.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "5d6", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_repulsing-wall", - "fields": { - "name": "Repulsing Wall", - "desc": "You create a shimmering wall of light on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is translucent, and creatures have disadvantage on Wisdom (Perception) checks to look through the wall.\n One side of the wall, selected by you when you cast this spell, deals 5d8 radiant damage when a creature enters the wall for the first time on a turn or ends its turn there. A creature attempting to pass through the wall must make a Strength saving throw. On a failed save, a creature is pushed 10 feet away from the wall and falls prone. A creature that is undead, a fiend, or vulnerable to radiant damage has disadvantage on this saving throw. The other side of the wall deals no damage and doesn't restrict movement through it.", - "document": "toh", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_retribution", - "fields": { - "name": "Retribution", - "desc": "You wrap yourself in shimmering ethereal armor. The next time a creature hits you with a melee attack, it takes force damage equal to half the damage it dealt to you, and it must make a Strength saving throw. On a failed save, the creature is pushed up to 5 feet away from you. Then the spell ends.", - "document": "toh", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_rockfall-ward", - "fields": { - "name": "Rockfall Ward", - "desc": "You temporarily halt the fall of up to a 10-foot cube of nonmagical objects or debris, saving those who might have been crushed. The falling material's rate of descent slows to 60 feet per round and comes to a stop 5 feet above the ground, where it hovers until the spell ends. This spell can't prevent missile weapons from striking a target, and it can't slow the descent of an object larger than a 10-foot cube. However, at the GM's discretion, it can slow the descent of a section of a larger object, such as the wall of a falling building or a section of sail and rigging tied to a falling mast.", - "document": "toh", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the cube of debris and objects you can halt increases by 5 feet for each slot level above 1st.", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_sacrifice-pawn", - "fields": { - "name": "Sacrifice Pawn", - "desc": "Sometimes one must fall so others might rise. When a friendly creature you can see within range drops to 0 hit points, you can harness its escaping life energy to heal yourself. You regain hit points equal to the fallen creature's level (or CR for a creature without a level) + your spellcasting ability modifier.", - "document": "toh", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_sacrificial-healing", - "fields": { - "name": "Sacrificial Healing", - "desc": "You heal another creature's wounds by taking them upon yourself or transferring them to another willing creature in range. Roll 4d8. The number rolled is the amount of damage healed by the target and the damage you take, as its wounds close and similar damage appears on your body (or the body of the other willing target of the spell).", - "document": "toh", - "level": 4, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_safe-transposition", - "fields": { - "name": "Safe Transposition", - "desc": "You cast this spell when an ally below half its hit point maximum within range is attacked. You swap places with your ally, each of you instantly teleporting into the space the other just occupied. If there isn't room for you in the new space or for your ally in your former space, this spell fails. After the two of you teleport, the triggering attack roll is compared to your AC to determine if it hits you.", - "document": "toh", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_secret-blind", - "fields": { - "name": "Secret Blind", - "desc": "A 5-foot-radius immobile sphere springs into existence around you and remains stationary for the duration. You and up to four Medium or smaller creatures can occupy the sphere. If its area includes a larger creature or more than five creatures, each larger creature and excess creature is pushed to an unoccupied space outside of the sphere.\n Creatures and objects within the sphere when you cast this spell may move through it freely. All other creatures and objects are barred from passing through the sphere after it forms. Spells and other magical effects can't extend through the sphere, with the exception of transmutation or conjuration spells and magical effects that allow you or the creatures inside the sphere to willingly leave it, such as the *dimension door* and *teleport* spells. The atmosphere inside the sphere is cool, dry, and filled with air, regardless of the conditions outside.\n Until the effect ends, you can command the interior to be dimly lit or dark. The sphere is opaque from the outside and covered in an illusion that makes it appear as the surrounding terrain, but it is transparent from the inside. Physical interaction with the illusion reveals it to be an illusion as the creature touches the cool, firm surface of the sphere. A creature that uses an action to examine the sphere can determine it is covered by an illusion with a successful Intelligence (Investigation) check against your spell save DC.\n The effect ends if you leave its area, or if the sphere is hit with the *disintegration* spell or a successful *dispel magic* spell.", - "document": "toh", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 5, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_shared-frenzy", - "fields": { - "name": "Shared Frenzy", - "desc": "You yell defiantly as part of casting this spell to encourage a battle fury among your allies. Each friendly creature in range must make a Charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, it has resistance to bludgeoning, piercing, and slashing damage and has advantage on attack rolls for the duration. However, attack rolls made against an affected creature have advantage.", - "document": "toh", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, this spell no longer causes creatures to have advantage against the spell's targets.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_shocking-volley", - "fields": { - "name": "Shocking Volley", - "desc": "You draw back and release an imaginary bowstring while aiming at a point you can see within range. Bolts of arrow-shaped lightning shoot from the imaginary bow, and each creature within 20 feet of that point must make a Dexterity saving throw. On a failed save, a creature takes 2d8 lightning damage and is incapacitated until the end of its next turn. On a successful save, a creature takes half as much damage.", - "document": "toh", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "lightning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_sightburst", - "fields": { - "name": "Sightburst", - "desc": "A wave of echoing sound emanates from you. Until the start of your next turn, you have blindsight out to a range of 100 feet, and you know the location of any natural hazards within that area. You have advantage on saving throws made against hazards detected with this spell.", - "document": "toh", - "level": 2, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 1 minute. When you use a spell slot of 5th level or higher, the duration is concentration, up to 10 minutes. When you use a spell slot of 7th level or higher, the duration is concentration, up to 1 hour.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_silvershout", - "fields": { - "name": "Silvershout", - "desc": "You unleash a shout that coats all creatures in a 30'foot cone in silver dust. If a creature in that area is a shapeshifter, the dust covering it glows. In addition, each creature in the area must make a Constitution saving throw. On a failed save, weapon attacks against that creature are considered to be silvered for the purposes of overcoming resistance and immunity to nonmagical attacks that aren't silvered for 1 minute.", - "document": "toh", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_smelting-blast", - "fields": { - "name": "Smelting Blast", - "desc": "You unleash a bolt of red-hot liquid metal at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 2d8 fire damage and must succeed on a Constitution saving throw or be coated in cooling, liquid metal for the duration. A creature coated in liquid metal takes 1d8 fire damage at the start of each of its turns as the metal scorches while it cools. At the end of each of its turns, the creature can make another Constitution saving throw. On a success, the spell ends and the liquid metal disappears.", - "document": "toh", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "2d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_sneer", - "fields": { - "name": "Sneer", - "desc": "You curl your lip in disgust at a creature you can see within range. The target must succeed on a Charisma saving throw or take psychic damage equal to 2d4 + your spellcasting ability modifier.", - "document": "toh", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_spiked-barricade", - "fields": { - "name": "Spiked Barricade", - "desc": "With a word, you create a barricade of pointed, wooden poles, also known as a cheval de frise, to block your enemies' progress. The barricade is composed of six 5-foot cube barriers made of wooden spikes mounted on central, horizontal beams.\n Each barrier doesn't need to be contiguous with another barrier, but each barrier must appear in an unoccupied space within range. Each barrier is difficult terrain, and a barrier provides half cover to a creature behind it. When a creature enters a barrier's area for the first time on a turn or starts its turn there, the creature must succeed on a Strength saving throw or take 3d6 piercing damage.\n The barriers are objects made of wood that can be damaged and destroyed. Each barrier has AC 13, 20 hit points, and is vulnerable to bludgeoning and fire damage. Reducing a barrier to 0 hit points destroys it.\n If you maintain your concentration on this spell for its whole duration, the barriers become permanent and can't be dispelled. Otherwise, the barriers disappear when the spell ends.", - "document": "toh", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the number of barriers you create increases by two for each slot level above 3rd.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_spite", - "fields": { - "name": "Spite", - "desc": "You prick your finger and anoint your forehead with your own blood, taking 1 piercing damage and warding yourself against hostile attacks. The first time a creature hits you with an attack during this spell's duration, it takes 3d6 psychic damage. Then the spell ends.", - "document": "toh", - "level": 2, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "psychic" - ], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_steam-gout", - "fields": { - "name": "Steam Gout", - "desc": "You create a gout of billowing steam in a 40-foottall cylinder with a 5-foot radius centered on a point on the ground you can see within range. Exposed flames in the area are doused. Each creature in the area when the gout first appears must make a Dexterity saving throw. On a failed save, the creature takes 2d8 fire damage and falls prone. On a successful save, the creature takes half as much damage and doesn't fall prone.\n The gout then covers the area in a sheen of slippery water. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a Dexterity saving throw. On a failed save, it falls prone.", - "document": "toh", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8, and you can create one additional gout of steam for each slot level above 3rd. A creature in the area of more than one gout of steam is affected only once.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": "cylinder", - "shape_magnitude": 5, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_stone-aegis", - "fields": { - "name": "Stone Aegis", - "desc": "A rocky coating covers your body, protecting you. Until the start of your next turn, you gain 5 temporary hit points and a +2 bonus to Armor Class, including against the triggering attack.\n At the start of each of your subsequent turns, you can use a bonus action to extend the duration of the AC bonus until the start of your following turn, for up to 1 minute.", - "document": "toh", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "up to 1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_stone-fetch", - "fields": { - "name": "Stone Fetch", - "desc": "You create a stony duplicate of yourself, which rises out of the ground and appears next to you. The duplicate looks like a stone carving of you, including the clothing you're wearing and equipment you're carrying at the time of the casting. It uses the statistics of an earth elemental.\n For the duration, you have a telepathic link with the duplicate. You can use this telepathic link to issue commands to the duplicate while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as “Run over there” or “Fetch that object.” If the duplicate completes the order and doesn't receive further direction from you, it takes the Dodge or Hide action (your choice) on its turn. The duplicate can't attack, but it can speak in a gravelly version of your voice and mimic your mannerisms with exact detail.\n As a bonus action, you can see through the duplicate's eyes and hear what it hears as if you were in the duplicate's space, gaining the benefits of the earth elemental's darkvision and tremorsense until the start of your next turn. During this time, you are deaf and blind with regard to your own senses. As an action while sharing the duplicate's senses, you can make the duplicate explode in a shower of jagged chunks of rock, destroying the duplicate and ending the spell. Each creature within 10 feet of the duplicate must make a Dexterity saving throw. A creature takes 4d10 slashing damage on a failed save, or half as much damage on a successful one.\n The duplicate explodes at the end of the duration, if you didn't cause it to explode before then. If the duplicate is killed before it explodes, you suffer one level of exhaustion.", - "document": "toh", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the explosion damage increases by 1d10 for each slot level above 4th. In addition, when you cast this spell using a spell slot of 6th level or higher, the duration is 1 hour. When you cast this spell using a spell slot of 8th level or higher, the duration is 8 hours. Using a spell slot of 6th level or higher grants a duration that doesn't require concentration.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d10", - "damage_types": [ - "slashing" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_sudden-slue", - "fields": { - "name": "Sudden Slue", - "desc": "With a growl, you call forth dozens of bears to overrun all creatures in a 20-foot cube within range. Each creature in the area must make a Dexterity saving throw. On a failed save, a creature takes 6d6 bludgeoning damage and is knocked prone. On a successful save, a creature takes half the damage and isn't knocked prone. The bears disappear after making their charge.", - "document": "toh", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_sudden-stampede", - "fields": { - "name": "Sudden Stampede", - "desc": "You conjure up a multitude of fey spirits that manifest as galloping horses. These horses run in a 10-foot'wide, 60-foot-long line, in a given direction starting from a point within range, trampling all creatures in their path, before vanishing again. Each creature in the line takes 6d10 bludgeoning damage and is knocked prone. A successful Dexterity saving throw reduces the damage by half, and the creature is not knocked prone.", - "document": "toh", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d10", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_toadstool-ring", - "fields": { - "name": "Toadstool Ring", - "desc": "You coax a toadstool ring to sprout from the ground. A creature of your choice can sit in the center of the ring and meditate for the duration, catching glimpses of the past, present, and future. The creature can ask up to three questions: one about the past, one about the present, and one about the future. The GM offers truthful answers in the form of dreamlike visions that may be subject to interpretation. When the spell ends, the toadstools turn black and dissolve back into the earth.\n If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that the meditating creature gets a random vision unrelated to the question. The GM makes this roll in secret.", - "document": "toh", - "level": 6, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_toothless-beast", - "fields": { - "name": "Toothless Beast", - "desc": "You hinder the natural attacks of a creature you can see within range. The creature must make a Wisdom saving throw. On a failed save, any time the creature attacks with a bite, claw, slam, or other weapon that isn't manufactured, it must roll the weapon's damage dice twice and use the lower total. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target. This spell has no effect on constructs.", - "document": "toh", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_trollish-charge", - "fields": { - "name": "Trollish Charge", - "desc": "You veil a willing creature you can see within range in an illusion others perceive as their worst nightmares given flesh. When the affected creature moves at least 10 feet straight toward a creature and attacks it, that creature must succeed on a Wisdom saving throw or become frightened for 1 minute. If the affected creature’s attack hits the frightened target, the affected creature can roll the attack’s damage dice twice and use the higher total.\n At the end of each of its turns, a creature frightened by this spell can make another Wisdom saving throw. On a success, the creature is no longer frightened and can’t be frightened by this spell again for 24 hours.", - "document": "toh", - "level": 4, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "toh_vine-carpet", - "fields": { - "name": "Vine Carpet", - "desc": "You cause a thick carpet of vines to grow from a point on the ground within range. The vines cover objects and prone creatures within 20 feet of that point. While covered in this way, objects and creatures have total cover as long as they remain motionless. A creature that moves while beneath the carpet has only three-quarters cover from attacks on the other side of the carpet. A covered creature that stands up from prone stands atop the carpet and is no longer covered. The carpet of vines is plush enough that a Large or smaller creature can walk across it without harming or detecting those covered by it.\n When the spell ends, the vines wither away into nothingness, revealing any objects and creatures that were still covered.", - "document": "toh", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_war-horn", - "fields": { - "name": "War Horn", - "desc": "You blow a blast on your war horn, sending a ripple of fear through your enemies and bolstering your allies. Choose up to three hostile creatures in range and up to three friendly creatures in range. Each hostile target must succeed on a Wisdom saving throw or become frightened for the duration. At the end of each of its turns, a frightened creature can make another Wisdom saving throw. On a success, the spell ends on that creature.\n Each friendly target gains a number of temporary hit points equal to 2d4 + your spellcasting ability modifier and has advantage on the next attack roll it makes before the spell ends. The temporary hit points last for 1 hour.", - "document": "toh", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "toh_wild-hunt", - "fields": { - "name": "Wild Hunt", - "desc": "While casting this spell, you must chant and drum, calling forth the spirit of the hunt. Up to nine other creatures can join you in the chant.\n For the duration, each creature that participated in the chant is filled with the fervent bloodlust of the wild hunt and gains several benefits. The creature is immune to being charmed and frightened, it deals one extra die of damage on the first weapon or spell attack it makes on each of its turns, it has advantage on Strength or Dexterity saving throws (the creature's choice), and its Armor Class increases by 1.\n When this spell ends, a creature affected by it suffers one level of exhaustion.", - "document": "toh", - "level": 7, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - } -] \ No newline at end of file +{ + "model": "api_v2.spell", + "pk": "toh_ambush-chute", + "fields": { + "name": "Ambush Chute", + "desc": "You touch a wooden, plaster, or stone surface and create a passage with two trapdoors. The first trapdoor appears where you touch the surface, and the other appears at a point you can see up to 30 feet away. The two trapdoors can be wooden with a metal ring handle, or they can match the surrounding surfaces, each with a small notch for opening the door. The two trapdoors are connected by an extradimensional passage that is up to 5 feet wide, up to 5 feet tall, and up to 30 feet long. The trapdoors don't need to be on the same surface, allowing the passage to connect two separated locations, such as the two sides of a chasm or river. The passage is always straight and level for creatures inside it, and the creatures exit the tunnel in such a way that allows them to maintain the same orientation as when they entered the passage. No more than five creatures can transit the passage at the same time.\n When the spell ends and the trapdoors disappear, any creatures or objects still in the passage created by the spell are safely ejected to an unoccupied space nearest the end of the passage closest to them.", + "document": "toh", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the length of the passage and the distance you can place the second trapdoor increases by 10 feet for each slot level above 3rd.", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_armored-formation", + "fields": { + "name": "Armored Formation", + "desc": "You bolster the defenses of those nearby. Choose up to twelve willing creatures in range. When an affected creature is within 5 feet of at least one other affected creature, they create a formation. The formation must be a contiguous grouping of affected creatures, and each affected creature must be within 5 feet of at least one other affected creature within the formation. If the formation ever has less than two affected creatures, it ends, and an affected creature that moves further than 5 feet from other creatures in formation is no longer in that formation. Affected creatures don't have to all be in the same formation, and they can create or end as many formations of various sizes as they want for the duration of the spell. Each creature in a formation gains a bonus depending on how many affected creatures are in that formation.\n ***Two or More Creatures.*** Each creature gains a +2 bonus to AC.\n ***Four or More Creatures.*** Each creature gains a +2 bonus to AC, and when it hits with any weapon, it deals an extra 1d6 damage of the weapon's type.\n ***Six or More Creatures.*** Each creature gains a +3 bonus to AC, and when it hits with any weapon, it deals an extra 2d6 damage of the weapon's type.", + "document": "toh", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_babble", + "fields": { + "name": "Babble", + "desc": "This spell causes the speech of affected creatures to sound like nonsense. Each creature in a 30-foot-radius sphere centered on a point you choose within range must succeed on an Intelligence saving throw when you cast this spell or be affected by it.\n An affected creature cannot communicate in any spoken language that it knows. When it speaks, the words come out as gibberish. Spells with verbal components cannot be cast. The spell does not affect telepathic communication, nonverbal communication, or sounds emitted by any creature that does not have a spoken language. As an action, a creature under the effect of this spell can attempt another Intelligence saving throw against the effect. On a successful save, the spell ends.", + "document": "toh", + "level": 5, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_battle-mind", + "fields": { + "name": "Battle Mind", + "desc": "You gain a preternatural sense of the surrounding area, allowing you insights you can share with comrades to provide them with an edge in combat. You gain advantage on Wisdom (Perception) checks made when determining surprise at the beginning of a combat encounter. If you are not surprised, then neither are your allies. When you are engaged in combat while the spell is active, you can use a bonus action on your turn to produce one of the following effects (allies must be able to see or hear you in order to benefit):\n* One ally gains advantage on its next attack roll, saving throw, or ability check.\n* An enemy has disadvantage on the next attack roll it makes against you or an ally.\n* You divine the location of an invisible or hidden creature and impart that knowledge to any allies who can see or hear you. This knowledge does not negate any advantages the creature has, it only allows your allies to be aware of its location at the time. If the creature moves after being detected, its new location is not imparted to your allies.\n* Three allies who can see and hear you on your turn are given the benefit of a *bless*, *guidance*, or *resistance spell* on their turns; you choose the benefit individually for each ally. An ally must use the benefit on its turn, or the benefit is lost.", + "document": "toh", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_beast-within", + "fields": { + "name": "Beast Within", + "desc": "You imbue a willing creature with a touch of lycanthropy. The target gains a few bestial qualities appropriate to the type of lycanthrope you choose, such as tufts of fur, elongated claws, a fang-lined maw or tusks, and similar features. For the duration, the target has resistance to bludgeoning, piercing, and slashing damage from nonmagical attacks that aren't silvered. In addition, the target has advantage on Wisdom (Perception) checks that rely on hearing or smell. Finally, the creature can use its new claws and jaw or tusks to make unarmed strikes. The claws deal slashing damage equal to 1d4 + the target's Strength modifier on a hit. The bite deals piercing damage equal to 1d6 + the target's Strength modifier on a hit. The target's bite doesn't inflict lycanthropy.", + "document": "toh", + "level": 4, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each spell slot above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_betraying-bauble", + "fields": { + "name": "Betraying Bauble", + "desc": "When you cast this spell, you touch a pair of objects. Each object must be small enough to fit in one hand. While holding one of the objects, you can sense the direction to the other object's location.\n If the paired object is in motion, you know the direction and relative speed of its movement (walking, running, galloping, or similar). When the two objects are within 30 feet of each other, they vibrate faintly unless they are touching. If you aren't holding either item and the spell hasn't ended, you can sense the direction of the closest of the two objects within 1,000 feet of you, and you can sense if it is in motion. If neither object is within 1,000 feet of you, you sense the closest object as soon as you come within 1,000 feet of one of them. If an inch or more of lead blocks a direct path between you and an affected object, you can't sense that object.", + "document": "toh", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_bloodlust", + "fields": { + "name": "Bloodlust", + "desc": "You imbue a willing creature that you can see within range with vitality and fury. The target gains 1d6 temporary hit points, has advantage on Strength checks, and deals an extra 1d6 damage when it hits with a weapon attack. When the spell ends, the target suffers one level of exhaustion for 1 minute.", + "document": "toh", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_blunted-edge", + "fields": { + "name": "Blunted Edge", + "desc": "Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or have disadvantage on weapon attack rolls. In addition, when an affected creature rolls damage dice for a successful attack, it must roll the weapon's damage dice twice and use the lower total. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_bolster-fortifications", + "fields": { + "name": "Bolster Fortifications", + "desc": "You create a ward that bolsters a structure or a collection of structures that occupy up to 2,500 square feet of floor space. The bolstered structures can be up to 20 feet tall and shaped as you desire. You can ward several small buildings in a stronghold by dividing the area among them, as long as you can walk into each contiguous area while you are casting the spell. For the purpose of this spell, “structures” include walls, such as the palisade that might surround a small fort, provided the wall is no more than 20 feet tall.\n For the duration, each structure you bolstered has a damage threshold of 5. If a structure already has a damage threshold, that threshold increases by 5.\n This spell protects only the walls, support beams, roofs, and similar that make up the core components of the structure. It doesn't bolster objects within the structures, such as furniture.\n The protected structure or structures radiate magic. A *dispel magic* cast on a structure removes the bolstering from only that structure. You can create a permanently bolstered structure or collection of structures by casting this spell there every day for one year.", + "document": "toh", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the square feet of floor space you can bolster increases by 500 and the damage threshold increases by 2 for each slot level above 3rd.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_bound-haze", + "fields": { + "name": "Bound Haze", + "desc": "You cause a swirling gyre of dust, small rocks, and wind to encircle a creature you can see within range. The target must succeed on a Dexterity saving throw or have disadvantage on attack rolls and on Wisdom (Perception) checks. At the end of each of its turns, the target can make a Dexterity saving throw. On a success, the spell ends.\n In addition, if the target is within a cloud or gas, such as the area of a *fog cloud* spell or a dretch's Fetid Cloud, the affected target has disadvantage on this spell's saving throws and on any saving throws associated with being in the cloud or gas, such as the saving throw to reduce the poison damage the target might take from starting its turn in the area of a *cloudkill* spell.", + "document": "toh", + "level": 3, + "school": "conjuration", + "higher_level": "If you cast this spell using a spell slot of 4th level or higher, the duration is 1 minute, and the spell doesn't require concentration.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_burst-stone", + "fields": { + "name": "Burst Stone", + "desc": "You cause the ground at a point you can see within range to explode. The ground must be sand, earth, or unworked rock. Each creature within 10 feet of that point must make a Dexterity saving throw. On a failed save, the creature takes 4d8 bludgeoning damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone. The area then becomes difficult terrain with a 5-foot-deep pit centered on the point you chose.", + "document": "toh", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_butterfly-effect", + "fields": { + "name": "Butterfly Effect", + "desc": "You cause a cloud of illusory butterflies to swarm around a target you can see within range. The target must succeed on a Charisma saving throw or be charmed for the duration. While charmed, the target can't take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|------|-------------------|\n| 1 | The creature uses all its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. The creature doesn't take an action this turn. |\n| 2-6 | The creature doesn't take an action this turn. |\n| 7-8 | The creature uses its action to make a melee attack against a randomly determined creature within its reach. If there is no creature within its reach, the creature does nothing this turn. |\n| 9-10 | The creature can act and move normally. |\n\nAt the end of each of its turns, and each time it takes damage, the target can make another Charisma saving throw. On a success, the spell ends on the target.", + "document": "toh", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_calm-beasts", + "fields": { + "name": "Calm Beasts", + "desc": "You attempt to calm aggressive or frightened animals. Each beast in a 20-foot-radius sphere centered on a point you choose within range must make a Charisma saving throw. If a creature fails its saving throw, choose one of the following two effects.\n ***Suppress Hold.*** You can suppress any effect causing the target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime.\n ***Suppress Hostility.*** You can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its allies being harmed. When the spell ends, the creature becomes hostile again, unless the GM rules otherwise.", + "document": "toh", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_clear-the-board", + "fields": { + "name": "Clear the Board", + "desc": "You send your allies and your enemies to opposite sides of the battlefield. Pick a cardinal direction. With a shout and a gesture, you and up to five willing friendly creatures within range are teleported up to 90 feet in that direction to spaces you can see. At the same time, up to six hostile creatures within range must make a Wisdom saving throw. On a failed save, the hostile creature is teleported up to 90 feet in the opposite direction of where you teleport yourself and the friendly creatures to spaces you can see. You can't teleport a target into dangerous terrain, such as lava or off the edge of a cliff, and each target must be teleported to an unoccupied space that is on the ground or on a floor.", + "document": "toh", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_conjure-construct", + "fields": { + "name": "Conjure Construct", + "desc": "You summon a construct of challenge rating 5 or lower to harry your foes. It appears in an unoccupied space you can see within range. It disappears when it drops to 0 hit points or when the spell ends.\n The construct is friendly to you and your companions for the duration. Roll initiative for the construct, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the construct, it defends itself from hostile creatures but otherwise takes no actions.\n If your concentration is broken, the construct doesn't disappear. Instead, you lose control of the construct, it becomes hostile toward you and your companions, and it might attack. An uncontrolled construct can't be dismissed by you, and it disappears 1 hour after you summoned it.\n The construct deals double damage to objects and structures.\n The GM has the construct's statistics.", + "document": "toh", + "level": 6, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the challenge rating increases by 1 for each slot level above 6th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_conjure-spectral-allies", + "fields": { + "name": "Conjure Spectral Allies", + "desc": "You sprinkle some graveyard dirt before you and call forth vengeful spirits. The spirits erupt from the ground at a point you choose within range and sweep outward. Each creature in a 30-foot-radius sphere centered on that point must make a Wisdom saving throw. On a failed save, a creature takes 6d10 necrotic damage and becomes frightened for 1 minute. On a successful save, the creature takes half as much damage and isn't frightened.\n At the end of each of its turns, a creature frightened by this spell can make another saving throw. On a success, this spell ends on the creature.", + "document": "toh", + "level": 7, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the damage increases by 1d10 for each slot level above 7th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "6d10", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_convey-inner-peace", + "fields": { + "name": "Convey Inner Peace", + "desc": "You imbue yourself and up to five willing creatures within range with the ability to enter a meditative trance like an elf. Once before the spell ends, an affected creature can complete a long rest in 4 hours, meditating as an elf does while in trance. After resting in this way, each creature gains the same benefit it would normally gain from 8 hours of rest.", + "document": "toh", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_crown-of-thorns", + "fields": { + "name": "Crown of Thorns", + "desc": "You create a psychic binding on the mind of a creature within range. Until this spell ends, the creature must make a Charisma saving throw each time it casts a spell. On a failed save, it takes 2d6 psychic damage, and it fails to cast the spell. It doesn't expend a spell slot if it fails to cast the spell.", + "document": "toh", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_damaging-intel", + "fields": { + "name": "Damaging Intel", + "desc": "You study a creature you can see within range, learning its weaknesses. The creature must make a Charisma saving throw. If it fails, you learn its damage vulnerabilities, damage resistances, and damage immunities, and the next attack one of your allies in range makes against the target before the end of your next turn has advantage.", + "document": "toh", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_deadly-salvo", + "fields": { + "name": "Deadly Salvo", + "desc": "When you cast this spell, the ammunition flies from your hand with a loud bang, targeting up to five creatures or objects you can see within range. You can launch the bullets at one target or several. Make a ranged spell attack for each bullet. On a hit, the target takes 3d6 piercing damage. This damage can experience a burst, as described in the gunpowder weapon property (see the Adventuring Gear chapter), but this spell counts as a single effect for the purposes of determining how many times the damage can burst, regardless of the number of targets affected.", + "document": "toh", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "3d6", + "damage_types": [ + "piercing" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_divine-retribution", + "fields": { + "name": "Divine Retribution", + "desc": "With a last word before you fall unconscious, this spell inflicts radiant damage to your attacker equal to 1d8 + the amount of damage you took from the triggering attack. If the attacker is a fiend or undead, it takes an extra 1d8 radiant damage. The creature then must succeed on a Constitution saving throw or become stunned for 1 minute. At the end of each of its turns, the creature can make another Constitution saving throw. On a successful save, it is no longer stunned.", + "document": "toh", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "1d8", + "damage_types": [ + "radiant" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_dreamwine", + "fields": { + "name": "Dreamwine", + "desc": "You imbue a bottle of wine with fey magic. While casting this spell, you and up to seven other creatures can drink the imbued wine. At the completion of the casting, each creature that drank the wine can see invisible creatures and objects as if they were visible, can see into the Ethereal plane, and has advantage on Charisma checks and saving throws for the duration. Ethereal creatures and objects appear ghostly and translucent.", + "document": "toh", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_emerald-eyes", + "fields": { + "name": "Emerald Eyes", + "desc": "You attempt to convince a creature to enter a paranoid, murderous rage. Choose a creature that you can see within range. The target must succeed on a Wisdom saving throw or be convinced those around it intend to steal anything and everything it possesses, from its position of employment, to the affections of its loved ones, to its monetary wealth and possessions, no matter how trusted those nearby might be or how ludicrous such a theft might seem. While affected by this spell, the target must use its action to attack the nearest creature other than itself or you. If the target starts its turn with no other creature near enough to move to and attack, the target can make another Wisdom saving throw. On a success, the target's head clears momentarily and it can act freely that turn. If the target starts its turn a second time with no other creature near enough to move to and attack, it can make another Wisdom saving throw. On a success, the spell ends on the target.\n Each time the target takes damage, it can make another Wisdom saving throw. On a success, the spell ends on the target.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_enchanted-bloom", + "fields": { + "name": "Enchanted Bloom", + "desc": "You spend an hour anointing a rose with scented oils and imbuing it with fey magic. The first creature other than you that touches the rose before the spell ends pricks itself on the thorns and must make a Charisma saving throw. On a failed save, the creature falls into a deep slumber for 24 hours, and it can be awoken only by the greater restoration spell or similar magic or if you choose to end the spell as an action. While slumbering, the creature doesn't need to eat or drink, and it doesn't age.\n Each time the creature takes damage, it makes a new Charisma saving throw. On a success, the spell ends on the creature.", + "document": "toh", + "level": 5, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of a higher level, the duration of the slumber increases to 7 days with a 6th-level slot, to 30 days with a 7th-level slot, to 180 days with an 8th-level slot, and to a year with a 9th-level spell slot.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_eruption", + "fields": { + "name": "Eruption", + "desc": "You create a furiously erupting volcano centered on a point you can see within range. The ground heaves violently as a cinder cone that is 2 feet wide and 5 feet tall bursts up from it. Each creature within 30 feet of the cinder cone when it appears must make a Strength saving throw. On a failed save, a creature takes 8d6 bludgeoning damage and is knocked prone. On a successful save, a creature takes half as much damage and isn't knocked prone.\n Each round you maintain concentration on this spell, the cinder cone produces additional effects on your turn.\n ***Round 2.*** Smoke pours from the cinder cone. Each creature within 10 feet of the cinder cone when the smoke appears takes 4d6 poison damage. Afterwards, each creature that enters the smoky area for the first time on a turn or starts its turn there takes 2d6 poison damage. The smoke spreads around corners, and its area is heavily obscured. A wind of moderate or greater speed (at least 10 miles per hour) disperses the smoke until the start of your next turn, when the smoke reforms.\n ***Round 3.*** Lava bubbles out from the cinder cone, spreading out to cover the ground within 20 feet of the cinder cone. Each creature and object in the area when the lava appears takes 10d10 fire damage and is on fire. Afterwards, each creature that enters the lava for the first time on a turn or starts its turn there takes 5d10 fire damage. In addition, the smoke spreads to fill a 20-foot-radius sphere centered on the cinder cone.\n ***Round 4.*** The lava continues spreading and covers the ground within 30 feet of the cinder cone in lava that is 1-foot-deep. The lava-covered ground becomes difficult terrain. In addition, the smoke fills a 30-footradius sphere centered on the cinder cone.\n ***Round 5.*** The lava expands to cover the ground within 40 feet of the cinder cone, and the smoke fills a 40-foot radius sphere centered on the cinder cone. In addition, the cinder cone begins spewing hot rocks. Choose up to three creatures within 90 feet of the cinder cone. Each target must succeed on a Dexterity saving throw or take 3d6 bludgeoning damage and 3d6 fire damage.\n ***Rounds 6-10.*** The lava and smoke continue to expand in size by 10 feet each round. In addition, each round you can direct the cinder cone to spew hot rocks at three targets, as described in Round 5.\n When the spell ends, the volcano ceases erupting, but the smoke and lava remain for 1 minute before cooling and dispersing. The landscape is permanently altered by the spell.", + "document": "toh", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_feint", + "fields": { + "name": "Feint", + "desc": "You create a momentary, flickering duplicate of yourself just as you make an attack against a creature. You have advantage on the next attack roll you make against the target before the end of your next turn as it's distracted by your illusory copy.", + "document": "toh", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_fey-food", + "fields": { + "name": "Fey Food", + "desc": "You enchant up to 1 pound of food or 1 gallon of drink within range with fey magic. Choose one of the effects below. For the duration, any creature that consumes the enchanted food or drink, up to four creatures per pound of food or gallon of drink, must succeed on a Charisma saving throw or succumb to the chosen effect.\n ***Slumber.*** The creature falls asleep and is unconscious for 1 hour. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n ***Friendly Face.*** The creature is charmed by you for 1 hour. If you or your allies do anything harmful to it, the creature can make another Charisma saving throw. On a success, the spell ends on the creature.\n ***Muddled Memory.*** The creature remembers only fragments of the events of the past hour. A remove curse or greater restoration spell cast on the creature restores the creature's memory.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can enchant an additional pound of food or gallon of drink for each slot level over 3rd.", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_fey-touched-blade", + "fields": { + "name": "Fey-Touched Blade", + "desc": "You touch a nonmagical weapon and imbue it with the magic of the fey. Choose one of the following damage types: force, psychic, necrotic, or radiant. Until the spell ends, the weapon becomes a magic weapon and deals an extra 1d4 damage of the chosen type to any target it hits.", + "document": "toh", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can imbue one additional weapon for each slot level above 2nd.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_forced-reposition", + "fields": { + "name": "Forced Reposition", + "desc": "One creature of your choice that you can see within range is teleported to an unoccupied space you can see up to 60 feet above you. The space can be open air or a balcony, ledge, or other surface above you. An unwilling creature that succeeds on a Constitution saving throw is unaffected. A creature teleported to open air immediately falls, taking falling damage as normal, unless it can fly or it has some other method of catching itself or preventing a fall. A creature can't be teleported into a solid object.", + "document": "toh", + "level": 4, + "school": "conjuration", + "higher_level": "If you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The targets must be within 30 feet of each other when you target them, but they don't need to be teleported to the same locations.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_furious-wail", + "fields": { + "name": "Furious Wail", + "desc": "You let out a scream of white-hot fury that pierces the minds of up to five creatures within range. Each target must make a Charisma saving throw. On a failed save, it takes 10d10 + 30 psychic damage and is stunned until the end of its next turn. On a success, it takes half as much damage.", + "document": "toh", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 5, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "10d10+30", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_fuse-armor", + "fields": { + "name": "Fuse Armor", + "desc": "Choose a manufactured metal object with movable parts, such as a drawbridge pulley or winch or a suit of heavy or medium metal armor, that you can see within range. You cause the object's moveable parts to fuse together for the duration. The object's movable aspects can't be moved: a pulley's wheel won't turn and the joints of armor won't bend.\n A creature wearing armor affected by this spell has its speed reduced by 10 feet and has disadvantage on weapon attacks and ability checks that use Strength or Dexterity. At the end of each of its turns, the creature wearing the armor can make a Strength saving throw. On a success, the spell ends on the armor.\n A creature in physical contact with an affected object that isn't a suit of armor can use its action to make a Strength check against your spell save DC. On a success, the spell ends on the object.\n If you target a construct with this spell, it must succeed on a Strength saving throw or have its speed reduced by 10 feet and have disadvantage on weapon attacks. At the end of each of its turns, the construct can make another Strength saving throw. On a success, the spell ends on the construct.", + "document": "toh", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional object for each slot level above 2nd. The objects must be within 30 feet of each other when you target them.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_gale", + "fields": { + "name": "Gale", + "desc": "You summon a storm to batter your oncoming enemies. Until the spell ends, freezing rain and turbulent winds fill a 20-foot-tall cylinder with a 300- foot radius centered on a point you choose within range. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early.\n The spell's area is heavily obscured, and exposed flames in the area are doused. The ground in the area becomes slick, difficult terrain, and a flying creature in the area must land at the end of its turn or fall. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a Constitution saving throw as the wind and rain assail it. On a failed save, the creature takes 1d6 cold damage.\n If a creature is concentrating in the spell's area, the creature must make a successful Constitution saving throw against your spell save DC or lose concentration.", + "document": "toh", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "1 mile", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_glare", + "fields": { + "name": "Glare", + "desc": "You cast a disdainful glare at up to two creatures you can see within range. Each target must succeed on a Wisdom saving throw or take no actions on its next turn as it reassesses its life choices. If a creature fails the saving throw by 5 or more, it can't take actions on its next two turns.", + "document": "toh", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 2, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_high-ground", + "fields": { + "name": "High Ground", + "desc": "With a word, you gesture across an area and cause the terrain to rise up into a 10-foot-tall hillock at a point you choose within range. You must be outdoors to cast this spell. The hillock is up to 30 feet long and up to 15 feet wide, and it must be in a line. If the hillock cuts through a creature's space when it appears, the creature is pushed to one side of the hillock or to the top of the hillock (your choice). The ranged attack distance for a creature on top of the hillock is doubled, provided the target is at a lower elevation than the creature on the hillock. At the GM's discretion, creatures on top of the hillock gain any additional bonuses or penalties that higher elevation might provide, such as advantage on attacks against those on lower elevations, being easier to spot, longer sight distance, or similar.\n The steep sides of the hillock are difficult to climb. A creature at the bottom of the hillock that attempts to move up to the top must succeed on a Strength (Athletics) or Dexterity (Acrobatics) check against your spell save DC to climb to the top of the hillock.\n This spell can't manipulate stone construction, and rocks and structures shift to accommodate the hillock. If the hillock's formation would make a structure unstable, the hillock fails to form in the structure's spaces. Similarly, this spell doesn't directly affect plant growth. The hillock carries any plants along with it.", + "document": "toh", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell at 4th level or higher, you can increase the width of the hillock by 5 feet or the length by 10 feet for each slot above 3rd.", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_immolating-gibbet", + "fields": { + "name": "Immolating Gibbet", + "desc": "You cause up to three creatures you can see within range to be yanked into the air where their blood turns to fire, burning them from within. Each target must succeed on a Dexterity saving throw or be magically pulled up to 60 into the air. The creature is restrained there until the spell ends. A restrained creature must make a Constitution saving throw at the start of each of its turns. The creature takes 7d6 fire damage on a failed save, or half as much damage on a successful one.\n At the end of each of its turns, a restrained creature can make another Dexterity saving throw. On a success, the spell ends on the creature, and the creature falls to the ground, taking falling damage as normal. Alternatively, the restrained creature or someone else who can reach it can use an action to make an Intelligence (Arcana) check against your spell save DC. On a success, the restrained effect ends, and the creature falls to the ground, taking falling damage as normal.", + "document": "toh", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "7d6", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_inexorable-summons", + "fields": { + "name": "Inexorable Summons", + "desc": "You reach out toward a creature and call to it. The target teleports to an unoccupied space that you can see within 5 feet of you. An unwilling creature can make a Wisdom saving throw, and if it succeeds, it isn't affected by this spell. You can't teleport a target into dangerous terrain, such as lava, and the target must be teleported to a space on the ground or on a floor.", + "document": "toh", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_instant-armored-vehicle", + "fields": { + "name": "Instant Armored Vehicle", + "desc": "You transform a handful of materials into a Huge armored vehicle. The vehicle can take whatever form you want, but it has AC 18 and 100 hit points. If it is reduced to 0 hit points, it is destroyed. If it is a ground vehicle, it has a speed of 90 feet. If it is an airborne vehicle, it has a flying speed of 45 feet. If it is a waterborne vehicle, it has a speed of 2 miles per hour. The vehicle can hold up to four Medium creatures within it.\n A creature inside it has three-quarters cover from attacks outside the vehicle, which contains arrow slits, portholes, and other small openings. A creature piloting the armored vehicle can take the Careen action. To do so, the vehicle must move at least 10 feet in a straight line and enter or pass through the space of at least one Large or smaller creature. This movement doesn't provoke opportunity attacks. Each creature in the armored vehicle's path must make a Dexterity saving throw against your spell save DC. On a failed save, the creature takes 5d8 bludgeoning damage and is knocked prone. On a successful save, the creature can choose to be pushed 5 feet away from the space through which the vehicle passed. A creature that chooses not to be pushed suffers the consequences of a failed saving throw. If the creature piloting the armored vehicle isn't proficient in land, water, or air vehicles (whichever is appropriate for the vehicle's type), each target has advantage on the saving throw against the Careen action.", + "document": "toh", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_invested-champion", + "fields": { + "name": "Invested Champion", + "desc": "You touch one creature and choose either to become its champion, or for it to become yours. If you choose a creature to become your champion, it fights on your behalf. While this spell is in effect, you can cast any spell with a range of touch on your champion as if the spell had a range of 60 feet. Your champion's attacks are considered magical, and you can use a bonus action on your turn to encourage your champion, granting it advantage on its next attack roll.\n If you become the champion of another creature, you gain advantage on all attack rolls against creatures that have attacked your charge within the last round. If you are wielding a shield, and a creature within 5 feet of you attacks your charge, you can use your reaction to impose disadvantage on the attack roll, as if you had the Protection fighting style. If you already have the Protection fighting style, then in addition to imposing disadvantage, you can also push an enemy 5 feet in any direction away from your charge when you take your reaction. You can use a bonus action on your turn to reroll the damage for any successful attack against a creature that is threatening your charge.\n Whichever version of the spell is cast, if the distance between the champion and its designated ally increases to more than 60 feet, the spell ends.", + "document": "toh", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_iron-gut", + "fields": { + "name": "Iron Gut", + "desc": "For the duration, one willing creature you touch has resistance to poison damage and advantage on saving throws against poison. When the affected creature makes a Constitution saving throw against an effect that deals poison damage or that would cause the creature to become poisoned, the creature can choose to succeed on the saving throw. If it does so, the spell ends on the creature.\n While affected by this spell, a creature can't gain any benefit from consuming magical foodstuffs, such as those produced by the goodberry and heroes' feast spells, and it doesn't suffer ill effects from consuming potentially harmful, nonmagical foodstuffs, such as spoiled food or non-potable water. The creature is affected normally by other consumable magic items, such as potions. The creature can identify poisoned food by a sour taste, with deadlier poisons tasting more sour.", + "document": "toh", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "up to 1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_jagged-forcelance", + "fields": { + "name": "Jagged Forcelance", + "desc": "You create a magical tether of pulsing, golden force between two willing creatures you can see within range. The two creatures must be within 15 feet of each other. The tether remains as long as each tethered creature ends its turn within 15 feet of the other tethered creature. If a tethered creature ends its turn more than 15 feet away from its tethered partner, the spell ends. Though the tether appears as a thin line, its effect extends the full height of the tethered creatures and can affect prone or hovering creatures, provided the hovering creature hovers no higher than the tallest tethered creature.\n Any creature that touches the tether or ends its turn in a space the tether passes through must make a Strength saving throw. On a failure, a creature takes 3d6 force damage and is knocked prone. On a success, a creature takes half as much damage and isn't knocked prone. A creature that makes this saving throw, whether it succeeds or fails, can't be affected by the tether again until the start of your next turn.", + "document": "toh", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the maximum distance between the tethered creatures increases by 5 feet, and the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_jarring-growl", + "fields": { + "name": "Jarring Growl", + "desc": "You loose a growl from deep within the pit of your stomach, causing others who can hear it to become unnerved. You have advantage on Charisma (Intimidation) checks you make before the beginning of your next turn. In addition, each creature within 5 feet of you must make a Wisdom saving throw. On a failure, you have advantage on attack rolls against that creature until the end of your turn. You are aware of which creatures failed their saving throws.", + "document": "toh", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_lance", + "fields": { + "name": "Lance", + "desc": "You create a shimmering lance of force and hurl it toward a creature you can see within range. Make a ranged spell attack against the target. On a hit, the target takes 5d6 force damage, and it is restrained by the lance until the end of its next turn.", + "document": "toh", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "5d6", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_less-fool-i", + "fields": { + "name": "Less Fool, I", + "desc": "A creature you touch becomes less susceptible to lies and magical influence. For the duration, other creatures have disadvantage on Charisma checks to influence the protected creature, and the creature has advantage on spells that cause it to become charmed or frightened.", + "document": "toh", + "level": 1, + "school": "divination", + "higher_level": "If you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 1 hour. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the duration is 1 year. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_life-burst", + "fields": { + "name": "Life Burst", + "desc": "You make a jubilant shout when you cast this spell, releasing your stores of divine energy in a wave of healing. You distribute the remaining power of your Lay on Hands to allies within 30 feet of you, restoring hit points and curing diseases and poisons. This healing energy removes diseases and poisons first (starting with the nearest ally), removing 5 hit points from the hit point total for each disease or poison cured, until all the points are spent or all diseases and poisons are cured. If any hit points remain, you regain hit points equal to that amount.\n This spell expends all of the healing energy in your Lay on Hands, which replenishes, as normal, when you finish a long rest.", + "document": "toh", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_lightless-torch", + "fields": { + "name": "Lightless Torch", + "desc": "You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds a shadowy miasma in a 30-foot radius. A creature with darkvision inside the radius sees the area as if it were filled with bright light. The miasma doesn't shed light, and a creature with darkvision inside the radius can still see outside the radius as normal. A creature with darkvision outside the radius or a creature without darkvision sees only that the object is surrounded by wisps of shadow.\n Completely covering the affected object with an opaque object, such as a bowl or a helm, blocks the effect. Though the effect doesn't shed light, it can be dispelled if the area of a darkness spell overlaps the area of this spell.\n If you target an object held or worn by a hostile creature, that creature must succeed on a Dexterity saving throw to avoid the spell.", + "document": "toh", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the duration increases by 2 hours for each slot level above 1st.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_long-game", + "fields": { + "name": "Long Game", + "desc": "While casting this spell, you must engage your target in conversation. At the completion of the casting, the target must make a Charisma saving throw. If it fails, you place a latent magical effect in the target's mind for the duration. If the target succeeds on the saving throw, it realizes that you used magic to affect its mind and might become hostile toward you, at the GM's discretion.\n Once before the spell ends, you can use an action to trigger the magical effect in the target's mind, provided you are on the same plane of existence as the target. When the effect is triggered, the target takes 5d8 psychic damage plus an extra 1d8 psychic damage for every 24 hours that has passed since you cast the spell, up to a total of 12d8 psychic damage. The spell has no effect on the target if it ends before you trigger the magical effect.\n *A greater restoration* or *wish* spell cast on the target ends the spell early. You know if the spell is ended early, provided you are on the same plane of existence as the target.", + "document": "toh", + "level": 7, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "psychic" + ], + "duration": "7 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_magma-spray", + "fields": { + "name": "Magma Spray", + "desc": "A 5-foot-diameter, 5-foot-tall cylindrical fountain of magma erupts from the ground in a space of your choice within range. A creature in that space takes 3d8 fire damage, or half as much damage with a successful Dexterity saving throw. A creature that enters the area on its turn or ends its turn there also takes 3d8 fire damage, or half as much damage with a successful Dexterity saving throw. A creature can take this damage only once per turn.\n A creature killed by this spell is reduced to ash.", + "document": "toh", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "40 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_mantle-of-the-brave", + "fields": { + "name": "Mantle of the Brave", + "desc": "You touch up to four individuals, bolstering their courage. The next time a creature affected by this spell must make a saving throw against a spell or effect that would cause the frightened condition, it has advantage on the roll. Once a creature has received this benefit, the spell ends for that creature.", + "document": "toh", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_martyrs-rally", + "fields": { + "name": "Martyr's Rally", + "desc": "With a hopeful rallying cry just as you fall unconscious, you rouse your allies to action. Each ally within 60 feet of you that can see and hear you has advantage on attack rolls for the duration. If you regain hit points, the spell immediately ends.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_mass-faerie-fire", + "fields": { + "name": "Mass Faerie Fire", + "desc": "You can place up to three 20-foot cubes each centered on a point you can see within range. Each object in a cube is outlined in blue, green, or violet light (your choice). Any creature in a cube when the spell is cast is also outlined in light if it fails a Dexterity saving throw. A creature in the area of more than one cube is affected only once. Each affected object and creature sheds dim light in a 10-foot radius for the duration.\n Any attack roll against an affected object or creature has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.", + "document": "toh", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_misdirection", + "fields": { + "name": "Misdirection", + "desc": "You create a brief flash of light, loud sound, or other distraction that interrupts a creature's attack. When a creature you can see within range makes an attack, you can impose disadvantage on its attack roll.", + "document": "toh", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_mud", + "fields": { + "name": "Mud", + "desc": "The ground in a 20-foot radius centered on a point within range becomes thick, viscous mud. The area becomes difficult terrain for the duration. When a creature enters the affected area for the first time on a turn or starts its turn there, the creature must make a Strength saving throw. On a failed save, its movement speed is reduced to 0 until the start of its next turn.", + "document": "toh", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_muted-foe", + "fields": { + "name": "Muted Foe", + "desc": "You touch a nonmagical weapon. The next time a creature hits with the affected weapon before the spell ends, the weapon booms with a thunderous peal as the weapon strikes. The attack deals an extra 1d6 thunder damage to the target, and the target becomes deafened, immune to thunder damage, and unable to cast spells with verbal components for 1 minute. At the end of each of its turns, the target can make a Wisdom saving throw. On a success, the effect ends.", + "document": "toh", + "level": 1, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the extra damage increases by 1d6 for each slot level above 1st.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_never-surrender", + "fields": { + "name": "Never Surrender", + "desc": "When the target is reduced to 0 hit points, it can fight looming death to stay in the fight. The target doesn't fall unconscious but must still make death saving throws, as normal. The target doesn't need to make a death saving throw until the end of its next turn, but it has disadvantage on that first death saving throw. In addition, massive damage required to kill the target outright must equal or exceed twice the target's hit point maximum instead. If the target regains 1 or more hit points, this spell ends.", + "document": "toh", + "level": 3, + "school": "abjuration", + "higher_level": "If you cast this spell using a spell slot of 6th level or higher, the target doesn't have disadvantage on its first death saving throw.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_oathbound-implement", + "fields": { + "name": "Oathbound Implement", + "desc": "You place a magical oath upon a creature you can see within range, compelling it to complete a specific task or service that involves using a weapon as you decide. If the creature can understand you, it must succeed on a Wisdom saving throw or become bound by the task. When acting to complete the directed task, the target has advantage on the first attack roll it makes on each of its turns using a weapon. If the target attempts to use a weapon for a purpose other than completing the specific task or service, it has disadvantage on attack rolls with a weapon and must roll the weapon's damage dice twice, using the lower total.\n Completing the task ends the spell early. Should you issue a suicidal task, the spell ends. You can end the spell early by using an action to dismiss it. A *remove curse*, *greater restoration*, or *wish* spell also ends it.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_outmaneuver", + "fields": { + "name": "Outmaneuver", + "desc": "When a creature provokes an opportunity attack from an ally you can see within range, you can force the creature to make a Wisdom saving throw. On a failed save, the creature's movement is reduced to 0, and you can move up to your speed toward the creature without provoking opportunity attacks. This spell doesn't interrupt your ally's opportunity attack, which happens before the effects of this spell.", + "document": "toh", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_oversized-paws", + "fields": { + "name": "Oversized Paws", + "desc": "Until this spell ends, the hands and feet of one willing creature within range become oversized and more powerful. For the duration, the creature adds 1d4 to damage it deals with its unarmed strike.", + "document": "toh", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each spell slot above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_pincer", + "fields": { + "name": "Pincer", + "desc": "You force your enemies into a tight spot. Choose two points you can see within range. The points must be at least 30 feet apart from each other. Each point then emits a thunderous boom in a 30-foot cone in the direction of the other point. The boom is audible out to 300 feet.\n Each creature within a cone must make a Constitution saving throw. On a failed save, a creature takes 5d10 thunder damage and is pushed up to 10 feet away from the point that emitted the cone. On a successful save, the creature takes half as much damage and isn't pushed. Objects that aren't being worn or carried within each cone are automatically pushed.", + "document": "toh", + "level": 6, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d10 for each slot level above 6th.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 2, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_pipers-lure", + "fields": { + "name": "Piper's Lure", + "desc": "You touch a nonmagical pipe or horn instrument and imbue it with magic that lures creatures toward it. Each creature that enters or starts its turn within 150 feet of the affected object must succeed on a Wisdom saving throw or be charmed for 10 minutes. A creature charmed by this spell must take the Dash action and move toward the affected object by the safest available route on each of its turns. Once a charmed creature moves within 5 feet of the object, it is also incapacitated as it stares at the object and sways in place to a mesmerizing tune only it can hear. If the object is moved, the charmed creature attempts to follow it.\n For every 10 minutes that elapse, the creature can make a new Wisdom saving throw. On a success, the spell ends on that creature. If a charmed creature is attacked, the spell ends immediately on that creature. Once a creature has been charmed by this spell, it can't be charmed by it again for 24 hours.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_portal-jaunt", + "fields": { + "name": "Portal Jaunt", + "desc": "You touch a specially prepared key to a door or gate, turning it into a one-way portal to another such door within range. This spell works with any crafted door, doorway, archway, or any other artificial opening, but not natural or accidental openings such as cave entrances or cracks in walls. You must be aware of your destination or be able to see it from where you cast the spell.\n On completing the spell, the touched door opens, revealing a shimmering image of the location beyond the destination door. You can move through the door, emerging instantly out of the destination door. You can also allow one other willing creature to pass through the portal instead. Anything you carry moves through the door with you, including other creatures, willing or unwilling.\n For the purpose of this spell, any locks, bars, or magical effects such as arcane lock are ineffectual for the spell's duration. You can travel only to a side of the door you can see or have physically visited in the past (divinations such as clairvoyance count as seeing). Once you or a willing creature passes through, both doors shut, ending the spell. If you or another creature does not move through the portal within 1 round, the spell ends.", + "document": "toh", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the range increases by 100 feet and the duration increases by 1 round for each slot level above 3rd. Each round added to the duration allows one additional creature to move through the portal before the spell ends.", + "target_type": "creature", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_portal-trap", + "fields": { + "name": "Portal Trap", + "desc": "You create a magical portal on a surface in an unoccupied space you can see within range. The portal occupies up to 5 square feet of the surface and is instantly covered with an illusion. The illusion looks like the surrounding terrain or surface features, such as mortared stone if the portal is placed on a stone wall, or a simple image of your choice like those created by the *minor illusion* spell. A creature that touches, steps on, or otherwise interacts with or enters the portal must succeed on a Wisdom saving throw or be teleported to an unoccupied space up to 30 feet away in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. The creature can't be teleported into a solid object.\n Physical interaction with the illusion reveals it to be an illusion, but such touching triggers the portal's effect. A creature that uses an action to examine the area where the portal is located can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC.", + "document": "toh", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can create one additional portal for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_power-word-fling", + "fields": { + "name": "Power Word Fling", + "desc": "You mutter a word of power that causes a creature you can see within range to be flung vertically or horizontally. The creature must succeed on a Strength saving throw or be thrown up to 15 feet vertically or horizontally. If the target impacts a surface, such as a ceiling or wall, it stops moving and takes 3d6 bludgeoning damage. If the target was thrown vertically, it plummets to the ground, taking falling damage as normal, unless it has a flying speed or other method of preventing a fall. If the target impacts a creature, the target stops moving and takes 3d6 bludgeoning damage, and the creature the target hits must succeed on a Strength saving throw or be knocked prone. After the target is thrown horizontally or it falls from being thrown vertically, regardless of whether it impacted a surface, it is knocked prone.\n As a bonus action on each of your subsequent turns, you can attempt to fling the same creature again. The target must succeed on another Strength saving throw or be thrown.", + "document": "toh", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the distance you can fling the target increases by 5 feet, and the damage from impacting a surface or creature increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_power-word-rend", + "fields": { + "name": "Power Word Rend", + "desc": "You speak a word of power that causes the internal organs of a creature you can see within range to rupture. The target must make a Constitution saving throw. It takes 4d6 + 20 force damage on a failed save, or half as much damage on a successful one. If the target is below half its hit point maximum, it has disadvantage on this saving throw. This spell has no effect on creatures without vital internal organs, such as constructs, oozes, and undead.", + "document": "toh", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d6+20", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_reapers-knell", + "fields": { + "name": "Reaper's Knell", + "desc": "As the bell rings, a burst of necrotic energy ripples out in a 20-foot-radius sphere from a point you can see within range. Each creature in that area must make a Wisdom saving throw. On a failed save, the creature is marked with necrotic energy for the duration. If a marked creature is reduced to 0 hit points or dies before the spell ends, you regain hit points equal to 2d8 + your spellcasting ability modifier. Alternatively, you can choose for one ally you can see within range to regain the hit points instead.", + "document": "toh", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the healing increases by 1d8 for each slot level above 4th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_rebounding-bolt", + "fields": { + "name": "Rebounding Bolt", + "desc": "You fire a vibrant blue beam of energy at a creature you can see within range. The beam then bounces to a creature of your choice within 30 feet of the target, losing some of its vibrancy and continuing to bounce to other creatures of your choice until it sputters out. Each subsequent target must be within 30 feet of the target affected before it, and the beam can't bounce to a target it has already affected.\n Each target must make a Constitution saving throw. The first target takes 5d6 force damage on a failed save, or half as much damage on a successful one. The beam loses some of its power then bounces to the second target. The beam deals 1d6 force damage less (4d6, then 3d6, then 2d6, then 1d6) to each subsequent target with the final target taking 1d6 force damage on a failed save, or half as much damage on a successful one.", + "document": "toh", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd. This increase allows the beam to jump an additional time, reducing the damage it deals by 1d6 with each bounce as normal.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "5d6", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_repulsing-wall", + "fields": { + "name": "Repulsing Wall", + "desc": "You create a shimmering wall of light on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is translucent, and creatures have disadvantage on Wisdom (Perception) checks to look through the wall.\n One side of the wall, selected by you when you cast this spell, deals 5d8 radiant damage when a creature enters the wall for the first time on a turn or ends its turn there. A creature attempting to pass through the wall must make a Strength saving throw. On a failed save, a creature is pushed 10 feet away from the wall and falls prone. A creature that is undead, a fiend, or vulnerable to radiant damage has disadvantage on this saving throw. The other side of the wall deals no damage and doesn't restrict movement through it.", + "document": "toh", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_retribution", + "fields": { + "name": "Retribution", + "desc": "You wrap yourself in shimmering ethereal armor. The next time a creature hits you with a melee attack, it takes force damage equal to half the damage it dealt to you, and it must make a Strength saving throw. On a failed save, the creature is pushed up to 5 feet away from you. Then the spell ends.", + "document": "toh", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_rockfall-ward", + "fields": { + "name": "Rockfall Ward", + "desc": "You temporarily halt the fall of up to a 10-foot cube of nonmagical objects or debris, saving those who might have been crushed. The falling material's rate of descent slows to 60 feet per round and comes to a stop 5 feet above the ground, where it hovers until the spell ends. This spell can't prevent missile weapons from striking a target, and it can't slow the descent of an object larger than a 10-foot cube. However, at the GM's discretion, it can slow the descent of a section of a larger object, such as the wall of a falling building or a section of sail and rigging tied to a falling mast.", + "document": "toh", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the cube of debris and objects you can halt increases by 5 feet for each slot level above 1st.", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_sacrifice-pawn", + "fields": { + "name": "Sacrifice Pawn", + "desc": "Sometimes one must fall so others might rise. When a friendly creature you can see within range drops to 0 hit points, you can harness its escaping life energy to heal yourself. You regain hit points equal to the fallen creature's level (or CR for a creature without a level) + your spellcasting ability modifier.", + "document": "toh", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_sacrificial-healing", + "fields": { + "name": "Sacrificial Healing", + "desc": "You heal another creature's wounds by taking them upon yourself or transferring them to another willing creature in range. Roll 4d8. The number rolled is the amount of damage healed by the target and the damage you take, as its wounds close and similar damage appears on your body (or the body of the other willing target of the spell).", + "document": "toh", + "level": 4, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_safe-transposition", + "fields": { + "name": "Safe Transposition", + "desc": "You cast this spell when an ally below half its hit point maximum within range is attacked. You swap places with your ally, each of you instantly teleporting into the space the other just occupied. If there isn't room for you in the new space or for your ally in your former space, this spell fails. After the two of you teleport, the triggering attack roll is compared to your AC to determine if it hits you.", + "document": "toh", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_secret-blind", + "fields": { + "name": "Secret Blind", + "desc": "A 5-foot-radius immobile sphere springs into existence around you and remains stationary for the duration. You and up to four Medium or smaller creatures can occupy the sphere. If its area includes a larger creature or more than five creatures, each larger creature and excess creature is pushed to an unoccupied space outside of the sphere.\n Creatures and objects within the sphere when you cast this spell may move through it freely. All other creatures and objects are barred from passing through the sphere after it forms. Spells and other magical effects can't extend through the sphere, with the exception of transmutation or conjuration spells and magical effects that allow you or the creatures inside the sphere to willingly leave it, such as the *dimension door* and *teleport* spells. The atmosphere inside the sphere is cool, dry, and filled with air, regardless of the conditions outside.\n Until the effect ends, you can command the interior to be dimly lit or dark. The sphere is opaque from the outside and covered in an illusion that makes it appear as the surrounding terrain, but it is transparent from the inside. Physical interaction with the illusion reveals it to be an illusion as the creature touches the cool, firm surface of the sphere. A creature that uses an action to examine the sphere can determine it is covered by an illusion with a successful Intelligence (Investigation) check against your spell save DC.\n The effect ends if you leave its area, or if the sphere is hit with the *disintegration* spell or a successful *dispel magic* spell.", + "document": "toh", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 5, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_shared-frenzy", + "fields": { + "name": "Shared Frenzy", + "desc": "You yell defiantly as part of casting this spell to encourage a battle fury among your allies. Each friendly creature in range must make a Charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, it has resistance to bludgeoning, piercing, and slashing damage and has advantage on attack rolls for the duration. However, attack rolls made against an affected creature have advantage.", + "document": "toh", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, this spell no longer causes creatures to have advantage against the spell's targets.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_shocking-volley", + "fields": { + "name": "Shocking Volley", + "desc": "You draw back and release an imaginary bowstring while aiming at a point you can see within range. Bolts of arrow-shaped lightning shoot from the imaginary bow, and each creature within 20 feet of that point must make a Dexterity saving throw. On a failed save, a creature takes 2d8 lightning damage and is incapacitated until the end of its next turn. On a successful save, a creature takes half as much damage.", + "document": "toh", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "lightning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_sightburst", + "fields": { + "name": "Sightburst", + "desc": "A wave of echoing sound emanates from you. Until the start of your next turn, you have blindsight out to a range of 100 feet, and you know the location of any natural hazards within that area. You have advantage on saving throws made against hazards detected with this spell.", + "document": "toh", + "level": 2, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the duration is concentration, up to 1 minute. When you use a spell slot of 5th level or higher, the duration is concentration, up to 10 minutes. When you use a spell slot of 7th level or higher, the duration is concentration, up to 1 hour.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_silvershout", + "fields": { + "name": "Silvershout", + "desc": "You unleash a shout that coats all creatures in a 30'foot cone in silver dust. If a creature in that area is a shapeshifter, the dust covering it glows. In addition, each creature in the area must make a Constitution saving throw. On a failed save, weapon attacks against that creature are considered to be silvered for the purposes of overcoming resistance and immunity to nonmagical attacks that aren't silvered for 1 minute.", + "document": "toh", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_smelting-blast", + "fields": { + "name": "Smelting Blast", + "desc": "You unleash a bolt of red-hot liquid metal at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 2d8 fire damage and must succeed on a Constitution saving throw or be coated in cooling, liquid metal for the duration. A creature coated in liquid metal takes 1d8 fire damage at the start of each of its turns as the metal scorches while it cools. At the end of each of its turns, the creature can make another Constitution saving throw. On a success, the spell ends and the liquid metal disappears.", + "document": "toh", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "2d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_sneer", + "fields": { + "name": "Sneer", + "desc": "You curl your lip in disgust at a creature you can see within range. The target must succeed on a Charisma saving throw or take psychic damage equal to 2d4 + your spellcasting ability modifier.", + "document": "toh", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_spiked-barricade", + "fields": { + "name": "Spiked Barricade", + "desc": "With a word, you create a barricade of pointed, wooden poles, also known as a cheval de frise, to block your enemies' progress. The barricade is composed of six 5-foot cube barriers made of wooden spikes mounted on central, horizontal beams.\n Each barrier doesn't need to be contiguous with another barrier, but each barrier must appear in an unoccupied space within range. Each barrier is difficult terrain, and a barrier provides half cover to a creature behind it. When a creature enters a barrier's area for the first time on a turn or starts its turn there, the creature must succeed on a Strength saving throw or take 3d6 piercing damage.\n The barriers are objects made of wood that can be damaged and destroyed. Each barrier has AC 13, 20 hit points, and is vulnerable to bludgeoning and fire damage. Reducing a barrier to 0 hit points destroys it.\n If you maintain your concentration on this spell for its whole duration, the barriers become permanent and can't be dispelled. Otherwise, the barriers disappear when the spell ends.", + "document": "toh", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the number of barriers you create increases by two for each slot level above 3rd.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_spite", + "fields": { + "name": "Spite", + "desc": "You prick your finger and anoint your forehead with your own blood, taking 1 piercing damage and warding yourself against hostile attacks. The first time a creature hits you with an attack during this spell's duration, it takes 3d6 psychic damage. Then the spell ends.", + "document": "toh", + "level": 2, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "psychic" + ], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_steam-gout", + "fields": { + "name": "Steam Gout", + "desc": "You create a gout of billowing steam in a 40-foottall cylinder with a 5-foot radius centered on a point on the ground you can see within range. Exposed flames in the area are doused. Each creature in the area when the gout first appears must make a Dexterity saving throw. On a failed save, the creature takes 2d8 fire damage and falls prone. On a successful save, the creature takes half as much damage and doesn't fall prone.\n The gout then covers the area in a sheen of slippery water. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a Dexterity saving throw. On a failed save, it falls prone.", + "document": "toh", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8, and you can create one additional gout of steam for each slot level above 3rd. A creature in the area of more than one gout of steam is affected only once.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": "cylinder", + "shape_magnitude": 5, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_stone-aegis", + "fields": { + "name": "Stone Aegis", + "desc": "A rocky coating covers your body, protecting you. Until the start of your next turn, you gain 5 temporary hit points and a +2 bonus to Armor Class, including against the triggering attack.\n At the start of each of your subsequent turns, you can use a bonus action to extend the duration of the AC bonus until the start of your following turn, for up to 1 minute.", + "document": "toh", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "up to 1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_stone-fetch", + "fields": { + "name": "Stone Fetch", + "desc": "You create a stony duplicate of yourself, which rises out of the ground and appears next to you. The duplicate looks like a stone carving of you, including the clothing you're wearing and equipment you're carrying at the time of the casting. It uses the statistics of an earth elemental.\n For the duration, you have a telepathic link with the duplicate. You can use this telepathic link to issue commands to the duplicate while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as “Run over there” or “Fetch that object.” If the duplicate completes the order and doesn't receive further direction from you, it takes the Dodge or Hide action (your choice) on its turn. The duplicate can't attack, but it can speak in a gravelly version of your voice and mimic your mannerisms with exact detail.\n As a bonus action, you can see through the duplicate's eyes and hear what it hears as if you were in the duplicate's space, gaining the benefits of the earth elemental's darkvision and tremorsense until the start of your next turn. During this time, you are deaf and blind with regard to your own senses. As an action while sharing the duplicate's senses, you can make the duplicate explode in a shower of jagged chunks of rock, destroying the duplicate and ending the spell. Each creature within 10 feet of the duplicate must make a Dexterity saving throw. A creature takes 4d10 slashing damage on a failed save, or half as much damage on a successful one.\n The duplicate explodes at the end of the duration, if you didn't cause it to explode before then. If the duplicate is killed before it explodes, you suffer one level of exhaustion.", + "document": "toh", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the explosion damage increases by 1d10 for each slot level above 4th. In addition, when you cast this spell using a spell slot of 6th level or higher, the duration is 1 hour. When you cast this spell using a spell slot of 8th level or higher, the duration is 8 hours. Using a spell slot of 6th level or higher grants a duration that doesn't require concentration.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d10", + "damage_types": [ + "slashing" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_sudden-slue", + "fields": { + "name": "Sudden Slue", + "desc": "With a growl, you call forth dozens of bears to overrun all creatures in a 20-foot cube within range. Each creature in the area must make a Dexterity saving throw. On a failed save, a creature takes 6d6 bludgeoning damage and is knocked prone. On a successful save, a creature takes half the damage and isn't knocked prone. The bears disappear after making their charge.", + "document": "toh", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_sudden-stampede", + "fields": { + "name": "Sudden Stampede", + "desc": "You conjure up a multitude of fey spirits that manifest as galloping horses. These horses run in a 10-foot'wide, 60-foot-long line, in a given direction starting from a point within range, trampling all creatures in their path, before vanishing again. Each creature in the line takes 6d10 bludgeoning damage and is knocked prone. A successful Dexterity saving throw reduces the damage by half, and the creature is not knocked prone.", + "document": "toh", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d10", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_toadstool-ring", + "fields": { + "name": "Toadstool Ring", + "desc": "You coax a toadstool ring to sprout from the ground. A creature of your choice can sit in the center of the ring and meditate for the duration, catching glimpses of the past, present, and future. The creature can ask up to three questions: one about the past, one about the present, and one about the future. The GM offers truthful answers in the form of dreamlike visions that may be subject to interpretation. When the spell ends, the toadstools turn black and dissolve back into the earth.\n If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that the meditating creature gets a random vision unrelated to the question. The GM makes this roll in secret.", + "document": "toh", + "level": 6, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_toothless-beast", + "fields": { + "name": "Toothless Beast", + "desc": "You hinder the natural attacks of a creature you can see within range. The creature must make a Wisdom saving throw. On a failed save, any time the creature attacks with a bite, claw, slam, or other weapon that isn't manufactured, it must roll the weapon's damage dice twice and use the lower total. At the end of each of its turns, the target can make another Wisdom saving throw. On a success, the spell ends on the target. This spell has no effect on constructs.", + "document": "toh", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_trollish-charge", + "fields": { + "name": "Trollish Charge", + "desc": "You veil a willing creature you can see within range in an illusion others perceive as their worst nightmares given flesh. When the affected creature moves at least 10 feet straight toward a creature and attacks it, that creature must succeed on a Wisdom saving throw or become frightened for 1 minute. If the affected creature’s attack hits the frightened target, the affected creature can roll the attack’s damage dice twice and use the higher total.\n At the end of each of its turns, a creature frightened by this spell can make another Wisdom saving throw. On a success, the creature is no longer frightened and can’t be frightened by this spell again for 24 hours.", + "document": "toh", + "level": 4, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_vine-carpet", + "fields": { + "name": "Vine Carpet", + "desc": "You cause a thick carpet of vines to grow from a point on the ground within range. The vines cover objects and prone creatures within 20 feet of that point. While covered in this way, objects and creatures have total cover as long as they remain motionless. A creature that moves while beneath the carpet has only three-quarters cover from attacks on the other side of the carpet. A covered creature that stands up from prone stands atop the carpet and is no longer covered. The carpet of vines is plush enough that a Large or smaller creature can walk across it without harming or detecting those covered by it.\n When the spell ends, the vines wither away into nothingness, revealing any objects and creatures that were still covered.", + "document": "toh", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_war-horn", + "fields": { + "name": "War Horn", + "desc": "You blow a blast on your war horn, sending a ripple of fear through your enemies and bolstering your allies. Choose up to three hostile creatures in range and up to three friendly creatures in range. Each hostile target must succeed on a Wisdom saving throw or become frightened for the duration. At the end of each of its turns, a frightened creature can make another Wisdom saving throw. On a success, the spell ends on that creature.\n Each friendly target gains a number of temporary hit points equal to 2d4 + your spellcasting ability modifier and has advantage on the next attack roll it makes before the spell ends. The temporary hit points last for 1 hour.", + "document": "toh", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "toh_wild-hunt", + "fields": { + "name": "Wild Hunt", + "desc": "While casting this spell, you must chant and drum, calling forth the spirit of the hunt. Up to nine other creatures can join you in the chant.\n For the duration, each creature that participated in the chant is filled with the fervent bloodlust of the wild hunt and gains several benefits. The creature is immune to being charmed and frightened, it deals one extra die of damage on the first weapon or spell attack it makes on each of its turns, it has advantage on Strength or Dexterity saving throws (the creature's choice), and its Armor Class increases by 1.\n When this spell ends, a creature affected by it suffers one level of exhaustion.", + "document": "toh", + "level": 7, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +} +] diff --git a/data/v2/kobold-press/toh/SpellCastingOption.json b/data/v2/kobold-press/toh/SpellCastingOption.json index f3dbb09e..aec46e2b 100644 --- a/data/v2/kobold-press/toh/SpellCastingOption.json +++ b/data/v2/kobold-press/toh/SpellCastingOption.json @@ -1,4298 +1,4298 @@ [ - { - "model": "api_v2.spellcastingoption", - "pk": 1, - "fields": { - "parent": "toh_ambush-chute", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 3, - "fields": { - "parent": "toh_ambush-chute", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4, - "fields": { - "parent": "toh_ambush-chute", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5, - "fields": { - "parent": "toh_ambush-chute", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6, - "fields": { - "parent": "toh_ambush-chute", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 7, - "fields": { - "parent": "toh_ambush-chute", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 8, - "fields": { - "parent": "toh_ambush-chute", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 9, - "fields": { - "parent": "toh_armored-formation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 10, - "fields": { - "parent": "toh_babble", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 11, - "fields": { - "parent": "toh_battle-mind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 12, - "fields": { - "parent": "toh_battle-mind", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 13, - "fields": { - "parent": "toh_beast-within", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 15, - "fields": { - "parent": "toh_beast-within", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 16, - "fields": { - "parent": "toh_beast-within", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 17, - "fields": { - "parent": "toh_beast-within", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 18, - "fields": { - "parent": "toh_beast-within", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 19, - "fields": { - "parent": "toh_beast-within", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 20, - "fields": { - "parent": "toh_betraying-bauble", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 21, - "fields": { - "parent": "toh_bloodlust", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 22, - "fields": { - "parent": "toh_blunted-edge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 24, - "fields": { - "parent": "toh_blunted-edge", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 25, - "fields": { - "parent": "toh_blunted-edge", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 26, - "fields": { - "parent": "toh_blunted-edge", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 27, - "fields": { - "parent": "toh_blunted-edge", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 28, - "fields": { - "parent": "toh_blunted-edge", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 29, - "fields": { - "parent": "toh_blunted-edge", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 30, - "fields": { - "parent": "toh_bolster-fortifications", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 32, - "fields": { - "parent": "toh_bolster-fortifications", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 33, - "fields": { - "parent": "toh_bolster-fortifications", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 34, - "fields": { - "parent": "toh_bolster-fortifications", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 35, - "fields": { - "parent": "toh_bolster-fortifications", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 36, - "fields": { - "parent": "toh_bolster-fortifications", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 37, - "fields": { - "parent": "toh_bolster-fortifications", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 38, - "fields": { - "parent": "toh_bound-haze", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 40, - "fields": { - "parent": "toh_bound-haze", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 41, - "fields": { - "parent": "toh_bound-haze", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 42, - "fields": { - "parent": "toh_bound-haze", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 43, - "fields": { - "parent": "toh_bound-haze", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 44, - "fields": { - "parent": "toh_bound-haze", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 45, - "fields": { - "parent": "toh_bound-haze", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "0", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 46, - "fields": { - "parent": "toh_burst-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 48, - "fields": { - "parent": "toh_burst-stone", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 49, - "fields": { - "parent": "toh_burst-stone", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 50, - "fields": { - "parent": "toh_burst-stone", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 51, - "fields": { - "parent": "toh_burst-stone", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 52, - "fields": { - "parent": "toh_burst-stone", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 53, - "fields": { - "parent": "toh_burst-stone", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 54, - "fields": { - "parent": "toh_butterfly-effect", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 56, - "fields": { - "parent": "toh_butterfly-effect", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 57, - "fields": { - "parent": "toh_butterfly-effect", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 58, - "fields": { - "parent": "toh_butterfly-effect", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 59, - "fields": { - "parent": "toh_butterfly-effect", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 60, - "fields": { - "parent": "toh_butterfly-effect", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 61, - "fields": { - "parent": "toh_butterfly-effect", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 62, - "fields": { - "parent": "toh_butterfly-effect", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 63, - "fields": { - "parent": "toh_calm-beasts", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 64, - "fields": { - "parent": "toh_clear-the-board", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 65, - "fields": { - "parent": "toh_conjure-construct", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 67, - "fields": { - "parent": "toh_conjure-construct", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 68, - "fields": { - "parent": "toh_conjure-construct", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 69, - "fields": { - "parent": "toh_conjure-construct", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 70, - "fields": { - "parent": "toh_conjure-spectral-allies", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 72, - "fields": { - "parent": "toh_conjure-spectral-allies", - "type": "slot_level_8", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 73, - "fields": { - "parent": "toh_conjure-spectral-allies", - "type": "slot_level_9", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 74, - "fields": { - "parent": "toh_convey-inner-peace", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 75, - "fields": { - "parent": "toh_crown-of-thorns", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 76, - "fields": { - "parent": "toh_damaging-intel", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 77, - "fields": { - "parent": "toh_deadly-salvo", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 78, - "fields": { - "parent": "toh_divine-retribution", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 80, - "fields": { - "parent": "toh_divine-retribution", - "type": "slot_level_2", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 81, - "fields": { - "parent": "toh_divine-retribution", - "type": "slot_level_3", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 82, - "fields": { - "parent": "toh_divine-retribution", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 83, - "fields": { - "parent": "toh_divine-retribution", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 84, - "fields": { - "parent": "toh_divine-retribution", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 85, - "fields": { - "parent": "toh_divine-retribution", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 86, - "fields": { - "parent": "toh_divine-retribution", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 87, - "fields": { - "parent": "toh_divine-retribution", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 88, - "fields": { - "parent": "toh_dreamwine", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 89, - "fields": { - "parent": "toh_emerald-eyes", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 91, - "fields": { - "parent": "toh_emerald-eyes", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 92, - "fields": { - "parent": "toh_emerald-eyes", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 93, - "fields": { - "parent": "toh_emerald-eyes", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 94, - "fields": { - "parent": "toh_emerald-eyes", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 95, - "fields": { - "parent": "toh_emerald-eyes", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 96, - "fields": { - "parent": "toh_emerald-eyes", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 97, - "fields": { - "parent": "toh_enchanted-bloom", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 99, - "fields": { - "parent": "toh_enchanted-bloom", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "7 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 100, - "fields": { - "parent": "toh_enchanted-bloom", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "30 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 101, - "fields": { - "parent": "toh_enchanted-bloom", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "180 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 102, - "fields": { - "parent": "toh_enchanted-bloom", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 103, - "fields": { - "parent": "toh_eruption", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 104, - "fields": { - "parent": "toh_feint", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 105, - "fields": { - "parent": "toh_fey-food", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 107, - "fields": { - "parent": "toh_fey-food", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 108, - "fields": { - "parent": "toh_fey-food", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 109, - "fields": { - "parent": "toh_fey-food", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 110, - "fields": { - "parent": "toh_fey-food", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 111, - "fields": { - "parent": "toh_fey-food", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 112, - "fields": { - "parent": "toh_fey-food", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 113, - "fields": { - "parent": "toh_fey-touched-blade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 115, - "fields": { - "parent": "toh_fey-touched-blade", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 116, - "fields": { - "parent": "toh_fey-touched-blade", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 117, - "fields": { - "parent": "toh_fey-touched-blade", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 118, - "fields": { - "parent": "toh_fey-touched-blade", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 119, - "fields": { - "parent": "toh_fey-touched-blade", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 120, - "fields": { - "parent": "toh_fey-touched-blade", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 121, - "fields": { - "parent": "toh_fey-touched-blade", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 122, - "fields": { - "parent": "toh_forced-reposition", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 124, - "fields": { - "parent": "toh_forced-reposition", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 125, - "fields": { - "parent": "toh_forced-reposition", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 126, - "fields": { - "parent": "toh_forced-reposition", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 127, - "fields": { - "parent": "toh_forced-reposition", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 128, - "fields": { - "parent": "toh_forced-reposition", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 129, - "fields": { - "parent": "toh_furious-wail", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 130, - "fields": { - "parent": "toh_fuse-armor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 132, - "fields": { - "parent": "toh_fuse-armor", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 133, - "fields": { - "parent": "toh_fuse-armor", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 134, - "fields": { - "parent": "toh_fuse-armor", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 135, - "fields": { - "parent": "toh_fuse-armor", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 136, - "fields": { - "parent": "toh_fuse-armor", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 137, - "fields": { - "parent": "toh_fuse-armor", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 138, - "fields": { - "parent": "toh_fuse-armor", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 139, - "fields": { - "parent": "toh_gale", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 140, - "fields": { - "parent": "toh_glare", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 141, - "fields": { - "parent": "toh_high-ground", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 143, - "fields": { - "parent": "toh_high-ground", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 144, - "fields": { - "parent": "toh_high-ground", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 145, - "fields": { - "parent": "toh_high-ground", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 146, - "fields": { - "parent": "toh_high-ground", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 147, - "fields": { - "parent": "toh_high-ground", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 148, - "fields": { - "parent": "toh_high-ground", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 149, - "fields": { - "parent": "toh_immolating-gibbet", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 150, - "fields": { - "parent": "toh_inexorable-summons", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 151, - "fields": { - "parent": "toh_instant-armored-vehicle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 152, - "fields": { - "parent": "toh_invested-champion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 153, - "fields": { - "parent": "toh_iron-gut", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 155, - "fields": { - "parent": "toh_iron-gut", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 156, - "fields": { - "parent": "toh_iron-gut", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 157, - "fields": { - "parent": "toh_iron-gut", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 158, - "fields": { - "parent": "toh_iron-gut", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 159, - "fields": { - "parent": "toh_iron-gut", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 160, - "fields": { - "parent": "toh_iron-gut", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 161, - "fields": { - "parent": "toh_jagged-forcelance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 163, - "fields": { - "parent": "toh_jagged-forcelance", - "type": "slot_level_4", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 164, - "fields": { - "parent": "toh_jagged-forcelance", - "type": "slot_level_5", - "damage_roll": "13d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 165, - "fields": { - "parent": "toh_jagged-forcelance", - "type": "slot_level_6", - "damage_roll": "18d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 166, - "fields": { - "parent": "toh_jagged-forcelance", - "type": "slot_level_7", - "damage_roll": "23d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 167, - "fields": { - "parent": "toh_jagged-forcelance", - "type": "slot_level_8", - "damage_roll": "28d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 168, - "fields": { - "parent": "toh_jagged-forcelance", - "type": "slot_level_9", - "damage_roll": "33d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 169, - "fields": { - "parent": "toh_jarring-growl", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 170, - "fields": { - "parent": "toh_lance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 171, - "fields": { - "parent": "toh_less-fool-i", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 173, - "fields": { - "parent": "toh_less-fool-i", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 174, - "fields": { - "parent": "toh_less-fool-i", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 175, - "fields": { - "parent": "toh_less-fool-i", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 176, - "fields": { - "parent": "toh_less-fool-i", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 177, - "fields": { - "parent": "toh_less-fool-i", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 178, - "fields": { - "parent": "toh_less-fool-i", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 179, - "fields": { - "parent": "toh_less-fool-i", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 180, - "fields": { - "parent": "toh_less-fool-i", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 181, - "fields": { - "parent": "toh_life-burst", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 182, - "fields": { - "parent": "toh_lightless-torch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 184, - "fields": { - "parent": "toh_lightless-torch", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 185, - "fields": { - "parent": "toh_lightless-torch", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 186, - "fields": { - "parent": "toh_lightless-torch", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 187, - "fields": { - "parent": "toh_lightless-torch", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "9 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 188, - "fields": { - "parent": "toh_lightless-torch", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "11 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 189, - "fields": { - "parent": "toh_lightless-torch", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "13 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 190, - "fields": { - "parent": "toh_lightless-torch", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "15 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 191, - "fields": { - "parent": "toh_lightless-torch", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "17 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 192, - "fields": { - "parent": "toh_long-game", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 193, - "fields": { - "parent": "toh_magma-spray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 195, - "fields": { - "parent": "toh_magma-spray", - "type": "slot_level_3", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 196, - "fields": { - "parent": "toh_magma-spray", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 197, - "fields": { - "parent": "toh_magma-spray", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 198, - "fields": { - "parent": "toh_magma-spray", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 199, - "fields": { - "parent": "toh_magma-spray", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 200, - "fields": { - "parent": "toh_magma-spray", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 201, - "fields": { - "parent": "toh_magma-spray", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 202, - "fields": { - "parent": "toh_mantle-of-the-brave", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 203, - "fields": { - "parent": "toh_martyrs-rally", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 204, - "fields": { - "parent": "toh_mass-faerie-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 205, - "fields": { - "parent": "toh_misdirection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 206, - "fields": { - "parent": "toh_mud", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 207, - "fields": { - "parent": "toh_muted-foe", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 209, - "fields": { - "parent": "toh_muted-foe", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 210, - "fields": { - "parent": "toh_muted-foe", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 211, - "fields": { - "parent": "toh_muted-foe", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 212, - "fields": { - "parent": "toh_muted-foe", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 213, - "fields": { - "parent": "toh_muted-foe", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 214, - "fields": { - "parent": "toh_muted-foe", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 215, - "fields": { - "parent": "toh_muted-foe", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 216, - "fields": { - "parent": "toh_muted-foe", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 217, - "fields": { - "parent": "toh_never-surrender", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 219, - "fields": { - "parent": "toh_never-surrender", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 220, - "fields": { - "parent": "toh_never-surrender", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 221, - "fields": { - "parent": "toh_never-surrender", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 222, - "fields": { - "parent": "toh_never-surrender", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 223, - "fields": { - "parent": "toh_never-surrender", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 224, - "fields": { - "parent": "toh_never-surrender", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 225, - "fields": { - "parent": "toh_oathbound-implement", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 226, - "fields": { - "parent": "toh_outmaneuver", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 227, - "fields": { - "parent": "toh_oversized-paws", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 229, - "fields": { - "parent": "toh_oversized-paws", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 230, - "fields": { - "parent": "toh_oversized-paws", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 231, - "fields": { - "parent": "toh_oversized-paws", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 232, - "fields": { - "parent": "toh_oversized-paws", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 233, - "fields": { - "parent": "toh_oversized-paws", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 234, - "fields": { - "parent": "toh_oversized-paws", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 235, - "fields": { - "parent": "toh_oversized-paws", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 236, - "fields": { - "parent": "toh_pincer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 238, - "fields": { - "parent": "toh_pincer", - "type": "slot_level_7", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 239, - "fields": { - "parent": "toh_pincer", - "type": "slot_level_8", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 240, - "fields": { - "parent": "toh_pincer", - "type": "slot_level_9", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 241, - "fields": { - "parent": "toh_pipers-lure", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 242, - "fields": { - "parent": "toh_portal-jaunt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 244, - "fields": { - "parent": "toh_portal-jaunt", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 rounds", - "range": "400 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 245, - "fields": { - "parent": "toh_portal-jaunt", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 rounds", - "range": "500 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 246, - "fields": { - "parent": "toh_portal-jaunt", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 rounds", - "range": "600 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 247, - "fields": { - "parent": "toh_portal-jaunt", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 rounds", - "range": "700 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 248, - "fields": { - "parent": "toh_portal-jaunt", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 rounds", - "range": "800 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 249, - "fields": { - "parent": "toh_portal-jaunt", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 rounds", - "range": "900 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 250, - "fields": { - "parent": "toh_portal-trap", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 252, - "fields": { - "parent": "toh_portal-trap", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 253, - "fields": { - "parent": "toh_portal-trap", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 254, - "fields": { - "parent": "toh_portal-trap", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 255, - "fields": { - "parent": "toh_portal-trap", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 256, - "fields": { - "parent": "toh_portal-trap", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 257, - "fields": { - "parent": "toh_portal-trap", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 258, - "fields": { - "parent": "toh_portal-trap", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 259, - "fields": { - "parent": "toh_power-word-fling", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 261, - "fields": { - "parent": "toh_power-word-fling", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 262, - "fields": { - "parent": "toh_power-word-fling", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 263, - "fields": { - "parent": "toh_power-word-fling", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 264, - "fields": { - "parent": "toh_power-word-fling", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 265, - "fields": { - "parent": "toh_power-word-fling", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 266, - "fields": { - "parent": "toh_power-word-fling", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 267, - "fields": { - "parent": "toh_power-word-rend", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 269, - "fields": { - "parent": "toh_power-word-rend", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 270, - "fields": { - "parent": "toh_power-word-rend", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 271, - "fields": { - "parent": "toh_power-word-rend", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 272, - "fields": { - "parent": "toh_power-word-rend", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 273, - "fields": { - "parent": "toh_power-word-rend", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 274, - "fields": { - "parent": "toh_reapers-knell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 276, - "fields": { - "parent": "toh_reapers-knell", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 277, - "fields": { - "parent": "toh_reapers-knell", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 278, - "fields": { - "parent": "toh_reapers-knell", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 279, - "fields": { - "parent": "toh_reapers-knell", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 280, - "fields": { - "parent": "toh_reapers-knell", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 281, - "fields": { - "parent": "toh_rebounding-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 283, - "fields": { - "parent": "toh_rebounding-bolt", - "type": "slot_level_4", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 284, - "fields": { - "parent": "toh_rebounding-bolt", - "type": "slot_level_5", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 285, - "fields": { - "parent": "toh_rebounding-bolt", - "type": "slot_level_6", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 286, - "fields": { - "parent": "toh_rebounding-bolt", - "type": "slot_level_7", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 287, - "fields": { - "parent": "toh_rebounding-bolt", - "type": "slot_level_8", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 288, - "fields": { - "parent": "toh_rebounding-bolt", - "type": "slot_level_9", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 289, - "fields": { - "parent": "toh_repulsing-wall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 291, - "fields": { - "parent": "toh_repulsing-wall", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 292, - "fields": { - "parent": "toh_repulsing-wall", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 293, - "fields": { - "parent": "toh_repulsing-wall", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 294, - "fields": { - "parent": "toh_repulsing-wall", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 295, - "fields": { - "parent": "toh_repulsing-wall", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 296, - "fields": { - "parent": "toh_retribution", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 297, - "fields": { - "parent": "toh_rockfall-ward", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 299, - "fields": { - "parent": "toh_rockfall-ward", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 300, - "fields": { - "parent": "toh_rockfall-ward", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 301, - "fields": { - "parent": "toh_rockfall-ward", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 302, - "fields": { - "parent": "toh_rockfall-ward", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 303, - "fields": { - "parent": "toh_rockfall-ward", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 304, - "fields": { - "parent": "toh_rockfall-ward", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 305, - "fields": { - "parent": "toh_rockfall-ward", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 306, - "fields": { - "parent": "toh_rockfall-ward", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 307, - "fields": { - "parent": "toh_sacrifice-pawn", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 308, - "fields": { - "parent": "toh_sacrificial-healing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 309, - "fields": { - "parent": "toh_safe-transposition", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 310, - "fields": { - "parent": "toh_secret-blind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 311, - "fields": { - "parent": "toh_shared-frenzy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 313, - "fields": { - "parent": "toh_shared-frenzy", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 314, - "fields": { - "parent": "toh_shared-frenzy", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 315, - "fields": { - "parent": "toh_shared-frenzy", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 316, - "fields": { - "parent": "toh_shared-frenzy", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 317, - "fields": { - "parent": "toh_shared-frenzy", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 318, - "fields": { - "parent": "toh_shared-frenzy", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 319, - "fields": { - "parent": "toh_shocking-volley", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 321, - "fields": { - "parent": "toh_shocking-volley", - "type": "slot_level_3", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 322, - "fields": { - "parent": "toh_shocking-volley", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 323, - "fields": { - "parent": "toh_shocking-volley", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 324, - "fields": { - "parent": "toh_shocking-volley", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 325, - "fields": { - "parent": "toh_shocking-volley", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 326, - "fields": { - "parent": "toh_shocking-volley", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 327, - "fields": { - "parent": "toh_shocking-volley", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 328, - "fields": { - "parent": "toh_sightburst", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 330, - "fields": { - "parent": "toh_sightburst", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "1 minute", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 331, - "fields": { - "parent": "toh_sightburst", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "1 minute", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 332, - "fields": { - "parent": "toh_sightburst", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 333, - "fields": { - "parent": "toh_sightburst", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 334, - "fields": { - "parent": "toh_sightburst", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 335, - "fields": { - "parent": "toh_sightburst", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 336, - "fields": { - "parent": "toh_sightburst", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 337, - "fields": { - "parent": "toh_silvershout", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 338, - "fields": { - "parent": "toh_smelting-blast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 340, - "fields": { - "parent": "toh_smelting-blast", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 341, - "fields": { - "parent": "toh_smelting-blast", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 342, - "fields": { - "parent": "toh_smelting-blast", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 343, - "fields": { - "parent": "toh_smelting-blast", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 344, - "fields": { - "parent": "toh_smelting-blast", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 345, - "fields": { - "parent": "toh_smelting-blast", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 346, - "fields": { - "parent": "toh_smelting-blast", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 347, - "fields": { - "parent": "toh_sneer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 348, - "fields": { - "parent": "toh_spiked-barricade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 350, - "fields": { - "parent": "toh_spiked-barricade", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 351, - "fields": { - "parent": "toh_spiked-barricade", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 352, - "fields": { - "parent": "toh_spiked-barricade", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 353, - "fields": { - "parent": "toh_spiked-barricade", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 354, - "fields": { - "parent": "toh_spiked-barricade", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 355, - "fields": { - "parent": "toh_spiked-barricade", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 356, - "fields": { - "parent": "toh_spite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 358, - "fields": { - "parent": "toh_spite", - "type": "slot_level_3", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 359, - "fields": { - "parent": "toh_spite", - "type": "slot_level_4", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 360, - "fields": { - "parent": "toh_spite", - "type": "slot_level_5", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 361, - "fields": { - "parent": "toh_spite", - "type": "slot_level_6", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 362, - "fields": { - "parent": "toh_spite", - "type": "slot_level_7", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 363, - "fields": { - "parent": "toh_spite", - "type": "slot_level_8", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 364, - "fields": { - "parent": "toh_spite", - "type": "slot_level_9", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 365, - "fields": { - "parent": "toh_steam-gout", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 367, - "fields": { - "parent": "toh_steam-gout", - "type": "slot_level_4", - "damage_roll": "3d8", - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 368, - "fields": { - "parent": "toh_steam-gout", - "type": "slot_level_5", - "damage_roll": "4d8", - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 369, - "fields": { - "parent": "toh_steam-gout", - "type": "slot_level_6", - "damage_roll": "5d8", - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 370, - "fields": { - "parent": "toh_steam-gout", - "type": "slot_level_7", - "damage_roll": "6d8", - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 371, - "fields": { - "parent": "toh_steam-gout", - "type": "slot_level_8", - "damage_roll": "7d8", - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 372, - "fields": { - "parent": "toh_steam-gout", - "type": "slot_level_9", - "damage_roll": "8d8", - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 373, - "fields": { - "parent": "toh_stone-aegis", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 374, - "fields": { - "parent": "toh_stone-fetch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 376, - "fields": { - "parent": "toh_stone-fetch", - "type": "slot_level_5", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 377, - "fields": { - "parent": "toh_stone-fetch", - "type": "slot_level_6", - "damage_roll": "6d10", - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 378, - "fields": { - "parent": "toh_stone-fetch", - "type": "slot_level_7", - "damage_roll": "7d10", - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 379, - "fields": { - "parent": "toh_stone-fetch", - "type": "slot_level_8", - "damage_roll": "8d10", - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 380, - "fields": { - "parent": "toh_stone-fetch", - "type": "slot_level_9", - "damage_roll": "9d10", - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 381, - "fields": { - "parent": "toh_sudden-slue", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 382, - "fields": { - "parent": "toh_sudden-stampede", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 383, - "fields": { - "parent": "toh_toadstool-ring", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 384, - "fields": { - "parent": "toh_toothless-beast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 386, - "fields": { - "parent": "toh_toothless-beast", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 387, - "fields": { - "parent": "toh_toothless-beast", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 388, - "fields": { - "parent": "toh_toothless-beast", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 389, - "fields": { - "parent": "toh_toothless-beast", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 390, - "fields": { - "parent": "toh_toothless-beast", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 391, - "fields": { - "parent": "toh_toothless-beast", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 392, - "fields": { - "parent": "toh_toothless-beast", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 393, - "fields": { - "parent": "toh_trollish-charge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 395, - "fields": { - "parent": "toh_trollish-charge", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 396, - "fields": { - "parent": "toh_trollish-charge", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 397, - "fields": { - "parent": "toh_trollish-charge", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 398, - "fields": { - "parent": "toh_trollish-charge", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 399, - "fields": { - "parent": "toh_trollish-charge", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 400, - "fields": { - "parent": "toh_vine-carpet", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 401, - "fields": { - "parent": "toh_war-horn", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 402, - "fields": { - "parent": "toh_wild-hunt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - } -] \ No newline at end of file +{ + "model": "api_v2.spellcastingoption", + "pk": 1, + "fields": { + "parent": "toh_ambush-chute", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 3, + "fields": { + "parent": "toh_ambush-chute", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4, + "fields": { + "parent": "toh_ambush-chute", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5, + "fields": { + "parent": "toh_ambush-chute", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6, + "fields": { + "parent": "toh_ambush-chute", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 7, + "fields": { + "parent": "toh_ambush-chute", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 8, + "fields": { + "parent": "toh_ambush-chute", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 9, + "fields": { + "parent": "toh_armored-formation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 10, + "fields": { + "parent": "toh_babble", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 11, + "fields": { + "parent": "toh_battle-mind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 12, + "fields": { + "parent": "toh_battle-mind", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 13, + "fields": { + "parent": "toh_beast-within", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 15, + "fields": { + "parent": "toh_beast-within", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 16, + "fields": { + "parent": "toh_beast-within", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 17, + "fields": { + "parent": "toh_beast-within", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 18, + "fields": { + "parent": "toh_beast-within", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 19, + "fields": { + "parent": "toh_beast-within", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 20, + "fields": { + "parent": "toh_betraying-bauble", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 21, + "fields": { + "parent": "toh_bloodlust", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 22, + "fields": { + "parent": "toh_blunted-edge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 24, + "fields": { + "parent": "toh_blunted-edge", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 25, + "fields": { + "parent": "toh_blunted-edge", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 26, + "fields": { + "parent": "toh_blunted-edge", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 27, + "fields": { + "parent": "toh_blunted-edge", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 28, + "fields": { + "parent": "toh_blunted-edge", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 29, + "fields": { + "parent": "toh_blunted-edge", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 30, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 32, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 33, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 34, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 35, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 36, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 37, + "fields": { + "parent": "toh_bolster-fortifications", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 38, + "fields": { + "parent": "toh_bound-haze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 40, + "fields": { + "parent": "toh_bound-haze", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 41, + "fields": { + "parent": "toh_bound-haze", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 42, + "fields": { + "parent": "toh_bound-haze", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 43, + "fields": { + "parent": "toh_bound-haze", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 44, + "fields": { + "parent": "toh_bound-haze", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 45, + "fields": { + "parent": "toh_bound-haze", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "0", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 46, + "fields": { + "parent": "toh_burst-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 48, + "fields": { + "parent": "toh_burst-stone", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 49, + "fields": { + "parent": "toh_burst-stone", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 50, + "fields": { + "parent": "toh_burst-stone", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 51, + "fields": { + "parent": "toh_burst-stone", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 52, + "fields": { + "parent": "toh_burst-stone", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 53, + "fields": { + "parent": "toh_burst-stone", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 54, + "fields": { + "parent": "toh_butterfly-effect", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 56, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 57, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 58, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 59, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 60, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 61, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 62, + "fields": { + "parent": "toh_butterfly-effect", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 63, + "fields": { + "parent": "toh_calm-beasts", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 64, + "fields": { + "parent": "toh_clear-the-board", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 65, + "fields": { + "parent": "toh_conjure-construct", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 67, + "fields": { + "parent": "toh_conjure-construct", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 68, + "fields": { + "parent": "toh_conjure-construct", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 69, + "fields": { + "parent": "toh_conjure-construct", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 70, + "fields": { + "parent": "toh_conjure-spectral-allies", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 72, + "fields": { + "parent": "toh_conjure-spectral-allies", + "type": "slot_level_8", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 73, + "fields": { + "parent": "toh_conjure-spectral-allies", + "type": "slot_level_9", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 74, + "fields": { + "parent": "toh_convey-inner-peace", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 75, + "fields": { + "parent": "toh_crown-of-thorns", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 76, + "fields": { + "parent": "toh_damaging-intel", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 77, + "fields": { + "parent": "toh_deadly-salvo", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 78, + "fields": { + "parent": "toh_divine-retribution", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 80, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_2", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 81, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_3", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 82, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 83, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 84, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 85, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 86, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 87, + "fields": { + "parent": "toh_divine-retribution", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 88, + "fields": { + "parent": "toh_dreamwine", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 89, + "fields": { + "parent": "toh_emerald-eyes", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 91, + "fields": { + "parent": "toh_emerald-eyes", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 92, + "fields": { + "parent": "toh_emerald-eyes", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 93, + "fields": { + "parent": "toh_emerald-eyes", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 94, + "fields": { + "parent": "toh_emerald-eyes", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 95, + "fields": { + "parent": "toh_emerald-eyes", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 96, + "fields": { + "parent": "toh_emerald-eyes", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 97, + "fields": { + "parent": "toh_enchanted-bloom", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 99, + "fields": { + "parent": "toh_enchanted-bloom", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "7 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 100, + "fields": { + "parent": "toh_enchanted-bloom", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "30 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 101, + "fields": { + "parent": "toh_enchanted-bloom", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "180 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 102, + "fields": { + "parent": "toh_enchanted-bloom", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 103, + "fields": { + "parent": "toh_eruption", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 104, + "fields": { + "parent": "toh_feint", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 105, + "fields": { + "parent": "toh_fey-food", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 107, + "fields": { + "parent": "toh_fey-food", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 108, + "fields": { + "parent": "toh_fey-food", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 109, + "fields": { + "parent": "toh_fey-food", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 110, + "fields": { + "parent": "toh_fey-food", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 111, + "fields": { + "parent": "toh_fey-food", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 112, + "fields": { + "parent": "toh_fey-food", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 113, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 115, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 116, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 117, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 118, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 119, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 120, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 121, + "fields": { + "parent": "toh_fey-touched-blade", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 122, + "fields": { + "parent": "toh_forced-reposition", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 124, + "fields": { + "parent": "toh_forced-reposition", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 125, + "fields": { + "parent": "toh_forced-reposition", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 126, + "fields": { + "parent": "toh_forced-reposition", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 127, + "fields": { + "parent": "toh_forced-reposition", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 128, + "fields": { + "parent": "toh_forced-reposition", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 129, + "fields": { + "parent": "toh_furious-wail", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 130, + "fields": { + "parent": "toh_fuse-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 132, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 133, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 134, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 135, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 136, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 137, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 138, + "fields": { + "parent": "toh_fuse-armor", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 139, + "fields": { + "parent": "toh_gale", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 140, + "fields": { + "parent": "toh_glare", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 141, + "fields": { + "parent": "toh_high-ground", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 143, + "fields": { + "parent": "toh_high-ground", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 144, + "fields": { + "parent": "toh_high-ground", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 145, + "fields": { + "parent": "toh_high-ground", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 146, + "fields": { + "parent": "toh_high-ground", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 147, + "fields": { + "parent": "toh_high-ground", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 148, + "fields": { + "parent": "toh_high-ground", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 149, + "fields": { + "parent": "toh_immolating-gibbet", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 150, + "fields": { + "parent": "toh_inexorable-summons", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 151, + "fields": { + "parent": "toh_instant-armored-vehicle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 152, + "fields": { + "parent": "toh_invested-champion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 153, + "fields": { + "parent": "toh_iron-gut", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 155, + "fields": { + "parent": "toh_iron-gut", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 156, + "fields": { + "parent": "toh_iron-gut", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 157, + "fields": { + "parent": "toh_iron-gut", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 158, + "fields": { + "parent": "toh_iron-gut", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 159, + "fields": { + "parent": "toh_iron-gut", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 160, + "fields": { + "parent": "toh_iron-gut", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 161, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 163, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "slot_level_4", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 164, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "slot_level_5", + "damage_roll": "13d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 165, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "slot_level_6", + "damage_roll": "18d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 166, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "slot_level_7", + "damage_roll": "23d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 167, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "slot_level_8", + "damage_roll": "28d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 168, + "fields": { + "parent": "toh_jagged-forcelance", + "type": "slot_level_9", + "damage_roll": "33d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 169, + "fields": { + "parent": "toh_jarring-growl", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 170, + "fields": { + "parent": "toh_lance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 171, + "fields": { + "parent": "toh_less-fool-i", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 173, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 174, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 175, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 176, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 177, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 178, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 179, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 180, + "fields": { + "parent": "toh_less-fool-i", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 181, + "fields": { + "parent": "toh_life-burst", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 182, + "fields": { + "parent": "toh_lightless-torch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 184, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 185, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 186, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 187, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "9 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 188, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "11 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 189, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "13 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 190, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "15 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 191, + "fields": { + "parent": "toh_lightless-torch", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "17 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 192, + "fields": { + "parent": "toh_long-game", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 193, + "fields": { + "parent": "toh_magma-spray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 195, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_3", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 196, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 197, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 198, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 199, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 200, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 201, + "fields": { + "parent": "toh_magma-spray", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 202, + "fields": { + "parent": "toh_mantle-of-the-brave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 203, + "fields": { + "parent": "toh_martyrs-rally", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 204, + "fields": { + "parent": "toh_mass-faerie-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 205, + "fields": { + "parent": "toh_misdirection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 206, + "fields": { + "parent": "toh_mud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 207, + "fields": { + "parent": "toh_muted-foe", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 209, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 210, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 211, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 212, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 213, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 214, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 215, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 216, + "fields": { + "parent": "toh_muted-foe", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 217, + "fields": { + "parent": "toh_never-surrender", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 219, + "fields": { + "parent": "toh_never-surrender", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 220, + "fields": { + "parent": "toh_never-surrender", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 221, + "fields": { + "parent": "toh_never-surrender", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 222, + "fields": { + "parent": "toh_never-surrender", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 223, + "fields": { + "parent": "toh_never-surrender", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 224, + "fields": { + "parent": "toh_never-surrender", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 225, + "fields": { + "parent": "toh_oathbound-implement", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 226, + "fields": { + "parent": "toh_outmaneuver", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 227, + "fields": { + "parent": "toh_oversized-paws", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 229, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 230, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 231, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 232, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 233, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 234, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 235, + "fields": { + "parent": "toh_oversized-paws", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 236, + "fields": { + "parent": "toh_pincer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 238, + "fields": { + "parent": "toh_pincer", + "type": "slot_level_7", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 239, + "fields": { + "parent": "toh_pincer", + "type": "slot_level_8", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 240, + "fields": { + "parent": "toh_pincer", + "type": "slot_level_9", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 241, + "fields": { + "parent": "toh_pipers-lure", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 242, + "fields": { + "parent": "toh_portal-jaunt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 244, + "fields": { + "parent": "toh_portal-jaunt", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 rounds", + "range": "400 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 245, + "fields": { + "parent": "toh_portal-jaunt", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 rounds", + "range": "500 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 246, + "fields": { + "parent": "toh_portal-jaunt", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 rounds", + "range": "600 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 247, + "fields": { + "parent": "toh_portal-jaunt", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 rounds", + "range": "700 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 248, + "fields": { + "parent": "toh_portal-jaunt", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 rounds", + "range": "800 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 249, + "fields": { + "parent": "toh_portal-jaunt", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 rounds", + "range": "900 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 250, + "fields": { + "parent": "toh_portal-trap", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 252, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 253, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 254, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 255, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 256, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 257, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 258, + "fields": { + "parent": "toh_portal-trap", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 259, + "fields": { + "parent": "toh_power-word-fling", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 261, + "fields": { + "parent": "toh_power-word-fling", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 262, + "fields": { + "parent": "toh_power-word-fling", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 263, + "fields": { + "parent": "toh_power-word-fling", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 264, + "fields": { + "parent": "toh_power-word-fling", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 265, + "fields": { + "parent": "toh_power-word-fling", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 266, + "fields": { + "parent": "toh_power-word-fling", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 267, + "fields": { + "parent": "toh_power-word-rend", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 269, + "fields": { + "parent": "toh_power-word-rend", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 270, + "fields": { + "parent": "toh_power-word-rend", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 271, + "fields": { + "parent": "toh_power-word-rend", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 272, + "fields": { + "parent": "toh_power-word-rend", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 273, + "fields": { + "parent": "toh_power-word-rend", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 274, + "fields": { + "parent": "toh_reapers-knell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 276, + "fields": { + "parent": "toh_reapers-knell", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 277, + "fields": { + "parent": "toh_reapers-knell", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 278, + "fields": { + "parent": "toh_reapers-knell", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 279, + "fields": { + "parent": "toh_reapers-knell", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 280, + "fields": { + "parent": "toh_reapers-knell", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 281, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 283, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "slot_level_4", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 284, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "slot_level_5", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 285, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "slot_level_6", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 286, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "slot_level_7", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 287, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "slot_level_8", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 288, + "fields": { + "parent": "toh_rebounding-bolt", + "type": "slot_level_9", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 289, + "fields": { + "parent": "toh_repulsing-wall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 291, + "fields": { + "parent": "toh_repulsing-wall", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 292, + "fields": { + "parent": "toh_repulsing-wall", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 293, + "fields": { + "parent": "toh_repulsing-wall", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 294, + "fields": { + "parent": "toh_repulsing-wall", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 295, + "fields": { + "parent": "toh_repulsing-wall", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 296, + "fields": { + "parent": "toh_retribution", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 297, + "fields": { + "parent": "toh_rockfall-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 299, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 300, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 301, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 302, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 303, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 304, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 305, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 306, + "fields": { + "parent": "toh_rockfall-ward", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 307, + "fields": { + "parent": "toh_sacrifice-pawn", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 308, + "fields": { + "parent": "toh_sacrificial-healing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 309, + "fields": { + "parent": "toh_safe-transposition", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 310, + "fields": { + "parent": "toh_secret-blind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 311, + "fields": { + "parent": "toh_shared-frenzy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 313, + "fields": { + "parent": "toh_shared-frenzy", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 314, + "fields": { + "parent": "toh_shared-frenzy", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 315, + "fields": { + "parent": "toh_shared-frenzy", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 316, + "fields": { + "parent": "toh_shared-frenzy", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 317, + "fields": { + "parent": "toh_shared-frenzy", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 318, + "fields": { + "parent": "toh_shared-frenzy", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 319, + "fields": { + "parent": "toh_shocking-volley", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 321, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_3", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 322, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 323, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 324, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 325, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 326, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 327, + "fields": { + "parent": "toh_shocking-volley", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 328, + "fields": { + "parent": "toh_sightburst", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 330, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "1 minute", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 331, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "1 minute", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 332, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 333, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 334, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 335, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 336, + "fields": { + "parent": "toh_sightburst", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 337, + "fields": { + "parent": "toh_silvershout", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 338, + "fields": { + "parent": "toh_smelting-blast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 340, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 341, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 342, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 343, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 344, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 345, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 346, + "fields": { + "parent": "toh_smelting-blast", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 347, + "fields": { + "parent": "toh_sneer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 348, + "fields": { + "parent": "toh_spiked-barricade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 350, + "fields": { + "parent": "toh_spiked-barricade", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 351, + "fields": { + "parent": "toh_spiked-barricade", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 352, + "fields": { + "parent": "toh_spiked-barricade", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 353, + "fields": { + "parent": "toh_spiked-barricade", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 354, + "fields": { + "parent": "toh_spiked-barricade", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 355, + "fields": { + "parent": "toh_spiked-barricade", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 356, + "fields": { + "parent": "toh_spite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 358, + "fields": { + "parent": "toh_spite", + "type": "slot_level_3", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 359, + "fields": { + "parent": "toh_spite", + "type": "slot_level_4", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 360, + "fields": { + "parent": "toh_spite", + "type": "slot_level_5", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 361, + "fields": { + "parent": "toh_spite", + "type": "slot_level_6", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 362, + "fields": { + "parent": "toh_spite", + "type": "slot_level_7", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 363, + "fields": { + "parent": "toh_spite", + "type": "slot_level_8", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 364, + "fields": { + "parent": "toh_spite", + "type": "slot_level_9", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 365, + "fields": { + "parent": "toh_steam-gout", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 367, + "fields": { + "parent": "toh_steam-gout", + "type": "slot_level_4", + "damage_roll": "3d8", + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 368, + "fields": { + "parent": "toh_steam-gout", + "type": "slot_level_5", + "damage_roll": "4d8", + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 369, + "fields": { + "parent": "toh_steam-gout", + "type": "slot_level_6", + "damage_roll": "5d8", + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 370, + "fields": { + "parent": "toh_steam-gout", + "type": "slot_level_7", + "damage_roll": "6d8", + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 371, + "fields": { + "parent": "toh_steam-gout", + "type": "slot_level_8", + "damage_roll": "7d8", + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 372, + "fields": { + "parent": "toh_steam-gout", + "type": "slot_level_9", + "damage_roll": "8d8", + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 373, + "fields": { + "parent": "toh_stone-aegis", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 374, + "fields": { + "parent": "toh_stone-fetch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 376, + "fields": { + "parent": "toh_stone-fetch", + "type": "slot_level_5", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 377, + "fields": { + "parent": "toh_stone-fetch", + "type": "slot_level_6", + "damage_roll": "6d10", + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 378, + "fields": { + "parent": "toh_stone-fetch", + "type": "slot_level_7", + "damage_roll": "7d10", + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 379, + "fields": { + "parent": "toh_stone-fetch", + "type": "slot_level_8", + "damage_roll": "8d10", + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 380, + "fields": { + "parent": "toh_stone-fetch", + "type": "slot_level_9", + "damage_roll": "9d10", + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 381, + "fields": { + "parent": "toh_sudden-slue", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 382, + "fields": { + "parent": "toh_sudden-stampede", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 383, + "fields": { + "parent": "toh_toadstool-ring", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 384, + "fields": { + "parent": "toh_toothless-beast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 386, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 387, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 388, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 389, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 390, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 391, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 392, + "fields": { + "parent": "toh_toothless-beast", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 393, + "fields": { + "parent": "toh_trollish-charge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 395, + "fields": { + "parent": "toh_trollish-charge", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 396, + "fields": { + "parent": "toh_trollish-charge", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 397, + "fields": { + "parent": "toh_trollish-charge", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 398, + "fields": { + "parent": "toh_trollish-charge", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 399, + "fields": { + "parent": "toh_trollish-charge", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 400, + "fields": { + "parent": "toh_vine-carpet", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 401, + "fields": { + "parent": "toh_war-horn", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 402, + "fields": { + "parent": "toh_wild-hunt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +} +] diff --git a/data/v2/kobold-press/vom/Item.json b/data/v2/kobold-press/vom/Item.json index acedb55c..b107c152 100644 --- a/data/v2/kobold-press/vom/Item.json +++ b/data/v2/kobold-press/vom/Item.json @@ -1,20199 +1,20199 @@ [ - { - "model": "api_v2.item", - "pk": "vom_aberrant-agreement", - "fields": { - "name": "Aberrant Agreement", - "desc": "This long scroll bears strange runes and seals of eldritch powers. When you use an action to present this scroll to an aberration whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the aberration, negotiating a service from it in exchange for a reward. The aberration is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the aberration, the truce is broken, and the creature can act normally. If the aberration refuses the offer, it is free to take any actions it wishes. Should you and the aberration reach an agreement that is satisfactory to both parties, you must sign the agreement and have the aberration do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the aberration to the agreement until its service is rendered and the reward paid, at which point the scroll blackens and crumbles to dust. An aberration's thinking is alien to most humanoids, and vaguely worded contracts may result in unintended consequences, as the creature may have different thoughts as to how to best meet the goal. If either party breaks the bargain, that creature immediately takes 10d6 psychic damage, and the charter is destroyed, ending the contract.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_accursed-idol", - "fields": { - "name": "Accursed Idol", - "desc": "Carved from a curious black stone of unknown origin, this small totem is fashioned in the macabre likeness of a Great Old One. While attuned to the idol and holding it, you gain the following benefits:\n- You can speak, read, and write Deep Speech.\n- You can use an action to speak the idol's command word and send otherworldly spirits to whisper in the minds of up to three creatures you can see within 30 feet of you. Each target must make a DC 13 Charisma saving throw. On a failed save, a creature takes 2d6 psychic damage and is frightened of you for 1 minute. On a successful save, a creature takes half as much damage and isn't frightened. If a target dies from this damage or while frightened, the otherworldly spirits within the idol are temporarily sated, and you don't suffer the effects of the idol's Otherworldly Whispers property at the next dusk. Once used, this property of the idol can't be used again until the next dusk.\n- You can use an action to cast the augury spell from the idol. The idol can't be used this way again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_adamantine-spearbiter", - "fields": { - "name": "Adamantine Spearbiter", - "desc": "The front of this shield is fashioned in the shape of a snarling wolf ’s head. Spearbiter (Uncommon). When a creature you can see within 5 feet of you makes a melee weapon attack against you, you can use a reaction to attack the attacker’s weapon, the wolf ’s head animating and snapping its jaws at the weapon. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. If the result is higher than the attacker’s attack roll against you, the attacker’s attack misses you. You can’t use this property of the shield again until the next dawn. Adamantine Spearbiter (Rare). A more powerful version of this shield exists. Its wolf ’s head is fitted with adamantine fangs and appears larger and more menacing. When you use your reaction and animate the wolf ’s head to snap at the attacker’s weapon, you have advantage on the attack roll. In addition, there is no longer a limit to the number of times you can use this property of the shield.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_agile-breastplate", - "fields": { - "name": "Agile Breastplate", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_agile-chain-mail", - "fields": { - "name": "Agile Chain Mail", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_agile-chain-shirt", - "fields": { - "name": "Agile Chain Shirt", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_agile-half-plate", - "fields": { - "name": "Agile Half Plate", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_agile-hide", - "fields": { - "name": "Agile Hide", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_agile-plate", - "fields": { - "name": "Agile Plate", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_agile-ring-mail", - "fields": { - "name": "Agile Ring Mail", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_agile-scale-mail", - "fields": { - "name": "Agile Scale Mail", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_agile-splint", - "fields": { - "name": "Agile Splint", - "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_air-seed", - "fields": { - "name": "Air Seed", - "desc": "This plum-sized, nearly spherical sandstone is imbued with a touch of air magic. Typically, 1d4 + 4 air seeds are found together. You can use an action to throw the seed up to 60 feet. The seed explodes on impact and is destroyed. When it explodes, the seed releases a burst of fresh, breathable air, and it disperses gas or vapor and extinguishes candles, torches, and similar unprotected flames within a 10-foot radius of where the seed landed. Each suffocating or choking creature within a 10-foot radius of where the seed landed gains a lung full of air, allowing the creature to hold its breath for 5 minutes. If you break the seed while underwater, each creature within a 10-foot radius of where you broke the seed gains a lung full of air, allowing the creature to hold its breath for 5 minutes.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_akaasit-blade", - "fields": { - "name": "Akaasit Blade", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. This dagger is crafted from the arm blade of a defeated Akaasit (see Tome of Beasts 2). You can use an action to activate a small measure of prescience within the dagger for 1 minute. If you are attacked by a creature you can see within 5 feet of you while this effect is active, you can use your reaction to make one attack with this dagger against the attacker. If your attack hits, the dagger loses its prescience, and its prescience can't be activated again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_alabaster-salt-shaker", - "fields": { - "name": "Alabaster Salt Shaker", - "desc": "This shaker is carved from purest alabaster in the shape of an owl. It is 7 inches tall and contains enough salt to flavor 25 meals. When the shaker is empty, it can't be refilled, and it becomes nonmagical. When you or another creature eat a meal salted by this shaker, you don't need to eat again for 48 hours, at which point the magic wears off. If you don't eat within 1 hour of the magic wearing off, you gain one level of exhaustion. You continue gaining one level of exhaustion for each additional hour you don't eat.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_alchemical-lantern", - "fields": { - "name": "Alchemical Lantern", - "desc": "This hooded lantern has 3 charges and regains all expended charges daily at dusk. While the lantern is lit, you can use an action to expend 1 charge to cause the lantern to spit gooey alchemical fire at a creature you can see in the lantern's bright light. The lantern makes its attack roll with a +5 bonus. On a hit, the target takes 2d6 fire damage, and it ignites. Until a creature takes an action to douse the fire, the target takes 1d6 fire damage at the start of each of its turns.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_alembic-of-unmaking", - "fields": { - "name": "Alembic of Unmaking", - "desc": "This large alembic is a glass retort supported by a bronze tripod and connected to a smaller glass container by a bronze spout. The bronze fittings are etched with arcane symbols, and the glass parts of the alembic sometimes emit bright, amethyst sparks. If a magic item is placed inside the alembic and a fire lit beneath it, the magic item dissolves and its magical energy drains into the smaller container. Artifacts, legendary magic items, and any magic item that won't physically fit into the alembic (anything larger than a shortsword or a cloak) can't be dissolved in this way. Full dissolution and distillation of an item's magical energy takes 1 hour, but 10 minutes is enough time to render most items nonmagical. If an item spends a full hour dissolving in the alembic, its magical energy coalesces in the smaller container as a lump of material resembling gray-purple, stiff dough known as arcanoplasm. This material is safe to handle and easy to incorporate into new magic items. Using arcanoplasm while creating a magic item reduces the cost of the new item by 10 percent per degree of rarity of the magic item that was distilled into the arcanoplasm. An alembic of unmaking can distill or disenchant one item per 24 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_almanac-of-common-wisdom", - "fields": { - "name": "Almanac of Common Wisdom", - "desc": "The dog-eared pages of this thick, weathered tome contain useful advice, facts, and statistical information on a wide range of topics. The topics change to match information relevant to the area where it is currently located. If you spend a short rest consulting the almanac, you treat your proficiency bonus as 1 higher when making any Intelligence, Wisdom, or Charisma skill checks to discover, recall, or cite information about local events, locations, or creatures for the next 4 hours. For example, this almanac's magic can help you recall and find the location of a city's oldest tavern, but its magic won't help you notice a thug hiding in an alley near the tavern.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_amulet-of-memory", - "fields": { - "name": "Amulet of Memory", - "desc": "Made of gold or silver, this spherical locket is engraved with two cresting waves facing away from each other while bound in a twisted loop. It preserves a memory to be reexperienced later. While wearing this amulet, you can use an action to speak the command word and open the locket. The open locket stores what you see and experience for up to 10 minutes. You can shut the locket at any time (no action required), stopping the memory recording. Opening the locket with the command word again overwrites the contained memory. While a memory is stored, you or another creature can touch the locket to experience the memory from the beginning. Breaking contact ends the memory early. In addition, you have advantage on any skill check related to details or knowledge of the stored memory. If you die while wearing the amulet, it preserves you. Your body is affected by the gentle repose spell until the amulet is removed or until you are restored to life. In addition, at the moment of your death, you can store any memory into the amulet. A creature touching the amulet perceives the memory stored there even after your death. Attuning to an amulet of memory removes any prior memories stored in it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_amulet-of-sustaining-health", - "fields": { - "name": "Amulet of Sustaining Health", - "desc": "While wearing this amulet, you need to eat and drink only once every 7 days. In addition, you have advantage on saving throws against effects that would cause you to suffer a level of exhaustion.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_amulet-of-the-oracle", - "fields": { - "name": "Amulet of the Oracle", - "desc": "When you finish a long rest while wearing this amulet, you can choose one cantrip from the cleric spell list. You can cast that cantrip from the amulet at will, using Wisdom as your spellcasting ability for it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_amulet-of-whirlwinds", - "fields": { - "name": "Amulet of Whirlwinds", - "desc": "This amulet is strung on a brass necklace and holds a piece of djinn magic. The amulet has 9 charges. You can use an action to expend 1 of its charges to create a whirlwind on a point you can see within 60 feet of you. The whirlwind is a 5-foot-radius, 30-foot-tall cylinder of swirling air that lasts as long as you maintain concentration (as if concentrating on a spell). Any creature other than you that enters the whirlwind must succeed on a DC 15 Strength saving throw or be restrained by it. You can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if you lose sight of it. A creature within 5 feet of the whirlwind can pull a creature out of it by taking an action to make a DC 15 Strength check and succeeding. A restrained creature can try to escape by taking an action to make a DC 15 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the whirlwind. When all of the amulet's charges are expended, the amulet becomes a nonmagical piece of jewelry worth 50 gp.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_anchor-of-striking", - "fields": { - "name": "Anchor of Striking", - "desc": "This small rusty iron anchor feels sturdy in spite of its appearance. You gain a +1 bonus to attack and damage rolls made with this magic war pick. When you roll a 20 on an attack roll made with this weapon, the target is wrapped in ethereal golden chains that extend from the bottom of the anchor. As an action, the chained target can make a DC 15 Strength or Dexterity check, freeing itself from the chains on a success. Alternatively, you can use a bonus action to command the chains to disappear, freeing the target. The chains are constructed of magical force and can't be damaged, though they can be destroyed with a disintegrate spell. While the target is wrapped in these chains, you and the target can't move further than 50 feet from each other.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_angelic-earrings", - "fields": { - "name": "Angelic Earrings", - "desc": "These earrings feature platinum loops from which hang bronzed claws from a Chamrosh (see Tome of Beasts 2), freely given by the angelic hound. While wearing these earrings, you have advantage on Wisdom (Insight) checks to determine if a creature is lying or if it has an evil alignment. If you cast detect evil and good while wearing these earrings, the range increases to 60 feet, and the spell lasts 10 minutes without requiring concentration.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_angry-hornet", - "fields": { - "name": "Angry Hornet", - "desc": "This black ammunition has yellow fletching or yellow paint. When you fire this magic ammunition, it makes an angry buzzing sound, and it multiplies in flight. As it flies, 2d4 identical pieces of ammunition magically appear around it, all speeding toward your target. Roll separate attack rolls for each additional arrow or bullet. Duplicate ammunition disappears after missing or after dealing its damage. If the angry hornet and all its duplicates miss, the angry hornet remains magical and can be fired again, otherwise it is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_animated-abacus", - "fields": { - "name": "Animated Abacus", - "desc": "If you speak a mathematical equation within 5 feet of this abacus, it calculates the equation and displays the solution. If you are touching the abacus, it calculates only the equations you speak, ignoring all other spoken equations.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_animated-chain-mail", - "fields": { - "name": "Animated Chain Mail", - "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can use an action to cause parts of the armor to unravel into long, animated chains. While the chains are active, you have a climbing speed equal to your walking speed, and your AC is reduced by 2. You can use a bonus action to deactivate the chains, returning the armor to normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ankh-of-aten", - "fields": { - "name": "Ankh of Aten", - "desc": "This golden ankh is about 12 inches long and has 5 charges. While holding the ankh by the loop, you can expend 1 charge as an action to fire a beam of brilliant sunlight in a 5-foot-wide, 60-foot-line from the end. Each creature caught in the line must make a DC 15 Constitution saving throw. On a failed save, a creature takes a5d8 radiant damage and is blinded until the end of your next turn. On a successful save, it takes half damage and isn't blinded. Undead have disadvantage on this saving throw. The ankh regains 1d4 + 1 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_anointing-mace", - "fields": { - "name": "Anointing Mace", - "desc": "Also called an anointing gada, you gain a +1 bonus to attack and damage rolls made with this magic weapon. In addition, the ornately decorated head of the mace holds a reservoir perforated with small holes. As an action, you can fill the reservoir with a single potion or vial of liquid, such as holy water or alchemist's fire. You can press a button on the haft of the weapon as a bonus action, which opens the holes. If you hit a target with the weapon while the holes are open, the weapon deals damage as normal and the target suffers the effects of the liquid. For example,\nan anointing mace filled with holy water deals an extra 2d6 radiant damage if it hits a fiend or undead. After you press the button and make an attack roll, the liquid is expended, regardless if your attack hits.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_apron-of-the-eager-artisan", - "fields": { - "name": "Apron of the Eager Artisan", - "desc": "Created by dwarven artisans, this leather apron has narrow pockets, which hold one type of artisan's tools. If you are wearing the apron and you spend 10 minutes contemplating your next crafting project, the tools in the apron magically change to match those best suited to the task. Once you have changed the tools available, you can't change them again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_arcanaphage-stone", - "fields": { - "name": "Arcanaphage Stone", - "desc": "Similar to the rocks found in a bird's gizzard, this smooth stone helps an Arcanaphage (see Creature Codex) digest magic. While you hold or wear the stone, you have advantage on saving throws against spells.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_armor-of-cushioning", - "fields": { - "name": "Armor of Cushioning", - "desc": "While wearing this armor, you have resistance to bludgeoning damage. In addition, you can use a reaction when you fall to reduce any falling damage you take by an amount equal to twice your level.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_armor-of-the-ngobou", - "fields": { - "name": "Armor of the Ngobou", - "desc": "This thick and rough armor is made from the hide of a Ngobou (see Tome of Beasts), an aggressive, ox-sized dinosaur known to threaten elephants of the plains. The horns and tusks of the dinosaur are worked into the armor as spiked shoulder pads. While wearing this armor, you gain a +1 bonus to AC, and you have a magical sense for elephants. You automatically detect if an elephant has passed within 90 feet of your location within the last 24 hours, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) checks you make to find elephants.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_arrow-of-grabbing", - "fields": { - "name": "Arrow of Grabbing", - "desc": "This arrow has a barbed head and is wound with a fine but strong thread that unravels as the arrow soars. If a creature takes damage from the arrow, the creature must succeed on a DC 17 Constitution saving throw or take 4d6 damage and have the arrowhead lodged in its flesh. A creature grabbed by this arrow can't move farther away from you. At the end of its turn, the creature can attempt a DC 17 Constitution saving throw, taking 4d6 piercing damage and dislodging the arrow on a success. As an action, you can attempt to pull the grabbed creature up to 10 feet in a straight line toward you, forcing the creature to repeat the saving throw. If the creature fails, it moves up to 10 feet closer to you. If it succeeds, it takes 4d6 piercing damage and the arrow is dislodged.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_arrow-of-unpleasant-herbs", - "fields": { - "name": "Arrow of Unpleasant Herbs", - "desc": "This arrow's tip is filled with magically preserved, poisonous herbs. When a creature takes damage from the arrow, the arrowhead breaks, releasing the herbs. The creature must succeed on a DC 15 Constitution saving throw or be incapacitated until the end of its next turn as it retches and reels from the poison.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ash-of-the-ebon-birch", - "fields": { - "name": "Ash of the Ebon Birch", - "desc": "This salve is created by burning bark from a rare ebon birch tree then mixing that ash with oil and animal blood to create a cerise pigment used to paint yourself or another creature with profane protections. Painting the pigment on a creature takes 1 minute, and you can choose to paint a specific sigil or smear the pigment on a specific part of the creature's body.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ashes-of-the-fallen", - "fields": { - "name": "Ashes of the Fallen", - "desc": "Found in a small packet, this coarse, foul-smelling black dust is made from the powdered remains of a celestial. Each packet of the substance contains enough ashes for one use. You can use an action to throw the dust in a 15-foot cone. Each spellcaster in the cone must succeed on a DC 15 Wisdom saving throw or become cursed for 1 hour or until the curse is ended with a remove curse spell or similar magic. Creatures that don't cast spells are unaffected. A cursed spellcaster must make a DC 15 Wisdom saving throw each time it casts a spell. On a success, the spell is cast normally. On a failure, the spellcaster casts a different, randomly chosen spell of the same level or lower from among the spellcaster's prepared or known spells. If the spellcaster has no suitable spells available, no spell is cast.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ashwood-wand", - "fields": { - "name": "Ashwood Wand", - "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains all expended charges daily at dawn. When you cast a spell that deals fire damage while using this wand as your spellcasting focus, the spell deals 1 extra fire damage. If you expend 1 of the wand's charges during the casting, the spell deals 1d4 + 1 extra fire damage instead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_asps-kiss", - "fields": { - "name": "Asp's Kiss", - "desc": "This haladie features two short, slightly curved blades attached to a single hilt with a short, blue-sheened spike on the hand guard. You gain a +2 bonus to attack and damage rolls made with this magic weapon. While attuned to this sword, you have immunity to poison damage, and, when you take the Dash action, the extra movement you gain is double your speed instead of equal to your speed. When you use the Attack action with this sword, you can make one attack with its hand guard spike (treat as a dagger) as a bonus action. You can use an action to cause indigo poison to coat the blades of this sword. The poison remains for 1 minute or until two attacks using the blade of this weapon hit one or more creatures. The target must succeed on a DC 17 Constitution saving throw or take 2d10 poison damage and its hit point maximum is reduced by an amount equal to the poison damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. The sword can't be used this way again until the next dawn. When you kill a creature with this weapon, it sheds a single, blue tear as it takes its last breath.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_aurochs-bracers", - "fields": { - "name": "Aurochs Bracers", - "desc": "These bracers have the graven image of a bull's head on them. Your Strength score is 19 while you wear these bracers. It has no effect on you if your Strength is already 19 or higher. In addition, when you use the Attack action to shove a creature, you have advantage on the Strength (Athletics) check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_baba-yagas-cinderskull", - "fields": { - "name": "Baba Yaga's Cinderskull", - "desc": "Warm to the touch, this white, dry skull radiates dim, orange light from its eye sockets in a 30-foot radius. While attuned to the skull, you only require half of the daily food and water a creature of your size and type normally requires. In addition, you can withstand extreme temperatures indefinitely, and you automatically succeed on saving throws against extreme temperatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_badger-hide", - "fields": { - "name": "Badger Hide", - "desc": "While wearing this hairy, black and white armor, you have a burrowing speed of 20 feet, and you have advantage on Wisdom (Perception) checks that rely on smell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bag-of-bramble-beasts", - "fields": { - "name": "Bag of Bramble Beasts", - "desc": "This ordinary bag, made from green cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, spiky object. The bag weighs 1/2 pound. You can use an action to pull the spiky object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a 1d8 and consulting the below table. The creature is a bramble version (see sidebar) of the beast listed in the table. The creature vanishes at the next dawn or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature. Once three spiky objects have been pulled from the bag, the bag can't be used again until the next dawn. Alternatively, one willing animal companion or familiar can be placed in the bag for 1 week. A non-beast animal companion or familiar that is placed in the bag is treated as if it had been placed into a bag of holding and can be removed from the bag at any time. A beast animal companion or familiar disappears once placed in the bag, and the bag's magic is dormant until the week is up. At the end of the week, the animal companion or familiar exits the bag as a bramble creature (see the template in the sidebar) and can be returned to its original form only with a wish. The creature retains its status as an animal companion or familiar after its transformation and can choose to activate or deactivate its Thorn Body trait as a bonus action. A transformed familiar can be re-summoned with the find familiar spell. Once the bag has been used to change an animal companion or familiar into a bramble creature, it becomes an ordinary, nonmagical bag. | 1d8 | Creature |\n| --- | ------------ |\n| 1 | Weasel |\n| 2 | Giant rat |\n| 3 | Badger |\n| 4 | Boar |\n| 5 | Panther |\n| 6 | Giant badger | Only a beast can become a bramble creature. It retains all its statistics except as noted below.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bag-of-traps", - "fields": { - "name": "Bag of Traps", - "desc": "Anyone reaching into this apparently empty bag feels a small coin, which resembles no known currency. Removing the coin and placing or tossing it up to 20 feet creates a random mechanical trap that remains for 10 minutes or until discharged or disarmed, whereupon it disappears. The coin returns to the bag only after the trap disappears. You may draw up to 10 traps from the bag each week. The GM has the statistics for mechanical traps.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bagpipes-of-battle", - "fields": { - "name": "Bagpipes of Battle", - "desc": "Inspire friends and strike fear in the hearts of your enemies with the drone of valor and the shrill call of martial might! You must be proficient with wind instruments to use these bagpipes. You can use an action to play them and create a fearsome and inspiring tune. Each ally within 60 feet of you that can hear the tune gains a d12 Bardic Inspiration die for 10 minutes. Each creature within 60 feet of you that can hear the tune and that is hostile to you must succeed on a DC 15 Wisdom saving throw or be frightened of you for 1 minute. A hostile creature has disadvantage on this saving throw if it is within 5 feet of you or your ally. A frightened creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once used, the bagpipes can't be used in this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_baleful-wardrums", - "fields": { - "name": "Baleful Wardrums", - "desc": "You must be proficient with percussion instruments to use these drums. The drums have 3 charges. You can use an action to play them and expend 1 charge to create a baleful rumble. Each creature of your choice within 60 feet of you that hears you play must succeed on a DC 13 Wisdom saving throw or have disadvantage on its next weapon or spell attack roll. A creature that succeeds on its saving throw is immune to the effect of these drums for 24 hours. The drum regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_band-of-iron-thorns", - "fields": { - "name": "Band of Iron Thorns", - "desc": "This black iron armband bristles with long, needle-sharp iron thorns. When you attune to the armband, the thorns bite into your flesh. The armband doesn't function unless the thorns pierce your skin and are able to reach your blood. While wearing the band, after you roll a saving throw but before the GM reveals if the roll is a success or failure, you can use your reaction to expend one Hit Die. Roll the die, and add the number rolled to your saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_band-of-restraint", - "fields": { - "name": "Band of Restraint", - "desc": "These simple leather straps are nearly unbreakable when used as restraints. If you spend 1 minute tying a Small or Medium creature's limbs with these straps, the creature is restrained (escape DC 17) until it escapes or until you speak a command word to release the straps. While restrained by these straps, the target has disadvantage on Strength checks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bandana-of-brachiation", - "fields": { - "name": "Bandana of Brachiation", - "desc": "While wearing this bright yellow bandana, you have a climbing speed of 30 feet, and you gain a +5 bonus to Strength (Athletics) and Dexterity (Acrobatics) checks to jump over obstacles, to land on your feet, and to land safely on a breakable or unstable surface, such as a tree branch or rotting wooden rafters.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bandana-of-bravado", - "fields": { - "name": "Bandana of Bravado", - "desc": "While wearing this bright red bandana, you have advantage on Charisma (Intimidation) checks and on saving throws against being frightened.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_banner-of-the-fortunate", - "fields": { - "name": "Banner of the Fortunate", - "desc": "While holding this banner aloft with one hand, you can use an action to inspire creatures nearby. Each creature of your choice within 60 feet of you that can see the banner has advantage on its next attack roll. The banner can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_battle-standard-of-passage", - "fields": { - "name": "Battle Standard of Passage", - "desc": "This battle standard hangs from a 4-foot-long pole and bears the colors and heraldry of a long-forgotten nation. You can use an action to plant the pole in the ground, causing the standard to whip and wave as if in a breeze. Choose up to six creatures within 30 feet of the standard, which can include yourself. Nonmagical difficult terrain costs the creatures you chose no extra movement. In addition, each creature you chose can pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. The standard stops waving and the effect ends after 10 minutes, or when a creature uses an action to pull the pole from the ground. The standard can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bead-of-exsanguination", - "fields": { - "name": "Bead of Exsanguination", - "desc": "This small, black bead measures 3/4 of an inch in diameter and weights an ounce. Typically, 1d4 + 1 beads of exsanguination are found together. When thrown, the bead absorbs hit points from creatures near its impact site, damaging them. A bead can store up to 50 hit points at a time. When found, a bead contains 2d10 stored hit points. You can use an action to throw the bead up to 60 feet. Each creature within a 20-foot radius of where the bead landed must make a DC 15 Constitution saving throw, taking 3d6 necrotic damage on a failed save, or half as much damage on a successful one. The bead stores hit points equal to the necrotic damage dealt. The bead turns from black to crimson the more hit points are stored in it. If the bead absorbs 50 hit points or more, it explodes and is destroyed. Each creature within a 20-foot radius of the bead when it explodes must make a DC 15 Dexterity saving throw, taking 6d6 necrotic damage on a failed save, or half as much damage on a successful one. If you are holding the bead, you can use a bonus action to determine if the bead is below or above half its maximum stored hit points. If you hold and study the bead over the course of 1 hour, which can be done during a short rest, you know exactly how many hit points are stored in the bead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bear-paws", - "fields": { - "name": "Bear Paws", - "desc": "These hand wraps are made of flexible beeswax that ooze sticky honey. While wearing these gloves, you have advantage on grapple checks. In addition, creatures grappled by you have disadvantage on any checks made to escape your grapple.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bed-of-spikes", - "fields": { - "name": "Bed of Spikes", - "desc": "This wide, wooden plank holds hundreds of two-inch long needle-like spikes. When you finish a long rest on the bed, you have resistance to piercing damage and advantage on Constitution saving throws to maintain your concentration on spells you cast for 8 hours or until you finish a short or long rest. Once used, the bed can't be used again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_belt-of-the-wilds", - "fields": { - "name": "Belt of the Wilds", - "desc": "This thin cord is made from animal sinew. While wearing the cord, you have advantage on Wisdom (Survival) checks to follow tracks left by beasts, giants, and humanoids. While wearing the belt, you can use a bonus action to speak the belt's command word. If you do, you leave tracks of the animal of your choice instead of your regular tracks. These tracks can be those of a Large or smaller beast with a CR of 1 or lower, such as a pony, rabbit, or lion. If you repeat the command word, you end the effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_berserkers-kilt-bear", - "fields": { - "name": "Berserker's Kilt (Bear)", - "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_berserkers-kilt-elk", - "fields": { - "name": "Berserker's Kilt (Elk)", - "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_berserkers-kilt-wolf", - "fields": { - "name": "Berserker's Kilt (Wolf)", - "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_big-dipper", - "fields": { - "name": "Big Dipper", - "desc": "This wooden rod is topped with a ridged ball. The rod has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the rod's last charge, roll a d20. On a 1, the rod melts into a pool of nonmagical honey and is destroyed. Anytime you expend 1 or more charges for this rod's properties, the ridged ball flows with delicious, nonmagical honey for 1 minute.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_binding-oath", - "fields": { - "name": "Binding Oath", - "desc": "This lengthy scroll is the testimony of a pious individual's adherence to their faith. The author has emphatically rewritten these claims many times, and its two slim, metal rollers are wrapped in yards of parchment. When you attune to the item, you rewrite certain passages to align with your own religious views. You can use an action to throw the scroll at a Huge or smaller creature you can see within 30 feet of you. Make a ranged attack roll. On a hit, the scroll unfurls and wraps around the creature. The target is restrained until you take a bonus action to command the scroll to release the creature. If you command it to release the creature or if you miss with the attack, the scroll curls back into a rolled-up scroll. If the restrained target's alignment is the opposite of yours along the law/chaos or good/evil axis, you can use a bonus action to cause the writing to blaze with light, dealing 2d6 radiant damage to the target. A creature, including the restrained target, can use an action to make a DC 17 Strength check to tear apart the scroll. On a success, the scroll is destroyed. Such an attempt causes the writing to blaze with light, dealing 2d6 radiant damage to both the creature making the attempt and the restrained target, whether or not the attempt is successful. Alternatively, the restrained creature can use an action to make a DC 17 Dexterity check to slip free of the scroll. This action also triggers the damage effect, but it doesn't destroy the scroll. Once used, the scroll can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bituminous-orb", - "fields": { - "name": "Bituminous Orb", - "desc": "A tarlike substance leaks continually from this orb, which radiates a cloying darkness and emanates an unnatural chill. While attuned to the orb, you have darkvision out to a range of 60 feet. In addition, you have immunity to necrotic damage, and you have advantage on saving throws against spells and effects that deal radiant damage. This orb has 6 charges and regains 1d6 daily at dawn. You can expend 1 charge as an action to lob some of the orb's viscous darkness at a creature you can see within 60 feet of you. The target must succeed on a DC 15 Dexterity saving throw or be grappled (escape DC 15). Until this grapple ends, the creature is blinded and takes 2d8 necrotic damage at the start of each of its turns, and you can use a bonus action to move the grappled creature up to 20 feet in any direction. You can't move the creature more than 60 feet away from the orb. Alternatively, you can use an action to expend 2 charges and crush the grappled creature. The creature must make a DC 15 Constitution saving throw, taking 6d8 bludgeoning damage on a failed save, or half as much damage on a successful one. You can end the grapple at any time (no action required). The orb's power can grapple only one creature at a time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_black-and-white-daggers", - "fields": { - "name": "Black and White Daggers", - "desc": "These matched daggers are identical except for the stones set in their pommels. One pommel is chalcedony (opaque white), the other is obsidian (opaque black). You gain a +1 bonus to attack and damage rolls with both magic weapons. The bonus increases to +3 when you use the white dagger to attack a monstrosity, and it increases to +3 when you use the black dagger to attack an undead. When you hit a monstrosity or undead with both daggers in the same turn, that creature takes an extra 1d6 piercing damage from the second attack.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_black-dragon-oil", - "fields": { - "name": "Black Dragon Oil", - "desc": "The viscous green-black oil within this magical ceramic pot bubbles slightly. The pot's stone stopper is sealed with greasy, dark wax. The pot contains 5 ounces of pure black dragon essence, obtained by slowly boiling the dragon in its own acidic secretions. You can use an action to apply 1 ounce of the oil to a weapon or single piece of ammunition. The next attack made with that weapon or ammunition deals an extra 2d8 acid damage to the target. A creature that takes the acid damage must succeed on a DC 15 Constitution saving throw at the start of its next turn or be burned for an extra 2d8 acid damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_black-honey-buckle", - "fields": { - "name": "Black Honey Buckle", - "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_black-phial", - "fields": { - "name": "Black Phial", - "desc": "This black stone phial has a tightly fitting stopper and 3 charges. As an action, you can fill the phial with blood taken from a living, or recently deceased (dead no longer than 1 minute), humanoid and expend 1 charge. When you do so, the black phial transforms the blood into a potion of greater healing. A creature who drinks this potion must succeed on a DC 12 Constitution saving throw or be poisoned for 1 hour. The phial regains 1d3 expended charges daily at midnight. If you expend the phial's last charge, roll a d20: 1d20. On a 1, the phial crumbles into dust and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blackguards-dagger", - "fields": { - "name": "Blackguard's Dagger", - "desc": "You have advantage on attack rolls made with this weapon against a target if another enemy of the target is within 5 feet of it, and it has no allies within 5 feet of it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blackguards-handaxe", - "fields": { - "name": "Blackguard's Handaxe", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you draw this weapon, you can use a bonus action to cast the thaumaturgy spell from it. You can have only one of the spell's effects active at a time when you cast it in this way.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blackguards-shortsword", - "fields": { - "name": "Blackguard's Shortsword", - "desc": "You have advantage on attack rolls made with this weapon against a target if another enemy of the target is within 5 feet of it, and it has no allies within 5 feet of it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blacktooth", - "fields": { - "name": "Blacktooth", - "desc": "This black ivory, rune-carved wand has 7 charges. It regains 1d6 + 1 expended charges daily at dawn. While holding it, you can use an action to expend 1 or more of its charges to cast the guiding bolt spell from it, using an attack bonus of +7. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blade-of-petals", - "fields": { - "name": "Blade of Petals", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. This brightly-colored shortsword is kept in a wooden scabbard with eternally blooming flowers. The blade is made of dull green steel, and its pommel is fashioned from hard rosewood. As a bonus action, you can conjure a flowery mist which fills a 20-foot area around you with pleasant-smelling perfume. The scent dissipates after 1 minute. A creature damaged by the blade must succeed on a DC 15 Charisma saving throw or be charmed by you until the end of its next turn. A creature can't be charmed this way more than once every 24 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blade-of-the-dervish", - "fields": { - "name": "Blade of the Dervish", - "desc": "This magic scimitar is empowered by your movements. For every 10 feet you move before making an attack, you gain a +1 bonus to the attack and damage rolls of that attack, and the scimitar deals an extra 1d6 slashing damage if the attack hits (maximum of +3 and 3d6). In addition, if you use the Dash action and move within 5 feet of a creature, you can attack that creature as a bonus action. On a hit, the target takes an extra 2d6 slashing damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blade-of-the-temple-guardian", - "fields": { - "name": "Blade of the Temple Guardian", - "desc": "This simple but elegant shortsword is a magic weapon. When you are wielding it and use the Flurry of Blows class feature, you can make your bonus attacks with the sword rather than unarmed strikes. If you deal damage to a creature with this weapon and reduce it to 0 hit points, you absorb some of its energy, regaining 1 expended ki point.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blasphemous-writ", - "fields": { - "name": "Blasphemous Writ", - "desc": "The Infernal runes inscribed upon this vellum scroll radiate a faint, crimson glow. When you use this spell scroll of command, the save DC is 15 instead of 13, and you can also affect targets that are undead or that don't understand your language.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blessed-paupers-purse", - "fields": { - "name": "Blessed Pauper's Purse", - "desc": "This worn cloth purse appears empty, even when opened, yet seems to always have enough copper pieces in it to make any purchase of urgent necessity when you dig inside. The purse produces enough copper pieces to provide for a poor lifestyle. In addition, if anyone asks you for charity, you can always open the purse to find 1 or 2 cp available to give away. These coins appear only if you truly intend to gift them to one who asks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blinding-lantern", - "fields": { - "name": "Blinding Lantern", - "desc": "This ornate brass lantern comes fitted with heavily inscribed plates shielding the cut crystal lens. With a flick of a lever, as an action, the plates rise and unleash a dazzling array of lights at a single target within 30 feet. You must use two hands to direct the lights precisely into the eyes of a foe. The target must succeed on a DC 11 Wisdom saving throw or be blinded until the end of its next turn. A creature blinded by the lantern is immune to its effects for 1 minute afterward. This property can't be used in a brightly lit area. By opening the shutter on the opposite side, the device functions as a normal bullseye lantern, yet illuminates magically, requiring no fuel and giving off no heat.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blood-mark", - "fields": { - "name": "Blood Mark", - "desc": "Used as a form of currency between undead lords and the humanoids of their lands, this coin resembles a gold ring with a single hole in the center. It holds 1 charge, visible as a red glow in the center of the coin. While holding the coin, you can use an action to expend 1 charge and regain 1d3 hit points. At the same time, the humanoid who pledged their blood to the coin takes necrotic damage and reduces their hit point maximum by an equal amount. This reduction lasts until the creature finishes a long rest. It dies if this reduces its hit point maximum to 0. You can expend the charges in up to 5 blood marks as part of the same action. To replenish an expended charge in a blood mark, a humanoid must pledge a pint of their blood in a 10-minute ritual that involves letting a drop of their blood fall through the center of the coin. The drop disappears in the process and the center fills with a red glow. There is no limit to how much blood a humanoid may pledge, but each coin can hold only 1 charge. To pledge more, the humanoid must perform the ritual on another blood mark. Any person foolish enough to pledge more than a single blood coin might find the coins all redeemed at once, since such redemptions often happen at great blood feasts held by vampires and other undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blood-pearl", - "fields": { - "name": "Blood Pearl", - "desc": "This crimson pearl feels slick to the touch and contains a mote of blood imbued with malign purpose. As an action, you can break the pearl, destroying it, and conjure a Blood Elemental (see Creature Codex) for 1 hour. The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blood-soaked-hide", - "fields": { - "name": "Blood-Soaked Hide", - "desc": "A creature that starts its turn in your space must succeed on a DC 15 Constitution saving throw or lose 3d6 hit points due to blood loss, and you regain a number of hit points equal to half the number of hit points the creature lost. Constructs and undead who aren't vampires are immune to this effect. Once used, you can't use this property of the armor again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodbow", - "fields": { - "name": "Bloodbow", - "desc": "This longbow is carved of a light, sturdy wood such as hickory or yew, and it is almost always stained a deep maroon hue, lacquered and aged under layers of sundried blood. The bow is sometimes decorated with reptilian teeth, centaur tails, or other battle trophies. The bow is designed to harm the particular type of creature whose blood most recently soaked the weapon. When you make a ranged attack roll with this magic weapon against a creature of that type, you have a +1 bonus to the attack and damage rolls. If the attack hits, the target must succeed on a DC 15 Wisdom saving throw or become enraged until the end of your next turn. While enraged, the target suffers a random short-term madness.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blooddrinker-spear", - "fields": { - "name": "Blooddrinker Spear", - "desc": "Prized by gnolls, the upper haft of this spear is decorated with tiny animal skulls, feathers, and other adornments. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit a creature with this spear, you mark that creature for 1 hour. Until the mark ends, you deal an extra 1d6 damage to the target whenever you hit it with the spear, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find the target. If the target drops to 0 hit points, the mark ends. This property can't be used on a different creature until you spend a short rest cleaning the previous target's blood from the spear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-battleaxe", - "fields": { - "name": "Bloodfuel Battleaxe", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-blowgun", - "fields": { - "name": "Bloodfuel Blowgun", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-crossbow-hand", - "fields": { - "name": "Bloodfuel Crossbow Hand", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-crossbow-heavy", - "fields": { - "name": "Bloodfuel Crossbow Heavy", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-crossbow-light", - "fields": { - "name": "Bloodfuel Crossbow Light", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-dagger", - "fields": { - "name": "Bloodfuel Dagger", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-dart", - "fields": { - "name": "Bloodfuel Dart", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-glaive", - "fields": { - "name": "Bloodfuel Glaive", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-greataxe", - "fields": { - "name": "Bloodfuel Greataxe", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-greatsword", - "fields": { - "name": "Bloodfuel Greatsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-halberd", - "fields": { - "name": "Bloodfuel Halberd", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-handaxe", - "fields": { - "name": "Bloodfuel Handaxe", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-javelin", - "fields": { - "name": "Bloodfuel Javelin", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-lance", - "fields": { - "name": "Bloodfuel Lance", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-longbow", - "fields": { - "name": "Bloodfuel Longbow", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-longsword", - "fields": { - "name": "Bloodfuel Longsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-morningstar", - "fields": { - "name": "Bloodfuel Morningstar", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-pike", - "fields": { - "name": "Bloodfuel Pike", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-rapier", - "fields": { - "name": "Bloodfuel Rapier", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-scimitar", - "fields": { - "name": "Bloodfuel Scimitar", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-shortbow", - "fields": { - "name": "Bloodfuel Shortbow", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-shortsword", - "fields": { - "name": "Bloodfuel Shortsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-sickle", - "fields": { - "name": "Bloodfuel Sickle", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-spear", - "fields": { - "name": "Bloodfuel Spear", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-trident", - "fields": { - "name": "Bloodfuel Trident", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-warpick", - "fields": { - "name": "Bloodfuel Warpick", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodfuel-whip", - "fields": { - "name": "Bloodfuel Whip", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodlink-potion", - "fields": { - "name": "Bloodlink Potion", - "desc": "When you and another willing creature each drink at least half this potion, your life energies are linked for 1 hour. When you or the creature who drank the potion with you take damage while your life energies are linked, the total damage is divided equally between you. If the damage is an odd number, roll randomly to assign the extra point of damage. The effect is halted while you and the other creature are separated by more than 60 feet. The effect ends if either of you drop to 0 hit points. This potion's red liquid is viscous and has a metallic taste.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodpearl-bracelet-gold", - "fields": { - "name": "Bloodpearl Bracelet (Gold)", - "desc": "This silver or gold bracelet features three red pearls. You can use an action to remove a pearl and throw it up to 20 feet. When the pearl lands, it transforms into an ooze you determine by rolling a d6 and consulting the table that corresponds to the bracelet's color. The ooze vanishes at the next dawn or when it is reduced to 0 hit points. When you throw a pearl, your hit point maximum is reduced by the amount listed in the Blood Price column. This reduction can't be removed with the greater restoration spell or similar magic and lasts until the ooze vanishes or is reduced to 0 hit points. The ooze is friendly to you and your companions and acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the ooze acts in a fashion appropriate to its nature. Once all three pearls have been used, the bracelet can't be used again until the next dawn when the pearls regrow. | d6 | Ooze | CR | Blood Price |\n| --- | --------------------------- | --- | ---------------- |\n| 1 | Dipsa | 1/4 | 5 HP |\n| 2 | Treacle | 1/4 | 5 HP |\n| 3 | Gray Ooze | 1/2 | 5 HP |\n| 4 | Alchemy Apprentice Ooze | 1 | 7 ( 2d6) |\n| 5 | Suppurating Ooze | 1 | 7 ( 2d6) |\n| 6 | Gelatinous Cube | 2 | 10 ( 3d6) | | d6 | Ooze | CR | Blood Price |\n| --- | ----------------------- | --- | ---------------- |\n| 1 | Philosopher's Ghost | 4 | 17 ( 5d6) |\n| 2 | Ink Guardian Ooze | 4 | 17 ( 5d6) |\n| 3 | Black Pudding | 4 | 17 ( 5d6) |\n| 4 | Corrupting Ooze | 5 | 21 ( 6d6) |\n| 5 | Blood Ooze | 6 | 24 ( 7d6) |\n| 6 | Ruby ooze | 6 | 24 ( 7d6) |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodpearl-bracelet-silver", - "fields": { - "name": "Bloodpearl Bracelet (Silver)", - "desc": "This silver or gold bracelet features three red pearls. You can use an action to remove a pearl and throw it up to 20 feet. When the pearl lands, it transforms into an ooze you determine by rolling a d6 and consulting the table that corresponds to the bracelet's color. The ooze vanishes at the next dawn or when it is reduced to 0 hit points. When you throw a pearl, your hit point maximum is reduced by the amount listed in the Blood Price column. This reduction can't be removed with the greater restoration spell or similar magic and lasts until the ooze vanishes or is reduced to 0 hit points. The ooze is friendly to you and your companions and acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the ooze acts in a fashion appropriate to its nature. Once all three pearls have been used, the bracelet can't be used again until the next dawn when the pearls regrow. | d6 | Ooze | CR | Blood Price |\n| --- | --------------------------- | --- | ---------------- |\n| 1 | Dipsa | 1/4 | 5 HP |\n| 2 | Treacle | 1/4 | 5 HP |\n| 3 | Gray Ooze | 1/2 | 5 HP |\n| 4 | Alchemy Apprentice Ooze | 1 | 7 ( 2d6) |\n| 5 | Suppurating Ooze | 1 | 7 ( 2d6) |\n| 6 | Gelatinous Cube | 2 | 10 ( 3d6) | | d6 | Ooze | CR | Blood Price |\n| --- | ----------------------- | --- | ---------------- |\n| 1 | Philosopher's Ghost | 4 | 17 ( 5d6) |\n| 2 | Ink Guardian Ooze | 4 | 17 ( 5d6) |\n| 3 | Black Pudding | 4 | 17 ( 5d6) |\n| 4 | Corrupting Ooze | 5 | 21 ( 6d6) |\n| 5 | Blood Ooze | 6 | 24 ( 7d6) |\n| 6 | Ruby ooze | 6 | 24 ( 7d6) |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodprice-breastplate", - "fields": { - "name": "Bloodprice Breastplate", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodprice-chain-mail", - "fields": { - "name": "Bloodprice Chain-Mail", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodprice-chain-shirt", - "fields": { - "name": "Bloodprice Chain-Shirt", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodprice-half-plate", - "fields": { - "name": "Bloodprice Half-Plate", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodprice-hide", - "fields": { - "name": "Bloodprice Hide", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodprice-leather", - "fields": { - "name": "Bloodprice Leather", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodprice-padded", - "fields": { - "name": "Bloodprice Padded", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodprice-plate", - "fields": { - "name": "Bloodprice Plate", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodprice-ring-mail", - "fields": { - "name": "Bloodprice Ring-Mail", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodprice-scale-mail", - "fields": { - "name": "Bloodprice Scale-Mail", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodprice-splint", - "fields": { - "name": "Bloodprice Splint", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodprice-studded-leather", - "fields": { - "name": "Bloodprice Studded-Leather", - "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-battleaxe", - "fields": { - "name": "Bloodthirsty Battleaxe", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-blowgun", - "fields": { - "name": "Bloodthirsty Blowgun", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-crossbow-hand", - "fields": { - "name": "Bloodthirsty Crossbow Hand", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-crossbow-heavy", - "fields": { - "name": "Bloodthirsty Crossbow Heavy", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-crossbow-light", - "fields": { - "name": "Bloodthirsty Crossbow Light", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-dagger", - "fields": { - "name": "Bloodthirsty Dagger", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-dart", - "fields": { - "name": "Bloodthirsty Dart", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-glaive", - "fields": { - "name": "Bloodthirsty Glaive", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-greataxe", - "fields": { - "name": "Bloodthirsty Greataxe", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-greatsword", - "fields": { - "name": "Bloodthirsty Greatsword", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-halberd", - "fields": { - "name": "Bloodthirsty Halberd", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-handaxe", - "fields": { - "name": "Bloodthirsty Handaxe", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-javelin", - "fields": { - "name": "Bloodthirsty Javelin", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-lance", - "fields": { - "name": "Bloodthirsty Lance", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-longbow", - "fields": { - "name": "Bloodthirsty Longbow", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-longsword", - "fields": { - "name": "Bloodthirsty Longsword", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-morningstar", - "fields": { - "name": "Bloodthirsty Morningstar", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-pike", - "fields": { - "name": "Bloodthirsty Pike", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-rapier", - "fields": { - "name": "Bloodthirsty Rapier", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-scimitar", - "fields": { - "name": "Bloodthirsty Scimitar", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-shortbow", - "fields": { - "name": "Bloodthirsty Shortbow", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-shortsword", - "fields": { - "name": "Bloodthirsty Shortsword", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-sickle", - "fields": { - "name": "Bloodthirsty Sickle", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-spear", - "fields": { - "name": "Bloodthirsty Spear", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-trident", - "fields": { - "name": "Bloodthirsty Trident", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-warpick", - "fields": { - "name": "Bloodthirsty Warpick", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodthirsty-whip", - "fields": { - "name": "Bloodthirsty Whip", - "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bloodwhisper-cauldron", - "fields": { - "name": "Bloodwhisper Cauldron", - "desc": "This ancient, oxidized cauldron sits on three stubby legs and has images of sacrifice and ritual cast into its iron sides. When filled with concoctions that contain blood, the bubbling cauldron seems to whisper secrets of ancient power to those bold enough to listen. While filled with blood, the cauldron has the following properties. Once filled, the cauldron can't be refilled again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bludgeon-of-nightmares", - "fields": { - "name": "Bludgeon of Nightmares", - "desc": "You gain a +2 bonus to attack and damage rolls made with this weapon. The weapon appears to be a mace of disruption, and an identify spell reveals it to be such. The first time you use this weapon to kill a creature that has an Intelligence score of 5 or higher, you begin having nightmares and disturbing visions that disrupt your rest. Each time you complete a long rest, you must make a Wisdom saving throw. The DC equals 10 + the total number of creatures with Intelligence 5 or higher that you've reduced to 0 hit points with this weapon. On a failure, you gain no benefits from that long rest, and you gain one level of exhaustion.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blue-rose", - "fields": { - "name": "Blue Rose", - "desc": "The petals of this cerulean flower can be prepared into a compote and consumed. A single flower can make 3 doses. When you consume a dose, your Intelligence, Wisdom, and Charisma scores are reduced by 1 each. This reduction lasts until you finish a long rest. You can consume up to three doses as part of casting a spell, and you can choose to affect your spell with one of the following options for each dose you consumed: - If the spell is of the abjuration school, increase the save DC by 2.\n- If the spell has more powerful effects when cast at a higher level, treat the spell's effects as if you had cast the spell at one slot level higher than the spell slot you used.\n- The spell is affected by one of the following metamagic options, even if you aren't a sorcerer: heightened, quickened, or subtle. A spell can't be affected by the same option more than once, though you can affect one spell with up to three different options. If you consume one or more doses without casting a spell, you can choose to instead affect a spell you cast before you finish a long rest. In addition, consuming blue rose gives you some protection against spells. When a spellcaster you can see casts a spell, you can use your reaction to cause one of the following:\n- You have advantage on the saving throw against the spell if it is a spell of the abjuration school.\n- If the spell is counterspell or dispel magic, the DC increases by 2 to interrupt your spellcasting or to end a magic effect on you. You can use this reaction a number of times equal to the number of doses you consumed. At the end of each long rest, you must make a DC 13 Constitution saving throw. On a failed save, your Hit Dice maximum is reduced by 25 percent. This reduction affects only the number of Hit Dice you can use to regain hit points during a short rest; it doesn't reduce your hit point maximum. This reduction lasts until you recover from the addiction. If you have no remaining Hit Dice to lose, you suffer one level of exhaustion, and your Hit Dice are returned to 75 percent of your maximum Hit Dice. The process then repeats until you die from exhaustion or you recover from the addiction. On a successful save, your exhaustion level decreases by one level. If a successful saving throw reduces your level of exhaustion below 1, you recover from the addiction. A greater restoration spell or similar magic ends the addiction and its effects. Consuming at least one dose of blue rose again halts the effects of the addiction for 2 days, at which point you can consume another dose of blue rose to halt it again or the effects of the addiction continue as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_blue-willow-cloak", - "fields": { - "name": "Blue Willow Cloak", - "desc": "This light cloak of fey silk is waterproof. While wearing this cloak in the rain, you can use your action to pull up the hood and become invisible for up to 1 hour. The effect ends early if you attack or cast a spell, if you use an action to pull down the hood, or if the rain stops. The cloak can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bone-skeleton-key", - "fields": { - "name": "Bone Skeleton Key", - "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bone-whip", - "fields": { - "name": "Bone Whip", - "desc": "This whip is constructed of humanoid vertebrae with their edges magically sharpened and pointed. The bones are joined together into a coiled line by strands of steel wire. The handle is half a femur wrapped in soft leather of tanned humanoid skin. You gain a +1 bonus to attack and damage rolls with this weapon. You can use an action to cause fiendish energy to coat the whip. For 1 minute, you gain 5 temporary hit points the first time you hit a creature on each turn. In addition, when you deal damage to a creature with this weapon, the creature must succeed on a DC 17 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage dealt. This reduction lasts until the creature finishes a long rest. Once used, this property of the whip can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bonebreaker-mace", - "fields": { - "name": "Bonebreaker Mace", - "desc": "You gain a +1 bonus on attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use it to attack an undead creature. Often given to the grim enforcers of great necropolises, these weapons can reduce the walking dead to splinters with a single strike. When you hit an undead creature with this magic weapon, treat that creature as if it is vulnerable to bludgeoning damage. If it is already vulnerable to bludgeoning damage, your attack deals an additional 1d6 radiant damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_book-of-ebon-tides", - "fields": { - "name": "Book of Ebon Tides", - "desc": "This strange, twilight-hued tome was written on pages of pure shadow weave, bound in traditional birch board covers wrapped with shadow goblin hide, and imbued with the memories of forests on the Plane of Shadow. Its covers often reflect light as if it were resting in a forest grove, and some owners swear that a goblin face appears on them now and again. The sturdy lock on one side opens only for wizards, elves, and Shadow Fey (see Tome of Beasts). The book has 15 charges, and it regains 2d6 + 3 expended charges daily in the twilight before dawn. If you expend the last charge, roll a 1d20. On a 1, the book retains its Ebon Tides and Shadow Lore properties but loses its Spells property. When the magic ritual completes, make an Intelligence (Arcana) check and consult the Terrain Changes table for the appropriate DCs. You can change the terrain in any one way listed at your result or lower. For example, if your result was 17, you could turn a small forest up to 30 feet across into a grassland, create a grove of trees up to 240 feet across, create a 6-foot-wide flowing stream, overgrow 1,500 feet of an existing road, or other similar option. Only natural terrain you can see can be affected; built structures, such as homes or castles, remain untouched, though roads and trails can be overgrown or hidden. On a failure, the terrain is unchanged. On a 1, an Overshadow (see Tome of Beasts 2) also appears and attacks you. On a 20, you can choose two options. Deities, Fey Lords and Ladies (see Tome of Beasts), archdevils, demon lords, and other powerful rulers in the Plane of Shadow can prevent these terrain modifications from happening in their presence or anywhere within their respective domains. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness, illusion, or shadows, such as invisibility or major image. | DC | Effect |\n| --- | --------------------------------------------------------------------------------------------------- |\n| 8 | Obscuring a path and removing all signs of passage (30 feet per point over 7) |\n| 10 | Creating a grove of trees (30 feet across per point over 9) |\n| 11 | Creating or drying up a lake or pond (up to 10 feet across per point over 10) |\n| 12 | Creating a flowing stream (1 foot wide per point over 11) |\n| 13 | Overgrowing an existing road with brush or trees (300 feet per point over 12) |\n| 14 | Shifting a river to a new course (300 feet per point over 13) |\n| 15 | Moving a forest (300 feet per point over 14) |\n| 16 | Creating a small hill, riverbank, or cliff (10 feet tall per point over 15) |\n| 17 | Turning a small forest into grassland or clearing, or vice versa (30 feet across per point over 16) |\n| 18 | Creating a new river (10 feet wide per point over 17) |\n| 19 | Turning a large forest into grassland, or vice versa (300 feet across per point over 19) |\n| 20 | Creating a new mountain (1,000 feet high per point over 19) |\n| 21 | Drying up an existing river (reducing width by 10 feet per point over 20) |\n| 22 | Shrinking an existing hill or mountain (reducing 1,000 feet per point over 21) | Written by an elvish princess at the Court of Silver Words, this volume encodes her understanding and mastery of shadow. Whimsical illusions suffuse every page, animating its illuminated capital letters and ornamental figures. The book is a famous work among the sable elves of that plane, and it opens to the touch of any elfmarked or sable elf character.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_book-of-eibon", - "fields": { - "name": "Book of Eibon", - "desc": "This fragmentary black book is reputed to descend from the realms of Hyperborea. It contains puzzling guidelines for frightful necromantic rituals and maddening interdimensional travel. The book holds the following spells: semblance of dread*, ectoplasm*, animate dead, speak with dead, emanation of Yoth*, green decay*, yellow sign*, eldritch communion*, create undead, gate, harm, astral projection, and Void rift*. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, the book can contain other spells similarly related to necromancy, madness, or interdimensional travel. If you are attuned to this book, you can use it as a spellbook and as an arcane focus. In addition, while holding the book, you can use a bonus action to cast a necromancy spell that is written in this tome without expending a spell slot or using any verbal or somatic components. Once used, this property of the book can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_book-shroud", - "fields": { - "name": "Book Shroud", - "desc": "When not bound to a book, this red leather book cover is embossed with images of eyes on every inch of its surface. When you wrap this cover around a tome, it shifts the book's appearance to a plain red cover with a title of your choosing and blank pages on which you can write. When viewing the wrapped book, other creatures see the plain red version with any contents you've written. A creature succeeding on a DC 15 Wisdom (Perception) check sees the real book and can remove the shroud.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bookkeeper-inkpot", - "fields": { - "name": "Bookkeeper Inkpot", - "desc": "This glass vessel looks like an ordinary inkpot. A quill fashioned from an ostrich feather accompanies the inkpot. You can use an action to speak the inkpot's command word, targeting a Bookkeeper (see Creature Codex) that you can see within 10 feet of you. An unwilling bookkeeper must succeed on a DC 13 Charisma saving throw or be transferred to the inkpot, making you the bookkeeper's new “creator.” While the bookkeeper is contained within the inkpot, it suffers no harm due to being away from its bound book, but it can't use any of its actions or traits that apply to it being in a bound book. Dipping the quill in the inkpot and writing in a book binds the bookkeeper to the new book. If the inkpot is found as treasure, there is a 50 percent chance it contains a bookkeeper. An identify spell reveals if a bookkeeper is inside the inkpot before using the inkpot's ink.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bookmark-of-eldritch-insight", - "fields": { - "name": "Bookmark of Eldritch Insight", - "desc": "This cloth bookmark is inscribed with blurred runes that are hard to decipher. If you use this bookmark while researching ancient evils (such as arch-devils or demon lords) or otherworldly mysteries (such as the Void or the Great Old Ones) during a long rest, the bookmark crumbles to dust and grants you its knowledge. You double your proficiency bonus on Arcana, History, and Religion checks to recall lore about the subject of your research for the next 24 hours. If you don't have proficiency in these skills, you instead gain proficiency in them for the next 24 hours, but you are proficient only when recalling information about the subject of your research.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_boots-of-pouncing", - "fields": { - "name": "Boots of Pouncing", - "desc": "These soft leather boots have a collar made of Albino Death Weasel fur (see Creature Codex). While you wear these boots, your walking speed becomes 40 feet, unless your walking speed is higher. Your speed is still reduced if you are encumbered or wearing heavy armor. If you move at least 20 feet straight toward a creature and hit it with a melee weapon attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone. If the target is prone, you can make one melee weapon attack against it as a bonus action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_boots-of-quaking", - "fields": { - "name": "Boots of Quaking", - "desc": "While wearing these steel-toed boots, the earth itself shakes when you walk, causing harmless, but unsettling, tremors. If you move at least 15 feet in a single turn, all creatures within 10 feet of you at any point during your movement must make a DC 16 Strength saving throw or take 1d6 force damage and fall prone. In addition, while wearing these boots, you can cast earthquake, requiring no concentration, by speaking a command word and jumping on a point on the ground. The spell is centered on that point. Once you cast earthquake in this way, you can't do so again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_boots-of-solid-footing", - "fields": { - "name": "Boots of Solid Footing", - "desc": "A thick, rubbery sole covers the bottoms and sides of these stout leather boots. They are useful for maneuvering in cluttered alleyways, slick sewers, and the occasional patch of ice or gravel. While you wear these boots, you can use a bonus action to speak the command word. If you do, nonmagical difficult terrain doesn't cost you extra movement when you walk across it wearing these boots. If you speak the command word again as a bonus action, you end the effect. When the boots' property has been used for a total of 1 minute, the magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_boots-of-the-grandmother", - "fields": { - "name": "Boots of the Grandmother", - "desc": "While wearing these boots, you have proficiency in the Stealth skill if you don't already have it, and you double your proficiency bonus on Dexterity (Stealth) checks. As an action, you can drip three drops of fresh blood onto the boots to ease your passage through the world. For 1d6 hours, you and your allies within 30 feet of you ignore difficult terrain. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_boots-of-the-swift-striker", - "fields": { - "name": "Boots of the Swift Striker", - "desc": "While you wear these boots, your walking speed increases by 10 feet. In addition, when you take the Dash action while wearing these boots, you can make a single weapon attack at the end of your movement. You can't continue moving after making this attack.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bottled-boat", - "fields": { - "name": "Bottled Boat", - "desc": "This clear glass bottle contains a tiny replica of a wooden rowboat down to the smallest detail, including two stout oars, a miniature coil of hemp rope, a fishing net, and a small cask. You can use an action to break the bottle, destroying the bottle and releasing its contents. The rowboat and all of the items emerge as full-sized, normal, and permanent items of their type, which includes 50 feet of hempen rope, a cask containing 20 gallons of fresh water, two oars, and a 12-foot-long rowboat.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bountiful-cauldron", - "fields": { - "name": "Bountiful Cauldron", - "desc": "If this small, copper cauldron is filled with water and a half pound of meat, vegetables, or other foodstuffs then placed over a fire, it produces a simple, but hearty stew that provides one creature with enough nourishment to sustain it for one day. As long as the food is kept within the cauldron with the lid on, the food remains fresh and edible for up to 24 hours, though it grows cold unless reheated.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_box-of-secrets", - "fields": { - "name": "Box of Secrets", - "desc": "This well-made, cubical box appears to be a normal container that can hold as much as a normal chest. However, each side of the chest is a lid that can be opened on cunningly concealed hinges. A successful DC 15 Wisdom (Perception) check notices that the sides can be opened. When you use an action to turn the box so a new side is facing up, and speak the command word before opening the lid, the current contents of the chest slip into an interdimensional space, leaving it empty once more. You can use an action to fill the box again, then turn it over to a new side and open it, again sending the contents to the interdimensional space. This can be done up to six times, once for each side of the box. To gain access to a particular batch of contents, the correct side must be facing up, and you must use an action to speak the command word as you open the lid on that side. A box of secrets is often crafted with specific means of telling the sides apart, such as unique carvings on each side, or having each side painted a different color. If any side of the box is destroyed completely, the contents that were stored through that side are lost. Likewise, if the entire box is destroyed, the contents are lost forever.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bracelet-of-the-fire-tender", - "fields": { - "name": "Bracelet of the Fire Tender", - "desc": "This bracelet is made of thirteen small, roasted pinecones lashed together with lengths of dried sinew. It smells of pine and woodsmoke. It is uncomfortable to wear over bare skin. While wearing this bracelet, you don't have disadvantage on Wisdom (Perception) checks that rely on sight when looking in areas lightly obscured by nonmagical smoke or fog.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_braid-whip-clasp", - "fields": { - "name": "Braid Whip Clasp", - "desc": "This intricately carved ivory clasp can be wrapped around or woven into braided hair 3 feet or longer. While the clasp is attached to your braided hair, you can speak its command word as a bonus action and transform your braid into a dangerous whip. If you speak the command word again, you end the effect. You gain a +1 bonus to attack and damage rolls made with this magic whip. When the clasp's property has been used for a total of 10 minutes, you can't use it to transform your braid into a whip again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_brain-juice", - "fields": { - "name": "Brain Juice", - "desc": "This foul-smelling, murky, purple-gray liquid is created from the liquefied brains of spellcasting creatures, such as aboleths. Anyone consuming this repulsive mixture must make a DC 15 Intelligence saving throw. On a successful save, the drinker is infused with magical power and regains 1d6 + 4 expended spell slots. On a failed save, the drinker is afflicted with short-term madness for 1 day. If a creature consumes multiple doses of brain juice and fails three consecutive Intelligence saving throws, it is afflicted with long-term madness permanently and automatically fails all further saving throws brought about by drinking brain juice.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_brass-clockwork-staff", - "fields": { - "name": "Brass Clockwork Staff", - "desc": "This curved staff is made of coiled brass and glass wire. You can use an action to speak one of three command words and throw the staff on the ground within 10 feet of you. The staff transforms into one of three wireframe creatures, depending on the command word: a unicorn, a hound, or a swarm of tiny beetles. The wireframe creature or swarm is under your control and acts on its own initiative count. On your turn, you can mentally command the wireframe creature or swarm if it is within 60 feet of you and you aren't incapacitated. You decide what action the creature takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location. The wireframe unicorn lasts for up to 1 hour, uses the statistics of a warhorse, and can be used as a mount. The wireframe hound lasts for up to 5 minutes, uses the statistics of a dire wolf, and has advantage to track any creature you damaged within the past hour. The wireframe beetle swarm lasts for up to 1 minute, uses the statistics of a swarm of beetles, and can destroy nonmagical objects that aren't being worn or carried and that aren't made of stone or metal (destruction happens at a rate of 1 pound of material per round, up to a maximum of 10 pounds). At the end of the duration, the wireframe creature or swarm reverts to its staff form. It reverts to its staff form early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. If it reverts to its staff form early by being reduced to 0 hit points, the staff becomes inert and unusable until the third dawn after the creature was killed. Otherwise, the wireframe creature or swarm has all of its hit points when you transform the staff into the creature again. When a wireframe creature or swarm becomes the staff again, this property of the staff can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_brass-snake-ball", - "fields": { - "name": "Brass Snake Ball", - "desc": "Most commonly used by assassins to strangle sleeping victims, this heavy, brass ball is 6 inches across and weighs approximately 15 pounds. It has the image of a coiled snake embossed around it. You can use an action to command the orb to uncoil into a brass snake approximately 6 feet long and 3 inches thick. You can direct it by telepathic command to attack any creature within your line of sight. Use the statistics for the constrictor snake, but use Armor Class 14 and increase the challenge rating to 1/2 (100 XP). The snake can stay animate for up to 5 minutes or until reduced to 0 hit points. Being reduced to 0 hit points causes the snake to revert to orb form and become inert for 1 week. If damaged but not reduced to 0 hit points, the snake has full hit points when summoned again. Once you have used the orb to become a snake, it can't be used again until the next sunset.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_brawlers-leather", - "fields": { - "name": "Brawler's Leather", - "desc": "These rawhide straps have lines of crimson runes running along their length. They require 10 minutes of bathing them in salt water before carefully wrapping them around your forearms. Once fitted, you gain a +1 bonus to attack and damage rolls made with unarmed strikes. The straps become brittle with use. After you have dealt damage with unarmed strike attacks 10 times, the straps crumble away.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_brawn-armor", - "fields": { - "name": "Brawn Armor", - "desc": "This armor was crafted from the hide of an ancient grizzly bear. While wearing it, you gain a +1 bonus to AC, and you have advantage on grapple checks. The armor has 3 charges. You can use a bonus action to expend 1 charge to deal your unarmed strike damage to a creature you are grappling. The armor regains all expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_brazen-band", - "fields": { - "name": "Brazen Band", - "desc": "Made by kobold clockwork mages, this brass clockwork ring is formed to look like a coiled dragon. When you speak or whisper the Draconic command word etched on the inside of the ring, the brass dragon uncoils and attempts to pick any lock within 10 feet of you. The dragon picks the lock using your proficiency bonus but with advantage. It is treated as having thieves' tools when attempting to pick locks. It uses your Dexterity (Stealth) bonus for purposes of not being spotted but with advantage due to its extremely small size. Whether successful or not, once you have used the ring to attempt to pick a lock, it can't be used again until the next sunset.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_brazen-bulwark", - "fields": { - "name": "Brazen Bulwark", - "desc": "This rectangular shield is plated with polished brass and resembles a crenelated tower. While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_breaker-lance", - "fields": { - "name": "Breaker Lance", - "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. When you attack an object or structure with this magic lance and hit, maximize your weapon damage dice against the target. The lance has 3 charges. As part of an attack action with the lance, you can expend a charge while striking a barrier created by a spell, such as a wall of fire or wall of force, or an entryway protected by the arcane lock spell. You must make a Strength check against a DC equal to 10 + the spell's level. On a successful check, the spell ends. The lance regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_breastplate-of-warding-1", - "fields": { - "name": "Breastplate of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_breastplate-of-warding-2", - "fields": { - "name": "Breastplate of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_breastplate-of-warding-3", - "fields": { - "name": "Breastplate of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_breathing-reed", - "fields": { - "name": "Breathing Reed", - "desc": "This tiny river reed segment is cool to the touch. If you chew the reed while underwater, it provides you with enough air to breathe for up to 10 minutes. At the end of the duration, the reed loses its magic and can be harmlessly swallowed or spit out.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_briarthorn-bracers", - "fields": { - "name": "Briarthorn Bracers", - "desc": "These leather bracers are inscribed with Elvish runes. While wearing these bracers, you gain a +1 bonus to AC if you are using no shield. In addition, while in a forest, nonmagical difficult terrain costs you no extra movement.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_broken-fang-talisman", - "fields": { - "name": "Broken Fang Talisman", - "desc": "This talisman is a piece of burnished copper, shaped into a curved fang with a large crack through the middle. While wearing the talisman, you can use an action to cast the encrypt / decrypt (see Deep Magic for 5th Edition) spell. The talisman can't be used this way again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_broom-of-sweeping", - "fields": { - "name": "Broom of Sweeping", - "desc": "You can use an action to speak the broom's command word and give it short instructions consisting of a few words, such as “sweep the floor” or “dust the cabinets.” The broom can clean up to 5 cubic feet each minute and continues cleaning until you use another action to deactivate it. The broom can't climb barriers higher than 5 feet and can't open doors.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_brotherhood-of-fezzes", - "fields": { - "name": "Brotherhood of Fezzes", - "desc": "This trio of fezzes works only if all three hats are worn within 60 feet of each other by creatures of the same size. If one of the hats is removed or moves further than 60 feet from the others or if creatures of different sizes are wearing the hats, the hats' magic temporarily ceases. While three creatures of the same size wear these fezzes within 60 feet of each other, each creature can use its action to cast the alter self spell from it at will. However, all three wearers of the fezzes are affected as if the same spell was simultaneously cast on each of them, making each wearer appear identical to the other. For example, if one Medium wearer uses an action to change its appearance to that of a specific elf, each other wearer's appearance changes to look like the exact same elf.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_brown-honey-buckle", - "fields": { - "name": "Brown Honey Buckle", - "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bubbling-retort", - "fields": { - "name": "Bubbling Retort", - "desc": "This long, thin retort is fashioned from smoky yellow glass and is topped with an intricately carved brass stopper. You can unstopper the retort and fill it with liquid as an action. Once you do so, it spews out multicolored bubbles in a 20-foot radius. The bubbles last for 1d4 + 1 rounds. While they last, creatures within the radius are blinded and the area is heavily obscured to all creatures except those with tremorsense. The liquid in the retort is destroyed in the process with no harmful effect on its surroundings. If any bubbles are popped, they burst with a wet smacking sound but no other effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_buckle-of-blasting", - "fields": { - "name": "Buckle of Blasting", - "desc": "This soot-colored steel buckle has an exploding flame etched into its surface. It can be affixed to any common belt. While wearing this buckle, you have resistance to force damage. In addition, the buckle has 5 charges, and it regains 1d4 + 1 charges daily at dawn. It has the following properties.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_bullseye-arrow", - "fields": { - "name": "Bullseye Arrow", - "desc": "This arrow has bright red fletching and a blunt, red tip. You gain a +1 bonus to attack rolls made with this magic arrow. On a hit, the arrow deals no damage, but it paints a magical red dot on the target for 1 minute. While the dot lasts, the target takes an extra 1d4 damage of the weapon's type from any ranged attack that hits it. In addition, ranged weapon attacks against the target score a critical hit on a roll of 19 or 20. When this arrow hits a target, the arrow vanishes in a flash of red light and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_burglars-lock-and-key", - "fields": { - "name": "Burglar's Lock and Key", - "desc": "This heavy iron lock bears a stout, pitted key permanently fixed in the keyhole. As an action, you can twist the key counterclockwise to instantly open one door, chest, bag, bottle, or container of your choice within 30 feet. Any container or portal weighing more than 30 pounds or restrained in any way (latched, bolted, tied, or the like) automatically resists this effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_burning-skull", - "fields": { - "name": "Burning Skull", - "desc": "This appallingly misshapen skull—though alien and monstrous in aspect—is undeniably human, and it is large and hollow enough to be worn as a helm by any Medium humanoid. The skull helm radiates an unholy spectral aura, which sheds dim light in a 10-foot radius. According to legends, gazing upon a burning skull freezes the blood and withers the brain of one who understands not its mystery.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_butter-of-disbelief", - "fields": { - "name": "Butter of Disbelief", - "desc": "This stick of magical butter is carved with arcane runes and never melts or spoils. It has 3 charges. While holding this butter, you can use an action to slice off a piece and expend 1 charge to cast the grease spell (save DC 13) from it. The grease that covers the ground looks like melted butter. The butter regains all expended charges daily at dawn. If you expend the last charge, the butter disappears.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_buzzing-battleaxe", - "fields": { - "name": "Buzzing Battleaxe", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_buzzing-greataxe", - "fields": { - "name": "Buzzing Greataxe", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_buzzing-greatsword", - "fields": { - "name": "Buzzing Greatsword", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_buzzing-handaxe", - "fields": { - "name": "Buzzing Handaxe", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_buzzing-longsword", - "fields": { - "name": "Buzzing Longsword", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_buzzing-rapier", - "fields": { - "name": "Buzzing Rapier", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_buzzing-scimitar", - "fields": { - "name": "Buzzing Scimitar", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_buzzing-shortsword", - "fields": { - "name": "Buzzing Shortsword", - "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_candied-axe", - "fields": { - "name": "Candied Axe", - "desc": "This battleaxe bears a golden head spun from crystalized honey. Its wooden handle is carved with reliefs of bees. You gain a +2 bonus to attack and damage rolls made with this magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_candle-of-communion", - "fields": { - "name": "Candle of Communion", - "desc": "This black candle burns with an eerie, violet flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on necromancy spells. After burning for 1 hour, or if the candle's flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the speak with dead spell with it. Doing so destroys the candle.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_candle-of-summoning", - "fields": { - "name": "Candle of Summoning", - "desc": "This black candle burns with an eerie, green flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on conjuration spells. After burning for 1 hour, or if the flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the spirit guardians spell (save DC 15) with it. Doing so destroys the candle.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_candle-of-visions", - "fields": { - "name": "Candle of Visions", - "desc": "This black candle burns with an eerie, blue flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on divination spells. After burning for 1 hour, or if the flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the augury spell with it, which reveals its otherworldly omen in the candle's smoke. Doing so destroys the candle.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cap-of-thorns", - "fields": { - "name": "Cap of Thorns", - "desc": "Donning this thorny wooden circlet causes it to meld with your scalp. It can be removed only upon your death or by a remove curse spell. The cap ingests some of your blood, dealing 2d4 piercing damage. After this first feeding, the thorns feed once per day for 1d4 piercing damage. Once per day, you can sacrifice 1 hit point per level you possess to cast a special entangle spell made of thorny vines. Charisma is your spellcasting ability for this effect. Restrained creatures must make a successful Charisma saving throw or be affected by a charm person spell as thorns pierce their body. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target fails three consecutive saves, the thorns become deeply rooted and the charmed effect is permanent until remove curse or similar magic is cast on the target.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cape-of-targeting", - "fields": { - "name": "Cape of Targeting", - "desc": "You gain a +1 bonus to AC while wearing this long, flowing cloak. Whenever you are within 10 feet of more than two creatures, it subtly and slowly shifts its color to whatever the creatures nearest you find the most irritating. While within 5 feet of a hostile creature, you can use a bonus action to speak the cloak's command word to activate it, allowing your allies' ranged attacks to pass right through you. For 1 minute, each friendly creature that makes a ranged attack against a hostile creature within 5 feet of you has advantage on the attack roll. Each round the cloak is active, it enthusiastically and telepathically says “shoot me!” in different tones and cadences into the minds of each friendly creature that can see you and the cloak. The cloak can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_captains-flag", - "fields": { - "name": "Captain's Flag", - "desc": "This red and white flag adorned with a white anchor is made of velvet that never seems to fray in strong wings. When mounted and flown on a ship, the flag changes to the colors and symbol of the ship's captain and crew. While this flag is mounted on a ship, the captain and its allies have advantage on saving throws against being charmed or frightened. In addition, when the captain is reduced to 0 hit points while on the ship where this flag flies, each ally of the captain has advantage on its attack rolls until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_captains-goggles", - "fields": { - "name": "Captain's Goggles", - "desc": "These copper and glass goggles are prized by air and sea captains across the world. The goggles are designed to repel water and never fog. After attuning to the goggles, your name (or preferred moniker) appears on the side of the goggles. While wearing the goggles, you can't suffer from exhaustion.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_case-of-preservation", - "fields": { - "name": "Case of Preservation", - "desc": "This item appears to be a standard map or scroll case fashioned of well-oiled leather. You can store up to ten rolled-up sheets of paper or five rolled-up sheets of parchment in this container. While ensconced in the case, the contents are protected from damage caused by fire, exposure to water, age, or vermin.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cataloguing-book", - "fields": { - "name": "Cataloguing Book", - "desc": "This nondescript book contains statistics and details on various objects. Libraries often use these tomes to assist visitors in finding the knowledge contained within their stacks. You can use an action to touch the book to an object you wish to catalogue. The book inscribes the object's name, provided by you, on one of its pages and sketches a rough illustration to accompany the object's name. If the object is a magic item or otherwise magic-imbued, the book also inscribes the object's properties. The book becomes magically connected to the object, and its pages denote the object's current location, provided the object is not protected by nondetection or other magic that thwarts divination magic. When you attune to this book, its previously catalogued contents disappear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_catalyst-oil", - "fields": { - "name": "Catalyst Oil", - "desc": "This special elemental compound draws on nearby energy sources. Catalyst oils are tailored to one specific damage type (not including bludgeoning, piercing, or slashing damage) and have one dose. Whenever a spell or effect of this type goes off within 60 feet of a dose of catalyst oil, the oil catalyzes and becomes the spell's new point of origin. If the spell affects a single target, its original point of origin becomes the new target. If the spell's area is directional (such as a cone or a cube) you determine the spell's new direction. This redirected spell is easier to evade. Targets have advantage on saving throws against the spell, and the caster has disadvantage on the spell attack roll.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_celestial-charter", - "fields": { - "name": "Celestial Charter", - "desc": "Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the celestial, negotiating a service from it in exchange for a reward. The celestial is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the celestial, the truce is broken, and the creature can act normally. If the celestial refuses the offer, it is free to take any actions it wishes. Should you and the celestial reach an agreement that is satisfactory to both parties, you must sign the charter and have the celestial do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the celestial to the agreement until its service is rendered and the reward paid, at which point the scroll vanishes in a bright flash of light. A celestial typically attempts to fulfill its end of the bargain as best it can, and it is angry if you exploit any loopholes or literal interpretations to your advantage. If either party breaks the bargain, that creature immediately takes 10d6 radiant damage, and the charter is destroyed, ending the contract.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_celestial-sextant", - "fields": { - "name": "Celestial Sextant", - "desc": "The ancient elves constructed these sextants to use as navigational aids on all their seagoing vessels. The knowledge of their manufacture has been lost, and few of them remain. While attuned to the sextant, you can spend 1 minute using the sextant to determine your latitude and longitude, provided you can see the sun or stars. You can use an action steer up to four vessels that are within 1 mile of the sextant, provided their crews are willing. To do so, you must have spent at least 1 hour aboard each of the controlled vessels, performing basic sailing tasks and familiarizing yourself with the vessel.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_censer-of-dark-shadows", - "fields": { - "name": "Censer of Dark Shadows", - "desc": "This enchanted censer paints the air with magical, smoky shadow. While holding the censer, you can use an action to speak its command word, causing the censer to emit shadow in a 30-foot radius for 1 hour. Bright light and sunlight within this area is reduced to dim light, and dim light within this area is reduced to magical darkness. The shadow spreads around corners, and nonmagical light can't illuminate this shadow. The shadow emanates from the censer and moves with it. Completely enveloping the censer within another sealed object, such as a lidded pot or a leather bag, blocks the shadow. If any of this effect's area overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled. Once the censer is used to emit shadow, it can't do so again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_centaur-wrist-wraps", - "fields": { - "name": "Centaur Wrist-Wraps", - "desc": "These leather and fur wraps are imbued with centaur shamanic magic. The wraps are stained a deep amber color, and intricate motifs painted in blue seem to float above the surface of the leather. While wearing these wraps, you can call on their magic to reroll an attack made with a shortbow or longbow. You must use the new roll. Once used, the wraps must be held in wood smoke for 15 minutes before they can be used in this way again.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cephalopod-breastplate", - "fields": { - "name": "Cephalopod Breastplate", - "desc": "This bronze breastplate depicts two krakens fighting. While wearing this armor, you gain a +1 bonus to AC. You can use an action to speak the armor's command word to release a cloud of black mist (if above water) or black ink (if underwater). It billows out from you in a 20-foot-radius cloud of mist or ink. The area is heavily obscured for 1 minute, although a wind of moderate or greater speed (at least 10 miles per hour) or a significant current disperses it. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ceremonial-sacrificial-knife", - "fields": { - "name": "Ceremonial Sacrificial Knife", - "desc": "Runes dance along the blade of this keen knife. Sacrificial Knife (Common). While attuned to it, you can use this magic, rune-inscribed dagger as a spellcasting focus. Ceremonial Sacrificial Knife (Uncommon). More powerful versions of this blade also exist. While holding the greater version of this dagger, you can use it to perform a sacrificial ritual during a short rest. If you sacrifice a Tiny or Small creature, you regain one expended 1st-level spell slot. If you sacrifice a Medium or larger creature, you regain one expended 2nd-level spell slot.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chain-mail-of-warding-1", - "fields": { - "name": "Chain Mail of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chain-mail-of-warding-2", - "fields": { - "name": "Chain Mail of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chain-mail-of-warding-3", - "fields": { - "name": "Chain Mail of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chain-shirt-of-warding-1", - "fields": { - "name": "Chain Shirt of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chain-shirt-of-warding-2", - "fields": { - "name": "Chain Shirt of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chain-shirt-of-warding-3", - "fields": { - "name": "Chain Shirt of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chainbreaker-greatsword", - "fields": { - "name": "Chainbreaker Greatsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chainbreaker-longsword", - "fields": { - "name": "Chainbreaker Longsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chainbreaker-rapier", - "fields": { - "name": "Chainbreaker Rapier", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chainbreaker-scimitar", - "fields": { - "name": "Chainbreaker Scimitar", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chainbreaker-shortsword", - "fields": { - "name": "Chainbreaker Shortsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chalice-of-forbidden-ecstasies", - "fields": { - "name": "Chalice of Forbidden Ecstasies", - "desc": "The cup of this garnet chalice is carved in the likeness of a human skull. When the chalice is filled with blood, the dark red gemstone pulses with a scintillating crimson light that sheds dim light in a 5-foot radius. Each creature that drinks blood from this chalice has disadvantage on enchantment spells you cast for the next 24 hours. In addition, you can use an action to cast the suggestion spell, using your spell save DC, on a creature that has drunk blood from the chalice within the past 24 hours. You need to concentrate on this suggestion to maintain it during its duration. Once used, the suggestion power of the chalice can't be used again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chalk-of-exodus", - "fields": { - "name": "Chalk of Exodus", - "desc": "This piece of chalk glitters in the light, as if infused with particles of mica or gypsum. The chalk has 10 charges. You can use an action and expend 1 charge to draw a door on any solid surface upon which the chalk can leave a mark. You can then push open the door while picturing a real door within 10 miles of your current location. The door you picture must be one that you have passed through, in the normal fashion, once before. The chalk opens a magical portal to that other door, and you can step through the portal to appear at that other location as if you had stepped through that other door. At the destination, the target door opens, revealing a glowing portal from which you emerge. Once through, you can shut the door, dispelling the portal, or you can leave it open for up to 1 minute. While the door is open, any creature that can fit through the chalk door can traverse the portal in either direction. Each time you use the chalk, roll a 1d20. On a roll of 1, the magic malfunctions and connects you to a random door similar to the one you pictured within the same range, though it might be a door you have never seen before. The chalk becomes nonmagical when you use the last charge.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chamrosh-salve", - "fields": { - "name": "Chamrosh Salve", - "desc": "This 3-inch-diameter ceramic jar contains 1d4 + 1 doses of a syrupy mixture that smells faintly of freshly washed dog fur. The jar is a glorious gold-white, resembling the shimmering fur of a Chamrosh (see Tome of Beasts 2), the holy hound from which this salve gets its name. As an action, one dose of the ointment can be applied to the skin. The creature that receives it regains 2d8 + 1 hit points and is cured of the charmed, frightened, and poisoned conditions.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_charlatans-veneer", - "fields": { - "name": "Charlatan's Veneer", - "desc": "This silken scarf is a more powerful version of the Commoner's Veneer (see page 128). When in an area containing 12 or more humanoids, Wisdom (Perception) checks to spot you have disadvantage. You can use a bonus action to call on the power in the scarf to invoke a sense of trust in those to whom you speak. If you do so, you have advantage on the next Charisma (Persuasion) check you make against a humanoid while you are in an area containing 12 or more humanoids. In addition, while wearing the scarf, you can use modify memory on a humanoid you have successfully persuaded in the last 24 hours. The scarf can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_charm-of-restoration", - "fields": { - "name": "Charm of Restoration", - "desc": "This fist-sized ball of tightly-wound green fronds contains the bark of a magical plant with curative properties. A natural loop is formed from one of the fronds, allowing the charm to be hung from a pack, belt, or weapon pommel. As long as you carry this charm, whenever you are targeted by a spell or magical effect that restores your hit points, you regain an extra 1 hit point.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chieftains-axe", - "fields": { - "name": "Chieftain's Axe", - "desc": "Furs conceal the worn runes lining the haft of this oversized, silver-headed battleaxe. You gain a +2 bonus to attack and damage rolls made with this silvered, magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chillblain-breastplate", - "fields": { - "name": "Chillblain Breastplate", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chillblain-chain-mail", - "fields": { - "name": "Chillblain Chain Mail", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chillblain-chain-shirt", - "fields": { - "name": "Chillblain Chain Shirt", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chillblain-half-plate", - "fields": { - "name": "Chillblain Half Plate", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chillblain-plate", - "fields": { - "name": "Chillblain Plate", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chillblain-ring-mail", - "fields": { - "name": "Chillblain Ring Mail", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chillblain-scale-mail", - "fields": { - "name": "Chillblain Scale Mail", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chillblain-splint", - "fields": { - "name": "Chillblain Splint", - "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_chronomancers-pocket-clock", - "fields": { - "name": "Chronomancer's Pocket Clock", - "desc": "This golden pocketwatch has 3 charges and regains 1d3 expended charges daily at midnight. While holding it, you can use an action to wind it and expend 1 charge to cast the haste spell from it. If the pendant is destroyed (AC 14, 15 hit points) while it has 3 charges, the creature that broke it gains the effects of the time stop spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cinch-of-the-wolfmother", - "fields": { - "name": "Cinch of the Wolfmother", - "desc": "This belt is made of the treated and tanned intestines of a dire wolf, enchanted to imbue those who wear it with the ferocity and determination of the wolf. While wearing this belt, you can use an action to cast the druidcraft or speak with animals spell from it at will. In addition, you have advantage on Wisdom (Perception) checks that rely on hearing or smell. If you are reduced to 0 hit points while attuned to the belt and fail two death saving throws, you die immediately as your body violently erupts in a shower of blood, and a dire wolf emerges from your entrails. You assume control of the dire wolf, and it gains additional hit points equal to half of your maximum hit points prior to death. The belt then crumbles and is destroyed. If the wolf is targeted by a remove curse spell, then you are reborn when the wolf dies, just as the wolf was born when you died. However, if the curse remains after the wolf dies, you remain dead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_circlet-of-holly", - "fields": { - "name": "Circlet of Holly", - "desc": "While wearing this circlet, you gain the following benefits: - **Language of the Fey**. You can speak and understand Sylvan. - **Friend of the Fey.** You have advantage on ability checks to interact socially with fey creatures.\n- **Poison Sense.** You know if any food or drink you are holding contains poison.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_circlet-of-persuasion", - "fields": { - "name": "Circlet of Persuasion", - "desc": "While wearing this circlet, you have advantage on Charisma (Persuasion) checks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_clacking-teeth", - "fields": { - "name": "Clacking Teeth", - "desc": "Taken from a Fleshspurned (see Tome of Beasts 2), a toothy ghost, this bony jaw holds oversized teeth that sweat ectoplasm. The jaw has 3 charges and regains 1d3 expended charges daily at dusk. While holding the jaw, you can use an action to expend 1 of its charges and choose a target within 30 feet of you. The jaw's teeth clatter together, and the target must succeed on a DC 15 Wisdom saving throw or be confused for 1 minute. While confused, the target acts as if under the effects of the confusion spell. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_clamor-bell", - "fields": { - "name": "Clamor Bell", - "desc": "You can affix this small, brass bell to an object with the leather cords tied to its top. If anyone other than you picks up, interacts with, or uses the object without first speaking the bell's command word, it rings for 5 minutes or until you touch it and speak the command word again. The ringing is audible 100 feet away. If a creature takes an action to cut the bindings holding the bell onto the object, the bell ceases ringing 1 round after being released from the object.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_clarifying-goggles", - "fields": { - "name": "Clarifying Goggles", - "desc": "These goggles contain a lens of slightly rippled blue glass that turns clear underwater. While wearing these goggles underwater, you don't have disadvantage on Wisdom (Perception) checks that rely on sight when peering through silt, murk, or other natural underwater phenomena that would ordinarily lightly obscure your vision. While wearing these goggles above water, your vision is lightly obscured.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cleaning-concoction", - "fields": { - "name": "Cleaning Concoction", - "desc": "This fresh-smelling, clear green liquid can cover a Medium or smaller creature or object (or matched set of objects, such as a suit of clothes or pair of boots). Applying the liquid takes 1 minute. It removes soiling, stains, and residue, and it neutralizes and removes odors, unless those odors are particularly pungent, such as in skunks or creatures with the Stench trait. Once the potion has cleaned the target, it evaporates, leaving the creature or object both clean and dry.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cloak-of-coagulation", - "fields": { - "name": "Cloak of Coagulation", - "desc": "While wearing this rust red cloak, your blood quickly clots. When you are subjected to an effect that causes additional damage on subsequent rounds due to bleeding, blood loss, or continual necrotic damage, such as a horned devil's tail attack or a sword of wounding, the effect ceases after a single round of damage. For example, if a stirge hits you with its proboscis, you take the initial damage, plus the damage from blood loss on the following round, after which the wound clots, the stirge detaches, and you take no further damage. The cloak doesn't prevent a creature from using such an attack or effect again; a horned devil or a stirge can attack you again, though the cloak will continue to stop any recurring effects after a single round.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cloak-of-petals", - "fields": { - "name": "Cloak of Petals", - "desc": "This delicate cloak is covered in an array of pink, purple, and yellow flowers. While wearing this cloak, you have advantage on Dexterity (Stealth) checks made to hide in areas containing flowering plants. The cloak has 3 charges. When a creature you can see targets you with an attack, you can use your reaction to expend 1 of its charges to release a shower of petals from the cloak. If you do so, the attacker has disadvantage on the attack roll. The cloak regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cloak-of-sails", - "fields": { - "name": "Cloak of Sails", - "desc": "The interior of this simple, black cloak looks like white sailcloth. While wearing this cloak, you gain a +1 bonus to AC and saving throws. You lose this bonus while using the cloak's Sailcloth property.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cloak-of-squirrels", - "fields": { - "name": "Cloak of Squirrels", - "desc": "This wool brocade cloak features a repeating pattern of squirrel heads and tree branches. It has 3 charges and regains all expended charges daily at dawn. While wearing this cloak, you can use an action to expend 1 charge to cast the legion of rabid squirrels spell (see Deep Magic for 5th Edition) from it. You don't need to be in a forest to cast the spell from this cloak, as the squirrels come from within the cloak. When the spell ends, the swarm vanishes back inside the cloak.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cloak-of-the-bearfolk", - "fields": { - "name": "Cloak of the Bearfolk", - "desc": "While wearing this cloak, your Constitution score is 15, and you have proficiency in the Athletics skill. The cloak has no effect if you already have proficiency in this skill or if your Constitution score is already 15 or higher.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cloak-of-the-eel", - "fields": { - "name": "Cloak of the Eel", - "desc": "While wearing this rough, blue-gray leather cloak, you have a swimming speed of 40 feet. When you are hit with a melee weapon attack while wearing this cloak, you can use your reaction to generate a powerful electric charge. The attacker must succeed on a DC 13 Dexterity saving throw or take 2d6 lightning damage. The attacker has disadvantage on the saving throw if it hits you with a metal weapon. The cloak can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cloak-of-the-empire", - "fields": { - "name": "Cloak of the Empire", - "desc": "This voluminous grey cloak has bright red trim and the sigil from an unknown empire on its back. The cloak is stiff and doesn't fold as easily as normal cloth. Whenever you are struck by a ranged weapon attack, you can use a reaction to reduce the damage from that attack by your Charisma modifier (minimum of 1).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cloak-of-the-inconspicuous-rake", - "fields": { - "name": "Cloak of the Inconspicuous Rake", - "desc": "This cloak is spun from simple gray wool and closed with a plain, triangular copper clasp. While wearing this cloak, you can use a bonus action to make yourself forgettable for 5 minutes. A creature that sees you must make a DC 15 Intelligence saving throw as soon as you leave its sight. On a failure, the witness remembers seeing a person doing whatever you did, but it doesn't remember details about your appearance or mannerisms and can't accurately describe you to another. Creatures with truesight aren't affected by this cloak. The cloak can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cloak-of-the-ram", - "fields": { - "name": "Cloak of the Ram", - "desc": "While wearing this cloak, you can use an action to transform into a mountain ram (use the statistics of a giant goat). This effect works like the polymorph spell, except you retain your Intelligence, Wisdom, and Charisma scores. You can use an action to transform back into your original form. Each time you transform into a ram in a single day, you retain the hit points you had the last time you transformed. If you were reduced to 0 hit points the last time you were a ram, you can't become a ram again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cloak-of-the-rat", - "fields": { - "name": "Cloak of the Rat", - "desc": "While wearing this gray garment, you have a +5 bonus to your passive Wisdom (Perception) score.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cloak-of-wicked-wings", - "fields": { - "name": "Cloak of Wicked Wings", - "desc": "From a distance, this long, black cloak appears to be in tatters, but a closer inspection reveals that it is sewn from numerous scraps of cloth and shaped like bat wings. While wearing this cloak, you can use your action to cast polymorph on yourself, transforming into a swarm of bats. While in the form of a swarm of bats, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. If you are a druid with the Wild Shape feature, this transformation instead lasts as long as your Wild Shape lasts. The cloak can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_clockwork-gauntlet", - "fields": { - "name": "Clockwork Gauntlet", - "desc": "This metal gauntlet has a steam-powered ram built into the greaves. It has 3 charges and regains 1d3 expended charges daily at dawn. While wearing the gauntlet, you can expend 1 charge as a bonus action to force the ram in the gauntlets to slam a creature within 5 feet of you. The ram thrusts out from the gauntlet and makes its attack with a +5 bonus. On a hit, the target takes 2d8 bludgeoning damage, and it must succeed on a DC 13 Constitution saving throw or be stunned until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_clockwork-hand", - "fields": { - "name": "Clockwork Hand", - "desc": "A beautiful work of articulate brass, this prosthetic clockwork hand (or hands) can't be worn if you have both of your hands. While wearing this hand, you gain a +2 bonus to damage with melee weapon attacks made with this hand or weapons wielded in this hand.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_clockwork-hare", - "fields": { - "name": "Clockwork Hare", - "desc": "Gifted by a deity of time and clockwork, these simple-seeming trinkets portend some momentous event. The figurine resembles a hare with a clock in its belly. You can use an action to press the ears down and activate the clock, which spins chaotically. The hare emits a field of magic in a 30- foot radius from it for 1 hour. The field moves with the hare, remaining centered on it. While within the field, you and up to 5 willing creatures of your choice exist outside the normal flow of time, and all other creatures and objects are frozen in time. If an affected creature moves outside the field, the creature immediately becomes frozen in time until it is in the field again. The field ends early if an affected creature attacks, touches, alters, or has any other physical or magical impact on a creature, or an object being worn or carried by a creature, that is frozen in time. When the field ends, the figurine turns into a nonmagical, living white hare that goes bounding off into the distance, never to be seen again.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_clockwork-mace-of-divinity", - "fields": { - "name": "Clockwork Mace of Divinity", - "desc": "This clockwork mace is composed of several different metals. While attuned to this magic weapon, you have proficiency with it. As a bonus action, you can command the mace to transform into a trident. When you hit with an attack using this weapon's trident form, the target takes an extra 1d6 radiant damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_clockwork-mynah-bird", - "fields": { - "name": "Clockwork Mynah Bird", - "desc": "This mechanical brass bird is nine inches long from the tip of its beak to the end of its tail, and it can become active for up to 12 hours. Once it has been used, it can't be used again until 2 days have passed. If you use your action to speak the first command word (“listen” in Ignan), it cocks its head and listens intently to all nearby sounds with a passive Wisdom (Perception) of 17 for up to 10 minutes. When you give the second command word (“speak”), it repeats back what it heard in a metallic-sounding—though reasonably accurate—portrayal of the sounds. You can use the clockwork mynah bird to relay sounds and conversations it has heard to others. As an action, you can command the mynah to fly to a location it has previously visited within 1 mile. It waits at the location for up to 1 hour for someone to command it to speak. At the end of the hour or after it speaks its recording, it returns to you. The clockwork mynah bird has an Armor Class of 14, 5 hit points, and a flying speed of 50 feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_clockwork-pendant", - "fields": { - "name": "Clockwork Pendant", - "desc": "This pendant resembles an ornate, miniature clock and has 3 charges. While holding this pendant, you can expend 1 charge as an action to cast the blur, haste, or slow spell (save DC 15) from it. The spell's duration changes to 3 rounds, and it doesn't require concentration. You can have only one spell active at a time. If you cast another, the previous spell effect ends. It regains 1d3 expended charges daily at dawn. If the pendant is destroyed (AC 14, 15 hit points) while it has 3 charges, it creates a temporal distortion for 1d4 rounds. For the duration, each creature and object that enters or starts its turn within 10 feet of the pendant has immunity to all damage, all spells, and all other physical or magical effects but is otherwise able to move and act normally. If a creature moves further than 10 feet from the pendant, these effects end for it. At the end of the duration, the pendant crumbles to dust.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_clockwork-rogue-ring", - "fields": { - "name": "Clockwork Rogue Ring", - "desc": "Made by kobold clockwork mages, this brass clockwork ring is formed to look like a coiled dragon. When you speak or whisper the Draconic command word etched on the inside of the ring, the brass dragon uncoils and attempts to pick any lock within 10 feet of you. The dragon picks the lock using your proficiency bonus but with advantage. It is treated as having thieves' tools when attempting to pick locks. It uses your Dexterity (Stealth) bonus for purposes of not being spotted but with advantage due to its extremely small size. Whether successful or not, once you have used the ring to attempt to pick a lock, it can't be used again until the next sunset.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_clockwork-spider-cloak", - "fields": { - "name": "Clockwork Spider Cloak", - "desc": "This hooded cloak is made from black spider silk and has thin brass ribbing stitched on the inside. It has 3 charges. While wearing the cloak, you gain a +2 bonus on Dexterity (Stealth) checks. As an action, you can expend 1 charge to animate the brass ribs into articulated spider legs 1 inch thick and 6 feet long for 1 minute. You can use the charges in succession. The spider legs allow you to climb at your normal walking speed, and you double your proficiency bonus and gain advantage on any Strength (Athletics) checks made for slippery or difficult surfaces. The cloak regains 1d3 charges each day at sunset.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_coffer-of-memory", - "fields": { - "name": "Coffer of Memory", - "desc": "This small golden box resembles a jewelry box and is easily mistaken for a common trinket. When attuned to the box, its owner can fill the box with mental images of important events lasting no more than 1 minute each. Any number of memories can be stored this way. These images are similar to a slide show from the bearer's point of view. On a command from its owner, the box projects a mental image of a requested memory so that whoever is holding the box at that moment can see it. If a coffer of memory is found with memories already stored inside it, a newly-attuned owner can view a randomly-selected stored memory with a successful DC 15 Charisma check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_collar-of-beast-armor", - "fields": { - "name": "Collar of Beast Armor", - "desc": "This worked leather collar has stitching in the shapes of various animals. While a beast wears this collar, its base AC becomes 13 + its Dexterity modifier. It has no effect if the beast's base AC is already 13 or higher. This collar affects only beasts, which can include a creature affected by the polymorph spell or a druid assuming a beast form using Wild Shape.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_comfy-slippers", - "fields": { - "name": "Comfy Slippers", - "desc": "While wearing the slippers, your feet feel warm and comfortable, no matter what the ambient temperature.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_commanders-helm", - "fields": { - "name": "Commander's Helm", - "desc": "This helmet sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The type of light given off by the helm depends on the aesthetic desired by its creator. Some are surrounded in a wreath of hellish (though illusory) flames, while others give off a soft, warm halo of white or golden light. You can use an action to start or stop the light. While wearing the helm, you can use an action to make your voice loud enough to be heard clearly by anyone within 300 feet of you until the end of your next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_commanders-plate", - "fields": { - "name": "Commander's Plate", - "desc": "This armor is typically emblazoned or decorated with imagery of lions, bears, griffons, eagles, or other symbols of bravery and courage. While wearing this armor, your voice can be clearly heard by all friendly creatures within 300 feet of you if you so choose. Your voice doesn't carry in areas where sound is prevented, such as in the area of the silence spell. Each friendly creature that can see or hear you has advantage on saving throws against being frightened. You can use a bonus action to rally a friendly creature that can see or hear you. The target gains a +1 bonus to attack or damage rolls on its next turn. Once you have rallied a creature, you can't rally that creature again until it finishes a long rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_commanders-visage", - "fields": { - "name": "Commander's Visage", - "desc": "This golden mask resembles a stern face, glowering at the world. While wearing this mask, you have advantage on saving throws against being frightened. The mask has 7 charges for the following properties, and it regains 1d6 + 1 expended charges daily at midnight.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_commoners-veneer", - "fields": { - "name": "Commoner's Veneer", - "desc": "When you wear this simple, homespun scarf around your neck or head, it casts a minor glamer over you that makes you blend in with the people around you, avoiding notice. When in an area containing 25 or more humanoids, such as a city street, market place, or other public locale, Wisdom (Perception) checks to spot you amid the crowd have disadvantage. This item's power only works for creatures of the humanoid type or those using magic to take on a humanoid form.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_communal-flute", - "fields": { - "name": "Communal Flute", - "desc": "This flute is carved with skulls and can be used as a spellcasting focus. If you spend 10 minutes playing the flute over a dead creature, you can cast the speak with dead spell from the flute. The flute can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_companions-broth", - "fields": { - "name": "Companion's Broth", - "desc": "Developed by wizards with an interest in the culinary arts, this simple broth mends the wounds of companion animals and familiars. When a beast or familiar consumes this broth, it regains 2d4 + 2 hit points. Alternatively, you can mix a flower petal into the broth, and the beast or familiar gains 2d4 temporary hit points for 8 hours instead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_constant-dagger", - "fields": { - "name": "Constant Dagger", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon, the target loses its resistance to bludgeoning, piercing, and slashing damage until the start of your next turn. If it has immunity to bludgeoning, piercing, and slashing damage, its immunity instead becomes resistance to such damage until the start of your next turn. If the creature doesn't have resistance or immunity to such damage, you roll your damage dice three times, instead of twice.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_consuming-rod", - "fields": { - "name": "Consuming Rod", - "desc": "This bone mace is crafted from a humanoid femur. One end is carved to resemble a ghoulish face, its mouth open wide and full of sharp fangs. The mace has 8 charges, and it recovers 1d6 + 2 charges daily at dawn. You gain a +1 bonus to attack and damage rolls made with this magic mace. When it hits a creature, the mace's mouth stretches gruesomely wide and bites the target, adding 3 (1d6) piercing damage to the attack. As a reaction, you can expend 1 charge to regain hit points equal to the piercing damage dealt. Alternatively, you can use your reaction to expend 5 charges when you hit a Medium or smaller creature and force the mace to swallow the target. The target must succeed on a DC 15 Dexterity saving throw or be swallowed into an extra-dimensional space within the mace. While swallowed, the target is blinded and restrained, and it has total cover against attacks and other effects outside the mace. The target can still breathe. As an action, you can force the mace to regurgitate the creature, which falls prone in a space within 5 feet of the mace. The mace automatically regurgitates a trapped creature at dawn when it regains charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_copper-skeleton-key", - "fields": { - "name": "Copper Skeleton Key", - "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_coral-of-enchanted-colors", - "fields": { - "name": "Coral of Enchanted Colors", - "desc": "This piece of dead, white brain coral glistens with a myriad of colors when placed underwater. While holding this coral underwater, you can use an action to cause a beam of colored light to streak from the coral toward a creature you can see within 60 feet of you. The target must make a DC 17 Constitution saving throw. The beam's color determines its effects, as described below. Each color can be used only once. The coral regains the use of all of its colors at the next dawn if it is immersed in water for at least 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cordial-of-understanding", - "fields": { - "name": "Cordial of Understanding", - "desc": "When you drink this tangy, violet liquid, your mind opens to new forms of communication. For 1 hour, if you spend 1 minute listening to creatures speaking a particular language, you gain the ability to communicate in that language for the duration. This potion's magic can also apply to non-verbal languages, such as a hand signal-based or dance-based language, so long as you spend 1 minute watching it being used and have the appropriate anatomy and limbs to communicate in the language.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_corpsehunters-medallion", - "fields": { - "name": "Corpsehunter's Medallion", - "desc": "This amulet is made from the skulls of grave rats or from scrimshawed bones of the ignoble dead. While wearing it, you have resistance to necrotic damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_countermelody-crystals", - "fields": { - "name": "Countermelody Crystals", - "desc": "This golden bracelet is set with ten glistening crystal bangles that tinkle when they strike one another. When you must make a saving throw against being charmed or frightened, the crystals vibrate, creating an eerie melody, and you have advantage on the saving throw. If you fail the saving throw, you can choose to succeed instead by forcing one of the crystals to shatter. Once all ten crystals have shattered, the bracelet loses its magic and crumbles to powder.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_courtesans-allure", - "fields": { - "name": "Courtesan's Allure", - "desc": "This perfume has a sweet, floral scent and captivates those with high social standing. The perfume can cover one Medium or smaller creature, and applying it takes 1 minute. For 1 hour, the affected creature gains a +5 bonus to Charisma checks made to socially interact with or influence nobles, politicians, or other individuals with high social standing.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_crab-gloves", - "fields": { - "name": "Crab Gloves", - "desc": "These gloves are shaped like crab claws but fit easily over your hands. While wearing these gloves, you can take the Attack action to make two melee weapon attacks with the claws. You are proficient with the claws. Each claw has a reach of 5 feet and deals bludgeoning damage equal to 1d6 + your Strength modifier on a hit. If you hit a creature of your size or smaller using a claw, you automatically grapple the creature with the claw. You can have no more than two creatures grappled in this way at a time. While grappling a target with a claw, you can't attack other creatures with that claw. While wearing the gloves, you have disadvantage on Charisma and Dexterity checks, but you have advantage on checks while operating an apparatus of the crab and on attack rolls with the apparatus' claws. In addition, you can't wield weapons or a shield, and you can't cast a spell that has a somatic component. A creature with an Intelligence of 8 or higher that has two claws can wear these gloves. If it does so, it has two appropriately sized humanoid hands instead of claws. The creature can wield weapons with the hands and has advantage on Dexterity checks that require fine manipulation. Pulling the gloves on or off requires an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_crafter-shabti", - "fields": { - "name": "Crafter Shabti", - "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_cravens-heart", - "fields": { - "name": "Craven's Heart", - "desc": "This leathery mass of dried meat was once a humanoid heart, taken from an individual that died while experiencing great terror. You can use an action to whisper a command word and hurl the heart to the ground, where it revitalizes and begins to beat rapidly and loudly for 1 minute. Each creature withing 30 feet of the heart has disadvantage on saving throws against being frightened. At the end of the duration, the heart bursts from the strain and is destroyed. The heart can be attacked and destroyed (AC 11; hp 3; resistance to bludgeoning damage). If the heart is destroyed before the end if its duration, each creature within 30 feet of the heart must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. This bugbear necromancer was once the henchman of an accomplished practitioner of the dark arts named Varrus. She started as a bodyguard and tough, but her keen intellect caught her master's attention. He eventually took her on as an apprentice. Moxug is fascinated with fear, and some say she doesn't eat but instead sustains herself on the terror of her victims. She eventually betrayed Varrus, sabotaging his attempt to become a lich, and luxuriated in his fear as he realized he would die rather than achieve immortality. According to rumor, the first craven's heart she crafted came from the body of her former master.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_crawling-cloak", - "fields": { - "name": "Crawling Cloak", - "desc": "This unusual cloak is made of many overlapping, broad strips of thick cloth.\nCrawling Cloak (Common). When you are prone, you can animate the cloak and have it pull you along the ground, allowing you to ignore the extra movement cost for crawling. You can still only move up to your normal movement rate and can’t stand up from prone unless you still have at least half your movement remaining after moving.\n\nSturdy Crawling Cloak (Uncommon). This more powerful version of the crawling cloak also allows you to use the prehensile strips of the cloak to climb, giving you a climbing speed of 20 feet. If you already have a climbing speed, the cloak increases that speed by 10 feet. When using the cloak, you can keep your hands free while climbing.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_crimson-carpet", - "fields": { - "name": "Crimson Carpet", - "desc": "This rolled bundle of red felt is 3-feet long and 1-foot wide, and it weighs 10 pounds. You can use an action to speak the carpet's command word to cause it to unroll, creating a horizontal walking surface or bridge up to 10 feet wide, up to 60 feet long, and 1/4 inch thick. The carpet doesn't need to be anchored and can hover. The carpet has immunity to all damage and isn't affected by the dispel magic spell. The disintegrate spell destroys the carpet. The carpet remains unrolled until you use an action to repeat the command word, causing it to roll up again. When you do so, the carpet can't be unrolled again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_crimson-starfall-arrow", - "fields": { - "name": "Crimson Starfall Arrow", - "desc": "This arrow is a magic weapon powered by the sacrifice of your own life energy and explodes upon impact. If you hit a creature with this arrow, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and each creature within 10 feet of the target, including the target, must make a DC 15 Dexterity saving throw, taking necrotic damage equal to the hit points you lost on a failed save, or half as much damage on a successful one. You can't use this feature of the arrow if you don't have blood. Hit Dice spent on this arrow's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_crocodile-hide-armor", - "fields": { - "name": "Crocodile Hide Armor", - "desc": "While wearing this armor fashioned from crocodile skin, you gain a +1 bonus to AC. In addition, you can hold your breath for 15 minutes, and you have a swimming speed equal to your walking speed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_crocodile-leather-armor", - "fields": { - "name": "Crocodile Leather Armor", - "desc": "While wearing this armor fashioned from crocodile skin, you gain a +1 bonus to AC. In addition, you can hold your breath for 15 minutes, and you have a swimming speed equal to your walking speed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_crook-of-the-flock", - "fields": { - "name": "Crook of the Flock", - "desc": "This plain crook is made of smooth, worn lotus wood and is warm to the touch.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_crown-of-the-pharaoh", - "fields": { - "name": "Crown of the Pharaoh", - "desc": "The swirling gold bands of this crown recall the shape of desert dunes, and dozens of tiny emeralds, rubies, and sapphires nest among the skillfully forged curlicues. While wearing the crown, you gain the following benefits: Your Intelligence score is 25. This crown has no effect on you if your Intelligence is already 25 or higher. You have a flying speed equal to your walking speed. While you are wearing no armor and not wielding a shield, your Armor Class equals 16 + your Dexterity modifier.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_crusaders-shield", - "fields": { - "name": "Crusader's Shield", - "desc": "A bronze boss is set in the center of this round shield. When you attune to the shield, the boss changes shape, becoming a symbol of your divine connection: a holy symbol for a cleric or paladin or an engraving of mistletoe or other sacred plant for a druid. You can use the shield as a spellcasting focus for your spells.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_crystal-skeleton-key", - "fields": { - "name": "Crystal Skeleton Key", - "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_crystal-staff", - "fields": { - "name": "Crystal Staff", - "desc": "Carved from a single piece of solid crystal, this staff has numerous reflective facets that produce a strangely hypnotic effect. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: color spray (1 charge), confound senses* (3 charges), confusion (4 charges), hypnotic pattern (3 charges), jeweled fissure* (3 charges), prismatic ray* (5 charges), or prismatic spray (7 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to light or confusion. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the crystal shatters, destroying the staff and dealing 2d6 piercing damage to each creature within 10 feet of it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dagger-of-the-barbed-devil", - "fields": { - "name": "Dagger of the Barbed Devil", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. You can use an action to cause sharp, pointed barbs to sprout from this blade. The barbs remain for 1 minute. When you hit a creature while the barbs are active, the creature must succeed on a DC 15 Dexterity saving throw or a barb breaks off into its flesh and the dagger loses its barbs. At the start of each of its turns, a creature with a barb in its flesh must make a DC 15 Constitution saving throw. On a failure, it has disadvantage on attack rolls and ability checks until the start of its next turn as it is wracked with pain. The barb remains until a creature uses its action to remove the barb, dealing 1d4 piercing damage to the barbed creature. Once you cause barbs to sprout from the dagger, you can't do so again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dancing-caltrops", - "fields": { - "name": "Dancing Caltrops", - "desc": "After you pour these magic caltrops out of the bag into an area, you can use a bonus action to animate them and command them to move up to 10 feet to occupy a different square area that is 5 feet on a side.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dancing-floret", - "fields": { - "name": "Dancing Floret", - "desc": "This 2-inch-long plant has a humanoid shape, and a large purple flower sits at the top of the plant on a short, neck-like stalk. Small, serrated thorns on its arms and legs allow it to cling to your clothing, and it most often dances along your arm or across your shoulders. While attuned to the floret, you have proficiency in the Performance skill, and you double your proficiency bonus on Charisma (Performance) checks made while dancing. The floret has 3 charges for the following other properties. The floret regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dancing-ink", - "fields": { - "name": "Dancing Ink", - "desc": "This ink is favored by merchants for eye-catching banners and by toy makers for scrolls and books for children. Typically found in 1d4 pots, this ink allows you to draw an illustration that moves about the page where it was drawn, whether that is an illustration of waves crashing against a shore along the bottom of the page or a rabbit leaping over the page's text. The ink wears away over time due to the movement and fades from the page after 2d4 weeks. The ink moves only when exposed to light, and some long-forgotten tomes have been opened to reveal small, moving illustrations drawn by ancient scholars. One pot can be used to fill 25 pages of a book or a similar total area for larger banners.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dastardly-quill-and-parchment", - "fields": { - "name": "Dastardly Quill and Parchment", - "desc": "Favored by spies, this quill and parchment are magically linked as long as both remain on the same plane of existence. When a creature writes or draws on any surface with the quill, that writing or drawing appears on its linked parchment, exactly as it would appear if the writer was writing or drawing on the parchment with black ink. This effect doesn't prevent the quill from being used as a standard quill on a nonmagical piece of parchment, but this written communication is one-way, from quill to parchment. The quill's linked parchment is immune to all nonmagical inks and stains, and any magical messages written on the parchment disappear after 1 minute and aren't conveyed to the creature holding the quill. The parchment is approximately 9 inches wide by 13 inches long. If the quill's writing exceeds the area of the parchment, the older writing fades from the top of the sheet, replaced by the newer writing. Otherwise, the quill's writing remains on the parchment for 24 hours, after which time all writing fades from it. If either item is destroyed, the other item becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dawn-shard-dagger", - "fields": { - "name": "Dawn Shard Dagger", - "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dawn-shard-greatsword", - "fields": { - "name": "Dawn Shard Greatsword", - "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dawn-shard-longsword", - "fields": { - "name": "Dawn Shard Longsword", - "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dawn-shard-rapier", - "fields": { - "name": "Dawn Shard Rapier", - "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dawn-shard-scimitar", - "fields": { - "name": "Dawn Shard Scimitar", - "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dawn-shard-shortsword", - "fields": { - "name": "Dawn Shard Shortsword", - "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_deadfall-arrow", - "fields": { - "name": "Deadfall Arrow", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic arrow. On a hit, the arrow transforms into a 10-foot-long wooden log centered on the target, destroying the arrow. The target and each creature in the log's area must make a DC 15 Dexterity saving throw. On a failure, a creature takes 3d6 bludgeoning damage and is knocked prone and restrained under the log. On a success, a creature takes half the damage and isn't knocked prone or restrained. A restrained creature can take its action to free itself by succeeding on a DC 15 Strength check. The log lasts for 1 minute then crumbles to dust, freeing those restrained by it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_deaths-mirror", - "fields": { - "name": "Death's Mirror", - "desc": "Made from woven lead and silver, this ring fits only on the hand's smallest finger. As the moon is a dull reflection of the sun's glory, so too is the power within this ring merely an imitation of the healing energies that can bestow true life. The ring has 3 charges and regains all expended charges daily at dawn. While wearing the ring, you can expend 1 charge as a bonus action to gain 5 temporary hit points for 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_decoy-card", - "fields": { - "name": "Decoy Card", - "desc": "This small, thick, parchment card displays an accurate portrait of the person carrying it. You can use an action to toss the card on the ground at a point within 10 feet of you. An illusion of you forms over the card and remains until dispelled. The illusion appears real, but it can do no harm. While you are within 120 feet of the illusion and can see it, you can use an action to make it move and behave as you wish, as long as it moves no further than 10 feet from the card. Any physical interaction with your illusory double reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect your illusory double identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The illusion lasts until the card is moved or the illusion is dispelled. When the illusion ends, the card's face becomes blank, and the card becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_deepchill-orb", - "fields": { - "name": "Deepchill Orb", - "desc": "This fist-sized sphere of blue quartz emits cold. If placed in a container with a capacity of up to 5 cubic feet, it keeps the internal temperature of the container at a consistent 40 degrees Fahrenheit. This can keep liquids chilled, preserve cooked foods for up to 1 week, raw meats for up to 3 days, and fruits and vegetables for weeks. If you hold the orb without gloves or other insulating method, you take 1 cold damage each minute you hold it. At the GM's discretion, the orb's cold can be applied to other uses, such as keeping it in contact with a hot item to cool down the item enough to be handled, wrapping it and using it as a cooling pad to bring down fever or swelling, or similar.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_defender-shabti", - "fields": { - "name": "Defender Shabti", - "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_deserters-boots", - "fields": { - "name": "Deserter's Boots", - "desc": "While you wear these boots, your walking speed increases by 10 feet, and you gain a +1 bonus to Dexterity saving throws.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_devil-shark-mask", - "fields": { - "name": "Devil Shark Mask", - "desc": "When you wear this burgundy face covering, it transforms your face into a shark-like visage, and the mask sprouts wicked horns. While wearing this mask, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d8 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. You gain a +1 bonus to attack and damage rolls with this magic bite. In addition, you have advantage on Charisma (Intimidation) checks while wearing this mask.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_devilish-doubloon", - "fields": { - "name": "Devilish Doubloon", - "desc": "This gold coin bears the face of a leering devil on the obverse. If it is placed among other coins, it changes its appearance to mimic its neighbors, doing so over the course of 1 hour. This is a purely cosmetic change, and it returns to its original appearance when grasped by a creature with an Intelligence of 5 or higher. You can use a bonus action to toss the coin up to 20 feet. When the coin lands, it transforms into a barbed devil. The devil vanishes after 1 hour or when it is reduced to 0 hit points. When the devil vanishes, the coin reappears in a collection of at least 20 gold coins elsewhere on the same plane where it vanished. The devil is friendly to you and your companions. Roll initiative for the devil, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the devil, it defends itself from hostile creatures but otherwise takes no actions. If you are reduced to 0 hit points and the devil is still alive, it moves to your body and uses its action to grab your soul. You must succeed on a DC 15 Charisma saving throw or the devil steals your soul and you die. If the devil fails to grab your soul, it vanishes as if slain. If the devil grabs your soul, it uses its next action to transport itself back to the Hells, disappearing in a flash of brimstone. If the devil returns to the Hells with your soul, its coin doesn't reappear, and you can be restored to life only by means of a true resurrection or wish spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_devils-barb", - "fields": { - "name": "Devil's Barb", - "desc": "This thin wand is fashioned from the fiendish quill of a barbed devil. While attuned to it, you have resistance to cold damage. The wand has 6 charges for the following properties. It regains 1d6 expended charges daily at dusk. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into cinders and is destroyed. Hurl Flame. While holding the wand, you can expend 2 charges as an action to hurl a ball of devilish flame at a target you can see within 150 feet of you. The target must succeed on a DC 15 Dexterity check or take 3d6 fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire. Devil's Sight. While holding the wand, you can expend 1 charge as an action to cast the darkvision spell on yourself. Magical darkness doesn't impede this darkvision.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_digger-shabti", - "fields": { - "name": "Digger Shabti", - "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dimensional-net", - "fields": { - "name": "Dimensional Net", - "desc": "Woven from the hair of celestials and fiends, this shimmering iridescent net can subdue and capture otherworldly creatures. You have a +1 bonus to attack rolls with this magic weapon. In addition to the normal effects of a net, this net prevents any Large or smaller aberration, celestial, or fiend hit by it from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. When such a creature is bound in this way, a creature must succeed on a DC 30 Strength (Athletics) check to free the bound creature. The net has immunity to damage dealt by the bound creature, but another creature can deal 20 slashing damage to the net and free the bound creature, ending the effect. The net has AC 15 and 30 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the net drops to 0 hit points, it is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dirgeblade", - "fields": { - "name": "Dirgeblade", - "desc": "This weapon is an exquisitely crafted rapier set in a silver and leather scabbard. The blade glows a faint stormy blue and is encircled by swirling wisps of clouds. You gain a +3 bonus to attack and damage rolls made with this magic weapon. This weapon, when unsheathed, sheds dim blue light in a 20-foot radius. When you hit a creature with it, you can expend 1 Bardic Inspiration to impart a sense of overwhelming grief in the target. A creature affected by this grief must succeed on a DC 15 Wisdom saving throw or fall prone and become incapacitated by sadness until the end of its next turn. Once a month under an open sky, you can use a bonus action to speak this magic sword's command word and cause the sword to sing a sad dirge. This dirge conjures heavy rain (or snow in freezing temperatures) in the region for 2d6 hours. The precipitation falls in an X-mile radius around you, where X is equal to your level.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dirk-of-daring", - "fields": { - "name": "Dirk of Daring", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While holding the dagger, you have advantage on saving throws against being frightened.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_distracting-doubloon", - "fields": { - "name": "Distracting Doubloon", - "desc": "This gold coin is plain and matches the dominant coin of the region. Typically, 2d6 distracting doubloons are found together. You can use an action to toss the coin up to 20 feet. The coin bursts into a flash of golden light on impact. Each creature within a 15-foot radius of where the coin landed must succeed on a DC 11 Wisdom saving throw or have disadvantage on Wisdom (Perception) checks made to perceive any creature or object other than the coin for 1 minute. If an affected creature takes damage, it can repeat the saving throw, ending the effect on itself on a success. At the end of the duration, the coin crumbles to dust and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_djinn-vessel", - "fields": { - "name": "Djinn Vessel", - "desc": "A rough predecessor to the ring of djinni summoning and the ring elemental command, this clay vessel is approximately a foot long and half as wide. An iron stopper engraved with a rune of binding seals its entrance. If the vessel is empty, you can use an action to remove the stopper and cast the banishment spell (save DC 15) on a celestial, elemental, or fiend within 60 feet of you. At the end of the spell's duration, if the target is an elemental, it is trapped in this vessel. While trapped, the elemental can take no actions, but it is aware of occurrences outside of the vessel and of other djinn vessels. You can use an action to remove the vessel's stopper and release the elemental the vessel contains. Once released, the elemental acts in accordance with its normal disposition and alignment.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_doppelganger-ointment", - "fields": { - "name": "Doppelganger Ointment", - "desc": "This ceramic jar contains 1d4 + 1 doses of a thick, creamy substance that smells faintly of pork fat. The jar and its contents weigh 1/2 a pound. Applying a single dose to your body takes 1 minute. For 24 hours or until it is washed off with an alcohol solution, you can change your appearance, as per the Change Appearance option of the alter self spell. For the duration, you can use a bonus action to return to your normal form, and you can use an action to return to the form of the mimicked creature. If you add a piece of a specific creature (such as a single hair, nail paring, or drop of blood), the ointment becomes more powerful allowing you to flawlessly imitate that creature, as long as its body shape is humanoid and within one size category of your own. While imitating that creature, you have advantage on Charisma checks made to convince others you are that specific creature, provided they didn't see you change form.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dragonstooth-blade", - "fields": { - "name": "Dragonstooth Blade", - "desc": "This razor-sharp blade, little more than leather straps around the base of a large tooth, still carries the power of a dragon. This weapon's properties are determined by the type of dragon that once owned this tooth. The GM chooses the dragon type or determines it randomly from the options below. When you hit with an attack using this magic sword, the target takes an extra 1d6 damage of a type determined by the kind of dragon that once owned the tooth. In addition, you have resistance to the type of damage associated with that dragon. | d6 | Damage Type | Dragon Type |\n| --- | ----------- | ------------------- |\n| 1 | Acid | Black or Copper |\n| 2 | Fire | Brass, Gold, or Red |\n| 3 | Poison | Green |\n| 4 | Lightning | Blue or Bronze |\n| 5 | Cold | Silver or White |\n| 6 | Necrotic | Undead |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_draught-of-ambrosia", - "fields": { - "name": "Draught of Ambrosia", - "desc": "The liquid in this tiny vial is golden and has a heady, floral scent. When you drink the draught, it fortifies your body and mind, removing any infirmity caused by old age. You stop aging and are immune to any magical and nonmagical aging effects. The magic of the ambrosia lasts ten years, after which time its power fades, and you are once again subject to the ravages of time and continue aging.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_draught-of-the-black-owl", - "fields": { - "name": "Draught of the Black Owl", - "desc": "When you drink this potion, you transform into a black-feathered owl for 1 hour. This effect works like the polymorph spell, except you can take only the form of an owl. While you are in the form of an owl, you retain your Intelligence, Wisdom, and Charisma scores. If you are a druid with the Wild Shape feature, you can transform into a giant owl instead. Drinking this potion doesn't expend a use of Wild Shape.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dread-scarab", - "fields": { - "name": "Dread Scarab", - "desc": "The abdomen of this beetleshaped brooch is decorated with the grim semblance of a human skull. If you hold it in your hand for 1 round, an Abyssal inscription appears on its surface, revealing its magical nature. While wearing this brooch, you gain the following benefits:\n- You have advantage on saving throws against spells.\n- The scarab has 9 charges. If you fail a saving throw against a conjuration spell or a harmful effect originating from a celestial creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into dust and is destroyed when its last charge is expended.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dust-of-desiccation", - "fields": { - "name": "Dust of Desiccation", - "desc": "This small packet contains soot-like dust. There is enough of it for one use. When you use an action to blow the choking dust from your palm, each creature in a 30-foot cone must make a DC 15 Dexterity saving throw, taking 3d10 necrotic damage on a failed save, or half as much damage on a successful one. A creature that fails this saving throw can't speak until the end of its next turn as it chokes on the dust. Alternatively, you can use an action to throw the dust into the air, affecting yourself and each creature within 30 feet of you with the dust.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dust-of-muffling", - "fields": { - "name": "Dust of Muffling", - "desc": "You can scatter this fine, silvery-gray dust on the ground as an action, covering a 10-foot-square area. There is enough dust in one container for up to 5 uses. When a creature moves over an area covered in the dust, it has advantage on Dexterity (Stealth) checks to remain unheard. The effect remains until the dust is swept up, blown away, or tracked away by the traffic of eight or more creatures passing through the area.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_dust-of-the-dead", - "fields": { - "name": "Dust of the Dead", - "desc": "This stoppered vial is filled with dust and ash. There is enough of it for one use. When you use an action to sprinkle the dust on a willing humanoid, the target falls into a death-like slumber for 8 hours. While asleep, the target appears dead to all mundane and magical means, but spells that target the dead, such as the speak with dead spell, fail when used on the target. The cause of death is not evident, though any wounds the target has taken remain visible. If the target takes damage while asleep, it has resistance to the damage. If the target is reduced to below half its hit points while asleep, it must succeed on a DC 15 Constitution saving throw to wake up. If the target is reduced to 5 hit points or fewer while asleep, it wakes up. If the target is unwilling, it must succeed on a DC 11 Constitution saving throw to avoid the effect of the dust. A sleeping creature is considered an unwilling target.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_eagle-cape", - "fields": { - "name": "Eagle Cape", - "desc": "The exterior of this silk cape is lined with giant eagle feathers. When you fall while wearing this cape, you descend 60 feet per round, take no damage from falling, and always land on your feet. In addition, you can use an action to speak the cloak's command word. This turns the cape into a pair of eagle wings which give you a flying speed of 60 feet for 1 hour or until you repeat the command word as an action. When the wings revert back to a cape, you can't use the cape in this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_earrings-of-the-agent", - "fields": { - "name": "Earrings of the Agent", - "desc": "Aside from a minor difference in size, these simple golden hoops are identical to one another. Each hoop has 1 charge and provides a different magical effect. Each hoop regains its expended charge daily at dawn. You must be wearing both hoops to use the magic of either hoop.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_earrings-of-the-eclipse", - "fields": { - "name": "Earrings of the Eclipse", - "desc": "These two cubes of smoked quartz are mounted on simple, silver posts. While you are wearing these earrings, you can take the Hide action while you are motionless in an area of dim light or darkness even when a creature can see you or when you have nothing to obscure you from the sight of a creature that can see you. If you are in darkness when you use the Hide action, you have advantage on the Dexterity (Stealth) check. If you move, attack, cast a spell, or do anything other than remain motionless, you are no longer hidden and can be detected normally.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_earrings-of-the-storm-oyster", - "fields": { - "name": "Earrings of the Storm Oyster", - "desc": "The deep blue pearls forming the core of these earrings come from oysters that survive being struck by lightning. While wearing these earrings, you gain the following benefits:\n- You have resistance to lightning and thunder damage.\n- You can understand Primordial. When it is spoken, the pearls echo the words in a language you can understand, at a whisper only you can hear.\n- You can't be deafened.\n- You can breathe air and water. - As an action, you can cast the sleet storm spell (save DC 15) from the earrings. The earrings can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ebon-shards", - "fields": { - "name": "Ebon Shards", - "desc": "These obsidian shards are engraved with words in Deep Speech, and their presence disquiets non-evil, intelligent creatures. The writing on the shards is obscure, esoteric, and possibly incomplete. The shards have 10 charges and give you access to a powerful array of Void magic spells. While holding the shards, you use an action to expend 1 or more of its charges to cast one of the following spells from them, using your spell save DC and spellcasting ability: living shadows* (5 charges), maddening whispers* (2 charges), or void strike* (3 charges). You can also use an action to cast the crushing curse* spell from the shards without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness or madness. The shards regain 1d6 + 4 expended charges daily at dusk. Each time you use the ebon shards to cast a spell, you must succeed on a DC 12 Charisma saving throw or take 2d6 psychic damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_efficacious-eyewash", - "fields": { - "name": "Efficacious Eyewash", - "desc": "This clear liquid glitters with miniscule particles of light. A bottle of this potion contains 6 doses, and its lid comes with a built-in dropper. You can use an action to apply 1 dose to the eyes of a blinded creature. The blinded condition is suppressed for 2d4 rounds. If the blinded condition has a duration, subtract those rounds from the total duration; if doing so reduces the overall duration to 0 rounds or less, then the condition is removed rather than suppressed. This eyewash doesn't work on creatures that are naturally blind, such as grimlocks, or creatures blinded by severe damage or removal of their eyes.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_eldritch-rod", - "fields": { - "name": "Eldritch Rod", - "desc": "This bone rod is carved into the shape of twisting tendrils or tentacles. You can use this rod as an arcane focus. The rod has 3 charges and regains all expended charges daily at dawn. When you cast a spell that requires an attack roll and that deals damage while holding this rod, you can expend 1 of its charges as part of the casting to enhance that spell. If the attack hits, the spell also releases tendrils that bind the target, grappling it for 1 minute. At the start of each of your turns, the grappled target takes 1d6 damage of the same type dealt by the spell. At the end of each of its turns, the grappled target can make a Dexterity saving throw against your spell save DC, freeing itself from the tendrils on a success. The rod's magic can grapple only one target at a time. If you use the rod to grapple another target, the effect on the previous target ends.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_elemental-wraps", - "fields": { - "name": "Elemental Wraps", - "desc": "These cloth arm wraps are decorated with elemental symbols depicting flames, lightning bolts, snowflakes, and similar. You have resistance to acid, cold, fire, lightning, or thunder damage while you wear these arm wraps. You choose the type of damage when you first attune to the wraps, and you can choose a different type of damage at the end of a short or long rest. The wraps have 10 charges. When you hit with an unarmed strike while wearing these wraps, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 damage of the type to which you have resistance. The wraps regain 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the wraps unravel and fall to the ground, becoming nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_elixir-of-corruption", - "fields": { - "name": "Elixir of Corruption", - "desc": "This elixir looks, smells, and tastes like a potion of heroism; however, it is actually a poisonous elixir masked by illusion magic. An identify spell reveals its true nature. If you drink it, you must succeed on a DC 15 Constitution saving throw or be corrupted by the diabolical power within the elixir for 1 week. While corrupted, you lose immunity to diseases, poison damage, and the poisoned condition. If you aren't normally immune to poison damage, you instead have vulnerability to poison damage while corrupted. The corruption can be removed with greater restoration or similar magic.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_elixir-of-deep-slumber", - "fields": { - "name": "Elixir of Deep Slumber", - "desc": "The milky-white liquid in this vial smells of jasmine and sandalwood. When you drink this potion, you fall into a deep sleep, from which you can't be physically awakened, for 1 hour. A successful dispel magic (DC 13) cast on you awakens you but cancels any beneficial effects of the elixir. When you awaken at the end of the hour, you benefit from the sleep as if you had finished a long rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_elixir-of-focus", - "fields": { - "name": "Elixir of Focus", - "desc": "This deep amber concoction seems to glow with an inner light. When you drink this potion, you have advantage on the next ability check you make within 10 minutes, then the elixir's effect ends.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_elixir-of-mimicry", - "fields": { - "name": "Elixir of Mimicry", - "desc": "When you drink this sweet, oily, black liquid, you can imitate the voice of a single creature that you have heard speak within the past 24 hours. The effects last for 3 minutes.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_elixir-of-oracular-delirium", - "fields": { - "name": "Elixir of Oracular Delirium", - "desc": "This pearlescent fluid perpetually swirls inside its container with a slow kaleidoscopic churn. When you drink this potion, you can cast the guidance spell for 1 hour at will. You can end this effect early as an action and gain the effects of the augury spell. If you do, you are afflicted with short-term madness after learning the spell's results.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_elixir-of-spike-skin", - "fields": { - "name": "Elixir of Spike Skin", - "desc": "Slivers of bone float in the viscous, gray liquid inside this vial. When you drink this potion, bone-like spikes protrude from your skin for 1 hour. Each time a creature hits you with a melee weapon attack while within 5 feet of you, it must succeed on a DC 15 Dexterity saving throw or take 1d4 piercing damage from the spikes. In addition, while you are grappling a creature or while a creature is grappling you, it takes 1d4 piercing damage at the start of your turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_elixir-of-the-clear-mind", - "fields": { - "name": "Elixir of the Clear Mind", - "desc": "This cerulean blue liquid sits calmly in its flask even when jostled or shaken. When you drink this potion, you have advantage on Wisdom checks and saving throws for 1 hour. For the duration, if you fail a saving throw against an enchantment or illusion spell or similar magic effect, you can choose to succeed instead. If you do, you draw upon all the potion's remaining power, and its effects end immediately thereafter.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_elixir-of-the-deep", - "fields": { - "name": "Elixir of the Deep", - "desc": "This thick, green, swirling liquid tastes like salted mead. For 1 hour after drinking this elixir, you can breathe underwater, and you can see clearly underwater out to a range of 60 feet. The elixir doesn't allow you to see through magical darkness, but you can see through nonmagical clouds of silt and other sedimentary particles as if they didn't exist. For the duration, you also have advantage on saving throws against the spells and other magical effects of fey creatures native to water environments, such as a Lorelei (see Tome of Beasts) or Water Horse (see Creature Codex).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_elixir-of-wakefulness", - "fields": { - "name": "Elixir of Wakefulness", - "desc": "This effervescent, crimson liquid is commonly held in a thin, glass vial capped in green wax. When you drink this elixir, its effects last for 8 hours. While the elixir is in effect, you can't fall asleep by normal means. You have advantage on saving throws against effects that would put you to sleep. If you are affected by the sleep spell, your current hit points are considered 10 higher when determining the effects of the spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_elk-horn-rod", - "fields": { - "name": "Elk Horn Rod", - "desc": "This rod is fashioned from elk or reindeer horn. As an action, you can grant a +1 bonus on saving throws against spells and magical effects to a target touched by the wand, including yourself. The bonus lasts 1 round. If you are holding the rod while performing the somatic component of a dispel magic spell or comparable magic, you have a +1 bonus on your spellcasting ability check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_encouraging-breastplate", - "fields": { - "name": "Encouraging Breastplate", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_encouraging-chain-mail", - "fields": { - "name": "Encouraging Chain Mail", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_encouraging-chain-shirt", - "fields": { - "name": "Encouraging Chain Shirt", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_encouraging-half-plate", - "fields": { - "name": "Encouraging Half Plate", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_encouraging-hide-armor", - "fields": { - "name": "Encouraging Hide Armor", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_encouraging-leather-armor", - "fields": { - "name": "Encouraging Leather Armor", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_encouraging-padded-armor", - "fields": { - "name": "Encouraging Padded Armor", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_encouraging-plate", - "fields": { - "name": "Encouraging Plate", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_encouraging-ring-mail", - "fields": { - "name": "Encouraging Ring Mail", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_encouraging-scale-mail", - "fields": { - "name": "Encouraging Scale Mail", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_encouraging-splint", - "fields": { - "name": "Encouraging Splint", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_encouraging-studded-leather", - "fields": { - "name": "Encouraging Studded Leather", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_enraging-ammunition", - "fields": { - "name": "Enraging Ammunition", - "desc": "When you hit a creature with a ranged attack using this magical ammunition, the target must succeed on a DC 13 Wisdom saving throw or become enraged for 1 minute. On its turn, an enraged creature moves toward you by the most direct route, trying to get within 5 feet of you. It doesn't avoid opportunity attacks, but it moves around or avoids damaging terrain, such as lava or a pit. If the enraged creature is within 5 feet of you, it attacks you. An enraged creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ensnaring-ammunition", - "fields": { - "name": "Ensnaring Ammunition", - "desc": "When you hit a creature with a ranged attack using this magical ammunition, the target takes only half the damage from the attack, and the target is restrained as the ammunition bursts into entangling strands that wrap around it. As an action, the restrained target can make a DC 13 Strength check, bursting the bonds on a success. The strands can also be attacked and destroyed (AC 10; hp 5; immunity to bludgeoning, poison, and psychic damage).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_entrenching-mattock", - "fields": { - "name": "Entrenching Mattock", - "desc": "You gain a +1 to attack and damage rolls with this magic weapon. This bonus increases to +3 when you use the pick to attack a creature made of earth or stone, such as an earth elemental or stone golem. As a bonus action, you can slam the head of the pick into earth, sand, mud, or rock within 5 feet of you to create a wall of that material up to 30 feet long, 3 feet high, and 1 foot thick along that surface. The wall provides half cover to creatures behind it. The pick can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_everflowing-bowl", - "fields": { - "name": "Everflowing Bowl", - "desc": "This smooth, stone bowl feels especially cool to the touch. It holds up to 1 pint of water. When placed on the ground, the bowl magically draws water from the nearby earth and air, filling itself after 1 hour. In arid or desert environments, the bowl fills itself after 8 hours. The bowl never overflows itself.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_explosive-orb-of-obfuscation", - "fields": { - "name": "Explosive Orb of Obfuscation", - "desc": "Originally fashioned in the laboratory of the archmage Lugax for his good natured but often roguish friend, Kennich, these spherical ceramic containers are the size of a large human fist. Arcane sigils decorate each orb, detailing its properties to those capable of reading the sigils. The magic-infused chemicals in each orb must be briefly exposed to air before being thrown to activate them. A metal rod sits in the cork of each orb, allowing you to quickly twist open the container before throwing it. Typically, 1d4 + 1 orbs of obfuscation are found together. You can use an action to activate and throw the orb up to 60 feet. The orb explodes on impact and is destroyed. The orb's effects are determined by its type. Orb of Obfuscation (Uncommon). This orb is a dark olive color with a stripe of bright blue paint encircling it. When activated, the orb releases an opaque grey gas and creates a 30-foot-radius sphere of this gas centered on the point where the orb landed. The sphere spreads around corners, and its area is heavily obscured. The magical gas also dampens sound. Each creature in the gas can hear only sounds originating within 5 feet of it, and creatures outside of the gas can’t hear sounds originating inside the gas. The gas lasts for 5 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. Explosive Orb of Obfuscation (Rare). This oblong orb has a putty grey color with a stripe of yellow paint encircling it. When activated, this orb releases the same opaque grey gas as the orb of obfuscation. In addition to the effects of that gas, this orb also releases a burst of caustic chemicals on impact. Each creature within a 15-foot radius of where the orb landed must make a DC 15 Dexterity saving throw, taking 4d4 acid damage on a failed save, or half as much damage on a successful one. If a creature fails this saving throw, the chemicals cling to it for 1 minute. At the end of each of its turns, the creature must succeed on a DC 15 Constitution saving throw or take 2d4 acid damage from the clinging chemicals. Any creature can take an action to remove the clinging chemicals with a successful DC 15 Wisdom (Medicine) check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_exsanguinating-blade", - "fields": { - "name": "Exsanguinating Blade", - "desc": "This double-bladed dagger has an ivory hilt, and its gold pommel is shaped into a woman's head with ruby eyes and a fanged mouth opened in a scream. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon against a creature that has blood, the dagger gains 1 charge. The dagger can hold 1 charge at a time. You can use a bonus action to expend 1 charge from the dagger to cause one of the following effects: - You or a creature you touch with the blade regains 2d8 hit points. - The next time you hit a creature that has blood with this weapon, it deals an extra 2d8 necrotic damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_extract-of-dual-mindedness", - "fields": { - "name": "Extract of Dual-Mindedness", - "desc": "This potion can be distilled only from a hormone found in the hypothalamus of a two-headed giant of genius intellect. For 1 minute after drinking this potion, you can concentrate on two spells at the same time, and you have advantage on Constitution saving throws made to maintain your concentration on a spell when you take damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_eye-of-horus", - "fields": { - "name": "Eye of Horus", - "desc": "This gold and lapis lazuli amulet helps you determine reality from phantasms and trickery. While wearing it, you have advantage on saving throws against illusion spells and against being frightened.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_eye-of-the-golden-god", - "fields": { - "name": "Eye of the Golden God", - "desc": "A shining multifaceted violet gem sits at the center of this fist-sized amulet. A beautifully forged band of platinum encircles the gem and affixes it to a well-made series of interlocking platinum chain links. The violet gem is warm to the touch. While wearing this amulet, you can't be frightened and you don't suffer from exhaustion. In addition, you always know which item within 20 feet of you is the most valuable, though you don't know its actual value or if it is magical. Each time you finish a long rest while attuned to this amulet, roll a 1d10. On a 1-3, you awaken from your rest with that many valuable objects in your hand. The objects are minor, such as copper coins, at first and progressively get more valuable, such as gold coins, ivory statuettes, or gemstones, each time they appear. Each object is always small enough to fit in a single hand and is never worth more than 1,000 gp. The GM determines the type and value of each object. Once the left eye of an ornate and magical statue of a pit fiend revered by a small cult of Mammon, this exquisite purple gem was pried from the idol by an adventurer named Slick Finnigan. Slick and his companions had taken it upon themselves to eradicate the cult, eager for the accolades they would receive for defeating an evil in the community. The loot they stood to gain didn't hurt either. After the assault, while his companions were busy chasing the fleeing members of the cult, Slick pocketed the gem, disfiguring the statue and weakening its power in the process. He was then attacked by a cultist who had managed to evade notice by the adventurers. Slick escaped with his life, and the gem, but was unable to acquire the second eye. Within days, the thief was finding himself assaulted by devils and cultists. He quickly offloaded his loot with a collection of merchants in town, including a jeweler who was looking for an exquisite stone to use in a piece commissioned by a local noble. Slick then set off with his pockets full of coin, happily leaving the devilish drama behind. This magical amulet attracts the attention of worshippers of Mammon, who can almost sense its presence and are eager to claim its power for themselves, though a few extremely devout members of the weakened cult wish to return the gem to its original place in the idol. Due to this, and a bit of bad luck, this amulet has changed hands many times over the decades.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_eyes-of-the-outer-dark", - "fields": { - "name": "Eyes of the Outer Dark", - "desc": "These lenses are crafted of polished, opaque black stone. When placed over the eyes, however, they allow the wearer not only improved vision but glimpses into the vast emptiness between the stars. While wearing these lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, its range is extended by 60 feet. As an action, you can use the lenses to pierce the veils of time and space and see into the outer darkness. You gain the benefits of the foresight and true seeing spells for 10 minutes. If you activate this property and you aren't suffering from a madness, you take 3d8 psychic damage. Once used, this property of the lenses can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_eyes-of-the-portal-masters", - "fields": { - "name": "Eyes of the Portal Masters", - "desc": "While you wear these crystal lenses over your eyes, you can sense the presence of any dimensional portal within 60 feet of you and whether the portal is one-way or two-way. Once you have worn the eyes for 10 minutes, their magic ceases to function until the next dawn. Putting the lenses on or off requires an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_fanged-mask", - "fields": { - "name": "Fanged Mask", - "desc": "This tribal mask is made of wood and adorned with animal fangs. Once donned, it melds to your face and causes fangs to sprout from your mouth. While wearing this mask, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. If you already have a bite attack when you don and attune to this mask, your bite attack's damage dice double (for example, 1d4 becomes 2d4).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_farhealing-bandages", - "fields": { - "name": "Farhealing Bandages", - "desc": "This linen bandage is yellowed and worn with age. You can use an action wrap it around the appendage of a willing creature and activate its magic for 1 hour. While the target is within 60 feet of you and the bandage's magic is active, you can use an action to trigger the bandage, and the target regains 2d4 hit points. The bandage becomes inactive after it has restored 15 hit points to a creature or when 1 hour has passed. Once the bandage becomes inactive, it can't be used again until the next dawn. You can be attuned to only one farhealing bandage at a time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_farmer-shabti", - "fields": { - "name": "Farmer Shabti", - "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_fear-eaters-mask", - "fields": { - "name": "Fear-Eater's Mask", - "desc": "This painted, wooden mask bears the visage of a snarling, fiendish face. While wearing the mask, you can use a bonus action to feed on the fear of a frightened creature within 30 feet of you. The target must succeed on a DC 13 Wisdom saving throw or take 2d6 psychic damage. You regain hit points equal to the damage dealt. If you are not injured, you gain temporary hit points equal to the damage dealt instead. Once a creature has failed this saving throw, it is immune to the effects of this mask for 24 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_fellforged-armor", - "fields": { - "name": "Fellforged Armor", - "desc": "While wearing this steam-powered magic armor, you gain a +1 bonus to AC, your Strength score increases by 2, and you gain the ability to cast speak with dead as an action. As long as you remain cursed, you exude an unnatural aura, causing beasts with Intelligence 3 or less within 30 feet of you to be frightened. Once you have used the armor to cast speak with dead, you can't cast it again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ferrymans-coins", - "fields": { - "name": "Ferryman's Coins", - "desc": "It is customary in many faiths to weight a corpse's eyes with pennies so they have a fee to pay the ferryman when he comes to row them across death's river to the afterlife. Ferryman's coins, though, ensure the body stays in the ground regardless of the spirit's destination. These coins, which feature a death's head on one side and a lock and chain on the other, prevent a corpse from being raised as any kind of undead. When you place two coins on a corpse's closed lids and activate them with a simple prayer, they can't be removed unless the person is resurrected (in which case they simply fall away), or someone makes a DC 15 Strength check to remove them. Yanking the coins away does no damage to the corpse.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_feysworn-contract", - "fields": { - "name": "Feysworn Contract", - "desc": "This long scroll is written in flowing Elvish, the words flickering with a pale witchlight, and marked with the seal of a powerful fey or a fey lord or lady. When you use an action to present this scroll to a fey whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the fey, negotiating a service from it in exchange for a reward. The fey is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the fey, the truce is broken, and the creature can act normally. If the fey refuses the offer, it is free to take any actions it wishes. Should you and the fey reach an agreement that is satisfactory to both parties, you must sign the agreement and have the fey do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the fey to the agreement until its service is rendered and the reward paid, at which point the scroll fades into nothingness. Fey are notoriously clever folk, and while they must adhere to the letter of any bargains they make, they always look for any advantage in their favor. If either party breaks the bargain, that creature immediately takes 10d6 poison damage, and the charter is destroyed, ending the contract.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_fiendish-charter", - "fields": { - "name": "Fiendish Charter", - "desc": "This long scroll bears the mark of a powerful creature of the Lower Planes, whether an archduke of Hell, a demon lord of the Abyss, or some other powerful fiend or evil deity. When you use an action to present this scroll to a fiend whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the fiend, negotiating a service from it in exchange for a reward. The fiend is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the fiend, the truce is broken, and the creature can act normally. If the fiend refuses the offer, it is free to take any actions it wishes. Should you and the fiend reach an agreement that is satisfactory to both parties, you must sign the charter in blood and have the fiend do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the fiend to the agreement until its service is rendered and the reward paid, at which point the scroll ignites and burns into ash. The contract's wording should be carefully considered, as fiends are notorious for finding loopholes or adhering to the letter of the agreement to their advantage. If either party breaks the bargain, that creature immediately takes 10d6 necrotic damage, and the charter is destroyed, ending the contract.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_figurehead-of-prowess", - "fields": { - "name": "Figurehead of Prowess", - "desc": "A figurehead of prowess must be mounted on the bow of a ship for its magic to take effect. While mounted on a ship, the figurehead’s magic affects the ship and every creature on the ship. A figurehead can be mounted on any ship larger than a rowboat, regardless if that ship sails the sea, the sky, rivers and lakes, or the sands of the desert. A ship can have only one figurehead mounted on it at a time. Most figureheads are always active, but some have properties that must be activated. To activate a figurehead’s special property, a creature must be at the helm of the ship, referred to below as the “pilot,” and must use an action to speak the figurehead’s command word. \nAlbatross (Uncommon). While this figurehead is mounted on a ship, the ship’s pilot can double its proficiency bonus with navigator’s tools when navigating the ship. In addition, the ship’s pilot doesn’t have disadvantage on Wisdom (Perception) checks that rely on sight when peering through fog, rain, dust storms, or other natural phenomena that would ordinarily lightly obscure the pilot’s vision. \nBasilisk (Uncommon). While this figurehead is mounted on a ship, the ship’s AC increases by 2. \nDragon Turtle (Very Rare). While this figurehead is mounted on a ship, each creature on the ship has resistance to fire damage, and the ship’s damage threshold increases by 5. If the ship doesn’t normally have a damage threshold, it gains a damage threshold of 5. \nKraken (Rare). While this figurehead is mounted on a ship, the pilot can animate all of the ship’s ropes. If a creature on the ship uses an animated rope while taking the grapple action, the creature has advantage on the check. Alternatively, the pilot can command the ropes to move as if being moved by a crew, allowing a ship to dock or a sailing ship to sail without a crew. The pilot can end this effect as a bonus action. When the ship’s ropes have been animated for a total of 10 minutes, the figurehead’s magic ceases to function until the next dawn. \nManta Ray (Rare). While this figurehead is mounted on a ship, the ship’s speed increases by half. For example, a ship with a speed of 4 miles per hour would have a speed of 6 miles per hour while this figurehead was mounted on it. \nNarwhal (Very Rare). While this figurehead is mounted on a ship, each creature on the ship has resistance to cold damage, and the ship can break through ice sheets without taking damage or needing to make a check. \nOctopus (Rare). This figurehead can be mounted only on ships designed for water travel. While this figurehead is mounted on a ship, the pilot can force the ship to dive beneath the water. The ship moves at its normal speed while underwater, regardless of its normal method of locomotion. Each creature on the ship remains on the ship and can breathe normally as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to resurface at a rate of 60 feet per round. When the ship has spent a total of 1 hour underwater, the figurehead’s magic ceases to function until the next dawn. \nSphinx (Legendary). This figurehead can be mounted only on a ship that isn’t designed for air travel. While this figurehead is mounted on a ship, the pilot can command the ship to rise into the air. The ship moves at its normal speed while in the air, regardless of its normal method of locomotion. Each creature on the ship remains on the ship as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to descend at a rate of 60 feet per round until it reaches land or water. When the ship has spent a total of 8 hours in the sky, the figurehead’s magic ceases to function until the next dawn. \nXorn (Very Rare). This figurehead can be mounted only on a ship designed for land travel. While this figurehead is mounted on a ship, the pilot can force the ship to burrow into the earth. The ship moves at its normal speed while burrowing, regardless of its normal method of locomotion. The ship can burrow through nonmagical, unworked sand, mud, earth, and stone, and it doesn’t disturb the material it moves through. Each creature on the ship remains on the ship and can breathe normally as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to resurface at a rate of 60 feet per round. When the ship has spent a total of 1 hour burrowing, the figurehead’s magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_figurine-of-wondrous-power-amber-bee", - "fields": { - "name": "Figurine of Wondrous Power (Amber Bee)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_figurine-of-wondrous-power-basalt-cockatrice", - "fields": { - "name": "Figurine of Wondrous Power (Basalt Cockatrice)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_figurine-of-wondrous-power-coral-shark", - "fields": { - "name": "Figurine of Wondrous Power (Coral Shark)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_figurine-of-wondrous-power-hematite-aurochs", - "fields": { - "name": "Figurine of Wondrous Power (Hematite Aurochs)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_figurine-of-wondrous-power-lapis-camel", - "fields": { - "name": "Figurine of Wondrous Power (Lapis Camel)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_figurine-of-wondrous-power-marble-mistwolf", - "fields": { - "name": "Figurine of Wondrous Power (Marble Mistwolf)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_figurine-of-wondrous-power-tin-dog", - "fields": { - "name": "Figurine of Wondrous Power (Tin Dog)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_figurine-of-wondrous-power-violet-octopoid", - "fields": { - "name": "Figurine of Wondrous Power (Violet Octopoid)", - "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_firebird-feather", - "fields": { - "name": "Firebird Feather", - "desc": "This feather sheds bright light in a 20-foot radius and dim light for an additional 20 feet, but it creates no heat and doesn't use oxygen. While holding the feather, you can tolerate temperatures as low as –50 degrees Fahrenheit. Druids and clerics and paladins who worship nature deities can use the feather as a spellcasting focus. If you use the feather in place of a holy symbol when using your Turn Undead feature, undead in the area have a –1 penalty on the saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_flag-of-the-cursed-fleet", - "fields": { - "name": "Flag of the Cursed Fleet", - "desc": "This dreaded item is a black flag painted with an unsettlingly realistic skull. A spell or other effect that can sense the presence of magic, such as detect magic, reveals an aura of necromancy around the flag. Beasts with an Intelligence of 3 or lower don’t willingly board a vessel where this flag flies. A successful DC 17 Wisdom (Animal Handling) check convinces an unwilling beast to board the vessel, though it remains uneasy and skittish while aboard. \nCursed Crew. When this baleful flag flies atop the mast of a waterborne vehicle, it curses the vessel and all those that board it. When a creature that isn’t a humanoid dies aboard the vessel, it rises 1 minute later as a zombie under the ship captain’s control. When a humanoid dies aboard the vessel, it rises 1 minute later as a ghoul under the ship captain’s control. A ghoul retains any knowledge of sailing or maintaining a waterborne vehicle that it had in life. \nCursed Captain. If the ship flying this flag doesn’t have a captain, the undead crew seeks out a powerful humanoid or intelligent undead to bring aboard and coerce into becoming the captain. When an undead with an Intelligence of 10 or higher boards the captainless vehicle, it must succeed on a DC 17 Wisdom saving throw or become magically bound to the ship and the flag. If the creature exits the vessel and boards it again, the creature must repeat the saving throw. The flag fills the captain with the desire to attack other vessels to grow its crew and commandeer larger vessels when possible, bringing the flag with it. If the flag is destroyed or removed from a waterborne vehicle for at least 7 days, the zombie and ghoul crew crumbles to dust, and the captain is freed of the flag’s magic, if the captain was bound to it. \nUnholy Vessel. While aboard a vessel flying this flag, an undead creature has advantage on saving throws against effects that turn undead, and if it fails the saving throw, it isn’t destroyed, no matter its CR. In addition, the captain and crew can’t be frightened while aboard a vessel flying this flag. \nWhen a creature that isn’t a construct or undead and isn’t part of the crew boards the vessel, it must succeed on a DC 17 Constitution saving throw or be poisoned while it remains on board. If the creature exits the vessel and boards it again, the creature must repeat the saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_flash-bullet", - "fields": { - "name": "Flash Bullet", - "desc": "When you hit a creature with a ranged attack using this shiny, polished stone, it releases a sudden flash of bright light. The target takes damage as normal and must succeed on a DC 11 Constitution saving throw or be blinded until the end of its next turn. Creatures with the Sunlight Sensitivity trait have disadvantage on this saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_flask-of-epiphanies", - "fields": { - "name": "Flask of Epiphanies", - "desc": "This flask is made of silver and cherry wood, and it holds finely cut garnets on its faces. This ornate flask contains 5 ounces of powerful alcoholic spirits. As an action, you can drink up to 5 ounces of the flask's contents. You can drink 1 ounce without risk of intoxication. When you drink more than 1 ounce of the spirits as part of the same action, you must make a DC 12 Constitution saving throw (this DC increases by 1 for each ounce you imbibe after the second, to a maximum of DC 15). On a failed save, you are incapacitated for 1d4 hours and gain no benefits from consuming the alcohol. On a success, your Intelligence or Wisdom (your choice) increases by 1 for each ounce you consumed. Whether you fail or succeed, your Dexterity is reduced by 1 for each ounce you consumed. The effect lasts for 1 hour. During this time, you have advantage on all Intelligence (Arcana) and Inteligence (Religion) checks. The flask replenishes 1d3 ounces of spirits daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_fleshspurned-mask", - "fields": { - "name": "Fleshspurned Mask", - "desc": "This mask features inhumanly sized teeth similar in appearance to the toothy ghost known as a Fleshspurned (see Tome of Beasts 2). It has a strap fashioned from entwined strands of sinew, and it fits easily over your face with no need to manually adjust the strap. While wearing this mask, you can use its teeth to make unarmed strikes. When you hit with it, the teeth deal necrotic damage equal to 1d6 + your Strength modifier, instead of bludgeoning damage normal for an unarmed strike. In addition, if the target has the Incorporeal Movement trait, you deal necrotic damage equal to 2d6 + your Strength modifier instead. Such targets don't have resistance or immunity to the necrotic damage you deal with this attack. If you kill a creature with your teeth, you gain temporary hit points equal to double the creature's challenge rating (minimum of 1).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_flood-charm", - "fields": { - "name": "Flood Charm", - "desc": "This smooth, blue-gray stone is carved with stylized waves or rows of wavy lines. When you are in water too deep to stand, the charm activates. You automatically become buoyant enough to float to the surface unless you are grappled or restrained. If you are unable to surface—such as if you are grappled or restrained, or if the water completely fills the area—the charm surrounds you with a bubble of breathable air that lasts for 5 minutes. At the end of the air bubble's duration, or when you leave the water, the charm's effects end and it becomes a nonmagical stone.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_flute-of-saurian-summoning", - "fields": { - "name": "Flute of Saurian Summoning", - "desc": "This scaly, clawed flute has a musky smell, and it releases a predatory, screeching roar with reptilian overtones when blown. You must be proficient with wind instruments to use this flute. You can use an action to play the flute and conjure dinosaurs. This works like the conjure animals spell, except the animals you conjure must be dinosaurs or Medium or larger lizards. The dinosaurs remain for 1 hour, until they die, or until you dismiss them as a bonus action. The flute can't be used to conjure dinosaurs again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_fly-whisk-of-authority", - "fields": { - "name": "Fly Whisk of Authority", - "desc": "If you use an action to flick this fly whisk, you have advantage on Charisma (Intimidation) and Charisma (Persuasion) checks for 10 minutes. You can't use the fly whisk this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_fog-stone", - "fields": { - "name": "Fog Stone", - "desc": "This sling stone is carved to look like a fluffy cloud. Typically, 1d4 + 1 fog stones are found together. When you fire the stone from a sling, it transforms into a miniature cloud as it flies through the air, and it creates a 20-foot-radius sphere of fog centered on the target or point of impact. The sphere spreads around corners, and its area is heavily obscured. It lasts for 10 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_forgefire-maul", - "fields": { - "name": "Forgefire Maul", - "desc": "The head of this weapon is shaped like an anvil, and engravings of fire and arcane runes decorate it. You can use a bonus action to speak this magic weapon's command word, causing its head to glow red-hot. While red-hot, the weapon deals an extra 1d6 fire damage to any target it hits. The weapon's anvil-like head remains red-hot until you use a bonus action to speak the command word again or until you drop or sheathe the weapon. When you roll a 20 on an attack roll made with this weapon against a target holding or wearing a metal object, such as a metal weapon or metal armor, the target takes an extra 1d4 fire damage and the metal object becomes red-hot for 1 minute. While the object is red-hot and the creature still wears or carries it, the creature takes 1d4 fire damage at the start of each of its turns.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_forgefire-warhammer", - "fields": { - "name": "Forgefire Warhammer", - "desc": "The head of this weapon is shaped like an anvil, and engravings of fire and arcane runes decorate it. You can use a bonus action to speak this magic weapon's command word, causing its head to glow red-hot. While red-hot, the weapon deals an extra 1d6 fire damage to any target it hits. The weapon's anvil-like head remains red-hot until you use a bonus action to speak the command word again or until you drop or sheathe the weapon. When you roll a 20 on an attack roll made with this weapon against a target holding or wearing a metal object, such as a metal weapon or metal armor, the target takes an extra 1d4 fire damage and the metal object becomes red-hot for 1 minute. While the object is red-hot and the creature still wears or carries it, the creature takes 1d4 fire damage at the start of each of its turns.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_fountmail", - "fields": { - "name": "Fountmail", - "desc": "This armor is a dazzling white suit of chain mail with an alabaster-colored steel collar that covers part of the face. You gain a +3 bonus to AC while you wear this armor. In addition, you gain the following benefits: - You add your Strength and Wisdom modifiers in addition to your Constitution modifier on all rolls when spending Hit Die to recover hit points. - You can't be frightened. - You have resistance to necrotic damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_freerunner-rod", - "fields": { - "name": "Freerunner Rod", - "desc": "Tightly intertwined lengths of grass, bound by additional stiff, knotted blades of grass, form this rod, which is favored by plains-dwelling druids and rangers. While holding it and in grasslands, you leave behind no tracks or other traces of your passing, and you can pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. In addition, beasts with an Intelligence of 3 or lower that are native to grasslands must succeed on a DC 15 Charisma saving throw to attack you. The rod has 10 charges, and it regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rod collapses into a pile of grass seeds and is destroyed. Among the grass seeds are 1d10 berries, consumable as if created by the goodberry spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_frost-pellet", - "fields": { - "name": "Frost Pellet", - "desc": "Fashioned from the stomach lining of a Devil Shark (see Creature Codex), this rubbery pellet is cold to the touch. When you consume the pellet, you feel bloated, and you are immune to cold damage for 1 hour. Once before the duration ends, you can expel a 30-foot cone of cold water. Each creature in the cone must make a DC 15 Constitution saving throw. On a failure, the creature takes 6d8 cold damage and is pushed 10 feet away from you. On a success, the creature takes half the damage and isn't pushed away.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_frostfire-lantern", - "fields": { - "name": "Frostfire Lantern", - "desc": "While lit, the flame in this ornate mithril lantern turns blue and sheds a cold, blue dim light in a 30-foot radius. After the lantern's flame has burned for 1 hour, it can't be lit again until the next dawn. You can extinguish the lantern's flame early for use at a later time. Deduct the time it burned in increments of 1 minute from the lantern's total burn time. When a creature enters the lantern's light for the first time on a turn or starts its turn there, the creature must succeed on a DC 17 Constitution saving throw or be vulnerable to cold damage until the start of its next turn. When you light the lantern, choose up to four creatures you can see within 30 feet of you, which can include yourself. The chosen creatures are immune to this effect of the lantern's light.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_frungilator", - "fields": { - "name": "Frungilator", - "desc": "This strangely-shaped item resembles a melted wand or a strange growth chipped from the arcane trees of elder planes. The wand has 5 charges and regains 1d4 + 1 charges daily at dusk. While holding it, you can use an action to expend 1 of its charges and point it at a target within 60 feet of you. The target must be a creature. When activated, the wand frunges creatures into a chaos matrix, which does…something. Roll a d10 and consult the following table to determine these unpredictable effects (none of them especially good). Most effects can be removed by dispel magic, greater restoration, or more powerful magic. | d10 | Frungilator Effect |\n| --- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| 1 | Glittering sparkles fly all around. You are surrounded in sparkling light until the end of your next turn as if you were targeted by the faerie fire spell. |\n| 2 | The target is encased in void crystal and immediately begins suffocating. A creature, including the target, can take its action to shatter the void crystal by succeeding on a DC 10 Strength check. Alternatively, the void crystal can be attacked and destroyed (AC 12; hp 4; immunity to poison and psychic damage). |\n| 3 | Crimson void fire engulfs the target. It must make a DC 13 Constitution saving throw, taking 4d6 fire damage on a failed save, or half as much damage on a successful one. |\n| 4 | The target's blood turns to ice. It must make a DC 13 Constitution saving throw, taking 6d6 cold damage on a failed save, or half as much damage on a successful one. |\n| 5 | The target rises vertically to a height of your choice, up to a maximum height of 60 feet. The target remains suspended there until the start of its next turn. When this effect ends, the target floats gently to the ground. |\n| 6 | The target begins speaking in backwards fey speech for 10 minutes. While speaking this way, the target can't verbally communicate with creatures that aren't fey, and the target can't cast spells with verbal components. |\n| 7 | Golden flowers bloom across the target's body. It is blinded until the end of its next turn. |\n| 8 | The target must succeed on a DC 13 Constitution saving throw or it and all its equipment assumes a gaseous form until the end of its next turn. This effect otherwise works like the gaseous form spell. |\n| 9 | The target must succeed on a DC 15 Wisdom saving throw or become enthralled with its own feet or limbs until the end of its next turn. While enthralled, the target is incapacitated. |\n| 10 | A giant ray of force springs out of the frungilator and toward the target. Each creature in a line that is 5 feet wide between you and the target must make a DC 16 Dexterity saving throw, taking 4d12 force damage on a failed save, or half as much damage on a successful one. |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_fulminar-bracers", - "fields": { - "name": "Fulminar Bracers", - "desc": "Stylized etchings of cat-like lightning elementals known as Fulminars (see Creature Codex) cover the outer surfaces of these solid silver bracers. While wearing these bracers, lightning crackles harmless down your hands, and you have resistance to lightning damage and thunder damage. The bracers have 3 charges. You can use an action to expend 1 charge to create lightning shackles that bind up to two creatures you can see within 60 feet of you. Each target must make a DC 15 Dexterity saving throw. On a failure, a target takes 4d6 lightning damage and is restrained for 1 minute. On a success, the target takes half the damage and isn't restrained. A restrained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The bracers regain all expended charges daily at dawn. The bracers also regain 1 charge each time you take 10 lightning damage while wearing them.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_gale-javelin", - "fields": { - "name": "Gale Javelin", - "desc": "The metallic head of this javelin is embellished with three small wings. When you speak a command word while making a ranged weapon attack with this magic weapon, a swirling vortex of wind follows its path through the air. Draw a line between you and the target of your attack; each creature within 10 feet of this line must make a DC 13 Strength saving throw. On a failed save, the creature is pushed backward 10 feet and falls prone. In addition, if this ranged weapon attack hits, the target must make a DC 13 Strength saving throw. On a failed save, the target is pushed backward 15 feet and falls prone. The javelin's property can't be used again until the next dawn. In the meantime, it can still be used as a magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_garments-of-winters-knight", - "fields": { - "name": "Garments of Winter's Knight", - "desc": "This white-and-blue outfit is designed in the style of fey nobility and maximized for both movement and protection. The multiple layers and snow-themed details of this garb leave no doubt that whoever wears these clothes is associated with the winter queen of faerie. You gain the following benefits while wearing the outfit: - If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\n- Whenever a creature within 5 feet of you hits you with a melee attack, the cloth steals heat from the surrounding air, and the attacker takes 2d8 cold damage.\n- You can't be charmed, and you are immune to cold damage.\n- You can use a bonus action to extend your senses outward to detect the presence of fey. Until the start of your next turn, you know the location of any fey within 60 feet of you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_gauntlet-of-the-iron-sphere", - "fields": { - "name": "Gauntlet of the Iron Sphere", - "desc": "This heavy gauntlet is adorned with an onyx. While wearing this gauntlet, your unarmed strikes deal 1d8 bludgeoning damage, instead of the damage normal for an unarmed strike, and you gain a +1 bonus to attack and damage rolls with unarmed strikes. In addition, your unarmed strikes deal double damage to objects and structures. If you hold a pound of raw iron ore in your hand while wearing the gauntlet, you can use an action to speak the gauntlet's command word and conjure an Iron Sphere (see Creature Codex). The iron sphere remains for 1 hour or until it dies. It is friendly to you and your companions. Roll initiative for the iron sphere, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the iron sphere, it defends itself from hostile creatures but otherwise takes no actions. The gauntlet can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_gazebo-of-shade-and-shelter", - "fields": { - "name": "Gazebo of Shade and Shelter", - "desc": "You can use an action to place this 3-inch sandstone gazebo statuette on the ground and speak its command word. Over the next 5 minutes, the sandstone gazebo grows into a full-sized gazebo that remains for 8 hours or until you speak the command word that returns it to a sandstone statuette. The gazebo's posts are made of palm tree trunks, and its roof is made of palm tree fronds. The floor is level, clean, dry and made of palm fronds. The atmosphere inside the gazebo is comfortable and dry, regardless of the weather outside. You can command the interior to become dimly lit or dark. The gazebo's walls are opaque from the outside, appearing wooden, but they are transparent from the inside, appearing much like sheer fabric. When activated, the gazebo has an opening on the side facing you. The opening is 5 feet wide and 10 feet tall and opens and closes at your command, which you can speak as a bonus action while within 10 feet of the opening. Once closed, the opening is immune to the knock spell and similar magic, such as that of a chime of opening. The gazebo is 20 feet in diameter and is 10 feet tall. It is made of sandstone, despite its wooden appearance, and its magic prevents it from being tipped over. It has 100 hit points, immunity to nonmagical attacks excluding siege weapons, and resistance to all other damage. The gazebo contains crude furnishings: eight simple bunks and a long, low table surrounded by eight mats. Three of the wall posts bear fruit: one coconut, one date, and one fig. A small pool of clean, cool water rests at the base of a fourth wall post. The trees and the pool of water provide enough food and water for up to 10 people. Furnishings and other objects within the gazebo dissipate into smoke if removed from the gazebo. When the gazebo returns to its statuette form, any creatures inside it are expelled into unoccupied spaces nearest to the gazebo's entrance. Once used, the gazebo can't be used again until the next dusk. If reduced to 0 hit points, the gazebo can't be used again until 7 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-barding-breastplate", - "fields": { - "name": "Ghost Barding Breastplate", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-barding-chain-mail", - "fields": { - "name": "Ghost Barding Chain Mail", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-barding-chain-shirt", - "fields": { - "name": "Ghost Barding Chain Shirt", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-barding-half-plate", - "fields": { - "name": "Ghost Barding Half Plate", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-barding-hide", - "fields": { - "name": "Ghost Barding Hide", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-barding-leather", - "fields": { - "name": "Ghost Barding Leather", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-barding-padded", - "fields": { - "name": "Ghost Barding Padded", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-barding-plate", - "fields": { - "name": "Ghost Barding Plate", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-barding-ring-mail", - "fields": { - "name": "Ghost Barding Ring Mail", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-barding-scale-mail", - "fields": { - "name": "Ghost Barding Scale Mail", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-barding-splint", - "fields": { - "name": "Ghost Barding Splint", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-barding-studded-leather", - "fields": { - "name": "Ghost Barding Studded Leather", - "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-dragon-horn", - "fields": { - "name": "Ghost Dragon Horn", - "desc": "Scales from dead dragons cover this wooden, curved horn. You can use an action to speak the horn's command word and then blow the horn, which emits a blast in a 30-foot cone, containing shrieking spectral dragon heads. Each creature in the cone must make a DC 17 Wisdom saving throw. On a failure, a creature tales 5d10 psychic damage and is frightened of you for 1 minute. On a success, a creature takes half the damage and isn't frightened. Dragons have disadvantage on the saving throw and take 10d10 psychic damage instead of 5d10. A frightened target can repeat the Wisdom saving throw at the end of each of its turns, ending the effect on itself on a success. If a dragon takes damage from the horn's shriek, the horn has a 20 percent chance of exploding. The explosion deals 10d10 psychic damage to the blower and destroys the horn. Once you use the horn, it can't be used again until the next dawn. If you kill a dragon while holding or carrying the horn, you regain use of the horn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghost-thread", - "fields": { - "name": "Ghost Thread", - "desc": "Most of this miles-long strand of enchanted silk, created by phase spiders, resides on the Ethereal Plane. Only a few inches at either end exist permanently on the Material Plane, and those may be used as any normal string would be. Creatures using it to navigate can follow one end to the other by running their hand along the thread, which phases into the Material Plane beneath their grasp. If dropped or severed (AC 8, 1 hit point), the thread disappears back into the Ethereal Plane in 2d6 rounds.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghoul-light", - "fields": { - "name": "Ghoul Light", - "desc": "This bullseye lantern sheds light as normal when a lit candle is placed inside of it. If the light shines on meat, no matter how toxic or rotten, for at least 10 minutes, the meat is rendered safe to eat. The lantern's magic doesn't improve the meat's flavor, but the light does restore the meat's nutritional value and purify it, rendering it free of poison and disease. In addition, when an undead creature ends its turn in the light, it takes 1 radiant damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghoulbane-oil", - "fields": { - "name": "Ghoulbane Oil", - "desc": "This rusty-red gelatinous liquid glistens with tiny sparkling crystal flecks. The oil can coat one weapon or 5 pieces of ammunition. Applying the oil takes 1 minute. For 1 hour, if a ghoul, ghast, or Darakhul (see Tome of Beasts) takes damage from the coated item, it takes an extra 2d6 damage of the weapon's type.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ghoulbane-rod", - "fields": { - "name": "Ghoulbane Rod", - "desc": "Arcane glyphs decorate the spherical head of this tarnished rod, while engravings of cracked and broken skulls and bones circle its haft. When an undead creature is within 120 feet of the rod, the rod's arcane glyphs emit a soft glow. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's glyphs flare to life and the rod's magic activates. When an undead creature enters or starts its turn within 30 feet of the planted rod, it must succeed on a DC 15 Wisdom saving throw or have disadvantage on attack rolls against creatures that aren't undead until the start of its next turn. If a ghoul fails this saving throw, it also takes a –2 penalty to AC and Dexterity saving throws, its speed is halved, and it can't use reactions. The rod's magic remains active while planted in the ground, and after it has been active for a total of 10 minutes, its magic ceases to function until the next dawn. A creature can use an action to pull the rod from the ground, ending the effect early for use at a later time. Deduct the time it was active in increments of 1 minute from the rod's total active time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_giggling-orb", - "fields": { - "name": "Giggling Orb", - "desc": "This glass sphere measures 3 inches in diameter and contains a swirling, yellow mist. You can use an action to throw the orb up to 60 feet. The orb shatters on impact and is destroyed. Each creature within a 20-foot-radius of where the orb landed must succeed on a DC 15 Wisdom saving throw or fall prone in fits of laughter, becoming incapacitated and unable to stand for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_girdle-of-traveling-alchemy", - "fields": { - "name": "Girdle of Traveling Alchemy", - "desc": "This wide leather girdle has many sewn-in pouches and holsters that hold an assortment of empty beakers and vials. Once you have attuned to the girdle, these containers magically fill with the following liquids:\n- 2 flasks of alchemist's fire\n- 2 flasks of alchemist's ice*\n- 2 vials of acid - 2 jars of swarm repellent* - 1 vial of assassin's blood poison - 1 potion of climbing - 1 potion of healing Each container magically replenishes each day at dawn, if you are wearing the girdle. All the potions and alchemical substances produced by the girdle lose their properties if they're transferred to another container before being used.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_glamour-rings", - "fields": { - "name": "Glamour Rings", - "desc": "These rings are made from twisted loops of gold and onyx and are always found in pairs. The rings' magic works only while you and another humanoid of the same size each wear one ring and are on the same plane of existence. While wearing a ring, you or the other humanoid can use an action to swap your appearances, if both of you are willing. This effect works like the Change Appearance effect of the alter self spell, except you can change your appearance to only look identical to each other. Your clothing and equipment don't change, and the effect lasts until one of you uses this property again or until one of you removes the ring.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_glass-wand-of-leng", - "fields": { - "name": "Glass Wand of Leng", - "desc": "The tip of this twisted clear glass wand is razorsharp. It can be wielded as a magic dagger that grants a +1 bonus to attack and damage rolls made with it. The wand weighs 4 pounds and is roughly 18 inches long. When you tap the wand, it emits a single, loud note which can be heard up to 20 feet away and does not stop sounding until you choose to silence it. This wand has 5 charges and regains 1d4 + 1 charges daily at dawn. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 17): arcane lock (2 charges), disguise self (1 charge), or tongues (3 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_glazed-battleaxe", - "fields": { - "name": "Glazed Battleaxe", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_glazed-greataxe", - "fields": { - "name": "Glazed Greataxe", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_glazed-greatsword", - "fields": { - "name": "Glazed Greatsword", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_glazed-handaxe", - "fields": { - "name": "Glazed Handaxe", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_glazed-longsword", - "fields": { - "name": "Glazed Longsword", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_glazed-rapier", - "fields": { - "name": "Glazed Rapier", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_glazed-scimitar", - "fields": { - "name": "Glazed Scimitar", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_glazed-shortsword", - "fields": { - "name": "Glazed Shortsword", - "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_gliding-cloak", - "fields": { - "name": "Gliding Cloak", - "desc": "By grasping the ends of the cloak while falling, you can glide up to 5 feet horizontally in any direction for every 1 foot you fall. You descend 60 feet per round but take no damage from falling while gliding in this way. A tailwind allows you to glide 10 feet per 1 foot descended, but a headwind forces you to only glide 5 feet per 2 feet descended.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_gloomflower-corsage", - "fields": { - "name": "Gloomflower Corsage", - "desc": "This black, six-petaled flower fits neatly on a garment's lapel or peeking out of a pocket. While wearing it, you have advantage on saving throws against being blinded, deafened, or frightened. While wearing the flower, you can use an action to speak one of three command words to invoke the corsage's power and cause one of the following effects: - When you speak the first command word, you gain blindsight out to a range of 120 feet for 1 hour.\n- When you speak the second command word, choose a target within 120 feet of you and make a ranged attack with a +7 bonus. On a hit, the target takes 3d6 psychic damage.\n- When you speak the third command word, your form shifts and shimmers. For 1 minute, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight. Each time you use the flower, one of its petals curls in on itself. You can't use the flower if all of its petals are curled. The flower uncurls 1d6 petals daily at dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_gloves-of-the-magister", - "fields": { - "name": "Gloves of the Magister", - "desc": "The backs of each of these black leather gloves are set with gold fittings as if to hold a jewel. While you wear the gloves, you can cast mage hand at will. You can affix an ioun stone into the fitting on a glove. While the stone is affixed, you gain the benefits of the stone as if you had it in orbit around your head. If you take an action to touch a creature, you can transfer the benefits of the ioun stone to that creature for 1 hour. While the creature is gifted the benefits, the stone turns gray and provides you with no benefits for the duration. You can use an action to end this effect and return power to the stone. The stone's benefits can also be dispelled from a creature as if they were a 7th-level spell. When the effect ends, the stone regains its color and provides you with its benefits once more.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_gloves-of-the-walking-shade", - "fields": { - "name": "Gloves of the Walking Shade", - "desc": "Each glove is actually comprised of three, black ivory rings (typically fitting the thumb, middle finger, and pinkie) which are connected to each other. The rings are then connected to an intricately-engraved onyx wrist cuff by a web of fine platinum chains and tiny diamonds. While wearing these gloves, you gain the following benefits: - You have resistance to necrotic damage.\n- You can spend one Hit Die during a short rest to remove one level of exhaustion instead of regaining hit points.\n- You can use an action to become a living shadow for 1 minute. For the duration, you can move through a space as narrow as 1 inch wide without squeezing, and you can take the Hide action as a bonus action while you are in dim light or darkness. Once used, this property of the gloves can't be used again until the next nightfall.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_gnawing-spear", - "fields": { - "name": "Gnawing Spear", - "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. When you roll a 20 on an attack roll made with this spear, its head animates, grows serrated teeth, and lodges itself in the target. While the spear is lodged in the target and you are wielding the spear, the target is grappled by you. At the start of each of your turns, the spear twists and grinds, dealing 2d6 piercing damage to the grappled target. If you release the spear, it remains lodged in the target, dealing damage each round as normal, but the target is no longer grappled by you. While the spear is lodged in a target, you can't make attacks with it. A creature, including the restrained target, can take its action to remove the spear by succeeding on a DC 15 Strength check. The target takes 1d6 piercing damage when the spear is removed. You can use an action to speak the spear's command word, causing it to dislodge itself and fall into an unoccupied space within 5 feet of the target.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_goblin-shield", - "fields": { - "name": "Goblin Shield", - "desc": "This shield resembles a snarling goblin's head. It has 3 charges and regains 1d3 expended charges daily at dawn. While wielding this shield, you can use a bonus action to expend 1 charge and command the goblin's head to bite a creature within 5 feet of you. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. On a hit, the target takes 2d4 piercing damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_goggles-of-firesight", - "fields": { - "name": "Goggles of Firesight", - "desc": "The lenses of these combination fleshy and plantlike goggles extend a few inches away from the goggles on a pair of tentacles. While wearing these lenses, you can see through lightly obscured and heavily obscured areas without your vision being obscured, if those areas are obscured by fire, smoke, or fog. Other effects that would obscure your vision, such as rain or darkness, affect you normally. When you fail a saving throw against being blinded, you can use a reaction to call on the power within the goggles. If you do so, you succeed on the saving throw instead. The goggles can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_goggles-of-shade", - "fields": { - "name": "Goggles of Shade", - "desc": "While wearing these dark lenses, you have advantage on Charisma (Deception) checks. If you have the Sunlight Sensitivity trait and wear these goggles, you no longer suffer the penalties of Sunlight Sensitivity while in sunlight.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_golden-bolt", - "fields": { - "name": "Golden Bolt", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. This crossbow doesn't have the loading property, and it doesn't require ammunition. Immediately after firing a bolt from this weapon, another golden bolt forms to take its place.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_gorgon-scale", - "fields": { - "name": "Gorgon Scale", - "desc": "The iron scales of this armor have a green-tinged iridescence. While wearing this armor, you gain a +1 bonus to AC, and you have immunity to the petrified condition. If you move at least 20 feet straight toward a creature and then hit it with a melee weapon attack on the same turn, you can use a bonus action to imbue the hit with some of the armor's petrifying magic. The target must make a DC 15 Constitution saving throw. On a failed save, the target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_granny-wax", - "fields": { - "name": "Granny Wax", - "desc": "Normally found in a small glass jar containing 1d3 doses, this foul-smelling, greasy yellow substance is made by hags in accordance with an age-old secret recipe. You can use an action to rub one dose of the wax onto an ordinary broom or wooden stick and transform it into a broom of flying for 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grasping-cap", - "fields": { - "name": "Grasping Cap", - "desc": "This cap is a simple, blue silk hat with a goose feather trim. While wearing this cap, you have advantage on Strength (Athletics) checks made to climb, and the cap deflects the first ranged attack made against you each round. In addition, when a creature attacks you while within 30 feet of you, it is illuminated and sheds red-hued dim light in a 50-foot radius until the end of its next turn. Any attack roll against an illuminated creature has advantage if the attacker can see it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grasping-cloak", - "fields": { - "name": "Grasping Cloak", - "desc": "Made of strips of black leather, this cloak always shines as if freshly oiled. The strips writhe and grasp at nearby creatures. While wearing this cloak, you can use a bonus action to command the strips to grapple a creature no more than one size larger than you within 5 feet of you. The strips make the grapple attack roll with a +7 bonus. On a hit, the target is grappled by the cloak, leaving your hands free to perform other tasks or actions that require both hands. However, you are still considered to be grappling a creature, limiting your movement as normal. The cloak can grapple only one creature at a time. Alternatively, you can use a bonus action to command the strips to aid you in grappling. If you do so, you have advantage on your next attack roll made to grapple a creature. While grappling a creature in this way, you have advantage on the contested check if a creature attempts to escape your grapple.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grasping-shield", - "fields": { - "name": "Grasping Shield", - "desc": "The boss at the center of this shield is a hand fashioned of metal. While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grave-reagent", - "fields": { - "name": "Grave Reagent", - "desc": "This luminous green concoction creates an undead servant. If you spend 1 minute anointing the corpse of a Small or Medium humanoid, this arcane solution imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a zombie under your control (the GM has the zombie's statistics). On each of your turns, you can use a bonus action to verbally command the zombie if it is within 60 feet of you. You decide what action the zombie will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the zombie only defends itself against hostile creatures. Once given an order, the zombie continues to follow it until its task is complete. The zombie is under your control for 24 hours, after which it stops obeying any command you've given it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grave-ward-breastplate", - "fields": { - "name": "Grave Ward Breastplate", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grave-ward-chain-mail", - "fields": { - "name": "Grave Ward Chain Mail", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grave-ward-chain-shirt", - "fields": { - "name": "Grave Ward Chain Shirt", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grave-ward-half-plate", - "fields": { - "name": "Grave Ward Half Plate", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grave-ward-hide", - "fields": { - "name": "Grave Ward Hide", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grave-ward-leather", - "fields": { - "name": "Grave Ward Leather", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grave-ward-padded", - "fields": { - "name": "Grave Ward Padded", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grave-ward-plate", - "fields": { - "name": "Grave Ward Plate", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grave-ward-ring-mail", - "fields": { - "name": "Grave Ward Ring Mail", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grave-ward-scale-mail", - "fields": { - "name": "Grave Ward Scale Mail", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grave-ward-splint", - "fields": { - "name": "Grave Ward Splint", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grave-ward-studded-leather", - "fields": { - "name": "Grave Ward Studded Leather", - "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_greater-potion-of-troll-blood", - "fields": { - "name": "Greater Potion of Troll Blood", - "desc": "When drink this potion, you regain 3 hit points at the start of each of your turns. After it has restored 30 hit points, the potion's effects end.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_greater-scroll-of-conjuring", - "fields": { - "name": "Greater Scroll of Conjuring", - "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_greatsword-of-fallen-saints", - "fields": { - "name": "Greatsword of Fallen Saints", - "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_greatsword-of-volsung", - "fields": { - "name": "Greatsword of Volsung", - "desc": "Legends tell of a dragon whose hide was impenetrable and so robust that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon’s name was lost, but its legacy remains. This sword is one of two items that were crafted to hold its heart. The black blade is adorned with glittering silver runes, and its guard has a shallow opening at the center with grooves connecting it to the first rune. The sword’s pommel is a large, clear crystal held fast by silver scales. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit a dragon with an attack using this sword, that creature takes an extra 1d6 slashing damage. Runes of Courage. You can’t be frightened while holding or carrying this sword. Fragment of Gram Awakened. You can use a bonus action to awaken a fragment of the spirit of the great wyrm that inhabits this blade. For 24 hours, you gain a +3 bonus to attack and damage rolls with this magic sword, and when you hit a dragon with an attack using this sword, that creature takes an extra 3d6 slashing damage. Once used, this property can’t be used again until 3 days have passed. If you have performed the Dragon Heart Ritual, you can use a bonus action to expend 2 of the sword’s charges to activate this property, and you can use this property as often as you want, as long as you have the charges to do so. Dragon Heart Ritual. If you are also attuned to the locket of dragon vitality (see page 152), you can drain 3 charges from the locket into the sword, turning the crystal pommel a deep red and rendering the locket broken and irreparable. Doing this requires a long rest where you also re-attune with the newly charged sword of volsung. Upon completing the Dragon Heart Ritual, the sword contains all remaining charges from the locket, and you gain the locket’s effects while holding or carrying the sword. When you are reduced to 0 hit points and trigger the locket’s temporary hit points, the sword isn’t destroyed, but you can’t trigger that effect again until 24 hours have passed. The sword regains all expended charges after you slay any dragon. For the purpose of this sword, “dragon” refers to any creature with the dragon type, including drakes and wyverns.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_green-mantle", - "fields": { - "name": "Green Mantle", - "desc": "This garment is made of living plants—mosses, vines, and grasses—interwoven into a light, comfortable piece of clothing. When you attune to this mantle, it forms a symbiotic relationship with you, sinking roots beneath your skin. While wearing the mantle, your hit point maximum is reduced by 5, and you gain the following benefits: - If you aren't wearing armor, your base Armor Class is 13 + your Dexterity modifier.\n- You have resistance to radiant damage.\n- You have immunity to the poisoned condition and poison damage that originates from a plant, moss, fungus, or plant creature.\n- As an action, you cause the mantle to produce 6 berries. It can have no more than 12 berries on it at one time. The berries have the same effect as berries produced by the goodberry spell. Unlike the goodberry spell, the berries retain their potency as long as they are not picked from the mantle. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_gremlins-paw", - "fields": { - "name": "Gremlin's Paw", - "desc": "This wand is fashioned from the fossilized forearm and claw of a gremlin. The wand has 5 charges. While holding the wand, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 15): bane (1 charge), bestow curse (3 charges), or hideous laughter (1 charge). The wand regains 1d4 + 1 expended charges daily at dusk. If you expend the wand's last charge, roll a d20. On a 20, you must succeed on a DC 15 Wisdom saving throw or become afflicted with short-term madness. On a 1, the rod crumbles into ashes and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grifters-deck", - "fields": { - "name": "Grifter's Deck", - "desc": "When you deal a card from this slightly greasy, well-used deck, you can choose any specific card to be on top of the deck, assuming it hasn't already been dealt. Alternatively, you can choose a general card of a specific value or suit that hasn't already been dealt.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_grim-escutcheon", - "fields": { - "name": "Grim Escutcheon", - "desc": "This blackened iron shield is adorned with the menacing relief of a monstrously gaunt skull. You gain a +1 bonus to AC while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. While holding this shield, you can use a bonus action to speak its command word to cast the fear spell (save DC 13). The shield can't be used this way again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_gritless-grease", - "fields": { - "name": "Gritless Grease", - "desc": "This small, metal jar, 3 inches in diameter, holds 1d4 + 1 doses of a pungent waxy oil. As an action, one dose can be applied to or swallowed by a clockwork creature or device. The clockwork creature or device ignores difficult terrain, and magical effects can't reduce its speed for 8 hours. As an action, the clockwork creature, or a creature holding a clockwork device, can gain the effect of the haste spell until the end of its next turn (no concentration required). The effects of the haste spell melt the grease, ending all its effects at the end of the spell's duration.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hair-pick-of-protection", - "fields": { - "name": "Hair Pick of Protection", - "desc": "This hair pick has glittering teeth that slide easily into your hair, making your hair look perfectly coiffed and battle-ready. Though typically worn in hair, you can also wear the pick as a brooch or cloak clasp. While wearing this pick, you gain a +2 bonus to AC, and you have advantage on saving throws against spells. In addition, the pick magically boosts your self-esteem and your confidence in your ability to overcome any challenge, making you immune to the frightened condition.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_half-plate-of-warding-1", - "fields": { - "name": "Half Plate of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_half-plate-of-warding-2", - "fields": { - "name": "Half Plate of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_half-plate-of-warding-3", - "fields": { - "name": "Half Plate of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hallowed-effigy", - "fields": { - "name": "Hallowed Effigy", - "desc": "This foot-long totem, crafted from the bones and skull of a Tiny woodland beast bound in thin leather strips, serves as a boon for you and your allies and as a stinging trap to those who threaten you. The totem has 10 charges, and it regains 1d6 + 4 expended charges daily at dawn. If the last charge is expended, it can't regain charges again until a druid performs a 24-hour ritual, which involves the sacrifice of a Tiny woodland beast. You can use an action to secure the effigy on any natural organic substrate (such as dirt, mud, grass, and so on). While secured in this way, it pulses with primal energy on initiative count 20 each round, expending 1 charge. When it pulses, you and each creature friendly to you within 15 feet of the totem regains 1d6 hit points, and each creature hostile to you within 15 feet of the totem must make a DC 15 Constitution saving throw, taking 1d6 necrotic damage on a failed save, or half as much damage on a successful one. It continues to pulse each round until you pick it up, it runs out of charges, or it is destroyed. The totem has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If it drops to 0 hit points, it is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hallucinatory-dust", - "fields": { - "name": "Hallucinatory Dust", - "desc": "This small packet contains black pollen from a Gloomflower (see Creature Codex). Hazy images swirl around the pollen when observed outside the packet. There is enough of it for one use. When you use an action to blow the dust from your palm, each creature in a 30-foot cone must make a DC 15 Wisdom saving throw. On a failure, a creature sees terrible visions, manifesting its fears and anxieties for 1 minute. While affected, it takes 2d6 psychic damage at the start of each of its turns and must spend its action to make one melee attack against a creature within 5 feet of it, other than you or itself. If the creature can't make a melee attack, it takes the Dodge action. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. On a success, a creature becomes incapacitated until the end of its next turn as the visions fill its mind then quickly fade. A creature reduced to 0 hit points by the dust's psychic damage falls unconscious and is stable. When the creature regains consciousness, it is permanently plagued by hallucinations and has disadvantage on ability checks until cured by a remove curse spell or similar magic.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hammer-of-decrees", - "fields": { - "name": "Hammer of Decrees", - "desc": "This adamantine hammer was part of a set of smith's tools used to create weapons of law for an ancient dwarven civilization. It is pitted and appears damaged, and its oak handle is split and bound with cracking hide. While attuned to this hammer, you have advantage on ability checks using smith's tools, and the time it takes you to craft an item with your smith's tools is halved.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hammer-of-throwing", - "fields": { - "name": "Hammer of Throwing", - "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. In addition, when you throw the hammer, it returns to your hand at the end of your turn. If you have no hand free, it falls to the ground at your feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_handy-scroll-quiver", - "fields": { - "name": "Handy Scroll Quiver", - "desc": "This belt quiver is wide enough to pass a rolled scroll through the opening. Containing an extra dimensional space, the quiver can hold up to 25 scrolls and weighs 1 pound, regardless of its contents. Placing a scroll in the quiver follows the normal rules for interacting with objects. Retrieving a scroll from the quiver requires you to use an action. When you reach into the quiver for a specific scroll, that scroll is always magically on top. The quiver has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the quiver ruptures and is destroyed. If the quiver is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If a breathing creature is placed within the quiver, the creature can survive for up to 5 minutes, after which time it begins to suffocate. Placing the quiver inside an extradimensional space created by a bag of holding, handy haversack, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hangmans-noose", - "fields": { - "name": "Hangman's Noose", - "desc": "Certain hemp ropes used in the execution of final justice can affect those beyond the reach of normal magics. This noose has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the hold monster spell from it. Unlike the standard version of this spell, though, the magic of the hangman's noose affects only undead. It regains 1d3 charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hardening-polish", - "fields": { - "name": "Hardening Polish", - "desc": "This gray polish is viscous and difficult to spread. The polish can coat one metal weapon or up to 10 pieces of ammunition. Applying the polish takes 1 minute. For 1 hour, the coated item hardens and becomes stronger, and it counts as an adamantine weapon for the purpose of overcoming resistance and immunity to attacks and damage not made with adamantine weapons.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_harmonizing-instrument", - "fields": { - "name": "Harmonizing Instrument", - "desc": "Any stringed instrument can be a harmonizing instrument, and you must be proficient with stringed instruments to use a harmonizing instrument. This instrument has 3 charges for the following properties. The instrument regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hat-of-mental-acuity", - "fields": { - "name": "Hat of Mental Acuity", - "desc": "This well-crafted cap appears to be standard wear for academics. Embroidered on the edge of the inside lining in green thread are sigils. If you cast comprehend languages on them, they read, “They that are guided go not astray.” While wearing the hat, you have advantage on all Intelligence and Wisdom checks. If you are proficient in an Intelligence or Wisdom-based skill, you double your proficiency bonus for the skill.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hazelwood-wand", - "fields": { - "name": "Hazelwood Wand", - "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains all expended charges daily at dawn. When you cast the goodberry spell while using this wand as your spellcasting focus, you can expend 1 of the wand's charges to transform the berries into hazelnuts, which restore 2 hit points instead of 1. The spell is otherwise unchanged. In addition, when you cast a spell that deals lightning damage while using this wand as your spellcasting focus, the spell deals 1 extra lightning damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_headdress-of-majesty", - "fields": { - "name": "Headdress of Majesty", - "desc": "This elaborate headpiece is adorned with small gemstones and thin strips of gold that frame your head like a radiant halo. While you wear this headdress, you have advantage on Charisma (Intimidation) and Charisma (Persuasion) checks. The headdress has 5 charges for the following properties. It regains all expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the headdress becomes a nonmagical, tawdry ornament of cheap metals and paste gems.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_headrest-of-the-cattle-queens", - "fields": { - "name": "Headrest of the Cattle Queens", - "desc": "This polished and curved wooden headrest is designed to keep the user's head comfortably elevated while sleeping. If you sleep at least 6 hours as part of a long rest while using the headrest, you regain 1 additional spent Hit Die, and your exhaustion level is reduced by 2 (rather than 1) when you finish the long rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_headscarf-of-the-oasis", - "fields": { - "name": "Headscarf of the Oasis", - "desc": "This dun-colored, well-worn silk wrap is long enough to cover the face and head of a Medium or smaller humanoid, barely revealing the eyes. While wearing this headscarf over your mouth and nose, you have advantage on ability checks and saving throws against being blinded and against extended exposure to hot weather and hot environments. Pulling the headscarf on or off your mouth and nose requires an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_healer-shabti", - "fields": { - "name": "Healer Shabti", - "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_healthful-honeypot", - "fields": { - "name": "Healthful Honeypot", - "desc": "This clay honeypot weighs 10 pounds. A sweet aroma wafts constantly from it, and it produces enough honey to feed up to 12 humanoids. Eating the honey restores 1d8 hit points, and the honey provides enough nourishment to sustain a humanoid for one day. Once 12 doses of the honey have been consumed, the honeypot can't produce more honey until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_heat-stone", - "fields": { - "name": "Heat Stone", - "desc": "Prized by reptilian humanoids, this magic stone is warm to the touch. While carrying this stone, you are comfortable in and can tolerate temperatures as low as –20 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as –50 degrees Fahrenheit.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_heliotrope-heart", - "fields": { - "name": "Heliotrope Heart", - "desc": "This polished orb of dark-green stone is latticed with pulsing crimson inclusions that resemble slowly dilating spatters of blood. While attuned to this orb, your hit point maximum can't be reduced by the bite of a vampire, vampire spawn, or other vampiric creature. In addition, while holding this orb, you can use an action to speak its command word and cast the 2nd-level version of the false life spell. Once used, this property can't be used again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_helm-of-the-slashing-fin", - "fields": { - "name": "Helm of the Slashing Fin", - "desc": "While wearing this helm, you can use an action to speak its command word to gain the ability to breathe underwater, but you lose the ability to breathe air. You can speak its command word again or remove the helm as an action to end this effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hewers-draught", - "fields": { - "name": "Hewer's Draught", - "desc": "When you drink this potion, you have advantage on attack rolls made with weapons that deal piercing or slashing damage for 1 minute. This potion's translucent amber liquid glimmers when agitated.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hexen-blade", - "fields": { - "name": "Hexen Blade", - "desc": "The colorful surface of this sleek adamantine shortsword exhibits a perpetually shifting, iridescent sheen. You gain a +1 bonus to attack and damage rolls made with this magic weapon. The sword has 5 charges and regains 1d4 + 1 charges daily at dawn. While holding it, you can use an action and expend 1 or more of its charges to cast one of the following spells from it, using spell save DC 15: disguise self (1 charge), hypnotic pattern (3 charges), or mirror image (2 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hidden-armament", - "fields": { - "name": "Hidden Armament", - "desc": "While holding this magic weapon, you can use an action to transform it into a tattoo on the palm of your hand. You can use a bonus action to transform the tattoo back into a weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hide-armor-of-the-leaf", - "fields": { - "name": "Hide Armor of the Leaf", - "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hide-armor-of-warding-1", - "fields": { - "name": "Hide Armor of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hide-armor-of-warding-2", - "fields": { - "name": "Hide Armor of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hide-armor-of-warding-3", - "fields": { - "name": "Hide Armor of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_holy-verdant-bat-droppings", - "fields": { - "name": "Holy Verdant Bat Droppings", - "desc": "This ceramic jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture with a pungent, muddy reek. The jar and its contents weigh 1/2 pound. Derro matriarchs and children gather a particular green bat guano to cure various afflictions, and the resulting glowing green paste can be spread on the skin to heal various conditions. As an action, one dose of the droppings can be swallowed or applied to the skin. The creature that receives it gains one of the following benefits: - Cured of paralysis or petrification\n- Reduces exhaustion level by one\n- Regains 50 hit points", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_honey-lamp", - "fields": { - "name": "Honey Lamp", - "desc": "Honey lamps, made from glowing honey encased in beeswax, shed light as a lamp. Though the lamps are often found in the shape of a globe, the honey can also be sealed inside stone or wood recesses. If the wax that shields the honey is broken or smashed, the honey crystallizes in 7 days and ceases to glow. Eating the honey while it is still glowing grants darkvision out to a range of 30 feet for 1 week and 1 day.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_honey-of-the-warped-wildflowers", - "fields": { - "name": "Honey of the Warped Wildflowers", - "desc": "This spirit honey is made from wildflowers growing in an area warped by magic, such as the flowers growing at the base of a wizard's tower or growing in a magical wasteland. When you consume this honey, you have resistance to psychic damage, and you have advantage on Intelligence saving throws. In addition, you can use an action to warp reality around one creature you can see within 60 feet of you. The target must succeed on a DC 15 Intelligence saving throw or be bewildered for 1 minute. At the start of a bewildered creature's turn, it must roll a die. On an even result, the creature can act normally. On an odd result, the creature is incapacitated until the start of its next turn as it becomes disoriented by its surroundings and unable to fully determine what is real and what isn't. You can't warp the reality around another creature in this way again until you finish a long rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_honey-trap", - "fields": { - "name": "Honey Trap", - "desc": "This jar is made of beaten metal and engraved with honeybees. It has 7 charges, and it regains 1d6 + 1 expended charges daily at dawn. If you expend the jar's last charge, roll a d20. On a 1, the jar shatters and loses all its magical properties. While holding the jar, you can use an action to expend 1 charge to hurl a glob of honey at a target within 30 feet of you. Make a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the glob expands, and the creature is restrained. A creature restrained by the honey can use an action to make a DC 15 Strength (Athletics) or Dexterity (Acrobatics) check (target's choice). On a success, the creature is no longer restrained by the honey.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_honeypot-of-awakening", - "fields": { - "name": "Honeypot of Awakening", - "desc": "If you place 1 pound of honey inside this pot, the honey transforms into an ochre jelly after 24 hours. The jelly remains in a dormant state within the pot until you dump it out. You can use an action to dump the jelly from the pot in an unoccupied space within 5 feet of you. Once dumped, the ochre jelly is hostile to all creatures, including you. Only one ochre jelly can occupy the pot at a time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_howling-rod", - "fields": { - "name": "Howling Rod", - "desc": "This sturdy, iron rod is topped with the head of a howling wolf with red carnelians for eyes. The rod has 5 charges for the following properties, and it regains 1d4 + 1 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_humble-cudgel-of-temperance", - "fields": { - "name": "Humble Cudgel of Temperance", - "desc": "This simple, polished club has a studded iron band around one end. When you attack a poisoned creature with this magic weapon, you have advantage on the attack roll. When you roll a 20 on an attack roll made with this weapon, the target becomes poisoned for 1 minute. If the target was already poisoned, it becomes incapacitated instead. The target can make a DC 13 Constitution saving throw at the end of each of its turns, ending the poisoned or incapacitated condition on itself on a success. Formerly a moneylender with a heart of stone and a small army of brutal thugs, Faustin the Drunkard awoke one day with a punishing hangover that seemed never-ending. He took this as a sign of punishment from the gods, not for his violence and thievery, but for his taste for the grape, in abundance. He decided all problems stemmed from the “demon” alcohol, and he became a cleric. No less brutal than before, he and his thugs targeted public houses, ale makers, and more. In his quest to rid the world of alcohol, he had the humble cudgel of temperance made and blessed with terrifying power. Now long since deceased, his simple, humble-appearing club continues to wreck havoc wherever it turns up.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hunters-charm-1", - "fields": { - "name": "Hunter's Charm (+1)", - "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hunters-charm-2", - "fields": { - "name": "Hunter's Charm (+2)", - "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_hunters-charm-3", - "fields": { - "name": "Hunter's Charm (+3)", - "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_iceblink-greatsword", - "fields": { - "name": "Iceblink Greatsword", - "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_iceblink-longsword", - "fields": { - "name": "Iceblink Longsword", - "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_iceblink-rapier", - "fields": { - "name": "Iceblink Rapier", - "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_iceblink-scimitar", - "fields": { - "name": "Iceblink Scimitar", - "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_iceblink-shortsword", - "fields": { - "name": "Iceblink Shortsword", - "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_impact-club", - "fields": { - "name": "Impact Club", - "desc": "This magic weapon has 3 charges and regains 1d3 expended charges daily at dawn. When you hit a target on your turn, you can take a bonus action to spend 1 charge and attempt to shove the target. The club grants you a +1 bonus on your Strength (Athletics) check to shove the target. If you roll a 20 on your attack roll with the club, you have advantage on your Strength (Athletics) check to shove the target, and you can push the target up to 10 feet away.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_impaling-lance", - "fields": { - "name": "Impaling Lance", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_impaling-morningstar", - "fields": { - "name": "Impaling Morningstar", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_impaling-pike", - "fields": { - "name": "Impaling Pike", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_impaling-rapier", - "fields": { - "name": "Impaling Rapier", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_impaling-warpick", - "fields": { - "name": "Impaling Warpick", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_incense-of-recovery", - "fields": { - "name": "Incense of Recovery", - "desc": "This block of perfumed incense appears to be normal, nonmagical incense until lit. The incense burns for 1 hour and gives off a lavender scent, accompanied by pale mauve smoke that lightly obscures the area within 30 feet of it. Each spellcaster that takes a short rest in the smoke regains one expended spell slot at the end of the short rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_interplanar-paint", - "fields": { - "name": "Interplanar Paint", - "desc": "This black, tarry substance can be used to paint a single black doorway on a flat surface. A pot contains enough paint to create one doorway. While painting, you must concentrate on a plane of existence other than the one you currently occupy. If you are not interrupted, the doorway can be painted in 5 minutes. Once completed, the painting opens a two-way portal to the plane you imagined. The doorway is mirrored on the other plane, often appearing on a rocky face or the wall of a building. The doorway lasts for 1 week or until 5 gallons of water with flecks of silver worth at least 2,000 gp is applied to one side of the door.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ironskin-oil", - "fields": { - "name": "Ironskin Oil", - "desc": "This grayish fluid is cool to the touch and slightly gritty. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature has resistance to piercing and slashing damage for 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ivy-crown-of-prophecy", - "fields": { - "name": "Ivy Crown of Prophecy", - "desc": "While wearing this ivy, filigreed crown, you can use an action to cast the divination spell from it. The crown can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_jewelers-anvil", - "fields": { - "name": "Jeweler's Anvil", - "desc": "This small, foot-long anvil is engraved with images of jewelry in various stages of the crafting process. It weighs 10 pounds and can be mounted on a table or desk. You can use a bonus action to speak its command word and activate it, causing it to warm any nonferrous metals (including their alloys, such as brass or bronze). While you remain within 5 feet of the anvil, you can verbally command it to increase or decrease the temperature, allowing you to soften or melt any kind of nonferrous metal. While activated, the anvil remains warm to the touch, but its heat affects only nonferrous metal. You can use a bonus action to repeat the command word to deactivate the anvil. If you use the anvil while making any check with jeweler's tools or tinker's tools, you can double your proficiency bonus. If your proficiency bonus is already doubled, you have advantage on the check instead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_jungle-mess-kit", - "fields": { - "name": "Jungle Mess Kit", - "desc": "This crucial piece of survival gear guarantees safe use of the most basic of consumables. The hinged metal container acts as a cook pot and opens to reveal a cup, plate, and eating utensils. This kit renders any spoiled, rotten, or even naturally poisonous food or drink safe to consume. It can purify only mundane, natural effects. It has no effect on food that is magically spoiled, rotted, or poisoned, and it can't neutralize brewed poisons, venoms, or similarly manufactured toxins. Once it has purified 3 cubic feet of food and drink, it can't be used to do so again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_justicars-mask", - "fields": { - "name": "Justicar's Mask", - "desc": "This stern-faced mask is crafted of silver. While wearing the mask, your gaze can root enemies to the spot. When a creature that can see the mask starts its turn within 30 feet of you, you can use a reaction to force it to make a DC 15 Wisdom saving throw, if you can see the creature and aren't incapacitated. On a failure, the creature is restrained. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Otherwise, the condition lasts until removed with the dispel magic spell or until you end it (no action required). Justicars are arbiters of law and order, operating independently of any official city guard or watch divisions. They are recognizable by their black, hooded robes, silver masks, and the rods they carry as weapons. These stern sentinels are overseen by The Magister, a powerful wizard of whom little is known other than their title. The Magister has made it their duty to oversee order in the city and executes their plans through the Justicars, giving them the Magister's mark, a signet ring, as a symbol of their authority. While some officers and members of the watch may be resentful of the Justicars' presence, many are grateful for their aid, especially in situations that could require magic. Justicar's are a small, elite group, typically acting as solo agents, though extremely dangerous situations bring them together in pairs or larger groups as needed. The Justicars are outfitted with three symbols of authority that are also imbued with power: their masks, rods, and rings. Each by itself is a useful item, but they are made stronger when worn together. The combined powers of this trinity of items make a Justicar a formidable force in the pursuit of law and order.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_keffiyeh-of-serendipitous-escape", - "fields": { - "name": "Keffiyeh of Serendipitous Escape", - "desc": "This checkered cotton headdress is indistinguishable from the mundane scarves worn by the desert nomads. As an action, you can remove the headdress, spread it open on the ground, and speak the command word. The keffiyeh transforms into a 3-foot by 5-foot carpet of flying which moves according to your spoken directions provided that you are within 30 feet of it. Speaking the command word a second time transforms the carpet back into a headdress again.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_knockabout-billet", - "fields": { - "name": "Knockabout Billet", - "desc": "This stout, oaken cudgel helps you knock your opponents to the ground or away from you. When you hit a creature with this magic weapon, you can shove the target as part of the same attack, using your attack roll in place of a Strength (Athletics) check. The weapon deals damage as normal, regardless of the result of the shove. This property of the club can be used no more than once per hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_kobold-firework", - "fields": { - "name": "Kobold Firework", - "desc": "These small pouches and cylinders are filled with magical powders and reagents, and they each have a small fuse protruding from their closures. You can use an action to light a firework then throw it up to 30 feet. The firework activates immediately or on initiative count 20 of the following round, as detailed below. Once a firework’s effects end, it is destroyed. A firework can’t be lit underwater, and submersion in water destroys a firework. A lit firework can be destroyed early by dousing it with at least 1 gallon of water.\n Blinding Goblin-Cracker (Uncommon). This bright yellow firework releases a blinding flash of light on impact. Each creature within 15 feet of where the firework landed and that can see it must succeed on a DC 13 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n Deafening Kobold-Barker (Uncommon). This firework consists of several tiny green cylinders strung together and bursts with a loud sound on impact. Each creature within 15 feet of where the firework landed and that can hear it must succeed on a DC 13 Constitution saving throw or be deafened for 1 minute. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n Enchanting Elf-Fountain (Uncommon). This purple pyramidal firework produces a fascinating and colorful shower of sparks for 1 minute. The shower of sparks starts on the round after you throw it. While the firework showers sparks, each creature that enters or starts its turn within 30 feet of the firework must make a DC 13 Wisdom saving throw. On a failed save, the creature has disadvantage on Wisdom (Perception) checks made to perceive any creature or object other than the firework until the start of its next turn.\n Fairy Sparkler (Common). This narrow firework is decorated with stars and emits a bright, sparkling light for 1 minute. It starts emitting light on the round after you throw it. The firework sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the firework’s bright light.\n Priest Light (Rare). This silver cylinder firework produces a tall, argent flame and numerous golden sparks for 10 minutes. The flame appears on the round after you throw it. The firework sheds bright light in a 30-foot radius and dim light for an additional 30 feet. An undead creature can’t willingly enter the firework’s bright light by nonmagical means. If the undead creature tries to use teleportation or similar interplanar travel to do so, it must first succeed on a DC 15 Charisma saving throw. If an undead creature is in the bright light when it appears, the creature must succeed on a DC 15 Wisdom saving throw or be compelled to leave the bright light. It won’t move into any obviously deadly hazard, such as a fire or pit, but it will provoke opportunity attacks to move out of the bright light. In addition, each non-undead creature in the bright light can’t be charmed, frightened, or possessed by an undead creature.\n Red Dragon’s Breath (Very Rare). This firework is wrapped in gold leaf and inscribed with scarlet runes, and it erupts into a vertical column of fire on impact. Each creature in a 10-foot-radius, 60-foot-high cylinder centered on the point of impact must make a DC 17 Dexterity saving throw, taking 10d6 fire damage on a failed save, or half as much damage on a successful one.\n Snake Fountain (Rare). This short, wide cylinder is red, yellow, and black with a scale motif, and it produces snakes made of ash for 1 minute. It starts producing snakes on the round after you throw it. The firework creates 1 poisonous snake each round. The snakes are friendly to you and your companions. Roll initiative for the snakes as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don’t issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The snakes remain for 10 minutes, until you dismiss them as a bonus action, or until they are doused with at least 1 gallon of water.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_kraken-clutch-ring", - "fields": { - "name": "Kraken Clutch Ring", - "desc": "This green copper ring is etched with the image of a kraken with splayed tentacles. The ring has 5 charges, and it regains 1d4 + 1 expended charges daily at dawn, as long as it was immersed in water for at least 1 hour since the previous dawn. If the ring has at least 1 charge, you have advantage on grapple checks. While wearing this ring, you can expend 1 or more of its charges to cast one of the following spells from it, using spell save DC 15: black tentacles (2 charges), call lightning (1 charge), or control weather (4 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_kyshaarths-fang", - "fields": { - "name": "Kyshaarth's Fang", - "desc": "This dagger's blade is composed of black, bone-like material. Tales suggest the weapon is fashioned from a Voidling's (see Tome of Beasts) tendril barb. When you hit with an attack using this magic weapon, the target takes an extra 2d6 necrotic damage. If you are in dim light or darkness, you regain a number of hit points equal to half the necrotic damage dealt.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_labrys-of-the-raging-bull-battleaxe", - "fields": { - "name": "Labrys of the Raging Bull (Battleaxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you wield the axe, you have advantage on Strength (Athletics) checks to shove a creature, and you can shove a creature up to two sizes larger than you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_labrys-of-the-raging-bull-greataxe", - "fields": { - "name": "Labrys of the Raging Bull (Greataxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you wield the axe, you have advantage on Strength (Athletics) checks to shove a creature, and you can shove a creature up to two sizes larger than you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_language-pyramid", - "fields": { - "name": "Language Pyramid", - "desc": "Script from dozens of languages flows across this sandstone pyramid's surface. While holding or carrying the pyramid, you understand the literal meaning of any spoken language that you hear. In addition, you understand any written language that you see, but you must be touching the surface on which the words are written. It takes 1 minute to read one page of text. The pyramid has 3 charges, and it regains 1d3 expended charges daily at dawn. You can use an action to expend 1 of its charges to imbue yourself with magical speech for 1 hour. For the duration, any creature that knows at least one language and that can hear you understands any words you speak. In addition, you can use an action to expend 1 of the pyramid's charges to imbue up to six creatures within 30 feet of you with magical understanding for 1 hour. For the duration, each target can understand any spoken language that it hears.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_lantern-of-auspex", - "fields": { - "name": "Lantern of Auspex", - "desc": "This elaborate lantern is covered in simple glyphs, and its glass panels are intricately etched. Two of the panels depict a robed woman holding out a single hand, while the other two panels depict the same woman with her face partially obscured by a hand of cards. The lantern's magic is activated when it is lit, which requires an action. Once lit, the lantern sheds bright light in a 30-foot radius and dim light for an additional 30 feet for 1 hour. You can use an action to open or close one of the glass panels on the lantern. If you open a panel, a vision of a random event that happened or that might happen plays out in the light's area. Closing a panel stops the vision. The visions are shown as nondescript smoky apparitions that play out silently in the lantern's light. At the GM's discretion, the vision might change to a different event each 1 minute that the panel remains open and the lantern lit. Once used, the lantern can't be used in this way again until 7 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_lantern-of-judgment", - "fields": { - "name": "Lantern of Judgment", - "desc": "This mithral and gold lantern is emblazoned with a sunburst symbol. While holding the lantern, you have advantage on Wisdom (Insight) and Intelligence (Investigation) checks. As a bonus action, you can speak a command word to cause one of the following effects: - The lantern casts bright light in a 60-foot cone and dim light for an additional 60 feet. - The lantern casts bright light in a 30-foot radius and dim light for an additional 30 feet. - The lantern sheds dim light in a 5-foot radius.\n- Douse the lantern's light. When you cause the lantern to shed bright light, you can speak an additional command word to cause the light to become sunlight. The sunlight lasts for 1 minute after which the lantern goes dark and can't be used again until the next dawn. During this time, the lantern can function as a standard hooded lantern if provided with oil.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_lantern-of-selective-illumination", - "fields": { - "name": "Lantern of Selective Illumination", - "desc": "This brass lantern is fitted with round panels of crown glass and burns for 6 hours on one 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. During a short rest, you can choose up to three creatures to be magically linked by the lantern. When the lantern is lit, its light can be perceived only by you and those linked creatures. To anyone else, the lantern appears dark and provides no illumination.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_larkmail", - "fields": { - "name": "Larkmail", - "desc": "While wearing this armor, you gain a +1 bonus to AC. The links of this mail have been stained to create the optical illusion that you are wearing a brown-and-russet feathered tunic. While you wear this armor, you have advantage on Charisma (Performance) checks made with an instrument. In addition, while playing an instrument, you can use a bonus action and choose any number of creatures within 30 feet of you that can hear your song. Each target must succeed on a DC 15 Charisma saving throw or be charmed by you for 1 minute. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_last-chance-quiver", - "fields": { - "name": "Last Chance Quiver", - "desc": "This quiver holds 20 arrows. However, when you draw and fire the last arrow from the quiver, it magically produces a 21st arrow. Once this arrow has been drawn and fired, the quiver doesn't produce another arrow until the quiver has been refilled and another 20 arrows have been drawn and fired.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_leaf-bladed-greatsword", - "fields": { - "name": "Leaf-Bladed Greatsword", - "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_leaf-bladed-longsword", - "fields": { - "name": "Leaf-Bladed Longsword", - "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_leaf-bladed-rapier", - "fields": { - "name": "Leaf-Bladed Rapier", - "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_leaf-bladed-scimitar", - "fields": { - "name": "Leaf-Bladed Scimitar", - "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_leaf-bladed-shortsword", - "fields": { - "name": "Leaf-Bladed Shortsword", - "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_least-scroll-of-conjuring", - "fields": { - "name": "Least Scroll of Conjuring", - "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_leather-armor-of-the-leaf", - "fields": { - "name": "Leather Armor of the Leaf", - "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_leather-armor-of-warding-1", - "fields": { - "name": "Leather Armor of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_leather-armor-of-warding-2", - "fields": { - "name": "Leather Armor of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_leather-armor-of-warding-3", - "fields": { - "name": "Leather Armor of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_leonino-wings", - "fields": { - "name": "Leonino Wings", - "desc": "This cloak is decorated with the spotted white and brown pattern of a barn owl's wing feathers. While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of a Leoninos (see Creature Codex) owl-like feathered wings until you repeat the command word as an action. The wings give you a flying speed equal to your walking speed, and you have advantage on Dexterity (Stealth) checks made while flying in forests and urban settings. In addition, when you fly out of an enemy's reach, you don't provoke opportunity attacks. You can use the cloak to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land. The cloak regains 2 hours of flying capability for every 12 hours it isn't in use.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_lesser-scroll-of-conjuring", - "fields": { - "name": "Lesser Scroll of Conjuring", - "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_lifeblood-gear", - "fields": { - "name": "Lifeblood Gear", - "desc": "As an action, you can attach this tiny bronze gear to a pile of junk or other small collection of mundane objects and create a Tiny or Small mechanical servant. This servant uses the statistics of a beast with a challenge rating of 1/4 or lower, except it has immunity to poison damage and the poisoned condition, and it can't be charmed or become exhausted. If it participates in combat, the servant lasts for up to 5 rounds or until destroyed. If commanded to perform mundane tasks, such as fetching items, cleaning, or other similar task, it lasts for up to 5 hours or until destroyed. Once affixed to the servant, the gear pulsates like a beating heart. If the gear is removed, you lose control of the servant, which then attacks indiscriminately for up to 5 rounds or until destroyed. Once the duration expires or the servant is destroyed, the gear becomes a nonmagical gear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_lightning-rod", - "fields": { - "name": "Lightning Rod", - "desc": "This rod is made from the blackened wood of a lightning-struck tree and topped with a spike of twisted iron. It functions as a magic javelin that grants a +1 bonus to attack and damage rolls made with it. While holding it, you are immune to lightning damage, and each creature within 5 feet of you has resistance to lightning damage. The rod can hold up to 6 charges, but it has 0 charges when you first attune to it. Whenever you are subjected to lightning damage, the rod gains 1 charge. While the rod has 6 charges, you have resistance to lightning damage instead of immunity. The rod loses 1d6 charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_linguists-cap", - "fields": { - "name": "Linguist's Cap", - "desc": "While wearing this simple hat, you have the ability to speak and read a single language. Each cap has a specific language associated with it, and the caps often come in styles or boast features unique to the cultures where their associated languages are most prominent. The GM chooses the language or determines it randomly from the lists of standard and exotic languages.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_liquid-courage", - "fields": { - "name": "Liquid Courage", - "desc": "This magical cordial is deep red and smells strongly of fennel. You have advantage on the next saving throw against being frightened. The effect ends after you make such a saving throw or when 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_liquid-shadow", - "fields": { - "name": "Liquid Shadow", - "desc": "The contents of this bottle are inky black and seem to absorb the light. The dark liquid can cover a single Small or Medium creature. Applying the liquid takes 1 minute. For 1 hour, the coated creature has advantage on Dexterity (Stealth) checks. Alternately, you can use an action to hurl the bottle up to 20 feet, shattering it on impact. Magical darkness spreads from the point of impact to fill a 15-foot-radius sphere for 1 minute. This darkness works like the darkness spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_living-juggernaut", - "fields": { - "name": "Living Juggernaut", - "desc": "This broad, bulky suit of plate is adorned with large, blunt spikes and has curving bull horns affixed to its helm. While wearing this armor, you gain a +1 bonus to AC, and difficult terrain doesn't cost you extra movement.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_living-stake", - "fields": { - "name": "Living Stake", - "desc": "Fashioned from mandrake root, this stake longs to taste the heart's blood of vampires. Make a melee attack against a vampire in range, treating the stake as an improvised weapon. On a hit, the stake attaches to a vampire's chest. At the end of the vampire's next turn, roots force their way into the vampire's heart, negating fast healing and preventing gaseous form. If the vampire is reduced to 0 hit points while the stake is attached to it, it is immobilized as if it had been staked. A creature can take its action to remove the stake by succeeding on a DC 17 Strength (Athletics) check. If it is removed from the vampire's chest, the stake is destroyed. The stake has no effect on targets other than vampires.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_lockbreaker", - "fields": { - "name": "Lockbreaker", - "desc": "You can use this stiletto-bladed dagger to open locks by using an action and making a Strength check. The DC is 5 less than the DC to pick the lock (minimum DC 10). On a success, the lock is broken.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_locket-of-dragon-vitality", - "fields": { - "name": "Locket of Dragon Vitality", - "desc": "Legends tell of a dragon whose hide was impenetrable and so tenacious that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon's name was lost, but its legacy remains. This magic amulet is one of two items that were crafted to hold its heart. An intricate engraving of a warrior's sword piercing a dragon's chest is detailed along the front of this untarnished silver locket. Within the locket is a clear crystal vial with a pulsing piece of a dragon's heart. The pulses become more frequent when you are close to death. Attuning to the locket requires you to mix your blood with the blood within the vial. The vial holds 3 charges of dragon blood that are automatically expended when you reach certain health thresholds. The locket regains 1 expended charge for each vial of dragon blood you place in the vial inside the locket up to a maximum of 3 charges. For the purpose of this locket, “dragon” refers to any creature with the dragon type, including drakes and wyverns. While wearing or carrying the locket, you gain the following effects: - When you reach 0 hit points, but do not die outright, the vial breaks and the dragon heart stops pulsing, rendering the item broken and irreparable. You immediately gain temporary hit points equal to your level + your Constitution modifier. If the locket has at least 1 charge of dragon blood, it does not break, but this effect can't be activated again until 3 days have passed. - When you are reduced to half of your maximum hit points, the locket expends 1 charge of dragon blood, and you become immune to any type of blood loss effect, such as the blood loss from a stirge's Blood Drain, for 1d4 + 1 hours. Any existing blood loss effects end immediately when this activates.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_locket-of-remembrance", - "fields": { - "name": "Locket of Remembrance", - "desc": "You can place a small keepsake of a creature, such as a miniature portrait, a lock of hair, or similar item, within the locket. The keepsake must be willingly given to you or must be from a creature personally connected to you, such as a relative or lover.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_locksmiths-oil", - "fields": { - "name": "Locksmith's Oil", - "desc": "This shimmering oil can be applied to a lock. Applying the oil takes 1 minute. For 1 hour, any creature that makes a Dexterity check to pick the lock using thieves' tools rolls a d4 ( 1d4) and adds the number rolled to the check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_lodestone-caltrops", - "fields": { - "name": "Lodestone Caltrops", - "desc": "This small gray pouch appears empty, though it weighs 3 pounds. Reaching inside the bag reveals dozens of small, metal balls. As an action, you can upend the bag and spread the metal balls to cover a square area that is 5 feet on a side. Any creature that enters the area while wearing metal armor or carrying at least one metal item must succeed on a DC 13 Strength saving throw or stop moving this turn. A creature that starts its turn in the area must succeed on a DC 13 Strength saving throw to leave the area. Alternatively, a creature in the area can drop or remove whatever metal items are on it and leave the area without needing to make a saving throw. The metal balls remain for 1 minute. Once the bag's contents have been emptied three times, the bag can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_longbow-of-accuracy", - "fields": { - "name": "Longbow of Accuracy", - "desc": "The normal range of this bow is doubled, but its long range remains the same.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_longsword-of-fallen-saints", - "fields": { - "name": "Longsword of Fallen Saints", - "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_longsword-of-volsung", - "fields": { - "name": "Longsword of Volsung", - "desc": "Legends tell of a dragon whose hide was impenetrable and so robust that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon’s name was lost, but its legacy remains. This sword is one of two items that were crafted to hold its heart. The black blade is adorned with glittering silver runes, and its guard has a shallow opening at the center with grooves connecting it to the first rune. The sword’s pommel is a large, clear crystal held fast by silver scales. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit a dragon with an attack using this sword, that creature takes an extra 1d6 slashing damage. Runes of Courage. You can’t be frightened while holding or carrying this sword. Fragment of Gram Awakened. You can use a bonus action to awaken a fragment of the spirit of the great wyrm that inhabits this blade. For 24 hours, you gain a +3 bonus to attack and damage rolls with this magic sword, and when you hit a dragon with an attack using this sword, that creature takes an extra 3d6 slashing damage. Once used, this property can’t be used again until 3 days have passed. If you have performed the Dragon Heart Ritual, you can use a bonus action to expend 2 of the sword’s charges to activate this property, and you can use this property as often as you want, as long as you have the charges to do so. Dragon Heart Ritual. If you are also attuned to the locket of dragon vitality (see page 152), you can drain 3 charges from the locket into the sword, turning the crystal pommel a deep red and rendering the locket broken and irreparable. Doing this requires a long rest where you also re-attune with the newly charged sword of volsung. Upon completing the Dragon Heart Ritual, the sword contains all remaining charges from the locket, and you gain the locket’s effects while holding or carrying the sword. When you are reduced to 0 hit points and trigger the locket’s temporary hit points, the sword isn’t destroyed, but you can’t trigger that effect again until 24 hours have passed. The sword regains all expended charges after you slay any dragon. For the purpose of this sword, “dragon” refers to any creature with the dragon type, including drakes and wyverns.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_loom-of-fate", - "fields": { - "name": "Loom of Fate", - "desc": "If you spend 1 hour weaving on this portable loom, roll a 1d20 and record the number rolled. You can replace any attack roll, saving throw, or ability check made by you or a creature that you can see with this roll. You must choose to do so before the roll. The loom can't be used this way again until the next dawn. Once you have used the loom 3 times, the fabric is complete, and the loom is no longer magical. The fabric becomes a shifting tapestry that represents the events where you used the loom's power to alter fate.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_lucky-charm-of-the-monkey-king", - "fields": { - "name": "Lucky Charm of the Monkey King", - "desc": "This tiny stone statue of a grinning monkey holds a leather loop in its paws, allowing the charm to hang from a belt or pouch. While attuned to this charm, you can use a bonus action to gain a +1 bonus on your next ability check, attack roll, or saving throw. Once used, the charm can't be used again until the next dawn. You can be attuned to only one lucky charm at a time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_lucky-coin", - "fields": { - "name": "Lucky Coin", - "desc": "This worn, clipped copper piece has 6 charges. You can use a reaction to expend 1 charge and gain a +1 bonus on your next ability check. The coin regains 1d6 charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the coin runs out of luck and becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_lucky-eyepatch", - "fields": { - "name": "Lucky Eyepatch", - "desc": "You gain a +1 bonus to saving throws while you wear this simple, black eyepatch. In addition, if you are missing the eye that the eyepatch covers and you roll a 1 on the d20 for a saving throw, you can reroll the die and must use the new roll. The eyepatch can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_lupine-crown", - "fields": { - "name": "Lupine Crown", - "desc": "This grisly helm is made from the leather-reinforced skull and antlers of a deer with a fox skull and hide stretched over it. It is secured by a strap made from a magically preserved length of deer entrails. While wearing this helm, you gain a +1 bonus to AC, and you have advantage on Dexterity (Stealth) and Wisdom (Survival) checks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_luring-perfume", - "fields": { - "name": "Luring Perfume", - "desc": "This pungent perfume has a woodsy and slightly musky scent. As an action, you can splash or spray the contents of this vial on yourself or another creature within 5 feet of you. For 1 minute, the perfumed creature attracts nearby humanoids and beasts. Each humanoid and beast within 60 feet of the perfumed creature and that can smell the perfume must succeed on a DC 15 Wisdom saving throw or be charmed by the perfumed creature until the perfume fades or is washed off with at least 1 gallon of water. While charmed, a creature is incapacitated, and, if the creature is more than 5 feet away from the perfumed creature, it must move on its turn toward the perfumed creature by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_magma-mantle", - "fields": { - "name": "Magma Mantle", - "desc": "This cracked black leather cloak is warm to the touch and faint ruddy light glows through the cracks. While wearing this cloak, you have resistance to cold damage. As an action, you can touch the brass clasp and speak the command word, which transforms the cloak into a flowing mantle of lava for 1 minute. During this time, you are unharmed by the intense heat, but any hostile creature within 5 feet of you that touches you or hits you with a melee attack takes 3d6 fire damage. In addition, for the duration, you suffer no damage from contact with lava, and you can burrow through lava at half your walking speed. The cloak can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_maidens-tears", - "fields": { - "name": "Maiden's Tears", - "desc": "This fruity mead is the color of liquid gold and is rumored to be brewed with a tear from the goddess of bearfolk herself. When you drink this mead, you regenerate lost hit points for 1 minute. At the start of your turn, you regain 10 hit points if you have at least 1 hit point.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mail-of-the-sword-master", - "fields": { - "name": "Mail of the Sword Master", - "desc": "While wearing this armor, the maximum Dexterity modifier you can add to determine your Armor Class is 4, instead of 2. While wearing this armor, if you are wielding a sword and no other weapons, you gain a +2 bonus to damage rolls with that sword.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_manticores-tail", - "fields": { - "name": "Manticore's Tail", - "desc": "Ten spikes stick out of the head of this magic weapon. While holding the morningstar, you can fire one of the spikes as a ranged attack, using your Strength modifier for the attack and damage rolls. This attack has a normal range of 100 feet and a long range of 200 feet. On a hit, the spike deals 1d8 piercing damage. Once all of the weapon's spikes have been fired, the morningstar deals bludgeoning damage instead of the piercing damage normal for a morningstar until the next dawn, at which time the spikes regrow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mantle-of-blood-vengeance", - "fields": { - "name": "Mantle of Blood Vengeance", - "desc": "This red silk cloak has 3 charges and regains 1d3 expended charges daily at dawn. While wearing it, you can visit retribution on any creature that dares spill your blood. When you take piercing, slashing, or necrotic damage from a creature, you can use a reaction to expend 1 charge to turn your blood into a punishing spray. The creature that damaged you must make a DC 13 Dexterity saving throw, taking 2d10 acid damage on a failed save, or half as much damage on a successful one.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mantle-of-the-forest-lord", - "fields": { - "name": "Mantle of the Forest Lord", - "desc": "Created by village elders for druidic scouts to better traverse and survey the perimeters of their lands, this cloak resembles thick oak bark but bends and flows like silk. While wearing this cloak, you can use an action to cast the tree stride spell on yourself at will, except trees need not be living in order to pass through them.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mantle-of-the-lion", - "fields": { - "name": "Mantle of the Lion", - "desc": "This splendid lion pelt is designed to be worn across the shoulders with the paws clasped at the base of the neck. While wearing this mantle, your speed increases by 10 feet, and the mantle's lion jaws are a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, the mantle's bite deals piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. In addition, if you move at least 20 feet straight toward a creature and then hit it with a melee attack on the same turn, that creature must succeed on a DC 15 Strength saving throw or be knocked prone. If a creature is knocked prone in this way, you can make an attack with the mantle's bite against the prone creature as a bonus action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mantle-of-the-void", - "fields": { - "name": "Mantle of the Void", - "desc": "While wearing this midnight-blue mantle covered in writhing runes, you gain a +1 bonus to saving throws, and if you succeed on a saving throw against a spell that allows you to make a saving throw to take only half the damage or suffer partial effects, you instead take no damage and suffer none of the spell's effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_manual-of-exercise", - "fields": { - "name": "Manual of Exercise", - "desc": "This book contains exercises and techniques to better perform a specific physical task, and its words are charged with magic. If you spend 24 hours over a period of 3 days or fewer studying the tome and practicing its instructions, you gain proficiency in the Strength or Dexterity-based skill (such as Athletics or Stealth) associated with the book. The manual then loses its magic, but regains it in ten years.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_manual-of-the-lesser-golem", - "fields": { - "name": "Manual of the Lesser Golem", - "desc": "A manual of the lesser golem can be found in a book, on a scroll, etched into a piece of stone or metal, or scribed on any other medium that holds words, runes, and arcane inscriptions. Each manual of the lesser golem describes the materials needed and the process to be followed to create one type of lesser golem. The GM chooses the type of lesser golem detailed in the manual or determines the golem type randomly. To decipher and use the manual, you must be a spellcaster with at least one 2nd-level spell slot. You must also succeed on a DC 10 Intelligence (Arcana) check at the start of the first day of golem creation. If you fail the check, you must wait at least 24 hours to restart the creation process, and you take 3d6 psychic damage that can be regained only after a long rest. A lesser golem created via a manual of the lesser golem is not immortal. The magic that keeps the lesser golem intact gradually weakens until the golem finally falls apart. A lesser golem lasts exactly twice the number of days it takes to create it (see below) before losing its power. Once the golem is created, the manual is expended, the writing worthless and incapable of creating another. The statistics for each lesser golem can be found in the Creature Codex. | dice: 1d20 | Golem | Time | Cost |\n| ---------- | ---------------------- | ------- | --------- |\n| 1-7 | Lesser Hair Golem | 2 days | 100 gp |\n| 8-13 | Lesser Mud Golem | 5 days | 500 gp |\n| 14-17 | Lesser Glass Golem | 10 days | 2,000 gp |\n| 18-20 | Lesser Wood Golem | 15 days | 20,000 gp |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_manual-of-vine-golem", - "fields": { - "name": "Manual of Vine Golem", - "desc": "This tome contains information and incantations necessary to make a Vine Golem (see Tome of Beasts 2). To decipher and use the manual, you must be a druid with at least two 3rd-level spell slots. A creature that can't use a manual of vine golems and attempts to read it takes 4d6 psychic damage. To create a vine golem, you must spend 20 days working without interruption with the manual at hand and resting no more than 8 hours per day. You must also use powders made from rare plants and crushed gems worth 30,000 gp to create the vine golem, all of which are consumed in the process. Once you finish creating the vine golem, the book decays into ash. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mapping-ink", - "fields": { - "name": "Mapping Ink", - "desc": "This viscous ink is typically found in 1d4 pots, and each pot contains 3 doses. You can use an action to pour one dose of the ink onto parchment, vellum, or cloth then fold the material. As long as the ink-stained material is folded and on your person, the ink captures your footsteps and surroundings on the material, mapping out your travels with great precision. You can unfold the material to pause the mapping and refold it to begin mapping again. Deduct the time the ink maps your travels in increments of 1 hour from the total mapping time. Each dose of ink can map your travels for 8 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_marvelous-clockwork-mallard", - "fields": { - "name": "Marvelous Clockwork Mallard", - "desc": "This intricate clockwork recreation of a Tiny duck is fashioned of brass and tin. Its head is painted with green lacquer, the bill is plated in gold, and its eyes are small chips of black onyx. You can use an action to wind the mallard's key, and it springs to life, ready to follow your commands. While active, it has AC 13, 18 hit points, speed 25 ft., fly 40 ft., and swim 30 ft. If reduced to 0 hit points, it becomes nonfunctional and can't be activated again until 24 hours have passed, during which time it magically repairs itself. If damaged but not disabled, it regains any lost hit points at the next dawn. It has the following additional properties, and you choose which property to activate when you wind the mallard's key.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_masher-basher", - "fields": { - "name": "Masher Basher", - "desc": "A favored weapon of hill giants, this greatclub appears to be little more than a thick tree branch. When you hit a giant with this magic weapon, the giant takes an extra 1d8 bludgeoning damage. When you roll a 20 on an attack roll made with this weapon, the target is stunned until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mask-of-the-leaping-gazelle", - "fields": { - "name": "Mask of the Leaping Gazelle", - "desc": "This painted wooden animal mask is adorned with a pair of gazelle horns. While wearing this mask, your walking speed increases by 10 feet, and your long jump is up to 25 feet with a 10-foot running start.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mask-of-the-war-chief", - "fields": { - "name": "Mask of the War Chief", - "desc": "These fierce yet regal war masks are made by shamans in the cold northern mountains for their chieftains. Carved from the wood of alpine trees, each mask bears the image of a different creature native to those regions. Cave Bear (Uncommon). This mask is carved in the likeness of a roaring cave bear. While wearing it, you have advantage on Charisma (Intimidation) checks. In addition, you can use an action to summon a cave bear (use the statistics of a brown bear) to serve you in battle. The bear is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as attack your enemies. In the absence of such orders, the bear acts in a fashion appropriate to its nature. It vanishes at the next dawn or when it is reduced to 0 hit points. The mask can’t be used this way again until the next dawn. Behir (Very Rare). Carvings of stylized lightning decorate the closed, pointed snout of this blue, crocodilian mask. While wearing it, you have resistance to lightning damage. In addition, you can use an action to exhale lightning in a 30-foot line that is 5 feet wide Each creature in the line must make a DC 17 Dexterity saving throw, taking 3d10 lightning damage on a failed save, or half as much damage on a successful one. This mask can’t be used this way again until the next dawn. Mammoth (Uncommon). This mask is carved in the likeness of a mammoth’s head with a short trunk curling up between the eyes. While wearing it, you count as one size larger when determining your carrying capacity and the weight you can lift, drag, or push. In addition, you can use an action to trumpet like a mammoth. Choose up to six creatures within 30 feet of you and that can hear the trumpet. For 1 minute, each target is under the effect of the bane (if a hostile creature; save DC 13) or bless (if a friendly creature) spell (no concentration required). This mask can’t be used this way again until the next dawn. Winter Wolf (Rare). Carved in the likeness of a winter wolf, this white mask is cool to the touch. While wearing it, you have resistance to cold damage. In addition, you can use an action to exhale freezing air in a 15-foot cone. Each creature in the area must make a DC 15 Dexterity saving throw, taking 3d8 cold damage on a failed save, or half as much damage on a successful one. This mask can’t be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_master-anglers-tackle", - "fields": { - "name": "Master Angler's Tackle", - "desc": "This is a set of well-worn but finely crafted fishing gear. You have advantage on any Wisdom (Survival) checks made to catch fish or other seafood when using it. If you ever roll a 1 on your check while using the tackle, roll again. If the second roll is a 20, you still fail to catch anything edible, but you pull up something interesting or valuable—a bottle with a note in it, a fragment of an ancient tablet carved in ancient script, a mermaid in need of help, or similar. The GM decides what you pull up and its value, if it has one.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_matryoshka-dolls", - "fields": { - "name": "Matryoshka Dolls", - "desc": "This antique set of four nesting dolls is colorfully painted though a bit worn from the years. When attuning to this item, you must give each doll a name, which acts as a command word to activate its properties. You must be within 30 feet of a doll to activate it. The dolls have a combined total of 5 charges, and the dolls regain all expended charges daily at dawn. The largest doll is lined with a thin sheet of lead. A spell or other effect that can sense the presence of magic, such as detect magic, reveals only the transmutation magic of the largest doll, and not any of the dolls or other small items that may be contained within it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mayhem-mask", - "fields": { - "name": "Mayhem Mask", - "desc": "This goat mask with long, curving horns is carved from dark wood and framed in goat's hair. While wearing this mask, you can use its horns to make unarmed strikes. When you hit with it, your horns deal piercing damage equal to 1d6 + your Strength modifier, instead of bludgeoning damage normal for an unarmed strike. If you moved at least 15 feet straight toward the target before you attacked with the horns, the attack deals piercing damage equal to 2d6 + your Strength modifier instead. In addition, you can gaze through the eyes of the mask at one target you can see within 30 feet of you. The target must succeed on a DC 17 Wisdom saving throw or be affected as though it failed a saving throw against the confusion spell. The confusion effect lasts for 1 minute. Once used, this property of the mask can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_medal-of-valor", - "fields": { - "name": "Medal of Valor", - "desc": "You are immune to the frightened condition while you wear this medal. If you are already frightened, the effect ends immediately when you put on the medal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_memory-philter", - "fields": { - "name": "Memory Philter", - "desc": "This swirling liquid is the collected memory of a mortal who willingly traded that memory away to the fey. When you touch the philter, you feel a flash of the emotion contained within. You can unstopper and pour out the philter as an action, unless otherwise specified. The philter's effects take place immediately, either on you or on a creature you can see within 30 feet (your choice). If the target is unwilling, it can make a DC 15 Wisdom saving throw to resist the effect of the philter. A creature affected by a philter experiences the memory contained in the vial. A memory philter can be used only once, but the vial can be reused to store a new memory. Storing a new memory requires a few herbs, a 10-minute ritual, and the sacrifice of a memory. The required sacrifice is detailed in each entry below.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_menders-mark", - "fields": { - "name": "Mender's Mark", - "desc": "This slender brooch is fashioned of silver and shaped in the image of an angel. You can use an action to attach this brooch to a creature, pinning it to clothing or otherwise affixing it to their person. When you cast a spell that restores hit points on the creature wearing the brooch, the spell has a range of 30 feet if its range is normally touch. Only you can transfer the brooch from one creature to another. The creature wearing the brooch can't pass it to another creature, but it can remove the brooch as an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_meteoric-plate", - "fields": { - "name": "Meteoric Plate", - "desc": "This plate armor was magically crafted from plates of interlocking stone. Tiny rubies inlaid in the chest create a glittering mosaic of flames. When you fall while wearing this armor, you can tuck your knees against your chest and curl into a ball. While falling in this way, flames form around your body. You take half the usual falling damage when you hit the ground, and fire explodes from your form in a 20-foot-radius sphere. Each creature in this area must make a DC 15 Dexterity saving throw. On a failed save, a target takes fire damage equal to the falling damage you took, or half as much on a successful saving throw. The fire spreads around corners and ignites flammable objects in the area that aren't being worn or carried.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mindshatter-bombard", - "fields": { - "name": "Mindshatter Bombard", - "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_minor-minstrel", - "fields": { - "name": "Minor Minstrel", - "desc": "This four-inch high, painted, ceramic figurine animates and sings one song, typically about 3 minutes in length, when you set it down and speak the command word. The song is chosen by the figurine's original creator, and the figurine's form is typically reflective of the song's style. A red-nosed dwarf holding a mug sings a drinking song; a human figure in mourner's garb sings a dirge; a well-dressed elf with a harp sings an elven love song; or similar, though some creators find it amusing to create a figurine with a song counter to its form. If you pick up the figurine before the song finishes, it falls silent.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mirror-of-eavesdropping", - "fields": { - "name": "Mirror of Eavesdropping", - "desc": "This 8-inch diameter mirror is set in a delicate, silver frame. While holding this mirror within 30 feet of another mirror, you can spend 10 minutes magically connecting the mirror of eavesdropping to that other mirror. The mirror of eavesdropping can be connected to only one mirror at a time. While holding the mirror of eavesdropping within 1 mile of its connected mirror, you can use an action to speak its command word and activate it. While active, the mirror of eavesdropping displays visual information from the connected mirror, which has normal vision and darkvision out to 30 feet. The connected mirror's view is limited to the direction the mirror is facing, and it can be blocked by a solid barrier, such as furniture, a heavy cloth, or similar. You can use a bonus action to deactivate the mirror early. When the mirror has been active for a total of 10 minutes, you can't activate it again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mirrored-breastplate", - "fields": { - "name": "Mirrored Breastplate", - "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mirrored-half-plate", - "fields": { - "name": "Mirrored Half Plate", - "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mirrored-plate", - "fields": { - "name": "Mirrored Plate", - "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mnemonic-fob", - "fields": { - "name": "Mnemonic Fob", - "desc": "This small bauble consists of a flat crescent, which binds a small disc that freely spins in its housing. Each side of the disc is intricately etched with an incomplete pillar and pyre. \nPillar of Fire. While holding this bauble, you can use an action to remove the disc, place it on the ground, and speak its command word to transform it into a 5-foot-tall flaming pillar of intricately carved stone. The pillar sheds bright light in a 20-foot radius and dim light for an additional 20 feet. It is warm to the touch, but it doesn’t burn. A second command word returns the pillar to its disc form. When the pillar has shed light for a total of 10 minutes, it returns to its disc form and can’t be transformed into a pillar again until the next dawn. \nRecall Magic. While holding this bauble, you can use an action to spin the disc and regain one expended 1st-level spell slot. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mock-box", - "fields": { - "name": "Mock Box", - "desc": "While you hold this small, square contraption, you can use an action to target a creature within 60 feet of you that can hear you. The target must succeed on a DC 13 Charisma saving throw or attack rolls against it have advantage until the start of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_molten-hellfire-breastplate", - "fields": { - "name": "Molten Hellfire Breastplate", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_molten-hellfire-chain-mail", - "fields": { - "name": "Molten Hellfire Chain Mail", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_molten-hellfire-chain-shirt", - "fields": { - "name": "Molten Hellfire Chain Shirt", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_molten-hellfire-half-plate", - "fields": { - "name": "Molten Hellfire Half Plate", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_molten-hellfire-plate", - "fields": { - "name": "Molten Hellfire Plate", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_molten-hellfire-ring-mail", - "fields": { - "name": "Molten Hellfire Ring Mail", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_molten-hellfire-scale-mail", - "fields": { - "name": "Molten Hellfire Scale Mail", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_molten-hellfire-splint", - "fields": { - "name": "Molten Hellfire Splint", - "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mongrelmakers-handbook", - "fields": { - "name": "Mongrelmaker's Handbook", - "desc": "This thin volume holds a scant few dozen vellum pages between its mottled, scaled cover. The pages are scrawled with tight, efficient text which is broken up by outlandish pencil drawings of animals and birds combined together. With the rituals contained in this book, you can combine two or more animals into an adult hybrid of all creatures used. Each ritual requires the indicated amount of time, the indicated cost in mystic reagents, a live specimen of each type of creature to be combined, and enough floor space to draw a combining rune which encircles the component creatures. Once combined, the hybrid creature is a typical example of its new kind, though some aesthetic differences may be detectable. You can't control the creatures you create with this handbook, though the magic of the combining ritual prevents your creations from attacking you for the first 24 hours of their new lives. | Creature | Time | Cost | Component Creatures |\n| ---------------- | -------- | -------- | -------------------------------------------------------- |\n| Flying Snake | 10 mins | 10 gp | A poisonous snake and a Small or smaller bird of prey |\n| Leonino | 10 mins | 15 gp | A cat and a Small or smaller bird of prey |\n| Wolpertinger | 10 mins | 20 gp | A rabbit, a Small or smaller bird of prey, and a deer |\n| Carbuncle | 1 hour | 500 gp | A cat and a bird of paradise |\n| Cockatrice | 1 hour | 150 gp | A lizard and a domestic bird such as a chicken or turkey |\n| Death Dog | 1 hour | 100 gp | A dog and a rooster |\n| Dogmole | 1 hour | 175 gp | A dog and a mole |\n| Hippogriff | 1 hour | 200 gp | A horse and a giant eagle |\n| Bearmit crab | 6 hours | 600 gp | A brown bear and a giant crab |\n| Griffon | 6 hours | 600 gp | A lion and a giant eagle |\n| Pegasus | 6 hours | 1,000 gp | A white horse and a giant owl |\n| Manticore | 24 hours | 2,000 gp | A lion, a porcupine, and a giant bat |\n| Owlbear | 24 hours | 2,000 gp | A brown bear and a giant eagle |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_monkeys-paw-of-fortune", - "fields": { - "name": "Monkey's Paw of Fortune", - "desc": "This preserved monkey's paw hangs on a simple leather thong. This paw helps you alter your fate. If you are wearing this paw when you fail an attack roll, ability check, or saving throw, you can use your reaction to reroll the roll with a +10 bonus. You must take the second roll. When you use this property of the paw, one of its fingers curls tight to the palm. When all five fingers are curled tightly into a fist, the monkey's paw loses its magic.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_moon-through-the-trees", - "fields": { - "name": "Moon Through the Trees", - "desc": "This charm is comprised of six polished river stones bound into the shape of a star with glue made from the connective tissues of animals. The reflective surfaces of the stones shimmer with a magical iridescence. While you are within 20 feet of a living tree, you can use a bonus action to become invisible for 1 minute. While invisible, you can use a bonus action to become visible. If you do, each creature of your choice within 30 feet of you must succeed on a DC 15 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat this saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to this charm's blinding feature for the next 24 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_moonfield-lens", - "fields": { - "name": "Moonfield Lens", - "desc": "This lens is rainbow-hued and protected by a sturdy leather case. It has 4 charges, and it regains 1d3 + 1 expended charges daily at dawn. As an action, you can hold the lens to your eye, speak its command word, and expend 2 charges to cause one of the following effects: - *** Find Loved One.** You know the precise location of one creature you love (platonic, familial, or romantic). This knowledge extends into other planes. - *** True Path.** For 1 hour, you automatically succeed on all Wisdom (Survival) checks to navigate in the wild. If you are underground, you automatically know the most direct route to reach the surface.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_moonsteel-dagger", - "fields": { - "name": "Moonsteel Dagger", - "desc": "The blade of this magic weapon seems to shine from within with a pale, white light. The weapon deals an extra 1d6 radiant damage to any creature it hits. If the creature is a shapechanger or any other creature not in its true form, it becomes frightened until the start of your next turn. At the start of its turn, a creature frightened in this way must succeed on a DC 13 Charisma saving throw or immediately return to its true form. For the purpose of this weapon, “shapechanger” refers to any creature with the Shapechanger trait.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_moonsteel-rapier", - "fields": { - "name": "Moonsteel Rapier", - "desc": "The blade of this magic weapon seems to shine from within with a pale, white light. The weapon deals an extra 1d6 radiant damage to any creature it hits. If the creature is a shapechanger or any other creature not in its true form, it becomes frightened until the start of your next turn. At the start of its turn, a creature frightened in this way must succeed on a DC 13 Charisma saving throw or immediately return to its true form. For the purpose of this weapon, “shapechanger” refers to any creature with the Shapechanger trait.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mordant-battleaxe", - "fields": { - "name": "Mordant Battleaxe", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mordant-glaive", - "fields": { - "name": "Mordant Glaive", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mordant-greataxe", - "fields": { - "name": "Mordant Greataxe", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mordant-greatsword", - "fields": { - "name": "Mordant Greatsword", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mordant-halberd", - "fields": { - "name": "Mordant Halberd", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mordant-longsword", - "fields": { - "name": "Mordant Longsword", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mordant-scimitar", - "fields": { - "name": "Mordant Scimitar", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mordant-shortsword", - "fields": { - "name": "Mordant Shortsword", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mordant-sickle", - "fields": { - "name": "Mordant Sickle", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mordant-whip", - "fields": { - "name": "Mordant Whip", - "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mountain-hewer", - "fields": { - "name": "Mountain Hewer", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. The massive head of this axe is made from chiseled stone lashed to its haft by thick rope and leather strands. Small chips of stone fall from its edge intermittently, though it shows no sign of damage or wear. You can use your action to speak the command word to cause small stones to float and swirl around the axe, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. The light remains until you use a bonus action to speak the command word again or until you drop or sheathe the axe. As a bonus action, choose a creature you can see. For 1 minute, that creature must succeed on a DC 15 Wisdom saving throw each time it is damaged by the axe or become frightened until the end of your next turn. Creatures of Large size or greater have disadvantage on this save. Once used, this property of the axe can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mountaineers-hand-crossbow", - "fields": { - "name": "Mountaineer's Hand Crossbow", - "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mountaineers-heavy-crossbow", - "fields": { - "name": "Mountaineer's Heavy Crossbow", - "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mountaineers-light-crossbow", - "fields": { - "name": "Mountaineer's Light Crossbow ", - "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_muffled-chain-mail", - "fields": { - "name": "Muffled Chain Mail", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_muffled-half-plate", - "fields": { - "name": "Muffled Half Plate", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_muffled-padded", - "fields": { - "name": "Muffled Padded", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_muffled-plate", - "fields": { - "name": "Muffled Plate", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_muffled-ring-mail", - "fields": { - "name": "Muffled Ring Mail", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_muffled-scale-mail", - "fields": { - "name": "Muffled Scale Mail", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_muffled-splint", - "fields": { - "name": "Muffled Splint", - "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mug-of-merry-drinking", - "fields": { - "name": "Mug of Merry Drinking", - "desc": "While you hold this broad, tall mug, any liquid placed inside it warms or cools to exactly the temperature you want it, though the mug can't freeze or boil the liquid. If you drop the mug or it is knocked from your hand, it always lands upright without spilling its contents.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_murderous-bombard", - "fields": { - "name": "Murderous Bombard", - "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_mutineers-blade", - "fields": { - "name": "Mutineer's Blade", - "desc": "This finely balanced scimitar has an elaborate brass hilt. You gain a +2 bonus on attack and damage rolls made with this magic weapon. You can use a bonus action to speak the scimitar's command word, causing the blade to shed bright green light in a 10-foot radius and dim light for an additional 10 feet. The light lasts until you use a bonus action to speak the command word again or until you drop or sheathe the scimitar. When you roll a 20 on an attack roll made with this weapon, the target is overcome with the desire for mutiny. On the target's next turn, it must make one attack against its nearest ally, then the effect ends, whether or not the attack was successful.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_nameless-cults", - "fields": { - "name": "Nameless Cults", - "desc": "This dubious old book, bound in heavy leather with iron hasps, details the forbidden secrets and monstrous blasphemy of a multitude of nightmare cults that worship nameless and ghastly entities. It reads like the monologue of a maniac, illustrated with unsettling glyphs and filled with fluctuating moments of vagueness and clarity. The tome is a spellbook that contains the following spells, all of which can be found in the Mythos Magic Chapter of Deep Magic for 5th Edition: black goat's blessing, curse of Yig, ectoplasm, eldritch communion, emanation of Yoth, green decay, hunger of Leng, mind exchange, seed of destruction, semblance of dread, sign of Koth, sleep of the deep, summon eldritch servitor, summon avatar, unseen strangler, voorish sign, warp mind and matter, and yellow sign. At the GM's discretion, the tome can contain other spells similarly related to the Great Old Ones. While attuned to the book, you can reference it whenever you make an Intelligence check to recall information about any aspect of evil or the occult, such as lore about Great Old Ones, mythos creatures, or the cults that worship them. When doing so, your proficiency bonus for that check is doubled.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_necromantic-ink", - "fields": { - "name": "Necromantic Ink", - "desc": "The scent of death and decay hangs around this grey ink. It is typically found in 1d4 pots, and each pot contains 2 doses. If you spend 1 minute using one dose of the ink to draw symbols of death on a dead creature that has been dead no longer than 10 days, you can imbue the creature with the ink's magic. The creature rises 24 hours later as a skeleton or zombie (your choice), unless the creature is restored to life or its body is destroyed. You have no control over the undead creature.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_neutralizing-bead", - "fields": { - "name": "Neutralizing Bead", - "desc": "This hard, gritty, flavorless bead can be dissolved in liquid or powdered between your fingers and sprinkled over food. Doing so neutralizes any poisons that may be present. If the food or liquid is poisoned, it takes on a brief reddish hue where it makes contact with the bead as the bead dissolves. Alternatively, you can chew and swallow the bead and gain the effects of an antitoxin.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_nithing-pole", - "fields": { - "name": "Nithing Pole", - "desc": "This pole is crafted to exact retribution for an act of cowardice or dishonor. It's a sturdy wooden stave, 6 to 10 feet long, carved with runes that name the dishonored target of the pole's curse. The carved shaft is draped in horsehide, topped with a horse's skull, and placed where its target is expected to pass by. Typically, the pole is driven into the ground or wedged into a rocky cleft in a remote spot where the intended victim won't see it until it's too late. The pole is created to punish a specific person for a specific crime. The exact target must be named on the pole; a generic identity such as “the person who blinded Lars Gustafson” isn't precise enough. The moment the named target approaches within 333 feet, the pole casts bestow curse (with a range of 333 feet instead of touch) on the target. The DC for the target's Wisdom saving throw is 15. If the saving throw is successful, the pole recasts the spell at the end of each round until the saving throw fails, the target retreats out of range, or the pole is destroyed. Anyone other than the pole's creator who tries to destroy or knock down the pole is also targeted by a bestow curse spell, but only once. The effect of the curse is set when the pole is created, and the curse lasts 8 hours without requiring concentration. The pole becomes nonmagical once it has laid its curse on its intended target. An untriggered and forgotten nithing pole remains dangerous for centuries.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_nullifiers-lexicon", - "fields": { - "name": "Nullifier's Lexicon", - "desc": "This book has a black leather cover with silver bindings and a silver front plate. Void Speech glyphs adorn the front plate, which is pitted and tarnished. The pages are thin sheets of corrupted brass and are inscribed with more blasphemous glyphs. While you are attuned to the lexicon, you can speak, read, and write Void Speech, and you know the crushing curse* cantrip. At the GM's discretion, you know the chill touch cantrip instead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_oakwood-wand", - "fields": { - "name": "Oakwood Wand", - "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains 1d3 expended charges daily at dawn. While holding it, you can expend 1 charge as an action to cast the detect poison and disease spell from it. When you cast a spell that deals cold damage while using this wand as your spellcasting focus, the spell deals 1 extra cold damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_octopus-bracers", - "fields": { - "name": "Octopus Bracers", - "desc": "These bronze bracers are etched with depictions of frolicking octopuses. While wearing these bracers, you can use an action to speak their command word and transform your arms into tentacles. You can use a bonus action to repeat the command word and return your arms to normal. The tentacles are natural melee weapons, which you can use to make unarmed strikes. Your reach extends by 5 feet while your arms are tentacles. When you hit with a tentacle, it deals bludgeoning damage equal to 1d8 + your Strength or Dexterity modifier (your choice). If you hit a creature of your size or smaller than you, it is grappled. Each tentacle can grapple only one target. While grappling a target with a tentacle, you can't attack other creatures with that tentacle. While your arms are tentacles, you can't wield weapons that require two hands, and you can't wield shields. In addition, you can't cast a spell that has a somatic component. When the bracers' property has been used for a total of 10 minutes, the magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_oculi-of-the-ancestor", - "fields": { - "name": "Oculi of the Ancestor", - "desc": "An intricately depicted replica of an eyeball, right down to the blood vessels and other fine details, this item is carved from sacred hardwoods by soothsayers using a specialized ceremonial blade handcrafted specifically for this purpose. When you use an action to place the orb within the eye socket of a skull, it telepathically shows you the last thing that was experienced by the creature before it died. This lasts for up to 1 minute and is limited to only what the creature saw or heard in the final moments of its life. The orb can't show you what the creature might have detected using another sense, such as tremorsense.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_odd-bodkin", - "fields": { - "name": "Odd Bodkin", - "desc": "This dagger has a twisted, jagged blade. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature other than a construct or an undead with this weapon, it loses 1d4 hit points at the start of each of its turns from a jagged wound. Each time you successfully hit the wounded target with this dagger, the damage dealt by the wound increases by 1d4. Any creature can take an action to stanch the wound with a successful DC 11 Wisdom (Medicine) check. The wound also closes if the wounded creature receives magical healing.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_odorless-oil", - "fields": { - "name": "Odorless Oil", - "desc": "This odorless, colorless oil can cover a Medium or smaller object or creature, along with the equipment the creature is wearing or carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. For 1 hour, the affected target gives off no scent, can't be tracked by scent, and can't be detected with Wisdom (Perception) checks that rely on smell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ogres-pot", - "fields": { - "name": "Ogre's Pot", - "desc": "This cauldron boils anything placed inside it, whether venison or timber, to a vaguely edible paste. A spoonful of the paste provides enough nourishment to sustain a creature for one day. As a bonus action, you can speak the pot's command word and force it to roll directly to you at a speed of 40 feet per round as long as you and the pot are on the same plane of existence. It follows the shortest possible path, stopping when it moves to within 5 feet of you, and it bowls over or knocks down any objects or creatures in its path. A creature in its path must succeed on a DC 13 Dexterity saving throw or take 2d6 bludgeoning damage and be knocked prone. When this magic pot comes into contact with an object or structure, it deals 4d6 bludgeoning damage. If the damage doesn't destroy or create a path through the object or structure, the pot continues to deal damage at the end of each round, carving a path through the obstacle.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_oil-of-concussion", - "fields": { - "name": "Oil of Concussion", - "desc": "You can apply this thick, gray oil to one bludgeoning weapon or up to 5 pieces of bludgeoning ammunition. Applying the oil takes 1 minute. For 1 hour, any attack with the coated item scores a critical hit on a roll of 19 or 20.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_oil-of-defoliation", - "fields": { - "name": "Oil of Defoliation", - "desc": "Sometimes known as weedkiller oil, this greasy amber fluid contains the crushed husks of dozens of locusts. One vial of the oily substance can coat one weapon or up to 5 pieces of ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item deals an extra 1d6 necrotic damage to plants or plant creatures on a successful hit. The oil can also be applied directly to a willing, restrained, or immobile plant or plant creature. In this case, the substance deals 4d6 necrotic damage, which is enough to kill most ordinary plant life smaller than a large tree.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_oil-of-extreme-bludgeoning", - "fields": { - "name": "Oil of Extreme Bludgeoning", - "desc": "This viscous indigo-hued oil smells of iron. The oil can coat one bludgeoning weapon or up to 5 pieces of bludgeoning ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical, has a +1 bonus to attack and damage rolls, and deals an extra 1d4 force damage on a hit.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_oil-of-numbing", - "fields": { - "name": "Oil of Numbing", - "desc": "This astringent-smelling oil stings slightly when applied to flesh, but the feeling quickly fades. The oil can cover a Medium or smaller creature (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. For 1 hour, the affected creature has advantage on Constitution saving throws to maintain its concentration on a spell when it takes damage, and it has advantage on ability checks and saving throws made to endure pain. However, the affected creature's flesh is slightly numbed and senseless, and it has disadvantage on ability checks that require fine motor skills or a sense of touch.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_oil-of-sharpening", - "fields": { - "name": "Oil of Sharpening", - "desc": "You can apply this fine, silvery oil to one piercing or slashing weapon or up to 5 pieces of piercing or slashing ammunition. Applying the oil takes 1 minute. For 1 hour, any attack with the coated item scores a critical hit on a roll of 19 or 20.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_oni-mask", - "fields": { - "name": "Oni Mask", - "desc": "This horned mask is fashioned into the fearsome likeness of a pale oni. The mask has 6 charges for the following properties. The mask regains 1d6 expended charges daily at dawn. Spells. While wearing the mask, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 15): charm person (1 charge), invisibility (2 charges), or sleep (1 charge). Change Shape. You can expend 3 charges as an action to magically polymorph into a Small or Medium humanoid, into a Large giant, or back into your true form. Other than your size, your statistics are the same in each form. The only equipment that is transformed is your weapon, which enlarges or shrinks so that it can be wielded in any form. If you die, you revert to your true form, and your weapon reverts to its normal size.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_oracle-charm", - "fields": { - "name": "Oracle Charm", - "desc": "This small charm resembles a human finger bone engraved with runes and complicated knotwork patterns. As you contemplate a specific course of action that you plan to take within the next 30 minutes, you can use an action to snap the charm in half to gain the benefit of an augury spell. Once used, the charm is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_orb-of-enthralling-patterns", - "fields": { - "name": "Orb of Enthralling Patterns", - "desc": "This plain, glass orb shimmers with iridescence. While holding this orb, you can use an action to speak its command word, which causes it to levitate and emit multicolored light. Each creature other than you within 10 feet of the orb must succeed on a DC 13 Wisdom saving throw or look at only the orb for 1 minute. For the duration, a creature looking at the orb has disadvantage on Wisdom (Perception) checks to perceive anything that is not the orb. Creatures that failed the saving throw have no memory of what happened while they were looking at the orb. Once used, the orb can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_orb-of-obfuscation", - "fields": { - "name": "Orb of Obfuscation", - "desc": "Originally fashioned in the laboratory of the archmage Lugax for his good natured but often roguish friend, Kennich, these spherical ceramic containers are the size of a large human fist. Arcane sigils decorate each orb, detailing its properties to those capable of reading the sigils. The magic-infused chemicals in each orb must be briefly exposed to air before being thrown to activate them. A metal rod sits in the cork of each orb, allowing you to quickly twist open the container before throwing it. Typically, 1d4 + 1 orbs of obfuscation are found together. You can use an action to activate and throw the orb up to 60 feet. The orb explodes on impact and is destroyed. The orb's effects are determined by its type. Orb of Obfuscation (Uncommon). This orb is a dark olive color with a stripe of bright blue paint encircling it. When activated, the orb releases an opaque grey gas and creates a 30-foot-radius sphere of this gas centered on the point where the orb landed. The sphere spreads around corners, and its area is heavily obscured. The magical gas also dampens sound. Each creature in the gas can hear only sounds originating within 5 feet of it, and creatures outside of the gas can’t hear sounds originating inside the gas. The gas lasts for 5 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. Explosive Orb of Obfuscation (Rare). This oblong orb has a putty grey color with a stripe of yellow paint encircling it. When activated, this orb releases the same opaque grey gas as the orb of obfuscation. In addition to the effects of that gas, this orb also releases a burst of caustic chemicals on impact. Each creature within a 15-foot radius of where the orb landed must make a DC 15 Dexterity saving throw, taking 4d4 acid damage on a failed save, or half as much damage on a successful one. If a creature fails this saving throw, the chemicals cling to it for 1 minute. At the end of each of its turns, the creature must succeed on a DC 15 Constitution saving throw or take 2d4 acid damage from the clinging chemicals. Any creature can take an action to remove the clinging chemicals with a successful DC 15 Wisdom (Medicine) check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ouroboros-amulet", - "fields": { - "name": "Ouroboros Amulet", - "desc": "Carved in the likeness of a serpent swallowing its own tail, this circular jade amulet is frequently worn by serpentfolk mystics and the worshippers of dark and forgotten gods. While wearing this amulet, you have advantage on saving throws against being charmed. In addition, you can use an action to cast the suggestion spell (save DC 13). The amulet can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_pact-paper", - "fields": { - "name": "Pact Paper", - "desc": "This smooth paper is like vellum but is prepared from dozens of scales cast off by a Pact Drake (see Creature Codex). A contract can be inked on this paper, and the paper limns all falsehoods on it with a fiery glow. A command word clears the paper, allowing for several drafts. Another command word locks the contract in place and leaves space for signatures. Creatures signing the contract are afterward bound by the contract with all other signatories alerted when one of the signatories breaks the contract. The creature breaking the contract must succeed on a DC 15 Charisma saving throw or become blinded, deafened, and stunned for 1d6 minutes. A creature can repeat the saving throw at the end of each of minute, ending the conditions on itself on a success. After the conditions end, the creature has disadvantage on saving throws until it finishes a long rest. Once a contract has been locked in place and signed, the paper can't be cleared. If the contract has a duration or stipulation for its end, the pact paper is destroyed when the contract ends, releasing all signatories from any further obligations and immediately ending any effects on them.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_padded-armor-of-the-leaf", - "fields": { - "name": "Padded Armor of the Leaf", - "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_padded-armor-of-warding-1", - "fields": { - "name": "Padded Armor of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_padded-armor-of-warding-2", - "fields": { - "name": "Padded Armor of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_padded-armor-of-warding-3", - "fields": { - "name": "Padded Armor of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_parasol-of-temperate-weather", - "fields": { - "name": "Parasol of Temperate Weather", - "desc": "This fine, cloth-wrapped 2-foot-long pole unfolds into a parasol with a diameter of 3 feet, which is large enough to cover one Medium or smaller creature. While traveling under the parasol, you ignore the drawbacks of traveling in hot weather or a hot environment. Though it protects you from the sun's heat in the desert or geothermal heat in deep caverns, the parasol doesn't protect you from damage caused by super-heated environments or creatures, such as lava or an azer's Heated Body trait, or magic that deals fire damage, such as the fire bolt spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_pavilion-of-dreams", - "fields": { - "name": "Pavilion of Dreams", - "desc": "This foot-long box is 6 inches wide and 6 inches deep. With 1 minute of work, the box's poles and multicolored silks can be unfolded into a pavilion expansive enough to sleep eight Medium or smaller creatures comfortably. The pavilion can stand in winds of up to 60 miles per hour without suffering damage or collapsing, and its interior remains comfortable and dry no matter the weather conditions or temperature outside. Creatures who sleep within the pavilion are immune to spells and other magical effects that would disrupt their sleep or negatively affect their dreams, such as the monstrous messenger version of the dream spell or a night hag's Nightmare Haunting. Creatures who take a long rest in the pavilion, and who sleep for at least half that time, have shared dreams of future events. Though unclear upon waking, these premonitions sit in the backs of the creatures' minds for the next 24 hours. Before the duration ends, a creature can call on the premonitions, expending them and immediately gaining one of the following benefits.\n- If you are surprised during combat, you can choose instead to not be surprised.\n- If you are not surprised at the beginning of combat, you have advantage on the initiative roll.\n- You have advantage on a single attack roll, ability check, or saving throw.\n- If you are adjacent to a creature that is attacked, you can use a reaction to interpose yourself between the creature and the attack. You become the new target of the attack.\n- When in combat, you can use a reaction to distract an enemy within 30 feet of you that attacks an ally you can see. If you do so, the enemy has disadvantage on the attack roll.\n- When an enemy uses the Disengage action, you can use a reaction to move up to your speed toward that enemy. Once used, the pavilion can't be used again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_pearl-of-diving", - "fields": { - "name": "Pearl of Diving", - "desc": "This white pearl shines iridescently in almost any light. While underwater and grasping the pearl, you have resistance to cold damage and to bludgeoning damage from nonmagical attacks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_periapt-of-eldritch-knowledge", - "fields": { - "name": "Periapt of Eldritch Knowledge", - "desc": "This pendant consists of a hollow metal cylinder on a fine, silver chain and is capable of holding one scroll. When you put a spell scroll in the pendant, it is added to your list of known or prepared spells, but you must still expend a spell slot to cast it. If the spell has more powerful effects when cast at a higher level, you can expend a spell slot of a higher level to cast it. If you have metamagic options, you can apply any metamagic option you know to the spell, expending sorcery points as normal. When you cast the spell, the spell scroll isn't consumed. If the spell on the spell scroll isn't on your class's spell list, you can't cast it unless it is half the level of the highest spell level you can cast (minimum level 1). The pendant can hold only one scroll at a time, and you can remove or replace the spell scroll in the pendant as an action. When you remove or replace the spell scroll, you don't immediately regain spell slots expended on the scroll's spell. You regain expended spell slots as normal for your class.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_periapt-of-proof-against-lies", - "fields": { - "name": "Periapt of Proof Against Lies", - "desc": "A pendant fashioned from the claw or horn of a Pact Drake (see Creature Codex) is affixed to a thin gold chain. While you wear it, you know if you hear a lie, but this doesn't apply to evasive statements that remain within the boundaries of the truth. If you lie while wearing this pendant, you become poisoned for 10 minutes.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_pestilent-spear", - "fields": { - "name": "Pestilent Spear", - "desc": "The head of this spear is deadly sharp, despite the rust and slimy residue on it that always accumulate no matter how well it is cleaned. When you hit a creature with this magic weapon, it must succeed on a DC 13 Constitution saving throw or contract the sewer plague disease.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_phase-mirror", - "fields": { - "name": "Phase Mirror", - "desc": "Unlike other magic items, multiple creatures can attune to the phase mirror by touching it as part of the same short rest. A creature remains attuned to the mirror as long as it is on the same plane of existence as the mirror or until it chooses to end its attunement to the mirror during a short rest. Phase mirrors look almost identical to standard mirrors, but their surfaces are slightly clouded. These mirrors are found in a variety of sizes, from handheld to massive disks. The larger the mirror, the more power it can take in, and consequently, the more creatures it can affect. When it is created, a mirror is connected to a specific plane. The mirror draws in starlight and uses that energy to move between its current plane and its connected plane. While holding or touching a fully charged mirror, an attuned creature can use an action to speak the command word and activate the mirror. When activated, the mirror transports all creatures attuned to it to the mirror's connected plane or back to the Material Plane at a destination of the activating creature's choice. This effect works like the plane shift spell, except it transports only attuned creatures, regardless of their distance from each other, and the destination must be on the Material Plane or the mirror's connected plane. If the mirror is broken, its magic ends, and each attuned creature is trapped in whatever plane it occupies when the mirror breaks. Once activated, the mirror stays active for 24 hours and any attuned creature can use an action to transport all attuned creatures back and forth between the two planes. After these 24 hours have passed, the power drains from the mirror, and it can't be activated again until it is recharged. Each phase mirror has a different recharge time and limit to the number of creatures that can be attuned to it, depending on the mirror's size.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_phidjetz-spinner", - "fields": { - "name": "Phidjetz Spinner", - "desc": "This dart was crafted by the monk Phidjetz, a martial recluse obsessed with dragons. The spinner consists of a golden central disk with four metal dragon heads protruding symmetrically from its center point: one red, one white, one blue and one black. As an action, you can spin the disk using the pinch grip in its center. You choose a single target within 30 feet and make a ranged attack roll. The spinner then flies at the chosen target. Once airborne, each dragon head emits a blast of elemental energy appropriate to its type. When you hit a creature, determine which dragon head affects it by rolling a d4 on the following chart. | d4 | Effect |\n| --- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 1 | Red. The target takes 1d6 fire damage and combustible materials on the target ignite, doing 1d4 fire damage each turn until it is put out. |\n| 2 | White. The target takes 1d6 cold damage and is restrained until the start of your next turn. |\n| 3 | Blue. The target takes 1d6 lightning damage and is paralyzed until the start of your next turn. |\n| 4 | Black. The target takes 1d6 acid damage and is poisoned until the start of your next turn. | After the attack, the spinner flies up to 60 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_philter-of-luck", - "fields": { - "name": "Philter of Luck", - "desc": "When you drink this vibrant green, effervescent potion, you gain a finite amount of good fortune. Roll a d3 to determine where your fortune falls: ability checks (1), saving throws (2), or attack rolls (3). When you make a roll associated with your fortune, you can choose to tap into your good fortune and reroll the d20. This effect ends after you tap into your good fortune or when 1 hour has passed. | d3 | Use fortune for |\n| --- | --------------- |\n| 1 | ability checks |\n| 2 | saving throws |\n| 3 | attack rolls |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_phoenix-ember", - "fields": { - "name": "Phoenix Ember", - "desc": "This egg-shaped red and black stone is hot to the touch. An ancient, fossilized phoenix egg, the stone holds the burning essence of life and rebirth. While you are carrying the stone, you have resistance to fire damage. Fiery Rebirth. If you drop to 0 hit points while carrying the stone, you can drop to 1 hit point instead. If you do, a wave of flame bursts out from you, filling the area within 20 feet of you. Each of your enemies in the area must make a DC 17 Dexterity saving throw, taking 8d6 fire damage on a failed save, or half as much damage on a successful one. Once used, this property can’t be used again until the next dawn, and a small, burning crack appears in the egg’s surface. Spells. The stone has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: revivify (1 charge), raise dead (2 charges), or resurrection (3 charges, the spell functions as long as some bit of the target’s body remains, even just ashes or dust). If you expend the last charge, roll a d20. On a 1, the stone shatters into searing fragments, and a firebird (see Tome of Beasts) arises from the ashes. On any other roll, the stone regains 1d3 charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_pick-of-ice-breaking", - "fields": { - "name": "Pick of Ice Breaking", - "desc": "The metal head of this war pick is covered in tiny arcane runes. You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the war pick to attack a construct, elemental, fey, or other creature made almost entirely of ice or snow. When you roll a 20 on an attack roll made with this weapon against such a creature, the target takes an extra 2d8 piercing damage. When you hit an object made of ice or snow with this weapon, the object doesn't have a damage threshold when determining the damage you deal to it with this weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_pipes-of-madness", - "fields": { - "name": "Pipes of Madness", - "desc": "You must be proficient with wind instruments to use these strange, pale ivory pipes. They have 5 charges. You can use an action to play them and expend 1 charge to emit a weird strain of alien music that is audible up to 600 feet away. Choose up to three creatures within 60 feet of you that can hear you play. Each target must succeed on a DC 15 Wisdom saving throw or be affected as if you had cast the confusion spell on it. The pipes regain 1d4 + 1 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_pistol-of-the-umbral-court", - "fields": { - "name": "Pistol of the Umbral Court", - "desc": "This hand crossbow is made from coal-colored wood. Its limb is made from cold steel and boasts engravings of sharp teeth. The barrel is magically oiled and smells faintly of ash. The grip is made from rough leather. You gain a +2 bonus on attack and damage rolls made with this magic weapon. When you hit with an attack with this weapon, you can force the target of your attack to succeed on a DC 15 Strength saving throw or be pushed 5 feet away from you. The target takes damage, as normal, whether it was pushed away or not. As a bonus action, you can increase the distance creatures are pushed to 20 feet for 1 minute. If the creature strikes a solid object before the movement is complete, it takes 1d6 bludgeoning damage for every 10 feet traveled. Once used, this property of the crossbow can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_plate-of-warding-1", - "fields": { - "name": "Plate of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_plate-of-warding-2", - "fields": { - "name": "Plate of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_plate-of-warding-3", - "fields": { - "name": "Plate of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_plumb-of-the-elements", - "fields": { - "name": "Plumb of the Elements", - "desc": "This four-faceted lead weight is hung on a long leather strip, which can be wound around the haft or handle of any melee weapon. You can remove the plumb and transfer it to another weapon whenever you wish. Weapons with the plumb attached to it deal additional force damage equal to your proficiency bonus (up to a maximum of 3). As an action, you can activate the plumb to change this additional damage type to fire, cold, lightning, or back to force.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_plunderers-sea-chest", - "fields": { - "name": "Plunderer's Sea Chest", - "desc": "This oak chest, measuring 3 feet by 5 feet by 3 feet, is secured with iron bands, which depict naval combat and scenes of piracy. The chest opens into an extradimensional space that can hold up to 3,500 cubic feet or 15,000 pounds of material. The chest always weighs 200 pounds, regardless of its contents. Placing an item in the sea chest follows the normal rules for interacting with objects. Retrieving an item from the chest requires you to use an action. When you open the chest to access a specific item, that item is always magically on top. If the chest is destroyed, its contents are lost forever, though an artifact that was inside always turns up again, somewhere. If a bag of holding, portable hole, or similar object is placed within the chest, that item and the contents of the chest are immediately destroyed, and the magic of the chest is disrupted for one day, after which the chest resumes functioning as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_pocket-oasis", - "fields": { - "name": "Pocket Oasis", - "desc": "When you unfold and throw this 5-foot by 5-foot square of black cloth into the air as an action, it creates a portal to an oasis hidden within an extra-dimensional space. A pool of shallow, fresh water fills the center of the oasis, and bountiful fruit and nut trees grow around the pool. The fruits and nuts from the trees provide enough nourishment for up to 10 Medium creatures. The air in the oasis is pure, cool, and even a little crisp, and the environment is free from harmful effects. When creatures enter the extra-dimensional space, they are protected from effects and creatures outside the oasis as if they were in the space created by a rope trick spell, and a vine dangles from the opening in place of a rope, allowing access to the oasis. The effect lasts for 24 hours or until all the creatures leave the extra-dimensional oasis, whichever occurs first. Any creatures still inside the oasis at the end of 24 hours are harmlessly ejected. Once used, the pocket oasis can't be used again for 24 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_pocket-spark", - "fields": { - "name": "Pocket Spark", - "desc": "What looks like a simple snuff box contains a magical, glowing ember. Though warm to the touch, the ember can be handled without damage. It can be used to ignite flammable materials quickly. Using it to light a torch, lantern, or anything else with abundant, exposed fuel takes a bonus action. Lighting any other fire takes an action. The ember is consumed when used. If the ember is consumed, the box creates a new ember at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_poison-strand", - "fields": { - "name": "Poison Strand", - "desc": "When you hit with an attack using this magic whip, the target takes an extra 2d4 poison damage. If you hold one end of the whip and use an action to speak its command word, the other end magically extends and darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 17 Dexterity saving throw or become restrained. While restrained, the target takes 2d4 poison damage at the start of each of its turns, and you can use an action to pull the target up to 20 feet toward you. If you would move the target into damaging terrain, such as lava or a pit, it can make a DC 17 Strength saving throw. On a success, the target isn't pulled toward you. You can't use the whip to make attacks while it is restraining a target, and if you release your end of the whip, the target is no longer restrained. The restrained target can use an action to make a DC 17 Strength (Athletics) or Dexterity (Acrobatics) check (target's choice). On a success, the target is no longer restrained by the whip. When the whip has restrained creatures for a total of 1 minute, you can't restrain a creature with the whip again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potent-cure-all", - "fields": { - "name": "Potent Cure-All", - "desc": "The milky liquid in this bottle shimmers when agitated, as small, glittering particles swirl within it. When you drink this potion, it reduces your exhaustion level by one, removes any reduction to one of your ability scores, removes the blinded, deafened, paralyzed, and poisoned conditions, and cures you of any diseases currently afflicting you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-air-breathing", - "fields": { - "name": "Potion of Air Breathing", - "desc": "This potion's pale blue fluid smells like salty air, and a seagull's feather floats in it. You can breathe air for 1 hour after drinking this potion. If you could already breathe air, this potion has no effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-bad-taste", - "fields": { - "name": "Potion of Bad Taste", - "desc": "This brown, sludgy potion tastes extremely foul. When you drink this potion, the taste of your flesh is altered to be unpalatable for 1 hour. During this time, if a creature hits you with a bite attack, it must succeed on a DC 10 Constitution saving throw or spend its next action gagging and retching. A creature with an Intelligence of 4 or lower avoids biting you again unless compelled or commanded by an outside force or if you attack it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-bouncing", - "fields": { - "name": "Potion of Bouncing", - "desc": "A small, red sphere bobs up and down in the clear, effervescent liquid inside this bottle but disappears when the bottle is opened. When you drink this potion, your body becomes rubbery, and you are immune to falling damage for 1 hour. If you fall at least 10 feet, your body bounces back the same distance. As a reaction while falling, you can angle your fall and position your legs to redirect this distance. For example, if you fall 60 feet, you can redirect your bounce to propel you 30 feet up and 30 feet forward from the position where you landed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-buoyancy", - "fields": { - "name": "Potion of Buoyancy", - "desc": "When you drink this clear, effervescent liquid, your body becomes unnaturally buoyant for 1 hour. When you are immersed in water or other liquids, you rise to the surface (at a rate of up to 30 feet per round) to float and bob there. You have advantage on Strength (Athletics) checks made to swim or stay afloat in rough water, and you automatically succeed on such checks in calm waters.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-dire-cleansing", - "fields": { - "name": "Potion of Dire Cleansing", - "desc": "For 1 hour after drinking this potion, you have resistance to poison damage, and you have advantage on saving throws against being blinded, deafened, paralyzed, and poisoned. In addition, if you are poisoned, this potion neutralizes the poison. Known for its powerful, somewhat burning smell, this potion is difficult to drink, requiring a successful DC 13 Constitution saving throw to drink it. On a failure, you are poisoned for 10 minutes and don't gain the benefits of the potion.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-ebbing-strength", - "fields": { - "name": "Potion of Ebbing Strength", - "desc": "When you drink this potion, your Strength score changes to 25 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score. The recipe for this potion is flawed and infused with dangerous Void energies. When you drink this potion, you are also poisoned. While poisoned, you take 2d4 poison damage at the end of each minute. If you are reduced to 0 hit points while poisoned, you have disadvantage on death saving throws. This bubbling, pale blue potion is commonly used by the derro and is almost always paired with a Potion of Dire Cleansing or Holy Verdant Bat Droppings (see page 147). Warriors who use this potion without a method of removing the poison don't intend to return home from battle.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-effulgence", - "fields": { - "name": "Potion of Effulgence", - "desc": "When you drink this potion, your skin glows with radiance, and you are filled with joy and bliss for 1 minute. You shed bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight. While glowing, you are blinded and have disadvantage on Dexterity (Stealth) checks to hide. If a creature with the Sunlight Sensitivity trait starts its turn in the bright light you shed, it takes 2d4 radiant damage. This potion's golden liquid sparkles with motes of sunlight.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-empowering-truth", - "fields": { - "name": "Potion of Empowering Truth", - "desc": "A withered snake's tongue floats in the shimmering gold liquid within this crystalline vial. When you drink this potion, you regain one expended spell slot or one expended use of a class feature, such as Divine Sense, Rage, Wild Shape, or other feature with limited uses. Until you finish a long rest, you can't speak a deliberate lie. You are aware of this effect after drinking the potion. Your words can be evasive, as long as they remain within the boundaries of the truth.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-freezing-fog", - "fields": { - "name": "Potion of Freezing Fog", - "desc": "After drinking this potion, you can use an action to exhale a cloud of icy fog in a 20-foot cube originating from you. The cloud spreads around corners, and its area is heavily obscured. It lasts for 1 minute or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. When a creature enters the cloud for the first time on a turn or starts its turn there, that creature must succeed on a DC 13 Constitution saving throw or take 2d4 cold damage. The effects of this potion end after you have exhaled one fog cloud or 1 hour has passed. This potion has a gray, cloudy appearance and swirls vigorously when shaken.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-malleability", - "fields": { - "name": "Potion of Malleability", - "desc": "The glass bottle holding this thick, red liquid is strangely pliable, and compresses in your hand under the slightest pressure while it still holds the magical liquid. When you drink this potion, your body becomes extremely flexible and adaptable to pressure. For 1 hour, you have resistance to bludgeoning damage, can squeeze through a space large enough for a creature two sizes smaller than you, and have advantage on Dexterity (Acrobatics) checks made to escape a grapple.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-sand-form", - "fields": { - "name": "Potion of Sand Form", - "desc": "This potion's container holds a gritty liquid that moves and pours like water filled with fine particles of sand. When you drink this potion, you gain the effect of the gaseous form spell for 1 hour (no concentration required) or until you end the effect as a bonus action. While in this gaseous form, your appearance is that of a vortex of spiraling sand instead of a misty cloud. In addition, you have advantage on Dexterity (Stealth) checks while in a sandy environment, and, while motionless in a sandy environment, you are indistinguishable from an ordinary swirl of sand.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-skating", - "fields": { - "name": "Potion of Skating", - "desc": "For 1 hour after you drink this potion, you can move across icy surfaces without needing to make an ability check, and difficult terrain composed of ice or snow doesn't cost you extra movement. This sparkling blue liquid contains tiny snowflakes that disappear when shaken.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-transparency", - "fields": { - "name": "Potion of Transparency", - "desc": "The liquid in this vial is clear like water, and it gives off a slight iridescent sheen when shaken or swirled. When you drink this potion, you and everything you are wearing and carrying turn transparent, but not completely invisible, for 10 minutes. During this time, you have advantage on Dexterity (Stealth) checks, and ranged attacks against you have disadvantage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_potion-of-worg-form", - "fields": { - "name": "Potion of Worg Form", - "desc": "Small flecks of brown hair are suspended in this clear, syrupy liquid. When you drink this potion, you transform into a worg for 1 hour. This works like the polymorph spell, but you retain your Intelligence, Wisdom, and Charisma scores. While in worg form, you can speak normally, and you can cast spells that have only verbal components. This transformation doesn't give you knowledge of the Goblin or Worg languages, and you are able to speak and understand those languages only if you knew them before the transformation.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_prayer-mat", - "fields": { - "name": "Prayer Mat", - "desc": "This small rug is woven with intricate patterns that depict religious iconography. When you attune to it, the iconography and the mat's colors change to the iconography and colors most appropriate for your deity. If you spend 10 minutes praying to your deity while kneeling on this mat, you regain one expended use of Channel Divinity. The mat can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_primal-doom-of-anguish", - "fields": { - "name": "Primal Doom of Anguish", - "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_primal-doom-of-pain", - "fields": { - "name": "Primal Doom of Pain", - "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_primal-doom-of-rage", - "fields": { - "name": "Primal Doom of Rage", - "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_primordial-scale", - "fields": { - "name": "Primordial Scale", - "desc": "This armor is fashioned from the scales of a great, subterranean beast shunned by the gods. While wearing it, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the armor increases its range by 60 feet, but you have disadvantage on attack rolls and Wisdom (Perception) checks that rely on sight when you are in sunlight. In addition, while wearing this armor, you have advantage on saving throws against spells cast by agents of the gods, such as celestials, fiends, clerics, and cultists.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_prospecting-compass", - "fields": { - "name": "Prospecting Compass", - "desc": "This battered, old compass has engravings of lumps of ore and natural crystalline minerals. While holding this compass, you can use an action to name a type of metal or stone. The compass points to the nearest naturally occurring source of that metal or stone for 1 hour or until you name a different type of metal or stone. The compass can point to cut gemstones, but it can't point to processed metals, such as iron swords or gold coins. The compass can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_quick-change-mirror", - "fields": { - "name": "Quick-Change Mirror", - "desc": "This utilitarian, rectangular standing mirror measures 4 feet tall and 2 feet wide. Despite its plain appearance, the mirror allows creatures to quickly change outfits. While in front of the mirror, you can use an action to speak the mirror's command word to be clothed in an outfit stored in the mirror. The outfit you are currently wearing is stored in the mirror or falls to the floor at your feet (your choice). The mirror can hold up to 12 outfits. An outfit must be a set of clothing or armor. An outfit can include other wearable items, such as a belt with pouches, a backpack, headwear, or footwear, but it can't include weapons or other carried items unless the weapon or carried item is sheathed, stored in a backpack, pocket, or pouch, or similarly attached to the outfit. The extent of how many attachments an outfit can have before it is considered more than one outfit or it is no longer considered an outfit is at the GM's discretion. To store an outfit you are wearing in the mirror, you must spend at least 1 minute rotating slowly in front of the mirror and speak the mirror's second command word. You can use a bonus action to speak a third command word to cause the mirror to display the outfits it contains. When found, the mirror contains 1d10 + 2 outfits. If the mirror is destroyed, all outfits it contains fall in a heap at its base.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_quill-of-scribing", - "fields": { - "name": "Quill of Scribing", - "desc": "This quill is fashioned from the feather of some exotic beast, often a giant eagle, griffon, or hippogriff. When you take an action to speak the command word, the quill animates, transcribing each word spoken by you, and up to three other creatures you designate, onto whatever material is placed before it until the command word is spoken again, or it has scribed 250 words. Once used, the quill can't be used again for 8 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_quilted-bridge", - "fields": { - "name": "Quilted Bridge", - "desc": "A practiced hand sewed together a collection of cloth remnants from magical garb to make this colorful and warm blanket. You can use an action to unfold it and pour out three drops of wine in tribute to its maker. If you do so, the blanket becomes a 5-foot wide, 10-foot-long bridge as sturdy as steel. You can fold the bridge back up as an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_radiance-bomb", - "fields": { - "name": "Radiance Bomb", - "desc": "This small apple-sized globule is made from a highly reflective silver material and has a single, golden rune etched on it. Typically, 1d4 + 4 radiance bombs are found together. You can use an action to throw the globule up to 60 feet. The globule explodes on impact and is destroyed. Each creature within a 10-foot radius of where the globule landed must make a DC 13 Dexterity saving throw. On a failure, a creature takes 3d6 radiant damage and is blinded for 1 minute. On a success, a creature takes half the damage and isn't blinded. A blinded creature can make a DC 13 Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_radiant-bracers", - "fields": { - "name": "Radiant Bracers", - "desc": "These bronze bracers are engraved with the image of an ankh with outstretched wings. While wearing these bracers, you have resistance to necrotic damage, and you can use an action to speak the command word while crossing the bracers over your chest. If you do so, each undead that can see you within 30 feet of you must make a Wisdom saving throw. The DC is equal to 8 + your proficiency bonus + your Wisdom modifier. On a failure, an undead creature is turned for 1 minute or until it takes any damage. This feature works like the cleric's Turn Undead class feature, except it can't be used to destroy undead. The bracers can't be used to turn undead again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_radiant-libram", - "fields": { - "name": "Radiant Libram", - "desc": "The gilded pages of this holy tome are bound between thin plates of moonstone crystal that emit a gentle incandescence. Aureate celestial runes adorn nearly every inch of its blessed surface. In addition, while you are attuned to the book, the spells written in it count as prepared spells and don't count against the number of spells you can prepare each day. You don't gain additional spell slots from this feature. The following spells are written in the book: beacon of hope, bless, calm emotions, commune, cure wounds, daylight, detect evil and good, divine favor, flame strike, gentle repose, guidance, guiding bolt, heroism, lesser restoration, light, produce flame, protection from evil and good, sacred flame, sanctuary, and spare the dying. A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action. Once used, this property of the book can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rain-of-chaos", - "fields": { - "name": "Rain of Chaos", - "desc": "This magic weapon imbues arrows fired from it with random energies. When you hit with an attack using this magic bow, the target takes an extra 1d6 damage. Roll a 1d8. The number rolled determines the damage type of the extra damage. | d8 | Damage Type |\n| --- | ----------- |\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Lightning |\n| 5 | Necrotic |\n| 6 | Poison |\n| 7 | Radiant |\n| 8 | Thunder |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rainbow-extract", - "fields": { - "name": "Rainbow Extract", - "desc": "This thin, oily liquid shimmers with the colors of the spectrum. For 1 hour after drinking this potion, you can use an action to change the color of your hair, skin, eyes, or all three to any color or mixture of colors in any hue, pattern, or saturation you choose. You can change the colors as often as you want for the duration, but the color changes disappear at the end of the duration.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rapier-of-fallen-saints", - "fields": { - "name": "Rapier of Fallen Saints", - "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ravagers-axe", - "fields": { - "name": "Ravager's Axe", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. Any attack with this axe that hits a structure or an object that isn't being worn or carried is a critical hit. When you roll a 20 on an attack roll made with this axe, the target takes an extra 1d10 cold damage and 1d10 necrotic damage as the axe briefly becomes a rift to the Void.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_recondite-shield", - "fields": { - "name": "Recondite Shield", - "desc": "While wearing this ring, you can use a bonus action to create a weightless, magic shield that shimmers with arcane energy. You must be proficient with shields to wield this semitranslucent shield, and you wield it in the same hand that wears the ring. The shield lasts for 1 hour or until you dismiss it (no action required). Once used, you can't use the ring in this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_recording-book", - "fields": { - "name": "Recording Book", - "desc": "This book, which hosts a dormant Bookkeeper (see Creature Codex), appears to be a journal filled with empty pages. You can use an action to place the open book on a surface and speak its command word to activate it. It remains active until you use an action to speak the command word again. The book records all things said within 60 feet of it. It can distinguish voices and notes those as it records. The book can hold up to 12 hours' worth of conversation. You can use an action to speak a second command word to remove up to 1 hour of recordings in the book, while a third command word removes all the book's recordings. Any creature, other than you or targets you designate, that peruses the book finds the pages blank.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_reef-splitter", - "fields": { - "name": "Reef Splitter", - "desc": "The head of this warhammer is constructed of undersea volcanic rock and etched with images of roaring flames and boiling water. You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon, the hammer erupts with magma, and the target takes an extra 4d6 fire damage. In addition, if the target is underwater, the water around it begins to boil with the heat of your blow, and each creature other than you within 5 feet of the target takes 2d6 fire damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_relocation-cable", - "fields": { - "name": "Relocation Cable", - "desc": "This 60-foot length of fine wire cable weighs 2 pounds. If you hold one end of the cable and use an action to speak its command word, the other end plunges into the ground, burrowing through dirt, sand, snow, mud, ice, and similar material to emerge from the ground at a destination you can see up to its maximum length away. The cable can't burrow through solid rock. On the turn it is activated, you can use a bonus action to magically travel from one end of the cable to the other, appearing in an unoccupied space within 5 feet of the other end. On subsequent turns, any creature in contact with one end of the cable can use an action to appear in an unoccupied space within 5 feet of the other end of it. A creature magically traveling from one end of the cable to the other doesn't provoke opportunity attacks. You can retract the cable by using a bonus action to speak the command word a second time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_resolute-bracer", - "fields": { - "name": "Resolute Bracer", - "desc": "This ornamental bracer features a reservoir sewn into its lining. As an action, you can fill the reservoir with a single potion or vial of liquid, such as a potion of healing or antitoxin. While attuned to this bracer, you can use a bonus action to speak the command word and absorb the liquid as if you had consumed it. Liquid stored in the bracer for longer than 8 hours evaporates.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_retribution-armor", - "fields": { - "name": "Retribution Armor", - "desc": "Etchings of flames adorn this breastplate, which is wrapped in chains of red gold, silver, and black iron. While wearing this armor, you gain a +1 bonus to AC. In addition, if a creature scores a critical hit against you, you have advantage on any attacks against that creature until the end of your next turn or until you score a critical hit against that creature. - You have resistance to necrotic damage, and you are immune to poison damage. - You can't be charmed or poisoned, and you don't suffer from exhaustion.\n- You have darkvision out to a range of 60 feet.\n- You have advantage on saving throws against effects that turn undead.\n- You can use an action to sense the direction of your killer. This works like the locate creature spell, except you can sense only the creature that killed you. You rise as an undead only if your death was caused with intent; accidental deaths or deaths from unintended consequences (such as dying from a disease unintentionally passed to you) don't activate this property of the armor. You exist in this deathly state for up to 1 week per Hit Die or until you exact revenge on your killer, at which time your body crumbles to ash and you finally die. You can be restored to life only by means of a true resurrection or wish spell.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_revenants-shawl", - "fields": { - "name": "Revenant's Shawl", - "desc": "This shawl is made of old raven feathers woven together with elk sinew and small bones. When you are reduced to 0 hit points while wearing the shawl, it explodes in a burst of freezing wind. Each creature within 10 feet of you must make a DC 13 Dexterity saving throw, taking 4d6 cold damage on a failed save, or half as much damage on a successful one. You then regain 4d6 hit points, and the shawl disintegrates into fine black powder.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rift-orb", - "fields": { - "name": "Rift Orb", - "desc": "This orb is a sphere of obsidian 3 inches in diameter. When you speak the command word in Void Speech, you can throw the sphere as an action to a point within 60 feet. When the sphere reaches the point you choose or if it strikes a solid object on the way, it immediately stops and generates a tiny rift into the Void. The area within 20 feet of the rift orb becomes difficult terrain, and gravity begins drawing everything in the affected area toward the rift. Each creature in the area at the start of its turn, or when it enters the area for the first time on a turn, must succeed on a DC 15 Strength saving throw or be pulled 10 feet toward the rift. A creature that touches the rift takes 4d10 necrotic damage. Unattended objects in the area are pulled 10 feet toward the rift at the start of your turn. Nonmagical objects pulled into the rift are destroyed. The rift orb functions for 1 minute, after which time it becomes inert. It can't be used again until the following midnight.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-mail-of-warding-1", - "fields": { - "name": "Ring Mail of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-mail-of-warding-2", - "fields": { - "name": "Ring Mail of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-mail-of-warding-3", - "fields": { - "name": "Ring Mail of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-arcane-adjustment", - "fields": { - "name": "Ring of Arcane Adjustment", - "desc": "This stylized silver ring is favored by spellcasters accustomed to fighting creatures capable of shrugging off most spells. The ring has 3 charges and regains 1d3 expended charges daily at dawn. When you cast a spell of 5th level or lower that has only one target and the target succeeds on the saving throw, you can use a reaction and expend 1 charge from the ring to change the spell's target to a new target within the spell's range. The new target is then affected by the spell, but the new target has advantage on the saving throw. You can't move the spell more than once this way, even if the new target succeeds on the saving throw. You can't move a spell that affects an area, that has multiple targets, that requires an attack roll, or that allows the target to make a saving throw to reduce, but not prevent, the effects of the spell, such as blight or feeblemind.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-bravado", - "fields": { - "name": "Ring of Bravado", - "desc": "This polished brass ring has 3 charges. While wearing the ring, you are inspired to daring acts that risk life and limb, especially if such acts would impress or intimidate others who witness them. When you choose a course of action that could result in serious harm or possible death (your GM has final say in if an action qualifies), you can expend 1 of the ring's charges to roll a d10 and add the number rolled to any d20 roll you make to achieve success or avoid damage, such as a Strength (Athletics) check to scale a sheer cliff and avoid falling or a Dexterity saving throw made to run through a hallway filled with swinging blades. The ring regains all expended charges daily at dawn. In addition, if you fail on a roll boosted by the ring, and you failed the roll by only 1, the ring regains 1 expended charge, as its magic recognizes a valiant effort.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-deceivers-warning", - "fields": { - "name": "Ring of Deceiver's Warning", - "desc": "This copper ring is set with a round stone of blue quartz. While you wear the ring, the stone's color changes to red if a shapechanger comes within 30 feet of you. For the purpose of this ring, “shapechanger” refers to any creature with the Shapechanger trait.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-dragons-discernment", - "fields": { - "name": "Ring of Dragon's Discernment", - "desc": "A large, orange cat's eye gem is held in the fittings of this ornate silver ring, looking as if it is grasped by scaled talons. While wearing this ring, your senses are sharpened. You have advantage on Intelligence (Investigation) and Wisdom (Perception) checks, and you can take the Search action as a bonus action. In addition, you are able to discern the value of any object made of precious metals or minerals or rare materials by handling it for 1 round.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-featherweight-weapons", - "fields": { - "name": "Ring of Featherweight Weapons", - "desc": "If you normally have disadvantage on attack rolls made with weapons with the Heavy property due to your size, you don't have disadvantage on those attack rolls while you wear this ring. This ring has no effect on you if you are Medium or larger or if you don't normally have disadvantage on attack rolls with heavy weapons.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-giant-mingling", - "fields": { - "name": "Ring of Giant Mingling", - "desc": "While wearing this ring, your size changes to match the size of those around you. If you are a Large creature and start your turn within 100 feet of four or more Medium creatures, this ring makes you Medium. Similarly, if you are a Medium creature and start your turn within 100 feet of four or more Large creatures, this ring makes you Large. These effects work like the effects of the enlarge/reduce spell, except they persist as long as you wear the ring and satisfy the conditions.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-hoarded-life", - "fields": { - "name": "Ring of Hoarded Life", - "desc": "This ring stores hit points sacrificed to it, holding them until the attuned wearer uses them. The ring can store up to 30 hit points at a time. When found, it contains 2d10 stored hit points. While wearing this ring, you can use an action to spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. Your hit point maximum is reduced by the total, and the ring stores the total, up to 30 hit points. This hit point maximum reduction can't be removed with the greater restoration spell or similar magic and lasts as long as hit points remain stored in the ring. You can't store hit points in the ring if you don't have blood. When hit points are stored in the ring, you can cause one of the following effects: - You can use a bonus action to remove stored hit points from the ring and regain that number of hit points.\n- You can use an action to remove stored hit points from the ring while touching the ring to a creature. If you do so, the creature regains hit points equal to the amount of hit points you removed from the ring.\n- When you are reduced to 0 hit points and are not killed outright, you can use a reaction to empty the ring of stored hit points and regain hit points equal to that amount. Hit Dice spent on this ring's features can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-imperious-command", - "fields": { - "name": "Ring of Imperious Command", - "desc": "Embossed in gold on this heavy iron ring is the image of a crown. The ring has 3 charges and regains 1d3 expended charges daily at dawn. While wearing this ring, you have advantage on Charisma (Intimidation) checks, and you can project your voice up to 300 feet with perfect clarity. In addition, you can use an action and expend 1 of the ring's charges to command a creature you can see within 30 feet of you to kneel before you. The target must make a DC 15 Charisma saving throw. On a failure, the target spends its next turn moving toward you by the shortest and most direct route then falls prone and ends its turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-lights-comfort", - "fields": { - "name": "Ring of Light's Comfort", - "desc": "A disc of white chalcedony sits within an encompassing band of black onyx, set into fittings on this pewter ring. While wearing this ring in dim light or darkness, you can use a bonus action to speak the ring's command word, causing it to shed bright light in a 30-foot radius and dim light for an additional 30 feet. The ring automatically sheds this light if you start your turn within 60 feet of an undead or lycanthrope. The light lasts until you use a bonus action to repeat the command word. In addition, you can't be charmed, frightened, or possessed by undead or lycanthropes.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-nights-solace", - "fields": { - "name": "Ring of Night's Solace", - "desc": "A disc of black onyx sits within an encompassing band of white chalcedony, set into fittings on this pewter ring. While wearing this ring in bright light, you are draped in a comforting cloak of shadow, protecting you from the harshest glare. If you have the Sunlight Sensitivity trait or a similar trait that causes you to have disadvantage on attack rolls or Wisdom (Perception) checks while in bright light or sunlight, you don't suffer those effects while wearing this ring. In addition, you have advantage on saving throws against being blinded.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-powerful-summons", - "fields": { - "name": "Ring of Powerful Summons", - "desc": "When you summon a creature with a conjuration spell while wearing this ring, the creature gains a +1 bonus to attack and damage rolls and 1d4 + 4 temporary hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-remembrance", - "fields": { - "name": "Ring of Remembrance", - "desc": "This ring is a sturdy piece of string, tied at the ends to form a circle. While wearing it, you can use an action to invoke its power by twisting it on your finger. If you do so, you have advantage on the next Intelligence check you make to recall information. The ring can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-sealing", - "fields": { - "name": "Ring of Sealing", - "desc": "This ring appears to be made of golden chain links. It has 3 charges and regains 1d3 expended charges daily at dawn. When you hit a creature with a melee attack while wearing this ring, you can use a bonus action and expend 1 of the ring's charges to cause mystical golden chains to spring from the ground and wrap around the creature. The target must make a DC 17 Wisdom saving throw. On a failure, the magical chains hold the target firmly in place, and it is restrained. The target can't move or be moved by any means. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. However, if the target fails three consecutive saving throws, the chains bind the target permanently. A successful dispel magic (DC 17) cast on the chains destroys them.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-shadows", - "fields": { - "name": "Ring of Shadows", - "desc": "While wearing this ebony ring in dim light or darkness, you have advantage on Dexterity (Stealth) checks. When you roll a 20 on a Dexterity (Stealth) check, the ring's magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-small-mercies", - "fields": { - "name": "Ring of Small Mercies", - "desc": "While wearing this plain, beaten pewter ring, you can use an action to cast the spare the dying spell from it at will.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-stored-vitality", - "fields": { - "name": "Ring of Stored Vitality", - "desc": "While you are attuned to and wearing this ring of polished, white chalcedony, you can feed some of your vitality into the ring to charge it. You can use an action to suffer 1 level of exhaustion. For each level of exhaustion you suffer, the ring regains 1 charge. The ring can store up to 3 charges. As the ring increases in charges, its color reddens, becoming a deep red when it has 3 charges. Your level of exhaustion can be reduced by normal means. If you already suffer from 3 or more levels of exhaustion, you can't suffer another level of exhaustion to restore a charge to the ring. While wearing the ring and suffering exhaustion, you can use an action to expend 1 or more charges from the ring to reduce your exhaustion level. Your exhaustion level is reduced by 1 for each charge you expend.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-the-dolphin", - "fields": { - "name": "Ring of the Dolphin", - "desc": "This gold ring bears a jade carving in the shape of a leaping dolphin. While wearing this ring, you have a swimming speed of 40 feet. In addition, you can hold your breath for twice as long while underwater.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-the-frog", - "fields": { - "name": "Ring of the Frog", - "desc": "A pale chrysoprase cut into the shape of a frog is the centerpiece of this tarnished copper ring. While wearing this ring, you have a swimming speed of 20 feet, and you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-the-frost-knight", - "fields": { - "name": "Ring of the Frost Knight", - "desc": "This white gold ring is covered in a thin sheet of ice and always feels cold to the touch. The ring has 3 charges and regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 charge to surround yourself in a suit of enchanted ice that resembles plate armor. For 1 hour, your AC can't be less than 16, regardless of what kind of armor you are wearing, and you have resistance to cold damage. The icy armor melts, ending the effect early, if you take 20 fire damage or more.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-the-groves-guardian", - "fields": { - "name": "Ring of the Grove's Guardian", - "desc": "This pale gold ring looks as though made of delicately braided vines wrapped around a small, rough obsidian stone. While wearing this ring, you have advantage on Wisdom (Perception) checks. You can use an action to speak the ring's command word to activate it and draw upon the vitality of the grove to which the ring is bound. You regain 2d10 hit points. Once used, this property can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-the-jarl", - "fields": { - "name": "Ring of the Jarl", - "desc": "This thick band of hammered yellow gold is warm to the touch even in the coldest of climes. While you wear it, you have resistance to cold damage. If you are also wearing boots of the winterlands, you are immune to cold damage instead. Bolstering Shout. When you roll for initiative while wearing this ring, you can use a reaction to shout a war cry, bolstering your allies. Each friendly creature within 30 feet of you and that can hear you gains a +2 bonus on its initiative roll, and it has advantage on attack rolls for a number of rounds equal to your Charisma modifier (minimum of 1 round). Once used, this property of the ring can’t be used again until the next dawn. Wergild. While wearing this ring, you can use an action to create a nonmagical duplicate of the ring that is worth 100 gp. You can bestow this ring upon another as a gift. The ring can’t be used for common barter or trade, but it can be used for debts and payment of a warlike nature. You can give this ring to a subordinate warrior in your service or to someone to whom you owe a blood-debt, as a weregild in lieu of further fighting. You can create up to 3 of these rings each week. Rings that are not gifted within 24 hours of their creation vanish again.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-the-water-dancer", - "fields": { - "name": "Ring of the Water Dancer", - "desc": "This thin braided purple ring is fashioned from a single piece of coral. While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground. In addition, while walking atop any liquid, your movement speed increases by 10 feet and you gain a +1 bonus to your AC.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ring-of-ursa", - "fields": { - "name": "Ring of Ursa", - "desc": "This wooden ring is set with a strip of fossilized honey. While wearing this ring, you gain the following benefits: - Your Strength score increases by 2, to a maximum of 20.\n- You have advantage on Charisma (Persuasion) checks made to interact with bearfolk. In addition, while attuned to the ring, your hair grows thick and abundant. Your facial features grow more snout-like, and your teeth elongate. If you aren't a bearfolk, you gain the following benefits while wearing the ring:\n- You can now make a bite attack as an unarmed strike. When you hit with it, your bite deals piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. - You gain a powerful build and count as one size larger when determining your carrying capacity and the weight you can push, drag, or lift.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_river-token", - "fields": { - "name": "River Token", - "desc": "This small pebble measures 3/4 of an inch in diameter and weighs an ounce. The pebbles are often shaped like salmon, river clams, or iridescent river rocks. Typically, 1d4 + 4 river tokens are found together. The token gives off a distinct shine in sunlight and radiates a scent of fresh, roiling water. It is sturdy but crumbles easily if crushed. As an action, you can destroy the token by crushing it and sprinkling the remains into a river, calming the waters to a gentle current and soothing nearby water-dwelling creatures for 1 hour. Water-dwelling beasts in the river with an Intelligence of 3 or lower are soothed and indifferent toward passing humanoids for the duration. The token's magic soothes but doesn't fully suppress the hostilities of all other water-dwelling creatures. For the duration, each other water-dwelling creature must succeed on a DC 15 Wisdom saving throw to attack or take hostile actions toward passing humanoids. The token's soothing magic ends on a creature if that creature is attacked.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_riverine-blade", - "fields": { - "name": "Riverine Blade", - "desc": "The crossguard of this distinctive sword depicts a stylized Garroter Crab (see Tome of Beasts) with claws extended, and the pommel is set with a smooth, spherical, blue-black river rock. You gain a +2 bonus to attack and damage rolls made with this magic weapon. While on a boat or while standing in any depth of water, you have advantage on Dexterity checks and saving throws.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-blade-bending", - "fields": { - "name": "Rod of Blade Bending", - "desc": "This simple iron rod functions as a magic mace that grants a +1 bonus to attack and damage rolls made with it. Blade Bend. While holding the rod, you can use an action to activate it, creating a magical field around you for 10 minutes. When a creature attacks you with a melee weapon that deals piercing or slashing damage while the field is active, it must make a DC 15 Wisdom saving throw. On a failure, the creature’s attack misses. On a success, the creature’s attack hits you, but you have resistance to any piercing or slashing damage dealt by the attack as the weapon bends partially away from your body. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-bubbles", - "fields": { - "name": "Rod of Bubbles", - "desc": "This rod appears to be made of foamy bubbles, but it is completely solid to the touch. This rod has 3 charges. While holding it, you can use an action to expend 1 of its charges to conjure a bubble around a creature or object within 30 feet. If the target is a creature, it must make a DC 15 Strength saving throw. On a failed save, the target becomes trapped in a 10-foot sphere of water. A Huge or larger creature automatically succeeds on this saving throw. A creature trapped within the bubble is restrained unless it has a swimming speed and can't breathe unless it can breathe water. If the target is an object, it becomes soaked in water, any fire effects are extinguished, and any acid effects are negated. The bubble floats in the exact spot where it was conjured for up to 1 minute, unless blown by a strong wind or moved by water. The bubble has 50 hit points, AC 8, immunity to acid damage and vulnerability to piercing damage. The inside of the bubble also has resistance to all damage except piercing damage. The bubble disappears after 1 minute or when it is reduced to 0 hit points. When not in use, this rod can be commanded to take liquid form and be stored in a small vial. The rod regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-conveyance", - "fields": { - "name": "Rod of Conveyance", - "desc": "The top of this rod is capped with a bronze horse head, and its foot is decorated with a horsehair plume. By placing the rod between your legs, you can use an action to temporarily transform the rod into a horse-like construct. This works like the phantom steed spell, except you can use a bonus action to end the effect early to use the rod again at a later time. Deduct the time the horse was active in increments of 1 minute from the spell's 1-hour duration. When the rod has been a horse for a total of 1 hour, the magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-deflection", - "fields": { - "name": "Rod of Deflection", - "desc": "This thin, flexible rod is made of braided silver and brass wire and topped with a spoon-like cup. While holding the rod, you can use a reaction to deflect a ranged weapon attack against you. You can simply cause the attack to miss, or you can attempt to redirect the attack against another target, even your attacker. The attack must have enough remaining range to reach the new target. If the additional distance between yourself and the new target is within the attack's long range, it is made at disadvantage as normal, using the original attack roll as the first roll. The rod has 3 charges. You can expend a charge as a reaction to redirect a ranged spell attack as if it were a ranged weapon attack, up to the spell's maximum range. The rod regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-ghastly-might", - "fields": { - "name": "Rod of Ghastly Might", - "desc": "The knobbed head of this tarnished silver rod resembles the top half of a jawless, syphilitic skull, and it functions as a magic mace that grants a +2 bonus to attack and damage rolls made with it. The rod has properties associated with five different buttons that are set erratically along the haft. It has three other properties as well, detailed below. If you press **button 1**, the rod's head erupts in a fiery nimbus of abyssal energy that sheds dim light in a 5-foot radius. While the rod is ablaze, it deals an extra 1d6 fire damage and 1d6 necrotic damage to any target it hits. If you press **button 2**, the rod's head becomes enveloped in a black aura of enervating energy. When you hit a target with the rod while it is enveloped in this energy, the target must succeed on a DC 17 Constitution saving throw or deal only half damage with weapon attacks that use Strength until the end of its next turn. If you press **button 3**, a 2-foot blade springs from the tip of the rod's handle as the handle lengthens into a 5-foot haft, transforming the rod into a magic glaive that grants a +2 bonus to attack and damage rolls made with it. If you press **button 4**, a 3-pronged, bladed grappling hook affixed to a long chain springs from the tip of the rod's handle. The bladed grappling hook counts as a magic sickle with reach that grants a +2 bonus to attack and damage rolls made with it. When you hit a target with the bladed grappling hook, the target must succeed on an opposed Strength check or fall prone. If you press **button 5**, the rod assumes or remains in its normal form and you can extinguish all nonmagical flames within 30 feet of you. Turning Defiance. While holding the rod, you and any undead allies within 30 feet of you have advantage on saving throws against effects that turn undead. Contagion. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target is afflicted with a disease. This works like the contagion spell. Once used, this property can’t be used again until the next dusk. Create Specter. As an action, you can target a humanoid within 10 feet of you that was killed by the rod or one of its effects and has been dead for no longer than 1 minute. The target’s spirit rises as a specter under your control in the space of its corpse or in the nearest unoccupied space. You can have no more than one specter under your control at one time. Once used, this property can’t be used again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-hellish-grounding", - "fields": { - "name": "Rod of Hellish Grounding", - "desc": "This curious jade rod is tipped with a knob of crimson crystal that glows and shimmers with eldritch phosphorescence. While holding or carrying the rod, you have darkvision out to a range of 30 feet, and you have advantage on Dexterity (Acrobatics) checks. Hellish Desiccation. While holding this rod, you can use an action to fire a crimson ray at an object or creature made of metal that you can see within 60 feet of you. The ray forms a 5-foot wide line between you and the target. Each creature in that line that isn’t a construct or an undead must make a DC 15 Dexterity saving throw, taking 8d6 force damage on a failed save, or half as much damage on a successful one. Creatures and objects made of metal are unaffected. If this damage reduces a creature to 0 hit points, it is desiccated. A desiccated creature is reduced to a withered corpse, but everything it is wearing and carrying is unaffected. The creature can be restored to life only by means of a true resurrection or a wish spell. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-icicles", - "fields": { - "name": "Rod of Icicles", - "desc": "This white crystalline rod is shaped like an icicle. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges to attack one creature you can see within 60 feet of you. The rod launches an icicle at the target and makes its attack roll with a +7 bonus. On a hit, the target takes 2d6 piercing damage and 2d6 cold damage. On a critical hit, the target is also paralyzed until the end of its next turn as it momentarily freezes. If you take fire damage while holding this rod, you become immune to fire damage for 1 minute, and the rod loses 2 charges. If the rod has only 1 charge remaining when you take fire damage, you become immune to fire damage, as normal, but the rod melts into a puddle of water and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-reformation", - "fields": { - "name": "Rod of Reformation", - "desc": "This rod of polished white oak is wrapped in a knotted cord with three iron rings binding each end. If you are holding the rod and fail a saving throw against a transmutation spell or other effect that would change your body or remove or alter parts of you, you can choose to succeed instead. The rod can’t be used this way again until the next dawn. The rod has 5 charges for the following properties. It regains 1d4 + 1 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rings fall off, the cord unknots, and the entire rod slowly falls to pieces and is destroyed. Cure Transformation. While holding the rod, you can use an action to expend 1 charge while touching a creature that has been affected by a transmutation spell or other effect that changed its physical form, such as the polymorph spell or a medusa's Petrifying Gaze. The rod restores the creature to its original form. If the creature is willingly transformed, such as a druid using Wild Shape, you must make a melee weapon attack roll, using the rod. You are proficient with the rod if you are proficient with clubs. On a hit, you can expend 1 of the rod’s charges to force the target to make a DC 15 Constitution saving throw. On a failure, the target reverts to its original form. Mend Form. While holding the rod, you can use an action to expend 2 charges to reattach a creature's severed limb or body part. The limb must be held in place while you use the rod, and the process takes 1 minute to complete. You can’t reattach limbs or other body parts to dead creatures. If the limb is lost, you can spend 4 charges instead to regenerate the missing piece, which takes 2 minutes to complete. Reconstruct Form. While holding the rod, you can use an action to expend 5 charges to reconstruct the form of a creature or object that has been disintegrated, burned to ash, or similarly destroyed. An item is completely restored to its original state. A creature’s body is fully restored to the state it was in before it was destroyed. The creature isn’t restored to life, but this reconstruction of its form allows the creature to be restored to life by spells that require the body to be present, such as raise dead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-repossession", - "fields": { - "name": "Rod of Repossession", - "desc": "This short, metal rod is engraved with arcane runes and images of open hands. The rod has 3 charges and regains all expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges and target an object within 30 feet of you that isn't being worn or carried. If the object weighs no more than 25 pounds, it floats to your open hand. If you have no hands free, the object sticks to the tip of the rod until the end of your next turn or until you remove it as a bonus action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-sacrificial-blessing", - "fields": { - "name": "Rod of Sacrificial Blessing", - "desc": "This silvery rod is set with rubies on each end. One end holds rubies shaped to resemble an open, fanged maw, and the other end's rubies are shaped to resemble a heart. While holding this rod, you can use an action to spend one or more Hit Dice, up to half your maximum Hit Dice, while pointing the heart-shaped ruby end of the rod at a target within 60 feet of you. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target regains hit points equal to the total hit points you lost. You can't use this feature if you don't have blood. Hit Dice spent on this feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-sanguine-mastery", - "fields": { - "name": "Rod of Sanguine Mastery", - "desc": "This rod is topped with a red ram's skull with two backswept horns. As an action, you can spend one or more Hit Dice, up to half of your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and a target within 60 feet of you must make a DC 17 Dexterity saving throw, taking necrotic damage equal to the total on a failed save, or half as much damage on a successful one. You can't use this feature if you don't have blood. Hit Dice spent on this feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-swarming-skulls", - "fields": { - "name": "Rod of Swarming Skulls", - "desc": "An open-mouthed skull caps this thick, onyx rod. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dusk. While holding the rod, you can use an action and expend 1 of the rod's charges to unleash a swarm of miniature spectral blue skulls at a target within 30 feet. The target must make a DC 15 Wisdom saving throw. On a failure, it takes 3d6 psychic damage and becomes paralyzed with fear until the end of its next turn. On a success, it takes half the damage and isn't paralyzed. Creatures that can't be frightened are immune to this effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-the-disciplinarian", - "fields": { - "name": "Rod of the Disciplinarian", - "desc": "This black lacquered wooden rod is banded in steel, has a flanged head, and functions as a magic mace. As a bonus action, you can brandish the rod at a creature and demand it refrain from a particular activity— attacking, casting, moving, or similar. The activity can be as specific (don't attack the person next to you) or as open (don't cast a spell) as you want, but the activity must be a conscious act on the creature's part, must be something you can determine is upheld or broken, and can't immediately jeopardize the creature's life. For example, you can forbid a creature from lying only if you are capable of determining if the creature is lying, and you can't forbid a creature that needs to breathe from breathing. The creature can act normally, but if it performs the activity you forbid, you can use a reaction to make a melee attack against it with the rod. You can forbid only one creature at a time. If you forbid another creature from performing an activity, the previous creature is no longer forbidden from performing activities. Justicars are arbiters of law and order, operating independently of any official city guard or watch divisions. They are recognizable by their black, hooded robes, silver masks, and the rods they carry as weapons. These stern sentinels are overseen by The Magister, a powerful wizard of whom little is known other than their title. The Magister has made it their duty to oversee order in the city and executes their plans through the Justicars, giving them the Magister's mark, a signet ring, as a symbol of their authority. While some officers and members of the watch may be resentful of the Justicars' presence, many are grateful for their aid, especially in situations that could require magic. Justicar's are a small, elite group, typically acting as solo agents, though extremely dangerous situations bring them together in pairs or larger groups as needed. The Justicars are outfitted with three symbols of authority that are also imbued with power: their masks, rods, and rings. Each by itself is a useful item, but they are made stronger when worn together. The combined powers of this trinity of items make a Justicar a formidable force in the pursuit of law and order.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-the-infernal-realms", - "fields": { - "name": "Rod of the Infernal Realms", - "desc": "The withered, clawed hand of a demon or devil tops this iron rod. While holding this rod, you gain a +2 bonus to spell attack rolls, and the save DC for your spells increases by 2. Frightful Eyes. While holding this rod, you can use a bonus action to cause your eyes to glow with infernal fire for 1 minute. While your eyes are glowing, a creature that starts its turn or enters a space within 10 feet of you must succeed on a Wisdom saving throw against your spell save DC or become frightened of you until your eyes stop glowing. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once used, you can’t use this property again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-the-jester", - "fields": { - "name": "Rod of the Jester", - "desc": "This wooden rod is decorated with colorful scarves and topped with a carving of a madly grinning head. Caper. While holding the rod, you can dance and perform general antics that attract attention. Make a DC 10 Charisma (Performance) check. On a success, one creature that can see and hear you must succeed on a DC 15 Wisdom saving throw or have disadvantage on Wisdom (Perception) checks made to perceive any creature other than you for 1 minute. The effect ends if the target can no longer see or hear you or if you are incapacitated. You can affect one additional creature for each 5 points by which you beat the DC (two creatures with a result of 15, three creatures with a result of 20, and so on). Once used, this property can’t be used again until the next dawn. Hideous Laughter. While holding the rod, you can use an action to cast the hideous laughter spell (save DC 15) from it. Once used, this property can’t be used again until the next dawn. Slapstick. You can use an action to swing the rod in the direction of a creature within 5 feet of you. The target must succeed on a DC 15 Dexterity saving throw or be pushed up to 5 feet away from you and knocked prone. If the target fails the saving throw by 5 or more, it is also stunned until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-the-mariner", - "fields": { - "name": "Rod of the Mariner", - "desc": "This thin bone rod is topped with the carved figurine of an albatross in flight. The rod has 5 charges. You can use an action to expend 1 or more of its charges and point the rod at one or more creatures you can see within 30 feet of you, expending 1 charge for each creature. Each target must succeed on a DC 15 Wisdom saving throw or be cursed for 1 minute. A cursed creature has disadvantage on attack rolls and saving throws while within 100 feet of a body of water that is at least 20 feet deep. The rod regains 1d4 + 1 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rod crumbles to dust and is destroyed, and you must succeed on a DC 15 Wisdom saving throw or be cursed for 1 minute as if you had been the target of the rod's power.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-the-wastes", - "fields": { - "name": "Rod of the Wastes", - "desc": "Created by a holy order of knights to protect their most important members on missions into badlands and magical wastelands, these red gold rods are invaluable tools against the forces of evil. This rod has a rounded head, and it functions as a magic mace that grants a +2 bonus to attack and damage rolls made with it. While holding or carrying the rod, you have advantage on Wisdom (Perception) and Wisdom (Survival) checks made in badlands and wasteland terrain, and you have advantage on saving throws against being charmed or otherwise compelled by aberrations and fiends. If you are charmed or magically compelled by an aberration or fiend, the rod flashes with crimson light, alerting others to your predicament. Aberrant Smite. If you use Divine Smite when you hit an aberration or fiend with this rod, you use the highest number possible for each die of radiant damage rather than rolling one or more dice for the extra radiant damage. You must still roll damage dice for the rod’s damage, as normal. Once used, this property can’t be used again until the next dawn. Spells. You can use an action to cast one of the following spells from the rod: daylight, lesser restoration, or shield of faith. Once you cast a spell with this rod, you can’t cast that spell again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-thorns", - "fields": { - "name": "Rod of Thorns", - "desc": "Several long sharp thorns sprout along the edge of this stout wooden rod, and it functions as a magic mace that grants a +1 bonus to attack and damage rolls made with it. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges to cast the spike growth spell (save DC 15) from it. Embed Thorn. When you hit a creature with this rod, you can expend 1 of its charges to embed a thorn in the creature. At the start of each of the creature’s turns, it must succeed on a DC 15 Constitution saving throw or take 2d6 piercing damage from the embedded thorn. If the creature succeeds on two saving throws, the thorn falls out and crumbles to dust. The successes don’t need to be consecutive. If the creature dies while the thorn is embedded, its body transforms into a patch of nonmagical brambles, which fill its space with difficult terrain.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-underworld-navigation", - "fields": { - "name": "Rod of Underworld Navigation", - "desc": "This finely carved rod is decorated with gold and small dragon scales. While underground and holding this rod, you know how deep below the surface you are. You also know the direction to the nearest exit leading upward. As an action while underground and holding this rod, you can use the find the path spell to find the shortest, most direct physical route to a location you are familiar with on the surface. Once used, the find the path property can't be used again until 3 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-vapor", - "fields": { - "name": "Rod of Vapor", - "desc": "This wooden rod is topped with a dragon's head, carved with its mouth yawning wide. While holding the rod, you can use an action to cause a thick mist to issue from the dragon's mouth, filling your space. As long as you maintain concentration, you leave a trail of mist behind you when you move. The mist forms a line that is 5 feet wide and as long as the distance you travel. This mist you leave behind you lasts for 2 rounds; its area is heavily obscured on the first round and lightly obscured on the second, then it dissipates. When the rod has produced enough mist to fill ten 5-foot-square areas, its magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-verbatim", - "fields": { - "name": "Rod of Verbatim", - "desc": "Tiny runic script covers much of this thin brass rod. While holding the rod, you can use a bonus action to activate it. For 10 minutes, it translates any language spoken within 30 feet of it into Common. The translation can be auditory, or it can appear as glowing, golden script, a choice you make when you activate it. If the translation appears on a surface, the surface must be within 30 feet of the rod and each word remains for 1 round after it was spoken. The rod's translation is literal, and it doesn't replicate or translate emotion or other nuances in speech, body language, or culture. Once used, the rod can't be used again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rod-of-warning", - "fields": { - "name": "Rod of Warning", - "desc": "This plain, wooden rod is topped with an orb of clear, polished crystal. You can use an action activate it with a command word while designating a particular kind of creature (orcs, wolves, etc.). When such a creature comes within 120 feet of the rod, the crystal glows, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. You can use an action to deactivate the rod's light or change the kind of creature it detects. The rod doesn't need to be in your possession to function, but you must have it in hand to activate it, deactivate it, or change the kind of creature it detects.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rogues-aces", - "fields": { - "name": "Rogue's Aces", - "desc": "These four, colorful parchment cards have long bailed the daring out of hazardous situations. You can use an action to flip a card face-up, activating it. A card is destroyed after it activates. Ace of Pentacles. The pentacles suit represents wealth and treasure. When you activate this card, you cast the knock spell from it on an object you can see within 60 feet of you. In addition, you have advantage on Dexterity checks to pick locks using thieves’ tools for the next 24 hours. Ace of Cups. The cups suit represents water and its calming, soothing, and cleansing properties. When you activate this card, you cast the calm emotions spell (save DC 15) from it. In addition, you have advantage on Charisma (Deception) checks for the next 24 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_root-of-the-world-tree", - "fields": { - "name": "Root of the World Tree", - "desc": "Crafted from the root burl of a sacred tree, this rod is 2 feet long with a spiked, knobby end. Runes inlaid with gold decorate the full length of the rod. This rod functions as a magic mace. Blood Anointment. You can perform a 1-minute ritual to anoint the rod in your blood. If you do, your hit point maximum is reduced by 2d4 until you finish a long rest. While your hit point maximum is reduced in this way, you gain a +1 bonus to attack and damage rolls made with this magic weapon, and, when you hit a fey or giant with this weapon, that creature takes an extra 2d6 necrotic damage. Holy Anointment. If you spend 1 minute anointing the rod with a flask of holy water, you can cast the augury spell from it. The runes carved into the rod glow and move, forming an answer to your query.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rope-seed", - "fields": { - "name": "Rope Seed", - "desc": "If you soak this 5-foot piece of twine in at least one pint of water, it grows into a 50-foot length of hemp rope after 1 minute.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rowan-staff", - "fields": { - "name": "Rowan Staff", - "desc": "Favored by those with ties to nature and death, this staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. While holding it, you have an advantage on saving throws against spells. The staff has 10 charges for the following properties. It regains 1d4 + 1 expended charges daily at midnight, though it regains all its charges if it is bathed in moonlight at midnight. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff. Spell. While holding this staff, you can use an action to expend 1 or more of its charges to cast animate dead, using your spell save DC and spellcasting ability. The target bones or corpse can be a Medium or smaller humanoid or beast. Each charge animates a separate target. These undead creatures are under your control for 24 hours. You can use an action to expend 1 charge each day to reassert your control of up to four undead creatures created by this staff for another 24 hours. Deanimate. You can use an action to strike an undead creature with the staff in combat. If the attack hits, the target must succeed on a DC 17 Constitution saving throw or revert to an inanimate pile of bones or corpse in its space. If the undead has the Incorporeal Movement trait, it is destroyed instead. Deanimating an undead creature expends a number of charges equal to twice the challenge rating of the creature (minimum of 1). If the staff doesn’t have enough charges to deanimate the target, the staff doesn’t deanimate the target.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rowdys-club", - "fields": { - "name": "Rowdy's Club", - "desc": "This knobbed stick is marked with nicks, scratches, and notches. You gain a +1 bonus to attack and damage rolls made with this magic weapon. While wielding the club, you can use an action to tap it against your open palm, the side of your leg, a surface within reach, or similar. If you do, you have advantage on your next Charisma (Intimidation) check. If you are also wearing a rowdy's ring (see page 87), you can use an action to frighten a creature you can see within 30 feet of you instead. The target must succeed on a DC 13 Wisdom saving throw or be frightened of you until the end of its next turn. Once this special action has been used three times, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rowdys-ring", - "fields": { - "name": "Rowdy's Ring", - "desc": "The face of this massive ring is a thick slab of gold-plated lead, which is attached to twin rings that are worn over the middle and ring fingers. The slab covers your fingers from the first and second knuckles, and it often has a threatening word or image engraved on it. While wearing the ring, your unarmed strike uses a d4 for damage and attacks made with the ring hand count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_royal-jelly", - "fields": { - "name": "Royal Jelly", - "desc": "This oil is distilled from the pheromones of queen bees and smells faintly of bananas. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying. For larger creatures, one additional vial is required for each size category above Medium. Applying the oil takes 10 minutes. The affected creature then has advantage on Charisma (Persuasion) checks for 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ruby-crusher", - "fields": { - "name": "Ruby Crusher", - "desc": "This greatclub is made entirely of fused rubies with a grip wrapped in manticore hide A roaring fire burns behind its smooth facets. You gain a +3 bonus to attack and damage rolls made with this magic weapon. You can use a bonus action to speak this magic weapon's command word, causing it to be engulfed in flame. These flames shed bright light in a 30-foot radius and dim light for an additional 30 feet. While the greatclub is aflame, it deals fire damage instead of bludgeoning damage. The flames last until you use a bonus action to speak the command word again or until you drop the weapon. When you hit a Large or larger creature with this greatclub, the creature must succeed on a DC 17 Constitution saving throw or be pushed up to 30 feet away from you. If the creature strikes a solid object, such as a door or wall, during this movement, it and the object take 1d6 bludgeoning damage for each 10 feet the creature traveled before hitting the object.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rug-of-safe-haven", - "fields": { - "name": "Rug of Safe Haven", - "desc": "This small, 3-foot-by-5-foot rug is woven with a tree motif and a tasseled fringe. While the rug is laid out on the ground, you can speak its command word as an action to create an extradimensional space beneath the rug for 1 hour. The extradimensional space can be reached by lifting a corner of the rug and stepping down as if through a trap door in a floor. The space can hold as many as eight Medium or smaller creatures. The entrance can be hidden by pulling the rug flat. Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window in the shape and style of the rug. Anything inside the extradimensional space is gently pushed out to the nearest unoccupied space when the duration ends. The rug can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_rust-monster-shell", - "fields": { - "name": "Rust Monster Shell", - "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, you can use an action to magically coat the armor in rusty flakes for 1 minute. While the armor is coated in rusty flakes, any nonmagical weapon made of metal that hits you corrodes. After dealing damage, the weapon takes a permanent and cumulative –1 penalty to damage rolls. If its penalty drops to –5, the weapon is destroyed. Nonmagical ammunition made of metal that hits you is destroyed after dealing damage. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sacrificial-knife", - "fields": { - "name": "Sacrificial Knife", - "desc": "Runes dance along the blade of this keen knife. Sacrificial Knife (Common). While attuned to it, you can use this magic, rune-inscribed dagger as a spellcasting focus. Ceremonial Sacrificial Knife (Uncommon). More powerful versions of this blade also exist. While holding the greater version of this dagger, you can use it to perform a sacrificial ritual during a short rest. If you sacrifice a Tiny or Small creature, you regain one expended 1st-level spell slot. If you sacrifice a Medium or larger creature, you regain one expended 2nd-level spell slot.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_saddle-of-the-cavalry-casters", - "fields": { - "name": "Saddle of the Cavalry Casters", - "desc": "This magic saddle adjusts its size and shape to fit the animal to which it is strapped. While a mount wears this saddle, creatures have disadvantage on opportunity attacks against the mount or its rider. While you sit astride this saddle, you have advantage on any checks to remain mounted and on Constitution saving throws to maintain concentration on a spell when you take damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sanctuary-shell", - "fields": { - "name": "Sanctuary Shell", - "desc": "This seashell is intricately carved with protective runes. If you are carrying the shell and are reduced to 0 hit points or incapacitated, the shell activates, creating a bubble of force that expands to surround you and forces any other creatures out of your space. This sphere works like the wall of force spell, except that any creature intent on aiding you can pass through it. The protective sphere lasts for 10 minutes, or until you regain at least 1 hit point or are no longer incapacitated. When the protective sphere ends, the shell crumbles to dust.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sand-arrow", - "fields": { - "name": "Sand Arrow", - "desc": "The shaft of this arrow is made of tightly packed white sand that discorporates into a blast of grit when it strikes a target. On a hit, the sand catches in the fittings and joints of metal armor, and the target's speed is reduced by 10 feet until it cleans or removes the armor. In addition, the target must succeed on a DC 11 Constitution saving throw or be blinded until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sand-suit", - "fields": { - "name": "Sand Suit", - "desc": "Created from the treated body of a destroyed Apaxrusl (see Tome of Beasts 2), this leather armor constantly sheds fine sand. The faint echoes of damned souls also emanate from the armor. While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, you can move through nonmagical, unworked earth and stone at your speed. While doing so, you don't disturb the material you move through. Because the souls that once infused the apaxrusl remain within the armor, you are susceptible to effects that sense, target, or harm fiends, such as a paladin's Divine Smite or a ranger's Primeval Awareness. This armor has 3 charges, and it regains 1d3 expended charges daily at dawn. As a reaction, when you are hit by an attack, you can expend 1 charge and make the armor flow like sand. Roll a 1d12 and reduce the damage you take by the number rolled.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sandals-of-sand-skating", - "fields": { - "name": "Sandals of Sand Skating", - "desc": "These leather sandals repel sand, leaving your feet free of particles and grit. While you wear these sandals in a desert, on a beach, or in an otherwise sandy environment, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced while in nonmagical difficult terrain made of sand. In addition, when you take the Dash action across sand, the extra movement you gain is double your speed instead of equal to your speed. With a speed of 30 feet, for example, you can move up to 90 feet on your turn if you dash across sand.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sandals-of-the-desert-wanderer", - "fields": { - "name": "Sandals of the Desert Wanderer", - "desc": "While you wear these soft leather sandals, you have resistance to fire damage. In addition, you ignore difficult terrain created by loose or deep sand, and you can tolerate temperatures of up to 150 degrees Fahrenheit.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sanguine-lance", - "fields": { - "name": "Sanguine Lance", - "desc": "This fiendish lance runs red with blood. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature that has blood with this lance, the target takes an extra 1d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_satchel-of-seawalking", - "fields": { - "name": "Satchel of Seawalking", - "desc": "This eel-hide leather pouch is always filled with an unspeakably foul-tasting, coarse salt. You can use an action to toss a handful of the salt onto the surface of an unoccupied space of water. The water in a 5-foot cube becomes solid for 1 minute, resembling greenish-blue glass. This cube is buoyant and can support up to 750 pounds. When the duration expires, the hardened water cracks ominously and returns to a liquid state. If you toss the salt into an occupied space, the water congeals briefly then disperses harmlessly. If the satchel is opened underwater, the pouch is destroyed as its contents permanently harden. Once five handfuls of the salt have been pulled from the satchel, the satchel can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scale-mail-of-warding-1", - "fields": { - "name": "Scale Mail of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scale-mail-of-warding-2", - "fields": { - "name": "Scale Mail of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scale-mail-of-warding-3", - "fields": { - "name": "Scale Mail of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scalehide-cream", - "fields": { - "name": "Scalehide Cream", - "desc": "As an action, you can rub this dull green cream over your skin. When you do, you sprout thick, olive-green scales like those of a giant lizard or green dragon that last for 1 hour. These scales give you a natural AC of 15 + your Constitution modifier. This natural AC doesn't combine with any worn armor or with a Dexterity bonus to AC. A jar of scalehide cream contains 1d6 + 1 doses.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scarab-of-rebirth", - "fields": { - "name": "Scarab of Rebirth", - "desc": "This coin-sized figurine of a scarab is crafted from an unidentifiable blue-gray metal, but it appears mundane in all other respects. When you speak its command word, it whirs to life and burrows into your flesh. You can speak the command word again to remove the scarab. While the scarab is embedded in your flesh, you gain the following:\n- You no longer need to eat or drink.\n- You can magically sense the presence of undead and pinpoint the location of any undead within 30 feet of you.\n- Your hit point maximum is reduced by 10.\n- If you die, you return to life with half your maximum hit points at the start of your next turn. The scarab can't return you to life if you were beheaded, disintegrated, crushed, or similar full-body destruction. Afterwards, the scarab exits your body and goes dormant. It can't be used again until 14 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scarf-of-deception", - "fields": { - "name": "Scarf of Deception", - "desc": "While wearing this scarf, you appear different to everyone who looks upon you for less than 1 minute. In addition, you smell, sound, feel, and taste different to every creature that perceives you. Creatures with truesight or blindsight can see your true form, but their other senses are still confounded. If a creature studies you for 1 minute, it can make a DC 15 Wisdom (Perception) check. On a success, it perceives your real form.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scent-sponge", - "fields": { - "name": "Scent Sponge", - "desc": "This sea sponge collects the scents of creatures and objects. You can use an action to touch the sponge to a creature or object, and the scent of the target is absorbed into the sponge. An unwilling target can make a DC 13 Dexterity saving throw, and if it succeeds, it is unaffected by the sponge. For 1 hour after its scent has been absorbed, the target gives off no smell and can't be detected or tracked by creatures, spells, or other effects that rely on smell to detect or track the target. You can use an action to wipe the sponge on a creature or object, masking its natural scent with the scent stored in the sponge. An unwilling target can make a DC 13 Dexterity saving throw, and if it succeeds, it is unaffected by the sponge. For 1 hour after its scent has been masked, the target gives off the smell of the creature or object that was stored in the sponge. The effect ends early if the target's scent is replaced by another scent from the sponge or if the scent is cleaned away, which requires vigorous washing for 10 minutes with soap and water or similar materials. The sponge can hold a scent indefinitely, but it can hold only one scent at a time.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scepter-of-majesty", - "fields": { - "name": "Scepter of Majesty", - "desc": "While holding this bejeweled, golden rod, you can use an action to cast the enthrall spell (save DC 15) from it, exhorting those in range to follow you and obey your commands. When you finish speaking, 1d6 creatures that failed their saving throw are affected as if by the dominate person spell. Each such creature treats you as its ruler, obeying your commands and automatically fighting in your defense should anyone attempt to harm you. If you are also attuned to and wearing a Headdress of Majesty (see page 146), your charmed subjects have advantage on attack rolls against any creature that attacked you or that cast an obvious spell on you within the last round. The scepter can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scimitar-of-fallen-saints", - "fields": { - "name": "Scimitar of Fallen Saints", - "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scimitar-of-the-desert-winds", - "fields": { - "name": "Scimitar of the Desert Winds", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While holding or carrying this scimitar, you can tolerate temperatures as low as –50 degrees Fahrenheit or as high as 150 degrees Fahrenheit without any additional protection.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scorn-pouch", - "fields": { - "name": "Scorn Pouch", - "desc": "The heart of a lover scorned turns black and potent. Similarly, this small leather pouch darkens from brown to black when a creature hostile to you moves within 10 feet of you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scorpion-feet", - "fields": { - "name": "Scorpion Feet", - "desc": "These thick-soled leather sandals offer comfortable and safe passage across shifting sands. While you wear them, you gain the following benefits:\n- Your speed isn't reduced while in magical or nonmagical difficult terrain made of sand.\n- You have advantage on all ability checks and saving throws against natural hazards where sand is a threatening element.\n- You have immunity to poison damage and advantage on saving throws against being poisoned.\n- You leave no tracks or other traces of your passage through sandy terrain.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scoundrels-gambit", - "fields": { - "name": "Scoundrel's Gambit", - "desc": "This fluted silver tube, barely two inches long, bears tiny runes etched between the grooves. While holding this tube, you can use an action to cast the magic missile spell from it. Once used, the tube can't be used to cast magic missile again until 12 hours have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scourge-of-devotion", - "fields": { - "name": "Scourge of Devotion", - "desc": "This cat o' nine tails is used primarily for self-flagellation, and its tails have barbs of silver woven into them. You gain a +1 bonus to attack and damage rolls made with this magic weapon, and the weapon deals slashing damage instead of bludgeoning damage. You can spend 10 minutes using the scourge in a self-flagellating ritual, which can be done during a short rest. If you do so, your hit point maximum is reduced by 2d8. In addition, you have advantage on Constitution saving throws that you make to maintain your concentration on a spell when you take damage while your hit point maximum is reduced. This hit point maximum reduction can't be removed with the greater restoration spell or similar magic and lasts until you finish a long rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scouts-coat", - "fields": { - "name": "Scout's Coat", - "desc": "This lightweight, woolen coat is typically left naturally colored or dyed in earth tones or darker shades of green. While wearing the coat, you can tolerate temperatures as low as –100 degrees Fahrenheit.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_screaming-skull", - "fields": { - "name": "Screaming Skull", - "desc": "This skull looks like a normal animal or humanoid skull. You can use an action to place the skull on the ground, a table, or other surface and activate it with a command word. The skull's magic triggers when a creature comes within 5 feet of it without speaking that command word. The skull emits a green glow from its eye sockets, shedding dim light in a 15-foot radius, levitates up to 3 feet in the air, and emits a piercing scream for 1 minute that is audible up to 600 feet away. The skull can't be used this way again until the next dawn. The skull has AC 13 and 5 hit points. If destroyed while active, it releases a burst of necromantic energy. Each creature within 5 feet of the skull must succeed on a DC 11 Wisdom saving throw or be frightened until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scrimshaw-comb", - "fields": { - "name": "Scrimshaw Comb", - "desc": "Aside from being carved from bone, this comb is a beautiful example of functional art. It has 3 charges. As an action, you can expend a charge to cast invisibility. Unlike the standard version of this spell, you are invisible only to undead creatures. However, you can attack creatures who are not undead (and thus unaffected by the spell) without ending the effect. Casting a spell breaks the effect as normal. The comb regains 1d3 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scrimshaw-parrot", - "fields": { - "name": "Scrimshaw Parrot", - "desc": "This parrot is carved from bits of whalebone and decorated with bright feathers and tiny jewels. You can use an action to affix the parrot to your shoulder or arm. While the parrot is affixed, you gain the following benefits: - You have advantage on Wisdom (Perception) checks that rely on sight.\n- You can use an action to cast the comprehend languages spell from it at will.\n- You can use an action to speak the command word and activate the parrot. It records up to 2 minutes of sounds within 30 feet of it. You can touch the parrot at any time (no action required), stopping the recording. Commanding the parrot to record new sounds overwrites the previous recording. You can use a bonus action to speak a different command word, and the parrot repeats the sounds it heard. Effects that limit or block sound, such as a closed door or the silence spell, similarly limit or block the sounds the parrot records.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scroll-of-fabrication", - "fields": { - "name": "Scroll of Fabrication", - "desc": "You can draw a picture of any object that is Large or smaller on the face of this blank scroll. When the drawing is complete, it becomes a real, nonmagical, three-dimensional object. Thus, a drawing of a backpack becomes an actual backpack you can use to store and carry items. Any object created by the scroll can be destroyed by the dispel magic spell, by taking it into the area of an antimagic field, or by similar circumstances. Nothing created by the scroll can have a value greater than 25 gp. If you draw an object of greater value, such as a diamond, the object appears authentic, but close inspection reveals it to be made from glass, paste, bone or some other common or worthless material. The object remains for 24 hours or until you dismiss it as a bonus action. The scroll can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scroll-of-treasure-finding", - "fields": { - "name": "Scroll of Treasure Finding", - "desc": "Each scroll of treasure finding works for a specific type of treasure. You can use an action to read the scroll and sense whether that type of treasure is present within 1 mile of you for 1 hour. This scroll reveals the treasure's general direction, but not its specific location or amount. The GM chooses the type of treasure or determines it by rolling a d100 and consulting the following table. | dice: 1d% | Treasure Type |\n| ----------- | ------------- |\n| 01-10 | Copper |\n| 11-20 | Silver |\n| 21-30 | Electrum |\n| 31-40 | Gold |\n| 41-50 | Platinum |\n| 51-75 | Gemstone |\n| 76-80 | Art objects |\n| 81-00 | Magic items |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_scrolls-of-correspondence", - "fields": { - "name": "Scrolls of Correspondence", - "desc": "These vellum scrolls always come in pairs. Anything written on one scroll also appears on the matching scroll, as long as they are both on the same plane of existence. Each scroll can hold up to 75 words at a time. While writing on one scroll, you are aware that the words are appearing on a paired scroll, and you know if no creature bears the paired scroll. The scrolls don't translate words written on them, and the reader and writer must be able to read and write the same language to understanding the writing on the scrolls. While holding one of the scrolls, you can use an action to tap it three times with a quill and speak a command word, causing both scrolls to go blank. If one of the scrolls in the pair is destroyed, the other scroll becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sea-witchs-blade", - "fields": { - "name": "Sea Witch's Blade", - "desc": "This slim, slightly curved blade has a ghostly sheen and a wickedly sharp edge. You can use a bonus action to speak this magic sword's command word (“memory”) and cause the air around the blade to shimmer with a pale, violet glow. This glow sheds bright light in a 20-foot radius and dim light for an additional 20 feet. While the sword is glowing, it deals an extra 2d6 psychic damage to any target it hits. The glow lasts until you use a bonus action to speak the command word again or until you drop or sheathe the sword. When a creature takes psychic damage from the sword, you can choose to have the creature make a DC 15 Wisdom saving throw. On a failure, you take 2d6 psychic damage, and the creature is stunned until the end of its next turn. Once used, this feature of the sword shouldn't be used again until the next dawn. Each time it is used before then, the psychic damage you take increases by 2d6.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_searing-whip", - "fields": { - "name": "Searing Whip", - "desc": "Inspired by the searing breath weapon of a light drake (see Tome of Beasts 2), this whip seems to have filaments of light interwoven within its strands. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with this weapon, the creature takes an extra 1d4 radiant damage. When you roll a 20 on an attack roll made with this weapon, the target is blinded until the end of its next turn. The whip has 3 charges, and it regains 1d3 expended charges daily at dawn or when exposed to a daylight spell for 1 minute. While wielding the whip, you can use an action to expend 1 of its charges to transform the whip into a searing beam of light. Choose one creature you can see within 30 feet of you and make one attack roll with this whip against that creature. If the attack hits, that creature and each creature in a line that is 5 feet wide between you and the target takes damage as if hit by this whip. All of this damage is radiant. If the target is undead, you have advantage on the attack roll.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_second-wind", - "fields": { - "name": "Second Wind", - "desc": "This plain, copper band holds a clear, spherical crystal. When you run out of breath or are choking, you can use a reaction to activate the ring. The crystal shatters and air fills your lungs, allowing you to continue to hold your breath for a number of minutes equal to 1 + your Constitution modifier (minimum 30 seconds). A shattered crystal magically reforms at the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_seelie-staff", - "fields": { - "name": "Seelie Staff", - "desc": "This white ash staff is decorated with gold and tipped with an uncut crystal of blue quartz. This staff can be wielded as a magic quarterstaff. While holding the staff, you have advantage on Charisma checks made to influence or interact socially with fey creatures. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a shower of fragrant flower petals, which blow away in a sudden wind. Rebuke Fey. When you hit a fey creature with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 radiant damage to the target. If the fey has an evil alignment, the extra damage increases to 4d6, and the target must succeed on a DC 15 Wisdom saving throw or be frightened of you until the start of your next turn. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), conjure woodland beings (4 charges), disguise self (1 charge), pass without trace (2 charges), or tree stride (5 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_selkets-bracer", - "fields": { - "name": "Selket's Bracer", - "desc": "This bronze bracer is crafted in the shape of a scorpion, its legs curled around your wrist, tail raised and ready to strike. While wearing this bracer, you are immune to the poisoned condition. The bracer has 4 charges and regains 1d4 charges daily at dawn. You can expend 1 charge as a bonus action to gain tremorsense out to a range of 30 feet for 1 minute. In addition, you can expend 2 charges as a bonus action to coat a weapon you touch with venom. The poison remains for 1 minute or until an attack using the weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or be poisoned until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_seneschals-gloves", - "fields": { - "name": "Seneschal's Gloves", - "desc": "These white gloves have elegant tailoring and size themselves perfectly to fit your hands. The gloves must be attuned to a specific, habitable place with walls, a roof, and doors before you can attune to them. To attune the gloves to a location, you must leave the gloves in the location for 24 hours. Once the gloves are attuned to a location, you can attune to them. While you wear the gloves, you can unlock any nonmagical lock within the attuned location by touching the lock, and any mundane portal you open in the location while wearing these gloves opens silently. As an action, you can snap your fingers and every nonmagical portal within 30 feet of you immediately closes and locks (if possible) as long as it is unobstructed. (Obstructed portals remain open.) Once used, this property of the gloves can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sentinel-portrait", - "fields": { - "name": "Sentinel Portrait", - "desc": "This painting appears to be a well-rendered piece of scenery, devoid of subjects. You can spend 5 feet of movement to step into the painting. The painting then appears to be a portrait of you, against whatever background was already present. While in the painting, you are immobile unless you use a bonus action to exit the painting. Your senses still function, and you can use them as if you were in the portrait's space. You remain unharmed if the painting is damaged, but if it is destroyed, you are immediately shunted into the nearest unoccupied space.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_serpent-staff", - "fields": { - "name": "Serpent Staff", - "desc": "Fashioned from twisted ash wood, this staff 's head is carved in the likeness of a serpent preparing to strike. You have resistance to poison damage while you hold this staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the carved snake head twists and magically consumes the rest of the staff, destroying it. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: cloudkill (5 charges), detect poison and disease (1 charge), poisoned volley* (2 charges), or protection from poison (2 charges). You can also use an action to cast the poison spray spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Serpent Form. While holding the staff, you can use an action cast polymorph on yourself, transforming into a serpent or snake that has a challenge rating of 2 or lower. While you are in the form of a serpent, you retain your Intelligence, Wisdom, and Charisma scores. You can remain in serpent form for up to 1 minute, and you can revert to your normal form as an action. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_serpentine-bracers", - "fields": { - "name": "Serpentine Bracers", - "desc": "These bracers are a pair of golden snakes with ruby eyes, which coil around your wrist and forearm. While wearing both bracers, you gain a +1 bonus to AC if you are wearing no armor and using no shield. You can use an action to speak the bracers' command word and drop them on the ground in two unoccupied spaces within 10 feet of you. The bracers become two constrictor snakes under your control and act on their own initiative counts. By using a bonus action to speak the command word again, you return a bracer to its normal form in a space formerly occupied by the snake. On your turn, you can mentally command each snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snakes take and where they move during their next turns, or you can issue them a general command, such as attack your enemies or guard a location. If a snake is reduced to 0 hit points, it dies, reverts to its bracer form, and can't be commanded to become a snake again until 2 days have passed. If a snake reverts to bracer form before losing all its hit points, it regains all of them and can't be commanded to become a snake again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_serpents-scales", - "fields": { - "name": "Serpent's Scales", - "desc": "While wearing this armor made from the skin of a giant snake, you gain a +1 bonus to AC, and you have resistance to poison damage. While wearing the armor, you can use an action to cast polymorph on yourself, transforming into a giant poisonous snake. While you are in the form of a snake, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_serpents-tooth", - "fields": { - "name": "Serpent's Tooth", - "desc": "When you hit with an attack using this magic spear, the target takes an extra 1d6 poison damage. In addition, while you hold the spear, you have advantage on Dexterity (Acrobatics) checks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_shadow-tome", - "fields": { - "name": "Shadow Tome", - "desc": "This unassuming book possesses powerful illusory magics. When you write on its pages while attuned to it, you can choose for the contents to appear to be something else entirely. A shadow tome used as a spellbook could be made to look like a cookbook, for example. To read the true text, you must speak a command word. A second speaking of the word hides the true text once more. A true seeing spell can see past the shadow tome’s magic and reveals the true text to the reader. Most shadow tomes already contain text, and it is rare to find one filled with blank pages. When you first attune to the book, you can choose to keep or remove the book’s previous contents.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_shadowhounds-muzzle", - "fields": { - "name": "Shadowhound's Muzzle", - "desc": "This black leather muzzle seems to absorb light. As an action, you can place this muzzle around the snout of a grappled, unconscious, or willing canine with an Intelligence of 3 or lower, such as a mastiff or wolf. The canine transforms into a shadowy version of itself for 1 hour. It uses the statistics of a shadow, except it retains its size. It has its own turns and acts on its own initiative. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to it, it defends itself from hostile creatures, but otherwise takes no actions. If the shadow canine is reduced to 0 hit points, the canine reverts to its original form, and the muzzle is destroyed. At the end of the duration or if you remove the muzzle (by stroking the canine's snout), the canine reverts to its original form, and the muzzle remains intact. If you become unattuned to this item while the muzzle is on a canine, its transformation becomes permanent, and the creature becomes independent with a will of its own. Once used, the muzzle can't be used to transform a canine again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_shark-tooth-crown", - "fields": { - "name": "Shark Tooth Crown", - "desc": "Shark's teeth of varying sizes adorn this simple leather headband. The teeth pile one atop the other in a jumble of sharp points and flat sides. Three particularly large teeth are stained with crimson dye. The teeth move slightly of their own accord when you are within 1 mile of a large body of saltwater. The effect is one of snapping and clacking, producing a sound not unlike a crab's claw. While wearing this headband, you have advantage on Wisdom (Survival) checks to find your way when in a large body of saltwater or pilot a vessel on a large body of saltwater. In addition, you can use a bonus action to cast the command spell (save DC 15) from the crown. If the target is a beast with an Intelligence of 3 or lower that can breathe water, it automatically fails the saving throw. The headband can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sharkskin-vest", - "fields": { - "name": "Sharkskin Vest", - "desc": "While wearing this armor, you gain a +1 bonus to AC, and you have advantage on Strength (Athletics) checks made to swim. While wearing this armor underwater, you can use an action to cast polymorph on yourself, transforming into a reef shark. While you are in the form of the reef shark, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sheeshah-of-revelations", - "fields": { - "name": "Sheeshah of Revelations", - "desc": "This finely crafted water pipe is made from silver and glass. Its vase is etched with arcane symbols. When you spend 1 minute using the sheeshah to smoke normal or flavored tobacco, you enter a dreamlike state and are granted a cryptic or surreal vision giving you insight into your current quest or a significant event in your near future. This effect works like the divination spell. Once used, you can't use the sheeshah in this way again until 7 days have passed or until the events hinted at in your vision have come to pass, whichever happens first.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_shepherds-flail", - "fields": { - "name": "Shepherd's Flail", - "desc": "The handle of this simple flail is made of smooth lotus wood. The three threshers are made of carved and painted wooden beads. You gain a + 1 bonus to attack and damage rolls made with this magic weapon. True Authority (Requires Attunement). You must be attuned to a crook of the flock (see page 72) to attune to this weapon. The attunement ends if you are no longer attuned to the crook. While you are attuned to this weapon and holding it, your Charisma score increases by 4 and can exceed 20, but not 30. When you hit a beast with this weapon, the beast takes an extra 3d6 bludgeoning damage. For the purpose of this weapon, “beast” refers to any creature with the beast type. The flail also has 5 charges. When you reduce a humanoid to 0 hit points with an attack from this weapon, you can expend 1 charge. If you do so, the humanoid stabilizes, regains 1 hit point, and is charmed by you for 24 hours. While charmed in this way, the humanoid regards you as its trusted leader, but it otherwise retains its statistics and regains hit points as normal. If harmed by you or your companions, or commanded to do something contrary to its nature, the target ceases to be charmed in this way. The flail regains 1d4 + 1 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_shield-of-gnawing", - "fields": { - "name": "Shield of Gnawing", - "desc": "The wooden rim of this battered oak shield is covered in bite marks. While holding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. In addition, you can use the Shove action as a bonus action while raging.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_shield-of-missile-reversal", - "fields": { - "name": "Shield of Missile Reversal", - "desc": "While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. When you would be struck by a ranged attack, you can use a reaction to cause the outer surface of the shield to emit a flash of magical energy, sending the missile hurtling back at your attacker. Make a ranged weapon attack roll against your attacker using the attacker's bonuses on the roll. If the attack hits, roll damage as normal, using the attacker's bonuses.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_shield-of-the-fallen", - "fields": { - "name": "Shield of the Fallen", - "desc": "Your allies can use this shield to move you when you aren't capable of moving. If you are paralyzed, petrified, or unconscious, and a creature lays you on this shield, the shield rises up under you, bearing you and anything you currently wear or carry. The shield then follows the creature that laid you on the shield for up to 1 hour before gently lowering to the ground. This property otherwise works like the floating disk spell. Once used, the shield can't be used this way again for 1d12 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_shifting-shirt", - "fields": { - "name": "Shifting Shirt", - "desc": "This nondescript, smock-like garment changes its appearance on command. While wearing this shirt, you can use a bonus action to speak the shirt's command word and cause it to assume the appearance of a different set of clothing. You decide what it looks like, including color, style, and accessories—from filthy beggar's clothes to glittering court attire. The illusory appearance lasts until you use this property again or remove the shirt.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_shimmer-ring", - "fields": { - "name": "Shimmer Ring", - "desc": "This ring is crafted of silver with an inlay of mother-of-pearl. While wearing the ring, you can use an action to speak a command word and cause the ring to shed white and sparkling bright light in a 20-foot radius and dim light for an additional 20 feet. The light lasts until you use a bonus action to repeat the command word. The ring has 6 charges for the following properties. It regains 1d6 charges daily at dawn. Bestow Shimmer. While wearing the ring, you can use a bonus action to expend 1 of its charges to charge a weapon you wield with silvery energy until the start of your next turn. When you hit with an attack using the charged weapon, the target takes an extra 1d6 radiant damage. Shimmering Aura. While wearing the ring, you can use an action to expend 1 of its charges to surround yourself with a silvery, shimmering aura of light for 1 minute. This bright light extends from you in a 5-foot radius and is sunlight. While you are surrounded in this light, you have resistance to radiant damage. Shimmering Bolt. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a bolt of silvery light and makes its attack roll with a +7 bonus. On a hit, the target takes 2d6 radiant damage for each charge you expend.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_shoes-of-the-shingled-canopy", - "fields": { - "name": "Shoes of the Shingled Canopy", - "desc": "These well-made, black leather shoes have brass buckles shaped like chimneys. While wearing the shoes, you have proficiency in the Acrobatics skill. In addition, while falling, you can use a reaction to cast the feather fall spell by holding your nose. The shoes can't be used this way again until the next dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_shortbow-of-accuracy", - "fields": { - "name": "Shortbow of Accuracy", - "desc": "The normal range of this bow is doubled, but its long range remains the same.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_shortsword-of-fallen-saints", - "fields": { - "name": "Shortsword of Fallen Saints", - "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_shrutinandan-sitar", - "fields": { - "name": "Shrutinandan Sitar", - "desc": "An exquisite masterpiece of craftsmanship, this instrument is named for a prestigious musical academy. You must be proficient with stringed instruments to use this instrument. A creature that plays the instrument without being proficient with stringed instruments must succeed on a DC 17 Wisdom saving throw or take 2d6 psychic damage. The exquisite sounds of this sitar are known to weaken the power of demons. Each creature that can hear you playing this sitar has advantage on saving throws against the spells and special abilities of demons. Spells. You can use an action to play the sitar and cast one of the following spells from it, using your spell save DC and spellcasting ability: create food and water, fly, insect plague, invisibility, levitate, protection from evil and good, or reincarnate. Once the sitar has been used to cast a spell, you can’t use it to cast that spell again until the next dawn. Summon. If you spend 1 minute playing the sitar, you can summon animals to fight by your side. This works like the conjure animals spell, except you can summon only 1 elephant, 1d2 tigers, or 2d4 wolves.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sickle-of-thorns", - "fields": { - "name": "Sickle of Thorns", - "desc": "You gain a +1 bonus to attack and damage rolls made with this weapon. As an action, you can swing the sickle to cut nonmagical vegetation up to 60 feet away from you. Each cut is a separate action with one action equaling one swing of your arm. Thus, you can lead a party through a jungle or briar thicket at a normal pace, simply swinging the sickle back and forth ahead of you to clear the path. It can't be used to cut trunks of saplings larger than 1 inch in diameter. It also can't cut through unliving wood (such as a door or wall). When you hit a plant creature with a melee attack with this weapon, that target takes an extra 1d6 slashing damage. This weapon can make very precise cuts, such as to cut fruit or flowers high up in a tree without damaging the tree.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_siege-arrow", - "fields": { - "name": "Siege Arrow", - "desc": "This magic arrow's tip is enchanted to soften stone and warp wood. When this arrow hits an object or structure, it deals double damage then becomes a nonmagical arrow.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_signaling-ammunition", - "fields": { - "name": "Signaling Ammunition", - "desc": "This magic ammunition creates a trail of light behind it as it flies through the air. If the ammunition flies through the air and doesn't hit a creature, it releases a burst of light that can be seen for up to 1 mile. If the ammunition hits a creature, the creature must succeed on a DC 13 Dexterity saving throw or be outlined in golden light until the end of its next turn. While the creature is outlined in light, it can't benefit from being invisible and any attack against it has advantage if the attacker can see the outlined creature.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_signaling-compass", - "fields": { - "name": "Signaling Compass", - "desc": "The exterior of this clamshell metal case features a polished, mirror-like surface on one side and an ornate filigree on the other. Inside is a magnetic compass. While the case is closed, you can use an action to speak the command word and project a harmless beam of light up to 1 mile. As an action while holding the compass, you can flash a concentrated beam of light at a creature you can see within 60 feet of you. The target must succeed on a DC 13 Constitution saving throw or be blinded for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The compass can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_signet-of-the-magister", - "fields": { - "name": "Signet of the Magister", - "desc": "This heavy, gold ring is set with a round piece of carnelian, which is engraved with the symbol of an eagle perched upon a crown. While wearing the ring, you have advantage on saving throws against enchantment spells and effects. You can use an action to touch the ring to a creature—requiring a melee attack roll unless the creature is willing or incapacitated—and magically brand it with the ring’s crest. When a branded creature harms you, it takes 2d6 psychic damage and must succeed on a DC 15 Wisdom saving throw or be stunned until the end of its next turn. On a success, a creature is immune to this property of the ring for the next 24 hours, but the brand remains until removed. You can remove the brand as an action. The remove curse spell also removes the brand. Once you brand a creature, you can’t brand another creature until the next dawn. Instruments of Law. If you are also attuned to and wearing a Justicar’s mask (see page 149), you can cast the locate creature to detect a branded creature at will from the ring. If you are also attuned to and carrying a rod of the disciplinarian (see page 83), the psychic damage from the brand increases to 3d6 and the save DC increases to 16.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_silver-skeleton-key", - "fields": { - "name": "Silver Skeleton Key", - "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_silver-string", - "fields": { - "name": "Silver String", - "desc": "These silver wires magically adjust to fit any stringed instrument, making its sound richer and more melodious. You have advantage on Charisma (Performance) checks made when playing the instrument.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_silvered-oar", - "fields": { - "name": "Silvered Oar", - "desc": "This is a 6-foot-long birch wood oar with leaves and branches carved into its length. The grooves of the carvings are filled with silver, which glows softly when it is outdoors at night. You can activate the oar as an action to have it row a boat unassisted, obeying your mental commands. You can instruct it to row to a destination familiar to you, allowing you to rest while it performs its task. While rowing, it avoids contact with objects on the boat, but it can be grabbed and stopped by anyone at any time. The oar can move a total weight of 2,000 pounds at a speed of 3 miles per hour. It floats back to your hand if the weight of the craft, crew, and carried goods exceeds that weight.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_skalds-harp", - "fields": { - "name": "Skald's Harp", - "desc": "This ornate harp is fashioned from maple and engraved with heroic scenes of warriors battling trolls and dragons inlaid in bone. The harp is strung with fine silver wire and produces a sharp yet sweet sound. You must be proficient with stringed instruments to use this harp. When you play the harp, its music enhances some of your bard class features. Song of Rest. When you play this harp as part of your Song of Rest performance, each creature that spends one or more Hit Dice during the short rest gains 10 temporary hit points at the end of the short rest. The temporary hit points last for 1 hour. Countercharm. When you play this harp as part of your Countercharm performance, you and any friendly creatures within 30 feet of you also have resistance to thunder damage and have advantage on saving throws against being paralyzed. When this property has been used for a total of 10 minutes, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_skipstone", - "fields": { - "name": "Skipstone", - "desc": "This small bark-colored stone measures 3/4 of an inch in diameter and weighs 1 ounce. Typically, 1d4 + 1 skipstones are found together. You can use an action to throw the stone up to 60 feet. The stone crumbles to dust on impact and is destroyed. Each creature within a 5-foot radius of where the stone landed must succeed on a DC 15 Constitution saving throw or be thrown forward in time until the start of your next turn. Each creature disappears, during which time it can't act and is protected from all effects. At the start of your next turn, each creature reappears in the space it previously occupied or the nearest unoccupied space, and it is unaware that any time has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_skullcap-of-deep-wisdom", - "fields": { - "name": "Skullcap of Deep Wisdom", - "desc": "TThis scholar’s cap is covered in bright stitched runes, and the interior is rough, like bark or sharkskin. This cap has 9 charges. It regains 1d8 + 1 expended charges daily at midnight. While wearing it, you can use an action and expend 1 or more of its charges to cast one of the following spells, using your spell save DC or save DC 15, whichever is higher: destructive resonance (2 charges), nether weapon (4 charges), protection from the void (1 charge), or void strike (3 charges). These spells are Void magic spells, which can be found in Deep Magic for 5th Edition. At the GM’s discretion, these spells can be replaced with other spells of similar levels and similarly related to darkness, destruction, or the Void. Dangers of the Void. The first time you cast a spell from the cap each day, your eyes shine with a sickly green light until you finish a long rest. If you spend at least 3 charges from the cap, a trickle of blood also seeps from beneath the cap until you finish a long rest. In addition, each time you cast a spell from the cap, you must succeed on a DC 12 Intelligence saving throw or your Intelligence is reduced by 2 until you finish a long rest. This DC increases by 1 for each charge you spent to cast the spell. Void Calls to Void. When you cast a spell from the cap while within 1 mile of a creature that understands Void Speech, the creature immediately knows your name, location, and general appearance.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_slatelight-ring", - "fields": { - "name": "Slatelight Ring", - "desc": "This decorated thick gold band is adorned with a single polished piece of slate. While wearing this ring, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing this ring increases its range by 60 feet. In addition, you can use an action to cast the faerie fire spell (DC 15) from it. The ring can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sleep-pellet", - "fields": { - "name": "Sleep Pellet", - "desc": "This small brass pellet measures 1/2 of an inch in diameter. Typically, 1d6 + 4 sleep pellets are found together. You can use the pellet as a sling bullet and shoot it at a creature using a sling. On a hit, the pellet is destroyed, and the target must succeed on a DC 13 Constitution saving throw or fall unconscious for 1 minute. Alternatively, you can use an action to swallow the pellet harmlessly. Once before 1 minute has passed, you can use an action to exhale a cloud of sleeping gas in a 15-foot cone. Each creature in the area must succeed on a DC 13 Constitution saving throw or fall unconscious for 1 minute. An unconscious creature awakens if it takes damage or if another creature uses an action to wake it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_slick-cuirass", - "fields": { - "name": "Slick Cuirass", - "desc": "This suit of leather armor has a shiny, greasy look to it. While wearing the armor, you have advantage on ability checks and saving throws made to escape a grapple. In addition, while squeezing through a smaller space, you don't have disadvantage on attack rolls and Dexterity saving throws.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_slimeblade-greatsword", - "fields": { - "name": "Slimeblade Greatsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_slimeblade-longsword", - "fields": { - "name": "Slimeblade Longsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_slimeblade-rapier", - "fields": { - "name": "Slimeblade Rapier", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_slimeblade-scimitar", - "fields": { - "name": "Slimeblade Scimitar", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_slimeblade-shortsword", - "fields": { - "name": "Slimeblade Shortsword", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sling-stone-of-screeching", - "fields": { - "name": "Sling Stone of Screeching", - "desc": "This sling stone is carved with an open mouth that screams in hellish torment when hurled with a sling. Typically, 1d4 + 1 sling stones of screeching are found together. When you fire the stone from a sling, it changes into a screaming bolt, forming a line 5 feet wide that extends out from you to a target within 30 feet. Each creature in the line excluding you and the target must make a DC 13 Constitution saving throw. On a failure, a creature takes 2d8 thunder damage and is knocked prone. On a success, a creature takes half the damage and isn't knocked prone. Make a ranged weapon attack against the target. On a hit, the target takes damage from the sling stone plus 3d8 thunder damage and is knocked prone. Once a sling stone of screeching has dealt its damage to a creature, it becomes a nonmagical sling stone.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_slippers-of-the-cat", - "fields": { - "name": "Slippers of the Cat", - "desc": "While you wear these fine, black cloth slippers, you have advantage on Dexterity (Acrobatics) checks to keep your balance. When you fall while wearing these slippers, you land on your feet, and if you succeed on a DC 13 Dexterity saving throw, you take only half the falling damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_slipshod-hammer", - "fields": { - "name": "Slipshod Hammer", - "desc": "This large smith's hammer appears well-used and rough in make and maintenance. If you use this hammer as part of a set of smith's tools, you can repair metal items in half the time, but the appearance of the item is always sloppy and haphazard. When you roll a 20 on an attack roll made with this magic weapon against a target wearing metal armor, the target's armor is partly damaged and takes a permanent and cumulative –2 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sloughide-bombard", - "fields": { - "name": "Sloughide Bombard", - "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_smoking-plate-of-heithmir", - "fields": { - "name": "Smoking Plate of Heithmir", - "desc": "This armor is soot-colored plate with grim dwarf visages on the pauldrons. The pauldrons emit curling smoke and are warm to the touch. You gain a +3 bonus to AC and are resistant to cold damage while wearing this armor. In addition, when you are struck by an attack while wearing this armor, you can use a reaction to fill a 30-foot cone in front of you with dense smoke. The smoke spreads around corners, and its area is heavily obscured. Each creature in the smoke when it appears and each creature that ends its turn in the smoke must succeed on a DC 17 Constitution saving throw or be poisoned for 1 minute. A wind of at least 20 miles per hour disperses the smoke. Otherwise, the smoke lasts for 5 minutes. Once used, this property of the armor can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_smugglers-bag", - "fields": { - "name": "Smuggler's Bag", - "desc": "This leather-bottomed, draw-string canvas bag appears to be a sturdy version of a common sack. If you use an action to speak the command word while holding the bag, all the contents within shift into an extradimensional space, leaving the bag empty. The bag can then be filled with other items. If you speak the command word again, the bag's current contents transfer into the extradimensional space, and the items in the extradimensional space transfer to the bag. The extradimensional space and the bag itself can each hold up to 1 cubic foot of items or 30 pounds of gear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_smugglers-coat", - "fields": { - "name": "Smuggler's Coat", - "desc": "When you attune yourself to this coat, it conforms to you in a color and style of your choice. It has no visible pockets, but they appear if you place your hands against the side of the coat and expect pockets. Once your hand is withdrawn, the pockets vanish and take anything placed in them to an extradimensional space. The coat can hold up to 40 pounds of material in up to 10 different extradimensional pockets. Nothing can be placed inside the coat that won't fit in a pocket. Retrieving an item from a pocket requires you to use an action. When you reach into the coat for a specific item, the correct pocket always appears with the desired item magically on top. As a bonus action, you can force the pockets to become visible on the coat. While you maintain concentration, the coat displays its four outer pockets, two on each side, four inner pockets, and two pockets on each sleeve. While the pockets are visible, any creature you allow can store or retrieve an item as an action. If the coat is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. Placing the coat inside an extradimensional space, such as a bag of holding, instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_snake-basket", - "fields": { - "name": "Snake Basket", - "desc": "The bowl of this simple, woven basket has hig-sloped sides, making it almost spherical. A matching woven lid sits on top of it, and leather straps secure the lid through loops on the base. The basket can hold up to 10 pounds. As an action, you can speak the command word and remove the lid to summon a swarm of poisonous snakes. You can't summon the snakes if items are in the basket. The snakes return to the basket, vanishing, after 1 minute or when the swarm is reduced to 0 hit points. If the basket is unavailable or otherwise destroyed, the snakes instead dissipate into a fine sand. The swarm is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the swarm moves and what action it takes on its next turn, or give it general orders, such as to attack your enemies. In the absence of such orders, the swarm acts in a fashion appropriate to its nature. Once the basket has been used to summon a swarm of poisonous snakes, it can't be used in this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_soldras-staff", - "fields": { - "name": "Soldra's Staff", - "desc": "Crafted by a skilled wizard and meant to be a spellcaster's last defense, this staff is 5 feet long, made of yew wood that curves at its top, is iron shod at its mid-section, and capped with a silver dragon's claw that holds a lustrous, though rough and uneven, black pearl. When you make an attack with this staff, it howls and whistles hauntingly like the wind. When you cast a spell from this staff, it chirps like insects on a hot summer night. This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. It has 3 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: faerie fire (1 charge) or gust of wind (2 charges). The staff regains 1d3 expended charges daily at dawn. Once daily, it can regain 1 expended charge by exposing the staff 's pearl to moonlight for 1 minute.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_song-saddle-of-the-khan", - "fields": { - "name": "Song-Saddle of the Khan", - "desc": "Made from enchanted leather and decorated with songs lyrics written in calligraphy, this well-crafted saddle is enchanted with the impossible speed of a great horseman. While this saddle is attached to a horse, that horse's speed is increased by 10 feet. In addition, the horse can Disengage as a bonus action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_soul-bond-chalice", - "fields": { - "name": "Soul Bond Chalice", - "desc": "The broad, shallow bowl of this silver chalice rests in the outstretched wings of the raven figure that serves as the chalice's stem. The raven's talons, perched on a branch, serve as the chalice's base. A pair of interlocking gold rings adorn the sides of the bowl. As a 1-minute ritual, you and another creature that isn't a construct or undead and that has an Intelligence of 6 or higher can fill the chalice with wine and mix in three drops of blood from each of you. You and the other participant can then drink from the chalice, mingling your spirits and creating a magical connection between you. This connection is unaffected by distance, though it ceases to function if you aren't on the same plane of existence. The bond lasts until one or both of you end it of your own free will (no action required), one or both of you use the chalice to bond with another creature, or one of you dies. You and your bonded partner each gain the following benefits: - You are proficient in each saving throw that your bonded partner is proficient in.\n- If you are within 5 feet of your bonded partner and you fail a saving throw, your bonded partner can make the saving throw as well. If your bonded partner succeeds, you can choose to succeed on the saving throw that you failed.\n- You can use a bonus action to concentrate on the magical bond between you to determine your bonded partner's status. You become aware of the direction and distance to your bonded partner, whether they are unharmed or wounded, any conditions that may be currently affecting them, and whether or not they are afflicted with an addiction, curse, or disease. If you can see your bonded partner, you automatically know this information just by looking at them.\n- If your bonded partner is wounded, you can use a bonus action to take 4d8 slashing damage, healing your bonded partner for the same amount. If your bonded partner is reduced to 0 hit points, you can do this as a reaction.\n- If you are under the effects of a spell that has a duration but doesn't require concentration, you can use an action to touch your bonded partner to share the effects of the spell with them, splitting the remaining duration (rounded down) between you. For example, if you are affected by the mage armor spell and it has 4 hours remaining, you can use an action to touch your bonded partner to give them the benefits of the mage armor spell, reducing the duration to 2 hours on each of you.\n- If your bonded partner dies, you must make a DC 15 Constitution saving throw. On a failure, you drop to 0 hit points. On a success, you are stunned until the end of your next turn by the shock of the bond suddenly being broken. Once the chalice has been used to bond two creatures, it can't be used again until 7 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_soul-jug", - "fields": { - "name": "Soul Jug", - "desc": "If you unstopper the jug, your soul enters it. This works like the magic jar spell, except it has a duration of 9 hours and the jug acts as the gem. The jug must remain unstoppered for you to move your soul to a nearby body, back to the jug, or back to your own body. Possessing a target is an action, and your target can foil the attempt by succeeding on a DC 17 Charisma saving throw. Only one soul can be in the jug at a time. If a soul is in the jug when the duration ends, the jug shatters.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_spear-of-the-north", - "fields": { - "name": "Spear of the North", - "desc": "This spear has an ivory haft, and tiny snowflakes occasionally fall from its tip. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit with an attack using this magic spear, the target takes an extra 1d6 cold damage. You can use an action to transform the spear into a pair of snow skis. While wearing the snow skis, you have a walking speed of 40 feet when you walk across snow or ice, and you can walk across icy surfaces without needing to make an ability check. You can use a bonus action to transform the skis back into the spear. While the spear is transformed into a pair of skis, you can't make attacks with it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_spear-of-the-stilled-heart", - "fields": { - "name": "Spear of the Stilled Heart", - "desc": "This rowan wood spear has a thick knot in the center of the haft that uncannily resembles a petrified human heart. When you hit with an attack using this magic spear, the target takes an extra 1d6 necrotic damage. The spear has 3 charges, and it regains all expended charges daily at dusk. When you hit a creature with an attack using it, you can expend 1 charge to deal an extra 3d6 necrotic damage to the target. You regain hit points equal to the necrotic damage dealt.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_spear-of-the-western-whale", - "fields": { - "name": "Spear of the Western Whale", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. Fashioned in the style of a whaling spear, this long, barbed weapon is made from bone and heavy, yet pliant, ash wood. Its point is lined with decorative engravings of fish, clam shells, and waves. While you carry this spear, you have advantage on any Wisdom (Survival) checks to acquire food via fishing, and you have advantage on all Strength (Athletics) checks to swim. When set on the ground, the spear always spins to point west. When thrown in a westerly direction, the spear deals an extra 2d6 cold damage to the target.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_spearbiter", - "fields": { - "name": "Spearbiter", - "desc": "The front of this shield is fashioned in the shape of a snarling wolf ’s head. Spearbiter (Uncommon). When a creature you can see within 5 feet of you makes a melee weapon attack against you, you can use a reaction to attack the attacker’s weapon, the wolf ’s head animating and snapping its jaws at the weapon. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. If the result is higher than the attacker’s attack roll against you, the attacker’s attack misses you. You can’t use this property of the shield again until the next dawn. Adamantine Spearbiter (Rare). A more powerful version of this shield exists. Its wolf ’s head is fitted with adamantine fangs and appears larger and more menacing. When you use your reaction and animate the wolf ’s head to snap at the attacker’s weapon, you have advantage on the attack roll. In addition, there is no longer a limit to the number of times you can use this property of the shield.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_spectral-blade", - "fields": { - "name": "Spectral Blade", - "desc": "This blade seems to flicker in and out of existence but always strikes true. You gain a +1 bonus to attack and damage rolls made with this magic weapon, and you can choose for its attacks to deal force damage instead of piercing damage. As an action while holding this sword or as a reaction when you deal damage to a creature with it, you can turn incorporeal until the start of your next turn. While incorporeal, you can move through other creatures and objects as if they were difficult terrain. You take 1d10 force damage if you end your turn inside an object.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_spell-disruptor-horn", - "fields": { - "name": "Spell Disruptor Horn", - "desc": "This horn is carved with images of a Spellhound (see Tome of Beasts 2) and invokes the antimagic properties of the hound's howl. You use an action to blow this horn, which emits a high-pitched, multiphonic sound that disrupts all magical effects within 30 feet of you. Any spell of 3rd level or lower in the area ends. For each spell of 4th-level or higher in the area, the horn makes a check with a +3 bonus. The DC equals 10 + the spell's level. On a success, the spell ends. In addition, each spellcaster within 30 feet of you and that can hear the horn must succeed on a DC 15 Constitution saving throw or be stunned until the end of its next turn. Once used, the horn can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_spice-box-of-zest", - "fields": { - "name": "Spice Box of Zest", - "desc": "This small, square wooden box is carved with scenes of life in a busy city. Inside, the box is divided into six compartments, each holding a different magical spice. A small wooden spoon is also stored inside the box for measuring. A spice box of zest contains six spoonfuls of each spice when full. You can add one spoonful of a single spice per person to a meal that you or someone else is cooking. The magic of the spices is nullified if you add two or more spices together. If a creature consumes a meal cooked with a spice, it gains a benefit based on the spice used in the meal. The effects last for 1 hour unless otherwise noted.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_spice-box-spoon", - "fields": { - "name": "Spice Box Spoon", - "desc": "This lacquered wooden spoon carries an entire cupboard within its smooth contours. When you swirl this spoon in any edible mixture, such as a drink, stew, porridge, or other dish, it exudes a flavorful aroma and infuses the mixture. This culinary wonder mimics any imagined variation of simple seasonings, from salt and pepper to aromatic herbs and spice blends. These flavors persist for 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_spider-grenade", - "fields": { - "name": "Spider Grenade", - "desc": "Silver runes decorate the hairy legs and plump abdomen of this fist-sized preserved spider. You can use an action to throw the spider up to 30 feet. It explodes on impact and is destroyed. Each creature within a 20-foot radius of where the spider landed must succeed on a DC 13 Dexterity saving throw or be restrained by sticky webbing. A creature restrained by the webs can use its action to make a DC 13 Strength check. If it succeeds, it is no longer restrained. In addition, the webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire. The webs also naturally unravel after 1 hour.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_spider-staff", - "fields": { - "name": "Spider Staff", - "desc": "Delicate web-like designs are carved into the wood of this twisted staff, which is often topped with the carved likeness of a spider. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of spiders appears and consumes the staff then vanishes. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: giant insect (4 charges), spider climb (2 charges), or web (2 charges). Spider Swarm. While holding the staff, you can use an action and expend 1 charge to cause a swarm of spiders to appear in a space that you can see within 60 feet of you. The swarm is friendly to you and your companions but otherwise acts on its own. The swarm of spiders remains for 1 minute, until you dismiss it as an action, or until you move more than 100 feet away from it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_splint-of-warding-1", - "fields": { - "name": "Splint of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_splint-of-warding-2", - "fields": { - "name": "Splint of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_splint-of-warding-3", - "fields": { - "name": "Splint of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_splinter-staff", - "fields": { - "name": "Splinter Staff", - "desc": "This roughly made staff has cracked and splintered ends and can be wielded as a magic quarterstaff. When you roll a 20 on an attack roll made with this weapon, you embed a splinter in the target's body, and the pain and discomfort of the splinter is distracting. While the splinter remains embedded, the target has disadvantage on Dexterity, Intelligence, and Wisdom checks, and, if it is concentrating on a spell, it must succeed on a DC 10 Constitution saving throw at the start of each of its turns to maintain concentration on the spell. A creature, including the target, can take its action to remove the splinter by succeeding on a DC 13 Wisdom (Medicine) check.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_spyglass-of-summoning", - "fields": { - "name": "Spyglass of Summoning", - "desc": "Arcane runes encircle this polished brass spyglass. You can view creatures and objects as far as 600 feet away through the spyglass, and they are magnified to twice their size. You can magnify your view of a creature or object to up to four times its size by twisting the end of the spyglass.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-binding", - "fields": { - "name": "Staff of Binding", - "desc": "Made from stout oak with steel bands and bits of chain running its entire length, the staff feels oddly heavy. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff constricts in upon itself and is destroyed. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: arcane lock (2 charges), hold monster (5 charges), hold person (2 charges), lock armor* (2 charges), or planar binding (5 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Unbound. While holding the staff, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-camazotz", - "fields": { - "name": "Staff of Camazotz", - "desc": "This staff of petrified wood is topped with a stylized carving of a bat with spread wings, a mouth baring great fangs, and a pair of ruby eyes. It has 10 charges and regains 1d6 + 4 charges daily at dawn. As long as the staff holds at least 1 charge, you can communicate with bats as if you shared a language. Bat and bat-like beasts and monstrosities never attack you unless magically forced to do so or unless you attack them first. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: darkness (2 charges), dominate monster (8 charges), or flame strike (5 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-channeling", - "fields": { - "name": "Staff of Channeling", - "desc": "This plain, wooden staff has 5 charges and regains 1d4 + 1 expended charges daily at dawn. When you cast a spell while holding this staff, you can expend 1 or more of its charges as part of the casting to increase the level of the spell. Expending 1 charge increases the spell's level by 1, expending 3 charges increases the spell's level by 2, and expending 5 charges increases the spell's level by 3. When you increase a spell's level using the staff, the spell casts as if you used a spell slot of a higher level, but you don't expend that higher-level spell slot. You can't use the magic of this staff to increase a spell to a slot level higher than the highest spell level you can cast. For example, if you are a 7th-level wizard, and you cast magic missile, expending a 2nd-level spell slot, you can expend 3 of the staff 's charges to cast the spell as a 4th-level spell, but you can't expend 5 of the staff 's charges to cast the spell as a 5th-level spell since you can't cast 5th-level spells.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-desolation", - "fields": { - "name": "Staff of Desolation", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. When you hit an object or structure with a melee attack using the staff, you deal double damage (triple damage on a critical hit). The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: thunderwave (1 charge), shatter (2 charges), circle of death (6 charges), disintegrate (6 charges), or earthquake (8 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-dissolution", - "fields": { - "name": "Staff of Dissolution", - "desc": "A gray crystal floats in the crook of this twisted staff. The crystal breaks into fragments as it slowly revolves, and those fragments break into smaller pieces then into clouds of dust. In spite of this, the crystal never seems to reduce in size. You have resistance to necrotic damage while you hold this staff. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: blight (4 charges), disintegrate (6 charges), or shatter (2 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-fate", - "fields": { - "name": "Staff of Fate", - "desc": "One half of this staff is crafted of white ash and capped in gold, while the other is ebony and capped in silver. The staff has 10 charges for the following properties. It regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff splits into two halves with a resounding crack and becomes nonmagical. Fortune. While holding the staff, you can use an action to expend 1 of its charges and touch a creature with the gold end of the staff, giving it good fortune. The target can choose to use its good fortune and have advantage on one ability check, attack roll, or saving throw. This effect ends after the target has used the good fortune three times or when 24 hours have passed. Misfortune. While holding the staff, you can use an action to touch a creature with the silver end of the staff. The target must succeed on a DC 15 Wisdom saving throw or have disadvantage on one of the following (your choice): ability checks, attack rolls, or saving throws. If the target fails the saving throw, the staff regains 1 expended charge. This effect lasts until removed by the remove curse spell or until you use an action to expend 1 of its charges and touch the creature with the gold end of the staff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: augury (2 charges), bane (1 charge), bless (1 charge), remove curse (3 charges), or divination (4 charges). You can also use an action to cast the guidance spell from the staff without using any charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-feathers", - "fields": { - "name": "Staff of Feathers", - "desc": "Several eagle feathers line the top of this long, thin staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff explodes into a mass of eagle feathers and is destroyed. Feather Travel. When you are targeted by a ranged attack while holding the staff, you can use a reaction to teleport up to 10 feet to an unoccupied space that you can see. When you do, you briefly transform into a mass of feathers, and the attack misses. Once used, this property can’t be used again until the next dawn. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: conjure animals (2 giant eagles only, 3 charges), fly (3 charges), or gust of wind (2 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-giantkin", - "fields": { - "name": "Staff of Giantkin", - "desc": "This stout, oaken staff is 7 feet long, bound in iron, and topped with a carving of a broad, thick-fingered hand. While holding this magic quarterstaff, your Strength score is 20. This has no effect on you if your Strength is already 20 or higher. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the hand slowly clenches into a fist, and the staff becomes a nonmagical quarterstaff.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-ice-and-fire", - "fields": { - "name": "Staff of Ice and Fire", - "desc": "Made from the branch of a white ash tree, this staff holds a sapphire at one end and a ruby at the other. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: flaming sphere (2 charges), freezing sphere (6 charges), sleet storm (3 charges), or wall of fire (4 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff and its gems crumble into ash and snow and are destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-master-lu-po", - "fields": { - "name": "Staff of Master Lu Po", - "desc": "This plain-looking, wooden staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 12 charges and regains 1d6 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +1 bonus to attack and damage rolls, loses all other properties, and the next time you roll a 20 on an attack roll using the staff, it explodes, dealing an extra 6d6 force damage to the target then is destroyed. On a 20, the staff regains 1d10 + 2 charges. Some of the staff ’s properties require the target to make a saving throw to resist or lessen the property’s effects. The saving throw DC is equal to 8 + your proficiency bonus + your Wisdom modifier. Bamboo in the Rainy Season. While holding the staff, you can use a bonus action to expend 1 charge to grant the staff the reach property until the start of your next turn. Gate to the Hell of Being Roasted Alive. While holding the staff, you can use an action to expend 1 charge to cast the scorching ray spell from it. When you make the spell’s attacks, you use your Wisdom modifier as your spellcasting ability. Iron Whirlwind. While holding the staff, you use an action to expend 2 charges, causing weighted chains to extend from the end of the staff and reducing your speed to 0 until the end of your next turn. As part of the same action, you can make one attack with the staff against each creature within your reach. If you roll a 1 on any attack, you must immediately make an attack roll against yourself as well before resolving any other attacks against opponents. Monkey Steals the Peach. While holding the staff, you can use a bonus action to expend 1 charge to extend sharp, grabbing prongs from the end of the staff. Until the start of your next turn, each time you hit a creature with the staff, the target takes piercing damage instead of the bludgeoning damage normal for the staff, and the target must make a DC 15 Constitution saving throw. On a failure, the target is incapacitated until the end of its next turn as it suffers crippling pain. On a success, the target has disadvantage on its next attack roll. Rebuke the Disobedient Child. When you are hit by a creature you can see within your reach while holding this staff, you can use a reaction to expend 1 charge to make an attack with the staff against the attacker. Seven Vengeful Demons Death Strike. While holding the staff, you can use an action to expend 7 charges and make one attack against a target within 5 feet of you with the staff. If the attack hits, the target takes bludgeoning damage as normal, and it must make a Constitution saving throw, taking 7d8 necrotic damage on a failed save, or half as much damage on a successful one. If the target dies from this damage, the staff ceases to function as anything other than a magic quarterstaff until the next dawn, but it regains all expended charges when its powers return. A humanoid killed by this damage rises at the start of your next turn as a zombie that is permanently under your command, following your verbal orders to the best of its ability. Swamp Hag's Deadly Breath. While holding the staff, you can use an action to expend 2 charges to expel a 15-foot cone of poisonous gas out of the end of the staff. Each creature in the area must make a Constitution saving throw. On a failure, a creature takes 4d6 poison damage and is poisoned for 1 hour. On a success, a creature takes half the damage and isn’t poisoned. Vaulting Leap of the Clouds. If you are holding the staff and it has at least 1 charge, you can cast the jump spell from it as a bonus action at will without using any charges, but you can target only yourself when you do so.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-midnight", - "fields": { - "name": "Staff of Midnight", - "desc": "Fashioned from a single branch of polished ebony, this sturdy staff is topped by a lustrous jet. While holding it and in dim light or darkness, you gain a +1 bonus to AC and saving throws. This staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: circle of death (6 charges), darkness (2 charges), or vampiric touch (3 charges). You can also use an action to cast the chill touch cantrip from the staff without using any charges. The staff regains 1d6 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dark powder and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-minor-curses", - "fields": { - "name": "Staff of Minor Curses", - "desc": "This twisted, wooden staff has 10 charges. While holding it, you can use an action to inflict a minor curse on a creature you can see within 30 feet of you. The target must succeed on a DC 10 Constitution saving throw or be affected by the chosen curse. A minor curse causes a non-debilitating effect or change in the creature, such as an outbreak of boils on one section of the target's skin, intermittent hiccupping, transforming the target's ears into small, donkey-like ears, or similar effects. The curse never interrupts spellcasting and never causes disadvantage on ability checks, attack rolls, or saving throws. The curse lasts for 24 hours or until removed by the remove curse spell or similar magic. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a cloud of noxious gas, and you are targeted with a minor curse of the GM's choice.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-parzelon", - "fields": { - "name": "Staff of Parzelon", - "desc": "This tarnished silver staff is tipped with the unholy visage of a fiendish lion skull carved from labradorite—a likeness of the Arch-Devil Parzelon (see Creature Codex). The staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), dominate person (5 charges), lightning bolt (3 charges), locate creature (4 charges), locate object (2 charges), magic missile (1 charge), scrying (5 charges), or suggestion (2 charges). You can also use an action to cast one of the following spells from the staff without using any charges: comprehend languages, detect evil and good, detect magic, identify, or message. Extract Ageless Knowledge. As an action, you can touch the head of the staff to a corpse. You must form a question in your mind as part of this action. If the corpse has an answer to your question, it reveals the information to you. The answer is always brief—no more than one sentence—and very specific to the framed question. The corpse doesn’t need a mouth to answer; you receive the information telepathically. The corpse knows only what it knew in life, and it is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This property doesn’t return the creature’s soul to its body, only its animating spirit. Thus, the corpse can’t learn new information, doesn’t comprehend anything that has happened since it died, and can’t speculate about future events. Once the staff has been used to ask a corpse 5 questions, it can’t be used to extract knowledge from that same corpse again until 3 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-portals", - "fields": { - "name": "Staff of Portals", - "desc": "This iron-shod wooden staff is heavily worn, and it can be wielded as a quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses all of its magic and becomes a nonmagical quarterstaff. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: arcane lock (2 charges), dimension door (4 charges), knock (2 charges), or passwall (5 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-scrying", - "fields": { - "name": "Staff of Scrying", - "desc": "This is a graceful, highly polished wooden staff crafted from willow. A crystal ball tops the staff, and smooth gold bands twist around its shaft. This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: detect thoughts (2 charges), locate creature (4 charges), locate object (2 charges), scrying (5 charges), or true seeing (6 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a bright flash of light erupts from the crystal ball, and the staff vanishes.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-spores", - "fields": { - "name": "Staff of Spores", - "desc": "Mold and mushrooms coat this gnarled wooden staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff rots into tiny clumps of slimy, organic matter and is destroyed. Mushroom Disguise. While holding the staff, you can use an action to expend 2 charges to cover yourself and anything you are wearing or carrying with a magical illusion that makes you look like a mushroom for up to 1 hour. You can appear to be a mushroom of any color or shape as long as it is no more than one size larger or smaller than you. This illusion ends early if you move or speak. The changes wrought by this effect fail to hold up to physical inspection. For example, if you appear to have a spongy cap in place of your head, someone touching the cap would feel your face or hair instead. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that you are disguised. Speak with Plants. While holding the staff, you can use an action to expend 1 of its charges to cast the speak with plants spell from it. Spore Cloud. While holding the staff, you can use an action to expend 3 charges to release a cloud of spores in a 20-foot radius from you. The spores remain for 1 minute, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. When a creature, other than you, enters the cloud of spores for the first time on a turn or starts its turn there, that creature must succeed on a DC 15 Constitution saving throw or take 1d6 poison damage and become poisoned until the start of its next turn. A wind of at least 10 miles per hour disperses the spores and ends the effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-the-armada", - "fields": { - "name": "Staff of the Armada", - "desc": "This gold-shod staff is constructed out of a piece of masting from a galleon. The staff can be wielded as a magic quarterstaff that grants you a +1 bonus to attack and damage rolls made with it. While you are on board a ship, this bonus increases to +2. The staff has 10 charges and regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses all of its magic and becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: control water (4 charges), fog cloud (1 charge), gust of wind (2 charges), or water walk (3 charges). You can also use an action to cast the ray of frost cantrip from the staff without using any charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-the-artisan", - "fields": { - "name": "Staff of the Artisan", - "desc": "This simple, wooden staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever. Create Object. You can use an action to expend 2 charges to conjure an inanimate object in your hand or on the ground in an unoccupied space you can see within 10 feet of you. The object can be no larger than 3 feet on a side and weigh no more than 10 pounds, and its form must be that of a nonmagical object you have seen. You can’t create items that ordinarily require a high degree of craftsmanship, such as jewelry, weapons, glass, or armor, unless you have proficiency with the type of artisan’s tools used to craft such objects. The object sheds dim light in a 5-foot radius. The object disappears after 1 hour, when you use this property again, or if the object takes or deals any damage. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: animate objects (5 charges), fabricate (4 charges) or floating disk (1 charge). You can also use an action to cast the mending spell from the staff without using any charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-the-cephalopod", - "fields": { - "name": "Staff of the Cephalopod", - "desc": "This ugly staff is fashioned from a piece of gnarled driftwood and is crowned with an octopus carved from brecciated jasper. Its gray and red stone tentacles wrap around the top half of the staff. While holding this staff, you have a swimming speed of 30 feet. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the jasper octopus crumbles to dust, and the staff becomes a nonmagical piece of driftwood. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: black tentacles (4 charges), conjure animals (only beasts that can breathe water, 3 charges), darkness (2 charges), or water breathing (3 charges). Ink Cloud. While holding this staff, you can use an action and expend 1 charge to cause an inky, black cloud to spread out in a 30-foot radius from you. The cloud can form in or out of water. The cloud remains for 10 minutes, making the area heavily obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour or a steady current (if underwater) disperses the cloud and ends the effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-the-four-winds", - "fields": { - "name": "Staff of the Four Winds", - "desc": "Made of gently twisting ash and engraved with spiraling runes, the staff feels strangely lighter than its size would otherwise suggest. This staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: circle of wind* (1 charge), feather fall (1 charge), gust of wind (2 charges), storm god's doom* (3 charges), wind tunnel* (1 charge), wind walk (6 charges), wind wall (3 charges), or wresting wind* (2 charges). You can also use an action to cast the wind lash* spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to breezes, wind, or movement. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles into ashes and is taken away with the breeze.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-the-lantern-bearer", - "fields": { - "name": "Staff of the Lantern Bearer", - "desc": "An iron hook is affixed to the top of this plain, wooden staff. While holding this staff, you can use an action to cast the light spell from it at will, but the light can emanate only from the staff 's hook. If a lantern hangs from the staff 's hook, you gain the following benefits while holding the staff: - You can control the light of the lantern, lighting or extinguishing it as a bonus action. The lantern must still have oil, if it requires oil to produce a flame.\n- The lantern's flame can't be extinguished by wind or water.\n- If you are a spellcaster, you can use the staff as a spellcasting focus. When you cast a spell that deals fire or radiant damage while using this staff as your spellcasting focus, you gain a +1 bonus to the spell's attack roll, or the spell's save DC increases by 1 (your choice).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-the-peaks", - "fields": { - "name": "Staff of the Peaks", - "desc": "This staff is made of rock crystal yet weighs the same as a wooden staff. The staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to spell attack rolls. In addition, you are immune to the effects of high altitude and severe cold weather, such as hypothermia and frostbite. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff shatters into fine stone fragments and is destroyed. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: control weather (8 charges), fault line* (6 charges), gust of wind (2 charges), ice storm (4 charges), jump (1 charge), snow boulder* (4 charges), or wall of stone (5 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Stone Strike. When you hit a creature or object made of stone or earth with this staff, you can expend 5 of its charges to shatter the target. The target must make a DC 17 Constitution saving throw, taking an extra 10d6 force damage on a failed save, or half as much damage on a successful one. If the target is an object that is being worn or carried, the creature wearing or carrying it must make the saving throw, but only the object takes the damage. If this damage reduces the target to 0 hit points, it shatters and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-the-scion", - "fields": { - "name": "Staff of the Scion", - "desc": "This unwholesome staff is crafted of a material that appears to be somewhere between weathered wood and dried meat. It weeps beads of red liquid that are thick and sticky like tree sap but smell of blood. A crystalized yellow eye with a rectangular pupil, like the eye of a goat, sits at its top. You can wield the staff as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the eye liquifies as the staff shrivels and twists into a blackened, smoking ruin and is destroyed. Ember Cloud. While holding the staff, you can use an action and expend 2 charges to release a cloud of burning embers from the staff. Each creature within 10 feet of you must make a DC 15 Constitution saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one. The ember cloud remains until the start of your next turn, making the area lightly obscured for creatures other than you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. Fiery Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 fire damage to the target. If you take fire damage while wielding the staff, you have advantage on attack rolls with it until the end of your next turn. While holding the staff, you have resistance to fire damage. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: augury (2 charges), barkskin (2 charges), confusion (4 charges), entangle (1 charge), or wall of fire (4 charges).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-the-treant", - "fields": { - "name": "Staff of the Treant", - "desc": "This unassuming staff appears to be little more than the branch of a tree. While holding this staff, your skin becomes bark-like, and the hair on your head transforms into a chaplet of green leaves. This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. Nature’s Guardian. While holding this staff, you have resistance to cold and necrotic damage, but you have vulnerability to fire and radiant damage. In addition, you have advantage on attack rolls against aberrations and undead, but you have disadvantage on saving throws against spells and other magical effects from fey and plant creatures. One with the Woods. While holding this staff, your AC can’t be less than 16, regardless of what kind of armor you are wearing, and you can’t be tracked when you travel through terrain with excessive vegetation, such as a forest or grassland. Tree Friend. While holding this staff, you can use an action to animate a tree you can see within 60 feet of you. The tree uses the statistics of an animated tree and is friendly to you and your companions. Roll initiative for the tree, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don’t directly harm other trees or the natural world. If you don’t issue any commands to the three, it defends itself from hostile creatures but otherwise takes no actions. Once used, this property can’t be used again until the next dawn. Venerated Tree. If you spend 1 hour in silent reverence at the base of a Huge or larger tree, you can use an action to plant this staff in the soil above the tree’s roots and awaken the tree as a treant. The treant isn’t under your control, but it regards you as a friend as long as you don’t harm it or the natural world around it. Roll a d20. On a 1, the staff roots into the ground, growing into a sapling, and losing its magic. Otherwise, after you awaken a treant with this staff, you can’t do so again until 30 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-the-unhatched", - "fields": { - "name": "Staff of the Unhatched", - "desc": "This staff carved from a burnt ash tree is topped with an unhatched dragon’s (see Creature Codex) skull. This staff can be wielded as a magic quarterstaff. The staff has 5 charges for the following properties. It regains 1d4 + 1 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed. Necrotic Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d8 necrotic damage to the target. Spells. While holding the staff, you can use an action to expend 1 charge to cast bane or protection from evil and good from it using your spell save DC. You can also use an action to cast one of the following spells from the staff without using any charges, using your spell save DC and spellcasting ability: chill touch or minor illusion.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-the-white-necromancer", - "fields": { - "name": "Staff of the White Necromancer", - "desc": "Crafted from polished bone, this strange staff is carved with numerous arcane symbols and mystical runes. The staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: false life (1 charge), gentle repose (2 charges), heartstop* (2 charges), death ward (4 charges), raise dead (5 charges), revivify (3 charges), shared sacrifice* (2 charges), or speak with dead (3 charges). You can also use an action to cast the bless the dead* or spare the dying spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the bone staff crumbles to dust.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-thorns", - "fields": { - "name": "Staff of Thorns", - "desc": "This gnarled and twisted oak staff has numerous thorns growing from its surface. Green vines tightly wind their way up along the shaft. The staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the thorns immediately fall from the staff and it becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: barkskin (2 charges), entangle (1 charge), speak with plants (3 charges), spike growth (2 charges), or wall of thorns (6 charges). Thorned Strike. When you hit with a melee attack using the staff, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 piercing damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-voices", - "fields": { - "name": "Staff of Voices", - "desc": "The length of this wooden staff is carved with images of mouths whispering, speaking, and screaming. This staff can be wielded as a magic quarterstaff. While holding this staff, you can't be deafened, and you can act normally in areas where sound is prevented, such as in the area of a silence spell. Any creature that is not deafened can hear your voice clearly from up to 1,000 feet away if you wish them to hear it. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the mouths carved into the staff give a collective sigh and close, and the staff becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: divine word (7 charges), magic mouth (2 charges), speak with animals (1 charge), speak with dead (3 charges), speak with plants (3 charges), or word of recall (6 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges. Thunderous Shout. While holding the staff, you can use an action to expend 1 charge and release a chorus of mighty shouts in a 15-foot cone from it. Each creature in the area must make a Constitution saving throw. On a failure, a creature takes 2d8 thunder damage and is deafened for 1 minute. On a success, a creature takes half the damage and is deafened until the end of its next turn. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_staff-of-winter-and-ice", - "fields": { - "name": "Staff of Winter and Ice", - "desc": "This pure white, pine staff is topped with an ornately faceted shard of ice. The entire staff is cold to the touch. You have resistance to cold damage while you hold this staff. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its resistance to cold damage but loses all other properties. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: Boreas’s breath* (2 charges), cone of cold (5 charges), curse of Boreas* (6 charges), ice storm (4 charges), flurry* (1 charge), freezing fog* (3 charges), freezing sphere (6 charges), frostbite* (5 charges), frozen razors* (3 charges), gliding step* (1 charge), sleet storm (3 charges), snow boulder* (4 charges), triumph of ice* (7 charges), or wall of ice (6 charges). You can also use an action to cast the chill touch or ray of frost spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM’s discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to ice, snow, or wintry weather. Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it. You have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take cold damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of cold damage based on how far away it is from the point of origin as shown in the following table. On a successful save, a creature takes half as much damage. | Distance from Origin | Damage |\n| --------------------- | -------------------------------------- |\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_standard-of-divinity-glaive", - "fields": { - "name": "Standard of Divinity (Glaive)", - "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_standard-of-divinity-halberd", - "fields": { - "name": "Standard of Divinity (Halberd)", - "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_standard-of-divinity-lance", - "fields": { - "name": "Standard of Divinity (Lance)", - "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_standard-of-divinity-pike", - "fields": { - "name": "Standard of Divinity (Pike)", - "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_steadfast-splint", - "fields": { - "name": "Steadfast Splint", - "desc": "This armor makes you difficult to manipulate both mentally and physically. While wearing this armor, you have advantage on saving throws against being charmed or frightened, and you have advantage on ability checks and saving throws against spells and effects that would move you against your will.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_stinger", - "fields": { - "name": "Stinger", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with an attack using this weapon, you can use a bonus action to inject paralyzing venom in the target. The target must succeed on a DC 15 Constitution saving throw or become paralyzed for 1 minute. It can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Creatures immune to poison are also immune to this dagger's paralyzing venom. The dagger can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_stolen-thunder", - "fields": { - "name": "Stolen Thunder", - "desc": "This bodhrán drum is crafted of wood from an ash tree struck by lightning, and its head is made from stretched mammoth skin, painted with a stylized thunderhead. While attuned to this drum, you can use it as an arcane focus. While holding the drum, you are immune to thunder damage. While this drum is on your person but not held, you have resistance to thunder damage. The drum has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. In addition, the drum regains 1 expended charge for every 10 thunder damage you ignore due to the resistance or immunity the drum gives you. If you expend the drum's last charge, roll a 1d20. On a 1, it becomes a nonmagical drum. However, if you make a Charisma (Performance) check while playing the nonmagical drum, and you roll a 20, the passion of your performance rekindles the item's power, restoring its properties and giving it 1 charge. If you are hit by a melee attack while using the drum as a shield, you can use a reaction to expend 1 charge to cause a thunderous rebuke. The attacker must make a DC 17 Constitution saving throw. On a failure, the attacker takes 2d8 thunder damage and is pushed up to 10 feet away from you. On a success, the attacker takes half the damage and isn't pushed. The drum emits a thunderous boom audible out to 300 feet.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_stone-staff", - "fields": { - "name": "Stone Staff", - "desc": "Sturdy and smooth, this impressive staff is crafted from solid stone. Most stone staves are crafted by dwarf mages and few ever find their way into non-dwarven hands. The staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: earthskimmer* (4 charges), entomb* (6 charges), flesh to stone (6 charges), meld into stone (3 charges), stone shape (4 charges), stoneskin (4 charges), or wall of stone (5 charges). You can also use an action to cast the pummelstone* or true strike spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, hundreds of cracks appear across the staff 's surface and it crumbles into tiny bits of stone.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_stonechewer-gauntlets", - "fields": { - "name": "Stonechewer Gauntlets", - "desc": "These impractically spiked gauntlets are made from adamantine, are charged with raw elemental earth magic, and limit the range of motion in your fingers. While wearing these gauntlets, you can't carry a weapon or object, and you can't climb or otherwise perform precise actions requiring the use of your hands. When you hit a creature with an unarmed strike while wearing these gauntlets, the unarmed strike deals an extra 1d4 piercing damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_stonedrift-staff", - "fields": { - "name": "Stonedrift Staff", - "desc": "This staff is fashioned from petrified wood and crowned with a raw chunk of lapis lazuli veined with gold. The staff can be wielded as a magic quarterstaff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed. Spells. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: animate objects (only stone objects, 5 charges), earthquake (8 charges), passwall (only stone surfaces, 5 charges), or stone shape (4 charges). Elemental Speech. You can speak and understand Primordial while holding this staff. Favor of the Earthborn. While holding the staff, you have advantage on Charisma checks made to influence earth elementals or other denizens of the Plane of Earth. Stone Glide. If the staff has at least 1 charge, you have a burrowing speed equal to your walking speed, and you can burrow through earth and stone while holding this staff. While doing so, you don’t disturb the material you move through.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_storytellers-pipe", - "fields": { - "name": "Storyteller's Pipe", - "desc": "This long-shanked wooden smoking pipe is etched with leaves along the bowl. Although it is serviceable as a typical pipe, you can use an action to blow out smoke and shape the smoke into wispy images for 10 minutes. This effect works like the silent image spell, except its range is limited to a 10-foot cone in front of you, and the images can be no larger than a 5-foot cube. The smoky images last for 3 rounds before fading, but you can continue blowing smoke to create more images for the duration or until the pipe burns through the smoking material in it, whichever happens first.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_studded-leather-armor-of-the-leaf", - "fields": { - "name": "Studded Leather Armor of the Leaf", - "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_studded-leather-of-warding-1", - "fields": { - "name": "Studded-Leather of Warding (+1)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_studded-leather-of-warding-2", - "fields": { - "name": "Studded-Leather of Warding (+2)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_studded-leather-of-warding-3", - "fields": { - "name": "Studded-Leather of Warding (+3)", - "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sturdy-crawling-cloak", - "fields": { - "name": "Sturdy Crawling Cloak", - "desc": "This unusual cloak is made of many overlapping, broad strips of thick cloth.\nCrawling Cloak (Common). When you are prone, you can animate the cloak and have it pull you along the ground, allowing you to ignore the extra movement cost for crawling. You can still only move up to your normal movement rate and can’t stand up from prone unless you still have at least half your movement remaining after moving.\n\nSturdy Crawling Cloak (Uncommon). This more powerful version of the crawling cloak also allows you to use the prehensile strips of the cloak to climb, giving you a climbing speed of 20 feet. If you already have a climbing speed, the cloak increases that speed by 10 feet. When using the cloak, you can keep your hands free while climbing.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sturdy-scroll-tube", - "fields": { - "name": "Sturdy Scroll Tube", - "desc": "This ornate scroll case is etched with arcane symbology. Scrolls inside this case are immune to damage and are protected from the elements, as long as the scroll case remains closed and intact. The scroll case itself has immunity to all forms of damage, except force damage and thunder damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_stygian-crook", - "fields": { - "name": "Stygian Crook", - "desc": "This staff of gnarled, rotted wood ends in a hooked curvature like a twisted shepherd's crook. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: bestow curse (3 charges), blight (4 charges), contagion (5 charges), false life (1 charge), or hallow (5 charges). The staff regains 1d6 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff turns to live maggots and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_superior-potion-of-troll-blood", - "fields": { - "name": "Superior Potion of Troll Blood", - "desc": "When you drink this potion, you regain 5 hit points at the start of each of your turns. After it has restored 50 hit points, the potion's effects end.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_supreme-potion-of-troll-blood", - "fields": { - "name": "Supreme Potion of Troll Blood", - "desc": "When you drink this potion, you regain 8 hit points at the start of each of your turns. After it has restored 80 hit points, the potion's effects end.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_survival-knife", - "fields": { - "name": "Survival Knife", - "desc": "When holding this sturdy knife, you can use an action to transform it into a crowbar, a fishing rod, a hunting trap, or a hatchet (mainly a chopping tool; if wielded as a weapon, it uses the same statistics as this dagger, except it deals slashing damage). While holding or touching the transformed knife, you can use an action to transform it into another form or back into its original shape.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_swarmfoe-hide", - "fields": { - "name": "Swarmfoe Hide", - "desc": "While wearing this armor festooned with thin draconic scales, you gain a +1 bonus to AC. You can use the scales as a melee weapon while wearing the armor. You have proficiency with the scales and deal 1d4 slashing damage on a hit (your Strength modifier applies to the attack and damage rolls as normal). Swarms don't have resistance to the damage dealt by the scales. In addition, if a swarm occupies your space, you can attack with the scales as a bonus action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_swarmfoe-leather", - "fields": { - "name": "Swarmfoe Leather", - "desc": "While wearing this armor festooned with thin draconic scales, you gain a +1 bonus to AC. You can use the scales as a melee weapon while wearing the armor. You have proficiency with the scales and deal 1d4 slashing damage on a hit (your Strength modifier applies to the attack and damage rolls as normal). Swarms don't have resistance to the damage dealt by the scales. In addition, if a swarm occupies your space, you can attack with the scales as a bonus action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_swashing-plumage", - "fields": { - "name": "Swashing Plumage", - "desc": "This plumage, a colorful bouquet of tropical hat feathers, has a small pin at its base and can be affixed to any hat or headband. Due to its distracting, ostentatious appearance, creatures hostile to you have disadvantage on opportunity attacks against you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_sweet-nature", - "fields": { - "name": "Sweet Nature", - "desc": "You have a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a humanoid with this weapon, the humanoid takes an extra 1d6 slashing damage. If you use the axe to damage a plant creature or an object made of wood, the axe's blade liquifies into harmless honey, and it can't be used again until 24 hours have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_swolbold-wraps", - "fields": { - "name": "Swolbold Wraps", - "desc": "When wearing these cloth wraps, your forearms and hands swell to half again their normal size without negatively impacting your fine motor skills. You gain a +1 bonus to attack and damage rolls made with unarmed strikes while wearing these wraps. In addition, your unarmed strike uses a d4 for damage and counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage. When you hit a target with an unarmed strike and the target is no more than one size larger than you, you can use a bonus action to automatically grapple the target. Once this special bonus action has been used three times, it can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tactile-unguent", - "fields": { - "name": "Tactile Unguent", - "desc": "Cat burglars, gearworkers, locksmiths, and even street performers use this gooey substance to increase the sensitivity of their hands. When found, a container contains 1d4 + 1 doses. As an action, one dose can be applied to a creature's hands. For 1 hour, that creature has advantage on Dexterity (Sleight of Hand) checks and on tactile Wisdom (Perception) checks.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tailors-clasp", - "fields": { - "name": "Tailor's Clasp", - "desc": "This ornate brooch is shaped like a jeweled weaving spider or scarab beetle. While it is attached to a piece of fabric, it can be activated as an action. When activated, it skitters across the fabric, mending any tears, adjusting frayed hems, and reinforcing seams. This item works only on nonmagical objects made out of fibrous material, such as clothing, rope, and rugs. It continues repairing the fabric for up to 10 minutes or until the repairs are complete. Once used, it can't be used again until 1 hour has passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_talisman-of-the-snow-queen", - "fields": { - "name": "Talisman of the Snow Queen", - "desc": "The coldly beautiful and deadly Snow Queen (see Tome of Beasts) grants these delicate-looking snowflake-shaped mithril talismans to her most trusted spies and servants. Each talisman is imbued with a measure of her power and is magically tied to the queen. It can be affixed to any piece of clothing or worn as an amulet. While wearing the talisman, you gain the following benefits: • You have resistance to cold damage. • You have advantage on Charisma checks when interacting socially with creatures that live in cold environments, such as frost giants, winter wolves, and fraughashar (see Tome of Beasts). • You can use an action to cast the ray of frost cantrip from it at will, using your level and using Intelligence as your spellcasting ability. Blinding Snow. While wearing the talisman, you can use an action to create a swirl of snow that spreads out from you and into the eyes of nearby creatures. Each creature within 15 feet of you must succeed on a DC 17 Constitution saving throw or be blinded until the end of its next turn. Once used, this property can’t be used again until the next dawn. Eyes of the Queen. While you are wearing the talisman, the Snow Queen can use a bonus action to see through your eyes if both of you are on the same plane of existence. This effect lasts until she ends it as a bonus action or until you die. You can’t make a saving throw to prevent the Snow Queen from seeing through your eyes. However, being more than 5 feet away from the talisman ends the effect, and becoming blinded prevents her from seeing anything further than 10 feet away from you. When the Snow Queen is looking through your eyes, the talisman sheds an almost imperceptible pale blue glow, which you or any creature within 10 feet of you notice with a successful DC 20 Wisdom (Perception) check. An identify spell fails to reveal this property of the talisman, and this property can’t be removed from the talisman except by the Snow Queen herself.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_talking-tablets", - "fields": { - "name": "Talking Tablets", - "desc": "These two enchanted brass tablets each have gold styli chained to them by small, silver chains. As long as both tablets are on the same plane of existence, any message written on one tablet with its gold stylus appears on the other tablet. If the writer writes words in a language the reader doesn't understand, the tablets translate the words into a language the reader can read. While holding a tablet, you know if no creature bears the paired tablet. When the tablets have transferred a total of 150 words between them, their magic ceases to function until the next dawn. If one of the tablets is destroyed, the other one becomes a nonmagical block of brass worth 25 gp.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_talking-torches", - "fields": { - "name": "Talking Torches", - "desc": "These heavy iron and wood torches are typically found in pairs or sets of four. While holding this torch, you can use an action to speak a command word and cause it to produce a magical, heatless flame that sheds bright light in a 20-foot radius and dim light for an additional 20 feet. You can use a bonus action to repeat the command word to extinguish the light. If more than one talking torch remain lit and touching for 1 minute, they become magically bound to each other. A torch remains bound until the torch is destroyed or until it is bound to another talking torch or set of talking torches. While holding or carrying the torch, you can communicate telepathically with any creature holding or carrying one of the torches bound to your torch, as long as both torches are lit and within 5 miles of each other.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tamers-whip", - "fields": { - "name": "Tamer's Whip", - "desc": "This whip is braided from leather tanned from the hides of a dozen different, dangerous beasts. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you attack a beast using this weapon, you have advantage on the attack roll.\nWhen you roll a 20 on the attack roll made with this weapon and the target is a beast, the beast must succeed on a DC 15 Wisdom saving throw or become charmed or frightened (your choice) for 1 minute.\nIf the creature is charmed, it understands and obeys one-word commands, such as “attack,” “approach,” “stay,” or similar. If it is charmed and understands a language, it obeys any command you give it in that language. The charmed or frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tarian-graddfeydd-ddraig", - "fields": { - "name": "Tarian Graddfeydd Ddraig", - "desc": "This metal shield has an outer coating consisting of hardened resinous insectoid secretions embedded with flakes from ground dragon scales collected from various dragon wyrmlings and one dragon that was killed by shadow magic. While holding this shield, you gain a +2 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. In addition, you have resistance to acid, cold, fire, lightning, necrotic, and poison damage dealt by the breath weapons of dragons. While wielding the shield in an area of dim or bright light, you can use an action to reflect the light off the shield's dragon scale flakes to cause a cone of multicolored light to flash from it (15-foot cone if in dim light; 30-foot cone if in bright light). Each creature in the area must make a DC 17 Dexterity saving throw. For each target, roll a d6 and consult the following table to determine which color is reflected at it. The shield can't be used this way again until the next dawn. | d6 | Effect |\n| --- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 1 | **Red**. The target takes 6d6 fire damage on a failed save, or half as much damage on a successful one. |\n| 2 | **White**. The target takes 4d6 cold damage and is restrained until the start of your next turn on a failed save, or half as much damage and is not restrained on a successful one. |\n| 3 | **Blue**. The target takes 4d6 lightning damage and is paralyzed until the start of your next turn on a failed save, or half as much damage and is not paralyzed on a successful one. |\n| 4 | **Black**. The target takes 4d6 acid damage on a failed save, or half as much damage on a successful one. If the target failed the save, it also takes an extra 2d6 acid damage on the start of your next turn. |\n| 5 | **Green**. The target takes 4d6 poison damage and is poisoned until the start of your next turn on a failed save, or half as much damage and is not poisoned on a successful one. |\n| 6 | **Shadow**. The target takes 4d6 necrotic damage and its Strength score is reduced by 1d4 on a failed save, or half as much damage and does not reduce its Strength score on a successful one. The target dies if this Strength reduction reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest. |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_teapot-of-soothing", - "fields": { - "name": "Teapot of Soothing", - "desc": "This cast iron teapot is adorned with the simple image of fluffy clouds that seem to slowly shift and move across the pot as if on a gentle breeze. Any water placed inside the teapot immediately becomes hot tea at the perfect temperature, and when poured, it becomes the exact flavor the person pouring it prefers. The teapot can serve up to 6 creatures, and any creature that spends 10 minutes drinking a cup of the tea gains 2d6 temporary hit points for 24 hours. The creature pouring the tea has advantage on Charisma (Persuasion) checks for 10 minutes after pouring the first cup. Once used, the teapot can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tenebrous-flail-of-screams", - "fields": { - "name": "Tenebrous Flail of Screams", - "desc": "The handle of this flail is made of mammoth bone wrapped in black leather made from bat wings. Its pommel is adorned with raven's claws, and the head of the flail dangles from a flexible, preserved braid of entrails. The head is made of petrified wood inlaid with owlbear and raven beaks. When swung, the flail lets out an otherworldly screech. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with this flail, the target takes an extra 1d6 psychic damage. When you roll a 20 on an attack roll made with this weapon, the target must succeed on a DC 15 Wisdom saving throw or be incapacitated until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tenebrous-mantle", - "fields": { - "name": "Tenebrous Mantle", - "desc": "This black cloak appears to be made of pure shadow and shrouds you in darkness. While wearing it, you gain the following benefits: - You have advantage on Dexterity (Stealth) checks.\n- You have resistance to necrotic damage.\n- You can cast the darkness and misty step spells from it at will. Casting either spell from the cloak requires an action. Instead of a silvery mist when you cast misty step, you are engulfed in the darkness of the cloak and emerge from the cloak's darkness at your destination.\n- You can use an action to cast the black tentacles or living shadows (see Deep Magic for 5th Edition) spell from it. The cloak can't be used this way again until the following dusk.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_thirsting-scalpel", - "fields": { - "name": "Thirsting Scalpel", - "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon, which deals slashing damage instead of piercing damage. When you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 2d6 slashing damage. If the target is a creature other than an undead or construct, it must succeed on a DC 13 Constitution saving throw or lose 2d6 hit points at the start of each of its turns from a bleeding wound. Any creature can take an action to stanch the wound with a successful DC 11 Wisdom (Medicine) check. The wound also closes if the target receives magical healing. In addition, once every 7 days while the scalpel is on your person, you must succeed on a DC 15 Charisma saving throw or become driven to feed blood to the scalpel. You have advantage on attack rolls with the scalpel until it is sated. The dagger is sated when you roll a 20 on an attack roll with it, after you deal 14 slashing damage with it, or after 1 hour elapses. If the hour elapses and you haven't sated its thirst for blood, the dagger deals 14 slashing damage to you. If the dagger deals damage to you as a result of the curse, you can't heal the damage for 24 hours. The remove curse spell removes your attunement to the item and frees you from the curse. Alternatively, casting the banishment spell on the dagger forces the bearded devil's essence to leave it. The scalpel then becomes a +1 dagger with no other properties.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_thirsting-thorn", - "fields": { - "name": "Thirsting Thorn", - "desc": "You gain a +1 bonus to attack and damage rolls made with this weapon. In addition, while carrying the sword, you have resistance to necrotic damage. Each time you reduce a creature to 0 hit points with this weapon, you can regain 2d8+2 hit points. Each time you regain hit points this way, you must succeed a DC 12 Wisdom saving throw or be incapacitated by terrible visions until the end of your next turn. If you reach your maximum hit points using this effect, you automatically fail the saving throw. As long as you remain cursed, you are unwilling to part with the sword, keeping it within reach at all times. If you have not damaged a creature with this sword within the past 24 hours, you have disadvantage on attack rolls with weapons other than this one as its hunger for blood drives you to slake its thirst.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_thornish-nocturnal", - "fields": { - "name": "Thornish Nocturnal", - "desc": "The ancient elves constructed these nautical instruments to use as navigational aids on all their seagoing vessels. The knowledge of their manufacture has been lost, and few of them remain. While attuned to the nocturnal, you can spend 1 minute using the nocturnal to determine the precise local time, provided you can see the sun or stars. You can use an action to protect up to four vessels that are within 1 mile of the nocturnal from unwanted effects of the local weather for 1 hour. For example, vessels protected by the nocturnal can't be damaged by storms or blown onto jagged rocks by adverse wind. To do so, you must have spent at least 1 hour aboard each of the controlled vessels, performing basic sailing tasks and familiarizing yourself with the vessel.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_three-section-boots", - "fields": { - "name": "Three-Section Boots", - "desc": "These boots are often decorated with eyes, flames, or other bold patterns such as lightning bolts or wheels. When you step onto water, air, or stone, you can use a reaction to speak the boots' command word. For 1 hour, you gain the effects of the meld into stone, water walk, or wind walk spell, depending on the type of surface where you stepped. The boots can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_throttlers-gauntlets", - "fields": { - "name": "Throttler's Gauntlets", - "desc": "These durable leather gloves allow you to choke a creature you are grappling, preventing them from speaking. While you are grappling a creature, you can use a bonus action to throttle it. The creature takes damage equal to your proficiency bonus and can't speak coherently or cast spells with verbal components until the end of its next turn. You can choose to not damage the creature when you throttle it. A creature can still breathe, albeit uncomfortably, while throttled.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_thunderous-kazoo", - "fields": { - "name": "Thunderous Kazoo", - "desc": "You can use an action to speak the kazoo's command word and then hum into it, which emits a thunderous blast, audible out to 1 mile, at one Large or smaller creature you can see within 30 feet of you. The target must make a DC 13 Constitution saving throw. On a failure, a creature is pushed away from you and is deafened and frightened of you until the start of your next turn. A Small creature is pushed up to 30 feet, a Medium creature is pushed up to 20 feet, and a Large creature is pushed up to 10 feet. On a success, a creature is pushed half the distance and isn't deafened or frightened. The kazoo can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tick-stop-watch", - "fields": { - "name": "Tick Stop Watch", - "desc": "While holding this silver pocketwatch, you can use an action to magically stop a single clockwork device or construct within 10 feet of you. If the target is an object, it freezes in place, even mid-air, for up to 1 minute or until moved. If the target is a construct, it must succeed on a DC 15 Wisdom saving throw or be paralyzed until the end of its next turn. The pocketwatch can't be used this way again until the next dawn. The pocketwatch must be wound at least once every 24 hours, just like a normal pocketwatch, or its magic ceases to function. If left unwound for 24 hours, the watch loses its magic, but the power returns 24 hours after the next time it is wound.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_timeworn-timepiece", - "fields": { - "name": "Timeworn Timepiece", - "desc": "This tarnished silver pocket watch seems to be temporally displaced and allows for limited manipulation of time. The timepiece has 3 charges, and it regains 1d3 expended charges daily at midnight. While holding the timepiece, you can use your reaction to expend 1 charge after you or a creature you can see within 30 feet of you makes an attack roll, an ability check, or a saving throw to force the creature to reroll. You make this decision after you see whether the roll succeeds or fails. The target must use the result of the second roll. Alternatively, you can expend 2 charges as a reaction at the start of another creature's turn to swap places in the Initiative order with that creature. An unwilling creature that succeeds on a DC 15 Charisma saving throw is unaffected.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tincture-of-moonlit-blossom", - "fields": { - "name": "Tincture of Moonlit Blossom", - "desc": "This potion is steeped using a blossom that grows only in the moonlight. When you drink this potion, your shadow corruption (see Midgard Worldbook) is reduced by three levels. If you aren't using the Midgard setting, you gain the effect of the greater restoration spell instead.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tipstaff", - "fields": { - "name": "Tipstaff", - "desc": "To the uninitiated, this short ebony baton resembles a heavy-duty truncheon with a cord-wrapped handle and silver-capped tip. The weapon has 5 charges, and it regains 1d4 + 1 expended charges daily at dawn. When you hit a creature with a melee attack with this magic weapon, you can expend 1 charge to force the target to make a DC 15 Constitution saving throw. If the creature took 20 damage or more from this attack, it has disadvantage on the saving throw. On a failure, the target is paralyzed for 1 minute. It can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tome-of-knowledge", - "fields": { - "name": "Tome of Knowledge", - "desc": "This book contains mnemonics and other tips to better perform a specific mental task, and its words are charged with magic. If you spend 24 hours over a period of 3 days or fewer studying the tome and practicing its instructions, you gain proficiency in the Intelligence, Wisdom, or Charisma-based skill (such as History, Insight, or Intimidation) associated with the book. The tome then loses its magic, but regains it in ten years.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tonic-for-the-troubled-mind", - "fields": { - "name": "Tonic for the Troubled Mind", - "desc": "This potion smells and tastes of lavender and chamomile. When you drink it, it removes any short-term madness afflicting you, and it suppresses any long-term madness afflicting you for 8 hours.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tonic-of-blandness", - "fields": { - "name": "Tonic of Blandness", - "desc": "This deeply bitter, black, oily liquid deadens your sense of taste. When you drink this tonic, you can eat all manner of food without reaction, even if the food isn't to your liking, for 1 hour. During this time, you automatically fail Wisdom (Perception) checks that rely on taste. This tonic doesn't protect you from the effects of consuming poisoned or spoiled food, but it can prevent you from detecting such impurities when you taste the food.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_toothsome-purse", - "fields": { - "name": "Toothsome Purse", - "desc": "This common-looking leather pouch holds a nasty surprise for pickpockets. If a creature other than you reaches into the purse, small, sharp teeth emerge from the mouth of the bag. The bag makes a melee attack roll against that creature with a +3 bonus ( 1d20+3). On a hit, the target takes 2d4 piercing damage. If the bag rolls a 20 on the attack roll, the would-be pickpocket has disadvantage on any Dexterity checks made with that hand until the damage is healed. If the purse is lifted entirely from you, the purse continues to bite at the thief each round until it is dropped or until it is placed where it can't reach its target. It bites at any creature, other than you, who attempts to pick it up, unless that creature genuinely desires to return the purse and its contents to you. The purse attacks only if it is attuned to a creature. A purse that isn't attuned to a creature lies dormant and doesn't attack.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_torc-of-the-comet", - "fields": { - "name": "Torc of the Comet", - "desc": "This silver torc is set with a large opal on one end, and it thins to a point on the other. While wearing the torc, you have resistance to cold damage, and you can use an action to speak the command word, causing the torc to shed bluish-white bright light in a 20-foot radius and dim light for an additional 20 feet. The light lasts until you use a bonus action to speak the command word again. The torc has 4 charges. You can use an action to expend 1 charge and fire a tiny comet from the torc at a target you can see within 120 feet of you. The torc makes a ranged attack roll with a +7 bonus ( 1d20+7). On a hit, the target takes 2d6 bludgeoning damage and 2d6 cold damage. At night, the cold damage dealt by the comets increases to 6d6. The torc regain 1d4 expended charges daily at dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tracking-dart", - "fields": { - "name": "Tracking Dart", - "desc": "When you hit a Large or smaller creature with an attack using this colorful magic dart, the target is splattered with magical paint, which outlines the target in a dim glow (your choice of color) for 1 minute. Any attack roll against a creature outlined in the glow has advantage if the attacker can see the creature, and the creature can't benefit from being invisible. The creature outlined in the glow can end the effect early by using an action to wipe off the splatter of paint.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_treebleed-bucket", - "fields": { - "name": "Treebleed Bucket", - "desc": "This combination sap bucket and tap is used to extract sap from certain trees. After 1 hour, the bucketful of sap magically changes into a potion. The potion remains viable for 24 hours, and its type depends on the tree as follows: oak (potion of resistance), rowan (potion of healing), willow (potion of animal friendship), and holly (potion of climbing). The treebleed bucket can magically change sap 20 times, then the bucket and tap become nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_trident-of-the-vortex", - "fields": { - "name": "Trident of the Vortex", - "desc": "This bronze trident has a shaft of inlaid blue pearl. You gain a +2 bonus to attack and damage rolls with this magic weapon. Whirlpool. While wielding the trident underwater, you can use an action to speak its command word and cause the water around you to whip into a whirlpool for 1 minute. For the duration, each creature that enters or starts its turn in a space within 10 feet of you must succeed on a DC 15 Strength saving throw or be restrained by the whirlpool. The whirlpool moves with you, and creatures restrained by it move with it. A creature within 5 feet of the whirlpool can pull a creature out of it by taking an action to make a DC 15 Strength check and succeeding. A restrained creature can try to escape by taking an action to make a DC 15 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the whirlpool. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_trident-of-the-yearning-tide", - "fields": { - "name": "Trident of the Yearning Tide", - "desc": "The barbs of this trident are forged from mother-of-pearl and its shaft is fashioned from driftwood. You gain a +2 bonus on attack and damage rolls made with this magic weapon. While holding the trident, you can breathe underwater. The trident has 3 charges for the following other properties. It regains 1d3 expended charges daily at dawn. Call Sealife. While holding the trident, you can use an action to expend 3 of its charges to cast the conjure animals spell from it. The creatures you summon must be beasts that can breathe water. Yearn for the Tide. When you hit a creature with a melee attack using the trident, you can use a bonus action to expend 1 charge to force the target to make a DC 17 Wisdom saving throw. On a failure, the target must spend its next turn leaping into the nearest body of water and swimming toward the bottom. A creature that can breathe underwater automatically succeeds on the saving throw. If no water is in the target’s line of sight, the target automatically succeeds on the saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_troll-skin-hide", - "fields": { - "name": "Troll Skin Hide", - "desc": "While wearing troll skin armor, you gain a +1 bonus to AC, and you stabilize whenever you are dying at the start of your turn. In addition, you can use an action to regenerate for 1 minute. While regenerating, you regain 2 hit points at the start of each of your turns. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_troll-skin-leather", - "fields": { - "name": "Troll Skin Leather", - "desc": "While wearing troll skin armor, you gain a +1 bonus to AC, and you stabilize whenever you are dying at the start of your turn. In addition, you can use an action to regenerate for 1 minute. While regenerating, you regain 2 hit points at the start of each of your turns. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_trollsblood-elixir", - "fields": { - "name": "Trollsblood Elixir", - "desc": "This thick, pink liquid sloshes and moves even when the bottle is still. When you drink this potion, you regenerate lost hit points for 1 hour. At the start of your turn, you regain 5 hit points. If you take acid or fire damage, the potion doesn't function at the start of your next turn. If you lose a limb, you can reattach it by holding it in place for 1 minute. For the duration, you can die from damage only by being reduced to 0 hit points and not regenerating on your turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_tyrants-whip", - "fields": { - "name": "Tyrant's Whip", - "desc": "This wicked whip has 3 charges and regains all expended charges daily at dawn. When you hit with an attack using this magic whip, you can use a bonus action to expend 1 of its charges to cast the command spell (save DC 13) from it on the creature you hit. If the attack is a critical hit, the target has disadvantage on the saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_umber-beans", - "fields": { - "name": "Umber Beans", - "desc": "These magical beans have a modest ochre or umber hue, and they are about the size and weight of walnuts. Typically, 1d4 + 4 umber beans are found together. You can use an action to throw one or more beans up to 10 feet. When the bean lands, it grows into a creature you determine by rolling a d10 and consulting the following table. ( Umber Beans#^creature) The creature vanishes at the next dawn or when it takes bludgeoning, piercing, or slashing damage. The bean is destroyed when the creature vanishes. The creature is illusory, and you are aware of this. You can use a bonus action to command how the illusory creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature. The creature's attacks deal psychic damage, though the target perceives the damage as the type appropriate to the illusion, such as slashing for a vrock's talons. A creature with truesight or that uses its action to examine the illusion can determine that it is an illusion with a successful DC 13 Intelligence (Investigation) check. If a creature discerns the illusion for what it is, the creature sees the illusion as faint and the illusion can't attack that creature. | dice: 1d10 | Creature |\n| ---------- | ---------------------------- |\n| 1 | Dretch |\n| 2-3 | 2 Shadows |\n| 4-6 | Chuul |\n| 7-8 | Vrock |\n| 9 | Hezrou or Psoglav |\n| 10 | Remorhaz or Voidling |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_umbral-band", - "fields": { - "name": "Umbral Band", - "desc": "This blackened steel ring is cold to the touch. While wearing this ring, you have darkvision out to a range of 30 feet, and you have advantage on Dexterity (Stealth) checks while in an area of dim light or darkness.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_umbral-chopper", - "fields": { - "name": "Umbral Chopper", - "desc": "This simple axe looks no different from a standard forester's tool. A single-edged head is set into a slot in the haft and bound with strong cord. The axe was found by a timber-hauling crew who disappeared into the shadows of a cave deep in an old forest. Retrieved in the dark of the cave, the axe was found to possess disturbing magical properties. You gain a +1 bonus to attack and damage rolls made with this weapon, which deals necrotic damage instead of slashing damage. When you hit a plant creature with an attack using this weapon, the target must make a DC 15 Constitution saving throw. On a failure, the creature takes 4d6 necrotic damage and its speed is halved until the end of its next turn. On a success, the creature takes half the damage and its speed isn't reduced.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_umbral-lantern", - "fields": { - "name": "Umbral Lantern", - "desc": "This item looks like a typical hooded brass lantern, but shadowy forms crawl across its surface and it radiates darkness instead of light. The lantern can burn for up to 3 hours each day. While the lantern burns, it emits darkness as if the darkness spell were cast on it but with a 30-foot radius.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_umbral-staff", - "fields": { - "name": "Umbral Staff", - "desc": "Made of twisted darkwood and covered in complex runes and sigils, this powerful staff seems to emanate darkness. You have resistance to radiant damage while you hold this staff. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at midnight. If you expend the last charge, roll a d20. On a 1, the staff retains its ability to cast the claws of darkness*, douse light*, and shadow blindness* spells but loses all other properties. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: become nightwing* (6 charges), black hand* (4 charges), black ribbons* (1 charge), black well* (6 charges), cloak of shadow* (1 charge), darkvision (2 charges), darkness (2 charges), dark dementing* (5 charges), dark path* (2 charges), darkbolt* (2 charges), encroaching shadows* (6 charges), night terrors* (4 charges), shadow armor* (1 charge), shadow hands* (1 charge), shadow puppets* (2 charges), or slither* (2 charges). You can also use an action to cast the claws of darkness*, douse light*, or shadow blindness* spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM’s discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness, shadows, or terror. Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion of darkness (as the darkness spell) that expands to fill a 30-foot-radius sphere centered on it. You have a 50 percent chance to instantly travel to the Plane of Shadow, avoiding the explosion. If you fail to avoid the effect, you take necrotic damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin as shown in the following table. On a successful save, a creature takes half as much damage. | Distance from Origin | Damage |\n| --------------------- | -------------------------------------- |\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_undine-plate", - "fields": { - "name": "Undine Plate", - "desc": "This bright green plate armor is embossed with images of various marine creatures, such as octopuses and rays. While wearing this armor, you have a swimming speed of 40 feet, and you don't have disadvantage on Dexterity (Stealth) checks while underwater.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_unerring-dowsing-rod", - "fields": { - "name": "Unerring Dowsing Rod", - "desc": "This dark, gnarled willow root is worn and smooth. When you hold this rod in both hands by its short, forked branches, you feel it gently tugging you toward the closest source of fresh water. If the closest source of fresh water is located underground, the dowsing rod directs you to a spot above the source then dips its tip down toward the ground. When you use this dowsing rod on the Material Plane, it directs you to bodies of water, such as creeks and ponds. When you use it in areas where fresh water is much more difficult to find, such as a desert or the Plane of Fire, it directs you to bodies of water, but it might also direct you toward homes with fresh water barrels or to creatures with containers of fresh water on them.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_unquiet-dagger", - "fields": { - "name": "Unquiet Dagger", - "desc": "Forged by creatures with firsthand knowledge of what lies between the stars, this dark gray blade sometimes appears to twitch or ripple like water when not directly observed. You gain a +1 bonus to attack and damage rolls with this magic weapon. In addition, when you hit with an attack using this dagger, the target takes an extra 2d6 psychic damage. You can use an action to cause the blade to ripple for 1 minute. While the blade is rippling, each creature that takes psychic damage from the dagger must succeed on a DC 15 Charisma saving throw or become frightened of you for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The dagger can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_unseelie-staff", - "fields": { - "name": "Unseelie Staff", - "desc": "This ebony staff is decorated in silver and topped with a jagged piece of obsidian. This staff can be wielded as a magic quarterstaff. While holding the staff, you have advantage on Charisma checks made to influence or interact socially with fey creatures. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a shower of powdery snow, which blows away in a sudden, chill wind. Rebuke Fey. When you hit a fey creature with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 necrotic damage to the target. If the fey has a good alignment, the extra damage increases to 4d6, and the target must succeed on a DC 15 Wisdom saving throw or be frightened of you until the start of your next turn. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), conjure woodland beings (4 charges), confusion (4 charges), invisibility (2 charges), or teleport (7 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_valkyries-bite", - "fields": { - "name": "Valkyrie's Bite", - "desc": "This black-bladed scimitar has a guard that resembles outstretched raven wings, and a polished amethyst sits in its pommel. You have a +2 bonus to attack and damage rolls made with this magic weapon. While attuned to the scimitar, you have advantage on initiative rolls. While you hold the scimitar, it sheds dim purple light in a 10-foot radius.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_vengeful-coat", - "fields": { - "name": "Vengeful Coat", - "desc": "This stiff, vaguely uncomfortable coat covers your torso. It smells like ash and oozes a sap-like substance. While wearing this coat, you have resistance to slashing damage from nonmagical attacks. At the end of each long rest, choose one of the following damage types: acid, cold, fire, lightning, or thunder. When you take damage of that type, you have advantage on attack rolls until the end of your next turn. When you take more than 10 damage of that type, you have advantage on your attack rolls for 2 rounds. When you are targeted by an effect that deals damage of the type you chose, you can use your reaction to gain resistance to that damage until the start of your next turn. You have advantage on your attack rolls, as detailed above, then the coat's magic ceases to function until you finish a long rest.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_venomous-fangs", - "fields": { - "name": "Venomous Fangs", - "desc": "These prosthetic fangs can be positioned over your existing teeth or in place of missing teeth. While wearing these fangs, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. You gain a +1 bonus to attack and damage rolls made with this magic bite. While you wear the fangs, a successful DC 9 Dexterity (Sleight of Hand) checks conceals them from view. At the GM's discretion, you have disadvantage on Charisma (Deception) or Charisma (Persuasion) checks against creatures that notice the fangs.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_verdant-elixir", - "fields": { - "name": "Verdant Elixir", - "desc": "Multi-colored streaks of light occasionally flash through the clear liquid in this container, like bottled lightning. As an action, you can pour the contents of the vial onto the ground. All normal plants in a 100-foot radius centered on the point where you poured the vial become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves. Alternatively, you can apply the contents of the vial to a plant creature within 5 feet of you. For 1 hour, the target gains 2d10 temporary hit points, and it gains the “enlarge” effect of the enlarge/reduce spell (no concentration required).", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_verminous-snipsnaps", - "fields": { - "name": "Verminous Snipsnaps", - "desc": "This stoppered jar holds small animated knives and scissors. The jar weighs 1 pound, and its command word is often written on the jar's label. You can use an action to remove the stopper, which releases the spinning blades into a space you can see within 30 feet of you. The knives and scissors fill a cube 10 feet on each side and whirl in place, flaying creatures and objects that enter the cube. When a creature enters the cube for the first time on a turn or starts its turn there, it takes 2d12 piercing damage. You can use a bonus action to speak the command word, returning the blades to the jar. Otherwise, the knives and scissors remain in that space indefinitely.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_verses-of-vengeance", - "fields": { - "name": "Verses of Vengeance", - "desc": "This massive, holy tome is bound in brass with a handle on the back cover. A steel chain dangles from the sturdy metal cover, allowing you to hang the tome from your belt or hook it to your armor. A locked clasp holds the tome closed, securing its contents. You gain a +1 bonus to AC while you wield this tome as a shield. This bonus is in addition to the shield's normal bonus to AC. Alternatively, you can make melee weapon attacks with the tome as if it was a club. If you make an attack using use the tome as a weapon, you lose the shield's bonus to your AC until the start of your next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_vessel-of-deadly-venoms", - "fields": { - "name": "Vessel of Deadly Venoms", - "desc": "This small jug weighs 5 pounds and has a ceramic snake coiled around it. You can use an action to speak a command word to cause the vessel to produce poison, which pours from the snake's mouth. A poison created by the vessel must be used within 1 hour or it becomes inert. The word “blade” causes the snake to produce 1 dose of serpent venom, enough to coat a single weapon. The word “consume” causes the snake to produce 1 dose of assassin's blood, an ingested poison. The word “spit” causes the snake to spray a stream of poison at a creature you can see within 30 feet. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d8 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. Once used, the vessel can't be used to create poison again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_vestments-of-the-bleak-shinobi", - "fields": { - "name": "Vestments of the Bleak Shinobi", - "desc": "This padded black armor is fashioned in the furtive style of shinobi shōzoku garb. You have advantage on Dexterity (Stealth) checks while you wear this armor. Darkness. While wearing this armor, you can use an action to cast the darkness spell from it with a range of 30 feet. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_vial-of-sunlight", - "fields": { - "name": "Vial of Sunlight", - "desc": "This crystal vial is filled with water from a spring high in the mountains and has been blessed by priests of a deity of healing and light. You can use an action to cause the vial to emit bright light in a 30-foot radius and dim light for an additional 30 feet for 1 minute. This light is pure sunlight, causing harm or discomfort to vampires and other undead creatures that are sensitive to it. The vial can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_vielle-of-weirding-and-warding", - "fields": { - "name": "Vielle of Weirding and Warding", - "desc": "The strings of this bowed instrument never break. You must be proficient in stringed instruments to use this vielle. A creature that attempts to play the instrument without being attuned to it must succeed on a DC 15 Wisdom saving throw or take 2d8 psychic damage. If you play the vielle as the somatic component for a spell that causes a target to become charmed on a failed saving throw, the target has disadvantage on the saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_vigilant-mug", - "fields": { - "name": "Vigilant Mug", - "desc": "An impish face sits carved into the side of this bronze mug, its eyes a pair of clear, blue crystals. The imp's eyes turn red when poison or poisonous material is placed or poured inside the mug.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_vile-razor", - "fields": { - "name": "Vile Razor", - "desc": "This perpetually blood-stained straight razor deals slashing damage instead of piercing damage. You gain a +1 bonus to attack and damage rolls made with this magic weapon. Inhuman Alacrity. While holding the dagger, you can take two bonus actions on your turn, instead of one. Each bonus action must be different; you can’t use the same bonus action twice in a single turn. Once used, this property can’t be used again until the next dusk. Unclean Cut. When you hit a creature with a melee attack using the dagger, you can use a bonus action to deal an extra 2d4 necrotic damage. If you do so, the target and each of its allies that can see this attack must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. Once used, this property can’t be used again until the next dusk. ", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_void-touched-buckler", - "fields": { - "name": "Void-Touched Buckler", - "desc": "This simple wood and metal buckler belonged to an adventurer slain by a void dragon wyrmling (see Tome of Beasts). It sat for decades next to a small tear in the fabric of reality, which led to the outer planes. It has since become tainted by the Void. While wielding this shield, you have a +1 bonus to AC. This bonus is in addition to the shield’s normal bonus to AC. Invoke the Void. While wielding this shield, you can use an action to invoke the shield’s latent Void energy for 1 minute, causing a dark, swirling aura to envelop the shield. For the duration, when a creature misses you with a weapon attack, it must succeed on a DC 17 Wisdom saving throw or be frightened of you until the end of its next turn. In addition, when a creature hits you with a weapon attack, it has advantage on weapon attack rolls against you until the end of its next turn. You can’t use this property of the shield again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_voidskin-cloak", - "fields": { - "name": "Voidskin Cloak", - "desc": "This pitch-black cloak absorbs light and whispers as it moves. It feels like thin leather with a knobby, scaly texture, though none of that detail is visible to the eye. While you wear this cloak, you have resistance to necrotic damage. While the hood is up, your face is pooled in shadow, and you can use a bonus action to fix your dark gaze upon a creature you can see within 60 feet. If the creature can see you, it must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once a creature succeeds on its saving throw, it can't be affected by the cloak again for 24 hours. Pulling the hood up or down requires an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_voidwalker", - "fields": { - "name": "Voidwalker", - "desc": "This band of tarnished silver bears no ornament or inscription, but it is icy cold to the touch. The patches of dark corrosion on the ring constantly, but subtly, move and change; though, this never occurs while anyone observes the ring. While wearing Voidwalker, you gain the benefits of a ring of free action and a ring of resistance (cold). It has the following additional properties. The ring is clever and knows that most mortals want nothing to do with the Void directly. It also knows that most of the creatures with strength enough to claim it will end up in dire straits sooner or later. It doesn't overplay its hand trying to push a master to take a plunge into the depths of the Void, but instead makes itself as indispensable as possible. It provides counsel and protection, all the while subtly pushing its master to take greater and greater risks. Once it's maneuvered its wearer into a position of desperation, generally on the brink of death, Voidwalker offers a way out. If the master accepts, it opens a gate into the Void, most likely sealing the creature's doom.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "vom_feather-token", - "fields": { - "name": "Feather Token", - "desc": "The following are additional feather token options. Cloud (Uncommon). This white feather is shaped like a cloud. You can use an action to step on the token, which expands into a 10-foot-diameter cloud that immediately begins to rise slowly to a height of up to 20 feet. Any creatures standing on the cloud rise with it. The cloud disappears after 10 minutes, and anything that was on the cloud falls slowly to the ground. \nDark of the Moon (Rare). This black feather is shaped like a crescent moon. As an action, you can brush the feather over a willing creature’s eyes to grant it the ability to see in the dark. For 1 hour, that creature has darkvision out to a range of 60 feet, including in magical darkness. Afterwards, the feather disappears. \n Held Heart (Very Rare). This red feather is shaped like a heart. While carrying this token, you have advantage on initiative rolls. As an action, you can press the feather against a willing, injured creature. The target regains all its missing hit points and the feather disappears. \nJackdaw’s Dart (Common). This black feather is shaped like a dart. While holding it, you can use an action to throw it at a creature you can see within 30 feet of you. As it flies, the feather transforms into a blot of black ink. The target must succeed on a DC 11 Dexterity saving throw or the feather leaves a black mark of misfortune on it. The target has disadvantage on its next ability check, attack roll, or saving throw then the mark disappears. A remove curse spell ends the mark early.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-accompaniment", - "fields": { - "name": "Wand of Accompaniment", - "desc": "Tiny musical notes have been etched into the sides of this otherwise plain, wooden wand. It has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand disintegrates with a small bang. Dance. While holding the wand, you can use an action to expend 3 charges to cast the irresistible dance spell (save DC 17) from it. If the target is in the area of the Song property of this wand, it has disadvantage on the saving throw. Song. While holding the wand, you can use an action to expend 1 charge to cause the area within a 30-foot radius of you to fill with music for 1 minute. The type of music played is up to you, but it is performed flawlessly. Each creature in the area that can hear the music has advantage on saving throws against being deafened and against spells and effects that deal thunder damage.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-air-glyphs", - "fields": { - "name": "Wand of Air Glyphs", - "desc": "While holding this thin, metal wand, you can use action to cause the tip to glow. When you wave the glowing wand in the air, it leaves a trail of light behind it, allowing you to write or draw on the air. Whatever letters or images you make hang in the air for 1 minute before fading away.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-bristles", - "fields": { - "name": "Wand of Bristles", - "desc": "This wand is made from the bristles of a giant boar bound together with magical, silver thread. It weighs 1 pound and is 8 inches long. The wand has a strong boar musk scent to it, which is difficult to mask and is noticed by any creature within 10 feet of you that possesses the Keen Smell trait. The wand is comprised of 10 individual bristles, and as long as the wand has 1 bristle, it regrows 2 bristles daily at dawn. While holding the wand, you can use your action to remove bristles to cause one of the following effects. Ghostly Charge (3 bristles). You toss the bristles toward one creature you can see. A phantom giant boar charges 30 feet toward the creature. If the phantom’s path connects with the creature, the target must succeed on a DC 15 Dexterity saving throw or take 2d8 force damage and be knocked prone. Truffle (2 bristles). You plant the bristles in the ground to conjure up a magical truffle. Consuming the mushroom restores 2d8 hit points.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-depth-detection", - "fields": { - "name": "Wand of Depth Detection", - "desc": "This simple wooden wand has 7 charges and regains 1d6 + 1 expended charges daily at dawn. While holding it, you can use an action to expend 1 charge and point it at a body of water or other liquid. You learn the liquid's deepest point or its average depth (your choice). In addition, you can use an action to expend 1 charge while you are submerged in a liquid to determine how far you are beneath the liquid's surface.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-direction", - "fields": { - "name": "Wand of Direction", - "desc": "This crooked, twisting wand is crafted of polished ebony with a small, silver arrow affixed to its tip. The wand has 3 charges. While holding it, you can expend 1 charge as an action to make the wand remember your path for up to 1,760 feet of movement. You can increase the length of the path the wand remembers by 1,760 feet for each additional charge you expend. When you expend a charge to make the wand remember your current path, the wand forgets the oldest path of up to 1,760 feet that it remembers. If you wish to retrace your steps, you can use a bonus action to activate the wand’s arrow. The arrow guides you, pointing and mentally tugging you in the direction you should go. The wand’s magic allows you to backtrack with complete accuracy despite being lost, unable to see, or similar hindrances against finding your way. The wand can’t counter or dispel magic effects that cause you to become lost or misguided, but it can guide you back in spite of some magic hindrances, such as guiding you through the area of a darkness spell or guiding you if you had activated the wand then forgotten the way due to the effects of the modify memory spell on you. The wand regains all expended charges daily at dawn. If you expend the wand’s last charge, roll a d20. On a roll of 1, the wand straightens and the arrow falls off, rendering it nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-drowning", - "fields": { - "name": "Wand of Drowning", - "desc": "This wand appears to be carved from the bones of a large fish, which have been cemented together. The wand has 3 charges and regains 1d3 expended charges daily at dawn. While holding this wand, you can use an action to expend 1 charge to cause a thin stream of seawater to spray toward a creature you can see within 60 feet of you. If the target can breathe only air, it must succeed on a DC 15 Constitution saving throw or its lungs fill with rancid seawater and it begins drowning. A drowning creature chokes for a number of rounds equal to its Constitution modifier (minimum of 1 round). At the start of its turn after its choking ends, the creature drops to 0 hit points and is dying, and it can't regain hit points or be stabilized until it can breathe again. A successful DC 15 Wisdom (Medicine) check removes the seawater from the drowning creature's lungs, ending the effect.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-extinguishing", - "fields": { - "name": "Wand of Extinguishing", - "desc": "This charred and blackened wooden wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to extinguish a nonmagical flame within 10 feet of you that is no larger than a small campfire. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand transforms into a wand of ignition.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-fermentation", - "fields": { - "name": "Wand of Fermentation", - "desc": "Fashioned out of oak, this wand appears heavily stained by an unknown liquid. The wand has 7 charges and regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand explodes in a puff of black smoke and is destroyed. While holding the wand, you can use an action and expend 1 or more of its charges to transform nonmagical liquid, such as blood, apple juice, or water, into an alcoholic beverage. For each charge you expend, you transform up to 1 gallon of nonmagical liquid into an equal amount of beer, wine, or other spirit. The alcohol transforms back into its original form if it hasn't been consumed within 24 hours of being transformed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-flame-control", - "fields": { - "name": "Wand of Flame Control", - "desc": "This wand is fashioned from a branch of pine, stripped of bark and beaded with hardened resin. The wand has 3 charges. If you use the wand as an arcane focus while casting a spell that deals fire damage, you can expend 1 charge as part of casting the spell to increase the spell's damage by 1d4. In addition, while holding the wand, you can use an action to expend 1 of its charges to cause one of the following effects: - Change the color of any flames within 30 feet.\n- Cause a single flame to burn lower, halving the range of light it sheds but burning twice as long.\n- Cause a single flame to burn brighter, doubling the range of the light it sheds but halving its duration. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand bursts into flames and burns to ash in seconds.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-giggles", - "fields": { - "name": "Wand of Giggles", - "desc": "This wand is tipped with a feather. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges and point the wand at a humanoid you can see within 30 feet of you. The target must succeed on a DC 10 Charisma saving throw or be forced to giggle for 1 minute. Giggling doesn't prevent a target from taking actions or moving. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Tears.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-guidance", - "fields": { - "name": "Wand of Guidance", - "desc": "This slim, metal wand is topped with a cage shaped like a three-sided pyramid. An eye of glass sits within the pyramid. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the guidance spell from it. The wand regains all expended charges at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Resistance.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-harrowing", - "fields": { - "name": "Wand of Harrowing", - "desc": "The tips of this twisted wooden wand are exceptionally withered. The wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand disintegrates into useless white powder. Affliction. While holding the wand, you can use an action to expend 1 charge to cause a creature you can see within 60 feet of you to become afflicted with unsightly, weeping sores. The target must succeed on a DC 15 Constitution saving throw or have disadvantage on all Dexterity and Charisma checks for 1 minute. An afflicted creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Pain. While holding the wand, you can use an action to expend 3 charges to cause a creature you can see within 60 feet of you to become wracked with terrible pain. The target must succeed on a DC 15 Constitution saving throw or take 4d6 necrotic damage, and its movement speed is halved for 1 minute. A pained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself a success. If the target is also suffering from the Affliction property of this wand, it has disadvantage on the saving throw.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-ignition", - "fields": { - "name": "Wand of Ignition", - "desc": "The cracks in this charred and blackened wooden wand glow like live coals, but the wand is merely warm to the touch. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to set fire to one flammable object or collection of material (a stack of paper, a pile of kindling, or similar) within 10 feet of you that is Small or smaller. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Extinguishing.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-plant-destruction", - "fields": { - "name": "Wand of Plant Destruction", - "desc": "This wand of petrified wood has 7 charges. While holding it, you can use an action to expend up to 3 of its charges to harm a plant or plant creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw, taking 2d8 necrotic damage for each charge you expended on a failed save, or half as much damage on a successful one. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand shatters and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-relieved-burdens", - "fields": { - "name": "Wand of Relieved Burdens", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and touch a creature with the wand. If the creature is blinded, charmed, deafened, frightened, paralyzed, poisoned, or stunned, the condition is removed from the creature and transferred to you. You suffer the condition for the remainder of its duration or until it is removed. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand crumbles to dust and is destroyed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-resistance", - "fields": { - "name": "Wand of Resistance", - "desc": "This slim, wooden wand is topped with a small, spherical cage, which holds a pyramid-shaped piece of hematite. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the resistance spell. The wand regains all expended charges at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Guidance .", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-revealing", - "fields": { - "name": "Wand of Revealing", - "desc": "Crystal beads decorate this wand, and a silver hand, index finger extended, caps it. The wand has 3 charges and regains all expended charges daily at dawn. While holding it, you can use an action to expend 1 of the wand's charges to reveal one creature or object within 120 feet of you that is either invisible or ethereal. This works like the see invisibility spell, except it allows you to see only that one creature or object. That creature or object remains visible as long as it remains within 120 feet of you. If more than one invisible or ethereal creature or object is in range when you use the wand, it reveals the nearest creature or object, revealing invisible creatures or objects before ethereal ones.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-tears", - "fields": { - "name": "Wand of Tears", - "desc": "The top half of this wooden wand is covered in thorns. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges and point the wand at a humanoid you can see within 30 feet of you. The target must succeed on a DC 10 Charisma saving throw or be forced to cry for 1 minute. Crying doesn't prevent a target from taking actions or moving. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Giggles .", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-the-timekeeper", - "fields": { - "name": "Wand of the Timekeeper", - "desc": "This smoothly polished wooden wand is perfectly balanced in the hand. Its grip is wrapped with supple leather strips, and its length is decorated with intricate arcane symbols. When you use it while playing a drum, you have advantage on Charisma (Performance) checks. The wand has 5 charges for the following properties. It regains 1d4 + 1 charges daily at dawn. Erratic. While holding the wand, you can use an action to expend 2 charges to force one creature you can see to re-roll its initiative at the end of each of its turns for 1 minute. An unwilling creature that succeeds on a DC 15 Wisdom saving throw is unaffected. Synchronize. While holding the wand, you can use an action to expend 1 charge to choose one creature you can see who has not taken its turn this round. That creature takes its next turn immediately after yours regardless of its turn in the Initiative order. An unwilling creature that succeeds on a DC 15 Wisdom saving throw is unaffected.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-treasure-finding", - "fields": { - "name": "Wand of Treasure Finding", - "desc": "This wand is adorned with gold and silver inlay and topped with a faceted crystal. The wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For 1 minute, you know the direction and approximate distance of the nearest mass or collection of precious metals or minerals within 60 feet. You can concentrate on a specific metal or mineral, such as silver, gold, or diamonds. If the specific metal or mineral is within 60 feet, you are able to discern all locations in which it is found and the approximate amount in each location. The wand's magic can penetrate most barriers, but it is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead. The effect ends if you stop holding the wand. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand turns to lead and becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-vapors", - "fields": { - "name": "Wand of Vapors", - "desc": "Green gas swirls inside this slender, glass wand. The wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand shatters into hundreds of crystalline fragments, and the gas within it dissipates. Fog Cloud. While holding the wand, you can use an action to expend 1 or more of its charges to cast the fog cloud spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend. Gaseous Escape. When you are attacked while holding this wand, you can use your reaction to expend 3 of its charges to transform yourself and everything you are wearing and carrying into a cloud of green mist until the start of your next turn. While you are a cloud of green mist, you have resistance to nonmagical damage, and you can’t be grappled or restrained. While in this form, you also can’t talk or manipulate objects, any objects you were wearing or holding can’t be dropped, used, or otherwise interacted with, and you can’t attack or cast spells.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wand-of-windows", - "fields": { - "name": "Wand of Windows", - "desc": "This clear, crystal wand has 3 charges. You can use an action to expend 1 charge and touch the wand to any nonmagical object. The wand causes a portion of the object, up to 1-foot square and 6 inches deep, to become transparent for 1 minute. The effect ends if you stop holding the wand. The wand regains 1d3 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand slowly becomes cloudy until it is completely opaque and becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ward-against-wild-appetites", - "fields": { - "name": "Ward Against Wild Appetites", - "desc": "Seventeen animal teeth of various sizes hang together on a simple leather thong, and each tooth is dyed a different color using pigments from plants native to old-growth forests. When a beast or monstrosity with an Intelligence of 4 or lower targets you with an attack, it has disadvantage on the attack roll if the attack is a bite. You must be wearing the necklace to gain this benefit.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_warding-icon", - "fields": { - "name": "Warding Icon", - "desc": "This carved piece of semiprecious stone typically takes the form of an angelic figure or a shield carved with a protective rune, and it is commonly worn attached to clothing or around the neck on a chain or cord. While wearing the stone, you have brief premonitions of danger and gain a +2 bonus to initiative if you aren't incapacitated.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_warlocks-aegis", - "fields": { - "name": "Warlock's Aegis", - "desc": "When you attune to this mundane-looking suit of leather armor, symbols related to your patron burn themselves into the leather, and the armor's colors change to those most closely associated with your patron. While wearing this armor, you can use an action and expend a spell slot to increase your AC by an amount equal to your Charisma modifier for the next 8 hours. The armor can't be used this way again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_warrior-shabti", - "fields": { - "name": "Warrior Shabti", - "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wave-chain-mail", - "fields": { - "name": "Wave Chain Mail", - "desc": "The rows of chain links of this armor seem to ebb and flow like waves while worn. Attacks against you have disadvantage while at least half of your body is submerged in water. In addition, when you are attacked, you can turn all or part of your body into water as a reaction, gaining immunity to bludgeoning, piercing, and slashing damage from nonmagical weapons, until the end of the attacker's turn. Once used, this property of the armor can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wayfarers-candle", - "fields": { - "name": "Wayfarer's Candle", - "desc": "This beeswax candle is stamped with a holy symbol, typically one of a deity associated with light or protection. When lit, it sheds light and heat as a normal candle for up to 1 hour, but it can't be extinguished by wind of any force. It can be blown out or extinguished only by the creature holding it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_web-arrows", - "fields": { - "name": "Web Arrows", - "desc": "Carvings of spiderwebs decorate the arrowhead and shaft of these arrows, which always come in pairs. When you fire the arrows from a bow, they become the two anchor points for a 20-foot cube of thick, sticky webbing. Once you fire the first arrow, you must fire the second arrow within 1 minute. The arrows must land within 20 feet of each other, or the magic fails. The webs created by the arrows are difficult terrain and lightly obscure the area. Each creature that starts its turn in the webs or enters them during its turn must make a DC 13 Dexterity saving throw. On a failed save, the creature is restrained as long as it remains in the webs or until it breaks free. A creature, including the restrained creature, can take its action to break the creature free from the webbing by succeeding on a DC 13 Strength check. The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_webbed-staff", - "fields": { - "name": "Webbed Staff", - "desc": "This staff is carved of ebony and wrapped in a net of silver wire. While holding it, you can't be caught in webs of any sort and can move through webs as if they were difficult terrain. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, spidersilk surrounds the staff in a cocoon then quickly unravels itself and the staff, destroying the staff.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_whip-of-fangs", - "fields": { - "name": "Whip of Fangs", - "desc": "The skin of a large asp is woven into the leather of this whip. The asp's head sits nestled among the leather tassels at its tip. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit with an attack using this magic weapon, the target takes an extra 1d4 poison damage and must succeed on a DC 13 Constitution saving throw or be poisoned until the end of its next turn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_whispering-cloak", - "fields": { - "name": "Whispering Cloak", - "desc": "This cloak is made of black, brown, and white bat pelts sewn together. While wearing it, you have blindsight out to a range of 60 feet. While wearing this cloak with its hood up, you transform into a creature of pure shadow. While in shadow form, your Armor Class increases by 2, you have advantage on Dexterity (Stealth) checks, and you can move through a space as narrow as 1 inch wide without squeezing. You can cast spells normally while in shadow form, but you can't make ranged or melee attacks with nonmagical weapons. In addition, you can't pick up objects, and you can't give objects you are wearing or carrying to others. This effect lasts up to 1 hour. Deduct time spent in shadow form in increments of 1 minute from the total time. After it has been used for 1 hour, the cloak can't be used in this way again until the next dusk, when its time limit resets. Pulling the hood up or down requires an action.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_whispering-powder", - "fields": { - "name": "Whispering Powder", - "desc": "A paper envelope contains enough of this fine dust for one use. You can use an action to sprinkle the dust on the ground in up to four contiguous spaces. When a Small or larger creature steps into one of these spaces, it must make a DC 13 Dexterity saving throw. On a failure, loud squeals, squeaks, and pops erupt with each footfall, audible out to 150 feet. The powder's creator dictates the manner of sounds produced. The first creature to enter the affected spaces sets off the alarm, consuming the powder's magic. Otherwise, the effect lasts as long as the powder coats the area.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_white-ape-hide", - "fields": { - "name": "White Ape Hide", - "desc": "This armor was made from the remains of a White Ape (see Tome of Beasts) that fell in battle. While wearing this armor, you gain a +2 bonus to AC. In addition, the armor has the following properties while you wear it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_white-ape-leather", - "fields": { - "name": "White Ape Leather", - "desc": "This armor was made from the remains of a White Ape (see Tome of Beasts) that fell in battle. While wearing this armor, you gain a +2 bonus to AC. In addition, the armor has the following properties while you wear it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_white-dandelion", - "fields": { - "name": "White Dandelion", - "desc": "When you are attacked or are the target of a spell while holding this magically enhanced flower, you can use a reaction to blow on the flower. It explodes in a flurry of seeds that distracts your attacker, and you add 1 to your AC against the attack or to your saving throw against the spell. Afterwards, the flower wilts and becomes nonmagical.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_white-honey-buckle", - "fields": { - "name": "White Honey Buckle", - "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_windwalker-boots", - "fields": { - "name": "Windwalker Boots", - "desc": "These lightweight boots are made of soft leather. While you wear these boots, you can walk on air as if it were solid ground. Your speed is halved when ascending or descending on the air. Otherwise, you can walk on air at your walking speed. You can use the Dash action as normal to increase your movement during your turn. If you don't end your movement on solid ground, you fall at the end of your turn unless otherwise supported, such as by gripping a ledge or hanging from a rope.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wisp-of-the-void", - "fields": { - "name": "Wisp of the Void", - "desc": "The interior of this bottle is pitch black, and it feels empty. When opened, it releases a black vapor. When you inhale this vapor, your eyes go completely black. For 1 minute, you have darkvision out to a range of 60 feet, and you have resistance to necrotic damage. In addition, you gain a +1 bonus to damage rolls made with a weapon.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_witch-ward-bottle", - "fields": { - "name": "Witch Ward Bottle", - "desc": "This small pottery jug contains an odd assortment of pins, needles, and rosemary, all sitting in a small amount of wine. A bloody fingerprint marks the top of the cork that seals the jug. When placed within a building (as small as a shack or as large as a castle) or buried in the earth on a section of land occupied by humanoids (as small as a campsite or as large as an estate), the bottle's magic protects those within the building or on the land against the magic of fey and fiends. The humanoid that owns the building or land and any ally or invited guests within the building or on the land has advantage on saving throws against the spells and special abilities of fey and fiends. If a protected creature fails its saving throw against a spell with a duration other than instantaneous, that creature can choose to succeed instead. Doing so immediately drains the jug's magic, and it shatters.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_witchs-brew", - "fields": { - "name": "Witch's Brew", - "desc": "For 1 minute after drinking this potion, your spell attacks deal an extra 1d4 necrotic damage on a hit. This revolting green potion's opaque liquid bubbles and steams as if boiling.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wolf-brush", - "fields": { - "name": "Wolf Brush", - "desc": "From a distance, this weapon bears a passing resemblance to a fallen tree branch. This unique polearm was first crafted by a famed martial educator and military general from the collected weapons of his fallen compatriots. Each point on this branching spear has a history of its own and is infused with the pain of loss and the glory of military service. When wielded in battle, each of the small, branching spear points attached to the polearm's shaft pulses with a warm glow and burns with the desire to protect the righteous. When not using it, you can fold the branches inward and sheathe the polearm in a leather wrap. You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you hold this weapon, it sheds dim light in a 5-foot radius. You can fold and wrap the weapon as an action, extinguishing the light. While holding or carrying the weapon, you have resistance to piercing damage. The weapon has 10 charges for the following other properties. The weapon regains 1d8 + 2 charges daily at dawn. In addition, it regains 1 charge when exposed to powerful magical sunlight, such as the light created by the sunbeam and sunburst spells, and it regains 1 charge each round it remains exposed to such sunlight. Spike Barrage. While wielding this weapon, you can use an action to expend 1 or more of its charges and sweep the weapon in a small arc to release a barrage of spikes in a 15-foot cone. Each creature in the area must make a DC 17 Dexterity saving throw, taking 1d10 piercing damage for each charge you expend on a failed save, or half as much damage on a successful one. Spiked Wall. While wielding this weapon, you can use an action to expend 6 charges to cast the wall of thorns spell (save DC 17) from it.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wolfbite-ring", - "fields": { - "name": "Wolfbite Ring", - "desc": "This heavy iron ring is adorned with the stylized head of a snarling wolf. The ring has 3 charges and regains 1d3 expended charges daily at dawn. When you make a melee weapon attack while wearing this ring, you can use a bonus action to expend 1 of the ring's charges to deal an extra 2d6 piercing damage to the target. Then, the target must succeed on a DC 15 Strength saving throw or be knocked prone.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_worg-salve", - "fields": { - "name": "Worg Salve", - "desc": "Brewed by hags and lycanthropes, this oil grants you lupine features. Each pot contains enough for three applications. One application grants one of the following benefits (your choice): darkvision out to a range of 60 feet, advantage on Wisdom (Perception) checks that rely on smell, a walking speed of 50 feet, or a new attack option (use the statistics of a wolf 's bite attack) for 5 minutes. If you use all three applications at one time, you can cast polymorph on yourself, transforming into a wolf. While you are in the form of a wolf, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_worry-stone", - "fields": { - "name": "Worry Stone", - "desc": "This smooth, rounded piece of semiprecious crystal has a thumb-sized groove worn into one side. Physical contact with the stone helps clear the mind and calm the nerves, promoting success. If you spend 1 minute rubbing the stone, you have advantage on the next ability check you make within 1 hour of rubbing the stone. Once used, the stone can't be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wraithstone", - "fields": { - "name": "Wraithstone", - "desc": "This stone is carved from petrified roots to reflect the shape and visage of a beast. The stone holds the spirit of a sacrificed beast of the type the stone depicts. A wraithstone is often created to grant immortal life to a beloved animal companion or to banish a troublesome predator. The creature's essence stays within until the stone is broken, upon which point the soul is released and the creature can't be resurrected or reincarnated by any means short of a wish spell. While attuned to and carrying this item, a spectral representation of the beast walks beside you, resembling the sacrificed creature's likeness in its prime. The specter follows you at all times and can be seen by all. You can use a bonus action to dismiss or summon the specter. So long as you carry this stone, you can interact with the creature as if it were still alive, even speaking to it if it is able to speak, though it can't physically interact with the material world. It can gesture to indicate directions and communicate very basic single-word ideas to you telepathically. The stone has a number of charges, depending on the size of the creature stored within it. The stone has 6 charges if the creature is Large or smaller, 10 charges if the creature is Huge, and 12 charges if the creature is Gargantuan. After all of the stone's charges have been used, the beast's spirit is completely drained, and the stone becomes a nonmagical bauble. As a bonus action, you can expend 1 charge to cause one of the following effects:", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_wrathful-vapors", - "fields": { - "name": "Wrathful Vapors", - "desc": "Roiling vapors of red, orange, and black swirl in a frenzy of color inside a sealed glass bottle. As an action, you can open the bottle and empty its contents within 5 feet of you or throw the bottle up to 20 feet, shattering it on impact. If you throw it, make a ranged attack against a creature or object, treating the bottle as an improvised weapon. When you open or break the bottle, the smoke releases in a 20-foot-radius sphere that dissipates at the end of your next turn. A creature that isn't an undead or a construct that enters or starts its turn in the area must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. On its turn, a creature overcome with rage must attack the creature nearest to it with whatever melee weapon it has on hand, moving up to its speed toward the target, if necessary. The raging creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "vom_zephyr-shield", - "fields": { - "name": "Zephyr Shield", - "desc": "This round metal shield is painted bright blue with swirling white lines across it. You gain a +2 bonus to AC while you wield this shield. This is an addition to the shield's normal AC bonus. Air Bubble. Whenever you are immersed in a body of water while holding this shield, you can use a reaction to envelop yourself in a 10-foot radius bubble of fresh air. This bubble floats in place, but you can move it up to 30 feet during your turn. You are moved with the bubble when it moves. The air within the bubble magically replenishes itself every round and prevents foreign particles, such as poison gases and water-borne parasites, from entering the area. Other creatures can leave or enter the bubble freely, but it collapses as soon as you exit it. The exterior of the bubble is immune to damage and creatures making ranged attacks against anyone inside the bubble have disadvantage on their attack rolls. The bubble lasts for 1 minute or until you exit it. Once used, this property can’t be used again until the next dawn. Sanctuary. You can use a bonus action to cast the sanctuary spell (save DC 13) from the shield. This spell protects you from only water elementals and other creatures composed of water. Once used, this property can’t be used again until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_ziphian-eye-amulet", - "fields": { - "name": "Ziphian Eye Amulet", - "desc": "This gold amulet holds a preserved eye from a Ziphius (see Creature Codex). It has 3 charges, and it regains all expended charges daily at dawn. While wearing this amulet, you can use a bonus action to speak its command word and expend 1 of its charges to create a brief magical bond with a creature you can see within 60 feet of you. The target must succeed on a DC 15 Wisdom saving throw or be magically bonded with you until the end of your next turn. While bonded in this way, you can choose to have advantage on attack rolls against the target or cause the target to have disadvantage on attack rolls against you.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "vom_zipline-ring", - "fields": { - "name": "Zipline Ring", - "desc": "This plain gold ring features a magnificent ruby. While wearing the ring, you can use an action to cause a crimson zipline of magical force to extend from the gem in the ring and attach to up to two solid surfaces you can see. Each surface must be within 150 feet of you. Once the zipline is connected, you can use a bonus action to magically travel up to 50 feet along the line between the two surfaces. You can bring along objects as long as their weight doesn't exceed what you can carry. While the zipline is active, you remain suspended within 5 feet of the line, floating off the ground at least 3 inches, and you can't move more than 5 feet away from the zipline. When you magically travel along the line, you don't provoke opportunity attacks. The hand wearing the ring must be pointed at the line when you magically travel along it, but you otherwise can act normally while the zipline is active. You can use a bonus action to end the zipline. When the zipline has been active for a total of 1 minute, the ring's magic ceases to function until the next dawn.", - "document": "vom", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - } -] \ No newline at end of file +{ + "model": "api_v2.item", + "pk": "vom_aberrant-agreement", + "fields": { + "name": "Aberrant Agreement", + "desc": "This long scroll bears strange runes and seals of eldritch powers. When you use an action to present this scroll to an aberration whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the aberration, negotiating a service from it in exchange for a reward. The aberration is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the aberration, the truce is broken, and the creature can act normally. If the aberration refuses the offer, it is free to take any actions it wishes. Should you and the aberration reach an agreement that is satisfactory to both parties, you must sign the agreement and have the aberration do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the aberration to the agreement until its service is rendered and the reward paid, at which point the scroll blackens and crumbles to dust. An aberration's thinking is alien to most humanoids, and vaguely worded contracts may result in unintended consequences, as the creature may have different thoughts as to how to best meet the goal. If either party breaks the bargain, that creature immediately takes 10d6 psychic damage, and the charter is destroyed, ending the contract.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_accursed-idol", + "fields": { + "name": "Accursed Idol", + "desc": "Carved from a curious black stone of unknown origin, this small totem is fashioned in the macabre likeness of a Great Old One. While attuned to the idol and holding it, you gain the following benefits:\n- You can speak, read, and write Deep Speech.\n- You can use an action to speak the idol's command word and send otherworldly spirits to whisper in the minds of up to three creatures you can see within 30 feet of you. Each target must make a DC 13 Charisma saving throw. On a failed save, a creature takes 2d6 psychic damage and is frightened of you for 1 minute. On a successful save, a creature takes half as much damage and isn't frightened. If a target dies from this damage or while frightened, the otherworldly spirits within the idol are temporarily sated, and you don't suffer the effects of the idol's Otherworldly Whispers property at the next dusk. Once used, this property of the idol can't be used again until the next dusk.\n- You can use an action to cast the augury spell from the idol. The idol can't be used this way again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_adamantine-spearbiter", + "fields": { + "name": "Adamantine Spearbiter", + "desc": "The front of this shield is fashioned in the shape of a snarling wolf ’s head. Spearbiter (Uncommon). When a creature you can see within 5 feet of you makes a melee weapon attack against you, you can use a reaction to attack the attacker’s weapon, the wolf ’s head animating and snapping its jaws at the weapon. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. If the result is higher than the attacker’s attack roll against you, the attacker’s attack misses you. You can’t use this property of the shield again until the next dawn. Adamantine Spearbiter (Rare). A more powerful version of this shield exists. Its wolf ’s head is fitted with adamantine fangs and appears larger and more menacing. When you use your reaction and animate the wolf ’s head to snap at the attacker’s weapon, you have advantage on the attack roll. In addition, there is no longer a limit to the number of times you can use this property of the shield.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_agile-breastplate", + "fields": { + "name": "Agile Breastplate", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_agile-chain-mail", + "fields": { + "name": "Agile Chain Mail", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_agile-chain-shirt", + "fields": { + "name": "Agile Chain Shirt", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_agile-half-plate", + "fields": { + "name": "Agile Half Plate", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_agile-hide", + "fields": { + "name": "Agile Hide", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_agile-plate", + "fields": { + "name": "Agile Plate", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_agile-ring-mail", + "fields": { + "name": "Agile Ring Mail", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_agile-scale-mail", + "fields": { + "name": "Agile Scale Mail", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_agile-splint", + "fields": { + "name": "Agile Splint", + "desc": "This magically enhanced armor is less bulky than its nonmagical version. While wearing a suit of medium agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 3, instead of 2. While wearing a suit of heavy agile armor, the maximum Dexterity modifier you can add to determine your Armor Class is 1, instead of 0.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_air-seed", + "fields": { + "name": "Air Seed", + "desc": "This plum-sized, nearly spherical sandstone is imbued with a touch of air magic. Typically, 1d4 + 4 air seeds are found together. You can use an action to throw the seed up to 60 feet. The seed explodes on impact and is destroyed. When it explodes, the seed releases a burst of fresh, breathable air, and it disperses gas or vapor and extinguishes candles, torches, and similar unprotected flames within a 10-foot radius of where the seed landed. Each suffocating or choking creature within a 10-foot radius of where the seed landed gains a lung full of air, allowing the creature to hold its breath for 5 minutes. If you break the seed while underwater, each creature within a 10-foot radius of where you broke the seed gains a lung full of air, allowing the creature to hold its breath for 5 minutes.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_akaasit-blade", + "fields": { + "name": "Akaasit Blade", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. This dagger is crafted from the arm blade of a defeated Akaasit (see Tome of Beasts 2). You can use an action to activate a small measure of prescience within the dagger for 1 minute. If you are attacked by a creature you can see within 5 feet of you while this effect is active, you can use your reaction to make one attack with this dagger against the attacker. If your attack hits, the dagger loses its prescience, and its prescience can't be activated again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_alabaster-salt-shaker", + "fields": { + "name": "Alabaster Salt Shaker", + "desc": "This shaker is carved from purest alabaster in the shape of an owl. It is 7 inches tall and contains enough salt to flavor 25 meals. When the shaker is empty, it can't be refilled, and it becomes nonmagical. When you or another creature eat a meal salted by this shaker, you don't need to eat again for 48 hours, at which point the magic wears off. If you don't eat within 1 hour of the magic wearing off, you gain one level of exhaustion. You continue gaining one level of exhaustion for each additional hour you don't eat.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_alchemical-lantern", + "fields": { + "name": "Alchemical Lantern", + "desc": "This hooded lantern has 3 charges and regains all expended charges daily at dusk. While the lantern is lit, you can use an action to expend 1 charge to cause the lantern to spit gooey alchemical fire at a creature you can see in the lantern's bright light. The lantern makes its attack roll with a +5 bonus. On a hit, the target takes 2d6 fire damage, and it ignites. Until a creature takes an action to douse the fire, the target takes 1d6 fire damage at the start of each of its turns.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_alembic-of-unmaking", + "fields": { + "name": "Alembic of Unmaking", + "desc": "This large alembic is a glass retort supported by a bronze tripod and connected to a smaller glass container by a bronze spout. The bronze fittings are etched with arcane symbols, and the glass parts of the alembic sometimes emit bright, amethyst sparks. If a magic item is placed inside the alembic and a fire lit beneath it, the magic item dissolves and its magical energy drains into the smaller container. Artifacts, legendary magic items, and any magic item that won't physically fit into the alembic (anything larger than a shortsword or a cloak) can't be dissolved in this way. Full dissolution and distillation of an item's magical energy takes 1 hour, but 10 minutes is enough time to render most items nonmagical. If an item spends a full hour dissolving in the alembic, its magical energy coalesces in the smaller container as a lump of material resembling gray-purple, stiff dough known as arcanoplasm. This material is safe to handle and easy to incorporate into new magic items. Using arcanoplasm while creating a magic item reduces the cost of the new item by 10 percent per degree of rarity of the magic item that was distilled into the arcanoplasm. An alembic of unmaking can distill or disenchant one item per 24 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_almanac-of-common-wisdom", + "fields": { + "name": "Almanac of Common Wisdom", + "desc": "The dog-eared pages of this thick, weathered tome contain useful advice, facts, and statistical information on a wide range of topics. The topics change to match information relevant to the area where it is currently located. If you spend a short rest consulting the almanac, you treat your proficiency bonus as 1 higher when making any Intelligence, Wisdom, or Charisma skill checks to discover, recall, or cite information about local events, locations, or creatures for the next 4 hours. For example, this almanac's magic can help you recall and find the location of a city's oldest tavern, but its magic won't help you notice a thug hiding in an alley near the tavern.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_amulet-of-memory", + "fields": { + "name": "Amulet of Memory", + "desc": "Made of gold or silver, this spherical locket is engraved with two cresting waves facing away from each other while bound in a twisted loop. It preserves a memory to be reexperienced later. While wearing this amulet, you can use an action to speak the command word and open the locket. The open locket stores what you see and experience for up to 10 minutes. You can shut the locket at any time (no action required), stopping the memory recording. Opening the locket with the command word again overwrites the contained memory. While a memory is stored, you or another creature can touch the locket to experience the memory from the beginning. Breaking contact ends the memory early. In addition, you have advantage on any skill check related to details or knowledge of the stored memory. If you die while wearing the amulet, it preserves you. Your body is affected by the gentle repose spell until the amulet is removed or until you are restored to life. In addition, at the moment of your death, you can store any memory into the amulet. A creature touching the amulet perceives the memory stored there even after your death. Attuning to an amulet of memory removes any prior memories stored in it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_amulet-of-sustaining-health", + "fields": { + "name": "Amulet of Sustaining Health", + "desc": "While wearing this amulet, you need to eat and drink only once every 7 days. In addition, you have advantage on saving throws against effects that would cause you to suffer a level of exhaustion.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_amulet-of-the-oracle", + "fields": { + "name": "Amulet of the Oracle", + "desc": "When you finish a long rest while wearing this amulet, you can choose one cantrip from the cleric spell list. You can cast that cantrip from the amulet at will, using Wisdom as your spellcasting ability for it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_amulet-of-whirlwinds", + "fields": { + "name": "Amulet of Whirlwinds", + "desc": "This amulet is strung on a brass necklace and holds a piece of djinn magic. The amulet has 9 charges. You can use an action to expend 1 of its charges to create a whirlwind on a point you can see within 60 feet of you. The whirlwind is a 5-foot-radius, 30-foot-tall cylinder of swirling air that lasts as long as you maintain concentration (as if concentrating on a spell). Any creature other than you that enters the whirlwind must succeed on a DC 15 Strength saving throw or be restrained by it. You can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if you lose sight of it. A creature within 5 feet of the whirlwind can pull a creature out of it by taking an action to make a DC 15 Strength check and succeeding. A restrained creature can try to escape by taking an action to make a DC 15 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the whirlwind. When all of the amulet's charges are expended, the amulet becomes a nonmagical piece of jewelry worth 50 gp.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_anchor-of-striking", + "fields": { + "name": "Anchor of Striking", + "desc": "This small rusty iron anchor feels sturdy in spite of its appearance. You gain a +1 bonus to attack and damage rolls made with this magic war pick. When you roll a 20 on an attack roll made with this weapon, the target is wrapped in ethereal golden chains that extend from the bottom of the anchor. As an action, the chained target can make a DC 15 Strength or Dexterity check, freeing itself from the chains on a success. Alternatively, you can use a bonus action to command the chains to disappear, freeing the target. The chains are constructed of magical force and can't be damaged, though they can be destroyed with a disintegrate spell. While the target is wrapped in these chains, you and the target can't move further than 50 feet from each other.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_angelic-earrings", + "fields": { + "name": "Angelic Earrings", + "desc": "These earrings feature platinum loops from which hang bronzed claws from a Chamrosh (see Tome of Beasts 2), freely given by the angelic hound. While wearing these earrings, you have advantage on Wisdom (Insight) checks to determine if a creature is lying or if it has an evil alignment. If you cast detect evil and good while wearing these earrings, the range increases to 60 feet, and the spell lasts 10 minutes without requiring concentration.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_angry-hornet", + "fields": { + "name": "Angry Hornet", + "desc": "This black ammunition has yellow fletching or yellow paint. When you fire this magic ammunition, it makes an angry buzzing sound, and it multiplies in flight. As it flies, 2d4 identical pieces of ammunition magically appear around it, all speeding toward your target. Roll separate attack rolls for each additional arrow or bullet. Duplicate ammunition disappears after missing or after dealing its damage. If the angry hornet and all its duplicates miss, the angry hornet remains magical and can be fired again, otherwise it is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_animated-abacus", + "fields": { + "name": "Animated Abacus", + "desc": "If you speak a mathematical equation within 5 feet of this abacus, it calculates the equation and displays the solution. If you are touching the abacus, it calculates only the equations you speak, ignoring all other spoken equations.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_animated-chain-mail", + "fields": { + "name": "Animated Chain Mail", + "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can use an action to cause parts of the armor to unravel into long, animated chains. While the chains are active, you have a climbing speed equal to your walking speed, and your AC is reduced by 2. You can use a bonus action to deactivate the chains, returning the armor to normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ankh-of-aten", + "fields": { + "name": "Ankh of Aten", + "desc": "This golden ankh is about 12 inches long and has 5 charges. While holding the ankh by the loop, you can expend 1 charge as an action to fire a beam of brilliant sunlight in a 5-foot-wide, 60-foot-line from the end. Each creature caught in the line must make a DC 15 Constitution saving throw. On a failed save, a creature takes a5d8 radiant damage and is blinded until the end of your next turn. On a successful save, it takes half damage and isn't blinded. Undead have disadvantage on this saving throw. The ankh regains 1d4 + 1 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_anointing-mace", + "fields": { + "name": "Anointing Mace", + "desc": "Also called an anointing gada, you gain a +1 bonus to attack and damage rolls made with this magic weapon. In addition, the ornately decorated head of the mace holds a reservoir perforated with small holes. As an action, you can fill the reservoir with a single potion or vial of liquid, such as holy water or alchemist's fire. You can press a button on the haft of the weapon as a bonus action, which opens the holes. If you hit a target with the weapon while the holes are open, the weapon deals damage as normal and the target suffers the effects of the liquid. For example,\nan anointing mace filled with holy water deals an extra 2d6 radiant damage if it hits a fiend or undead. After you press the button and make an attack roll, the liquid is expended, regardless if your attack hits.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_apron-of-the-eager-artisan", + "fields": { + "name": "Apron of the Eager Artisan", + "desc": "Created by dwarven artisans, this leather apron has narrow pockets, which hold one type of artisan's tools. If you are wearing the apron and you spend 10 minutes contemplating your next crafting project, the tools in the apron magically change to match those best suited to the task. Once you have changed the tools available, you can't change them again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_arcanaphage-stone", + "fields": { + "name": "Arcanaphage Stone", + "desc": "Similar to the rocks found in a bird's gizzard, this smooth stone helps an Arcanaphage (see Creature Codex) digest magic. While you hold or wear the stone, you have advantage on saving throws against spells.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_armor-of-cushioning", + "fields": { + "name": "Armor of Cushioning", + "desc": "While wearing this armor, you have resistance to bludgeoning damage. In addition, you can use a reaction when you fall to reduce any falling damage you take by an amount equal to twice your level.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_armor-of-the-ngobou", + "fields": { + "name": "Armor of the Ngobou", + "desc": "This thick and rough armor is made from the hide of a Ngobou (see Tome of Beasts), an aggressive, ox-sized dinosaur known to threaten elephants of the plains. The horns and tusks of the dinosaur are worked into the armor as spiked shoulder pads. While wearing this armor, you gain a +1 bonus to AC, and you have a magical sense for elephants. You automatically detect if an elephant has passed within 90 feet of your location within the last 24 hours, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) checks you make to find elephants.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_arrow-of-grabbing", + "fields": { + "name": "Arrow of Grabbing", + "desc": "This arrow has a barbed head and is wound with a fine but strong thread that unravels as the arrow soars. If a creature takes damage from the arrow, the creature must succeed on a DC 17 Constitution saving throw or take 4d6 damage and have the arrowhead lodged in its flesh. A creature grabbed by this arrow can't move farther away from you. At the end of its turn, the creature can attempt a DC 17 Constitution saving throw, taking 4d6 piercing damage and dislodging the arrow on a success. As an action, you can attempt to pull the grabbed creature up to 10 feet in a straight line toward you, forcing the creature to repeat the saving throw. If the creature fails, it moves up to 10 feet closer to you. If it succeeds, it takes 4d6 piercing damage and the arrow is dislodged.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_arrow-of-unpleasant-herbs", + "fields": { + "name": "Arrow of Unpleasant Herbs", + "desc": "This arrow's tip is filled with magically preserved, poisonous herbs. When a creature takes damage from the arrow, the arrowhead breaks, releasing the herbs. The creature must succeed on a DC 15 Constitution saving throw or be incapacitated until the end of its next turn as it retches and reels from the poison.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ash-of-the-ebon-birch", + "fields": { + "name": "Ash of the Ebon Birch", + "desc": "This salve is created by burning bark from a rare ebon birch tree then mixing that ash with oil and animal blood to create a cerise pigment used to paint yourself or another creature with profane protections. Painting the pigment on a creature takes 1 minute, and you can choose to paint a specific sigil or smear the pigment on a specific part of the creature's body.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ashes-of-the-fallen", + "fields": { + "name": "Ashes of the Fallen", + "desc": "Found in a small packet, this coarse, foul-smelling black dust is made from the powdered remains of a celestial. Each packet of the substance contains enough ashes for one use. You can use an action to throw the dust in a 15-foot cone. Each spellcaster in the cone must succeed on a DC 15 Wisdom saving throw or become cursed for 1 hour or until the curse is ended with a remove curse spell or similar magic. Creatures that don't cast spells are unaffected. A cursed spellcaster must make a DC 15 Wisdom saving throw each time it casts a spell. On a success, the spell is cast normally. On a failure, the spellcaster casts a different, randomly chosen spell of the same level or lower from among the spellcaster's prepared or known spells. If the spellcaster has no suitable spells available, no spell is cast.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ashwood-wand", + "fields": { + "name": "Ashwood Wand", + "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains all expended charges daily at dawn. When you cast a spell that deals fire damage while using this wand as your spellcasting focus, the spell deals 1 extra fire damage. If you expend 1 of the wand's charges during the casting, the spell deals 1d4 + 1 extra fire damage instead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_asps-kiss", + "fields": { + "name": "Asp's Kiss", + "desc": "This haladie features two short, slightly curved blades attached to a single hilt with a short, blue-sheened spike on the hand guard. You gain a +2 bonus to attack and damage rolls made with this magic weapon. While attuned to this sword, you have immunity to poison damage, and, when you take the Dash action, the extra movement you gain is double your speed instead of equal to your speed. When you use the Attack action with this sword, you can make one attack with its hand guard spike (treat as a dagger) as a bonus action. You can use an action to cause indigo poison to coat the blades of this sword. The poison remains for 1 minute or until two attacks using the blade of this weapon hit one or more creatures. The target must succeed on a DC 17 Constitution saving throw or take 2d10 poison damage and its hit point maximum is reduced by an amount equal to the poison damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. The sword can't be used this way again until the next dawn. When you kill a creature with this weapon, it sheds a single, blue tear as it takes its last breath.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_aurochs-bracers", + "fields": { + "name": "Aurochs Bracers", + "desc": "These bracers have the graven image of a bull's head on them. Your Strength score is 19 while you wear these bracers. It has no effect on you if your Strength is already 19 or higher. In addition, when you use the Attack action to shove a creature, you have advantage on the Strength (Athletics) check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_baba-yagas-cinderskull", + "fields": { + "name": "Baba Yaga's Cinderskull", + "desc": "Warm to the touch, this white, dry skull radiates dim, orange light from its eye sockets in a 30-foot radius. While attuned to the skull, you only require half of the daily food and water a creature of your size and type normally requires. In addition, you can withstand extreme temperatures indefinitely, and you automatically succeed on saving throws against extreme temperatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_badger-hide", + "fields": { + "name": "Badger Hide", + "desc": "While wearing this hairy, black and white armor, you have a burrowing speed of 20 feet, and you have advantage on Wisdom (Perception) checks that rely on smell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bag-of-bramble-beasts", + "fields": { + "name": "Bag of Bramble Beasts", + "desc": "This ordinary bag, made from green cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, spiky object. The bag weighs 1/2 pound. You can use an action to pull the spiky object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a 1d8 and consulting the below table. The creature is a bramble version (see sidebar) of the beast listed in the table. The creature vanishes at the next dawn or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature. Once three spiky objects have been pulled from the bag, the bag can't be used again until the next dawn. Alternatively, one willing animal companion or familiar can be placed in the bag for 1 week. A non-beast animal companion or familiar that is placed in the bag is treated as if it had been placed into a bag of holding and can be removed from the bag at any time. A beast animal companion or familiar disappears once placed in the bag, and the bag's magic is dormant until the week is up. At the end of the week, the animal companion or familiar exits the bag as a bramble creature (see the template in the sidebar) and can be returned to its original form only with a wish. The creature retains its status as an animal companion or familiar after its transformation and can choose to activate or deactivate its Thorn Body trait as a bonus action. A transformed familiar can be re-summoned with the find familiar spell. Once the bag has been used to change an animal companion or familiar into a bramble creature, it becomes an ordinary, nonmagical bag. | 1d8 | Creature |\n| --- | ------------ |\n| 1 | Weasel |\n| 2 | Giant rat |\n| 3 | Badger |\n| 4 | Boar |\n| 5 | Panther |\n| 6 | Giant badger | Only a beast can become a bramble creature. It retains all its statistics except as noted below.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bag-of-traps", + "fields": { + "name": "Bag of Traps", + "desc": "Anyone reaching into this apparently empty bag feels a small coin, which resembles no known currency. Removing the coin and placing or tossing it up to 20 feet creates a random mechanical trap that remains for 10 minutes or until discharged or disarmed, whereupon it disappears. The coin returns to the bag only after the trap disappears. You may draw up to 10 traps from the bag each week. The GM has the statistics for mechanical traps.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bagpipes-of-battle", + "fields": { + "name": "Bagpipes of Battle", + "desc": "Inspire friends and strike fear in the hearts of your enemies with the drone of valor and the shrill call of martial might! You must be proficient with wind instruments to use these bagpipes. You can use an action to play them and create a fearsome and inspiring tune. Each ally within 60 feet of you that can hear the tune gains a d12 Bardic Inspiration die for 10 minutes. Each creature within 60 feet of you that can hear the tune and that is hostile to you must succeed on a DC 15 Wisdom saving throw or be frightened of you for 1 minute. A hostile creature has disadvantage on this saving throw if it is within 5 feet of you or your ally. A frightened creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once used, the bagpipes can't be used in this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_baleful-wardrums", + "fields": { + "name": "Baleful Wardrums", + "desc": "You must be proficient with percussion instruments to use these drums. The drums have 3 charges. You can use an action to play them and expend 1 charge to create a baleful rumble. Each creature of your choice within 60 feet of you that hears you play must succeed on a DC 13 Wisdom saving throw or have disadvantage on its next weapon or spell attack roll. A creature that succeeds on its saving throw is immune to the effect of these drums for 24 hours. The drum regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_band-of-iron-thorns", + "fields": { + "name": "Band of Iron Thorns", + "desc": "This black iron armband bristles with long, needle-sharp iron thorns. When you attune to the armband, the thorns bite into your flesh. The armband doesn't function unless the thorns pierce your skin and are able to reach your blood. While wearing the band, after you roll a saving throw but before the GM reveals if the roll is a success or failure, you can use your reaction to expend one Hit Die. Roll the die, and add the number rolled to your saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_band-of-restraint", + "fields": { + "name": "Band of Restraint", + "desc": "These simple leather straps are nearly unbreakable when used as restraints. If you spend 1 minute tying a Small or Medium creature's limbs with these straps, the creature is restrained (escape DC 17) until it escapes or until you speak a command word to release the straps. While restrained by these straps, the target has disadvantage on Strength checks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bandana-of-brachiation", + "fields": { + "name": "Bandana of Brachiation", + "desc": "While wearing this bright yellow bandana, you have a climbing speed of 30 feet, and you gain a +5 bonus to Strength (Athletics) and Dexterity (Acrobatics) checks to jump over obstacles, to land on your feet, and to land safely on a breakable or unstable surface, such as a tree branch or rotting wooden rafters.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bandana-of-bravado", + "fields": { + "name": "Bandana of Bravado", + "desc": "While wearing this bright red bandana, you have advantage on Charisma (Intimidation) checks and on saving throws against being frightened.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_banner-of-the-fortunate", + "fields": { + "name": "Banner of the Fortunate", + "desc": "While holding this banner aloft with one hand, you can use an action to inspire creatures nearby. Each creature of your choice within 60 feet of you that can see the banner has advantage on its next attack roll. The banner can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_battle-standard-of-passage", + "fields": { + "name": "Battle Standard of Passage", + "desc": "This battle standard hangs from a 4-foot-long pole and bears the colors and heraldry of a long-forgotten nation. You can use an action to plant the pole in the ground, causing the standard to whip and wave as if in a breeze. Choose up to six creatures within 30 feet of the standard, which can include yourself. Nonmagical difficult terrain costs the creatures you chose no extra movement. In addition, each creature you chose can pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. The standard stops waving and the effect ends after 10 minutes, or when a creature uses an action to pull the pole from the ground. The standard can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bead-of-exsanguination", + "fields": { + "name": "Bead of Exsanguination", + "desc": "This small, black bead measures 3/4 of an inch in diameter and weights an ounce. Typically, 1d4 + 1 beads of exsanguination are found together. When thrown, the bead absorbs hit points from creatures near its impact site, damaging them. A bead can store up to 50 hit points at a time. When found, a bead contains 2d10 stored hit points. You can use an action to throw the bead up to 60 feet. Each creature within a 20-foot radius of where the bead landed must make a DC 15 Constitution saving throw, taking 3d6 necrotic damage on a failed save, or half as much damage on a successful one. The bead stores hit points equal to the necrotic damage dealt. The bead turns from black to crimson the more hit points are stored in it. If the bead absorbs 50 hit points or more, it explodes and is destroyed. Each creature within a 20-foot radius of the bead when it explodes must make a DC 15 Dexterity saving throw, taking 6d6 necrotic damage on a failed save, or half as much damage on a successful one. If you are holding the bead, you can use a bonus action to determine if the bead is below or above half its maximum stored hit points. If you hold and study the bead over the course of 1 hour, which can be done during a short rest, you know exactly how many hit points are stored in the bead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bear-paws", + "fields": { + "name": "Bear Paws", + "desc": "These hand wraps are made of flexible beeswax that ooze sticky honey. While wearing these gloves, you have advantage on grapple checks. In addition, creatures grappled by you have disadvantage on any checks made to escape your grapple.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bed-of-spikes", + "fields": { + "name": "Bed of Spikes", + "desc": "This wide, wooden plank holds hundreds of two-inch long needle-like spikes. When you finish a long rest on the bed, you have resistance to piercing damage and advantage on Constitution saving throws to maintain your concentration on spells you cast for 8 hours or until you finish a short or long rest. Once used, the bed can't be used again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_belt-of-the-wilds", + "fields": { + "name": "Belt of the Wilds", + "desc": "This thin cord is made from animal sinew. While wearing the cord, you have advantage on Wisdom (Survival) checks to follow tracks left by beasts, giants, and humanoids. While wearing the belt, you can use a bonus action to speak the belt's command word. If you do, you leave tracks of the animal of your choice instead of your regular tracks. These tracks can be those of a Large or smaller beast with a CR of 1 or lower, such as a pony, rabbit, or lion. If you repeat the command word, you end the effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_berserkers-kilt-bear", + "fields": { + "name": "Berserker's Kilt (Bear)", + "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_berserkers-kilt-elk", + "fields": { + "name": "Berserker's Kilt (Elk)", + "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_berserkers-kilt-wolf", + "fields": { + "name": "Berserker's Kilt (Wolf)", + "desc": "This kilt is made from bear, elk, or wolf fur. While wearing this kilt, your Unarmored Defense increases by 1, and you gain additional benefits while raging, depending on the type of kilt you are wearing. Bear Fur (Very Rare). This kilt empowers your rage with the vigor of a bear. When you enter a rage, you gain 20 temporary hit points. These temporary hit points last until your rage ends. Elk Fur (Rare). This kilt empowers your rage with the nimble ferocity of an elk. While raging, if you move at least 30 feet straight toward a target and then hit it with a melee weapon attack on the same turn, the target takes an extra 1d6 damage of the weapon’s type. Wolf Fur (Uncommon). This kilt empowers your rage with the speed of a wolf. While raging, your walking speed increases by 10 feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_big-dipper", + "fields": { + "name": "Big Dipper", + "desc": "This wooden rod is topped with a ridged ball. The rod has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the rod's last charge, roll a d20. On a 1, the rod melts into a pool of nonmagical honey and is destroyed. Anytime you expend 1 or more charges for this rod's properties, the ridged ball flows with delicious, nonmagical honey for 1 minute.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_binding-oath", + "fields": { + "name": "Binding Oath", + "desc": "This lengthy scroll is the testimony of a pious individual's adherence to their faith. The author has emphatically rewritten these claims many times, and its two slim, metal rollers are wrapped in yards of parchment. When you attune to the item, you rewrite certain passages to align with your own religious views. You can use an action to throw the scroll at a Huge or smaller creature you can see within 30 feet of you. Make a ranged attack roll. On a hit, the scroll unfurls and wraps around the creature. The target is restrained until you take a bonus action to command the scroll to release the creature. If you command it to release the creature or if you miss with the attack, the scroll curls back into a rolled-up scroll. If the restrained target's alignment is the opposite of yours along the law/chaos or good/evil axis, you can use a bonus action to cause the writing to blaze with light, dealing 2d6 radiant damage to the target. A creature, including the restrained target, can use an action to make a DC 17 Strength check to tear apart the scroll. On a success, the scroll is destroyed. Such an attempt causes the writing to blaze with light, dealing 2d6 radiant damage to both the creature making the attempt and the restrained target, whether or not the attempt is successful. Alternatively, the restrained creature can use an action to make a DC 17 Dexterity check to slip free of the scroll. This action also triggers the damage effect, but it doesn't destroy the scroll. Once used, the scroll can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bituminous-orb", + "fields": { + "name": "Bituminous Orb", + "desc": "A tarlike substance leaks continually from this orb, which radiates a cloying darkness and emanates an unnatural chill. While attuned to the orb, you have darkvision out to a range of 60 feet. In addition, you have immunity to necrotic damage, and you have advantage on saving throws against spells and effects that deal radiant damage. This orb has 6 charges and regains 1d6 daily at dawn. You can expend 1 charge as an action to lob some of the orb's viscous darkness at a creature you can see within 60 feet of you. The target must succeed on a DC 15 Dexterity saving throw or be grappled (escape DC 15). Until this grapple ends, the creature is blinded and takes 2d8 necrotic damage at the start of each of its turns, and you can use a bonus action to move the grappled creature up to 20 feet in any direction. You can't move the creature more than 60 feet away from the orb. Alternatively, you can use an action to expend 2 charges and crush the grappled creature. The creature must make a DC 15 Constitution saving throw, taking 6d8 bludgeoning damage on a failed save, or half as much damage on a successful one. You can end the grapple at any time (no action required). The orb's power can grapple only one creature at a time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_black-and-white-daggers", + "fields": { + "name": "Black and White Daggers", + "desc": "These matched daggers are identical except for the stones set in their pommels. One pommel is chalcedony (opaque white), the other is obsidian (opaque black). You gain a +1 bonus to attack and damage rolls with both magic weapons. The bonus increases to +3 when you use the white dagger to attack a monstrosity, and it increases to +3 when you use the black dagger to attack an undead. When you hit a monstrosity or undead with both daggers in the same turn, that creature takes an extra 1d6 piercing damage from the second attack.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_black-dragon-oil", + "fields": { + "name": "Black Dragon Oil", + "desc": "The viscous green-black oil within this magical ceramic pot bubbles slightly. The pot's stone stopper is sealed with greasy, dark wax. The pot contains 5 ounces of pure black dragon essence, obtained by slowly boiling the dragon in its own acidic secretions. You can use an action to apply 1 ounce of the oil to a weapon or single piece of ammunition. The next attack made with that weapon or ammunition deals an extra 2d8 acid damage to the target. A creature that takes the acid damage must succeed on a DC 15 Constitution saving throw at the start of its next turn or be burned for an extra 2d8 acid damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_black-honey-buckle", + "fields": { + "name": "Black Honey Buckle", + "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_black-phial", + "fields": { + "name": "Black Phial", + "desc": "This black stone phial has a tightly fitting stopper and 3 charges. As an action, you can fill the phial with blood taken from a living, or recently deceased (dead no longer than 1 minute), humanoid and expend 1 charge. When you do so, the black phial transforms the blood into a potion of greater healing. A creature who drinks this potion must succeed on a DC 12 Constitution saving throw or be poisoned for 1 hour. The phial regains 1d3 expended charges daily at midnight. If you expend the phial's last charge, roll a d20: 1d20. On a 1, the phial crumbles into dust and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blackguards-dagger", + "fields": { + "name": "Blackguard's Dagger", + "desc": "You have advantage on attack rolls made with this weapon against a target if another enemy of the target is within 5 feet of it, and it has no allies within 5 feet of it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blackguards-handaxe", + "fields": { + "name": "Blackguard's Handaxe", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you draw this weapon, you can use a bonus action to cast the thaumaturgy spell from it. You can have only one of the spell's effects active at a time when you cast it in this way.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blackguards-shortsword", + "fields": { + "name": "Blackguard's Shortsword", + "desc": "You have advantage on attack rolls made with this weapon against a target if another enemy of the target is within 5 feet of it, and it has no allies within 5 feet of it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blacktooth", + "fields": { + "name": "Blacktooth", + "desc": "This black ivory, rune-carved wand has 7 charges. It regains 1d6 + 1 expended charges daily at dawn. While holding it, you can use an action to expend 1 or more of its charges to cast the guiding bolt spell from it, using an attack bonus of +7. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blade-of-petals", + "fields": { + "name": "Blade of Petals", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. This brightly-colored shortsword is kept in a wooden scabbard with eternally blooming flowers. The blade is made of dull green steel, and its pommel is fashioned from hard rosewood. As a bonus action, you can conjure a flowery mist which fills a 20-foot area around you with pleasant-smelling perfume. The scent dissipates after 1 minute. A creature damaged by the blade must succeed on a DC 15 Charisma saving throw or be charmed by you until the end of its next turn. A creature can't be charmed this way more than once every 24 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blade-of-the-dervish", + "fields": { + "name": "Blade of the Dervish", + "desc": "This magic scimitar is empowered by your movements. For every 10 feet you move before making an attack, you gain a +1 bonus to the attack and damage rolls of that attack, and the scimitar deals an extra 1d6 slashing damage if the attack hits (maximum of +3 and 3d6). In addition, if you use the Dash action and move within 5 feet of a creature, you can attack that creature as a bonus action. On a hit, the target takes an extra 2d6 slashing damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blade-of-the-temple-guardian", + "fields": { + "name": "Blade of the Temple Guardian", + "desc": "This simple but elegant shortsword is a magic weapon. When you are wielding it and use the Flurry of Blows class feature, you can make your bonus attacks with the sword rather than unarmed strikes. If you deal damage to a creature with this weapon and reduce it to 0 hit points, you absorb some of its energy, regaining 1 expended ki point.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blasphemous-writ", + "fields": { + "name": "Blasphemous Writ", + "desc": "The Infernal runes inscribed upon this vellum scroll radiate a faint, crimson glow. When you use this spell scroll of command, the save DC is 15 instead of 13, and you can also affect targets that are undead or that don't understand your language.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blessed-paupers-purse", + "fields": { + "name": "Blessed Pauper's Purse", + "desc": "This worn cloth purse appears empty, even when opened, yet seems to always have enough copper pieces in it to make any purchase of urgent necessity when you dig inside. The purse produces enough copper pieces to provide for a poor lifestyle. In addition, if anyone asks you for charity, you can always open the purse to find 1 or 2 cp available to give away. These coins appear only if you truly intend to gift them to one who asks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blinding-lantern", + "fields": { + "name": "Blinding Lantern", + "desc": "This ornate brass lantern comes fitted with heavily inscribed plates shielding the cut crystal lens. With a flick of a lever, as an action, the plates rise and unleash a dazzling array of lights at a single target within 30 feet. You must use two hands to direct the lights precisely into the eyes of a foe. The target must succeed on a DC 11 Wisdom saving throw or be blinded until the end of its next turn. A creature blinded by the lantern is immune to its effects for 1 minute afterward. This property can't be used in a brightly lit area. By opening the shutter on the opposite side, the device functions as a normal bullseye lantern, yet illuminates magically, requiring no fuel and giving off no heat.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blood-mark", + "fields": { + "name": "Blood Mark", + "desc": "Used as a form of currency between undead lords and the humanoids of their lands, this coin resembles a gold ring with a single hole in the center. It holds 1 charge, visible as a red glow in the center of the coin. While holding the coin, you can use an action to expend 1 charge and regain 1d3 hit points. At the same time, the humanoid who pledged their blood to the coin takes necrotic damage and reduces their hit point maximum by an equal amount. This reduction lasts until the creature finishes a long rest. It dies if this reduces its hit point maximum to 0. You can expend the charges in up to 5 blood marks as part of the same action. To replenish an expended charge in a blood mark, a humanoid must pledge a pint of their blood in a 10-minute ritual that involves letting a drop of their blood fall through the center of the coin. The drop disappears in the process and the center fills with a red glow. There is no limit to how much blood a humanoid may pledge, but each coin can hold only 1 charge. To pledge more, the humanoid must perform the ritual on another blood mark. Any person foolish enough to pledge more than a single blood coin might find the coins all redeemed at once, since such redemptions often happen at great blood feasts held by vampires and other undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blood-pearl", + "fields": { + "name": "Blood Pearl", + "desc": "This crimson pearl feels slick to the touch and contains a mote of blood imbued with malign purpose. As an action, you can break the pearl, destroying it, and conjure a Blood Elemental (see Creature Codex) for 1 hour. The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blood-soaked-hide", + "fields": { + "name": "Blood-Soaked Hide", + "desc": "A creature that starts its turn in your space must succeed on a DC 15 Constitution saving throw or lose 3d6 hit points due to blood loss, and you regain a number of hit points equal to half the number of hit points the creature lost. Constructs and undead who aren't vampires are immune to this effect. Once used, you can't use this property of the armor again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodbow", + "fields": { + "name": "Bloodbow", + "desc": "This longbow is carved of a light, sturdy wood such as hickory or yew, and it is almost always stained a deep maroon hue, lacquered and aged under layers of sundried blood. The bow is sometimes decorated with reptilian teeth, centaur tails, or other battle trophies. The bow is designed to harm the particular type of creature whose blood most recently soaked the weapon. When you make a ranged attack roll with this magic weapon against a creature of that type, you have a +1 bonus to the attack and damage rolls. If the attack hits, the target must succeed on a DC 15 Wisdom saving throw or become enraged until the end of your next turn. While enraged, the target suffers a random short-term madness.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blooddrinker-spear", + "fields": { + "name": "Blooddrinker Spear", + "desc": "Prized by gnolls, the upper haft of this spear is decorated with tiny animal skulls, feathers, and other adornments. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit a creature with this spear, you mark that creature for 1 hour. Until the mark ends, you deal an extra 1d6 damage to the target whenever you hit it with the spear, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find the target. If the target drops to 0 hit points, the mark ends. This property can't be used on a different creature until you spend a short rest cleaning the previous target's blood from the spear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-battleaxe", + "fields": { + "name": "Bloodfuel Battleaxe", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-blowgun", + "fields": { + "name": "Bloodfuel Blowgun", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-crossbow-hand", + "fields": { + "name": "Bloodfuel Crossbow Hand", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-crossbow-heavy", + "fields": { + "name": "Bloodfuel Crossbow Heavy", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-crossbow-light", + "fields": { + "name": "Bloodfuel Crossbow Light", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-dagger", + "fields": { + "name": "Bloodfuel Dagger", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-dart", + "fields": { + "name": "Bloodfuel Dart", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-glaive", + "fields": { + "name": "Bloodfuel Glaive", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-greataxe", + "fields": { + "name": "Bloodfuel Greataxe", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-greatsword", + "fields": { + "name": "Bloodfuel Greatsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-halberd", + "fields": { + "name": "Bloodfuel Halberd", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-handaxe", + "fields": { + "name": "Bloodfuel Handaxe", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-javelin", + "fields": { + "name": "Bloodfuel Javelin", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-lance", + "fields": { + "name": "Bloodfuel Lance", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-longbow", + "fields": { + "name": "Bloodfuel Longbow", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-longsword", + "fields": { + "name": "Bloodfuel Longsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-morningstar", + "fields": { + "name": "Bloodfuel Morningstar", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-pike", + "fields": { + "name": "Bloodfuel Pike", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-rapier", + "fields": { + "name": "Bloodfuel Rapier", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-scimitar", + "fields": { + "name": "Bloodfuel Scimitar", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-shortbow", + "fields": { + "name": "Bloodfuel Shortbow", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-shortsword", + "fields": { + "name": "Bloodfuel Shortsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-sickle", + "fields": { + "name": "Bloodfuel Sickle", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-spear", + "fields": { + "name": "Bloodfuel Spear", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-trident", + "fields": { + "name": "Bloodfuel Trident", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-warpick", + "fields": { + "name": "Bloodfuel Warpick", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodfuel-whip", + "fields": { + "name": "Bloodfuel Whip", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The first time you attack with the weapon on each of your turns, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target takes extra necrotic damage equal to the total. You can't use this feature of the weapon if you don't have blood. Hit Dice spent using this weapon's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodlink-potion", + "fields": { + "name": "Bloodlink Potion", + "desc": "When you and another willing creature each drink at least half this potion, your life energies are linked for 1 hour. When you or the creature who drank the potion with you take damage while your life energies are linked, the total damage is divided equally between you. If the damage is an odd number, roll randomly to assign the extra point of damage. The effect is halted while you and the other creature are separated by more than 60 feet. The effect ends if either of you drop to 0 hit points. This potion's red liquid is viscous and has a metallic taste.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodpearl-bracelet-gold", + "fields": { + "name": "Bloodpearl Bracelet (Gold)", + "desc": "This silver or gold bracelet features three red pearls. You can use an action to remove a pearl and throw it up to 20 feet. When the pearl lands, it transforms into an ooze you determine by rolling a d6 and consulting the table that corresponds to the bracelet's color. The ooze vanishes at the next dawn or when it is reduced to 0 hit points. When you throw a pearl, your hit point maximum is reduced by the amount listed in the Blood Price column. This reduction can't be removed with the greater restoration spell or similar magic and lasts until the ooze vanishes or is reduced to 0 hit points. The ooze is friendly to you and your companions and acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the ooze acts in a fashion appropriate to its nature. Once all three pearls have been used, the bracelet can't be used again until the next dawn when the pearls regrow. | d6 | Ooze | CR | Blood Price |\n| --- | --------------------------- | --- | ---------------- |\n| 1 | Dipsa | 1/4 | 5 HP |\n| 2 | Treacle | 1/4 | 5 HP |\n| 3 | Gray Ooze | 1/2 | 5 HP |\n| 4 | Alchemy Apprentice Ooze | 1 | 7 ( 2d6) |\n| 5 | Suppurating Ooze | 1 | 7 ( 2d6) |\n| 6 | Gelatinous Cube | 2 | 10 ( 3d6) | | d6 | Ooze | CR | Blood Price |\n| --- | ----------------------- | --- | ---------------- |\n| 1 | Philosopher's Ghost | 4 | 17 ( 5d6) |\n| 2 | Ink Guardian Ooze | 4 | 17 ( 5d6) |\n| 3 | Black Pudding | 4 | 17 ( 5d6) |\n| 4 | Corrupting Ooze | 5 | 21 ( 6d6) |\n| 5 | Blood Ooze | 6 | 24 ( 7d6) |\n| 6 | Ruby ooze | 6 | 24 ( 7d6) |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodpearl-bracelet-silver", + "fields": { + "name": "Bloodpearl Bracelet (Silver)", + "desc": "This silver or gold bracelet features three red pearls. You can use an action to remove a pearl and throw it up to 20 feet. When the pearl lands, it transforms into an ooze you determine by rolling a d6 and consulting the table that corresponds to the bracelet's color. The ooze vanishes at the next dawn or when it is reduced to 0 hit points. When you throw a pearl, your hit point maximum is reduced by the amount listed in the Blood Price column. This reduction can't be removed with the greater restoration spell or similar magic and lasts until the ooze vanishes or is reduced to 0 hit points. The ooze is friendly to you and your companions and acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the ooze acts in a fashion appropriate to its nature. Once all three pearls have been used, the bracelet can't be used again until the next dawn when the pearls regrow. | d6 | Ooze | CR | Blood Price |\n| --- | --------------------------- | --- | ---------------- |\n| 1 | Dipsa | 1/4 | 5 HP |\n| 2 | Treacle | 1/4 | 5 HP |\n| 3 | Gray Ooze | 1/2 | 5 HP |\n| 4 | Alchemy Apprentice Ooze | 1 | 7 ( 2d6) |\n| 5 | Suppurating Ooze | 1 | 7 ( 2d6) |\n| 6 | Gelatinous Cube | 2 | 10 ( 3d6) | | d6 | Ooze | CR | Blood Price |\n| --- | ----------------------- | --- | ---------------- |\n| 1 | Philosopher's Ghost | 4 | 17 ( 5d6) |\n| 2 | Ink Guardian Ooze | 4 | 17 ( 5d6) |\n| 3 | Black Pudding | 4 | 17 ( 5d6) |\n| 4 | Corrupting Ooze | 5 | 21 ( 6d6) |\n| 5 | Blood Ooze | 6 | 24 ( 7d6) |\n| 6 | Ruby ooze | 6 | 24 ( 7d6) |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodprice-breastplate", + "fields": { + "name": "Bloodprice Breastplate", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodprice-chain-mail", + "fields": { + "name": "Bloodprice Chain-Mail", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodprice-chain-shirt", + "fields": { + "name": "Bloodprice Chain-Shirt", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodprice-half-plate", + "fields": { + "name": "Bloodprice Half-Plate", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodprice-hide", + "fields": { + "name": "Bloodprice Hide", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodprice-leather", + "fields": { + "name": "Bloodprice Leather", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodprice-padded", + "fields": { + "name": "Bloodprice Padded", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodprice-plate", + "fields": { + "name": "Bloodprice Plate", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodprice-ring-mail", + "fields": { + "name": "Bloodprice Ring-Mail", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodprice-scale-mail", + "fields": { + "name": "Bloodprice Scale-Mail", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodprice-splint", + "fields": { + "name": "Bloodprice Splint", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodprice-studded-leather", + "fields": { + "name": "Bloodprice Studded-Leather", + "desc": "When a melee attack would hit you while you are wearing this armor, you can use your reaction to increase your Armor Class by up to 10 against that attack. If you do so, you lose hit points equal to 5 times the bonus you want to add to your AC. For example, if you want to increase your AC by 2 against that attack, you lose 10 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-battleaxe", + "fields": { + "name": "Bloodthirsty Battleaxe", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-blowgun", + "fields": { + "name": "Bloodthirsty Blowgun", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-crossbow-hand", + "fields": { + "name": "Bloodthirsty Crossbow Hand", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-crossbow-heavy", + "fields": { + "name": "Bloodthirsty Crossbow Heavy", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-crossbow-light", + "fields": { + "name": "Bloodthirsty Crossbow Light", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-dagger", + "fields": { + "name": "Bloodthirsty Dagger", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-dart", + "fields": { + "name": "Bloodthirsty Dart", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-glaive", + "fields": { + "name": "Bloodthirsty Glaive", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-greataxe", + "fields": { + "name": "Bloodthirsty Greataxe", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-greatsword", + "fields": { + "name": "Bloodthirsty Greatsword", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-halberd", + "fields": { + "name": "Bloodthirsty Halberd", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-handaxe", + "fields": { + "name": "Bloodthirsty Handaxe", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-javelin", + "fields": { + "name": "Bloodthirsty Javelin", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-lance", + "fields": { + "name": "Bloodthirsty Lance", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-longbow", + "fields": { + "name": "Bloodthirsty Longbow", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-longsword", + "fields": { + "name": "Bloodthirsty Longsword", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-morningstar", + "fields": { + "name": "Bloodthirsty Morningstar", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-pike", + "fields": { + "name": "Bloodthirsty Pike", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-rapier", + "fields": { + "name": "Bloodthirsty Rapier", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-scimitar", + "fields": { + "name": "Bloodthirsty Scimitar", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-shortbow", + "fields": { + "name": "Bloodthirsty Shortbow", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-shortsword", + "fields": { + "name": "Bloodthirsty Shortsword", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-sickle", + "fields": { + "name": "Bloodthirsty Sickle", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-spear", + "fields": { + "name": "Bloodthirsty Spear", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-trident", + "fields": { + "name": "Bloodthirsty Trident", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-warpick", + "fields": { + "name": "Bloodthirsty Warpick", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodthirsty-whip", + "fields": { + "name": "Bloodthirsty Whip", + "desc": "This magic weapon bears long, branching channels inscribed into its blade or head, and it gives off a coppery scent. When you damage a creature that has blood with this weapon, it loses an additional 2d6 hit points from blood loss.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bloodwhisper-cauldron", + "fields": { + "name": "Bloodwhisper Cauldron", + "desc": "This ancient, oxidized cauldron sits on three stubby legs and has images of sacrifice and ritual cast into its iron sides. When filled with concoctions that contain blood, the bubbling cauldron seems to whisper secrets of ancient power to those bold enough to listen. While filled with blood, the cauldron has the following properties. Once filled, the cauldron can't be refilled again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bludgeon-of-nightmares", + "fields": { + "name": "Bludgeon of Nightmares", + "desc": "You gain a +2 bonus to attack and damage rolls made with this weapon. The weapon appears to be a mace of disruption, and an identify spell reveals it to be such. The first time you use this weapon to kill a creature that has an Intelligence score of 5 or higher, you begin having nightmares and disturbing visions that disrupt your rest. Each time you complete a long rest, you must make a Wisdom saving throw. The DC equals 10 + the total number of creatures with Intelligence 5 or higher that you've reduced to 0 hit points with this weapon. On a failure, you gain no benefits from that long rest, and you gain one level of exhaustion.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blue-rose", + "fields": { + "name": "Blue Rose", + "desc": "The petals of this cerulean flower can be prepared into a compote and consumed. A single flower can make 3 doses. When you consume a dose, your Intelligence, Wisdom, and Charisma scores are reduced by 1 each. This reduction lasts until you finish a long rest. You can consume up to three doses as part of casting a spell, and you can choose to affect your spell with one of the following options for each dose you consumed: - If the spell is of the abjuration school, increase the save DC by 2.\n- If the spell has more powerful effects when cast at a higher level, treat the spell's effects as if you had cast the spell at one slot level higher than the spell slot you used.\n- The spell is affected by one of the following metamagic options, even if you aren't a sorcerer: heightened, quickened, or subtle. A spell can't be affected by the same option more than once, though you can affect one spell with up to three different options. If you consume one or more doses without casting a spell, you can choose to instead affect a spell you cast before you finish a long rest. In addition, consuming blue rose gives you some protection against spells. When a spellcaster you can see casts a spell, you can use your reaction to cause one of the following:\n- You have advantage on the saving throw against the spell if it is a spell of the abjuration school.\n- If the spell is counterspell or dispel magic, the DC increases by 2 to interrupt your spellcasting or to end a magic effect on you. You can use this reaction a number of times equal to the number of doses you consumed. At the end of each long rest, you must make a DC 13 Constitution saving throw. On a failed save, your Hit Dice maximum is reduced by 25 percent. This reduction affects only the number of Hit Dice you can use to regain hit points during a short rest; it doesn't reduce your hit point maximum. This reduction lasts until you recover from the addiction. If you have no remaining Hit Dice to lose, you suffer one level of exhaustion, and your Hit Dice are returned to 75 percent of your maximum Hit Dice. The process then repeats until you die from exhaustion or you recover from the addiction. On a successful save, your exhaustion level decreases by one level. If a successful saving throw reduces your level of exhaustion below 1, you recover from the addiction. A greater restoration spell or similar magic ends the addiction and its effects. Consuming at least one dose of blue rose again halts the effects of the addiction for 2 days, at which point you can consume another dose of blue rose to halt it again or the effects of the addiction continue as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_blue-willow-cloak", + "fields": { + "name": "Blue Willow Cloak", + "desc": "This light cloak of fey silk is waterproof. While wearing this cloak in the rain, you can use your action to pull up the hood and become invisible for up to 1 hour. The effect ends early if you attack or cast a spell, if you use an action to pull down the hood, or if the rain stops. The cloak can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bone-skeleton-key", + "fields": { + "name": "Bone Skeleton Key", + "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bone-whip", + "fields": { + "name": "Bone Whip", + "desc": "This whip is constructed of humanoid vertebrae with their edges magically sharpened and pointed. The bones are joined together into a coiled line by strands of steel wire. The handle is half a femur wrapped in soft leather of tanned humanoid skin. You gain a +1 bonus to attack and damage rolls with this weapon. You can use an action to cause fiendish energy to coat the whip. For 1 minute, you gain 5 temporary hit points the first time you hit a creature on each turn. In addition, when you deal damage to a creature with this weapon, the creature must succeed on a DC 17 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage dealt. This reduction lasts until the creature finishes a long rest. Once used, this property of the whip can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bonebreaker-mace", + "fields": { + "name": "Bonebreaker Mace", + "desc": "You gain a +1 bonus on attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use it to attack an undead creature. Often given to the grim enforcers of great necropolises, these weapons can reduce the walking dead to splinters with a single strike. When you hit an undead creature with this magic weapon, treat that creature as if it is vulnerable to bludgeoning damage. If it is already vulnerable to bludgeoning damage, your attack deals an additional 1d6 radiant damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_book-of-ebon-tides", + "fields": { + "name": "Book of Ebon Tides", + "desc": "This strange, twilight-hued tome was written on pages of pure shadow weave, bound in traditional birch board covers wrapped with shadow goblin hide, and imbued with the memories of forests on the Plane of Shadow. Its covers often reflect light as if it were resting in a forest grove, and some owners swear that a goblin face appears on them now and again. The sturdy lock on one side opens only for wizards, elves, and Shadow Fey (see Tome of Beasts). The book has 15 charges, and it regains 2d6 + 3 expended charges daily in the twilight before dawn. If you expend the last charge, roll a 1d20. On a 1, the book retains its Ebon Tides and Shadow Lore properties but loses its Spells property. When the magic ritual completes, make an Intelligence (Arcana) check and consult the Terrain Changes table for the appropriate DCs. You can change the terrain in any one way listed at your result or lower. For example, if your result was 17, you could turn a small forest up to 30 feet across into a grassland, create a grove of trees up to 240 feet across, create a 6-foot-wide flowing stream, overgrow 1,500 feet of an existing road, or other similar option. Only natural terrain you can see can be affected; built structures, such as homes or castles, remain untouched, though roads and trails can be overgrown or hidden. On a failure, the terrain is unchanged. On a 1, an Overshadow (see Tome of Beasts 2) also appears and attacks you. On a 20, you can choose two options. Deities, Fey Lords and Ladies (see Tome of Beasts), archdevils, demon lords, and other powerful rulers in the Plane of Shadow can prevent these terrain modifications from happening in their presence or anywhere within their respective domains. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness, illusion, or shadows, such as invisibility or major image. | DC | Effect |\n| --- | --------------------------------------------------------------------------------------------------- |\n| 8 | Obscuring a path and removing all signs of passage (30 feet per point over 7) |\n| 10 | Creating a grove of trees (30 feet across per point over 9) |\n| 11 | Creating or drying up a lake or pond (up to 10 feet across per point over 10) |\n| 12 | Creating a flowing stream (1 foot wide per point over 11) |\n| 13 | Overgrowing an existing road with brush or trees (300 feet per point over 12) |\n| 14 | Shifting a river to a new course (300 feet per point over 13) |\n| 15 | Moving a forest (300 feet per point over 14) |\n| 16 | Creating a small hill, riverbank, or cliff (10 feet tall per point over 15) |\n| 17 | Turning a small forest into grassland or clearing, or vice versa (30 feet across per point over 16) |\n| 18 | Creating a new river (10 feet wide per point over 17) |\n| 19 | Turning a large forest into grassland, or vice versa (300 feet across per point over 19) |\n| 20 | Creating a new mountain (1,000 feet high per point over 19) |\n| 21 | Drying up an existing river (reducing width by 10 feet per point over 20) |\n| 22 | Shrinking an existing hill or mountain (reducing 1,000 feet per point over 21) | Written by an elvish princess at the Court of Silver Words, this volume encodes her understanding and mastery of shadow. Whimsical illusions suffuse every page, animating its illuminated capital letters and ornamental figures. The book is a famous work among the sable elves of that plane, and it opens to the touch of any elfmarked or sable elf character.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_book-of-eibon", + "fields": { + "name": "Book of Eibon", + "desc": "This fragmentary black book is reputed to descend from the realms of Hyperborea. It contains puzzling guidelines for frightful necromantic rituals and maddening interdimensional travel. The book holds the following spells: semblance of dread*, ectoplasm*, animate dead, speak with dead, emanation of Yoth*, green decay*, yellow sign*, eldritch communion*, create undead, gate, harm, astral projection, and Void rift*. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, the book can contain other spells similarly related to necromancy, madness, or interdimensional travel. If you are attuned to this book, you can use it as a spellbook and as an arcane focus. In addition, while holding the book, you can use a bonus action to cast a necromancy spell that is written in this tome without expending a spell slot or using any verbal or somatic components. Once used, this property of the book can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_book-shroud", + "fields": { + "name": "Book Shroud", + "desc": "When not bound to a book, this red leather book cover is embossed with images of eyes on every inch of its surface. When you wrap this cover around a tome, it shifts the book's appearance to a plain red cover with a title of your choosing and blank pages on which you can write. When viewing the wrapped book, other creatures see the plain red version with any contents you've written. A creature succeeding on a DC 15 Wisdom (Perception) check sees the real book and can remove the shroud.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bookkeeper-inkpot", + "fields": { + "name": "Bookkeeper Inkpot", + "desc": "This glass vessel looks like an ordinary inkpot. A quill fashioned from an ostrich feather accompanies the inkpot. You can use an action to speak the inkpot's command word, targeting a Bookkeeper (see Creature Codex) that you can see within 10 feet of you. An unwilling bookkeeper must succeed on a DC 13 Charisma saving throw or be transferred to the inkpot, making you the bookkeeper's new “creator.” While the bookkeeper is contained within the inkpot, it suffers no harm due to being away from its bound book, but it can't use any of its actions or traits that apply to it being in a bound book. Dipping the quill in the inkpot and writing in a book binds the bookkeeper to the new book. If the inkpot is found as treasure, there is a 50 percent chance it contains a bookkeeper. An identify spell reveals if a bookkeeper is inside the inkpot before using the inkpot's ink.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bookmark-of-eldritch-insight", + "fields": { + "name": "Bookmark of Eldritch Insight", + "desc": "This cloth bookmark is inscribed with blurred runes that are hard to decipher. If you use this bookmark while researching ancient evils (such as arch-devils or demon lords) or otherworldly mysteries (such as the Void or the Great Old Ones) during a long rest, the bookmark crumbles to dust and grants you its knowledge. You double your proficiency bonus on Arcana, History, and Religion checks to recall lore about the subject of your research for the next 24 hours. If you don't have proficiency in these skills, you instead gain proficiency in them for the next 24 hours, but you are proficient only when recalling information about the subject of your research.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_boots-of-pouncing", + "fields": { + "name": "Boots of Pouncing", + "desc": "These soft leather boots have a collar made of Albino Death Weasel fur (see Creature Codex). While you wear these boots, your walking speed becomes 40 feet, unless your walking speed is higher. Your speed is still reduced if you are encumbered or wearing heavy armor. If you move at least 20 feet straight toward a creature and hit it with a melee weapon attack on the same turn, that target must succeed on a DC 13 Strength saving throw or be knocked prone. If the target is prone, you can make one melee weapon attack against it as a bonus action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_boots-of-quaking", + "fields": { + "name": "Boots of Quaking", + "desc": "While wearing these steel-toed boots, the earth itself shakes when you walk, causing harmless, but unsettling, tremors. If you move at least 15 feet in a single turn, all creatures within 10 feet of you at any point during your movement must make a DC 16 Strength saving throw or take 1d6 force damage and fall prone. In addition, while wearing these boots, you can cast earthquake, requiring no concentration, by speaking a command word and jumping on a point on the ground. The spell is centered on that point. Once you cast earthquake in this way, you can't do so again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_boots-of-solid-footing", + "fields": { + "name": "Boots of Solid Footing", + "desc": "A thick, rubbery sole covers the bottoms and sides of these stout leather boots. They are useful for maneuvering in cluttered alleyways, slick sewers, and the occasional patch of ice or gravel. While you wear these boots, you can use a bonus action to speak the command word. If you do, nonmagical difficult terrain doesn't cost you extra movement when you walk across it wearing these boots. If you speak the command word again as a bonus action, you end the effect. When the boots' property has been used for a total of 1 minute, the magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_boots-of-the-grandmother", + "fields": { + "name": "Boots of the Grandmother", + "desc": "While wearing these boots, you have proficiency in the Stealth skill if you don't already have it, and you double your proficiency bonus on Dexterity (Stealth) checks. As an action, you can drip three drops of fresh blood onto the boots to ease your passage through the world. For 1d6 hours, you and your allies within 30 feet of you ignore difficult terrain. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_boots-of-the-swift-striker", + "fields": { + "name": "Boots of the Swift Striker", + "desc": "While you wear these boots, your walking speed increases by 10 feet. In addition, when you take the Dash action while wearing these boots, you can make a single weapon attack at the end of your movement. You can't continue moving after making this attack.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bottled-boat", + "fields": { + "name": "Bottled Boat", + "desc": "This clear glass bottle contains a tiny replica of a wooden rowboat down to the smallest detail, including two stout oars, a miniature coil of hemp rope, a fishing net, and a small cask. You can use an action to break the bottle, destroying the bottle and releasing its contents. The rowboat and all of the items emerge as full-sized, normal, and permanent items of their type, which includes 50 feet of hempen rope, a cask containing 20 gallons of fresh water, two oars, and a 12-foot-long rowboat.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bountiful-cauldron", + "fields": { + "name": "Bountiful Cauldron", + "desc": "If this small, copper cauldron is filled with water and a half pound of meat, vegetables, or other foodstuffs then placed over a fire, it produces a simple, but hearty stew that provides one creature with enough nourishment to sustain it for one day. As long as the food is kept within the cauldron with the lid on, the food remains fresh and edible for up to 24 hours, though it grows cold unless reheated.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_box-of-secrets", + "fields": { + "name": "Box of Secrets", + "desc": "This well-made, cubical box appears to be a normal container that can hold as much as a normal chest. However, each side of the chest is a lid that can be opened on cunningly concealed hinges. A successful DC 15 Wisdom (Perception) check notices that the sides can be opened. When you use an action to turn the box so a new side is facing up, and speak the command word before opening the lid, the current contents of the chest slip into an interdimensional space, leaving it empty once more. You can use an action to fill the box again, then turn it over to a new side and open it, again sending the contents to the interdimensional space. This can be done up to six times, once for each side of the box. To gain access to a particular batch of contents, the correct side must be facing up, and you must use an action to speak the command word as you open the lid on that side. A box of secrets is often crafted with specific means of telling the sides apart, such as unique carvings on each side, or having each side painted a different color. If any side of the box is destroyed completely, the contents that were stored through that side are lost. Likewise, if the entire box is destroyed, the contents are lost forever.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bracelet-of-the-fire-tender", + "fields": { + "name": "Bracelet of the Fire Tender", + "desc": "This bracelet is made of thirteen small, roasted pinecones lashed together with lengths of dried sinew. It smells of pine and woodsmoke. It is uncomfortable to wear over bare skin. While wearing this bracelet, you don't have disadvantage on Wisdom (Perception) checks that rely on sight when looking in areas lightly obscured by nonmagical smoke or fog.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_braid-whip-clasp", + "fields": { + "name": "Braid Whip Clasp", + "desc": "This intricately carved ivory clasp can be wrapped around or woven into braided hair 3 feet or longer. While the clasp is attached to your braided hair, you can speak its command word as a bonus action and transform your braid into a dangerous whip. If you speak the command word again, you end the effect. You gain a +1 bonus to attack and damage rolls made with this magic whip. When the clasp's property has been used for a total of 10 minutes, you can't use it to transform your braid into a whip again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_brain-juice", + "fields": { + "name": "Brain Juice", + "desc": "This foul-smelling, murky, purple-gray liquid is created from the liquefied brains of spellcasting creatures, such as aboleths. Anyone consuming this repulsive mixture must make a DC 15 Intelligence saving throw. On a successful save, the drinker is infused with magical power and regains 1d6 + 4 expended spell slots. On a failed save, the drinker is afflicted with short-term madness for 1 day. If a creature consumes multiple doses of brain juice and fails three consecutive Intelligence saving throws, it is afflicted with long-term madness permanently and automatically fails all further saving throws brought about by drinking brain juice.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_brass-clockwork-staff", + "fields": { + "name": "Brass Clockwork Staff", + "desc": "This curved staff is made of coiled brass and glass wire. You can use an action to speak one of three command words and throw the staff on the ground within 10 feet of you. The staff transforms into one of three wireframe creatures, depending on the command word: a unicorn, a hound, or a swarm of tiny beetles. The wireframe creature or swarm is under your control and acts on its own initiative count. On your turn, you can mentally command the wireframe creature or swarm if it is within 60 feet of you and you aren't incapacitated. You decide what action the creature takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location. The wireframe unicorn lasts for up to 1 hour, uses the statistics of a warhorse, and can be used as a mount. The wireframe hound lasts for up to 5 minutes, uses the statistics of a dire wolf, and has advantage to track any creature you damaged within the past hour. The wireframe beetle swarm lasts for up to 1 minute, uses the statistics of a swarm of beetles, and can destroy nonmagical objects that aren't being worn or carried and that aren't made of stone or metal (destruction happens at a rate of 1 pound of material per round, up to a maximum of 10 pounds). At the end of the duration, the wireframe creature or swarm reverts to its staff form. It reverts to its staff form early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. If it reverts to its staff form early by being reduced to 0 hit points, the staff becomes inert and unusable until the third dawn after the creature was killed. Otherwise, the wireframe creature or swarm has all of its hit points when you transform the staff into the creature again. When a wireframe creature or swarm becomes the staff again, this property of the staff can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_brass-snake-ball", + "fields": { + "name": "Brass Snake Ball", + "desc": "Most commonly used by assassins to strangle sleeping victims, this heavy, brass ball is 6 inches across and weighs approximately 15 pounds. It has the image of a coiled snake embossed around it. You can use an action to command the orb to uncoil into a brass snake approximately 6 feet long and 3 inches thick. You can direct it by telepathic command to attack any creature within your line of sight. Use the statistics for the constrictor snake, but use Armor Class 14 and increase the challenge rating to 1/2 (100 XP). The snake can stay animate for up to 5 minutes or until reduced to 0 hit points. Being reduced to 0 hit points causes the snake to revert to orb form and become inert for 1 week. If damaged but not reduced to 0 hit points, the snake has full hit points when summoned again. Once you have used the orb to become a snake, it can't be used again until the next sunset.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_brawlers-leather", + "fields": { + "name": "Brawler's Leather", + "desc": "These rawhide straps have lines of crimson runes running along their length. They require 10 minutes of bathing them in salt water before carefully wrapping them around your forearms. Once fitted, you gain a +1 bonus to attack and damage rolls made with unarmed strikes. The straps become brittle with use. After you have dealt damage with unarmed strike attacks 10 times, the straps crumble away.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_brawn-armor", + "fields": { + "name": "Brawn Armor", + "desc": "This armor was crafted from the hide of an ancient grizzly bear. While wearing it, you gain a +1 bonus to AC, and you have advantage on grapple checks. The armor has 3 charges. You can use a bonus action to expend 1 charge to deal your unarmed strike damage to a creature you are grappling. The armor regains all expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_brazen-band", + "fields": { + "name": "Brazen Band", + "desc": "Made by kobold clockwork mages, this brass clockwork ring is formed to look like a coiled dragon. When you speak or whisper the Draconic command word etched on the inside of the ring, the brass dragon uncoils and attempts to pick any lock within 10 feet of you. The dragon picks the lock using your proficiency bonus but with advantage. It is treated as having thieves' tools when attempting to pick locks. It uses your Dexterity (Stealth) bonus for purposes of not being spotted but with advantage due to its extremely small size. Whether successful or not, once you have used the ring to attempt to pick a lock, it can't be used again until the next sunset.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_brazen-bulwark", + "fields": { + "name": "Brazen Bulwark", + "desc": "This rectangular shield is plated with polished brass and resembles a crenelated tower. While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_breaker-lance", + "fields": { + "name": "Breaker Lance", + "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. When you attack an object or structure with this magic lance and hit, maximize your weapon damage dice against the target. The lance has 3 charges. As part of an attack action with the lance, you can expend a charge while striking a barrier created by a spell, such as a wall of fire or wall of force, or an entryway protected by the arcane lock spell. You must make a Strength check against a DC equal to 10 + the spell's level. On a successful check, the spell ends. The lance regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_breastplate-of-warding-1", + "fields": { + "name": "Breastplate of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_breastplate-of-warding-2", + "fields": { + "name": "Breastplate of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_breastplate-of-warding-3", + "fields": { + "name": "Breastplate of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_breathing-reed", + "fields": { + "name": "Breathing Reed", + "desc": "This tiny river reed segment is cool to the touch. If you chew the reed while underwater, it provides you with enough air to breathe for up to 10 minutes. At the end of the duration, the reed loses its magic and can be harmlessly swallowed or spit out.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_briarthorn-bracers", + "fields": { + "name": "Briarthorn Bracers", + "desc": "These leather bracers are inscribed with Elvish runes. While wearing these bracers, you gain a +1 bonus to AC if you are using no shield. In addition, while in a forest, nonmagical difficult terrain costs you no extra movement.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_broken-fang-talisman", + "fields": { + "name": "Broken Fang Talisman", + "desc": "This talisman is a piece of burnished copper, shaped into a curved fang with a large crack through the middle. While wearing the talisman, you can use an action to cast the encrypt / decrypt (see Deep Magic for 5th Edition) spell. The talisman can't be used this way again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_broom-of-sweeping", + "fields": { + "name": "Broom of Sweeping", + "desc": "You can use an action to speak the broom's command word and give it short instructions consisting of a few words, such as “sweep the floor” or “dust the cabinets.” The broom can clean up to 5 cubic feet each minute and continues cleaning until you use another action to deactivate it. The broom can't climb barriers higher than 5 feet and can't open doors.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_brotherhood-of-fezzes", + "fields": { + "name": "Brotherhood of Fezzes", + "desc": "This trio of fezzes works only if all three hats are worn within 60 feet of each other by creatures of the same size. If one of the hats is removed or moves further than 60 feet from the others or if creatures of different sizes are wearing the hats, the hats' magic temporarily ceases. While three creatures of the same size wear these fezzes within 60 feet of each other, each creature can use its action to cast the alter self spell from it at will. However, all three wearers of the fezzes are affected as if the same spell was simultaneously cast on each of them, making each wearer appear identical to the other. For example, if one Medium wearer uses an action to change its appearance to that of a specific elf, each other wearer's appearance changes to look like the exact same elf.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_brown-honey-buckle", + "fields": { + "name": "Brown Honey Buckle", + "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bubbling-retort", + "fields": { + "name": "Bubbling Retort", + "desc": "This long, thin retort is fashioned from smoky yellow glass and is topped with an intricately carved brass stopper. You can unstopper the retort and fill it with liquid as an action. Once you do so, it spews out multicolored bubbles in a 20-foot radius. The bubbles last for 1d4 + 1 rounds. While they last, creatures within the radius are blinded and the area is heavily obscured to all creatures except those with tremorsense. The liquid in the retort is destroyed in the process with no harmful effect on its surroundings. If any bubbles are popped, they burst with a wet smacking sound but no other effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_buckle-of-blasting", + "fields": { + "name": "Buckle of Blasting", + "desc": "This soot-colored steel buckle has an exploding flame etched into its surface. It can be affixed to any common belt. While wearing this buckle, you have resistance to force damage. In addition, the buckle has 5 charges, and it regains 1d4 + 1 charges daily at dawn. It has the following properties.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_bullseye-arrow", + "fields": { + "name": "Bullseye Arrow", + "desc": "This arrow has bright red fletching and a blunt, red tip. You gain a +1 bonus to attack rolls made with this magic arrow. On a hit, the arrow deals no damage, but it paints a magical red dot on the target for 1 minute. While the dot lasts, the target takes an extra 1d4 damage of the weapon's type from any ranged attack that hits it. In addition, ranged weapon attacks against the target score a critical hit on a roll of 19 or 20. When this arrow hits a target, the arrow vanishes in a flash of red light and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_burglars-lock-and-key", + "fields": { + "name": "Burglar's Lock and Key", + "desc": "This heavy iron lock bears a stout, pitted key permanently fixed in the keyhole. As an action, you can twist the key counterclockwise to instantly open one door, chest, bag, bottle, or container of your choice within 30 feet. Any container or portal weighing more than 30 pounds or restrained in any way (latched, bolted, tied, or the like) automatically resists this effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_burning-skull", + "fields": { + "name": "Burning Skull", + "desc": "This appallingly misshapen skull—though alien and monstrous in aspect—is undeniably human, and it is large and hollow enough to be worn as a helm by any Medium humanoid. The skull helm radiates an unholy spectral aura, which sheds dim light in a 10-foot radius. According to legends, gazing upon a burning skull freezes the blood and withers the brain of one who understands not its mystery.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_butter-of-disbelief", + "fields": { + "name": "Butter of Disbelief", + "desc": "This stick of magical butter is carved with arcane runes and never melts or spoils. It has 3 charges. While holding this butter, you can use an action to slice off a piece and expend 1 charge to cast the grease spell (save DC 13) from it. The grease that covers the ground looks like melted butter. The butter regains all expended charges daily at dawn. If you expend the last charge, the butter disappears.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_buzzing-battleaxe", + "fields": { + "name": "Buzzing Battleaxe", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_buzzing-greataxe", + "fields": { + "name": "Buzzing Greataxe", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_buzzing-greatsword", + "fields": { + "name": "Buzzing Greatsword", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_buzzing-handaxe", + "fields": { + "name": "Buzzing Handaxe", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_buzzing-longsword", + "fields": { + "name": "Buzzing Longsword", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_buzzing-rapier", + "fields": { + "name": "Buzzing Rapier", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_buzzing-scimitar", + "fields": { + "name": "Buzzing Scimitar", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_buzzing-shortsword", + "fields": { + "name": "Buzzing Shortsword", + "desc": "You can use a bonus action to speak this weapon's command word, causing the blade to emit a loud buzzing sound. The buzzing noise is audible out to 100 feet. While the sword is buzzing, it deals an extra 2d6 thunder damage to any target it hits. The buzzing lasts until you use a bonus action to speak the command word again or until you drop or sheathe the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_candied-axe", + "fields": { + "name": "Candied Axe", + "desc": "This battleaxe bears a golden head spun from crystalized honey. Its wooden handle is carved with reliefs of bees. You gain a +2 bonus to attack and damage rolls made with this magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_candle-of-communion", + "fields": { + "name": "Candle of Communion", + "desc": "This black candle burns with an eerie, violet flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on necromancy spells. After burning for 1 hour, or if the candle's flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the speak with dead spell with it. Doing so destroys the candle.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_candle-of-summoning", + "fields": { + "name": "Candle of Summoning", + "desc": "This black candle burns with an eerie, green flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on conjuration spells. After burning for 1 hour, or if the flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the spirit guardians spell (save DC 15) with it. Doing so destroys the candle.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_candle-of-visions", + "fields": { + "name": "Candle of Visions", + "desc": "This black candle burns with an eerie, blue flame. The candle's magic is activated when the candle is lit, which requires an action. When lit, the candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet. Each creature in the candle's light has advantage on Constitution saving throws to maintain concentration on divination spells. After burning for 1 hour, or if the flame is magically or nonmagically snuffed out, it is destroyed. Alternatively, when you light the candle for the first time, you can cast the augury spell with it, which reveals its otherworldly omen in the candle's smoke. Doing so destroys the candle.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cap-of-thorns", + "fields": { + "name": "Cap of Thorns", + "desc": "Donning this thorny wooden circlet causes it to meld with your scalp. It can be removed only upon your death or by a remove curse spell. The cap ingests some of your blood, dealing 2d4 piercing damage. After this first feeding, the thorns feed once per day for 1d4 piercing damage. Once per day, you can sacrifice 1 hit point per level you possess to cast a special entangle spell made of thorny vines. Charisma is your spellcasting ability for this effect. Restrained creatures must make a successful Charisma saving throw or be affected by a charm person spell as thorns pierce their body. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If the target fails three consecutive saves, the thorns become deeply rooted and the charmed effect is permanent until remove curse or similar magic is cast on the target.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cape-of-targeting", + "fields": { + "name": "Cape of Targeting", + "desc": "You gain a +1 bonus to AC while wearing this long, flowing cloak. Whenever you are within 10 feet of more than two creatures, it subtly and slowly shifts its color to whatever the creatures nearest you find the most irritating. While within 5 feet of a hostile creature, you can use a bonus action to speak the cloak's command word to activate it, allowing your allies' ranged attacks to pass right through you. For 1 minute, each friendly creature that makes a ranged attack against a hostile creature within 5 feet of you has advantage on the attack roll. Each round the cloak is active, it enthusiastically and telepathically says “shoot me!” in different tones and cadences into the minds of each friendly creature that can see you and the cloak. The cloak can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_captains-flag", + "fields": { + "name": "Captain's Flag", + "desc": "This red and white flag adorned with a white anchor is made of velvet that never seems to fray in strong wings. When mounted and flown on a ship, the flag changes to the colors and symbol of the ship's captain and crew. While this flag is mounted on a ship, the captain and its allies have advantage on saving throws against being charmed or frightened. In addition, when the captain is reduced to 0 hit points while on the ship where this flag flies, each ally of the captain has advantage on its attack rolls until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_captains-goggles", + "fields": { + "name": "Captain's Goggles", + "desc": "These copper and glass goggles are prized by air and sea captains across the world. The goggles are designed to repel water and never fog. After attuning to the goggles, your name (or preferred moniker) appears on the side of the goggles. While wearing the goggles, you can't suffer from exhaustion.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_case-of-preservation", + "fields": { + "name": "Case of Preservation", + "desc": "This item appears to be a standard map or scroll case fashioned of well-oiled leather. You can store up to ten rolled-up sheets of paper or five rolled-up sheets of parchment in this container. While ensconced in the case, the contents are protected from damage caused by fire, exposure to water, age, or vermin.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cataloguing-book", + "fields": { + "name": "Cataloguing Book", + "desc": "This nondescript book contains statistics and details on various objects. Libraries often use these tomes to assist visitors in finding the knowledge contained within their stacks. You can use an action to touch the book to an object you wish to catalogue. The book inscribes the object's name, provided by you, on one of its pages and sketches a rough illustration to accompany the object's name. If the object is a magic item or otherwise magic-imbued, the book also inscribes the object's properties. The book becomes magically connected to the object, and its pages denote the object's current location, provided the object is not protected by nondetection or other magic that thwarts divination magic. When you attune to this book, its previously catalogued contents disappear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_catalyst-oil", + "fields": { + "name": "Catalyst Oil", + "desc": "This special elemental compound draws on nearby energy sources. Catalyst oils are tailored to one specific damage type (not including bludgeoning, piercing, or slashing damage) and have one dose. Whenever a spell or effect of this type goes off within 60 feet of a dose of catalyst oil, the oil catalyzes and becomes the spell's new point of origin. If the spell affects a single target, its original point of origin becomes the new target. If the spell's area is directional (such as a cone or a cube) you determine the spell's new direction. This redirected spell is easier to evade. Targets have advantage on saving throws against the spell, and the caster has disadvantage on the spell attack roll.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_celestial-charter", + "fields": { + "name": "Celestial Charter", + "desc": "Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the celestial, negotiating a service from it in exchange for a reward. The celestial is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the celestial, the truce is broken, and the creature can act normally. If the celestial refuses the offer, it is free to take any actions it wishes. Should you and the celestial reach an agreement that is satisfactory to both parties, you must sign the charter and have the celestial do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the celestial to the agreement until its service is rendered and the reward paid, at which point the scroll vanishes in a bright flash of light. A celestial typically attempts to fulfill its end of the bargain as best it can, and it is angry if you exploit any loopholes or literal interpretations to your advantage. If either party breaks the bargain, that creature immediately takes 10d6 radiant damage, and the charter is destroyed, ending the contract.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_celestial-sextant", + "fields": { + "name": "Celestial Sextant", + "desc": "The ancient elves constructed these sextants to use as navigational aids on all their seagoing vessels. The knowledge of their manufacture has been lost, and few of them remain. While attuned to the sextant, you can spend 1 minute using the sextant to determine your latitude and longitude, provided you can see the sun or stars. You can use an action steer up to four vessels that are within 1 mile of the sextant, provided their crews are willing. To do so, you must have spent at least 1 hour aboard each of the controlled vessels, performing basic sailing tasks and familiarizing yourself with the vessel.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_censer-of-dark-shadows", + "fields": { + "name": "Censer of Dark Shadows", + "desc": "This enchanted censer paints the air with magical, smoky shadow. While holding the censer, you can use an action to speak its command word, causing the censer to emit shadow in a 30-foot radius for 1 hour. Bright light and sunlight within this area is reduced to dim light, and dim light within this area is reduced to magical darkness. The shadow spreads around corners, and nonmagical light can't illuminate this shadow. The shadow emanates from the censer and moves with it. Completely enveloping the censer within another sealed object, such as a lidded pot or a leather bag, blocks the shadow. If any of this effect's area overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled. Once the censer is used to emit shadow, it can't do so again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_centaur-wrist-wraps", + "fields": { + "name": "Centaur Wrist-Wraps", + "desc": "These leather and fur wraps are imbued with centaur shamanic magic. The wraps are stained a deep amber color, and intricate motifs painted in blue seem to float above the surface of the leather. While wearing these wraps, you can call on their magic to reroll an attack made with a shortbow or longbow. You must use the new roll. Once used, the wraps must be held in wood smoke for 15 minutes before they can be used in this way again.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cephalopod-breastplate", + "fields": { + "name": "Cephalopod Breastplate", + "desc": "This bronze breastplate depicts two krakens fighting. While wearing this armor, you gain a +1 bonus to AC. You can use an action to speak the armor's command word to release a cloud of black mist (if above water) or black ink (if underwater). It billows out from you in a 20-foot-radius cloud of mist or ink. The area is heavily obscured for 1 minute, although a wind of moderate or greater speed (at least 10 miles per hour) or a significant current disperses it. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ceremonial-sacrificial-knife", + "fields": { + "name": "Ceremonial Sacrificial Knife", + "desc": "Runes dance along the blade of this keen knife. Sacrificial Knife (Common). While attuned to it, you can use this magic, rune-inscribed dagger as a spellcasting focus. Ceremonial Sacrificial Knife (Uncommon). More powerful versions of this blade also exist. While holding the greater version of this dagger, you can use it to perform a sacrificial ritual during a short rest. If you sacrifice a Tiny or Small creature, you regain one expended 1st-level spell slot. If you sacrifice a Medium or larger creature, you regain one expended 2nd-level spell slot.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chain-mail-of-warding-1", + "fields": { + "name": "Chain Mail of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chain-mail-of-warding-2", + "fields": { + "name": "Chain Mail of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chain-mail-of-warding-3", + "fields": { + "name": "Chain Mail of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chain-shirt-of-warding-1", + "fields": { + "name": "Chain Shirt of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chain-shirt-of-warding-2", + "fields": { + "name": "Chain Shirt of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chain-shirt-of-warding-3", + "fields": { + "name": "Chain Shirt of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chainbreaker-greatsword", + "fields": { + "name": "Chainbreaker Greatsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chainbreaker-longsword", + "fields": { + "name": "Chainbreaker Longsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chainbreaker-rapier", + "fields": { + "name": "Chainbreaker Rapier", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chainbreaker-scimitar", + "fields": { + "name": "Chainbreaker Scimitar", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chainbreaker-shortsword", + "fields": { + "name": "Chainbreaker Shortsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you use this weapon to attack or break chains, manacles, or similar metal objects restraining creatures, you have advantage on the attack roll or ability check. In addition, such items have vulnerability to this sword's weapon damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chalice-of-forbidden-ecstasies", + "fields": { + "name": "Chalice of Forbidden Ecstasies", + "desc": "The cup of this garnet chalice is carved in the likeness of a human skull. When the chalice is filled with blood, the dark red gemstone pulses with a scintillating crimson light that sheds dim light in a 5-foot radius. Each creature that drinks blood from this chalice has disadvantage on enchantment spells you cast for the next 24 hours. In addition, you can use an action to cast the suggestion spell, using your spell save DC, on a creature that has drunk blood from the chalice within the past 24 hours. You need to concentrate on this suggestion to maintain it during its duration. Once used, the suggestion power of the chalice can't be used again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chalk-of-exodus", + "fields": { + "name": "Chalk of Exodus", + "desc": "This piece of chalk glitters in the light, as if infused with particles of mica or gypsum. The chalk has 10 charges. You can use an action and expend 1 charge to draw a door on any solid surface upon which the chalk can leave a mark. You can then push open the door while picturing a real door within 10 miles of your current location. The door you picture must be one that you have passed through, in the normal fashion, once before. The chalk opens a magical portal to that other door, and you can step through the portal to appear at that other location as if you had stepped through that other door. At the destination, the target door opens, revealing a glowing portal from which you emerge. Once through, you can shut the door, dispelling the portal, or you can leave it open for up to 1 minute. While the door is open, any creature that can fit through the chalk door can traverse the portal in either direction. Each time you use the chalk, roll a 1d20. On a roll of 1, the magic malfunctions and connects you to a random door similar to the one you pictured within the same range, though it might be a door you have never seen before. The chalk becomes nonmagical when you use the last charge.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chamrosh-salve", + "fields": { + "name": "Chamrosh Salve", + "desc": "This 3-inch-diameter ceramic jar contains 1d4 + 1 doses of a syrupy mixture that smells faintly of freshly washed dog fur. The jar is a glorious gold-white, resembling the shimmering fur of a Chamrosh (see Tome of Beasts 2), the holy hound from which this salve gets its name. As an action, one dose of the ointment can be applied to the skin. The creature that receives it regains 2d8 + 1 hit points and is cured of the charmed, frightened, and poisoned conditions.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_charlatans-veneer", + "fields": { + "name": "Charlatan's Veneer", + "desc": "This silken scarf is a more powerful version of the Commoner's Veneer (see page 128). When in an area containing 12 or more humanoids, Wisdom (Perception) checks to spot you have disadvantage. You can use a bonus action to call on the power in the scarf to invoke a sense of trust in those to whom you speak. If you do so, you have advantage on the next Charisma (Persuasion) check you make against a humanoid while you are in an area containing 12 or more humanoids. In addition, while wearing the scarf, you can use modify memory on a humanoid you have successfully persuaded in the last 24 hours. The scarf can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_charm-of-restoration", + "fields": { + "name": "Charm of Restoration", + "desc": "This fist-sized ball of tightly-wound green fronds contains the bark of a magical plant with curative properties. A natural loop is formed from one of the fronds, allowing the charm to be hung from a pack, belt, or weapon pommel. As long as you carry this charm, whenever you are targeted by a spell or magical effect that restores your hit points, you regain an extra 1 hit point.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chieftains-axe", + "fields": { + "name": "Chieftain's Axe", + "desc": "Furs conceal the worn runes lining the haft of this oversized, silver-headed battleaxe. You gain a +2 bonus to attack and damage rolls made with this silvered, magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chillblain-breastplate", + "fields": { + "name": "Chillblain Breastplate", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chillblain-chain-mail", + "fields": { + "name": "Chillblain Chain Mail", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chillblain-chain-shirt", + "fields": { + "name": "Chillblain Chain Shirt", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chillblain-half-plate", + "fields": { + "name": "Chillblain Half Plate", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chillblain-plate", + "fields": { + "name": "Chillblain Plate", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chillblain-ring-mail", + "fields": { + "name": "Chillblain Ring Mail", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chillblain-scale-mail", + "fields": { + "name": "Chillblain Scale Mail", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chillblain-splint", + "fields": { + "name": "Chillblain Splint", + "desc": "This armor is forged from overlapping blue steel plates or blue rings and has a frosted appearance. While wearing this armor, you gain a +1 bonus to AC, and you have resistance to cold damage. In addition, when a creature hits you with a melee weapon attack, it must succeed on a DC 15 Constitution saving throw or become numbed by the supernatural cold radiating from the armor. A creature numbed by the cold can use either an action or bonus action on its turn, not both, and its movement speed is reduced by 10 feet until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_chronomancers-pocket-clock", + "fields": { + "name": "Chronomancer's Pocket Clock", + "desc": "This golden pocketwatch has 3 charges and regains 1d3 expended charges daily at midnight. While holding it, you can use an action to wind it and expend 1 charge to cast the haste spell from it. If the pendant is destroyed (AC 14, 15 hit points) while it has 3 charges, the creature that broke it gains the effects of the time stop spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cinch-of-the-wolfmother", + "fields": { + "name": "Cinch of the Wolfmother", + "desc": "This belt is made of the treated and tanned intestines of a dire wolf, enchanted to imbue those who wear it with the ferocity and determination of the wolf. While wearing this belt, you can use an action to cast the druidcraft or speak with animals spell from it at will. In addition, you have advantage on Wisdom (Perception) checks that rely on hearing or smell. If you are reduced to 0 hit points while attuned to the belt and fail two death saving throws, you die immediately as your body violently erupts in a shower of blood, and a dire wolf emerges from your entrails. You assume control of the dire wolf, and it gains additional hit points equal to half of your maximum hit points prior to death. The belt then crumbles and is destroyed. If the wolf is targeted by a remove curse spell, then you are reborn when the wolf dies, just as the wolf was born when you died. However, if the curse remains after the wolf dies, you remain dead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_circlet-of-holly", + "fields": { + "name": "Circlet of Holly", + "desc": "While wearing this circlet, you gain the following benefits: - **Language of the Fey**. You can speak and understand Sylvan. - **Friend of the Fey.** You have advantage on ability checks to interact socially with fey creatures.\n- **Poison Sense.** You know if any food or drink you are holding contains poison.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_circlet-of-persuasion", + "fields": { + "name": "Circlet of Persuasion", + "desc": "While wearing this circlet, you have advantage on Charisma (Persuasion) checks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_clacking-teeth", + "fields": { + "name": "Clacking Teeth", + "desc": "Taken from a Fleshspurned (see Tome of Beasts 2), a toothy ghost, this bony jaw holds oversized teeth that sweat ectoplasm. The jaw has 3 charges and regains 1d3 expended charges daily at dusk. While holding the jaw, you can use an action to expend 1 of its charges and choose a target within 30 feet of you. The jaw's teeth clatter together, and the target must succeed on a DC 15 Wisdom saving throw or be confused for 1 minute. While confused, the target acts as if under the effects of the confusion spell. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_clamor-bell", + "fields": { + "name": "Clamor Bell", + "desc": "You can affix this small, brass bell to an object with the leather cords tied to its top. If anyone other than you picks up, interacts with, or uses the object without first speaking the bell's command word, it rings for 5 minutes or until you touch it and speak the command word again. The ringing is audible 100 feet away. If a creature takes an action to cut the bindings holding the bell onto the object, the bell ceases ringing 1 round after being released from the object.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_clarifying-goggles", + "fields": { + "name": "Clarifying Goggles", + "desc": "These goggles contain a lens of slightly rippled blue glass that turns clear underwater. While wearing these goggles underwater, you don't have disadvantage on Wisdom (Perception) checks that rely on sight when peering through silt, murk, or other natural underwater phenomena that would ordinarily lightly obscure your vision. While wearing these goggles above water, your vision is lightly obscured.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cleaning-concoction", + "fields": { + "name": "Cleaning Concoction", + "desc": "This fresh-smelling, clear green liquid can cover a Medium or smaller creature or object (or matched set of objects, such as a suit of clothes or pair of boots). Applying the liquid takes 1 minute. It removes soiling, stains, and residue, and it neutralizes and removes odors, unless those odors are particularly pungent, such as in skunks or creatures with the Stench trait. Once the potion has cleaned the target, it evaporates, leaving the creature or object both clean and dry.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cloak-of-coagulation", + "fields": { + "name": "Cloak of Coagulation", + "desc": "While wearing this rust red cloak, your blood quickly clots. When you are subjected to an effect that causes additional damage on subsequent rounds due to bleeding, blood loss, or continual necrotic damage, such as a horned devil's tail attack or a sword of wounding, the effect ceases after a single round of damage. For example, if a stirge hits you with its proboscis, you take the initial damage, plus the damage from blood loss on the following round, after which the wound clots, the stirge detaches, and you take no further damage. The cloak doesn't prevent a creature from using such an attack or effect again; a horned devil or a stirge can attack you again, though the cloak will continue to stop any recurring effects after a single round.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cloak-of-petals", + "fields": { + "name": "Cloak of Petals", + "desc": "This delicate cloak is covered in an array of pink, purple, and yellow flowers. While wearing this cloak, you have advantage on Dexterity (Stealth) checks made to hide in areas containing flowering plants. The cloak has 3 charges. When a creature you can see targets you with an attack, you can use your reaction to expend 1 of its charges to release a shower of petals from the cloak. If you do so, the attacker has disadvantage on the attack roll. The cloak regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cloak-of-sails", + "fields": { + "name": "Cloak of Sails", + "desc": "The interior of this simple, black cloak looks like white sailcloth. While wearing this cloak, you gain a +1 bonus to AC and saving throws. You lose this bonus while using the cloak's Sailcloth property.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cloak-of-squirrels", + "fields": { + "name": "Cloak of Squirrels", + "desc": "This wool brocade cloak features a repeating pattern of squirrel heads and tree branches. It has 3 charges and regains all expended charges daily at dawn. While wearing this cloak, you can use an action to expend 1 charge to cast the legion of rabid squirrels spell (see Deep Magic for 5th Edition) from it. You don't need to be in a forest to cast the spell from this cloak, as the squirrels come from within the cloak. When the spell ends, the swarm vanishes back inside the cloak.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cloak-of-the-bearfolk", + "fields": { + "name": "Cloak of the Bearfolk", + "desc": "While wearing this cloak, your Constitution score is 15, and you have proficiency in the Athletics skill. The cloak has no effect if you already have proficiency in this skill or if your Constitution score is already 15 or higher.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cloak-of-the-eel", + "fields": { + "name": "Cloak of the Eel", + "desc": "While wearing this rough, blue-gray leather cloak, you have a swimming speed of 40 feet. When you are hit with a melee weapon attack while wearing this cloak, you can use your reaction to generate a powerful electric charge. The attacker must succeed on a DC 13 Dexterity saving throw or take 2d6 lightning damage. The attacker has disadvantage on the saving throw if it hits you with a metal weapon. The cloak can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cloak-of-the-empire", + "fields": { + "name": "Cloak of the Empire", + "desc": "This voluminous grey cloak has bright red trim and the sigil from an unknown empire on its back. The cloak is stiff and doesn't fold as easily as normal cloth. Whenever you are struck by a ranged weapon attack, you can use a reaction to reduce the damage from that attack by your Charisma modifier (minimum of 1).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cloak-of-the-inconspicuous-rake", + "fields": { + "name": "Cloak of the Inconspicuous Rake", + "desc": "This cloak is spun from simple gray wool and closed with a plain, triangular copper clasp. While wearing this cloak, you can use a bonus action to make yourself forgettable for 5 minutes. A creature that sees you must make a DC 15 Intelligence saving throw as soon as you leave its sight. On a failure, the witness remembers seeing a person doing whatever you did, but it doesn't remember details about your appearance or mannerisms and can't accurately describe you to another. Creatures with truesight aren't affected by this cloak. The cloak can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cloak-of-the-ram", + "fields": { + "name": "Cloak of the Ram", + "desc": "While wearing this cloak, you can use an action to transform into a mountain ram (use the statistics of a giant goat). This effect works like the polymorph spell, except you retain your Intelligence, Wisdom, and Charisma scores. You can use an action to transform back into your original form. Each time you transform into a ram in a single day, you retain the hit points you had the last time you transformed. If you were reduced to 0 hit points the last time you were a ram, you can't become a ram again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cloak-of-the-rat", + "fields": { + "name": "Cloak of the Rat", + "desc": "While wearing this gray garment, you have a +5 bonus to your passive Wisdom (Perception) score.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cloak-of-wicked-wings", + "fields": { + "name": "Cloak of Wicked Wings", + "desc": "From a distance, this long, black cloak appears to be in tatters, but a closer inspection reveals that it is sewn from numerous scraps of cloth and shaped like bat wings. While wearing this cloak, you can use your action to cast polymorph on yourself, transforming into a swarm of bats. While in the form of a swarm of bats, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. If you are a druid with the Wild Shape feature, this transformation instead lasts as long as your Wild Shape lasts. The cloak can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_clockwork-gauntlet", + "fields": { + "name": "Clockwork Gauntlet", + "desc": "This metal gauntlet has a steam-powered ram built into the greaves. It has 3 charges and regains 1d3 expended charges daily at dawn. While wearing the gauntlet, you can expend 1 charge as a bonus action to force the ram in the gauntlets to slam a creature within 5 feet of you. The ram thrusts out from the gauntlet and makes its attack with a +5 bonus. On a hit, the target takes 2d8 bludgeoning damage, and it must succeed on a DC 13 Constitution saving throw or be stunned until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_clockwork-hand", + "fields": { + "name": "Clockwork Hand", + "desc": "A beautiful work of articulate brass, this prosthetic clockwork hand (or hands) can't be worn if you have both of your hands. While wearing this hand, you gain a +2 bonus to damage with melee weapon attacks made with this hand or weapons wielded in this hand.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_clockwork-hare", + "fields": { + "name": "Clockwork Hare", + "desc": "Gifted by a deity of time and clockwork, these simple-seeming trinkets portend some momentous event. The figurine resembles a hare with a clock in its belly. You can use an action to press the ears down and activate the clock, which spins chaotically. The hare emits a field of magic in a 30- foot radius from it for 1 hour. The field moves with the hare, remaining centered on it. While within the field, you and up to 5 willing creatures of your choice exist outside the normal flow of time, and all other creatures and objects are frozen in time. If an affected creature moves outside the field, the creature immediately becomes frozen in time until it is in the field again. The field ends early if an affected creature attacks, touches, alters, or has any other physical or magical impact on a creature, or an object being worn or carried by a creature, that is frozen in time. When the field ends, the figurine turns into a nonmagical, living white hare that goes bounding off into the distance, never to be seen again.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_clockwork-mace-of-divinity", + "fields": { + "name": "Clockwork Mace of Divinity", + "desc": "This clockwork mace is composed of several different metals. While attuned to this magic weapon, you have proficiency with it. As a bonus action, you can command the mace to transform into a trident. When you hit with an attack using this weapon's trident form, the target takes an extra 1d6 radiant damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_clockwork-mynah-bird", + "fields": { + "name": "Clockwork Mynah Bird", + "desc": "This mechanical brass bird is nine inches long from the tip of its beak to the end of its tail, and it can become active for up to 12 hours. Once it has been used, it can't be used again until 2 days have passed. If you use your action to speak the first command word (“listen” in Ignan), it cocks its head and listens intently to all nearby sounds with a passive Wisdom (Perception) of 17 for up to 10 minutes. When you give the second command word (“speak”), it repeats back what it heard in a metallic-sounding—though reasonably accurate—portrayal of the sounds. You can use the clockwork mynah bird to relay sounds and conversations it has heard to others. As an action, you can command the mynah to fly to a location it has previously visited within 1 mile. It waits at the location for up to 1 hour for someone to command it to speak. At the end of the hour or after it speaks its recording, it returns to you. The clockwork mynah bird has an Armor Class of 14, 5 hit points, and a flying speed of 50 feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_clockwork-pendant", + "fields": { + "name": "Clockwork Pendant", + "desc": "This pendant resembles an ornate, miniature clock and has 3 charges. While holding this pendant, you can expend 1 charge as an action to cast the blur, haste, or slow spell (save DC 15) from it. The spell's duration changes to 3 rounds, and it doesn't require concentration. You can have only one spell active at a time. If you cast another, the previous spell effect ends. It regains 1d3 expended charges daily at dawn. If the pendant is destroyed (AC 14, 15 hit points) while it has 3 charges, it creates a temporal distortion for 1d4 rounds. For the duration, each creature and object that enters or starts its turn within 10 feet of the pendant has immunity to all damage, all spells, and all other physical or magical effects but is otherwise able to move and act normally. If a creature moves further than 10 feet from the pendant, these effects end for it. At the end of the duration, the pendant crumbles to dust.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_clockwork-rogue-ring", + "fields": { + "name": "Clockwork Rogue Ring", + "desc": "Made by kobold clockwork mages, this brass clockwork ring is formed to look like a coiled dragon. When you speak or whisper the Draconic command word etched on the inside of the ring, the brass dragon uncoils and attempts to pick any lock within 10 feet of you. The dragon picks the lock using your proficiency bonus but with advantage. It is treated as having thieves' tools when attempting to pick locks. It uses your Dexterity (Stealth) bonus for purposes of not being spotted but with advantage due to its extremely small size. Whether successful or not, once you have used the ring to attempt to pick a lock, it can't be used again until the next sunset.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_clockwork-spider-cloak", + "fields": { + "name": "Clockwork Spider Cloak", + "desc": "This hooded cloak is made from black spider silk and has thin brass ribbing stitched on the inside. It has 3 charges. While wearing the cloak, you gain a +2 bonus on Dexterity (Stealth) checks. As an action, you can expend 1 charge to animate the brass ribs into articulated spider legs 1 inch thick and 6 feet long for 1 minute. You can use the charges in succession. The spider legs allow you to climb at your normal walking speed, and you double your proficiency bonus and gain advantage on any Strength (Athletics) checks made for slippery or difficult surfaces. The cloak regains 1d3 charges each day at sunset.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_coffer-of-memory", + "fields": { + "name": "Coffer of Memory", + "desc": "This small golden box resembles a jewelry box and is easily mistaken for a common trinket. When attuned to the box, its owner can fill the box with mental images of important events lasting no more than 1 minute each. Any number of memories can be stored this way. These images are similar to a slide show from the bearer's point of view. On a command from its owner, the box projects a mental image of a requested memory so that whoever is holding the box at that moment can see it. If a coffer of memory is found with memories already stored inside it, a newly-attuned owner can view a randomly-selected stored memory with a successful DC 15 Charisma check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_collar-of-beast-armor", + "fields": { + "name": "Collar of Beast Armor", + "desc": "This worked leather collar has stitching in the shapes of various animals. While a beast wears this collar, its base AC becomes 13 + its Dexterity modifier. It has no effect if the beast's base AC is already 13 or higher. This collar affects only beasts, which can include a creature affected by the polymorph spell or a druid assuming a beast form using Wild Shape.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_comfy-slippers", + "fields": { + "name": "Comfy Slippers", + "desc": "While wearing the slippers, your feet feel warm and comfortable, no matter what the ambient temperature.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_commanders-helm", + "fields": { + "name": "Commander's Helm", + "desc": "This helmet sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The type of light given off by the helm depends on the aesthetic desired by its creator. Some are surrounded in a wreath of hellish (though illusory) flames, while others give off a soft, warm halo of white or golden light. You can use an action to start or stop the light. While wearing the helm, you can use an action to make your voice loud enough to be heard clearly by anyone within 300 feet of you until the end of your next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_commanders-plate", + "fields": { + "name": "Commander's Plate", + "desc": "This armor is typically emblazoned or decorated with imagery of lions, bears, griffons, eagles, or other symbols of bravery and courage. While wearing this armor, your voice can be clearly heard by all friendly creatures within 300 feet of you if you so choose. Your voice doesn't carry in areas where sound is prevented, such as in the area of the silence spell. Each friendly creature that can see or hear you has advantage on saving throws against being frightened. You can use a bonus action to rally a friendly creature that can see or hear you. The target gains a +1 bonus to attack or damage rolls on its next turn. Once you have rallied a creature, you can't rally that creature again until it finishes a long rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_commanders-visage", + "fields": { + "name": "Commander's Visage", + "desc": "This golden mask resembles a stern face, glowering at the world. While wearing this mask, you have advantage on saving throws against being frightened. The mask has 7 charges for the following properties, and it regains 1d6 + 1 expended charges daily at midnight.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_commoners-veneer", + "fields": { + "name": "Commoner's Veneer", + "desc": "When you wear this simple, homespun scarf around your neck or head, it casts a minor glamer over you that makes you blend in with the people around you, avoiding notice. When in an area containing 25 or more humanoids, such as a city street, market place, or other public locale, Wisdom (Perception) checks to spot you amid the crowd have disadvantage. This item's power only works for creatures of the humanoid type or those using magic to take on a humanoid form.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_communal-flute", + "fields": { + "name": "Communal Flute", + "desc": "This flute is carved with skulls and can be used as a spellcasting focus. If you spend 10 minutes playing the flute over a dead creature, you can cast the speak with dead spell from the flute. The flute can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_companions-broth", + "fields": { + "name": "Companion's Broth", + "desc": "Developed by wizards with an interest in the culinary arts, this simple broth mends the wounds of companion animals and familiars. When a beast or familiar consumes this broth, it regains 2d4 + 2 hit points. Alternatively, you can mix a flower petal into the broth, and the beast or familiar gains 2d4 temporary hit points for 8 hours instead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_constant-dagger", + "fields": { + "name": "Constant Dagger", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon, the target loses its resistance to bludgeoning, piercing, and slashing damage until the start of your next turn. If it has immunity to bludgeoning, piercing, and slashing damage, its immunity instead becomes resistance to such damage until the start of your next turn. If the creature doesn't have resistance or immunity to such damage, you roll your damage dice three times, instead of twice.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_consuming-rod", + "fields": { + "name": "Consuming Rod", + "desc": "This bone mace is crafted from a humanoid femur. One end is carved to resemble a ghoulish face, its mouth open wide and full of sharp fangs. The mace has 8 charges, and it recovers 1d6 + 2 charges daily at dawn. You gain a +1 bonus to attack and damage rolls made with this magic mace. When it hits a creature, the mace's mouth stretches gruesomely wide and bites the target, adding 3 (1d6) piercing damage to the attack. As a reaction, you can expend 1 charge to regain hit points equal to the piercing damage dealt. Alternatively, you can use your reaction to expend 5 charges when you hit a Medium or smaller creature and force the mace to swallow the target. The target must succeed on a DC 15 Dexterity saving throw or be swallowed into an extra-dimensional space within the mace. While swallowed, the target is blinded and restrained, and it has total cover against attacks and other effects outside the mace. The target can still breathe. As an action, you can force the mace to regurgitate the creature, which falls prone in a space within 5 feet of the mace. The mace automatically regurgitates a trapped creature at dawn when it regains charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_copper-skeleton-key", + "fields": { + "name": "Copper Skeleton Key", + "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_coral-of-enchanted-colors", + "fields": { + "name": "Coral of Enchanted Colors", + "desc": "This piece of dead, white brain coral glistens with a myriad of colors when placed underwater. While holding this coral underwater, you can use an action to cause a beam of colored light to streak from the coral toward a creature you can see within 60 feet of you. The target must make a DC 17 Constitution saving throw. The beam's color determines its effects, as described below. Each color can be used only once. The coral regains the use of all of its colors at the next dawn if it is immersed in water for at least 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cordial-of-understanding", + "fields": { + "name": "Cordial of Understanding", + "desc": "When you drink this tangy, violet liquid, your mind opens to new forms of communication. For 1 hour, if you spend 1 minute listening to creatures speaking a particular language, you gain the ability to communicate in that language for the duration. This potion's magic can also apply to non-verbal languages, such as a hand signal-based or dance-based language, so long as you spend 1 minute watching it being used and have the appropriate anatomy and limbs to communicate in the language.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_corpsehunters-medallion", + "fields": { + "name": "Corpsehunter's Medallion", + "desc": "This amulet is made from the skulls of grave rats or from scrimshawed bones of the ignoble dead. While wearing it, you have resistance to necrotic damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_countermelody-crystals", + "fields": { + "name": "Countermelody Crystals", + "desc": "This golden bracelet is set with ten glistening crystal bangles that tinkle when they strike one another. When you must make a saving throw against being charmed or frightened, the crystals vibrate, creating an eerie melody, and you have advantage on the saving throw. If you fail the saving throw, you can choose to succeed instead by forcing one of the crystals to shatter. Once all ten crystals have shattered, the bracelet loses its magic and crumbles to powder.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_courtesans-allure", + "fields": { + "name": "Courtesan's Allure", + "desc": "This perfume has a sweet, floral scent and captivates those with high social standing. The perfume can cover one Medium or smaller creature, and applying it takes 1 minute. For 1 hour, the affected creature gains a +5 bonus to Charisma checks made to socially interact with or influence nobles, politicians, or other individuals with high social standing.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_crab-gloves", + "fields": { + "name": "Crab Gloves", + "desc": "These gloves are shaped like crab claws but fit easily over your hands. While wearing these gloves, you can take the Attack action to make two melee weapon attacks with the claws. You are proficient with the claws. Each claw has a reach of 5 feet and deals bludgeoning damage equal to 1d6 + your Strength modifier on a hit. If you hit a creature of your size or smaller using a claw, you automatically grapple the creature with the claw. You can have no more than two creatures grappled in this way at a time. While grappling a target with a claw, you can't attack other creatures with that claw. While wearing the gloves, you have disadvantage on Charisma and Dexterity checks, but you have advantage on checks while operating an apparatus of the crab and on attack rolls with the apparatus' claws. In addition, you can't wield weapons or a shield, and you can't cast a spell that has a somatic component. A creature with an Intelligence of 8 or higher that has two claws can wear these gloves. If it does so, it has two appropriately sized humanoid hands instead of claws. The creature can wield weapons with the hands and has advantage on Dexterity checks that require fine manipulation. Pulling the gloves on or off requires an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_crafter-shabti", + "fields": { + "name": "Crafter Shabti", + "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_cravens-heart", + "fields": { + "name": "Craven's Heart", + "desc": "This leathery mass of dried meat was once a humanoid heart, taken from an individual that died while experiencing great terror. You can use an action to whisper a command word and hurl the heart to the ground, where it revitalizes and begins to beat rapidly and loudly for 1 minute. Each creature withing 30 feet of the heart has disadvantage on saving throws against being frightened. At the end of the duration, the heart bursts from the strain and is destroyed. The heart can be attacked and destroyed (AC 11; hp 3; resistance to bludgeoning damage). If the heart is destroyed before the end if its duration, each creature within 30 feet of the heart must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. This bugbear necromancer was once the henchman of an accomplished practitioner of the dark arts named Varrus. She started as a bodyguard and tough, but her keen intellect caught her master's attention. He eventually took her on as an apprentice. Moxug is fascinated with fear, and some say she doesn't eat but instead sustains herself on the terror of her victims. She eventually betrayed Varrus, sabotaging his attempt to become a lich, and luxuriated in his fear as he realized he would die rather than achieve immortality. According to rumor, the first craven's heart she crafted came from the body of her former master.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_crawling-cloak", + "fields": { + "name": "Crawling Cloak", + "desc": "This unusual cloak is made of many overlapping, broad strips of thick cloth.\nCrawling Cloak (Common). When you are prone, you can animate the cloak and have it pull you along the ground, allowing you to ignore the extra movement cost for crawling. You can still only move up to your normal movement rate and can’t stand up from prone unless you still have at least half your movement remaining after moving.\n\nSturdy Crawling Cloak (Uncommon). This more powerful version of the crawling cloak also allows you to use the prehensile strips of the cloak to climb, giving you a climbing speed of 20 feet. If you already have a climbing speed, the cloak increases that speed by 10 feet. When using the cloak, you can keep your hands free while climbing.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_crimson-carpet", + "fields": { + "name": "Crimson Carpet", + "desc": "This rolled bundle of red felt is 3-feet long and 1-foot wide, and it weighs 10 pounds. You can use an action to speak the carpet's command word to cause it to unroll, creating a horizontal walking surface or bridge up to 10 feet wide, up to 60 feet long, and 1/4 inch thick. The carpet doesn't need to be anchored and can hover. The carpet has immunity to all damage and isn't affected by the dispel magic spell. The disintegrate spell destroys the carpet. The carpet remains unrolled until you use an action to repeat the command word, causing it to roll up again. When you do so, the carpet can't be unrolled again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_crimson-starfall-arrow", + "fields": { + "name": "Crimson Starfall Arrow", + "desc": "This arrow is a magic weapon powered by the sacrifice of your own life energy and explodes upon impact. If you hit a creature with this arrow, you can spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and each creature within 10 feet of the target, including the target, must make a DC 15 Dexterity saving throw, taking necrotic damage equal to the hit points you lost on a failed save, or half as much damage on a successful one. You can't use this feature of the arrow if you don't have blood. Hit Dice spent on this arrow's feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_crocodile-hide-armor", + "fields": { + "name": "Crocodile Hide Armor", + "desc": "While wearing this armor fashioned from crocodile skin, you gain a +1 bonus to AC. In addition, you can hold your breath for 15 minutes, and you have a swimming speed equal to your walking speed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_crocodile-leather-armor", + "fields": { + "name": "Crocodile Leather Armor", + "desc": "While wearing this armor fashioned from crocodile skin, you gain a +1 bonus to AC. In addition, you can hold your breath for 15 minutes, and you have a swimming speed equal to your walking speed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_crook-of-the-flock", + "fields": { + "name": "Crook of the Flock", + "desc": "This plain crook is made of smooth, worn lotus wood and is warm to the touch.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_crown-of-the-pharaoh", + "fields": { + "name": "Crown of the Pharaoh", + "desc": "The swirling gold bands of this crown recall the shape of desert dunes, and dozens of tiny emeralds, rubies, and sapphires nest among the skillfully forged curlicues. While wearing the crown, you gain the following benefits: Your Intelligence score is 25. This crown has no effect on you if your Intelligence is already 25 or higher. You have a flying speed equal to your walking speed. While you are wearing no armor and not wielding a shield, your Armor Class equals 16 + your Dexterity modifier.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_crusaders-shield", + "fields": { + "name": "Crusader's Shield", + "desc": "A bronze boss is set in the center of this round shield. When you attune to the shield, the boss changes shape, becoming a symbol of your divine connection: a holy symbol for a cleric or paladin or an engraving of mistletoe or other sacred plant for a druid. You can use the shield as a spellcasting focus for your spells.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_crystal-skeleton-key", + "fields": { + "name": "Crystal Skeleton Key", + "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_crystal-staff", + "fields": { + "name": "Crystal Staff", + "desc": "Carved from a single piece of solid crystal, this staff has numerous reflective facets that produce a strangely hypnotic effect. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: color spray (1 charge), confound senses* (3 charges), confusion (4 charges), hypnotic pattern (3 charges), jeweled fissure* (3 charges), prismatic ray* (5 charges), or prismatic spray (7 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to light or confusion. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the crystal shatters, destroying the staff and dealing 2d6 piercing damage to each creature within 10 feet of it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dagger-of-the-barbed-devil", + "fields": { + "name": "Dagger of the Barbed Devil", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. You can use an action to cause sharp, pointed barbs to sprout from this blade. The barbs remain for 1 minute. When you hit a creature while the barbs are active, the creature must succeed on a DC 15 Dexterity saving throw or a barb breaks off into its flesh and the dagger loses its barbs. At the start of each of its turns, a creature with a barb in its flesh must make a DC 15 Constitution saving throw. On a failure, it has disadvantage on attack rolls and ability checks until the start of its next turn as it is wracked with pain. The barb remains until a creature uses its action to remove the barb, dealing 1d4 piercing damage to the barbed creature. Once you cause barbs to sprout from the dagger, you can't do so again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dancing-caltrops", + "fields": { + "name": "Dancing Caltrops", + "desc": "After you pour these magic caltrops out of the bag into an area, you can use a bonus action to animate them and command them to move up to 10 feet to occupy a different square area that is 5 feet on a side.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dancing-floret", + "fields": { + "name": "Dancing Floret", + "desc": "This 2-inch-long plant has a humanoid shape, and a large purple flower sits at the top of the plant on a short, neck-like stalk. Small, serrated thorns on its arms and legs allow it to cling to your clothing, and it most often dances along your arm or across your shoulders. While attuned to the floret, you have proficiency in the Performance skill, and you double your proficiency bonus on Charisma (Performance) checks made while dancing. The floret has 3 charges for the following other properties. The floret regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dancing-ink", + "fields": { + "name": "Dancing Ink", + "desc": "This ink is favored by merchants for eye-catching banners and by toy makers for scrolls and books for children. Typically found in 1d4 pots, this ink allows you to draw an illustration that moves about the page where it was drawn, whether that is an illustration of waves crashing against a shore along the bottom of the page or a rabbit leaping over the page's text. The ink wears away over time due to the movement and fades from the page after 2d4 weeks. The ink moves only when exposed to light, and some long-forgotten tomes have been opened to reveal small, moving illustrations drawn by ancient scholars. One pot can be used to fill 25 pages of a book or a similar total area for larger banners.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dastardly-quill-and-parchment", + "fields": { + "name": "Dastardly Quill and Parchment", + "desc": "Favored by spies, this quill and parchment are magically linked as long as both remain on the same plane of existence. When a creature writes or draws on any surface with the quill, that writing or drawing appears on its linked parchment, exactly as it would appear if the writer was writing or drawing on the parchment with black ink. This effect doesn't prevent the quill from being used as a standard quill on a nonmagical piece of parchment, but this written communication is one-way, from quill to parchment. The quill's linked parchment is immune to all nonmagical inks and stains, and any magical messages written on the parchment disappear after 1 minute and aren't conveyed to the creature holding the quill. The parchment is approximately 9 inches wide by 13 inches long. If the quill's writing exceeds the area of the parchment, the older writing fades from the top of the sheet, replaced by the newer writing. Otherwise, the quill's writing remains on the parchment for 24 hours, after which time all writing fades from it. If either item is destroyed, the other item becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dawn-shard-dagger", + "fields": { + "name": "Dawn Shard Dagger", + "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dawn-shard-greatsword", + "fields": { + "name": "Dawn Shard Greatsword", + "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dawn-shard-longsword", + "fields": { + "name": "Dawn Shard Longsword", + "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dawn-shard-rapier", + "fields": { + "name": "Dawn Shard Rapier", + "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dawn-shard-scimitar", + "fields": { + "name": "Dawn Shard Scimitar", + "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dawn-shard-shortsword", + "fields": { + "name": "Dawn Shard Shortsword", + "desc": "The blade of this magic weapon gleams with a faint golden shine, and the pommel is etched with a sunburst. As a bonus action, you can command the weapon to shed dim light out to 5 feet, to shed bright light out to 20 feet and dim light for an additional 20 feet, or to douse the light. The weapon deals an extra 1d6 radiant damage to any creature it hits. This increases to 2d6 radiant damage if the target is undead or a creature of shadow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_deadfall-arrow", + "fields": { + "name": "Deadfall Arrow", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic arrow. On a hit, the arrow transforms into a 10-foot-long wooden log centered on the target, destroying the arrow. The target and each creature in the log's area must make a DC 15 Dexterity saving throw. On a failure, a creature takes 3d6 bludgeoning damage and is knocked prone and restrained under the log. On a success, a creature takes half the damage and isn't knocked prone or restrained. A restrained creature can take its action to free itself by succeeding on a DC 15 Strength check. The log lasts for 1 minute then crumbles to dust, freeing those restrained by it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_deaths-mirror", + "fields": { + "name": "Death's Mirror", + "desc": "Made from woven lead and silver, this ring fits only on the hand's smallest finger. As the moon is a dull reflection of the sun's glory, so too is the power within this ring merely an imitation of the healing energies that can bestow true life. The ring has 3 charges and regains all expended charges daily at dawn. While wearing the ring, you can expend 1 charge as a bonus action to gain 5 temporary hit points for 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_decoy-card", + "fields": { + "name": "Decoy Card", + "desc": "This small, thick, parchment card displays an accurate portrait of the person carrying it. You can use an action to toss the card on the ground at a point within 10 feet of you. An illusion of you forms over the card and remains until dispelled. The illusion appears real, but it can do no harm. While you are within 120 feet of the illusion and can see it, you can use an action to make it move and behave as you wish, as long as it moves no further than 10 feet from the card. Any physical interaction with your illusory double reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect your illusory double identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The illusion lasts until the card is moved or the illusion is dispelled. When the illusion ends, the card's face becomes blank, and the card becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_deepchill-orb", + "fields": { + "name": "Deepchill Orb", + "desc": "This fist-sized sphere of blue quartz emits cold. If placed in a container with a capacity of up to 5 cubic feet, it keeps the internal temperature of the container at a consistent 40 degrees Fahrenheit. This can keep liquids chilled, preserve cooked foods for up to 1 week, raw meats for up to 3 days, and fruits and vegetables for weeks. If you hold the orb without gloves or other insulating method, you take 1 cold damage each minute you hold it. At the GM's discretion, the orb's cold can be applied to other uses, such as keeping it in contact with a hot item to cool down the item enough to be handled, wrapping it and using it as a cooling pad to bring down fever or swelling, or similar.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_defender-shabti", + "fields": { + "name": "Defender Shabti", + "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_deserters-boots", + "fields": { + "name": "Deserter's Boots", + "desc": "While you wear these boots, your walking speed increases by 10 feet, and you gain a +1 bonus to Dexterity saving throws.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_devil-shark-mask", + "fields": { + "name": "Devil Shark Mask", + "desc": "When you wear this burgundy face covering, it transforms your face into a shark-like visage, and the mask sprouts wicked horns. While wearing this mask, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d8 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. You gain a +1 bonus to attack and damage rolls with this magic bite. In addition, you have advantage on Charisma (Intimidation) checks while wearing this mask.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_devilish-doubloon", + "fields": { + "name": "Devilish Doubloon", + "desc": "This gold coin bears the face of a leering devil on the obverse. If it is placed among other coins, it changes its appearance to mimic its neighbors, doing so over the course of 1 hour. This is a purely cosmetic change, and it returns to its original appearance when grasped by a creature with an Intelligence of 5 or higher. You can use a bonus action to toss the coin up to 20 feet. When the coin lands, it transforms into a barbed devil. The devil vanishes after 1 hour or when it is reduced to 0 hit points. When the devil vanishes, the coin reappears in a collection of at least 20 gold coins elsewhere on the same plane where it vanished. The devil is friendly to you and your companions. Roll initiative for the devil, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the devil, it defends itself from hostile creatures but otherwise takes no actions. If you are reduced to 0 hit points and the devil is still alive, it moves to your body and uses its action to grab your soul. You must succeed on a DC 15 Charisma saving throw or the devil steals your soul and you die. If the devil fails to grab your soul, it vanishes as if slain. If the devil grabs your soul, it uses its next action to transport itself back to the Hells, disappearing in a flash of brimstone. If the devil returns to the Hells with your soul, its coin doesn't reappear, and you can be restored to life only by means of a true resurrection or wish spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_devils-barb", + "fields": { + "name": "Devil's Barb", + "desc": "This thin wand is fashioned from the fiendish quill of a barbed devil. While attuned to it, you have resistance to cold damage. The wand has 6 charges for the following properties. It regains 1d6 expended charges daily at dusk. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into cinders and is destroyed. Hurl Flame. While holding the wand, you can expend 2 charges as an action to hurl a ball of devilish flame at a target you can see within 150 feet of you. The target must succeed on a DC 15 Dexterity check or take 3d6 fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire. Devil's Sight. While holding the wand, you can expend 1 charge as an action to cast the darkvision spell on yourself. Magical darkness doesn't impede this darkvision.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_digger-shabti", + "fields": { + "name": "Digger Shabti", + "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dimensional-net", + "fields": { + "name": "Dimensional Net", + "desc": "Woven from the hair of celestials and fiends, this shimmering iridescent net can subdue and capture otherworldly creatures. You have a +1 bonus to attack rolls with this magic weapon. In addition to the normal effects of a net, this net prevents any Large or smaller aberration, celestial, or fiend hit by it from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. When such a creature is bound in this way, a creature must succeed on a DC 30 Strength (Athletics) check to free the bound creature. The net has immunity to damage dealt by the bound creature, but another creature can deal 20 slashing damage to the net and free the bound creature, ending the effect. The net has AC 15 and 30 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the net drops to 0 hit points, it is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dirgeblade", + "fields": { + "name": "Dirgeblade", + "desc": "This weapon is an exquisitely crafted rapier set in a silver and leather scabbard. The blade glows a faint stormy blue and is encircled by swirling wisps of clouds. You gain a +3 bonus to attack and damage rolls made with this magic weapon. This weapon, when unsheathed, sheds dim blue light in a 20-foot radius. When you hit a creature with it, you can expend 1 Bardic Inspiration to impart a sense of overwhelming grief in the target. A creature affected by this grief must succeed on a DC 15 Wisdom saving throw or fall prone and become incapacitated by sadness until the end of its next turn. Once a month under an open sky, you can use a bonus action to speak this magic sword's command word and cause the sword to sing a sad dirge. This dirge conjures heavy rain (or snow in freezing temperatures) in the region for 2d6 hours. The precipitation falls in an X-mile radius around you, where X is equal to your level.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dirk-of-daring", + "fields": { + "name": "Dirk of Daring", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While holding the dagger, you have advantage on saving throws against being frightened.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_distracting-doubloon", + "fields": { + "name": "Distracting Doubloon", + "desc": "This gold coin is plain and matches the dominant coin of the region. Typically, 2d6 distracting doubloons are found together. You can use an action to toss the coin up to 20 feet. The coin bursts into a flash of golden light on impact. Each creature within a 15-foot radius of where the coin landed must succeed on a DC 11 Wisdom saving throw or have disadvantage on Wisdom (Perception) checks made to perceive any creature or object other than the coin for 1 minute. If an affected creature takes damage, it can repeat the saving throw, ending the effect on itself on a success. At the end of the duration, the coin crumbles to dust and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_djinn-vessel", + "fields": { + "name": "Djinn Vessel", + "desc": "A rough predecessor to the ring of djinni summoning and the ring elemental command, this clay vessel is approximately a foot long and half as wide. An iron stopper engraved with a rune of binding seals its entrance. If the vessel is empty, you can use an action to remove the stopper and cast the banishment spell (save DC 15) on a celestial, elemental, or fiend within 60 feet of you. At the end of the spell's duration, if the target is an elemental, it is trapped in this vessel. While trapped, the elemental can take no actions, but it is aware of occurrences outside of the vessel and of other djinn vessels. You can use an action to remove the vessel's stopper and release the elemental the vessel contains. Once released, the elemental acts in accordance with its normal disposition and alignment.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_doppelganger-ointment", + "fields": { + "name": "Doppelganger Ointment", + "desc": "This ceramic jar contains 1d4 + 1 doses of a thick, creamy substance that smells faintly of pork fat. The jar and its contents weigh 1/2 a pound. Applying a single dose to your body takes 1 minute. For 24 hours or until it is washed off with an alcohol solution, you can change your appearance, as per the Change Appearance option of the alter self spell. For the duration, you can use a bonus action to return to your normal form, and you can use an action to return to the form of the mimicked creature. If you add a piece of a specific creature (such as a single hair, nail paring, or drop of blood), the ointment becomes more powerful allowing you to flawlessly imitate that creature, as long as its body shape is humanoid and within one size category of your own. While imitating that creature, you have advantage on Charisma checks made to convince others you are that specific creature, provided they didn't see you change form.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dragonstooth-blade", + "fields": { + "name": "Dragonstooth Blade", + "desc": "This razor-sharp blade, little more than leather straps around the base of a large tooth, still carries the power of a dragon. This weapon's properties are determined by the type of dragon that once owned this tooth. The GM chooses the dragon type or determines it randomly from the options below. When you hit with an attack using this magic sword, the target takes an extra 1d6 damage of a type determined by the kind of dragon that once owned the tooth. In addition, you have resistance to the type of damage associated with that dragon. | d6 | Damage Type | Dragon Type |\n| --- | ----------- | ------------------- |\n| 1 | Acid | Black or Copper |\n| 2 | Fire | Brass, Gold, or Red |\n| 3 | Poison | Green |\n| 4 | Lightning | Blue or Bronze |\n| 5 | Cold | Silver or White |\n| 6 | Necrotic | Undead |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_draught-of-ambrosia", + "fields": { + "name": "Draught of Ambrosia", + "desc": "The liquid in this tiny vial is golden and has a heady, floral scent. When you drink the draught, it fortifies your body and mind, removing any infirmity caused by old age. You stop aging and are immune to any magical and nonmagical aging effects. The magic of the ambrosia lasts ten years, after which time its power fades, and you are once again subject to the ravages of time and continue aging.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_draught-of-the-black-owl", + "fields": { + "name": "Draught of the Black Owl", + "desc": "When you drink this potion, you transform into a black-feathered owl for 1 hour. This effect works like the polymorph spell, except you can take only the form of an owl. While you are in the form of an owl, you retain your Intelligence, Wisdom, and Charisma scores. If you are a druid with the Wild Shape feature, you can transform into a giant owl instead. Drinking this potion doesn't expend a use of Wild Shape.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dread-scarab", + "fields": { + "name": "Dread Scarab", + "desc": "The abdomen of this beetleshaped brooch is decorated with the grim semblance of a human skull. If you hold it in your hand for 1 round, an Abyssal inscription appears on its surface, revealing its magical nature. While wearing this brooch, you gain the following benefits:\n- You have advantage on saving throws against spells.\n- The scarab has 9 charges. If you fail a saving throw against a conjuration spell or a harmful effect originating from a celestial creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into dust and is destroyed when its last charge is expended.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dust-of-desiccation", + "fields": { + "name": "Dust of Desiccation", + "desc": "This small packet contains soot-like dust. There is enough of it for one use. When you use an action to blow the choking dust from your palm, each creature in a 30-foot cone must make a DC 15 Dexterity saving throw, taking 3d10 necrotic damage on a failed save, or half as much damage on a successful one. A creature that fails this saving throw can't speak until the end of its next turn as it chokes on the dust. Alternatively, you can use an action to throw the dust into the air, affecting yourself and each creature within 30 feet of you with the dust.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dust-of-muffling", + "fields": { + "name": "Dust of Muffling", + "desc": "You can scatter this fine, silvery-gray dust on the ground as an action, covering a 10-foot-square area. There is enough dust in one container for up to 5 uses. When a creature moves over an area covered in the dust, it has advantage on Dexterity (Stealth) checks to remain unheard. The effect remains until the dust is swept up, blown away, or tracked away by the traffic of eight or more creatures passing through the area.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_dust-of-the-dead", + "fields": { + "name": "Dust of the Dead", + "desc": "This stoppered vial is filled with dust and ash. There is enough of it for one use. When you use an action to sprinkle the dust on a willing humanoid, the target falls into a death-like slumber for 8 hours. While asleep, the target appears dead to all mundane and magical means, but spells that target the dead, such as the speak with dead spell, fail when used on the target. The cause of death is not evident, though any wounds the target has taken remain visible. If the target takes damage while asleep, it has resistance to the damage. If the target is reduced to below half its hit points while asleep, it must succeed on a DC 15 Constitution saving throw to wake up. If the target is reduced to 5 hit points or fewer while asleep, it wakes up. If the target is unwilling, it must succeed on a DC 11 Constitution saving throw to avoid the effect of the dust. A sleeping creature is considered an unwilling target.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_eagle-cape", + "fields": { + "name": "Eagle Cape", + "desc": "The exterior of this silk cape is lined with giant eagle feathers. When you fall while wearing this cape, you descend 60 feet per round, take no damage from falling, and always land on your feet. In addition, you can use an action to speak the cloak's command word. This turns the cape into a pair of eagle wings which give you a flying speed of 60 feet for 1 hour or until you repeat the command word as an action. When the wings revert back to a cape, you can't use the cape in this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_earrings-of-the-agent", + "fields": { + "name": "Earrings of the Agent", + "desc": "Aside from a minor difference in size, these simple golden hoops are identical to one another. Each hoop has 1 charge and provides a different magical effect. Each hoop regains its expended charge daily at dawn. You must be wearing both hoops to use the magic of either hoop.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_earrings-of-the-eclipse", + "fields": { + "name": "Earrings of the Eclipse", + "desc": "These two cubes of smoked quartz are mounted on simple, silver posts. While you are wearing these earrings, you can take the Hide action while you are motionless in an area of dim light or darkness even when a creature can see you or when you have nothing to obscure you from the sight of a creature that can see you. If you are in darkness when you use the Hide action, you have advantage on the Dexterity (Stealth) check. If you move, attack, cast a spell, or do anything other than remain motionless, you are no longer hidden and can be detected normally.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_earrings-of-the-storm-oyster", + "fields": { + "name": "Earrings of the Storm Oyster", + "desc": "The deep blue pearls forming the core of these earrings come from oysters that survive being struck by lightning. While wearing these earrings, you gain the following benefits:\n- You have resistance to lightning and thunder damage.\n- You can understand Primordial. When it is spoken, the pearls echo the words in a language you can understand, at a whisper only you can hear.\n- You can't be deafened.\n- You can breathe air and water. - As an action, you can cast the sleet storm spell (save DC 15) from the earrings. The earrings can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ebon-shards", + "fields": { + "name": "Ebon Shards", + "desc": "These obsidian shards are engraved with words in Deep Speech, and their presence disquiets non-evil, intelligent creatures. The writing on the shards is obscure, esoteric, and possibly incomplete. The shards have 10 charges and give you access to a powerful array of Void magic spells. While holding the shards, you use an action to expend 1 or more of its charges to cast one of the following spells from them, using your spell save DC and spellcasting ability: living shadows* (5 charges), maddening whispers* (2 charges), or void strike* (3 charges). You can also use an action to cast the crushing curse* spell from the shards without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness or madness. The shards regain 1d6 + 4 expended charges daily at dusk. Each time you use the ebon shards to cast a spell, you must succeed on a DC 12 Charisma saving throw or take 2d6 psychic damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_efficacious-eyewash", + "fields": { + "name": "Efficacious Eyewash", + "desc": "This clear liquid glitters with miniscule particles of light. A bottle of this potion contains 6 doses, and its lid comes with a built-in dropper. You can use an action to apply 1 dose to the eyes of a blinded creature. The blinded condition is suppressed for 2d4 rounds. If the blinded condition has a duration, subtract those rounds from the total duration; if doing so reduces the overall duration to 0 rounds or less, then the condition is removed rather than suppressed. This eyewash doesn't work on creatures that are naturally blind, such as grimlocks, or creatures blinded by severe damage or removal of their eyes.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_eldritch-rod", + "fields": { + "name": "Eldritch Rod", + "desc": "This bone rod is carved into the shape of twisting tendrils or tentacles. You can use this rod as an arcane focus. The rod has 3 charges and regains all expended charges daily at dawn. When you cast a spell that requires an attack roll and that deals damage while holding this rod, you can expend 1 of its charges as part of the casting to enhance that spell. If the attack hits, the spell also releases tendrils that bind the target, grappling it for 1 minute. At the start of each of your turns, the grappled target takes 1d6 damage of the same type dealt by the spell. At the end of each of its turns, the grappled target can make a Dexterity saving throw against your spell save DC, freeing itself from the tendrils on a success. The rod's magic can grapple only one target at a time. If you use the rod to grapple another target, the effect on the previous target ends.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_elemental-wraps", + "fields": { + "name": "Elemental Wraps", + "desc": "These cloth arm wraps are decorated with elemental symbols depicting flames, lightning bolts, snowflakes, and similar. You have resistance to acid, cold, fire, lightning, or thunder damage while you wear these arm wraps. You choose the type of damage when you first attune to the wraps, and you can choose a different type of damage at the end of a short or long rest. The wraps have 10 charges. When you hit with an unarmed strike while wearing these wraps, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 damage of the type to which you have resistance. The wraps regain 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the wraps unravel and fall to the ground, becoming nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_elixir-of-corruption", + "fields": { + "name": "Elixir of Corruption", + "desc": "This elixir looks, smells, and tastes like a potion of heroism; however, it is actually a poisonous elixir masked by illusion magic. An identify spell reveals its true nature. If you drink it, you must succeed on a DC 15 Constitution saving throw or be corrupted by the diabolical power within the elixir for 1 week. While corrupted, you lose immunity to diseases, poison damage, and the poisoned condition. If you aren't normally immune to poison damage, you instead have vulnerability to poison damage while corrupted. The corruption can be removed with greater restoration or similar magic.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_elixir-of-deep-slumber", + "fields": { + "name": "Elixir of Deep Slumber", + "desc": "The milky-white liquid in this vial smells of jasmine and sandalwood. When you drink this potion, you fall into a deep sleep, from which you can't be physically awakened, for 1 hour. A successful dispel magic (DC 13) cast on you awakens you but cancels any beneficial effects of the elixir. When you awaken at the end of the hour, you benefit from the sleep as if you had finished a long rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_elixir-of-focus", + "fields": { + "name": "Elixir of Focus", + "desc": "This deep amber concoction seems to glow with an inner light. When you drink this potion, you have advantage on the next ability check you make within 10 minutes, then the elixir's effect ends.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_elixir-of-mimicry", + "fields": { + "name": "Elixir of Mimicry", + "desc": "When you drink this sweet, oily, black liquid, you can imitate the voice of a single creature that you have heard speak within the past 24 hours. The effects last for 3 minutes.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_elixir-of-oracular-delirium", + "fields": { + "name": "Elixir of Oracular Delirium", + "desc": "This pearlescent fluid perpetually swirls inside its container with a slow kaleidoscopic churn. When you drink this potion, you can cast the guidance spell for 1 hour at will. You can end this effect early as an action and gain the effects of the augury spell. If you do, you are afflicted with short-term madness after learning the spell's results.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_elixir-of-spike-skin", + "fields": { + "name": "Elixir of Spike Skin", + "desc": "Slivers of bone float in the viscous, gray liquid inside this vial. When you drink this potion, bone-like spikes protrude from your skin for 1 hour. Each time a creature hits you with a melee weapon attack while within 5 feet of you, it must succeed on a DC 15 Dexterity saving throw or take 1d4 piercing damage from the spikes. In addition, while you are grappling a creature or while a creature is grappling you, it takes 1d4 piercing damage at the start of your turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_elixir-of-the-clear-mind", + "fields": { + "name": "Elixir of the Clear Mind", + "desc": "This cerulean blue liquid sits calmly in its flask even when jostled or shaken. When you drink this potion, you have advantage on Wisdom checks and saving throws for 1 hour. For the duration, if you fail a saving throw against an enchantment or illusion spell or similar magic effect, you can choose to succeed instead. If you do, you draw upon all the potion's remaining power, and its effects end immediately thereafter.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_elixir-of-the-deep", + "fields": { + "name": "Elixir of the Deep", + "desc": "This thick, green, swirling liquid tastes like salted mead. For 1 hour after drinking this elixir, you can breathe underwater, and you can see clearly underwater out to a range of 60 feet. The elixir doesn't allow you to see through magical darkness, but you can see through nonmagical clouds of silt and other sedimentary particles as if they didn't exist. For the duration, you also have advantage on saving throws against the spells and other magical effects of fey creatures native to water environments, such as a Lorelei (see Tome of Beasts) or Water Horse (see Creature Codex).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_elixir-of-wakefulness", + "fields": { + "name": "Elixir of Wakefulness", + "desc": "This effervescent, crimson liquid is commonly held in a thin, glass vial capped in green wax. When you drink this elixir, its effects last for 8 hours. While the elixir is in effect, you can't fall asleep by normal means. You have advantage on saving throws against effects that would put you to sleep. If you are affected by the sleep spell, your current hit points are considered 10 higher when determining the effects of the spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_elk-horn-rod", + "fields": { + "name": "Elk Horn Rod", + "desc": "This rod is fashioned from elk or reindeer horn. As an action, you can grant a +1 bonus on saving throws against spells and magical effects to a target touched by the wand, including yourself. The bonus lasts 1 round. If you are holding the rod while performing the somatic component of a dispel magic spell or comparable magic, you have a +1 bonus on your spellcasting ability check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_encouraging-breastplate", + "fields": { + "name": "Encouraging Breastplate", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_encouraging-chain-mail", + "fields": { + "name": "Encouraging Chain Mail", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_encouraging-chain-shirt", + "fields": { + "name": "Encouraging Chain Shirt", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_encouraging-half-plate", + "fields": { + "name": "Encouraging Half Plate", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_encouraging-hide-armor", + "fields": { + "name": "Encouraging Hide Armor", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_encouraging-leather-armor", + "fields": { + "name": "Encouraging Leather Armor", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_encouraging-padded-armor", + "fields": { + "name": "Encouraging Padded Armor", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_encouraging-plate", + "fields": { + "name": "Encouraging Plate", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_encouraging-ring-mail", + "fields": { + "name": "Encouraging Ring Mail", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_encouraging-scale-mail", + "fields": { + "name": "Encouraging Scale Mail", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_encouraging-splint", + "fields": { + "name": "Encouraging Splint", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_encouraging-studded-leather", + "fields": { + "name": "Encouraging Studded Leather", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, each friendly creature within 10 feet of you that can see you gains a +1 bonus to attack rolls and saving throws. If you are a paladin with the Aura of Courage feature, this bonus increases to +2.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_enraging-ammunition", + "fields": { + "name": "Enraging Ammunition", + "desc": "When you hit a creature with a ranged attack using this magical ammunition, the target must succeed on a DC 13 Wisdom saving throw or become enraged for 1 minute. On its turn, an enraged creature moves toward you by the most direct route, trying to get within 5 feet of you. It doesn't avoid opportunity attacks, but it moves around or avoids damaging terrain, such as lava or a pit. If the enraged creature is within 5 feet of you, it attacks you. An enraged creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ensnaring-ammunition", + "fields": { + "name": "Ensnaring Ammunition", + "desc": "When you hit a creature with a ranged attack using this magical ammunition, the target takes only half the damage from the attack, and the target is restrained as the ammunition bursts into entangling strands that wrap around it. As an action, the restrained target can make a DC 13 Strength check, bursting the bonds on a success. The strands can also be attacked and destroyed (AC 10; hp 5; immunity to bludgeoning, poison, and psychic damage).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_entrenching-mattock", + "fields": { + "name": "Entrenching Mattock", + "desc": "You gain a +1 to attack and damage rolls with this magic weapon. This bonus increases to +3 when you use the pick to attack a creature made of earth or stone, such as an earth elemental or stone golem. As a bonus action, you can slam the head of the pick into earth, sand, mud, or rock within 5 feet of you to create a wall of that material up to 30 feet long, 3 feet high, and 1 foot thick along that surface. The wall provides half cover to creatures behind it. The pick can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_everflowing-bowl", + "fields": { + "name": "Everflowing Bowl", + "desc": "This smooth, stone bowl feels especially cool to the touch. It holds up to 1 pint of water. When placed on the ground, the bowl magically draws water from the nearby earth and air, filling itself after 1 hour. In arid or desert environments, the bowl fills itself after 8 hours. The bowl never overflows itself.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_explosive-orb-of-obfuscation", + "fields": { + "name": "Explosive Orb of Obfuscation", + "desc": "Originally fashioned in the laboratory of the archmage Lugax for his good natured but often roguish friend, Kennich, these spherical ceramic containers are the size of a large human fist. Arcane sigils decorate each orb, detailing its properties to those capable of reading the sigils. The magic-infused chemicals in each orb must be briefly exposed to air before being thrown to activate them. A metal rod sits in the cork of each orb, allowing you to quickly twist open the container before throwing it. Typically, 1d4 + 1 orbs of obfuscation are found together. You can use an action to activate and throw the orb up to 60 feet. The orb explodes on impact and is destroyed. The orb's effects are determined by its type. Orb of Obfuscation (Uncommon). This orb is a dark olive color with a stripe of bright blue paint encircling it. When activated, the orb releases an opaque grey gas and creates a 30-foot-radius sphere of this gas centered on the point where the orb landed. The sphere spreads around corners, and its area is heavily obscured. The magical gas also dampens sound. Each creature in the gas can hear only sounds originating within 5 feet of it, and creatures outside of the gas can’t hear sounds originating inside the gas. The gas lasts for 5 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. Explosive Orb of Obfuscation (Rare). This oblong orb has a putty grey color with a stripe of yellow paint encircling it. When activated, this orb releases the same opaque grey gas as the orb of obfuscation. In addition to the effects of that gas, this orb also releases a burst of caustic chemicals on impact. Each creature within a 15-foot radius of where the orb landed must make a DC 15 Dexterity saving throw, taking 4d4 acid damage on a failed save, or half as much damage on a successful one. If a creature fails this saving throw, the chemicals cling to it for 1 minute. At the end of each of its turns, the creature must succeed on a DC 15 Constitution saving throw or take 2d4 acid damage from the clinging chemicals. Any creature can take an action to remove the clinging chemicals with a successful DC 15 Wisdom (Medicine) check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_exsanguinating-blade", + "fields": { + "name": "Exsanguinating Blade", + "desc": "This double-bladed dagger has an ivory hilt, and its gold pommel is shaped into a woman's head with ruby eyes and a fanged mouth opened in a scream. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon against a creature that has blood, the dagger gains 1 charge. The dagger can hold 1 charge at a time. You can use a bonus action to expend 1 charge from the dagger to cause one of the following effects: - You or a creature you touch with the blade regains 2d8 hit points. - The next time you hit a creature that has blood with this weapon, it deals an extra 2d8 necrotic damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_extract-of-dual-mindedness", + "fields": { + "name": "Extract of Dual-Mindedness", + "desc": "This potion can be distilled only from a hormone found in the hypothalamus of a two-headed giant of genius intellect. For 1 minute after drinking this potion, you can concentrate on two spells at the same time, and you have advantage on Constitution saving throws made to maintain your concentration on a spell when you take damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_eye-of-horus", + "fields": { + "name": "Eye of Horus", + "desc": "This gold and lapis lazuli amulet helps you determine reality from phantasms and trickery. While wearing it, you have advantage on saving throws against illusion spells and against being frightened.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_eye-of-the-golden-god", + "fields": { + "name": "Eye of the Golden God", + "desc": "A shining multifaceted violet gem sits at the center of this fist-sized amulet. A beautifully forged band of platinum encircles the gem and affixes it to a well-made series of interlocking platinum chain links. The violet gem is warm to the touch. While wearing this amulet, you can't be frightened and you don't suffer from exhaustion. In addition, you always know which item within 20 feet of you is the most valuable, though you don't know its actual value or if it is magical. Each time you finish a long rest while attuned to this amulet, roll a 1d10. On a 1-3, you awaken from your rest with that many valuable objects in your hand. The objects are minor, such as copper coins, at first and progressively get more valuable, such as gold coins, ivory statuettes, or gemstones, each time they appear. Each object is always small enough to fit in a single hand and is never worth more than 1,000 gp. The GM determines the type and value of each object. Once the left eye of an ornate and magical statue of a pit fiend revered by a small cult of Mammon, this exquisite purple gem was pried from the idol by an adventurer named Slick Finnigan. Slick and his companions had taken it upon themselves to eradicate the cult, eager for the accolades they would receive for defeating an evil in the community. The loot they stood to gain didn't hurt either. After the assault, while his companions were busy chasing the fleeing members of the cult, Slick pocketed the gem, disfiguring the statue and weakening its power in the process. He was then attacked by a cultist who had managed to evade notice by the adventurers. Slick escaped with his life, and the gem, but was unable to acquire the second eye. Within days, the thief was finding himself assaulted by devils and cultists. He quickly offloaded his loot with a collection of merchants in town, including a jeweler who was looking for an exquisite stone to use in a piece commissioned by a local noble. Slick then set off with his pockets full of coin, happily leaving the devilish drama behind. This magical amulet attracts the attention of worshippers of Mammon, who can almost sense its presence and are eager to claim its power for themselves, though a few extremely devout members of the weakened cult wish to return the gem to its original place in the idol. Due to this, and a bit of bad luck, this amulet has changed hands many times over the decades.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_eyes-of-the-outer-dark", + "fields": { + "name": "Eyes of the Outer Dark", + "desc": "These lenses are crafted of polished, opaque black stone. When placed over the eyes, however, they allow the wearer not only improved vision but glimpses into the vast emptiness between the stars. While wearing these lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, its range is extended by 60 feet. As an action, you can use the lenses to pierce the veils of time and space and see into the outer darkness. You gain the benefits of the foresight and true seeing spells for 10 minutes. If you activate this property and you aren't suffering from a madness, you take 3d8 psychic damage. Once used, this property of the lenses can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_eyes-of-the-portal-masters", + "fields": { + "name": "Eyes of the Portal Masters", + "desc": "While you wear these crystal lenses over your eyes, you can sense the presence of any dimensional portal within 60 feet of you and whether the portal is one-way or two-way. Once you have worn the eyes for 10 minutes, their magic ceases to function until the next dawn. Putting the lenses on or off requires an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_fanged-mask", + "fields": { + "name": "Fanged Mask", + "desc": "This tribal mask is made of wood and adorned with animal fangs. Once donned, it melds to your face and causes fangs to sprout from your mouth. While wearing this mask, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. If you already have a bite attack when you don and attune to this mask, your bite attack's damage dice double (for example, 1d4 becomes 2d4).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_farhealing-bandages", + "fields": { + "name": "Farhealing Bandages", + "desc": "This linen bandage is yellowed and worn with age. You can use an action wrap it around the appendage of a willing creature and activate its magic for 1 hour. While the target is within 60 feet of you and the bandage's magic is active, you can use an action to trigger the bandage, and the target regains 2d4 hit points. The bandage becomes inactive after it has restored 15 hit points to a creature or when 1 hour has passed. Once the bandage becomes inactive, it can't be used again until the next dawn. You can be attuned to only one farhealing bandage at a time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_farmer-shabti", + "fields": { + "name": "Farmer Shabti", + "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_fear-eaters-mask", + "fields": { + "name": "Fear-Eater's Mask", + "desc": "This painted, wooden mask bears the visage of a snarling, fiendish face. While wearing the mask, you can use a bonus action to feed on the fear of a frightened creature within 30 feet of you. The target must succeed on a DC 13 Wisdom saving throw or take 2d6 psychic damage. You regain hit points equal to the damage dealt. If you are not injured, you gain temporary hit points equal to the damage dealt instead. Once a creature has failed this saving throw, it is immune to the effects of this mask for 24 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_feather-token", + "fields": { + "name": "Feather Token", + "desc": "The following are additional feather token options. Cloud (Uncommon). This white feather is shaped like a cloud. You can use an action to step on the token, which expands into a 10-foot-diameter cloud that immediately begins to rise slowly to a height of up to 20 feet. Any creatures standing on the cloud rise with it. The cloud disappears after 10 minutes, and anything that was on the cloud falls slowly to the ground. \nDark of the Moon (Rare). This black feather is shaped like a crescent moon. As an action, you can brush the feather over a willing creature’s eyes to grant it the ability to see in the dark. For 1 hour, that creature has darkvision out to a range of 60 feet, including in magical darkness. Afterwards, the feather disappears. \n Held Heart (Very Rare). This red feather is shaped like a heart. While carrying this token, you have advantage on initiative rolls. As an action, you can press the feather against a willing, injured creature. The target regains all its missing hit points and the feather disappears. \nJackdaw’s Dart (Common). This black feather is shaped like a dart. While holding it, you can use an action to throw it at a creature you can see within 30 feet of you. As it flies, the feather transforms into a blot of black ink. The target must succeed on a DC 11 Dexterity saving throw or the feather leaves a black mark of misfortune on it. The target has disadvantage on its next ability check, attack roll, or saving throw then the mark disappears. A remove curse spell ends the mark early.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_fellforged-armor", + "fields": { + "name": "Fellforged Armor", + "desc": "While wearing this steam-powered magic armor, you gain a +1 bonus to AC, your Strength score increases by 2, and you gain the ability to cast speak with dead as an action. As long as you remain cursed, you exude an unnatural aura, causing beasts with Intelligence 3 or less within 30 feet of you to be frightened. Once you have used the armor to cast speak with dead, you can't cast it again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ferrymans-coins", + "fields": { + "name": "Ferryman's Coins", + "desc": "It is customary in many faiths to weight a corpse's eyes with pennies so they have a fee to pay the ferryman when he comes to row them across death's river to the afterlife. Ferryman's coins, though, ensure the body stays in the ground regardless of the spirit's destination. These coins, which feature a death's head on one side and a lock and chain on the other, prevent a corpse from being raised as any kind of undead. When you place two coins on a corpse's closed lids and activate them with a simple prayer, they can't be removed unless the person is resurrected (in which case they simply fall away), or someone makes a DC 15 Strength check to remove them. Yanking the coins away does no damage to the corpse.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_feysworn-contract", + "fields": { + "name": "Feysworn Contract", + "desc": "This long scroll is written in flowing Elvish, the words flickering with a pale witchlight, and marked with the seal of a powerful fey or a fey lord or lady. When you use an action to present this scroll to a fey whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the fey, negotiating a service from it in exchange for a reward. The fey is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the fey, the truce is broken, and the creature can act normally. If the fey refuses the offer, it is free to take any actions it wishes. Should you and the fey reach an agreement that is satisfactory to both parties, you must sign the agreement and have the fey do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the fey to the agreement until its service is rendered and the reward paid, at which point the scroll fades into nothingness. Fey are notoriously clever folk, and while they must adhere to the letter of any bargains they make, they always look for any advantage in their favor. If either party breaks the bargain, that creature immediately takes 10d6 poison damage, and the charter is destroyed, ending the contract.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_fiendish-charter", + "fields": { + "name": "Fiendish Charter", + "desc": "This long scroll bears the mark of a powerful creature of the Lower Planes, whether an archduke of Hell, a demon lord of the Abyss, or some other powerful fiend or evil deity. When you use an action to present this scroll to a fiend whose Challenge Rating is equal to or less than your level, the binding powers of the scroll compel it to listen to you. You can then attempt to strike a bargain with the fiend, negotiating a service from it in exchange for a reward. The fiend is under no compulsion to strike the bargain; it is compelled only to parley long enough for you to present a bargain and allow for negotiations. If you or your allies attack or otherwise attempt to harm the fiend, the truce is broken, and the creature can act normally. If the fiend refuses the offer, it is free to take any actions it wishes. Should you and the fiend reach an agreement that is satisfactory to both parties, you must sign the charter in blood and have the fiend do likewise (or make its mark, if it has no form of writing). The writing on the scroll changes to reflect the terms of the agreement struck. The magic of the charter holds both you and the fiend to the agreement until its service is rendered and the reward paid, at which point the scroll ignites and burns into ash. The contract's wording should be carefully considered, as fiends are notorious for finding loopholes or adhering to the letter of the agreement to their advantage. If either party breaks the bargain, that creature immediately takes 10d6 necrotic damage, and the charter is destroyed, ending the contract.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_figurehead-of-prowess", + "fields": { + "name": "Figurehead of Prowess", + "desc": "A figurehead of prowess must be mounted on the bow of a ship for its magic to take effect. While mounted on a ship, the figurehead’s magic affects the ship and every creature on the ship. A figurehead can be mounted on any ship larger than a rowboat, regardless if that ship sails the sea, the sky, rivers and lakes, or the sands of the desert. A ship can have only one figurehead mounted on it at a time. Most figureheads are always active, but some have properties that must be activated. To activate a figurehead’s special property, a creature must be at the helm of the ship, referred to below as the “pilot,” and must use an action to speak the figurehead’s command word. \nAlbatross (Uncommon). While this figurehead is mounted on a ship, the ship’s pilot can double its proficiency bonus with navigator’s tools when navigating the ship. In addition, the ship’s pilot doesn’t have disadvantage on Wisdom (Perception) checks that rely on sight when peering through fog, rain, dust storms, or other natural phenomena that would ordinarily lightly obscure the pilot’s vision. \nBasilisk (Uncommon). While this figurehead is mounted on a ship, the ship’s AC increases by 2. \nDragon Turtle (Very Rare). While this figurehead is mounted on a ship, each creature on the ship has resistance to fire damage, and the ship’s damage threshold increases by 5. If the ship doesn’t normally have a damage threshold, it gains a damage threshold of 5. \nKraken (Rare). While this figurehead is mounted on a ship, the pilot can animate all of the ship’s ropes. If a creature on the ship uses an animated rope while taking the grapple action, the creature has advantage on the check. Alternatively, the pilot can command the ropes to move as if being moved by a crew, allowing a ship to dock or a sailing ship to sail without a crew. The pilot can end this effect as a bonus action. When the ship’s ropes have been animated for a total of 10 minutes, the figurehead’s magic ceases to function until the next dawn. \nManta Ray (Rare). While this figurehead is mounted on a ship, the ship’s speed increases by half. For example, a ship with a speed of 4 miles per hour would have a speed of 6 miles per hour while this figurehead was mounted on it. \nNarwhal (Very Rare). While this figurehead is mounted on a ship, each creature on the ship has resistance to cold damage, and the ship can break through ice sheets without taking damage or needing to make a check. \nOctopus (Rare). This figurehead can be mounted only on ships designed for water travel. While this figurehead is mounted on a ship, the pilot can force the ship to dive beneath the water. The ship moves at its normal speed while underwater, regardless of its normal method of locomotion. Each creature on the ship remains on the ship and can breathe normally as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to resurface at a rate of 60 feet per round. When the ship has spent a total of 1 hour underwater, the figurehead’s magic ceases to function until the next dawn. \nSphinx (Legendary). This figurehead can be mounted only on a ship that isn’t designed for air travel. While this figurehead is mounted on a ship, the pilot can command the ship to rise into the air. The ship moves at its normal speed while in the air, regardless of its normal method of locomotion. Each creature on the ship remains on the ship as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to descend at a rate of 60 feet per round until it reaches land or water. When the ship has spent a total of 8 hours in the sky, the figurehead’s magic ceases to function until the next dawn. \nXorn (Very Rare). This figurehead can be mounted only on a ship designed for land travel. While this figurehead is mounted on a ship, the pilot can force the ship to burrow into the earth. The ship moves at its normal speed while burrowing, regardless of its normal method of locomotion. The ship can burrow through nonmagical, unworked sand, mud, earth, and stone, and it doesn’t disturb the material it moves through. Each creature on the ship remains on the ship and can breathe normally as long as the creature starts and ends its turn in contact with the ship. The pilot can end this effect as a bonus action, causing the ship to resurface at a rate of 60 feet per round. When the ship has spent a total of 1 hour burrowing, the figurehead’s magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-amber-bee", + "fields": { + "name": "Figurine of Wondrous Power (Amber Bee)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-basalt-cockatrice", + "fields": { + "name": "Figurine of Wondrous Power (Basalt Cockatrice)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-coral-shark", + "fields": { + "name": "Figurine of Wondrous Power (Coral Shark)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-hematite-aurochs", + "fields": { + "name": "Figurine of Wondrous Power (Hematite Aurochs)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-lapis-camel", + "fields": { + "name": "Figurine of Wondrous Power (Lapis Camel)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-marble-mistwolf", + "fields": { + "name": "Figurine of Wondrous Power (Marble Mistwolf)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-tin-dog", + "fields": { + "name": "Figurine of Wondrous Power (Tin Dog)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_figurine-of-wondrous-power-violet-octopoid", + "fields": { + "name": "Figurine of Wondrous Power (Violet Octopoid)", + "desc": "The following are additional figurine of wondrous power options. \nAmber Bee (Uncommon). This amber statuette is of a honeybee. It can become a giant honey bee (see Tome of Beasts 2) for up to 6 hours. Once it has been used, it can’t be used again until 2 days have passed. \nBasalt Cockatrice (Uncommon). This basalt statuette is carved in the likeness of a cockatrice. It can become a cockatrice for up to 1 hour. Once it has been used, it can’t be used again until 2 days have passed. While it is in cockatrice form, you and your allies within 30 feet of it have advantage on saving throws against being petrified. \nCoral Shark (Rare). This coral statuette of a shark can become a hunter shark for up to 6 hours. It can be ridden as a mount, and the rider can breathe underwater while riding it. Once it has been used, it can’t be used again until 5 days have passed. \nHematite Aurochs (Rare). This hematite statuette can become a bull (see Tome of Beasts 2). It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in bull form, it is considered to be a Huge creature for the purpose of determining its carrying capacity, and nonmagical difficult terrain doesn’t cost it extra movement. \nLapis Camel (Rare). This lapis camel can become a camel. It has 24 charges, and each hour or portion thereof it spends in camel form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can’t be used again until 7 days have passed, when it regains all its charges. While in camel form, the lapis camel has a blue tint to its fur, and it can spit globs of acid at a creature that attacks it or its rider. This spit works like the acid splash spell (save DC 9). \nMarble Mistwolf (Rare). This white marble statuette is of a wolf. It can become a dire wolf for up to 6 hours. At your command, it can cast the fog cloud spell. Each time it does, its duration is reduced by 1 hour. Once its duration ends, it can’t be used again until 5 days have passed. \nTin Dog (Common). This simple, tin statuette can become a dog for up to 8 hours, loyally following your commands to the best of its abilities. The dog uses the statistics of a jackal, except the dog has a Strength of 10. Once it has been used, the figurine can’t be used again until 2 days have passed. \nViolet Octopoid (Rare). A disturbing statuette carved in purple sugilite, the tentacled, violet octopoid can become an ambulatory, amphibious giant octopus for up to 6 hours. Use the statistics of a giant octopus, except it has 100 hit points and can make two tentacle attacks each turn. Once it has been used, it can’t be used again until 3 days have passed. If you speak the command word in Void Speech, the octopus has an Intelligence score of 9 and can make three tentacle attacks each turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_firebird-feather", + "fields": { + "name": "Firebird Feather", + "desc": "This feather sheds bright light in a 20-foot radius and dim light for an additional 20 feet, but it creates no heat and doesn't use oxygen. While holding the feather, you can tolerate temperatures as low as –50 degrees Fahrenheit. Druids and clerics and paladins who worship nature deities can use the feather as a spellcasting focus. If you use the feather in place of a holy symbol when using your Turn Undead feature, undead in the area have a –1 penalty on the saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_flag-of-the-cursed-fleet", + "fields": { + "name": "Flag of the Cursed Fleet", + "desc": "This dreaded item is a black flag painted with an unsettlingly realistic skull. A spell or other effect that can sense the presence of magic, such as detect magic, reveals an aura of necromancy around the flag. Beasts with an Intelligence of 3 or lower don’t willingly board a vessel where this flag flies. A successful DC 17 Wisdom (Animal Handling) check convinces an unwilling beast to board the vessel, though it remains uneasy and skittish while aboard. \nCursed Crew. When this baleful flag flies atop the mast of a waterborne vehicle, it curses the vessel and all those that board it. When a creature that isn’t a humanoid dies aboard the vessel, it rises 1 minute later as a zombie under the ship captain’s control. When a humanoid dies aboard the vessel, it rises 1 minute later as a ghoul under the ship captain’s control. A ghoul retains any knowledge of sailing or maintaining a waterborne vehicle that it had in life. \nCursed Captain. If the ship flying this flag doesn’t have a captain, the undead crew seeks out a powerful humanoid or intelligent undead to bring aboard and coerce into becoming the captain. When an undead with an Intelligence of 10 or higher boards the captainless vehicle, it must succeed on a DC 17 Wisdom saving throw or become magically bound to the ship and the flag. If the creature exits the vessel and boards it again, the creature must repeat the saving throw. The flag fills the captain with the desire to attack other vessels to grow its crew and commandeer larger vessels when possible, bringing the flag with it. If the flag is destroyed or removed from a waterborne vehicle for at least 7 days, the zombie and ghoul crew crumbles to dust, and the captain is freed of the flag’s magic, if the captain was bound to it. \nUnholy Vessel. While aboard a vessel flying this flag, an undead creature has advantage on saving throws against effects that turn undead, and if it fails the saving throw, it isn’t destroyed, no matter its CR. In addition, the captain and crew can’t be frightened while aboard a vessel flying this flag. \nWhen a creature that isn’t a construct or undead and isn’t part of the crew boards the vessel, it must succeed on a DC 17 Constitution saving throw or be poisoned while it remains on board. If the creature exits the vessel and boards it again, the creature must repeat the saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_flash-bullet", + "fields": { + "name": "Flash Bullet", + "desc": "When you hit a creature with a ranged attack using this shiny, polished stone, it releases a sudden flash of bright light. The target takes damage as normal and must succeed on a DC 11 Constitution saving throw or be blinded until the end of its next turn. Creatures with the Sunlight Sensitivity trait have disadvantage on this saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_flask-of-epiphanies", + "fields": { + "name": "Flask of Epiphanies", + "desc": "This flask is made of silver and cherry wood, and it holds finely cut garnets on its faces. This ornate flask contains 5 ounces of powerful alcoholic spirits. As an action, you can drink up to 5 ounces of the flask's contents. You can drink 1 ounce without risk of intoxication. When you drink more than 1 ounce of the spirits as part of the same action, you must make a DC 12 Constitution saving throw (this DC increases by 1 for each ounce you imbibe after the second, to a maximum of DC 15). On a failed save, you are incapacitated for 1d4 hours and gain no benefits from consuming the alcohol. On a success, your Intelligence or Wisdom (your choice) increases by 1 for each ounce you consumed. Whether you fail or succeed, your Dexterity is reduced by 1 for each ounce you consumed. The effect lasts for 1 hour. During this time, you have advantage on all Intelligence (Arcana) and Inteligence (Religion) checks. The flask replenishes 1d3 ounces of spirits daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_fleshspurned-mask", + "fields": { + "name": "Fleshspurned Mask", + "desc": "This mask features inhumanly sized teeth similar in appearance to the toothy ghost known as a Fleshspurned (see Tome of Beasts 2). It has a strap fashioned from entwined strands of sinew, and it fits easily over your face with no need to manually adjust the strap. While wearing this mask, you can use its teeth to make unarmed strikes. When you hit with it, the teeth deal necrotic damage equal to 1d6 + your Strength modifier, instead of bludgeoning damage normal for an unarmed strike. In addition, if the target has the Incorporeal Movement trait, you deal necrotic damage equal to 2d6 + your Strength modifier instead. Such targets don't have resistance or immunity to the necrotic damage you deal with this attack. If you kill a creature with your teeth, you gain temporary hit points equal to double the creature's challenge rating (minimum of 1).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_flood-charm", + "fields": { + "name": "Flood Charm", + "desc": "This smooth, blue-gray stone is carved with stylized waves or rows of wavy lines. When you are in water too deep to stand, the charm activates. You automatically become buoyant enough to float to the surface unless you are grappled or restrained. If you are unable to surface—such as if you are grappled or restrained, or if the water completely fills the area—the charm surrounds you with a bubble of breathable air that lasts for 5 minutes. At the end of the air bubble's duration, or when you leave the water, the charm's effects end and it becomes a nonmagical stone.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_flute-of-saurian-summoning", + "fields": { + "name": "Flute of Saurian Summoning", + "desc": "This scaly, clawed flute has a musky smell, and it releases a predatory, screeching roar with reptilian overtones when blown. You must be proficient with wind instruments to use this flute. You can use an action to play the flute and conjure dinosaurs. This works like the conjure animals spell, except the animals you conjure must be dinosaurs or Medium or larger lizards. The dinosaurs remain for 1 hour, until they die, or until you dismiss them as a bonus action. The flute can't be used to conjure dinosaurs again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_fly-whisk-of-authority", + "fields": { + "name": "Fly Whisk of Authority", + "desc": "If you use an action to flick this fly whisk, you have advantage on Charisma (Intimidation) and Charisma (Persuasion) checks for 10 minutes. You can't use the fly whisk this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_fog-stone", + "fields": { + "name": "Fog Stone", + "desc": "This sling stone is carved to look like a fluffy cloud. Typically, 1d4 + 1 fog stones are found together. When you fire the stone from a sling, it transforms into a miniature cloud as it flies through the air, and it creates a 20-foot-radius sphere of fog centered on the target or point of impact. The sphere spreads around corners, and its area is heavily obscured. It lasts for 10 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_forgefire-maul", + "fields": { + "name": "Forgefire Maul", + "desc": "The head of this weapon is shaped like an anvil, and engravings of fire and arcane runes decorate it. You can use a bonus action to speak this magic weapon's command word, causing its head to glow red-hot. While red-hot, the weapon deals an extra 1d6 fire damage to any target it hits. The weapon's anvil-like head remains red-hot until you use a bonus action to speak the command word again or until you drop or sheathe the weapon. When you roll a 20 on an attack roll made with this weapon against a target holding or wearing a metal object, such as a metal weapon or metal armor, the target takes an extra 1d4 fire damage and the metal object becomes red-hot for 1 minute. While the object is red-hot and the creature still wears or carries it, the creature takes 1d4 fire damage at the start of each of its turns.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_forgefire-warhammer", + "fields": { + "name": "Forgefire Warhammer", + "desc": "The head of this weapon is shaped like an anvil, and engravings of fire and arcane runes decorate it. You can use a bonus action to speak this magic weapon's command word, causing its head to glow red-hot. While red-hot, the weapon deals an extra 1d6 fire damage to any target it hits. The weapon's anvil-like head remains red-hot until you use a bonus action to speak the command word again or until you drop or sheathe the weapon. When you roll a 20 on an attack roll made with this weapon against a target holding or wearing a metal object, such as a metal weapon or metal armor, the target takes an extra 1d4 fire damage and the metal object becomes red-hot for 1 minute. While the object is red-hot and the creature still wears or carries it, the creature takes 1d4 fire damage at the start of each of its turns.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_fountmail", + "fields": { + "name": "Fountmail", + "desc": "This armor is a dazzling white suit of chain mail with an alabaster-colored steel collar that covers part of the face. You gain a +3 bonus to AC while you wear this armor. In addition, you gain the following benefits: - You add your Strength and Wisdom modifiers in addition to your Constitution modifier on all rolls when spending Hit Die to recover hit points. - You can't be frightened. - You have resistance to necrotic damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_freerunner-rod", + "fields": { + "name": "Freerunner Rod", + "desc": "Tightly intertwined lengths of grass, bound by additional stiff, knotted blades of grass, form this rod, which is favored by plains-dwelling druids and rangers. While holding it and in grasslands, you leave behind no tracks or other traces of your passing, and you can pass through nonmagical plants without being slowed by them and without taking damage from them if they have thorns, spines, or a similar hazard. In addition, beasts with an Intelligence of 3 or lower that are native to grasslands must succeed on a DC 15 Charisma saving throw to attack you. The rod has 10 charges, and it regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rod collapses into a pile of grass seeds and is destroyed. Among the grass seeds are 1d10 berries, consumable as if created by the goodberry spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_frost-pellet", + "fields": { + "name": "Frost Pellet", + "desc": "Fashioned from the stomach lining of a Devil Shark (see Creature Codex), this rubbery pellet is cold to the touch. When you consume the pellet, you feel bloated, and you are immune to cold damage for 1 hour. Once before the duration ends, you can expel a 30-foot cone of cold water. Each creature in the cone must make a DC 15 Constitution saving throw. On a failure, the creature takes 6d8 cold damage and is pushed 10 feet away from you. On a success, the creature takes half the damage and isn't pushed away.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_frostfire-lantern", + "fields": { + "name": "Frostfire Lantern", + "desc": "While lit, the flame in this ornate mithril lantern turns blue and sheds a cold, blue dim light in a 30-foot radius. After the lantern's flame has burned for 1 hour, it can't be lit again until the next dawn. You can extinguish the lantern's flame early for use at a later time. Deduct the time it burned in increments of 1 minute from the lantern's total burn time. When a creature enters the lantern's light for the first time on a turn or starts its turn there, the creature must succeed on a DC 17 Constitution saving throw or be vulnerable to cold damage until the start of its next turn. When you light the lantern, choose up to four creatures you can see within 30 feet of you, which can include yourself. The chosen creatures are immune to this effect of the lantern's light.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_frungilator", + "fields": { + "name": "Frungilator", + "desc": "This strangely-shaped item resembles a melted wand or a strange growth chipped from the arcane trees of elder planes. The wand has 5 charges and regains 1d4 + 1 charges daily at dusk. While holding it, you can use an action to expend 1 of its charges and point it at a target within 60 feet of you. The target must be a creature. When activated, the wand frunges creatures into a chaos matrix, which does…something. Roll a d10 and consult the following table to determine these unpredictable effects (none of them especially good). Most effects can be removed by dispel magic, greater restoration, or more powerful magic. | d10 | Frungilator Effect |\n| --- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| 1 | Glittering sparkles fly all around. You are surrounded in sparkling light until the end of your next turn as if you were targeted by the faerie fire spell. |\n| 2 | The target is encased in void crystal and immediately begins suffocating. A creature, including the target, can take its action to shatter the void crystal by succeeding on a DC 10 Strength check. Alternatively, the void crystal can be attacked and destroyed (AC 12; hp 4; immunity to poison and psychic damage). |\n| 3 | Crimson void fire engulfs the target. It must make a DC 13 Constitution saving throw, taking 4d6 fire damage on a failed save, or half as much damage on a successful one. |\n| 4 | The target's blood turns to ice. It must make a DC 13 Constitution saving throw, taking 6d6 cold damage on a failed save, or half as much damage on a successful one. |\n| 5 | The target rises vertically to a height of your choice, up to a maximum height of 60 feet. The target remains suspended there until the start of its next turn. When this effect ends, the target floats gently to the ground. |\n| 6 | The target begins speaking in backwards fey speech for 10 minutes. While speaking this way, the target can't verbally communicate with creatures that aren't fey, and the target can't cast spells with verbal components. |\n| 7 | Golden flowers bloom across the target's body. It is blinded until the end of its next turn. |\n| 8 | The target must succeed on a DC 13 Constitution saving throw or it and all its equipment assumes a gaseous form until the end of its next turn. This effect otherwise works like the gaseous form spell. |\n| 9 | The target must succeed on a DC 15 Wisdom saving throw or become enthralled with its own feet or limbs until the end of its next turn. While enthralled, the target is incapacitated. |\n| 10 | A giant ray of force springs out of the frungilator and toward the target. Each creature in a line that is 5 feet wide between you and the target must make a DC 16 Dexterity saving throw, taking 4d12 force damage on a failed save, or half as much damage on a successful one. |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_fulminar-bracers", + "fields": { + "name": "Fulminar Bracers", + "desc": "Stylized etchings of cat-like lightning elementals known as Fulminars (see Creature Codex) cover the outer surfaces of these solid silver bracers. While wearing these bracers, lightning crackles harmless down your hands, and you have resistance to lightning damage and thunder damage. The bracers have 3 charges. You can use an action to expend 1 charge to create lightning shackles that bind up to two creatures you can see within 60 feet of you. Each target must make a DC 15 Dexterity saving throw. On a failure, a target takes 4d6 lightning damage and is restrained for 1 minute. On a success, the target takes half the damage and isn't restrained. A restrained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The bracers regain all expended charges daily at dawn. The bracers also regain 1 charge each time you take 10 lightning damage while wearing them.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_gale-javelin", + "fields": { + "name": "Gale Javelin", + "desc": "The metallic head of this javelin is embellished with three small wings. When you speak a command word while making a ranged weapon attack with this magic weapon, a swirling vortex of wind follows its path through the air. Draw a line between you and the target of your attack; each creature within 10 feet of this line must make a DC 13 Strength saving throw. On a failed save, the creature is pushed backward 10 feet and falls prone. In addition, if this ranged weapon attack hits, the target must make a DC 13 Strength saving throw. On a failed save, the target is pushed backward 15 feet and falls prone. The javelin's property can't be used again until the next dawn. In the meantime, it can still be used as a magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_garments-of-winters-knight", + "fields": { + "name": "Garments of Winter's Knight", + "desc": "This white-and-blue outfit is designed in the style of fey nobility and maximized for both movement and protection. The multiple layers and snow-themed details of this garb leave no doubt that whoever wears these clothes is associated with the winter queen of faerie. You gain the following benefits while wearing the outfit: - If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\n- Whenever a creature within 5 feet of you hits you with a melee attack, the cloth steals heat from the surrounding air, and the attacker takes 2d8 cold damage.\n- You can't be charmed, and you are immune to cold damage.\n- You can use a bonus action to extend your senses outward to detect the presence of fey. Until the start of your next turn, you know the location of any fey within 60 feet of you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_gauntlet-of-the-iron-sphere", + "fields": { + "name": "Gauntlet of the Iron Sphere", + "desc": "This heavy gauntlet is adorned with an onyx. While wearing this gauntlet, your unarmed strikes deal 1d8 bludgeoning damage, instead of the damage normal for an unarmed strike, and you gain a +1 bonus to attack and damage rolls with unarmed strikes. In addition, your unarmed strikes deal double damage to objects and structures. If you hold a pound of raw iron ore in your hand while wearing the gauntlet, you can use an action to speak the gauntlet's command word and conjure an Iron Sphere (see Creature Codex). The iron sphere remains for 1 hour or until it dies. It is friendly to you and your companions. Roll initiative for the iron sphere, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the iron sphere, it defends itself from hostile creatures but otherwise takes no actions. The gauntlet can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_gazebo-of-shade-and-shelter", + "fields": { + "name": "Gazebo of Shade and Shelter", + "desc": "You can use an action to place this 3-inch sandstone gazebo statuette on the ground and speak its command word. Over the next 5 minutes, the sandstone gazebo grows into a full-sized gazebo that remains for 8 hours or until you speak the command word that returns it to a sandstone statuette. The gazebo's posts are made of palm tree trunks, and its roof is made of palm tree fronds. The floor is level, clean, dry and made of palm fronds. The atmosphere inside the gazebo is comfortable and dry, regardless of the weather outside. You can command the interior to become dimly lit or dark. The gazebo's walls are opaque from the outside, appearing wooden, but they are transparent from the inside, appearing much like sheer fabric. When activated, the gazebo has an opening on the side facing you. The opening is 5 feet wide and 10 feet tall and opens and closes at your command, which you can speak as a bonus action while within 10 feet of the opening. Once closed, the opening is immune to the knock spell and similar magic, such as that of a chime of opening. The gazebo is 20 feet in diameter and is 10 feet tall. It is made of sandstone, despite its wooden appearance, and its magic prevents it from being tipped over. It has 100 hit points, immunity to nonmagical attacks excluding siege weapons, and resistance to all other damage. The gazebo contains crude furnishings: eight simple bunks and a long, low table surrounded by eight mats. Three of the wall posts bear fruit: one coconut, one date, and one fig. A small pool of clean, cool water rests at the base of a fourth wall post. The trees and the pool of water provide enough food and water for up to 10 people. Furnishings and other objects within the gazebo dissipate into smoke if removed from the gazebo. When the gazebo returns to its statuette form, any creatures inside it are expelled into unoccupied spaces nearest to the gazebo's entrance. Once used, the gazebo can't be used again until the next dusk. If reduced to 0 hit points, the gazebo can't be used again until 7 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-barding-breastplate", + "fields": { + "name": "Ghost Barding Breastplate", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-barding-chain-mail", + "fields": { + "name": "Ghost Barding Chain Mail", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-barding-chain-shirt", + "fields": { + "name": "Ghost Barding Chain Shirt", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-barding-half-plate", + "fields": { + "name": "Ghost Barding Half Plate", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-barding-hide", + "fields": { + "name": "Ghost Barding Hide", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-barding-leather", + "fields": { + "name": "Ghost Barding Leather", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-barding-padded", + "fields": { + "name": "Ghost Barding Padded", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-barding-plate", + "fields": { + "name": "Ghost Barding Plate", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-barding-ring-mail", + "fields": { + "name": "Ghost Barding Ring Mail", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-barding-scale-mail", + "fields": { + "name": "Ghost Barding Scale Mail", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-barding-splint", + "fields": { + "name": "Ghost Barding Splint", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-barding-studded-leather", + "fields": { + "name": "Ghost Barding Studded Leather", + "desc": "This armor is blue-green and translucent. It weighs only 1 pound, and if the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, this version of the armor doesn't. The armor's base Armor Class applies only against attacks by undead creatures and doesn't provide protection against any other attacks. When a beast wears this armor, the beast gains a +1 bonus to AC against attacks by undead creatures, and it has advantage on saving throws against the spells and special abilities of undead creatures.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-dragon-horn", + "fields": { + "name": "Ghost Dragon Horn", + "desc": "Scales from dead dragons cover this wooden, curved horn. You can use an action to speak the horn's command word and then blow the horn, which emits a blast in a 30-foot cone, containing shrieking spectral dragon heads. Each creature in the cone must make a DC 17 Wisdom saving throw. On a failure, a creature tales 5d10 psychic damage and is frightened of you for 1 minute. On a success, a creature takes half the damage and isn't frightened. Dragons have disadvantage on the saving throw and take 10d10 psychic damage instead of 5d10. A frightened target can repeat the Wisdom saving throw at the end of each of its turns, ending the effect on itself on a success. If a dragon takes damage from the horn's shriek, the horn has a 20 percent chance of exploding. The explosion deals 10d10 psychic damage to the blower and destroys the horn. Once you use the horn, it can't be used again until the next dawn. If you kill a dragon while holding or carrying the horn, you regain use of the horn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghost-thread", + "fields": { + "name": "Ghost Thread", + "desc": "Most of this miles-long strand of enchanted silk, created by phase spiders, resides on the Ethereal Plane. Only a few inches at either end exist permanently on the Material Plane, and those may be used as any normal string would be. Creatures using it to navigate can follow one end to the other by running their hand along the thread, which phases into the Material Plane beneath their grasp. If dropped or severed (AC 8, 1 hit point), the thread disappears back into the Ethereal Plane in 2d6 rounds.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghoul-light", + "fields": { + "name": "Ghoul Light", + "desc": "This bullseye lantern sheds light as normal when a lit candle is placed inside of it. If the light shines on meat, no matter how toxic or rotten, for at least 10 minutes, the meat is rendered safe to eat. The lantern's magic doesn't improve the meat's flavor, but the light does restore the meat's nutritional value and purify it, rendering it free of poison and disease. In addition, when an undead creature ends its turn in the light, it takes 1 radiant damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghoulbane-oil", + "fields": { + "name": "Ghoulbane Oil", + "desc": "This rusty-red gelatinous liquid glistens with tiny sparkling crystal flecks. The oil can coat one weapon or 5 pieces of ammunition. Applying the oil takes 1 minute. For 1 hour, if a ghoul, ghast, or Darakhul (see Tome of Beasts) takes damage from the coated item, it takes an extra 2d6 damage of the weapon's type.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ghoulbane-rod", + "fields": { + "name": "Ghoulbane Rod", + "desc": "Arcane glyphs decorate the spherical head of this tarnished rod, while engravings of cracked and broken skulls and bones circle its haft. When an undead creature is within 120 feet of the rod, the rod's arcane glyphs emit a soft glow. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's glyphs flare to life and the rod's magic activates. When an undead creature enters or starts its turn within 30 feet of the planted rod, it must succeed on a DC 15 Wisdom saving throw or have disadvantage on attack rolls against creatures that aren't undead until the start of its next turn. If a ghoul fails this saving throw, it also takes a –2 penalty to AC and Dexterity saving throws, its speed is halved, and it can't use reactions. The rod's magic remains active while planted in the ground, and after it has been active for a total of 10 minutes, its magic ceases to function until the next dawn. A creature can use an action to pull the rod from the ground, ending the effect early for use at a later time. Deduct the time it was active in increments of 1 minute from the rod's total active time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_giggling-orb", + "fields": { + "name": "Giggling Orb", + "desc": "This glass sphere measures 3 inches in diameter and contains a swirling, yellow mist. You can use an action to throw the orb up to 60 feet. The orb shatters on impact and is destroyed. Each creature within a 20-foot-radius of where the orb landed must succeed on a DC 15 Wisdom saving throw or fall prone in fits of laughter, becoming incapacitated and unable to stand for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_girdle-of-traveling-alchemy", + "fields": { + "name": "Girdle of Traveling Alchemy", + "desc": "This wide leather girdle has many sewn-in pouches and holsters that hold an assortment of empty beakers and vials. Once you have attuned to the girdle, these containers magically fill with the following liquids:\n- 2 flasks of alchemist's fire\n- 2 flasks of alchemist's ice*\n- 2 vials of acid - 2 jars of swarm repellent* - 1 vial of assassin's blood poison - 1 potion of climbing - 1 potion of healing Each container magically replenishes each day at dawn, if you are wearing the girdle. All the potions and alchemical substances produced by the girdle lose their properties if they're transferred to another container before being used.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_glamour-rings", + "fields": { + "name": "Glamour Rings", + "desc": "These rings are made from twisted loops of gold and onyx and are always found in pairs. The rings' magic works only while you and another humanoid of the same size each wear one ring and are on the same plane of existence. While wearing a ring, you or the other humanoid can use an action to swap your appearances, if both of you are willing. This effect works like the Change Appearance effect of the alter self spell, except you can change your appearance to only look identical to each other. Your clothing and equipment don't change, and the effect lasts until one of you uses this property again or until one of you removes the ring.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_glass-wand-of-leng", + "fields": { + "name": "Glass Wand of Leng", + "desc": "The tip of this twisted clear glass wand is razorsharp. It can be wielded as a magic dagger that grants a +1 bonus to attack and damage rolls made with it. The wand weighs 4 pounds and is roughly 18 inches long. When you tap the wand, it emits a single, loud note which can be heard up to 20 feet away and does not stop sounding until you choose to silence it. This wand has 5 charges and regains 1d4 + 1 charges daily at dawn. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 17): arcane lock (2 charges), disguise self (1 charge), or tongues (3 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_glazed-battleaxe", + "fields": { + "name": "Glazed Battleaxe", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_glazed-greataxe", + "fields": { + "name": "Glazed Greataxe", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_glazed-greatsword", + "fields": { + "name": "Glazed Greatsword", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_glazed-handaxe", + "fields": { + "name": "Glazed Handaxe", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_glazed-longsword", + "fields": { + "name": "Glazed Longsword", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_glazed-rapier", + "fields": { + "name": "Glazed Rapier", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_glazed-scimitar", + "fields": { + "name": "Glazed Scimitar", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_glazed-shortsword", + "fields": { + "name": "Glazed Shortsword", + "desc": "A pleasant scent emerges from this weapon. While it is on your person, you have advantage on Charisma (Persuasion) checks made to interact with humanoids and fey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_gliding-cloak", + "fields": { + "name": "Gliding Cloak", + "desc": "By grasping the ends of the cloak while falling, you can glide up to 5 feet horizontally in any direction for every 1 foot you fall. You descend 60 feet per round but take no damage from falling while gliding in this way. A tailwind allows you to glide 10 feet per 1 foot descended, but a headwind forces you to only glide 5 feet per 2 feet descended.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_gloomflower-corsage", + "fields": { + "name": "Gloomflower Corsage", + "desc": "This black, six-petaled flower fits neatly on a garment's lapel or peeking out of a pocket. While wearing it, you have advantage on saving throws against being blinded, deafened, or frightened. While wearing the flower, you can use an action to speak one of three command words to invoke the corsage's power and cause one of the following effects: - When you speak the first command word, you gain blindsight out to a range of 120 feet for 1 hour.\n- When you speak the second command word, choose a target within 120 feet of you and make a ranged attack with a +7 bonus. On a hit, the target takes 3d6 psychic damage.\n- When you speak the third command word, your form shifts and shimmers. For 1 minute, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight. Each time you use the flower, one of its petals curls in on itself. You can't use the flower if all of its petals are curled. The flower uncurls 1d6 petals daily at dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_gloves-of-the-magister", + "fields": { + "name": "Gloves of the Magister", + "desc": "The backs of each of these black leather gloves are set with gold fittings as if to hold a jewel. While you wear the gloves, you can cast mage hand at will. You can affix an ioun stone into the fitting on a glove. While the stone is affixed, you gain the benefits of the stone as if you had it in orbit around your head. If you take an action to touch a creature, you can transfer the benefits of the ioun stone to that creature for 1 hour. While the creature is gifted the benefits, the stone turns gray and provides you with no benefits for the duration. You can use an action to end this effect and return power to the stone. The stone's benefits can also be dispelled from a creature as if they were a 7th-level spell. When the effect ends, the stone regains its color and provides you with its benefits once more.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_gloves-of-the-walking-shade", + "fields": { + "name": "Gloves of the Walking Shade", + "desc": "Each glove is actually comprised of three, black ivory rings (typically fitting the thumb, middle finger, and pinkie) which are connected to each other. The rings are then connected to an intricately-engraved onyx wrist cuff by a web of fine platinum chains and tiny diamonds. While wearing these gloves, you gain the following benefits: - You have resistance to necrotic damage.\n- You can spend one Hit Die during a short rest to remove one level of exhaustion instead of regaining hit points.\n- You can use an action to become a living shadow for 1 minute. For the duration, you can move through a space as narrow as 1 inch wide without squeezing, and you can take the Hide action as a bonus action while you are in dim light or darkness. Once used, this property of the gloves can't be used again until the next nightfall.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_gnawing-spear", + "fields": { + "name": "Gnawing Spear", + "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. When you roll a 20 on an attack roll made with this spear, its head animates, grows serrated teeth, and lodges itself in the target. While the spear is lodged in the target and you are wielding the spear, the target is grappled by you. At the start of each of your turns, the spear twists and grinds, dealing 2d6 piercing damage to the grappled target. If you release the spear, it remains lodged in the target, dealing damage each round as normal, but the target is no longer grappled by you. While the spear is lodged in a target, you can't make attacks with it. A creature, including the restrained target, can take its action to remove the spear by succeeding on a DC 15 Strength check. The target takes 1d6 piercing damage when the spear is removed. You can use an action to speak the spear's command word, causing it to dislodge itself and fall into an unoccupied space within 5 feet of the target.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_goblin-shield", + "fields": { + "name": "Goblin Shield", + "desc": "This shield resembles a snarling goblin's head. It has 3 charges and regains 1d3 expended charges daily at dawn. While wielding this shield, you can use a bonus action to expend 1 charge and command the goblin's head to bite a creature within 5 feet of you. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. On a hit, the target takes 2d4 piercing damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_goggles-of-firesight", + "fields": { + "name": "Goggles of Firesight", + "desc": "The lenses of these combination fleshy and plantlike goggles extend a few inches away from the goggles on a pair of tentacles. While wearing these lenses, you can see through lightly obscured and heavily obscured areas without your vision being obscured, if those areas are obscured by fire, smoke, or fog. Other effects that would obscure your vision, such as rain or darkness, affect you normally. When you fail a saving throw against being blinded, you can use a reaction to call on the power within the goggles. If you do so, you succeed on the saving throw instead. The goggles can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_goggles-of-shade", + "fields": { + "name": "Goggles of Shade", + "desc": "While wearing these dark lenses, you have advantage on Charisma (Deception) checks. If you have the Sunlight Sensitivity trait and wear these goggles, you no longer suffer the penalties of Sunlight Sensitivity while in sunlight.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_golden-bolt", + "fields": { + "name": "Golden Bolt", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. This crossbow doesn't have the loading property, and it doesn't require ammunition. Immediately after firing a bolt from this weapon, another golden bolt forms to take its place.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_gorgon-scale", + "fields": { + "name": "Gorgon Scale", + "desc": "The iron scales of this armor have a green-tinged iridescence. While wearing this armor, you gain a +1 bonus to AC, and you have immunity to the petrified condition. If you move at least 20 feet straight toward a creature and then hit it with a melee weapon attack on the same turn, you can use a bonus action to imbue the hit with some of the armor's petrifying magic. The target must make a DC 15 Constitution saving throw. On a failed save, the target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_granny-wax", + "fields": { + "name": "Granny Wax", + "desc": "Normally found in a small glass jar containing 1d3 doses, this foul-smelling, greasy yellow substance is made by hags in accordance with an age-old secret recipe. You can use an action to rub one dose of the wax onto an ordinary broom or wooden stick and transform it into a broom of flying for 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grasping-cap", + "fields": { + "name": "Grasping Cap", + "desc": "This cap is a simple, blue silk hat with a goose feather trim. While wearing this cap, you have advantage on Strength (Athletics) checks made to climb, and the cap deflects the first ranged attack made against you each round. In addition, when a creature attacks you while within 30 feet of you, it is illuminated and sheds red-hued dim light in a 50-foot radius until the end of its next turn. Any attack roll against an illuminated creature has advantage if the attacker can see it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grasping-cloak", + "fields": { + "name": "Grasping Cloak", + "desc": "Made of strips of black leather, this cloak always shines as if freshly oiled. The strips writhe and grasp at nearby creatures. While wearing this cloak, you can use a bonus action to command the strips to grapple a creature no more than one size larger than you within 5 feet of you. The strips make the grapple attack roll with a +7 bonus. On a hit, the target is grappled by the cloak, leaving your hands free to perform other tasks or actions that require both hands. However, you are still considered to be grappling a creature, limiting your movement as normal. The cloak can grapple only one creature at a time. Alternatively, you can use a bonus action to command the strips to aid you in grappling. If you do so, you have advantage on your next attack roll made to grapple a creature. While grappling a creature in this way, you have advantage on the contested check if a creature attempts to escape your grapple.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grasping-shield", + "fields": { + "name": "Grasping Shield", + "desc": "The boss at the center of this shield is a hand fashioned of metal. While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grave-reagent", + "fields": { + "name": "Grave Reagent", + "desc": "This luminous green concoction creates an undead servant. If you spend 1 minute anointing the corpse of a Small or Medium humanoid, this arcane solution imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a zombie under your control (the GM has the zombie's statistics). On each of your turns, you can use a bonus action to verbally command the zombie if it is within 60 feet of you. You decide what action the zombie will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the zombie only defends itself against hostile creatures. Once given an order, the zombie continues to follow it until its task is complete. The zombie is under your control for 24 hours, after which it stops obeying any command you've given it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grave-ward-breastplate", + "fields": { + "name": "Grave Ward Breastplate", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grave-ward-chain-mail", + "fields": { + "name": "Grave Ward Chain Mail", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grave-ward-chain-shirt", + "fields": { + "name": "Grave Ward Chain Shirt", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grave-ward-half-plate", + "fields": { + "name": "Grave Ward Half Plate", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grave-ward-hide", + "fields": { + "name": "Grave Ward Hide", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grave-ward-leather", + "fields": { + "name": "Grave Ward Leather", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grave-ward-padded", + "fields": { + "name": "Grave Ward Padded", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grave-ward-plate", + "fields": { + "name": "Grave Ward Plate", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grave-ward-ring-mail", + "fields": { + "name": "Grave Ward Ring Mail", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grave-ward-scale-mail", + "fields": { + "name": "Grave Ward Scale Mail", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grave-ward-splint", + "fields": { + "name": "Grave Ward Splint", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grave-ward-studded-leather", + "fields": { + "name": "Grave Ward Studded Leather", + "desc": "This armor bears gold or brass symbols of sunlight and sun deities and never tarnishes or rusts. The armor is immune to necrotic damage and rusting attacks such as those of a rust monster. While wearing this armor, your maximum hit points can't be reduced. As an action, you can speak a command word to gain the effect of a protection from evil and good spell for 1 minute (no concentration required). While the spell is active, if you are reduced to 0 hit points, you drop to 1 hit point instead. Once you use this property, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_greater-potion-of-troll-blood", + "fields": { + "name": "Greater Potion of Troll Blood", + "desc": "When drink this potion, you regain 3 hit points at the start of each of your turns. After it has restored 30 hit points, the potion's effects end.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_greater-scroll-of-conjuring", + "fields": { + "name": "Greater Scroll of Conjuring", + "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_greatsword-of-fallen-saints", + "fields": { + "name": "Greatsword of Fallen Saints", + "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_greatsword-of-volsung", + "fields": { + "name": "Greatsword of Volsung", + "desc": "Legends tell of a dragon whose hide was impenetrable and so robust that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon’s name was lost, but its legacy remains. This sword is one of two items that were crafted to hold its heart. The black blade is adorned with glittering silver runes, and its guard has a shallow opening at the center with grooves connecting it to the first rune. The sword’s pommel is a large, clear crystal held fast by silver scales. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit a dragon with an attack using this sword, that creature takes an extra 1d6 slashing damage. Runes of Courage. You can’t be frightened while holding or carrying this sword. Fragment of Gram Awakened. You can use a bonus action to awaken a fragment of the spirit of the great wyrm that inhabits this blade. For 24 hours, you gain a +3 bonus to attack and damage rolls with this magic sword, and when you hit a dragon with an attack using this sword, that creature takes an extra 3d6 slashing damage. Once used, this property can’t be used again until 3 days have passed. If you have performed the Dragon Heart Ritual, you can use a bonus action to expend 2 of the sword’s charges to activate this property, and you can use this property as often as you want, as long as you have the charges to do so. Dragon Heart Ritual. If you are also attuned to the locket of dragon vitality (see page 152), you can drain 3 charges from the locket into the sword, turning the crystal pommel a deep red and rendering the locket broken and irreparable. Doing this requires a long rest where you also re-attune with the newly charged sword of volsung. Upon completing the Dragon Heart Ritual, the sword contains all remaining charges from the locket, and you gain the locket’s effects while holding or carrying the sword. When you are reduced to 0 hit points and trigger the locket’s temporary hit points, the sword isn’t destroyed, but you can’t trigger that effect again until 24 hours have passed. The sword regains all expended charges after you slay any dragon. For the purpose of this sword, “dragon” refers to any creature with the dragon type, including drakes and wyverns.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_green-mantle", + "fields": { + "name": "Green Mantle", + "desc": "This garment is made of living plants—mosses, vines, and grasses—interwoven into a light, comfortable piece of clothing. When you attune to this mantle, it forms a symbiotic relationship with you, sinking roots beneath your skin. While wearing the mantle, your hit point maximum is reduced by 5, and you gain the following benefits: - If you aren't wearing armor, your base Armor Class is 13 + your Dexterity modifier.\n- You have resistance to radiant damage.\n- You have immunity to the poisoned condition and poison damage that originates from a plant, moss, fungus, or plant creature.\n- As an action, you cause the mantle to produce 6 berries. It can have no more than 12 berries on it at one time. The berries have the same effect as berries produced by the goodberry spell. Unlike the goodberry spell, the berries retain their potency as long as they are not picked from the mantle. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_gremlins-paw", + "fields": { + "name": "Gremlin's Paw", + "desc": "This wand is fashioned from the fossilized forearm and claw of a gremlin. The wand has 5 charges. While holding the wand, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 15): bane (1 charge), bestow curse (3 charges), or hideous laughter (1 charge). The wand regains 1d4 + 1 expended charges daily at dusk. If you expend the wand's last charge, roll a d20. On a 20, you must succeed on a DC 15 Wisdom saving throw or become afflicted with short-term madness. On a 1, the rod crumbles into ashes and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grifters-deck", + "fields": { + "name": "Grifter's Deck", + "desc": "When you deal a card from this slightly greasy, well-used deck, you can choose any specific card to be on top of the deck, assuming it hasn't already been dealt. Alternatively, you can choose a general card of a specific value or suit that hasn't already been dealt.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_grim-escutcheon", + "fields": { + "name": "Grim Escutcheon", + "desc": "This blackened iron shield is adorned with the menacing relief of a monstrously gaunt skull. You gain a +1 bonus to AC while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. While holding this shield, you can use a bonus action to speak its command word to cast the fear spell (save DC 13). The shield can't be used this way again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_gritless-grease", + "fields": { + "name": "Gritless Grease", + "desc": "This small, metal jar, 3 inches in diameter, holds 1d4 + 1 doses of a pungent waxy oil. As an action, one dose can be applied to or swallowed by a clockwork creature or device. The clockwork creature or device ignores difficult terrain, and magical effects can't reduce its speed for 8 hours. As an action, the clockwork creature, or a creature holding a clockwork device, can gain the effect of the haste spell until the end of its next turn (no concentration required). The effects of the haste spell melt the grease, ending all its effects at the end of the spell's duration.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hair-pick-of-protection", + "fields": { + "name": "Hair Pick of Protection", + "desc": "This hair pick has glittering teeth that slide easily into your hair, making your hair look perfectly coiffed and battle-ready. Though typically worn in hair, you can also wear the pick as a brooch or cloak clasp. While wearing this pick, you gain a +2 bonus to AC, and you have advantage on saving throws against spells. In addition, the pick magically boosts your self-esteem and your confidence in your ability to overcome any challenge, making you immune to the frightened condition.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_half-plate-of-warding-1", + "fields": { + "name": "Half Plate of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_half-plate-of-warding-2", + "fields": { + "name": "Half Plate of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_half-plate-of-warding-3", + "fields": { + "name": "Half Plate of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hallowed-effigy", + "fields": { + "name": "Hallowed Effigy", + "desc": "This foot-long totem, crafted from the bones and skull of a Tiny woodland beast bound in thin leather strips, serves as a boon for you and your allies and as a stinging trap to those who threaten you. The totem has 10 charges, and it regains 1d6 + 4 expended charges daily at dawn. If the last charge is expended, it can't regain charges again until a druid performs a 24-hour ritual, which involves the sacrifice of a Tiny woodland beast. You can use an action to secure the effigy on any natural organic substrate (such as dirt, mud, grass, and so on). While secured in this way, it pulses with primal energy on initiative count 20 each round, expending 1 charge. When it pulses, you and each creature friendly to you within 15 feet of the totem regains 1d6 hit points, and each creature hostile to you within 15 feet of the totem must make a DC 15 Constitution saving throw, taking 1d6 necrotic damage on a failed save, or half as much damage on a successful one. It continues to pulse each round until you pick it up, it runs out of charges, or it is destroyed. The totem has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If it drops to 0 hit points, it is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hallucinatory-dust", + "fields": { + "name": "Hallucinatory Dust", + "desc": "This small packet contains black pollen from a Gloomflower (see Creature Codex). Hazy images swirl around the pollen when observed outside the packet. There is enough of it for one use. When you use an action to blow the dust from your palm, each creature in a 30-foot cone must make a DC 15 Wisdom saving throw. On a failure, a creature sees terrible visions, manifesting its fears and anxieties for 1 minute. While affected, it takes 2d6 psychic damage at the start of each of its turns and must spend its action to make one melee attack against a creature within 5 feet of it, other than you or itself. If the creature can't make a melee attack, it takes the Dodge action. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. On a success, a creature becomes incapacitated until the end of its next turn as the visions fill its mind then quickly fade. A creature reduced to 0 hit points by the dust's psychic damage falls unconscious and is stable. When the creature regains consciousness, it is permanently plagued by hallucinations and has disadvantage on ability checks until cured by a remove curse spell or similar magic.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hammer-of-decrees", + "fields": { + "name": "Hammer of Decrees", + "desc": "This adamantine hammer was part of a set of smith's tools used to create weapons of law for an ancient dwarven civilization. It is pitted and appears damaged, and its oak handle is split and bound with cracking hide. While attuned to this hammer, you have advantage on ability checks using smith's tools, and the time it takes you to craft an item with your smith's tools is halved.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hammer-of-throwing", + "fields": { + "name": "Hammer of Throwing", + "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon. In addition, when you throw the hammer, it returns to your hand at the end of your turn. If you have no hand free, it falls to the ground at your feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_handy-scroll-quiver", + "fields": { + "name": "Handy Scroll Quiver", + "desc": "This belt quiver is wide enough to pass a rolled scroll through the opening. Containing an extra dimensional space, the quiver can hold up to 25 scrolls and weighs 1 pound, regardless of its contents. Placing a scroll in the quiver follows the normal rules for interacting with objects. Retrieving a scroll from the quiver requires you to use an action. When you reach into the quiver for a specific scroll, that scroll is always magically on top. The quiver has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the quiver ruptures and is destroyed. If the quiver is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If a breathing creature is placed within the quiver, the creature can survive for up to 5 minutes, after which time it begins to suffocate. Placing the quiver inside an extradimensional space created by a bag of holding, handy haversack, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hangmans-noose", + "fields": { + "name": "Hangman's Noose", + "desc": "Certain hemp ropes used in the execution of final justice can affect those beyond the reach of normal magics. This noose has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the hold monster spell from it. Unlike the standard version of this spell, though, the magic of the hangman's noose affects only undead. It regains 1d3 charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hardening-polish", + "fields": { + "name": "Hardening Polish", + "desc": "This gray polish is viscous and difficult to spread. The polish can coat one metal weapon or up to 10 pieces of ammunition. Applying the polish takes 1 minute. For 1 hour, the coated item hardens and becomes stronger, and it counts as an adamantine weapon for the purpose of overcoming resistance and immunity to attacks and damage not made with adamantine weapons.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_harmonizing-instrument", + "fields": { + "name": "Harmonizing Instrument", + "desc": "Any stringed instrument can be a harmonizing instrument, and you must be proficient with stringed instruments to use a harmonizing instrument. This instrument has 3 charges for the following properties. The instrument regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hat-of-mental-acuity", + "fields": { + "name": "Hat of Mental Acuity", + "desc": "This well-crafted cap appears to be standard wear for academics. Embroidered on the edge of the inside lining in green thread are sigils. If you cast comprehend languages on them, they read, “They that are guided go not astray.” While wearing the hat, you have advantage on all Intelligence and Wisdom checks. If you are proficient in an Intelligence or Wisdom-based skill, you double your proficiency bonus for the skill.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hazelwood-wand", + "fields": { + "name": "Hazelwood Wand", + "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains all expended charges daily at dawn. When you cast the goodberry spell while using this wand as your spellcasting focus, you can expend 1 of the wand's charges to transform the berries into hazelnuts, which restore 2 hit points instead of 1. The spell is otherwise unchanged. In addition, when you cast a spell that deals lightning damage while using this wand as your spellcasting focus, the spell deals 1 extra lightning damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_headdress-of-majesty", + "fields": { + "name": "Headdress of Majesty", + "desc": "This elaborate headpiece is adorned with small gemstones and thin strips of gold that frame your head like a radiant halo. While you wear this headdress, you have advantage on Charisma (Intimidation) and Charisma (Persuasion) checks. The headdress has 5 charges for the following properties. It regains all expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the headdress becomes a nonmagical, tawdry ornament of cheap metals and paste gems.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_headrest-of-the-cattle-queens", + "fields": { + "name": "Headrest of the Cattle Queens", + "desc": "This polished and curved wooden headrest is designed to keep the user's head comfortably elevated while sleeping. If you sleep at least 6 hours as part of a long rest while using the headrest, you regain 1 additional spent Hit Die, and your exhaustion level is reduced by 2 (rather than 1) when you finish the long rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_headscarf-of-the-oasis", + "fields": { + "name": "Headscarf of the Oasis", + "desc": "This dun-colored, well-worn silk wrap is long enough to cover the face and head of a Medium or smaller humanoid, barely revealing the eyes. While wearing this headscarf over your mouth and nose, you have advantage on ability checks and saving throws against being blinded and against extended exposure to hot weather and hot environments. Pulling the headscarf on or off your mouth and nose requires an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_healer-shabti", + "fields": { + "name": "Healer Shabti", + "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_healthful-honeypot", + "fields": { + "name": "Healthful Honeypot", + "desc": "This clay honeypot weighs 10 pounds. A sweet aroma wafts constantly from it, and it produces enough honey to feed up to 12 humanoids. Eating the honey restores 1d8 hit points, and the honey provides enough nourishment to sustain a humanoid for one day. Once 12 doses of the honey have been consumed, the honeypot can't produce more honey until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_heat-stone", + "fields": { + "name": "Heat Stone", + "desc": "Prized by reptilian humanoids, this magic stone is warm to the touch. While carrying this stone, you are comfortable in and can tolerate temperatures as low as –20 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as –50 degrees Fahrenheit.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_heliotrope-heart", + "fields": { + "name": "Heliotrope Heart", + "desc": "This polished orb of dark-green stone is latticed with pulsing crimson inclusions that resemble slowly dilating spatters of blood. While attuned to this orb, your hit point maximum can't be reduced by the bite of a vampire, vampire spawn, or other vampiric creature. In addition, while holding this orb, you can use an action to speak its command word and cast the 2nd-level version of the false life spell. Once used, this property can't be used again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_helm-of-the-slashing-fin", + "fields": { + "name": "Helm of the Slashing Fin", + "desc": "While wearing this helm, you can use an action to speak its command word to gain the ability to breathe underwater, but you lose the ability to breathe air. You can speak its command word again or remove the helm as an action to end this effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hewers-draught", + "fields": { + "name": "Hewer's Draught", + "desc": "When you drink this potion, you have advantage on attack rolls made with weapons that deal piercing or slashing damage for 1 minute. This potion's translucent amber liquid glimmers when agitated.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hexen-blade", + "fields": { + "name": "Hexen Blade", + "desc": "The colorful surface of this sleek adamantine shortsword exhibits a perpetually shifting, iridescent sheen. You gain a +1 bonus to attack and damage rolls made with this magic weapon. The sword has 5 charges and regains 1d4 + 1 charges daily at dawn. While holding it, you can use an action and expend 1 or more of its charges to cast one of the following spells from it, using spell save DC 15: disguise self (1 charge), hypnotic pattern (3 charges), or mirror image (2 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hidden-armament", + "fields": { + "name": "Hidden Armament", + "desc": "While holding this magic weapon, you can use an action to transform it into a tattoo on the palm of your hand. You can use a bonus action to transform the tattoo back into a weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hide-armor-of-the-leaf", + "fields": { + "name": "Hide Armor of the Leaf", + "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hide-armor-of-warding-1", + "fields": { + "name": "Hide Armor of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hide-armor-of-warding-2", + "fields": { + "name": "Hide Armor of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hide-armor-of-warding-3", + "fields": { + "name": "Hide Armor of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_holy-verdant-bat-droppings", + "fields": { + "name": "Holy Verdant Bat Droppings", + "desc": "This ceramic jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture with a pungent, muddy reek. The jar and its contents weigh 1/2 pound. Derro matriarchs and children gather a particular green bat guano to cure various afflictions, and the resulting glowing green paste can be spread on the skin to heal various conditions. As an action, one dose of the droppings can be swallowed or applied to the skin. The creature that receives it gains one of the following benefits: - Cured of paralysis or petrification\n- Reduces exhaustion level by one\n- Regains 50 hit points", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_honey-lamp", + "fields": { + "name": "Honey Lamp", + "desc": "Honey lamps, made from glowing honey encased in beeswax, shed light as a lamp. Though the lamps are often found in the shape of a globe, the honey can also be sealed inside stone or wood recesses. If the wax that shields the honey is broken or smashed, the honey crystallizes in 7 days and ceases to glow. Eating the honey while it is still glowing grants darkvision out to a range of 30 feet for 1 week and 1 day.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_honey-of-the-warped-wildflowers", + "fields": { + "name": "Honey of the Warped Wildflowers", + "desc": "This spirit honey is made from wildflowers growing in an area warped by magic, such as the flowers growing at the base of a wizard's tower or growing in a magical wasteland. When you consume this honey, you have resistance to psychic damage, and you have advantage on Intelligence saving throws. In addition, you can use an action to warp reality around one creature you can see within 60 feet of you. The target must succeed on a DC 15 Intelligence saving throw or be bewildered for 1 minute. At the start of a bewildered creature's turn, it must roll a die. On an even result, the creature can act normally. On an odd result, the creature is incapacitated until the start of its next turn as it becomes disoriented by its surroundings and unable to fully determine what is real and what isn't. You can't warp the reality around another creature in this way again until you finish a long rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_honey-trap", + "fields": { + "name": "Honey Trap", + "desc": "This jar is made of beaten metal and engraved with honeybees. It has 7 charges, and it regains 1d6 + 1 expended charges daily at dawn. If you expend the jar's last charge, roll a d20. On a 1, the jar shatters and loses all its magical properties. While holding the jar, you can use an action to expend 1 charge to hurl a glob of honey at a target within 30 feet of you. Make a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the glob expands, and the creature is restrained. A creature restrained by the honey can use an action to make a DC 15 Strength (Athletics) or Dexterity (Acrobatics) check (target's choice). On a success, the creature is no longer restrained by the honey.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_honeypot-of-awakening", + "fields": { + "name": "Honeypot of Awakening", + "desc": "If you place 1 pound of honey inside this pot, the honey transforms into an ochre jelly after 24 hours. The jelly remains in a dormant state within the pot until you dump it out. You can use an action to dump the jelly from the pot in an unoccupied space within 5 feet of you. Once dumped, the ochre jelly is hostile to all creatures, including you. Only one ochre jelly can occupy the pot at a time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_howling-rod", + "fields": { + "name": "Howling Rod", + "desc": "This sturdy, iron rod is topped with the head of a howling wolf with red carnelians for eyes. The rod has 5 charges for the following properties, and it regains 1d4 + 1 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_humble-cudgel-of-temperance", + "fields": { + "name": "Humble Cudgel of Temperance", + "desc": "This simple, polished club has a studded iron band around one end. When you attack a poisoned creature with this magic weapon, you have advantage on the attack roll. When you roll a 20 on an attack roll made with this weapon, the target becomes poisoned for 1 minute. If the target was already poisoned, it becomes incapacitated instead. The target can make a DC 13 Constitution saving throw at the end of each of its turns, ending the poisoned or incapacitated condition on itself on a success. Formerly a moneylender with a heart of stone and a small army of brutal thugs, Faustin the Drunkard awoke one day with a punishing hangover that seemed never-ending. He took this as a sign of punishment from the gods, not for his violence and thievery, but for his taste for the grape, in abundance. He decided all problems stemmed from the “demon” alcohol, and he became a cleric. No less brutal than before, he and his thugs targeted public houses, ale makers, and more. In his quest to rid the world of alcohol, he had the humble cudgel of temperance made and blessed with terrifying power. Now long since deceased, his simple, humble-appearing club continues to wreck havoc wherever it turns up.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hunters-charm-1", + "fields": { + "name": "Hunter's Charm (+1)", + "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hunters-charm-2", + "fields": { + "name": "Hunter's Charm (+2)", + "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_hunters-charm-3", + "fields": { + "name": "Hunter's Charm (+3)", + "desc": "This small fetish is made out of bones, feathers, and semi-precious gems. Typically worn around the neck, this charm can also be wrapped around your brow or wrist or affixed to a weapon. While wearing or carrying this charm, you have a bonus to attack and damage rolls made against your favored enemies. The bonus is determined by the charm's rarity.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_iceblink-greatsword", + "fields": { + "name": "Iceblink Greatsword", + "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_iceblink-longsword", + "fields": { + "name": "Iceblink Longsword", + "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_iceblink-rapier", + "fields": { + "name": "Iceblink Rapier", + "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_iceblink-scimitar", + "fields": { + "name": "Iceblink Scimitar", + "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_iceblink-shortsword", + "fields": { + "name": "Iceblink Shortsword", + "desc": "The blade of this weapon is cool to the touch and gives off a yellow-white radiance, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. In temperatures above freezing, vapor wafts off the chilled blade. When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_impact-club", + "fields": { + "name": "Impact Club", + "desc": "This magic weapon has 3 charges and regains 1d3 expended charges daily at dawn. When you hit a target on your turn, you can take a bonus action to spend 1 charge and attempt to shove the target. The club grants you a +1 bonus on your Strength (Athletics) check to shove the target. If you roll a 20 on your attack roll with the club, you have advantage on your Strength (Athletics) check to shove the target, and you can push the target up to 10 feet away.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_impaling-lance", + "fields": { + "name": "Impaling Lance", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_impaling-morningstar", + "fields": { + "name": "Impaling Morningstar", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_impaling-pike", + "fields": { + "name": "Impaling Pike", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_impaling-rapier", + "fields": { + "name": "Impaling Rapier", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_impaling-warpick", + "fields": { + "name": "Impaling Warpick", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, you embed the weapon in the target. If the target is Medium or smaller and is within 5 feet of a wall or other solid object when you hit with this weapon, it is also restrained while the weapon is embedded. At the end of the target's turn while the weapon is embedded in it, the target takes damage equal to the weapon's damage, with no additional modifiers. A creature, including the target, can use its action to make a DC 13 Strength check, removing the weapon from the target on a success. You can remove the embedded weapon from the target by speaking the weapon's command word.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_incense-of-recovery", + "fields": { + "name": "Incense of Recovery", + "desc": "This block of perfumed incense appears to be normal, nonmagical incense until lit. The incense burns for 1 hour and gives off a lavender scent, accompanied by pale mauve smoke that lightly obscures the area within 30 feet of it. Each spellcaster that takes a short rest in the smoke regains one expended spell slot at the end of the short rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_interplanar-paint", + "fields": { + "name": "Interplanar Paint", + "desc": "This black, tarry substance can be used to paint a single black doorway on a flat surface. A pot contains enough paint to create one doorway. While painting, you must concentrate on a plane of existence other than the one you currently occupy. If you are not interrupted, the doorway can be painted in 5 minutes. Once completed, the painting opens a two-way portal to the plane you imagined. The doorway is mirrored on the other plane, often appearing on a rocky face or the wall of a building. The doorway lasts for 1 week or until 5 gallons of water with flecks of silver worth at least 2,000 gp is applied to one side of the door.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ironskin-oil", + "fields": { + "name": "Ironskin Oil", + "desc": "This grayish fluid is cool to the touch and slightly gritty. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature has resistance to piercing and slashing damage for 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ivy-crown-of-prophecy", + "fields": { + "name": "Ivy Crown of Prophecy", + "desc": "While wearing this ivy, filigreed crown, you can use an action to cast the divination spell from it. The crown can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_jewelers-anvil", + "fields": { + "name": "Jeweler's Anvil", + "desc": "This small, foot-long anvil is engraved with images of jewelry in various stages of the crafting process. It weighs 10 pounds and can be mounted on a table or desk. You can use a bonus action to speak its command word and activate it, causing it to warm any nonferrous metals (including their alloys, such as brass or bronze). While you remain within 5 feet of the anvil, you can verbally command it to increase or decrease the temperature, allowing you to soften or melt any kind of nonferrous metal. While activated, the anvil remains warm to the touch, but its heat affects only nonferrous metal. You can use a bonus action to repeat the command word to deactivate the anvil. If you use the anvil while making any check with jeweler's tools or tinker's tools, you can double your proficiency bonus. If your proficiency bonus is already doubled, you have advantage on the check instead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_jungle-mess-kit", + "fields": { + "name": "Jungle Mess Kit", + "desc": "This crucial piece of survival gear guarantees safe use of the most basic of consumables. The hinged metal container acts as a cook pot and opens to reveal a cup, plate, and eating utensils. This kit renders any spoiled, rotten, or even naturally poisonous food or drink safe to consume. It can purify only mundane, natural effects. It has no effect on food that is magically spoiled, rotted, or poisoned, and it can't neutralize brewed poisons, venoms, or similarly manufactured toxins. Once it has purified 3 cubic feet of food and drink, it can't be used to do so again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_justicars-mask", + "fields": { + "name": "Justicar's Mask", + "desc": "This stern-faced mask is crafted of silver. While wearing the mask, your gaze can root enemies to the spot. When a creature that can see the mask starts its turn within 30 feet of you, you can use a reaction to force it to make a DC 15 Wisdom saving throw, if you can see the creature and aren't incapacitated. On a failure, the creature is restrained. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Otherwise, the condition lasts until removed with the dispel magic spell or until you end it (no action required). Justicars are arbiters of law and order, operating independently of any official city guard or watch divisions. They are recognizable by their black, hooded robes, silver masks, and the rods they carry as weapons. These stern sentinels are overseen by The Magister, a powerful wizard of whom little is known other than their title. The Magister has made it their duty to oversee order in the city and executes their plans through the Justicars, giving them the Magister's mark, a signet ring, as a symbol of their authority. While some officers and members of the watch may be resentful of the Justicars' presence, many are grateful for their aid, especially in situations that could require magic. Justicar's are a small, elite group, typically acting as solo agents, though extremely dangerous situations bring them together in pairs or larger groups as needed. The Justicars are outfitted with three symbols of authority that are also imbued with power: their masks, rods, and rings. Each by itself is a useful item, but they are made stronger when worn together. The combined powers of this trinity of items make a Justicar a formidable force in the pursuit of law and order.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_keffiyeh-of-serendipitous-escape", + "fields": { + "name": "Keffiyeh of Serendipitous Escape", + "desc": "This checkered cotton headdress is indistinguishable from the mundane scarves worn by the desert nomads. As an action, you can remove the headdress, spread it open on the ground, and speak the command word. The keffiyeh transforms into a 3-foot by 5-foot carpet of flying which moves according to your spoken directions provided that you are within 30 feet of it. Speaking the command word a second time transforms the carpet back into a headdress again.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_knockabout-billet", + "fields": { + "name": "Knockabout Billet", + "desc": "This stout, oaken cudgel helps you knock your opponents to the ground or away from you. When you hit a creature with this magic weapon, you can shove the target as part of the same attack, using your attack roll in place of a Strength (Athletics) check. The weapon deals damage as normal, regardless of the result of the shove. This property of the club can be used no more than once per hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_kobold-firework", + "fields": { + "name": "Kobold Firework", + "desc": "These small pouches and cylinders are filled with magical powders and reagents, and they each have a small fuse protruding from their closures. You can use an action to light a firework then throw it up to 30 feet. The firework activates immediately or on initiative count 20 of the following round, as detailed below. Once a firework’s effects end, it is destroyed. A firework can’t be lit underwater, and submersion in water destroys a firework. A lit firework can be destroyed early by dousing it with at least 1 gallon of water.\n Blinding Goblin-Cracker (Uncommon). This bright yellow firework releases a blinding flash of light on impact. Each creature within 15 feet of where the firework landed and that can see it must succeed on a DC 13 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n Deafening Kobold-Barker (Uncommon). This firework consists of several tiny green cylinders strung together and bursts with a loud sound on impact. Each creature within 15 feet of where the firework landed and that can hear it must succeed on a DC 13 Constitution saving throw or be deafened for 1 minute. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n Enchanting Elf-Fountain (Uncommon). This purple pyramidal firework produces a fascinating and colorful shower of sparks for 1 minute. The shower of sparks starts on the round after you throw it. While the firework showers sparks, each creature that enters or starts its turn within 30 feet of the firework must make a DC 13 Wisdom saving throw. On a failed save, the creature has disadvantage on Wisdom (Perception) checks made to perceive any creature or object other than the firework until the start of its next turn.\n Fairy Sparkler (Common). This narrow firework is decorated with stars and emits a bright, sparkling light for 1 minute. It starts emitting light on the round after you throw it. The firework sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the firework’s bright light.\n Priest Light (Rare). This silver cylinder firework produces a tall, argent flame and numerous golden sparks for 10 minutes. The flame appears on the round after you throw it. The firework sheds bright light in a 30-foot radius and dim light for an additional 30 feet. An undead creature can’t willingly enter the firework’s bright light by nonmagical means. If the undead creature tries to use teleportation or similar interplanar travel to do so, it must first succeed on a DC 15 Charisma saving throw. If an undead creature is in the bright light when it appears, the creature must succeed on a DC 15 Wisdom saving throw or be compelled to leave the bright light. It won’t move into any obviously deadly hazard, such as a fire or pit, but it will provoke opportunity attacks to move out of the bright light. In addition, each non-undead creature in the bright light can’t be charmed, frightened, or possessed by an undead creature.\n Red Dragon’s Breath (Very Rare). This firework is wrapped in gold leaf and inscribed with scarlet runes, and it erupts into a vertical column of fire on impact. Each creature in a 10-foot-radius, 60-foot-high cylinder centered on the point of impact must make a DC 17 Dexterity saving throw, taking 10d6 fire damage on a failed save, or half as much damage on a successful one.\n Snake Fountain (Rare). This short, wide cylinder is red, yellow, and black with a scale motif, and it produces snakes made of ash for 1 minute. It starts producing snakes on the round after you throw it. The firework creates 1 poisonous snake each round. The snakes are friendly to you and your companions. Roll initiative for the snakes as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don’t issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The snakes remain for 10 minutes, until you dismiss them as a bonus action, or until they are doused with at least 1 gallon of water.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_kraken-clutch-ring", + "fields": { + "name": "Kraken Clutch Ring", + "desc": "This green copper ring is etched with the image of a kraken with splayed tentacles. The ring has 5 charges, and it regains 1d4 + 1 expended charges daily at dawn, as long as it was immersed in water for at least 1 hour since the previous dawn. If the ring has at least 1 charge, you have advantage on grapple checks. While wearing this ring, you can expend 1 or more of its charges to cast one of the following spells from it, using spell save DC 15: black tentacles (2 charges), call lightning (1 charge), or control weather (4 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_kyshaarths-fang", + "fields": { + "name": "Kyshaarth's Fang", + "desc": "This dagger's blade is composed of black, bone-like material. Tales suggest the weapon is fashioned from a Voidling's (see Tome of Beasts) tendril barb. When you hit with an attack using this magic weapon, the target takes an extra 2d6 necrotic damage. If you are in dim light or darkness, you regain a number of hit points equal to half the necrotic damage dealt.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_labrys-of-the-raging-bull-battleaxe", + "fields": { + "name": "Labrys of the Raging Bull (Battleaxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you wield the axe, you have advantage on Strength (Athletics) checks to shove a creature, and you can shove a creature up to two sizes larger than you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_labrys-of-the-raging-bull-greataxe", + "fields": { + "name": "Labrys of the Raging Bull (Greataxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you wield the axe, you have advantage on Strength (Athletics) checks to shove a creature, and you can shove a creature up to two sizes larger than you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_language-pyramid", + "fields": { + "name": "Language Pyramid", + "desc": "Script from dozens of languages flows across this sandstone pyramid's surface. While holding or carrying the pyramid, you understand the literal meaning of any spoken language that you hear. In addition, you understand any written language that you see, but you must be touching the surface on which the words are written. It takes 1 minute to read one page of text. The pyramid has 3 charges, and it regains 1d3 expended charges daily at dawn. You can use an action to expend 1 of its charges to imbue yourself with magical speech for 1 hour. For the duration, any creature that knows at least one language and that can hear you understands any words you speak. In addition, you can use an action to expend 1 of the pyramid's charges to imbue up to six creatures within 30 feet of you with magical understanding for 1 hour. For the duration, each target can understand any spoken language that it hears.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_lantern-of-auspex", + "fields": { + "name": "Lantern of Auspex", + "desc": "This elaborate lantern is covered in simple glyphs, and its glass panels are intricately etched. Two of the panels depict a robed woman holding out a single hand, while the other two panels depict the same woman with her face partially obscured by a hand of cards. The lantern's magic is activated when it is lit, which requires an action. Once lit, the lantern sheds bright light in a 30-foot radius and dim light for an additional 30 feet for 1 hour. You can use an action to open or close one of the glass panels on the lantern. If you open a panel, a vision of a random event that happened or that might happen plays out in the light's area. Closing a panel stops the vision. The visions are shown as nondescript smoky apparitions that play out silently in the lantern's light. At the GM's discretion, the vision might change to a different event each 1 minute that the panel remains open and the lantern lit. Once used, the lantern can't be used in this way again until 7 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_lantern-of-judgment", + "fields": { + "name": "Lantern of Judgment", + "desc": "This mithral and gold lantern is emblazoned with a sunburst symbol. While holding the lantern, you have advantage on Wisdom (Insight) and Intelligence (Investigation) checks. As a bonus action, you can speak a command word to cause one of the following effects: - The lantern casts bright light in a 60-foot cone and dim light for an additional 60 feet. - The lantern casts bright light in a 30-foot radius and dim light for an additional 30 feet. - The lantern sheds dim light in a 5-foot radius.\n- Douse the lantern's light. When you cause the lantern to shed bright light, you can speak an additional command word to cause the light to become sunlight. The sunlight lasts for 1 minute after which the lantern goes dark and can't be used again until the next dawn. During this time, the lantern can function as a standard hooded lantern if provided with oil.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_lantern-of-selective-illumination", + "fields": { + "name": "Lantern of Selective Illumination", + "desc": "This brass lantern is fitted with round panels of crown glass and burns for 6 hours on one 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. During a short rest, you can choose up to three creatures to be magically linked by the lantern. When the lantern is lit, its light can be perceived only by you and those linked creatures. To anyone else, the lantern appears dark and provides no illumination.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_larkmail", + "fields": { + "name": "Larkmail", + "desc": "While wearing this armor, you gain a +1 bonus to AC. The links of this mail have been stained to create the optical illusion that you are wearing a brown-and-russet feathered tunic. While you wear this armor, you have advantage on Charisma (Performance) checks made with an instrument. In addition, while playing an instrument, you can use a bonus action and choose any number of creatures within 30 feet of you that can hear your song. Each target must succeed on a DC 15 Charisma saving throw or be charmed by you for 1 minute. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_last-chance-quiver", + "fields": { + "name": "Last Chance Quiver", + "desc": "This quiver holds 20 arrows. However, when you draw and fire the last arrow from the quiver, it magically produces a 21st arrow. Once this arrow has been drawn and fired, the quiver doesn't produce another arrow until the quiver has been refilled and another 20 arrows have been drawn and fired.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_leaf-bladed-greatsword", + "fields": { + "name": "Leaf-Bladed Greatsword", + "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_leaf-bladed-longsword", + "fields": { + "name": "Leaf-Bladed Longsword", + "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_leaf-bladed-rapier", + "fields": { + "name": "Leaf-Bladed Rapier", + "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_leaf-bladed-scimitar", + "fields": { + "name": "Leaf-Bladed Scimitar", + "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_leaf-bladed-shortsword", + "fields": { + "name": "Leaf-Bladed Shortsword", + "desc": "This thin, curved blade has a bell guard shaped like a curled, golden leaf. You gain a +1 bonus to attack and damage rolls with this magic weapon. When you hit an aberration or undead creature with it, that target takes an extra 1d8 damage of the weapon's type. You can use an action to cast the barkskin spell on yourself for 1 hour, requiring no concentration. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_least-scroll-of-conjuring", + "fields": { + "name": "Least Scroll of Conjuring", + "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_leather-armor-of-the-leaf", + "fields": { + "name": "Leather Armor of the Leaf", + "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_leather-armor-of-warding-1", + "fields": { + "name": "Leather Armor of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_leather-armor-of-warding-2", + "fields": { + "name": "Leather Armor of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_leather-armor-of-warding-3", + "fields": { + "name": "Leather Armor of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_leonino-wings", + "fields": { + "name": "Leonino Wings", + "desc": "This cloak is decorated with the spotted white and brown pattern of a barn owl's wing feathers. While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of a Leoninos (see Creature Codex) owl-like feathered wings until you repeat the command word as an action. The wings give you a flying speed equal to your walking speed, and you have advantage on Dexterity (Stealth) checks made while flying in forests and urban settings. In addition, when you fly out of an enemy's reach, you don't provoke opportunity attacks. You can use the cloak to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land. The cloak regains 2 hours of flying capability for every 12 hours it isn't in use.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_lesser-scroll-of-conjuring", + "fields": { + "name": "Lesser Scroll of Conjuring", + "desc": "By using an action to recite the incantation inscribed on this scroll, you can conjure a creature to assist you, chosen by the GM or determined by rolling a d8 and consulting the appropriate table. Once the creature appears, the scroll crumbles to dust and is destroyed. The creature vanishes after 8 hours or when it is reduced to 0 hit points. The creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In absence of such orders, the creature acts in a fashion appropriate to its nature. Alternately, you can command the creature to perform a single task, which it will do to the best of its ability. A task can be simple (“Remove the debris blocking this passage.”) or complex (“Search the castle, taking care to remain unnoticed. Take a count of the guards and their locations, then return here and draw me a map.”) but must be completable within 8 hours. | d8 | Creature | |\n| --- | -------------------------------------------------------------------------------------------------- | --- |\n| 1 | Dust Mephit\\|Dust/Ice Mephit\\|Ice/Magma Mephit\\|Magma mephit or Lantern Dragonette | ] |\n| 2 | Hippogriff or Clockwork Soldier | |\n| 3 | Imp/Quasit or Aviere | |\n| 4 | Death Dog or Giant Moth - Shockwing | |\n| 5 | Centaur or Roggenwolf | |\n| 6 | Ettercap or Clockwork Hound | |\n| 7 | Ogre of Spider thief | |\n| 8 | Griffon or Dragon - Light - Wyrmling | | | d8 | Creature |\n| --- | ------------------------------------------------------ |\n| 1 | Copper Dragon Wyrmling or Wind Wyrmling Dragon |\n| 2 | Pegasus or Demon - Wind |\n| 3 | Gargoyle or Drake - Hoarfrost |\n| 4 | Grick or Kitsune |\n| 5 | Hell Hound or Kobold - Swolbold |\n| 6 | Winter Wolf or Clockwork Huntsman |\n| 7 | Minotaur or Drake - Peluda |\n| 8 | Doppelganger or Pombero | | d8 | Creature |\n| --- | ------------------------------------------ |\n| 1 | Bearded Devil or Korrigan |\n| 2 | Nightmare or Wyrmling Flame Dragon |\n| 3 | Phase Spider or Bloodsapper |\n| 4 | Chuul or Elemental - Venom |\n| 5 | Ettin or Domovoi |\n| 6 | Succubus or Incubus or Ratatosk |\n| 7 | Salamander or Drake - Moon |\n| 8 | Xorn or Karakura |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_lifeblood-gear", + "fields": { + "name": "Lifeblood Gear", + "desc": "As an action, you can attach this tiny bronze gear to a pile of junk or other small collection of mundane objects and create a Tiny or Small mechanical servant. This servant uses the statistics of a beast with a challenge rating of 1/4 or lower, except it has immunity to poison damage and the poisoned condition, and it can't be charmed or become exhausted. If it participates in combat, the servant lasts for up to 5 rounds or until destroyed. If commanded to perform mundane tasks, such as fetching items, cleaning, or other similar task, it lasts for up to 5 hours or until destroyed. Once affixed to the servant, the gear pulsates like a beating heart. If the gear is removed, you lose control of the servant, which then attacks indiscriminately for up to 5 rounds or until destroyed. Once the duration expires or the servant is destroyed, the gear becomes a nonmagical gear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_lightning-rod", + "fields": { + "name": "Lightning Rod", + "desc": "This rod is made from the blackened wood of a lightning-struck tree and topped with a spike of twisted iron. It functions as a magic javelin that grants a +1 bonus to attack and damage rolls made with it. While holding it, you are immune to lightning damage, and each creature within 5 feet of you has resistance to lightning damage. The rod can hold up to 6 charges, but it has 0 charges when you first attune to it. Whenever you are subjected to lightning damage, the rod gains 1 charge. While the rod has 6 charges, you have resistance to lightning damage instead of immunity. The rod loses 1d6 charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_linguists-cap", + "fields": { + "name": "Linguist's Cap", + "desc": "While wearing this simple hat, you have the ability to speak and read a single language. Each cap has a specific language associated with it, and the caps often come in styles or boast features unique to the cultures where their associated languages are most prominent. The GM chooses the language or determines it randomly from the lists of standard and exotic languages.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_liquid-courage", + "fields": { + "name": "Liquid Courage", + "desc": "This magical cordial is deep red and smells strongly of fennel. You have advantage on the next saving throw against being frightened. The effect ends after you make such a saving throw or when 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_liquid-shadow", + "fields": { + "name": "Liquid Shadow", + "desc": "The contents of this bottle are inky black and seem to absorb the light. The dark liquid can cover a single Small or Medium creature. Applying the liquid takes 1 minute. For 1 hour, the coated creature has advantage on Dexterity (Stealth) checks. Alternately, you can use an action to hurl the bottle up to 20 feet, shattering it on impact. Magical darkness spreads from the point of impact to fill a 15-foot-radius sphere for 1 minute. This darkness works like the darkness spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_living-juggernaut", + "fields": { + "name": "Living Juggernaut", + "desc": "This broad, bulky suit of plate is adorned with large, blunt spikes and has curving bull horns affixed to its helm. While wearing this armor, you gain a +1 bonus to AC, and difficult terrain doesn't cost you extra movement.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_living-stake", + "fields": { + "name": "Living Stake", + "desc": "Fashioned from mandrake root, this stake longs to taste the heart's blood of vampires. Make a melee attack against a vampire in range, treating the stake as an improvised weapon. On a hit, the stake attaches to a vampire's chest. At the end of the vampire's next turn, roots force their way into the vampire's heart, negating fast healing and preventing gaseous form. If the vampire is reduced to 0 hit points while the stake is attached to it, it is immobilized as if it had been staked. A creature can take its action to remove the stake by succeeding on a DC 17 Strength (Athletics) check. If it is removed from the vampire's chest, the stake is destroyed. The stake has no effect on targets other than vampires.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_lockbreaker", + "fields": { + "name": "Lockbreaker", + "desc": "You can use this stiletto-bladed dagger to open locks by using an action and making a Strength check. The DC is 5 less than the DC to pick the lock (minimum DC 10). On a success, the lock is broken.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_locket-of-dragon-vitality", + "fields": { + "name": "Locket of Dragon Vitality", + "desc": "Legends tell of a dragon whose hide was impenetrable and so tenacious that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon's name was lost, but its legacy remains. This magic amulet is one of two items that were crafted to hold its heart. An intricate engraving of a warrior's sword piercing a dragon's chest is detailed along the front of this untarnished silver locket. Within the locket is a clear crystal vial with a pulsing piece of a dragon's heart. The pulses become more frequent when you are close to death. Attuning to the locket requires you to mix your blood with the blood within the vial. The vial holds 3 charges of dragon blood that are automatically expended when you reach certain health thresholds. The locket regains 1 expended charge for each vial of dragon blood you place in the vial inside the locket up to a maximum of 3 charges. For the purpose of this locket, “dragon” refers to any creature with the dragon type, including drakes and wyverns. While wearing or carrying the locket, you gain the following effects: - When you reach 0 hit points, but do not die outright, the vial breaks and the dragon heart stops pulsing, rendering the item broken and irreparable. You immediately gain temporary hit points equal to your level + your Constitution modifier. If the locket has at least 1 charge of dragon blood, it does not break, but this effect can't be activated again until 3 days have passed. - When you are reduced to half of your maximum hit points, the locket expends 1 charge of dragon blood, and you become immune to any type of blood loss effect, such as the blood loss from a stirge's Blood Drain, for 1d4 + 1 hours. Any existing blood loss effects end immediately when this activates.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_locket-of-remembrance", + "fields": { + "name": "Locket of Remembrance", + "desc": "You can place a small keepsake of a creature, such as a miniature portrait, a lock of hair, or similar item, within the locket. The keepsake must be willingly given to you or must be from a creature personally connected to you, such as a relative or lover.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_locksmiths-oil", + "fields": { + "name": "Locksmith's Oil", + "desc": "This shimmering oil can be applied to a lock. Applying the oil takes 1 minute. For 1 hour, any creature that makes a Dexterity check to pick the lock using thieves' tools rolls a d4 ( 1d4) and adds the number rolled to the check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_lodestone-caltrops", + "fields": { + "name": "Lodestone Caltrops", + "desc": "This small gray pouch appears empty, though it weighs 3 pounds. Reaching inside the bag reveals dozens of small, metal balls. As an action, you can upend the bag and spread the metal balls to cover a square area that is 5 feet on a side. Any creature that enters the area while wearing metal armor or carrying at least one metal item must succeed on a DC 13 Strength saving throw or stop moving this turn. A creature that starts its turn in the area must succeed on a DC 13 Strength saving throw to leave the area. Alternatively, a creature in the area can drop or remove whatever metal items are on it and leave the area without needing to make a saving throw. The metal balls remain for 1 minute. Once the bag's contents have been emptied three times, the bag can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_longbow-of-accuracy", + "fields": { + "name": "Longbow of Accuracy", + "desc": "The normal range of this bow is doubled, but its long range remains the same.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_longsword-of-fallen-saints", + "fields": { + "name": "Longsword of Fallen Saints", + "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_longsword-of-volsung", + "fields": { + "name": "Longsword of Volsung", + "desc": "Legends tell of a dragon whose hide was impenetrable and so robust that only a blow to the heart would kill it. An unnamed hero finally defeated it and tore its heart into two. The dragon’s name was lost, but its legacy remains. This sword is one of two items that were crafted to hold its heart. The black blade is adorned with glittering silver runes, and its guard has a shallow opening at the center with grooves connecting it to the first rune. The sword’s pommel is a large, clear crystal held fast by silver scales. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit a dragon with an attack using this sword, that creature takes an extra 1d6 slashing damage. Runes of Courage. You can’t be frightened while holding or carrying this sword. Fragment of Gram Awakened. You can use a bonus action to awaken a fragment of the spirit of the great wyrm that inhabits this blade. For 24 hours, you gain a +3 bonus to attack and damage rolls with this magic sword, and when you hit a dragon with an attack using this sword, that creature takes an extra 3d6 slashing damage. Once used, this property can’t be used again until 3 days have passed. If you have performed the Dragon Heart Ritual, you can use a bonus action to expend 2 of the sword’s charges to activate this property, and you can use this property as often as you want, as long as you have the charges to do so. Dragon Heart Ritual. If you are also attuned to the locket of dragon vitality (see page 152), you can drain 3 charges from the locket into the sword, turning the crystal pommel a deep red and rendering the locket broken and irreparable. Doing this requires a long rest where you also re-attune with the newly charged sword of volsung. Upon completing the Dragon Heart Ritual, the sword contains all remaining charges from the locket, and you gain the locket’s effects while holding or carrying the sword. When you are reduced to 0 hit points and trigger the locket’s temporary hit points, the sword isn’t destroyed, but you can’t trigger that effect again until 24 hours have passed. The sword regains all expended charges after you slay any dragon. For the purpose of this sword, “dragon” refers to any creature with the dragon type, including drakes and wyverns.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_loom-of-fate", + "fields": { + "name": "Loom of Fate", + "desc": "If you spend 1 hour weaving on this portable loom, roll a 1d20 and record the number rolled. You can replace any attack roll, saving throw, or ability check made by you or a creature that you can see with this roll. You must choose to do so before the roll. The loom can't be used this way again until the next dawn. Once you have used the loom 3 times, the fabric is complete, and the loom is no longer magical. The fabric becomes a shifting tapestry that represents the events where you used the loom's power to alter fate.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_lucky-charm-of-the-monkey-king", + "fields": { + "name": "Lucky Charm of the Monkey King", + "desc": "This tiny stone statue of a grinning monkey holds a leather loop in its paws, allowing the charm to hang from a belt or pouch. While attuned to this charm, you can use a bonus action to gain a +1 bonus on your next ability check, attack roll, or saving throw. Once used, the charm can't be used again until the next dawn. You can be attuned to only one lucky charm at a time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_lucky-coin", + "fields": { + "name": "Lucky Coin", + "desc": "This worn, clipped copper piece has 6 charges. You can use a reaction to expend 1 charge and gain a +1 bonus on your next ability check. The coin regains 1d6 charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, the coin runs out of luck and becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_lucky-eyepatch", + "fields": { + "name": "Lucky Eyepatch", + "desc": "You gain a +1 bonus to saving throws while you wear this simple, black eyepatch. In addition, if you are missing the eye that the eyepatch covers and you roll a 1 on the d20 for a saving throw, you can reroll the die and must use the new roll. The eyepatch can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_lupine-crown", + "fields": { + "name": "Lupine Crown", + "desc": "This grisly helm is made from the leather-reinforced skull and antlers of a deer with a fox skull and hide stretched over it. It is secured by a strap made from a magically preserved length of deer entrails. While wearing this helm, you gain a +1 bonus to AC, and you have advantage on Dexterity (Stealth) and Wisdom (Survival) checks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_luring-perfume", + "fields": { + "name": "Luring Perfume", + "desc": "This pungent perfume has a woodsy and slightly musky scent. As an action, you can splash or spray the contents of this vial on yourself or another creature within 5 feet of you. For 1 minute, the perfumed creature attracts nearby humanoids and beasts. Each humanoid and beast within 60 feet of the perfumed creature and that can smell the perfume must succeed on a DC 15 Wisdom saving throw or be charmed by the perfumed creature until the perfume fades or is washed off with at least 1 gallon of water. While charmed, a creature is incapacitated, and, if the creature is more than 5 feet away from the perfumed creature, it must move on its turn toward the perfumed creature by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_magma-mantle", + "fields": { + "name": "Magma Mantle", + "desc": "This cracked black leather cloak is warm to the touch and faint ruddy light glows through the cracks. While wearing this cloak, you have resistance to cold damage. As an action, you can touch the brass clasp and speak the command word, which transforms the cloak into a flowing mantle of lava for 1 minute. During this time, you are unharmed by the intense heat, but any hostile creature within 5 feet of you that touches you or hits you with a melee attack takes 3d6 fire damage. In addition, for the duration, you suffer no damage from contact with lava, and you can burrow through lava at half your walking speed. The cloak can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_maidens-tears", + "fields": { + "name": "Maiden's Tears", + "desc": "This fruity mead is the color of liquid gold and is rumored to be brewed with a tear from the goddess of bearfolk herself. When you drink this mead, you regenerate lost hit points for 1 minute. At the start of your turn, you regain 10 hit points if you have at least 1 hit point.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mail-of-the-sword-master", + "fields": { + "name": "Mail of the Sword Master", + "desc": "While wearing this armor, the maximum Dexterity modifier you can add to determine your Armor Class is 4, instead of 2. While wearing this armor, if you are wielding a sword and no other weapons, you gain a +2 bonus to damage rolls with that sword.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_manticores-tail", + "fields": { + "name": "Manticore's Tail", + "desc": "Ten spikes stick out of the head of this magic weapon. While holding the morningstar, you can fire one of the spikes as a ranged attack, using your Strength modifier for the attack and damage rolls. This attack has a normal range of 100 feet and a long range of 200 feet. On a hit, the spike deals 1d8 piercing damage. Once all of the weapon's spikes have been fired, the morningstar deals bludgeoning damage instead of the piercing damage normal for a morningstar until the next dawn, at which time the spikes regrow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mantle-of-blood-vengeance", + "fields": { + "name": "Mantle of Blood Vengeance", + "desc": "This red silk cloak has 3 charges and regains 1d3 expended charges daily at dawn. While wearing it, you can visit retribution on any creature that dares spill your blood. When you take piercing, slashing, or necrotic damage from a creature, you can use a reaction to expend 1 charge to turn your blood into a punishing spray. The creature that damaged you must make a DC 13 Dexterity saving throw, taking 2d10 acid damage on a failed save, or half as much damage on a successful one.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mantle-of-the-forest-lord", + "fields": { + "name": "Mantle of the Forest Lord", + "desc": "Created by village elders for druidic scouts to better traverse and survey the perimeters of their lands, this cloak resembles thick oak bark but bends and flows like silk. While wearing this cloak, you can use an action to cast the tree stride spell on yourself at will, except trees need not be living in order to pass through them.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mantle-of-the-lion", + "fields": { + "name": "Mantle of the Lion", + "desc": "This splendid lion pelt is designed to be worn across the shoulders with the paws clasped at the base of the neck. While wearing this mantle, your speed increases by 10 feet, and the mantle's lion jaws are a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, the mantle's bite deals piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. In addition, if you move at least 20 feet straight toward a creature and then hit it with a melee attack on the same turn, that creature must succeed on a DC 15 Strength saving throw or be knocked prone. If a creature is knocked prone in this way, you can make an attack with the mantle's bite against the prone creature as a bonus action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mantle-of-the-void", + "fields": { + "name": "Mantle of the Void", + "desc": "While wearing this midnight-blue mantle covered in writhing runes, you gain a +1 bonus to saving throws, and if you succeed on a saving throw against a spell that allows you to make a saving throw to take only half the damage or suffer partial effects, you instead take no damage and suffer none of the spell's effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_manual-of-exercise", + "fields": { + "name": "Manual of Exercise", + "desc": "This book contains exercises and techniques to better perform a specific physical task, and its words are charged with magic. If you spend 24 hours over a period of 3 days or fewer studying the tome and practicing its instructions, you gain proficiency in the Strength or Dexterity-based skill (such as Athletics or Stealth) associated with the book. The manual then loses its magic, but regains it in ten years.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_manual-of-the-lesser-golem", + "fields": { + "name": "Manual of the Lesser Golem", + "desc": "A manual of the lesser golem can be found in a book, on a scroll, etched into a piece of stone or metal, or scribed on any other medium that holds words, runes, and arcane inscriptions. Each manual of the lesser golem describes the materials needed and the process to be followed to create one type of lesser golem. The GM chooses the type of lesser golem detailed in the manual or determines the golem type randomly. To decipher and use the manual, you must be a spellcaster with at least one 2nd-level spell slot. You must also succeed on a DC 10 Intelligence (Arcana) check at the start of the first day of golem creation. If you fail the check, you must wait at least 24 hours to restart the creation process, and you take 3d6 psychic damage that can be regained only after a long rest. A lesser golem created via a manual of the lesser golem is not immortal. The magic that keeps the lesser golem intact gradually weakens until the golem finally falls apart. A lesser golem lasts exactly twice the number of days it takes to create it (see below) before losing its power. Once the golem is created, the manual is expended, the writing worthless and incapable of creating another. The statistics for each lesser golem can be found in the Creature Codex. | dice: 1d20 | Golem | Time | Cost |\n| ---------- | ---------------------- | ------- | --------- |\n| 1-7 | Lesser Hair Golem | 2 days | 100 gp |\n| 8-13 | Lesser Mud Golem | 5 days | 500 gp |\n| 14-17 | Lesser Glass Golem | 10 days | 2,000 gp |\n| 18-20 | Lesser Wood Golem | 15 days | 20,000 gp |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_manual-of-vine-golem", + "fields": { + "name": "Manual of Vine Golem", + "desc": "This tome contains information and incantations necessary to make a Vine Golem (see Tome of Beasts 2). To decipher and use the manual, you must be a druid with at least two 3rd-level spell slots. A creature that can't use a manual of vine golems and attempts to read it takes 4d6 psychic damage. To create a vine golem, you must spend 20 days working without interruption with the manual at hand and resting no more than 8 hours per day. You must also use powders made from rare plants and crushed gems worth 30,000 gp to create the vine golem, all of which are consumed in the process. Once you finish creating the vine golem, the book decays into ash. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mapping-ink", + "fields": { + "name": "Mapping Ink", + "desc": "This viscous ink is typically found in 1d4 pots, and each pot contains 3 doses. You can use an action to pour one dose of the ink onto parchment, vellum, or cloth then fold the material. As long as the ink-stained material is folded and on your person, the ink captures your footsteps and surroundings on the material, mapping out your travels with great precision. You can unfold the material to pause the mapping and refold it to begin mapping again. Deduct the time the ink maps your travels in increments of 1 hour from the total mapping time. Each dose of ink can map your travels for 8 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_marvelous-clockwork-mallard", + "fields": { + "name": "Marvelous Clockwork Mallard", + "desc": "This intricate clockwork recreation of a Tiny duck is fashioned of brass and tin. Its head is painted with green lacquer, the bill is plated in gold, and its eyes are small chips of black onyx. You can use an action to wind the mallard's key, and it springs to life, ready to follow your commands. While active, it has AC 13, 18 hit points, speed 25 ft., fly 40 ft., and swim 30 ft. If reduced to 0 hit points, it becomes nonfunctional and can't be activated again until 24 hours have passed, during which time it magically repairs itself. If damaged but not disabled, it regains any lost hit points at the next dawn. It has the following additional properties, and you choose which property to activate when you wind the mallard's key.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_masher-basher", + "fields": { + "name": "Masher Basher", + "desc": "A favored weapon of hill giants, this greatclub appears to be little more than a thick tree branch. When you hit a giant with this magic weapon, the giant takes an extra 1d8 bludgeoning damage. When you roll a 20 on an attack roll made with this weapon, the target is stunned until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mask-of-the-leaping-gazelle", + "fields": { + "name": "Mask of the Leaping Gazelle", + "desc": "This painted wooden animal mask is adorned with a pair of gazelle horns. While wearing this mask, your walking speed increases by 10 feet, and your long jump is up to 25 feet with a 10-foot running start.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mask-of-the-war-chief", + "fields": { + "name": "Mask of the War Chief", + "desc": "These fierce yet regal war masks are made by shamans in the cold northern mountains for their chieftains. Carved from the wood of alpine trees, each mask bears the image of a different creature native to those regions. Cave Bear (Uncommon). This mask is carved in the likeness of a roaring cave bear. While wearing it, you have advantage on Charisma (Intimidation) checks. In addition, you can use an action to summon a cave bear (use the statistics of a brown bear) to serve you in battle. The bear is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as attack your enemies. In the absence of such orders, the bear acts in a fashion appropriate to its nature. It vanishes at the next dawn or when it is reduced to 0 hit points. The mask can’t be used this way again until the next dawn. Behir (Very Rare). Carvings of stylized lightning decorate the closed, pointed snout of this blue, crocodilian mask. While wearing it, you have resistance to lightning damage. In addition, you can use an action to exhale lightning in a 30-foot line that is 5 feet wide Each creature in the line must make a DC 17 Dexterity saving throw, taking 3d10 lightning damage on a failed save, or half as much damage on a successful one. This mask can’t be used this way again until the next dawn. Mammoth (Uncommon). This mask is carved in the likeness of a mammoth’s head with a short trunk curling up between the eyes. While wearing it, you count as one size larger when determining your carrying capacity and the weight you can lift, drag, or push. In addition, you can use an action to trumpet like a mammoth. Choose up to six creatures within 30 feet of you and that can hear the trumpet. For 1 minute, each target is under the effect of the bane (if a hostile creature; save DC 13) or bless (if a friendly creature) spell (no concentration required). This mask can’t be used this way again until the next dawn. Winter Wolf (Rare). Carved in the likeness of a winter wolf, this white mask is cool to the touch. While wearing it, you have resistance to cold damage. In addition, you can use an action to exhale freezing air in a 15-foot cone. Each creature in the area must make a DC 15 Dexterity saving throw, taking 3d8 cold damage on a failed save, or half as much damage on a successful one. This mask can’t be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_master-anglers-tackle", + "fields": { + "name": "Master Angler's Tackle", + "desc": "This is a set of well-worn but finely crafted fishing gear. You have advantage on any Wisdom (Survival) checks made to catch fish or other seafood when using it. If you ever roll a 1 on your check while using the tackle, roll again. If the second roll is a 20, you still fail to catch anything edible, but you pull up something interesting or valuable—a bottle with a note in it, a fragment of an ancient tablet carved in ancient script, a mermaid in need of help, or similar. The GM decides what you pull up and its value, if it has one.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_matryoshka-dolls", + "fields": { + "name": "Matryoshka Dolls", + "desc": "This antique set of four nesting dolls is colorfully painted though a bit worn from the years. When attuning to this item, you must give each doll a name, which acts as a command word to activate its properties. You must be within 30 feet of a doll to activate it. The dolls have a combined total of 5 charges, and the dolls regain all expended charges daily at dawn. The largest doll is lined with a thin sheet of lead. A spell or other effect that can sense the presence of magic, such as detect magic, reveals only the transmutation magic of the largest doll, and not any of the dolls or other small items that may be contained within it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mayhem-mask", + "fields": { + "name": "Mayhem Mask", + "desc": "This goat mask with long, curving horns is carved from dark wood and framed in goat's hair. While wearing this mask, you can use its horns to make unarmed strikes. When you hit with it, your horns deal piercing damage equal to 1d6 + your Strength modifier, instead of bludgeoning damage normal for an unarmed strike. If you moved at least 15 feet straight toward the target before you attacked with the horns, the attack deals piercing damage equal to 2d6 + your Strength modifier instead. In addition, you can gaze through the eyes of the mask at one target you can see within 30 feet of you. The target must succeed on a DC 17 Wisdom saving throw or be affected as though it failed a saving throw against the confusion spell. The confusion effect lasts for 1 minute. Once used, this property of the mask can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_medal-of-valor", + "fields": { + "name": "Medal of Valor", + "desc": "You are immune to the frightened condition while you wear this medal. If you are already frightened, the effect ends immediately when you put on the medal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_memory-philter", + "fields": { + "name": "Memory Philter", + "desc": "This swirling liquid is the collected memory of a mortal who willingly traded that memory away to the fey. When you touch the philter, you feel a flash of the emotion contained within. You can unstopper and pour out the philter as an action, unless otherwise specified. The philter's effects take place immediately, either on you or on a creature you can see within 30 feet (your choice). If the target is unwilling, it can make a DC 15 Wisdom saving throw to resist the effect of the philter. A creature affected by a philter experiences the memory contained in the vial. A memory philter can be used only once, but the vial can be reused to store a new memory. Storing a new memory requires a few herbs, a 10-minute ritual, and the sacrifice of a memory. The required sacrifice is detailed in each entry below.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_menders-mark", + "fields": { + "name": "Mender's Mark", + "desc": "This slender brooch is fashioned of silver and shaped in the image of an angel. You can use an action to attach this brooch to a creature, pinning it to clothing or otherwise affixing it to their person. When you cast a spell that restores hit points on the creature wearing the brooch, the spell has a range of 30 feet if its range is normally touch. Only you can transfer the brooch from one creature to another. The creature wearing the brooch can't pass it to another creature, but it can remove the brooch as an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_meteoric-plate", + "fields": { + "name": "Meteoric Plate", + "desc": "This plate armor was magically crafted from plates of interlocking stone. Tiny rubies inlaid in the chest create a glittering mosaic of flames. When you fall while wearing this armor, you can tuck your knees against your chest and curl into a ball. While falling in this way, flames form around your body. You take half the usual falling damage when you hit the ground, and fire explodes from your form in a 20-foot-radius sphere. Each creature in this area must make a DC 15 Dexterity saving throw. On a failed save, a target takes fire damage equal to the falling damage you took, or half as much on a successful saving throw. The fire spreads around corners and ignites flammable objects in the area that aren't being worn or carried.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mindshatter-bombard", + "fields": { + "name": "Mindshatter Bombard", + "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_minor-minstrel", + "fields": { + "name": "Minor Minstrel", + "desc": "This four-inch high, painted, ceramic figurine animates and sings one song, typically about 3 minutes in length, when you set it down and speak the command word. The song is chosen by the figurine's original creator, and the figurine's form is typically reflective of the song's style. A red-nosed dwarf holding a mug sings a drinking song; a human figure in mourner's garb sings a dirge; a well-dressed elf with a harp sings an elven love song; or similar, though some creators find it amusing to create a figurine with a song counter to its form. If you pick up the figurine before the song finishes, it falls silent.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mirror-of-eavesdropping", + "fields": { + "name": "Mirror of Eavesdropping", + "desc": "This 8-inch diameter mirror is set in a delicate, silver frame. While holding this mirror within 30 feet of another mirror, you can spend 10 minutes magically connecting the mirror of eavesdropping to that other mirror. The mirror of eavesdropping can be connected to only one mirror at a time. While holding the mirror of eavesdropping within 1 mile of its connected mirror, you can use an action to speak its command word and activate it. While active, the mirror of eavesdropping displays visual information from the connected mirror, which has normal vision and darkvision out to 30 feet. The connected mirror's view is limited to the direction the mirror is facing, and it can be blocked by a solid barrier, such as furniture, a heavy cloth, or similar. You can use a bonus action to deactivate the mirror early. When the mirror has been active for a total of 10 minutes, you can't activate it again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mirrored-breastplate", + "fields": { + "name": "Mirrored Breastplate", + "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mirrored-half-plate", + "fields": { + "name": "Mirrored Half Plate", + "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mirrored-plate", + "fields": { + "name": "Mirrored Plate", + "desc": "This metal armor is always polished to a mirror sheen, highly reflective, and can't be dulled. If a creature has an action or trait that requires it to gaze at you to affect you, such as a basilisk's Petrifying Gaze or a lich's Frightening Gaze, it sees its reflection in the armor and is also affected by the gaze.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mnemonic-fob", + "fields": { + "name": "Mnemonic Fob", + "desc": "This small bauble consists of a flat crescent, which binds a small disc that freely spins in its housing. Each side of the disc is intricately etched with an incomplete pillar and pyre. \nPillar of Fire. While holding this bauble, you can use an action to remove the disc, place it on the ground, and speak its command word to transform it into a 5-foot-tall flaming pillar of intricately carved stone. The pillar sheds bright light in a 20-foot radius and dim light for an additional 20 feet. It is warm to the touch, but it doesn’t burn. A second command word returns the pillar to its disc form. When the pillar has shed light for a total of 10 minutes, it returns to its disc form and can’t be transformed into a pillar again until the next dawn. \nRecall Magic. While holding this bauble, you can use an action to spin the disc and regain one expended 1st-level spell slot. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mock-box", + "fields": { + "name": "Mock Box", + "desc": "While you hold this small, square contraption, you can use an action to target a creature within 60 feet of you that can hear you. The target must succeed on a DC 13 Charisma saving throw or attack rolls against it have advantage until the start of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_molten-hellfire-breastplate", + "fields": { + "name": "Molten Hellfire Breastplate", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_molten-hellfire-chain-mail", + "fields": { + "name": "Molten Hellfire Chain Mail", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_molten-hellfire-chain-shirt", + "fields": { + "name": "Molten Hellfire Chain Shirt", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_molten-hellfire-half-plate", + "fields": { + "name": "Molten Hellfire Half Plate", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_molten-hellfire-plate", + "fields": { + "name": "Molten Hellfire Plate", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_molten-hellfire-ring-mail", + "fields": { + "name": "Molten Hellfire Ring Mail", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_molten-hellfire-scale-mail", + "fields": { + "name": "Molten Hellfire Scale Mail", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_molten-hellfire-splint", + "fields": { + "name": "Molten Hellfire Splint", + "desc": "This spiked armor is a dark, almost black crimson when inactive. This more powerful version of hellfire armor has 3 charges. It regains all expended charges daily at dawn. If you expend 1 charge as part of the action to make the armor glow, you can make the armor emit heat in addition to light for 1 minute. For the duration, when a creature touches you or hits you with a melee attack while within 5 feet of you, it takes 1d4 fire damage. You are immune to the armor’s heat while wearing it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mongrelmakers-handbook", + "fields": { + "name": "Mongrelmaker's Handbook", + "desc": "This thin volume holds a scant few dozen vellum pages between its mottled, scaled cover. The pages are scrawled with tight, efficient text which is broken up by outlandish pencil drawings of animals and birds combined together. With the rituals contained in this book, you can combine two or more animals into an adult hybrid of all creatures used. Each ritual requires the indicated amount of time, the indicated cost in mystic reagents, a live specimen of each type of creature to be combined, and enough floor space to draw a combining rune which encircles the component creatures. Once combined, the hybrid creature is a typical example of its new kind, though some aesthetic differences may be detectable. You can't control the creatures you create with this handbook, though the magic of the combining ritual prevents your creations from attacking you for the first 24 hours of their new lives. | Creature | Time | Cost | Component Creatures |\n| ---------------- | -------- | -------- | -------------------------------------------------------- |\n| Flying Snake | 10 mins | 10 gp | A poisonous snake and a Small or smaller bird of prey |\n| Leonino | 10 mins | 15 gp | A cat and a Small or smaller bird of prey |\n| Wolpertinger | 10 mins | 20 gp | A rabbit, a Small or smaller bird of prey, and a deer |\n| Carbuncle | 1 hour | 500 gp | A cat and a bird of paradise |\n| Cockatrice | 1 hour | 150 gp | A lizard and a domestic bird such as a chicken or turkey |\n| Death Dog | 1 hour | 100 gp | A dog and a rooster |\n| Dogmole | 1 hour | 175 gp | A dog and a mole |\n| Hippogriff | 1 hour | 200 gp | A horse and a giant eagle |\n| Bearmit crab | 6 hours | 600 gp | A brown bear and a giant crab |\n| Griffon | 6 hours | 600 gp | A lion and a giant eagle |\n| Pegasus | 6 hours | 1,000 gp | A white horse and a giant owl |\n| Manticore | 24 hours | 2,000 gp | A lion, a porcupine, and a giant bat |\n| Owlbear | 24 hours | 2,000 gp | A brown bear and a giant eagle |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_monkeys-paw-of-fortune", + "fields": { + "name": "Monkey's Paw of Fortune", + "desc": "This preserved monkey's paw hangs on a simple leather thong. This paw helps you alter your fate. If you are wearing this paw when you fail an attack roll, ability check, or saving throw, you can use your reaction to reroll the roll with a +10 bonus. You must take the second roll. When you use this property of the paw, one of its fingers curls tight to the palm. When all five fingers are curled tightly into a fist, the monkey's paw loses its magic.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_moon-through-the-trees", + "fields": { + "name": "Moon Through the Trees", + "desc": "This charm is comprised of six polished river stones bound into the shape of a star with glue made from the connective tissues of animals. The reflective surfaces of the stones shimmer with a magical iridescence. While you are within 20 feet of a living tree, you can use a bonus action to become invisible for 1 minute. While invisible, you can use a bonus action to become visible. If you do, each creature of your choice within 30 feet of you must succeed on a DC 15 Constitution saving throw or be blinded for 1 minute. A blinded creature can repeat this saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to this charm's blinding feature for the next 24 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_moonfield-lens", + "fields": { + "name": "Moonfield Lens", + "desc": "This lens is rainbow-hued and protected by a sturdy leather case. It has 4 charges, and it regains 1d3 + 1 expended charges daily at dawn. As an action, you can hold the lens to your eye, speak its command word, and expend 2 charges to cause one of the following effects: - *** Find Loved One.** You know the precise location of one creature you love (platonic, familial, or romantic). This knowledge extends into other planes. - *** True Path.** For 1 hour, you automatically succeed on all Wisdom (Survival) checks to navigate in the wild. If you are underground, you automatically know the most direct route to reach the surface.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_moonsteel-dagger", + "fields": { + "name": "Moonsteel Dagger", + "desc": "The blade of this magic weapon seems to shine from within with a pale, white light. The weapon deals an extra 1d6 radiant damage to any creature it hits. If the creature is a shapechanger or any other creature not in its true form, it becomes frightened until the start of your next turn. At the start of its turn, a creature frightened in this way must succeed on a DC 13 Charisma saving throw or immediately return to its true form. For the purpose of this weapon, “shapechanger” refers to any creature with the Shapechanger trait.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_moonsteel-rapier", + "fields": { + "name": "Moonsteel Rapier", + "desc": "The blade of this magic weapon seems to shine from within with a pale, white light. The weapon deals an extra 1d6 radiant damage to any creature it hits. If the creature is a shapechanger or any other creature not in its true form, it becomes frightened until the start of your next turn. At the start of its turn, a creature frightened in this way must succeed on a DC 13 Charisma saving throw or immediately return to its true form. For the purpose of this weapon, “shapechanger” refers to any creature with the Shapechanger trait.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mordant-battleaxe", + "fields": { + "name": "Mordant Battleaxe", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mordant-glaive", + "fields": { + "name": "Mordant Glaive", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mordant-greataxe", + "fields": { + "name": "Mordant Greataxe", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mordant-greatsword", + "fields": { + "name": "Mordant Greatsword", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mordant-halberd", + "fields": { + "name": "Mordant Halberd", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mordant-longsword", + "fields": { + "name": "Mordant Longsword", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mordant-scimitar", + "fields": { + "name": "Mordant Scimitar", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mordant-shortsword", + "fields": { + "name": "Mordant Shortsword", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mordant-sickle", + "fields": { + "name": "Mordant Sickle", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mordant-whip", + "fields": { + "name": "Mordant Whip", + "desc": "You can use a bonus action to speak this magic weapon's command word, causing the blade to weep a caustic, green acid. While weeping acid, the weapon deals an extra 2d6 acid damage to any target it hits. The weapon continues to weep acid until you use a bonus action to speak the command word again or you sheathe or drop the weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mountain-hewer", + "fields": { + "name": "Mountain Hewer", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. The massive head of this axe is made from chiseled stone lashed to its haft by thick rope and leather strands. Small chips of stone fall from its edge intermittently, though it shows no sign of damage or wear. You can use your action to speak the command word to cause small stones to float and swirl around the axe, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. The light remains until you use a bonus action to speak the command word again or until you drop or sheathe the axe. As a bonus action, choose a creature you can see. For 1 minute, that creature must succeed on a DC 15 Wisdom saving throw each time it is damaged by the axe or become frightened until the end of your next turn. Creatures of Large size or greater have disadvantage on this save. Once used, this property of the axe can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mountaineers-hand-crossbow", + "fields": { + "name": "Mountaineer's Hand Crossbow", + "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mountaineers-heavy-crossbow", + "fields": { + "name": "Mountaineer's Heavy Crossbow", + "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mountaineers-light-crossbow", + "fields": { + "name": "Mountaineer's Light Crossbow ", + "desc": "This crossbow has a weathered look, and scenes of mountains are etched across its stock. An adamantine grappling hook and cable are built into this magic crossbow. While no ammunition is loaded in the crossbow, you can use an action to fire the grappling hook at a surface, structure, precipice, or other similar location that you can see within 60 feet of you. The grappling hook magically attaches to the surface and connects to the crossbow via an adamantine cable. While the grappling hook is attached to a surface and you are holding the crossbow, you can use an action to speak a command word to reel yourself and up to 1,000 pounds of willing creatures and objects connected to you to the surface. Speaking a second command word as a bonus action releases the grappling hook from the surface, reattaching it to the crossbow, and winds the cable back into a tiny pocket dimension inside the crossbow. This cable has AC 12, 20 hit points, and immunity to all damage except acid, lightning, and slashing damage from adamantine weapons. If the cable drops to 0 hit points, the crossbow can't be used in this way again until 24 hours have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_muffled-chain-mail", + "fields": { + "name": "Muffled Chain Mail", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_muffled-half-plate", + "fields": { + "name": "Muffled Half Plate", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_muffled-padded", + "fields": { + "name": "Muffled Padded", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_muffled-plate", + "fields": { + "name": "Muffled Plate", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_muffled-ring-mail", + "fields": { + "name": "Muffled Ring Mail", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_muffled-scale-mail", + "fields": { + "name": "Muffled Scale Mail", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_muffled-splint", + "fields": { + "name": "Muffled Splint", + "desc": "This magical armor is laid with enchantments to mute its noise and ease movement, even muting and dulling its colors and shine when you attempt to conceal yourself. While wearing this armor, you don't have disadvantage on Dexterity (Stealth) checks as a result of wearing the armor, but you might still have disadvantage on such checks from other effects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mug-of-merry-drinking", + "fields": { + "name": "Mug of Merry Drinking", + "desc": "While you hold this broad, tall mug, any liquid placed inside it warms or cools to exactly the temperature you want it, though the mug can't freeze or boil the liquid. If you drop the mug or it is knocked from your hand, it always lands upright without spilling its contents.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_murderous-bombard", + "fields": { + "name": "Murderous Bombard", + "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_mutineers-blade", + "fields": { + "name": "Mutineer's Blade", + "desc": "This finely balanced scimitar has an elaborate brass hilt. You gain a +2 bonus on attack and damage rolls made with this magic weapon. You can use a bonus action to speak the scimitar's command word, causing the blade to shed bright green light in a 10-foot radius and dim light for an additional 10 feet. The light lasts until you use a bonus action to speak the command word again or until you drop or sheathe the scimitar. When you roll a 20 on an attack roll made with this weapon, the target is overcome with the desire for mutiny. On the target's next turn, it must make one attack against its nearest ally, then the effect ends, whether or not the attack was successful.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_nameless-cults", + "fields": { + "name": "Nameless Cults", + "desc": "This dubious old book, bound in heavy leather with iron hasps, details the forbidden secrets and monstrous blasphemy of a multitude of nightmare cults that worship nameless and ghastly entities. It reads like the monologue of a maniac, illustrated with unsettling glyphs and filled with fluctuating moments of vagueness and clarity. The tome is a spellbook that contains the following spells, all of which can be found in the Mythos Magic Chapter of Deep Magic for 5th Edition: black goat's blessing, curse of Yig, ectoplasm, eldritch communion, emanation of Yoth, green decay, hunger of Leng, mind exchange, seed of destruction, semblance of dread, sign of Koth, sleep of the deep, summon eldritch servitor, summon avatar, unseen strangler, voorish sign, warp mind and matter, and yellow sign. At the GM's discretion, the tome can contain other spells similarly related to the Great Old Ones. While attuned to the book, you can reference it whenever you make an Intelligence check to recall information about any aspect of evil or the occult, such as lore about Great Old Ones, mythos creatures, or the cults that worship them. When doing so, your proficiency bonus for that check is doubled.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_necromantic-ink", + "fields": { + "name": "Necromantic Ink", + "desc": "The scent of death and decay hangs around this grey ink. It is typically found in 1d4 pots, and each pot contains 2 doses. If you spend 1 minute using one dose of the ink to draw symbols of death on a dead creature that has been dead no longer than 10 days, you can imbue the creature with the ink's magic. The creature rises 24 hours later as a skeleton or zombie (your choice), unless the creature is restored to life or its body is destroyed. You have no control over the undead creature.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_neutralizing-bead", + "fields": { + "name": "Neutralizing Bead", + "desc": "This hard, gritty, flavorless bead can be dissolved in liquid or powdered between your fingers and sprinkled over food. Doing so neutralizes any poisons that may be present. If the food or liquid is poisoned, it takes on a brief reddish hue where it makes contact with the bead as the bead dissolves. Alternatively, you can chew and swallow the bead and gain the effects of an antitoxin.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_nithing-pole", + "fields": { + "name": "Nithing Pole", + "desc": "This pole is crafted to exact retribution for an act of cowardice or dishonor. It's a sturdy wooden stave, 6 to 10 feet long, carved with runes that name the dishonored target of the pole's curse. The carved shaft is draped in horsehide, topped with a horse's skull, and placed where its target is expected to pass by. Typically, the pole is driven into the ground or wedged into a rocky cleft in a remote spot where the intended victim won't see it until it's too late. The pole is created to punish a specific person for a specific crime. The exact target must be named on the pole; a generic identity such as “the person who blinded Lars Gustafson” isn't precise enough. The moment the named target approaches within 333 feet, the pole casts bestow curse (with a range of 333 feet instead of touch) on the target. The DC for the target's Wisdom saving throw is 15. If the saving throw is successful, the pole recasts the spell at the end of each round until the saving throw fails, the target retreats out of range, or the pole is destroyed. Anyone other than the pole's creator who tries to destroy or knock down the pole is also targeted by a bestow curse spell, but only once. The effect of the curse is set when the pole is created, and the curse lasts 8 hours without requiring concentration. The pole becomes nonmagical once it has laid its curse on its intended target. An untriggered and forgotten nithing pole remains dangerous for centuries.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_nullifiers-lexicon", + "fields": { + "name": "Nullifier's Lexicon", + "desc": "This book has a black leather cover with silver bindings and a silver front plate. Void Speech glyphs adorn the front plate, which is pitted and tarnished. The pages are thin sheets of corrupted brass and are inscribed with more blasphemous glyphs. While you are attuned to the lexicon, you can speak, read, and write Void Speech, and you know the crushing curse* cantrip. At the GM's discretion, you know the chill touch cantrip instead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_oakwood-wand", + "fields": { + "name": "Oakwood Wand", + "desc": "You can use this wand as a spellcasting focus. The wand has 3 charges and regains 1d3 expended charges daily at dawn. While holding it, you can expend 1 charge as an action to cast the detect poison and disease spell from it. When you cast a spell that deals cold damage while using this wand as your spellcasting focus, the spell deals 1 extra cold damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_octopus-bracers", + "fields": { + "name": "Octopus Bracers", + "desc": "These bronze bracers are etched with depictions of frolicking octopuses. While wearing these bracers, you can use an action to speak their command word and transform your arms into tentacles. You can use a bonus action to repeat the command word and return your arms to normal. The tentacles are natural melee weapons, which you can use to make unarmed strikes. Your reach extends by 5 feet while your arms are tentacles. When you hit with a tentacle, it deals bludgeoning damage equal to 1d8 + your Strength or Dexterity modifier (your choice). If you hit a creature of your size or smaller than you, it is grappled. Each tentacle can grapple only one target. While grappling a target with a tentacle, you can't attack other creatures with that tentacle. While your arms are tentacles, you can't wield weapons that require two hands, and you can't wield shields. In addition, you can't cast a spell that has a somatic component. When the bracers' property has been used for a total of 10 minutes, the magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_oculi-of-the-ancestor", + "fields": { + "name": "Oculi of the Ancestor", + "desc": "An intricately depicted replica of an eyeball, right down to the blood vessels and other fine details, this item is carved from sacred hardwoods by soothsayers using a specialized ceremonial blade handcrafted specifically for this purpose. When you use an action to place the orb within the eye socket of a skull, it telepathically shows you the last thing that was experienced by the creature before it died. This lasts for up to 1 minute and is limited to only what the creature saw or heard in the final moments of its life. The orb can't show you what the creature might have detected using another sense, such as tremorsense.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_odd-bodkin", + "fields": { + "name": "Odd Bodkin", + "desc": "This dagger has a twisted, jagged blade. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature other than a construct or an undead with this weapon, it loses 1d4 hit points at the start of each of its turns from a jagged wound. Each time you successfully hit the wounded target with this dagger, the damage dealt by the wound increases by 1d4. Any creature can take an action to stanch the wound with a successful DC 11 Wisdom (Medicine) check. The wound also closes if the wounded creature receives magical healing.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_odorless-oil", + "fields": { + "name": "Odorless Oil", + "desc": "This odorless, colorless oil can cover a Medium or smaller object or creature, along with the equipment the creature is wearing or carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. For 1 hour, the affected target gives off no scent, can't be tracked by scent, and can't be detected with Wisdom (Perception) checks that rely on smell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ogres-pot", + "fields": { + "name": "Ogre's Pot", + "desc": "This cauldron boils anything placed inside it, whether venison or timber, to a vaguely edible paste. A spoonful of the paste provides enough nourishment to sustain a creature for one day. As a bonus action, you can speak the pot's command word and force it to roll directly to you at a speed of 40 feet per round as long as you and the pot are on the same plane of existence. It follows the shortest possible path, stopping when it moves to within 5 feet of you, and it bowls over or knocks down any objects or creatures in its path. A creature in its path must succeed on a DC 13 Dexterity saving throw or take 2d6 bludgeoning damage and be knocked prone. When this magic pot comes into contact with an object or structure, it deals 4d6 bludgeoning damage. If the damage doesn't destroy or create a path through the object or structure, the pot continues to deal damage at the end of each round, carving a path through the obstacle.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_oil-of-concussion", + "fields": { + "name": "Oil of Concussion", + "desc": "You can apply this thick, gray oil to one bludgeoning weapon or up to 5 pieces of bludgeoning ammunition. Applying the oil takes 1 minute. For 1 hour, any attack with the coated item scores a critical hit on a roll of 19 or 20.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_oil-of-defoliation", + "fields": { + "name": "Oil of Defoliation", + "desc": "Sometimes known as weedkiller oil, this greasy amber fluid contains the crushed husks of dozens of locusts. One vial of the oily substance can coat one weapon or up to 5 pieces of ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item deals an extra 1d6 necrotic damage to plants or plant creatures on a successful hit. The oil can also be applied directly to a willing, restrained, or immobile plant or plant creature. In this case, the substance deals 4d6 necrotic damage, which is enough to kill most ordinary plant life smaller than a large tree.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_oil-of-extreme-bludgeoning", + "fields": { + "name": "Oil of Extreme Bludgeoning", + "desc": "This viscous indigo-hued oil smells of iron. The oil can coat one bludgeoning weapon or up to 5 pieces of bludgeoning ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical, has a +1 bonus to attack and damage rolls, and deals an extra 1d4 force damage on a hit.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_oil-of-numbing", + "fields": { + "name": "Oil of Numbing", + "desc": "This astringent-smelling oil stings slightly when applied to flesh, but the feeling quickly fades. The oil can cover a Medium or smaller creature (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. For 1 hour, the affected creature has advantage on Constitution saving throws to maintain its concentration on a spell when it takes damage, and it has advantage on ability checks and saving throws made to endure pain. However, the affected creature's flesh is slightly numbed and senseless, and it has disadvantage on ability checks that require fine motor skills or a sense of touch.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_oil-of-sharpening", + "fields": { + "name": "Oil of Sharpening", + "desc": "You can apply this fine, silvery oil to one piercing or slashing weapon or up to 5 pieces of piercing or slashing ammunition. Applying the oil takes 1 minute. For 1 hour, any attack with the coated item scores a critical hit on a roll of 19 or 20.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_oni-mask", + "fields": { + "name": "Oni Mask", + "desc": "This horned mask is fashioned into the fearsome likeness of a pale oni. The mask has 6 charges for the following properties. The mask regains 1d6 expended charges daily at dawn. Spells. While wearing the mask, you can use an action to expend 1 or more of its charges to cast one of the following spells (save DC 15): charm person (1 charge), invisibility (2 charges), or sleep (1 charge). Change Shape. You can expend 3 charges as an action to magically polymorph into a Small or Medium humanoid, into a Large giant, or back into your true form. Other than your size, your statistics are the same in each form. The only equipment that is transformed is your weapon, which enlarges or shrinks so that it can be wielded in any form. If you die, you revert to your true form, and your weapon reverts to its normal size.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_oracle-charm", + "fields": { + "name": "Oracle Charm", + "desc": "This small charm resembles a human finger bone engraved with runes and complicated knotwork patterns. As you contemplate a specific course of action that you plan to take within the next 30 minutes, you can use an action to snap the charm in half to gain the benefit of an augury spell. Once used, the charm is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_orb-of-enthralling-patterns", + "fields": { + "name": "Orb of Enthralling Patterns", + "desc": "This plain, glass orb shimmers with iridescence. While holding this orb, you can use an action to speak its command word, which causes it to levitate and emit multicolored light. Each creature other than you within 10 feet of the orb must succeed on a DC 13 Wisdom saving throw or look at only the orb for 1 minute. For the duration, a creature looking at the orb has disadvantage on Wisdom (Perception) checks to perceive anything that is not the orb. Creatures that failed the saving throw have no memory of what happened while they were looking at the orb. Once used, the orb can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_orb-of-obfuscation", + "fields": { + "name": "Orb of Obfuscation", + "desc": "Originally fashioned in the laboratory of the archmage Lugax for his good natured but often roguish friend, Kennich, these spherical ceramic containers are the size of a large human fist. Arcane sigils decorate each orb, detailing its properties to those capable of reading the sigils. The magic-infused chemicals in each orb must be briefly exposed to air before being thrown to activate them. A metal rod sits in the cork of each orb, allowing you to quickly twist open the container before throwing it. Typically, 1d4 + 1 orbs of obfuscation are found together. You can use an action to activate and throw the orb up to 60 feet. The orb explodes on impact and is destroyed. The orb's effects are determined by its type. Orb of Obfuscation (Uncommon). This orb is a dark olive color with a stripe of bright blue paint encircling it. When activated, the orb releases an opaque grey gas and creates a 30-foot-radius sphere of this gas centered on the point where the orb landed. The sphere spreads around corners, and its area is heavily obscured. The magical gas also dampens sound. Each creature in the gas can hear only sounds originating within 5 feet of it, and creatures outside of the gas can’t hear sounds originating inside the gas. The gas lasts for 5 minutes or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. Explosive Orb of Obfuscation (Rare). This oblong orb has a putty grey color with a stripe of yellow paint encircling it. When activated, this orb releases the same opaque grey gas as the orb of obfuscation. In addition to the effects of that gas, this orb also releases a burst of caustic chemicals on impact. Each creature within a 15-foot radius of where the orb landed must make a DC 15 Dexterity saving throw, taking 4d4 acid damage on a failed save, or half as much damage on a successful one. If a creature fails this saving throw, the chemicals cling to it for 1 minute. At the end of each of its turns, the creature must succeed on a DC 15 Constitution saving throw or take 2d4 acid damage from the clinging chemicals. Any creature can take an action to remove the clinging chemicals with a successful DC 15 Wisdom (Medicine) check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ouroboros-amulet", + "fields": { + "name": "Ouroboros Amulet", + "desc": "Carved in the likeness of a serpent swallowing its own tail, this circular jade amulet is frequently worn by serpentfolk mystics and the worshippers of dark and forgotten gods. While wearing this amulet, you have advantage on saving throws against being charmed. In addition, you can use an action to cast the suggestion spell (save DC 13). The amulet can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_pact-paper", + "fields": { + "name": "Pact Paper", + "desc": "This smooth paper is like vellum but is prepared from dozens of scales cast off by a Pact Drake (see Creature Codex). A contract can be inked on this paper, and the paper limns all falsehoods on it with a fiery glow. A command word clears the paper, allowing for several drafts. Another command word locks the contract in place and leaves space for signatures. Creatures signing the contract are afterward bound by the contract with all other signatories alerted when one of the signatories breaks the contract. The creature breaking the contract must succeed on a DC 15 Charisma saving throw or become blinded, deafened, and stunned for 1d6 minutes. A creature can repeat the saving throw at the end of each of minute, ending the conditions on itself on a success. After the conditions end, the creature has disadvantage on saving throws until it finishes a long rest. Once a contract has been locked in place and signed, the paper can't be cleared. If the contract has a duration or stipulation for its end, the pact paper is destroyed when the contract ends, releasing all signatories from any further obligations and immediately ending any effects on them.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_padded-armor-of-the-leaf", + "fields": { + "name": "Padded Armor of the Leaf", + "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_padded-armor-of-warding-1", + "fields": { + "name": "Padded Armor of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_padded-armor-of-warding-2", + "fields": { + "name": "Padded Armor of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_padded-armor-of-warding-3", + "fields": { + "name": "Padded Armor of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_parasol-of-temperate-weather", + "fields": { + "name": "Parasol of Temperate Weather", + "desc": "This fine, cloth-wrapped 2-foot-long pole unfolds into a parasol with a diameter of 3 feet, which is large enough to cover one Medium or smaller creature. While traveling under the parasol, you ignore the drawbacks of traveling in hot weather or a hot environment. Though it protects you from the sun's heat in the desert or geothermal heat in deep caverns, the parasol doesn't protect you from damage caused by super-heated environments or creatures, such as lava or an azer's Heated Body trait, or magic that deals fire damage, such as the fire bolt spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_pavilion-of-dreams", + "fields": { + "name": "Pavilion of Dreams", + "desc": "This foot-long box is 6 inches wide and 6 inches deep. With 1 minute of work, the box's poles and multicolored silks can be unfolded into a pavilion expansive enough to sleep eight Medium or smaller creatures comfortably. The pavilion can stand in winds of up to 60 miles per hour without suffering damage or collapsing, and its interior remains comfortable and dry no matter the weather conditions or temperature outside. Creatures who sleep within the pavilion are immune to spells and other magical effects that would disrupt their sleep or negatively affect their dreams, such as the monstrous messenger version of the dream spell or a night hag's Nightmare Haunting. Creatures who take a long rest in the pavilion, and who sleep for at least half that time, have shared dreams of future events. Though unclear upon waking, these premonitions sit in the backs of the creatures' minds for the next 24 hours. Before the duration ends, a creature can call on the premonitions, expending them and immediately gaining one of the following benefits.\n- If you are surprised during combat, you can choose instead to not be surprised.\n- If you are not surprised at the beginning of combat, you have advantage on the initiative roll.\n- You have advantage on a single attack roll, ability check, or saving throw.\n- If you are adjacent to a creature that is attacked, you can use a reaction to interpose yourself between the creature and the attack. You become the new target of the attack.\n- When in combat, you can use a reaction to distract an enemy within 30 feet of you that attacks an ally you can see. If you do so, the enemy has disadvantage on the attack roll.\n- When an enemy uses the Disengage action, you can use a reaction to move up to your speed toward that enemy. Once used, the pavilion can't be used again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_pearl-of-diving", + "fields": { + "name": "Pearl of Diving", + "desc": "This white pearl shines iridescently in almost any light. While underwater and grasping the pearl, you have resistance to cold damage and to bludgeoning damage from nonmagical attacks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_periapt-of-eldritch-knowledge", + "fields": { + "name": "Periapt of Eldritch Knowledge", + "desc": "This pendant consists of a hollow metal cylinder on a fine, silver chain and is capable of holding one scroll. When you put a spell scroll in the pendant, it is added to your list of known or prepared spells, but you must still expend a spell slot to cast it. If the spell has more powerful effects when cast at a higher level, you can expend a spell slot of a higher level to cast it. If you have metamagic options, you can apply any metamagic option you know to the spell, expending sorcery points as normal. When you cast the spell, the spell scroll isn't consumed. If the spell on the spell scroll isn't on your class's spell list, you can't cast it unless it is half the level of the highest spell level you can cast (minimum level 1). The pendant can hold only one scroll at a time, and you can remove or replace the spell scroll in the pendant as an action. When you remove or replace the spell scroll, you don't immediately regain spell slots expended on the scroll's spell. You regain expended spell slots as normal for your class.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_periapt-of-proof-against-lies", + "fields": { + "name": "Periapt of Proof Against Lies", + "desc": "A pendant fashioned from the claw or horn of a Pact Drake (see Creature Codex) is affixed to a thin gold chain. While you wear it, you know if you hear a lie, but this doesn't apply to evasive statements that remain within the boundaries of the truth. If you lie while wearing this pendant, you become poisoned for 10 minutes.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_pestilent-spear", + "fields": { + "name": "Pestilent Spear", + "desc": "The head of this spear is deadly sharp, despite the rust and slimy residue on it that always accumulate no matter how well it is cleaned. When you hit a creature with this magic weapon, it must succeed on a DC 13 Constitution saving throw or contract the sewer plague disease.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_phase-mirror", + "fields": { + "name": "Phase Mirror", + "desc": "Unlike other magic items, multiple creatures can attune to the phase mirror by touching it as part of the same short rest. A creature remains attuned to the mirror as long as it is on the same plane of existence as the mirror or until it chooses to end its attunement to the mirror during a short rest. Phase mirrors look almost identical to standard mirrors, but their surfaces are slightly clouded. These mirrors are found in a variety of sizes, from handheld to massive disks. The larger the mirror, the more power it can take in, and consequently, the more creatures it can affect. When it is created, a mirror is connected to a specific plane. The mirror draws in starlight and uses that energy to move between its current plane and its connected plane. While holding or touching a fully charged mirror, an attuned creature can use an action to speak the command word and activate the mirror. When activated, the mirror transports all creatures attuned to it to the mirror's connected plane or back to the Material Plane at a destination of the activating creature's choice. This effect works like the plane shift spell, except it transports only attuned creatures, regardless of their distance from each other, and the destination must be on the Material Plane or the mirror's connected plane. If the mirror is broken, its magic ends, and each attuned creature is trapped in whatever plane it occupies when the mirror breaks. Once activated, the mirror stays active for 24 hours and any attuned creature can use an action to transport all attuned creatures back and forth between the two planes. After these 24 hours have passed, the power drains from the mirror, and it can't be activated again until it is recharged. Each phase mirror has a different recharge time and limit to the number of creatures that can be attuned to it, depending on the mirror's size.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_phidjetz-spinner", + "fields": { + "name": "Phidjetz Spinner", + "desc": "This dart was crafted by the monk Phidjetz, a martial recluse obsessed with dragons. The spinner consists of a golden central disk with four metal dragon heads protruding symmetrically from its center point: one red, one white, one blue and one black. As an action, you can spin the disk using the pinch grip in its center. You choose a single target within 30 feet and make a ranged attack roll. The spinner then flies at the chosen target. Once airborne, each dragon head emits a blast of elemental energy appropriate to its type. When you hit a creature, determine which dragon head affects it by rolling a d4 on the following chart. | d4 | Effect |\n| --- | ---------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 1 | Red. The target takes 1d6 fire damage and combustible materials on the target ignite, doing 1d4 fire damage each turn until it is put out. |\n| 2 | White. The target takes 1d6 cold damage and is restrained until the start of your next turn. |\n| 3 | Blue. The target takes 1d6 lightning damage and is paralyzed until the start of your next turn. |\n| 4 | Black. The target takes 1d6 acid damage and is poisoned until the start of your next turn. | After the attack, the spinner flies up to 60 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_philter-of-luck", + "fields": { + "name": "Philter of Luck", + "desc": "When you drink this vibrant green, effervescent potion, you gain a finite amount of good fortune. Roll a d3 to determine where your fortune falls: ability checks (1), saving throws (2), or attack rolls (3). When you make a roll associated with your fortune, you can choose to tap into your good fortune and reroll the d20. This effect ends after you tap into your good fortune or when 1 hour has passed. | d3 | Use fortune for |\n| --- | --------------- |\n| 1 | ability checks |\n| 2 | saving throws |\n| 3 | attack rolls |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_phoenix-ember", + "fields": { + "name": "Phoenix Ember", + "desc": "This egg-shaped red and black stone is hot to the touch. An ancient, fossilized phoenix egg, the stone holds the burning essence of life and rebirth. While you are carrying the stone, you have resistance to fire damage. Fiery Rebirth. If you drop to 0 hit points while carrying the stone, you can drop to 1 hit point instead. If you do, a wave of flame bursts out from you, filling the area within 20 feet of you. Each of your enemies in the area must make a DC 17 Dexterity saving throw, taking 8d6 fire damage on a failed save, or half as much damage on a successful one. Once used, this property can’t be used again until the next dawn, and a small, burning crack appears in the egg’s surface. Spells. The stone has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: revivify (1 charge), raise dead (2 charges), or resurrection (3 charges, the spell functions as long as some bit of the target’s body remains, even just ashes or dust). If you expend the last charge, roll a d20. On a 1, the stone shatters into searing fragments, and a firebird (see Tome of Beasts) arises from the ashes. On any other roll, the stone regains 1d3 charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_pick-of-ice-breaking", + "fields": { + "name": "Pick of Ice Breaking", + "desc": "The metal head of this war pick is covered in tiny arcane runes. You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the war pick to attack a construct, elemental, fey, or other creature made almost entirely of ice or snow. When you roll a 20 on an attack roll made with this weapon against such a creature, the target takes an extra 2d8 piercing damage. When you hit an object made of ice or snow with this weapon, the object doesn't have a damage threshold when determining the damage you deal to it with this weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_pipes-of-madness", + "fields": { + "name": "Pipes of Madness", + "desc": "You must be proficient with wind instruments to use these strange, pale ivory pipes. They have 5 charges. You can use an action to play them and expend 1 charge to emit a weird strain of alien music that is audible up to 600 feet away. Choose up to three creatures within 60 feet of you that can hear you play. Each target must succeed on a DC 15 Wisdom saving throw or be affected as if you had cast the confusion spell on it. The pipes regain 1d4 + 1 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_pistol-of-the-umbral-court", + "fields": { + "name": "Pistol of the Umbral Court", + "desc": "This hand crossbow is made from coal-colored wood. Its limb is made from cold steel and boasts engravings of sharp teeth. The barrel is magically oiled and smells faintly of ash. The grip is made from rough leather. You gain a +2 bonus on attack and damage rolls made with this magic weapon. When you hit with an attack with this weapon, you can force the target of your attack to succeed on a DC 15 Strength saving throw or be pushed 5 feet away from you. The target takes damage, as normal, whether it was pushed away or not. As a bonus action, you can increase the distance creatures are pushed to 20 feet for 1 minute. If the creature strikes a solid object before the movement is complete, it takes 1d6 bludgeoning damage for every 10 feet traveled. Once used, this property of the crossbow can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_plate-of-warding-1", + "fields": { + "name": "Plate of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_plate-of-warding-2", + "fields": { + "name": "Plate of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_plate-of-warding-3", + "fields": { + "name": "Plate of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_plumb-of-the-elements", + "fields": { + "name": "Plumb of the Elements", + "desc": "This four-faceted lead weight is hung on a long leather strip, which can be wound around the haft or handle of any melee weapon. You can remove the plumb and transfer it to another weapon whenever you wish. Weapons with the plumb attached to it deal additional force damage equal to your proficiency bonus (up to a maximum of 3). As an action, you can activate the plumb to change this additional damage type to fire, cold, lightning, or back to force.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_plunderers-sea-chest", + "fields": { + "name": "Plunderer's Sea Chest", + "desc": "This oak chest, measuring 3 feet by 5 feet by 3 feet, is secured with iron bands, which depict naval combat and scenes of piracy. The chest opens into an extradimensional space that can hold up to 3,500 cubic feet or 15,000 pounds of material. The chest always weighs 200 pounds, regardless of its contents. Placing an item in the sea chest follows the normal rules for interacting with objects. Retrieving an item from the chest requires you to use an action. When you open the chest to access a specific item, that item is always magically on top. If the chest is destroyed, its contents are lost forever, though an artifact that was inside always turns up again, somewhere. If a bag of holding, portable hole, or similar object is placed within the chest, that item and the contents of the chest are immediately destroyed, and the magic of the chest is disrupted for one day, after which the chest resumes functioning as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_pocket-oasis", + "fields": { + "name": "Pocket Oasis", + "desc": "When you unfold and throw this 5-foot by 5-foot square of black cloth into the air as an action, it creates a portal to an oasis hidden within an extra-dimensional space. A pool of shallow, fresh water fills the center of the oasis, and bountiful fruit and nut trees grow around the pool. The fruits and nuts from the trees provide enough nourishment for up to 10 Medium creatures. The air in the oasis is pure, cool, and even a little crisp, and the environment is free from harmful effects. When creatures enter the extra-dimensional space, they are protected from effects and creatures outside the oasis as if they were in the space created by a rope trick spell, and a vine dangles from the opening in place of a rope, allowing access to the oasis. The effect lasts for 24 hours or until all the creatures leave the extra-dimensional oasis, whichever occurs first. Any creatures still inside the oasis at the end of 24 hours are harmlessly ejected. Once used, the pocket oasis can't be used again for 24 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_pocket-spark", + "fields": { + "name": "Pocket Spark", + "desc": "What looks like a simple snuff box contains a magical, glowing ember. Though warm to the touch, the ember can be handled without damage. It can be used to ignite flammable materials quickly. Using it to light a torch, lantern, or anything else with abundant, exposed fuel takes a bonus action. Lighting any other fire takes an action. The ember is consumed when used. If the ember is consumed, the box creates a new ember at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_poison-strand", + "fields": { + "name": "Poison Strand", + "desc": "When you hit with an attack using this magic whip, the target takes an extra 2d4 poison damage. If you hold one end of the whip and use an action to speak its command word, the other end magically extends and darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 17 Dexterity saving throw or become restrained. While restrained, the target takes 2d4 poison damage at the start of each of its turns, and you can use an action to pull the target up to 20 feet toward you. If you would move the target into damaging terrain, such as lava or a pit, it can make a DC 17 Strength saving throw. On a success, the target isn't pulled toward you. You can't use the whip to make attacks while it is restraining a target, and if you release your end of the whip, the target is no longer restrained. The restrained target can use an action to make a DC 17 Strength (Athletics) or Dexterity (Acrobatics) check (target's choice). On a success, the target is no longer restrained by the whip. When the whip has restrained creatures for a total of 1 minute, you can't restrain a creature with the whip again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potent-cure-all", + "fields": { + "name": "Potent Cure-All", + "desc": "The milky liquid in this bottle shimmers when agitated, as small, glittering particles swirl within it. When you drink this potion, it reduces your exhaustion level by one, removes any reduction to one of your ability scores, removes the blinded, deafened, paralyzed, and poisoned conditions, and cures you of any diseases currently afflicting you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-air-breathing", + "fields": { + "name": "Potion of Air Breathing", + "desc": "This potion's pale blue fluid smells like salty air, and a seagull's feather floats in it. You can breathe air for 1 hour after drinking this potion. If you could already breathe air, this potion has no effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-bad-taste", + "fields": { + "name": "Potion of Bad Taste", + "desc": "This brown, sludgy potion tastes extremely foul. When you drink this potion, the taste of your flesh is altered to be unpalatable for 1 hour. During this time, if a creature hits you with a bite attack, it must succeed on a DC 10 Constitution saving throw or spend its next action gagging and retching. A creature with an Intelligence of 4 or lower avoids biting you again unless compelled or commanded by an outside force or if you attack it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-bouncing", + "fields": { + "name": "Potion of Bouncing", + "desc": "A small, red sphere bobs up and down in the clear, effervescent liquid inside this bottle but disappears when the bottle is opened. When you drink this potion, your body becomes rubbery, and you are immune to falling damage for 1 hour. If you fall at least 10 feet, your body bounces back the same distance. As a reaction while falling, you can angle your fall and position your legs to redirect this distance. For example, if you fall 60 feet, you can redirect your bounce to propel you 30 feet up and 30 feet forward from the position where you landed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-buoyancy", + "fields": { + "name": "Potion of Buoyancy", + "desc": "When you drink this clear, effervescent liquid, your body becomes unnaturally buoyant for 1 hour. When you are immersed in water or other liquids, you rise to the surface (at a rate of up to 30 feet per round) to float and bob there. You have advantage on Strength (Athletics) checks made to swim or stay afloat in rough water, and you automatically succeed on such checks in calm waters.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-dire-cleansing", + "fields": { + "name": "Potion of Dire Cleansing", + "desc": "For 1 hour after drinking this potion, you have resistance to poison damage, and you have advantage on saving throws against being blinded, deafened, paralyzed, and poisoned. In addition, if you are poisoned, this potion neutralizes the poison. Known for its powerful, somewhat burning smell, this potion is difficult to drink, requiring a successful DC 13 Constitution saving throw to drink it. On a failure, you are poisoned for 10 minutes and don't gain the benefits of the potion.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-ebbing-strength", + "fields": { + "name": "Potion of Ebbing Strength", + "desc": "When you drink this potion, your Strength score changes to 25 for 1 hour. The potion has no effect on you if your Strength is equal to or greater than that score. The recipe for this potion is flawed and infused with dangerous Void energies. When you drink this potion, you are also poisoned. While poisoned, you take 2d4 poison damage at the end of each minute. If you are reduced to 0 hit points while poisoned, you have disadvantage on death saving throws. This bubbling, pale blue potion is commonly used by the derro and is almost always paired with a Potion of Dire Cleansing or Holy Verdant Bat Droppings (see page 147). Warriors who use this potion without a method of removing the poison don't intend to return home from battle.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-effulgence", + "fields": { + "name": "Potion of Effulgence", + "desc": "When you drink this potion, your skin glows with radiance, and you are filled with joy and bliss for 1 minute. You shed bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight. While glowing, you are blinded and have disadvantage on Dexterity (Stealth) checks to hide. If a creature with the Sunlight Sensitivity trait starts its turn in the bright light you shed, it takes 2d4 radiant damage. This potion's golden liquid sparkles with motes of sunlight.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-empowering-truth", + "fields": { + "name": "Potion of Empowering Truth", + "desc": "A withered snake's tongue floats in the shimmering gold liquid within this crystalline vial. When you drink this potion, you regain one expended spell slot or one expended use of a class feature, such as Divine Sense, Rage, Wild Shape, or other feature with limited uses. Until you finish a long rest, you can't speak a deliberate lie. You are aware of this effect after drinking the potion. Your words can be evasive, as long as they remain within the boundaries of the truth.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-freezing-fog", + "fields": { + "name": "Potion of Freezing Fog", + "desc": "After drinking this potion, you can use an action to exhale a cloud of icy fog in a 20-foot cube originating from you. The cloud spreads around corners, and its area is heavily obscured. It lasts for 1 minute or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. When a creature enters the cloud for the first time on a turn or starts its turn there, that creature must succeed on a DC 13 Constitution saving throw or take 2d4 cold damage. The effects of this potion end after you have exhaled one fog cloud or 1 hour has passed. This potion has a gray, cloudy appearance and swirls vigorously when shaken.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-malleability", + "fields": { + "name": "Potion of Malleability", + "desc": "The glass bottle holding this thick, red liquid is strangely pliable, and compresses in your hand under the slightest pressure while it still holds the magical liquid. When you drink this potion, your body becomes extremely flexible and adaptable to pressure. For 1 hour, you have resistance to bludgeoning damage, can squeeze through a space large enough for a creature two sizes smaller than you, and have advantage on Dexterity (Acrobatics) checks made to escape a grapple.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-sand-form", + "fields": { + "name": "Potion of Sand Form", + "desc": "This potion's container holds a gritty liquid that moves and pours like water filled with fine particles of sand. When you drink this potion, you gain the effect of the gaseous form spell for 1 hour (no concentration required) or until you end the effect as a bonus action. While in this gaseous form, your appearance is that of a vortex of spiraling sand instead of a misty cloud. In addition, you have advantage on Dexterity (Stealth) checks while in a sandy environment, and, while motionless in a sandy environment, you are indistinguishable from an ordinary swirl of sand.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-skating", + "fields": { + "name": "Potion of Skating", + "desc": "For 1 hour after you drink this potion, you can move across icy surfaces without needing to make an ability check, and difficult terrain composed of ice or snow doesn't cost you extra movement. This sparkling blue liquid contains tiny snowflakes that disappear when shaken.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-transparency", + "fields": { + "name": "Potion of Transparency", + "desc": "The liquid in this vial is clear like water, and it gives off a slight iridescent sheen when shaken or swirled. When you drink this potion, you and everything you are wearing and carrying turn transparent, but not completely invisible, for 10 minutes. During this time, you have advantage on Dexterity (Stealth) checks, and ranged attacks against you have disadvantage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_potion-of-worg-form", + "fields": { + "name": "Potion of Worg Form", + "desc": "Small flecks of brown hair are suspended in this clear, syrupy liquid. When you drink this potion, you transform into a worg for 1 hour. This works like the polymorph spell, but you retain your Intelligence, Wisdom, and Charisma scores. While in worg form, you can speak normally, and you can cast spells that have only verbal components. This transformation doesn't give you knowledge of the Goblin or Worg languages, and you are able to speak and understand those languages only if you knew them before the transformation.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_prayer-mat", + "fields": { + "name": "Prayer Mat", + "desc": "This small rug is woven with intricate patterns that depict religious iconography. When you attune to it, the iconography and the mat's colors change to the iconography and colors most appropriate for your deity. If you spend 10 minutes praying to your deity while kneeling on this mat, you regain one expended use of Channel Divinity. The mat can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_primal-doom-of-anguish", + "fields": { + "name": "Primal Doom of Anguish", + "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_primal-doom-of-pain", + "fields": { + "name": "Primal Doom of Pain", + "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_primal-doom-of-rage", + "fields": { + "name": "Primal Doom of Rage", + "desc": "A murky liquid or smoke churns inside this small, glass globe. Typically, 1d3 primal dooms are found together. You can use an action to throw the globe up to 30 feet. It shatters on impact and is destroyed. Each creature within 5 feet of where the globe landed must succeed on a DC 15 Wisdom saving throw or take psychic damage. If at least one creature failed the saving throw, the primal essence of the Lower Planes within the globe coalesces into a fiend, depending on the type of globe. The fiend lasts for 1 minute and acts on its own, but it views you and your allies as its allies. Primal Doom of Anguish (Uncommon). This globe deals 2d6 psychic damage and summons a dretch or a lemure (your choice) on a failed saving throw. Primal Doom of Pain (Rare). This globe deals 4d6 psychic damage and summons a barbed devil or vrock (your choice) on a failed saving throw. Primal Doom of Rage (Very Rare). This globe deals 6d6 psychic damage and summons a bone devil or glabrezu (your choice) on a failed saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_primordial-scale", + "fields": { + "name": "Primordial Scale", + "desc": "This armor is fashioned from the scales of a great, subterranean beast shunned by the gods. While wearing it, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the armor increases its range by 60 feet, but you have disadvantage on attack rolls and Wisdom (Perception) checks that rely on sight when you are in sunlight. In addition, while wearing this armor, you have advantage on saving throws against spells cast by agents of the gods, such as celestials, fiends, clerics, and cultists.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_prospecting-compass", + "fields": { + "name": "Prospecting Compass", + "desc": "This battered, old compass has engravings of lumps of ore and natural crystalline minerals. While holding this compass, you can use an action to name a type of metal or stone. The compass points to the nearest naturally occurring source of that metal or stone for 1 hour or until you name a different type of metal or stone. The compass can point to cut gemstones, but it can't point to processed metals, such as iron swords or gold coins. The compass can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_quick-change-mirror", + "fields": { + "name": "Quick-Change Mirror", + "desc": "This utilitarian, rectangular standing mirror measures 4 feet tall and 2 feet wide. Despite its plain appearance, the mirror allows creatures to quickly change outfits. While in front of the mirror, you can use an action to speak the mirror's command word to be clothed in an outfit stored in the mirror. The outfit you are currently wearing is stored in the mirror or falls to the floor at your feet (your choice). The mirror can hold up to 12 outfits. An outfit must be a set of clothing or armor. An outfit can include other wearable items, such as a belt with pouches, a backpack, headwear, or footwear, but it can't include weapons or other carried items unless the weapon or carried item is sheathed, stored in a backpack, pocket, or pouch, or similarly attached to the outfit. The extent of how many attachments an outfit can have before it is considered more than one outfit or it is no longer considered an outfit is at the GM's discretion. To store an outfit you are wearing in the mirror, you must spend at least 1 minute rotating slowly in front of the mirror and speak the mirror's second command word. You can use a bonus action to speak a third command word to cause the mirror to display the outfits it contains. When found, the mirror contains 1d10 + 2 outfits. If the mirror is destroyed, all outfits it contains fall in a heap at its base.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_quill-of-scribing", + "fields": { + "name": "Quill of Scribing", + "desc": "This quill is fashioned from the feather of some exotic beast, often a giant eagle, griffon, or hippogriff. When you take an action to speak the command word, the quill animates, transcribing each word spoken by you, and up to three other creatures you designate, onto whatever material is placed before it until the command word is spoken again, or it has scribed 250 words. Once used, the quill can't be used again for 8 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_quilted-bridge", + "fields": { + "name": "Quilted Bridge", + "desc": "A practiced hand sewed together a collection of cloth remnants from magical garb to make this colorful and warm blanket. You can use an action to unfold it and pour out three drops of wine in tribute to its maker. If you do so, the blanket becomes a 5-foot wide, 10-foot-long bridge as sturdy as steel. You can fold the bridge back up as an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_radiance-bomb", + "fields": { + "name": "Radiance Bomb", + "desc": "This small apple-sized globule is made from a highly reflective silver material and has a single, golden rune etched on it. Typically, 1d4 + 4 radiance bombs are found together. You can use an action to throw the globule up to 60 feet. The globule explodes on impact and is destroyed. Each creature within a 10-foot radius of where the globule landed must make a DC 13 Dexterity saving throw. On a failure, a creature takes 3d6 radiant damage and is blinded for 1 minute. On a success, a creature takes half the damage and isn't blinded. A blinded creature can make a DC 13 Constitution saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_radiant-bracers", + "fields": { + "name": "Radiant Bracers", + "desc": "These bronze bracers are engraved with the image of an ankh with outstretched wings. While wearing these bracers, you have resistance to necrotic damage, and you can use an action to speak the command word while crossing the bracers over your chest. If you do so, each undead that can see you within 30 feet of you must make a Wisdom saving throw. The DC is equal to 8 + your proficiency bonus + your Wisdom modifier. On a failure, an undead creature is turned for 1 minute or until it takes any damage. This feature works like the cleric's Turn Undead class feature, except it can't be used to destroy undead. The bracers can't be used to turn undead again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_radiant-libram", + "fields": { + "name": "Radiant Libram", + "desc": "The gilded pages of this holy tome are bound between thin plates of moonstone crystal that emit a gentle incandescence. Aureate celestial runes adorn nearly every inch of its blessed surface. In addition, while you are attuned to the book, the spells written in it count as prepared spells and don't count against the number of spells you can prepare each day. You don't gain additional spell slots from this feature. The following spells are written in the book: beacon of hope, bless, calm emotions, commune, cure wounds, daylight, detect evil and good, divine favor, flame strike, gentle repose, guidance, guiding bolt, heroism, lesser restoration, light, produce flame, protection from evil and good, sacred flame, sanctuary, and spare the dying. A turned creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If there's nowhere to move, the creature can use the Dodge action. Once used, this property of the book can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rain-of-chaos", + "fields": { + "name": "Rain of Chaos", + "desc": "This magic weapon imbues arrows fired from it with random energies. When you hit with an attack using this magic bow, the target takes an extra 1d6 damage. Roll a 1d8. The number rolled determines the damage type of the extra damage. | d8 | Damage Type |\n| --- | ----------- |\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Lightning |\n| 5 | Necrotic |\n| 6 | Poison |\n| 7 | Radiant |\n| 8 | Thunder |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rainbow-extract", + "fields": { + "name": "Rainbow Extract", + "desc": "This thin, oily liquid shimmers with the colors of the spectrum. For 1 hour after drinking this potion, you can use an action to change the color of your hair, skin, eyes, or all three to any color or mixture of colors in any hue, pattern, or saturation you choose. You can change the colors as often as you want for the duration, but the color changes disappear at the end of the duration.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rapier-of-fallen-saints", + "fields": { + "name": "Rapier of Fallen Saints", + "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ravagers-axe", + "fields": { + "name": "Ravager's Axe", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. Any attack with this axe that hits a structure or an object that isn't being worn or carried is a critical hit. When you roll a 20 on an attack roll made with this axe, the target takes an extra 1d10 cold damage and 1d10 necrotic damage as the axe briefly becomes a rift to the Void.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_recondite-shield", + "fields": { + "name": "Recondite Shield", + "desc": "While wearing this ring, you can use a bonus action to create a weightless, magic shield that shimmers with arcane energy. You must be proficient with shields to wield this semitranslucent shield, and you wield it in the same hand that wears the ring. The shield lasts for 1 hour or until you dismiss it (no action required). Once used, you can't use the ring in this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_recording-book", + "fields": { + "name": "Recording Book", + "desc": "This book, which hosts a dormant Bookkeeper (see Creature Codex), appears to be a journal filled with empty pages. You can use an action to place the open book on a surface and speak its command word to activate it. It remains active until you use an action to speak the command word again. The book records all things said within 60 feet of it. It can distinguish voices and notes those as it records. The book can hold up to 12 hours' worth of conversation. You can use an action to speak a second command word to remove up to 1 hour of recordings in the book, while a third command word removes all the book's recordings. Any creature, other than you or targets you designate, that peruses the book finds the pages blank.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_reef-splitter", + "fields": { + "name": "Reef Splitter", + "desc": "The head of this warhammer is constructed of undersea volcanic rock and etched with images of roaring flames and boiling water. You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you roll a 20 on an attack roll made with this weapon, the hammer erupts with magma, and the target takes an extra 4d6 fire damage. In addition, if the target is underwater, the water around it begins to boil with the heat of your blow, and each creature other than you within 5 feet of the target takes 2d6 fire damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_relocation-cable", + "fields": { + "name": "Relocation Cable", + "desc": "This 60-foot length of fine wire cable weighs 2 pounds. If you hold one end of the cable and use an action to speak its command word, the other end plunges into the ground, burrowing through dirt, sand, snow, mud, ice, and similar material to emerge from the ground at a destination you can see up to its maximum length away. The cable can't burrow through solid rock. On the turn it is activated, you can use a bonus action to magically travel from one end of the cable to the other, appearing in an unoccupied space within 5 feet of the other end. On subsequent turns, any creature in contact with one end of the cable can use an action to appear in an unoccupied space within 5 feet of the other end of it. A creature magically traveling from one end of the cable to the other doesn't provoke opportunity attacks. You can retract the cable by using a bonus action to speak the command word a second time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_resolute-bracer", + "fields": { + "name": "Resolute Bracer", + "desc": "This ornamental bracer features a reservoir sewn into its lining. As an action, you can fill the reservoir with a single potion or vial of liquid, such as a potion of healing or antitoxin. While attuned to this bracer, you can use a bonus action to speak the command word and absorb the liquid as if you had consumed it. Liquid stored in the bracer for longer than 8 hours evaporates.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_retribution-armor", + "fields": { + "name": "Retribution Armor", + "desc": "Etchings of flames adorn this breastplate, which is wrapped in chains of red gold, silver, and black iron. While wearing this armor, you gain a +1 bonus to AC. In addition, if a creature scores a critical hit against you, you have advantage on any attacks against that creature until the end of your next turn or until you score a critical hit against that creature. - You have resistance to necrotic damage, and you are immune to poison damage. - You can't be charmed or poisoned, and you don't suffer from exhaustion.\n- You have darkvision out to a range of 60 feet.\n- You have advantage on saving throws against effects that turn undead.\n- You can use an action to sense the direction of your killer. This works like the locate creature spell, except you can sense only the creature that killed you. You rise as an undead only if your death was caused with intent; accidental deaths or deaths from unintended consequences (such as dying from a disease unintentionally passed to you) don't activate this property of the armor. You exist in this deathly state for up to 1 week per Hit Die or until you exact revenge on your killer, at which time your body crumbles to ash and you finally die. You can be restored to life only by means of a true resurrection or wish spell.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_revenants-shawl", + "fields": { + "name": "Revenant's Shawl", + "desc": "This shawl is made of old raven feathers woven together with elk sinew and small bones. When you are reduced to 0 hit points while wearing the shawl, it explodes in a burst of freezing wind. Each creature within 10 feet of you must make a DC 13 Dexterity saving throw, taking 4d6 cold damage on a failed save, or half as much damage on a successful one. You then regain 4d6 hit points, and the shawl disintegrates into fine black powder.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rift-orb", + "fields": { + "name": "Rift Orb", + "desc": "This orb is a sphere of obsidian 3 inches in diameter. When you speak the command word in Void Speech, you can throw the sphere as an action to a point within 60 feet. When the sphere reaches the point you choose or if it strikes a solid object on the way, it immediately stops and generates a tiny rift into the Void. The area within 20 feet of the rift orb becomes difficult terrain, and gravity begins drawing everything in the affected area toward the rift. Each creature in the area at the start of its turn, or when it enters the area for the first time on a turn, must succeed on a DC 15 Strength saving throw or be pulled 10 feet toward the rift. A creature that touches the rift takes 4d10 necrotic damage. Unattended objects in the area are pulled 10 feet toward the rift at the start of your turn. Nonmagical objects pulled into the rift are destroyed. The rift orb functions for 1 minute, after which time it becomes inert. It can't be used again until the following midnight.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-mail-of-warding-1", + "fields": { + "name": "Ring Mail of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-mail-of-warding-2", + "fields": { + "name": "Ring Mail of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-mail-of-warding-3", + "fields": { + "name": "Ring Mail of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-arcane-adjustment", + "fields": { + "name": "Ring of Arcane Adjustment", + "desc": "This stylized silver ring is favored by spellcasters accustomed to fighting creatures capable of shrugging off most spells. The ring has 3 charges and regains 1d3 expended charges daily at dawn. When you cast a spell of 5th level or lower that has only one target and the target succeeds on the saving throw, you can use a reaction and expend 1 charge from the ring to change the spell's target to a new target within the spell's range. The new target is then affected by the spell, but the new target has advantage on the saving throw. You can't move the spell more than once this way, even if the new target succeeds on the saving throw. You can't move a spell that affects an area, that has multiple targets, that requires an attack roll, or that allows the target to make a saving throw to reduce, but not prevent, the effects of the spell, such as blight or feeblemind.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-bravado", + "fields": { + "name": "Ring of Bravado", + "desc": "This polished brass ring has 3 charges. While wearing the ring, you are inspired to daring acts that risk life and limb, especially if such acts would impress or intimidate others who witness them. When you choose a course of action that could result in serious harm or possible death (your GM has final say in if an action qualifies), you can expend 1 of the ring's charges to roll a d10 and add the number rolled to any d20 roll you make to achieve success or avoid damage, such as a Strength (Athletics) check to scale a sheer cliff and avoid falling or a Dexterity saving throw made to run through a hallway filled with swinging blades. The ring regains all expended charges daily at dawn. In addition, if you fail on a roll boosted by the ring, and you failed the roll by only 1, the ring regains 1 expended charge, as its magic recognizes a valiant effort.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-deceivers-warning", + "fields": { + "name": "Ring of Deceiver's Warning", + "desc": "This copper ring is set with a round stone of blue quartz. While you wear the ring, the stone's color changes to red if a shapechanger comes within 30 feet of you. For the purpose of this ring, “shapechanger” refers to any creature with the Shapechanger trait.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-dragons-discernment", + "fields": { + "name": "Ring of Dragon's Discernment", + "desc": "A large, orange cat's eye gem is held in the fittings of this ornate silver ring, looking as if it is grasped by scaled talons. While wearing this ring, your senses are sharpened. You have advantage on Intelligence (Investigation) and Wisdom (Perception) checks, and you can take the Search action as a bonus action. In addition, you are able to discern the value of any object made of precious metals or minerals or rare materials by handling it for 1 round.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-featherweight-weapons", + "fields": { + "name": "Ring of Featherweight Weapons", + "desc": "If you normally have disadvantage on attack rolls made with weapons with the Heavy property due to your size, you don't have disadvantage on those attack rolls while you wear this ring. This ring has no effect on you if you are Medium or larger or if you don't normally have disadvantage on attack rolls with heavy weapons.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-giant-mingling", + "fields": { + "name": "Ring of Giant Mingling", + "desc": "While wearing this ring, your size changes to match the size of those around you. If you are a Large creature and start your turn within 100 feet of four or more Medium creatures, this ring makes you Medium. Similarly, if you are a Medium creature and start your turn within 100 feet of four or more Large creatures, this ring makes you Large. These effects work like the effects of the enlarge/reduce spell, except they persist as long as you wear the ring and satisfy the conditions.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-hoarded-life", + "fields": { + "name": "Ring of Hoarded Life", + "desc": "This ring stores hit points sacrificed to it, holding them until the attuned wearer uses them. The ring can store up to 30 hit points at a time. When found, it contains 2d10 stored hit points. While wearing this ring, you can use an action to spend one or more Hit Dice, up to your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. Your hit point maximum is reduced by the total, and the ring stores the total, up to 30 hit points. This hit point maximum reduction can't be removed with the greater restoration spell or similar magic and lasts as long as hit points remain stored in the ring. You can't store hit points in the ring if you don't have blood. When hit points are stored in the ring, you can cause one of the following effects: - You can use a bonus action to remove stored hit points from the ring and regain that number of hit points.\n- You can use an action to remove stored hit points from the ring while touching the ring to a creature. If you do so, the creature regains hit points equal to the amount of hit points you removed from the ring.\n- When you are reduced to 0 hit points and are not killed outright, you can use a reaction to empty the ring of stored hit points and regain hit points equal to that amount. Hit Dice spent on this ring's features can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-imperious-command", + "fields": { + "name": "Ring of Imperious Command", + "desc": "Embossed in gold on this heavy iron ring is the image of a crown. The ring has 3 charges and regains 1d3 expended charges daily at dawn. While wearing this ring, you have advantage on Charisma (Intimidation) checks, and you can project your voice up to 300 feet with perfect clarity. In addition, you can use an action and expend 1 of the ring's charges to command a creature you can see within 30 feet of you to kneel before you. The target must make a DC 15 Charisma saving throw. On a failure, the target spends its next turn moving toward you by the shortest and most direct route then falls prone and ends its turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-lights-comfort", + "fields": { + "name": "Ring of Light's Comfort", + "desc": "A disc of white chalcedony sits within an encompassing band of black onyx, set into fittings on this pewter ring. While wearing this ring in dim light or darkness, you can use a bonus action to speak the ring's command word, causing it to shed bright light in a 30-foot radius and dim light for an additional 30 feet. The ring automatically sheds this light if you start your turn within 60 feet of an undead or lycanthrope. The light lasts until you use a bonus action to repeat the command word. In addition, you can't be charmed, frightened, or possessed by undead or lycanthropes.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-nights-solace", + "fields": { + "name": "Ring of Night's Solace", + "desc": "A disc of black onyx sits within an encompassing band of white chalcedony, set into fittings on this pewter ring. While wearing this ring in bright light, you are draped in a comforting cloak of shadow, protecting you from the harshest glare. If you have the Sunlight Sensitivity trait or a similar trait that causes you to have disadvantage on attack rolls or Wisdom (Perception) checks while in bright light or sunlight, you don't suffer those effects while wearing this ring. In addition, you have advantage on saving throws against being blinded.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-powerful-summons", + "fields": { + "name": "Ring of Powerful Summons", + "desc": "When you summon a creature with a conjuration spell while wearing this ring, the creature gains a +1 bonus to attack and damage rolls and 1d4 + 4 temporary hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-remembrance", + "fields": { + "name": "Ring of Remembrance", + "desc": "This ring is a sturdy piece of string, tied at the ends to form a circle. While wearing it, you can use an action to invoke its power by twisting it on your finger. If you do so, you have advantage on the next Intelligence check you make to recall information. The ring can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-sealing", + "fields": { + "name": "Ring of Sealing", + "desc": "This ring appears to be made of golden chain links. It has 3 charges and regains 1d3 expended charges daily at dawn. When you hit a creature with a melee attack while wearing this ring, you can use a bonus action and expend 1 of the ring's charges to cause mystical golden chains to spring from the ground and wrap around the creature. The target must make a DC 17 Wisdom saving throw. On a failure, the magical chains hold the target firmly in place, and it is restrained. The target can't move or be moved by any means. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. However, if the target fails three consecutive saving throws, the chains bind the target permanently. A successful dispel magic (DC 17) cast on the chains destroys them.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-shadows", + "fields": { + "name": "Ring of Shadows", + "desc": "While wearing this ebony ring in dim light or darkness, you have advantage on Dexterity (Stealth) checks. When you roll a 20 on a Dexterity (Stealth) check, the ring's magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-small-mercies", + "fields": { + "name": "Ring of Small Mercies", + "desc": "While wearing this plain, beaten pewter ring, you can use an action to cast the spare the dying spell from it at will.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-stored-vitality", + "fields": { + "name": "Ring of Stored Vitality", + "desc": "While you are attuned to and wearing this ring of polished, white chalcedony, you can feed some of your vitality into the ring to charge it. You can use an action to suffer 1 level of exhaustion. For each level of exhaustion you suffer, the ring regains 1 charge. The ring can store up to 3 charges. As the ring increases in charges, its color reddens, becoming a deep red when it has 3 charges. Your level of exhaustion can be reduced by normal means. If you already suffer from 3 or more levels of exhaustion, you can't suffer another level of exhaustion to restore a charge to the ring. While wearing the ring and suffering exhaustion, you can use an action to expend 1 or more charges from the ring to reduce your exhaustion level. Your exhaustion level is reduced by 1 for each charge you expend.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-the-dolphin", + "fields": { + "name": "Ring of the Dolphin", + "desc": "This gold ring bears a jade carving in the shape of a leaping dolphin. While wearing this ring, you have a swimming speed of 40 feet. In addition, you can hold your breath for twice as long while underwater.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-the-frog", + "fields": { + "name": "Ring of the Frog", + "desc": "A pale chrysoprase cut into the shape of a frog is the centerpiece of this tarnished copper ring. While wearing this ring, you have a swimming speed of 20 feet, and you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-the-frost-knight", + "fields": { + "name": "Ring of the Frost Knight", + "desc": "This white gold ring is covered in a thin sheet of ice and always feels cold to the touch. The ring has 3 charges and regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 charge to surround yourself in a suit of enchanted ice that resembles plate armor. For 1 hour, your AC can't be less than 16, regardless of what kind of armor you are wearing, and you have resistance to cold damage. The icy armor melts, ending the effect early, if you take 20 fire damage or more.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-the-groves-guardian", + "fields": { + "name": "Ring of the Grove's Guardian", + "desc": "This pale gold ring looks as though made of delicately braided vines wrapped around a small, rough obsidian stone. While wearing this ring, you have advantage on Wisdom (Perception) checks. You can use an action to speak the ring's command word to activate it and draw upon the vitality of the grove to which the ring is bound. You regain 2d10 hit points. Once used, this property can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-the-jarl", + "fields": { + "name": "Ring of the Jarl", + "desc": "This thick band of hammered yellow gold is warm to the touch even in the coldest of climes. While you wear it, you have resistance to cold damage. If you are also wearing boots of the winterlands, you are immune to cold damage instead. Bolstering Shout. When you roll for initiative while wearing this ring, you can use a reaction to shout a war cry, bolstering your allies. Each friendly creature within 30 feet of you and that can hear you gains a +2 bonus on its initiative roll, and it has advantage on attack rolls for a number of rounds equal to your Charisma modifier (minimum of 1 round). Once used, this property of the ring can’t be used again until the next dawn. Wergild. While wearing this ring, you can use an action to create a nonmagical duplicate of the ring that is worth 100 gp. You can bestow this ring upon another as a gift. The ring can’t be used for common barter or trade, but it can be used for debts and payment of a warlike nature. You can give this ring to a subordinate warrior in your service or to someone to whom you owe a blood-debt, as a weregild in lieu of further fighting. You can create up to 3 of these rings each week. Rings that are not gifted within 24 hours of their creation vanish again.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-the-water-dancer", + "fields": { + "name": "Ring of the Water Dancer", + "desc": "This thin braided purple ring is fashioned from a single piece of coral. While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground. In addition, while walking atop any liquid, your movement speed increases by 10 feet and you gain a +1 bonus to your AC.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ring-of-ursa", + "fields": { + "name": "Ring of Ursa", + "desc": "This wooden ring is set with a strip of fossilized honey. While wearing this ring, you gain the following benefits: - Your Strength score increases by 2, to a maximum of 20.\n- You have advantage on Charisma (Persuasion) checks made to interact with bearfolk. In addition, while attuned to the ring, your hair grows thick and abundant. Your facial features grow more snout-like, and your teeth elongate. If you aren't a bearfolk, you gain the following benefits while wearing the ring:\n- You can now make a bite attack as an unarmed strike. When you hit with it, your bite deals piercing damage equal to 1d6 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. - You gain a powerful build and count as one size larger when determining your carrying capacity and the weight you can push, drag, or lift.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_river-token", + "fields": { + "name": "River Token", + "desc": "This small pebble measures 3/4 of an inch in diameter and weighs an ounce. The pebbles are often shaped like salmon, river clams, or iridescent river rocks. Typically, 1d4 + 4 river tokens are found together. The token gives off a distinct shine in sunlight and radiates a scent of fresh, roiling water. It is sturdy but crumbles easily if crushed. As an action, you can destroy the token by crushing it and sprinkling the remains into a river, calming the waters to a gentle current and soothing nearby water-dwelling creatures for 1 hour. Water-dwelling beasts in the river with an Intelligence of 3 or lower are soothed and indifferent toward passing humanoids for the duration. The token's magic soothes but doesn't fully suppress the hostilities of all other water-dwelling creatures. For the duration, each other water-dwelling creature must succeed on a DC 15 Wisdom saving throw to attack or take hostile actions toward passing humanoids. The token's soothing magic ends on a creature if that creature is attacked.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_riverine-blade", + "fields": { + "name": "Riverine Blade", + "desc": "The crossguard of this distinctive sword depicts a stylized Garroter Crab (see Tome of Beasts) with claws extended, and the pommel is set with a smooth, spherical, blue-black river rock. You gain a +2 bonus to attack and damage rolls made with this magic weapon. While on a boat or while standing in any depth of water, you have advantage on Dexterity checks and saving throws.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-blade-bending", + "fields": { + "name": "Rod of Blade Bending", + "desc": "This simple iron rod functions as a magic mace that grants a +1 bonus to attack and damage rolls made with it. Blade Bend. While holding the rod, you can use an action to activate it, creating a magical field around you for 10 minutes. When a creature attacks you with a melee weapon that deals piercing or slashing damage while the field is active, it must make a DC 15 Wisdom saving throw. On a failure, the creature’s attack misses. On a success, the creature’s attack hits you, but you have resistance to any piercing or slashing damage dealt by the attack as the weapon bends partially away from your body. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-bubbles", + "fields": { + "name": "Rod of Bubbles", + "desc": "This rod appears to be made of foamy bubbles, but it is completely solid to the touch. This rod has 3 charges. While holding it, you can use an action to expend 1 of its charges to conjure a bubble around a creature or object within 30 feet. If the target is a creature, it must make a DC 15 Strength saving throw. On a failed save, the target becomes trapped in a 10-foot sphere of water. A Huge or larger creature automatically succeeds on this saving throw. A creature trapped within the bubble is restrained unless it has a swimming speed and can't breathe unless it can breathe water. If the target is an object, it becomes soaked in water, any fire effects are extinguished, and any acid effects are negated. The bubble floats in the exact spot where it was conjured for up to 1 minute, unless blown by a strong wind or moved by water. The bubble has 50 hit points, AC 8, immunity to acid damage and vulnerability to piercing damage. The inside of the bubble also has resistance to all damage except piercing damage. The bubble disappears after 1 minute or when it is reduced to 0 hit points. When not in use, this rod can be commanded to take liquid form and be stored in a small vial. The rod regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-conveyance", + "fields": { + "name": "Rod of Conveyance", + "desc": "The top of this rod is capped with a bronze horse head, and its foot is decorated with a horsehair plume. By placing the rod between your legs, you can use an action to temporarily transform the rod into a horse-like construct. This works like the phantom steed spell, except you can use a bonus action to end the effect early to use the rod again at a later time. Deduct the time the horse was active in increments of 1 minute from the spell's 1-hour duration. When the rod has been a horse for a total of 1 hour, the magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-deflection", + "fields": { + "name": "Rod of Deflection", + "desc": "This thin, flexible rod is made of braided silver and brass wire and topped with a spoon-like cup. While holding the rod, you can use a reaction to deflect a ranged weapon attack against you. You can simply cause the attack to miss, or you can attempt to redirect the attack against another target, even your attacker. The attack must have enough remaining range to reach the new target. If the additional distance between yourself and the new target is within the attack's long range, it is made at disadvantage as normal, using the original attack roll as the first roll. The rod has 3 charges. You can expend a charge as a reaction to redirect a ranged spell attack as if it were a ranged weapon attack, up to the spell's maximum range. The rod regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-ghastly-might", + "fields": { + "name": "Rod of Ghastly Might", + "desc": "The knobbed head of this tarnished silver rod resembles the top half of a jawless, syphilitic skull, and it functions as a magic mace that grants a +2 bonus to attack and damage rolls made with it. The rod has properties associated with five different buttons that are set erratically along the haft. It has three other properties as well, detailed below. If you press **button 1**, the rod's head erupts in a fiery nimbus of abyssal energy that sheds dim light in a 5-foot radius. While the rod is ablaze, it deals an extra 1d6 fire damage and 1d6 necrotic damage to any target it hits. If you press **button 2**, the rod's head becomes enveloped in a black aura of enervating energy. When you hit a target with the rod while it is enveloped in this energy, the target must succeed on a DC 17 Constitution saving throw or deal only half damage with weapon attacks that use Strength until the end of its next turn. If you press **button 3**, a 2-foot blade springs from the tip of the rod's handle as the handle lengthens into a 5-foot haft, transforming the rod into a magic glaive that grants a +2 bonus to attack and damage rolls made with it. If you press **button 4**, a 3-pronged, bladed grappling hook affixed to a long chain springs from the tip of the rod's handle. The bladed grappling hook counts as a magic sickle with reach that grants a +2 bonus to attack and damage rolls made with it. When you hit a target with the bladed grappling hook, the target must succeed on an opposed Strength check or fall prone. If you press **button 5**, the rod assumes or remains in its normal form and you can extinguish all nonmagical flames within 30 feet of you. Turning Defiance. While holding the rod, you and any undead allies within 30 feet of you have advantage on saving throws against effects that turn undead. Contagion. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target is afflicted with a disease. This works like the contagion spell. Once used, this property can’t be used again until the next dusk. Create Specter. As an action, you can target a humanoid within 10 feet of you that was killed by the rod or one of its effects and has been dead for no longer than 1 minute. The target’s spirit rises as a specter under your control in the space of its corpse or in the nearest unoccupied space. You can have no more than one specter under your control at one time. Once used, this property can’t be used again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-hellish-grounding", + "fields": { + "name": "Rod of Hellish Grounding", + "desc": "This curious jade rod is tipped with a knob of crimson crystal that glows and shimmers with eldritch phosphorescence. While holding or carrying the rod, you have darkvision out to a range of 30 feet, and you have advantage on Dexterity (Acrobatics) checks. Hellish Desiccation. While holding this rod, you can use an action to fire a crimson ray at an object or creature made of metal that you can see within 60 feet of you. The ray forms a 5-foot wide line between you and the target. Each creature in that line that isn’t a construct or an undead must make a DC 15 Dexterity saving throw, taking 8d6 force damage on a failed save, or half as much damage on a successful one. Creatures and objects made of metal are unaffected. If this damage reduces a creature to 0 hit points, it is desiccated. A desiccated creature is reduced to a withered corpse, but everything it is wearing and carrying is unaffected. The creature can be restored to life only by means of a true resurrection or a wish spell. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-icicles", + "fields": { + "name": "Rod of Icicles", + "desc": "This white crystalline rod is shaped like an icicle. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges to attack one creature you can see within 60 feet of you. The rod launches an icicle at the target and makes its attack roll with a +7 bonus. On a hit, the target takes 2d6 piercing damage and 2d6 cold damage. On a critical hit, the target is also paralyzed until the end of its next turn as it momentarily freezes. If you take fire damage while holding this rod, you become immune to fire damage for 1 minute, and the rod loses 2 charges. If the rod has only 1 charge remaining when you take fire damage, you become immune to fire damage, as normal, but the rod melts into a puddle of water and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-reformation", + "fields": { + "name": "Rod of Reformation", + "desc": "This rod of polished white oak is wrapped in a knotted cord with three iron rings binding each end. If you are holding the rod and fail a saving throw against a transmutation spell or other effect that would change your body or remove or alter parts of you, you can choose to succeed instead. The rod can’t be used this way again until the next dawn. The rod has 5 charges for the following properties. It regains 1d4 + 1 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rings fall off, the cord unknots, and the entire rod slowly falls to pieces and is destroyed. Cure Transformation. While holding the rod, you can use an action to expend 1 charge while touching a creature that has been affected by a transmutation spell or other effect that changed its physical form, such as the polymorph spell or a medusa's Petrifying Gaze. The rod restores the creature to its original form. If the creature is willingly transformed, such as a druid using Wild Shape, you must make a melee weapon attack roll, using the rod. You are proficient with the rod if you are proficient with clubs. On a hit, you can expend 1 of the rod’s charges to force the target to make a DC 15 Constitution saving throw. On a failure, the target reverts to its original form. Mend Form. While holding the rod, you can use an action to expend 2 charges to reattach a creature's severed limb or body part. The limb must be held in place while you use the rod, and the process takes 1 minute to complete. You can’t reattach limbs or other body parts to dead creatures. If the limb is lost, you can spend 4 charges instead to regenerate the missing piece, which takes 2 minutes to complete. Reconstruct Form. While holding the rod, you can use an action to expend 5 charges to reconstruct the form of a creature or object that has been disintegrated, burned to ash, or similarly destroyed. An item is completely restored to its original state. A creature’s body is fully restored to the state it was in before it was destroyed. The creature isn’t restored to life, but this reconstruction of its form allows the creature to be restored to life by spells that require the body to be present, such as raise dead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-repossession", + "fields": { + "name": "Rod of Repossession", + "desc": "This short, metal rod is engraved with arcane runes and images of open hands. The rod has 3 charges and regains all expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges and target an object within 30 feet of you that isn't being worn or carried. If the object weighs no more than 25 pounds, it floats to your open hand. If you have no hands free, the object sticks to the tip of the rod until the end of your next turn or until you remove it as a bonus action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-sacrificial-blessing", + "fields": { + "name": "Rod of Sacrificial Blessing", + "desc": "This silvery rod is set with rubies on each end. One end holds rubies shaped to resemble an open, fanged maw, and the other end's rubies are shaped to resemble a heart. While holding this rod, you can use an action to spend one or more Hit Dice, up to half your maximum Hit Dice, while pointing the heart-shaped ruby end of the rod at a target within 60 feet of you. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and the target regains hit points equal to the total hit points you lost. You can't use this feature if you don't have blood. Hit Dice spent on this feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-sanguine-mastery", + "fields": { + "name": "Rod of Sanguine Mastery", + "desc": "This rod is topped with a red ram's skull with two backswept horns. As an action, you can spend one or more Hit Dice, up to half of your maximum Hit Dice. For each Hit Die spent in this way, you roll the die and add your Constitution modifier to it. You lose hit points equal to the total, and a target within 60 feet of you must make a DC 17 Dexterity saving throw, taking necrotic damage equal to the total on a failed save, or half as much damage on a successful one. You can't use this feature if you don't have blood. Hit Dice spent on this feature can't be used to regain hit points during a short rest. You regain spent Hit Dice as normal.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-swarming-skulls", + "fields": { + "name": "Rod of Swarming Skulls", + "desc": "An open-mouthed skull caps this thick, onyx rod. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dusk. While holding the rod, you can use an action and expend 1 of the rod's charges to unleash a swarm of miniature spectral blue skulls at a target within 30 feet. The target must make a DC 15 Wisdom saving throw. On a failure, it takes 3d6 psychic damage and becomes paralyzed with fear until the end of its next turn. On a success, it takes half the damage and isn't paralyzed. Creatures that can't be frightened are immune to this effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-the-disciplinarian", + "fields": { + "name": "Rod of the Disciplinarian", + "desc": "This black lacquered wooden rod is banded in steel, has a flanged head, and functions as a magic mace. As a bonus action, you can brandish the rod at a creature and demand it refrain from a particular activity— attacking, casting, moving, or similar. The activity can be as specific (don't attack the person next to you) or as open (don't cast a spell) as you want, but the activity must be a conscious act on the creature's part, must be something you can determine is upheld or broken, and can't immediately jeopardize the creature's life. For example, you can forbid a creature from lying only if you are capable of determining if the creature is lying, and you can't forbid a creature that needs to breathe from breathing. The creature can act normally, but if it performs the activity you forbid, you can use a reaction to make a melee attack against it with the rod. You can forbid only one creature at a time. If you forbid another creature from performing an activity, the previous creature is no longer forbidden from performing activities. Justicars are arbiters of law and order, operating independently of any official city guard or watch divisions. They are recognizable by their black, hooded robes, silver masks, and the rods they carry as weapons. These stern sentinels are overseen by The Magister, a powerful wizard of whom little is known other than their title. The Magister has made it their duty to oversee order in the city and executes their plans through the Justicars, giving them the Magister's mark, a signet ring, as a symbol of their authority. While some officers and members of the watch may be resentful of the Justicars' presence, many are grateful for their aid, especially in situations that could require magic. Justicar's are a small, elite group, typically acting as solo agents, though extremely dangerous situations bring them together in pairs or larger groups as needed. The Justicars are outfitted with three symbols of authority that are also imbued with power: their masks, rods, and rings. Each by itself is a useful item, but they are made stronger when worn together. The combined powers of this trinity of items make a Justicar a formidable force in the pursuit of law and order.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-the-infernal-realms", + "fields": { + "name": "Rod of the Infernal Realms", + "desc": "The withered, clawed hand of a demon or devil tops this iron rod. While holding this rod, you gain a +2 bonus to spell attack rolls, and the save DC for your spells increases by 2. Frightful Eyes. While holding this rod, you can use a bonus action to cause your eyes to glow with infernal fire for 1 minute. While your eyes are glowing, a creature that starts its turn or enters a space within 10 feet of you must succeed on a Wisdom saving throw against your spell save DC or become frightened of you until your eyes stop glowing. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once used, you can’t use this property again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-the-jester", + "fields": { + "name": "Rod of the Jester", + "desc": "This wooden rod is decorated with colorful scarves and topped with a carving of a madly grinning head. Caper. While holding the rod, you can dance and perform general antics that attract attention. Make a DC 10 Charisma (Performance) check. On a success, one creature that can see and hear you must succeed on a DC 15 Wisdom saving throw or have disadvantage on Wisdom (Perception) checks made to perceive any creature other than you for 1 minute. The effect ends if the target can no longer see or hear you or if you are incapacitated. You can affect one additional creature for each 5 points by which you beat the DC (two creatures with a result of 15, three creatures with a result of 20, and so on). Once used, this property can’t be used again until the next dawn. Hideous Laughter. While holding the rod, you can use an action to cast the hideous laughter spell (save DC 15) from it. Once used, this property can’t be used again until the next dawn. Slapstick. You can use an action to swing the rod in the direction of a creature within 5 feet of you. The target must succeed on a DC 15 Dexterity saving throw or be pushed up to 5 feet away from you and knocked prone. If the target fails the saving throw by 5 or more, it is also stunned until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-the-mariner", + "fields": { + "name": "Rod of the Mariner", + "desc": "This thin bone rod is topped with the carved figurine of an albatross in flight. The rod has 5 charges. You can use an action to expend 1 or more of its charges and point the rod at one or more creatures you can see within 30 feet of you, expending 1 charge for each creature. Each target must succeed on a DC 15 Wisdom saving throw or be cursed for 1 minute. A cursed creature has disadvantage on attack rolls and saving throws while within 100 feet of a body of water that is at least 20 feet deep. The rod regains 1d4 + 1 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the rod crumbles to dust and is destroyed, and you must succeed on a DC 15 Wisdom saving throw or be cursed for 1 minute as if you had been the target of the rod's power.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-the-wastes", + "fields": { + "name": "Rod of the Wastes", + "desc": "Created by a holy order of knights to protect their most important members on missions into badlands and magical wastelands, these red gold rods are invaluable tools against the forces of evil. This rod has a rounded head, and it functions as a magic mace that grants a +2 bonus to attack and damage rolls made with it. While holding or carrying the rod, you have advantage on Wisdom (Perception) and Wisdom (Survival) checks made in badlands and wasteland terrain, and you have advantage on saving throws against being charmed or otherwise compelled by aberrations and fiends. If you are charmed or magically compelled by an aberration or fiend, the rod flashes with crimson light, alerting others to your predicament. Aberrant Smite. If you use Divine Smite when you hit an aberration or fiend with this rod, you use the highest number possible for each die of radiant damage rather than rolling one or more dice for the extra radiant damage. You must still roll damage dice for the rod’s damage, as normal. Once used, this property can’t be used again until the next dawn. Spells. You can use an action to cast one of the following spells from the rod: daylight, lesser restoration, or shield of faith. Once you cast a spell with this rod, you can’t cast that spell again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-thorns", + "fields": { + "name": "Rod of Thorns", + "desc": "Several long sharp thorns sprout along the edge of this stout wooden rod, and it functions as a magic mace that grants a +1 bonus to attack and damage rolls made with it. The rod has 5 charges and regains 1d4 + 1 expended charges daily at dawn. While holding the rod, you can use an action to expend 1 of its charges to cast the spike growth spell (save DC 15) from it. Embed Thorn. When you hit a creature with this rod, you can expend 1 of its charges to embed a thorn in the creature. At the start of each of the creature’s turns, it must succeed on a DC 15 Constitution saving throw or take 2d6 piercing damage from the embedded thorn. If the creature succeeds on two saving throws, the thorn falls out and crumbles to dust. The successes don’t need to be consecutive. If the creature dies while the thorn is embedded, its body transforms into a patch of nonmagical brambles, which fill its space with difficult terrain.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-underworld-navigation", + "fields": { + "name": "Rod of Underworld Navigation", + "desc": "This finely carved rod is decorated with gold and small dragon scales. While underground and holding this rod, you know how deep below the surface you are. You also know the direction to the nearest exit leading upward. As an action while underground and holding this rod, you can use the find the path spell to find the shortest, most direct physical route to a location you are familiar with on the surface. Once used, the find the path property can't be used again until 3 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-vapor", + "fields": { + "name": "Rod of Vapor", + "desc": "This wooden rod is topped with a dragon's head, carved with its mouth yawning wide. While holding the rod, you can use an action to cause a thick mist to issue from the dragon's mouth, filling your space. As long as you maintain concentration, you leave a trail of mist behind you when you move. The mist forms a line that is 5 feet wide and as long as the distance you travel. This mist you leave behind you lasts for 2 rounds; its area is heavily obscured on the first round and lightly obscured on the second, then it dissipates. When the rod has produced enough mist to fill ten 5-foot-square areas, its magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-verbatim", + "fields": { + "name": "Rod of Verbatim", + "desc": "Tiny runic script covers much of this thin brass rod. While holding the rod, you can use a bonus action to activate it. For 10 minutes, it translates any language spoken within 30 feet of it into Common. The translation can be auditory, or it can appear as glowing, golden script, a choice you make when you activate it. If the translation appears on a surface, the surface must be within 30 feet of the rod and each word remains for 1 round after it was spoken. The rod's translation is literal, and it doesn't replicate or translate emotion or other nuances in speech, body language, or culture. Once used, the rod can't be used again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rod-of-warning", + "fields": { + "name": "Rod of Warning", + "desc": "This plain, wooden rod is topped with an orb of clear, polished crystal. You can use an action activate it with a command word while designating a particular kind of creature (orcs, wolves, etc.). When such a creature comes within 120 feet of the rod, the crystal glows, shedding bright light in a 10-foot radius and dim light for an additional 10 feet. You can use an action to deactivate the rod's light or change the kind of creature it detects. The rod doesn't need to be in your possession to function, but you must have it in hand to activate it, deactivate it, or change the kind of creature it detects.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rogues-aces", + "fields": { + "name": "Rogue's Aces", + "desc": "These four, colorful parchment cards have long bailed the daring out of hazardous situations. You can use an action to flip a card face-up, activating it. A card is destroyed after it activates. Ace of Pentacles. The pentacles suit represents wealth and treasure. When you activate this card, you cast the knock spell from it on an object you can see within 60 feet of you. In addition, you have advantage on Dexterity checks to pick locks using thieves’ tools for the next 24 hours. Ace of Cups. The cups suit represents water and its calming, soothing, and cleansing properties. When you activate this card, you cast the calm emotions spell (save DC 15) from it. In addition, you have advantage on Charisma (Deception) checks for the next 24 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_root-of-the-world-tree", + "fields": { + "name": "Root of the World Tree", + "desc": "Crafted from the root burl of a sacred tree, this rod is 2 feet long with a spiked, knobby end. Runes inlaid with gold decorate the full length of the rod. This rod functions as a magic mace. Blood Anointment. You can perform a 1-minute ritual to anoint the rod in your blood. If you do, your hit point maximum is reduced by 2d4 until you finish a long rest. While your hit point maximum is reduced in this way, you gain a +1 bonus to attack and damage rolls made with this magic weapon, and, when you hit a fey or giant with this weapon, that creature takes an extra 2d6 necrotic damage. Holy Anointment. If you spend 1 minute anointing the rod with a flask of holy water, you can cast the augury spell from it. The runes carved into the rod glow and move, forming an answer to your query.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rope-seed", + "fields": { + "name": "Rope Seed", + "desc": "If you soak this 5-foot piece of twine in at least one pint of water, it grows into a 50-foot length of hemp rope after 1 minute.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rowan-staff", + "fields": { + "name": "Rowan Staff", + "desc": "Favored by those with ties to nature and death, this staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. While holding it, you have an advantage on saving throws against spells. The staff has 10 charges for the following properties. It regains 1d4 + 1 expended charges daily at midnight, though it regains all its charges if it is bathed in moonlight at midnight. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff. Spell. While holding this staff, you can use an action to expend 1 or more of its charges to cast animate dead, using your spell save DC and spellcasting ability. The target bones or corpse can be a Medium or smaller humanoid or beast. Each charge animates a separate target. These undead creatures are under your control for 24 hours. You can use an action to expend 1 charge each day to reassert your control of up to four undead creatures created by this staff for another 24 hours. Deanimate. You can use an action to strike an undead creature with the staff in combat. If the attack hits, the target must succeed on a DC 17 Constitution saving throw or revert to an inanimate pile of bones or corpse in its space. If the undead has the Incorporeal Movement trait, it is destroyed instead. Deanimating an undead creature expends a number of charges equal to twice the challenge rating of the creature (minimum of 1). If the staff doesn’t have enough charges to deanimate the target, the staff doesn’t deanimate the target.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rowdys-club", + "fields": { + "name": "Rowdy's Club", + "desc": "This knobbed stick is marked with nicks, scratches, and notches. You gain a +1 bonus to attack and damage rolls made with this magic weapon. While wielding the club, you can use an action to tap it against your open palm, the side of your leg, a surface within reach, or similar. If you do, you have advantage on your next Charisma (Intimidation) check. If you are also wearing a rowdy's ring (see page 87), you can use an action to frighten a creature you can see within 30 feet of you instead. The target must succeed on a DC 13 Wisdom saving throw or be frightened of you until the end of its next turn. Once this special action has been used three times, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rowdys-ring", + "fields": { + "name": "Rowdy's Ring", + "desc": "The face of this massive ring is a thick slab of gold-plated lead, which is attached to twin rings that are worn over the middle and ring fingers. The slab covers your fingers from the first and second knuckles, and it often has a threatening word or image engraved on it. While wearing the ring, your unarmed strike uses a d4 for damage and attacks made with the ring hand count as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_royal-jelly", + "fields": { + "name": "Royal Jelly", + "desc": "This oil is distilled from the pheromones of queen bees and smells faintly of bananas. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying. For larger creatures, one additional vial is required for each size category above Medium. Applying the oil takes 10 minutes. The affected creature then has advantage on Charisma (Persuasion) checks for 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ruby-crusher", + "fields": { + "name": "Ruby Crusher", + "desc": "This greatclub is made entirely of fused rubies with a grip wrapped in manticore hide A roaring fire burns behind its smooth facets. You gain a +3 bonus to attack and damage rolls made with this magic weapon. You can use a bonus action to speak this magic weapon's command word, causing it to be engulfed in flame. These flames shed bright light in a 30-foot radius and dim light for an additional 30 feet. While the greatclub is aflame, it deals fire damage instead of bludgeoning damage. The flames last until you use a bonus action to speak the command word again or until you drop the weapon. When you hit a Large or larger creature with this greatclub, the creature must succeed on a DC 17 Constitution saving throw or be pushed up to 30 feet away from you. If the creature strikes a solid object, such as a door or wall, during this movement, it and the object take 1d6 bludgeoning damage for each 10 feet the creature traveled before hitting the object.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rug-of-safe-haven", + "fields": { + "name": "Rug of Safe Haven", + "desc": "This small, 3-foot-by-5-foot rug is woven with a tree motif and a tasseled fringe. While the rug is laid out on the ground, you can speak its command word as an action to create an extradimensional space beneath the rug for 1 hour. The extradimensional space can be reached by lifting a corner of the rug and stepping down as if through a trap door in a floor. The space can hold as many as eight Medium or smaller creatures. The entrance can be hidden by pulling the rug flat. Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window in the shape and style of the rug. Anything inside the extradimensional space is gently pushed out to the nearest unoccupied space when the duration ends. The rug can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_rust-monster-shell", + "fields": { + "name": "Rust Monster Shell", + "desc": "While wearing this armor, you gain a +1 bonus to AC. In addition, you can use an action to magically coat the armor in rusty flakes for 1 minute. While the armor is coated in rusty flakes, any nonmagical weapon made of metal that hits you corrodes. After dealing damage, the weapon takes a permanent and cumulative –1 penalty to damage rolls. If its penalty drops to –5, the weapon is destroyed. Nonmagical ammunition made of metal that hits you is destroyed after dealing damage. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sacrificial-knife", + "fields": { + "name": "Sacrificial Knife", + "desc": "Runes dance along the blade of this keen knife. Sacrificial Knife (Common). While attuned to it, you can use this magic, rune-inscribed dagger as a spellcasting focus. Ceremonial Sacrificial Knife (Uncommon). More powerful versions of this blade also exist. While holding the greater version of this dagger, you can use it to perform a sacrificial ritual during a short rest. If you sacrifice a Tiny or Small creature, you regain one expended 1st-level spell slot. If you sacrifice a Medium or larger creature, you regain one expended 2nd-level spell slot.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_saddle-of-the-cavalry-casters", + "fields": { + "name": "Saddle of the Cavalry Casters", + "desc": "This magic saddle adjusts its size and shape to fit the animal to which it is strapped. While a mount wears this saddle, creatures have disadvantage on opportunity attacks against the mount or its rider. While you sit astride this saddle, you have advantage on any checks to remain mounted and on Constitution saving throws to maintain concentration on a spell when you take damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sanctuary-shell", + "fields": { + "name": "Sanctuary Shell", + "desc": "This seashell is intricately carved with protective runes. If you are carrying the shell and are reduced to 0 hit points or incapacitated, the shell activates, creating a bubble of force that expands to surround you and forces any other creatures out of your space. This sphere works like the wall of force spell, except that any creature intent on aiding you can pass through it. The protective sphere lasts for 10 minutes, or until you regain at least 1 hit point or are no longer incapacitated. When the protective sphere ends, the shell crumbles to dust.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sand-arrow", + "fields": { + "name": "Sand Arrow", + "desc": "The shaft of this arrow is made of tightly packed white sand that discorporates into a blast of grit when it strikes a target. On a hit, the sand catches in the fittings and joints of metal armor, and the target's speed is reduced by 10 feet until it cleans or removes the armor. In addition, the target must succeed on a DC 11 Constitution saving throw or be blinded until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sand-suit", + "fields": { + "name": "Sand Suit", + "desc": "Created from the treated body of a destroyed Apaxrusl (see Tome of Beasts 2), this leather armor constantly sheds fine sand. The faint echoes of damned souls also emanate from the armor. While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, you can move through nonmagical, unworked earth and stone at your speed. While doing so, you don't disturb the material you move through. Because the souls that once infused the apaxrusl remain within the armor, you are susceptible to effects that sense, target, or harm fiends, such as a paladin's Divine Smite or a ranger's Primeval Awareness. This armor has 3 charges, and it regains 1d3 expended charges daily at dawn. As a reaction, when you are hit by an attack, you can expend 1 charge and make the armor flow like sand. Roll a 1d12 and reduce the damage you take by the number rolled.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sandals-of-sand-skating", + "fields": { + "name": "Sandals of Sand Skating", + "desc": "These leather sandals repel sand, leaving your feet free of particles and grit. While you wear these sandals in a desert, on a beach, or in an otherwise sandy environment, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced while in nonmagical difficult terrain made of sand. In addition, when you take the Dash action across sand, the extra movement you gain is double your speed instead of equal to your speed. With a speed of 30 feet, for example, you can move up to 90 feet on your turn if you dash across sand.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sandals-of-the-desert-wanderer", + "fields": { + "name": "Sandals of the Desert Wanderer", + "desc": "While you wear these soft leather sandals, you have resistance to fire damage. In addition, you ignore difficult terrain created by loose or deep sand, and you can tolerate temperatures of up to 150 degrees Fahrenheit.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sanguine-lance", + "fields": { + "name": "Sanguine Lance", + "desc": "This fiendish lance runs red with blood. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature that has blood with this lance, the target takes an extra 1d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_satchel-of-seawalking", + "fields": { + "name": "Satchel of Seawalking", + "desc": "This eel-hide leather pouch is always filled with an unspeakably foul-tasting, coarse salt. You can use an action to toss a handful of the salt onto the surface of an unoccupied space of water. The water in a 5-foot cube becomes solid for 1 minute, resembling greenish-blue glass. This cube is buoyant and can support up to 750 pounds. When the duration expires, the hardened water cracks ominously and returns to a liquid state. If you toss the salt into an occupied space, the water congeals briefly then disperses harmlessly. If the satchel is opened underwater, the pouch is destroyed as its contents permanently harden. Once five handfuls of the salt have been pulled from the satchel, the satchel can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scale-mail-of-warding-1", + "fields": { + "name": "Scale Mail of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scale-mail-of-warding-2", + "fields": { + "name": "Scale Mail of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scale-mail-of-warding-3", + "fields": { + "name": "Scale Mail of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scalehide-cream", + "fields": { + "name": "Scalehide Cream", + "desc": "As an action, you can rub this dull green cream over your skin. When you do, you sprout thick, olive-green scales like those of a giant lizard or green dragon that last for 1 hour. These scales give you a natural AC of 15 + your Constitution modifier. This natural AC doesn't combine with any worn armor or with a Dexterity bonus to AC. A jar of scalehide cream contains 1d6 + 1 doses.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scarab-of-rebirth", + "fields": { + "name": "Scarab of Rebirth", + "desc": "This coin-sized figurine of a scarab is crafted from an unidentifiable blue-gray metal, but it appears mundane in all other respects. When you speak its command word, it whirs to life and burrows into your flesh. You can speak the command word again to remove the scarab. While the scarab is embedded in your flesh, you gain the following:\n- You no longer need to eat or drink.\n- You can magically sense the presence of undead and pinpoint the location of any undead within 30 feet of you.\n- Your hit point maximum is reduced by 10.\n- If you die, you return to life with half your maximum hit points at the start of your next turn. The scarab can't return you to life if you were beheaded, disintegrated, crushed, or similar full-body destruction. Afterwards, the scarab exits your body and goes dormant. It can't be used again until 14 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scarf-of-deception", + "fields": { + "name": "Scarf of Deception", + "desc": "While wearing this scarf, you appear different to everyone who looks upon you for less than 1 minute. In addition, you smell, sound, feel, and taste different to every creature that perceives you. Creatures with truesight or blindsight can see your true form, but their other senses are still confounded. If a creature studies you for 1 minute, it can make a DC 15 Wisdom (Perception) check. On a success, it perceives your real form.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scent-sponge", + "fields": { + "name": "Scent Sponge", + "desc": "This sea sponge collects the scents of creatures and objects. You can use an action to touch the sponge to a creature or object, and the scent of the target is absorbed into the sponge. An unwilling target can make a DC 13 Dexterity saving throw, and if it succeeds, it is unaffected by the sponge. For 1 hour after its scent has been absorbed, the target gives off no smell and can't be detected or tracked by creatures, spells, or other effects that rely on smell to detect or track the target. You can use an action to wipe the sponge on a creature or object, masking its natural scent with the scent stored in the sponge. An unwilling target can make a DC 13 Dexterity saving throw, and if it succeeds, it is unaffected by the sponge. For 1 hour after its scent has been masked, the target gives off the smell of the creature or object that was stored in the sponge. The effect ends early if the target's scent is replaced by another scent from the sponge or if the scent is cleaned away, which requires vigorous washing for 10 minutes with soap and water or similar materials. The sponge can hold a scent indefinitely, but it can hold only one scent at a time.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scepter-of-majesty", + "fields": { + "name": "Scepter of Majesty", + "desc": "While holding this bejeweled, golden rod, you can use an action to cast the enthrall spell (save DC 15) from it, exhorting those in range to follow you and obey your commands. When you finish speaking, 1d6 creatures that failed their saving throw are affected as if by the dominate person spell. Each such creature treats you as its ruler, obeying your commands and automatically fighting in your defense should anyone attempt to harm you. If you are also attuned to and wearing a Headdress of Majesty (see page 146), your charmed subjects have advantage on attack rolls against any creature that attacked you or that cast an obvious spell on you within the last round. The scepter can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scimitar-of-fallen-saints", + "fields": { + "name": "Scimitar of Fallen Saints", + "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scimitar-of-the-desert-winds", + "fields": { + "name": "Scimitar of the Desert Winds", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While holding or carrying this scimitar, you can tolerate temperatures as low as –50 degrees Fahrenheit or as high as 150 degrees Fahrenheit without any additional protection.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scorn-pouch", + "fields": { + "name": "Scorn Pouch", + "desc": "The heart of a lover scorned turns black and potent. Similarly, this small leather pouch darkens from brown to black when a creature hostile to you moves within 10 feet of you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scorpion-feet", + "fields": { + "name": "Scorpion Feet", + "desc": "These thick-soled leather sandals offer comfortable and safe passage across shifting sands. While you wear them, you gain the following benefits:\n- Your speed isn't reduced while in magical or nonmagical difficult terrain made of sand.\n- You have advantage on all ability checks and saving throws against natural hazards where sand is a threatening element.\n- You have immunity to poison damage and advantage on saving throws against being poisoned.\n- You leave no tracks or other traces of your passage through sandy terrain.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scoundrels-gambit", + "fields": { + "name": "Scoundrel's Gambit", + "desc": "This fluted silver tube, barely two inches long, bears tiny runes etched between the grooves. While holding this tube, you can use an action to cast the magic missile spell from it. Once used, the tube can't be used to cast magic missile again until 12 hours have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scourge-of-devotion", + "fields": { + "name": "Scourge of Devotion", + "desc": "This cat o' nine tails is used primarily for self-flagellation, and its tails have barbs of silver woven into them. You gain a +1 bonus to attack and damage rolls made with this magic weapon, and the weapon deals slashing damage instead of bludgeoning damage. You can spend 10 minutes using the scourge in a self-flagellating ritual, which can be done during a short rest. If you do so, your hit point maximum is reduced by 2d8. In addition, you have advantage on Constitution saving throws that you make to maintain your concentration on a spell when you take damage while your hit point maximum is reduced. This hit point maximum reduction can't be removed with the greater restoration spell or similar magic and lasts until you finish a long rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scouts-coat", + "fields": { + "name": "Scout's Coat", + "desc": "This lightweight, woolen coat is typically left naturally colored or dyed in earth tones or darker shades of green. While wearing the coat, you can tolerate temperatures as low as –100 degrees Fahrenheit.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_screaming-skull", + "fields": { + "name": "Screaming Skull", + "desc": "This skull looks like a normal animal or humanoid skull. You can use an action to place the skull on the ground, a table, or other surface and activate it with a command word. The skull's magic triggers when a creature comes within 5 feet of it without speaking that command word. The skull emits a green glow from its eye sockets, shedding dim light in a 15-foot radius, levitates up to 3 feet in the air, and emits a piercing scream for 1 minute that is audible up to 600 feet away. The skull can't be used this way again until the next dawn. The skull has AC 13 and 5 hit points. If destroyed while active, it releases a burst of necromantic energy. Each creature within 5 feet of the skull must succeed on a DC 11 Wisdom saving throw or be frightened until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scrimshaw-comb", + "fields": { + "name": "Scrimshaw Comb", + "desc": "Aside from being carved from bone, this comb is a beautiful example of functional art. It has 3 charges. As an action, you can expend a charge to cast invisibility. Unlike the standard version of this spell, you are invisible only to undead creatures. However, you can attack creatures who are not undead (and thus unaffected by the spell) without ending the effect. Casting a spell breaks the effect as normal. The comb regains 1d3 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scrimshaw-parrot", + "fields": { + "name": "Scrimshaw Parrot", + "desc": "This parrot is carved from bits of whalebone and decorated with bright feathers and tiny jewels. You can use an action to affix the parrot to your shoulder or arm. While the parrot is affixed, you gain the following benefits: - You have advantage on Wisdom (Perception) checks that rely on sight.\n- You can use an action to cast the comprehend languages spell from it at will.\n- You can use an action to speak the command word and activate the parrot. It records up to 2 minutes of sounds within 30 feet of it. You can touch the parrot at any time (no action required), stopping the recording. Commanding the parrot to record new sounds overwrites the previous recording. You can use a bonus action to speak a different command word, and the parrot repeats the sounds it heard. Effects that limit or block sound, such as a closed door or the silence spell, similarly limit or block the sounds the parrot records.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scroll-of-fabrication", + "fields": { + "name": "Scroll of Fabrication", + "desc": "You can draw a picture of any object that is Large or smaller on the face of this blank scroll. When the drawing is complete, it becomes a real, nonmagical, three-dimensional object. Thus, a drawing of a backpack becomes an actual backpack you can use to store and carry items. Any object created by the scroll can be destroyed by the dispel magic spell, by taking it into the area of an antimagic field, or by similar circumstances. Nothing created by the scroll can have a value greater than 25 gp. If you draw an object of greater value, such as a diamond, the object appears authentic, but close inspection reveals it to be made from glass, paste, bone or some other common or worthless material. The object remains for 24 hours or until you dismiss it as a bonus action. The scroll can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scroll-of-treasure-finding", + "fields": { + "name": "Scroll of Treasure Finding", + "desc": "Each scroll of treasure finding works for a specific type of treasure. You can use an action to read the scroll and sense whether that type of treasure is present within 1 mile of you for 1 hour. This scroll reveals the treasure's general direction, but not its specific location or amount. The GM chooses the type of treasure or determines it by rolling a d100 and consulting the following table. | dice: 1d% | Treasure Type |\n| ----------- | ------------- |\n| 01-10 | Copper |\n| 11-20 | Silver |\n| 21-30 | Electrum |\n| 31-40 | Gold |\n| 41-50 | Platinum |\n| 51-75 | Gemstone |\n| 76-80 | Art objects |\n| 81-00 | Magic items |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_scrolls-of-correspondence", + "fields": { + "name": "Scrolls of Correspondence", + "desc": "These vellum scrolls always come in pairs. Anything written on one scroll also appears on the matching scroll, as long as they are both on the same plane of existence. Each scroll can hold up to 75 words at a time. While writing on one scroll, you are aware that the words are appearing on a paired scroll, and you know if no creature bears the paired scroll. The scrolls don't translate words written on them, and the reader and writer must be able to read and write the same language to understanding the writing on the scrolls. While holding one of the scrolls, you can use an action to tap it three times with a quill and speak a command word, causing both scrolls to go blank. If one of the scrolls in the pair is destroyed, the other scroll becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sea-witchs-blade", + "fields": { + "name": "Sea Witch's Blade", + "desc": "This slim, slightly curved blade has a ghostly sheen and a wickedly sharp edge. You can use a bonus action to speak this magic sword's command word (“memory”) and cause the air around the blade to shimmer with a pale, violet glow. This glow sheds bright light in a 20-foot radius and dim light for an additional 20 feet. While the sword is glowing, it deals an extra 2d6 psychic damage to any target it hits. The glow lasts until you use a bonus action to speak the command word again or until you drop or sheathe the sword. When a creature takes psychic damage from the sword, you can choose to have the creature make a DC 15 Wisdom saving throw. On a failure, you take 2d6 psychic damage, and the creature is stunned until the end of its next turn. Once used, this feature of the sword shouldn't be used again until the next dawn. Each time it is used before then, the psychic damage you take increases by 2d6.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_searing-whip", + "fields": { + "name": "Searing Whip", + "desc": "Inspired by the searing breath weapon of a light drake (see Tome of Beasts 2), this whip seems to have filaments of light interwoven within its strands. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with this weapon, the creature takes an extra 1d4 radiant damage. When you roll a 20 on an attack roll made with this weapon, the target is blinded until the end of its next turn. The whip has 3 charges, and it regains 1d3 expended charges daily at dawn or when exposed to a daylight spell for 1 minute. While wielding the whip, you can use an action to expend 1 of its charges to transform the whip into a searing beam of light. Choose one creature you can see within 30 feet of you and make one attack roll with this whip against that creature. If the attack hits, that creature and each creature in a line that is 5 feet wide between you and the target takes damage as if hit by this whip. All of this damage is radiant. If the target is undead, you have advantage on the attack roll.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_second-wind", + "fields": { + "name": "Second Wind", + "desc": "This plain, copper band holds a clear, spherical crystal. When you run out of breath or are choking, you can use a reaction to activate the ring. The crystal shatters and air fills your lungs, allowing you to continue to hold your breath for a number of minutes equal to 1 + your Constitution modifier (minimum 30 seconds). A shattered crystal magically reforms at the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_seelie-staff", + "fields": { + "name": "Seelie Staff", + "desc": "This white ash staff is decorated with gold and tipped with an uncut crystal of blue quartz. This staff can be wielded as a magic quarterstaff. While holding the staff, you have advantage on Charisma checks made to influence or interact socially with fey creatures. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a shower of fragrant flower petals, which blow away in a sudden wind. Rebuke Fey. When you hit a fey creature with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 radiant damage to the target. If the fey has an evil alignment, the extra damage increases to 4d6, and the target must succeed on a DC 15 Wisdom saving throw or be frightened of you until the start of your next turn. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), conjure woodland beings (4 charges), disguise self (1 charge), pass without trace (2 charges), or tree stride (5 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_selkets-bracer", + "fields": { + "name": "Selket's Bracer", + "desc": "This bronze bracer is crafted in the shape of a scorpion, its legs curled around your wrist, tail raised and ready to strike. While wearing this bracer, you are immune to the poisoned condition. The bracer has 4 charges and regains 1d4 charges daily at dawn. You can expend 1 charge as a bonus action to gain tremorsense out to a range of 30 feet for 1 minute. In addition, you can expend 2 charges as a bonus action to coat a weapon you touch with venom. The poison remains for 1 minute or until an attack using the weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or be poisoned until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_seneschals-gloves", + "fields": { + "name": "Seneschal's Gloves", + "desc": "These white gloves have elegant tailoring and size themselves perfectly to fit your hands. The gloves must be attuned to a specific, habitable place with walls, a roof, and doors before you can attune to them. To attune the gloves to a location, you must leave the gloves in the location for 24 hours. Once the gloves are attuned to a location, you can attune to them. While you wear the gloves, you can unlock any nonmagical lock within the attuned location by touching the lock, and any mundane portal you open in the location while wearing these gloves opens silently. As an action, you can snap your fingers and every nonmagical portal within 30 feet of you immediately closes and locks (if possible) as long as it is unobstructed. (Obstructed portals remain open.) Once used, this property of the gloves can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sentinel-portrait", + "fields": { + "name": "Sentinel Portrait", + "desc": "This painting appears to be a well-rendered piece of scenery, devoid of subjects. You can spend 5 feet of movement to step into the painting. The painting then appears to be a portrait of you, against whatever background was already present. While in the painting, you are immobile unless you use a bonus action to exit the painting. Your senses still function, and you can use them as if you were in the portrait's space. You remain unharmed if the painting is damaged, but if it is destroyed, you are immediately shunted into the nearest unoccupied space.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_serpent-staff", + "fields": { + "name": "Serpent Staff", + "desc": "Fashioned from twisted ash wood, this staff 's head is carved in the likeness of a serpent preparing to strike. You have resistance to poison damage while you hold this staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the carved snake head twists and magically consumes the rest of the staff, destroying it. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: cloudkill (5 charges), detect poison and disease (1 charge), poisoned volley* (2 charges), or protection from poison (2 charges). You can also use an action to cast the poison spray spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Serpent Form. While holding the staff, you can use an action cast polymorph on yourself, transforming into a serpent or snake that has a challenge rating of 2 or lower. While you are in the form of a serpent, you retain your Intelligence, Wisdom, and Charisma scores. You can remain in serpent form for up to 1 minute, and you can revert to your normal form as an action. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_serpentine-bracers", + "fields": { + "name": "Serpentine Bracers", + "desc": "These bracers are a pair of golden snakes with ruby eyes, which coil around your wrist and forearm. While wearing both bracers, you gain a +1 bonus to AC if you are wearing no armor and using no shield. You can use an action to speak the bracers' command word and drop them on the ground in two unoccupied spaces within 10 feet of you. The bracers become two constrictor snakes under your control and act on their own initiative counts. By using a bonus action to speak the command word again, you return a bracer to its normal form in a space formerly occupied by the snake. On your turn, you can mentally command each snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snakes take and where they move during their next turns, or you can issue them a general command, such as attack your enemies or guard a location. If a snake is reduced to 0 hit points, it dies, reverts to its bracer form, and can't be commanded to become a snake again until 2 days have passed. If a snake reverts to bracer form before losing all its hit points, it regains all of them and can't be commanded to become a snake again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_serpents-scales", + "fields": { + "name": "Serpent's Scales", + "desc": "While wearing this armor made from the skin of a giant snake, you gain a +1 bonus to AC, and you have resistance to poison damage. While wearing the armor, you can use an action to cast polymorph on yourself, transforming into a giant poisonous snake. While you are in the form of a snake, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_serpents-tooth", + "fields": { + "name": "Serpent's Tooth", + "desc": "When you hit with an attack using this magic spear, the target takes an extra 1d6 poison damage. In addition, while you hold the spear, you have advantage on Dexterity (Acrobatics) checks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_shadow-tome", + "fields": { + "name": "Shadow Tome", + "desc": "This unassuming book possesses powerful illusory magics. When you write on its pages while attuned to it, you can choose for the contents to appear to be something else entirely. A shadow tome used as a spellbook could be made to look like a cookbook, for example. To read the true text, you must speak a command word. A second speaking of the word hides the true text once more. A true seeing spell can see past the shadow tome’s magic and reveals the true text to the reader. Most shadow tomes already contain text, and it is rare to find one filled with blank pages. When you first attune to the book, you can choose to keep or remove the book’s previous contents.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_shadowhounds-muzzle", + "fields": { + "name": "Shadowhound's Muzzle", + "desc": "This black leather muzzle seems to absorb light. As an action, you can place this muzzle around the snout of a grappled, unconscious, or willing canine with an Intelligence of 3 or lower, such as a mastiff or wolf. The canine transforms into a shadowy version of itself for 1 hour. It uses the statistics of a shadow, except it retains its size. It has its own turns and acts on its own initiative. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to it, it defends itself from hostile creatures, but otherwise takes no actions. If the shadow canine is reduced to 0 hit points, the canine reverts to its original form, and the muzzle is destroyed. At the end of the duration or if you remove the muzzle (by stroking the canine's snout), the canine reverts to its original form, and the muzzle remains intact. If you become unattuned to this item while the muzzle is on a canine, its transformation becomes permanent, and the creature becomes independent with a will of its own. Once used, the muzzle can't be used to transform a canine again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_shark-tooth-crown", + "fields": { + "name": "Shark Tooth Crown", + "desc": "Shark's teeth of varying sizes adorn this simple leather headband. The teeth pile one atop the other in a jumble of sharp points and flat sides. Three particularly large teeth are stained with crimson dye. The teeth move slightly of their own accord when you are within 1 mile of a large body of saltwater. The effect is one of snapping and clacking, producing a sound not unlike a crab's claw. While wearing this headband, you have advantage on Wisdom (Survival) checks to find your way when in a large body of saltwater or pilot a vessel on a large body of saltwater. In addition, you can use a bonus action to cast the command spell (save DC 15) from the crown. If the target is a beast with an Intelligence of 3 or lower that can breathe water, it automatically fails the saving throw. The headband can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sharkskin-vest", + "fields": { + "name": "Sharkskin Vest", + "desc": "While wearing this armor, you gain a +1 bonus to AC, and you have advantage on Strength (Athletics) checks made to swim. While wearing this armor underwater, you can use an action to cast polymorph on yourself, transforming into a reef shark. While you are in the form of the reef shark, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sheeshah-of-revelations", + "fields": { + "name": "Sheeshah of Revelations", + "desc": "This finely crafted water pipe is made from silver and glass. Its vase is etched with arcane symbols. When you spend 1 minute using the sheeshah to smoke normal or flavored tobacco, you enter a dreamlike state and are granted a cryptic or surreal vision giving you insight into your current quest or a significant event in your near future. This effect works like the divination spell. Once used, you can't use the sheeshah in this way again until 7 days have passed or until the events hinted at in your vision have come to pass, whichever happens first.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_shepherds-flail", + "fields": { + "name": "Shepherd's Flail", + "desc": "The handle of this simple flail is made of smooth lotus wood. The three threshers are made of carved and painted wooden beads. You gain a + 1 bonus to attack and damage rolls made with this magic weapon. True Authority (Requires Attunement). You must be attuned to a crook of the flock (see page 72) to attune to this weapon. The attunement ends if you are no longer attuned to the crook. While you are attuned to this weapon and holding it, your Charisma score increases by 4 and can exceed 20, but not 30. When you hit a beast with this weapon, the beast takes an extra 3d6 bludgeoning damage. For the purpose of this weapon, “beast” refers to any creature with the beast type. The flail also has 5 charges. When you reduce a humanoid to 0 hit points with an attack from this weapon, you can expend 1 charge. If you do so, the humanoid stabilizes, regains 1 hit point, and is charmed by you for 24 hours. While charmed in this way, the humanoid regards you as its trusted leader, but it otherwise retains its statistics and regains hit points as normal. If harmed by you or your companions, or commanded to do something contrary to its nature, the target ceases to be charmed in this way. The flail regains 1d4 + 1 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_shield-of-gnawing", + "fields": { + "name": "Shield of Gnawing", + "desc": "The wooden rim of this battered oak shield is covered in bite marks. While holding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. In addition, you can use the Shove action as a bonus action while raging.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_shield-of-missile-reversal", + "fields": { + "name": "Shield of Missile Reversal", + "desc": "While wielding this shield, you gain a +1 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. When you would be struck by a ranged attack, you can use a reaction to cause the outer surface of the shield to emit a flash of magical energy, sending the missile hurtling back at your attacker. Make a ranged weapon attack roll against your attacker using the attacker's bonuses on the roll. If the attack hits, roll damage as normal, using the attacker's bonuses.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_shield-of-the-fallen", + "fields": { + "name": "Shield of the Fallen", + "desc": "Your allies can use this shield to move you when you aren't capable of moving. If you are paralyzed, petrified, or unconscious, and a creature lays you on this shield, the shield rises up under you, bearing you and anything you currently wear or carry. The shield then follows the creature that laid you on the shield for up to 1 hour before gently lowering to the ground. This property otherwise works like the floating disk spell. Once used, the shield can't be used this way again for 1d12 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_shifting-shirt", + "fields": { + "name": "Shifting Shirt", + "desc": "This nondescript, smock-like garment changes its appearance on command. While wearing this shirt, you can use a bonus action to speak the shirt's command word and cause it to assume the appearance of a different set of clothing. You decide what it looks like, including color, style, and accessories—from filthy beggar's clothes to glittering court attire. The illusory appearance lasts until you use this property again or remove the shirt.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_shimmer-ring", + "fields": { + "name": "Shimmer Ring", + "desc": "This ring is crafted of silver with an inlay of mother-of-pearl. While wearing the ring, you can use an action to speak a command word and cause the ring to shed white and sparkling bright light in a 20-foot radius and dim light for an additional 20 feet. The light lasts until you use a bonus action to repeat the command word. The ring has 6 charges for the following properties. It regains 1d6 charges daily at dawn. Bestow Shimmer. While wearing the ring, you can use a bonus action to expend 1 of its charges to charge a weapon you wield with silvery energy until the start of your next turn. When you hit with an attack using the charged weapon, the target takes an extra 1d6 radiant damage. Shimmering Aura. While wearing the ring, you can use an action to expend 1 of its charges to surround yourself with a silvery, shimmering aura of light for 1 minute. This bright light extends from you in a 5-foot radius and is sunlight. While you are surrounded in this light, you have resistance to radiant damage. Shimmering Bolt. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a bolt of silvery light and makes its attack roll with a +7 bonus. On a hit, the target takes 2d6 radiant damage for each charge you expend.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_shoes-of-the-shingled-canopy", + "fields": { + "name": "Shoes of the Shingled Canopy", + "desc": "These well-made, black leather shoes have brass buckles shaped like chimneys. While wearing the shoes, you have proficiency in the Acrobatics skill. In addition, while falling, you can use a reaction to cast the feather fall spell by holding your nose. The shoes can't be used this way again until the next dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_shortbow-of-accuracy", + "fields": { + "name": "Shortbow of Accuracy", + "desc": "The normal range of this bow is doubled, but its long range remains the same.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_shortsword-of-fallen-saints", + "fields": { + "name": "Shortsword of Fallen Saints", + "desc": "This enchanted blade is infused with the spirits of fallen warriors who carried it in battle long ago. You gain a +1 bonus to attack and damage rolls made with this magic weapon. If you die while attuned to the sword, you gain the effect of the gentle repose spell. This effect lasts until another creature attunes to the sword.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_shrutinandan-sitar", + "fields": { + "name": "Shrutinandan Sitar", + "desc": "An exquisite masterpiece of craftsmanship, this instrument is named for a prestigious musical academy. You must be proficient with stringed instruments to use this instrument. A creature that plays the instrument without being proficient with stringed instruments must succeed on a DC 17 Wisdom saving throw or take 2d6 psychic damage. The exquisite sounds of this sitar are known to weaken the power of demons. Each creature that can hear you playing this sitar has advantage on saving throws against the spells and special abilities of demons. Spells. You can use an action to play the sitar and cast one of the following spells from it, using your spell save DC and spellcasting ability: create food and water, fly, insect plague, invisibility, levitate, protection from evil and good, or reincarnate. Once the sitar has been used to cast a spell, you can’t use it to cast that spell again until the next dawn. Summon. If you spend 1 minute playing the sitar, you can summon animals to fight by your side. This works like the conjure animals spell, except you can summon only 1 elephant, 1d2 tigers, or 2d4 wolves.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sickle-of-thorns", + "fields": { + "name": "Sickle of Thorns", + "desc": "You gain a +1 bonus to attack and damage rolls made with this weapon. As an action, you can swing the sickle to cut nonmagical vegetation up to 60 feet away from you. Each cut is a separate action with one action equaling one swing of your arm. Thus, you can lead a party through a jungle or briar thicket at a normal pace, simply swinging the sickle back and forth ahead of you to clear the path. It can't be used to cut trunks of saplings larger than 1 inch in diameter. It also can't cut through unliving wood (such as a door or wall). When you hit a plant creature with a melee attack with this weapon, that target takes an extra 1d6 slashing damage. This weapon can make very precise cuts, such as to cut fruit or flowers high up in a tree without damaging the tree.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_siege-arrow", + "fields": { + "name": "Siege Arrow", + "desc": "This magic arrow's tip is enchanted to soften stone and warp wood. When this arrow hits an object or structure, it deals double damage then becomes a nonmagical arrow.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_signaling-ammunition", + "fields": { + "name": "Signaling Ammunition", + "desc": "This magic ammunition creates a trail of light behind it as it flies through the air. If the ammunition flies through the air and doesn't hit a creature, it releases a burst of light that can be seen for up to 1 mile. If the ammunition hits a creature, the creature must succeed on a DC 13 Dexterity saving throw or be outlined in golden light until the end of its next turn. While the creature is outlined in light, it can't benefit from being invisible and any attack against it has advantage if the attacker can see the outlined creature.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_signaling-compass", + "fields": { + "name": "Signaling Compass", + "desc": "The exterior of this clamshell metal case features a polished, mirror-like surface on one side and an ornate filigree on the other. Inside is a magnetic compass. While the case is closed, you can use an action to speak the command word and project a harmless beam of light up to 1 mile. As an action while holding the compass, you can flash a concentrated beam of light at a creature you can see within 60 feet of you. The target must succeed on a DC 13 Constitution saving throw or be blinded for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The compass can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_signet-of-the-magister", + "fields": { + "name": "Signet of the Magister", + "desc": "This heavy, gold ring is set with a round piece of carnelian, which is engraved with the symbol of an eagle perched upon a crown. While wearing the ring, you have advantage on saving throws against enchantment spells and effects. You can use an action to touch the ring to a creature—requiring a melee attack roll unless the creature is willing or incapacitated—and magically brand it with the ring’s crest. When a branded creature harms you, it takes 2d6 psychic damage and must succeed on a DC 15 Wisdom saving throw or be stunned until the end of its next turn. On a success, a creature is immune to this property of the ring for the next 24 hours, but the brand remains until removed. You can remove the brand as an action. The remove curse spell also removes the brand. Once you brand a creature, you can’t brand another creature until the next dawn. Instruments of Law. If you are also attuned to and wearing a Justicar’s mask (see page 149), you can cast the locate creature to detect a branded creature at will from the ring. If you are also attuned to and carrying a rod of the disciplinarian (see page 83), the psychic damage from the brand increases to 3d6 and the save DC increases to 16.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_silver-skeleton-key", + "fields": { + "name": "Silver Skeleton Key", + "desc": "This arcane master key is the prized possession of many an intrepid thief. Several types of skeleton key exist, each type made from a distinct material. Bone (Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 3 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect poison and disease (1 charge), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key crumbles into dust and is destroyed. Copper (Common). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. Crystal (Very Rare). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. The key has 5 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it: arcane lock (2 charges), detect magic (1 charge), dimension door (3 charges), or knock (1 charge). When you cast these spells, they are silent. The key regains 1d3 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the key shatters and is destroyed. Silver (Uncommon). While this key is on your person, you have advantage on ability checks made to disarm traps or open locks. In addition, while holding the key, you can use an action to cast the knock spell. When you cast the spell, it is silent. The key can’t be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_silver-string", + "fields": { + "name": "Silver String", + "desc": "These silver wires magically adjust to fit any stringed instrument, making its sound richer and more melodious. You have advantage on Charisma (Performance) checks made when playing the instrument.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_silvered-oar", + "fields": { + "name": "Silvered Oar", + "desc": "This is a 6-foot-long birch wood oar with leaves and branches carved into its length. The grooves of the carvings are filled with silver, which glows softly when it is outdoors at night. You can activate the oar as an action to have it row a boat unassisted, obeying your mental commands. You can instruct it to row to a destination familiar to you, allowing you to rest while it performs its task. While rowing, it avoids contact with objects on the boat, but it can be grabbed and stopped by anyone at any time. The oar can move a total weight of 2,000 pounds at a speed of 3 miles per hour. It floats back to your hand if the weight of the craft, crew, and carried goods exceeds that weight.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_skalds-harp", + "fields": { + "name": "Skald's Harp", + "desc": "This ornate harp is fashioned from maple and engraved with heroic scenes of warriors battling trolls and dragons inlaid in bone. The harp is strung with fine silver wire and produces a sharp yet sweet sound. You must be proficient with stringed instruments to use this harp. When you play the harp, its music enhances some of your bard class features. Song of Rest. When you play this harp as part of your Song of Rest performance, each creature that spends one or more Hit Dice during the short rest gains 10 temporary hit points at the end of the short rest. The temporary hit points last for 1 hour. Countercharm. When you play this harp as part of your Countercharm performance, you and any friendly creatures within 30 feet of you also have resistance to thunder damage and have advantage on saving throws against being paralyzed. When this property has been used for a total of 10 minutes, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_skipstone", + "fields": { + "name": "Skipstone", + "desc": "This small bark-colored stone measures 3/4 of an inch in diameter and weighs 1 ounce. Typically, 1d4 + 1 skipstones are found together. You can use an action to throw the stone up to 60 feet. The stone crumbles to dust on impact and is destroyed. Each creature within a 5-foot radius of where the stone landed must succeed on a DC 15 Constitution saving throw or be thrown forward in time until the start of your next turn. Each creature disappears, during which time it can't act and is protected from all effects. At the start of your next turn, each creature reappears in the space it previously occupied or the nearest unoccupied space, and it is unaware that any time has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_skullcap-of-deep-wisdom", + "fields": { + "name": "Skullcap of Deep Wisdom", + "desc": "TThis scholar’s cap is covered in bright stitched runes, and the interior is rough, like bark or sharkskin. This cap has 9 charges. It regains 1d8 + 1 expended charges daily at midnight. While wearing it, you can use an action and expend 1 or more of its charges to cast one of the following spells, using your spell save DC or save DC 15, whichever is higher: destructive resonance (2 charges), nether weapon (4 charges), protection from the void (1 charge), or void strike (3 charges). These spells are Void magic spells, which can be found in Deep Magic for 5th Edition. At the GM’s discretion, these spells can be replaced with other spells of similar levels and similarly related to darkness, destruction, or the Void. Dangers of the Void. The first time you cast a spell from the cap each day, your eyes shine with a sickly green light until you finish a long rest. If you spend at least 3 charges from the cap, a trickle of blood also seeps from beneath the cap until you finish a long rest. In addition, each time you cast a spell from the cap, you must succeed on a DC 12 Intelligence saving throw or your Intelligence is reduced by 2 until you finish a long rest. This DC increases by 1 for each charge you spent to cast the spell. Void Calls to Void. When you cast a spell from the cap while within 1 mile of a creature that understands Void Speech, the creature immediately knows your name, location, and general appearance.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_slatelight-ring", + "fields": { + "name": "Slatelight Ring", + "desc": "This decorated thick gold band is adorned with a single polished piece of slate. While wearing this ring, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing this ring increases its range by 60 feet. In addition, you can use an action to cast the faerie fire spell (DC 15) from it. The ring can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sleep-pellet", + "fields": { + "name": "Sleep Pellet", + "desc": "This small brass pellet measures 1/2 of an inch in diameter. Typically, 1d6 + 4 sleep pellets are found together. You can use the pellet as a sling bullet and shoot it at a creature using a sling. On a hit, the pellet is destroyed, and the target must succeed on a DC 13 Constitution saving throw or fall unconscious for 1 minute. Alternatively, you can use an action to swallow the pellet harmlessly. Once before 1 minute has passed, you can use an action to exhale a cloud of sleeping gas in a 15-foot cone. Each creature in the area must succeed on a DC 13 Constitution saving throw or fall unconscious for 1 minute. An unconscious creature awakens if it takes damage or if another creature uses an action to wake it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_slick-cuirass", + "fields": { + "name": "Slick Cuirass", + "desc": "This suit of leather armor has a shiny, greasy look to it. While wearing the armor, you have advantage on ability checks and saving throws made to escape a grapple. In addition, while squeezing through a smaller space, you don't have disadvantage on attack rolls and Dexterity saving throws.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_slimeblade-greatsword", + "fields": { + "name": "Slimeblade Greatsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_slimeblade-longsword", + "fields": { + "name": "Slimeblade Longsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_slimeblade-rapier", + "fields": { + "name": "Slimeblade Rapier", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_slimeblade-scimitar", + "fields": { + "name": "Slimeblade Scimitar", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_slimeblade-shortsword", + "fields": { + "name": "Slimeblade Shortsword", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The blade of the sword is coated in an endless supply of violet-colored slime. Despite the sword's tendency to drip, the slime does not flow over the pommel, regardless of the angle at which it is held. You are immune to the effect of the slime while attuned to this sword. While holding this sword, you can communicate telepathically with ooze creatures, and you have advantage on Charisma (Deception, Intimidation, and Persuasion) checks against ooze creatures. In addition, you can use an action to fling some of the sword's slime at a creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d4 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. The sword can't be used this way again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sling-stone-of-screeching", + "fields": { + "name": "Sling Stone of Screeching", + "desc": "This sling stone is carved with an open mouth that screams in hellish torment when hurled with a sling. Typically, 1d4 + 1 sling stones of screeching are found together. When you fire the stone from a sling, it changes into a screaming bolt, forming a line 5 feet wide that extends out from you to a target within 30 feet. Each creature in the line excluding you and the target must make a DC 13 Constitution saving throw. On a failure, a creature takes 2d8 thunder damage and is knocked prone. On a success, a creature takes half the damage and isn't knocked prone. Make a ranged weapon attack against the target. On a hit, the target takes damage from the sling stone plus 3d8 thunder damage and is knocked prone. Once a sling stone of screeching has dealt its damage to a creature, it becomes a nonmagical sling stone.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_slippers-of-the-cat", + "fields": { + "name": "Slippers of the Cat", + "desc": "While you wear these fine, black cloth slippers, you have advantage on Dexterity (Acrobatics) checks to keep your balance. When you fall while wearing these slippers, you land on your feet, and if you succeed on a DC 13 Dexterity saving throw, you take only half the falling damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_slipshod-hammer", + "fields": { + "name": "Slipshod Hammer", + "desc": "This large smith's hammer appears well-used and rough in make and maintenance. If you use this hammer as part of a set of smith's tools, you can repair metal items in half the time, but the appearance of the item is always sloppy and haphazard. When you roll a 20 on an attack roll made with this magic weapon against a target wearing metal armor, the target's armor is partly damaged and takes a permanent and cumulative –2 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sloughide-bombard", + "fields": { + "name": "Sloughide Bombard", + "desc": "These brass and crystal cylinders are 6 inches long with 1-inch diameters. Each cylinder has a funnel on one end and a wooden plunger on the other end. You can use an action to quickly press the plunger, expelling the cylinder’s contents out through the funnel in a 30-foot line that is 5 feet wide. Once its contents are expelled, a cylinder is destroyed, and there is a 25 percent chance you are also subjected to the bombard’s effects as if you were caught in the line. Mindshatter Bombard (Rare). A vermilion solution sloshes and boils inside this canister. Each creature in the line of this substance must make a DC 15 Wisdom saving throw. On a failure, a creature takes 3d6 psychic damage and is incapacitated for 1 minute. On a success, a creature takes half the damage and isn’t incapacitated. An incapacitated creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Murderous Bombard (Uncommon). A gruesome crimson slurry sloshes inside this canister with strange bits of ivory floating in it. Each creature in the line of this substance must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. While overcome with rage, the creature can’t distinguish friend from foe and must attack the nearest creature. If no other creature is near enough to move to and attack, the creature stalks off in a random direction, seeking a target for its rage. A creature overcome with rage can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Sloughide Bombard (Very Rare). A clear, gelatinous substance fills this canister. Each creature in the line of this substance must make a DC 17 Constitution saving throw. On a failure, a creature takes 6d6 acid damage and is paralyzed for 1 minute. On a success, a creature takes half the damage and isn’t paralyzed. While paralyzed, the creature takes 2d6 acid damage at the start of each of its turns. A paralyzed creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_smoking-plate-of-heithmir", + "fields": { + "name": "Smoking Plate of Heithmir", + "desc": "This armor is soot-colored plate with grim dwarf visages on the pauldrons. The pauldrons emit curling smoke and are warm to the touch. You gain a +3 bonus to AC and are resistant to cold damage while wearing this armor. In addition, when you are struck by an attack while wearing this armor, you can use a reaction to fill a 30-foot cone in front of you with dense smoke. The smoke spreads around corners, and its area is heavily obscured. Each creature in the smoke when it appears and each creature that ends its turn in the smoke must succeed on a DC 17 Constitution saving throw or be poisoned for 1 minute. A wind of at least 20 miles per hour disperses the smoke. Otherwise, the smoke lasts for 5 minutes. Once used, this property of the armor can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_smugglers-bag", + "fields": { + "name": "Smuggler's Bag", + "desc": "This leather-bottomed, draw-string canvas bag appears to be a sturdy version of a common sack. If you use an action to speak the command word while holding the bag, all the contents within shift into an extradimensional space, leaving the bag empty. The bag can then be filled with other items. If you speak the command word again, the bag's current contents transfer into the extradimensional space, and the items in the extradimensional space transfer to the bag. The extradimensional space and the bag itself can each hold up to 1 cubic foot of items or 30 pounds of gear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_smugglers-coat", + "fields": { + "name": "Smuggler's Coat", + "desc": "When you attune yourself to this coat, it conforms to you in a color and style of your choice. It has no visible pockets, but they appear if you place your hands against the side of the coat and expect pockets. Once your hand is withdrawn, the pockets vanish and take anything placed in them to an extradimensional space. The coat can hold up to 40 pounds of material in up to 10 different extradimensional pockets. Nothing can be placed inside the coat that won't fit in a pocket. Retrieving an item from a pocket requires you to use an action. When you reach into the coat for a specific item, the correct pocket always appears with the desired item magically on top. As a bonus action, you can force the pockets to become visible on the coat. While you maintain concentration, the coat displays its four outer pockets, two on each side, four inner pockets, and two pockets on each sleeve. While the pockets are visible, any creature you allow can store or retrieve an item as an action. If the coat is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. Placing the coat inside an extradimensional space, such as a bag of holding, instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_snake-basket", + "fields": { + "name": "Snake Basket", + "desc": "The bowl of this simple, woven basket has hig-sloped sides, making it almost spherical. A matching woven lid sits on top of it, and leather straps secure the lid through loops on the base. The basket can hold up to 10 pounds. As an action, you can speak the command word and remove the lid to summon a swarm of poisonous snakes. You can't summon the snakes if items are in the basket. The snakes return to the basket, vanishing, after 1 minute or when the swarm is reduced to 0 hit points. If the basket is unavailable or otherwise destroyed, the snakes instead dissipate into a fine sand. The swarm is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the swarm moves and what action it takes on its next turn, or give it general orders, such as to attack your enemies. In the absence of such orders, the swarm acts in a fashion appropriate to its nature. Once the basket has been used to summon a swarm of poisonous snakes, it can't be used in this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_soldras-staff", + "fields": { + "name": "Soldra's Staff", + "desc": "Crafted by a skilled wizard and meant to be a spellcaster's last defense, this staff is 5 feet long, made of yew wood that curves at its top, is iron shod at its mid-section, and capped with a silver dragon's claw that holds a lustrous, though rough and uneven, black pearl. When you make an attack with this staff, it howls and whistles hauntingly like the wind. When you cast a spell from this staff, it chirps like insects on a hot summer night. This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. It has 3 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: faerie fire (1 charge) or gust of wind (2 charges). The staff regains 1d3 expended charges daily at dawn. Once daily, it can regain 1 expended charge by exposing the staff 's pearl to moonlight for 1 minute.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_song-saddle-of-the-khan", + "fields": { + "name": "Song-Saddle of the Khan", + "desc": "Made from enchanted leather and decorated with songs lyrics written in calligraphy, this well-crafted saddle is enchanted with the impossible speed of a great horseman. While this saddle is attached to a horse, that horse's speed is increased by 10 feet. In addition, the horse can Disengage as a bonus action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_soul-bond-chalice", + "fields": { + "name": "Soul Bond Chalice", + "desc": "The broad, shallow bowl of this silver chalice rests in the outstretched wings of the raven figure that serves as the chalice's stem. The raven's talons, perched on a branch, serve as the chalice's base. A pair of interlocking gold rings adorn the sides of the bowl. As a 1-minute ritual, you and another creature that isn't a construct or undead and that has an Intelligence of 6 or higher can fill the chalice with wine and mix in three drops of blood from each of you. You and the other participant can then drink from the chalice, mingling your spirits and creating a magical connection between you. This connection is unaffected by distance, though it ceases to function if you aren't on the same plane of existence. The bond lasts until one or both of you end it of your own free will (no action required), one or both of you use the chalice to bond with another creature, or one of you dies. You and your bonded partner each gain the following benefits: - You are proficient in each saving throw that your bonded partner is proficient in.\n- If you are within 5 feet of your bonded partner and you fail a saving throw, your bonded partner can make the saving throw as well. If your bonded partner succeeds, you can choose to succeed on the saving throw that you failed.\n- You can use a bonus action to concentrate on the magical bond between you to determine your bonded partner's status. You become aware of the direction and distance to your bonded partner, whether they are unharmed or wounded, any conditions that may be currently affecting them, and whether or not they are afflicted with an addiction, curse, or disease. If you can see your bonded partner, you automatically know this information just by looking at them.\n- If your bonded partner is wounded, you can use a bonus action to take 4d8 slashing damage, healing your bonded partner for the same amount. If your bonded partner is reduced to 0 hit points, you can do this as a reaction.\n- If you are under the effects of a spell that has a duration but doesn't require concentration, you can use an action to touch your bonded partner to share the effects of the spell with them, splitting the remaining duration (rounded down) between you. For example, if you are affected by the mage armor spell and it has 4 hours remaining, you can use an action to touch your bonded partner to give them the benefits of the mage armor spell, reducing the duration to 2 hours on each of you.\n- If your bonded partner dies, you must make a DC 15 Constitution saving throw. On a failure, you drop to 0 hit points. On a success, you are stunned until the end of your next turn by the shock of the bond suddenly being broken. Once the chalice has been used to bond two creatures, it can't be used again until 7 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_soul-jug", + "fields": { + "name": "Soul Jug", + "desc": "If you unstopper the jug, your soul enters it. This works like the magic jar spell, except it has a duration of 9 hours and the jug acts as the gem. The jug must remain unstoppered for you to move your soul to a nearby body, back to the jug, or back to your own body. Possessing a target is an action, and your target can foil the attempt by succeeding on a DC 17 Charisma saving throw. Only one soul can be in the jug at a time. If a soul is in the jug when the duration ends, the jug shatters.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_spear-of-the-north", + "fields": { + "name": "Spear of the North", + "desc": "This spear has an ivory haft, and tiny snowflakes occasionally fall from its tip. You gain a +2 bonus to attack and damage rolls made with this magic weapon. When you hit with an attack using this magic spear, the target takes an extra 1d6 cold damage. You can use an action to transform the spear into a pair of snow skis. While wearing the snow skis, you have a walking speed of 40 feet when you walk across snow or ice, and you can walk across icy surfaces without needing to make an ability check. You can use a bonus action to transform the skis back into the spear. While the spear is transformed into a pair of skis, you can't make attacks with it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_spear-of-the-stilled-heart", + "fields": { + "name": "Spear of the Stilled Heart", + "desc": "This rowan wood spear has a thick knot in the center of the haft that uncannily resembles a petrified human heart. When you hit with an attack using this magic spear, the target takes an extra 1d6 necrotic damage. The spear has 3 charges, and it regains all expended charges daily at dusk. When you hit a creature with an attack using it, you can expend 1 charge to deal an extra 3d6 necrotic damage to the target. You regain hit points equal to the necrotic damage dealt.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_spear-of-the-western-whale", + "fields": { + "name": "Spear of the Western Whale", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. Fashioned in the style of a whaling spear, this long, barbed weapon is made from bone and heavy, yet pliant, ash wood. Its point is lined with decorative engravings of fish, clam shells, and waves. While you carry this spear, you have advantage on any Wisdom (Survival) checks to acquire food via fishing, and you have advantage on all Strength (Athletics) checks to swim. When set on the ground, the spear always spins to point west. When thrown in a westerly direction, the spear deals an extra 2d6 cold damage to the target.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_spearbiter", + "fields": { + "name": "Spearbiter", + "desc": "The front of this shield is fashioned in the shape of a snarling wolf ’s head. Spearbiter (Uncommon). When a creature you can see within 5 feet of you makes a melee weapon attack against you, you can use a reaction to attack the attacker’s weapon, the wolf ’s head animating and snapping its jaws at the weapon. Make a melee weapon attack with the shield. You have proficiency with this attack if you are proficient with shields. If the result is higher than the attacker’s attack roll against you, the attacker’s attack misses you. You can’t use this property of the shield again until the next dawn. Adamantine Spearbiter (Rare). A more powerful version of this shield exists. Its wolf ’s head is fitted with adamantine fangs and appears larger and more menacing. When you use your reaction and animate the wolf ’s head to snap at the attacker’s weapon, you have advantage on the attack roll. In addition, there is no longer a limit to the number of times you can use this property of the shield.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_spectral-blade", + "fields": { + "name": "Spectral Blade", + "desc": "This blade seems to flicker in and out of existence but always strikes true. You gain a +1 bonus to attack and damage rolls made with this magic weapon, and you can choose for its attacks to deal force damage instead of piercing damage. As an action while holding this sword or as a reaction when you deal damage to a creature with it, you can turn incorporeal until the start of your next turn. While incorporeal, you can move through other creatures and objects as if they were difficult terrain. You take 1d10 force damage if you end your turn inside an object.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_spell-disruptor-horn", + "fields": { + "name": "Spell Disruptor Horn", + "desc": "This horn is carved with images of a Spellhound (see Tome of Beasts 2) and invokes the antimagic properties of the hound's howl. You use an action to blow this horn, which emits a high-pitched, multiphonic sound that disrupts all magical effects within 30 feet of you. Any spell of 3rd level or lower in the area ends. For each spell of 4th-level or higher in the area, the horn makes a check with a +3 bonus. The DC equals 10 + the spell's level. On a success, the spell ends. In addition, each spellcaster within 30 feet of you and that can hear the horn must succeed on a DC 15 Constitution saving throw or be stunned until the end of its next turn. Once used, the horn can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_spice-box-of-zest", + "fields": { + "name": "Spice Box of Zest", + "desc": "This small, square wooden box is carved with scenes of life in a busy city. Inside, the box is divided into six compartments, each holding a different magical spice. A small wooden spoon is also stored inside the box for measuring. A spice box of zest contains six spoonfuls of each spice when full. You can add one spoonful of a single spice per person to a meal that you or someone else is cooking. The magic of the spices is nullified if you add two or more spices together. If a creature consumes a meal cooked with a spice, it gains a benefit based on the spice used in the meal. The effects last for 1 hour unless otherwise noted.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_spice-box-spoon", + "fields": { + "name": "Spice Box Spoon", + "desc": "This lacquered wooden spoon carries an entire cupboard within its smooth contours. When you swirl this spoon in any edible mixture, such as a drink, stew, porridge, or other dish, it exudes a flavorful aroma and infuses the mixture. This culinary wonder mimics any imagined variation of simple seasonings, from salt and pepper to aromatic herbs and spice blends. These flavors persist for 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_spider-grenade", + "fields": { + "name": "Spider Grenade", + "desc": "Silver runes decorate the hairy legs and plump abdomen of this fist-sized preserved spider. You can use an action to throw the spider up to 30 feet. It explodes on impact and is destroyed. Each creature within a 20-foot radius of where the spider landed must succeed on a DC 13 Dexterity saving throw or be restrained by sticky webbing. A creature restrained by the webs can use its action to make a DC 13 Strength check. If it succeeds, it is no longer restrained. In addition, the webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire. The webs also naturally unravel after 1 hour.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_spider-staff", + "fields": { + "name": "Spider Staff", + "desc": "Delicate web-like designs are carved into the wood of this twisted staff, which is often topped with the carved likeness of a spider. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of spiders appears and consumes the staff then vanishes. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: giant insect (4 charges), spider climb (2 charges), or web (2 charges). Spider Swarm. While holding the staff, you can use an action and expend 1 charge to cause a swarm of spiders to appear in a space that you can see within 60 feet of you. The swarm is friendly to you and your companions but otherwise acts on its own. The swarm of spiders remains for 1 minute, until you dismiss it as an action, or until you move more than 100 feet away from it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_splint-of-warding-1", + "fields": { + "name": "Splint of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_splint-of-warding-2", + "fields": { + "name": "Splint of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_splint-of-warding-3", + "fields": { + "name": "Splint of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_splinter-staff", + "fields": { + "name": "Splinter Staff", + "desc": "This roughly made staff has cracked and splintered ends and can be wielded as a magic quarterstaff. When you roll a 20 on an attack roll made with this weapon, you embed a splinter in the target's body, and the pain and discomfort of the splinter is distracting. While the splinter remains embedded, the target has disadvantage on Dexterity, Intelligence, and Wisdom checks, and, if it is concentrating on a spell, it must succeed on a DC 10 Constitution saving throw at the start of each of its turns to maintain concentration on the spell. A creature, including the target, can take its action to remove the splinter by succeeding on a DC 13 Wisdom (Medicine) check.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_spyglass-of-summoning", + "fields": { + "name": "Spyglass of Summoning", + "desc": "Arcane runes encircle this polished brass spyglass. You can view creatures and objects as far as 600 feet away through the spyglass, and they are magnified to twice their size. You can magnify your view of a creature or object to up to four times its size by twisting the end of the spyglass.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-binding", + "fields": { + "name": "Staff of Binding", + "desc": "Made from stout oak with steel bands and bits of chain running its entire length, the staff feels oddly heavy. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff constricts in upon itself and is destroyed. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: arcane lock (2 charges), hold monster (5 charges), hold person (2 charges), lock armor* (2 charges), or planar binding (5 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Unbound. While holding the staff, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-camazotz", + "fields": { + "name": "Staff of Camazotz", + "desc": "This staff of petrified wood is topped with a stylized carving of a bat with spread wings, a mouth baring great fangs, and a pair of ruby eyes. It has 10 charges and regains 1d6 + 4 charges daily at dawn. As long as the staff holds at least 1 charge, you can communicate with bats as if you shared a language. Bat and bat-like beasts and monstrosities never attack you unless magically forced to do so or unless you attack them first. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: darkness (2 charges), dominate monster (8 charges), or flame strike (5 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-channeling", + "fields": { + "name": "Staff of Channeling", + "desc": "This plain, wooden staff has 5 charges and regains 1d4 + 1 expended charges daily at dawn. When you cast a spell while holding this staff, you can expend 1 or more of its charges as part of the casting to increase the level of the spell. Expending 1 charge increases the spell's level by 1, expending 3 charges increases the spell's level by 2, and expending 5 charges increases the spell's level by 3. When you increase a spell's level using the staff, the spell casts as if you used a spell slot of a higher level, but you don't expend that higher-level spell slot. You can't use the magic of this staff to increase a spell to a slot level higher than the highest spell level you can cast. For example, if you are a 7th-level wizard, and you cast magic missile, expending a 2nd-level spell slot, you can expend 3 of the staff 's charges to cast the spell as a 4th-level spell, but you can't expend 5 of the staff 's charges to cast the spell as a 5th-level spell since you can't cast 5th-level spells.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-desolation", + "fields": { + "name": "Staff of Desolation", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. When you hit an object or structure with a melee attack using the staff, you deal double damage (triple damage on a critical hit). The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: thunderwave (1 charge), shatter (2 charges), circle of death (6 charges), disintegrate (6 charges), or earthquake (8 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-dissolution", + "fields": { + "name": "Staff of Dissolution", + "desc": "A gray crystal floats in the crook of this twisted staff. The crystal breaks into fragments as it slowly revolves, and those fragments break into smaller pieces then into clouds of dust. In spite of this, the crystal never seems to reduce in size. You have resistance to necrotic damage while you hold this staff. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: blight (4 charges), disintegrate (6 charges), or shatter (2 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-fate", + "fields": { + "name": "Staff of Fate", + "desc": "One half of this staff is crafted of white ash and capped in gold, while the other is ebony and capped in silver. The staff has 10 charges for the following properties. It regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff splits into two halves with a resounding crack and becomes nonmagical. Fortune. While holding the staff, you can use an action to expend 1 of its charges and touch a creature with the gold end of the staff, giving it good fortune. The target can choose to use its good fortune and have advantage on one ability check, attack roll, or saving throw. This effect ends after the target has used the good fortune three times or when 24 hours have passed. Misfortune. While holding the staff, you can use an action to touch a creature with the silver end of the staff. The target must succeed on a DC 15 Wisdom saving throw or have disadvantage on one of the following (your choice): ability checks, attack rolls, or saving throws. If the target fails the saving throw, the staff regains 1 expended charge. This effect lasts until removed by the remove curse spell or until you use an action to expend 1 of its charges and touch the creature with the gold end of the staff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: augury (2 charges), bane (1 charge), bless (1 charge), remove curse (3 charges), or divination (4 charges). You can also use an action to cast the guidance spell from the staff without using any charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-feathers", + "fields": { + "name": "Staff of Feathers", + "desc": "Several eagle feathers line the top of this long, thin staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff explodes into a mass of eagle feathers and is destroyed. Feather Travel. When you are targeted by a ranged attack while holding the staff, you can use a reaction to teleport up to 10 feet to an unoccupied space that you can see. When you do, you briefly transform into a mass of feathers, and the attack misses. Once used, this property can’t be used again until the next dawn. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: conjure animals (2 giant eagles only, 3 charges), fly (3 charges), or gust of wind (2 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-giantkin", + "fields": { + "name": "Staff of Giantkin", + "desc": "This stout, oaken staff is 7 feet long, bound in iron, and topped with a carving of a broad, thick-fingered hand. While holding this magic quarterstaff, your Strength score is 20. This has no effect on you if your Strength is already 20 or higher. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the hand slowly clenches into a fist, and the staff becomes a nonmagical quarterstaff.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-ice-and-fire", + "fields": { + "name": "Staff of Ice and Fire", + "desc": "Made from the branch of a white ash tree, this staff holds a sapphire at one end and a ruby at the other. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: flaming sphere (2 charges), freezing sphere (6 charges), sleet storm (3 charges), or wall of fire (4 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff and its gems crumble into ash and snow and are destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-master-lu-po", + "fields": { + "name": "Staff of Master Lu Po", + "desc": "This plain-looking, wooden staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 12 charges and regains 1d6 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +1 bonus to attack and damage rolls, loses all other properties, and the next time you roll a 20 on an attack roll using the staff, it explodes, dealing an extra 6d6 force damage to the target then is destroyed. On a 20, the staff regains 1d10 + 2 charges. Some of the staff ’s properties require the target to make a saving throw to resist or lessen the property’s effects. The saving throw DC is equal to 8 + your proficiency bonus + your Wisdom modifier. Bamboo in the Rainy Season. While holding the staff, you can use a bonus action to expend 1 charge to grant the staff the reach property until the start of your next turn. Gate to the Hell of Being Roasted Alive. While holding the staff, you can use an action to expend 1 charge to cast the scorching ray spell from it. When you make the spell’s attacks, you use your Wisdom modifier as your spellcasting ability. Iron Whirlwind. While holding the staff, you use an action to expend 2 charges, causing weighted chains to extend from the end of the staff and reducing your speed to 0 until the end of your next turn. As part of the same action, you can make one attack with the staff against each creature within your reach. If you roll a 1 on any attack, you must immediately make an attack roll against yourself as well before resolving any other attacks against opponents. Monkey Steals the Peach. While holding the staff, you can use a bonus action to expend 1 charge to extend sharp, grabbing prongs from the end of the staff. Until the start of your next turn, each time you hit a creature with the staff, the target takes piercing damage instead of the bludgeoning damage normal for the staff, and the target must make a DC 15 Constitution saving throw. On a failure, the target is incapacitated until the end of its next turn as it suffers crippling pain. On a success, the target has disadvantage on its next attack roll. Rebuke the Disobedient Child. When you are hit by a creature you can see within your reach while holding this staff, you can use a reaction to expend 1 charge to make an attack with the staff against the attacker. Seven Vengeful Demons Death Strike. While holding the staff, you can use an action to expend 7 charges and make one attack against a target within 5 feet of you with the staff. If the attack hits, the target takes bludgeoning damage as normal, and it must make a Constitution saving throw, taking 7d8 necrotic damage on a failed save, or half as much damage on a successful one. If the target dies from this damage, the staff ceases to function as anything other than a magic quarterstaff until the next dawn, but it regains all expended charges when its powers return. A humanoid killed by this damage rises at the start of your next turn as a zombie that is permanently under your command, following your verbal orders to the best of its ability. Swamp Hag's Deadly Breath. While holding the staff, you can use an action to expend 2 charges to expel a 15-foot cone of poisonous gas out of the end of the staff. Each creature in the area must make a Constitution saving throw. On a failure, a creature takes 4d6 poison damage and is poisoned for 1 hour. On a success, a creature takes half the damage and isn’t poisoned. Vaulting Leap of the Clouds. If you are holding the staff and it has at least 1 charge, you can cast the jump spell from it as a bonus action at will without using any charges, but you can target only yourself when you do so.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-midnight", + "fields": { + "name": "Staff of Midnight", + "desc": "Fashioned from a single branch of polished ebony, this sturdy staff is topped by a lustrous jet. While holding it and in dim light or darkness, you gain a +1 bonus to AC and saving throws. This staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: circle of death (6 charges), darkness (2 charges), or vampiric touch (3 charges). You can also use an action to cast the chill touch cantrip from the staff without using any charges. The staff regains 1d6 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dark powder and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-minor-curses", + "fields": { + "name": "Staff of Minor Curses", + "desc": "This twisted, wooden staff has 10 charges. While holding it, you can use an action to inflict a minor curse on a creature you can see within 30 feet of you. The target must succeed on a DC 10 Constitution saving throw or be affected by the chosen curse. A minor curse causes a non-debilitating effect or change in the creature, such as an outbreak of boils on one section of the target's skin, intermittent hiccupping, transforming the target's ears into small, donkey-like ears, or similar effects. The curse never interrupts spellcasting and never causes disadvantage on ability checks, attack rolls, or saving throws. The curse lasts for 24 hours or until removed by the remove curse spell or similar magic. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a cloud of noxious gas, and you are targeted with a minor curse of the GM's choice.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-parzelon", + "fields": { + "name": "Staff of Parzelon", + "desc": "This tarnished silver staff is tipped with the unholy visage of a fiendish lion skull carved from labradorite—a likeness of the Arch-Devil Parzelon (see Creature Codex). The staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), dominate person (5 charges), lightning bolt (3 charges), locate creature (4 charges), locate object (2 charges), magic missile (1 charge), scrying (5 charges), or suggestion (2 charges). You can also use an action to cast one of the following spells from the staff without using any charges: comprehend languages, detect evil and good, detect magic, identify, or message. Extract Ageless Knowledge. As an action, you can touch the head of the staff to a corpse. You must form a question in your mind as part of this action. If the corpse has an answer to your question, it reveals the information to you. The answer is always brief—no more than one sentence—and very specific to the framed question. The corpse doesn’t need a mouth to answer; you receive the information telepathically. The corpse knows only what it knew in life, and it is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This property doesn’t return the creature’s soul to its body, only its animating spirit. Thus, the corpse can’t learn new information, doesn’t comprehend anything that has happened since it died, and can’t speculate about future events. Once the staff has been used to ask a corpse 5 questions, it can’t be used to extract knowledge from that same corpse again until 3 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-portals", + "fields": { + "name": "Staff of Portals", + "desc": "This iron-shod wooden staff is heavily worn, and it can be wielded as a quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses all of its magic and becomes a nonmagical quarterstaff. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: arcane lock (2 charges), dimension door (4 charges), knock (2 charges), or passwall (5 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-scrying", + "fields": { + "name": "Staff of Scrying", + "desc": "This is a graceful, highly polished wooden staff crafted from willow. A crystal ball tops the staff, and smooth gold bands twist around its shaft. This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: detect thoughts (2 charges), locate creature (4 charges), locate object (2 charges), scrying (5 charges), or true seeing (6 charges). The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a bright flash of light erupts from the crystal ball, and the staff vanishes.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-spores", + "fields": { + "name": "Staff of Spores", + "desc": "Mold and mushrooms coat this gnarled wooden staff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff rots into tiny clumps of slimy, organic matter and is destroyed. Mushroom Disguise. While holding the staff, you can use an action to expend 2 charges to cover yourself and anything you are wearing or carrying with a magical illusion that makes you look like a mushroom for up to 1 hour. You can appear to be a mushroom of any color or shape as long as it is no more than one size larger or smaller than you. This illusion ends early if you move or speak. The changes wrought by this effect fail to hold up to physical inspection. For example, if you appear to have a spongy cap in place of your head, someone touching the cap would feel your face or hair instead. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that you are disguised. Speak with Plants. While holding the staff, you can use an action to expend 1 of its charges to cast the speak with plants spell from it. Spore Cloud. While holding the staff, you can use an action to expend 3 charges to release a cloud of spores in a 20-foot radius from you. The spores remain for 1 minute, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. When a creature, other than you, enters the cloud of spores for the first time on a turn or starts its turn there, that creature must succeed on a DC 15 Constitution saving throw or take 1d6 poison damage and become poisoned until the start of its next turn. A wind of at least 10 miles per hour disperses the spores and ends the effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-the-armada", + "fields": { + "name": "Staff of the Armada", + "desc": "This gold-shod staff is constructed out of a piece of masting from a galleon. The staff can be wielded as a magic quarterstaff that grants you a +1 bonus to attack and damage rolls made with it. While you are on board a ship, this bonus increases to +2. The staff has 10 charges and regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses all of its magic and becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: control water (4 charges), fog cloud (1 charge), gust of wind (2 charges), or water walk (3 charges). You can also use an action to cast the ray of frost cantrip from the staff without using any charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-the-artisan", + "fields": { + "name": "Staff of the Artisan", + "desc": "This simple, wooden staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever. Create Object. You can use an action to expend 2 charges to conjure an inanimate object in your hand or on the ground in an unoccupied space you can see within 10 feet of you. The object can be no larger than 3 feet on a side and weigh no more than 10 pounds, and its form must be that of a nonmagical object you have seen. You can’t create items that ordinarily require a high degree of craftsmanship, such as jewelry, weapons, glass, or armor, unless you have proficiency with the type of artisan’s tools used to craft such objects. The object sheds dim light in a 5-foot radius. The object disappears after 1 hour, when you use this property again, or if the object takes or deals any damage. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: animate objects (5 charges), fabricate (4 charges) or floating disk (1 charge). You can also use an action to cast the mending spell from the staff without using any charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-the-cephalopod", + "fields": { + "name": "Staff of the Cephalopod", + "desc": "This ugly staff is fashioned from a piece of gnarled driftwood and is crowned with an octopus carved from brecciated jasper. Its gray and red stone tentacles wrap around the top half of the staff. While holding this staff, you have a swimming speed of 30 feet. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the jasper octopus crumbles to dust, and the staff becomes a nonmagical piece of driftwood. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: black tentacles (4 charges), conjure animals (only beasts that can breathe water, 3 charges), darkness (2 charges), or water breathing (3 charges). Ink Cloud. While holding this staff, you can use an action and expend 1 charge to cause an inky, black cloud to spread out in a 30-foot radius from you. The cloud can form in or out of water. The cloud remains for 10 minutes, making the area heavily obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour or a steady current (if underwater) disperses the cloud and ends the effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-the-four-winds", + "fields": { + "name": "Staff of the Four Winds", + "desc": "Made of gently twisting ash and engraved with spiraling runes, the staff feels strangely lighter than its size would otherwise suggest. This staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: circle of wind* (1 charge), feather fall (1 charge), gust of wind (2 charges), storm god's doom* (3 charges), wind tunnel* (1 charge), wind walk (6 charges), wind wall (3 charges), or wresting wind* (2 charges). You can also use an action to cast the wind lash* spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM's discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to breezes, wind, or movement. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles into ashes and is taken away with the breeze.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-the-lantern-bearer", + "fields": { + "name": "Staff of the Lantern Bearer", + "desc": "An iron hook is affixed to the top of this plain, wooden staff. While holding this staff, you can use an action to cast the light spell from it at will, but the light can emanate only from the staff 's hook. If a lantern hangs from the staff 's hook, you gain the following benefits while holding the staff: - You can control the light of the lantern, lighting or extinguishing it as a bonus action. The lantern must still have oil, if it requires oil to produce a flame.\n- The lantern's flame can't be extinguished by wind or water.\n- If you are a spellcaster, you can use the staff as a spellcasting focus. When you cast a spell that deals fire or radiant damage while using this staff as your spellcasting focus, you gain a +1 bonus to the spell's attack roll, or the spell's save DC increases by 1 (your choice).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-the-peaks", + "fields": { + "name": "Staff of the Peaks", + "desc": "This staff is made of rock crystal yet weighs the same as a wooden staff. The staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to spell attack rolls. In addition, you are immune to the effects of high altitude and severe cold weather, such as hypothermia and frostbite. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff shatters into fine stone fragments and is destroyed. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: control weather (8 charges), fault line* (6 charges), gust of wind (2 charges), ice storm (4 charges), jump (1 charge), snow boulder* (4 charges), or wall of stone (5 charges). Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. Stone Strike. When you hit a creature or object made of stone or earth with this staff, you can expend 5 of its charges to shatter the target. The target must make a DC 17 Constitution saving throw, taking an extra 10d6 force damage on a failed save, or half as much damage on a successful one. If the target is an object that is being worn or carried, the creature wearing or carrying it must make the saving throw, but only the object takes the damage. If this damage reduces the target to 0 hit points, it shatters and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-the-scion", + "fields": { + "name": "Staff of the Scion", + "desc": "This unwholesome staff is crafted of a material that appears to be somewhere between weathered wood and dried meat. It weeps beads of red liquid that are thick and sticky like tree sap but smell of blood. A crystalized yellow eye with a rectangular pupil, like the eye of a goat, sits at its top. You can wield the staff as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the eye liquifies as the staff shrivels and twists into a blackened, smoking ruin and is destroyed. Ember Cloud. While holding the staff, you can use an action and expend 2 charges to release a cloud of burning embers from the staff. Each creature within 10 feet of you must make a DC 15 Constitution saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one. The ember cloud remains until the start of your next turn, making the area lightly obscured for creatures other than you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. Fiery Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 fire damage to the target. If you take fire damage while wielding the staff, you have advantage on attack rolls with it until the end of your next turn. While holding the staff, you have resistance to fire damage. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: augury (2 charges), barkskin (2 charges), confusion (4 charges), entangle (1 charge), or wall of fire (4 charges).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-the-treant", + "fields": { + "name": "Staff of the Treant", + "desc": "This unassuming staff appears to be little more than the branch of a tree. While holding this staff, your skin becomes bark-like, and the hair on your head transforms into a chaplet of green leaves. This staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. Nature’s Guardian. While holding this staff, you have resistance to cold and necrotic damage, but you have vulnerability to fire and radiant damage. In addition, you have advantage on attack rolls against aberrations and undead, but you have disadvantage on saving throws against spells and other magical effects from fey and plant creatures. One with the Woods. While holding this staff, your AC can’t be less than 16, regardless of what kind of armor you are wearing, and you can’t be tracked when you travel through terrain with excessive vegetation, such as a forest or grassland. Tree Friend. While holding this staff, you can use an action to animate a tree you can see within 60 feet of you. The tree uses the statistics of an animated tree and is friendly to you and your companions. Roll initiative for the tree, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don’t directly harm other trees or the natural world. If you don’t issue any commands to the three, it defends itself from hostile creatures but otherwise takes no actions. Once used, this property can’t be used again until the next dawn. Venerated Tree. If you spend 1 hour in silent reverence at the base of a Huge or larger tree, you can use an action to plant this staff in the soil above the tree’s roots and awaken the tree as a treant. The treant isn’t under your control, but it regards you as a friend as long as you don’t harm it or the natural world around it. Roll a d20. On a 1, the staff roots into the ground, growing into a sapling, and losing its magic. Otherwise, after you awaken a treant with this staff, you can’t do so again until 30 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-the-unhatched", + "fields": { + "name": "Staff of the Unhatched", + "desc": "This staff carved from a burnt ash tree is topped with an unhatched dragon’s (see Creature Codex) skull. This staff can be wielded as a magic quarterstaff. The staff has 5 charges for the following properties. It regains 1d4 + 1 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed. Necrotic Strike. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d8 necrotic damage to the target. Spells. While holding the staff, you can use an action to expend 1 charge to cast bane or protection from evil and good from it using your spell save DC. You can also use an action to cast one of the following spells from the staff without using any charges, using your spell save DC and spellcasting ability: chill touch or minor illusion.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-the-white-necromancer", + "fields": { + "name": "Staff of the White Necromancer", + "desc": "Crafted from polished bone, this strange staff is carved with numerous arcane symbols and mystical runes. The staff has 10 charges. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: false life (1 charge), gentle repose (2 charges), heartstop* (2 charges), death ward (4 charges), raise dead (5 charges), revivify (3 charges), shared sacrifice* (2 charges), or speak with dead (3 charges). You can also use an action to cast the bless the dead* or spare the dying spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the bone staff crumbles to dust.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-thorns", + "fields": { + "name": "Staff of Thorns", + "desc": "This gnarled and twisted oak staff has numerous thorns growing from its surface. Green vines tightly wind their way up along the shaft. The staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the thorns immediately fall from the staff and it becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: barkskin (2 charges), entangle (1 charge), speak with plants (3 charges), spike growth (2 charges), or wall of thorns (6 charges). Thorned Strike. When you hit with a melee attack using the staff, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 piercing damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-voices", + "fields": { + "name": "Staff of Voices", + "desc": "The length of this wooden staff is carved with images of mouths whispering, speaking, and screaming. This staff can be wielded as a magic quarterstaff. While holding this staff, you can't be deafened, and you can act normally in areas where sound is prevented, such as in the area of a silence spell. Any creature that is not deafened can hear your voice clearly from up to 1,000 feet away if you wish them to hear it. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the mouths carved into the staff give a collective sigh and close, and the staff becomes a nonmagical quarterstaff. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: divine word (7 charges), magic mouth (2 charges), speak with animals (1 charge), speak with dead (3 charges), speak with plants (3 charges), or word of recall (6 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges. Thunderous Shout. While holding the staff, you can use an action to expend 1 charge and release a chorus of mighty shouts in a 15-foot cone from it. Each creature in the area must make a Constitution saving throw. On a failure, a creature takes 2d8 thunder damage and is deafened for 1 minute. On a success, a creature takes half the damage and is deafened until the end of its next turn. A deafened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_staff-of-winter-and-ice", + "fields": { + "name": "Staff of Winter and Ice", + "desc": "This pure white, pine staff is topped with an ornately faceted shard of ice. The entire staff is cold to the touch. You have resistance to cold damage while you hold this staff. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its resistance to cold damage but loses all other properties. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: Boreas’s breath* (2 charges), cone of cold (5 charges), curse of Boreas* (6 charges), ice storm (4 charges), flurry* (1 charge), freezing fog* (3 charges), freezing sphere (6 charges), frostbite* (5 charges), frozen razors* (3 charges), gliding step* (1 charge), sleet storm (3 charges), snow boulder* (4 charges), triumph of ice* (7 charges), or wall of ice (6 charges). You can also use an action to cast the chill touch or ray of frost spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM’s discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to ice, snow, or wintry weather. Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it. You have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take cold damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of cold damage based on how far away it is from the point of origin as shown in the following table. On a successful save, a creature takes half as much damage. | Distance from Origin | Damage |\n| --------------------- | -------------------------------------- |\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_standard-of-divinity-glaive", + "fields": { + "name": "Standard of Divinity (Glaive)", + "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_standard-of-divinity-halberd", + "fields": { + "name": "Standard of Divinity (Halberd)", + "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_standard-of-divinity-lance", + "fields": { + "name": "Standard of Divinity (Lance)", + "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_standard-of-divinity-pike", + "fields": { + "name": "Standard of Divinity (Pike)", + "desc": "This weapon was created in a long-forgotten holy war. A woven banner bearing the symbol of a god hangs from it. When you attune to it, the banner changes to the colors and symbol of your deity. You gain a +1 bonus to attack and damage rolls made with this magic weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_steadfast-splint", + "fields": { + "name": "Steadfast Splint", + "desc": "This armor makes you difficult to manipulate both mentally and physically. While wearing this armor, you have advantage on saving throws against being charmed or frightened, and you have advantage on ability checks and saving throws against spells and effects that would move you against your will.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_stinger", + "fields": { + "name": "Stinger", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with an attack using this weapon, you can use a bonus action to inject paralyzing venom in the target. The target must succeed on a DC 15 Constitution saving throw or become paralyzed for 1 minute. It can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Creatures immune to poison are also immune to this dagger's paralyzing venom. The dagger can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_stolen-thunder", + "fields": { + "name": "Stolen Thunder", + "desc": "This bodhrán drum is crafted of wood from an ash tree struck by lightning, and its head is made from stretched mammoth skin, painted with a stylized thunderhead. While attuned to this drum, you can use it as an arcane focus. While holding the drum, you are immune to thunder damage. While this drum is on your person but not held, you have resistance to thunder damage. The drum has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. In addition, the drum regains 1 expended charge for every 10 thunder damage you ignore due to the resistance or immunity the drum gives you. If you expend the drum's last charge, roll a 1d20. On a 1, it becomes a nonmagical drum. However, if you make a Charisma (Performance) check while playing the nonmagical drum, and you roll a 20, the passion of your performance rekindles the item's power, restoring its properties and giving it 1 charge. If you are hit by a melee attack while using the drum as a shield, you can use a reaction to expend 1 charge to cause a thunderous rebuke. The attacker must make a DC 17 Constitution saving throw. On a failure, the attacker takes 2d8 thunder damage and is pushed up to 10 feet away from you. On a success, the attacker takes half the damage and isn't pushed. The drum emits a thunderous boom audible out to 300 feet.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_stone-staff", + "fields": { + "name": "Stone Staff", + "desc": "Sturdy and smooth, this impressive staff is crafted from solid stone. Most stone staves are crafted by dwarf mages and few ever find their way into non-dwarven hands. The staff can be wielded as a magic quarterstaff that grants a +1 bonus to attack and damage rolls made with it. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: earthskimmer* (4 charges), entomb* (6 charges), flesh to stone (6 charges), meld into stone (3 charges), stone shape (4 charges), stoneskin (4 charges), or wall of stone (5 charges). You can also use an action to cast the pummelstone* or true strike spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, hundreds of cracks appear across the staff 's surface and it crumbles into tiny bits of stone.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_stonechewer-gauntlets", + "fields": { + "name": "Stonechewer Gauntlets", + "desc": "These impractically spiked gauntlets are made from adamantine, are charged with raw elemental earth magic, and limit the range of motion in your fingers. While wearing these gauntlets, you can't carry a weapon or object, and you can't climb or otherwise perform precise actions requiring the use of your hands. When you hit a creature with an unarmed strike while wearing these gauntlets, the unarmed strike deals an extra 1d4 piercing damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_stonedrift-staff", + "fields": { + "name": "Stonedrift Staff", + "desc": "This staff is fashioned from petrified wood and crowned with a raw chunk of lapis lazuli veined with gold. The staff can be wielded as a magic quarterstaff. The staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff crumbles to dust and is destroyed. Spells. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: animate objects (only stone objects, 5 charges), earthquake (8 charges), passwall (only stone surfaces, 5 charges), or stone shape (4 charges). Elemental Speech. You can speak and understand Primordial while holding this staff. Favor of the Earthborn. While holding the staff, you have advantage on Charisma checks made to influence earth elementals or other denizens of the Plane of Earth. Stone Glide. If the staff has at least 1 charge, you have a burrowing speed equal to your walking speed, and you can burrow through earth and stone while holding this staff. While doing so, you don’t disturb the material you move through.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_storytellers-pipe", + "fields": { + "name": "Storyteller's Pipe", + "desc": "This long-shanked wooden smoking pipe is etched with leaves along the bowl. Although it is serviceable as a typical pipe, you can use an action to blow out smoke and shape the smoke into wispy images for 10 minutes. This effect works like the silent image spell, except its range is limited to a 10-foot cone in front of you, and the images can be no larger than a 5-foot cube. The smoky images last for 3 rounds before fading, but you can continue blowing smoke to create more images for the duration or until the pipe burns through the smoking material in it, whichever happens first.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_studded-leather-armor-of-the-leaf", + "fields": { + "name": "Studded Leather Armor of the Leaf", + "desc": "This suit of armor always has a forest or leaf motif and is usually green or brown in color. While wearing this armor in forest terrain, you have advantage on\nStrength (Athletics) and Dexterity (Stealth) checks. You can use an action to transform the armor into a cloud of swirling razor-sharp leaves, and each creature within 10 feet of you must succeed on a DC 13 Dexterity saving throw or take 2d8 slashing damage. For 1 minute, the cloud of leaves spreads out in a 10-foot radius from you, making the area lightly obscured for creatures other than you. The cloud moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the cloud and ends the effect. While the armor is transformed, you don't gain a base Armor Class from the armor. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_studded-leather-of-warding-1", + "fields": { + "name": "Studded-Leather of Warding (+1)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_studded-leather-of-warding-2", + "fields": { + "name": "Studded-Leather of Warding (+2)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_studded-leather-of-warding-3", + "fields": { + "name": "Studded-Leather of Warding (+3)", + "desc": "Charms and wards made of claws, feathers, scales, or similar objects adorn this armor, which is etched with the likenesses of the creatures that contributed the adornments. The armor provides protection against a specific type of foe, indicated by its adornments. While wearing this armor, you have a bonus to AC against attacks from creatures of the type the armor wards against. The bonus is determined by its rarity. The armor provides protection against one of the following creature types: aberration, beast, celestial, construct, dragon, elemental, fey, fiend, giant, humanoid, monstrosity, ooze, plant, or undead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sturdy-crawling-cloak", + "fields": { + "name": "Sturdy Crawling Cloak", + "desc": "This unusual cloak is made of many overlapping, broad strips of thick cloth.\nCrawling Cloak (Common). When you are prone, you can animate the cloak and have it pull you along the ground, allowing you to ignore the extra movement cost for crawling. You can still only move up to your normal movement rate and can’t stand up from prone unless you still have at least half your movement remaining after moving.\n\nSturdy Crawling Cloak (Uncommon). This more powerful version of the crawling cloak also allows you to use the prehensile strips of the cloak to climb, giving you a climbing speed of 20 feet. If you already have a climbing speed, the cloak increases that speed by 10 feet. When using the cloak, you can keep your hands free while climbing.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sturdy-scroll-tube", + "fields": { + "name": "Sturdy Scroll Tube", + "desc": "This ornate scroll case is etched with arcane symbology. Scrolls inside this case are immune to damage and are protected from the elements, as long as the scroll case remains closed and intact. The scroll case itself has immunity to all forms of damage, except force damage and thunder damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_stygian-crook", + "fields": { + "name": "Stygian Crook", + "desc": "This staff of gnarled, rotted wood ends in a hooked curvature like a twisted shepherd's crook. The staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: bestow curse (3 charges), blight (4 charges), contagion (5 charges), false life (1 charge), or hallow (5 charges). The staff regains 1d6 + 4 expended charges daily at dusk. If you expend the last charge, roll a d20. On a 1, the staff turns to live maggots and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_superior-potion-of-troll-blood", + "fields": { + "name": "Superior Potion of Troll Blood", + "desc": "When you drink this potion, you regain 5 hit points at the start of each of your turns. After it has restored 50 hit points, the potion's effects end.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_supreme-potion-of-troll-blood", + "fields": { + "name": "Supreme Potion of Troll Blood", + "desc": "When you drink this potion, you regain 8 hit points at the start of each of your turns. After it has restored 80 hit points, the potion's effects end.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_survival-knife", + "fields": { + "name": "Survival Knife", + "desc": "When holding this sturdy knife, you can use an action to transform it into a crowbar, a fishing rod, a hunting trap, or a hatchet (mainly a chopping tool; if wielded as a weapon, it uses the same statistics as this dagger, except it deals slashing damage). While holding or touching the transformed knife, you can use an action to transform it into another form or back into its original shape.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_swarmfoe-hide", + "fields": { + "name": "Swarmfoe Hide", + "desc": "While wearing this armor festooned with thin draconic scales, you gain a +1 bonus to AC. You can use the scales as a melee weapon while wearing the armor. You have proficiency with the scales and deal 1d4 slashing damage on a hit (your Strength modifier applies to the attack and damage rolls as normal). Swarms don't have resistance to the damage dealt by the scales. In addition, if a swarm occupies your space, you can attack with the scales as a bonus action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_swarmfoe-leather", + "fields": { + "name": "Swarmfoe Leather", + "desc": "While wearing this armor festooned with thin draconic scales, you gain a +1 bonus to AC. You can use the scales as a melee weapon while wearing the armor. You have proficiency with the scales and deal 1d4 slashing damage on a hit (your Strength modifier applies to the attack and damage rolls as normal). Swarms don't have resistance to the damage dealt by the scales. In addition, if a swarm occupies your space, you can attack with the scales as a bonus action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_swashing-plumage", + "fields": { + "name": "Swashing Plumage", + "desc": "This plumage, a colorful bouquet of tropical hat feathers, has a small pin at its base and can be affixed to any hat or headband. Due to its distracting, ostentatious appearance, creatures hostile to you have disadvantage on opportunity attacks against you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_sweet-nature", + "fields": { + "name": "Sweet Nature", + "desc": "You have a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a humanoid with this weapon, the humanoid takes an extra 1d6 slashing damage. If you use the axe to damage a plant creature or an object made of wood, the axe's blade liquifies into harmless honey, and it can't be used again until 24 hours have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_swolbold-wraps", + "fields": { + "name": "Swolbold Wraps", + "desc": "When wearing these cloth wraps, your forearms and hands swell to half again their normal size without negatively impacting your fine motor skills. You gain a +1 bonus to attack and damage rolls made with unarmed strikes while wearing these wraps. In addition, your unarmed strike uses a d4 for damage and counts as magical for the purpose of overcoming resistance and immunity to nonmagical attacks and damage. When you hit a target with an unarmed strike and the target is no more than one size larger than you, you can use a bonus action to automatically grapple the target. Once this special bonus action has been used three times, it can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tactile-unguent", + "fields": { + "name": "Tactile Unguent", + "desc": "Cat burglars, gearworkers, locksmiths, and even street performers use this gooey substance to increase the sensitivity of their hands. When found, a container contains 1d4 + 1 doses. As an action, one dose can be applied to a creature's hands. For 1 hour, that creature has advantage on Dexterity (Sleight of Hand) checks and on tactile Wisdom (Perception) checks.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tailors-clasp", + "fields": { + "name": "Tailor's Clasp", + "desc": "This ornate brooch is shaped like a jeweled weaving spider or scarab beetle. While it is attached to a piece of fabric, it can be activated as an action. When activated, it skitters across the fabric, mending any tears, adjusting frayed hems, and reinforcing seams. This item works only on nonmagical objects made out of fibrous material, such as clothing, rope, and rugs. It continues repairing the fabric for up to 10 minutes or until the repairs are complete. Once used, it can't be used again until 1 hour has passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_talisman-of-the-snow-queen", + "fields": { + "name": "Talisman of the Snow Queen", + "desc": "The coldly beautiful and deadly Snow Queen (see Tome of Beasts) grants these delicate-looking snowflake-shaped mithril talismans to her most trusted spies and servants. Each talisman is imbued with a measure of her power and is magically tied to the queen. It can be affixed to any piece of clothing or worn as an amulet. While wearing the talisman, you gain the following benefits: • You have resistance to cold damage. • You have advantage on Charisma checks when interacting socially with creatures that live in cold environments, such as frost giants, winter wolves, and fraughashar (see Tome of Beasts). • You can use an action to cast the ray of frost cantrip from it at will, using your level and using Intelligence as your spellcasting ability. Blinding Snow. While wearing the talisman, you can use an action to create a swirl of snow that spreads out from you and into the eyes of nearby creatures. Each creature within 15 feet of you must succeed on a DC 17 Constitution saving throw or be blinded until the end of its next turn. Once used, this property can’t be used again until the next dawn. Eyes of the Queen. While you are wearing the talisman, the Snow Queen can use a bonus action to see through your eyes if both of you are on the same plane of existence. This effect lasts until she ends it as a bonus action or until you die. You can’t make a saving throw to prevent the Snow Queen from seeing through your eyes. However, being more than 5 feet away from the talisman ends the effect, and becoming blinded prevents her from seeing anything further than 10 feet away from you. When the Snow Queen is looking through your eyes, the talisman sheds an almost imperceptible pale blue glow, which you or any creature within 10 feet of you notice with a successful DC 20 Wisdom (Perception) check. An identify spell fails to reveal this property of the talisman, and this property can’t be removed from the talisman except by the Snow Queen herself.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_talking-tablets", + "fields": { + "name": "Talking Tablets", + "desc": "These two enchanted brass tablets each have gold styli chained to them by small, silver chains. As long as both tablets are on the same plane of existence, any message written on one tablet with its gold stylus appears on the other tablet. If the writer writes words in a language the reader doesn't understand, the tablets translate the words into a language the reader can read. While holding a tablet, you know if no creature bears the paired tablet. When the tablets have transferred a total of 150 words between them, their magic ceases to function until the next dawn. If one of the tablets is destroyed, the other one becomes a nonmagical block of brass worth 25 gp.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_talking-torches", + "fields": { + "name": "Talking Torches", + "desc": "These heavy iron and wood torches are typically found in pairs or sets of four. While holding this torch, you can use an action to speak a command word and cause it to produce a magical, heatless flame that sheds bright light in a 20-foot radius and dim light for an additional 20 feet. You can use a bonus action to repeat the command word to extinguish the light. If more than one talking torch remain lit and touching for 1 minute, they become magically bound to each other. A torch remains bound until the torch is destroyed or until it is bound to another talking torch or set of talking torches. While holding or carrying the torch, you can communicate telepathically with any creature holding or carrying one of the torches bound to your torch, as long as both torches are lit and within 5 miles of each other.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tamers-whip", + "fields": { + "name": "Tamer's Whip", + "desc": "This whip is braided from leather tanned from the hides of a dozen different, dangerous beasts. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you attack a beast using this weapon, you have advantage on the attack roll.\nWhen you roll a 20 on the attack roll made with this weapon and the target is a beast, the beast must succeed on a DC 15 Wisdom saving throw or become charmed or frightened (your choice) for 1 minute.\nIf the creature is charmed, it understands and obeys one-word commands, such as “attack,” “approach,” “stay,” or similar. If it is charmed and understands a language, it obeys any command you give it in that language. The charmed or frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tarian-graddfeydd-ddraig", + "fields": { + "name": "Tarian Graddfeydd Ddraig", + "desc": "This metal shield has an outer coating consisting of hardened resinous insectoid secretions embedded with flakes from ground dragon scales collected from various dragon wyrmlings and one dragon that was killed by shadow magic. While holding this shield, you gain a +2 bonus to AC. This bonus is in addition to the shield's normal bonus to AC. In addition, you have resistance to acid, cold, fire, lightning, necrotic, and poison damage dealt by the breath weapons of dragons. While wielding the shield in an area of dim or bright light, you can use an action to reflect the light off the shield's dragon scale flakes to cause a cone of multicolored light to flash from it (15-foot cone if in dim light; 30-foot cone if in bright light). Each creature in the area must make a DC 17 Dexterity saving throw. For each target, roll a d6 and consult the following table to determine which color is reflected at it. The shield can't be used this way again until the next dawn. | d6 | Effect |\n| --- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 1 | **Red**. The target takes 6d6 fire damage on a failed save, or half as much damage on a successful one. |\n| 2 | **White**. The target takes 4d6 cold damage and is restrained until the start of your next turn on a failed save, or half as much damage and is not restrained on a successful one. |\n| 3 | **Blue**. The target takes 4d6 lightning damage and is paralyzed until the start of your next turn on a failed save, or half as much damage and is not paralyzed on a successful one. |\n| 4 | **Black**. The target takes 4d6 acid damage on a failed save, or half as much damage on a successful one. If the target failed the save, it also takes an extra 2d6 acid damage on the start of your next turn. |\n| 5 | **Green**. The target takes 4d6 poison damage and is poisoned until the start of your next turn on a failed save, or half as much damage and is not poisoned on a successful one. |\n| 6 | **Shadow**. The target takes 4d6 necrotic damage and its Strength score is reduced by 1d4 on a failed save, or half as much damage and does not reduce its Strength score on a successful one. The target dies if this Strength reduction reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest. |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_teapot-of-soothing", + "fields": { + "name": "Teapot of Soothing", + "desc": "This cast iron teapot is adorned with the simple image of fluffy clouds that seem to slowly shift and move across the pot as if on a gentle breeze. Any water placed inside the teapot immediately becomes hot tea at the perfect temperature, and when poured, it becomes the exact flavor the person pouring it prefers. The teapot can serve up to 6 creatures, and any creature that spends 10 minutes drinking a cup of the tea gains 2d6 temporary hit points for 24 hours. The creature pouring the tea has advantage on Charisma (Persuasion) checks for 10 minutes after pouring the first cup. Once used, the teapot can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tenebrous-flail-of-screams", + "fields": { + "name": "Tenebrous Flail of Screams", + "desc": "The handle of this flail is made of mammoth bone wrapped in black leather made from bat wings. Its pommel is adorned with raven's claws, and the head of the flail dangles from a flexible, preserved braid of entrails. The head is made of petrified wood inlaid with owlbear and raven beaks. When swung, the flail lets out an otherworldly screech. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit a creature with this flail, the target takes an extra 1d6 psychic damage. When you roll a 20 on an attack roll made with this weapon, the target must succeed on a DC 15 Wisdom saving throw or be incapacitated until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tenebrous-mantle", + "fields": { + "name": "Tenebrous Mantle", + "desc": "This black cloak appears to be made of pure shadow and shrouds you in darkness. While wearing it, you gain the following benefits: - You have advantage on Dexterity (Stealth) checks.\n- You have resistance to necrotic damage.\n- You can cast the darkness and misty step spells from it at will. Casting either spell from the cloak requires an action. Instead of a silvery mist when you cast misty step, you are engulfed in the darkness of the cloak and emerge from the cloak's darkness at your destination.\n- You can use an action to cast the black tentacles or living shadows (see Deep Magic for 5th Edition) spell from it. The cloak can't be used this way again until the following dusk.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_thirsting-scalpel", + "fields": { + "name": "Thirsting Scalpel", + "desc": "You gain a +1 bonus to attack and damage rolls with this magic weapon, which deals slashing damage instead of piercing damage. When you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 2d6 slashing damage. If the target is a creature other than an undead or construct, it must succeed on a DC 13 Constitution saving throw or lose 2d6 hit points at the start of each of its turns from a bleeding wound. Any creature can take an action to stanch the wound with a successful DC 11 Wisdom (Medicine) check. The wound also closes if the target receives magical healing. In addition, once every 7 days while the scalpel is on your person, you must succeed on a DC 15 Charisma saving throw or become driven to feed blood to the scalpel. You have advantage on attack rolls with the scalpel until it is sated. The dagger is sated when you roll a 20 on an attack roll with it, after you deal 14 slashing damage with it, or after 1 hour elapses. If the hour elapses and you haven't sated its thirst for blood, the dagger deals 14 slashing damage to you. If the dagger deals damage to you as a result of the curse, you can't heal the damage for 24 hours. The remove curse spell removes your attunement to the item and frees you from the curse. Alternatively, casting the banishment spell on the dagger forces the bearded devil's essence to leave it. The scalpel then becomes a +1 dagger with no other properties.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_thirsting-thorn", + "fields": { + "name": "Thirsting Thorn", + "desc": "You gain a +1 bonus to attack and damage rolls made with this weapon. In addition, while carrying the sword, you have resistance to necrotic damage. Each time you reduce a creature to 0 hit points with this weapon, you can regain 2d8+2 hit points. Each time you regain hit points this way, you must succeed a DC 12 Wisdom saving throw or be incapacitated by terrible visions until the end of your next turn. If you reach your maximum hit points using this effect, you automatically fail the saving throw. As long as you remain cursed, you are unwilling to part with the sword, keeping it within reach at all times. If you have not damaged a creature with this sword within the past 24 hours, you have disadvantage on attack rolls with weapons other than this one as its hunger for blood drives you to slake its thirst.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_thornish-nocturnal", + "fields": { + "name": "Thornish Nocturnal", + "desc": "The ancient elves constructed these nautical instruments to use as navigational aids on all their seagoing vessels. The knowledge of their manufacture has been lost, and few of them remain. While attuned to the nocturnal, you can spend 1 minute using the nocturnal to determine the precise local time, provided you can see the sun or stars. You can use an action to protect up to four vessels that are within 1 mile of the nocturnal from unwanted effects of the local weather for 1 hour. For example, vessels protected by the nocturnal can't be damaged by storms or blown onto jagged rocks by adverse wind. To do so, you must have spent at least 1 hour aboard each of the controlled vessels, performing basic sailing tasks and familiarizing yourself with the vessel.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_three-section-boots", + "fields": { + "name": "Three-Section Boots", + "desc": "These boots are often decorated with eyes, flames, or other bold patterns such as lightning bolts or wheels. When you step onto water, air, or stone, you can use a reaction to speak the boots' command word. For 1 hour, you gain the effects of the meld into stone, water walk, or wind walk spell, depending on the type of surface where you stepped. The boots can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_throttlers-gauntlets", + "fields": { + "name": "Throttler's Gauntlets", + "desc": "These durable leather gloves allow you to choke a creature you are grappling, preventing them from speaking. While you are grappling a creature, you can use a bonus action to throttle it. The creature takes damage equal to your proficiency bonus and can't speak coherently or cast spells with verbal components until the end of its next turn. You can choose to not damage the creature when you throttle it. A creature can still breathe, albeit uncomfortably, while throttled.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_thunderous-kazoo", + "fields": { + "name": "Thunderous Kazoo", + "desc": "You can use an action to speak the kazoo's command word and then hum into it, which emits a thunderous blast, audible out to 1 mile, at one Large or smaller creature you can see within 30 feet of you. The target must make a DC 13 Constitution saving throw. On a failure, a creature is pushed away from you and is deafened and frightened of you until the start of your next turn. A Small creature is pushed up to 30 feet, a Medium creature is pushed up to 20 feet, and a Large creature is pushed up to 10 feet. On a success, a creature is pushed half the distance and isn't deafened or frightened. The kazoo can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tick-stop-watch", + "fields": { + "name": "Tick Stop Watch", + "desc": "While holding this silver pocketwatch, you can use an action to magically stop a single clockwork device or construct within 10 feet of you. If the target is an object, it freezes in place, even mid-air, for up to 1 minute or until moved. If the target is a construct, it must succeed on a DC 15 Wisdom saving throw or be paralyzed until the end of its next turn. The pocketwatch can't be used this way again until the next dawn. The pocketwatch must be wound at least once every 24 hours, just like a normal pocketwatch, or its magic ceases to function. If left unwound for 24 hours, the watch loses its magic, but the power returns 24 hours after the next time it is wound.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_timeworn-timepiece", + "fields": { + "name": "Timeworn Timepiece", + "desc": "This tarnished silver pocket watch seems to be temporally displaced and allows for limited manipulation of time. The timepiece has 3 charges, and it regains 1d3 expended charges daily at midnight. While holding the timepiece, you can use your reaction to expend 1 charge after you or a creature you can see within 30 feet of you makes an attack roll, an ability check, or a saving throw to force the creature to reroll. You make this decision after you see whether the roll succeeds or fails. The target must use the result of the second roll. Alternatively, you can expend 2 charges as a reaction at the start of another creature's turn to swap places in the Initiative order with that creature. An unwilling creature that succeeds on a DC 15 Charisma saving throw is unaffected.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tincture-of-moonlit-blossom", + "fields": { + "name": "Tincture of Moonlit Blossom", + "desc": "This potion is steeped using a blossom that grows only in the moonlight. When you drink this potion, your shadow corruption (see Midgard Worldbook) is reduced by three levels. If you aren't using the Midgard setting, you gain the effect of the greater restoration spell instead.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tipstaff", + "fields": { + "name": "Tipstaff", + "desc": "To the uninitiated, this short ebony baton resembles a heavy-duty truncheon with a cord-wrapped handle and silver-capped tip. The weapon has 5 charges, and it regains 1d4 + 1 expended charges daily at dawn. When you hit a creature with a melee attack with this magic weapon, you can expend 1 charge to force the target to make a DC 15 Constitution saving throw. If the creature took 20 damage or more from this attack, it has disadvantage on the saving throw. On a failure, the target is paralyzed for 1 minute. It can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tome-of-knowledge", + "fields": { + "name": "Tome of Knowledge", + "desc": "This book contains mnemonics and other tips to better perform a specific mental task, and its words are charged with magic. If you spend 24 hours over a period of 3 days or fewer studying the tome and practicing its instructions, you gain proficiency in the Intelligence, Wisdom, or Charisma-based skill (such as History, Insight, or Intimidation) associated with the book. The tome then loses its magic, but regains it in ten years.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tonic-for-the-troubled-mind", + "fields": { + "name": "Tonic for the Troubled Mind", + "desc": "This potion smells and tastes of lavender and chamomile. When you drink it, it removes any short-term madness afflicting you, and it suppresses any long-term madness afflicting you for 8 hours.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tonic-of-blandness", + "fields": { + "name": "Tonic of Blandness", + "desc": "This deeply bitter, black, oily liquid deadens your sense of taste. When you drink this tonic, you can eat all manner of food without reaction, even if the food isn't to your liking, for 1 hour. During this time, you automatically fail Wisdom (Perception) checks that rely on taste. This tonic doesn't protect you from the effects of consuming poisoned or spoiled food, but it can prevent you from detecting such impurities when you taste the food.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_toothsome-purse", + "fields": { + "name": "Toothsome Purse", + "desc": "This common-looking leather pouch holds a nasty surprise for pickpockets. If a creature other than you reaches into the purse, small, sharp teeth emerge from the mouth of the bag. The bag makes a melee attack roll against that creature with a +3 bonus ( 1d20+3). On a hit, the target takes 2d4 piercing damage. If the bag rolls a 20 on the attack roll, the would-be pickpocket has disadvantage on any Dexterity checks made with that hand until the damage is healed. If the purse is lifted entirely from you, the purse continues to bite at the thief each round until it is dropped or until it is placed where it can't reach its target. It bites at any creature, other than you, who attempts to pick it up, unless that creature genuinely desires to return the purse and its contents to you. The purse attacks only if it is attuned to a creature. A purse that isn't attuned to a creature lies dormant and doesn't attack.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_torc-of-the-comet", + "fields": { + "name": "Torc of the Comet", + "desc": "This silver torc is set with a large opal on one end, and it thins to a point on the other. While wearing the torc, you have resistance to cold damage, and you can use an action to speak the command word, causing the torc to shed bluish-white bright light in a 20-foot radius and dim light for an additional 20 feet. The light lasts until you use a bonus action to speak the command word again. The torc has 4 charges. You can use an action to expend 1 charge and fire a tiny comet from the torc at a target you can see within 120 feet of you. The torc makes a ranged attack roll with a +7 bonus ( 1d20+7). On a hit, the target takes 2d6 bludgeoning damage and 2d6 cold damage. At night, the cold damage dealt by the comets increases to 6d6. The torc regain 1d4 expended charges daily at dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tracking-dart", + "fields": { + "name": "Tracking Dart", + "desc": "When you hit a Large or smaller creature with an attack using this colorful magic dart, the target is splattered with magical paint, which outlines the target in a dim glow (your choice of color) for 1 minute. Any attack roll against a creature outlined in the glow has advantage if the attacker can see the creature, and the creature can't benefit from being invisible. The creature outlined in the glow can end the effect early by using an action to wipe off the splatter of paint.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_treebleed-bucket", + "fields": { + "name": "Treebleed Bucket", + "desc": "This combination sap bucket and tap is used to extract sap from certain trees. After 1 hour, the bucketful of sap magically changes into a potion. The potion remains viable for 24 hours, and its type depends on the tree as follows: oak (potion of resistance), rowan (potion of healing), willow (potion of animal friendship), and holly (potion of climbing). The treebleed bucket can magically change sap 20 times, then the bucket and tap become nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_trident-of-the-vortex", + "fields": { + "name": "Trident of the Vortex", + "desc": "This bronze trident has a shaft of inlaid blue pearl. You gain a +2 bonus to attack and damage rolls with this magic weapon. Whirlpool. While wielding the trident underwater, you can use an action to speak its command word and cause the water around you to whip into a whirlpool for 1 minute. For the duration, each creature that enters or starts its turn in a space within 10 feet of you must succeed on a DC 15 Strength saving throw or be restrained by the whirlpool. The whirlpool moves with you, and creatures restrained by it move with it. A creature within 5 feet of the whirlpool can pull a creature out of it by taking an action to make a DC 15 Strength check and succeeding. A restrained creature can try to escape by taking an action to make a DC 15 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the whirlpool. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_trident-of-the-yearning-tide", + "fields": { + "name": "Trident of the Yearning Tide", + "desc": "The barbs of this trident are forged from mother-of-pearl and its shaft is fashioned from driftwood. You gain a +2 bonus on attack and damage rolls made with this magic weapon. While holding the trident, you can breathe underwater. The trident has 3 charges for the following other properties. It regains 1d3 expended charges daily at dawn. Call Sealife. While holding the trident, you can use an action to expend 3 of its charges to cast the conjure animals spell from it. The creatures you summon must be beasts that can breathe water. Yearn for the Tide. When you hit a creature with a melee attack using the trident, you can use a bonus action to expend 1 charge to force the target to make a DC 17 Wisdom saving throw. On a failure, the target must spend its next turn leaping into the nearest body of water and swimming toward the bottom. A creature that can breathe underwater automatically succeeds on the saving throw. If no water is in the target’s line of sight, the target automatically succeeds on the saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_troll-skin-hide", + "fields": { + "name": "Troll Skin Hide", + "desc": "While wearing troll skin armor, you gain a +1 bonus to AC, and you stabilize whenever you are dying at the start of your turn. In addition, you can use an action to regenerate for 1 minute. While regenerating, you regain 2 hit points at the start of each of your turns. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_troll-skin-leather", + "fields": { + "name": "Troll Skin Leather", + "desc": "While wearing troll skin armor, you gain a +1 bonus to AC, and you stabilize whenever you are dying at the start of your turn. In addition, you can use an action to regenerate for 1 minute. While regenerating, you regain 2 hit points at the start of each of your turns. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_trollsblood-elixir", + "fields": { + "name": "Trollsblood Elixir", + "desc": "This thick, pink liquid sloshes and moves even when the bottle is still. When you drink this potion, you regenerate lost hit points for 1 hour. At the start of your turn, you regain 5 hit points. If you take acid or fire damage, the potion doesn't function at the start of your next turn. If you lose a limb, you can reattach it by holding it in place for 1 minute. For the duration, you can die from damage only by being reduced to 0 hit points and not regenerating on your turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_tyrants-whip", + "fields": { + "name": "Tyrant's Whip", + "desc": "This wicked whip has 3 charges and regains all expended charges daily at dawn. When you hit with an attack using this magic whip, you can use a bonus action to expend 1 of its charges to cast the command spell (save DC 13) from it on the creature you hit. If the attack is a critical hit, the target has disadvantage on the saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_umber-beans", + "fields": { + "name": "Umber Beans", + "desc": "These magical beans have a modest ochre or umber hue, and they are about the size and weight of walnuts. Typically, 1d4 + 4 umber beans are found together. You can use an action to throw one or more beans up to 10 feet. When the bean lands, it grows into a creature you determine by rolling a d10 and consulting the following table. ( Umber Beans#^creature) The creature vanishes at the next dawn or when it takes bludgeoning, piercing, or slashing damage. The bean is destroyed when the creature vanishes. The creature is illusory, and you are aware of this. You can use a bonus action to command how the illusory creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature. The creature's attacks deal psychic damage, though the target perceives the damage as the type appropriate to the illusion, such as slashing for a vrock's talons. A creature with truesight or that uses its action to examine the illusion can determine that it is an illusion with a successful DC 13 Intelligence (Investigation) check. If a creature discerns the illusion for what it is, the creature sees the illusion as faint and the illusion can't attack that creature. | dice: 1d10 | Creature |\n| ---------- | ---------------------------- |\n| 1 | Dretch |\n| 2-3 | 2 Shadows |\n| 4-6 | Chuul |\n| 7-8 | Vrock |\n| 9 | Hezrou or Psoglav |\n| 10 | Remorhaz or Voidling |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_umbral-band", + "fields": { + "name": "Umbral Band", + "desc": "This blackened steel ring is cold to the touch. While wearing this ring, you have darkvision out to a range of 30 feet, and you have advantage on Dexterity (Stealth) checks while in an area of dim light or darkness.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_umbral-chopper", + "fields": { + "name": "Umbral Chopper", + "desc": "This simple axe looks no different from a standard forester's tool. A single-edged head is set into a slot in the haft and bound with strong cord. The axe was found by a timber-hauling crew who disappeared into the shadows of a cave deep in an old forest. Retrieved in the dark of the cave, the axe was found to possess disturbing magical properties. You gain a +1 bonus to attack and damage rolls made with this weapon, which deals necrotic damage instead of slashing damage. When you hit a plant creature with an attack using this weapon, the target must make a DC 15 Constitution saving throw. On a failure, the creature takes 4d6 necrotic damage and its speed is halved until the end of its next turn. On a success, the creature takes half the damage and its speed isn't reduced.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_umbral-lantern", + "fields": { + "name": "Umbral Lantern", + "desc": "This item looks like a typical hooded brass lantern, but shadowy forms crawl across its surface and it radiates darkness instead of light. The lantern can burn for up to 3 hours each day. While the lantern burns, it emits darkness as if the darkness spell were cast on it but with a 30-foot radius.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_umbral-staff", + "fields": { + "name": "Umbral Staff", + "desc": "Made of twisted darkwood and covered in complex runes and sigils, this powerful staff seems to emanate darkness. You have resistance to radiant damage while you hold this staff. The staff has 20 charges for the following properties. It regains 2d8 + 4 expended charges daily at midnight. If you expend the last charge, roll a d20. On a 1, the staff retains its ability to cast the claws of darkness*, douse light*, and shadow blindness* spells but loses all other properties. On a 20, the staff regains 1d8 + 2 charges. Spells. While holding the staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: become nightwing* (6 charges), black hand* (4 charges), black ribbons* (1 charge), black well* (6 charges), cloak of shadow* (1 charge), darkvision (2 charges), darkness (2 charges), dark dementing* (5 charges), dark path* (2 charges), darkbolt* (2 charges), encroaching shadows* (6 charges), night terrors* (4 charges), shadow armor* (1 charge), shadow hands* (1 charge), shadow puppets* (2 charges), or slither* (2 charges). You can also use an action to cast the claws of darkness*, douse light*, or shadow blindness* spell from the staff without using any charges. Spells marked with an asterisk (*) can be found in Deep Magic for 5th Edition. At the GM’s discretion, spells from Deep Magic for 5th Edition can be replaced with other spells of similar levels and similarly related to darkness, shadows, or terror. Retributive Strike. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion of darkness (as the darkness spell) that expands to fill a 30-foot-radius sphere centered on it. You have a 50 percent chance to instantly travel to the Plane of Shadow, avoiding the explosion. If you fail to avoid the effect, you take necrotic damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin as shown in the following table. On a successful save, a creature takes half as much damage. | Distance from Origin | Damage |\n| --------------------- | -------------------------------------- |\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_undine-plate", + "fields": { + "name": "Undine Plate", + "desc": "This bright green plate armor is embossed with images of various marine creatures, such as octopuses and rays. While wearing this armor, you have a swimming speed of 40 feet, and you don't have disadvantage on Dexterity (Stealth) checks while underwater.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_unerring-dowsing-rod", + "fields": { + "name": "Unerring Dowsing Rod", + "desc": "This dark, gnarled willow root is worn and smooth. When you hold this rod in both hands by its short, forked branches, you feel it gently tugging you toward the closest source of fresh water. If the closest source of fresh water is located underground, the dowsing rod directs you to a spot above the source then dips its tip down toward the ground. When you use this dowsing rod on the Material Plane, it directs you to bodies of water, such as creeks and ponds. When you use it in areas where fresh water is much more difficult to find, such as a desert or the Plane of Fire, it directs you to bodies of water, but it might also direct you toward homes with fresh water barrels or to creatures with containers of fresh water on them.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_unquiet-dagger", + "fields": { + "name": "Unquiet Dagger", + "desc": "Forged by creatures with firsthand knowledge of what lies between the stars, this dark gray blade sometimes appears to twitch or ripple like water when not directly observed. You gain a +1 bonus to attack and damage rolls with this magic weapon. In addition, when you hit with an attack using this dagger, the target takes an extra 2d6 psychic damage. You can use an action to cause the blade to ripple for 1 minute. While the blade is rippling, each creature that takes psychic damage from the dagger must succeed on a DC 15 Charisma saving throw or become frightened of you for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. The dagger can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_unseelie-staff", + "fields": { + "name": "Unseelie Staff", + "desc": "This ebony staff is decorated in silver and topped with a jagged piece of obsidian. This staff can be wielded as a magic quarterstaff. While holding the staff, you have advantage on Charisma checks made to influence or interact socially with fey creatures. The staff has 10 charges for the following properties. The staff regains 1d6 + 4 charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff dissolves into a shower of powdery snow, which blows away in a sudden, chill wind. Rebuke Fey. When you hit a fey creature with a melee attack using the staff, you can expend 1 charge to deal an extra 2d6 necrotic damage to the target. If the fey has a good alignment, the extra damage increases to 4d6, and the target must succeed on a DC 15 Wisdom saving throw or be frightened of you until the start of your next turn. Spells. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: charm person (1 charge), conjure woodland beings (4 charges), confusion (4 charges), invisibility (2 charges), or teleport (7 charges). You can also use an action to cast the vicious mockery cantrip from the staff without using any charges.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_valkyries-bite", + "fields": { + "name": "Valkyrie's Bite", + "desc": "This black-bladed scimitar has a guard that resembles outstretched raven wings, and a polished amethyst sits in its pommel. You have a +2 bonus to attack and damage rolls made with this magic weapon. While attuned to the scimitar, you have advantage on initiative rolls. While you hold the scimitar, it sheds dim purple light in a 10-foot radius.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_vengeful-coat", + "fields": { + "name": "Vengeful Coat", + "desc": "This stiff, vaguely uncomfortable coat covers your torso. It smells like ash and oozes a sap-like substance. While wearing this coat, you have resistance to slashing damage from nonmagical attacks. At the end of each long rest, choose one of the following damage types: acid, cold, fire, lightning, or thunder. When you take damage of that type, you have advantage on attack rolls until the end of your next turn. When you take more than 10 damage of that type, you have advantage on your attack rolls for 2 rounds. When you are targeted by an effect that deals damage of the type you chose, you can use your reaction to gain resistance to that damage until the start of your next turn. You have advantage on your attack rolls, as detailed above, then the coat's magic ceases to function until you finish a long rest.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_venomous-fangs", + "fields": { + "name": "Venomous Fangs", + "desc": "These prosthetic fangs can be positioned over your existing teeth or in place of missing teeth. While wearing these fangs, your bite is a natural melee weapon, which you can use to make unarmed strikes. When you hit with it, your bite deals piercing damage equal to 1d4 + your Strength modifier, instead of the bludgeoning damage normal for an unarmed strike. You gain a +1 bonus to attack and damage rolls made with this magic bite. While you wear the fangs, a successful DC 9 Dexterity (Sleight of Hand) checks conceals them from view. At the GM's discretion, you have disadvantage on Charisma (Deception) or Charisma (Persuasion) checks against creatures that notice the fangs.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_verdant-elixir", + "fields": { + "name": "Verdant Elixir", + "desc": "Multi-colored streaks of light occasionally flash through the clear liquid in this container, like bottled lightning. As an action, you can pour the contents of the vial onto the ground. All normal plants in a 100-foot radius centered on the point where you poured the vial become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves. Alternatively, you can apply the contents of the vial to a plant creature within 5 feet of you. For 1 hour, the target gains 2d10 temporary hit points, and it gains the “enlarge” effect of the enlarge/reduce spell (no concentration required).", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_verminous-snipsnaps", + "fields": { + "name": "Verminous Snipsnaps", + "desc": "This stoppered jar holds small animated knives and scissors. The jar weighs 1 pound, and its command word is often written on the jar's label. You can use an action to remove the stopper, which releases the spinning blades into a space you can see within 30 feet of you. The knives and scissors fill a cube 10 feet on each side and whirl in place, flaying creatures and objects that enter the cube. When a creature enters the cube for the first time on a turn or starts its turn there, it takes 2d12 piercing damage. You can use a bonus action to speak the command word, returning the blades to the jar. Otherwise, the knives and scissors remain in that space indefinitely.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_verses-of-vengeance", + "fields": { + "name": "Verses of Vengeance", + "desc": "This massive, holy tome is bound in brass with a handle on the back cover. A steel chain dangles from the sturdy metal cover, allowing you to hang the tome from your belt or hook it to your armor. A locked clasp holds the tome closed, securing its contents. You gain a +1 bonus to AC while you wield this tome as a shield. This bonus is in addition to the shield's normal bonus to AC. Alternatively, you can make melee weapon attacks with the tome as if it was a club. If you make an attack using use the tome as a weapon, you lose the shield's bonus to your AC until the start of your next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_vessel-of-deadly-venoms", + "fields": { + "name": "Vessel of Deadly Venoms", + "desc": "This small jug weighs 5 pounds and has a ceramic snake coiled around it. You can use an action to speak a command word to cause the vessel to produce poison, which pours from the snake's mouth. A poison created by the vessel must be used within 1 hour or it becomes inert. The word “blade” causes the snake to produce 1 dose of serpent venom, enough to coat a single weapon. The word “consume” causes the snake to produce 1 dose of assassin's blood, an ingested poison. The word “spit” causes the snake to spray a stream of poison at a creature you can see within 30 feet. The target must make a DC 15 Constitution saving throw. On a failure, the target takes 2d8 poison damage and is poisoned until the end of its next turn. On a success, the target takes half the damage and isn't poisoned. Once used, the vessel can't be used to create poison again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_vestments-of-the-bleak-shinobi", + "fields": { + "name": "Vestments of the Bleak Shinobi", + "desc": "This padded black armor is fashioned in the furtive style of shinobi shōzoku garb. You have advantage on Dexterity (Stealth) checks while you wear this armor. Darkness. While wearing this armor, you can use an action to cast the darkness spell from it with a range of 30 feet. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_vial-of-sunlight", + "fields": { + "name": "Vial of Sunlight", + "desc": "This crystal vial is filled with water from a spring high in the mountains and has been blessed by priests of a deity of healing and light. You can use an action to cause the vial to emit bright light in a 30-foot radius and dim light for an additional 30 feet for 1 minute. This light is pure sunlight, causing harm or discomfort to vampires and other undead creatures that are sensitive to it. The vial can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_vielle-of-weirding-and-warding", + "fields": { + "name": "Vielle of Weirding and Warding", + "desc": "The strings of this bowed instrument never break. You must be proficient in stringed instruments to use this vielle. A creature that attempts to play the instrument without being attuned to it must succeed on a DC 15 Wisdom saving throw or take 2d8 psychic damage. If you play the vielle as the somatic component for a spell that causes a target to become charmed on a failed saving throw, the target has disadvantage on the saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_vigilant-mug", + "fields": { + "name": "Vigilant Mug", + "desc": "An impish face sits carved into the side of this bronze mug, its eyes a pair of clear, blue crystals. The imp's eyes turn red when poison or poisonous material is placed or poured inside the mug.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_vile-razor", + "fields": { + "name": "Vile Razor", + "desc": "This perpetually blood-stained straight razor deals slashing damage instead of piercing damage. You gain a +1 bonus to attack and damage rolls made with this magic weapon. Inhuman Alacrity. While holding the dagger, you can take two bonus actions on your turn, instead of one. Each bonus action must be different; you can’t use the same bonus action twice in a single turn. Once used, this property can’t be used again until the next dusk. Unclean Cut. When you hit a creature with a melee attack using the dagger, you can use a bonus action to deal an extra 2d4 necrotic damage. If you do so, the target and each of its allies that can see this attack must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. Once used, this property can’t be used again until the next dusk. ", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_void-touched-buckler", + "fields": { + "name": "Void-Touched Buckler", + "desc": "This simple wood and metal buckler belonged to an adventurer slain by a void dragon wyrmling (see Tome of Beasts). It sat for decades next to a small tear in the fabric of reality, which led to the outer planes. It has since become tainted by the Void. While wielding this shield, you have a +1 bonus to AC. This bonus is in addition to the shield’s normal bonus to AC. Invoke the Void. While wielding this shield, you can use an action to invoke the shield’s latent Void energy for 1 minute, causing a dark, swirling aura to envelop the shield. For the duration, when a creature misses you with a weapon attack, it must succeed on a DC 17 Wisdom saving throw or be frightened of you until the end of its next turn. In addition, when a creature hits you with a weapon attack, it has advantage on weapon attack rolls against you until the end of its next turn. You can’t use this property of the shield again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_voidskin-cloak", + "fields": { + "name": "Voidskin Cloak", + "desc": "This pitch-black cloak absorbs light and whispers as it moves. It feels like thin leather with a knobby, scaly texture, though none of that detail is visible to the eye. While you wear this cloak, you have resistance to necrotic damage. While the hood is up, your face is pooled in shadow, and you can use a bonus action to fix your dark gaze upon a creature you can see within 60 feet. If the creature can see you, it must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once a creature succeeds on its saving throw, it can't be affected by the cloak again for 24 hours. Pulling the hood up or down requires an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_voidwalker", + "fields": { + "name": "Voidwalker", + "desc": "This band of tarnished silver bears no ornament or inscription, but it is icy cold to the touch. The patches of dark corrosion on the ring constantly, but subtly, move and change; though, this never occurs while anyone observes the ring. While wearing Voidwalker, you gain the benefits of a ring of free action and a ring of resistance (cold). It has the following additional properties. The ring is clever and knows that most mortals want nothing to do with the Void directly. It also knows that most of the creatures with strength enough to claim it will end up in dire straits sooner or later. It doesn't overplay its hand trying to push a master to take a plunge into the depths of the Void, but instead makes itself as indispensable as possible. It provides counsel and protection, all the while subtly pushing its master to take greater and greater risks. Once it's maneuvered its wearer into a position of desperation, generally on the brink of death, Voidwalker offers a way out. If the master accepts, it opens a gate into the Void, most likely sealing the creature's doom.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-accompaniment", + "fields": { + "name": "Wand of Accompaniment", + "desc": "Tiny musical notes have been etched into the sides of this otherwise plain, wooden wand. It has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand disintegrates with a small bang. Dance. While holding the wand, you can use an action to expend 3 charges to cast the irresistible dance spell (save DC 17) from it. If the target is in the area of the Song property of this wand, it has disadvantage on the saving throw. Song. While holding the wand, you can use an action to expend 1 charge to cause the area within a 30-foot radius of you to fill with music for 1 minute. The type of music played is up to you, but it is performed flawlessly. Each creature in the area that can hear the music has advantage on saving throws against being deafened and against spells and effects that deal thunder damage.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-air-glyphs", + "fields": { + "name": "Wand of Air Glyphs", + "desc": "While holding this thin, metal wand, you can use action to cause the tip to glow. When you wave the glowing wand in the air, it leaves a trail of light behind it, allowing you to write or draw on the air. Whatever letters or images you make hang in the air for 1 minute before fading away.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-bristles", + "fields": { + "name": "Wand of Bristles", + "desc": "This wand is made from the bristles of a giant boar bound together with magical, silver thread. It weighs 1 pound and is 8 inches long. The wand has a strong boar musk scent to it, which is difficult to mask and is noticed by any creature within 10 feet of you that possesses the Keen Smell trait. The wand is comprised of 10 individual bristles, and as long as the wand has 1 bristle, it regrows 2 bristles daily at dawn. While holding the wand, you can use your action to remove bristles to cause one of the following effects. Ghostly Charge (3 bristles). You toss the bristles toward one creature you can see. A phantom giant boar charges 30 feet toward the creature. If the phantom’s path connects with the creature, the target must succeed on a DC 15 Dexterity saving throw or take 2d8 force damage and be knocked prone. Truffle (2 bristles). You plant the bristles in the ground to conjure up a magical truffle. Consuming the mushroom restores 2d8 hit points.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-depth-detection", + "fields": { + "name": "Wand of Depth Detection", + "desc": "This simple wooden wand has 7 charges and regains 1d6 + 1 expended charges daily at dawn. While holding it, you can use an action to expend 1 charge and point it at a body of water or other liquid. You learn the liquid's deepest point or its average depth (your choice). In addition, you can use an action to expend 1 charge while you are submerged in a liquid to determine how far you are beneath the liquid's surface.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-direction", + "fields": { + "name": "Wand of Direction", + "desc": "This crooked, twisting wand is crafted of polished ebony with a small, silver arrow affixed to its tip. The wand has 3 charges. While holding it, you can expend 1 charge as an action to make the wand remember your path for up to 1,760 feet of movement. You can increase the length of the path the wand remembers by 1,760 feet for each additional charge you expend. When you expend a charge to make the wand remember your current path, the wand forgets the oldest path of up to 1,760 feet that it remembers. If you wish to retrace your steps, you can use a bonus action to activate the wand’s arrow. The arrow guides you, pointing and mentally tugging you in the direction you should go. The wand’s magic allows you to backtrack with complete accuracy despite being lost, unable to see, or similar hindrances against finding your way. The wand can’t counter or dispel magic effects that cause you to become lost or misguided, but it can guide you back in spite of some magic hindrances, such as guiding you through the area of a darkness spell or guiding you if you had activated the wand then forgotten the way due to the effects of the modify memory spell on you. The wand regains all expended charges daily at dawn. If you expend the wand’s last charge, roll a d20. On a roll of 1, the wand straightens and the arrow falls off, rendering it nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-drowning", + "fields": { + "name": "Wand of Drowning", + "desc": "This wand appears to be carved from the bones of a large fish, which have been cemented together. The wand has 3 charges and regains 1d3 expended charges daily at dawn. While holding this wand, you can use an action to expend 1 charge to cause a thin stream of seawater to spray toward a creature you can see within 60 feet of you. If the target can breathe only air, it must succeed on a DC 15 Constitution saving throw or its lungs fill with rancid seawater and it begins drowning. A drowning creature chokes for a number of rounds equal to its Constitution modifier (minimum of 1 round). At the start of its turn after its choking ends, the creature drops to 0 hit points and is dying, and it can't regain hit points or be stabilized until it can breathe again. A successful DC 15 Wisdom (Medicine) check removes the seawater from the drowning creature's lungs, ending the effect.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-extinguishing", + "fields": { + "name": "Wand of Extinguishing", + "desc": "This charred and blackened wooden wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to extinguish a nonmagical flame within 10 feet of you that is no larger than a small campfire. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand transforms into a wand of ignition.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-fermentation", + "fields": { + "name": "Wand of Fermentation", + "desc": "Fashioned out of oak, this wand appears heavily stained by an unknown liquid. The wand has 7 charges and regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand explodes in a puff of black smoke and is destroyed. While holding the wand, you can use an action and expend 1 or more of its charges to transform nonmagical liquid, such as blood, apple juice, or water, into an alcoholic beverage. For each charge you expend, you transform up to 1 gallon of nonmagical liquid into an equal amount of beer, wine, or other spirit. The alcohol transforms back into its original form if it hasn't been consumed within 24 hours of being transformed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-flame-control", + "fields": { + "name": "Wand of Flame Control", + "desc": "This wand is fashioned from a branch of pine, stripped of bark and beaded with hardened resin. The wand has 3 charges. If you use the wand as an arcane focus while casting a spell that deals fire damage, you can expend 1 charge as part of casting the spell to increase the spell's damage by 1d4. In addition, while holding the wand, you can use an action to expend 1 of its charges to cause one of the following effects: - Change the color of any flames within 30 feet.\n- Cause a single flame to burn lower, halving the range of light it sheds but burning twice as long.\n- Cause a single flame to burn brighter, doubling the range of the light it sheds but halving its duration. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand bursts into flames and burns to ash in seconds.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-giggles", + "fields": { + "name": "Wand of Giggles", + "desc": "This wand is tipped with a feather. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges and point the wand at a humanoid you can see within 30 feet of you. The target must succeed on a DC 10 Charisma saving throw or be forced to giggle for 1 minute. Giggling doesn't prevent a target from taking actions or moving. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Tears.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-guidance", + "fields": { + "name": "Wand of Guidance", + "desc": "This slim, metal wand is topped with a cage shaped like a three-sided pyramid. An eye of glass sits within the pyramid. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the guidance spell from it. The wand regains all expended charges at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Resistance.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-harrowing", + "fields": { + "name": "Wand of Harrowing", + "desc": "The tips of this twisted wooden wand are exceptionally withered. The wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand disintegrates into useless white powder. Affliction. While holding the wand, you can use an action to expend 1 charge to cause a creature you can see within 60 feet of you to become afflicted with unsightly, weeping sores. The target must succeed on a DC 15 Constitution saving throw or have disadvantage on all Dexterity and Charisma checks for 1 minute. An afflicted creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Pain. While holding the wand, you can use an action to expend 3 charges to cause a creature you can see within 60 feet of you to become wracked with terrible pain. The target must succeed on a DC 15 Constitution saving throw or take 4d6 necrotic damage, and its movement speed is halved for 1 minute. A pained creature can repeat the saving throw at the end of each of its turns, ending the effect on itself a success. If the target is also suffering from the Affliction property of this wand, it has disadvantage on the saving throw.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-ignition", + "fields": { + "name": "Wand of Ignition", + "desc": "The cracks in this charred and blackened wooden wand glow like live coals, but the wand is merely warm to the touch. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to set fire to one flammable object or collection of material (a stack of paper, a pile of kindling, or similar) within 10 feet of you that is Small or smaller. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Extinguishing.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-plant-destruction", + "fields": { + "name": "Wand of Plant Destruction", + "desc": "This wand of petrified wood has 7 charges. While holding it, you can use an action to expend up to 3 of its charges to harm a plant or plant creature you can see within 30 feet of you. The target must make a DC 15 Constitution saving throw, taking 2d8 necrotic damage for each charge you expended on a failed save, or half as much damage on a successful one. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand shatters and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-relieved-burdens", + "fields": { + "name": "Wand of Relieved Burdens", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and touch a creature with the wand. If the creature is blinded, charmed, deafened, frightened, paralyzed, poisoned, or stunned, the condition is removed from the creature and transferred to you. You suffer the condition for the remainder of its duration or until it is removed. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand crumbles to dust and is destroyed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-resistance", + "fields": { + "name": "Wand of Resistance", + "desc": "This slim, wooden wand is topped with a small, spherical cage, which holds a pyramid-shaped piece of hematite. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges to cast the resistance spell. The wand regains all expended charges at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Guidance .", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-revealing", + "fields": { + "name": "Wand of Revealing", + "desc": "Crystal beads decorate this wand, and a silver hand, index finger extended, caps it. The wand has 3 charges and regains all expended charges daily at dawn. While holding it, you can use an action to expend 1 of the wand's charges to reveal one creature or object within 120 feet of you that is either invisible or ethereal. This works like the see invisibility spell, except it allows you to see only that one creature or object. That creature or object remains visible as long as it remains within 120 feet of you. If more than one invisible or ethereal creature or object is in range when you use the wand, it reveals the nearest creature or object, revealing invisible creatures or objects before ethereal ones.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-tears", + "fields": { + "name": "Wand of Tears", + "desc": "The top half of this wooden wand is covered in thorns. The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges and point the wand at a humanoid you can see within 30 feet of you. The target must succeed on a DC 10 Charisma saving throw or be forced to cry for 1 minute. Crying doesn't prevent a target from taking actions or moving. The wand regains all expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand transforms into a Wand of Giggles .", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-the-timekeeper", + "fields": { + "name": "Wand of the Timekeeper", + "desc": "This smoothly polished wooden wand is perfectly balanced in the hand. Its grip is wrapped with supple leather strips, and its length is decorated with intricate arcane symbols. When you use it while playing a drum, you have advantage on Charisma (Performance) checks. The wand has 5 charges for the following properties. It regains 1d4 + 1 charges daily at dawn. Erratic. While holding the wand, you can use an action to expend 2 charges to force one creature you can see to re-roll its initiative at the end of each of its turns for 1 minute. An unwilling creature that succeeds on a DC 15 Wisdom saving throw is unaffected. Synchronize. While holding the wand, you can use an action to expend 1 charge to choose one creature you can see who has not taken its turn this round. That creature takes its next turn immediately after yours regardless of its turn in the Initiative order. An unwilling creature that succeeds on a DC 15 Wisdom saving throw is unaffected.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-treasure-finding", + "fields": { + "name": "Wand of Treasure Finding", + "desc": "This wand is adorned with gold and silver inlay and topped with a faceted crystal. The wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For 1 minute, you know the direction and approximate distance of the nearest mass or collection of precious metals or minerals within 60 feet. You can concentrate on a specific metal or mineral, such as silver, gold, or diamonds. If the specific metal or mineral is within 60 feet, you are able to discern all locations in which it is found and the approximate amount in each location. The wand's magic can penetrate most barriers, but it is blocked by 3 feet of wood or dirt, 1 foot of stone, 1 inch of common metal, or a thin sheet of lead. The effect ends if you stop holding the wand. The wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand turns to lead and becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-vapors", + "fields": { + "name": "Wand of Vapors", + "desc": "Green gas swirls inside this slender, glass wand. The wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand shatters into hundreds of crystalline fragments, and the gas within it dissipates. Fog Cloud. While holding the wand, you can use an action to expend 1 or more of its charges to cast the fog cloud spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend. Gaseous Escape. When you are attacked while holding this wand, you can use your reaction to expend 3 of its charges to transform yourself and everything you are wearing and carrying into a cloud of green mist until the start of your next turn. While you are a cloud of green mist, you have resistance to nonmagical damage, and you can’t be grappled or restrained. While in this form, you also can’t talk or manipulate objects, any objects you were wearing or holding can’t be dropped, used, or otherwise interacted with, and you can’t attack or cast spells.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wand-of-windows", + "fields": { + "name": "Wand of Windows", + "desc": "This clear, crystal wand has 3 charges. You can use an action to expend 1 charge and touch the wand to any nonmagical object. The wand causes a portion of the object, up to 1-foot square and 6 inches deep, to become transparent for 1 minute. The effect ends if you stop holding the wand. The wand regains 1d3 expended charges daily at dawn. If you expend the wand's last charge, roll a 1d20. On a 1, the wand slowly becomes cloudy until it is completely opaque and becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ward-against-wild-appetites", + "fields": { + "name": "Ward Against Wild Appetites", + "desc": "Seventeen animal teeth of various sizes hang together on a simple leather thong, and each tooth is dyed a different color using pigments from plants native to old-growth forests. When a beast or monstrosity with an Intelligence of 4 or lower targets you with an attack, it has disadvantage on the attack roll if the attack is a bite. You must be wearing the necklace to gain this benefit.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_warding-icon", + "fields": { + "name": "Warding Icon", + "desc": "This carved piece of semiprecious stone typically takes the form of an angelic figure or a shield carved with a protective rune, and it is commonly worn attached to clothing or around the neck on a chain or cord. While wearing the stone, you have brief premonitions of danger and gain a +2 bonus to initiative if you aren't incapacitated.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_warlocks-aegis", + "fields": { + "name": "Warlock's Aegis", + "desc": "When you attune to this mundane-looking suit of leather armor, symbols related to your patron burn themselves into the leather, and the armor's colors change to those most closely associated with your patron. While wearing this armor, you can use an action and expend a spell slot to increase your AC by an amount equal to your Charisma modifier for the next 8 hours. The armor can't be used this way again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_warrior-shabti", + "fields": { + "name": "Warrior Shabti", + "desc": "Crafted to serve in place of the dead in the afterlife, shabti are often used by the living for their own ends. These 1-foot-tall statuettes are crafted of ceramic, stone, or terracotta and are garbed in gear indicative of their function. If you use an action to speak the command word and throw the shabti to a point on the ground within 30 feet of you, it grows into a Medium construct that performs the tasks for which it was created. If the space where the shabti would grow is occupied by other creatures or objects, or if there isn’t enough space for the shabti, the shabti doesn’t grow. Unless stated otherwise in an individual shabti’s description, a servile shabti uses the statistics of animated armor, except the servile shabti’s Armor Class is 13, and it doesn’t have the Multiattack or Slam actions. When the shabti is motionless, it is indistinguishable from a ceramic, stone, or terracotta statue, rather than a suit of armor. The shabti is friendly to you and your companions, and it acts immediately after you. It understands your languages and obeys your spoken commands (no action required by you unless specified in the shabti’s description). If you issue no commands, the shabti takes the Dodge action and no other actions. The shabti exists for a duration specific to each shabti. At the end of the duration, it reverts to its statuette form. It reverts to a statuette early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the shabti becomes a statuette again, its property can't be used again until a certain amount of time has passed, as specified in the shabti’s description. Crafter Shabti (Uncommon). This shabti wears a leather apron and carries the tools of its trade. Each crafting shabti is skilled in a single craft— weaponsmithing, pottery, carpentry, or another trade—and has proficiency with the appropriate artisan’s tools. You can use an action to command the shabti to craft a single, nonmagical item within its skill set, so long as you provide it the raw materials to do so. The shabti works at incredible speeds, needing only 10 minutes per 100 gp value of the item to finish its task. A crafting shabti can never create magic items. Once it completes its task, the shabti reverts to statuette form, and it can’t be used again until a number of hours have passed equal to twice the market value in gold pieces of the item crafted (minimum of 10 hours). Defender Shabti (Uncommon). This shabti carries a shield, increasing its AC by 2. You can use a bonus action to command the shabti to either defend you or harass an enemy you can see within 30 feet of you. If the shabti defends you, each creature within 5 feet of the shabti has disadvantage on melee weapon attack rolls against you. If the shabti harasses a creature, each creature within 5 feet of the shabti has advantage on melee weapon attack rolls against that creature. The shabti remains active for up to 8 hours, after which it reverts to statuette form and can’t be used again until 3 days have passed. Digger Shabti (Uncommon). The shabti carries a shovel and pick. You can command the shabti to excavate earthworks to your specifications. The shabti can manipulate a 10-foot cube of earth or mud in any fashion (digging a hole or trench, raising a rampart, or similar), which takes 1 minute to complete. The shabti can manipulate a 10-foot cube of stone in a similar fashion, but it takes 10 minutes to complete. The shabti can work for up to 1 hour before reverting to statuette form. Once used, the shabti can’t be used again until 2 days have passed. Farmer Shabti (Rare). This shabti carries farming implements. If you activate it in an area with sufficient soil and a climate suitable for growing crops, the shabti begins tilling the earth and planting seeds it carries, which are magically replenished during its time in statuette form. The shabti tends its field, magically bringing the crops to full growth and harvesting them in a period of 8 hours. The yield from the harvest is enough to feed up to twelve creatures for 7 days, and the crops remain edible for 30 days before perishing. Alternately, the shabti can spend 10 minutes planting magical crops. The magical crops take 30 minutes to grow and harvest and 30 minutes to consume. Up to twelve creatures can consume the magical crops, gaining benefits as if partaking in a heroes' feast. The benefits don’t set in until 30 minutes after the crops were harvested, and any uneaten crops disappear at that time. Once the shabti is used to perform either function, the shabti returns to statuette form, and it can’t be used again until 30 days have passed. Healer Shabti (Very Rare). This shabti is dressed in scholarly robes and carries a bag of medical supplies. It is proficient with a healer’s kit, has Medicine +7, and tends to the wounds of you and your companions. If directed to administer care when you take a short rest, the shabti can tend the wounds of up to six creatures over the course of the hour. Each creature that spends Hit Dice to regain hit points during that short rest increases the amount gained per Hit Die by 2, up to the maximum number that can be rolled. The shabti follows you and tends to the wounds of you and your companions, as directed, for up to 8 hours before reverting to statuette form. While the shabti is active, you can use a bonus action to command it to cast cure wounds (4th-level version), lesser restoration, or protection from poison on one creature you can see within 30 feet of you on its next turn. The shabti can cast each spell only once. When it has cast all three spells, the shabti reverts to statuette form, even if its normal duration hasn’t ended. Once the shabti has been used, it can’t be used again until 5 days have passed. Warrior Shabti (Rare). This shabti wields a spear and carries a shield, increasing its AC by 2. This shabti has the animated armor’s Multiattack and Slam actions, except the shabti’s Slam attack deals piercing damage instead of the bludgeoning damage normal for the animated armor’s Slam attack. This shabti can understand and carry out fairly complex commands, such as standing watch while you and your companions rest or guarding a room and letting only specific creatures in or out. The shabti follows you and acts as directed for up to 8 hours or until it is reduced to 0 hit points, at which point it returns to statuette form. Once the shabti has been used, it can’t be used again until 5 days have passed.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wave-chain-mail", + "fields": { + "name": "Wave Chain Mail", + "desc": "The rows of chain links of this armor seem to ebb and flow like waves while worn. Attacks against you have disadvantage while at least half of your body is submerged in water. In addition, when you are attacked, you can turn all or part of your body into water as a reaction, gaining immunity to bludgeoning, piercing, and slashing damage from nonmagical weapons, until the end of the attacker's turn. Once used, this property of the armor can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wayfarers-candle", + "fields": { + "name": "Wayfarer's Candle", + "desc": "This beeswax candle is stamped with a holy symbol, typically one of a deity associated with light or protection. When lit, it sheds light and heat as a normal candle for up to 1 hour, but it can't be extinguished by wind of any force. It can be blown out or extinguished only by the creature holding it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_web-arrows", + "fields": { + "name": "Web Arrows", + "desc": "Carvings of spiderwebs decorate the arrowhead and shaft of these arrows, which always come in pairs. When you fire the arrows from a bow, they become the two anchor points for a 20-foot cube of thick, sticky webbing. Once you fire the first arrow, you must fire the second arrow within 1 minute. The arrows must land within 20 feet of each other, or the magic fails. The webs created by the arrows are difficult terrain and lightly obscure the area. Each creature that starts its turn in the webs or enters them during its turn must make a DC 13 Dexterity saving throw. On a failed save, the creature is restrained as long as it remains in the webs or until it breaks free. A creature, including the restrained creature, can take its action to break the creature free from the webbing by succeeding on a DC 13 Strength check. The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_webbed-staff", + "fields": { + "name": "Webbed Staff", + "desc": "This staff is carved of ebony and wrapped in a net of silver wire. While holding it, you can't be caught in webs of any sort and can move through webs as if they were difficult terrain. This staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a 1d20. On a 1, spidersilk surrounds the staff in a cocoon then quickly unravels itself and the staff, destroying the staff.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_whip-of-fangs", + "fields": { + "name": "Whip of Fangs", + "desc": "The skin of a large asp is woven into the leather of this whip. The asp's head sits nestled among the leather tassels at its tip. You gain a +1 bonus to attack and damage rolls made with this magic weapon. When you hit with an attack using this magic weapon, the target takes an extra 1d4 poison damage and must succeed on a DC 13 Constitution saving throw or be poisoned until the end of its next turn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_whispering-cloak", + "fields": { + "name": "Whispering Cloak", + "desc": "This cloak is made of black, brown, and white bat pelts sewn together. While wearing it, you have blindsight out to a range of 60 feet. While wearing this cloak with its hood up, you transform into a creature of pure shadow. While in shadow form, your Armor Class increases by 2, you have advantage on Dexterity (Stealth) checks, and you can move through a space as narrow as 1 inch wide without squeezing. You can cast spells normally while in shadow form, but you can't make ranged or melee attacks with nonmagical weapons. In addition, you can't pick up objects, and you can't give objects you are wearing or carrying to others. This effect lasts up to 1 hour. Deduct time spent in shadow form in increments of 1 minute from the total time. After it has been used for 1 hour, the cloak can't be used in this way again until the next dusk, when its time limit resets. Pulling the hood up or down requires an action.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_whispering-powder", + "fields": { + "name": "Whispering Powder", + "desc": "A paper envelope contains enough of this fine dust for one use. You can use an action to sprinkle the dust on the ground in up to four contiguous spaces. When a Small or larger creature steps into one of these spaces, it must make a DC 13 Dexterity saving throw. On a failure, loud squeals, squeaks, and pops erupt with each footfall, audible out to 150 feet. The powder's creator dictates the manner of sounds produced. The first creature to enter the affected spaces sets off the alarm, consuming the powder's magic. Otherwise, the effect lasts as long as the powder coats the area.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_white-ape-hide", + "fields": { + "name": "White Ape Hide", + "desc": "This armor was made from the remains of a White Ape (see Tome of Beasts) that fell in battle. While wearing this armor, you gain a +2 bonus to AC. In addition, the armor has the following properties while you wear it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_white-ape-leather", + "fields": { + "name": "White Ape Leather", + "desc": "This armor was made from the remains of a White Ape (see Tome of Beasts) that fell in battle. While wearing this armor, you gain a +2 bonus to AC. In addition, the armor has the following properties while you wear it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_white-dandelion", + "fields": { + "name": "White Dandelion", + "desc": "When you are attacked or are the target of a spell while holding this magically enhanced flower, you can use a reaction to blow on the flower. It explodes in a flurry of seeds that distracts your attacker, and you add 1 to your AC against the attack or to your saving throw against the spell. Afterwards, the flower wilts and becomes nonmagical.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_white-honey-buckle", + "fields": { + "name": "White Honey Buckle", + "desc": "While wearing this bear head-shaped belt buckle, you can use an action to cast polymorph on yourself, transforming into a type of bear determined by the type of belt buckle you are wearing. While you are in the form of a bear, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don’t need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die. The belt buckle can’t be used this way again until the next dawn. Black Honey Buckle (Uncommon). When you use this belt buckle to cast polymorph on yourself, you transform into a black bear. Brown Honey Buckle (Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a brown bear. White Honey Buckle (Very Rare). When you use this belt buckle to cast polymorph on yourself, you transform into a polar bear.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_windwalker-boots", + "fields": { + "name": "Windwalker Boots", + "desc": "These lightweight boots are made of soft leather. While you wear these boots, you can walk on air as if it were solid ground. Your speed is halved when ascending or descending on the air. Otherwise, you can walk on air at your walking speed. You can use the Dash action as normal to increase your movement during your turn. If you don't end your movement on solid ground, you fall at the end of your turn unless otherwise supported, such as by gripping a ledge or hanging from a rope.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wisp-of-the-void", + "fields": { + "name": "Wisp of the Void", + "desc": "The interior of this bottle is pitch black, and it feels empty. When opened, it releases a black vapor. When you inhale this vapor, your eyes go completely black. For 1 minute, you have darkvision out to a range of 60 feet, and you have resistance to necrotic damage. In addition, you gain a +1 bonus to damage rolls made with a weapon.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_witch-ward-bottle", + "fields": { + "name": "Witch Ward Bottle", + "desc": "This small pottery jug contains an odd assortment of pins, needles, and rosemary, all sitting in a small amount of wine. A bloody fingerprint marks the top of the cork that seals the jug. When placed within a building (as small as a shack or as large as a castle) or buried in the earth on a section of land occupied by humanoids (as small as a campsite or as large as an estate), the bottle's magic protects those within the building or on the land against the magic of fey and fiends. The humanoid that owns the building or land and any ally or invited guests within the building or on the land has advantage on saving throws against the spells and special abilities of fey and fiends. If a protected creature fails its saving throw against a spell with a duration other than instantaneous, that creature can choose to succeed instead. Doing so immediately drains the jug's magic, and it shatters.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_witchs-brew", + "fields": { + "name": "Witch's Brew", + "desc": "For 1 minute after drinking this potion, your spell attacks deal an extra 1d4 necrotic damage on a hit. This revolting green potion's opaque liquid bubbles and steams as if boiling.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wolf-brush", + "fields": { + "name": "Wolf Brush", + "desc": "From a distance, this weapon bears a passing resemblance to a fallen tree branch. This unique polearm was first crafted by a famed martial educator and military general from the collected weapons of his fallen compatriots. Each point on this branching spear has a history of its own and is infused with the pain of loss and the glory of military service. When wielded in battle, each of the small, branching spear points attached to the polearm's shaft pulses with a warm glow and burns with the desire to protect the righteous. When not using it, you can fold the branches inward and sheathe the polearm in a leather wrap. You gain a +1 bonus to attack and damage rolls made with this magic weapon. While you hold this weapon, it sheds dim light in a 5-foot radius. You can fold and wrap the weapon as an action, extinguishing the light. While holding or carrying the weapon, you have resistance to piercing damage. The weapon has 10 charges for the following other properties. The weapon regains 1d8 + 2 charges daily at dawn. In addition, it regains 1 charge when exposed to powerful magical sunlight, such as the light created by the sunbeam and sunburst spells, and it regains 1 charge each round it remains exposed to such sunlight. Spike Barrage. While wielding this weapon, you can use an action to expend 1 or more of its charges and sweep the weapon in a small arc to release a barrage of spikes in a 15-foot cone. Each creature in the area must make a DC 17 Dexterity saving throw, taking 1d10 piercing damage for each charge you expend on a failed save, or half as much damage on a successful one. Spiked Wall. While wielding this weapon, you can use an action to expend 6 charges to cast the wall of thorns spell (save DC 17) from it.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wolfbite-ring", + "fields": { + "name": "Wolfbite Ring", + "desc": "This heavy iron ring is adorned with the stylized head of a snarling wolf. The ring has 3 charges and regains 1d3 expended charges daily at dawn. When you make a melee weapon attack while wearing this ring, you can use a bonus action to expend 1 of the ring's charges to deal an extra 2d6 piercing damage to the target. Then, the target must succeed on a DC 15 Strength saving throw or be knocked prone.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_worg-salve", + "fields": { + "name": "Worg Salve", + "desc": "Brewed by hags and lycanthropes, this oil grants you lupine features. Each pot contains enough for three applications. One application grants one of the following benefits (your choice): darkvision out to a range of 60 feet, advantage on Wisdom (Perception) checks that rely on smell, a walking speed of 50 feet, or a new attack option (use the statistics of a wolf 's bite attack) for 5 minutes. If you use all three applications at one time, you can cast polymorph on yourself, transforming into a wolf. While you are in the form of a wolf, you retain your Intelligence, Wisdom, and Charisma scores. In addition, you don't need to maintain concentration on the spell, and the transformation lasts for 1 hour, until you use a bonus action to revert to your normal form, or until you drop to 0 hit points or die.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_worry-stone", + "fields": { + "name": "Worry Stone", + "desc": "This smooth, rounded piece of semiprecious crystal has a thumb-sized groove worn into one side. Physical contact with the stone helps clear the mind and calm the nerves, promoting success. If you spend 1 minute rubbing the stone, you have advantage on the next ability check you make within 1 hour of rubbing the stone. Once used, the stone can't be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wraithstone", + "fields": { + "name": "Wraithstone", + "desc": "This stone is carved from petrified roots to reflect the shape and visage of a beast. The stone holds the spirit of a sacrificed beast of the type the stone depicts. A wraithstone is often created to grant immortal life to a beloved animal companion or to banish a troublesome predator. The creature's essence stays within until the stone is broken, upon which point the soul is released and the creature can't be resurrected or reincarnated by any means short of a wish spell. While attuned to and carrying this item, a spectral representation of the beast walks beside you, resembling the sacrificed creature's likeness in its prime. The specter follows you at all times and can be seen by all. You can use a bonus action to dismiss or summon the specter. So long as you carry this stone, you can interact with the creature as if it were still alive, even speaking to it if it is able to speak, though it can't physically interact with the material world. It can gesture to indicate directions and communicate very basic single-word ideas to you telepathically. The stone has a number of charges, depending on the size of the creature stored within it. The stone has 6 charges if the creature is Large or smaller, 10 charges if the creature is Huge, and 12 charges if the creature is Gargantuan. After all of the stone's charges have been used, the beast's spirit is completely drained, and the stone becomes a nonmagical bauble. As a bonus action, you can expend 1 charge to cause one of the following effects:", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_wrathful-vapors", + "fields": { + "name": "Wrathful Vapors", + "desc": "Roiling vapors of red, orange, and black swirl in a frenzy of color inside a sealed glass bottle. As an action, you can open the bottle and empty its contents within 5 feet of you or throw the bottle up to 20 feet, shattering it on impact. If you throw it, make a ranged attack against a creature or object, treating the bottle as an improvised weapon. When you open or break the bottle, the smoke releases in a 20-foot-radius sphere that dissipates at the end of your next turn. A creature that isn't an undead or a construct that enters or starts its turn in the area must succeed on a DC 13 Wisdom saving throw or be overcome with rage for 1 minute. On its turn, a creature overcome with rage must attack the creature nearest to it with whatever melee weapon it has on hand, moving up to its speed toward the target, if necessary. The raging creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_zephyr-shield", + "fields": { + "name": "Zephyr Shield", + "desc": "This round metal shield is painted bright blue with swirling white lines across it. You gain a +2 bonus to AC while you wield this shield. This is an addition to the shield's normal AC bonus. Air Bubble. Whenever you are immersed in a body of water while holding this shield, you can use a reaction to envelop yourself in a 10-foot radius bubble of fresh air. This bubble floats in place, but you can move it up to 30 feet during your turn. You are moved with the bubble when it moves. The air within the bubble magically replenishes itself every round and prevents foreign particles, such as poison gases and water-borne parasites, from entering the area. Other creatures can leave or enter the bubble freely, but it collapses as soon as you exit it. The exterior of the bubble is immune to damage and creatures making ranged attacks against anyone inside the bubble have disadvantage on their attack rolls. The bubble lasts for 1 minute or until you exit it. Once used, this property can’t be used again until the next dawn. Sanctuary. You can use a bonus action to cast the sanctuary spell (save DC 13) from the shield. This spell protects you from only water elementals and other creatures composed of water. Once used, this property can’t be used again until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_ziphian-eye-amulet", + "fields": { + "name": "Ziphian Eye Amulet", + "desc": "This gold amulet holds a preserved eye from a Ziphius (see Creature Codex). It has 3 charges, and it regains all expended charges daily at dawn. While wearing this amulet, you can use a bonus action to speak its command word and expend 1 of its charges to create a brief magical bond with a creature you can see within 60 feet of you. The target must succeed on a DC 15 Wisdom saving throw or be magically bonded with you until the end of your next turn. While bonded in this way, you can choose to have advantage on attack rolls against the target or cause the target to have disadvantage on attack rolls against you.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "vom_zipline-ring", + "fields": { + "name": "Zipline Ring", + "desc": "This plain gold ring features a magnificent ruby. While wearing the ring, you can use an action to cause a crimson zipline of magical force to extend from the gem in the ring and attach to up to two solid surfaces you can see. Each surface must be within 150 feet of you. Once the zipline is connected, you can use a bonus action to magically travel up to 50 feet along the line between the two surfaces. You can bring along objects as long as their weight doesn't exceed what you can carry. While the zipline is active, you remain suspended within 5 feet of the line, floating off the ground at least 3 inches, and you can't move more than 5 feet away from the zipline. When you magically travel along the line, you don't provoke opportunity attacks. The hand wearing the ring must be pointed at the line when you magically travel along it, but you otherwise can act normally while the zipline is active. You can use a bonus action to end the zipline. When the zipline has been active for a total of 1 minute, the ring's magic ceases to function until the next dawn.", + "document": "vom", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +} +] diff --git a/data/v2/kobold-press/wz/Spell.json b/data/v2/kobold-press/wz/Spell.json index b28c02e6..e88fb311 100644 --- a/data/v2/kobold-press/wz/Spell.json +++ b/data/v2/kobold-press/wz/Spell.json @@ -1,1351 +1,1351 @@ [ - { - "model": "api_v2.spell", - "pk": "wz_abrupt-hug", - "fields": { - "name": "Abrupt Hug", - "desc": "You or the creature taking the Attack action can immediately make an unarmed strike. In addition to dealing damage with the unarmed strike, the target can grapple the creature it hit with the unarmed strike.", - "document": "wz", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_avert-evil-eye", - "fields": { - "name": "Avert Evil Eye", - "desc": "The evil eye takes many forms. Any incident of bad luck can be blamed on it, especially if a character recently displayed arrogance or selfishness. When avert evil eye is cast, the recipient has a small degree of protection against the evil eye for up to 1 hour. While the spell lasts, the target of the spell has advantage on saving throws against being blinded, charmed, cursed, and frightened. During the spell's duration, the target can also cancel disadvantage on one d20 roll the target is about to make, but doing so ends the spell's effect.", - "document": "wz", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_bardo", - "fields": { - "name": "Bardo", - "desc": "You capture some of the fading life essence of the triggering creature, drawing on the energy of the tenuous moment between life and death. You can then use this essence to immediately harm or help a different creature you can see within range. If you choose to harm, the target must make a Wisdom saving throw. The target takes psychic damage equal to 6d8 + your spellcasting ability modifier on a failed save, or half as much damage on a successful one. If you choose to help, the target regains hit points equal to 3d8 + your spellcasting ability modifier. This spell can't be triggered by the death of a construct or an undead creature, and it can't restore hit points to constructs or undead.", - "document": "wz", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_battle-chant", - "fields": { - "name": "Battle Chant", - "desc": "You bless up all allied creatures of your choice within range. Whenever a target lands a successful hit before the spell ends, the target can add 1 to the damage roll. When cast by multiple casters chanting in unison, the same increases to 2 points added to the damage roll.", - "document": "wz", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can extend the range by 10 feet for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "5 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_bombardment-of-stings", - "fields": { - "name": "Bombardment of Stings", - "desc": "Each creature in a 30-foot cone must make a Dexterity saving throw. On a failed save, a creature takes 4d6 piercing damage and is poisoned for 1 minute. On a successful save, a creature takes half as much damage and isn't poisoned. At the end of each of its turns, a poisoned target can make a Constitution saving throw. On a success, the condition ends on the target.", - "document": "wz", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "piercing" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_charming-aesthetics", - "fields": { - "name": "Charming Aesthetics", - "desc": "You affect a group of the same plants or animals within range, giving them a harmless and attractive appearance. If a creature studies one of the enchanted plants or animals, it must make a Wisdom saving throw. If it fails the saving throw, it is charmed by the plant or animal until the spell ends or until another creature other than one of its allies does anything harmful to it. While the creature is charmed and stays within sight of the enchanted plants or animals, it has disadvantage on Wisdom (Perception) checks as well as checks to notice signs of danger. If the charmed creature attempts to move out of sight of the spell's subject, it must make a second Wisdom saving throw. If it fails the saving throw, it refuses to move out of sight of the spell's subject. It can repeat this save once per minute. If it succeeds, it can move away, but it remains charmed.", - "document": "wz", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional group of plants or animals for each slot level above 4th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 day", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_child-of-light-and-darkness", - "fields": { - "name": "Child of Light and Darkness", - "desc": "Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 1-10, you take the form of a humanoid made of pure, searing light. On a roll of 11-20, you take the form of a humanoid made of bone-chilling darkness. In both forms, you have immunity to bludgeoning, piercing, and slashing damage from nonmagical attacks, and a creature that attacks you has disadvantage on the attack roll. You gain additional benefits while in each form: Light Form. You shed bright light in a 60-foot radius and dim light for an additional 60 feet, you are immune to fire damage, and you have resistance to radiant damage. Once per turn, as a bonus action, you can teleport to a space you can see within the light you shed. Darkness Form. You are immune to cold damage, and you have resistance to necrotic damage. Once per turn, as a bonus action, you can target up to three Large or smaller creatures within 30 feet of you. Each target must succeed on a Strength saving throw or be pulled or pushed (your choice) up to 20 feet straight toward or away from you.", - "document": "wz", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_commanders-pavilion", - "fields": { - "name": "Commander's Pavilion", - "desc": "Creates a command tent 30 feet by 30 feet with a peak height of 20 feet. It is filled with items a military commander might require of a headquarters tent on a campaign, such as maps of the area, a spyglass, a sandglass, materials for correspondence, references for coding and decoding messages, books on history and strategy relevant to the area, banners, spare uniforms, and badges of rank. Such minor mundane items dissipate once the spell's effect ends. Recasting the spell on subsequent days maintains the existing tent for another 24 hours.", - "document": "wz", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_devouring-darkness", - "fields": { - "name": "Devouring Darkness", - "desc": "Terrifying and nightmarish monsters exist within the unknown void of the in-between. Choose up to six points you can see within range. Voidlike, magical darkness spreads from each point to fill a 10-footradius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and no light, magical or nonmagical, can illuminate it.\n Each creature inside a sphere when this spell is cast must make a Dexterity saving throw. On a failed save, the creature takes 6d10 piercing damage and 5d6 psychic damage and is restrained until it breaks free as unseen entities bite and tear at it from the Void. Once a successful save, the creature takes half as much damage and isn't restrained. A restrained creature can use its action to make a Strength check against your spell save DC. If it succeeds, it is no longer restrained.\n When a creature enters a sphere for the first time on a turn or starts its turn in a sphere, that creature must make an Intelligence saving throw. The creature takes 5d6 psychic damage on a failed save, or half as much damage on a successful one.\n Once created, the spheres can't be moved. A creature in overlapping spheres doesn't suffer additional effects for being in more than one sphere at a time.", - "document": "wz", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 6, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d10", - "damage_types": [ - "piercing" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "wz_door-of-the-far-traveler", - "fields": { - "name": "Door of the Far Traveler", - "desc": "You conjure a door to the destination of your choice that lasts for the duration or until dispelled. You sketch the outline of the door with chalk on any hard surface (a wall, a cliffside, the deck of a ship, etc.) and scribe sigils of power around its outline. The doorway must be at least 1 foot wide by 2 feet tall and can be no larger than 5 feet wide by 10 feet tall. Once the door is drawn, place the knob appropriately; it attaches magically to the surface and your drawing becomes a real door to the spell's destination. The doorway remains functional for the spell's duration. During that time, anyone can open or close the door and pass through it in either direction.\n The destination can be on any plane of existence. It must be familiar to you, and your level of familiarity with it determines the accuracy of the spell (determined by the GM). If it's a place you've visited, you can expect 100 percent accuracy. If it's been described to you by someone who was there, you might arrive in the wrong room or even the wrong structure, depending on how detailed their description was. If you've only heard about the destination third-hand, you may end up in a similar structure that's in a very different locale.\n *Door of the far traveler* doesn't create a doorway at the destination. It connects to an existing, working door. It can't, for example, take you to an open field or a forest with no structures (unless someone built a doorframe with a door in that spot for this specific purpose!). While the spell is in effect, the pre-existing doorway connects only to the area you occupied while casting the spell. If you connected to an existing doorway between a home's parlor and library, for example, and your door leads into the library, then people can still walk through that doorway from the parlor into the library normally. Anyone trying to go the other direction, however, arrives wherever you came from instead of in the parlor.\n Before casting the spell, you must spend one hour etching magical symbols onto the doorknob that will serve as the spell's material component to attune it to your desired destination. Once prepared, the knob remains attuned to that destination until it's used or you spend another hour attuning it to a different location.\n *The door of the far traveler* is dispelled if you remove the knob from the door. You can do this as a bonus action from either side of the door, provided it's shut. If the spell's duration expires naturally, the knob falls to the ground on whichever side of the door you're on. Once the spell ends, the knob loses its attunement to any location and another hour must be spent attuning it before it can be used again.", - "document": "wz", - "level": 8, - "school": "conjuration", - "higher_level": "If you cast this spell using a 9thlevel slot, the duration increases to 12 hours.", - "target_type": "area", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "6 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_eternal-echo", - "fields": { - "name": "Eternal Echo", - "desc": "You gain a portentous voice of compelling power, commanding all undead within 60 feet that fail a Wisdom saving throw. This overrides any prior loyalty to spellcasters such as necromancers or evil priests, and it can nullify the effect of a Turn Undead result from a cleric.", - "document": "wz", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "concentration", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_ethereal-stairs", - "fields": { - "name": "Ethereal Stairs", - "desc": "You create a staircase out of the nothingness of the air. A shimmering staircase 10 feet wide appears and remains for the duration. The staircase ascends at a 45-degree angle to a point as much as 60 feet above the ground. The staircase consists only of steps with no apparent support, unless you choose to have it resemble a stone or wooden structure. Even then, its magical nature is obvious, as it has no color and is translucent, and only the steps have solidity; the rest of it is no more solid than air. The staircase can support up to 10 tons of weight. It can be straight, spiral, or switchback. Its bottom must connect to solid ground, but its top need not connect to anything.", - "document": "wz", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the staircase extends an additional 20 feet for each slot level above 5th.", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "wz_exchanged-knowledge", - "fields": { - "name": "Exchanged Knowledge", - "desc": "When you cast this spell, you open a conduit to the Castle Library, granting access to difficult-to-obtain information. For the spell's duration, you double your proficiency bonus whenever you make an Intelligence check to recall information about any subject. Additionally, you can gain advantage on an Intelligence check to recall information. To do so, you must either sacrifice another lore-filled book or succeed on a Charisma saving throw. On a failed save, the spell ends, and you have disadvantage on all Intelligence checks to recall information for 1 week. A wish spell ends this effect.", - "document": "wz", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_hedgehog-dozen", - "fields": { - "name": "Hedgehog Dozen", - "desc": "Eleven illusory duplicates of the touched creature appear in its space. A creature affected by hedgehog dozen seems to have a dozen arms, shields, and weapons-a swarm of partially overlapping, identical creatures. Until the spell ends, these duplicates move with the target and mimic its actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates. While surrounded by duplicates, a creature gains advantage against any opponent because of the bewildering number of weapons and movements. Each time a creature targets you with an attack during the spell's duration, roll a d8 to determine whether the attack instead targets one of your duplicates. On a roll of 1, it strikes you. On any other roll it removes one of your duplicates; when you have only five duplicates remaining, the spell ends. A creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false as with truesight.", - "document": "wz", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_hypnagogia", - "fields": { - "name": "Hypnagogia", - "desc": "You alter the mental state of one creature you can see within range. The target must make an Intelligence saving throw. If it fails, choose one of the following effects. At the end of each of its turns, the target can make another Intelligence saving throw. On a success, the spell ends on the target. A creature with an Intelligence score of 4 or less isn't affected by this spell.\n ***Sleep Paralysis.*** Overwhelming heaviness and fatigue overcome the creature, slowing it. The creature's speed is halved, and it has disadvantage on weapon attacks.\n ***Phantasmata.*** The creature imagines vivid and terrifying hallucinations centered on a point of your choice within range. For the duration, the creature is frightened, and it must take the Dash action and move away from the point you chose by the safest available route on each of its turns, unless there is nowhere to move.\n ***False Awakening.*** The creature enters a trancelike state of consciousness in which it's not fully aware of its surroundings. It can't take reactions, and it must roll a d4 at the beginning of its turn to determine its behavior. Each time the target takes damage, it makes a new Intelligence saving throw. On a success, the spell ends on the target.\n\n| d4 | Behavior | \n|-----|-----------| \n| 1 | The creature takes the Dash action and uses all of its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. | \n| 2 | The creature uses its action to pantomime preparing for its day: brushing teeth and hair, bathing, eating, or similar activity. | \n| 3 | The creature moves up to its speed toward a randomly determined creature and uses its action to make one melee attack against that creature. If there is no creature within range, the creature does nothing this turn. | \n| 4 | The creature does nothing this turn. |", - "document": "wz", - "level": 4, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "wz_hypnic-jerk", - "fields": { - "name": "Hypnic Jerk", - "desc": "Strange things happen in the mind and body in that moment between waking and sleeping. One of the most common is being startled awake by a sudden feeling of falling. With a snap of your fingers, you trigger that sensation in a creature you can see within range. The target must succeed on a Wisdom saving throw or take 1d6 force damage. If the target fails the saving throw by 5 or more, it drops one object it is holding. A dropped object lands in the creature's space.", - "document": "wz", - "level": 0, - "school": "illusion", - "higher_level": "The spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_inconspicuous-facade", - "fields": { - "name": "Inconspicuous Facade", - "desc": "By means of this spell, you make a target building seem much less important or ostentatious than it is. You can give the target an unremarkable appearance or one that blends in with nearby buildings. By its nature, this spell does not allow you to specify features that would make the building stand out. You also cannot make a building look more opulent to match surrounding buildings. You can make the building appear smaller or larger that its actual size to better fit into its environs. However, these size changes are noticeable with cursory physical inspection as an object will pass through extra illusory space or bump into a seemingly smaller section of the building. A creature can use its action to inspect the building and make an Intelligence (Investigation) check against your spell save DC. If it succeeds, it becomes aware the building has been disguised. In addition to you dispelling inconspicuous facade, the spell ends if the target building is destroyed.", - "document": "wz", - "level": 4, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_march-of-the-dead", - "fields": { - "name": "March of the Dead", - "desc": "This spell animates the recently dead to remove them from a battlefield. Choose one corpse of a Medium or Small humanoid per level of the caster (within range). Your spell imbues the targets with an animating spirit, raising them as construct creatures similar in appearance to flesh golems, though with the strength and abilities of zombies. Dwarves use this to return the bodies of the fallen to clan tombs and to deny the corpses the foul attention of ghouls, necromancers, and similar foes. On each of your turns, you can use a bonus action to mentally command all the creatures you made with this spell if the creatures are within 60 feet of you. You decide what action the creatures will take and where they will move during the next day; you cannot command them to guard. If you issue no commands, the creatures only defend themselves against hostile creatures. Once given an order and direction of march, the creatures continue to follow it until they arrive at the destination you named or until 24 hours have elapsed when the spell ends and the corpses fall lifeless once more. To tell creatures to move for another 24 hours, you must cast this spell on the creatures again before the current 24-hour period ends. This use of the spell reasserts your control over up to 50 creatures you have animated with this spell rather than animating a new one.", - "document": "wz", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional construct creatures for each slot level above 3rd (two creatures/level at 4th, three creatures/level at 5th). Each of the creatures must come from a different corpse.", - "target_type": "creature", - "range": "50 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_mind-maze", - "fields": { - "name": "Mind Maze", - "desc": "Choose a creature you can see within range. It must succeed on an Intelligence saving throw or be mentally trapped in an imagined maze of mirrors for the duration. While trapped in this way, the creature is incapacitated, but it imagines itself alone and wandering through the maze. Externally, it appears dazed as it turns in place and reaches out at nonexistent barriers. Each time the target takes damage, it makes another Intelligence saving throw. On a success, the spell ends.", - "document": "wz", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "up to 1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_mirror-realm", - "fields": { - "name": "Mirror Realm", - "desc": "You transform a mirror into a magical doorway to an extradimensional realm. You and any creatures you designate when you cast the spell can move through the doorway into the realm beyond. For the spell's duration, the mirror remains anchored in the plane of origin, where it can't be broken or otherwise damaged by any mundane means. No creatures other than those you designate can pass through the mirror or see into the mirror realm.\n The realm within the mirror is an exact reflection of the location you left. The temperature is comfortable, and any environmental threats (lava, poisonous gas, or similar) are inert, harmless facsimiles of the real thing. Likewise, magic items reflected in the mirror realm have no magical properties, but those carried into it work normally. Food, drink, and other beneficial items within the mirror realm (reflections of originals in the real world) function as normal, real items; food can be eaten, wine can be drunk, and so on. Only items that were reflected in the mirror at the moment the spell was cast exist inside the mirror realm. Items placed in front of the mirror afterward don't appear in the mirror realm, and creatures never do unless they are allowed in by you. Items found in the mirror realm dissolve into nothingness when they leave it, but the effects of food and drink remain.\n Sound passes through the mirror in both directions. Creatures in the mirror realm can see what's happening in the world, but creatures in the world see only what the mirror reflects. Objects can cross the mirror boundary only while worn or carried by a creature, and spells can't cross it at all. You can't stand in the mirror realm and shoot arrows or cast spells at targets in the world or vice versa.\n The boundaries of the mirror realm are the same as the room or location in the plane of origin, but the mirror realm can't exceed 50,000 square feet (for simplicity, imagine 50 cubes, each cube being 10 feet on a side). If the original space is larger than this, such as an open field or a forest, the boundary is demarcated with an impenetrable, gray fog.\n Any creature still inside the mirror realm when the spell ends is expelled through the mirror into the nearest empty space.\n If this spell is cast in the same spot every day for a year, it becomes permanent. Once permanent, the mirror can't be moved or destroyed through mundane means. You can allow new creatures into the mirror realm (and disallow previous creatures) by recasting the spell within range of the permanent mirror. Casting the spell elsewhere doesn't affect the creation or the existence of a permanent mirror realm; a determined spellcaster could have multiple permanent mirror realms to use as storage spaces, hiding spots, and spy vantages.", - "document": "wz", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": true, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_obfuscate-object", - "fields": { - "name": "Obfuscate Object", - "desc": "While you are in dim light, you cause an object in range to become unobtrusively obscured from the sight of other creatures. For the duration, you have advantage on Dexterity (Sleight of Hand) checks to hide the object. The object can't be larger than a shortsword, and it must be on your person, held in your hand, or otherwise unattended.", - "document": "wz", - "level": 0, - "school": "illusion", - "higher_level": "You can affect two objects when you reach 5th level, three objects at 11th level, and four objects at 17th level.", - "target_type": "object", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_order-of-revenge", - "fields": { - "name": "Order of Revenge", - "desc": "You touch a weapon or a bundle of 30 ammunition, imbuing them with spell energy. Any creature damaged by a touched, affected weapon leaves an invisibly glowing trail of their path until the spell expires. The caster may see this trail by casting revenge's eye or see invisible. Any other caster may see the trail by casting see invisible. Casting dispel magic on an affected creature causes that creature to stop generating a trail, and the trail fades over the next hour.", - "document": "wz", - "level": 3, - "school": "enchantment", - "higher_level": "When you cast the spell using a slot of 4th level or higher, you can target one additional weapon or bundle of ammunition for each slot level above fourth.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour/caster level", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_pierce-the-veil", - "fields": { - "name": "Pierce the Veil", - "desc": "By sketching a shimmering, ethereal doorway in the air and knocking three times, you call forth an otherworldly entity to provide insight or advice. The door swings open and the entity, wreathed in shadow or otherwise obscured, appears at the threshold. It answers up to five questions truthfully and to the best of its ability, but its answers aren't necessarily clear or direct. The entity can't pass through the doorway or interact with anything on your side of the doorway other than by speaking its responses.\n Likewise, creatures on your side of the doorway can't pass through it to the other side or interact with the other side in any way other than asking questions. In addition, the spell allows you and the creature to understand each other's words even if you have no language in common, the same as if you were both under the effects of the comprehend languages spell.\n When you cast this spell, you must request a specific, named entity, a specific type of creature, or a creature from a specific plane of existence. The target creature can't be native to the plane you are on when you cast the spell. After making this request, make an ability check using your spellcasting ability. The DC is 12 if you request a creature from a specific plane; 16 if you request a specific type of creature; or 20 if you request a specific entity. (The GM can choose to make this check for you secretly.) If the spellcasting check fails, the creature that responds to your summons is any entity of the GM's choosing, from any plane. No matter what, the creature is always of a type with an Intelligence of at least 8 and the ability to speak and to hear.", - "document": "wz", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_pratfall", - "fields": { - "name": "Pratfall", - "desc": "You cause a small bit of bad luck to befall a creature, making it look humorously foolish. You create one of the following effects within range: A small, oily puddle appears under the feet of your target, causing it to lose balance. The target must succeed on a Dexterity saving throw or be unable use a bonus action on its next turn as it regains its footing. Tiny particles blow in your target's face, causing it to sneeze. The target must succeed on a Constitution saving throw or have disadvantage on its first attack roll on its next turn. Strobing lights flash briefly before your target's eyes, causing difficulties with its vision. The target must succeed on a Constitution saving throw or its passive Perception is halved until the end of its next turn. The target feels the sensation of a quick, mild clap against its ears, briefly disorienting it. The target must succeed on a Constitution saving throw to maintain its concentration. An invisible force sharply tugs on the target's trousers, causing the clothing to slip down. The target must make a Dexterity saving throw. On a failed save, the target has disadvantage on its next attack roll with a two-handed weapon or loses its shield bonus to its Armor Class until the end of its next turn as it uses one hand to gather its slipping clothing. Only one of these effects can be used on a single creature at a time.", - "document": "wz", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_putrescent-faerie-circle", - "fields": { - "name": "Putrescent Faerie Circle", - "desc": "You create a 20-foot-diameter circle of loosely-packed toadstools that spew sickly white spores and ooze a tarry substance. At the start of each of your turns, each creature within the circle must make a Constitution saving throw. A creature takes 4d8 necrotic damage on a failed save, or half as much damage on a successful one. If a creature attempts to pass through the ring of toadstools, the toadstools release a cloud of spores, and the creature must make a Constitution saving throw. On a failure, the creature takes 8d8 poison damage and is poisoned for 1 minute. On a success, the creature takes half as much damage and isn't poisoned. While a creature is poisoned, it is paralyzed. It can attempt a new Constitution saving throw at the end of each of its turns to remove the paralyzed condition (but not the poisoned condition).", - "document": "wz", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_reassemble", - "fields": { - "name": "Reassemble", - "desc": "You touch an undead creature (dust and bones suffice) destroyed not more than 10 hours ago; the creature is surrounded by purple fire for 1 round and is returned to life with full hit points. This spell has no effect on any creatures except undead, and it cannot restore a lich whose phylactery has been destroyed, a vampire destroyed by sunlight, any undead whose remains are destroyed by fire, acid, or holy water, or any remains affected by a gentle repose spell. This spell doesn't remove magical effects. If they aren't removed prior to casting, they return when the undead creature comes back to life. This spell closes all mortal wounds but doesn't restore missing body parts. If the creature doesn't have body parts or organs necessary for survival, the spell fails. Sudden reassembly is an ordeal involving enormous expenditure of necrotic energy; ley line casters within 5 miles are aware that some great shift in life forces has occurred and a sense of its direction. The target takes a -4 penalty to all attacks, saves, and ability checks. Every time it finishes a long rest, the penalty is reduced by 1 until it disappears.", - "document": "wz", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_reciprocating-portal", - "fields": { - "name": "Reciprocating Portal", - "desc": "With a gesture and a muttered word, you cause an inky black, circular portal to open on the ground beneath one or more creatures. You can create one 15-foot-diameter portal, two 10-foot-diameter portals, or six 5-foot-diameter portals. A creature that's standing where you create a portal must make a Dexterity saving throw. On a failed save, the creature falls through the portal, disappears into a demiplane where it is stunned as it falls endlessly, and the portal closes.\n At the start of your next turn, the creatures that failed their saving throws fall through matching portals directly above their previous locations. A falling creature lands prone in the space it once occupied or the nearest unoccupied space and takes falling damage as if it fell 60 feet, regardless of the distance between the exit portal and the ground. Flying and levitating creatures can't be affected by this spell.", - "document": "wz", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_remove-insulation", - "fields": { - "name": "Remove Insulation", - "desc": "You target a creature within range, and that creature must succeed on a Fortitude saving throw or become less resistant to lightning damage. A creature with immunity to lightning damage has advantage on this saving throw. On a failure, a creature with immunity to lightning damage instead has resistance to lightning damage for the spell's duration, and a creature with resistance to lightning damage loses its resistance for the duration. A creature without resistance to lightning damage that fails its saving throw takes double damage from lightning for the spell's duration. Remove curse or similar magic ends this spell.", - "document": "wz", - "level": 4, - "school": "necromancy", - "higher_level": "If you cast this spell using a spell slot of 6th level or higher, the duration is 24 hours. If you use a spell slot of 8th level or higher, a creature with immunity to lightning damage no longer has advantage on its saving throw. If you use a spell slot of 9th level or higher, the spell lasts until it is dispelled.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_revenges-eye", - "fields": { - "name": "Revenge's Eye", - "desc": "You touch a creature's visual organs and grant them the ability to see the trail left by creatures damaged by a weapon you cast invisible creatures; it only reveals trails left by those affected by order of revenge also cast by the spellcaster.", - "document": "wz", - "level": 2, - "school": "divination", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target +1 creature for each slot level above second.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_rise-of-the-green", - "fields": { - "name": "Rise of the Green", - "desc": "The spell gives life to existing plants in range. If there are no plants in range, the spell creates undergrowth and trees that persist for the duration. One of the trees becomes a treant friendly to you and your companions. Roll initiative for the treant, which has its own turn. It obeys any verbal commands that you issue to it. If you don't issue it any commands, it defends itself from hostile creatures but otherwise takes no actions. The animated undergrowth creates difficult terrain for your enemies. Additionally, at the beginning of each of your turns, all creatures that are on the ground in range must succeed on a Strength saving throw or become restrained until the spell ends. A restrained creature can use an action to make a Strength (Athletics) check against your spell save DC, ending the effect on itself on a success. If a creature is restrained by plants at the beginning of your turn, it takes 1d6 bludgeoning damage. Finally, the trees swing at each enemy in range, requiring each creature to make a Dexterity saving throw. A creature takes 6d6 bludgeoning damage on a failed save or half as much damage on a successful one. You can use a bonus action to recenter the spell on yourself. This does not grow additional trees in areas that previously had none.", - "document": "wz", - "level": 8, - "school": "evocation", - "higher_level": "When you cast this spell using a 9th-level slot, an additional tree becomes a treant, the undergrowth deals an additional 1d6 bludgeoning damage, and the trees inflict an additional 2d6 bludgeoning damage.", - "target_type": "creature", - "range": "180 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "1d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_rive", - "fields": { - "name": "Rive", - "desc": "You pull on the filaments of transition and possibility to tear at your enemies. Choose a creature you can see within range and make a ranged spell attack. On a hit, the target takes 5d8 cold damage as strands of icy nothingness whip from your outstretched hand to envelop it. If the target isn't native to the plane you're on, it takes an extra 3d6 psychic damage and must succeed on a Constitution saving throw or be stunned until the end of its next turn.", - "document": "wz", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "5d8", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_shadow-adaptation", - "fields": { - "name": "Shadow Adaptation", - "desc": "Your flesh and clothing pale and become faded as your body takes on a tiny fragment of the Shadow Realm. For the duration of this spell, you are immune to shadow corruption and have resistance to necrotic damage. In addition, you have advantage on saving throws against effects that reduce your Strength score or hit point maximum, such as a shadow's Strength Drain or the harm spell.", - "document": "wz", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_skull-road", - "fields": { - "name": "Skull Road", - "desc": "You conjure a portal linking an unoccupied space you can see within range to an imprecise location on the plane of Evermaw. The portal is a circular opening, which you can make 5-20 feet in diameter. You can orient the portal in any direction you choose. The portal lasts for the duration. If your casting is at 5th level, this opens a pathway to the River of Tears, to the Vitreous Mire, or to the Plains of Bone-travel to a settlement can take up to 7 days (1d6+1). If cast at 7th level, the skull road spell opens a portal to a small settlement of gnolls, ghouls, or shadows on the plane near the Eternal Palace of Mot or a similar settlement. Undead casters can use this spell in the reverse direction, opening a portal from Evermaw to the mortal world, though with similar restrictions. At 5th level, the portal opens in a dark forest, cavern, or ruins far from habitation. At 7th level, the skull road leads directly to a tomb, cemetery, or mass grave near a humanoid settlement of some kind.", - "document": "wz", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_storm-of-axes", - "fields": { - "name": "Storm of Axes", - "desc": "Deep Magic: battle You conjure up dozens of axes and direct them in a pattern in chopping, whirling mayhem. The blades fill eight 5-foot squares in a line 40 feet long or in a double-strength line 20 feet long and 10 deep. The axes cause 6d8 slashing damage to creatures in the area at the moment the spell is cast or half damage with a successful Dexterity saving throw. By maintaining concentration, you can move the swarm of axes up to 20 feet per round in any direction you wish. If the storm of axes moves into spaces containing creatures, they immediately must make another Dexterity saving throw or suffer damage again.", - "document": "wz", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "25 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "concentration + 1 round", - "shape_type": "line", - "shape_magnitude": 5, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_subliminal-aversion", - "fields": { - "name": "Subliminal Aversion", - "desc": "You ward a creature within range against attacks by making the choice to hit them painful. When the warded creature is hit with a melee attack from within 5 feet of it, the attacker takes 1d4 psychic damage.", - "document": "wz", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "1d4", - "damage_types": [ - "psychic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_summon-clockwork-beast", - "fields": { - "name": "Summon Clockwork Beast", - "desc": "Deep Magic: clockwork Once per day, you can cast this ritual to summon a Tiny clockwork beast doesn't require air, food, drink, or sleep. When its hit points are reduced to 0, it crumbles into a heap of gears and springs.", - "document": "wz", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "10 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_suppress-regeneration", - "fields": { - "name": "Suppress Regeneration", - "desc": "You temporarily remove the ability to regenerate from a creature you can see within range. The target must make a Constitution saving throw. On a failed save, the target can't regain hit points from the Regeneration trait or similar spell or trait for the duration. The target can receive magical healing or regain hit points from other traits, spells, or actions, as normal. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends on the target.", - "document": "wz", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "wz_threshold-slip", - "fields": { - "name": "Threshold Slip", - "desc": "The threshold of a doorway, the sill of a window, the junction where the floor meets the wall, the intersection of two walls—these are all points of travel for you. When you cast this spell, you can step into the junction of two surfaces, slip through the boundary of the Material Plane, and reappear in an unoccupied space with another junction you can see within 60 feet.\n You can take one willing creature of your size or smaller that you're touching with you. The target junction must have unoccupied spaces for both of you to enter when you reappear or the spell fails.", - "document": "wz", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_toxic-pollen", - "fields": { - "name": "Toxic Pollen", - "desc": "Upon casting this spell, one type of plant within range gains the ability to puff a cloud of pollen based on conditions you supply during casting. If the conditions are met, an affected plant sprays a pollen cloud in a 10-foot-radius sphere centered on it. Creatures in the area must succeed on a Constitution saving throw or become poisoned for 1 minute. At the end of a poisoned creature's turn, it can make a Constitution saving throw. On a success, it is no longer poisoned. A plant can only release this pollen once within the duration.", - "document": "wz", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 year", - "shape_type": "sphere", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_vagrants-nondescript-cloak", - "fields": { - "name": "Vagrant's Nondescript Cloak", - "desc": "You touch a creature. The creature is warded against the effects of locate creature, the caster may determine if the affected creature is within 1,000 feet but cannot determine the direction to the target of vagrant's nondescript cloak. If the creature is already affected by one of the warded spells, then both the effect and vagrant's nondescript cloak end immediately.", - "document": "wz", - "level": 2, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of third level or higher, you can target +1 creature for each slot level above second.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_vengeful-panopy-of-the-ley-line-ignited", - "fields": { - "name": "Vengeful Panopy of the Ley Line Ignited", - "desc": "Deep Magic: ley line While bound to a ley line, you draw directly from its power, becoming cloaked in a magical heliotropic fire that sheds dim light in a 10-foot radius. Additionally, each round, including the round it is cast, you may make a ranged spell attack as an action. On a hit, the target takes 6d6 force damage. Every 3 minutes the effect is active, your bond with the ley line is reduced by one step; a bond to a Titanic ley line becomes effectively a Strong, then a Weak, and after 10 minutes, the bond is broken. The strength of the bond is only restored after a long rest; if the bond was broken, it can only be restored at the next weakest level for a week. A bond broken from a Weak ley line cannot be restored for two weeks. Some believe this spell damages ley lines, and there is some evidence to support this claim. Additionally, whenever a creature within 5 feet hits you with a melee attack, the cloak erupts with a heliotropic flare. The attacker takes 3d6 force damage.", - "document": "wz", - "level": 6, - "school": "evocation", - "higher_level": "When casting this spell using a spell slot of 6th level, the damage from all effects of the spell increase by 1d6 for each slot level above 6th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "6d6", - "damage_types": [ - "force" - ], - "duration": "10 minutes", - "shape_type": "line", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_who-goes-there", - "fields": { - "name": "Who Goes There?", - "desc": "You sift the surrounding air for sound wave remnants of recent conversations to discern passwords or other important information gleaned from a conversation, such as by guards on a picket line. The spell creates a cloud of words in the caster's mind, assigning relevance to them. Selecting the correct word or phrase is not foolproof, but you can make an educated guess. You make a Wisdom (Perception) check against the target person's Wisdom score (DC 10, if not specified) to successfully pick the key word or phrase.", - "document": "wz", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "wz_zymurgic-aura", - "fields": { - "name": "Zymurgic Aura", - "desc": "A wave of putrefaction surges from you, targeting creatures of your choice within a 30-foot radius around you, speeding the rate of decay in those it touches. The target must make a Constitution saving throw. It takes 10d6 necrotic damage on a failed save or half as much on a successful save. Its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature takes a long rest.", - "document": "wz", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } +{ + "model": "api_v2.spell", + "pk": "wz_abrupt-hug", + "fields": { + "name": "Abrupt Hug", + "desc": "You or the creature taking the Attack action can immediately make an unarmed strike. In addition to dealing damage with the unarmed strike, the target can grapple the creature it hit with the unarmed strike.", + "document": "wz", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false } -] \ No newline at end of file +}, +{ + "model": "api_v2.spell", + "pk": "wz_avert-evil-eye", + "fields": { + "name": "Avert Evil Eye", + "desc": "The evil eye takes many forms. Any incident of bad luck can be blamed on it, especially if a character recently displayed arrogance or selfishness. When avert evil eye is cast, the recipient has a small degree of protection against the evil eye for up to 1 hour. While the spell lasts, the target of the spell has advantage on saving throws against being blinded, charmed, cursed, and frightened. During the spell's duration, the target can also cancel disadvantage on one d20 roll the target is about to make, but doing so ends the spell's effect.", + "document": "wz", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_bardo", + "fields": { + "name": "Bardo", + "desc": "You capture some of the fading life essence of the triggering creature, drawing on the energy of the tenuous moment between life and death. You can then use this essence to immediately harm or help a different creature you can see within range. If you choose to harm, the target must make a Wisdom saving throw. The target takes psychic damage equal to 6d8 + your spellcasting ability modifier on a failed save, or half as much damage on a successful one. If you choose to help, the target regains hit points equal to 3d8 + your spellcasting ability modifier. This spell can't be triggered by the death of a construct or an undead creature, and it can't restore hit points to constructs or undead.", + "document": "wz", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_battle-chant", + "fields": { + "name": "Battle Chant", + "desc": "You bless up all allied creatures of your choice within range. Whenever a target lands a successful hit before the spell ends, the target can add 1 to the damage roll. When cast by multiple casters chanting in unison, the same increases to 2 points added to the damage roll.", + "document": "wz", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can extend the range by 10 feet for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "5 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_bombardment-of-stings", + "fields": { + "name": "Bombardment of Stings", + "desc": "Each creature in a 30-foot cone must make a Dexterity saving throw. On a failed save, a creature takes 4d6 piercing damage and is poisoned for 1 minute. On a successful save, a creature takes half as much damage and isn't poisoned. At the end of each of its turns, a poisoned target can make a Constitution saving throw. On a success, the condition ends on the target.", + "document": "wz", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "piercing" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_charming-aesthetics", + "fields": { + "name": "Charming Aesthetics", + "desc": "You affect a group of the same plants or animals within range, giving them a harmless and attractive appearance. If a creature studies one of the enchanted plants or animals, it must make a Wisdom saving throw. If it fails the saving throw, it is charmed by the plant or animal until the spell ends or until another creature other than one of its allies does anything harmful to it. While the creature is charmed and stays within sight of the enchanted plants or animals, it has disadvantage on Wisdom (Perception) checks as well as checks to notice signs of danger. If the charmed creature attempts to move out of sight of the spell's subject, it must make a second Wisdom saving throw. If it fails the saving throw, it refuses to move out of sight of the spell's subject. It can repeat this save once per minute. If it succeeds, it can move away, but it remains charmed.", + "document": "wz", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional group of plants or animals for each slot level above 4th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 day", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_child-of-light-and-darkness", + "fields": { + "name": "Child of Light and Darkness", + "desc": "Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 1-10, you take the form of a humanoid made of pure, searing light. On a roll of 11-20, you take the form of a humanoid made of bone-chilling darkness. In both forms, you have immunity to bludgeoning, piercing, and slashing damage from nonmagical attacks, and a creature that attacks you has disadvantage on the attack roll. You gain additional benefits while in each form: Light Form. You shed bright light in a 60-foot radius and dim light for an additional 60 feet, you are immune to fire damage, and you have resistance to radiant damage. Once per turn, as a bonus action, you can teleport to a space you can see within the light you shed. Darkness Form. You are immune to cold damage, and you have resistance to necrotic damage. Once per turn, as a bonus action, you can target up to three Large or smaller creatures within 30 feet of you. Each target must succeed on a Strength saving throw or be pulled or pushed (your choice) up to 20 feet straight toward or away from you.", + "document": "wz", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_commanders-pavilion", + "fields": { + "name": "Commander's Pavilion", + "desc": "Creates a command tent 30 feet by 30 feet with a peak height of 20 feet. It is filled with items a military commander might require of a headquarters tent on a campaign, such as maps of the area, a spyglass, a sandglass, materials for correspondence, references for coding and decoding messages, books on history and strategy relevant to the area, banners, spare uniforms, and badges of rank. Such minor mundane items dissipate once the spell's effect ends. Recasting the spell on subsequent days maintains the existing tent for another 24 hours.", + "document": "wz", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_devouring-darkness", + "fields": { + "name": "Devouring Darkness", + "desc": "Terrifying and nightmarish monsters exist within the unknown void of the in-between. Choose up to six points you can see within range. Voidlike, magical darkness spreads from each point to fill a 10-footradius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and no light, magical or nonmagical, can illuminate it.\n Each creature inside a sphere when this spell is cast must make a Dexterity saving throw. On a failed save, the creature takes 6d10 piercing damage and 5d6 psychic damage and is restrained until it breaks free as unseen entities bite and tear at it from the Void. Once a successful save, the creature takes half as much damage and isn't restrained. A restrained creature can use its action to make a Strength check against your spell save DC. If it succeeds, it is no longer restrained.\n When a creature enters a sphere for the first time on a turn or starts its turn in a sphere, that creature must make an Intelligence saving throw. The creature takes 5d6 psychic damage on a failed save, or half as much damage on a successful one.\n Once created, the spheres can't be moved. A creature in overlapping spheres doesn't suffer additional effects for being in more than one sphere at a time.", + "document": "wz", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 6, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d10", + "damage_types": [ + "piercing" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_door-of-the-far-traveler", + "fields": { + "name": "Door of the Far Traveler", + "desc": "You conjure a door to the destination of your choice that lasts for the duration or until dispelled. You sketch the outline of the door with chalk on any hard surface (a wall, a cliffside, the deck of a ship, etc.) and scribe sigils of power around its outline. The doorway must be at least 1 foot wide by 2 feet tall and can be no larger than 5 feet wide by 10 feet tall. Once the door is drawn, place the knob appropriately; it attaches magically to the surface and your drawing becomes a real door to the spell's destination. The doorway remains functional for the spell's duration. During that time, anyone can open or close the door and pass through it in either direction.\n The destination can be on any plane of existence. It must be familiar to you, and your level of familiarity with it determines the accuracy of the spell (determined by the GM). If it's a place you've visited, you can expect 100 percent accuracy. If it's been described to you by someone who was there, you might arrive in the wrong room or even the wrong structure, depending on how detailed their description was. If you've only heard about the destination third-hand, you may end up in a similar structure that's in a very different locale.\n *Door of the far traveler* doesn't create a doorway at the destination. It connects to an existing, working door. It can't, for example, take you to an open field or a forest with no structures (unless someone built a doorframe with a door in that spot for this specific purpose!). While the spell is in effect, the pre-existing doorway connects only to the area you occupied while casting the spell. If you connected to an existing doorway between a home's parlor and library, for example, and your door leads into the library, then people can still walk through that doorway from the parlor into the library normally. Anyone trying to go the other direction, however, arrives wherever you came from instead of in the parlor.\n Before casting the spell, you must spend one hour etching magical symbols onto the doorknob that will serve as the spell's material component to attune it to your desired destination. Once prepared, the knob remains attuned to that destination until it's used or you spend another hour attuning it to a different location.\n *The door of the far traveler* is dispelled if you remove the knob from the door. You can do this as a bonus action from either side of the door, provided it's shut. If the spell's duration expires naturally, the knob falls to the ground on whichever side of the door you're on. Once the spell ends, the knob loses its attunement to any location and another hour must be spent attuning it before it can be used again.", + "document": "wz", + "level": 8, + "school": "conjuration", + "higher_level": "If you cast this spell using a 9thlevel slot, the duration increases to 12 hours.", + "target_type": "area", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "6 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_eternal-echo", + "fields": { + "name": "Eternal Echo", + "desc": "You gain a portentous voice of compelling power, commanding all undead within 60 feet that fail a Wisdom saving throw. This overrides any prior loyalty to spellcasters such as necromancers or evil priests, and it can nullify the effect of a Turn Undead result from a cleric.", + "document": "wz", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "concentration", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_ethereal-stairs", + "fields": { + "name": "Ethereal Stairs", + "desc": "You create a staircase out of the nothingness of the air. A shimmering staircase 10 feet wide appears and remains for the duration. The staircase ascends at a 45-degree angle to a point as much as 60 feet above the ground. The staircase consists only of steps with no apparent support, unless you choose to have it resemble a stone or wooden structure. Even then, its magical nature is obvious, as it has no color and is translucent, and only the steps have solidity; the rest of it is no more solid than air. The staircase can support up to 10 tons of weight. It can be straight, spiral, or switchback. Its bottom must connect to solid ground, but its top need not connect to anything.", + "document": "wz", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the staircase extends an additional 20 feet for each slot level above 5th.", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_exchanged-knowledge", + "fields": { + "name": "Exchanged Knowledge", + "desc": "When you cast this spell, you open a conduit to the Castle Library, granting access to difficult-to-obtain information. For the spell's duration, you double your proficiency bonus whenever you make an Intelligence check to recall information about any subject. Additionally, you can gain advantage on an Intelligence check to recall information. To do so, you must either sacrifice another lore-filled book or succeed on a Charisma saving throw. On a failed save, the spell ends, and you have disadvantage on all Intelligence checks to recall information for 1 week. A wish spell ends this effect.", + "document": "wz", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_hedgehog-dozen", + "fields": { + "name": "Hedgehog Dozen", + "desc": "Eleven illusory duplicates of the touched creature appear in its space. A creature affected by hedgehog dozen seems to have a dozen arms, shields, and weapons-a swarm of partially overlapping, identical creatures. Until the spell ends, these duplicates move with the target and mimic its actions, shifting position so it's impossible to track which image is real. You can use your action to dismiss the illusory duplicates. While surrounded by duplicates, a creature gains advantage against any opponent because of the bewildering number of weapons and movements. Each time a creature targets you with an attack during the spell's duration, roll a d8 to determine whether the attack instead targets one of your duplicates. On a roll of 1, it strikes you. On any other roll it removes one of your duplicates; when you have only five duplicates remaining, the spell ends. A creature is unaffected by this spell if it can't see, if it relies on senses other than sight, such as blindsight, or if it can perceive illusions as false as with truesight.", + "document": "wz", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_hypnagogia", + "fields": { + "name": "Hypnagogia", + "desc": "You alter the mental state of one creature you can see within range. The target must make an Intelligence saving throw. If it fails, choose one of the following effects. At the end of each of its turns, the target can make another Intelligence saving throw. On a success, the spell ends on the target. A creature with an Intelligence score of 4 or less isn't affected by this spell.\n ***Sleep Paralysis.*** Overwhelming heaviness and fatigue overcome the creature, slowing it. The creature's speed is halved, and it has disadvantage on weapon attacks.\n ***Phantasmata.*** The creature imagines vivid and terrifying hallucinations centered on a point of your choice within range. For the duration, the creature is frightened, and it must take the Dash action and move away from the point you chose by the safest available route on each of its turns, unless there is nowhere to move.\n ***False Awakening.*** The creature enters a trancelike state of consciousness in which it's not fully aware of its surroundings. It can't take reactions, and it must roll a d4 at the beginning of its turn to determine its behavior. Each time the target takes damage, it makes a new Intelligence saving throw. On a success, the spell ends on the target.\n\n| d4 | Behavior | \n|-----|-----------| \n| 1 | The creature takes the Dash action and uses all of its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. | \n| 2 | The creature uses its action to pantomime preparing for its day: brushing teeth and hair, bathing, eating, or similar activity. | \n| 3 | The creature moves up to its speed toward a randomly determined creature and uses its action to make one melee attack against that creature. If there is no creature within range, the creature does nothing this turn. | \n| 4 | The creature does nothing this turn. |", + "document": "wz", + "level": 4, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_hypnic-jerk", + "fields": { + "name": "Hypnic Jerk", + "desc": "Strange things happen in the mind and body in that moment between waking and sleeping. One of the most common is being startled awake by a sudden feeling of falling. With a snap of your fingers, you trigger that sensation in a creature you can see within range. The target must succeed on a Wisdom saving throw or take 1d6 force damage. If the target fails the saving throw by 5 or more, it drops one object it is holding. A dropped object lands in the creature's space.", + "document": "wz", + "level": 0, + "school": "illusion", + "higher_level": "The spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_inconspicuous-facade", + "fields": { + "name": "Inconspicuous Facade", + "desc": "By means of this spell, you make a target building seem much less important or ostentatious than it is. You can give the target an unremarkable appearance or one that blends in with nearby buildings. By its nature, this spell does not allow you to specify features that would make the building stand out. You also cannot make a building look more opulent to match surrounding buildings. You can make the building appear smaller or larger that its actual size to better fit into its environs. However, these size changes are noticeable with cursory physical inspection as an object will pass through extra illusory space or bump into a seemingly smaller section of the building. A creature can use its action to inspect the building and make an Intelligence (Investigation) check against your spell save DC. If it succeeds, it becomes aware the building has been disguised. In addition to you dispelling inconspicuous facade, the spell ends if the target building is destroyed.", + "document": "wz", + "level": 4, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_march-of-the-dead", + "fields": { + "name": "March of the Dead", + "desc": "This spell animates the recently dead to remove them from a battlefield. Choose one corpse of a Medium or Small humanoid per level of the caster (within range). Your spell imbues the targets with an animating spirit, raising them as construct creatures similar in appearance to flesh golems, though with the strength and abilities of zombies. Dwarves use this to return the bodies of the fallen to clan tombs and to deny the corpses the foul attention of ghouls, necromancers, and similar foes. On each of your turns, you can use a bonus action to mentally command all the creatures you made with this spell if the creatures are within 60 feet of you. You decide what action the creatures will take and where they will move during the next day; you cannot command them to guard. If you issue no commands, the creatures only defend themselves against hostile creatures. Once given an order and direction of march, the creatures continue to follow it until they arrive at the destination you named or until 24 hours have elapsed when the spell ends and the corpses fall lifeless once more. To tell creatures to move for another 24 hours, you must cast this spell on the creatures again before the current 24-hour period ends. This use of the spell reasserts your control over up to 50 creatures you have animated with this spell rather than animating a new one.", + "document": "wz", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional construct creatures for each slot level above 3rd (two creatures/level at 4th, three creatures/level at 5th). Each of the creatures must come from a different corpse.", + "target_type": "creature", + "range": "50 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_mind-maze", + "fields": { + "name": "Mind Maze", + "desc": "Choose a creature you can see within range. It must succeed on an Intelligence saving throw or be mentally trapped in an imagined maze of mirrors for the duration. While trapped in this way, the creature is incapacitated, but it imagines itself alone and wandering through the maze. Externally, it appears dazed as it turns in place and reaches out at nonexistent barriers. Each time the target takes damage, it makes another Intelligence saving throw. On a success, the spell ends.", + "document": "wz", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "up to 1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_mirror-realm", + "fields": { + "name": "Mirror Realm", + "desc": "You transform a mirror into a magical doorway to an extradimensional realm. You and any creatures you designate when you cast the spell can move through the doorway into the realm beyond. For the spell's duration, the mirror remains anchored in the plane of origin, where it can't be broken or otherwise damaged by any mundane means. No creatures other than those you designate can pass through the mirror or see into the mirror realm.\n The realm within the mirror is an exact reflection of the location you left. The temperature is comfortable, and any environmental threats (lava, poisonous gas, or similar) are inert, harmless facsimiles of the real thing. Likewise, magic items reflected in the mirror realm have no magical properties, but those carried into it work normally. Food, drink, and other beneficial items within the mirror realm (reflections of originals in the real world) function as normal, real items; food can be eaten, wine can be drunk, and so on. Only items that were reflected in the mirror at the moment the spell was cast exist inside the mirror realm. Items placed in front of the mirror afterward don't appear in the mirror realm, and creatures never do unless they are allowed in by you. Items found in the mirror realm dissolve into nothingness when they leave it, but the effects of food and drink remain.\n Sound passes through the mirror in both directions. Creatures in the mirror realm can see what's happening in the world, but creatures in the world see only what the mirror reflects. Objects can cross the mirror boundary only while worn or carried by a creature, and spells can't cross it at all. You can't stand in the mirror realm and shoot arrows or cast spells at targets in the world or vice versa.\n The boundaries of the mirror realm are the same as the room or location in the plane of origin, but the mirror realm can't exceed 50,000 square feet (for simplicity, imagine 50 cubes, each cube being 10 feet on a side). If the original space is larger than this, such as an open field or a forest, the boundary is demarcated with an impenetrable, gray fog.\n Any creature still inside the mirror realm when the spell ends is expelled through the mirror into the nearest empty space.\n If this spell is cast in the same spot every day for a year, it becomes permanent. Once permanent, the mirror can't be moved or destroyed through mundane means. You can allow new creatures into the mirror realm (and disallow previous creatures) by recasting the spell within range of the permanent mirror. Casting the spell elsewhere doesn't affect the creation or the existence of a permanent mirror realm; a determined spellcaster could have multiple permanent mirror realms to use as storage spaces, hiding spots, and spy vantages.", + "document": "wz", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": true, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_obfuscate-object", + "fields": { + "name": "Obfuscate Object", + "desc": "While you are in dim light, you cause an object in range to become unobtrusively obscured from the sight of other creatures. For the duration, you have advantage on Dexterity (Sleight of Hand) checks to hide the object. The object can't be larger than a shortsword, and it must be on your person, held in your hand, or otherwise unattended.", + "document": "wz", + "level": 0, + "school": "illusion", + "higher_level": "You can affect two objects when you reach 5th level, three objects at 11th level, and four objects at 17th level.", + "target_type": "object", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_order-of-revenge", + "fields": { + "name": "Order of Revenge", + "desc": "You touch a weapon or a bundle of 30 ammunition, imbuing them with spell energy. Any creature damaged by a touched, affected weapon leaves an invisibly glowing trail of their path until the spell expires. The caster may see this trail by casting revenge's eye or see invisible. Any other caster may see the trail by casting see invisible. Casting dispel magic on an affected creature causes that creature to stop generating a trail, and the trail fades over the next hour.", + "document": "wz", + "level": 3, + "school": "enchantment", + "higher_level": "When you cast the spell using a slot of 4th level or higher, you can target one additional weapon or bundle of ammunition for each slot level above fourth.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour/caster level", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_pierce-the-veil", + "fields": { + "name": "Pierce the Veil", + "desc": "By sketching a shimmering, ethereal doorway in the air and knocking three times, you call forth an otherworldly entity to provide insight or advice. The door swings open and the entity, wreathed in shadow or otherwise obscured, appears at the threshold. It answers up to five questions truthfully and to the best of its ability, but its answers aren't necessarily clear or direct. The entity can't pass through the doorway or interact with anything on your side of the doorway other than by speaking its responses.\n Likewise, creatures on your side of the doorway can't pass through it to the other side or interact with the other side in any way other than asking questions. In addition, the spell allows you and the creature to understand each other's words even if you have no language in common, the same as if you were both under the effects of the comprehend languages spell.\n When you cast this spell, you must request a specific, named entity, a specific type of creature, or a creature from a specific plane of existence. The target creature can't be native to the plane you are on when you cast the spell. After making this request, make an ability check using your spellcasting ability. The DC is 12 if you request a creature from a specific plane; 16 if you request a specific type of creature; or 20 if you request a specific entity. (The GM can choose to make this check for you secretly.) If the spellcasting check fails, the creature that responds to your summons is any entity of the GM's choosing, from any plane. No matter what, the creature is always of a type with an Intelligence of at least 8 and the ability to speak and to hear.", + "document": "wz", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_pratfall", + "fields": { + "name": "Pratfall", + "desc": "You cause a small bit of bad luck to befall a creature, making it look humorously foolish. You create one of the following effects within range: A small, oily puddle appears under the feet of your target, causing it to lose balance. The target must succeed on a Dexterity saving throw or be unable use a bonus action on its next turn as it regains its footing. Tiny particles blow in your target's face, causing it to sneeze. The target must succeed on a Constitution saving throw or have disadvantage on its first attack roll on its next turn. Strobing lights flash briefly before your target's eyes, causing difficulties with its vision. The target must succeed on a Constitution saving throw or its passive Perception is halved until the end of its next turn. The target feels the sensation of a quick, mild clap against its ears, briefly disorienting it. The target must succeed on a Constitution saving throw to maintain its concentration. An invisible force sharply tugs on the target's trousers, causing the clothing to slip down. The target must make a Dexterity saving throw. On a failed save, the target has disadvantage on its next attack roll with a two-handed weapon or loses its shield bonus to its Armor Class until the end of its next turn as it uses one hand to gather its slipping clothing. Only one of these effects can be used on a single creature at a time.", + "document": "wz", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_putrescent-faerie-circle", + "fields": { + "name": "Putrescent Faerie Circle", + "desc": "You create a 20-foot-diameter circle of loosely-packed toadstools that spew sickly white spores and ooze a tarry substance. At the start of each of your turns, each creature within the circle must make a Constitution saving throw. A creature takes 4d8 necrotic damage on a failed save, or half as much damage on a successful one. If a creature attempts to pass through the ring of toadstools, the toadstools release a cloud of spores, and the creature must make a Constitution saving throw. On a failure, the creature takes 8d8 poison damage and is poisoned for 1 minute. On a success, the creature takes half as much damage and isn't poisoned. While a creature is poisoned, it is paralyzed. It can attempt a new Constitution saving throw at the end of each of its turns to remove the paralyzed condition (but not the poisoned condition).", + "document": "wz", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_reassemble", + "fields": { + "name": "Reassemble", + "desc": "You touch an undead creature (dust and bones suffice) destroyed not more than 10 hours ago; the creature is surrounded by purple fire for 1 round and is returned to life with full hit points. This spell has no effect on any creatures except undead, and it cannot restore a lich whose phylactery has been destroyed, a vampire destroyed by sunlight, any undead whose remains are destroyed by fire, acid, or holy water, or any remains affected by a gentle repose spell. This spell doesn't remove magical effects. If they aren't removed prior to casting, they return when the undead creature comes back to life. This spell closes all mortal wounds but doesn't restore missing body parts. If the creature doesn't have body parts or organs necessary for survival, the spell fails. Sudden reassembly is an ordeal involving enormous expenditure of necrotic energy; ley line casters within 5 miles are aware that some great shift in life forces has occurred and a sense of its direction. The target takes a -4 penalty to all attacks, saves, and ability checks. Every time it finishes a long rest, the penalty is reduced by 1 until it disappears.", + "document": "wz", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_reciprocating-portal", + "fields": { + "name": "Reciprocating Portal", + "desc": "With a gesture and a muttered word, you cause an inky black, circular portal to open on the ground beneath one or more creatures. You can create one 15-foot-diameter portal, two 10-foot-diameter portals, or six 5-foot-diameter portals. A creature that's standing where you create a portal must make a Dexterity saving throw. On a failed save, the creature falls through the portal, disappears into a demiplane where it is stunned as it falls endlessly, and the portal closes.\n At the start of your next turn, the creatures that failed their saving throws fall through matching portals directly above their previous locations. A falling creature lands prone in the space it once occupied or the nearest unoccupied space and takes falling damage as if it fell 60 feet, regardless of the distance between the exit portal and the ground. Flying and levitating creatures can't be affected by this spell.", + "document": "wz", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_remove-insulation", + "fields": { + "name": "Remove Insulation", + "desc": "You target a creature within range, and that creature must succeed on a Fortitude saving throw or become less resistant to lightning damage. A creature with immunity to lightning damage has advantage on this saving throw. On a failure, a creature with immunity to lightning damage instead has resistance to lightning damage for the spell's duration, and a creature with resistance to lightning damage loses its resistance for the duration. A creature without resistance to lightning damage that fails its saving throw takes double damage from lightning for the spell's duration. Remove curse or similar magic ends this spell.", + "document": "wz", + "level": 4, + "school": "necromancy", + "higher_level": "If you cast this spell using a spell slot of 6th level or higher, the duration is 24 hours. If you use a spell slot of 8th level or higher, a creature with immunity to lightning damage no longer has advantage on its saving throw. If you use a spell slot of 9th level or higher, the spell lasts until it is dispelled.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_revenges-eye", + "fields": { + "name": "Revenge's Eye", + "desc": "You touch a creature's visual organs and grant them the ability to see the trail left by creatures damaged by a weapon you cast invisible creatures; it only reveals trails left by those affected by order of revenge also cast by the spellcaster.", + "document": "wz", + "level": 2, + "school": "divination", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target +1 creature for each slot level above second.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_rise-of-the-green", + "fields": { + "name": "Rise of the Green", + "desc": "The spell gives life to existing plants in range. If there are no plants in range, the spell creates undergrowth and trees that persist for the duration. One of the trees becomes a treant friendly to you and your companions. Roll initiative for the treant, which has its own turn. It obeys any verbal commands that you issue to it. If you don't issue it any commands, it defends itself from hostile creatures but otherwise takes no actions. The animated undergrowth creates difficult terrain for your enemies. Additionally, at the beginning of each of your turns, all creatures that are on the ground in range must succeed on a Strength saving throw or become restrained until the spell ends. A restrained creature can use an action to make a Strength (Athletics) check against your spell save DC, ending the effect on itself on a success. If a creature is restrained by plants at the beginning of your turn, it takes 1d6 bludgeoning damage. Finally, the trees swing at each enemy in range, requiring each creature to make a Dexterity saving throw. A creature takes 6d6 bludgeoning damage on a failed save or half as much damage on a successful one. You can use a bonus action to recenter the spell on yourself. This does not grow additional trees in areas that previously had none.", + "document": "wz", + "level": 8, + "school": "evocation", + "higher_level": "When you cast this spell using a 9th-level slot, an additional tree becomes a treant, the undergrowth deals an additional 1d6 bludgeoning damage, and the trees inflict an additional 2d6 bludgeoning damage.", + "target_type": "creature", + "range": "180 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "1d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_rive", + "fields": { + "name": "Rive", + "desc": "You pull on the filaments of transition and possibility to tear at your enemies. Choose a creature you can see within range and make a ranged spell attack. On a hit, the target takes 5d8 cold damage as strands of icy nothingness whip from your outstretched hand to envelop it. If the target isn't native to the plane you're on, it takes an extra 3d6 psychic damage and must succeed on a Constitution saving throw or be stunned until the end of its next turn.", + "document": "wz", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "5d8", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_shadow-adaptation", + "fields": { + "name": "Shadow Adaptation", + "desc": "Your flesh and clothing pale and become faded as your body takes on a tiny fragment of the Shadow Realm. For the duration of this spell, you are immune to shadow corruption and have resistance to necrotic damage. In addition, you have advantage on saving throws against effects that reduce your Strength score or hit point maximum, such as a shadow's Strength Drain or the harm spell.", + "document": "wz", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_skull-road", + "fields": { + "name": "Skull Road", + "desc": "You conjure a portal linking an unoccupied space you can see within range to an imprecise location on the plane of Evermaw. The portal is a circular opening, which you can make 5-20 feet in diameter. You can orient the portal in any direction you choose. The portal lasts for the duration. If your casting is at 5th level, this opens a pathway to the River of Tears, to the Vitreous Mire, or to the Plains of Bone-travel to a settlement can take up to 7 days (1d6+1). If cast at 7th level, the skull road spell opens a portal to a small settlement of gnolls, ghouls, or shadows on the plane near the Eternal Palace of Mot or a similar settlement. Undead casters can use this spell in the reverse direction, opening a portal from Evermaw to the mortal world, though with similar restrictions. At 5th level, the portal opens in a dark forest, cavern, or ruins far from habitation. At 7th level, the skull road leads directly to a tomb, cemetery, or mass grave near a humanoid settlement of some kind.", + "document": "wz", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_storm-of-axes", + "fields": { + "name": "Storm of Axes", + "desc": "Deep Magic: battle You conjure up dozens of axes and direct them in a pattern in chopping, whirling mayhem. The blades fill eight 5-foot squares in a line 40 feet long or in a double-strength line 20 feet long and 10 deep. The axes cause 6d8 slashing damage to creatures in the area at the moment the spell is cast or half damage with a successful Dexterity saving throw. By maintaining concentration, you can move the swarm of axes up to 20 feet per round in any direction you wish. If the storm of axes moves into spaces containing creatures, they immediately must make another Dexterity saving throw or suffer damage again.", + "document": "wz", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "25 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "concentration + 1 round", + "shape_type": "line", + "shape_magnitude": 5, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_subliminal-aversion", + "fields": { + "name": "Subliminal Aversion", + "desc": "You ward a creature within range against attacks by making the choice to hit them painful. When the warded creature is hit with a melee attack from within 5 feet of it, the attacker takes 1d4 psychic damage.", + "document": "wz", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "1d4", + "damage_types": [ + "psychic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_summon-clockwork-beast", + "fields": { + "name": "Summon Clockwork Beast", + "desc": "Deep Magic: clockwork Once per day, you can cast this ritual to summon a Tiny clockwork beast doesn't require air, food, drink, or sleep. When its hit points are reduced to 0, it crumbles into a heap of gears and springs.", + "document": "wz", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "10 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_suppress-regeneration", + "fields": { + "name": "Suppress Regeneration", + "desc": "You temporarily remove the ability to regenerate from a creature you can see within range. The target must make a Constitution saving throw. On a failed save, the target can't regain hit points from the Regeneration trait or similar spell or trait for the duration. The target can receive magical healing or regain hit points from other traits, spells, or actions, as normal. At the end of each of its turns, the target can make another Constitution saving throw. On a success, the spell ends on the target.", + "document": "wz", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_threshold-slip", + "fields": { + "name": "Threshold Slip", + "desc": "The threshold of a doorway, the sill of a window, the junction where the floor meets the wall, the intersection of two walls—these are all points of travel for you. When you cast this spell, you can step into the junction of two surfaces, slip through the boundary of the Material Plane, and reappear in an unoccupied space with another junction you can see within 60 feet.\n You can take one willing creature of your size or smaller that you're touching with you. The target junction must have unoccupied spaces for both of you to enter when you reappear or the spell fails.", + "document": "wz", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_toxic-pollen", + "fields": { + "name": "Toxic Pollen", + "desc": "Upon casting this spell, one type of plant within range gains the ability to puff a cloud of pollen based on conditions you supply during casting. If the conditions are met, an affected plant sprays a pollen cloud in a 10-foot-radius sphere centered on it. Creatures in the area must succeed on a Constitution saving throw or become poisoned for 1 minute. At the end of a poisoned creature's turn, it can make a Constitution saving throw. On a success, it is no longer poisoned. A plant can only release this pollen once within the duration.", + "document": "wz", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 year", + "shape_type": "sphere", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_vagrants-nondescript-cloak", + "fields": { + "name": "Vagrant's Nondescript Cloak", + "desc": "You touch a creature. The creature is warded against the effects of locate creature, the caster may determine if the affected creature is within 1,000 feet but cannot determine the direction to the target of vagrant's nondescript cloak. If the creature is already affected by one of the warded spells, then both the effect and vagrant's nondescript cloak end immediately.", + "document": "wz", + "level": 2, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of third level or higher, you can target +1 creature for each slot level above second.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_vengeful-panopy-of-the-ley-line-ignited", + "fields": { + "name": "Vengeful Panopy of the Ley Line Ignited", + "desc": "Deep Magic: ley line While bound to a ley line, you draw directly from its power, becoming cloaked in a magical heliotropic fire that sheds dim light in a 10-foot radius. Additionally, each round, including the round it is cast, you may make a ranged spell attack as an action. On a hit, the target takes 6d6 force damage. Every 3 minutes the effect is active, your bond with the ley line is reduced by one step; a bond to a Titanic ley line becomes effectively a Strong, then a Weak, and after 10 minutes, the bond is broken. The strength of the bond is only restored after a long rest; if the bond was broken, it can only be restored at the next weakest level for a week. A bond broken from a Weak ley line cannot be restored for two weeks. Some believe this spell damages ley lines, and there is some evidence to support this claim. Additionally, whenever a creature within 5 feet hits you with a melee attack, the cloak erupts with a heliotropic flare. The attacker takes 3d6 force damage.", + "document": "wz", + "level": 6, + "school": "evocation", + "higher_level": "When casting this spell using a spell slot of 6th level, the damage from all effects of the spell increase by 1d6 for each slot level above 6th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "6d6", + "damage_types": [ + "force" + ], + "duration": "10 minutes", + "shape_type": "line", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_who-goes-there", + "fields": { + "name": "Who Goes There?", + "desc": "You sift the surrounding air for sound wave remnants of recent conversations to discern passwords or other important information gleaned from a conversation, such as by guards on a picket line. The spell creates a cloud of words in the caster's mind, assigning relevance to them. Selecting the correct word or phrase is not foolproof, but you can make an educated guess. You make a Wisdom (Perception) check against the target person's Wisdom score (DC 10, if not specified) to successfully pick the key word or phrase.", + "document": "wz", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "wz_zymurgic-aura", + "fields": { + "name": "Zymurgic Aura", + "desc": "A wave of putrefaction surges from you, targeting creatures of your choice within a 30-foot radius around you, speeding the rate of decay in those it touches. The target must make a Constitution saving throw. It takes 10d6 necrotic damage on a failed save or half as much on a successful save. Its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature takes a long rest.", + "document": "wz", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +} +] diff --git a/data/v2/kobold-press/wz/SpellCastingOption.json b/data/v2/kobold-press/wz/SpellCastingOption.json index 91139570..3ce88034 100644 --- a/data/v2/kobold-press/wz/SpellCastingOption.json +++ b/data/v2/kobold-press/wz/SpellCastingOption.json @@ -1,1934 +1,1934 @@ [ - { - "model": "api_v2.spellcastingoption", - "pk": 4551, - "fields": { - "parent": "wz_abrupt-hug", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4552, - "fields": { - "parent": "wz_avert-evil-eye", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4553, - "fields": { - "parent": "wz_bardo", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4554, - "fields": { - "parent": "wz_battle-chant", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4555, - "fields": { - "parent": "wz_battle-chant", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4557, - "fields": { - "parent": "wz_battle-chant", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "70 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4558, - "fields": { - "parent": "wz_battle-chant", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "80 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4559, - "fields": { - "parent": "wz_battle-chant", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "90 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4560, - "fields": { - "parent": "wz_battle-chant", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "100 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4561, - "fields": { - "parent": "wz_battle-chant", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "110 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4562, - "fields": { - "parent": "wz_battle-chant", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "120 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4563, - "fields": { - "parent": "wz_battle-chant", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": "130 feet" - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4564, - "fields": { - "parent": "wz_bombardment-of-stings", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4566, - "fields": { - "parent": "wz_bombardment-of-stings", - "type": "slot_level_3", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4567, - "fields": { - "parent": "wz_bombardment-of-stings", - "type": "slot_level_4", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4568, - "fields": { - "parent": "wz_bombardment-of-stings", - "type": "slot_level_5", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4569, - "fields": { - "parent": "wz_bombardment-of-stings", - "type": "slot_level_6", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4570, - "fields": { - "parent": "wz_bombardment-of-stings", - "type": "slot_level_7", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4571, - "fields": { - "parent": "wz_bombardment-of-stings", - "type": "slot_level_8", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4572, - "fields": { - "parent": "wz_bombardment-of-stings", - "type": "slot_level_9", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4573, - "fields": { - "parent": "wz_charming-aesthetics", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4575, - "fields": { - "parent": "wz_charming-aesthetics", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4576, - "fields": { - "parent": "wz_charming-aesthetics", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4577, - "fields": { - "parent": "wz_charming-aesthetics", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4578, - "fields": { - "parent": "wz_charming-aesthetics", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4579, - "fields": { - "parent": "wz_charming-aesthetics", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4580, - "fields": { - "parent": "wz_charming-aesthetics", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4581, - "fields": { - "parent": "wz_child-of-light-and-darkness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4582, - "fields": { - "parent": "wz_commanders-pavilion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4583, - "fields": { - "parent": "wz_commanders-pavilion", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4584, - "fields": { - "parent": "wz_devouring-darkness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4585, - "fields": { - "parent": "wz_door-of-the-far-traveler", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4587, - "fields": { - "parent": "wz_door-of-the-far-traveler", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "12 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4588, - "fields": { - "parent": "wz_eternal-echo", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4589, - "fields": { - "parent": "wz_ethereal-stairs", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4591, - "fields": { - "parent": "wz_ethereal-stairs", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4592, - "fields": { - "parent": "wz_ethereal-stairs", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4593, - "fields": { - "parent": "wz_ethereal-stairs", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4594, - "fields": { - "parent": "wz_ethereal-stairs", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4595, - "fields": { - "parent": "wz_exchanged-knowledge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4596, - "fields": { - "parent": "wz_hedgehog-dozen", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4597, - "fields": { - "parent": "wz_hypnagogia", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4599, - "fields": { - "parent": "wz_hypnagogia", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4600, - "fields": { - "parent": "wz_hypnagogia", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4601, - "fields": { - "parent": "wz_hypnagogia", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4602, - "fields": { - "parent": "wz_hypnagogia", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4603, - "fields": { - "parent": "wz_hypnagogia", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4604, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4605, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_1", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4606, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4607, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4608, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4609, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_5", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4610, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_6", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4611, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_7", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4612, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_8", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4613, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_9", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4614, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_10", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4615, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_11", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4616, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_12", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4617, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_13", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4618, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_14", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4619, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_15", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4620, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_16", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4621, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_17", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4622, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_18", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4623, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_19", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4624, - "fields": { - "parent": "wz_hypnic-jerk", - "type": "player_level_20", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4625, - "fields": { - "parent": "wz_inconspicuous-facade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4626, - "fields": { - "parent": "wz_march-of-the-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4628, - "fields": { - "parent": "wz_march-of-the-dead", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4629, - "fields": { - "parent": "wz_march-of-the-dead", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4630, - "fields": { - "parent": "wz_march-of-the-dead", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4631, - "fields": { - "parent": "wz_march-of-the-dead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4632, - "fields": { - "parent": "wz_march-of-the-dead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4633, - "fields": { - "parent": "wz_march-of-the-dead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4634, - "fields": { - "parent": "wz_mind-maze", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4635, - "fields": { - "parent": "wz_mirror-realm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4636, - "fields": { - "parent": "wz_mirror-realm", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4637, - "fields": { - "parent": "wz_obfuscate-object", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4638, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4639, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4640, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4641, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4642, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4643, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4644, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4645, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4646, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4647, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_10", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4648, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_11", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4649, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_12", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4650, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_13", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4651, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_14", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4652, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_15", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4653, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_16", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4654, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_17", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4655, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_18", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4656, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_19", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4657, - "fields": { - "parent": "wz_obfuscate-object", - "type": "player_level_20", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4658, - "fields": { - "parent": "wz_order-of-revenge", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4660, - "fields": { - "parent": "wz_order-of-revenge", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4661, - "fields": { - "parent": "wz_order-of-revenge", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4662, - "fields": { - "parent": "wz_order-of-revenge", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4663, - "fields": { - "parent": "wz_order-of-revenge", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4664, - "fields": { - "parent": "wz_order-of-revenge", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4665, - "fields": { - "parent": "wz_order-of-revenge", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4666, - "fields": { - "parent": "wz_pierce-the-veil", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4667, - "fields": { - "parent": "wz_pierce-the-veil", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4668, - "fields": { - "parent": "wz_pratfall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4669, - "fields": { - "parent": "wz_putrescent-faerie-circle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4670, - "fields": { - "parent": "wz_reassemble", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4671, - "fields": { - "parent": "wz_reciprocating-portal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4672, - "fields": { - "parent": "wz_remove-insulation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4674, - "fields": { - "parent": "wz_remove-insulation", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4675, - "fields": { - "parent": "wz_remove-insulation", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4676, - "fields": { - "parent": "wz_remove-insulation", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4677, - "fields": { - "parent": "wz_remove-insulation", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4678, - "fields": { - "parent": "wz_remove-insulation", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4679, - "fields": { - "parent": "wz_revenges-eye", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4681, - "fields": { - "parent": "wz_revenges-eye", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4682, - "fields": { - "parent": "wz_revenges-eye", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4683, - "fields": { - "parent": "wz_revenges-eye", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4684, - "fields": { - "parent": "wz_revenges-eye", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4685, - "fields": { - "parent": "wz_revenges-eye", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4686, - "fields": { - "parent": "wz_revenges-eye", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4687, - "fields": { - "parent": "wz_revenges-eye", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4688, - "fields": { - "parent": "wz_rise-of-the-green", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4690, - "fields": { - "parent": "wz_rise-of-the-green", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4691, - "fields": { - "parent": "wz_rive", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4692, - "fields": { - "parent": "wz_shadow-adaptation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4693, - "fields": { - "parent": "wz_skull-road", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4694, - "fields": { - "parent": "wz_storm-of-axes", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4695, - "fields": { - "parent": "wz_subliminal-aversion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4696, - "fields": { - "parent": "wz_summon-clockwork-beast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4697, - "fields": { - "parent": "wz_summon-clockwork-beast", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4698, - "fields": { - "parent": "wz_suppress-regeneration", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4700, - "fields": { - "parent": "wz_suppress-regeneration", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4701, - "fields": { - "parent": "wz_suppress-regeneration", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4702, - "fields": { - "parent": "wz_suppress-regeneration", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4703, - "fields": { - "parent": "wz_suppress-regeneration", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4704, - "fields": { - "parent": "wz_suppress-regeneration", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4705, - "fields": { - "parent": "wz_suppress-regeneration", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4706, - "fields": { - "parent": "wz_suppress-regeneration", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4707, - "fields": { - "parent": "wz_suppress-regeneration", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4708, - "fields": { - "parent": "wz_threshold-slip", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4709, - "fields": { - "parent": "wz_toxic-pollen", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4710, - "fields": { - "parent": "wz_vagrants-nondescript-cloak", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4712, - "fields": { - "parent": "wz_vagrants-nondescript-cloak", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4713, - "fields": { - "parent": "wz_vagrants-nondescript-cloak", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4714, - "fields": { - "parent": "wz_vagrants-nondescript-cloak", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4715, - "fields": { - "parent": "wz_vagrants-nondescript-cloak", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4716, - "fields": { - "parent": "wz_vagrants-nondescript-cloak", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4717, - "fields": { - "parent": "wz_vagrants-nondescript-cloak", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4718, - "fields": { - "parent": "wz_vagrants-nondescript-cloak", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4719, - "fields": { - "parent": "wz_vengeful-panopy-of-the-ley-line-ignited", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4721, - "fields": { - "parent": "wz_vengeful-panopy-of-the-ley-line-ignited", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4722, - "fields": { - "parent": "wz_vengeful-panopy-of-the-ley-line-ignited", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4723, - "fields": { - "parent": "wz_vengeful-panopy-of-the-ley-line-ignited", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4724, - "fields": { - "parent": "wz_who-goes-there", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 4725, - "fields": { - "parent": "wz_zymurgic-aura", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - } -] \ No newline at end of file +{ + "model": "api_v2.spellcastingoption", + "pk": 4551, + "fields": { + "parent": "wz_abrupt-hug", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4552, + "fields": { + "parent": "wz_avert-evil-eye", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4553, + "fields": { + "parent": "wz_bardo", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4554, + "fields": { + "parent": "wz_battle-chant", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4555, + "fields": { + "parent": "wz_battle-chant", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4557, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "70 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4558, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "80 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4559, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "90 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4560, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "100 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4561, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "110 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4562, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "120 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4563, + "fields": { + "parent": "wz_battle-chant", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": "130 feet" + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4564, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4566, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_3", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4567, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_4", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4568, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_5", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4569, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_6", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4570, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_7", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4571, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_8", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4572, + "fields": { + "parent": "wz_bombardment-of-stings", + "type": "slot_level_9", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4573, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4575, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4576, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4577, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4578, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4579, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4580, + "fields": { + "parent": "wz_charming-aesthetics", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4581, + "fields": { + "parent": "wz_child-of-light-and-darkness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4582, + "fields": { + "parent": "wz_commanders-pavilion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4583, + "fields": { + "parent": "wz_commanders-pavilion", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4584, + "fields": { + "parent": "wz_devouring-darkness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4585, + "fields": { + "parent": "wz_door-of-the-far-traveler", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4587, + "fields": { + "parent": "wz_door-of-the-far-traveler", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "12 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4588, + "fields": { + "parent": "wz_eternal-echo", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4589, + "fields": { + "parent": "wz_ethereal-stairs", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4591, + "fields": { + "parent": "wz_ethereal-stairs", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4592, + "fields": { + "parent": "wz_ethereal-stairs", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4593, + "fields": { + "parent": "wz_ethereal-stairs", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4594, + "fields": { + "parent": "wz_ethereal-stairs", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4595, + "fields": { + "parent": "wz_exchanged-knowledge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4596, + "fields": { + "parent": "wz_hedgehog-dozen", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4597, + "fields": { + "parent": "wz_hypnagogia", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4599, + "fields": { + "parent": "wz_hypnagogia", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4600, + "fields": { + "parent": "wz_hypnagogia", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4601, + "fields": { + "parent": "wz_hypnagogia", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4602, + "fields": { + "parent": "wz_hypnagogia", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4603, + "fields": { + "parent": "wz_hypnagogia", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4604, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4605, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_1", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4606, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4607, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4608, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4609, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_5", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4610, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_6", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4611, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_7", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4612, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_8", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4613, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_9", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4614, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_10", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4615, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_11", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4616, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_12", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4617, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_13", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4618, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_14", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4619, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_15", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4620, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_16", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4621, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_17", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4622, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_18", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4623, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_19", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4624, + "fields": { + "parent": "wz_hypnic-jerk", + "type": "player_level_20", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4625, + "fields": { + "parent": "wz_inconspicuous-facade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4626, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4628, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4629, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4630, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4631, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4632, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4633, + "fields": { + "parent": "wz_march-of-the-dead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4634, + "fields": { + "parent": "wz_mind-maze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4635, + "fields": { + "parent": "wz_mirror-realm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4636, + "fields": { + "parent": "wz_mirror-realm", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4637, + "fields": { + "parent": "wz_obfuscate-object", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4638, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4639, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4640, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4641, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4642, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4643, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4644, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4645, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4646, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4647, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_10", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4648, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_11", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4649, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_12", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4650, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_13", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4651, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_14", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4652, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_15", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4653, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_16", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4654, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_17", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4655, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_18", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4656, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_19", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4657, + "fields": { + "parent": "wz_obfuscate-object", + "type": "player_level_20", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4658, + "fields": { + "parent": "wz_order-of-revenge", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4660, + "fields": { + "parent": "wz_order-of-revenge", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4661, + "fields": { + "parent": "wz_order-of-revenge", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4662, + "fields": { + "parent": "wz_order-of-revenge", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4663, + "fields": { + "parent": "wz_order-of-revenge", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4664, + "fields": { + "parent": "wz_order-of-revenge", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4665, + "fields": { + "parent": "wz_order-of-revenge", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4666, + "fields": { + "parent": "wz_pierce-the-veil", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4667, + "fields": { + "parent": "wz_pierce-the-veil", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4668, + "fields": { + "parent": "wz_pratfall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4669, + "fields": { + "parent": "wz_putrescent-faerie-circle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4670, + "fields": { + "parent": "wz_reassemble", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4671, + "fields": { + "parent": "wz_reciprocating-portal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4672, + "fields": { + "parent": "wz_remove-insulation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4674, + "fields": { + "parent": "wz_remove-insulation", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4675, + "fields": { + "parent": "wz_remove-insulation", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4676, + "fields": { + "parent": "wz_remove-insulation", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4677, + "fields": { + "parent": "wz_remove-insulation", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4678, + "fields": { + "parent": "wz_remove-insulation", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4679, + "fields": { + "parent": "wz_revenges-eye", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4681, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4682, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4683, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4684, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4685, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4686, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4687, + "fields": { + "parent": "wz_revenges-eye", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4688, + "fields": { + "parent": "wz_rise-of-the-green", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4690, + "fields": { + "parent": "wz_rise-of-the-green", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4691, + "fields": { + "parent": "wz_rive", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4692, + "fields": { + "parent": "wz_shadow-adaptation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4693, + "fields": { + "parent": "wz_skull-road", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4694, + "fields": { + "parent": "wz_storm-of-axes", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4695, + "fields": { + "parent": "wz_subliminal-aversion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4696, + "fields": { + "parent": "wz_summon-clockwork-beast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4697, + "fields": { + "parent": "wz_summon-clockwork-beast", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4698, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4700, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4701, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4702, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4703, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4704, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4705, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4706, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4707, + "fields": { + "parent": "wz_suppress-regeneration", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4708, + "fields": { + "parent": "wz_threshold-slip", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4709, + "fields": { + "parent": "wz_toxic-pollen", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4710, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4712, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4713, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4714, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4715, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4716, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4717, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4718, + "fields": { + "parent": "wz_vagrants-nondescript-cloak", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4719, + "fields": { + "parent": "wz_vengeful-panopy-of-the-ley-line-ignited", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4721, + "fields": { + "parent": "wz_vengeful-panopy-of-the-ley-line-ignited", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4722, + "fields": { + "parent": "wz_vengeful-panopy-of-the-ley-line-ignited", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4723, + "fields": { + "parent": "wz_vengeful-panopy-of-the-ley-line-ignited", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4724, + "fields": { + "parent": "wz_who-goes-there", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 4725, + "fields": { + "parent": "wz_zymurgic-aura", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +} +] diff --git a/data/v2/open5e/open5e/Spell.json b/data/v2/open5e/open5e/Spell.json index 8cf4cf69..31eb5f88 100644 --- a/data/v2/open5e/open5e/Spell.json +++ b/data/v2/open5e/open5e/Spell.json @@ -1,66 +1,66 @@ [ - { - "model": "api_v2.spell", - "pk": "open5e_eye-bite", - "fields": { - "name": "Eye bite", - "desc": "For the spell's Duration, your eyes turn black and veins of dark energy lace your cheeks. One creature of your choice within 60 feet of you that you can see must succeed on a Wisdom saving throw or be affected by one of the listed Effects of your choice for the Duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of Eyebite.\n\nAsleep: The target is rendered Unconscious. It wakes up if it takes any damage or if another creature uses its action to jostle the sleeper awake.\n\nPanicked: The target is Frightened of you. On each of its turns, the Frightened creature must take the Dash action and move away from you by the safest and shortest possible route, unless there is no place to move. If the target is at least 60 feet away from you and can no longer see you, this effect ends.\n\nSickened: The target has disadvantage on Attack rolls and Ability Checks. At the end of each of its turns, it can make another Wisdom saving throw. If it succeeds, the effect ends.\n\n*(This Open5e spell replaces a like-named non-SRD spell from an official source.*", - "document": "open5e", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "open5e_ray-of-sickness", - "fields": { - "name": "Ray of Sickness", - "desc": "A ray of green light appears at your fingertip, arcing towards a target within range.\n\nMake a ranged spell attack against the target. On a hit, the target takes 2d8 poison damage and must make a Constitution saving throw. On a failed save, it is also poisoned until the end of your next turn.\n\n*(This Open5e spell replaces a like-named non-SRD spell from an official source.*", - "document": "open5e", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "2d8", - "damage_types": [ - "poison" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } +{ + "model": "api_v2.spell", + "pk": "open5e_eye-bite", + "fields": { + "name": "Eye bite", + "desc": "For the spell's Duration, your eyes turn black and veins of dark energy lace your cheeks. One creature of your choice within 60 feet of you that you can see must succeed on a Wisdom saving throw or be affected by one of the listed Effects of your choice for the Duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of Eyebite.\n\nAsleep: The target is rendered Unconscious. It wakes up if it takes any damage or if another creature uses its action to jostle the sleeper awake.\n\nPanicked: The target is Frightened of you. On each of its turns, the Frightened creature must take the Dash action and move away from you by the safest and shortest possible route, unless there is no place to move. If the target is at least 60 feet away from you and can no longer see you, this effect ends.\n\nSickened: The target has disadvantage on Attack rolls and Ability Checks. At the end of each of its turns, it can make another Wisdom saving throw. If it succeeds, the effect ends.\n\n*(This Open5e spell replaces a like-named non-SRD spell from an official source.*", + "document": "open5e", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true } -] \ No newline at end of file +}, +{ + "model": "api_v2.spell", + "pk": "open5e_ray-of-sickness", + "fields": { + "name": "Ray of Sickness", + "desc": "A ray of green light appears at your fingertip, arcing towards a target within range.\n\nMake a ranged spell attack against the target. On a hit, the target takes 2d8 poison damage and must make a Constitution saving throw. On a failed save, it is also poisoned until the end of your next turn.\n\n*(This Open5e spell replaces a like-named non-SRD spell from an official source.*", + "document": "open5e", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "2d8", + "damage_types": [ + "poison" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +} +] diff --git a/data/v2/open5e/open5e/SpellCastingOption.json b/data/v2/open5e/open5e/SpellCastingOption.json index 2a115b09..66d6a655 100644 --- a/data/v2/open5e/open5e/SpellCastingOption.json +++ b/data/v2/open5e/open5e/SpellCastingOption.json @@ -1,122 +1,122 @@ [ - { - "model": "api_v2.spellcastingoption", - "pk": 6139, - "fields": { - "parent": "open5e_eye-bite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6140, - "fields": { - "parent": "open5e_ray-of-sickness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6142, - "fields": { - "parent": "open5e_ray-of-sickness", - "type": "slot_level_2", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6143, - "fields": { - "parent": "open5e_ray-of-sickness", - "type": "slot_level_3", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6144, - "fields": { - "parent": "open5e_ray-of-sickness", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6145, - "fields": { - "parent": "open5e_ray-of-sickness", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6146, - "fields": { - "parent": "open5e_ray-of-sickness", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6147, - "fields": { - "parent": "open5e_ray-of-sickness", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6148, - "fields": { - "parent": "open5e_ray-of-sickness", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6149, - "fields": { - "parent": "open5e_ray-of-sickness", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } +{ + "model": "api_v2.spellcastingoption", + "pk": 6139, + "fields": { + "parent": "open5e_eye-bite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null } -] \ No newline at end of file +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6140, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6142, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_2", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6143, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_3", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6144, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6145, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6146, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6147, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6148, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6149, + "fields": { + "parent": "open5e_ray-of-sickness", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/Item.json b/data/v2/wizards-of-the-coast/srd/Item.json index 93a05301..e9209b98 100644 --- a/data/v2/wizards-of-the-coast/srd/Item.json +++ b/data/v2/wizards-of-the-coast/srd/Item.json @@ -1,13891 +1,13853 @@ [ - { - "model": "api_v2.item", - "pk": "srd_cinnamon", - "fields": { - "name": "Cinnamon", - "desc": "1lb of cinnamon", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloves", - "fields": { - "name": "Cloves", - "desc": "1lb of cloves.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "3.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_copper", - "fields": { - "name": "Copper", - "desc": "1lb of copper.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flour", - "fields": { - "name": "Flour", - "desc": "1lb of flour", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_ginger", - "fields": { - "name": "Ginger", - "desc": "1lb of Ginger.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_gold", - "fields": { - "name": "Gold", - "desc": "1lb of gold.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_iron", - "fields": { - "name": "Iron", - "desc": "1lb of iron.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pepper", - "fields": { - "name": "Pepper", - "desc": "1lb of pepper.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_platinum", - "fields": { - "name": "Platinum", - "desc": "1 lb. of platinum.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "500.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_saffron", - "fields": { - "name": "Saffron", - "desc": "1lb of saffron.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_salt", - "fields": { - "name": "Salt", - "desc": "1lb of salt.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_silver", - "fields": { - "name": "Silver", - "desc": "1lb of silver", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_wheat", - "fields": { - "name": "Wheat", - "desc": "1 pound of wheat.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_canvas", - "fields": { - "name": "Canvas", - "desc": "1 sq. yd. of canvas", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cotton-cloth", - "fields": { - "name": "Cotton Cloth", - "desc": "1 sq. yd. of cotton cloth.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_linen", - "fields": { - "name": "Linen", - "desc": "1 sq. yd. of linen.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_silk", - "fields": { - "name": "Silk", - "desc": "1 sq. yd. of silk.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_abacus", - "fields": { - "name": "Abacus", - "desc": "An abacus.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_acid", - "fields": { - "name": "Acid", - "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_acid-vial", - "fields": { - "name": "Acid (vial)", - "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-breastplate", - "fields": { - "name": "Adamantine Armor (Breastplate)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-chain-mail", - "fields": { - "name": "Adamantine Armor (Chain-Mail)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-chain-shirt", - "fields": { - "name": "Adamantine Armor (Chain-Shirt)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-half-plate", - "fields": { - "name": "Adamantine Armor (Half-Plate)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-hide", - "fields": { - "name": "Adamantine Armor (Hide)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-plate", - "fields": { - "name": "Adamantine Armor (Plate)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-ring-mail", - "fields": { - "name": "Adamantine Armor (Ring-Mail)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-scale-mail", - "fields": { - "name": "Adamantine Armor (Scale-Mail)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-splint", - "fields": { - "name": "Adamantine Armor (Splint)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_alchemists-fire-flask", - "fields": { - "name": "Alchemist's Fire (Flask)", - "desc": "This sticky, adhesive fluid ignites when exposed to air. As an action, you can throw this flask up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the alchemist's fire as an improvised weapon. On a hit, the target takes 1d4 fire damage at the start of each of its turns. A creature can end this damage by using its action to make a DC 10 Dexterity check to extinguish the flames.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_alchemists-supplies", - "fields": { - "name": "Alchemist's Supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_amulet", - "fields": { - "name": "Amulet", - "desc": "Can be used as a holy symbol.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_amulet-of-health", - "fields": { - "name": "Amulet of Health", - "desc": "Your Constitution score is 19 while you wear this amulet. It has no effect on you if your Constitution is already 19 or higher.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_amulet-of-proof-against-detection-and-location", - "fields": { - "name": "Amulet of Proof against Detection and Location", - "desc": "While wearing this amulet, you are hidden from divination magic. You can't be targeted by such magic or perceived through magical scrying sensors.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_amulet-of-the-planes", - "fields": { - "name": "Amulet of the Planes", - "desc": "While wearing this amulet, you can use an action to name a location that you are familiar with on another plane of existence. Then make a DC 15 Intelligence check. On a successful check, you cast the _plane shift_ spell. On a failure, you and each creature and object within 15 feet of you travel to a random destination. Roll a d100. On a 1-60, you travel to a random location on the plane you named. On a 61-100, you travel to a randomly determined plane of existence.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_animated-shield", - "fields": { - "name": "Animated Shield", - "desc": "While holding this shield, you can speak its command word as a bonus action to cause it to animate. The shield leaps into the air and hovers in your space to protect you as if you were wielding it, leaving your hands free. The shield remains animated for 1 minute, until you use a bonus action to end this effect, or until you are incapacitated or die, at which point the shield falls to the ground or into your hand if you have one free.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_antitoxin-vial", - "fields": { - "name": "Antitoxin (Vial)", - "desc": "A creature that drinks this vial of liquid gains advantage on saving throws against poison for 1 hour. It confers no benefit to undead or constructs.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_apparatus-of-the-crab", - "fields": { - "name": "Apparatus of the Crab", - "desc": "This item first appears to be a Large sealed iron barrel weighing 500 pounds. The barrel has a hidden catch, which can be found with a successful DC 20 Intelligence (Investigation) check. Releasing the catch unlocks a hatch at one end of the barrel, allowing two Medium or smaller creatures to crawl inside. Ten levers are set in a row at the far end, each in a neutral position, able to move either up or down. When certain levers are used, the apparatus transforms to resemble a giant lobster.\r\n\r\nThe apparatus of the Crab is a Large object with the following statistics:\r\n\r\n**Armor Class:** 20\r\n\r\n**Hit Points:** 200\r\n\r\n**Speed:** 30 ft., swim 30 ft. (or 0 ft. for both if the legs and tail aren't extended)\r\n\r\n**Damage Immunities:** poison, psychic\r\n\r\nTo be used as a vehicle, the apparatus requires one pilot. While the apparatus's hatch is closed, the compartment is airtight and watertight. The compartment holds enough air for 10 hours of breathing, divided by the number of breathing creatures inside.\r\n\r\nThe apparatus floats on water. It can also go underwater to a depth of 900 feet. Below that, the vehicle takes 2d6 bludgeoning damage per minute from pressure.\r\n\r\nA creature in the compartment can use an action to move as many as two of the apparatus's levers up or down. After each use, a lever goes back to its neutral position. Each lever, from left to right, functions as shown in the Apparatus of the Crab Levers table.\r\n\r\n**Apparatus of the Crab Levers (table)**\r\n\r\n| Lever | Up | Down |\r\n|-------|----------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 1 | Legs and tail extend, allowing the apparatus to walk and swim. | Legs and tail retract, reducing the apparatus's speed to 0 and making it unable to benefit from bonuses to speed. |\r\n| 2 | Forward window shutter opens. | Forward window shutter closes. |\r\n| 3 | Side window shutters open (two per side). | Side window shutters close (two per side). |\r\n| 4 | Two claws extend from the front sides of the apparatus. | The claws retract. |\r\n| 5 | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: 7 (2d6) bludgeoning damage. | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: The target is grappled (escape DC 15). |\r\n| 6 | The apparatus walks or swims forward. | The apparatus walks or swims backward. |\r\n| 7 | The apparatus turns 90 degrees left. | The apparatus turns 90 degrees right. |\r\n| 8 | Eyelike fixtures emit bright light in a 30-foot radius and dim light for an additional 30 feet. | The light turns off. |\r\n| 9 | The apparatus sinks as much as 20 feet in liquid. | The apparatus rises up to 20 feet in liquid. |\r\n| 10 | The rear hatch unseals and opens. | The rear hatch closes and seals. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_armor-of-invulnerability", - "fields": { - "name": "Armor of Invulnerability", - "desc": "You have resistance to nonmagical damage while you wear this armor. Additionally, you can use an action to make yourself immune to nonmagical damage for 10 minutes or until you are no longer wearing the armor. Once this special action is used, it can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_armor-of-resistance-leather", - "fields": { - "name": "Armor of Resistance (Leather)", - "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_armor-of-resistance-padded", - "fields": { - "name": "Armor of Resistance (Padded)", - "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_armor-of-resistance-studded-leather", - "fields": { - "name": "Armor of Resistance (Studded-Leather)", - "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_armor-of-vulnerability", - "fields": { - "name": "Armor of Vulnerability", - "desc": "While wearing this armor, you have resistance to one of the following damage types: bludgeoning, piercing, or slashing. The GM chooses the type or determines it randomly.\n\n**_Curse_**. This armor is cursed, a fact that is revealed only when an _identify_ spell is cast on the armor or you attune to it. Attuning to the armor curses you until you are targeted by the _remove curse_ spell or similar magic; removing the armor fails to end the curse. While cursed, you have vulnerability to two of the three damage types associated with the armor (not the one to which it grants resistance).", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_arrow-bow", - "fields": { - "name": "Arrow (bow)", - "desc": "An arrow for a bow.", - "document": "srd", - "size": "tiny", - "weight": "0.050", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_arrow-catching-shield", - "fields": { - "name": "Arrow-Catching Shield", - "desc": "You gain a +2 bonus to AC against ranged attacks while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. In addition, whenever an attacker makes a ranged attack against a target within 5 feet of you, you can use your reaction to become the target of the attack instead.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_arrow-of-slaying", - "fields": { - "name": "Arrow of Slaying", - "desc": "An _arrow of slaying_ is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both _arrows of dragon slaying_ and _arrows of blue dragon slaying_. If a creature belonging to the type, race, or group associated with an _arrow of slaying_ takes damage from the arrow, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.\\n\\nOnce an _arrow of slaying_ deals its extra damage to a creature, it becomes a nonmagical arrow.\\n\\nOther types of magic ammunition of this kind exist, such as _bolts of slaying_ meant for a crossbow, though arrows are most common.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_assassins-blood", - "fields": { - "name": "Assassin's Blood", - "desc": "A creature subjected to this poison must make a DC 10 Constitution saving throw. On a failed save, it takes 6 (1d12) poison damage and is poisoned for 24 hours. On a successful save, the creature takes half damage and isn't poisoned.\\n\\n\r\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "150.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_backpack", - "fields": { - "name": "Backpack", - "desc": "A backpack. Capacity: 1 cubic foot/30 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_bag-of-beans", - "fields": { - "name": "Bag of Beans", - "desc": "Inside this heavy cloth bag are 3d4 dry beans. The bag weighs 1/2 pound plus 1/4 pound for each bean it contains.\r\n\r\nIf you dump the bag's contents out on the ground, they explode in a 10-foot radius, extending from the beans. Each creature in the area, including you, must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.\r\n\r\nIf you remove a bean from the bag, plant it in dirt or sand, and then water it, the bean produces an effect 1 minute later from the ground where it was planted. The GM can choose an effect from the following table, determine it randomly, or create an effect.\r\n\r\n| d100 | Effect |\r\n|-------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01 | 5d4 toadstools sprout. If a creature eats a toadstool, roll any die. On an odd roll, the eater must succeed on a DC 15 Constitution saving throw or take 5d6 poison damage and become poisoned for 1 hour. On an even roll, the eater gains 5d6 temporary hit points for 1 hour. |\r\n| 02-10 | A geyser erupts and spouts water, beer, berry juice, tea, vinegar, wine, or oil (GM's choice) 30 feet into the air for 1d12 rounds. |\r\n| 11-20 | A treant sprouts. There's a 50 percent chance that the treant is chaotic evil and attacks. |\r\n| 21-30 | An animate, immobile stone statue in your likeness rises. It makes verbal threats against you. If you leave it and others come near, it describes you as the most heinous of villains and directs the newcomers to find and attack you. If you are on the same plane of existence as the statue, it knows where you are. The statue becomes inanimate after 24 hours. |\r\n| 31-40 | A campfire with blue flames springs forth and burns for 24 hours (or until it is extinguished). |\r\n| 41-50 | 1d6 + 6 shriekers sprout |\r\n| 51-60 | 1d4 + 8 bright pink toads crawl forth. Whenever a toad is touched, it transforms into a Large or smaller monster of the GM's choice. The monster remains for 1 minute, then disappears in a puff of bright pink smoke. |\r\n| 61-70 | A hungry bulette burrows up and attacks. 71-80 A fruit tree grows. It has 1d10 + 20 fruit, 1d8 of which act as randomly determined magic potions, while one acts as an ingested poison of the GM's choice. The tree vanishes after 1 hour. Picked fruit remains, retaining any magic for 30 days. |\r\n| 81-90 | A nest of 1d4 + 3 eggs springs up. Any creature that eats an egg must make a DC 20 Constitution saving throw. On a successful save, a creature permanently increases its lowest ability score by 1, randomly choosing among equally low scores. On a failed save, the creature takes 10d6 force damage from an internal magical explosion. |\r\n| 91-99 | A pyramid with a 60-foot-square base bursts upward. Inside is a sarcophagus containing a mummy lord. The pyramid is treated as the mummy lord's lair, and its sarcophagus contains treasure of the GM's choice. |\r\n| 100 | A giant beanstalk sprouts, growing to a height of the GM's choice. The top leads where the GM chooses, such as to a great view, a cloud giant's castle, or a different plane of existence. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bag-of-devouring", - "fields": { - "name": "Bag of Devouring", - "desc": "This bag superficially resembles a _bag of holding_ but is a feeding orifice for a gigantic extradimensional creature. Turning the bag inside out closes the orifice.\r\n\r\nThe extradimensional creature attached to the bag can sense whatever is placed inside the bag. Animal or vegetable matter placed wholly in the bag is devoured and lost forever. When part of a living creature is placed in the bag, as happens when someone reaches inside it, there is a 50 percent chance that the creature is pulled inside the bag. A creature inside the bag can use its action to try to escape with a successful DC 15 Strength check. Another creature can use its action to reach into the bag to pull a creature out, doing so with a successful DC 20 Strength check (provided it isn't pulled inside the bag first). Any creature that starts its turn inside the bag is devoured, its body destroyed.\r\n\r\nInanimate objects can be stored in the bag, which can hold a cubic foot of such material. However, once each day, the bag swallows any objects inside it and spits them out into another plane of existence. The GM determines the time and plane.\r\n\r\nIf the bag is pierced or torn, it is destroyed, and anything contained within it is transported to a random location on the Astral Plane.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bag-of-holding", - "fields": { - "name": "Bag of Holding", - "desc": "This bag has an interior space considerably larger than its outside dimensions, roughly 2 feet in diameter at the mouth and 4 feet deep. The bag can hold up to 500 pounds, not exceeding a volume of 64 cubic feet. The bag weighs 15 pounds, regardless of its contents. Retrieving an item from the bag requires an action.\r\n\r\nIf the bag is overloaded, pierced, or torn, it ruptures and is destroyed, and its contents are scattered in the Astral Plane. If the bag is turned inside out, its contents spill forth, unharmed, but the bag must be put right before it can be used again. Breathing creatures inside the bag can survive up to a number of minutes equal to 10 divided by the number of creatures (minimum 1 minute), after which time they begin to suffocate.\r\n\r\nPlacing a _bag of holding_ inside an extradimensional space created by a _handy haversack_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it to a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bag-of-tricks", - "fields": { - "name": "Bag of Tricks", - "desc": "This ordinary bag, made from gray, rust, or tan cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\r\n\r\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a d8 and consulting the table that corresponds to the bag's color.\r\n\r\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\r\n\r\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.\r\n\r\n**Gray Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Weasel |\r\n| 2 | Giant rat |\r\n| 3 | Badger |\r\n| 4 | Boar |\r\n| 5 | Panther |\r\n| 6 | Giant badger |\r\n| 7 | Dire wolf |\r\n| 8 | Giant elk |\r\n\r\n**Rust Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|------------|\r\n| 1 | Rat |\r\n| 2 | Owl |\r\n| 3 | Mastiff |\r\n| 4 | Goat |\r\n| 5 | Giant goat |\r\n| 6 | Giant boar |\r\n| 7 | Lion |\r\n| 8 | Brown bear |\r\n\r\n**Tan Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Jackal |\r\n| 2 | Ape |\r\n| 3 | Baboon |\r\n| 4 | Axe beak |\r\n| 5 | Black bear |\r\n| 6 | Giant weasel |\r\n| 7 | Giant hyena |\r\n| 8 | Tiger |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bagpipes", - "fields": { - "name": "Bagpipes", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_ball-bearings-bag-of-1000", - "fields": { - "name": "Ball Bearings (bag of 1000)", - "desc": "As an action, you can spill these tiny metal balls from their pouch to cover a level, square area that is 10 feet on a side. A creature moving across the covered area must succeed on a DC 10 Dexterity saving throw or fall prone. A creature moving through the area at half speed doesn't need to make the save.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_barrel", - "fields": { - "name": "Barrel", - "desc": "A barrel. Capacity: 40 gallons liquid, 4 cubic feet solid.", - "document": "srd", - "size": "medium", - "weight": "70.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_basket", - "fields": { - "name": "Basket", - "desc": "A basket. Capacity: 2 cubic feet/40 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.40", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_battleaxe", - "fields": { - "name": "Battleaxe", - "desc": "A battleaxe.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_battleaxe-1", - "fields": { - "name": "Battleaxe (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_battleaxe-2", - "fields": { - "name": "Battleaxe (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_battleaxe-3", - "fields": { - "name": "Battleaxe (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bead-of-force", - "fields": { - "name": "Bead of Force", - "desc": "This small black sphere measures 3/4 of an inch in diameter and weighs an ounce. Typically, 1d4 + 4 _beads of force_ are found together.\r\n\r\nYou can use an action to throw the bead up to 60 feet. The bead explodes on impact and is destroyed. Each creature within a 10-foot radius of where the bead landed must succeed on a DC 15 Dexterity saving throw or take 5d4 force damage. A sphere of transparent force then encloses the area for 1 minute. Any creature that failed the save and is completely within the area is trapped inside this sphere. Creatures that succeeded on the save, or are partially within the area, are pushed away from the center of the sphere until they are no longer inside it. Only breathable air can pass through the sphere's wall. No attack or other effect can.\r\n\r\nAn enclosed creature can use its action to push against the sphere's wall, moving the sphere up to half the creature's walking speed. The sphere can be picked up, and its magic causes it to weigh only 1 pound, regardless of the weight of creatures inside.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bedroll", - "fields": { - "name": "Bedroll", - "desc": "A bedroll.", - "document": "srd", - "size": "tiny", - "weight": "7.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_bell", - "fields": { - "name": "Bell", - "desc": "A bell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-cloud-giant-strength", - "fields": { - "name": "Belt of Cloud Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-dwarvenkind", - "fields": { - "name": "Belt of Dwarvenkind", - "desc": "While wearing this belt, you gain the following benefits:\r\n\r\n* Your Constitution score increases by 2, to a maximum of 20.\r\n* You have advantage on Charisma (Persuasion) checks made to interact with dwarves.\r\n\r\nIn addition, while attuned to the belt, you have a 50 percent chance each day at dawn of growing a full beard if you're capable of growing one, or a visibly thicker beard if you already have one.\r\n\r\nIf you aren't a dwarf, you gain the following additional benefits while wearing the belt:\r\n\r\n* You have advantage on saving throws against poison, and you have resistance against poison damage.\r\n* You have darkvision out to a range of 60 feet.\r\n* You can speak, read, and write Dwarvish.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-fire-giant-strength", - "fields": { - "name": "Belt of Fire Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-frost-giant-strength", - "fields": { - "name": "Belt of Frost Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-hill-giant-strength", - "fields": { - "name": "Belt of Hill Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-stone-giant-strength", - "fields": { - "name": "Belt of Stone Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-storm-giant-strength", - "fields": { - "name": "Belt of Storm Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_blanket", - "fields": { - "name": "Blanket", - "desc": "A blanket.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_block-and-tackle", - "fields": { - "name": "Block and Tackle", - "desc": "A set of pulleys with a cable threaded through them and a hook to attach to objects, a block and tackle allows you to hoist up to four times the weight you can normally lift.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_blowgun", - "fields": { - "name": "Blowgun", - "desc": "A blowgun.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_blowgun-1", - "fields": { - "name": "Blowgun (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_blowgun-2", - "fields": { - "name": "Blowgun (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_blowgun-3", - "fields": { - "name": "Blowgun (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_blowgun-needles", - "fields": { - "name": "Blowgun needles", - "desc": "Needles to be fired with a blowgun.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_book", - "fields": { - "name": "Book", - "desc": "A book might contain poetry, historical accounts, information pertaining to a particular field of lore, diagrams and notes on gnomish contraptions, or just about anything else that can be represented using text or pictures. A book of spells is a spellbook (described later in this section).", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_boots-of-elvenkind", - "fields": { - "name": "Boots of Elvenkind", - "desc": "While you wear these boots, your steps make no sound, regardless of the surface you are moving across. You also have advantage on Dexterity (Stealth) checks that rely on moving silently.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_boots-of-levitation", - "fields": { - "name": "Boots of Levitation", - "desc": "While you wear these boots, you can use an action to cast the _levitate_ spell on yourself at will.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_boots-of-speed", - "fields": { - "name": "Boots of Speed", - "desc": "While you wear these boots, you can use a bonus action and click the boots' heels together. If you do, the boots double your walking speed, and any creature that makes an opportunity attack against you has disadvantage on the attack roll. If you click your heels together again, you end the effect.\r\n\r\nWhen the boots' property has been used for a total of 10 minutes, the magic ceases to function until you finish a long rest.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_boots-of-striding-and-springing", - "fields": { - "name": "Boots of Striding and Springing", - "desc": "While you wear these boots, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced if you are encumbered or wearing heavy armor. In addition, you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_boots-of-the-winterlands", - "fields": { - "name": "Boots of the Winterlands", - "desc": "These furred boots are snug and feel quite warm. While you wear them, you gain the following benefits:\r\n\r\n* You have resistance to cold damage.\r\n* You ignore difficult terrain created by ice or snow.\r\n* You can tolerate temperatures as low as -50 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as -100 degrees Fahrenheit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bottle-glass", - "fields": { - "name": "Bottle, glass", - "desc": "A glass bottle. Capacity: 1.5 pints liquid.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_bowl-of-commanding-water-elementals", - "fields": { - "name": "Bowl of Commanding Water Elementals", - "desc": "While this bowl is filled with water, you can use an action to speak the bowl's command word and summon a water elemental, as if you had cast the _conjure elemental_ spell. The bowl can't be used this way again until the next dawn.\r\n\r\nThe bowl is about 1 foot in diameter and half as deep. It weighs 3 pounds and holds about 3 gallons.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bracers-of-archery", - "fields": { - "name": "Bracers of Archery", - "desc": "While wearing these bracers, you have proficiency with the longbow and shortbow, and you gain a +2 bonus to damage rolls on ranged attacks made with such weapons.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bracers-of-defense", - "fields": { - "name": "Bracers of Defense", - "desc": "While wearing these bracers, you gain a +2 bonus to AC if you are wearing no armor and using no shield.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_brazier-of-commanding-fire-elementals", - "fields": { - "name": "Brazier of Commanding Fire Elementals", - "desc": "While a fire burns in this brass brazier, you can use an action to speak the brazier's command word and summon a fire elemental, as if you had cast the _conjure elemental_ spell. The brazier can't be used this way again until the next dawn.\r\n\r\nThe brazier weighs 5 pounds.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_breastplate", - "fields": { - "name": "Breastplate", - "desc": "This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.", - "document": "srd", - "size": "tiny", - "weight": "20.000", - "armor_class": 0, - "hit_points": 0, - "cost": "400.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_brewers-supplies", - "fields": { - "name": "Brewer's Supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "9.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_brooch-of-shielding", - "fields": { - "name": "Brooch of Shielding", - "desc": "While wearing this brooch, you have resistance to force damage, and you have immunity to damage from the _magic missile_ spell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_broom-of-flying", - "fields": { - "name": "Broom of Flying", - "desc": "This wooden broom, which weighs 3 pounds, functions like a mundane broom until you stand astride it and speak its command word. It then hovers beneath you and can be ridden in the air. It has a flying speed of 50 feet. It can carry up to 400 pounds, but its flying speed becomes 30 feet while carrying over 200 pounds. The broom stops hovering when you land.\r\n\r\nYou can send the broom to travel alone to a destination within 1 mile of you if you speak the command word, name the location, and are familiar with that place. The broom comes back to you when you speak another command word, provided that the broom is still within 1 mile of you.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bucket", - "fields": { - "name": "Bucket", - "desc": "A bucket. Capacity: 3 gallons liquid, 1/2 cubic foot solid.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_burnt-othur-fumes", - "fields": { - "name": "Burnt othur fumes", - "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or take 10 (3d6) poison damage, and must repeat the saving throw at the start of each of its turns. On each successive failed save, the character takes 3 (1d6) poison damage. After three successful saves, the poison ends.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "500.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_calligraphers-supplies", - "fields": { - "name": "Calligrapher's supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_caltrops-bag-of-20", - "fields": { - "name": "Caltrops (bag of 20)", - "desc": "As an action, you can spread a bag of caltrops to cover a square area that is 5 feet on a side. Any creature that enters the area must succeed on a DC 15 Dexterity saving throw or stop moving this turn and take 1 piercing damage. Taking this damage reduces the creature's walking speed by 10 feet until the creature regains at least 1 hit point. A creature moving through the area at half speed doesn't need to make the save.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_candle", - "fields": { - "name": "Candle", - "desc": "For 1 hour, a candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_candle-of-invocation", - "fields": { - "name": "Candle of Invocation", - "desc": "This slender taper is dedicated to a deity and shares that deity's alignment. The candle's alignment can be detected with the _detect evil and good_ spell. The GM chooses the god and associated alignment or determines the alignment randomly.\r\n\r\n| d20 | Alignment |\r\n|-------|-----------------|\r\n| 1-2 | Chaotic evil |\r\n| 3-4 | Chaotic neutral |\r\n| 5-7 | Chaotic good |\r\n| 8-9 | Neutral evil |\r\n| 10-11 | Neutral |\r\n| 12-13 | Neutral good |\r\n| 14-15 | Lawful evil |\r\n| 16-17 | Lawful neutral |\r\n| 18-20 | Lawful good |\r\n\r\nThe candle's magic is activated when the candle is lit, which requires an action. After burning for 4 hours, the candle is destroyed. You can snuff it out early for use at a later time. Deduct the time it burned in increments of 1 minute from the candle's total burn time.\r\n\r\nWhile lit, the candle sheds dim light in a 30-foot radius. Any creature within that light whose alignment matches that of the candle makes attack rolls, saving throws, and ability checks with advantage. In addition, a cleric or druid in the light whose alignment matches the candle's can cast 1st* level spells he or she has prepared without expending spell slots, though the spell's effect is as if cast with a 1st-level slot.\r\n\r\nAlternatively, when you light the candle for the first time, you can cast the _gate_ spell with it. Doing so destroys the candle.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cape-of-the-mountebank", - "fields": { - "name": "Cape of the Mountebank", - "desc": "This cape smells faintly of brimstone. While wearing it, you can use it to cast the _dimension door_ spell as an action. This property of the cape can't be used again until the next dawn.\r\n\r\nWhen you disappear, you leave behind a cloud of smoke, and you appear in a similar cloud of smoke at your destination. The smoke lightly obscures the space you left and the space you appear in, and it dissipates at the end of your next turn. A light or stronger wind disperses the smoke.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_carpenters-tools", - "fields": { - "name": "Carpenter's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "8.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_carpet-of-flying", - "fields": { - "name": "Carpet of Flying", - "desc": "You can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.\r\n\r\nFour sizes of _carpet of flying_ exist. The GM chooses the size of a given carpet or determines it randomly.\r\n\r\n| d100 | Size | Capacity | Flying Speed |\r\n|--------|---------------|----------|--------------|\r\n| 01-20 | 3 ft. × 5 ft. | 200 lb. | 80 feet |\r\n| 21-55 | 4 ft. × 6 ft. | 400 lb. | 60 feet |\r\n| 56-80 | 5 ft. × 7 ft. | 600 lb. | 40 feet |\r\n| 81-100 | 6 ft. × 9 ft. | 800 lb. | 30 feet |\r\n\r\nA carpet can carry up to twice the weight shown on the table, but it flies at half speed if it carries more than its normal capacity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_carriage", - "fields": { - "name": "Carriage", - "desc": "Drawn vehicle.", - "document": "srd", - "size": "huge", - "weight": "600.000", - "armor_class": 0, - "hit_points": 0, - "cost": "100.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cart", - "fields": { - "name": "Cart", - "desc": "Drawn vehicle", - "document": "srd", - "size": "large", - "weight": "200.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cartographers-tools", - "fields": { - "name": "Cartographer's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_case-crossbow-bolt", - "fields": { - "name": "Case, Crossbow Bolt", - "desc": "This wooden case can hold up to twenty crossbow bolts.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_case-map-or-scroll", - "fields": { - "name": "Case, Map or Scroll", - "desc": "This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_censer-of-controlling-air-elementals", - "fields": { - "name": "Censer of Controlling Air Elementals", - "desc": "While incense is burning in this censer, you can use an action to speak the censer's command word and summon an air elemental, as if you had cast the _conjure elemental_ spell. The censer can't be used this way again until the next dawn.\r\n\r\nThis 6-inch-wide, 1-foot-high vessel resembles a chalice with a decorated lid. It weighs 1 pound.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_chain-10-feet", - "fields": { - "name": "Chain (10 feet)", - "desc": "A chain has 10 hit points. It can be burst with a successful DC 20 Strength check.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chain-mail", - "fields": { - "name": "Chain mail", - "desc": "Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.", - "document": "srd", - "size": "tiny", - "weight": "55.000", - "armor_class": 0, - "hit_points": 0, - "cost": "75.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chain-shirt", - "fields": { - "name": "Chain shirt", - "desc": "Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.", - "document": "srd", - "size": "tiny", - "weight": "20.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chalk-1-piece", - "fields": { - "name": "Chalk (1 piece)", - "desc": "A piece of chalk.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chariot", - "fields": { - "name": "Chariot", - "desc": "Drawn vehicle.", - "document": "srd", - "size": "large", - "weight": "100.000", - "armor_class": 0, - "hit_points": 0, - "cost": "250.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chest", - "fields": { - "name": "Chest", - "desc": "A chest. Capacity: 12 cubic feet/300 pounds of gear.", - "document": "srd", - "size": "small", - "weight": "25.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chicken", - "fields": { - "name": "Chicken", - "desc": "One chicken", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chime-of-opening", - "fields": { - "name": "Chime of Opening", - "desc": "This hollow metal tube measures about 1 foot long and weighs 1 pound. You can strike it as an action, pointing it at an object within 120 feet of you that can be opened, such as a door, lid, or lock. The chime issues a clear tone, and one lock or latch on the object opens unless the sound can't reach the object. If no locks or latches remain, the object itself opens.\r\n\r\nThe chime can be used ten times. After the tenth time, it cracks and becomes useless.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_circlet-of-blasting", - "fields": { - "name": "Circlet of Blasting", - "desc": "While wearing this circlet, you can use an action to cast the _scorching ray_ spell with it. When you make the spell's attacks, you do so with an attack bonus of +5. The circlet can't be used this way again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_climbers-kit", - "fields": { - "name": "Climber's Kit", - "desc": "A climber's kit includes special pitons, boot tips, gloves, and a harness. You can use the climber's kit as an action to anchor yourself; when you do, you can't fall more than 25 feet from the point where you anchored yourself, and you can't climb more than 25 feet away from that point without undoing the anchor.", - "document": "srd", - "size": "tiny", - "weight": "12.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloak-of-arachnida", - "fields": { - "name": "Cloak of Arachnida", - "desc": "This fine garment is made of black silk interwoven with faint silvery threads. While wearing it, you gain the following benefits:\r\n\r\n* You have resistance to poison damage.\r\n* You have a climbing speed equal to your walking speed.\r\n* You can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free.\r\n* You can't be caught in webs of any sort and can move through webs as if they were difficult terrain.\r\n* You can use an action to cast the _web_ spell (save DC 13). The web created by the spell fills twice its normal area. Once used, this property of the cloak can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloak-of-displacement", - "fields": { - "name": "Cloak of Displacement", - "desc": "While you wear this cloak, it projects an illusion that makes you appear to be standing in a place near your actual location, causing any creature to have disadvantage on attack rolls against you. If you take damage, the property ceases to function until the start of your next turn. This property is suppressed while you are incapacitated, restrained, or otherwise unable to move.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloak-of-elvenkind", - "fields": { - "name": "Cloak of Elvenkind", - "desc": "While you wear this cloak with its hood up, Wisdom (Perception) checks made to see you have disadvantage, and you have advantage on Dexterity (Stealth) checks made to hide, as the cloak's color shifts to camouflage you. Pulling the hood up or down requires an action.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloak-of-protection", - "fields": { - "name": "Cloak of Protection", - "desc": "You gain a +1 bonus to AC and saving throws while you wear this cloak.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloak-of-the-bat", - "fields": { - "name": "Cloak of the Bat", - "desc": "While wearing this cloak, you have advantage on Dexterity (Stealth) checks. In an area of dim light or darkness, you can grip the edges of the cloak with both hands and use it to fly at a speed of 40 feet. If you ever fail to grip the cloak's edges while flying in this way, or if you are no longer in dim light or darkness, you lose this flying speed.\r\n\r\nWhile wearing the cloak in an area of dim light or darkness, you can use your action to cast _polymorph_ on yourself, transforming into a bat. While you are in the form of the bat, you retain your Intelligence, Wisdom, and Charisma scores. The cloak can't be used this way again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloak-of-the-manta-ray", - "fields": { - "name": "Cloak of the Manta Ray", - "desc": "While wearing this cloak with its hood up, you can breathe underwater, and you have a swimming speed of 60 feet. Pulling the hood up or down requires an action.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_clothes-common", - "fields": { - "name": "Clothes, Common", - "desc": "Common clothes.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_clothes-costume", - "fields": { - "name": "Clothes, costume", - "desc": "A costume.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_clothes-fine", - "fields": { - "name": "Clothes, fine", - "desc": "Fine clothing.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_clothes-travelers", - "fields": { - "name": "Clothes, traveler's", - "desc": "Traveler's clothing.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_club", - "fields": { - "name": "Club", - "desc": "A club", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_club-1", - "fields": { - "name": "Club (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_club-2", - "fields": { - "name": "Club (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_club-3", - "fields": { - "name": "Club (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cobblers-tools", - "fields": { - "name": "Cobbler's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_component-pouch", - "fields": { - "name": "Component Pouch", - "desc": "A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cooks-utensils", - "fields": { - "name": "Cook's utensils", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cow", - "fields": { - "name": "Cow", - "desc": "One cow.", - "document": "srd", - "size": "large", - "weight": "1000.000", - "armor_class": 10, - "hit_points": 15, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_copper-piece", - "fields": { - "name": "Copper Piece", - "desc": "One silver piece is worth ten copper pieces, which are common among laborers and beggars. A single copper piece buys a candle, a torch, or a piece of chalk.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crawler-mucus", - "fields": { - "name": "Crawler mucus", - "desc": "This poison must be harvested from a dead or incapacitated crawler. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. The poisoned creature is paralyzed. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\\n\\n\r\n**_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-bolt", - "fields": { - "name": "Crossbow bolt", - "desc": "Bolts to be used in a crossbow.", - "document": "srd", - "size": "tiny", - "weight": "0.080", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-hand", - "fields": { - "name": "Crossbow, hand", - "desc": "A hand crossbow.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "75.00", - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-hand-1", - "fields": { - "name": "Crossbow-Hand (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-hand-2", - "fields": { - "name": "Crossbow-Hand (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-hand-3", - "fields": { - "name": "Crossbow-Hand (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-heavy", - "fields": { - "name": "Crossbow, heavy", - "desc": "A heavy crossbow", - "document": "srd", - "size": "tiny", - "weight": "18.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-heavy-1", - "fields": { - "name": "Crossbow-Heavy (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-heavy-2", - "fields": { - "name": "Crossbow-Heavy (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-heavy-3", - "fields": { - "name": "Crossbow-Heavy (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-light", - "fields": { - "name": "Crossbow, light", - "desc": "A light crossbow.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-light-1", - "fields": { - "name": "Crossbow-Light (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-light-2", - "fields": { - "name": "Crossbow-Light (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-light-3", - "fields": { - "name": "Crossbow-Light (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crowbar", - "fields": { - "name": "Crowbar", - "desc": "Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crystal", - "fields": { - "name": "Crystal", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crystal-ball", - "fields": { - "name": "Crystal Ball", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crystal-ball-of-mind-reading", - "fields": { - "name": "Crystal Ball of Mind Reading", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nYou can use an action to cast the detect thoughts spell (save DC 17) while you are scrying with the crystal ball, targeting creatures you can see within 30 feet of the spell's sensor. You don't need to concentrate on this detect thoughts to maintain it during its duration, but it ends if scrying ends.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crystal-ball-of-telepathy", - "fields": { - "name": "Crystal Ball of Telepathy", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nThe following crystal ball variants are legendary items and have additional properties.\r\n\r\nWhile scrying with the crystal ball, you can communicate telepathically with creatures you can see within 30 feet of the spell's sensor. You can also use an action to cast the suggestion spell (save DC 17) through the sensor on one of those creatures. You don't need to concentrate on this suggestion to maintain it during its duration, but it ends if scrying ends. Once used, the suggestion power of the crystal ball can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crystal-ball-of-true-seeing", - "fields": { - "name": "Crystal Ball of True Seeing", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nWhile scrying with the crystal ball, you have truesight with a radius of 120 feet centered on the spell's sensor.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cube-of-force", - "fields": { - "name": "Cube of Force", - "desc": "This cube is about an inch across. Each face has a distinct marking on it that can be pressed. The cube starts with 36 charges, and it regains 1d20 expended charges daily at dawn.\r\n\r\nYou can use an action to press one of the cube's faces, expending a number of charges based on the chosen face, as shown in the Cube of Force Faces table. Each face has a different effect. If the cube has insufficient charges remaining, nothing happens. Otherwise, a barrier of invisible force springs into existence, forming a cube 15 feet on a side. The barrier is centered on you, moves with you, and lasts for 1 minute, until you use an action to press the cube's sixth face, or the cube runs out of charges. You can change the barrier's effect by pressing a different face of the cube and expending the requisite number of charges, resetting the duration.\r\n\r\nIf your movement causes the barrier to come into contact with a solid object that can't pass through the cube, you can't move any closer to that object as long as the barrier remains.\r\n\r\n**Cube of Force Faces (table)**\r\n\r\n| Face | Charges | Effect |\r\n|------|---------|-------------------------------------------------------------------------------------------------------------------|\r\n| 1 | 1 | Gases, wind, and fog can't pass through the barrier. |\r\n| 2 | 2 | Nonliving matter can't pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 3 | 3 | Living matter can't pass through the barrier. |\r\n| 4 | 4 | Spell effects can't pass through the barrier. |\r\n| 5 | 5 | Nothing can pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 6 | 0 | The barrier deactivates. |\r\n\r\nThe cube loses charges when the barrier is targeted by certain spells or comes into contact with certain spell or magic item effects, as shown in the table below.\r\n\r\n| Spell or Item | Charges Lost |\r\n|------------------|--------------|\r\n| Disintegrate | 1d12 |\r\n| Horn of blasting | 1d10 |\r\n| Passwall | 1d6 |\r\n| Prismatic spray | 1d20 |\r\n| Wall of fire | 1d4 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cubic-gate", - "fields": { - "name": "Cubic Gate", - "desc": "This cube is 3 inches across and radiates palpable magical energy. The six sides of the cube are each keyed to a different plane of existence, one of which is the Material Plane. The other sides are linked to planes determined by the GM.\r\n\r\nYou can use an action to press one side of the cube to cast the _gate_ spell with it, opening a portal to the plane keyed to that side. Alternatively, if you use an action to press one side twice, you can cast the _plane shift_ spell (save DC 17) with the cube and transport the targets to the plane keyed to that side.\r\n\r\nThe cube has 3 charges. Each use of the cube expends 1 charge. The cube regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dagger", - "fields": { - "name": "Dagger", - "desc": "A dagger.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dagger-1", - "fields": { - "name": "Dagger (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dagger-2", - "fields": { - "name": "Dagger (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dagger-3", - "fields": { - "name": "Dagger (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dagger-of-venom", - "fields": { - "name": "Dagger of Venom", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nYou can use an action to cause thick, black poison to coat the blade. The poison remains for 1 minute or until an attack using this weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or take 2d10 poison damage and become poisoned for 1 minute. The dagger can't be used this way again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dancing-sword-greatsword", - "fields": { - "name": "Dancing Sword (Greatsword)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dancing-sword-longsword", - "fields": { - "name": "Dancing Sword (Longsword)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dancing-sword-rapier", - "fields": { - "name": "Dancing Sword (Rapier)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dancing-sword-shortsword", - "fields": { - "name": "Dancing Sword (Shortsword)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dart", - "fields": { - "name": "Dart", - "desc": "A dart.", - "document": "srd", - "size": "tiny", - "weight": "0.250", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dart-1", - "fields": { - "name": "Dart (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dart-2", - "fields": { - "name": "Dart (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dart-3", - "fields": { - "name": "Dart (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_decanter-of-endless-water", - "fields": { - "name": "Decanter of Endless Water", - "desc": "This stoppered flask sloshes when shaken, as if it contains water. The decanter weighs 2 pounds.\r\n\r\nYou can use an action to remove the stopper and speak one of three command words, whereupon an amount of fresh water or salt water (your choice) pours out of the flask. The water stops pouring out at the start of your next turn. Choose from the following options:\r\n\r\n* \"Stream\" produces 1 gallon of water.\r\n* \"Fountain\" produces 5 gallons of water.\r\n* \"Geyser\" produces 30 gallons of water that gushes forth in a geyser 30 feet long and 1 foot wide. As a bonus action while holding the decanter, you can aim the geyser at a creature you can see within 30 feet of you. The target must succeed on a DC 13 Strength saving throw or take 1d4 bludgeoning damage and fall prone. Instead of a creature, you can target an object that isn't being worn or carried and that weighs no more than 200 pounds. The object is either knocked over or pushed up to 15 feet away from you.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_deck-of-illusions", - "fields": { - "name": "Deck of Illusions", - "desc": "This box contains a set of parchment cards. A full deck has 34 cards. A deck found as treasure is usually missing 1d20 - 1 cards.\r\n\r\nThe magic of the deck functions only if cards are drawn at random (you can use an altered deck of playing cards to simulate the deck). You can use an action to draw a card at random from the deck and throw it to the ground at a point within 30 feet of you.\r\n\r\nAn illusion of one or more creatures forms over the thrown card and remains until dispelled. An illusory creature appears real, of the appropriate size, and behaves as if it were a real creature except that it can do no harm. While you are within 120 feet of the illusory creature and can see it, you can use an action to move it magically anywhere within 30 feet of its card. Any physical interaction with the illusory creature reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect the creature identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The creature then appears translucent.\r\n\r\nThe illusion lasts until its card is moved or the illusion is dispelled. When the illusion ends, the image on its card disappears, and that card can't be used again.\r\n\r\n| Playing Card | Illusion |\r\n|-------------------|----------------------------------|\r\n| Ace of hearts | Red dragon |\r\n| King of hearts | Knight and four guards |\r\n| Queen of hearts | Succubus or incubus |\r\n| Jack of hearts | Druid |\r\n| Ten of hearts | Cloud giant |\r\n| Nine of hearts | Ettin |\r\n| Eight of hearts | Bugbear |\r\n| Two of hearts | Goblin |\r\n| Ace of diamonds | Beholder |\r\n| King of diamonds | Archmage and mage apprentice |\r\n| Queen of diamonds | Night hag |\r\n| Jack of diamonds | Assassin |\r\n| Ten of diamonds | Fire giant |\r\n| Nine of diamonds | Ogre mage |\r\n| Eight of diamonds | Gnoll |\r\n| Two of diamonds | Kobold |\r\n| Ace of spades | Lich |\r\n| King of spades | Priest and two acolytes |\r\n| Queen of spades | Medusa |\r\n| Jack of spades | Veteran |\r\n| Ten of spades | Frost giant |\r\n| Nine of spades | Troll |\r\n| Eight of spades | Hobgoblin |\r\n| Two of spades | Goblin |\r\n| Ace of clubs | Iron golem |\r\n| King of clubs | Bandit captain and three bandits |\r\n| Queen of clubs | Erinyes |\r\n| Jack of clubs | Berserker |\r\n| Ten of clubs | Hill giant |\r\n| Nine of clubs | Ogre |\r\n| Eight of clubs | Orc |\r\n| Two of clubs | Kobold |\r\n| Jokers (2) | You (the deck's owner) |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_deck-of-many-things", - "fields": { - "name": "Deck of Many Things", - "desc": "Usually found in a box or pouch, this deck contains a number of cards made of ivory or vellum. Most (75 percent) of these decks have only thirteen cards, but the rest have twenty-two.\r\n\r\nBefore you draw a card, you must declare how many cards you intend to draw and then draw them randomly (you can use an altered deck of playing cards to simulate the deck). Any cards drawn in excess of this number have no effect. Otherwise, as soon as you draw a card from the deck, its magic takes effect. You must draw each card no more than 1 hour after the previous draw. If you fail to draw the chosen number, the remaining number of cards fly from the deck on their own and take effect all at once.\r\n\r\nOnce a card is drawn, it fades from existence. Unless the card is the Fool or the Jester, the card reappears in the deck, making it possible to draw the same card twice.\r\n\r\n| Playing Card | Card |\r\n|--------------------|-------------|\r\n| Ace of diamonds | Vizier\\* |\r\n| King of diamonds | Sun |\r\n| Queen of diamonds | Moon |\r\n| Jack of diamonds | Star |\r\n| Two of diamonds | Comet\\* |\r\n| Ace of hearts | The Fates\\* |\r\n| King of hearts | Throne |\r\n| Queen of hearts | Key |\r\n| Jack of hearts | Knight |\r\n| Two of hearts | Gem\\* |\r\n| Ace of clubs | Talons\\* |\r\n| King of clubs | The Void |\r\n| Queen of clubs | Flames |\r\n| Jack of clubs | Skull |\r\n| Two of clubs | Idiot\\* |\r\n| Ace of spades | Donjon\\* |\r\n| King of spades | Ruin |\r\n| Queen of spades | Euryale |\r\n| Jack of spades | Rogue |\r\n| Two of spades | Balance\\* |\r\n| Joker (with TM) | Fool\\* |\r\n| Joker (without TM) | Jester |\r\n\r\n\\*Found only in a deck with twenty-two cards\r\n\r\n**_Balance_**. Your mind suffers a wrenching alteration, causing your alignment to change. Lawful becomes chaotic, good becomes evil, and vice versa. If you are true neutral or unaligned, this card has no effect on you.\r\n\r\n**_Comet_**. If you single-handedly defeat the next hostile monster or group of monsters you encounter, you gain experience points enough to gain one level. Otherwise, this card has no effect.\r\n\r\n**_Donjon_**. You disappear and become entombed in a state of suspended animation in an extradimensional sphere. Everything you were wearing and carrying stays behind in the space you occupied when you disappeared. You remain imprisoned until you are found and removed from the sphere. You can't be located by any divination magic, but a _wish_ spell can reveal the location of your prison. You draw no more cards.\r\n\r\n**_Euryale_**. The card's medusa-like visage curses you. You take a -2 penalty on saving throws while cursed in this way. Only a god or the magic of The Fates card can end this curse.\r\n\r\n**_The Fates_**. Reality's fabric unravels and spins anew, allowing you to avoid or erase one event as if it never happened. You can use the card's magic as soon as you draw the card or at any other time before you die.\r\n\r\n**_Flames_**. A powerful devil becomes your enemy. The devil seeks your ruin and plagues your life, savoring your suffering before attempting to slay you. This enmity lasts until either you or the devil dies.\r\n\r\n**_Fool_**. You lose 10,000 XP, discard this card, and draw from the deck again, counting both draws as one of your declared draws. If losing that much XP would cause you to lose a level, you instead lose an amount that leaves you with just enough XP to keep your level.\r\n\r\n**_Gem_**. Twenty-five pieces of jewelry worth 2,000 gp each or fifty gems worth 1,000 gp each appear at your feet.\r\n\r\n**_Idiot_**. Permanently reduce your Intelligence by 1d4 + 1 (to a minimum score of 1). You can draw one additional card beyond your declared draws.\r\n\r\n**_Jester_**. You gain 10,000 XP, or you can draw two additional cards beyond your declared draws.\r\n\r\n**_Key_**. A rare or rarer magic weapon with which you are proficient appears in your hands. The GM chooses the weapon.\r\n\r\n**_Knight_**. You gain the service of a 4th-level fighter who appears in a space you choose within 30 feet of you. The fighter is of the same race as you and serves you loyally until death, believing the fates have drawn him or her to you. You control this character.\r\n\r\n**_Moon_**. You are granted the ability to cast the _wish_ spell 1d3 times.\r\n\r\n**_Rogue_**. A nonplayer character of the GM's choice becomes hostile toward you. The identity of your new enemy isn't known until the NPC or someone else reveals it. Nothing less than a _wish_ spell or divine intervention can end the NPC's hostility toward you.\r\n\r\n**_Ruin_**. All forms of wealth that you carry or own, other than magic items, are lost to you. Portable property vanishes. Businesses, buildings, and land you own are lost in a way that alters reality the least. Any documentation that proves you should own something lost to this card also disappears.\r\n\r\n**_Skull_**. You summon an avatar of death-a ghostly humanoid skeleton clad in a tattered black robe and carrying a spectral scythe. It appears in a space of the GM's choice within 10 feet of you and attacks you, warning all others that you must win the battle alone. The avatar fights until you die or it drops to 0 hit points, whereupon it disappears. If anyone tries to help you, the helper summons its own avatar of death. A creature slain by an avatar of death can't be restored to life.\r\n\r\n#", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_defender-greatsword", - "fields": { - "name": "Defender (Greatsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_defender-longsword", - "fields": { - "name": "Defender (Longsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_defender-rapier", - "fields": { - "name": "Defender (Rapier)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_defender-shortsword", - "fields": { - "name": "Defender (Shortsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_demon-armor", - "fields": { - "name": "Demon Armor", - "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, the armor's clawed gauntlets turn unarmed strikes with your hands into magic weapons that deal slashing damage, with a +1 bonus to attack rolls and damage rolls and a damage die of 1d8.\n\n**_Curse_**. Once you don this cursed armor, you can't doff it unless you are targeted by the _remove curse_ spell or similar magic. While wearing the armor, you have disadvantage on attack rolls against demons and on saving throws against their spells and special abilities.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dice-set", - "fields": { - "name": "Dice set", - "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dimensional-shackles", - "fields": { - "name": "Dimensional Shackles", - "desc": "You can use an action to place these shackles on an incapacitated creature. The shackles adjust to fit a creature of Small to Large size. In addition to serving as mundane manacles, the shackles prevent a creature bound by them from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. They don't prevent the creature from passing through an interdimensional portal.\r\n\r\nYou and any creature you designate when you use the shackles can use an action to remove them. Once every 30 days, the bound creature can make a DC 30 Strength (Athletics) check. On a success, the creature breaks free and destroys the shackles.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_disguise-kit", - "fields": { - "name": "Disguise kit", - "desc": "This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dragon-scale-mail", - "fields": { - "name": "Dragon Scale Mail", - "desc": "Dragon scale mail is made of the scales of one kind of dragon. Sometimes dragons collect their cast-off scales and gift them to humanoids. Other times, hunters carefully skin and preserve the hide of a dead dragon. In either case, dragon scale mail is highly valued.\r\n\r\nWhile wearing this armor, you gain a +1 bonus to AC, you have advantage on saving throws against the Frightful Presence and breath weapons of dragons, and you have resistance to one damage type that is determined by the kind of dragon that provided the scales (see the table).\r\n\r\nAdditionally, you can focus your senses as an action to magically discern the distance and direction to the closest dragon within 30 miles of you that is of the same type as the armor. This special action can't be used again until the next dawn.\r\n\r\n| Dragon | Resistance |\r\n|--------|------------|\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dragon-slayer-greatsword", - "fields": { - "name": "Dragon Slayer (Greatsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dragon-slayer-longsword", - "fields": { - "name": "Dragon Slayer (Longsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dragon-slayer-rapier", - "fields": { - "name": "Dragon Slayer (Rapier)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dragon-slayer-shortsword", - "fields": { - "name": "Dragon Slayer (Shortsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_drow-poison", - "fields": { - "name": "Drow poison", - "desc": "This poison is typically made only by the drow, and only in a place far removed from sunlight. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the creature is also unconscious while poisoned in this way. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\r\n\\n\\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_drum", - "fields": { - "name": "Drum", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "6.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dulcimer", - "fields": { - "name": "Dulcimer", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dust-of-disappearance", - "fields": { - "name": "Dust of Disappearance", - "desc": "Found in a small packet, this powder resembles very fine sand. There is enough of it for one use. When you use an action to throw the dust into the air, you and each creature and object within 10 feet of you become invisible for 2d4 minutes. The duration is the same for all subjects, and the dust is consumed when its magic takes effect. If a creature affected by the dust attacks or casts a spell, the invisibility ends for that creature.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dust-of-dryness", - "fields": { - "name": "Dust of Dryness", - "desc": "This small packet contains 1d6 + 4 pinches of dust. You can use an action to sprinkle a pinch of it over water. The dust turns a cube of water 15 feet on a side into one marble-sized pellet, which floats or rests near where the dust was sprinkled. The pellet's weight is negligible.\r\n\r\nSomeone can use an action to smash the pellet against a hard surface, causing the pellet to shatter and release the water the dust absorbed. Doing so ends that pellet's magic.\r\n\r\nAn elemental composed mostly of water that is exposed to a pinch of the dust must make a DC 13 Constitution saving throw, taking 10d6 necrotic damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dust-of-sneezing-and-choking", - "fields": { - "name": "Dust of Sneezing and Choking", - "desc": "Found in a small container, this powder resembles very fine sand. It appears to be _dust of disappearance_, and an _identify_ spell reveals it to be such. There is enough of it for one use.\r\n\r\nWhen you use an action to throw a handful of the dust into the air, you and each creature that needs to breathe within 30 feet of you must succeed on a DC 15 Constitution saving throw or become unable to breathe, while sneezing uncontrollably. A creature affected in this way is incapacitated and suffocating. As long as it is conscious, a creature can repeat the saving throw at the end of each of its turns, ending the effect on it on a success. The _lesser restoration_ spell can also end the effect on a creature.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dwarven-plate", - "fields": { - "name": "Dwarven Plate", - "desc": "While wearing this armor, you gain a +2 bonus to AC. In addition, if an effect moves you against your will along the ground, you can use your reaction to reduce the distance you are moved by up to 10 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dwarven-thrower", - "fields": { - "name": "Dwarven Thrower", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. It has the thrown property with a normal range of 20 feet and a long range of 60 feet. When you hit with a ranged attack using this weapon, it deals an extra 1d8 damage or, if the target is a giant, 2d8 damage. Immediately after the attack, the weapon flies back to your hand.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_efficient-quiver", - "fields": { - "name": "Efficient Quiver", - "desc": "Each of the quiver's three compartments connects to an extradimensional space that allows the quiver to hold numerous items while never weighing more than 2 pounds. The shortest compartment can hold up to sixty arrows, bolts, or similar objects. The midsize compartment holds up to eighteen javelins or similar objects. The longest compartment holds up to six long objects, such as bows, quarterstaffs, or spears.\r\n\r\nYou can draw any item the quiver contains as if doing so from a regular quiver or scabbard.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_efreeti-bottle", - "fields": { - "name": "Efreeti Bottle", - "desc": "This painted brass bottle weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke flows out of the bottle. At the end of your turn, the smoke disappears with a flash of harmless fire, and an efreeti appears in an unoccupied space within 30 feet of you.\r\n\r\nThe first time the bottle is opened, the GM rolls to determine what happens.\r\n\r\n| d100 | Effect |\r\n|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-10 | The efreeti attacks you. After fighting for 5 rounds, the efreeti disappears, and the bottle loses its magic. |\r\n| 11-90 | The efreeti serves you for 1 hour, doing as you command. Then the efreeti returns to the bottle, and a new stopper contains it. The stopper can't be removed for 24 hours. The next two times the bottle is opened, the same effect occurs. If the bottle is opened a fourth time, the efreeti escapes and disappears, and the bottle loses its magic. |\r\n| 91-100 | The efreeti can cast the wish spell three times for you. It disappears when it grants the final wish or after 1 hour, and the bottle loses its magic. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_elemental-gem", - "fields": { - "name": "Elemental Gem", - "desc": "This gem contains a mote of elemental energy. When you use an action to break the gem, an elemental is summoned as if you had cast the _conjure elemental_ spell, and the gem's magic is lost. The type of gem determines the elemental summoned by the spell.\r\n\r\n| Gem | Summoned Elemental |\r\n|----------------|--------------------|\r\n| Blue sapphire | Air elemental |\r\n| Yellow diamond | Earth elemental |\r\n| Red corundum | Fire elemental |\r\n| Emerald | Water elemental |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_elven-chain", - "fields": { - "name": "Elven Chain", - "desc": "You gain a +1 bonus to AC while you wear this armor. You are considered proficient with this armor even if you lack proficiency with medium armor.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_emblem", - "fields": { - "name": "Emblem", - "desc": "Can be used as a holy symbol.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_electrum-piece", - "fields": { - "name": "Electrum Piece", - "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_essense-of-either", - "fields": { - "name": "Essense of either", - "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 8 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "300.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_eversmoking-bottle", - "fields": { - "name": "Eversmoking Bottle", - "desc": "Smoke leaks from the lead-stoppered mouth of this brass bottle, which weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke pours out in a 60-foot radius from the bottle. The cloud's area is heavily obscured. Each minute the bottle remains open and within the cloud, the radius increases by 10 feet until it reaches its maximum radius of 120 feet.\r\n\r\nThe cloud persists as long as the bottle is open. Closing the bottle requires you to speak its command word as an action. Once the bottle is closed, the cloud disperses after 10 minutes. A moderate wind (11 to 20 miles per hour) can also disperse the smoke after 1 minute, and a strong wind (21 or more miles per hour) can do so after 1 round.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_eyes-of-charming", - "fields": { - "name": "Eyes of Charming", - "desc": "These crystal lenses fit over the eyes. They have 3 charges. While wearing them, you can expend 1 charge as an action to cast the _charm person_ spell (save DC 13) on a humanoid within 30 feet of you, provided that you and the target can see each other. The lenses regain all expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_eyes-of-minute-seeing", - "fields": { - "name": "Eyes of Minute Seeing", - "desc": "These crystal lenses fit over the eyes. While wearing them, you can see much better than normal out to a range of 1 foot. You have advantage on Intelligence (Investigation) checks that rely on sight while searching an area or studying an object within that range.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_eyes-of-the-eagle", - "fields": { - "name": "Eyes of the Eagle", - "desc": "These crystal lenses fit over the eyes. While wearing them, you have advantage on Wisdom (Perception) checks that rely on sight. In conditions of clear visibility, you can make out details of even extremely distant creatures and objects as small as 2 feet across.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_feather-token", - "fields": { - "name": "Feather Token", - "desc": "This tiny object looks like a feather. Different types of feather tokens exist, each with a different single* use effect. The GM chooses the kind of token or determines it randomly.\r\n\r\n| d100 | Feather Token |\r\n|--------|---------------|\r\n| 01-20 | Anchor |\r\n| 21-35 | Bird |\r\n| 36-50 | Fan |\r\n| 51-65 | Swan boat |\r\n| 66-90 | Tree |\r\n| 91-100 | Whip |\r\n\r\n**_Anchor_**. You can use an action to touch the token to a boat or ship. For the next 24 hours, the vessel can't be moved by any means. Touching the token to the vessel again ends the effect. When the effect ends, the token disappears.\r\n\r\n**_Bird_**. You can use an action to toss the token 5 feet into the air. The token disappears and an enormous, multicolored bird takes its place. The bird has the statistics of a roc, but it obeys your simple commands and can't attack. It can carry up to 500 pounds while flying at its maximum speed (16 miles an hour for a maximum of 144 miles per day, with a one-hour rest for every 3 hours of flying), or 1,000 pounds at half that speed. The bird disappears after flying its maximum distance for a day or if it drops to 0 hit points. You can dismiss the bird as an action.\r\n\r\n**_Fan_**. If you are on a boat or ship, you can use an action to toss the token up to 10 feet in the air. The token disappears, and a giant flapping fan takes its place. The fan floats and creates a wind strong enough to fill the sails of one ship, increasing its speed by 5 miles per hour for 8 hours. You can dismiss the fan as an action.\r\n\r\n**_Swan Boat_**. You can use an action to touch the token to a body of water at least 60 feet in diameter. The token disappears, and a 50-foot-long, 20-foot* wide boat shaped like a swan takes its place. The boat is self-propelled and moves across water at a speed of 6 miles per hour. You can use an action while on the boat to command it to move or to turn up to 90 degrees. The boat can carry up to thirty-two Medium or smaller creatures. A Large creature counts as four Medium creatures, while a Huge creature counts as nine. The boat remains for 24 hours and then disappears. You can dismiss the boat as an action.\r\n\r\n**_Tree_**. You must be outdoors to use this token. You can use an action to touch it to an unoccupied space on the ground. The token disappears, and in its place a nonmagical oak tree springs into existence. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\r\n\r\n**_Whip_**. You can use an action to throw the token to a point within 10 feet of you. The token disappears, and a floating whip takes its place. You can then use a bonus action to make a melee spell attack against a creature within 10 feet of the whip, with an attack bonus of +9. On a hit, the target takes 1d6 + 5 force damage.\r\n\r\nAs a bonus action on your turn, you can direct the whip to fly up to 20 feet and repeat the attack against a creature within 10 feet of it. The whip disappears after 1 hour, when you use an action to dismiss it, or when you are incapacitated or die.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-bronze-griffon", - "fields": { - "name": "Figurine of Wondrous Power (Bronze Griffon)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Bronze Griffon (Rare)_**. This bronze statuette is of a griffon rampant. It can become a griffon for up to 6 hours. Once it has been used, it can't be used again until 5 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-ebony-fly", - "fields": { - "name": "Figurine of Wondrous Power (Ebony Fly)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ebony Fly (Rare)_**. This ebony statuette is carved in the likeness of a horsefly. It can become a giant fly for up to 12 hours and can be ridden as a mount. Once it has been used, it can’t be used again until 2 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-golden-lions", - "fields": { - "name": "Figurine of Wondrous Power (Golden Lions)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Golden Lions (Rare)_**. These gold statuettes of lions are always created in pairs. You can use one figurine or both simultaneously. Each can become a lion for up to 1 hour. Once a lion has been used, it can’t be used again until 7 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-ivory-goats", - "fields": { - "name": "Figurine of Wondrous Power (Ivory Goats)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ivory Goats (Rare_**.These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others. Their properties are as follows:\\n\\n* The _goat of traveling_ can become a Large goat with the same statistics as a riding horse. It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can't be used again until 7 days have passed, when it regains all its charges.\\n* The _goat of travail_ becomes a giant goat for up to 3 hours. Once it has been used, it can't be used again until 30 days have passed.\\n* The _goat of terror_ becomes a giant goat for up to 3 hours. The goat can't attack, but you can remove its horns and use them as weapons. One horn becomes a _+1 lance_, and the other becomes a _+2 longsword_. Removing a horn requires an action, and the weapons disappear and the horns return when the goat reverts to figurine form. In addition, the goat radiates a 30-foot-radius aura of terror while you are riding it. Any creature hostile to you that starts its turn in the aura must succeed on a DC 15 Wisdom saving throw or be frightened of the goat for 1 minute, or until the goat reverts to figurine form. The frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it successfully saves against the effect, a creature is immune to the goat's aura for the next 24 hours. Once the figurine has been used, it can't be used again until 15 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-marble-elephant", - "fields": { - "name": "Figurine of Wondrous Power (Marble Elephant)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Marble Elephant (Rare)_**. This marble statuette is about 4 inches high and long. It can become an elephant for up to 24 hours. Once it has been used, it can’t be used again until 7 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-obsidian-steed", - "fields": { - "name": "Figurine of Wondrous Power (Obsidian Steed)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Obsidian Steed (Very Rare)_**. This polished obsidian horse can become a nightmare for up to 24 hours. The nightmare fights only to defend itself. Once it has been used, it can't be used again until 5 days have passed.\\n\\nIf you have a good alignment, the figurine has a 10 percent chance each time you use it to ignore your orders, including a command to revert to figurine form. If you mount the nightmare while it is ignoring your orders, you and the nightmare are instantly transported to a random location on the plane of Hades, where the nightmare reverts to figurine form.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-onyx-dog", - "fields": { - "name": "Figurine of Wondrous Power (Onyx Dog)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Onyx Dog (Rare)_**. This onyx statuette of a dog can become a mastiff for up to 6 hours. The mastiff has an Intelligence of 8 and can speak Common. It also has darkvision out to a range of 60 feet and can see invisible creatures and objects within that range. Once it has been used, it can’t be used again until 7 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-serpentine-owl", - "fields": { - "name": "Figurine of Wondrous Power (Serpentine Owl)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Serpentine Owl (Rare)_**. This serpentine statuette of an owl can become a giant owl for up to 8 hours. Once it has been used, it can’t be used again until 2 days have passed. The owl can telepathically communicate with you at any range if you and it are on the same plane of existence.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-silver-raven", - "fields": { - "name": "Figurine of Wondrous Power (Silver Raven)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Silver Raven (Uncommon)_**. This silver statuette of a raven can become a raven for up to 12 hours. Once it has been used, it can’t be used again until 2 days have passed. While in raven form, the figurine allows you to cast the animal messenger spell on it at will.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_fishing-tackle", - "fields": { - "name": "Fishing Tackle", - "desc": "This kit includes a wooden rod, silken line, corkwood bobbers, steel hooks, lead sinkers, velvet lures, and narrow netting.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flail", - "fields": { - "name": "Flail", - "desc": "A flail.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flail-1", - "fields": { - "name": "Flail (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_flail-2", - "fields": { - "name": "Flail (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_flail-3", - "fields": { - "name": "Flail (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_flame-tongue-greatsword", - "fields": { - "name": "Flame Tongue (Greatsword)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flame-tongue-longsword", - "fields": { - "name": "Flame Tongue (Longsword)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flame-tongue-rapier", - "fields": { - "name": "Flame Tongue (Rapier)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flame-tongue-shortsword", - "fields": { - "name": "Flame Tongue (Shortsword)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flask-or-tankard", - "fields": { - "name": "Flask or tankard", - "desc": "For drinking. Capacity: 1 pint liquid.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flute", - "fields": { - "name": "Flute", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_folding-boat", - "fields": { - "name": "Folding Boat", - "desc": "This object appears as a wooden box that measures 12 inches long, 6 inches wide, and 6 inches deep. It weighs 4 pounds and floats. It can be opened to store items inside. This item also has three command words, each requiring you to use an action to speak it.\r\n\r\nOne command word causes the box to unfold into a boat 10 feet long, 4 feet wide, and 2 feet deep. The boat has one pair of oars, an anchor, a mast, and a lateen sail. The boat can hold up to four Medium creatures comfortably.\r\n\r\nThe second command word causes the box to unfold into a ship 24 feet long, 8 feet wide, and 6 feet deep. The ship has a deck, rowing seats, five sets of oars, a steering oar, an anchor, a deck cabin, and a mast with a square sail. The ship can hold fifteen Medium creatures comfortably.\r\n\r\nWhen the box becomes a vessel, its weight becomes that of a normal vessel its size, and anything that was stored in the box remains in the boat.\r\n\r\nThe third command word causes the _folding boat_ to fold back into a box, provided that no creatures are aboard. Any objects in the vessel that can't fit inside the box remain outside the box as it folds. Any objects in the vessel that can fit inside the box do so.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_forgery-kit", - "fields": { - "name": "Forgery kit", - "desc": "This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. \\n\\nProficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_frost-brand-greatsword", - "fields": { - "name": "Frost Brand (Greatsword)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_frost-brand-longsword", - "fields": { - "name": "Frost Brand (Longsword)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_frost-brand-rapier", - "fields": { - "name": "Frost Brand (Rapier)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_frost-brand-shortsword", - "fields": { - "name": "Frost Brand (Shortsword)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_galley", - "fields": { - "name": "Galley", - "desc": "A waterborne vehicle. Speed 4 mph", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_gauntlets-of-ogre-power", - "fields": { - "name": "Gauntlets of Ogre Power", - "desc": "Your Strength score is 19 while you wear these gauntlets. They have no effect on you if your Strength is already 19 or higher.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_gem-of-brightness", - "fields": { - "name": "Gem of Brightness", - "desc": "This prism has 50 charges. While you are holding it, you can use an action to speak one of three command words to cause one of the following effects:\r\n\r\n* The first command word causes the gem to shed bright light in a 30-foot radius and dim light for an additional 30 feet. This effect doesn't expend a charge. It lasts until you use a bonus action to repeat the command word or until you use another function of the gem.\r\n* The second command word expends 1 charge and causes the gem to fire a brilliant beam of light at one creature you can see within 60 feet of you. The creature must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\r\n* The third command word expends 5 charges and causes the gem to flare with blinding light in a 30* foot cone originating from it. Each creature in the cone must make a saving throw as if struck by the beam created with the second command word.\r\n\r\nWhen all of the gem's charges are expended, the gem becomes a nonmagical jewel worth 50 gp.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_gem-of-seeing", - "fields": { - "name": "Gem of Seeing", - "desc": "This gem has 3 charges. As an action, you can speak the gem's command word and expend 1 charge. For the next 10 minutes, you have truesight out to 120 feet when you peer through the gem.\r\n\r\nThe gem regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-battleaxe", - "fields": { - "name": "Giant Slayer (Battleaxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-greataxe", - "fields": { - "name": "Giant Slayer (Greataxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-greatsword", - "fields": { - "name": "Giant Slayer (Greatsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-handaxe", - "fields": { - "name": "Giant Slayer (Handaxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-longsword", - "fields": { - "name": "Giant Slayer (Longsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-rapier", - "fields": { - "name": "Giant Slayer (Rapier)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-shortsword", - "fields": { - "name": "Giant Slayer (Shortsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_glaive", - "fields": { - "name": "Glaive", - "desc": "A glaive.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_glaive-1", - "fields": { - "name": "Glaive (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_glaive-2", - "fields": { - "name": "Glaive (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_glaive-3", - "fields": { - "name": "Glaive (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_glamoured-studded-leather", - "fields": { - "name": "Glamoured Studded Leather", - "desc": "While wearing this armor, you gain a +1 bonus to AC. You can also use a bonus action to speak the armor's command word and cause the armor to assume the appearance of a normal set of clothing or some other kind of armor. You decide what it looks like, including color, style, and accessories, but the armor retains its normal bulk and weight. The illusory appearance lasts until you use this property again or remove the armor.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_glassblowers-tools", - "fields": { - "name": "Glassblower's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_gloves-of-missile-snaring", - "fields": { - "name": "Gloves of Missile Snaring", - "desc": "These gloves seem to almost meld into your hands when you don them. When a ranged weapon attack hits you while you're wearing them, you can use your reaction to reduce the damage by 1d10 + your Dexterity modifier, provided that you have a free hand. If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in that hand.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_gloves-of-swimming-and-climbing", - "fields": { - "name": "Gloves of Swimming and Climbing", - "desc": "While wearing these gloves, climbing and swimming don't cost you extra movement, and you gain a +5 bonus to Strength (Athletics) checks made to climb or swim.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_goat", - "fields": { - "name": "Goat", - "desc": "One goat.", - "document": "srd", - "size": "medium", - "weight": "75.000", - "armor_class": 10, - "hit_points": 4, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_goggles-of-night", - "fields": { - "name": "Goggles of Night", - "desc": "While wearing these dark lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the goggles increases its range by 60 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_gold-piece", - "fields": { - "name": "Gold Piece", - "desc": "With one gold piece, a character can buy a bedroll, 50 feet of good rope, or a goat. A skilled (but not exceptional) artisan can earn one gold piece a day. The gold piece is the standard unit of measure for wealth, even if the coin itself is not commonly used. When merchants discuss deals that involve goods or services worth hundreds or thousands of gold pieces, the transactions don't usually involve the exchange of individual coins. Rather, the gold piece is a standard measure of value, and the actual exchange is in gold bars, letters of credit, or valuable goods.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_grappling-hook", - "fields": { - "name": "Grappling hook", - "desc": "A grappling hook.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_greataxe", - "fields": { - "name": "Greataxe", - "desc": "A greataxe.", - "document": "srd", - "size": "tiny", - "weight": "7.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_greataxe-1", - "fields": { - "name": "Greataxe (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greataxe-2", - "fields": { - "name": "Greataxe (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greataxe-3", - "fields": { - "name": "Greataxe (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatclub", - "fields": { - "name": "Greatclub", - "desc": "A greatclub.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatclub-1", - "fields": { - "name": "Greatclub (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatclub-2", - "fields": { - "name": "Greatclub (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatclub-3", - "fields": { - "name": "Greatclub (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatsword", - "fields": { - "name": "Greatsword", - "desc": "A great sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatsword-1", - "fields": { - "name": "Greatsword (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatsword-2", - "fields": { - "name": "Greatsword (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatsword-3", - "fields": { - "name": "Greatsword (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_halberd", - "fields": { - "name": "Halberd", - "desc": "A halberd.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_halberd-1", - "fields": { - "name": "Halberd (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_halberd-2", - "fields": { - "name": "Halberd (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_halberd-3", - "fields": { - "name": "Halberd (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_half-plate", - "fields": { - "name": "Half plate", - "desc": "Half plate consists of shaped metal plates that cover most of the wearer's body. It does not include leg protection beyond simple greaves that are attached with leather straps.", - "document": "srd", - "size": "tiny", - "weight": "40.000", - "armor_class": 0, - "hit_points": 0, - "cost": "750.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_hammer", - "fields": { - "name": "Hammer", - "desc": "A hammer.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_hammer-of-thunderbolts", - "fields": { - "name": "Hammer of Thunderbolts", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\n**_Giant's Bane (Requires Attunement)_**. You must be wearing a _belt of giant strength_ (any variety) and _gauntlets of ogre power_ to attune to this weapon. The attunement ends if you take off either of those items. While you are attuned to this weapon and holding it, your Strength score increases by 4 and can exceed 20, but not 30. When you roll a 20 on an attack roll made with this weapon against a giant, the giant must succeed on a DC 17 Constitution saving throw or die.\n\nThe hammer also has 5 charges. While attuned to it, you can expend 1 charge and make a ranged weapon attack with the hammer, hurling it as if it had the thrown property with a normal range of 20 feet and a long range of 60 feet. If the attack hits, the hammer unleashes a thunderclap audible out to 300 feet. The target and every creature within 30 feet of it must succeed on a DC 17 Constitution saving throw or be stunned until the end of your next turn. The hammer regains 1d4 + 1 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_hammer-sledge", - "fields": { - "name": "Hammer, sledge", - "desc": "A sledgehammer", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_handaxe", - "fields": { - "name": "Handaxe", - "desc": "A handaxe.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_handaxe-1", - "fields": { - "name": "Handaxe (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_handaxe-2", - "fields": { - "name": "Handaxe (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_handaxe-3", - "fields": { - "name": "Handaxe (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_handy-haversack", - "fields": { - "name": "Handy Haversack", - "desc": "This backpack has a central pouch and two side pouches, each of which is an extradimensional space. Each side pouch can hold up to 20 pounds of material, not exceeding a volume of 2 cubic feet. The large central pouch can hold up to 8 cubic feet or 80 pounds of material. The backpack always weighs 5 pounds, regardless of its contents.\r\n\r\nPlacing an object in the haversack follows the normal rules for interacting with objects. Retrieving an item from the haversack requires you to use an action. When you reach into the haversack for a specific item, the item is always magically on top.\r\n\r\nThe haversack has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the haversack ruptures and is destroyed. If the haversack is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If the haversack is turned inside out, its contents spill forth, unharmed, and the haversack must be put right before it can be used again. If a breathing creature is placed within the haversack, the creature can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing the haversack inside an extradimensional space created by a _bag of holding_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_hat-of-disguise", - "fields": { - "name": "Hat of Disguise", - "desc": "While wearing this hat, you can use an action to cast the _disguise self_ spell from it at will. The spell ends if the hat is removed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_headband-of-intellect", - "fields": { - "name": "Headband of Intellect", - "desc": "Your Intelligence score is 19 while you wear this headband. It has no effect on you if your Intelligence is already 19 or higher.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_healers-kit", - "fields": { - "name": "Healer's Kit", - "desc": "This kit is a leather pouch containing bandages, salves, and splints. The kit has ten uses. As an action, you can expend one use of the kit to stabilize a creature that has 0 hit points, without needing to make a Wisdom (Medicine) check.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_helm-of-brilliance", - "fields": { - "name": "Helm of Brilliance", - "desc": "This dazzling helm is set with 1d10 diamonds, 2d10 rubies, 3d10 fire opals, and 4d10 opals. Any gem pried from the helm crumbles to dust. When all the gems are removed or destroyed, the helm loses its magic.\r\n\r\nYou gain the following benefits while wearing it:\r\n\r\n* You can use an action to cast one of the following spells (save DC 18), using one of the helm's gems of the specified type as a component: _daylight_ (opal), _fireball_ (fire opal), _prismatic spray_ (diamond), or _wall of fire_ (ruby). The gem is destroyed when the spell is cast and disappears from the helm.\r\n* As long as it has at least one diamond, the helm emits dim light in a 30-foot radius when at least one undead is within that area. Any undead that starts its turn in that area takes 1d6 radiant damage.\r\n* As long as the helm has at least one ruby, you have resistance to fire damage.\r\n* As long as the helm has at least one fire opal, you can use an action and speak a command word to cause one weapon you are holding to burst into flames. The flames emit bright light in a 10-foot radius and dim light for an additional 10 feet. The flames are harmless to you and the weapon. When you hit with an attack using the blazing weapon, the target takes an extra 1d6 fire damage. The flames last until you use a bonus action to speak the command word again or until you drop or stow the weapon.\r\n\r\nRoll a d20 if you are wearing the helm and take fire damage as a result of failing a saving throw against a spell. On a roll of 1, the helm emits beams of light from its remaining gems. Each creature within 60 feet of the helm other than you must succeed on a DC 17 Dexterity saving throw or be struck by a beam, taking radiant damage equal to the number of gems in the helm. The helm and its gems are then destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_helm-of-comprehending-languages", - "fields": { - "name": "Helm of Comprehending Languages", - "desc": "While wearing this helm, you can use an action to cast the _comprehend languages_ spell from it at will.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_helm-of-telepathy", - "fields": { - "name": "Helm of Telepathy", - "desc": "While wearing this helm, you can use an action to cast the _detect thoughts_ spell (save DC 13) from it. As long as you maintain concentration on the spell, you can use a bonus action to send a telepathic message to a creature you are focused on. It can reply-using a bonus action to do so-while your focus on it continues.\r\n\r\nWhile focusing on a creature with _detect thoughts_, you can use an action to cast the _suggestion_ spell (save DC 13) from the helm on that creature. Once used, the _suggestion_ property can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_helm-of-teleportation", - "fields": { - "name": "Helm of Teleportation", - "desc": "This helm has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _teleport_ spell from it. The helm regains 1d3\r\n\r\nexpended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_herbalism-kit", - "fields": { - "name": "Herbalism Kit", - "desc": "This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create\r\nantitoxin and potions of healing.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_hide-armor", - "fields": { - "name": "Hide Armor", - "desc": "This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.", - "document": "srd", - "size": "tiny", - "weight": "12.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_holy-avenger-greatsword", - "fields": { - "name": "Holy Avenger (Greatsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_holy-avenger-longsword", - "fields": { - "name": "Holy Avenger (Longsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_holy-avenger-rapier", - "fields": { - "name": "Holy Avenger (Rapier)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_holy-avenger-shortsword", - "fields": { - "name": "Holy Avenger (Shortsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_holy-water-flask", - "fields": { - "name": "Holy Water (flask)", - "desc": "As an action, you can splash the contents of this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact.In either case, make a ranged attack against a target creature, treating the holy water as an improvised weapon. If the target is a fiend or undead, it takes 2d6 radiant damage.\\n\\nA cleric or paladin may create holy water by performing a special ritual. The ritual takes 1 hour to perform, uses 25 gp worth of powdered silver, and requires the caster to expend a 1st-­‐‑level spell slot.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_horn", - "fields": { - "name": "Horn", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "3.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_horn-of-blasting", - "fields": { - "name": "Horn of Blasting", - "desc": "You can use an action to speak the horn's command word and then blow the horn, which emits a thunderous blast in a 30-foot cone that is audible 600 feet away. Each creature in the cone must make a DC 15 Constitution saving throw. On a failed save, a creature takes 5d6 thunder damage and is deafened for 1 minute. On a successful save, a creature takes half as much damage and isn't deafened. Creatures and objects made of glass or crystal have disadvantage on the saving throw and take 10d6 thunder damage instead of 5d6.\r\n\r\nEach use of the horn's magic has a 20 percent chance of causing the horn to explode. The explosion deals 10d6 fire damage to the blower and destroys the horn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_horn-of-valhalla-brass", - "fields": { - "name": "Horn of Valhalla (Brass)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_horn-of-valhalla-bronze", - "fields": { - "name": "Horn of Valhalla (Bronze)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_horn-of-valhalla-iron", - "fields": { - "name": "Horn of Valhalla (Iron)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_horn-of-valhalla-silver", - "fields": { - "name": "Horn of Valhalla (silver)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_horseshoes-of-a-zephyr", - "fields": { - "name": "Horseshoes of a Zephyr", - "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they allow the creature to move normally while floating 4 inches above the ground. This effect means the creature can cross or stand above nonsolid or unstable surfaces, such as water or lava. The creature leaves no tracks and ignores difficult terrain. In addition, the creature can move at normal speed for up to 12 hours a day without suffering exhaustion from a forced march.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_horseshoes-of-speed", - "fields": { - "name": "Horseshoes of Speed", - "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they increase the creature's walking speed by 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_hourglass", - "fields": { - "name": "Hourglass", - "desc": "An hourglass.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_hunting-trap", - "fields": { - "name": "Hunting Trap", - "desc": "When you use your action to set it, this trap forms a saw-­‐‑toothed steel ring that snaps shut when a creature steps on a pressure plate in the center. The trap is affixed by a heavy chain to an immobile object, such as a tree or a spike driven into the ground. A creature that steps on the plate must succeed on a DC 13 Dexterity saving throw or take 1d4 piercing damage and stop moving. Thereafter, until the creature breaks free of the trap, its movement is limited by the length of the chain (typically 3 feet long). A creature can use its action to make a DC 13 Strength check, freeing itself or another creature within its reach on a success. Each failed check deals 1 piercing damage to the trapped creature.", - "document": "srd", - "size": "tiny", - "weight": "25.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_immovable-rod", - "fields": { - "name": "Immovable Rod", - "desc": "This flat iron rod has a button on one end. You can use an action to press the button, which causes the rod to become magically fixed in place. Until you or another creature uses an action to push the button again, the rod doesn't move, even if it is defying gravity. The rod can hold up to 8,000 pounds of weight. More weight causes the rod to deactivate and fall. A creature can use an action to make a DC 30 Strength check, moving the fixed rod up to 10 feet on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ink-1-ounce-bottle", - "fields": { - "name": "Ink (1 ounce bottle)", - "desc": "A bottle of ink.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_ink-pen", - "fields": { - "name": "Ink pen", - "desc": "A pen for writing with ink.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_instant-fortress", - "fields": { - "name": "Instant Fortress", - "desc": "You can use an action to place this 1-inch metal cube on the ground and speak its command word. The cube rapidly grows into a fortress that remains until you use an action to speak the command word that dismisses it, which works only if the fortress is empty.\r\n\r\nThe fortress is a square tower, 20 feet on a side and 30 feet high, with arrow slits on all sides and a battlement atop it. Its interior is divided into two floors, with a ladder running along one wall to connect them. The ladder ends at a trapdoor leading to the roof. When activated, the tower has a small door on the side facing you. The door opens only at your command, which you can speak as a bonus action. It is immune to the _knock_ spell and similar magic, such as that of a _chime of opening_.\r\n\r\nEach creature in the area where the fortress appears must make a DC 15 Dexterity saving throw, taking 10d10 bludgeoning damage on a failed save, or half as much damage on a successful one. In either case, the creature is pushed to an unoccupied space outside but next to the fortress. Objects in the area that aren't being worn or carried take this damage and are pushed automatically.\r\n\r\nThe tower is made of adamantine, and its magic prevents it from being tipped over. The roof, the door, and the walls each have 100 hit points,\r\n\r\nimmunity to damage from nonmagical weapons excluding siege weapons, and resistance to all other damage. Only a _wish_ spell can repair the fortress (this use of the spell counts as replicating a spell of 8th level or lower). Each casting of _wish_ causes the roof, the door, or one wall to regain 50 hit points.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-absorption", - "fields": { - "name": "Ioun Stone (Absorption)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\r\n\r\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\r\n\r\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\r\n\r\n**_Absorption (Very Rare)_**. While this pale lavender ellipsoid orbits your head, you can use your reaction to cancel a spell of 4th level or lower cast by a creature you can see and targeting only you.\r\n\r\nOnce the stone has canceled 20 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-agility", - "fields": { - "name": "Ioun Stone (Agility)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Agility (Very Rare)._** Your Dexterity score increases by 2, to a maximum of 20, while this deep red sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-awareness", - "fields": { - "name": "Ioun Stone (Awareness)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Awareness (Rare)._** You can't be surprised while this dark blue rhomboid orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-absorption", - "fields": { - "name": "Ioun Stone (Absorption)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Fortitude (Very Rare)_**. Your Constitution score increases by 2, to a maximum of 20, while this pink rhomboid orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-greater-absorption", - "fields": { - "name": "Ioun Stone (Greater Absorption)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Greater Absorption (Legendary)._** While this marbled lavender and green ellipsoid orbits your head, you can use your reaction to cancel a spell of 8th level or lower cast by a creature you can see and targeting only you.\\n\\nOnce the stone has canceled 50 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-insight", - "fields": { - "name": "Ioun Stone (Insight)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Insight (Very Rare)._** Your Wisdom score increases by 2, to a maximum of 20, while this incandescent blue sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-intellect", - "fields": { - "name": "Ioun Stone (Intellect)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Intellect (Very Rare)._** Your Intelligence score increases by 2, to a maximum of 20, while this marbled scarlet and blue sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-leadership", - "fields": { - "name": "Ioun Stone (Leadership)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Leadership (Very Rare)._** Your Charisma score increases by 2, to a maximum of 20, while this marbled pink and green sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-mastery", - "fields": { - "name": "Ioun Stone (Mastery)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Mastery (Legendary)._** Your proficiency bonus increases by 1 while this pale green prism orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-protection", - "fields": { - "name": "Ioun Stone (Protection)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Protection (Rare)_**. You gain a +1 bonus to AC while this dusty rose prism orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-regeneration", - "fields": { - "name": "Ioun Stone (Regeneration)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Regeneration (Legendary)_**. You regain 15 hit points at the end of each hour this pearly white spindle orbits your head, provided that you have at least 1 hit point.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-reserve", - "fields": { - "name": "Ioun Stone (Reserve)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Reserve (Rare)._** This vibrant purple prism stores spells cast into it, holding them until you use them. The stone can store up to 3 levels worth of spells at a time. When found, it contains 1d4 - 1 levels of stored spells chosen by the GM.\\n\\nAny creature can cast a spell of 1st through 3rd level into the stone by touching it as the spell is cast. The spell has no effect, other than to be stored in the stone. If the stone can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\\n\\nWhile this stone orbits your head, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the stone is no longer stored in it, freeing up space.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-strength", - "fields": { - "name": "Ioun Stone (Strength)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Strength (Very Rare)._** Your Strength score increases by 2, to a maximum of 20, while this pale blue rhomboid orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-sustenance", - "fields": { - "name": "Ioun Stone (Sustenance)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Sustenance (Rare)._** You don't need to eat or drink while this clear spindle orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_iron-bands-of-binding", - "fields": { - "name": "Iron Bands of Binding", - "desc": "This rusty iron sphere measures 3 inches in diameter and weighs 1 pound. You can use an action to speak the command word and throw the sphere at a Huge or smaller creature you can see within 60 feet of you. As the sphere moves through the air, it opens into a tangle of metal bands.\r\n\r\nMake a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the target is restrained until you take a bonus action to speak the command word again to release it. Doing so, or missing with the attack, causes the bands to contract and become a sphere once more.\r\n\r\nA creature, including the one restrained, can use an action to make a DC 20 Strength check to break the iron bands. On a success, the item is destroyed, and the restrained creature is freed. If the check fails, any further attempts made by that creature automatically fail until 24 hours have elapsed.\r\n\r\nOnce the bands are used, they can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_iron-flask", - "fields": { - "name": "Iron Flask", - "desc": "This iron bottle has a brass stopper. You can use an action to speak the flask's command word, targeting a creature that you can see within 60 feet of you. If the target is native to a plane of existence other than the one you're on, the target must succeed on a DC 17 Wisdom saving throw or be trapped in the flask. If the target has been trapped by the flask before, it has advantage on the saving throw. Once trapped, a creature remains in the flask until released. The flask can hold only one creature at a time. A creature trapped in the flask doesn't need to breathe, eat, or drink and doesn't age.\r\n\r\nYou can use an action to remove the flask's stopper and release the creature the flask contains. The creature is friendly to you and your companions for 1 hour and obeys your commands for that duration. If you give no commands or give it a command that is likely to result in its death, it defends itself but otherwise takes no actions. At the end of the duration, the creature acts in accordance with its normal disposition and alignment.\r\n\r\nAn _identify_ spell reveals that a creature is inside the flask, but the only way to determine the type of creature is to open the flask. A newly discovered bottle might already contain a creature chosen by the GM or determined randomly.\r\n\r\n| d100 | Contents |\r\n|-------|-------------------|\r\n| 1-50 | Empty |\r\n| 51-54 | Demon (type 1) |\r\n| 55-58 | Demon (type 2) |\r\n| 59-62 | Demon (type 3) |\r\n| 63-64 | Demon (type 4) |\r\n| 65 | Demon (type 5) |\r\n| 66 | Demon (type 6) |\r\n| 67 | Deva |\r\n| 68-69 | Devil (greater) |\r\n| 70-73 | Devil (lesser) |\r\n| 74-75 | Djinni |\r\n| 76-77 | Efreeti |\r\n| 78-83 | Elemental (any) |\r\n| 84-86 | Invisible stalker |\r\n| 87-90 | Night hag |\r\n| 91 | Planetar |\r\n| 92-95 | Salamander |\r\n| 96 | Solar |\r\n| 97-99 | Succubus/incubus |\r\n| 100 | Xorn |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_javelin", - "fields": { - "name": "Javelin", - "desc": "A javelin", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_javelin-1", - "fields": { - "name": "Javelin (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_javelin-2", - "fields": { - "name": "Javelin (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_javelin-3", - "fields": { - "name": "Javelin (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_javelin-of-lightning", - "fields": { - "name": "Javelin of Lightning", - "desc": "This javelin is a magic weapon. When you hurl it and speak its command word, it transforms into a bolt of lightning, forming a line 5 feet wide that extends out from you to a target within 120 feet. Each creature in the line excluding you and the target must make a DC 13 Dexterity saving throw, taking 4d6 lightning damage on a failed save, and half as much damage on a successful one. The lightning bolt turns back into a javelin when it reaches the target. Make a ranged weapon attack against the target. On a hit, the target takes damage from the javelin plus 4d6 lightning damage.\n\nThe javelin's property can't be used again until the next dawn. In the meantime, the javelin can still be used as a magic weapon.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_jewelers-tools", - "fields": { - "name": "Jeweler's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_jug-or-pitcher", - "fields": { - "name": "Jug or pitcher", - "desc": "For drinking a lot. Capacity: 1 gallon liquid.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_keelboat", - "fields": { - "name": "Keelboat", - "desc": "Waterborne vehicle. Speed is 1mph.", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "3000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_ladder-10-foot", - "fields": { - "name": "Ladder (10-foot)", - "desc": "A 10 foot ladder.", - "document": "srd", - "size": "tiny", - "weight": "25.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lamp", - "fields": { - "name": "Lamp", - "desc": "A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lamp-oil-flask", - "fields": { - "name": "Lamp oil (flask)", - "desc": "Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon. On a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-­foot‑square area, provided that the surface is level. If lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lance", - "fields": { - "name": "Lance", - "desc": "A lance.\r\n\r\nYou have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lance-1", - "fields": { - "name": "Lance (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_lance-2", - "fields": { - "name": "Lance (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_lance-3", - "fields": { - "name": "Lance (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_lantern-bullseye", - "fields": { - "name": "Lantern, Bullseye", - "desc": "A bullseye lantern casts bright light in a 60-­‐‑foot cone and dim light for an additional 60 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lantern-hooded", - "fields": { - "name": "Lantern, Hooded", - "desc": "A hooded lantern casts bright light in a 30-­‐‑foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil. As an action, you can lower the hood, reducing the light to dim light in a 5-­‐‑foot radius.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lantern-of-revealing", - "fields": { - "name": "Lantern of Revealing", - "desc": "While lit, this hooded lantern burns for 6 hours on 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the lantern's bright light. You can use an action to lower the hood, reducing the light to dim light in a 5* foot radius.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_leather-armor", - "fields": { - "name": "Leather Armor", - "desc": "The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_leatherworkers-tools", - "fields": { - "name": "Leatherworker's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_light-hammer", - "fields": { - "name": "Light hammer", - "desc": "A light hammer.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_light-hammer-1", - "fields": { - "name": "Light-Hammer (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_light-hammer-2", - "fields": { - "name": "Light-Hammer (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_light-hammer-3", - "fields": { - "name": "Light-Hammer (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_lock", - "fields": { - "name": "Lock", - "desc": "A key is provided with the lock. Without the key, a creature proficient with thieves’ tools can pick this lock with a successful DC 15 Dexterity check. Your GM may decide that better locks are available for higher prices.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_longbow", - "fields": { - "name": "Longbow", - "desc": "A longbow.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_longbow-1", - "fields": { - "name": "Longbow (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_longbow-2", - "fields": { - "name": "Longbow (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_longbow-3", - "fields": { - "name": "Longbow (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_longship", - "fields": { - "name": "Longship", - "desc": "Waterborne vehicle. Speed 3mph.", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_longsword", - "fields": { - "name": "Longsword", - "desc": "A longsword", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_longsword-1", - "fields": { - "name": "Longsword (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_longsword-2", - "fields": { - "name": "Longsword (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_longsword-3", - "fields": { - "name": "Longsword (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_luck-blade-greatsword", - "fields": { - "name": "Luck Blade (Greatsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_luck-blade-longsword", - "fields": { - "name": "Luck Blade (Longsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_luck-blade-rapier", - "fields": { - "name": "Luck Blade (Rapier)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_luck-blade-shortsword", - "fields": { - "name": "Luck Blade (Shortsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lute", - "fields": { - "name": "Lute", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "35.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lyre", - "fields": { - "name": "Lyre", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace", - "fields": { - "name": "Mace", - "desc": "A mace.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace-1", - "fields": { - "name": "Mace (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace-2", - "fields": { - "name": "Mace (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace-3", - "fields": { - "name": "Mace (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace-of-disruption", - "fields": { - "name": "Mace of Disruption", - "desc": "When you hit a fiend or an undead with this magic weapon, that creature takes an extra 2d6 radiant damage. If the target has 25 hit points or fewer after taking this damage, it must succeed on a DC 15 Wisdom saving throw or be destroyed. On a successful save, the creature becomes frightened of you until the end of your next turn.\n\nWhile you hold this weapon, it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace-of-smiting", - "fields": { - "name": "Mace of Smiting", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the mace to attack a construct.\n\nWhen you roll a 20 on an attack roll made with this weapon, the target takes an extra 2d6 bludgeoning damage, or 4d6 bludgeoning damage if it's a construct. If a construct has 25 hit points or fewer after taking this damage, it is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace-of-terror", - "fields": { - "name": "Mace of Terror", - "desc": "This magic weapon has 3 charges. While holding it, you can use an action and expend 1 charge to release a wave of terror. Each creature of your choice in a 30-foot radius extending from you must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.\n\nThe mace regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_magnifying-glass", - "fields": { - "name": "Magnifying Glass", - "desc": "This lens allows a closer look at small objects. It is also useful as a substitute for flint and steel when starting fires. Lighting a fire with a magnifying glass requires light as bright as sunlight to focus, tinder to ignite, and about 5 minutes for the fire to ignite. A magnifying glass grants advantage on any ability check made to appraise or inspect an item that is small or highly detailed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "100.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_malice", - "fields": { - "name": "Malice", - "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 1 hour. The poisoned creature is blinded.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "250.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_manacles", - "fields": { - "name": "Manacles", - "desc": "These metal restraints can bind a Small or Medium creature. Escaping the manacles requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of manacles comes with one key. Without the key, a creature proficient with thieves’ tools can pick the manacles’ lock with a successful DC 15 Dexterity check. Manacles have 15 hit points.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 15, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mantle-of-spell-resistance", - "fields": { - "name": "Mantle of Spell Resistance", - "desc": "You have advantage on saving throws against spells while you wear this cloak.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_manual-of-bodily-health", - "fields": { - "name": "Manual of Bodily Health", - "desc": "This book contains health and diet tips, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Constitution score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_manual-of-gainful-exercise", - "fields": { - "name": "Manual of Gainful Exercise", - "desc": "This book describes fitness exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Strength score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_manual-of-golems", - "fields": { - "name": "Manual of Golems", - "desc": "This tome contains information and incantations necessary to make a particular type of golem. The GM chooses the type or determines it randomly. To decipher and use the manual, you must be a spellcaster with at least two 5th-level spell slots. A creature that can't use a _manual of golems_ and attempts to read it takes 6d6 psychic damage.\r\n\r\n| d20 | Golem | Time | Cost |\r\n|-------|-------|----------|------------|\r\n| 1-5 | Clay | 30 days | 65,000 gp |\r\n| 6-17 | Flesh | 60 days | 50,000 gp |\r\n| 18 | Iron | 120 days | 100,000 gp |\r\n| 19-20 | Stone | 90 days | 80,000 gp |\r\n\r\nTo create a golem, you must spend the time shown on the table, working without interruption with the manual at hand and resting no more than 8 hours per day. You must also pay the specified cost to purchase supplies.\r\n\r\nOnce you finish creating the golem, the book is consumed in eldritch flames. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_manual-of-quickness-of-action", - "fields": { - "name": "Manual of Quickness of Action", - "desc": "This book contains coordination and balance exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Dexterity score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_marvelous-pigments", - "fields": { - "name": "Marvelous Pigments", - "desc": "Typically found in 1d4 pots inside a fine wooden box with a brush (weighing 1 pound in total), these pigments allow you to create three-dimensional objects by painting them in two dimensions. The paint flows from the brush to form the desired object as you concentrate on its image.\r\n\r\nEach pot of paint is sufficient to cover 1,000 square feet of a surface, which lets you create inanimate objects or terrain features-such as a door, a pit, flowers, trees, cells, rooms, or weapons- that are up to 10,000 cubic feet. It takes 10 minutes to cover 100 square feet.\r\n\r\nWhen you complete the painting, the object or terrain feature depicted becomes a real, nonmagical object. Thus, painting a door on a wall creates an actual door that can be opened to whatever is beyond. Painting a pit on a floor creates a real pit, and its depth counts against the total area of objects you create.\r\n\r\nNothing created by the pigments can have a value greater than 25 gp. If you paint an object of greater value (such as a diamond or a pile of gold), the object looks authentic, but close inspection reveals it is made from paste, bone, or some other worthless material.\r\n\r\nIf you paint a form of energy such as fire or lightning, the energy appears but dissipates as soon as you complete the painting, doing no harm to anything.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_masons-tools", - "fields": { - "name": "Mason's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_maul", - "fields": { - "name": "Maul", - "desc": "A maul.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_maul-1", - "fields": { - "name": "Maul (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_maul-2", - "fields": { - "name": "Maul (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_maul-3", - "fields": { - "name": "Maul (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_medallion-of-thoughts", - "fields": { - "name": "Medallion of Thoughts", - "desc": "The medallion has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _detect thoughts_ spell (save DC 13) from it. The medallion regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mess-kit", - "fields": { - "name": "Mess Kit", - "desc": "This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_midnight-tears", - "fields": { - "name": "Midnight tears", - "desc": "A creature that ingests this poison suffers no effect until the stroke of midnight. If the poison has not been neutralized before then, the creature must succeed on a DC 17 Constitution saving throw, taking 31 (9d6) poison damage on a failed save, or half as much damage on a successful one.\\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1500.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mirror-of-life-trapping", - "fields": { - "name": "Mirror of Life Trapping", - "desc": "When this 4-foot-tall mirror is viewed indirectly, its surface shows faint images of creatures. The mirror weighs 50 pounds, and it has AC 11, 10 hit points, and vulnerability to bludgeoning damage. It shatters and is destroyed when reduced to 0 hit points.\r\n\r\nIf the mirror is hanging on a vertical surface and you are within 5 feet of it, you can use an action to speak its command word and activate it. It remains activated until you use an action to speak the command word again.\r\n\r\nAny creature other than you that sees its reflection in the activated mirror while within 30 feet of it must succeed on a DC 15 Charisma saving throw or be trapped, along with anything it is wearing or carrying, in one of the mirror's twelve extradimensional cells. This saving throw is made with advantage if the creature knows the mirror's nature, and constructs succeed on the saving throw automatically.\r\n\r\nAn extradimensional cell is an infinite expanse filled with thick fog that reduces visibility to 10 feet. Creatures trapped in the mirror's cells don't age, and they don't need to eat, drink, or sleep. A creature trapped within a cell can escape using magic that permits planar travel. Otherwise, the creature is confined to the cell until freed.\r\n\r\nIf the mirror traps a creature but its twelve extradimensional cells are already occupied, the mirror frees one trapped creature at random to accommodate the new prisoner. A freed creature appears in an unoccupied space within sight of the mirror but facing away from it. If the mirror is shattered, all creatures it contains are freed and appear in unoccupied spaces near it.\r\n\r\nWhile within 5 feet of the mirror, you can use an action to speak the name of one creature trapped in it or call out a particular cell by number. The creature named or contained in the named cell appears as an image on the mirror's surface. You and the creature can then communicate normally.\r\n\r\nIn a similar way, you can use an action to speak a second command word and free one creature trapped in the mirror. The freed creature appears, along with its possessions, in the unoccupied space nearest to the mirror and facing away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mirror-steel", - "fields": { - "name": "Mirror, steel", - "desc": "A mirror.", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-breastplate", - "fields": { - "name": "Mithral Armor (Breastplate)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-chain-mail", - "fields": { - "name": "Mithral Armor (Chain-Mail)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-chain-shirt", - "fields": { - "name": "Mithral Armor (Chain-Shirt)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-half-plate", - "fields": { - "name": "Mithral Armor (Half-Plate)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "half-plate", - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-hide", - "fields": { - "name": "Mithral Armor (Hide)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-plate", - "fields": { - "name": "Mithral Armor (Plate)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-ring-mail", - "fields": { - "name": "Mithral Armor (Ring-Mail)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-scale-mail", - "fields": { - "name": "Mithral Armor (Scale-Mail)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-splint", - "fields": { - "name": "Mithral Armor (Splint)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_morningstar", - "fields": { - "name": "Morningstar", - "desc": "A morningstar", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_morningstar-1", - "fields": { - "name": "Morningstar (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_morningstar-2", - "fields": { - "name": "Morningstar (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_morningstar-3", - "fields": { - "name": "Morningstar (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_navigators-tools", - "fields": { - "name": "Navigator's tools", - "desc": "This set of instruments is used for navigation at sea. Proficiency with navigator's tools lets you chart a ship's course and follow navigation charts. In addition, these tools allow you to add your proficiency bonus to any ability check you make to avoid getting lost at sea.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_necklace-of-adaptation", - "fields": { - "name": "Necklace of Adaptation", - "desc": "While wearing this necklace, you can breathe normally in any environment, and you have advantage on saving throws made against harmful gases and vapors (such as _cloudkill_ and _stinking cloud_ effects, inhaled poisons, and the breath weapons of some dragons).", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_necklace-of-fireballs", - "fields": { - "name": "Necklace of Fireballs", - "desc": "This necklace has 1d6 + 3 beads hanging from it. You can use an action to detach a bead and throw it up to 60 feet away. When it reaches the end of its trajectory, the bead detonates as a 3rd-level _fireball_ spell (save DC 15).\r\n\r\nYou can hurl multiple beads, or even the whole necklace, as one action. When you do so, increase the level of the _fireball_ by 1 for each bead beyond the first.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_necklace-of-prayer-beads", - "fields": { - "name": "Necklace of Prayer Beads", - "desc": "This necklace has 1d4 + 2 magic beads made from aquamarine, black pearl, or topaz. It also has many nonmagical beads made from stones such as amber, bloodstone, citrine, coral, jade, pearl, or quartz. If a magic bead is removed from the necklace, that bead loses its magic.\r\n\r\nSix types of magic beads exist. The GM decides the type of each bead on the necklace or determines it randomly. A necklace can have more than one bead of the same type. To use one, you must be wearing the necklace. Each bead contains a spell that you can cast from it as a bonus action (using your spell save DC if a save is necessary). Once a magic bead's spell is cast, that bead can't be used again until the next dawn.\r\n\r\n| d20 | Bead of... | Spell |\r\n|-------|--------------|-----------------------------------------------|\r\n| 1-6 | Blessing | Bless |\r\n| 7-12 | Curing | Cure wounds (2nd level) or lesser restoration |\r\n| 13-16 | Favor | Greater restoration |\r\n| 17-18 | Smiting | Branding smite |\r\n| 19 | Summons | Planar ally |\r\n| 20 | Wind walking | Wind walk |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_net", - "fields": { - "name": "Net", - "desc": "A net.\r\n\r\nA Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net.\r\n\r\nWhen you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_net-1", - "fields": { - "name": "Net (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_net-2", - "fields": { - "name": "Net (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_net-3", - "fields": { - "name": "Net (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_nine-lives-stealer-greatsword", - "fields": { - "name": "Nine Lives Stealer (Greatsword)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_nine-lives-stealer-longsword", - "fields": { - "name": "Nine Lives Stealer (Longsword)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_nine-lives-stealer-rapier", - "fields": { - "name": "Nine Lives Stealer (Rapier)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_nine-lives-stealer-shortsword", - "fields": { - "name": "Nine Lives Stealer (Shortsword)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_oathbow", - "fields": { - "name": "Oathbow", - "desc": "When you nock an arrow on this bow, it whispers in Elvish, \"Swift defeat to my enemies.\" When you use this weapon to make a ranged attack, you can, as a command phrase, say, \"Swift death to you who have wronged me.\" The target of your attack becomes your sworn enemy until it dies or until dawn seven days later. You can have only one such sworn enemy at a time. When your sworn enemy dies, you can choose a new one after the next dawn.\n\nWhen you make a ranged attack roll with this weapon against your sworn enemy, you have advantage on the roll. In addition, your target gains no benefit from cover, other than total cover, and you suffer no disadvantage due to long range. If the attack hits, your sworn enemy takes an extra 3d6 piercing damage.\n\nWhile your sworn enemy lives, you have disadvantage on attack rolls with all other weapons.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_oil-of-etherealness", - "fields": { - "name": "Oil of Etherealness", - "desc": "Beads of this cloudy gray oil form on the outside of its container and quickly evaporate. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of the _etherealness_ spell for 1 hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_oil-of-sharpness", - "fields": { - "name": "Oil of Sharpness", - "desc": "This clear, gelatinous oil sparkles with tiny, ultrathin silver shards. The oil can coat one slashing or piercing weapon or up to 5 pieces of slashing or piercing ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical and has a +3 bonus to attack and damage rolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_oil-of-slipperiness", - "fields": { - "name": "Oil of Slipperiness", - "desc": "This sticky black unguent is thick and heavy in the container, but it flows quickly when poured. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of a _freedom of movement_ spell for 8 hours.\n\nAlternatively, the oil can be poured on the ground as an action, where it covers a 10-foot square, duplicating the effect of the _grease_ spell in that area for 8 hours.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_oil-of-taggit", - "fields": { - "name": "Oil of taggit", - "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or become poisoned for 24 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage.\\n\\n **_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "400.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_orb", - "fields": { - "name": "Orb", - "desc": "Can be used as an Arcane Focus.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_orb-of-dragonkind", - "fields": { - "name": "Orb of Dragonkind", - "desc": "Ages past, elves and humans waged a terrible war against evil dragons. When the world seemed doomed, powerful wizards came together and worked their greatest magic, forging five _Orbs of Dragonkind_ (or _Dragon Orbs_) to help them defeat the dragons. One orb was taken to each of the five wizard towers, and there they were used to speed the war toward a victorious end. The wizards used the orbs to lure dragons to them, then destroyed the dragons with powerful magic.\\n\\nAs the wizard towers fell in later ages, the orbs were destroyed or faded into legend, and only three are thought to survive. Their magic has been warped and twisted over the centuries, so although their primary purpose of calling dragons still functions, they also allow some measure of control over dragons.\\n\\nEach orb contains the essence of an evil dragon, a presence that resents any attempt to coax magic from it. Those lacking in force of personality might find themselves enslaved to an orb.\\n\\nAn orb is an etched crystal globe about 10 inches in diameter. When used, it grows to about 20 inches in diameter, and mist swirls inside it.\\n\\nWhile attuned to an orb, you can use an action to peer into the orb's depths and speak its command word. You must then make a DC 15 Charisma check. On a successful check, you control the orb for as long as you remain attuned to it. On a failed check, you become charmed by the orb for as long as you remain attuned to it.\\n\\nWhile you are charmed by the orb, you can't voluntarily end your attunement to it, and the orb casts _suggestion_ on you at will (save DC 18), urging you to work toward the evil ends it desires. The dragon essence within the orb might want many things: the annihilation of a particular people, freedom from the orb, to spread suffering in the world, to advance the worship of Tiamat, or something else the GM decides.\\n\\n**_Random Properties_**. An _Orb of Dragonkind_ has the following random properties:\\n\\n* 2 minor beneficial properties\\n* 1 minor detrimental property\\n* 1 major detrimental property\\n\\n**_Spells_**. The orb has 7 charges and regains 1d4 + 3 expended charges daily at dawn. If you control the orb, you can use an action and expend 1 or more charges to cast one of the following spells (save DC 18) from it: _cure wounds_ (5th-level version, 3 charges), _daylight_ (1 charge), _death ward_ (2 charges), or _scrying_ (3 charges).\\n\\nYou can also use an action to cast the _detect magic_ spell from the orb without using any charges.\\n\\n**_Call Dragons_**. While you control the orb, you can use an action to cause the artifact to issue a telepathic call that extends in all directions for 40 miles. Evil dragons in range feel compelled to come to the orb as soon as possible by the most direct route. Dragon deities such as Tiamat are unaffected by this call. Dragons drawn to the orb might be hostile toward you for compelling them against their will. Once you have used this property, it can't be used again for 1 hour.\\n\\n**_Destroying an Orb_**. An _Orb of Dragonkind_ appears fragile but is impervious to most damage, including the attacks and breath weapons of dragons. A _disintegrate_ spell or one good hit from a +3 magic weapon is sufficient to destroy an orb, however.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "artifact" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ox", - "fields": { - "name": "Ox", - "desc": "One ox.", - "document": "srd", - "size": "large", - "weight": "1500.000", - "armor_class": 10, - "hit_points": 15, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_padded-armor", - "fields": { - "name": "Padded Armor", - "desc": "Padded armor consists of quilted layers of cloth and batting.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_painters-supplies", - "fields": { - "name": "Painter's Supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pale-tincture", - "fields": { - "name": "Pale tincture", - "desc": "A creature subjected to this poison must succeed on a DC 16 Constitution saving throw or take 3 (1d6) poison damage and become poisoned. The poisoned creature must repeat the saving throw every 24 hours, taking 3 (1d6) poison damage on a failed save. Until this poison ends, the damage the poison deals can't be healed by any means. After seven successful saving throws, the effect ends and the creature can heal normally. \\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "250.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pan-flute", - "fields": { - "name": "Pan flute", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "12.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_paper-one-sheet", - "fields": { - "name": "Paper (one sheet)", - "desc": "A sheet of paper", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_parchment-one-sheet", - "fields": { - "name": "Parchment (one sheet)", - "desc": "A sheet of parchment", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pearl-of-power", - "fields": { - "name": "Pearl of Power", - "desc": "While this pearl is on your person, you can use an action to speak its command word and regain one expended spell slot. If the expended slot was of 4th level or higher, the new slot is 3rd level. Once you use the pearl, it can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_perfume-vial", - "fields": { - "name": "Perfume (vial)", - "desc": "A vial of perfume.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_periapt-of-health", - "fields": { - "name": "Periapt of Health", - "desc": "You are immune to contracting any disease while you wear this pendant. If you are already infected with a disease, the effects of the disease are suppressed you while you wear the pendant.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_periapt-of-proof-against-poison", - "fields": { - "name": "Periapt of Proof against Poison", - "desc": "This delicate silver chain has a brilliant-cut black gem pendant. While you wear it, poisons have no effect on you. You are immune to the poisoned condition and have immunity to poison damage.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_periapt-of-wound-closure", - "fields": { - "name": "Periapt of Wound Closure", - "desc": "While you wear this pendant, you stabilize whenever you are dying at the start of your turn. In addition, whenever you roll a Hit Die to regain hit points, double the number of hit points it restores.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_philter-of-love", - "fields": { - "name": "Philter of Love", - "desc": "The next time you see a creature within 10 minutes after drinking this philter, you become charmed by that creature for 1 hour. If the creature is of a species and gender you are normally attracted to, you regard it as your true love while you are charmed. This potion's rose-hued, effervescent liquid contains one easy-to-miss bubble shaped like a heart.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_pick-miners", - "fields": { - "name": "Pick, miner's", - "desc": "A pick for mining.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pig", - "fields": { - "name": "Pig", - "desc": "One pig.", - "document": "srd", - "size": "medium", - "weight": "400.000", - "armor_class": 10, - "hit_points": 4, - "cost": "3.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pike", - "fields": { - "name": "Pike", - "desc": "A pike.", - "document": "srd", - "size": "tiny", - "weight": "18.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pike-1", - "fields": { - "name": "Pike (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_pike-2", - "fields": { - "name": "Pike (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_pike-3", - "fields": { - "name": "Pike (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_pipes-of-haunting", - "fields": { - "name": "Pipes of Haunting", - "desc": "You must be proficient with wind instruments to use these pipes. They have 3 charges. You can use an action to play them and expend 1 charge to create an eerie, spellbinding tune. Each creature within 30 feet of you that hears you play must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. If you wish, all creatures in the area that aren't hostile toward you automatically succeed on the saving throw. A creature that fails the saving throw can repeat it at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on its saving throw is immune to the effect of these pipes for 24 hours. The pipes regain 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_pipes-of-the-sewers", - "fields": { - "name": "Pipes of the Sewers", - "desc": "You must be proficient with wind instruments to use these pipes. While you are attuned to the pipes, ordinary rats and giant rats are indifferent toward you and will not attack you unless you threaten or harm them.\r\n\r\nThe pipes have 3 charges. If you play the pipes as an action, you can use a bonus action to expend 1 to 3 charges, calling forth one swarm of rats with each expended charge, provided that enough rats are within half a mile of you to be called in this fashion (as determined by the GM). If there aren't enough rats to form a swarm, the charge is wasted. Called swarms move toward the music by the shortest available route but aren't under your control otherwise. The pipes regain 1d3 expended charges daily at dawn.\r\n\r\nWhenever a swarm of rats that isn't under another creature's control comes within 30 feet of you while you are playing the pipes, you can make a Charisma check contested by the swarm's Wisdom check. If you lose the contest, the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours. If you win the contest, the swarm is swayed by the pipes' music and becomes friendly to you and your companions for as long as you continue to play the pipes each round as an action. A friendly swarm obeys your commands. If you issue no commands to a friendly swarm, it defends itself but otherwise takes no actions. If a friendly swarm starts its turn and can't hear the pipes' music, your control over that swarm ends, and the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_piton", - "fields": { - "name": "Piton", - "desc": "A piton for climbing.", - "document": "srd", - "size": "tiny", - "weight": "0.250", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_plate-armor", - "fields": { - "name": "Plate Armor", - "desc": "Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.", - "document": "srd", - "size": "tiny", - "weight": "65.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1500.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_plate-armor-of-etherealness", - "fields": { - "name": "Plate Armor of Etherealness", - "desc": "While you're wearing this armor, you can speak its command word as an action to gain the effect of the _etherealness_ spell, which last for 10 minutes or until you remove the armor or use an action to speak the command word again. This property of the armor can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_playing-card-set", - "fields": { - "name": "Playing card set", - "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_poison-basic", - "fields": { - "name": "Poison, Basic", - "desc": "You can use the poison in this vial to coat one slashing or piercing weapon or up to three pieces of ammunition. Applying the poison takes an action. A creature hit by the poisoned weapon or ammunition must make a DC 10 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "100.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_poisoners-kit", - "fields": { - "name": "Poisoner's kit", - "desc": "A poisoner’s kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pole-10-foot", - "fields": { - "name": "Pole (10-foot)", - "desc": "A 10 foot pole.", - "document": "srd", - "size": "tiny", - "weight": "7.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_portable-hole", - "fields": { - "name": "Portable Hole", - "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold a _portable hole_ and place it on or against a solid surface, whereupon the _portable hole_ creates an extradimensional hole 10 feet deep. The cylindrical space within the hole exists on a different plane, so it can't be used to create open passages. Any creature inside an open _portable hole_ can exit the hole by climbing out of it.\r\n\r\nYou can use an action to close a _portable hole_ by taking hold of the edges of the cloth and folding it up. Folding the cloth closes the hole, and any creatures or objects within remain in the extradimensional space. No matter what's in it, the hole weighs next to nothing.\r\n\r\nIf the hole is folded up, a creature within the hole's extradimensional space can use an action to make a DC 10 Strength check. On a successful check, the creature forces its way out and appears within 5 feet of the _portable hole_ or the creature carrying it. A breathing creature within a closed _portable hole_ can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing a _portable hole_ inside an extradimensional space created by a _bag of holding_, _handy haversack_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_pot-iron", - "fields": { - "name": "Pot, iron", - "desc": "An iron pot. Capacity: 1 gallon liquid.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-animal-friendship", - "fields": { - "name": "Potion of Animal Friendship", - "desc": "When you drink this potion, you can cast the _animal friendship_ spell (save DC 13) for 1 hour at will. Agitating this muddy liquid brings little bits into view: a fish scale, a hummingbird tongue, a cat claw, or a squirrel hair.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-clairvoyance", - "fields": { - "name": "Potion of Clairvoyance", - "desc": "When you drink this potion, you gain the effect of the _clairvoyance_ spell. An eyeball bobs in this yellowish liquid but vanishes when the potion is opened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-climbing", - "fields": { - "name": "Potion of Climbing", - "desc": "When you drink this potion, you gain a climbing speed equal to your walking speed for 1 hour. During this time, you have advantage on Strength (Athletics) checks you make to climb. The potion is separated into brown, silver, and gray layers resembling bands of stone. Shaking the bottle fails to mix the colors.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-cloud-giant-strength", - "fields": { - "name": "Potion of Cloud Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-diminution", - "fields": { - "name": "Potion of Diminution", - "desc": "When you drink this potion, you gain the \"reduce\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously contracts to a tiny bead and then expands to color the clear liquid around it. Shaking the bottle fails to interrupt this process.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-fire-giant-strength", - "fields": { - "name": "Potion of Fire Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-flying", - "fields": { - "name": "Potion of Flying", - "desc": "When you drink this potion, you gain a flying speed equal to your walking speed for 1 hour and can hover. If you're in the air when the potion wears off, you fall unless you have some other means of staying aloft. This potion's clear liquid floats at the top of its container and has cloudy white impurities drifting in it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-frost-giant-strength", - "fields": { - "name": "Potion of Frost Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-gaseous-form", - "fields": { - "name": "Potion of Gaseous Form", - "desc": "When you drink this potion, you gain the effect of the _gaseous form_ spell for 1 hour (no concentration required) or until you end the effect as a bonus action. This potion's container seems to hold fog that moves and pours like water.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-greater-healing", - "fields": { - "name": "Potion of Greater Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-growth", - "fields": { - "name": "Potion of Growth", - "desc": "When you drink this potion, you gain the \"enlarge\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously expands from a tiny bead to color the clear liquid around it and then contracts. Shaking the bottle fails to interrupt this process.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-healing", - "fields": { - "name": "Potion of Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-heroism", - "fields": { - "name": "Potion of Heroism", - "desc": "For 1 hour after drinking it, you gain 10 temporary hit points that last for 1 hour. For the same duration, you are under the effect of the _bless_ spell (no concentration required). This blue potion bubbles and steams as if boiling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-hill-giant-strength", - "fields": { - "name": "Potion of Hill Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-invisibility", - "fields": { - "name": "Potion of Invisibility", - "desc": "This potion's container looks empty but feels as though it holds liquid. When you drink it, you become invisible for 1 hour. Anything you wear or carry is invisible with you. The effect ends early if you attack or cast a spell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-mind-reading", - "fields": { - "name": "Potion of Mind Reading", - "desc": "When you drink this potion, you gain the effect of the _detect thoughts_ spell (save DC 13). The potion's dense, purple liquid has an ovoid cloud of pink floating in it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-poison", - "fields": { - "name": "Potion of Poison", - "desc": "This concoction looks, smells, and tastes like a _potion of healing_ or other beneficial potion. However, it is actually poison masked by illusion magic. An _identify_ spell reveals its true nature.\n\nIf you drink it, you take 3d6 poison damage, and you must succeed on a DC 13 Constitution saving throw or be poisoned. At the start of each of your turns while you are poisoned in this way, you take 3d6 poison damage. At the end of each of your turns, you can repeat the saving throw. On a successful save, the poison damage you take on your subsequent turns decreases by 1d6. The poison ends when the damage decreases to 0.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-resistance", - "fields": { - "name": "Potion of Resistance", - "desc": "When you drink this potion, you gain resistance to one type of damage for 1 hour. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-speed", - "fields": { - "name": "Potion of Speed", - "desc": "When you drink this potion, you gain the effect of the _haste_ spell for 1 minute (no concentration required). The potion's yellow fluid is streaked with black and swirls on its own.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-stone-giant-strength", - "fields": { - "name": "Potion of Stone Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-storm-giant-strength", - "fields": { - "name": "Potion of Storm Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-superior-healing", - "fields": { - "name": "Potion of Superior Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-supreme-healing", - "fields": { - "name": "Potion of Supreme Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-water-breathing", - "fields": { - "name": "Potion of Water Breathing", - "desc": "You can breathe underwater for 1 hour after drinking this potion. Its cloudy green fluid smells of the sea and has a jellyfish-like bubble floating in it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potters-tools", - "fields": { - "name": "Potter's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pouch", - "fields": { - "name": "Pouch", - "desc": "A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch (described earlier in this section).\r\nCapacity: 1/5 cubic foot/6 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_platinum-piece", - "fields": { - "name": "Platinum Piece", - "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_purple-worm-poison", - "fields": { - "name": "Purple worm poison", - "desc": "This poison must be harvested from a dead or incapacitated purple worm. A creature subjected to this poison must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2000.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_quarterstaff-1", - "fields": { - "name": "Quarterstaff (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_quarterstaff-2", - "fields": { - "name": "Quarterstaff (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_quarterstaff-3", - "fields": { - "name": "Quarterstaff (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_quarterstaff", - "fields": { - "name": "Quarterstaff", - "desc": "A quarterstaff.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_quiver", - "fields": { - "name": "Quiver", - "desc": "A quiver can hold up to 20 arrows.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_ram-portable", - "fields": { - "name": "Ram, Portable", - "desc": "You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.", - "document": "srd", - "size": "tiny", - "weight": "35.000", - "armor_class": 0, - "hit_points": 0, - "cost": "4.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_rapier", - "fields": { - "name": "Rapier", - "desc": "A rapier.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_rapier-1", - "fields": { - "name": "Rapier (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rapier-2", - "fields": { - "name": "Rapier (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rapier-3", - "fields": { - "name": "Rapier (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rations-1-day", - "fields": { - "name": "Rations (1 day)", - "desc": "Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_reliquary", - "fields": { - "name": "Reliquary", - "desc": "Can be used as a holy symbol.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_restorative-ointment", - "fields": { - "name": "Restorative Ointment", - "desc": "This glass jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture that smells faintly of aloe. The jar and its contents weigh 1/2 pound.\r\n\r\nAs an action, one dose of the ointment can be swallowed or applied to the skin. The creature that receives it regains 2d8 + 2 hit points, ceases to be poisoned, and is cured of any disease.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-mail", - "fields": { - "name": "Ring mail", - "desc": "This armor is leather armor with heavy rings sewn into it. The rings help reinforce the armor against blows from swords and axes. Ring mail is inferior to chain mail, and it's usually worn only by those who can't afford better armor.", - "document": "srd", - "size": "tiny", - "weight": "40.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-animal-influence", - "fields": { - "name": "Ring of Animal Influence", - "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 of its charges to cast one of the following spells:\n\n* _Animal friendship_ (save DC 13)\n* _Fear_ (save DC 13), targeting only beasts that have an Intelligence of 3 or lower\n* _Speak with animals_", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-djinni-summoning", - "fields": { - "name": "Ring of Djinni Summoning", - "desc": "While wearing this ring, you can speak its command word as an action to summon a particular djinni from the Elemental Plane of Air. The djinni appears in an unoccupied space you choose within 120 feet of you. It remains as long as you concentrate (as if concentrating on a spell), to a maximum of 1 hour, or until it drops to 0 hit points. It then returns to its home plane.\n\nWhile summoned, the djinni is friendly to you and your companions. It obeys any commands you give it, no matter what language you use. If you fail to command it, the djinni defends itself against attackers but takes no other actions.\n\nAfter the djinni departs, it can't be summoned again for 24 hours, and the ring becomes nonmagical if the djinni dies.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-elemental-command", - "fields": { - "name": "Ring of Elemental Command", - "desc": "This ring is linked to one of the four Elemental Planes. The GM chooses or randomly determines the linked plane.\n\nWhile wearing this ring, you have advantage on attack rolls against elementals from the linked plane, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\n\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\n\n**_Ring of Air Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an air elemental. In addition, when you fall, you descend 60 feet per round and take no damage from falling. You can also speak and understand Auran.\n\nIf you help slay an air elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to lightning damage.\n* You have a flying speed equal to your walking speed and can hover.\n* You can cast the following spells from the ring, expending the necessary number of charges: _chain lightning_ (3 charges), _gust of wind_ (2 charges), or _wind wall_ (1 charge).\n\n**_Ring of Earth Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an earth elemental. In addition, you can move in difficult terrain that is composed of rubble, rocks, or dirt as if it were normal terrain. You can also speak and understand Terran.\n\nIf you help slay an earth elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to acid damage.\n* You can move through solid earth or rock as if those areas were difficult terrain. If you end your turn there, you are shunted out to the nearest unoccupied space you last occupied.\n* You can cast the following spells from the ring, expending the necessary number of charges: _stone shape_ (2 charges), _stoneskin_ (3 charges), or _wall of stone_ (3 charges).\n\n**_Ring of Fire Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a fire elemental. In addition, you have resistance to fire damage. You can also speak and understand Ignan.\n\nIf you help slay a fire elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You are immune to fire damage.\n* You can cast the following spells from the ring, expending the necessary number of charges: _burning hands_ (1 charge), _fireball_ (2 charges), and _wall of fire_ (3 charges).\n\n**_Ring of Water Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a water elemental. In addition, you can stand on and walk across liquid surfaces as if they were solid ground. You can also speak and understand Aquan.\n\nIf you help slay a water elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You can breathe underwater and have a swimming speed equal to your walking speed.\n* You can cast the following spells from the ring, expending the necessary number of charges: _create or destroy water_ (1 charge), _control water_ (3 charges), _ice storm_ (2 charges), or _wall of ice_ (3 charges).", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-evasion", - "fields": { - "name": "Ring of Evasion", - "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. When you fail a Dexterity saving throw while wearing it, you can use your reaction to expend 1 of its charges to succeed on that saving throw instead.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-feather-falling", - "fields": { - "name": "Ring of Feather Falling", - "desc": "When you fall while wearing this ring, you descend 60 feet per round and take no damage from falling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-free-action", - "fields": { - "name": "Ring of Free Action", - "desc": "While you wear this ring, difficult terrain doesn't cost you extra movement. In addition, magic can neither reduce your speed nor cause you to be paralyzed or restrained.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-invisibility", - "fields": { - "name": "Ring of Invisibility", - "desc": "While wearing this ring, you can turn invisible as an action. Anything you are wearing or carrying is invisible with you. You remain invisible until the ring is removed, until you attack or cast a spell, or until you use a bonus action to become visible again.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-jumping", - "fields": { - "name": "Ring of Jumping", - "desc": "While wearing this ring, you can cast the _jump_ spell from it as a bonus action at will, but can target only yourself when you do so.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-mind-shielding", - "fields": { - "name": "Ring of Mind Shielding", - "desc": "While wearing this ring, you are immune to magic that allows other creatures to read your thoughts, determine whether you are lying, know your alignment, or know your creature type. Creatures can telepathically communicate with you only if you allow it.\n\nYou can use an action to cause the ring to become invisible until you use another action to make it visible, until you remove the ring, or until you die.\n\nIf you die while wearing the ring, your soul enters it, unless it already houses a soul. You can remain in the ring or depart for the afterlife. As long as your soul is in the ring, you can telepathically communicate with any creature wearing it. A wearer can't prevent this telepathic communication.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-protection", - "fields": { - "name": "Ring of Protection", - "desc": "You gain a +1 bonus to AC and saving throws while wearing this ring.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-regeneration", - "fields": { - "name": "Ring of Regeneration", - "desc": "While wearing this ring, you regain 1d6 hit points every 10 minutes, provided that you have at least 1 hit point. If you lose a body part, the ring causes the missing part to regrow and return to full functionality after 1d6 + 1 days if you have at least 1 hit point the whole time.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-resistance", - "fields": { - "name": "Ring of Resistance", - "desc": "You have resistance to one damage type while wearing this ring. The gem in the ring indicates the type, which the GM chooses or determines randomly.\n\n| d10 | Damage Type | Gem |\n|-----|-------------|------------|\n| 1 | Acid | Pearl |\n| 2 | Cold | Tourmaline |\n| 3 | Fire | Garnet |\n| 4 | Force | Sapphire |\n| 5 | Lightning | Citrine |\n| 6 | Necrotic | Jet |\n| 7 | Poison | Amethyst |\n| 8 | Psychic | Jade |\n| 9 | Radiant | Topaz |\n| 10 | Thunder | Spinel |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-shooting-stars", - "fields": { - "name": "Ring of Shooting Stars", - "desc": "While wearing this ring in dim light or darkness, you can cast _dancing lights_ and _light_ from the ring at will. Casting either spell from the ring requires an action.\n\nThe ring has 6 charges for the following other properties. The ring regains 1d6 expended charges daily at dawn.\n\n**_Faerie Fire_**. You can expend 1 charge as an action to cast _faerie fire_ from the ring.\n\n**_Ball Lightning_**. You can expend 2 charges as an action to create one to four 3-foot-diameter spheres of lightning. The more spheres you create, the less powerful each sphere is individually.\n\nEach sphere appears in an unoccupied space you can see within 120 feet of you. The spheres last as long as you concentrate (as if concentrating on a spell), up to 1 minute. Each sphere sheds dim light in a 30-foot radius.\n\nAs a bonus action, you can move each sphere up to 30 feet, but no farther than 120 feet away from you. When a creature other than you comes within 5 feet of a sphere, the sphere discharges lightning at that creature and disappears. That creature must make a DC 15 Dexterity saving throw. On a failed save, the creature takes lightning damage based on the number of spheres you created.\n\n| Spheres | Lightning Damage |\n|---------|------------------|\n| 4 | 2d4 |\n| 3 | 2d6 |\n| 2 | 5d4 |\n| 1 | 4d12 |\n\n**_Shooting Stars_**. You can expend 1 to 3 charges as an action. For every charge you expend, you launch a glowing mote of light from the ring at a point you can see within 60 feet of you. Each creature within a 15-foot cube originating from that point is showered in sparks and must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-spell-storing", - "fields": { - "name": "Ring of Spell Storing", - "desc": "This ring stores spells cast into it, holding them until the attuned wearer uses them. The ring can store up to 5 levels worth of spells at a time. When found, it contains 1d6 - 1 levels of stored spells chosen by the GM.\n\nAny creature can cast a spell of 1st through 5th level into the ring by touching the ring as the spell is cast. The spell has no effect, other than to be stored in the ring. If the ring can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\n\nWhile wearing this ring, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the ring is no longer stored in it, freeing up space.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-spell-turning", - "fields": { - "name": "Ring of Spell Turning", - "desc": "While wearing this ring, you have advantage on saving throws against any spell that targets only you (not in an area of effect). In addition, if you roll a 20 for the save and the spell is 7th level or lower, the spell has no effect on you and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-swimming", - "fields": { - "name": "Ring of Swimming", - "desc": "You have a swimming speed of 40 feet while wearing this ring.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-telekinesis", - "fields": { - "name": "Ring of Telekinesis", - "desc": "While wearing this ring, you can cast the _telekinesis_ spell at will, but you can target only objects that aren't being worn or carried.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-the-ram", - "fields": { - "name": "Ring of the Ram", - "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a spectral ram's head and makes its attack roll with a +7 bonus. On a hit, for each charge you spend, the target takes 2d10 force damage and is pushed 5 feet away from you.\n\nAlternatively, you can expend 1 to 3 of the ring's charges as an action to try to break an object you can see within 60 feet of you that isn't being worn or carried. The ring makes a Strength check with a +5 bonus for each charge you spend.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-three-wishes", - "fields": { - "name": "Ring of Three Wishes", - "desc": "While wearing this ring, you can use an action to expend 1 of its 3 charges to cast the _wish_ spell from it. The ring becomes nonmagical when you use the last charge.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-warmth", - "fields": { - "name": "Ring of Warmth", - "desc": "While wearing this ring, you have resistance to cold damage. In addition, you and everything you wear and carry are unharmed by temperatures as low as -50 degrees Fahrenheit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-water-walking", - "fields": { - "name": "Ring of Water Walking", - "desc": "While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-x-ray-vision", - "fields": { - "name": "Ring of X-ray Vision", - "desc": "While wearing this ring, you can use an action to speak its command word. When you do so, you can see into and through solid matter for 1 minute. This vision has a radius of 30 feet. To you, solid objects within that radius appear transparent and don't prevent light from passing through them. The vision can penetrate 1 foot of stone, 1 inch of common metal, or up to 3 feet of wood or dirt. Thicker substances block the vision, as does a thin sheet of lead.\n\nWhenever you use the ring again before taking a long rest, you must succeed on a DC 15 Constitution saving throw or gain one level of exhaustion.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_robe-of-eyes", - "fields": { - "name": "Robe of Eyes", - "desc": "This robe is adorned with eyelike patterns. While you wear the robe, you gain the following benefits:\r\n\r\n* The robe lets you see in all directions, and you have advantage on Wisdom (Perception) checks that rely on sight.\r\n* You have darkvision out to a range of 120 feet.\r\n* You can see invisible creatures and objects, as well as see into the Ethereal Plane, out to a range of 120 feet.\r\n\r\nThe eyes on the robe can't be closed or averted. Although you can close or avert your own eyes, you are never considered to be doing so while wearing this robe.\r\n\r\nA _light_ spell cast on the robe or a _daylight_ spell cast within 5 feet of the robe causes you to be blinded for 1 minute. At the end of each of your turns, you can make a Constitution saving throw (DC 11 for _light_ or DC 15 for _daylight_), ending the blindness on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_robe-of-scintillating-colors", - "fields": { - "name": "Robe of Scintillating Colors", - "desc": "This robe has 3 charges, and it regains 1d3 expended charges daily at dawn. While you wear it, you can use an action and expend 1 charge to cause the garment to display a shifting pattern of dazzling hues until the end of your next turn. During this time, the robe sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Creatures that can see you have disadvantage on attack rolls against you. In addition, any creature in the bright light that can see you when the robe's power is activated must succeed on a DC 15 Wisdom saving throw or become stunned until the effect ends.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_robe-of-stars", - "fields": { - "name": "Robe of Stars", - "desc": "This black or dark blue robe is embroidered with small white or silver stars. You gain a +1 bonus to saving throws while you wear it.\r\n\r\nSix stars, located on the robe's upper front portion, are particularly large. While wearing this robe, you can use an action to pull off one of the stars and use it to cast _magic missile_ as a 5th-level spell. Daily at dusk, 1d6 removed stars reappear on the robe.\r\n\r\nWhile you wear the robe, you can use an action to enter the Astral Plane along with everything you are wearing and carrying. You remain there until you use an action to return to the plane you were on. You reappear in the last space you occupied, or if that space is occupied, the nearest unoccupied space.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_robe-of-the-archmagi", - "fields": { - "name": "Robe of the Archmagi", - "desc": "This elegant garment is made from exquisite cloth of white, gray, or black and adorned with silvery runes. The robe's color corresponds to the alignment for which the item was created. A white robe was made for good, gray for neutral, and black for evil. You can't attune to a _robe of the archmagi_ that doesn't correspond to your alignment.\r\n\r\nYou gain these benefits while wearing the robe:\r\n\r\n* If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* Your spell save DC and spell attack bonus each increase by 2.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_robe-of-useful-items", - "fields": { - "name": "Robe of Useful Items", - "desc": "This robe has cloth patches of various shapes and colors covering it. While wearing the robe, you can use an action to detach one of the patches, causing it to become the object or creature it represents. Once the last patch is removed, the robe becomes an ordinary garment.\r\n\r\nThe robe has two of each of the following patches:\r\n\r\n* Dagger\r\n* Bullseye lantern (filled and lit)\r\n* Steel mirror\r\n* 10-foot pole\r\n* Hempen rope (50 feet, coiled)\r\n* Sack\r\n\r\nIn addition, the robe has 4d4 other patches. The GM chooses the patches or determines them randomly.\r\n\r\n| d100 | Patch |\r\n|--------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-08 | Bag of 100 gp |\r\n| 09-15 | Silver coffer (1 foot long, 6 inches wide and deep) worth 500 gp |\r\n| 16-22 | Iron door (up to 10 feet wide and 10 feet high, barred on one side of your choice), which you can place in an opening you can reach; it conforms to fit the opening, attaching and hinging itself |\r\n| 23-30 | 10 gems worth 100 gp each |\r\n| 31-44 | Wooden ladder (24 feet long) |\r\n| 45-51 | A riding horse with saddle bags |\r\n| 52-59 | Pit (a cube 10 feet on a side), which you can place on the ground within 10 feet of you |\r\n| 60-68 | 4 potions of healing |\r\n| 69-75 | Rowboat (12 feet long) |\r\n| 76-83 | Spell scroll containing one spell of 1st to 3rd level |\r\n| 84-90 | 2 mastiffs |\r\n| 91-96 | Window (2 feet by 4 feet, up to 2 feet deep), which you can place on a vertical surface you can reach |\r\n| 97-100 | Portable ram |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_robes", - "fields": { - "name": "Robes", - "desc": "Robes, for wearing.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_rod", - "fields": { - "name": "Rod", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_rod-of-absorption", - "fields": { - "name": "Rod of Absorption", - "desc": "While holding this rod, you can use your reaction to absorb a spell that is targeting only you and not with an area of effect. The absorbed spell's effect is canceled, and the spell's energy-not the spell itself-is stored in the rod. The energy has the same level as the spell when it was cast. The rod can absorb and store up to 50 levels of energy over the course of its existence. Once the rod absorbs 50 levels of energy, it can't absorb more. If you are targeted by a spell that the rod can't store, the rod has no effect on that spell.\n\nWhen you become attuned to the rod, you know how many levels of energy the rod has absorbed over the course of its existence, and how many levels of spell energy it currently has stored.\n\nIf you are a spellcaster holding the rod, you can convert energy stored in it into spell slots to cast spells you have prepared or know. You can create spell slots only of a level equal to or lower than your own spell slots, up to a maximum of 5th level. You use the stored levels in place of your slots, but otherwise cast the spell as normal. For example, you can use 3 levels stored in the rod as a 3rd-level spell slot.\n\nA newly found rod has 1d10 levels of spell energy stored in it already. A rod that can no longer absorb spell energy and has no energy remaining becomes nonmagical.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rod-of-alertness", - "fields": { - "name": "Rod of Alertness", - "desc": "This rod has a flanged head and the following properties.\n\n**_Alertness_**. While holding the rod, you have advantage on Wisdom (Perception) checks and on rolls for initiative.\n\n**_Spells_**. While holding the rod, you can use an action to cast one of the following spells from it: _detect evil and good_, _detect magic_, _detect poison and disease_, or _see invisibility._\n\n**_Protective Aura_**. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's head sheds bright light in a 60-foot radius and dim light for an additional 60 feet. While in that bright light, you and any creature that is friendly to you gain a +1 bonus to AC and saving throws and can sense the location of any invisible hostile creature that is also in the bright light.\n\nThe rod's head stops glowing and the effect ends after 10 minutes, or when a creature uses an action to pull the rod from the ground. This property can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rod-of-lordly-might", - "fields": { - "name": "Rod of Lordly Might", - "desc": "This rod has a flanged head, and it functions as a magic mace that grants a +3 bonus to attack and damage rolls made with it. The rod has properties associated with six different buttons that are set in a row along the haft. It has three other properties as well, detailed below.\n\n**_Six Buttons_**. You can press one of the rod's six buttons as a bonus action. A button's effect lasts until you push a different button or until you push the same button again, which causes the rod to revert to its normal form.\n\nIf you press **button 1**, the rod becomes a _flame tongue_, as a fiery blade sprouts from the end opposite the rod's flanged head.\n\nIf you press **button 2**, the rod's flanged head folds down and two crescent-shaped blades spring out, transforming the rod into a magic battleaxe that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 3**, the rod's flanged head folds down, a spear point springs from the rod's tip, and the rod's handle lengthens into a 6-foot haft, transforming the rod into a magic spear that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 4**, the rod transforms into a climbing pole up to 50 feet long, as you specify. In surfaces as hard as granite, a spike at the bottom and three hooks at the top anchor the pole. Horizontal bars 3 inches long fold out from the sides, 1 foot apart, forming a ladder. The pole can bear up to 4,000 pounds. More weight or lack of solid anchoring causes the rod to revert to its normal form.\n\nIf you press **button 5**, the rod transforms into a handheld battering ram and grants its user a +10 bonus to Strength checks made to break through doors, barricades, and other barriers.\n\nIf you press **button 6**, the rod assumes or remains in its normal form and indicates magnetic north. (Nothing happens if this function of the rod is used in a location that has no magnetic north.) The rod also gives you knowledge of your approximate depth beneath the ground or your height above it.\n\n**_Drain Life_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target takes an extra 4d6 necrotic damage, and you regain a number of hit points equal to half that necrotic damage. This property can't be used again until the next dawn.\n\n**_Paralyze_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Strength saving throw. On a failure, the target is paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. This property can't be used again until the next dawn.\n\n**_Terrify_**. While holding the rod, you can use an action to force each creature you can see within 30 feet of you to make a DC 17 Wisdom saving throw. On a failure, a target is frightened of you for 1 minute. A frightened target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This property can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rod-of-rulership", - "fields": { - "name": "Rod of Rulership", - "desc": "You can use an action to present the rod and command obedience from each creature of your choice that you can see within 120 feet of you. Each target must succeed on a DC 15 Wisdom saving throw or be charmed by you for 8 hours. While charmed in this way, the creature regards you as its trusted leader. If harmed by you or your companions, or commanded to do something contrary to its nature, a target ceases to be charmed in this way. The rod can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rod-of-security", - "fields": { - "name": "Rod of Security", - "desc": "While holding this rod, you can use an action to activate it. The rod then instantly transports you and up to 199 other willing creatures you can see to a paradise that exists in an extraplanar space. You choose the form that the paradise takes. It could be a tranquil garden, lovely glade, cheery tavern, immense palace, tropical island, fantastic carnival, or whatever else you can imagine. Regardless of its nature, the paradise contains enough water and food to sustain its visitors. Everything else that can be interacted with inside the extraplanar space can exist only there. For example, a flower picked from a garden in the paradise disappears if it is taken outside the extraplanar space.\n\nFor each hour spent in the paradise, a visitor regains hit points as if it had spent 1 Hit Die. Also, creatures don't age while in the paradise, although time passes normally. Visitors can remain in the paradise for up to 200 days divided by the number of creatures present (round down).\n\nWhen the time runs out or you use an action to end it, all visitors reappear in the location they occupied when you activated the rod, or an unoccupied space nearest that location. The rod can't be used again until ten days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rope-hempen-50-feet", - "fields": { - "name": "Rope, hempen (50 feet)", - "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 2, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_rope-of-climbing", - "fields": { - "name": "Rope of Climbing", - "desc": "This 60-foot length of silk rope weighs 3 pounds and can hold up to 3,000 pounds. If you hold one end of the rope and use an action to speak the command word, the rope animates. As a bonus action, you can command the other end to move toward a destination you choose. That end moves 10 feet on your turn when you first command it and 10 feet on each of your turns until reaching its destination, up to its maximum length away, or until you tell it to stop. You can also tell the rope to fasten itself securely to an object or to unfasten itself, to knot or unknot itself, or to coil itself for carrying.\r\n\r\nIf you tell the rope to knot, large knots appear at 1* foot intervals along the rope. While knotted, the rope shortens to a 50-foot length and grants advantage on checks made to climb it.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rope-of-entanglement", - "fields": { - "name": "Rope of Entanglement", - "desc": "This rope is 30 feet long and weighs 3 pounds. If you hold one end of the rope and use an action to speak its command word, the other end darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 15 Dexterity saving throw or become restrained.\r\n\r\nYou can release the creature by using a bonus action to speak a second command word. A target restrained by the rope can use an action to make a DC 15 Strength or Dexterity check (target's choice). On a success, the creature is no longer restrained by the rope.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rope-silk-50-feet", - "fields": { - "name": "Rope, silk (50 feet)", - "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_rowboat", - "fields": { - "name": "Rowboat", - "desc": "Waterborne vehicle. Speed 1.5mph", - "document": "srd", - "size": "large", - "weight": "100.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sack", - "fields": { - "name": "Sack", - "desc": "A sack. Capacity: 1 cubic foot/30 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sailing-ship", - "fields": { - "name": "Sailing Ship", - "desc": "Waterborne vehicle. Speed 2mph", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_scale-mail", - "fields": { - "name": "Scale mail", - "desc": "This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.", - "document": "srd", - "size": "tiny", - "weight": "45.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_scale-merchants", - "fields": { - "name": "Scale, Merchant's", - "desc": "A scale includes a small balance, pans, and a suitable assortment of weights up to 2 pounds. With it, you can measure the exact weight of small objects, such as raw precious metals or trade goods, to help determine their worth.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_scarab-of-protection", - "fields": { - "name": "Scarab of Protection", - "desc": "If you hold this beetle-shaped medallion in your hand for 1 round, an inscription appears on its surface revealing its magical nature. It provides two benefits while it is on your person:\r\n\r\n* You have advantage on saving throws against spells.\r\n* The scarab has 12 charges. If you fail a saving throw against a necromancy spell or a harmful effect originating from an undead creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into powder and is destroyed when its last charge is expended.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_scimitar", - "fields": { - "name": "Scimitar", - "desc": "A scimitar.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_scimitar-1", - "fields": { - "name": "Scimitar (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_scimitar-2", - "fields": { - "name": "Scimitar (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_scimitar-3", - "fields": { - "name": "Scimitar (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_scimitar-of-speed", - "fields": { - "name": "Scimitar of Speed", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. In addition, you can make one attack with it as a bonus action on each of your turns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sealing-wax", - "fields": { - "name": "Sealing wax", - "desc": "For sealing written letters.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_serpent-venom", - "fields": { - "name": "Serpent venom", - "desc": "This poison must be harvested from a dead or incapacitated giant poisonous snake. A creature subjected to this poison must succeed on a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_shawm", - "fields": { - "name": "Shawm", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sheep", - "fields": { - "name": "Sheep", - "desc": "One sheep.", - "document": "srd", - "size": "medium", - "weight": "75.000", - "armor_class": 10, - "hit_points": 4, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_shield", - "fields": { - "name": "Shield", - "desc": "A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_shield-of-missile-attraction", - "fields": { - "name": "Shield of Missile Attraction", - "desc": "While holding this shield, you have resistance to damage from ranged weapon attacks.\n\n**_Curse_**. This shield is cursed. Attuning to it curses you until you are targeted by the _remove curse_ spell or similar magic. Removing the shield fails to end the curse on you. Whenever a ranged weapon attack is made against a target within 10 feet of you, the curse causes you to become the target instead.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortbow", - "fields": { - "name": "Shortbow", - "desc": "A shortbow", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortbow-1", - "fields": { - "name": "Shortbow (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortbow-2", - "fields": { - "name": "Shortbow (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortbow-3", - "fields": { - "name": "Shortbow (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortsword", - "fields": { - "name": "Shortsword", - "desc": "A short sword.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortsword-1", - "fields": { - "name": "Shortsword (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortsword-2", - "fields": { - "name": "Shortsword (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortsword-3", - "fields": { - "name": "Shortsword (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shovel", - "fields": { - "name": "Shovel", - "desc": "A shovel.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sickle", - "fields": { - "name": "Sickle", - "desc": "A sickle.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sickle-1", - "fields": { - "name": "Sickle (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_sickle-2", - "fields": { - "name": "Sickle (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_sickle-3", - "fields": { - "name": "Sickle (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_signal-whistle", - "fields": { - "name": "Signal whistle", - "desc": "For signalling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_signet-ring", - "fields": { - "name": "Signet Ring", - "desc": "A ring with a signet on it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sled", - "fields": { - "name": "Sled", - "desc": "Drawn vehicle", - "document": "srd", - "size": "large", - "weight": "300.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sling", - "fields": { - "name": "Sling", - "desc": "A sling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sling-1", - "fields": { - "name": "Sling (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_sling-2", - "fields": { - "name": "Sling (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_sling-3", - "fields": { - "name": "Sling (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_sling-bullets", - "fields": { - "name": "Sling bullets", - "desc": "Technically their cost is 20 for 4cp.", - "document": "srd", - "size": "tiny", - "weight": "0.075", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_slippers-of-spider-climbing", - "fields": { - "name": "Slippers of Spider Climbing", - "desc": "While you wear these light shoes, you can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free. You have a climbing speed equal to your walking speed. However, the slippers don't allow you to move this way on a slippery surface, such as one covered by ice or oil.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_smiths-tools", - "fields": { - "name": "Smith's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_soap", - "fields": { - "name": "Soap", - "desc": "For cleaning.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sovereign-glue", - "fields": { - "name": "Sovereign Glue", - "desc": "This viscous, milky-white substance can form a permanent adhesive bond between any two objects. It must be stored in a jar or flask that has been coated inside with _oil of slipperiness._ When found, a container contains 1d6 + 1 ounces.\r\n\r\nOne ounce of the glue can cover a 1-foot square surface. The glue takes 1 minute to set. Once it has done so, the bond it creates can be broken only by the application of _universal solvent_ or _oil of etherealness_, or with a _wish_ spell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_silver-piece", - "fields": { - "name": "Silver Piece", - "desc": "One gold piece is worth ten silver pieces, the most prevalent coin among commoners. A silver piece buys a laborer's work for half a day, a flask of lamp oil, or a night's rest in a poor inn.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_spear", - "fields": { - "name": "Spear", - "desc": "A spear.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_spear-1", - "fields": { - "name": "Spear (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spear-2", - "fields": { - "name": "Spear (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spear-3", - "fields": { - "name": "Spear (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-1st-level", - "fields": { - "name": "Spell Scroll (1st Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-2nd-level", - "fields": { - "name": "Spell Scroll (2nd Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-3rd-level", - "fields": { - "name": "Spell Scroll (3rd Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-4th-level", - "fields": { - "name": "Spell Scroll (4th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-5th-level", - "fields": { - "name": "Spell Scroll (5th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-6th-level", - "fields": { - "name": "Spell Scroll (6th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-7th-level", - "fields": { - "name": "Spell Scroll (7th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-8th-level", - "fields": { - "name": "Spell Scroll (8th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-9th-level", - "fields": { - "name": "Spell Scroll (9th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-cantrip", - "fields": { - "name": "Spell Scroll (Cantrip)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spellbook", - "fields": { - "name": "Spellbook", - "desc": "Essential for wizards, a spellbook is a leather-­‐‑bound tome with 100 blank vellum pages suitable for recording spells.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_spellguard-shield", - "fields": { - "name": "Spellguard Shield", - "desc": "While holding this shield, you have advantage on saving throws against spells and other magical effects, and spell attacks have disadvantage against you.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_sphere-of-annihilation", - "fields": { - "name": "Sphere of Annihilation", - "desc": "This 2-foot-diameter black sphere is a hole in the multiverse, hovering in space and stabilized by a magical field surrounding it.\r\n\r\nThe sphere obliterates all matter it passes through and all matter that passes through it. Artifacts are the exception. Unless an artifact is susceptible to damage from a _sphere of annihilation_, it passes through the sphere unscathed. Anything else that touches the sphere but isn't wholly engulfed and obliterated by it takes 4d10 force damage.\r\n\r\nThe sphere is stationary until someone controls it. If you are within 60 feet of an uncontrolled sphere, you can use an action to make a DC 25 Intelligence (Arcana) check. On a success, the sphere levitates in one direction of your choice, up to a number of feet equal to 5 × your Intelligence modifier (minimum 5 feet). On a failure, the sphere moves 10 feet toward you. A creature whose space the sphere enters must succeed on a DC 13 Dexterity saving throw or be touched by it, taking 4d10 force damage.\r\n\r\nIf you attempt to control a sphere that is under another creature's control, you make an Intelligence (Arcana) check contested by the other creature's Intelligence (Arcana) check. The winner of the contest gains control of the sphere and can levitate it as normal.\r\n\r\nIf the sphere comes into contact with a planar portal, such as that created by the _gate_ spell, or an extradimensional space, such as that within a _portable hole_, the GM determines randomly what happens, using the following table.\r\n\r\n| d100 | Result |\r\n|--------|------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-50 | The sphere is destroyed. |\r\n| 51-85 | The sphere moves through the portal or into the extradimensional space. |\r\n| 86-00 | A spatial rift sends each creature and object within 180 feet of the sphere, including the sphere, to a random plane of existence. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spike-iron", - "fields": { - "name": "Spike, iron", - "desc": "An iron spike.", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_splint-armor", - "fields": { - "name": "Splint Armor", - "desc": "This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.", - "document": "srd", - "size": "tiny", - "weight": "60.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sprig-of-mistletoe", - "fields": { - "name": "Sprig of mistletoe", - "desc": "A sprig of mistletoe that can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_spyglass", - "fields": { - "name": "Spyglass", - "desc": "Objects viewed through a spyglass are magnified to twice their size.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1000.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff", - "fields": { - "name": "Staff", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-charming", - "fields": { - "name": "Staff of Charming", - "desc": "While holding this staff, you can use an action to expend 1 of its 10 charges to cast _charm person_, _command_, _or comprehend languages_ from it using your spell save DC. The staff can also be used as a magic quarterstaff.\n\nIf you are holding the staff and fail a saving throw against an enchantment spell that targets only you, you can turn your failed save into a successful one. You can't use this property of the staff again until the next dawn. If you succeed on a save against an enchantment spell that targets only you, with or without the staff's intervention, you can use your reaction to expend 1 charge from the staff and turn the spell back on its caster as if you had cast the spell.\n\nThe staff regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-fire", - "fields": { - "name": "Staff of Fire", - "desc": "You have resistance to fire damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _burning hands_ (1 charge), _fireball_ (3 charges), or _wall of fire_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff blackens, crumbles into cinders, and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-frost", - "fields": { - "name": "Staff of Frost", - "desc": "You have resistance to cold damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _cone of cold_ (5 charges), _fog cloud_ (1 charge), _ice storm_ (4 charges), or _wall of ice_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff turns to water and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-healing", - "fields": { - "name": "Staff of Healing", - "desc": "This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability modifier: _cure wounds_ (1 charge per spell level, up to 4th), _lesser restoration_ (2 charges), or _mass cure wounds_ (5 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-power", - "fields": { - "name": "Staff of Power", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to Armor Class, saving throws, and spell attack rolls.\n\nThe staff has 20 charges for the following properties. The staff regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses all other properties. On a 20, the staff regains 1d8 + 2 charges.\n\n**_Power Strike_**. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d6 force damage to the target.\n\n**_Spells_**. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spell attack bonus: _cone of cold_ (5 charges), _fireball_ (5th-level version, 5 charges), _globe of invulnerability_ (6 charges), _hold monster_ (5 charges), _levitate_ (2 charges), _lightning bolt_ (5th-level version, 5 charges), _magic missile_ (1 charge), _ray of enfeeblement_ (1 charge), or _wall of force_ (5 charges).\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-striking", - "fields": { - "name": "Staff of Striking", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +3 bonus to attack and damage rolls made with it.\n\nThe staff has 10 charges. When you hit with a melee attack using it, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 force damage. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-swarming-insects", - "fields": { - "name": "Staff of Swarming Insects", - "desc": "This staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of insects consumes and destroys the staff, then disperses.\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC: _giant insect_ (4 charges) or _insect plague_ (5 charges).\n\n**_Insect Cloud_**. While holding the staff, you can use an action and expend 1 charge to cause a swarm of harmless flying insects to spread out in a 30-foot radius from you. The insects remain for 10 minutes, making the area heavily obscured for creatures other than you. The swarm moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the swarm and ends the effect.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-the-magi", - "fields": { - "name": "Staff of the Magi", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls.\n\nThe staff has 50 charges for the following properties. It regains 4d6 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 20, the staff regains 1d12 + 1 charges.\n\n**_Spell Absorption_**. While holding the staff, you have advantage on saving throws against spells. In addition, you can use your reaction when another creature casts a spell that targets only you. If you do, the staff absorbs the magic of the spell, canceling its effect and gaining a number of charges equal to the absorbed spell's level. However, if doing so brings the staff's total number of charges above 50, the staff explodes as if you activated its retributive strike (see below).\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: _conjure elemental_ (7 charges), _dispel magic_ (3 charges), _fireball_ (7th-level version, 7 charges), _flaming sphere_ (2 charges), _ice storm_ (4 charges), _invisibility_ (2 charges), _knock_ (2 charges), _lightning bolt_ (7th-level version, 7 charges), _passwall_ (5 charges), _plane shift_ (7 charges), _telekinesis_ (5 charges), _wall of fire_ (4 charges), or _web_ (2 charges).\n\nYou can also use an action to cast one of the following spells from the staff without using any charges: _arcane lock_, _detect magic_, _enlarge/reduce_, _light_, _mage hand_, or _protection from evil and good._\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-the-python", - "fields": { - "name": "Staff of the Python", - "desc": "You can use an action to speak this staff's command word and throw the staff on the ground within 10 feet of you. The staff becomes a giant constrictor snake under your control and acts on its own initiative count. By using a bonus action to speak the command word again, you return the staff to its normal form in a space formerly occupied by the snake.\n\nOn your turn, you can mentally command the snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snake takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location.\n\nIf the snake is reduced to 0 hit points, it dies and reverts to its staff form. The staff then shatters and is destroyed. If the snake reverts to staff form before losing all its hit points, it regains all of them.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-the-woodlands", - "fields": { - "name": "Staff of the Woodlands", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you have a +2 bonus to spell attack rolls.\n\nThe staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff.\n\n**_Spells_**. You can use an action to expend 1 or more of the staff's charges to cast one of the following spells from it, using your spell save DC: _animal friendship_ (1 charge), _awaken_ (5 charges), _barkskin_ (2 charges), _locate animals or plants_ (2 charges), _speak with animals_ (1 charge), _speak with plants_ (3 charges), or _wall of thorns_ (6 charges).\n\nYou can also use an action to cast the _pass without trace_ spell from the staff without using any charges. **_Tree Form_**. You can use an action to plant one end of the staff in fertile earth and expend 1 charge to transform the staff into a healthy tree. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\n\nThe tree appears ordinary but radiates a faint aura of transmutation magic if targeted by _detect magic_. While touching the tree and using another action to speak its command word, you return the staff to its normal form. Any creature in the tree falls when it reverts to a staff.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-thunder-and-lightning", - "fields": { - "name": "Staff of Thunder and Lightning", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. It also has the following additional properties. When one of these properties is used, it can't be used again until the next dawn.\n\n**_Lightning_**. When you hit with a melee attack using the staff, you can cause the target to take an extra 2d6 lightning damage.\n\n**_Thunder_**. When you hit with a melee attack using the staff, you can cause the staff to emit a crack of thunder, audible out to 300 feet. The target you hit must succeed on a DC 17 Constitution saving throw or become stunned until the end of your next turn.\n\n**_Lightning Strike_**. You can use an action to cause a bolt of lightning to leap from the staff's tip in a line that is 5 feet wide and 120 feet long. Each creature in that line must make a DC 17 Dexterity saving throw, taking 9d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**_Thunderclap_**. You can use an action to cause the staff to issue a deafening thunderclap, audible out to 600 feet. Each creature within 60 feet of you (not including you) must make a DC 17 Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 1 minute. On a successful save, a creature takes half damage and isn't deafened.\n\n**_Thunder and Lightning_**. You can use an action to use the Lightning Strike and Thunderclap properties at the same time. Doing so doesn't expend the daily use of those properties, only the use of this one.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-withering", - "fields": { - "name": "Staff of Withering", - "desc": "This staff has 3 charges and regains 1d3 expended charges daily at dawn.\n\nThe staff can be wielded as a magic quarterstaff. On a hit, it deals damage as a normal quarterstaff, and you can expend 1 charge to deal an extra 2d10 necrotic damage to the target. In addition, the target must succeed on a DC 15 Constitution saving throw or have disadvantage for 1 hour on any ability check or saving throw that uses Strength or Constitution.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_stone-of-controlling-earth-elementals", - "fields": { - "name": "Stone of Controlling Earth Elementals", - "desc": "If the stone is touching the ground, you can use an action to speak its command word and summon an earth elemental, as if you had cast the _conjure elemental_ spell. The stone can't be used this way again until the next dawn. The stone weighs 5 pounds.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_stone-of-good-luck-luckstone", - "fields": { - "name": "Stone of Good Luck (Luckstone)", - "desc": "While this polished agate is on your person, you gain a +1 bonus to ability checks and saving throws.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_studded-leather-armor", - "fields": { - "name": "Studded Leather Armor", - "desc": "Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.", - "document": "srd", - "size": "tiny", - "weight": "13.000", - "armor_class": 0, - "hit_points": 0, - "cost": "45.00", - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sun-blade", - "fields": { - "name": "Sun Blade", - "desc": "This item appears to be a longsword hilt. While grasping the hilt, you can use a bonus action to cause a blade of pure radiance to spring into existence, or make the blade disappear. While the blade exists, this magic longsword has the finesse property. If you are proficient with shortswords or longswords, you are proficient with the _sun blade_.\n\nYou gain a +2 bonus to attack and damage rolls made with this weapon, which deals radiant damage instead of slashing damage. When you hit an undead with it, that target takes an extra 1d8 radiant damage.\n\nThe sword's luminous blade emits bright light in a 15-foot radius and dim light for an additional 15 feet. The light is sunlight. While the blade persists, you can use an action to expand or reduce its radius of bright and dim light by 5 feet each, to a maximum of 30 feet each or a minimum of 10 feet each.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-life-stealing-greatsword", - "fields": { - "name": "Sword of Life Stealing (Greatsword)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-life-stealing-longsword", - "fields": { - "name": "Sword of Life Stealing (Longsword)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-life-stealing-rapier", - "fields": { - "name": "Sword of Life Stealing (Rapier)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-life-stealing-shortsword", - "fields": { - "name": "Sword of Life Stealing (Shortsword)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-sharpness-greatsword", - "fields": { - "name": "Sword of Sharpness (Greatsword)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-sharpness-longsword", - "fields": { - "name": "Sword of Sharpness (Longsword)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-sharpness-scimitar", - "fields": { - "name": "Sword of Sharpness (Scimitar)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-sharpness-shortsword", - "fields": { - "name": "Sword of Sharpness (Shortsword)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-wounding-greatsword", - "fields": { - "name": "Sword of Wounding (Greatsword)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-wounding-longsword", - "fields": { - "name": "Sword of Wounding (Longsword)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-wounding-rapier", - "fields": { - "name": "Sword of Wounding (Rapier)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-wounding-shortsword", - "fields": { - "name": "Sword of Wounding (Shortsword)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_talisman-of-pure-good", - "fields": { - "name": "Talisman of Pure Good", - "desc": "This talisman is a mighty symbol of goodness. A creature that is neither good nor evil in alignment takes 6d6 radiant damage upon touching the talisman. An evil creature takes 8d6 radiant damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are a good cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 7 charges. If you are wearing or holding it, you can use an action to expend 1 charge from it and choose one creature you can see on the ground within 120 feet of you. If the target is of evil alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman disperses into motes of golden light and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_talisman-of-the-sphere", - "fields": { - "name": "Talisman of the Sphere", - "desc": "When you make an Intelligence (Arcana) check to control a _sphere of annihilation_ while you are holding this talisman, you double your proficiency bonus on the check. In addition, when you start your turn with control over a _sphere of annihilation_, you can use an action to levitate it 10 feet plus a number of additional feet equal to 10 × your Intelligence modifier.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_talisman-of-ultimate-evil", - "fields": { - "name": "Talisman of Ultimate Evil", - "desc": "This item symbolizes unrepentant evil. A creature that is neither good nor evil in alignment takes 6d6 necrotic damage upon touching the talisman. A good creature takes 8d6 necrotic damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are an evil cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 6 charges. If you are wearing or holding it, you can use an action to expend 1 charge from the talisman and choose one creature you can see on the ground within 120 feet of you. If the target is of good alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman dissolves into foul-smelling slime and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_tent", - "fields": { - "name": "Tent", - "desc": "A simple and portable canvas shelter, a tent sleeps two.", - "document": "srd", - "size": "tiny", - "weight": "20.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_thieves-tools", - "fields": { - "name": "Thieves' tools", - "desc": "This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-­‐‑bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_tinderbox", - "fields": { - "name": "Tinderbox", - "desc": "This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch—or anything else with abundant, exposed fuel—takes an action. Lighting any other fire takes 1 minute.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_tinkers-tools", - "fields": { - "name": "Tinker's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_tome-of-clear-thought", - "fields": { - "name": "Tome of Clear Thought", - "desc": "This book contains memory and logic exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Intelligence score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_tome-of-leadership-and-influence", - "fields": { - "name": "Tome of Leadership and Influence", - "desc": "This book contains guidelines for influencing and charming others, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Charisma score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_tome-of-understanding", - "fields": { - "name": "Tome of Understanding", - "desc": "This book contains intuition and insight exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Wisdom score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_torch", - "fields": { - "name": "Torch", - "desc": "A torch burns for 1 hour, providing bright light in a 20-­‐‑foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_torpor", - "fields": { - "name": "Torpor", - "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 4d6 hours. The poisoned creature is incapacitated.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "600.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_totem", - "fields": { - "name": "Totem", - "desc": "Can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_trident", - "fields": { - "name": "Trident", - "desc": "A trident.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_trident-1", - "fields": { - "name": "Trident (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_trident-2", - "fields": { - "name": "Trident (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_trident-3", - "fields": { - "name": "Trident (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_trident-of-fish-command", - "fields": { - "name": "Trident of Fish Command", - "desc": "This trident is a magic weapon. It has 3 charges. While you carry it, you can use an action and expend 1 charge to cast _dominate beast_ (save DC 15) from it on a beast that has an innate swimming speed. The trident regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_truth-serum", - "fields": { - "name": "Truth serum", - "desc": "A creature subjected to this poison must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. The poisoned creature can't knowingly speak a lie, as if under the effect of a zone of truth spell.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "150.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_universal-solvent", - "fields": { - "name": "Universal Solvent", - "desc": "This tube holds milky liquid with a strong alcohol smell. You can use an action to pour the contents of the tube onto a surface within reach. The liquid instantly dissolves up to 1 square foot of adhesive it touches, including _sovereign glue._", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_vial", - "fields": { - "name": "Vial", - "desc": "For holding liquids. Capacity: 4 ounces liquid.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-battleaxe", - "fields": { - "name": "Vicious Weapon (Battleaxe)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-blowgun", - "fields": { - "name": "Vicious Weapon (Blowgun)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-club", - "fields": { - "name": "Vicious Weapon (Club)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-crossbow-hand", - "fields": { - "name": "Vicious Weapon (Crossbow-Hand)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-crossbow-heavy", - "fields": { - "name": "Vicious Weapon (Crossbow-Heavy)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-crossbow-light", - "fields": { - "name": "Vicious Weapon (Crossbow-Light)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-dagger", - "fields": { - "name": "Vicious Weapon (Dagger)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-dart", - "fields": { - "name": "Vicious Weapon (Dart)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-flail", - "fields": { - "name": "Vicious Weapon (Flail)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-glaive", - "fields": { - "name": "Vicious Weapon (Glaive)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-greataxe", - "fields": { - "name": "Vicious Weapon (Greataxe)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-greatclub", - "fields": { - "name": "Vicious Weapon (Greatclub)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-greatsword", - "fields": { - "name": "Vicious Weapon (Greatsword)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-halberd", - "fields": { - "name": "Vicious Weapon (Halberd)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-handaxe", - "fields": { - "name": "Vicious Weapon (Handaxe)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-javelin", - "fields": { - "name": "Vicious Weapon (Javelin)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-lance", - "fields": { - "name": "Vicious Weapon (Lance)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-light-hammer", - "fields": { - "name": "Vicious Weapon (Light-Hammer)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-longbow", - "fields": { - "name": "Vicious Weapon (Longbow)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-longsword", - "fields": { - "name": "Vicious Weapon (Longsword)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-mace", - "fields": { - "name": "Vicious Weapon (Mace)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-maul", - "fields": { - "name": "Vicious Weapon (Maul)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-morningstar", - "fields": { - "name": "Vicious Weapon (Morningstar)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-net", - "fields": { - "name": "Vicious Weapon (Net)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-pike", - "fields": { - "name": "Vicious Weapon (Pike)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-quarterstaff", - "fields": { - "name": "Vicious Weapon (Quarterstaff)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-rapier", - "fields": { - "name": "Vicious Weapon (Rapier)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-scimitar", - "fields": { - "name": "Vicious Weapon (Scimitar)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-shortbow", - "fields": { - "name": "Vicious Weapon (Shortbow)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-shortsword", - "fields": { - "name": "Vicious Weapon (Shortsword)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-sickle", - "fields": { - "name": "Vicious Weapon (Sickle)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-sling", - "fields": { - "name": "Vicious Weapon (Sling)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-spear", - "fields": { - "name": "Vicious Weapon (Spear)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-trident", - "fields": { - "name": "Vicious Weapon (Trident)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-warhammer", - "fields": { - "name": "Vicious Weapon (Warhammer)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-war-pick", - "fields": { - "name": "Vicious Weapon (War-Pick)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-whip", - "fields": { - "name": "Vicious Weapon (Whip)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_viol", - "fields": { - "name": "Viol", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vorpal-sword-greatsword", - "fields": { - "name": "Vorpal Sword (Greatsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vorpal-sword-longsword", - "fields": { - "name": "Vorpal Sword (Longsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vorpal-sword-scimitar", - "fields": { - "name": "Vorpal Sword (Scimitar)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vorpal-sword-shortsword", - "fields": { - "name": "Vorpal Sword (Shortsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_wagon", - "fields": { - "name": "Wagon", - "desc": "Drawn vehicle.", - "document": "srd", - "size": "large", - "weight": "400.000", - "armor_class": 0, - "hit_points": 0, - "cost": "35.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand", - "fields": { - "name": "Wand", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-binding", - "fields": { - "name": "Wand of Binding", - "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Spells_**. While holding the wand, you can use an action to expend some of its charges to cast one of the following spells (save DC 17): _hold monster_ (5 charges) or _hold person_ (2 charges).\n\n**_Assisted Escape_**. While holding the wand, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained, or you can expend 1 charge and gain advantage on any check you make to escape a grapple.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-enemy-detection", - "fields": { - "name": "Wand of Enemy Detection", - "desc": "This wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For the next minute, you know the direction of the nearest creature hostile to you within 60 feet, but not its distance from you. The wand can sense the presence of hostile creatures that are ethereal, invisible, disguised, or hidden, as well as those in plain sight. The effect ends if you stop holding the wand.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-fear", - "fields": { - "name": "Wand of Fear", - "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Command_**. While holding the wand, you can use an action to expend 1 charge and command another creature to flee or grovel, as with the _command_ spell (save DC 15).\n\n**_Cone of Fear_**. While holding the wand, you can use an action to expend 2 charges, causing the wand's tip to emit a 60-foot cone of amber light. Each creature in the cone must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-fireballs", - "fields": { - "name": "Wand of Fireballs", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _fireball_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-lightning-bolts", - "fields": { - "name": "Wand of Lightning Bolts", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _lightning bolt_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-magic-detection", - "fields": { - "name": "Wand of Magic Detection", - "desc": "This wand has 3 charges. While holding it, you can expend 1 charge as an action to cast the _detect magic_ spell from it. The wand regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-magic-missiles", - "fields": { - "name": "Wand of Magic Missiles", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _magic missile_ spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-paralysis", - "fields": { - "name": "Wand of Paralysis", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cause a thin blue ray to streak from the tip toward a creature you can see within 60 feet of you. The target must succeed on a DC 15 Constitution saving throw or be paralyzed for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a success.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-polymorph", - "fields": { - "name": "Wand of Polymorph", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _polymorph_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-secrets", - "fields": { - "name": "Wand of Secrets", - "desc": "The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges, and if a secret door or trap is within 30 feet of you, the wand pulses and points at the one nearest to you. The wand regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-the-war-mage-1", - "fields": { - "name": "Wand of the War Mage (+1)", - "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-the-war-mage-2", - "fields": { - "name": "Wand of the War Mage (+2)", - "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-the-war-mage-3", - "fields": { - "name": "Wand of the War Mage (+3)", - "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-web", - "fields": { - "name": "Wand of Web", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _web_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-wonder", - "fields": { - "name": "Wand of Wonder", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and choose a target within 120 feet of you. The target can be a creature, an object, or a point in space. Roll d100 and consult the following table to discover what happens.\n\nIf the effect causes you to cast a spell from the wand, the spell's save DC is 15. If the spell normally has a range expressed in feet, its range becomes 120 feet if it isn't already.\n\nIf an effect covers an area, you must center the spell on and include the target. If an effect has multiple possible subjects, the GM randomly determines which ones are affected.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into dust and is destroyed.\n\n| d100 | Effect |\n|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| 01-05 | You cast slow. 06-10 You cast faerie fire. |\n| 11-15 | You are stunned until the start of your next turn, believing something awesome just happened. 16-20 You cast gust of wind. |\n| 21-25 | You cast detect thoughts on the target you chose. If you didn't target a creature, you instead take 1d6 psychic damage. |\n| 26-30 | You cast stinking cloud. |\n| 31-33 | Heavy rain falls in a 60-foot radius centered on the target. The area becomes lightly obscured. The rain falls until the start of your next turn. |\n| 34-36 | An animal appears in the unoccupied space nearest the target. The animal isn't under your control and acts as it normally would. Roll a d100 to determine which animal appears. On a 01-25, a rhinoceros appears; on a 26-50, an elephant appears; and on a 51-100, a rat appears. |\n| 37-46 | You cast lightning bolt. |\n| 47-49 | A cloud of 600 oversized butterflies fills a 30-foot radius centered on the target. The area becomes heavily obscured. The butterflies remain for 10 minutes. |\n| 50-53 | You enlarge the target as if you had cast enlarge/reduce. If the target can't be affected by that spell, or if you didn't target a creature, you become the target. |\n| 54-58 | You cast darkness. |\n| 59-62 | Grass grows on the ground in a 60-foot radius centered on the target. If grass is already there, it grows to ten times its normal size and remains overgrown for 1 minute. |\n| 63-65 | An object of the GM's choice disappears into the Ethereal Plane. The object must be neither worn nor carried, within 120 feet of the target, and no larger than 10 feet in any dimension. |\n| 66-69 | You shrink yourself as if you had cast enlarge/reduce on yourself. |\n| 70-79 | You cast fireball. |\n| 80-84 | You cast invisibility on yourself. |\n| 85-87 | Leaves grow from the target. If you chose a point in space as the target, leaves sprout from the creature nearest to that point. Unless they are picked off, the leaves turn brown and fall off after 24 hours. |\n| 88-90 | A stream of 1d4 × 10 gems, each worth 1 gp, shoots from the wand's tip in a line 30 feet long and 5 feet wide. Each gem deals 1 bludgeoning damage, and the total damage of the gems is divided equally among all creatures in the line. |\n| 91-95 | A burst of colorful shimmering light extends from you in a 30-foot radius. You and each creature in the area that can see must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. |\n| 96-97 | The target's skin turns bright blue for 1d10 days. If you chose a point in space, the creature nearest to that point is affected. |\n| 98-100 | If you targeted a creature, it must make a DC 15 Constitution saving throw. If you didn't target a creature, you become the target and must make the saving throw. If the saving throw fails by 5 or more, the target is instantly petrified. On any other failed save, the target is restrained and begins to turn to stone. While restrained in this way, the target must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the target is freed by the greater restoration spell or similar magic. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_war-pick", - "fields": { - "name": "War pick", - "desc": "A war pick.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_warhammer", - "fields": { - "name": "Warhammer", - "desc": "A warhammer.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_warhammer-1", - "fields": { - "name": "Warhammer (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_warhammer-2", - "fields": { - "name": "Warhammer (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_warhammer-3", - "fields": { - "name": "Warhammer (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_war-pick", - "fields": { - "name": "War pick", - "desc": "A war pick.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_war-pick-1", - "fields": { - "name": "War-Pick (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_war-pick-2", - "fields": { - "name": "War-Pick (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_war-pick-3", - "fields": { - "name": "War-Pick (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_warship", - "fields": { - "name": "Warship", - "desc": "Waterborne vehicle. Speed 2.5mph", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_waterskin", - "fields": { - "name": "Waterskin", - "desc": "For drinking. 5lb is the full weight. Capacity: 4 pints liquid.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_weavers-tools", - "fields": { - "name": "Weaver's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_well-of-many-worlds", - "fields": { - "name": "Well of Many Worlds", - "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold and place the _well of many worlds_ on a solid surface, whereupon it creates a two-way portal to another world or plane of existence. Each time the item opens a portal, the GM decides where it leads. You can use an action to close an open portal by taking hold of the edges of the cloth and folding it up. Once _well of many worlds_ has opened a portal, it can't do so again for 1d8 hours.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_whetstone", - "fields": { - "name": "Whetstone", - "desc": "For sharpening.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_whip", - "fields": { - "name": "Whip", - "desc": "A whip.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_whip-1", - "fields": { - "name": "Whip (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_whip-2", - "fields": { - "name": "Whip (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_whip-3", - "fields": { - "name": "Whip (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wind-fan", - "fields": { - "name": "Wind Fan", - "desc": "While holding this fan, you can use an action to cast the _gust of wind_ spell (save DC 13) from it. Once used, the fan shouldn't be used again until the next dawn. Each time it is used again before then, it has a cumulative 20 percent chance of not working and tearing into useless, nonmagical tatters.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_winged-boots", - "fields": { - "name": "Winged Boots", - "desc": "While you wear these boots, you have a flying speed equal to your walking speed. You can use the boots to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land.\r\n\r\nThe boots regain 2 hours of flying capability for every 12 hours they aren't in use.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wings-of-flying", - "fields": { - "name": "Wings of Flying", - "desc": "While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of bat wings or bird wings on your back for 1 hour or until you repeat the command word as an action. The wings give you a flying speed of 60 feet. When they disappear, you can't use them again for 1d12 hours.\r\n\r\n\r\n\r\n\r\n## Sentient Magic Items\r\n\r\nSome magic items possess sentience and personality. Such an item might be possessed, haunted by the spirit of a previous owner, or self-aware thanks to the magic used to create it. In any case, the item behaves like a character, complete with personality quirks, ideals, bonds, and sometimes flaws. A sentient item might be a cherished ally to its wielder or a continual thorn in the side.\r\n\r\nMost sentient items are weapons. Other kinds of items can manifest sentience, but consumable items such as potions and scrolls are never sentient.\r\n\r\nSentient magic items function as NPCs under the GM's control. Any activated property of the item is under the item's control, not its wielder's. As long as the wielder maintains a good relationship with the item, the wielder can access those properties normally. If the relationship is strained, the item can suppress its activated properties or even turn them against the wielder.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_woodcarvers-tools", - "fields": { - "name": "Woodcarver's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_wooden-staff", - "fields": { - "name": "Wooden staff", - "desc": "Can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "quarterstaff", - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_wyvern-poison", - "fields": { - "name": "Wyvern poison", - "desc": "This poison must be harvested from a dead or incapacitated wyvern. A creature subjected to this poison must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_yew-wand", - "fields": { - "name": "Yew wand", - "desc": "Can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": null - } - } -] \ No newline at end of file +{ + "model": "api_v2.item", + "pk": "srd_abacus", + "fields": { + "name": "Abacus", + "desc": "An abacus.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_acid", + "fields": { + "name": "Acid", + "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_acid-vial", + "fields": { + "name": "Acid (vial)", + "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-breastplate", + "fields": { + "name": "Adamantine Armor (Breastplate)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-chain-mail", + "fields": { + "name": "Adamantine Armor (Chain-Mail)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-chain-shirt", + "fields": { + "name": "Adamantine Armor (Chain-Shirt)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-half-plate", + "fields": { + "name": "Adamantine Armor (Half-Plate)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-hide", + "fields": { + "name": "Adamantine Armor (Hide)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-plate", + "fields": { + "name": "Adamantine Armor (Plate)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-ring-mail", + "fields": { + "name": "Adamantine Armor (Ring-Mail)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-scale-mail", + "fields": { + "name": "Adamantine Armor (Scale-Mail)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-splint", + "fields": { + "name": "Adamantine Armor (Splint)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_alchemists-fire-flask", + "fields": { + "name": "Alchemist's Fire (Flask)", + "desc": "This sticky, adhesive fluid ignites when exposed to air. As an action, you can throw this flask up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the alchemist's fire as an improvised weapon. On a hit, the target takes 1d4 fire damage at the start of each of its turns. A creature can end this damage by using its action to make a DC 10 Dexterity check to extinguish the flames.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_alchemists-supplies", + "fields": { + "name": "Alchemist's Supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_amulet", + "fields": { + "name": "Amulet", + "desc": "Can be used as a holy symbol.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_amulet-of-health", + "fields": { + "name": "Amulet of Health", + "desc": "Your Constitution score is 19 while you wear this amulet. It has no effect on you if your Constitution is already 19 or higher.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_amulet-of-proof-against-detection-and-location", + "fields": { + "name": "Amulet of Proof against Detection and Location", + "desc": "While wearing this amulet, you are hidden from divination magic. You can't be targeted by such magic or perceived through magical scrying sensors.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_amulet-of-the-planes", + "fields": { + "name": "Amulet of the Planes", + "desc": "While wearing this amulet, you can use an action to name a location that you are familiar with on another plane of existence. Then make a DC 15 Intelligence check. On a successful check, you cast the _plane shift_ spell. On a failure, you and each creature and object within 15 feet of you travel to a random destination. Roll a d100. On a 1-60, you travel to a random location on the plane you named. On a 61-100, you travel to a randomly determined plane of existence.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_animated-shield", + "fields": { + "name": "Animated Shield", + "desc": "While holding this shield, you can speak its command word as a bonus action to cause it to animate. The shield leaps into the air and hovers in your space to protect you as if you were wielding it, leaving your hands free. The shield remains animated for 1 minute, until you use a bonus action to end this effect, or until you are incapacitated or die, at which point the shield falls to the ground or into your hand if you have one free.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_antitoxin-vial", + "fields": { + "name": "Antitoxin (Vial)", + "desc": "A creature that drinks this vial of liquid gains advantage on saving throws against poison for 1 hour. It confers no benefit to undead or constructs.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_apparatus-of-the-crab", + "fields": { + "name": "Apparatus of the Crab", + "desc": "This item first appears to be a Large sealed iron barrel weighing 500 pounds. The barrel has a hidden catch, which can be found with a successful DC 20 Intelligence (Investigation) check. Releasing the catch unlocks a hatch at one end of the barrel, allowing two Medium or smaller creatures to crawl inside. Ten levers are set in a row at the far end, each in a neutral position, able to move either up or down. When certain levers are used, the apparatus transforms to resemble a giant lobster.\r\n\r\nThe apparatus of the Crab is a Large object with the following statistics:\r\n\r\n**Armor Class:** 20\r\n\r\n**Hit Points:** 200\r\n\r\n**Speed:** 30 ft., swim 30 ft. (or 0 ft. for both if the legs and tail aren't extended)\r\n\r\n**Damage Immunities:** poison, psychic\r\n\r\nTo be used as a vehicle, the apparatus requires one pilot. While the apparatus's hatch is closed, the compartment is airtight and watertight. The compartment holds enough air for 10 hours of breathing, divided by the number of breathing creatures inside.\r\n\r\nThe apparatus floats on water. It can also go underwater to a depth of 900 feet. Below that, the vehicle takes 2d6 bludgeoning damage per minute from pressure.\r\n\r\nA creature in the compartment can use an action to move as many as two of the apparatus's levers up or down. After each use, a lever goes back to its neutral position. Each lever, from left to right, functions as shown in the Apparatus of the Crab Levers table.\r\n\r\n**Apparatus of the Crab Levers (table)**\r\n\r\n| Lever | Up | Down |\r\n|-------|----------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 1 | Legs and tail extend, allowing the apparatus to walk and swim. | Legs and tail retract, reducing the apparatus's speed to 0 and making it unable to benefit from bonuses to speed. |\r\n| 2 | Forward window shutter opens. | Forward window shutter closes. |\r\n| 3 | Side window shutters open (two per side). | Side window shutters close (two per side). |\r\n| 4 | Two claws extend from the front sides of the apparatus. | The claws retract. |\r\n| 5 | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: 7 (2d6) bludgeoning damage. | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: The target is grappled (escape DC 15). |\r\n| 6 | The apparatus walks or swims forward. | The apparatus walks or swims backward. |\r\n| 7 | The apparatus turns 90 degrees left. | The apparatus turns 90 degrees right. |\r\n| 8 | Eyelike fixtures emit bright light in a 30-foot radius and dim light for an additional 30 feet. | The light turns off. |\r\n| 9 | The apparatus sinks as much as 20 feet in liquid. | The apparatus rises up to 20 feet in liquid. |\r\n| 10 | The rear hatch unseals and opens. | The rear hatch closes and seals. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_armor-of-invulnerability", + "fields": { + "name": "Armor of Invulnerability", + "desc": "You have resistance to nonmagical damage while you wear this armor. Additionally, you can use an action to make yourself immune to nonmagical damage for 10 minutes or until you are no longer wearing the armor. Once this special action is used, it can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_armor-of-resistance-leather", + "fields": { + "name": "Armor of Resistance (Leather)", + "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_armor-of-resistance-padded", + "fields": { + "name": "Armor of Resistance (Padded)", + "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_armor-of-resistance-studded-leather", + "fields": { + "name": "Armor of Resistance (Studded-Leather)", + "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_armor-of-vulnerability", + "fields": { + "name": "Armor of Vulnerability", + "desc": "While wearing this armor, you have resistance to one of the following damage types: bludgeoning, piercing, or slashing. The GM chooses the type or determines it randomly.\n\n**_Curse_**. This armor is cursed, a fact that is revealed only when an _identify_ spell is cast on the armor or you attune to it. Attuning to the armor curses you until you are targeted by the _remove curse_ spell or similar magic; removing the armor fails to end the curse. While cursed, you have vulnerability to two of the three damage types associated with the armor (not the one to which it grants resistance).", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_arrow-bow", + "fields": { + "name": "Arrow (bow)", + "desc": "An arrow for a bow.", + "document": "srd", + "size": "tiny", + "weight": "0.050", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_arrow-catching-shield", + "fields": { + "name": "Arrow-Catching Shield", + "desc": "You gain a +2 bonus to AC against ranged attacks while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. In addition, whenever an attacker makes a ranged attack against a target within 5 feet of you, you can use your reaction to become the target of the attack instead.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_arrow-of-slaying", + "fields": { + "name": "Arrow of Slaying", + "desc": "An _arrow of slaying_ is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both _arrows of dragon slaying_ and _arrows of blue dragon slaying_. If a creature belonging to the type, race, or group associated with an _arrow of slaying_ takes damage from the arrow, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.\\n\\nOnce an _arrow of slaying_ deals its extra damage to a creature, it becomes a nonmagical arrow.\\n\\nOther types of magic ammunition of this kind exist, such as _bolts of slaying_ meant for a crossbow, though arrows are most common.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_assassins-blood", + "fields": { + "name": "Assassin's Blood", + "desc": "A creature subjected to this poison must make a DC 10 Constitution saving throw. On a failed save, it takes 6 (1d12) poison damage and is poisoned for 24 hours. On a successful save, the creature takes half damage and isn't poisoned.\\n\\n\r\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "150.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_backpack", + "fields": { + "name": "Backpack", + "desc": "A backpack. Capacity: 1 cubic foot/30 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bag-of-beans", + "fields": { + "name": "Bag of Beans", + "desc": "Inside this heavy cloth bag are 3d4 dry beans. The bag weighs 1/2 pound plus 1/4 pound for each bean it contains.\r\n\r\nIf you dump the bag's contents out on the ground, they explode in a 10-foot radius, extending from the beans. Each creature in the area, including you, must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.\r\n\r\nIf you remove a bean from the bag, plant it in dirt or sand, and then water it, the bean produces an effect 1 minute later from the ground where it was planted. The GM can choose an effect from the following table, determine it randomly, or create an effect.\r\n\r\n| d100 | Effect |\r\n|-------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01 | 5d4 toadstools sprout. If a creature eats a toadstool, roll any die. On an odd roll, the eater must succeed on a DC 15 Constitution saving throw or take 5d6 poison damage and become poisoned for 1 hour. On an even roll, the eater gains 5d6 temporary hit points for 1 hour. |\r\n| 02-10 | A geyser erupts and spouts water, beer, berry juice, tea, vinegar, wine, or oil (GM's choice) 30 feet into the air for 1d12 rounds. |\r\n| 11-20 | A treant sprouts. There's a 50 percent chance that the treant is chaotic evil and attacks. |\r\n| 21-30 | An animate, immobile stone statue in your likeness rises. It makes verbal threats against you. If you leave it and others come near, it describes you as the most heinous of villains and directs the newcomers to find and attack you. If you are on the same plane of existence as the statue, it knows where you are. The statue becomes inanimate after 24 hours. |\r\n| 31-40 | A campfire with blue flames springs forth and burns for 24 hours (or until it is extinguished). |\r\n| 41-50 | 1d6 + 6 shriekers sprout |\r\n| 51-60 | 1d4 + 8 bright pink toads crawl forth. Whenever a toad is touched, it transforms into a Large or smaller monster of the GM's choice. The monster remains for 1 minute, then disappears in a puff of bright pink smoke. |\r\n| 61-70 | A hungry bulette burrows up and attacks. 71-80 A fruit tree grows. It has 1d10 + 20 fruit, 1d8 of which act as randomly determined magic potions, while one acts as an ingested poison of the GM's choice. The tree vanishes after 1 hour. Picked fruit remains, retaining any magic for 30 days. |\r\n| 81-90 | A nest of 1d4 + 3 eggs springs up. Any creature that eats an egg must make a DC 20 Constitution saving throw. On a successful save, a creature permanently increases its lowest ability score by 1, randomly choosing among equally low scores. On a failed save, the creature takes 10d6 force damage from an internal magical explosion. |\r\n| 91-99 | A pyramid with a 60-foot-square base bursts upward. Inside is a sarcophagus containing a mummy lord. The pyramid is treated as the mummy lord's lair, and its sarcophagus contains treasure of the GM's choice. |\r\n| 100 | A giant beanstalk sprouts, growing to a height of the GM's choice. The top leads where the GM chooses, such as to a great view, a cloud giant's castle, or a different plane of existence. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bag-of-devouring", + "fields": { + "name": "Bag of Devouring", + "desc": "This bag superficially resembles a _bag of holding_ but is a feeding orifice for a gigantic extradimensional creature. Turning the bag inside out closes the orifice.\r\n\r\nThe extradimensional creature attached to the bag can sense whatever is placed inside the bag. Animal or vegetable matter placed wholly in the bag is devoured and lost forever. When part of a living creature is placed in the bag, as happens when someone reaches inside it, there is a 50 percent chance that the creature is pulled inside the bag. A creature inside the bag can use its action to try to escape with a successful DC 15 Strength check. Another creature can use its action to reach into the bag to pull a creature out, doing so with a successful DC 20 Strength check (provided it isn't pulled inside the bag first). Any creature that starts its turn inside the bag is devoured, its body destroyed.\r\n\r\nInanimate objects can be stored in the bag, which can hold a cubic foot of such material. However, once each day, the bag swallows any objects inside it and spits them out into another plane of existence. The GM determines the time and plane.\r\n\r\nIf the bag is pierced or torn, it is destroyed, and anything contained within it is transported to a random location on the Astral Plane.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bag-of-holding", + "fields": { + "name": "Bag of Holding", + "desc": "This bag has an interior space considerably larger than its outside dimensions, roughly 2 feet in diameter at the mouth and 4 feet deep. The bag can hold up to 500 pounds, not exceeding a volume of 64 cubic feet. The bag weighs 15 pounds, regardless of its contents. Retrieving an item from the bag requires an action.\r\n\r\nIf the bag is overloaded, pierced, or torn, it ruptures and is destroyed, and its contents are scattered in the Astral Plane. If the bag is turned inside out, its contents spill forth, unharmed, but the bag must be put right before it can be used again. Breathing creatures inside the bag can survive up to a number of minutes equal to 10 divided by the number of creatures (minimum 1 minute), after which time they begin to suffocate.\r\n\r\nPlacing a _bag of holding_ inside an extradimensional space created by a _handy haversack_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it to a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bag-of-tricks", + "fields": { + "name": "Bag of Tricks", + "desc": "This ordinary bag, made from gray, rust, or tan cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\r\n\r\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a d8 and consulting the table that corresponds to the bag's color.\r\n\r\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\r\n\r\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.\r\n\r\n**Gray Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Weasel |\r\n| 2 | Giant rat |\r\n| 3 | Badger |\r\n| 4 | Boar |\r\n| 5 | Panther |\r\n| 6 | Giant badger |\r\n| 7 | Dire wolf |\r\n| 8 | Giant elk |\r\n\r\n**Rust Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|------------|\r\n| 1 | Rat |\r\n| 2 | Owl |\r\n| 3 | Mastiff |\r\n| 4 | Goat |\r\n| 5 | Giant goat |\r\n| 6 | Giant boar |\r\n| 7 | Lion |\r\n| 8 | Brown bear |\r\n\r\n**Tan Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Jackal |\r\n| 2 | Ape |\r\n| 3 | Baboon |\r\n| 4 | Axe beak |\r\n| 5 | Black bear |\r\n| 6 | Giant weasel |\r\n| 7 | Giant hyena |\r\n| 8 | Tiger |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bagpipes", + "fields": { + "name": "Bagpipes", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ball-bearings-bag-of-1000", + "fields": { + "name": "Ball Bearings (bag of 1000)", + "desc": "As an action, you can spill these tiny metal balls from their pouch to cover a level, square area that is 10 feet on a side. A creature moving across the covered area must succeed on a DC 10 Dexterity saving throw or fall prone. A creature moving through the area at half speed doesn't need to make the save.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_barrel", + "fields": { + "name": "Barrel", + "desc": "A barrel. Capacity: 40 gallons liquid, 4 cubic feet solid.", + "document": "srd", + "size": "medium", + "weight": "70.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_basket", + "fields": { + "name": "Basket", + "desc": "A basket. Capacity: 2 cubic feet/40 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.40", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_battleaxe", + "fields": { + "name": "Battleaxe", + "desc": "A battleaxe.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_battleaxe-1", + "fields": { + "name": "Battleaxe (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_battleaxe-2", + "fields": { + "name": "Battleaxe (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_battleaxe-3", + "fields": { + "name": "Battleaxe (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bead-of-force", + "fields": { + "name": "Bead of Force", + "desc": "This small black sphere measures 3/4 of an inch in diameter and weighs an ounce. Typically, 1d4 + 4 _beads of force_ are found together.\r\n\r\nYou can use an action to throw the bead up to 60 feet. The bead explodes on impact and is destroyed. Each creature within a 10-foot radius of where the bead landed must succeed on a DC 15 Dexterity saving throw or take 5d4 force damage. A sphere of transparent force then encloses the area for 1 minute. Any creature that failed the save and is completely within the area is trapped inside this sphere. Creatures that succeeded on the save, or are partially within the area, are pushed away from the center of the sphere until they are no longer inside it. Only breathable air can pass through the sphere's wall. No attack or other effect can.\r\n\r\nAn enclosed creature can use its action to push against the sphere's wall, moving the sphere up to half the creature's walking speed. The sphere can be picked up, and its magic causes it to weigh only 1 pound, regardless of the weight of creatures inside.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bedroll", + "fields": { + "name": "Bedroll", + "desc": "A bedroll.", + "document": "srd", + "size": "tiny", + "weight": "7.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bell", + "fields": { + "name": "Bell", + "desc": "A bell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-cloud-giant-strength", + "fields": { + "name": "Belt of Cloud Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-dwarvenkind", + "fields": { + "name": "Belt of Dwarvenkind", + "desc": "While wearing this belt, you gain the following benefits:\r\n\r\n* Your Constitution score increases by 2, to a maximum of 20.\r\n* You have advantage on Charisma (Persuasion) checks made to interact with dwarves.\r\n\r\nIn addition, while attuned to the belt, you have a 50 percent chance each day at dawn of growing a full beard if you're capable of growing one, or a visibly thicker beard if you already have one.\r\n\r\nIf you aren't a dwarf, you gain the following additional benefits while wearing the belt:\r\n\r\n* You have advantage on saving throws against poison, and you have resistance against poison damage.\r\n* You have darkvision out to a range of 60 feet.\r\n* You can speak, read, and write Dwarvish.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-fire-giant-strength", + "fields": { + "name": "Belt of Fire Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-frost-giant-strength", + "fields": { + "name": "Belt of Frost Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-hill-giant-strength", + "fields": { + "name": "Belt of Hill Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-stone-giant-strength", + "fields": { + "name": "Belt of Stone Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-storm-giant-strength", + "fields": { + "name": "Belt of Storm Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_blanket", + "fields": { + "name": "Blanket", + "desc": "A blanket.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_block-and-tackle", + "fields": { + "name": "Block and Tackle", + "desc": "A set of pulleys with a cable threaded through them and a hook to attach to objects, a block and tackle allows you to hoist up to four times the weight you can normally lift.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_blowgun", + "fields": { + "name": "Blowgun", + "desc": "A blowgun.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_blowgun-1", + "fields": { + "name": "Blowgun (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_blowgun-2", + "fields": { + "name": "Blowgun (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_blowgun-3", + "fields": { + "name": "Blowgun (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_blowgun-needles", + "fields": { + "name": "Blowgun needles", + "desc": "Needles to be fired with a blowgun.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_book", + "fields": { + "name": "Book", + "desc": "A book might contain poetry, historical accounts, information pertaining to a particular field of lore, diagrams and notes on gnomish contraptions, or just about anything else that can be represented using text or pictures. A book of spells is a spellbook (described later in this section).", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_boots-of-elvenkind", + "fields": { + "name": "Boots of Elvenkind", + "desc": "While you wear these boots, your steps make no sound, regardless of the surface you are moving across. You also have advantage on Dexterity (Stealth) checks that rely on moving silently.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_boots-of-levitation", + "fields": { + "name": "Boots of Levitation", + "desc": "While you wear these boots, you can use an action to cast the _levitate_ spell on yourself at will.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_boots-of-speed", + "fields": { + "name": "Boots of Speed", + "desc": "While you wear these boots, you can use a bonus action and click the boots' heels together. If you do, the boots double your walking speed, and any creature that makes an opportunity attack against you has disadvantage on the attack roll. If you click your heels together again, you end the effect.\r\n\r\nWhen the boots' property has been used for a total of 10 minutes, the magic ceases to function until you finish a long rest.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_boots-of-striding-and-springing", + "fields": { + "name": "Boots of Striding and Springing", + "desc": "While you wear these boots, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced if you are encumbered or wearing heavy armor. In addition, you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_boots-of-the-winterlands", + "fields": { + "name": "Boots of the Winterlands", + "desc": "These furred boots are snug and feel quite warm. While you wear them, you gain the following benefits:\r\n\r\n* You have resistance to cold damage.\r\n* You ignore difficult terrain created by ice or snow.\r\n* You can tolerate temperatures as low as -50 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as -100 degrees Fahrenheit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bottle-glass", + "fields": { + "name": "Bottle, glass", + "desc": "A glass bottle. Capacity: 1.5 pints liquid.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bowl-of-commanding-water-elementals", + "fields": { + "name": "Bowl of Commanding Water Elementals", + "desc": "While this bowl is filled with water, you can use an action to speak the bowl's command word and summon a water elemental, as if you had cast the _conjure elemental_ spell. The bowl can't be used this way again until the next dawn.\r\n\r\nThe bowl is about 1 foot in diameter and half as deep. It weighs 3 pounds and holds about 3 gallons.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bracers-of-archery", + "fields": { + "name": "Bracers of Archery", + "desc": "While wearing these bracers, you have proficiency with the longbow and shortbow, and you gain a +2 bonus to damage rolls on ranged attacks made with such weapons.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bracers-of-defense", + "fields": { + "name": "Bracers of Defense", + "desc": "While wearing these bracers, you gain a +2 bonus to AC if you are wearing no armor and using no shield.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_brazier-of-commanding-fire-elementals", + "fields": { + "name": "Brazier of Commanding Fire Elementals", + "desc": "While a fire burns in this brass brazier, you can use an action to speak the brazier's command word and summon a fire elemental, as if you had cast the _conjure elemental_ spell. The brazier can't be used this way again until the next dawn.\r\n\r\nThe brazier weighs 5 pounds.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_breastplate", + "fields": { + "name": "Breastplate", + "desc": "This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.", + "document": "srd", + "size": "tiny", + "weight": "20.000", + "armor_class": 0, + "hit_points": 0, + "cost": "400.00", + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_brewers-supplies", + "fields": { + "name": "Brewer's Supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "9.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_brooch-of-shielding", + "fields": { + "name": "Brooch of Shielding", + "desc": "While wearing this brooch, you have resistance to force damage, and you have immunity to damage from the _magic missile_ spell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_broom-of-flying", + "fields": { + "name": "Broom of Flying", + "desc": "This wooden broom, which weighs 3 pounds, functions like a mundane broom until you stand astride it and speak its command word. It then hovers beneath you and can be ridden in the air. It has a flying speed of 50 feet. It can carry up to 400 pounds, but its flying speed becomes 30 feet while carrying over 200 pounds. The broom stops hovering when you land.\r\n\r\nYou can send the broom to travel alone to a destination within 1 mile of you if you speak the command word, name the location, and are familiar with that place. The broom comes back to you when you speak another command word, provided that the broom is still within 1 mile of you.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bucket", + "fields": { + "name": "Bucket", + "desc": "A bucket. Capacity: 3 gallons liquid, 1/2 cubic foot solid.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_burnt-othur-fumes", + "fields": { + "name": "Burnt othur fumes", + "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or take 10 (3d6) poison damage, and must repeat the saving throw at the start of each of its turns. On each successive failed save, the character takes 3 (1d6) poison damage. After three successful saves, the poison ends.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "500.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_calligraphers-supplies", + "fields": { + "name": "Calligrapher's supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_caltrops-bag-of-20", + "fields": { + "name": "Caltrops (bag of 20)", + "desc": "As an action, you can spread a bag of caltrops to cover a square area that is 5 feet on a side. Any creature that enters the area must succeed on a DC 15 Dexterity saving throw or stop moving this turn and take 1 piercing damage. Taking this damage reduces the creature's walking speed by 10 feet until the creature regains at least 1 hit point. A creature moving through the area at half speed doesn't need to make the save.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_candle", + "fields": { + "name": "Candle", + "desc": "For 1 hour, a candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_candle-of-invocation", + "fields": { + "name": "Candle of Invocation", + "desc": "This slender taper is dedicated to a deity and shares that deity's alignment. The candle's alignment can be detected with the _detect evil and good_ spell. The GM chooses the god and associated alignment or determines the alignment randomly.\r\n\r\n| d20 | Alignment |\r\n|-------|-----------------|\r\n| 1-2 | Chaotic evil |\r\n| 3-4 | Chaotic neutral |\r\n| 5-7 | Chaotic good |\r\n| 8-9 | Neutral evil |\r\n| 10-11 | Neutral |\r\n| 12-13 | Neutral good |\r\n| 14-15 | Lawful evil |\r\n| 16-17 | Lawful neutral |\r\n| 18-20 | Lawful good |\r\n\r\nThe candle's magic is activated when the candle is lit, which requires an action. After burning for 4 hours, the candle is destroyed. You can snuff it out early for use at a later time. Deduct the time it burned in increments of 1 minute from the candle's total burn time.\r\n\r\nWhile lit, the candle sheds dim light in a 30-foot radius. Any creature within that light whose alignment matches that of the candle makes attack rolls, saving throws, and ability checks with advantage. In addition, a cleric or druid in the light whose alignment matches the candle's can cast 1st* level spells he or she has prepared without expending spell slots, though the spell's effect is as if cast with a 1st-level slot.\r\n\r\nAlternatively, when you light the candle for the first time, you can cast the _gate_ spell with it. Doing so destroys the candle.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_canvas", + "fields": { + "name": "Canvas", + "desc": "1 sq. yd. of canvas", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cape-of-the-mountebank", + "fields": { + "name": "Cape of the Mountebank", + "desc": "This cape smells faintly of brimstone. While wearing it, you can use it to cast the _dimension door_ spell as an action. This property of the cape can't be used again until the next dawn.\r\n\r\nWhen you disappear, you leave behind a cloud of smoke, and you appear in a similar cloud of smoke at your destination. The smoke lightly obscures the space you left and the space you appear in, and it dissipates at the end of your next turn. A light or stronger wind disperses the smoke.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_carpenters-tools", + "fields": { + "name": "Carpenter's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "8.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_carpet-of-flying", + "fields": { + "name": "Carpet of Flying", + "desc": "You can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.\r\n\r\nFour sizes of _carpet of flying_ exist. The GM chooses the size of a given carpet or determines it randomly.\r\n\r\n| d100 | Size | Capacity | Flying Speed |\r\n|--------|---------------|----------|--------------|\r\n| 01-20 | 3 ft. × 5 ft. | 200 lb. | 80 feet |\r\n| 21-55 | 4 ft. × 6 ft. | 400 lb. | 60 feet |\r\n| 56-80 | 5 ft. × 7 ft. | 600 lb. | 40 feet |\r\n| 81-100 | 6 ft. × 9 ft. | 800 lb. | 30 feet |\r\n\r\nA carpet can carry up to twice the weight shown on the table, but it flies at half speed if it carries more than its normal capacity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_carriage", + "fields": { + "name": "Carriage", + "desc": "Drawn vehicle.", + "document": "srd", + "size": "huge", + "weight": "600.000", + "armor_class": 0, + "hit_points": 0, + "cost": "100.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cart", + "fields": { + "name": "Cart", + "desc": "Drawn vehicle", + "document": "srd", + "size": "large", + "weight": "200.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cartographers-tools", + "fields": { + "name": "Cartographer's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_case-crossbow-bolt", + "fields": { + "name": "Case, Crossbow Bolt", + "desc": "This wooden case can hold up to twenty crossbow bolts.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_case-map-or-scroll", + "fields": { + "name": "Case, Map or Scroll", + "desc": "This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_censer-of-controlling-air-elementals", + "fields": { + "name": "Censer of Controlling Air Elementals", + "desc": "While incense is burning in this censer, you can use an action to speak the censer's command word and summon an air elemental, as if you had cast the _conjure elemental_ spell. The censer can't be used this way again until the next dawn.\r\n\r\nThis 6-inch-wide, 1-foot-high vessel resembles a chalice with a decorated lid. It weighs 1 pound.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chain-10-feet", + "fields": { + "name": "Chain (10 feet)", + "desc": "A chain has 10 hit points. It can be burst with a successful DC 20 Strength check.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chain-mail", + "fields": { + "name": "Chain mail", + "desc": "Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.", + "document": "srd", + "size": "tiny", + "weight": "55.000", + "armor_class": 0, + "hit_points": 0, + "cost": "75.00", + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chain-shirt", + "fields": { + "name": "Chain shirt", + "desc": "Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.", + "document": "srd", + "size": "tiny", + "weight": "20.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chalk-1-piece", + "fields": { + "name": "Chalk (1 piece)", + "desc": "A piece of chalk.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chariot", + "fields": { + "name": "Chariot", + "desc": "Drawn vehicle.", + "document": "srd", + "size": "large", + "weight": "100.000", + "armor_class": 0, + "hit_points": 0, + "cost": "250.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chest", + "fields": { + "name": "Chest", + "desc": "A chest. Capacity: 12 cubic feet/300 pounds of gear.", + "document": "srd", + "size": "small", + "weight": "25.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chicken", + "fields": { + "name": "Chicken", + "desc": "One chicken", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chime-of-opening", + "fields": { + "name": "Chime of Opening", + "desc": "This hollow metal tube measures about 1 foot long and weighs 1 pound. You can strike it as an action, pointing it at an object within 120 feet of you that can be opened, such as a door, lid, or lock. The chime issues a clear tone, and one lock or latch on the object opens unless the sound can't reach the object. If no locks or latches remain, the object itself opens.\r\n\r\nThe chime can be used ten times. After the tenth time, it cracks and becomes useless.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cinnamon", + "fields": { + "name": "Cinnamon", + "desc": "1lb of cinnamon", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_circlet-of-blasting", + "fields": { + "name": "Circlet of Blasting", + "desc": "While wearing this circlet, you can use an action to cast the _scorching ray_ spell with it. When you make the spell's attacks, you do so with an attack bonus of +5. The circlet can't be used this way again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_climbers-kit", + "fields": { + "name": "Climber's Kit", + "desc": "A climber's kit includes special pitons, boot tips, gloves, and a harness. You can use the climber's kit as an action to anchor yourself; when you do, you can't fall more than 25 feet from the point where you anchored yourself, and you can't climb more than 25 feet away from that point without undoing the anchor.", + "document": "srd", + "size": "tiny", + "weight": "12.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloak-of-arachnida", + "fields": { + "name": "Cloak of Arachnida", + "desc": "This fine garment is made of black silk interwoven with faint silvery threads. While wearing it, you gain the following benefits:\r\n\r\n* You have resistance to poison damage.\r\n* You have a climbing speed equal to your walking speed.\r\n* You can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free.\r\n* You can't be caught in webs of any sort and can move through webs as if they were difficult terrain.\r\n* You can use an action to cast the _web_ spell (save DC 13). The web created by the spell fills twice its normal area. Once used, this property of the cloak can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloak-of-displacement", + "fields": { + "name": "Cloak of Displacement", + "desc": "While you wear this cloak, it projects an illusion that makes you appear to be standing in a place near your actual location, causing any creature to have disadvantage on attack rolls against you. If you take damage, the property ceases to function until the start of your next turn. This property is suppressed while you are incapacitated, restrained, or otherwise unable to move.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloak-of-elvenkind", + "fields": { + "name": "Cloak of Elvenkind", + "desc": "While you wear this cloak with its hood up, Wisdom (Perception) checks made to see you have disadvantage, and you have advantage on Dexterity (Stealth) checks made to hide, as the cloak's color shifts to camouflage you. Pulling the hood up or down requires an action.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloak-of-protection", + "fields": { + "name": "Cloak of Protection", + "desc": "You gain a +1 bonus to AC and saving throws while you wear this cloak.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloak-of-the-bat", + "fields": { + "name": "Cloak of the Bat", + "desc": "While wearing this cloak, you have advantage on Dexterity (Stealth) checks. In an area of dim light or darkness, you can grip the edges of the cloak with both hands and use it to fly at a speed of 40 feet. If you ever fail to grip the cloak's edges while flying in this way, or if you are no longer in dim light or darkness, you lose this flying speed.\r\n\r\nWhile wearing the cloak in an area of dim light or darkness, you can use your action to cast _polymorph_ on yourself, transforming into a bat. While you are in the form of the bat, you retain your Intelligence, Wisdom, and Charisma scores. The cloak can't be used this way again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloak-of-the-manta-ray", + "fields": { + "name": "Cloak of the Manta Ray", + "desc": "While wearing this cloak with its hood up, you can breathe underwater, and you have a swimming speed of 60 feet. Pulling the hood up or down requires an action.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_clothes-common", + "fields": { + "name": "Clothes, Common", + "desc": "Common clothes.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_clothes-costume", + "fields": { + "name": "Clothes, costume", + "desc": "A costume.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_clothes-fine", + "fields": { + "name": "Clothes, fine", + "desc": "Fine clothing.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_clothes-travelers", + "fields": { + "name": "Clothes, traveler's", + "desc": "Traveler's clothing.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloves", + "fields": { + "name": "Cloves", + "desc": "1lb of cloves.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "3.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_club", + "fields": { + "name": "Club", + "desc": "A club", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_club-1", + "fields": { + "name": "Club (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_club-2", + "fields": { + "name": "Club (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_club-3", + "fields": { + "name": "Club (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cobblers-tools", + "fields": { + "name": "Cobbler's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_component-pouch", + "fields": { + "name": "Component Pouch", + "desc": "A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cooks-utensils", + "fields": { + "name": "Cook's utensils", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_copper", + "fields": { + "name": "Copper", + "desc": "1lb of copper.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_copper-piece", + "fields": { + "name": "Copper Piece", + "desc": "One silver piece is worth ten copper pieces, which are common among laborers and beggars. A single copper piece buys a candle, a torch, or a piece of chalk.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cotton-cloth", + "fields": { + "name": "Cotton Cloth", + "desc": "1 sq. yd. of cotton cloth.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cow", + "fields": { + "name": "Cow", + "desc": "One cow.", + "document": "srd", + "size": "large", + "weight": "1000.000", + "armor_class": 10, + "hit_points": 15, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crawler-mucus", + "fields": { + "name": "Crawler mucus", + "desc": "This poison must be harvested from a dead or incapacitated crawler. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. The poisoned creature is paralyzed. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\\n\\n\r\n**_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-bolt", + "fields": { + "name": "Crossbow bolt", + "desc": "Bolts to be used in a crossbow.", + "document": "srd", + "size": "tiny", + "weight": "0.080", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-hand", + "fields": { + "name": "Crossbow, hand", + "desc": "A hand crossbow.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "75.00", + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-hand-1", + "fields": { + "name": "Crossbow-Hand (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-hand-2", + "fields": { + "name": "Crossbow-Hand (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-hand-3", + "fields": { + "name": "Crossbow-Hand (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-heavy", + "fields": { + "name": "Crossbow, heavy", + "desc": "A heavy crossbow", + "document": "srd", + "size": "tiny", + "weight": "18.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-heavy-1", + "fields": { + "name": "Crossbow-Heavy (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-heavy-2", + "fields": { + "name": "Crossbow-Heavy (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-heavy-3", + "fields": { + "name": "Crossbow-Heavy (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-light", + "fields": { + "name": "Crossbow, light", + "desc": "A light crossbow.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-light-1", + "fields": { + "name": "Crossbow-Light (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-light-2", + "fields": { + "name": "Crossbow-Light (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-light-3", + "fields": { + "name": "Crossbow-Light (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crowbar", + "fields": { + "name": "Crowbar", + "desc": "Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crystal", + "fields": { + "name": "Crystal", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crystal-ball", + "fields": { + "name": "Crystal Ball", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crystal-ball-of-mind-reading", + "fields": { + "name": "Crystal Ball of Mind Reading", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nYou can use an action to cast the detect thoughts spell (save DC 17) while you are scrying with the crystal ball, targeting creatures you can see within 30 feet of the spell's sensor. You don't need to concentrate on this detect thoughts to maintain it during its duration, but it ends if scrying ends.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crystal-ball-of-telepathy", + "fields": { + "name": "Crystal Ball of Telepathy", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nThe following crystal ball variants are legendary items and have additional properties.\r\n\r\nWhile scrying with the crystal ball, you can communicate telepathically with creatures you can see within 30 feet of the spell's sensor. You can also use an action to cast the suggestion spell (save DC 17) through the sensor on one of those creatures. You don't need to concentrate on this suggestion to maintain it during its duration, but it ends if scrying ends. Once used, the suggestion power of the crystal ball can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crystal-ball-of-true-seeing", + "fields": { + "name": "Crystal Ball of True Seeing", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nWhile scrying with the crystal ball, you have truesight with a radius of 120 feet centered on the spell's sensor.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cube-of-force", + "fields": { + "name": "Cube of Force", + "desc": "This cube is about an inch across. Each face has a distinct marking on it that can be pressed. The cube starts with 36 charges, and it regains 1d20 expended charges daily at dawn.\r\n\r\nYou can use an action to press one of the cube's faces, expending a number of charges based on the chosen face, as shown in the Cube of Force Faces table. Each face has a different effect. If the cube has insufficient charges remaining, nothing happens. Otherwise, a barrier of invisible force springs into existence, forming a cube 15 feet on a side. The barrier is centered on you, moves with you, and lasts for 1 minute, until you use an action to press the cube's sixth face, or the cube runs out of charges. You can change the barrier's effect by pressing a different face of the cube and expending the requisite number of charges, resetting the duration.\r\n\r\nIf your movement causes the barrier to come into contact with a solid object that can't pass through the cube, you can't move any closer to that object as long as the barrier remains.\r\n\r\n**Cube of Force Faces (table)**\r\n\r\n| Face | Charges | Effect |\r\n|------|---------|-------------------------------------------------------------------------------------------------------------------|\r\n| 1 | 1 | Gases, wind, and fog can't pass through the barrier. |\r\n| 2 | 2 | Nonliving matter can't pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 3 | 3 | Living matter can't pass through the barrier. |\r\n| 4 | 4 | Spell effects can't pass through the barrier. |\r\n| 5 | 5 | Nothing can pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 6 | 0 | The barrier deactivates. |\r\n\r\nThe cube loses charges when the barrier is targeted by certain spells or comes into contact with certain spell or magic item effects, as shown in the table below.\r\n\r\n| Spell or Item | Charges Lost |\r\n|------------------|--------------|\r\n| Disintegrate | 1d12 |\r\n| Horn of blasting | 1d10 |\r\n| Passwall | 1d6 |\r\n| Prismatic spray | 1d20 |\r\n| Wall of fire | 1d4 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cubic-gate", + "fields": { + "name": "Cubic Gate", + "desc": "This cube is 3 inches across and radiates palpable magical energy. The six sides of the cube are each keyed to a different plane of existence, one of which is the Material Plane. The other sides are linked to planes determined by the GM.\r\n\r\nYou can use an action to press one side of the cube to cast the _gate_ spell with it, opening a portal to the plane keyed to that side. Alternatively, if you use an action to press one side twice, you can cast the _plane shift_ spell (save DC 17) with the cube and transport the targets to the plane keyed to that side.\r\n\r\nThe cube has 3 charges. Each use of the cube expends 1 charge. The cube regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dagger", + "fields": { + "name": "Dagger", + "desc": "A dagger.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dagger-1", + "fields": { + "name": "Dagger (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dagger-2", + "fields": { + "name": "Dagger (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dagger-3", + "fields": { + "name": "Dagger (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dagger-of-venom", + "fields": { + "name": "Dagger of Venom", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nYou can use an action to cause thick, black poison to coat the blade. The poison remains for 1 minute or until an attack using this weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or take 2d10 poison damage and become poisoned for 1 minute. The dagger can't be used this way again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dancing-sword-greatsword", + "fields": { + "name": "Dancing Sword (Greatsword)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dancing-sword-longsword", + "fields": { + "name": "Dancing Sword (Longsword)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dancing-sword-rapier", + "fields": { + "name": "Dancing Sword (Rapier)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dancing-sword-shortsword", + "fields": { + "name": "Dancing Sword (Shortsword)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dart", + "fields": { + "name": "Dart", + "desc": "A dart.", + "document": "srd", + "size": "tiny", + "weight": "0.250", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dart-1", + "fields": { + "name": "Dart (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dart-2", + "fields": { + "name": "Dart (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dart-3", + "fields": { + "name": "Dart (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_decanter-of-endless-water", + "fields": { + "name": "Decanter of Endless Water", + "desc": "This stoppered flask sloshes when shaken, as if it contains water. The decanter weighs 2 pounds.\r\n\r\nYou can use an action to remove the stopper and speak one of three command words, whereupon an amount of fresh water or salt water (your choice) pours out of the flask. The water stops pouring out at the start of your next turn. Choose from the following options:\r\n\r\n* \"Stream\" produces 1 gallon of water.\r\n* \"Fountain\" produces 5 gallons of water.\r\n* \"Geyser\" produces 30 gallons of water that gushes forth in a geyser 30 feet long and 1 foot wide. As a bonus action while holding the decanter, you can aim the geyser at a creature you can see within 30 feet of you. The target must succeed on a DC 13 Strength saving throw or take 1d4 bludgeoning damage and fall prone. Instead of a creature, you can target an object that isn't being worn or carried and that weighs no more than 200 pounds. The object is either knocked over or pushed up to 15 feet away from you.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_deck-of-illusions", + "fields": { + "name": "Deck of Illusions", + "desc": "This box contains a set of parchment cards. A full deck has 34 cards. A deck found as treasure is usually missing 1d20 - 1 cards.\r\n\r\nThe magic of the deck functions only if cards are drawn at random (you can use an altered deck of playing cards to simulate the deck). You can use an action to draw a card at random from the deck and throw it to the ground at a point within 30 feet of you.\r\n\r\nAn illusion of one or more creatures forms over the thrown card and remains until dispelled. An illusory creature appears real, of the appropriate size, and behaves as if it were a real creature except that it can do no harm. While you are within 120 feet of the illusory creature and can see it, you can use an action to move it magically anywhere within 30 feet of its card. Any physical interaction with the illusory creature reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect the creature identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The creature then appears translucent.\r\n\r\nThe illusion lasts until its card is moved or the illusion is dispelled. When the illusion ends, the image on its card disappears, and that card can't be used again.\r\n\r\n| Playing Card | Illusion |\r\n|-------------------|----------------------------------|\r\n| Ace of hearts | Red dragon |\r\n| King of hearts | Knight and four guards |\r\n| Queen of hearts | Succubus or incubus |\r\n| Jack of hearts | Druid |\r\n| Ten of hearts | Cloud giant |\r\n| Nine of hearts | Ettin |\r\n| Eight of hearts | Bugbear |\r\n| Two of hearts | Goblin |\r\n| Ace of diamonds | Beholder |\r\n| King of diamonds | Archmage and mage apprentice |\r\n| Queen of diamonds | Night hag |\r\n| Jack of diamonds | Assassin |\r\n| Ten of diamonds | Fire giant |\r\n| Nine of diamonds | Ogre mage |\r\n| Eight of diamonds | Gnoll |\r\n| Two of diamonds | Kobold |\r\n| Ace of spades | Lich |\r\n| King of spades | Priest and two acolytes |\r\n| Queen of spades | Medusa |\r\n| Jack of spades | Veteran |\r\n| Ten of spades | Frost giant |\r\n| Nine of spades | Troll |\r\n| Eight of spades | Hobgoblin |\r\n| Two of spades | Goblin |\r\n| Ace of clubs | Iron golem |\r\n| King of clubs | Bandit captain and three bandits |\r\n| Queen of clubs | Erinyes |\r\n| Jack of clubs | Berserker |\r\n| Ten of clubs | Hill giant |\r\n| Nine of clubs | Ogre |\r\n| Eight of clubs | Orc |\r\n| Two of clubs | Kobold |\r\n| Jokers (2) | You (the deck's owner) |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_deck-of-many-things", + "fields": { + "name": "Deck of Many Things", + "desc": "Usually found in a box or pouch, this deck contains a number of cards made of ivory or vellum. Most (75 percent) of these decks have only thirteen cards, but the rest have twenty-two.\r\n\r\nBefore you draw a card, you must declare how many cards you intend to draw and then draw them randomly (you can use an altered deck of playing cards to simulate the deck). Any cards drawn in excess of this number have no effect. Otherwise, as soon as you draw a card from the deck, its magic takes effect. You must draw each card no more than 1 hour after the previous draw. If you fail to draw the chosen number, the remaining number of cards fly from the deck on their own and take effect all at once.\r\n\r\nOnce a card is drawn, it fades from existence. Unless the card is the Fool or the Jester, the card reappears in the deck, making it possible to draw the same card twice.\r\n\r\n| Playing Card | Card |\r\n|--------------------|-------------|\r\n| Ace of diamonds | Vizier\\* |\r\n| King of diamonds | Sun |\r\n| Queen of diamonds | Moon |\r\n| Jack of diamonds | Star |\r\n| Two of diamonds | Comet\\* |\r\n| Ace of hearts | The Fates\\* |\r\n| King of hearts | Throne |\r\n| Queen of hearts | Key |\r\n| Jack of hearts | Knight |\r\n| Two of hearts | Gem\\* |\r\n| Ace of clubs | Talons\\* |\r\n| King of clubs | The Void |\r\n| Queen of clubs | Flames |\r\n| Jack of clubs | Skull |\r\n| Two of clubs | Idiot\\* |\r\n| Ace of spades | Donjon\\* |\r\n| King of spades | Ruin |\r\n| Queen of spades | Euryale |\r\n| Jack of spades | Rogue |\r\n| Two of spades | Balance\\* |\r\n| Joker (with TM) | Fool\\* |\r\n| Joker (without TM) | Jester |\r\n\r\n\\*Found only in a deck with twenty-two cards\r\n\r\n**_Balance_**. Your mind suffers a wrenching alteration, causing your alignment to change. Lawful becomes chaotic, good becomes evil, and vice versa. If you are true neutral or unaligned, this card has no effect on you.\r\n\r\n**_Comet_**. If you single-handedly defeat the next hostile monster or group of monsters you encounter, you gain experience points enough to gain one level. Otherwise, this card has no effect.\r\n\r\n**_Donjon_**. You disappear and become entombed in a state of suspended animation in an extradimensional sphere. Everything you were wearing and carrying stays behind in the space you occupied when you disappeared. You remain imprisoned until you are found and removed from the sphere. You can't be located by any divination magic, but a _wish_ spell can reveal the location of your prison. You draw no more cards.\r\n\r\n**_Euryale_**. The card's medusa-like visage curses you. You take a -2 penalty on saving throws while cursed in this way. Only a god or the magic of The Fates card can end this curse.\r\n\r\n**_The Fates_**. Reality's fabric unravels and spins anew, allowing you to avoid or erase one event as if it never happened. You can use the card's magic as soon as you draw the card or at any other time before you die.\r\n\r\n**_Flames_**. A powerful devil becomes your enemy. The devil seeks your ruin and plagues your life, savoring your suffering before attempting to slay you. This enmity lasts until either you or the devil dies.\r\n\r\n**_Fool_**. You lose 10,000 XP, discard this card, and draw from the deck again, counting both draws as one of your declared draws. If losing that much XP would cause you to lose a level, you instead lose an amount that leaves you with just enough XP to keep your level.\r\n\r\n**_Gem_**. Twenty-five pieces of jewelry worth 2,000 gp each or fifty gems worth 1,000 gp each appear at your feet.\r\n\r\n**_Idiot_**. Permanently reduce your Intelligence by 1d4 + 1 (to a minimum score of 1). You can draw one additional card beyond your declared draws.\r\n\r\n**_Jester_**. You gain 10,000 XP, or you can draw two additional cards beyond your declared draws.\r\n\r\n**_Key_**. A rare or rarer magic weapon with which you are proficient appears in your hands. The GM chooses the weapon.\r\n\r\n**_Knight_**. You gain the service of a 4th-level fighter who appears in a space you choose within 30 feet of you. The fighter is of the same race as you and serves you loyally until death, believing the fates have drawn him or her to you. You control this character.\r\n\r\n**_Moon_**. You are granted the ability to cast the _wish_ spell 1d3 times.\r\n\r\n**_Rogue_**. A nonplayer character of the GM's choice becomes hostile toward you. The identity of your new enemy isn't known until the NPC or someone else reveals it. Nothing less than a _wish_ spell or divine intervention can end the NPC's hostility toward you.\r\n\r\n**_Ruin_**. All forms of wealth that you carry or own, other than magic items, are lost to you. Portable property vanishes. Businesses, buildings, and land you own are lost in a way that alters reality the least. Any documentation that proves you should own something lost to this card also disappears.\r\n\r\n**_Skull_**. You summon an avatar of death-a ghostly humanoid skeleton clad in a tattered black robe and carrying a spectral scythe. It appears in a space of the GM's choice within 10 feet of you and attacks you, warning all others that you must win the battle alone. The avatar fights until you die or it drops to 0 hit points, whereupon it disappears. If anyone tries to help you, the helper summons its own avatar of death. A creature slain by an avatar of death can't be restored to life.\r\n\r\n#", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_defender-greatsword", + "fields": { + "name": "Defender (Greatsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_defender-longsword", + "fields": { + "name": "Defender (Longsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_defender-rapier", + "fields": { + "name": "Defender (Rapier)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_defender-shortsword", + "fields": { + "name": "Defender (Shortsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_demon-armor", + "fields": { + "name": "Demon Armor", + "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, the armor's clawed gauntlets turn unarmed strikes with your hands into magic weapons that deal slashing damage, with a +1 bonus to attack rolls and damage rolls and a damage die of 1d8.\n\n**_Curse_**. Once you don this cursed armor, you can't doff it unless you are targeted by the _remove curse_ spell or similar magic. While wearing the armor, you have disadvantage on attack rolls against demons and on saving throws against their spells and special abilities.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dice-set", + "fields": { + "name": "Dice set", + "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dimensional-shackles", + "fields": { + "name": "Dimensional Shackles", + "desc": "You can use an action to place these shackles on an incapacitated creature. The shackles adjust to fit a creature of Small to Large size. In addition to serving as mundane manacles, the shackles prevent a creature bound by them from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. They don't prevent the creature from passing through an interdimensional portal.\r\n\r\nYou and any creature you designate when you use the shackles can use an action to remove them. Once every 30 days, the bound creature can make a DC 30 Strength (Athletics) check. On a success, the creature breaks free and destroys the shackles.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_disguise-kit", + "fields": { + "name": "Disguise kit", + "desc": "This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dragon-scale-mail", + "fields": { + "name": "Dragon Scale Mail", + "desc": "Dragon scale mail is made of the scales of one kind of dragon. Sometimes dragons collect their cast-off scales and gift them to humanoids. Other times, hunters carefully skin and preserve the hide of a dead dragon. In either case, dragon scale mail is highly valued.\r\n\r\nWhile wearing this armor, you gain a +1 bonus to AC, you have advantage on saving throws against the Frightful Presence and breath weapons of dragons, and you have resistance to one damage type that is determined by the kind of dragon that provided the scales (see the table).\r\n\r\nAdditionally, you can focus your senses as an action to magically discern the distance and direction to the closest dragon within 30 miles of you that is of the same type as the armor. This special action can't be used again until the next dawn.\r\n\r\n| Dragon | Resistance |\r\n|--------|------------|\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dragon-slayer-greatsword", + "fields": { + "name": "Dragon Slayer (Greatsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dragon-slayer-longsword", + "fields": { + "name": "Dragon Slayer (Longsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dragon-slayer-rapier", + "fields": { + "name": "Dragon Slayer (Rapier)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dragon-slayer-shortsword", + "fields": { + "name": "Dragon Slayer (Shortsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_drow-poison", + "fields": { + "name": "Drow poison", + "desc": "This poison is typically made only by the drow, and only in a place far removed from sunlight. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the creature is also unconscious while poisoned in this way. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\r\n\\n\\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_drum", + "fields": { + "name": "Drum", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "6.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dulcimer", + "fields": { + "name": "Dulcimer", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dust-of-disappearance", + "fields": { + "name": "Dust of Disappearance", + "desc": "Found in a small packet, this powder resembles very fine sand. There is enough of it for one use. When you use an action to throw the dust into the air, you and each creature and object within 10 feet of you become invisible for 2d4 minutes. The duration is the same for all subjects, and the dust is consumed when its magic takes effect. If a creature affected by the dust attacks or casts a spell, the invisibility ends for that creature.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dust-of-dryness", + "fields": { + "name": "Dust of Dryness", + "desc": "This small packet contains 1d6 + 4 pinches of dust. You can use an action to sprinkle a pinch of it over water. The dust turns a cube of water 15 feet on a side into one marble-sized pellet, which floats or rests near where the dust was sprinkled. The pellet's weight is negligible.\r\n\r\nSomeone can use an action to smash the pellet against a hard surface, causing the pellet to shatter and release the water the dust absorbed. Doing so ends that pellet's magic.\r\n\r\nAn elemental composed mostly of water that is exposed to a pinch of the dust must make a DC 13 Constitution saving throw, taking 10d6 necrotic damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dust-of-sneezing-and-choking", + "fields": { + "name": "Dust of Sneezing and Choking", + "desc": "Found in a small container, this powder resembles very fine sand. It appears to be _dust of disappearance_, and an _identify_ spell reveals it to be such. There is enough of it for one use.\r\n\r\nWhen you use an action to throw a handful of the dust into the air, you and each creature that needs to breathe within 30 feet of you must succeed on a DC 15 Constitution saving throw or become unable to breathe, while sneezing uncontrollably. A creature affected in this way is incapacitated and suffocating. As long as it is conscious, a creature can repeat the saving throw at the end of each of its turns, ending the effect on it on a success. The _lesser restoration_ spell can also end the effect on a creature.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dwarven-plate", + "fields": { + "name": "Dwarven Plate", + "desc": "While wearing this armor, you gain a +2 bonus to AC. In addition, if an effect moves you against your will along the ground, you can use your reaction to reduce the distance you are moved by up to 10 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dwarven-thrower", + "fields": { + "name": "Dwarven Thrower", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. It has the thrown property with a normal range of 20 feet and a long range of 60 feet. When you hit with a ranged attack using this weapon, it deals an extra 1d8 damage or, if the target is a giant, 2d8 damage. Immediately after the attack, the weapon flies back to your hand.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_efficient-quiver", + "fields": { + "name": "Efficient Quiver", + "desc": "Each of the quiver's three compartments connects to an extradimensional space that allows the quiver to hold numerous items while never weighing more than 2 pounds. The shortest compartment can hold up to sixty arrows, bolts, or similar objects. The midsize compartment holds up to eighteen javelins or similar objects. The longest compartment holds up to six long objects, such as bows, quarterstaffs, or spears.\r\n\r\nYou can draw any item the quiver contains as if doing so from a regular quiver or scabbard.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_efreeti-bottle", + "fields": { + "name": "Efreeti Bottle", + "desc": "This painted brass bottle weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke flows out of the bottle. At the end of your turn, the smoke disappears with a flash of harmless fire, and an efreeti appears in an unoccupied space within 30 feet of you.\r\n\r\nThe first time the bottle is opened, the GM rolls to determine what happens.\r\n\r\n| d100 | Effect |\r\n|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-10 | The efreeti attacks you. After fighting for 5 rounds, the efreeti disappears, and the bottle loses its magic. |\r\n| 11-90 | The efreeti serves you for 1 hour, doing as you command. Then the efreeti returns to the bottle, and a new stopper contains it. The stopper can't be removed for 24 hours. The next two times the bottle is opened, the same effect occurs. If the bottle is opened a fourth time, the efreeti escapes and disappears, and the bottle loses its magic. |\r\n| 91-100 | The efreeti can cast the wish spell three times for you. It disappears when it grants the final wish or after 1 hour, and the bottle loses its magic. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_electrum-piece", + "fields": { + "name": "Electrum Piece", + "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_elemental-gem", + "fields": { + "name": "Elemental Gem", + "desc": "This gem contains a mote of elemental energy. When you use an action to break the gem, an elemental is summoned as if you had cast the _conjure elemental_ spell, and the gem's magic is lost. The type of gem determines the elemental summoned by the spell.\r\n\r\n| Gem | Summoned Elemental |\r\n|----------------|--------------------|\r\n| Blue sapphire | Air elemental |\r\n| Yellow diamond | Earth elemental |\r\n| Red corundum | Fire elemental |\r\n| Emerald | Water elemental |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_elven-chain", + "fields": { + "name": "Elven Chain", + "desc": "You gain a +1 bonus to AC while you wear this armor. You are considered proficient with this armor even if you lack proficiency with medium armor.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_emblem", + "fields": { + "name": "Emblem", + "desc": "Can be used as a holy symbol.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_essense-of-either", + "fields": { + "name": "Essense of either", + "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 8 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "300.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_eversmoking-bottle", + "fields": { + "name": "Eversmoking Bottle", + "desc": "Smoke leaks from the lead-stoppered mouth of this brass bottle, which weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke pours out in a 60-foot radius from the bottle. The cloud's area is heavily obscured. Each minute the bottle remains open and within the cloud, the radius increases by 10 feet until it reaches its maximum radius of 120 feet.\r\n\r\nThe cloud persists as long as the bottle is open. Closing the bottle requires you to speak its command word as an action. Once the bottle is closed, the cloud disperses after 10 minutes. A moderate wind (11 to 20 miles per hour) can also disperse the smoke after 1 minute, and a strong wind (21 or more miles per hour) can do so after 1 round.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_eyes-of-charming", + "fields": { + "name": "Eyes of Charming", + "desc": "These crystal lenses fit over the eyes. They have 3 charges. While wearing them, you can expend 1 charge as an action to cast the _charm person_ spell (save DC 13) on a humanoid within 30 feet of you, provided that you and the target can see each other. The lenses regain all expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_eyes-of-minute-seeing", + "fields": { + "name": "Eyes of Minute Seeing", + "desc": "These crystal lenses fit over the eyes. While wearing them, you can see much better than normal out to a range of 1 foot. You have advantage on Intelligence (Investigation) checks that rely on sight while searching an area or studying an object within that range.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_eyes-of-the-eagle", + "fields": { + "name": "Eyes of the Eagle", + "desc": "These crystal lenses fit over the eyes. While wearing them, you have advantage on Wisdom (Perception) checks that rely on sight. In conditions of clear visibility, you can make out details of even extremely distant creatures and objects as small as 2 feet across.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_feather-token", + "fields": { + "name": "Feather Token", + "desc": "This tiny object looks like a feather. Different types of feather tokens exist, each with a different single* use effect. The GM chooses the kind of token or determines it randomly.\r\n\r\n| d100 | Feather Token |\r\n|--------|---------------|\r\n| 01-20 | Anchor |\r\n| 21-35 | Bird |\r\n| 36-50 | Fan |\r\n| 51-65 | Swan boat |\r\n| 66-90 | Tree |\r\n| 91-100 | Whip |\r\n\r\n**_Anchor_**. You can use an action to touch the token to a boat or ship. For the next 24 hours, the vessel can't be moved by any means. Touching the token to the vessel again ends the effect. When the effect ends, the token disappears.\r\n\r\n**_Bird_**. You can use an action to toss the token 5 feet into the air. The token disappears and an enormous, multicolored bird takes its place. The bird has the statistics of a roc, but it obeys your simple commands and can't attack. It can carry up to 500 pounds while flying at its maximum speed (16 miles an hour for a maximum of 144 miles per day, with a one-hour rest for every 3 hours of flying), or 1,000 pounds at half that speed. The bird disappears after flying its maximum distance for a day or if it drops to 0 hit points. You can dismiss the bird as an action.\r\n\r\n**_Fan_**. If you are on a boat or ship, you can use an action to toss the token up to 10 feet in the air. The token disappears, and a giant flapping fan takes its place. The fan floats and creates a wind strong enough to fill the sails of one ship, increasing its speed by 5 miles per hour for 8 hours. You can dismiss the fan as an action.\r\n\r\n**_Swan Boat_**. You can use an action to touch the token to a body of water at least 60 feet in diameter. The token disappears, and a 50-foot-long, 20-foot* wide boat shaped like a swan takes its place. The boat is self-propelled and moves across water at a speed of 6 miles per hour. You can use an action while on the boat to command it to move or to turn up to 90 degrees. The boat can carry up to thirty-two Medium or smaller creatures. A Large creature counts as four Medium creatures, while a Huge creature counts as nine. The boat remains for 24 hours and then disappears. You can dismiss the boat as an action.\r\n\r\n**_Tree_**. You must be outdoors to use this token. You can use an action to touch it to an unoccupied space on the ground. The token disappears, and in its place a nonmagical oak tree springs into existence. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\r\n\r\n**_Whip_**. You can use an action to throw the token to a point within 10 feet of you. The token disappears, and a floating whip takes its place. You can then use a bonus action to make a melee spell attack against a creature within 10 feet of the whip, with an attack bonus of +9. On a hit, the target takes 1d6 + 5 force damage.\r\n\r\nAs a bonus action on your turn, you can direct the whip to fly up to 20 feet and repeat the attack against a creature within 10 feet of it. The whip disappears after 1 hour, when you use an action to dismiss it, or when you are incapacitated or die.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-bronze-griffon", + "fields": { + "name": "Figurine of Wondrous Power (Bronze Griffon)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Bronze Griffon (Rare)_**. This bronze statuette is of a griffon rampant. It can become a griffon for up to 6 hours. Once it has been used, it can't be used again until 5 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-ebony-fly", + "fields": { + "name": "Figurine of Wondrous Power (Ebony Fly)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ebony Fly (Rare)_**. This ebony statuette is carved in the likeness of a horsefly. It can become a giant fly for up to 12 hours and can be ridden as a mount. Once it has been used, it can’t be used again until 2 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-golden-lions", + "fields": { + "name": "Figurine of Wondrous Power (Golden Lions)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Golden Lions (Rare)_**. These gold statuettes of lions are always created in pairs. You can use one figurine or both simultaneously. Each can become a lion for up to 1 hour. Once a lion has been used, it can’t be used again until 7 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-ivory-goats", + "fields": { + "name": "Figurine of Wondrous Power (Ivory Goats)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ivory Goats (Rare_**.These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others. Their properties are as follows:\\n\\n* The _goat of traveling_ can become a Large goat with the same statistics as a riding horse. It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can't be used again until 7 days have passed, when it regains all its charges.\\n* The _goat of travail_ becomes a giant goat for up to 3 hours. Once it has been used, it can't be used again until 30 days have passed.\\n* The _goat of terror_ becomes a giant goat for up to 3 hours. The goat can't attack, but you can remove its horns and use them as weapons. One horn becomes a _+1 lance_, and the other becomes a _+2 longsword_. Removing a horn requires an action, and the weapons disappear and the horns return when the goat reverts to figurine form. In addition, the goat radiates a 30-foot-radius aura of terror while you are riding it. Any creature hostile to you that starts its turn in the aura must succeed on a DC 15 Wisdom saving throw or be frightened of the goat for 1 minute, or until the goat reverts to figurine form. The frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it successfully saves against the effect, a creature is immune to the goat's aura for the next 24 hours. Once the figurine has been used, it can't be used again until 15 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-marble-elephant", + "fields": { + "name": "Figurine of Wondrous Power (Marble Elephant)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Marble Elephant (Rare)_**. This marble statuette is about 4 inches high and long. It can become an elephant for up to 24 hours. Once it has been used, it can’t be used again until 7 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-obsidian-steed", + "fields": { + "name": "Figurine of Wondrous Power (Obsidian Steed)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Obsidian Steed (Very Rare)_**. This polished obsidian horse can become a nightmare for up to 24 hours. The nightmare fights only to defend itself. Once it has been used, it can't be used again until 5 days have passed.\\n\\nIf you have a good alignment, the figurine has a 10 percent chance each time you use it to ignore your orders, including a command to revert to figurine form. If you mount the nightmare while it is ignoring your orders, you and the nightmare are instantly transported to a random location on the plane of Hades, where the nightmare reverts to figurine form.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-onyx-dog", + "fields": { + "name": "Figurine of Wondrous Power (Onyx Dog)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Onyx Dog (Rare)_**. This onyx statuette of a dog can become a mastiff for up to 6 hours. The mastiff has an Intelligence of 8 and can speak Common. It also has darkvision out to a range of 60 feet and can see invisible creatures and objects within that range. Once it has been used, it can’t be used again until 7 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-serpentine-owl", + "fields": { + "name": "Figurine of Wondrous Power (Serpentine Owl)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Serpentine Owl (Rare)_**. This serpentine statuette of an owl can become a giant owl for up to 8 hours. Once it has been used, it can’t be used again until 2 days have passed. The owl can telepathically communicate with you at any range if you and it are on the same plane of existence.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-silver-raven", + "fields": { + "name": "Figurine of Wondrous Power (Silver Raven)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Silver Raven (Uncommon)_**. This silver statuette of a raven can become a raven for up to 12 hours. Once it has been used, it can’t be used again until 2 days have passed. While in raven form, the figurine allows you to cast the animal messenger spell on it at will.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_fishing-tackle", + "fields": { + "name": "Fishing Tackle", + "desc": "This kit includes a wooden rod, silken line, corkwood bobbers, steel hooks, lead sinkers, velvet lures, and narrow netting.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flail", + "fields": { + "name": "Flail", + "desc": "A flail.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flail-1", + "fields": { + "name": "Flail (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flail-2", + "fields": { + "name": "Flail (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flail-3", + "fields": { + "name": "Flail (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flame-tongue-greatsword", + "fields": { + "name": "Flame Tongue (Greatsword)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flame-tongue-longsword", + "fields": { + "name": "Flame Tongue (Longsword)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flame-tongue-rapier", + "fields": { + "name": "Flame Tongue (Rapier)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flame-tongue-shortsword", + "fields": { + "name": "Flame Tongue (Shortsword)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flask-or-tankard", + "fields": { + "name": "Flask or tankard", + "desc": "For drinking. Capacity: 1 pint liquid.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flour", + "fields": { + "name": "Flour", + "desc": "1lb of flour", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flute", + "fields": { + "name": "Flute", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_folding-boat", + "fields": { + "name": "Folding Boat", + "desc": "This object appears as a wooden box that measures 12 inches long, 6 inches wide, and 6 inches deep. It weighs 4 pounds and floats. It can be opened to store items inside. This item also has three command words, each requiring you to use an action to speak it.\r\n\r\nOne command word causes the box to unfold into a boat 10 feet long, 4 feet wide, and 2 feet deep. The boat has one pair of oars, an anchor, a mast, and a lateen sail. The boat can hold up to four Medium creatures comfortably.\r\n\r\nThe second command word causes the box to unfold into a ship 24 feet long, 8 feet wide, and 6 feet deep. The ship has a deck, rowing seats, five sets of oars, a steering oar, an anchor, a deck cabin, and a mast with a square sail. The ship can hold fifteen Medium creatures comfortably.\r\n\r\nWhen the box becomes a vessel, its weight becomes that of a normal vessel its size, and anything that was stored in the box remains in the boat.\r\n\r\nThe third command word causes the _folding boat_ to fold back into a box, provided that no creatures are aboard. Any objects in the vessel that can't fit inside the box remain outside the box as it folds. Any objects in the vessel that can fit inside the box do so.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_forgery-kit", + "fields": { + "name": "Forgery kit", + "desc": "This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. \\n\\nProficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_frost-brand-greatsword", + "fields": { + "name": "Frost Brand (Greatsword)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_frost-brand-longsword", + "fields": { + "name": "Frost Brand (Longsword)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_frost-brand-rapier", + "fields": { + "name": "Frost Brand (Rapier)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_frost-brand-shortsword", + "fields": { + "name": "Frost Brand (Shortsword)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_galley", + "fields": { + "name": "Galley", + "desc": "A waterborne vehicle. Speed 4 mph", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gauntlets-of-ogre-power", + "fields": { + "name": "Gauntlets of Ogre Power", + "desc": "Your Strength score is 19 while you wear these gauntlets. They have no effect on you if your Strength is already 19 or higher.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gem-of-brightness", + "fields": { + "name": "Gem of Brightness", + "desc": "This prism has 50 charges. While you are holding it, you can use an action to speak one of three command words to cause one of the following effects:\r\n\r\n* The first command word causes the gem to shed bright light in a 30-foot radius and dim light for an additional 30 feet. This effect doesn't expend a charge. It lasts until you use a bonus action to repeat the command word or until you use another function of the gem.\r\n* The second command word expends 1 charge and causes the gem to fire a brilliant beam of light at one creature you can see within 60 feet of you. The creature must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\r\n* The third command word expends 5 charges and causes the gem to flare with blinding light in a 30* foot cone originating from it. Each creature in the cone must make a saving throw as if struck by the beam created with the second command word.\r\n\r\nWhen all of the gem's charges are expended, the gem becomes a nonmagical jewel worth 50 gp.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gem-of-seeing", + "fields": { + "name": "Gem of Seeing", + "desc": "This gem has 3 charges. As an action, you can speak the gem's command word and expend 1 charge. For the next 10 minutes, you have truesight out to 120 feet when you peer through the gem.\r\n\r\nThe gem regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-battleaxe", + "fields": { + "name": "Giant Slayer (Battleaxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-greataxe", + "fields": { + "name": "Giant Slayer (Greataxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-greatsword", + "fields": { + "name": "Giant Slayer (Greatsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-handaxe", + "fields": { + "name": "Giant Slayer (Handaxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-longsword", + "fields": { + "name": "Giant Slayer (Longsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-rapier", + "fields": { + "name": "Giant Slayer (Rapier)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-shortsword", + "fields": { + "name": "Giant Slayer (Shortsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ginger", + "fields": { + "name": "Ginger", + "desc": "1lb of Ginger.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_glaive", + "fields": { + "name": "Glaive", + "desc": "A glaive.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_glaive-1", + "fields": { + "name": "Glaive (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_glaive-2", + "fields": { + "name": "Glaive (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_glaive-3", + "fields": { + "name": "Glaive (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_glamoured-studded-leather", + "fields": { + "name": "Glamoured Studded Leather", + "desc": "While wearing this armor, you gain a +1 bonus to AC. You can also use a bonus action to speak the armor's command word and cause the armor to assume the appearance of a normal set of clothing or some other kind of armor. You decide what it looks like, including color, style, and accessories, but the armor retains its normal bulk and weight. The illusory appearance lasts until you use this property again or remove the armor.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_glassblowers-tools", + "fields": { + "name": "Glassblower's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gloves-of-missile-snaring", + "fields": { + "name": "Gloves of Missile Snaring", + "desc": "These gloves seem to almost meld into your hands when you don them. When a ranged weapon attack hits you while you're wearing them, you can use your reaction to reduce the damage by 1d10 + your Dexterity modifier, provided that you have a free hand. If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in that hand.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gloves-of-swimming-and-climbing", + "fields": { + "name": "Gloves of Swimming and Climbing", + "desc": "While wearing these gloves, climbing and swimming don't cost you extra movement, and you gain a +5 bonus to Strength (Athletics) checks made to climb or swim.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_goat", + "fields": { + "name": "Goat", + "desc": "One goat.", + "document": "srd", + "size": "medium", + "weight": "75.000", + "armor_class": 10, + "hit_points": 4, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_goggles-of-night", + "fields": { + "name": "Goggles of Night", + "desc": "While wearing these dark lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the goggles increases its range by 60 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gold", + "fields": { + "name": "Gold", + "desc": "1lb of gold.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gold-piece", + "fields": { + "name": "Gold Piece", + "desc": "With one gold piece, a character can buy a bedroll, 50 feet of good rope, or a goat. A skilled (but not exceptional) artisan can earn one gold piece a day. The gold piece is the standard unit of measure for wealth, even if the coin itself is not commonly used. When merchants discuss deals that involve goods or services worth hundreds or thousands of gold pieces, the transactions don't usually involve the exchange of individual coins. Rather, the gold piece is a standard measure of value, and the actual exchange is in gold bars, letters of credit, or valuable goods.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_grappling-hook", + "fields": { + "name": "Grappling hook", + "desc": "A grappling hook.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greataxe", + "fields": { + "name": "Greataxe", + "desc": "A greataxe.", + "document": "srd", + "size": "tiny", + "weight": "7.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greataxe-1", + "fields": { + "name": "Greataxe (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greataxe-2", + "fields": { + "name": "Greataxe (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greataxe-3", + "fields": { + "name": "Greataxe (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatclub", + "fields": { + "name": "Greatclub", + "desc": "A greatclub.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatclub-1", + "fields": { + "name": "Greatclub (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatclub-2", + "fields": { + "name": "Greatclub (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatclub-3", + "fields": { + "name": "Greatclub (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatsword", + "fields": { + "name": "Greatsword", + "desc": "A great sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatsword-1", + "fields": { + "name": "Greatsword (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatsword-2", + "fields": { + "name": "Greatsword (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatsword-3", + "fields": { + "name": "Greatsword (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_halberd", + "fields": { + "name": "Halberd", + "desc": "A halberd.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_halberd-1", + "fields": { + "name": "Halberd (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_halberd-2", + "fields": { + "name": "Halberd (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_halberd-3", + "fields": { + "name": "Halberd (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_half-plate", + "fields": { + "name": "Half plate", + "desc": "Half plate consists of shaped metal plates that cover most of the wearer's body. It does not include leg protection beyond simple greaves that are attached with leather straps.", + "document": "srd", + "size": "tiny", + "weight": "40.000", + "armor_class": 0, + "hit_points": 0, + "cost": "750.00", + "weapon": null, + "armor": "half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hammer", + "fields": { + "name": "Hammer", + "desc": "A hammer.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hammer-of-thunderbolts", + "fields": { + "name": "Hammer of Thunderbolts", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\n**_Giant's Bane (Requires Attunement)_**. You must be wearing a _belt of giant strength_ (any variety) and _gauntlets of ogre power_ to attune to this weapon. The attunement ends if you take off either of those items. While you are attuned to this weapon and holding it, your Strength score increases by 4 and can exceed 20, but not 30. When you roll a 20 on an attack roll made with this weapon against a giant, the giant must succeed on a DC 17 Constitution saving throw or die.\n\nThe hammer also has 5 charges. While attuned to it, you can expend 1 charge and make a ranged weapon attack with the hammer, hurling it as if it had the thrown property with a normal range of 20 feet and a long range of 60 feet. If the attack hits, the hammer unleashes a thunderclap audible out to 300 feet. The target and every creature within 30 feet of it must succeed on a DC 17 Constitution saving throw or be stunned until the end of your next turn. The hammer regains 1d4 + 1 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hammer-sledge", + "fields": { + "name": "Hammer, sledge", + "desc": "A sledgehammer", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_handaxe", + "fields": { + "name": "Handaxe", + "desc": "A handaxe.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_handaxe-1", + "fields": { + "name": "Handaxe (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_handaxe-2", + "fields": { + "name": "Handaxe (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_handaxe-3", + "fields": { + "name": "Handaxe (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_handy-haversack", + "fields": { + "name": "Handy Haversack", + "desc": "This backpack has a central pouch and two side pouches, each of which is an extradimensional space. Each side pouch can hold up to 20 pounds of material, not exceeding a volume of 2 cubic feet. The large central pouch can hold up to 8 cubic feet or 80 pounds of material. The backpack always weighs 5 pounds, regardless of its contents.\r\n\r\nPlacing an object in the haversack follows the normal rules for interacting with objects. Retrieving an item from the haversack requires you to use an action. When you reach into the haversack for a specific item, the item is always magically on top.\r\n\r\nThe haversack has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the haversack ruptures and is destroyed. If the haversack is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If the haversack is turned inside out, its contents spill forth, unharmed, and the haversack must be put right before it can be used again. If a breathing creature is placed within the haversack, the creature can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing the haversack inside an extradimensional space created by a _bag of holding_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hat-of-disguise", + "fields": { + "name": "Hat of Disguise", + "desc": "While wearing this hat, you can use an action to cast the _disguise self_ spell from it at will. The spell ends if the hat is removed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_headband-of-intellect", + "fields": { + "name": "Headband of Intellect", + "desc": "Your Intelligence score is 19 while you wear this headband. It has no effect on you if your Intelligence is already 19 or higher.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_healers-kit", + "fields": { + "name": "Healer's Kit", + "desc": "This kit is a leather pouch containing bandages, salves, and splints. The kit has ten uses. As an action, you can expend one use of the kit to stabilize a creature that has 0 hit points, without needing to make a Wisdom (Medicine) check.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_helm-of-brilliance", + "fields": { + "name": "Helm of Brilliance", + "desc": "This dazzling helm is set with 1d10 diamonds, 2d10 rubies, 3d10 fire opals, and 4d10 opals. Any gem pried from the helm crumbles to dust. When all the gems are removed or destroyed, the helm loses its magic.\r\n\r\nYou gain the following benefits while wearing it:\r\n\r\n* You can use an action to cast one of the following spells (save DC 18), using one of the helm's gems of the specified type as a component: _daylight_ (opal), _fireball_ (fire opal), _prismatic spray_ (diamond), or _wall of fire_ (ruby). The gem is destroyed when the spell is cast and disappears from the helm.\r\n* As long as it has at least one diamond, the helm emits dim light in a 30-foot radius when at least one undead is within that area. Any undead that starts its turn in that area takes 1d6 radiant damage.\r\n* As long as the helm has at least one ruby, you have resistance to fire damage.\r\n* As long as the helm has at least one fire opal, you can use an action and speak a command word to cause one weapon you are holding to burst into flames. The flames emit bright light in a 10-foot radius and dim light for an additional 10 feet. The flames are harmless to you and the weapon. When you hit with an attack using the blazing weapon, the target takes an extra 1d6 fire damage. The flames last until you use a bonus action to speak the command word again or until you drop or stow the weapon.\r\n\r\nRoll a d20 if you are wearing the helm and take fire damage as a result of failing a saving throw against a spell. On a roll of 1, the helm emits beams of light from its remaining gems. Each creature within 60 feet of the helm other than you must succeed on a DC 17 Dexterity saving throw or be struck by a beam, taking radiant damage equal to the number of gems in the helm. The helm and its gems are then destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_helm-of-comprehending-languages", + "fields": { + "name": "Helm of Comprehending Languages", + "desc": "While wearing this helm, you can use an action to cast the _comprehend languages_ spell from it at will.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_helm-of-telepathy", + "fields": { + "name": "Helm of Telepathy", + "desc": "While wearing this helm, you can use an action to cast the _detect thoughts_ spell (save DC 13) from it. As long as you maintain concentration on the spell, you can use a bonus action to send a telepathic message to a creature you are focused on. It can reply-using a bonus action to do so-while your focus on it continues.\r\n\r\nWhile focusing on a creature with _detect thoughts_, you can use an action to cast the _suggestion_ spell (save DC 13) from the helm on that creature. Once used, the _suggestion_ property can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_helm-of-teleportation", + "fields": { + "name": "Helm of Teleportation", + "desc": "This helm has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _teleport_ spell from it. The helm regains 1d3\r\n\r\nexpended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_herbalism-kit", + "fields": { + "name": "Herbalism Kit", + "desc": "This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create\r\nantitoxin and potions of healing.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hide-armor", + "fields": { + "name": "Hide Armor", + "desc": "This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.", + "document": "srd", + "size": "tiny", + "weight": "12.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_holy-avenger-greatsword", + "fields": { + "name": "Holy Avenger (Greatsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_holy-avenger-longsword", + "fields": { + "name": "Holy Avenger (Longsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_holy-avenger-rapier", + "fields": { + "name": "Holy Avenger (Rapier)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_holy-avenger-shortsword", + "fields": { + "name": "Holy Avenger (Shortsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_holy-water-flask", + "fields": { + "name": "Holy Water (flask)", + "desc": "As an action, you can splash the contents of this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact.In either case, make a ranged attack against a target creature, treating the holy water as an improvised weapon. If the target is a fiend or undead, it takes 2d6 radiant damage.\\n\\nA cleric or paladin may create holy water by performing a special ritual. The ritual takes 1 hour to perform, uses 25 gp worth of powdered silver, and requires the caster to expend a 1st-­‐‑level spell slot.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horn", + "fields": { + "name": "Horn", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "3.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horn-of-blasting", + "fields": { + "name": "Horn of Blasting", + "desc": "You can use an action to speak the horn's command word and then blow the horn, which emits a thunderous blast in a 30-foot cone that is audible 600 feet away. Each creature in the cone must make a DC 15 Constitution saving throw. On a failed save, a creature takes 5d6 thunder damage and is deafened for 1 minute. On a successful save, a creature takes half as much damage and isn't deafened. Creatures and objects made of glass or crystal have disadvantage on the saving throw and take 10d6 thunder damage instead of 5d6.\r\n\r\nEach use of the horn's magic has a 20 percent chance of causing the horn to explode. The explosion deals 10d6 fire damage to the blower and destroys the horn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-brass", + "fields": { + "name": "Horn of Valhalla (Brass)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-bronze", + "fields": { + "name": "Horn of Valhalla (Bronze)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-iron", + "fields": { + "name": "Horn of Valhalla (Iron)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-silver", + "fields": { + "name": "Horn of Valhalla (silver)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horseshoes-of-a-zephyr", + "fields": { + "name": "Horseshoes of a Zephyr", + "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they allow the creature to move normally while floating 4 inches above the ground. This effect means the creature can cross or stand above nonsolid or unstable surfaces, such as water or lava. The creature leaves no tracks and ignores difficult terrain. In addition, the creature can move at normal speed for up to 12 hours a day without suffering exhaustion from a forced march.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horseshoes-of-speed", + "fields": { + "name": "Horseshoes of Speed", + "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they increase the creature's walking speed by 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hourglass", + "fields": { + "name": "Hourglass", + "desc": "An hourglass.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hunting-trap", + "fields": { + "name": "Hunting Trap", + "desc": "When you use your action to set it, this trap forms a saw-­‐‑toothed steel ring that snaps shut when a creature steps on a pressure plate in the center. The trap is affixed by a heavy chain to an immobile object, such as a tree or a spike driven into the ground. A creature that steps on the plate must succeed on a DC 13 Dexterity saving throw or take 1d4 piercing damage and stop moving. Thereafter, until the creature breaks free of the trap, its movement is limited by the length of the chain (typically 3 feet long). A creature can use its action to make a DC 13 Strength check, freeing itself or another creature within its reach on a success. Each failed check deals 1 piercing damage to the trapped creature.", + "document": "srd", + "size": "tiny", + "weight": "25.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_immovable-rod", + "fields": { + "name": "Immovable Rod", + "desc": "This flat iron rod has a button on one end. You can use an action to press the button, which causes the rod to become magically fixed in place. Until you or another creature uses an action to push the button again, the rod doesn't move, even if it is defying gravity. The rod can hold up to 8,000 pounds of weight. More weight causes the rod to deactivate and fall. A creature can use an action to make a DC 30 Strength check, moving the fixed rod up to 10 feet on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ink-1-ounce-bottle", + "fields": { + "name": "Ink (1 ounce bottle)", + "desc": "A bottle of ink.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ink-pen", + "fields": { + "name": "Ink pen", + "desc": "A pen for writing with ink.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_instant-fortress", + "fields": { + "name": "Instant Fortress", + "desc": "You can use an action to place this 1-inch metal cube on the ground and speak its command word. The cube rapidly grows into a fortress that remains until you use an action to speak the command word that dismisses it, which works only if the fortress is empty.\r\n\r\nThe fortress is a square tower, 20 feet on a side and 30 feet high, with arrow slits on all sides and a battlement atop it. Its interior is divided into two floors, with a ladder running along one wall to connect them. The ladder ends at a trapdoor leading to the roof. When activated, the tower has a small door on the side facing you. The door opens only at your command, which you can speak as a bonus action. It is immune to the _knock_ spell and similar magic, such as that of a _chime of opening_.\r\n\r\nEach creature in the area where the fortress appears must make a DC 15 Dexterity saving throw, taking 10d10 bludgeoning damage on a failed save, or half as much damage on a successful one. In either case, the creature is pushed to an unoccupied space outside but next to the fortress. Objects in the area that aren't being worn or carried take this damage and are pushed automatically.\r\n\r\nThe tower is made of adamantine, and its magic prevents it from being tipped over. The roof, the door, and the walls each have 100 hit points,\r\n\r\nimmunity to damage from nonmagical weapons excluding siege weapons, and resistance to all other damage. Only a _wish_ spell can repair the fortress (this use of the spell counts as replicating a spell of 8th level or lower). Each casting of _wish_ causes the roof, the door, or one wall to regain 50 hit points.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-absorption", + "fields": { + "name": "Ioun Stone (Absorption)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Fortitude (Very Rare)_**. Your Constitution score increases by 2, to a maximum of 20, while this pink rhomboid orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-agility", + "fields": { + "name": "Ioun Stone (Agility)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Agility (Very Rare)._** Your Dexterity score increases by 2, to a maximum of 20, while this deep red sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-awareness", + "fields": { + "name": "Ioun Stone (Awareness)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Awareness (Rare)._** You can't be surprised while this dark blue rhomboid orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-greater-absorption", + "fields": { + "name": "Ioun Stone (Greater Absorption)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Greater Absorption (Legendary)._** While this marbled lavender and green ellipsoid orbits your head, you can use your reaction to cancel a spell of 8th level or lower cast by a creature you can see and targeting only you.\\n\\nOnce the stone has canceled 50 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-insight", + "fields": { + "name": "Ioun Stone (Insight)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Insight (Very Rare)._** Your Wisdom score increases by 2, to a maximum of 20, while this incandescent blue sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-intellect", + "fields": { + "name": "Ioun Stone (Intellect)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Intellect (Very Rare)._** Your Intelligence score increases by 2, to a maximum of 20, while this marbled scarlet and blue sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-leadership", + "fields": { + "name": "Ioun Stone (Leadership)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Leadership (Very Rare)._** Your Charisma score increases by 2, to a maximum of 20, while this marbled pink and green sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-mastery", + "fields": { + "name": "Ioun Stone (Mastery)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Mastery (Legendary)._** Your proficiency bonus increases by 1 while this pale green prism orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-protection", + "fields": { + "name": "Ioun Stone (Protection)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Protection (Rare)_**. You gain a +1 bonus to AC while this dusty rose prism orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-regeneration", + "fields": { + "name": "Ioun Stone (Regeneration)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Regeneration (Legendary)_**. You regain 15 hit points at the end of each hour this pearly white spindle orbits your head, provided that you have at least 1 hit point.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-reserve", + "fields": { + "name": "Ioun Stone (Reserve)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Reserve (Rare)._** This vibrant purple prism stores spells cast into it, holding them until you use them. The stone can store up to 3 levels worth of spells at a time. When found, it contains 1d4 - 1 levels of stored spells chosen by the GM.\\n\\nAny creature can cast a spell of 1st through 3rd level into the stone by touching it as the spell is cast. The spell has no effect, other than to be stored in the stone. If the stone can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\\n\\nWhile this stone orbits your head, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the stone is no longer stored in it, freeing up space.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-strength", + "fields": { + "name": "Ioun Stone (Strength)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Strength (Very Rare)._** Your Strength score increases by 2, to a maximum of 20, while this pale blue rhomboid orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-sustenance", + "fields": { + "name": "Ioun Stone (Sustenance)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Sustenance (Rare)._** You don't need to eat or drink while this clear spindle orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_iron", + "fields": { + "name": "Iron", + "desc": "1lb of iron.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_iron-bands-of-binding", + "fields": { + "name": "Iron Bands of Binding", + "desc": "This rusty iron sphere measures 3 inches in diameter and weighs 1 pound. You can use an action to speak the command word and throw the sphere at a Huge or smaller creature you can see within 60 feet of you. As the sphere moves through the air, it opens into a tangle of metal bands.\r\n\r\nMake a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the target is restrained until you take a bonus action to speak the command word again to release it. Doing so, or missing with the attack, causes the bands to contract and become a sphere once more.\r\n\r\nA creature, including the one restrained, can use an action to make a DC 20 Strength check to break the iron bands. On a success, the item is destroyed, and the restrained creature is freed. If the check fails, any further attempts made by that creature automatically fail until 24 hours have elapsed.\r\n\r\nOnce the bands are used, they can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_iron-flask", + "fields": { + "name": "Iron Flask", + "desc": "This iron bottle has a brass stopper. You can use an action to speak the flask's command word, targeting a creature that you can see within 60 feet of you. If the target is native to a plane of existence other than the one you're on, the target must succeed on a DC 17 Wisdom saving throw or be trapped in the flask. If the target has been trapped by the flask before, it has advantage on the saving throw. Once trapped, a creature remains in the flask until released. The flask can hold only one creature at a time. A creature trapped in the flask doesn't need to breathe, eat, or drink and doesn't age.\r\n\r\nYou can use an action to remove the flask's stopper and release the creature the flask contains. The creature is friendly to you and your companions for 1 hour and obeys your commands for that duration. If you give no commands or give it a command that is likely to result in its death, it defends itself but otherwise takes no actions. At the end of the duration, the creature acts in accordance with its normal disposition and alignment.\r\n\r\nAn _identify_ spell reveals that a creature is inside the flask, but the only way to determine the type of creature is to open the flask. A newly discovered bottle might already contain a creature chosen by the GM or determined randomly.\r\n\r\n| d100 | Contents |\r\n|-------|-------------------|\r\n| 1-50 | Empty |\r\n| 51-54 | Demon (type 1) |\r\n| 55-58 | Demon (type 2) |\r\n| 59-62 | Demon (type 3) |\r\n| 63-64 | Demon (type 4) |\r\n| 65 | Demon (type 5) |\r\n| 66 | Demon (type 6) |\r\n| 67 | Deva |\r\n| 68-69 | Devil (greater) |\r\n| 70-73 | Devil (lesser) |\r\n| 74-75 | Djinni |\r\n| 76-77 | Efreeti |\r\n| 78-83 | Elemental (any) |\r\n| 84-86 | Invisible stalker |\r\n| 87-90 | Night hag |\r\n| 91 | Planetar |\r\n| 92-95 | Salamander |\r\n| 96 | Solar |\r\n| 97-99 | Succubus/incubus |\r\n| 100 | Xorn |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_javelin", + "fields": { + "name": "Javelin", + "desc": "A javelin", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_javelin-1", + "fields": { + "name": "Javelin (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_javelin-2", + "fields": { + "name": "Javelin (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_javelin-3", + "fields": { + "name": "Javelin (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_javelin-of-lightning", + "fields": { + "name": "Javelin of Lightning", + "desc": "This javelin is a magic weapon. When you hurl it and speak its command word, it transforms into a bolt of lightning, forming a line 5 feet wide that extends out from you to a target within 120 feet. Each creature in the line excluding you and the target must make a DC 13 Dexterity saving throw, taking 4d6 lightning damage on a failed save, and half as much damage on a successful one. The lightning bolt turns back into a javelin when it reaches the target. Make a ranged weapon attack against the target. On a hit, the target takes damage from the javelin plus 4d6 lightning damage.\n\nThe javelin's property can't be used again until the next dawn. In the meantime, the javelin can still be used as a magic weapon.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_jewelers-tools", + "fields": { + "name": "Jeweler's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_jug-or-pitcher", + "fields": { + "name": "Jug or pitcher", + "desc": "For drinking a lot. Capacity: 1 gallon liquid.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_keelboat", + "fields": { + "name": "Keelboat", + "desc": "Waterborne vehicle. Speed is 1mph.", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "3000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ladder-10-foot", + "fields": { + "name": "Ladder (10-foot)", + "desc": "A 10 foot ladder.", + "document": "srd", + "size": "tiny", + "weight": "25.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lamp", + "fields": { + "name": "Lamp", + "desc": "A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lamp-oil-flask", + "fields": { + "name": "Lamp oil (flask)", + "desc": "Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon. On a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-­foot‑square area, provided that the surface is level. If lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lance", + "fields": { + "name": "Lance", + "desc": "A lance.\r\n\r\nYou have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lance-1", + "fields": { + "name": "Lance (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lance-2", + "fields": { + "name": "Lance (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lance-3", + "fields": { + "name": "Lance (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lantern-bullseye", + "fields": { + "name": "Lantern, Bullseye", + "desc": "A bullseye lantern casts bright light in a 60-­‐‑foot cone and dim light for an additional 60 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lantern-hooded", + "fields": { + "name": "Lantern, Hooded", + "desc": "A hooded lantern casts bright light in a 30-­‐‑foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil. As an action, you can lower the hood, reducing the light to dim light in a 5-­‐‑foot radius.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lantern-of-revealing", + "fields": { + "name": "Lantern of Revealing", + "desc": "While lit, this hooded lantern burns for 6 hours on 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the lantern's bright light. You can use an action to lower the hood, reducing the light to dim light in a 5* foot radius.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_leather-armor", + "fields": { + "name": "Leather Armor", + "desc": "The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": "leather", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_leatherworkers-tools", + "fields": { + "name": "Leatherworker's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_light-hammer", + "fields": { + "name": "Light hammer", + "desc": "A light hammer.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_light-hammer-1", + "fields": { + "name": "Light-Hammer (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_light-hammer-2", + "fields": { + "name": "Light-Hammer (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_light-hammer-3", + "fields": { + "name": "Light-Hammer (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_linen", + "fields": { + "name": "Linen", + "desc": "1 sq. yd. of linen.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lock", + "fields": { + "name": "Lock", + "desc": "A key is provided with the lock. Without the key, a creature proficient with thieves’ tools can pick this lock with a successful DC 15 Dexterity check. Your GM may decide that better locks are available for higher prices.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longbow", + "fields": { + "name": "Longbow", + "desc": "A longbow.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longbow-1", + "fields": { + "name": "Longbow (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longbow-2", + "fields": { + "name": "Longbow (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longbow-3", + "fields": { + "name": "Longbow (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longship", + "fields": { + "name": "Longship", + "desc": "Waterborne vehicle. Speed 3mph.", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longsword", + "fields": { + "name": "Longsword", + "desc": "A longsword", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longsword-1", + "fields": { + "name": "Longsword (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longsword-2", + "fields": { + "name": "Longsword (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longsword-3", + "fields": { + "name": "Longsword (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_luck-blade-greatsword", + "fields": { + "name": "Luck Blade (Greatsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_luck-blade-longsword", + "fields": { + "name": "Luck Blade (Longsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_luck-blade-rapier", + "fields": { + "name": "Luck Blade (Rapier)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_luck-blade-shortsword", + "fields": { + "name": "Luck Blade (Shortsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lute", + "fields": { + "name": "Lute", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "35.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lyre", + "fields": { + "name": "Lyre", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace", + "fields": { + "name": "Mace", + "desc": "A mace.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace-1", + "fields": { + "name": "Mace (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace-2", + "fields": { + "name": "Mace (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace-3", + "fields": { + "name": "Mace (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace-of-disruption", + "fields": { + "name": "Mace of Disruption", + "desc": "When you hit a fiend or an undead with this magic weapon, that creature takes an extra 2d6 radiant damage. If the target has 25 hit points or fewer after taking this damage, it must succeed on a DC 15 Wisdom saving throw or be destroyed. On a successful save, the creature becomes frightened of you until the end of your next turn.\n\nWhile you hold this weapon, it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace-of-smiting", + "fields": { + "name": "Mace of Smiting", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the mace to attack a construct.\n\nWhen you roll a 20 on an attack roll made with this weapon, the target takes an extra 2d6 bludgeoning damage, or 4d6 bludgeoning damage if it's a construct. If a construct has 25 hit points or fewer after taking this damage, it is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace-of-terror", + "fields": { + "name": "Mace of Terror", + "desc": "This magic weapon has 3 charges. While holding it, you can use an action and expend 1 charge to release a wave of terror. Each creature of your choice in a 30-foot radius extending from you must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.\n\nThe mace regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_magnifying-glass", + "fields": { + "name": "Magnifying Glass", + "desc": "This lens allows a closer look at small objects. It is also useful as a substitute for flint and steel when starting fires. Lighting a fire with a magnifying glass requires light as bright as sunlight to focus, tinder to ignite, and about 5 minutes for the fire to ignite. A magnifying glass grants advantage on any ability check made to appraise or inspect an item that is small or highly detailed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "100.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_malice", + "fields": { + "name": "Malice", + "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 1 hour. The poisoned creature is blinded.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "250.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_manacles", + "fields": { + "name": "Manacles", + "desc": "These metal restraints can bind a Small or Medium creature. Escaping the manacles requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of manacles comes with one key. Without the key, a creature proficient with thieves’ tools can pick the manacles’ lock with a successful DC 15 Dexterity check. Manacles have 15 hit points.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 15, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mantle-of-spell-resistance", + "fields": { + "name": "Mantle of Spell Resistance", + "desc": "You have advantage on saving throws against spells while you wear this cloak.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_manual-of-bodily-health", + "fields": { + "name": "Manual of Bodily Health", + "desc": "This book contains health and diet tips, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Constitution score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_manual-of-gainful-exercise", + "fields": { + "name": "Manual of Gainful Exercise", + "desc": "This book describes fitness exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Strength score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_manual-of-golems", + "fields": { + "name": "Manual of Golems", + "desc": "This tome contains information and incantations necessary to make a particular type of golem. The GM chooses the type or determines it randomly. To decipher and use the manual, you must be a spellcaster with at least two 5th-level spell slots. A creature that can't use a _manual of golems_ and attempts to read it takes 6d6 psychic damage.\r\n\r\n| d20 | Golem | Time | Cost |\r\n|-------|-------|----------|------------|\r\n| 1-5 | Clay | 30 days | 65,000 gp |\r\n| 6-17 | Flesh | 60 days | 50,000 gp |\r\n| 18 | Iron | 120 days | 100,000 gp |\r\n| 19-20 | Stone | 90 days | 80,000 gp |\r\n\r\nTo create a golem, you must spend the time shown on the table, working without interruption with the manual at hand and resting no more than 8 hours per day. You must also pay the specified cost to purchase supplies.\r\n\r\nOnce you finish creating the golem, the book is consumed in eldritch flames. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_manual-of-quickness-of-action", + "fields": { + "name": "Manual of Quickness of Action", + "desc": "This book contains coordination and balance exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Dexterity score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_marvelous-pigments", + "fields": { + "name": "Marvelous Pigments", + "desc": "Typically found in 1d4 pots inside a fine wooden box with a brush (weighing 1 pound in total), these pigments allow you to create three-dimensional objects by painting them in two dimensions. The paint flows from the brush to form the desired object as you concentrate on its image.\r\n\r\nEach pot of paint is sufficient to cover 1,000 square feet of a surface, which lets you create inanimate objects or terrain features-such as a door, a pit, flowers, trees, cells, rooms, or weapons- that are up to 10,000 cubic feet. It takes 10 minutes to cover 100 square feet.\r\n\r\nWhen you complete the painting, the object or terrain feature depicted becomes a real, nonmagical object. Thus, painting a door on a wall creates an actual door that can be opened to whatever is beyond. Painting a pit on a floor creates a real pit, and its depth counts against the total area of objects you create.\r\n\r\nNothing created by the pigments can have a value greater than 25 gp. If you paint an object of greater value (such as a diamond or a pile of gold), the object looks authentic, but close inspection reveals it is made from paste, bone, or some other worthless material.\r\n\r\nIf you paint a form of energy such as fire or lightning, the energy appears but dissipates as soon as you complete the painting, doing no harm to anything.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_masons-tools", + "fields": { + "name": "Mason's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_maul", + "fields": { + "name": "Maul", + "desc": "A maul.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_maul-1", + "fields": { + "name": "Maul (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_maul-2", + "fields": { + "name": "Maul (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_maul-3", + "fields": { + "name": "Maul (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_medallion-of-thoughts", + "fields": { + "name": "Medallion of Thoughts", + "desc": "The medallion has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _detect thoughts_ spell (save DC 13) from it. The medallion regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mess-kit", + "fields": { + "name": "Mess Kit", + "desc": "This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_midnight-tears", + "fields": { + "name": "Midnight tears", + "desc": "A creature that ingests this poison suffers no effect until the stroke of midnight. If the poison has not been neutralized before then, the creature must succeed on a DC 17 Constitution saving throw, taking 31 (9d6) poison damage on a failed save, or half as much damage on a successful one.\\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1500.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mirror-of-life-trapping", + "fields": { + "name": "Mirror of Life Trapping", + "desc": "When this 4-foot-tall mirror is viewed indirectly, its surface shows faint images of creatures. The mirror weighs 50 pounds, and it has AC 11, 10 hit points, and vulnerability to bludgeoning damage. It shatters and is destroyed when reduced to 0 hit points.\r\n\r\nIf the mirror is hanging on a vertical surface and you are within 5 feet of it, you can use an action to speak its command word and activate it. It remains activated until you use an action to speak the command word again.\r\n\r\nAny creature other than you that sees its reflection in the activated mirror while within 30 feet of it must succeed on a DC 15 Charisma saving throw or be trapped, along with anything it is wearing or carrying, in one of the mirror's twelve extradimensional cells. This saving throw is made with advantage if the creature knows the mirror's nature, and constructs succeed on the saving throw automatically.\r\n\r\nAn extradimensional cell is an infinite expanse filled with thick fog that reduces visibility to 10 feet. Creatures trapped in the mirror's cells don't age, and they don't need to eat, drink, or sleep. A creature trapped within a cell can escape using magic that permits planar travel. Otherwise, the creature is confined to the cell until freed.\r\n\r\nIf the mirror traps a creature but its twelve extradimensional cells are already occupied, the mirror frees one trapped creature at random to accommodate the new prisoner. A freed creature appears in an unoccupied space within sight of the mirror but facing away from it. If the mirror is shattered, all creatures it contains are freed and appear in unoccupied spaces near it.\r\n\r\nWhile within 5 feet of the mirror, you can use an action to speak the name of one creature trapped in it or call out a particular cell by number. The creature named or contained in the named cell appears as an image on the mirror's surface. You and the creature can then communicate normally.\r\n\r\nIn a similar way, you can use an action to speak a second command word and free one creature trapped in the mirror. The freed creature appears, along with its possessions, in the unoccupied space nearest to the mirror and facing away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mirror-steel", + "fields": { + "name": "Mirror, steel", + "desc": "A mirror.", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-breastplate", + "fields": { + "name": "Mithral Armor (Breastplate)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-chain-mail", + "fields": { + "name": "Mithral Armor (Chain-Mail)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-chain-shirt", + "fields": { + "name": "Mithral Armor (Chain-Shirt)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-half-plate", + "fields": { + "name": "Mithral Armor (Half-Plate)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "half-plate", + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-hide", + "fields": { + "name": "Mithral Armor (Hide)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-plate", + "fields": { + "name": "Mithral Armor (Plate)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-ring-mail", + "fields": { + "name": "Mithral Armor (Ring-Mail)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-scale-mail", + "fields": { + "name": "Mithral Armor (Scale-Mail)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-splint", + "fields": { + "name": "Mithral Armor (Splint)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_morningstar", + "fields": { + "name": "Morningstar", + "desc": "A morningstar", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_morningstar-1", + "fields": { + "name": "Morningstar (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_morningstar-2", + "fields": { + "name": "Morningstar (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_morningstar-3", + "fields": { + "name": "Morningstar (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_navigators-tools", + "fields": { + "name": "Navigator's tools", + "desc": "This set of instruments is used for navigation at sea. Proficiency with navigator's tools lets you chart a ship's course and follow navigation charts. In addition, these tools allow you to add your proficiency bonus to any ability check you make to avoid getting lost at sea.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_necklace-of-adaptation", + "fields": { + "name": "Necklace of Adaptation", + "desc": "While wearing this necklace, you can breathe normally in any environment, and you have advantage on saving throws made against harmful gases and vapors (such as _cloudkill_ and _stinking cloud_ effects, inhaled poisons, and the breath weapons of some dragons).", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_necklace-of-fireballs", + "fields": { + "name": "Necklace of Fireballs", + "desc": "This necklace has 1d6 + 3 beads hanging from it. You can use an action to detach a bead and throw it up to 60 feet away. When it reaches the end of its trajectory, the bead detonates as a 3rd-level _fireball_ spell (save DC 15).\r\n\r\nYou can hurl multiple beads, or even the whole necklace, as one action. When you do so, increase the level of the _fireball_ by 1 for each bead beyond the first.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_necklace-of-prayer-beads", + "fields": { + "name": "Necklace of Prayer Beads", + "desc": "This necklace has 1d4 + 2 magic beads made from aquamarine, black pearl, or topaz. It also has many nonmagical beads made from stones such as amber, bloodstone, citrine, coral, jade, pearl, or quartz. If a magic bead is removed from the necklace, that bead loses its magic.\r\n\r\nSix types of magic beads exist. The GM decides the type of each bead on the necklace or determines it randomly. A necklace can have more than one bead of the same type. To use one, you must be wearing the necklace. Each bead contains a spell that you can cast from it as a bonus action (using your spell save DC if a save is necessary). Once a magic bead's spell is cast, that bead can't be used again until the next dawn.\r\n\r\n| d20 | Bead of... | Spell |\r\n|-------|--------------|-----------------------------------------------|\r\n| 1-6 | Blessing | Bless |\r\n| 7-12 | Curing | Cure wounds (2nd level) or lesser restoration |\r\n| 13-16 | Favor | Greater restoration |\r\n| 17-18 | Smiting | Branding smite |\r\n| 19 | Summons | Planar ally |\r\n| 20 | Wind walking | Wind walk |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_net", + "fields": { + "name": "Net", + "desc": "A net.\r\n\r\nA Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net.\r\n\r\nWhen you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_net-1", + "fields": { + "name": "Net (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_net-2", + "fields": { + "name": "Net (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_net-3", + "fields": { + "name": "Net (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-greatsword", + "fields": { + "name": "Nine Lives Stealer (Greatsword)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-longsword", + "fields": { + "name": "Nine Lives Stealer (Longsword)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-rapier", + "fields": { + "name": "Nine Lives Stealer (Rapier)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-shortsword", + "fields": { + "name": "Nine Lives Stealer (Shortsword)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_oathbow", + "fields": { + "name": "Oathbow", + "desc": "When you nock an arrow on this bow, it whispers in Elvish, \"Swift defeat to my enemies.\" When you use this weapon to make a ranged attack, you can, as a command phrase, say, \"Swift death to you who have wronged me.\" The target of your attack becomes your sworn enemy until it dies or until dawn seven days later. You can have only one such sworn enemy at a time. When your sworn enemy dies, you can choose a new one after the next dawn.\n\nWhen you make a ranged attack roll with this weapon against your sworn enemy, you have advantage on the roll. In addition, your target gains no benefit from cover, other than total cover, and you suffer no disadvantage due to long range. If the attack hits, your sworn enemy takes an extra 3d6 piercing damage.\n\nWhile your sworn enemy lives, you have disadvantage on attack rolls with all other weapons.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_oil-of-etherealness", + "fields": { + "name": "Oil of Etherealness", + "desc": "Beads of this cloudy gray oil form on the outside of its container and quickly evaporate. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of the _etherealness_ spell for 1 hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_oil-of-sharpness", + "fields": { + "name": "Oil of Sharpness", + "desc": "This clear, gelatinous oil sparkles with tiny, ultrathin silver shards. The oil can coat one slashing or piercing weapon or up to 5 pieces of slashing or piercing ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical and has a +3 bonus to attack and damage rolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_oil-of-slipperiness", + "fields": { + "name": "Oil of Slipperiness", + "desc": "This sticky black unguent is thick and heavy in the container, but it flows quickly when poured. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of a _freedom of movement_ spell for 8 hours.\n\nAlternatively, the oil can be poured on the ground as an action, where it covers a 10-foot square, duplicating the effect of the _grease_ spell in that area for 8 hours.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_oil-of-taggit", + "fields": { + "name": "Oil of taggit", + "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or become poisoned for 24 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage.\\n\\n **_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "400.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_orb", + "fields": { + "name": "Orb", + "desc": "Can be used as an Arcane Focus.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_orb-of-dragonkind", + "fields": { + "name": "Orb of Dragonkind", + "desc": "Ages past, elves and humans waged a terrible war against evil dragons. When the world seemed doomed, powerful wizards came together and worked their greatest magic, forging five _Orbs of Dragonkind_ (or _Dragon Orbs_) to help them defeat the dragons. One orb was taken to each of the five wizard towers, and there they were used to speed the war toward a victorious end. The wizards used the orbs to lure dragons to them, then destroyed the dragons with powerful magic.\\n\\nAs the wizard towers fell in later ages, the orbs were destroyed or faded into legend, and only three are thought to survive. Their magic has been warped and twisted over the centuries, so although their primary purpose of calling dragons still functions, they also allow some measure of control over dragons.\\n\\nEach orb contains the essence of an evil dragon, a presence that resents any attempt to coax magic from it. Those lacking in force of personality might find themselves enslaved to an orb.\\n\\nAn orb is an etched crystal globe about 10 inches in diameter. When used, it grows to about 20 inches in diameter, and mist swirls inside it.\\n\\nWhile attuned to an orb, you can use an action to peer into the orb's depths and speak its command word. You must then make a DC 15 Charisma check. On a successful check, you control the orb for as long as you remain attuned to it. On a failed check, you become charmed by the orb for as long as you remain attuned to it.\\n\\nWhile you are charmed by the orb, you can't voluntarily end your attunement to it, and the orb casts _suggestion_ on you at will (save DC 18), urging you to work toward the evil ends it desires. The dragon essence within the orb might want many things: the annihilation of a particular people, freedom from the orb, to spread suffering in the world, to advance the worship of Tiamat, or something else the GM decides.\\n\\n**_Random Properties_**. An _Orb of Dragonkind_ has the following random properties:\\n\\n* 2 minor beneficial properties\\n* 1 minor detrimental property\\n* 1 major detrimental property\\n\\n**_Spells_**. The orb has 7 charges and regains 1d4 + 3 expended charges daily at dawn. If you control the orb, you can use an action and expend 1 or more charges to cast one of the following spells (save DC 18) from it: _cure wounds_ (5th-level version, 3 charges), _daylight_ (1 charge), _death ward_ (2 charges), or _scrying_ (3 charges).\\n\\nYou can also use an action to cast the _detect magic_ spell from the orb without using any charges.\\n\\n**_Call Dragons_**. While you control the orb, you can use an action to cause the artifact to issue a telepathic call that extends in all directions for 40 miles. Evil dragons in range feel compelled to come to the orb as soon as possible by the most direct route. Dragon deities such as Tiamat are unaffected by this call. Dragons drawn to the orb might be hostile toward you for compelling them against their will. Once you have used this property, it can't be used again for 1 hour.\\n\\n**_Destroying an Orb_**. An _Orb of Dragonkind_ appears fragile but is impervious to most damage, including the attacks and breath weapons of dragons. A _disintegrate_ spell or one good hit from a +3 magic weapon is sufficient to destroy an orb, however.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "artifact" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ox", + "fields": { + "name": "Ox", + "desc": "One ox.", + "document": "srd", + "size": "large", + "weight": "1500.000", + "armor_class": 10, + "hit_points": 15, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_padded-armor", + "fields": { + "name": "Padded Armor", + "desc": "Padded armor consists of quilted layers of cloth and batting.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": "padded", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_painters-supplies", + "fields": { + "name": "Painter's Supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pale-tincture", + "fields": { + "name": "Pale tincture", + "desc": "A creature subjected to this poison must succeed on a DC 16 Constitution saving throw or take 3 (1d6) poison damage and become poisoned. The poisoned creature must repeat the saving throw every 24 hours, taking 3 (1d6) poison damage on a failed save. Until this poison ends, the damage the poison deals can't be healed by any means. After seven successful saving throws, the effect ends and the creature can heal normally. \\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "250.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pan-flute", + "fields": { + "name": "Pan flute", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "12.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_paper-one-sheet", + "fields": { + "name": "Paper (one sheet)", + "desc": "A sheet of paper", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_parchment-one-sheet", + "fields": { + "name": "Parchment (one sheet)", + "desc": "A sheet of parchment", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pearl-of-power", + "fields": { + "name": "Pearl of Power", + "desc": "While this pearl is on your person, you can use an action to speak its command word and regain one expended spell slot. If the expended slot was of 4th level or higher, the new slot is 3rd level. Once you use the pearl, it can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pepper", + "fields": { + "name": "Pepper", + "desc": "1lb of pepper.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_perfume-vial", + "fields": { + "name": "Perfume (vial)", + "desc": "A vial of perfume.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_periapt-of-health", + "fields": { + "name": "Periapt of Health", + "desc": "You are immune to contracting any disease while you wear this pendant. If you are already infected with a disease, the effects of the disease are suppressed you while you wear the pendant.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_periapt-of-proof-against-poison", + "fields": { + "name": "Periapt of Proof against Poison", + "desc": "This delicate silver chain has a brilliant-cut black gem pendant. While you wear it, poisons have no effect on you. You are immune to the poisoned condition and have immunity to poison damage.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_periapt-of-wound-closure", + "fields": { + "name": "Periapt of Wound Closure", + "desc": "While you wear this pendant, you stabilize whenever you are dying at the start of your turn. In addition, whenever you roll a Hit Die to regain hit points, double the number of hit points it restores.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_philter-of-love", + "fields": { + "name": "Philter of Love", + "desc": "The next time you see a creature within 10 minutes after drinking this philter, you become charmed by that creature for 1 hour. If the creature is of a species and gender you are normally attracted to, you regard it as your true love while you are charmed. This potion's rose-hued, effervescent liquid contains one easy-to-miss bubble shaped like a heart.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pick-miners", + "fields": { + "name": "Pick, miner's", + "desc": "A pick for mining.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pig", + "fields": { + "name": "Pig", + "desc": "One pig.", + "document": "srd", + "size": "medium", + "weight": "400.000", + "armor_class": 10, + "hit_points": 4, + "cost": "3.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pike", + "fields": { + "name": "Pike", + "desc": "A pike.", + "document": "srd", + "size": "tiny", + "weight": "18.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pike-1", + "fields": { + "name": "Pike (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pike-2", + "fields": { + "name": "Pike (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pike-3", + "fields": { + "name": "Pike (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pipes-of-haunting", + "fields": { + "name": "Pipes of Haunting", + "desc": "You must be proficient with wind instruments to use these pipes. They have 3 charges. You can use an action to play them and expend 1 charge to create an eerie, spellbinding tune. Each creature within 30 feet of you that hears you play must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. If you wish, all creatures in the area that aren't hostile toward you automatically succeed on the saving throw. A creature that fails the saving throw can repeat it at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on its saving throw is immune to the effect of these pipes for 24 hours. The pipes regain 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pipes-of-the-sewers", + "fields": { + "name": "Pipes of the Sewers", + "desc": "You must be proficient with wind instruments to use these pipes. While you are attuned to the pipes, ordinary rats and giant rats are indifferent toward you and will not attack you unless you threaten or harm them.\r\n\r\nThe pipes have 3 charges. If you play the pipes as an action, you can use a bonus action to expend 1 to 3 charges, calling forth one swarm of rats with each expended charge, provided that enough rats are within half a mile of you to be called in this fashion (as determined by the GM). If there aren't enough rats to form a swarm, the charge is wasted. Called swarms move toward the music by the shortest available route but aren't under your control otherwise. The pipes regain 1d3 expended charges daily at dawn.\r\n\r\nWhenever a swarm of rats that isn't under another creature's control comes within 30 feet of you while you are playing the pipes, you can make a Charisma check contested by the swarm's Wisdom check. If you lose the contest, the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours. If you win the contest, the swarm is swayed by the pipes' music and becomes friendly to you and your companions for as long as you continue to play the pipes each round as an action. A friendly swarm obeys your commands. If you issue no commands to a friendly swarm, it defends itself but otherwise takes no actions. If a friendly swarm starts its turn and can't hear the pipes' music, your control over that swarm ends, and the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_piton", + "fields": { + "name": "Piton", + "desc": "A piton for climbing.", + "document": "srd", + "size": "tiny", + "weight": "0.250", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_plate-armor", + "fields": { + "name": "Plate Armor", + "desc": "Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.", + "document": "srd", + "size": "tiny", + "weight": "65.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1500.00", + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_plate-armor-of-etherealness", + "fields": { + "name": "Plate Armor of Etherealness", + "desc": "While you're wearing this armor, you can speak its command word as an action to gain the effect of the _etherealness_ spell, which last for 10 minutes or until you remove the armor or use an action to speak the command word again. This property of the armor can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "plate", + "category": "armor", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_platinum", + "fields": { + "name": "Platinum", + "desc": "1 lb. of platinum.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "500.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_platinum-piece", + "fields": { + "name": "Platinum Piece", + "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_playing-card-set", + "fields": { + "name": "Playing card set", + "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_poison-basic", + "fields": { + "name": "Poison, Basic", + "desc": "You can use the poison in this vial to coat one slashing or piercing weapon or up to three pieces of ammunition. Applying the poison takes an action. A creature hit by the poisoned weapon or ammunition must make a DC 10 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "100.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_poisoners-kit", + "fields": { + "name": "Poisoner's kit", + "desc": "A poisoner’s kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pole-10-foot", + "fields": { + "name": "Pole (10-foot)", + "desc": "A 10 foot pole.", + "document": "srd", + "size": "tiny", + "weight": "7.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_portable-hole", + "fields": { + "name": "Portable Hole", + "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold a _portable hole_ and place it on or against a solid surface, whereupon the _portable hole_ creates an extradimensional hole 10 feet deep. The cylindrical space within the hole exists on a different plane, so it can't be used to create open passages. Any creature inside an open _portable hole_ can exit the hole by climbing out of it.\r\n\r\nYou can use an action to close a _portable hole_ by taking hold of the edges of the cloth and folding it up. Folding the cloth closes the hole, and any creatures or objects within remain in the extradimensional space. No matter what's in it, the hole weighs next to nothing.\r\n\r\nIf the hole is folded up, a creature within the hole's extradimensional space can use an action to make a DC 10 Strength check. On a successful check, the creature forces its way out and appears within 5 feet of the _portable hole_ or the creature carrying it. A breathing creature within a closed _portable hole_ can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing a _portable hole_ inside an extradimensional space created by a _bag of holding_, _handy haversack_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pot-iron", + "fields": { + "name": "Pot, iron", + "desc": "An iron pot. Capacity: 1 gallon liquid.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-animal-friendship", + "fields": { + "name": "Potion of Animal Friendship", + "desc": "When you drink this potion, you can cast the _animal friendship_ spell (save DC 13) for 1 hour at will. Agitating this muddy liquid brings little bits into view: a fish scale, a hummingbird tongue, a cat claw, or a squirrel hair.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-clairvoyance", + "fields": { + "name": "Potion of Clairvoyance", + "desc": "When you drink this potion, you gain the effect of the _clairvoyance_ spell. An eyeball bobs in this yellowish liquid but vanishes when the potion is opened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-climbing", + "fields": { + "name": "Potion of Climbing", + "desc": "When you drink this potion, you gain a climbing speed equal to your walking speed for 1 hour. During this time, you have advantage on Strength (Athletics) checks you make to climb. The potion is separated into brown, silver, and gray layers resembling bands of stone. Shaking the bottle fails to mix the colors.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-cloud-giant-strength", + "fields": { + "name": "Potion of Cloud Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-diminution", + "fields": { + "name": "Potion of Diminution", + "desc": "When you drink this potion, you gain the \"reduce\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously contracts to a tiny bead and then expands to color the clear liquid around it. Shaking the bottle fails to interrupt this process.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-fire-giant-strength", + "fields": { + "name": "Potion of Fire Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-flying", + "fields": { + "name": "Potion of Flying", + "desc": "When you drink this potion, you gain a flying speed equal to your walking speed for 1 hour and can hover. If you're in the air when the potion wears off, you fall unless you have some other means of staying aloft. This potion's clear liquid floats at the top of its container and has cloudy white impurities drifting in it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-frost-giant-strength", + "fields": { + "name": "Potion of Frost Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-gaseous-form", + "fields": { + "name": "Potion of Gaseous Form", + "desc": "When you drink this potion, you gain the effect of the _gaseous form_ spell for 1 hour (no concentration required) or until you end the effect as a bonus action. This potion's container seems to hold fog that moves and pours like water.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-greater-healing", + "fields": { + "name": "Potion of Greater Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-growth", + "fields": { + "name": "Potion of Growth", + "desc": "When you drink this potion, you gain the \"enlarge\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously expands from a tiny bead to color the clear liquid around it and then contracts. Shaking the bottle fails to interrupt this process.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-healing", + "fields": { + "name": "Potion of Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-heroism", + "fields": { + "name": "Potion of Heroism", + "desc": "For 1 hour after drinking it, you gain 10 temporary hit points that last for 1 hour. For the same duration, you are under the effect of the _bless_ spell (no concentration required). This blue potion bubbles and steams as if boiling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-hill-giant-strength", + "fields": { + "name": "Potion of Hill Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-invisibility", + "fields": { + "name": "Potion of Invisibility", + "desc": "This potion's container looks empty but feels as though it holds liquid. When you drink it, you become invisible for 1 hour. Anything you wear or carry is invisible with you. The effect ends early if you attack or cast a spell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-mind-reading", + "fields": { + "name": "Potion of Mind Reading", + "desc": "When you drink this potion, you gain the effect of the _detect thoughts_ spell (save DC 13). The potion's dense, purple liquid has an ovoid cloud of pink floating in it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-poison", + "fields": { + "name": "Potion of Poison", + "desc": "This concoction looks, smells, and tastes like a _potion of healing_ or other beneficial potion. However, it is actually poison masked by illusion magic. An _identify_ spell reveals its true nature.\n\nIf you drink it, you take 3d6 poison damage, and you must succeed on a DC 13 Constitution saving throw or be poisoned. At the start of each of your turns while you are poisoned in this way, you take 3d6 poison damage. At the end of each of your turns, you can repeat the saving throw. On a successful save, the poison damage you take on your subsequent turns decreases by 1d6. The poison ends when the damage decreases to 0.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-resistance", + "fields": { + "name": "Potion of Resistance", + "desc": "When you drink this potion, you gain resistance to one type of damage for 1 hour. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-speed", + "fields": { + "name": "Potion of Speed", + "desc": "When you drink this potion, you gain the effect of the _haste_ spell for 1 minute (no concentration required). The potion's yellow fluid is streaked with black and swirls on its own.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-stone-giant-strength", + "fields": { + "name": "Potion of Stone Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-storm-giant-strength", + "fields": { + "name": "Potion of Storm Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-superior-healing", + "fields": { + "name": "Potion of Superior Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-supreme-healing", + "fields": { + "name": "Potion of Supreme Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-water-breathing", + "fields": { + "name": "Potion of Water Breathing", + "desc": "You can breathe underwater for 1 hour after drinking this potion. Its cloudy green fluid smells of the sea and has a jellyfish-like bubble floating in it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potters-tools", + "fields": { + "name": "Potter's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pouch", + "fields": { + "name": "Pouch", + "desc": "A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch (described earlier in this section).\r\nCapacity: 1/5 cubic foot/6 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_purple-worm-poison", + "fields": { + "name": "Purple worm poison", + "desc": "This poison must be harvested from a dead or incapacitated purple worm. A creature subjected to this poison must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2000.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_quarterstaff", + "fields": { + "name": "Quarterstaff", + "desc": "A quarterstaff.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_quarterstaff-1", + "fields": { + "name": "Quarterstaff (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_quarterstaff-2", + "fields": { + "name": "Quarterstaff (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_quarterstaff-3", + "fields": { + "name": "Quarterstaff (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_quiver", + "fields": { + "name": "Quiver", + "desc": "A quiver can hold up to 20 arrows.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ram-portable", + "fields": { + "name": "Ram, Portable", + "desc": "You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.", + "document": "srd", + "size": "tiny", + "weight": "35.000", + "armor_class": 0, + "hit_points": 0, + "cost": "4.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rapier", + "fields": { + "name": "Rapier", + "desc": "A rapier.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rapier-1", + "fields": { + "name": "Rapier (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rapier-2", + "fields": { + "name": "Rapier (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rapier-3", + "fields": { + "name": "Rapier (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rations-1-day", + "fields": { + "name": "Rations (1 day)", + "desc": "Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_reliquary", + "fields": { + "name": "Reliquary", + "desc": "Can be used as a holy symbol.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_restorative-ointment", + "fields": { + "name": "Restorative Ointment", + "desc": "This glass jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture that smells faintly of aloe. The jar and its contents weigh 1/2 pound.\r\n\r\nAs an action, one dose of the ointment can be swallowed or applied to the skin. The creature that receives it regains 2d8 + 2 hit points, ceases to be poisoned, and is cured of any disease.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-mail", + "fields": { + "name": "Ring mail", + "desc": "This armor is leather armor with heavy rings sewn into it. The rings help reinforce the armor against blows from swords and axes. Ring mail is inferior to chain mail, and it's usually worn only by those who can't afford better armor.", + "document": "srd", + "size": "tiny", + "weight": "40.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": "ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-animal-influence", + "fields": { + "name": "Ring of Animal Influence", + "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 of its charges to cast one of the following spells:\n\n* _Animal friendship_ (save DC 13)\n* _Fear_ (save DC 13), targeting only beasts that have an Intelligence of 3 or lower\n* _Speak with animals_", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-djinni-summoning", + "fields": { + "name": "Ring of Djinni Summoning", + "desc": "While wearing this ring, you can speak its command word as an action to summon a particular djinni from the Elemental Plane of Air. The djinni appears in an unoccupied space you choose within 120 feet of you. It remains as long as you concentrate (as if concentrating on a spell), to a maximum of 1 hour, or until it drops to 0 hit points. It then returns to its home plane.\n\nWhile summoned, the djinni is friendly to you and your companions. It obeys any commands you give it, no matter what language you use. If you fail to command it, the djinni defends itself against attackers but takes no other actions.\n\nAfter the djinni departs, it can't be summoned again for 24 hours, and the ring becomes nonmagical if the djinni dies.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-elemental-command", + "fields": { + "name": "Ring of Elemental Command", + "desc": "This ring is linked to one of the four Elemental Planes. The GM chooses or randomly determines the linked plane.\n\nWhile wearing this ring, you have advantage on attack rolls against elementals from the linked plane, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\n\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\n\n**_Ring of Air Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an air elemental. In addition, when you fall, you descend 60 feet per round and take no damage from falling. You can also speak and understand Auran.\n\nIf you help slay an air elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to lightning damage.\n* You have a flying speed equal to your walking speed and can hover.\n* You can cast the following spells from the ring, expending the necessary number of charges: _chain lightning_ (3 charges), _gust of wind_ (2 charges), or _wind wall_ (1 charge).\n\n**_Ring of Earth Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an earth elemental. In addition, you can move in difficult terrain that is composed of rubble, rocks, or dirt as if it were normal terrain. You can also speak and understand Terran.\n\nIf you help slay an earth elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to acid damage.\n* You can move through solid earth or rock as if those areas were difficult terrain. If you end your turn there, you are shunted out to the nearest unoccupied space you last occupied.\n* You can cast the following spells from the ring, expending the necessary number of charges: _stone shape_ (2 charges), _stoneskin_ (3 charges), or _wall of stone_ (3 charges).\n\n**_Ring of Fire Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a fire elemental. In addition, you have resistance to fire damage. You can also speak and understand Ignan.\n\nIf you help slay a fire elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You are immune to fire damage.\n* You can cast the following spells from the ring, expending the necessary number of charges: _burning hands_ (1 charge), _fireball_ (2 charges), and _wall of fire_ (3 charges).\n\n**_Ring of Water Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a water elemental. In addition, you can stand on and walk across liquid surfaces as if they were solid ground. You can also speak and understand Aquan.\n\nIf you help slay a water elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You can breathe underwater and have a swimming speed equal to your walking speed.\n* You can cast the following spells from the ring, expending the necessary number of charges: _create or destroy water_ (1 charge), _control water_ (3 charges), _ice storm_ (2 charges), or _wall of ice_ (3 charges).", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-evasion", + "fields": { + "name": "Ring of Evasion", + "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. When you fail a Dexterity saving throw while wearing it, you can use your reaction to expend 1 of its charges to succeed on that saving throw instead.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-feather-falling", + "fields": { + "name": "Ring of Feather Falling", + "desc": "When you fall while wearing this ring, you descend 60 feet per round and take no damage from falling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-free-action", + "fields": { + "name": "Ring of Free Action", + "desc": "While you wear this ring, difficult terrain doesn't cost you extra movement. In addition, magic can neither reduce your speed nor cause you to be paralyzed or restrained.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-invisibility", + "fields": { + "name": "Ring of Invisibility", + "desc": "While wearing this ring, you can turn invisible as an action. Anything you are wearing or carrying is invisible with you. You remain invisible until the ring is removed, until you attack or cast a spell, or until you use a bonus action to become visible again.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-jumping", + "fields": { + "name": "Ring of Jumping", + "desc": "While wearing this ring, you can cast the _jump_ spell from it as a bonus action at will, but can target only yourself when you do so.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-mind-shielding", + "fields": { + "name": "Ring of Mind Shielding", + "desc": "While wearing this ring, you are immune to magic that allows other creatures to read your thoughts, determine whether you are lying, know your alignment, or know your creature type. Creatures can telepathically communicate with you only if you allow it.\n\nYou can use an action to cause the ring to become invisible until you use another action to make it visible, until you remove the ring, or until you die.\n\nIf you die while wearing the ring, your soul enters it, unless it already houses a soul. You can remain in the ring or depart for the afterlife. As long as your soul is in the ring, you can telepathically communicate with any creature wearing it. A wearer can't prevent this telepathic communication.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-protection", + "fields": { + "name": "Ring of Protection", + "desc": "You gain a +1 bonus to AC and saving throws while wearing this ring.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-regeneration", + "fields": { + "name": "Ring of Regeneration", + "desc": "While wearing this ring, you regain 1d6 hit points every 10 minutes, provided that you have at least 1 hit point. If you lose a body part, the ring causes the missing part to regrow and return to full functionality after 1d6 + 1 days if you have at least 1 hit point the whole time.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-resistance", + "fields": { + "name": "Ring of Resistance", + "desc": "You have resistance to one damage type while wearing this ring. The gem in the ring indicates the type, which the GM chooses or determines randomly.\n\n| d10 | Damage Type | Gem |\n|-----|-------------|------------|\n| 1 | Acid | Pearl |\n| 2 | Cold | Tourmaline |\n| 3 | Fire | Garnet |\n| 4 | Force | Sapphire |\n| 5 | Lightning | Citrine |\n| 6 | Necrotic | Jet |\n| 7 | Poison | Amethyst |\n| 8 | Psychic | Jade |\n| 9 | Radiant | Topaz |\n| 10 | Thunder | Spinel |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-shooting-stars", + "fields": { + "name": "Ring of Shooting Stars", + "desc": "While wearing this ring in dim light or darkness, you can cast _dancing lights_ and _light_ from the ring at will. Casting either spell from the ring requires an action.\n\nThe ring has 6 charges for the following other properties. The ring regains 1d6 expended charges daily at dawn.\n\n**_Faerie Fire_**. You can expend 1 charge as an action to cast _faerie fire_ from the ring.\n\n**_Ball Lightning_**. You can expend 2 charges as an action to create one to four 3-foot-diameter spheres of lightning. The more spheres you create, the less powerful each sphere is individually.\n\nEach sphere appears in an unoccupied space you can see within 120 feet of you. The spheres last as long as you concentrate (as if concentrating on a spell), up to 1 minute. Each sphere sheds dim light in a 30-foot radius.\n\nAs a bonus action, you can move each sphere up to 30 feet, but no farther than 120 feet away from you. When a creature other than you comes within 5 feet of a sphere, the sphere discharges lightning at that creature and disappears. That creature must make a DC 15 Dexterity saving throw. On a failed save, the creature takes lightning damage based on the number of spheres you created.\n\n| Spheres | Lightning Damage |\n|---------|------------------|\n| 4 | 2d4 |\n| 3 | 2d6 |\n| 2 | 5d4 |\n| 1 | 4d12 |\n\n**_Shooting Stars_**. You can expend 1 to 3 charges as an action. For every charge you expend, you launch a glowing mote of light from the ring at a point you can see within 60 feet of you. Each creature within a 15-foot cube originating from that point is showered in sparks and must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-spell-storing", + "fields": { + "name": "Ring of Spell Storing", + "desc": "This ring stores spells cast into it, holding them until the attuned wearer uses them. The ring can store up to 5 levels worth of spells at a time. When found, it contains 1d6 - 1 levels of stored spells chosen by the GM.\n\nAny creature can cast a spell of 1st through 5th level into the ring by touching the ring as the spell is cast. The spell has no effect, other than to be stored in the ring. If the ring can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\n\nWhile wearing this ring, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the ring is no longer stored in it, freeing up space.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-spell-turning", + "fields": { + "name": "Ring of Spell Turning", + "desc": "While wearing this ring, you have advantage on saving throws against any spell that targets only you (not in an area of effect). In addition, if you roll a 20 for the save and the spell is 7th level or lower, the spell has no effect on you and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-swimming", + "fields": { + "name": "Ring of Swimming", + "desc": "You have a swimming speed of 40 feet while wearing this ring.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-telekinesis", + "fields": { + "name": "Ring of Telekinesis", + "desc": "While wearing this ring, you can cast the _telekinesis_ spell at will, but you can target only objects that aren't being worn or carried.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-the-ram", + "fields": { + "name": "Ring of the Ram", + "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a spectral ram's head and makes its attack roll with a +7 bonus. On a hit, for each charge you spend, the target takes 2d10 force damage and is pushed 5 feet away from you.\n\nAlternatively, you can expend 1 to 3 of the ring's charges as an action to try to break an object you can see within 60 feet of you that isn't being worn or carried. The ring makes a Strength check with a +5 bonus for each charge you spend.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-three-wishes", + "fields": { + "name": "Ring of Three Wishes", + "desc": "While wearing this ring, you can use an action to expend 1 of its 3 charges to cast the _wish_ spell from it. The ring becomes nonmagical when you use the last charge.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-warmth", + "fields": { + "name": "Ring of Warmth", + "desc": "While wearing this ring, you have resistance to cold damage. In addition, you and everything you wear and carry are unharmed by temperatures as low as -50 degrees Fahrenheit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-water-walking", + "fields": { + "name": "Ring of Water Walking", + "desc": "While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-x-ray-vision", + "fields": { + "name": "Ring of X-ray Vision", + "desc": "While wearing this ring, you can use an action to speak its command word. When you do so, you can see into and through solid matter for 1 minute. This vision has a radius of 30 feet. To you, solid objects within that radius appear transparent and don't prevent light from passing through them. The vision can penetrate 1 foot of stone, 1 inch of common metal, or up to 3 feet of wood or dirt. Thicker substances block the vision, as does a thin sheet of lead.\n\nWhenever you use the ring again before taking a long rest, you must succeed on a DC 15 Constitution saving throw or gain one level of exhaustion.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_robe-of-eyes", + "fields": { + "name": "Robe of Eyes", + "desc": "This robe is adorned with eyelike patterns. While you wear the robe, you gain the following benefits:\r\n\r\n* The robe lets you see in all directions, and you have advantage on Wisdom (Perception) checks that rely on sight.\r\n* You have darkvision out to a range of 120 feet.\r\n* You can see invisible creatures and objects, as well as see into the Ethereal Plane, out to a range of 120 feet.\r\n\r\nThe eyes on the robe can't be closed or averted. Although you can close or avert your own eyes, you are never considered to be doing so while wearing this robe.\r\n\r\nA _light_ spell cast on the robe or a _daylight_ spell cast within 5 feet of the robe causes you to be blinded for 1 minute. At the end of each of your turns, you can make a Constitution saving throw (DC 11 for _light_ or DC 15 for _daylight_), ending the blindness on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_robe-of-scintillating-colors", + "fields": { + "name": "Robe of Scintillating Colors", + "desc": "This robe has 3 charges, and it regains 1d3 expended charges daily at dawn. While you wear it, you can use an action and expend 1 charge to cause the garment to display a shifting pattern of dazzling hues until the end of your next turn. During this time, the robe sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Creatures that can see you have disadvantage on attack rolls against you. In addition, any creature in the bright light that can see you when the robe's power is activated must succeed on a DC 15 Wisdom saving throw or become stunned until the effect ends.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_robe-of-stars", + "fields": { + "name": "Robe of Stars", + "desc": "This black or dark blue robe is embroidered with small white or silver stars. You gain a +1 bonus to saving throws while you wear it.\r\n\r\nSix stars, located on the robe's upper front portion, are particularly large. While wearing this robe, you can use an action to pull off one of the stars and use it to cast _magic missile_ as a 5th-level spell. Daily at dusk, 1d6 removed stars reappear on the robe.\r\n\r\nWhile you wear the robe, you can use an action to enter the Astral Plane along with everything you are wearing and carrying. You remain there until you use an action to return to the plane you were on. You reappear in the last space you occupied, or if that space is occupied, the nearest unoccupied space.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_robe-of-the-archmagi", + "fields": { + "name": "Robe of the Archmagi", + "desc": "This elegant garment is made from exquisite cloth of white, gray, or black and adorned with silvery runes. The robe's color corresponds to the alignment for which the item was created. A white robe was made for good, gray for neutral, and black for evil. You can't attune to a _robe of the archmagi_ that doesn't correspond to your alignment.\r\n\r\nYou gain these benefits while wearing the robe:\r\n\r\n* If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* Your spell save DC and spell attack bonus each increase by 2.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_robe-of-useful-items", + "fields": { + "name": "Robe of Useful Items", + "desc": "This robe has cloth patches of various shapes and colors covering it. While wearing the robe, you can use an action to detach one of the patches, causing it to become the object or creature it represents. Once the last patch is removed, the robe becomes an ordinary garment.\r\n\r\nThe robe has two of each of the following patches:\r\n\r\n* Dagger\r\n* Bullseye lantern (filled and lit)\r\n* Steel mirror\r\n* 10-foot pole\r\n* Hempen rope (50 feet, coiled)\r\n* Sack\r\n\r\nIn addition, the robe has 4d4 other patches. The GM chooses the patches or determines them randomly.\r\n\r\n| d100 | Patch |\r\n|--------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-08 | Bag of 100 gp |\r\n| 09-15 | Silver coffer (1 foot long, 6 inches wide and deep) worth 500 gp |\r\n| 16-22 | Iron door (up to 10 feet wide and 10 feet high, barred on one side of your choice), which you can place in an opening you can reach; it conforms to fit the opening, attaching and hinging itself |\r\n| 23-30 | 10 gems worth 100 gp each |\r\n| 31-44 | Wooden ladder (24 feet long) |\r\n| 45-51 | A riding horse with saddle bags |\r\n| 52-59 | Pit (a cube 10 feet on a side), which you can place on the ground within 10 feet of you |\r\n| 60-68 | 4 potions of healing |\r\n| 69-75 | Rowboat (12 feet long) |\r\n| 76-83 | Spell scroll containing one spell of 1st to 3rd level |\r\n| 84-90 | 2 mastiffs |\r\n| 91-96 | Window (2 feet by 4 feet, up to 2 feet deep), which you can place on a vertical surface you can reach |\r\n| 97-100 | Portable ram |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_robes", + "fields": { + "name": "Robes", + "desc": "Robes, for wearing.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rod", + "fields": { + "name": "Rod", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rod-of-absorption", + "fields": { + "name": "Rod of Absorption", + "desc": "While holding this rod, you can use your reaction to absorb a spell that is targeting only you and not with an area of effect. The absorbed spell's effect is canceled, and the spell's energy-not the spell itself-is stored in the rod. The energy has the same level as the spell when it was cast. The rod can absorb and store up to 50 levels of energy over the course of its existence. Once the rod absorbs 50 levels of energy, it can't absorb more. If you are targeted by a spell that the rod can't store, the rod has no effect on that spell.\n\nWhen you become attuned to the rod, you know how many levels of energy the rod has absorbed over the course of its existence, and how many levels of spell energy it currently has stored.\n\nIf you are a spellcaster holding the rod, you can convert energy stored in it into spell slots to cast spells you have prepared or know. You can create spell slots only of a level equal to or lower than your own spell slots, up to a maximum of 5th level. You use the stored levels in place of your slots, but otherwise cast the spell as normal. For example, you can use 3 levels stored in the rod as a 3rd-level spell slot.\n\nA newly found rod has 1d10 levels of spell energy stored in it already. A rod that can no longer absorb spell energy and has no energy remaining becomes nonmagical.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rod-of-alertness", + "fields": { + "name": "Rod of Alertness", + "desc": "This rod has a flanged head and the following properties.\n\n**_Alertness_**. While holding the rod, you have advantage on Wisdom (Perception) checks and on rolls for initiative.\n\n**_Spells_**. While holding the rod, you can use an action to cast one of the following spells from it: _detect evil and good_, _detect magic_, _detect poison and disease_, or _see invisibility._\n\n**_Protective Aura_**. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's head sheds bright light in a 60-foot radius and dim light for an additional 60 feet. While in that bright light, you and any creature that is friendly to you gain a +1 bonus to AC and saving throws and can sense the location of any invisible hostile creature that is also in the bright light.\n\nThe rod's head stops glowing and the effect ends after 10 minutes, or when a creature uses an action to pull the rod from the ground. This property can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rod-of-lordly-might", + "fields": { + "name": "Rod of Lordly Might", + "desc": "This rod has a flanged head, and it functions as a magic mace that grants a +3 bonus to attack and damage rolls made with it. The rod has properties associated with six different buttons that are set in a row along the haft. It has three other properties as well, detailed below.\n\n**_Six Buttons_**. You can press one of the rod's six buttons as a bonus action. A button's effect lasts until you push a different button or until you push the same button again, which causes the rod to revert to its normal form.\n\nIf you press **button 1**, the rod becomes a _flame tongue_, as a fiery blade sprouts from the end opposite the rod's flanged head.\n\nIf you press **button 2**, the rod's flanged head folds down and two crescent-shaped blades spring out, transforming the rod into a magic battleaxe that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 3**, the rod's flanged head folds down, a spear point springs from the rod's tip, and the rod's handle lengthens into a 6-foot haft, transforming the rod into a magic spear that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 4**, the rod transforms into a climbing pole up to 50 feet long, as you specify. In surfaces as hard as granite, a spike at the bottom and three hooks at the top anchor the pole. Horizontal bars 3 inches long fold out from the sides, 1 foot apart, forming a ladder. The pole can bear up to 4,000 pounds. More weight or lack of solid anchoring causes the rod to revert to its normal form.\n\nIf you press **button 5**, the rod transforms into a handheld battering ram and grants its user a +10 bonus to Strength checks made to break through doors, barricades, and other barriers.\n\nIf you press **button 6**, the rod assumes or remains in its normal form and indicates magnetic north. (Nothing happens if this function of the rod is used in a location that has no magnetic north.) The rod also gives you knowledge of your approximate depth beneath the ground or your height above it.\n\n**_Drain Life_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target takes an extra 4d6 necrotic damage, and you regain a number of hit points equal to half that necrotic damage. This property can't be used again until the next dawn.\n\n**_Paralyze_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Strength saving throw. On a failure, the target is paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. This property can't be used again until the next dawn.\n\n**_Terrify_**. While holding the rod, you can use an action to force each creature you can see within 30 feet of you to make a DC 17 Wisdom saving throw. On a failure, a target is frightened of you for 1 minute. A frightened target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This property can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rod-of-rulership", + "fields": { + "name": "Rod of Rulership", + "desc": "You can use an action to present the rod and command obedience from each creature of your choice that you can see within 120 feet of you. Each target must succeed on a DC 15 Wisdom saving throw or be charmed by you for 8 hours. While charmed in this way, the creature regards you as its trusted leader. If harmed by you or your companions, or commanded to do something contrary to its nature, a target ceases to be charmed in this way. The rod can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rod-of-security", + "fields": { + "name": "Rod of Security", + "desc": "While holding this rod, you can use an action to activate it. The rod then instantly transports you and up to 199 other willing creatures you can see to a paradise that exists in an extraplanar space. You choose the form that the paradise takes. It could be a tranquil garden, lovely glade, cheery tavern, immense palace, tropical island, fantastic carnival, or whatever else you can imagine. Regardless of its nature, the paradise contains enough water and food to sustain its visitors. Everything else that can be interacted with inside the extraplanar space can exist only there. For example, a flower picked from a garden in the paradise disappears if it is taken outside the extraplanar space.\n\nFor each hour spent in the paradise, a visitor regains hit points as if it had spent 1 Hit Die. Also, creatures don't age while in the paradise, although time passes normally. Visitors can remain in the paradise for up to 200 days divided by the number of creatures present (round down).\n\nWhen the time runs out or you use an action to end it, all visitors reappear in the location they occupied when you activated the rod, or an unoccupied space nearest that location. The rod can't be used again until ten days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rope-hempen-50-feet", + "fields": { + "name": "Rope, hempen (50 feet)", + "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 2, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rope-of-climbing", + "fields": { + "name": "Rope of Climbing", + "desc": "This 60-foot length of silk rope weighs 3 pounds and can hold up to 3,000 pounds. If you hold one end of the rope and use an action to speak the command word, the rope animates. As a bonus action, you can command the other end to move toward a destination you choose. That end moves 10 feet on your turn when you first command it and 10 feet on each of your turns until reaching its destination, up to its maximum length away, or until you tell it to stop. You can also tell the rope to fasten itself securely to an object or to unfasten itself, to knot or unknot itself, or to coil itself for carrying.\r\n\r\nIf you tell the rope to knot, large knots appear at 1* foot intervals along the rope. While knotted, the rope shortens to a 50-foot length and grants advantage on checks made to climb it.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rope-of-entanglement", + "fields": { + "name": "Rope of Entanglement", + "desc": "This rope is 30 feet long and weighs 3 pounds. If you hold one end of the rope and use an action to speak its command word, the other end darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 15 Dexterity saving throw or become restrained.\r\n\r\nYou can release the creature by using a bonus action to speak a second command word. A target restrained by the rope can use an action to make a DC 15 Strength or Dexterity check (target's choice). On a success, the creature is no longer restrained by the rope.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rope-silk-50-feet", + "fields": { + "name": "Rope, silk (50 feet)", + "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rowboat", + "fields": { + "name": "Rowboat", + "desc": "Waterborne vehicle. Speed 1.5mph", + "document": "srd", + "size": "large", + "weight": "100.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sack", + "fields": { + "name": "Sack", + "desc": "A sack. Capacity: 1 cubic foot/30 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_saffron", + "fields": { + "name": "Saffron", + "desc": "1lb of saffron.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sailing-ship", + "fields": { + "name": "Sailing Ship", + "desc": "Waterborne vehicle. Speed 2mph", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_salt", + "fields": { + "name": "Salt", + "desc": "1lb of salt.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scale-mail", + "fields": { + "name": "Scale mail", + "desc": "This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.", + "document": "srd", + "size": "tiny", + "weight": "45.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": "scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scale-merchants", + "fields": { + "name": "Scale, Merchant's", + "desc": "A scale includes a small balance, pans, and a suitable assortment of weights up to 2 pounds. With it, you can measure the exact weight of small objects, such as raw precious metals or trade goods, to help determine their worth.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scarab-of-protection", + "fields": { + "name": "Scarab of Protection", + "desc": "If you hold this beetle-shaped medallion in your hand for 1 round, an inscription appears on its surface revealing its magical nature. It provides two benefits while it is on your person:\r\n\r\n* You have advantage on saving throws against spells.\r\n* The scarab has 12 charges. If you fail a saving throw against a necromancy spell or a harmful effect originating from an undead creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into powder and is destroyed when its last charge is expended.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scimitar", + "fields": { + "name": "Scimitar", + "desc": "A scimitar.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scimitar-1", + "fields": { + "name": "Scimitar (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scimitar-2", + "fields": { + "name": "Scimitar (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scimitar-3", + "fields": { + "name": "Scimitar (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scimitar-of-speed", + "fields": { + "name": "Scimitar of Speed", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. In addition, you can make one attack with it as a bonus action on each of your turns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sealing-wax", + "fields": { + "name": "Sealing wax", + "desc": "For sealing written letters.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_serpent-venom", + "fields": { + "name": "Serpent venom", + "desc": "This poison must be harvested from a dead or incapacitated giant poisonous snake. A creature subjected to this poison must succeed on a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shawm", + "fields": { + "name": "Shawm", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sheep", + "fields": { + "name": "Sheep", + "desc": "One sheep.", + "document": "srd", + "size": "medium", + "weight": "75.000", + "armor_class": 10, + "hit_points": 4, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shield", + "fields": { + "name": "Shield", + "desc": "A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shield-of-missile-attraction", + "fields": { + "name": "Shield of Missile Attraction", + "desc": "While holding this shield, you have resistance to damage from ranged weapon attacks.\n\n**_Curse_**. This shield is cursed. Attuning to it curses you until you are targeted by the _remove curse_ spell or similar magic. Removing the shield fails to end the curse on you. Whenever a ranged weapon attack is made against a target within 10 feet of you, the curse causes you to become the target instead.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortbow", + "fields": { + "name": "Shortbow", + "desc": "A shortbow", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortbow-1", + "fields": { + "name": "Shortbow (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortbow-2", + "fields": { + "name": "Shortbow (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortbow-3", + "fields": { + "name": "Shortbow (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortsword", + "fields": { + "name": "Shortsword", + "desc": "A short sword.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortsword-1", + "fields": { + "name": "Shortsword (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortsword-2", + "fields": { + "name": "Shortsword (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortsword-3", + "fields": { + "name": "Shortsword (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shovel", + "fields": { + "name": "Shovel", + "desc": "A shovel.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sickle", + "fields": { + "name": "Sickle", + "desc": "A sickle.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sickle-1", + "fields": { + "name": "Sickle (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sickle-2", + "fields": { + "name": "Sickle (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sickle-3", + "fields": { + "name": "Sickle (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_signal-whistle", + "fields": { + "name": "Signal whistle", + "desc": "For signalling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_signet-ring", + "fields": { + "name": "Signet Ring", + "desc": "A ring with a signet on it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_silk", + "fields": { + "name": "Silk", + "desc": "1 sq. yd. of silk.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_silver", + "fields": { + "name": "Silver", + "desc": "1lb of silver", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_silver-piece", + "fields": { + "name": "Silver Piece", + "desc": "One gold piece is worth ten silver pieces, the most prevalent coin among commoners. A silver piece buys a laborer's work for half a day, a flask of lamp oil, or a night's rest in a poor inn.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sled", + "fields": { + "name": "Sled", + "desc": "Drawn vehicle", + "document": "srd", + "size": "large", + "weight": "300.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sling", + "fields": { + "name": "Sling", + "desc": "A sling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sling-1", + "fields": { + "name": "Sling (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sling-2", + "fields": { + "name": "Sling (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sling-3", + "fields": { + "name": "Sling (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sling-bullets", + "fields": { + "name": "Sling bullets", + "desc": "Technically their cost is 20 for 4cp.", + "document": "srd", + "size": "tiny", + "weight": "0.075", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_slippers-of-spider-climbing", + "fields": { + "name": "Slippers of Spider Climbing", + "desc": "While you wear these light shoes, you can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free. You have a climbing speed equal to your walking speed. However, the slippers don't allow you to move this way on a slippery surface, such as one covered by ice or oil.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_smiths-tools", + "fields": { + "name": "Smith's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_soap", + "fields": { + "name": "Soap", + "desc": "For cleaning.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sovereign-glue", + "fields": { + "name": "Sovereign Glue", + "desc": "This viscous, milky-white substance can form a permanent adhesive bond between any two objects. It must be stored in a jar or flask that has been coated inside with _oil of slipperiness._ When found, a container contains 1d6 + 1 ounces.\r\n\r\nOne ounce of the glue can cover a 1-foot square surface. The glue takes 1 minute to set. Once it has done so, the bond it creates can be broken only by the application of _universal solvent_ or _oil of etherealness_, or with a _wish_ spell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spear", + "fields": { + "name": "Spear", + "desc": "A spear.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spear-1", + "fields": { + "name": "Spear (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spear-2", + "fields": { + "name": "Spear (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spear-3", + "fields": { + "name": "Spear (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-1st-level", + "fields": { + "name": "Spell Scroll (1st Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-2nd-level", + "fields": { + "name": "Spell Scroll (2nd Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-3rd-level", + "fields": { + "name": "Spell Scroll (3rd Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-4th-level", + "fields": { + "name": "Spell Scroll (4th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-5th-level", + "fields": { + "name": "Spell Scroll (5th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-6th-level", + "fields": { + "name": "Spell Scroll (6th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-7th-level", + "fields": { + "name": "Spell Scroll (7th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-8th-level", + "fields": { + "name": "Spell Scroll (8th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-9th-level", + "fields": { + "name": "Spell Scroll (9th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-cantrip", + "fields": { + "name": "Spell Scroll (Cantrip)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spellbook", + "fields": { + "name": "Spellbook", + "desc": "Essential for wizards, a spellbook is a leather-­‐‑bound tome with 100 blank vellum pages suitable for recording spells.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spellguard-shield", + "fields": { + "name": "Spellguard Shield", + "desc": "While holding this shield, you have advantage on saving throws against spells and other magical effects, and spell attacks have disadvantage against you.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sphere-of-annihilation", + "fields": { + "name": "Sphere of Annihilation", + "desc": "This 2-foot-diameter black sphere is a hole in the multiverse, hovering in space and stabilized by a magical field surrounding it.\r\n\r\nThe sphere obliterates all matter it passes through and all matter that passes through it. Artifacts are the exception. Unless an artifact is susceptible to damage from a _sphere of annihilation_, it passes through the sphere unscathed. Anything else that touches the sphere but isn't wholly engulfed and obliterated by it takes 4d10 force damage.\r\n\r\nThe sphere is stationary until someone controls it. If you are within 60 feet of an uncontrolled sphere, you can use an action to make a DC 25 Intelligence (Arcana) check. On a success, the sphere levitates in one direction of your choice, up to a number of feet equal to 5 × your Intelligence modifier (minimum 5 feet). On a failure, the sphere moves 10 feet toward you. A creature whose space the sphere enters must succeed on a DC 13 Dexterity saving throw or be touched by it, taking 4d10 force damage.\r\n\r\nIf you attempt to control a sphere that is under another creature's control, you make an Intelligence (Arcana) check contested by the other creature's Intelligence (Arcana) check. The winner of the contest gains control of the sphere and can levitate it as normal.\r\n\r\nIf the sphere comes into contact with a planar portal, such as that created by the _gate_ spell, or an extradimensional space, such as that within a _portable hole_, the GM determines randomly what happens, using the following table.\r\n\r\n| d100 | Result |\r\n|--------|------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-50 | The sphere is destroyed. |\r\n| 51-85 | The sphere moves through the portal or into the extradimensional space. |\r\n| 86-00 | A spatial rift sends each creature and object within 180 feet of the sphere, including the sphere, to a random plane of existence. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spike-iron", + "fields": { + "name": "Spike, iron", + "desc": "An iron spike.", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_splint-armor", + "fields": { + "name": "Splint Armor", + "desc": "This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.", + "document": "srd", + "size": "tiny", + "weight": "60.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": "splint", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sprig-of-mistletoe", + "fields": { + "name": "Sprig of mistletoe", + "desc": "A sprig of mistletoe that can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spyglass", + "fields": { + "name": "Spyglass", + "desc": "Objects viewed through a spyglass are magnified to twice their size.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1000.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff", + "fields": { + "name": "Staff", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-charming", + "fields": { + "name": "Staff of Charming", + "desc": "While holding this staff, you can use an action to expend 1 of its 10 charges to cast _charm person_, _command_, _or comprehend languages_ from it using your spell save DC. The staff can also be used as a magic quarterstaff.\n\nIf you are holding the staff and fail a saving throw against an enchantment spell that targets only you, you can turn your failed save into a successful one. You can't use this property of the staff again until the next dawn. If you succeed on a save against an enchantment spell that targets only you, with or without the staff's intervention, you can use your reaction to expend 1 charge from the staff and turn the spell back on its caster as if you had cast the spell.\n\nThe staff regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-fire", + "fields": { + "name": "Staff of Fire", + "desc": "You have resistance to fire damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _burning hands_ (1 charge), _fireball_ (3 charges), or _wall of fire_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff blackens, crumbles into cinders, and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-frost", + "fields": { + "name": "Staff of Frost", + "desc": "You have resistance to cold damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _cone of cold_ (5 charges), _fog cloud_ (1 charge), _ice storm_ (4 charges), or _wall of ice_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff turns to water and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-healing", + "fields": { + "name": "Staff of Healing", + "desc": "This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability modifier: _cure wounds_ (1 charge per spell level, up to 4th), _lesser restoration_ (2 charges), or _mass cure wounds_ (5 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-power", + "fields": { + "name": "Staff of Power", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to Armor Class, saving throws, and spell attack rolls.\n\nThe staff has 20 charges for the following properties. The staff regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses all other properties. On a 20, the staff regains 1d8 + 2 charges.\n\n**_Power Strike_**. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d6 force damage to the target.\n\n**_Spells_**. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spell attack bonus: _cone of cold_ (5 charges), _fireball_ (5th-level version, 5 charges), _globe of invulnerability_ (6 charges), _hold monster_ (5 charges), _levitate_ (2 charges), _lightning bolt_ (5th-level version, 5 charges), _magic missile_ (1 charge), _ray of enfeeblement_ (1 charge), or _wall of force_ (5 charges).\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-striking", + "fields": { + "name": "Staff of Striking", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +3 bonus to attack and damage rolls made with it.\n\nThe staff has 10 charges. When you hit with a melee attack using it, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 force damage. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-swarming-insects", + "fields": { + "name": "Staff of Swarming Insects", + "desc": "This staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of insects consumes and destroys the staff, then disperses.\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC: _giant insect_ (4 charges) or _insect plague_ (5 charges).\n\n**_Insect Cloud_**. While holding the staff, you can use an action and expend 1 charge to cause a swarm of harmless flying insects to spread out in a 30-foot radius from you. The insects remain for 10 minutes, making the area heavily obscured for creatures other than you. The swarm moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the swarm and ends the effect.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-the-magi", + "fields": { + "name": "Staff of the Magi", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls.\n\nThe staff has 50 charges for the following properties. It regains 4d6 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 20, the staff regains 1d12 + 1 charges.\n\n**_Spell Absorption_**. While holding the staff, you have advantage on saving throws against spells. In addition, you can use your reaction when another creature casts a spell that targets only you. If you do, the staff absorbs the magic of the spell, canceling its effect and gaining a number of charges equal to the absorbed spell's level. However, if doing so brings the staff's total number of charges above 50, the staff explodes as if you activated its retributive strike (see below).\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: _conjure elemental_ (7 charges), _dispel magic_ (3 charges), _fireball_ (7th-level version, 7 charges), _flaming sphere_ (2 charges), _ice storm_ (4 charges), _invisibility_ (2 charges), _knock_ (2 charges), _lightning bolt_ (7th-level version, 7 charges), _passwall_ (5 charges), _plane shift_ (7 charges), _telekinesis_ (5 charges), _wall of fire_ (4 charges), or _web_ (2 charges).\n\nYou can also use an action to cast one of the following spells from the staff without using any charges: _arcane lock_, _detect magic_, _enlarge/reduce_, _light_, _mage hand_, or _protection from evil and good._\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-the-python", + "fields": { + "name": "Staff of the Python", + "desc": "You can use an action to speak this staff's command word and throw the staff on the ground within 10 feet of you. The staff becomes a giant constrictor snake under your control and acts on its own initiative count. By using a bonus action to speak the command word again, you return the staff to its normal form in a space formerly occupied by the snake.\n\nOn your turn, you can mentally command the snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snake takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location.\n\nIf the snake is reduced to 0 hit points, it dies and reverts to its staff form. The staff then shatters and is destroyed. If the snake reverts to staff form before losing all its hit points, it regains all of them.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-the-woodlands", + "fields": { + "name": "Staff of the Woodlands", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you have a +2 bonus to spell attack rolls.\n\nThe staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff.\n\n**_Spells_**. You can use an action to expend 1 or more of the staff's charges to cast one of the following spells from it, using your spell save DC: _animal friendship_ (1 charge), _awaken_ (5 charges), _barkskin_ (2 charges), _locate animals or plants_ (2 charges), _speak with animals_ (1 charge), _speak with plants_ (3 charges), or _wall of thorns_ (6 charges).\n\nYou can also use an action to cast the _pass without trace_ spell from the staff without using any charges. **_Tree Form_**. You can use an action to plant one end of the staff in fertile earth and expend 1 charge to transform the staff into a healthy tree. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\n\nThe tree appears ordinary but radiates a faint aura of transmutation magic if targeted by _detect magic_. While touching the tree and using another action to speak its command word, you return the staff to its normal form. Any creature in the tree falls when it reverts to a staff.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-thunder-and-lightning", + "fields": { + "name": "Staff of Thunder and Lightning", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. It also has the following additional properties. When one of these properties is used, it can't be used again until the next dawn.\n\n**_Lightning_**. When you hit with a melee attack using the staff, you can cause the target to take an extra 2d6 lightning damage.\n\n**_Thunder_**. When you hit with a melee attack using the staff, you can cause the staff to emit a crack of thunder, audible out to 300 feet. The target you hit must succeed on a DC 17 Constitution saving throw or become stunned until the end of your next turn.\n\n**_Lightning Strike_**. You can use an action to cause a bolt of lightning to leap from the staff's tip in a line that is 5 feet wide and 120 feet long. Each creature in that line must make a DC 17 Dexterity saving throw, taking 9d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**_Thunderclap_**. You can use an action to cause the staff to issue a deafening thunderclap, audible out to 600 feet. Each creature within 60 feet of you (not including you) must make a DC 17 Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 1 minute. On a successful save, a creature takes half damage and isn't deafened.\n\n**_Thunder and Lightning_**. You can use an action to use the Lightning Strike and Thunderclap properties at the same time. Doing so doesn't expend the daily use of those properties, only the use of this one.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-withering", + "fields": { + "name": "Staff of Withering", + "desc": "This staff has 3 charges and regains 1d3 expended charges daily at dawn.\n\nThe staff can be wielded as a magic quarterstaff. On a hit, it deals damage as a normal quarterstaff, and you can expend 1 charge to deal an extra 2d10 necrotic damage to the target. In addition, the target must succeed on a DC 15 Constitution saving throw or have disadvantage for 1 hour on any ability check or saving throw that uses Strength or Constitution.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_stone-of-controlling-earth-elementals", + "fields": { + "name": "Stone of Controlling Earth Elementals", + "desc": "If the stone is touching the ground, you can use an action to speak its command word and summon an earth elemental, as if you had cast the _conjure elemental_ spell. The stone can't be used this way again until the next dawn. The stone weighs 5 pounds.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_stone-of-good-luck-luckstone", + "fields": { + "name": "Stone of Good Luck (Luckstone)", + "desc": "While this polished agate is on your person, you gain a +1 bonus to ability checks and saving throws.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_studded-leather-armor", + "fields": { + "name": "Studded Leather Armor", + "desc": "Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.", + "document": "srd", + "size": "tiny", + "weight": "13.000", + "armor_class": 0, + "hit_points": 0, + "cost": "45.00", + "weapon": null, + "armor": "studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sun-blade", + "fields": { + "name": "Sun Blade", + "desc": "This item appears to be a longsword hilt. While grasping the hilt, you can use a bonus action to cause a blade of pure radiance to spring into existence, or make the blade disappear. While the blade exists, this magic longsword has the finesse property. If you are proficient with shortswords or longswords, you are proficient with the _sun blade_.\n\nYou gain a +2 bonus to attack and damage rolls made with this weapon, which deals radiant damage instead of slashing damage. When you hit an undead with it, that target takes an extra 1d8 radiant damage.\n\nThe sword's luminous blade emits bright light in a 15-foot radius and dim light for an additional 15 feet. The light is sunlight. While the blade persists, you can use an action to expand or reduce its radius of bright and dim light by 5 feet each, to a maximum of 30 feet each or a minimum of 10 feet each.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-greatsword", + "fields": { + "name": "Sword of Life Stealing (Greatsword)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-longsword", + "fields": { + "name": "Sword of Life Stealing (Longsword)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-rapier", + "fields": { + "name": "Sword of Life Stealing (Rapier)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-shortsword", + "fields": { + "name": "Sword of Life Stealing (Shortsword)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-greatsword", + "fields": { + "name": "Sword of Sharpness (Greatsword)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-longsword", + "fields": { + "name": "Sword of Sharpness (Longsword)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-scimitar", + "fields": { + "name": "Sword of Sharpness (Scimitar)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-shortsword", + "fields": { + "name": "Sword of Sharpness (Shortsword)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-greatsword", + "fields": { + "name": "Sword of Wounding (Greatsword)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-longsword", + "fields": { + "name": "Sword of Wounding (Longsword)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-rapier", + "fields": { + "name": "Sword of Wounding (Rapier)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-shortsword", + "fields": { + "name": "Sword of Wounding (Shortsword)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_talisman-of-pure-good", + "fields": { + "name": "Talisman of Pure Good", + "desc": "This talisman is a mighty symbol of goodness. A creature that is neither good nor evil in alignment takes 6d6 radiant damage upon touching the talisman. An evil creature takes 8d6 radiant damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are a good cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 7 charges. If you are wearing or holding it, you can use an action to expend 1 charge from it and choose one creature you can see on the ground within 120 feet of you. If the target is of evil alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman disperses into motes of golden light and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_talisman-of-the-sphere", + "fields": { + "name": "Talisman of the Sphere", + "desc": "When you make an Intelligence (Arcana) check to control a _sphere of annihilation_ while you are holding this talisman, you double your proficiency bonus on the check. In addition, when you start your turn with control over a _sphere of annihilation_, you can use an action to levitate it 10 feet plus a number of additional feet equal to 10 × your Intelligence modifier.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_talisman-of-ultimate-evil", + "fields": { + "name": "Talisman of Ultimate Evil", + "desc": "This item symbolizes unrepentant evil. A creature that is neither good nor evil in alignment takes 6d6 necrotic damage upon touching the talisman. A good creature takes 8d6 necrotic damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are an evil cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 6 charges. If you are wearing or holding it, you can use an action to expend 1 charge from the talisman and choose one creature you can see on the ground within 120 feet of you. If the target is of good alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman dissolves into foul-smelling slime and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_tent", + "fields": { + "name": "Tent", + "desc": "A simple and portable canvas shelter, a tent sleeps two.", + "document": "srd", + "size": "tiny", + "weight": "20.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_thieves-tools", + "fields": { + "name": "Thieves' tools", + "desc": "This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-­‐‑bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_tinderbox", + "fields": { + "name": "Tinderbox", + "desc": "This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch—or anything else with abundant, exposed fuel—takes an action. Lighting any other fire takes 1 minute.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_tinkers-tools", + "fields": { + "name": "Tinker's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_tome-of-clear-thought", + "fields": { + "name": "Tome of Clear Thought", + "desc": "This book contains memory and logic exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Intelligence score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_tome-of-leadership-and-influence", + "fields": { + "name": "Tome of Leadership and Influence", + "desc": "This book contains guidelines for influencing and charming others, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Charisma score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_tome-of-understanding", + "fields": { + "name": "Tome of Understanding", + "desc": "This book contains intuition and insight exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Wisdom score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_torch", + "fields": { + "name": "Torch", + "desc": "A torch burns for 1 hour, providing bright light in a 20-­‐‑foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_torpor", + "fields": { + "name": "Torpor", + "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 4d6 hours. The poisoned creature is incapacitated.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "600.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_totem", + "fields": { + "name": "Totem", + "desc": "Can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_trident", + "fields": { + "name": "Trident", + "desc": "A trident.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_trident-1", + "fields": { + "name": "Trident (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_trident-2", + "fields": { + "name": "Trident (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_trident-3", + "fields": { + "name": "Trident (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_trident-of-fish-command", + "fields": { + "name": "Trident of Fish Command", + "desc": "This trident is a magic weapon. It has 3 charges. While you carry it, you can use an action and expend 1 charge to cast _dominate beast_ (save DC 15) from it on a beast that has an innate swimming speed. The trident regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_truth-serum", + "fields": { + "name": "Truth serum", + "desc": "A creature subjected to this poison must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. The poisoned creature can't knowingly speak a lie, as if under the effect of a zone of truth spell.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "150.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_universal-solvent", + "fields": { + "name": "Universal Solvent", + "desc": "This tube holds milky liquid with a strong alcohol smell. You can use an action to pour the contents of the tube onto a surface within reach. The liquid instantly dissolves up to 1 square foot of adhesive it touches, including _sovereign glue._", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vial", + "fields": { + "name": "Vial", + "desc": "For holding liquids. Capacity: 4 ounces liquid.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-battleaxe", + "fields": { + "name": "Vicious Weapon (Battleaxe)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-blowgun", + "fields": { + "name": "Vicious Weapon (Blowgun)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-club", + "fields": { + "name": "Vicious Weapon (Club)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-crossbow-hand", + "fields": { + "name": "Vicious Weapon (Crossbow-Hand)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-crossbow-heavy", + "fields": { + "name": "Vicious Weapon (Crossbow-Heavy)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-crossbow-light", + "fields": { + "name": "Vicious Weapon (Crossbow-Light)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-dagger", + "fields": { + "name": "Vicious Weapon (Dagger)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-dart", + "fields": { + "name": "Vicious Weapon (Dart)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-flail", + "fields": { + "name": "Vicious Weapon (Flail)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-glaive", + "fields": { + "name": "Vicious Weapon (Glaive)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-greataxe", + "fields": { + "name": "Vicious Weapon (Greataxe)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-greatclub", + "fields": { + "name": "Vicious Weapon (Greatclub)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-greatsword", + "fields": { + "name": "Vicious Weapon (Greatsword)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-halberd", + "fields": { + "name": "Vicious Weapon (Halberd)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-handaxe", + "fields": { + "name": "Vicious Weapon (Handaxe)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-javelin", + "fields": { + "name": "Vicious Weapon (Javelin)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-lance", + "fields": { + "name": "Vicious Weapon (Lance)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-light-hammer", + "fields": { + "name": "Vicious Weapon (Light-Hammer)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-longbow", + "fields": { + "name": "Vicious Weapon (Longbow)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-longsword", + "fields": { + "name": "Vicious Weapon (Longsword)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-mace", + "fields": { + "name": "Vicious Weapon (Mace)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-maul", + "fields": { + "name": "Vicious Weapon (Maul)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-morningstar", + "fields": { + "name": "Vicious Weapon (Morningstar)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-net", + "fields": { + "name": "Vicious Weapon (Net)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-pike", + "fields": { + "name": "Vicious Weapon (Pike)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-quarterstaff", + "fields": { + "name": "Vicious Weapon (Quarterstaff)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-rapier", + "fields": { + "name": "Vicious Weapon (Rapier)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-scimitar", + "fields": { + "name": "Vicious Weapon (Scimitar)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-shortbow", + "fields": { + "name": "Vicious Weapon (Shortbow)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-shortsword", + "fields": { + "name": "Vicious Weapon (Shortsword)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-sickle", + "fields": { + "name": "Vicious Weapon (Sickle)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-sling", + "fields": { + "name": "Vicious Weapon (Sling)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-spear", + "fields": { + "name": "Vicious Weapon (Spear)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-trident", + "fields": { + "name": "Vicious Weapon (Trident)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-war-pick", + "fields": { + "name": "Vicious Weapon (War-Pick)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-warhammer", + "fields": { + "name": "Vicious Weapon (Warhammer)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-whip", + "fields": { + "name": "Vicious Weapon (Whip)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_viol", + "fields": { + "name": "Viol", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vorpal-sword-greatsword", + "fields": { + "name": "Vorpal Sword (Greatsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vorpal-sword-longsword", + "fields": { + "name": "Vorpal Sword (Longsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vorpal-sword-scimitar", + "fields": { + "name": "Vorpal Sword (Scimitar)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vorpal-sword-shortsword", + "fields": { + "name": "Vorpal Sword (Shortsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wagon", + "fields": { + "name": "Wagon", + "desc": "Drawn vehicle.", + "document": "srd", + "size": "large", + "weight": "400.000", + "armor_class": 0, + "hit_points": 0, + "cost": "35.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand", + "fields": { + "name": "Wand", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-binding", + "fields": { + "name": "Wand of Binding", + "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Spells_**. While holding the wand, you can use an action to expend some of its charges to cast one of the following spells (save DC 17): _hold monster_ (5 charges) or _hold person_ (2 charges).\n\n**_Assisted Escape_**. While holding the wand, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained, or you can expend 1 charge and gain advantage on any check you make to escape a grapple.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-enemy-detection", + "fields": { + "name": "Wand of Enemy Detection", + "desc": "This wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For the next minute, you know the direction of the nearest creature hostile to you within 60 feet, but not its distance from you. The wand can sense the presence of hostile creatures that are ethereal, invisible, disguised, or hidden, as well as those in plain sight. The effect ends if you stop holding the wand.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-fear", + "fields": { + "name": "Wand of Fear", + "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Command_**. While holding the wand, you can use an action to expend 1 charge and command another creature to flee or grovel, as with the _command_ spell (save DC 15).\n\n**_Cone of Fear_**. While holding the wand, you can use an action to expend 2 charges, causing the wand's tip to emit a 60-foot cone of amber light. Each creature in the cone must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-fireballs", + "fields": { + "name": "Wand of Fireballs", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _fireball_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-lightning-bolts", + "fields": { + "name": "Wand of Lightning Bolts", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _lightning bolt_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-magic-detection", + "fields": { + "name": "Wand of Magic Detection", + "desc": "This wand has 3 charges. While holding it, you can expend 1 charge as an action to cast the _detect magic_ spell from it. The wand regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-magic-missiles", + "fields": { + "name": "Wand of Magic Missiles", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _magic missile_ spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-paralysis", + "fields": { + "name": "Wand of Paralysis", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cause a thin blue ray to streak from the tip toward a creature you can see within 60 feet of you. The target must succeed on a DC 15 Constitution saving throw or be paralyzed for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a success.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-polymorph", + "fields": { + "name": "Wand of Polymorph", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _polymorph_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-secrets", + "fields": { + "name": "Wand of Secrets", + "desc": "The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges, and if a secret door or trap is within 30 feet of you, the wand pulses and points at the one nearest to you. The wand regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-the-war-mage-1", + "fields": { + "name": "Wand of the War Mage (+1)", + "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-the-war-mage-2", + "fields": { + "name": "Wand of the War Mage (+2)", + "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-the-war-mage-3", + "fields": { + "name": "Wand of the War Mage (+3)", + "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-web", + "fields": { + "name": "Wand of Web", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _web_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-wonder", + "fields": { + "name": "Wand of Wonder", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and choose a target within 120 feet of you. The target can be a creature, an object, or a point in space. Roll d100 and consult the following table to discover what happens.\n\nIf the effect causes you to cast a spell from the wand, the spell's save DC is 15. If the spell normally has a range expressed in feet, its range becomes 120 feet if it isn't already.\n\nIf an effect covers an area, you must center the spell on and include the target. If an effect has multiple possible subjects, the GM randomly determines which ones are affected.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into dust and is destroyed.\n\n| d100 | Effect |\n|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| 01-05 | You cast slow. 06-10 You cast faerie fire. |\n| 11-15 | You are stunned until the start of your next turn, believing something awesome just happened. 16-20 You cast gust of wind. |\n| 21-25 | You cast detect thoughts on the target you chose. If you didn't target a creature, you instead take 1d6 psychic damage. |\n| 26-30 | You cast stinking cloud. |\n| 31-33 | Heavy rain falls in a 60-foot radius centered on the target. The area becomes lightly obscured. The rain falls until the start of your next turn. |\n| 34-36 | An animal appears in the unoccupied space nearest the target. The animal isn't under your control and acts as it normally would. Roll a d100 to determine which animal appears. On a 01-25, a rhinoceros appears; on a 26-50, an elephant appears; and on a 51-100, a rat appears. |\n| 37-46 | You cast lightning bolt. |\n| 47-49 | A cloud of 600 oversized butterflies fills a 30-foot radius centered on the target. The area becomes heavily obscured. The butterflies remain for 10 minutes. |\n| 50-53 | You enlarge the target as if you had cast enlarge/reduce. If the target can't be affected by that spell, or if you didn't target a creature, you become the target. |\n| 54-58 | You cast darkness. |\n| 59-62 | Grass grows on the ground in a 60-foot radius centered on the target. If grass is already there, it grows to ten times its normal size and remains overgrown for 1 minute. |\n| 63-65 | An object of the GM's choice disappears into the Ethereal Plane. The object must be neither worn nor carried, within 120 feet of the target, and no larger than 10 feet in any dimension. |\n| 66-69 | You shrink yourself as if you had cast enlarge/reduce on yourself. |\n| 70-79 | You cast fireball. |\n| 80-84 | You cast invisibility on yourself. |\n| 85-87 | Leaves grow from the target. If you chose a point in space as the target, leaves sprout from the creature nearest to that point. Unless they are picked off, the leaves turn brown and fall off after 24 hours. |\n| 88-90 | A stream of 1d4 × 10 gems, each worth 1 gp, shoots from the wand's tip in a line 30 feet long and 5 feet wide. Each gem deals 1 bludgeoning damage, and the total damage of the gems is divided equally among all creatures in the line. |\n| 91-95 | A burst of colorful shimmering light extends from you in a 30-foot radius. You and each creature in the area that can see must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. |\n| 96-97 | The target's skin turns bright blue for 1d10 days. If you chose a point in space, the creature nearest to that point is affected. |\n| 98-100 | If you targeted a creature, it must make a DC 15 Constitution saving throw. If you didn't target a creature, you become the target and must make the saving throw. If the saving throw fails by 5 or more, the target is instantly petrified. On any other failed save, the target is restrained and begins to turn to stone. While restrained in this way, the target must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the target is freed by the greater restoration spell or similar magic. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_war-pick", + "fields": { + "name": "War pick", + "desc": "A war pick.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_war-pick-1", + "fields": { + "name": "War-Pick (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_war-pick-2", + "fields": { + "name": "War-Pick (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_war-pick-3", + "fields": { + "name": "War-Pick (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_warhammer", + "fields": { + "name": "Warhammer", + "desc": "A warhammer.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_warhammer-1", + "fields": { + "name": "Warhammer (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_warhammer-2", + "fields": { + "name": "Warhammer (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_warhammer-3", + "fields": { + "name": "Warhammer (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_warship", + "fields": { + "name": "Warship", + "desc": "Waterborne vehicle. Speed 2.5mph", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_waterskin", + "fields": { + "name": "Waterskin", + "desc": "For drinking. 5lb is the full weight. Capacity: 4 pints liquid.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_weavers-tools", + "fields": { + "name": "Weaver's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_well-of-many-worlds", + "fields": { + "name": "Well of Many Worlds", + "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold and place the _well of many worlds_ on a solid surface, whereupon it creates a two-way portal to another world or plane of existence. Each time the item opens a portal, the GM decides where it leads. You can use an action to close an open portal by taking hold of the edges of the cloth and folding it up. Once _well of many worlds_ has opened a portal, it can't do so again for 1d8 hours.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wheat", + "fields": { + "name": "Wheat", + "desc": "1 pound of wheat.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_whetstone", + "fields": { + "name": "Whetstone", + "desc": "For sharpening.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_whip", + "fields": { + "name": "Whip", + "desc": "A whip.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_whip-1", + "fields": { + "name": "Whip (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_whip-2", + "fields": { + "name": "Whip (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_whip-3", + "fields": { + "name": "Whip (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wind-fan", + "fields": { + "name": "Wind Fan", + "desc": "While holding this fan, you can use an action to cast the _gust of wind_ spell (save DC 13) from it. Once used, the fan shouldn't be used again until the next dawn. Each time it is used again before then, it has a cumulative 20 percent chance of not working and tearing into useless, nonmagical tatters.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_winged-boots", + "fields": { + "name": "Winged Boots", + "desc": "While you wear these boots, you have a flying speed equal to your walking speed. You can use the boots to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land.\r\n\r\nThe boots regain 2 hours of flying capability for every 12 hours they aren't in use.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wings-of-flying", + "fields": { + "name": "Wings of Flying", + "desc": "While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of bat wings or bird wings on your back for 1 hour or until you repeat the command word as an action. The wings give you a flying speed of 60 feet. When they disappear, you can't use them again for 1d12 hours.\r\n\r\n\r\n\r\n\r\n## Sentient Magic Items\r\n\r\nSome magic items possess sentience and personality. Such an item might be possessed, haunted by the spirit of a previous owner, or self-aware thanks to the magic used to create it. In any case, the item behaves like a character, complete with personality quirks, ideals, bonds, and sometimes flaws. A sentient item might be a cherished ally to its wielder or a continual thorn in the side.\r\n\r\nMost sentient items are weapons. Other kinds of items can manifest sentience, but consumable items such as potions and scrolls are never sentient.\r\n\r\nSentient magic items function as NPCs under the GM's control. Any activated property of the item is under the item's control, not its wielder's. As long as the wielder maintains a good relationship with the item, the wielder can access those properties normally. If the relationship is strained, the item can suppress its activated properties or even turn them against the wielder.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_woodcarvers-tools", + "fields": { + "name": "Woodcarver's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wooden-staff", + "fields": { + "name": "Wooden staff", + "desc": "Can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "quarterstaff", + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wyvern-poison", + "fields": { + "name": "Wyvern poison", + "desc": "This poison must be harvested from a dead or incapacitated wyvern. A creature subjected to this poison must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_yew-wand", + "fields": { + "name": "Yew wand", + "desc": "Can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": null + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/ItemSet.json b/data/v2/wizards-of-the-coast/srd/ItemSet.json index 4fe8726d..af2a126a 100644 --- a/data/v2/wizards-of-the-coast/srd/ItemSet.json +++ b/data/v2/wizards-of-the-coast/srd/ItemSet.json @@ -1,371 +1,371 @@ [ - { - "model": "api_v2.itemset", - "pk": "arcane-focuses", - "fields": { - "name": "Arcane Focuses", - "desc": "An arcane focus is a special item - an orb, a crystal, a rod, a specially constructed staff, a wand-­like length of wood, or some similar item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus.", - "document": "srd", - "items": [ - "srd_crystal", - "srd_orb", - "srd_rod", - "srd_staff", - "srd_wand" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "artisans-tools", - "fields": { - "name": "Artisan's tools", - "desc": "These special tools include the items needed to pursue a craft or trade. The table shows examples of the most common types of tools, each providing items related to a single craft. Proficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "items": [ - "srd_alchemists-supplies", - "srd_brewers-supplies", - "srd_calligraphers-supplies", - "srd_carpenters-tools", - "srd_cartographers-tools", - "srd_cobblers-tools", - "srd_cooks-utensils", - "srd_disguise-kit", - "srd_forgery-kit", - "srd_glassblowers-tools", - "srd_jewelers-tools", - "srd_leatherworkers-tools", - "srd_masons-tools", - "srd_painters-supplies", - "srd_potters-tools", - "srd_smiths-tools", - "srd_tinkers-tools", - "srd_weavers-tools", - "srd_woodcarvers-tools" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "burglars-pack", - "fields": { - "name": "Burglar's Pack", - "desc": "Includes a backpack, a bag of 1,000 ball bearings, 10 feet of string, a bell, 5 candles, a crowbar, a hammer, 10 pitons, a hooded lantern, 2 flasks of oil, 5 days rations, a tinderbox, and a waterskin. The pack also has 50 feet of hempen rope strapped to the side of it.", - "document": "srd", - "items": [ - "srd_backpack", - "srd_ball-bearings-bag-of-1000", - "srd_candle", - "srd_crowbar", - "srd_hammer", - "srd_lamp-oil-flask", - "srd_lantern-hooded", - "srd_rations-1-day", - "srd_rope-hempen-50-feet", - "srd_tinderbox", - "srd_waterskin" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "diplomats-pack", - "fields": { - "name": "Diplomat's Pack", - "desc": "Includes a chest, 2 cases for maps and scrolls, a set of fine clothes, a bottle of ink, an ink pen, a lamp, 2 flasks of oil, 5 sheets of paper, a vial of perfume, sealing wax, and soap.", - "document": "srd", - "items": [ - "srd_case-map-or-scroll", - "srd_chest", - "srd_clothes-fine", - "srd_ink-1-ounce-bottle", - "srd_ink-pen", - "srd_lamp", - "srd_lamp-oil-flask", - "srd_paper-one-sheet", - "srd_perfume-vial", - "srd_sealing-wax", - "srd_soap" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "druidic-focuses", - "fields": { - "name": "Druidic Focuses", - "desc": "A druidic focus might be a sprig of mistletoe or holly, a wand or scepter made of yew or another special wood, a staff drawn whole out of a living tree, or a totem object incorporating feathers, fur, bones, and teeth from sacred animals. A druid can use such an object as a spellcasting focus.", - "document": "srd", - "items": [ - "srd_sprig-of-mistletoe", - "srd_totem", - "srd_wooden-staff", - "srd_yew-wand" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "dungeoneers-pack", - "fields": { - "name": "Dungeoneer's Pack", - "desc": "Includes a backpack, a crowbar, a hammer, 10 pitons, 10 torches, a tinderbox, 10 days of rations, and a waterskin. The pack also has 50 feet of hempen rope strapped to the side of it.", - "document": "srd", - "items": [ - "srd_backpack", - "srd_crowbar", - "srd_hammer", - "srd_piton", - "srd_rations-1-day", - "srd_rope-hempen-50-feet", - "srd_tinderbox", - "srd_torch", - "srd_waterskin" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "entertainers-pack", - "fields": { - "name": "Entertainer's Pack", - "desc": "Includes a backpack, a bedroll, 2 costumes, 5 candles, 5 days of rations, a waterskin, and a disguise kit.", - "document": "srd", - "items": [ - "srd_backpack", - "srd_bedroll", - "srd_candle", - "srd_clothes-costume", - "srd_disguise-kit", - "srd_rations-1-day", - "srd_waterskin" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "explorers-pack", - "fields": { - "name": "Explorer's Pack", - "desc": "Includes a backpack, a bedroll, a mess kit, a tinderbox, 10 torches, 10 days of rations, and a waterskin. The pack also has 50 feet of hempen rope strapped to the side of it.", - "document": "srd", - "items": [ - "srd_backpack", - "srd_bedroll", - "srd_mess-kit", - "srd_rations-1-day", - "srd_rope-hempen-50-feet", - "srd_tinderbox", - "srd_torch", - "srd_waterskin" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "gaming-sets", - "fields": { - "name": "Gaming set", - "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", - "document": "srd", - "items": [ - "srd_dice-set", - "srd_playing-card-set" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "heavy-armor", - "fields": { - "name": "Heavy Armor", - "desc": "Of all the armor categories, heavy armor offers the best protection. These suits of armor cover the entire body and are designed to stop a wide range of attacks. Only proficient warriors can manage their weight and bulk.\r\n\r\nHeavy armor doesn't let you add your Dexterity modifier to your Armor Class, but it also doesn't penalize you if your Dexterity modifier is negative.", - "document": "srd", - "items": [ - "srd_chain-mail", - "srd_plate-armor", - "srd_ring-mail", - "srd_splint-armor" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "holy-symbols", - "fields": { - "name": "Holy Symbols", - "desc": "A holy symbol is a representation of a god or pantheon. It might be an amulet depicting a symbol representing a deity, the same symbol carefully engraved or inlaid as an emblem on a shield, or a tiny box holding a fragment of a sacred relic. Appendix PH-­‐‑B \"Fantasy-­‐‑Historical Pantheons\" lists the symbols commonly associated with many gods in the multiverse. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.", - "document": "srd", - "items": [ - "srd_amulet", - "srd_emblem", - "srd_reliquary" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "light-armor", - "fields": { - "name": "Light Armor", - "desc": "Made from supple and thin materials, light armor favors agile adventurers since it offers some protection without sacrificing mobility. If you wear light armor, you add your Dexterity modifier to the base number from your armor type to determine your Armor Class.", - "document": "srd", - "items": [ - "srd_leather-armor", - "srd_padded-armor", - "srd_studded-leather-armor" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "martial-melee-weapons", - "fields": { - "name": "Martial Melee Weapons", - "desc": "Martial weapons, including swords, axes, and polearms, require more specialized training to use effectively. Most warriors use martial weapons because these weapons put their fighting style and training to best use.", - "document": "srd", - "items": [ - "srd_battleaxe", - "srd_flail", - "srd_glaive", - "srd_greataxe", - "srd_greatsword", - "srd_halberd", - "srd_lance", - "srd_longsword", - "srd_maul", - "srd_morningstar", - "srd_pike", - "srd_rapier", - "srd_scimitar", - "srd_shortsword", - "srd_trident", - "srd_war-pick", - "srd_warhammer", - "srd_whip" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "martial-ranged-weapons", - "fields": { - "name": "Martial Ranged Weapons", - "desc": "Martial weapons, including swords, axes, and polearms, require more specialized training to use effectively. Most warriors use martial weapons because these weapons put their fighting style and training to best use.", - "document": "srd", - "items": [ - "srd_blowgun", - "srd_crossbow-hand", - "srd_crossbow-heavy", - "srd_longbow", - "srd_net" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "medium-armor", - "fields": { - "name": "Medium Armor", - "desc": "Medium armor offers more protection than light armor, but it also impairs movement more. If you wear medium armor, you add your Dexterity modifier, to a maximum of +2, to the base number from your armor type to determine your Armor Class.", - "document": "srd", - "items": [ - "srd_breastplate", - "srd_chain-shirt", - "srd_half-plate", - "srd_hide-armor", - "srd_scale-mail" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "musical-instruments", - "fields": { - "name": "Musical instruments", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "items": [ - "srd_bagpipes", - "srd_drum", - "srd_dulcimer", - "srd_flute", - "srd_horn", - "srd_lute", - "srd_lyre", - "srd_pan-flute", - "srd_shawm", - "srd_viol" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "priests-pack", - "fields": { - "name": "Priest's Pack", - "desc": "Includes a backpack, a blanket, 10 candles, a tinderbox, an alms box, 2 blocks of incense, a censer, vestments, 2 days of rations, and a waterskin.", - "document": "srd", - "items": [ - "srd_backpack", - "srd_blanket", - "srd_candle", - "srd_rations-1-day", - "srd_tinderbox", - "srd_waterskin" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "scholars-pack", - "fields": { - "name": "Scholar's Pack", - "desc": "Includes a backpack, a book of lore, a bottle of ink, an ink pen, 10 sheets of parchment, a little bag of sand, and a small knife.", - "document": "srd", - "items": [ - "srd_backpack", - "srd_book", - "srd_ink-1-ounce-bottle", - "srd_ink-pen", - "srd_parchment-one-sheet" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "simple-melee-weapons", - "fields": { - "name": "Simple Melee Weapons", - "desc": "Most people can use simple weapons with proficiency. These weapons include clubs, maces, and other weapons often found in the hands of commoners.", - "document": "srd", - "items": [ - "srd_club", - "srd_dagger", - "srd_greatclub", - "srd_handaxe", - "srd_javelin", - "srd_light-hammer", - "srd_mace", - "srd_quarterstaff", - "srd_sickle", - "srd_spear" - ] - } - }, - { - "model": "api_v2.itemset", - "pk": "simple-ranged-weapons", - "fields": { - "name": "Simple Ranged Weapons", - "desc": "Most people can use simple weapons with proficiency.", - "document": "srd", - "items": [ - "srd_crossbow-light", - "srd_dart", - "srd_shortbow", - "srd_sling" - ] - } +{ + "model": "api_v2.itemset", + "pk": "arcane-focuses", + "fields": { + "name": "Arcane Focuses", + "desc": "An arcane focus is a special item - an orb, a crystal, a rod, a specially constructed staff, a wand-­like length of wood, or some similar item designed to channel the power of arcane spells. A sorcerer, warlock, or wizard can use such an item as a spellcasting focus.", + "document": "srd", + "items": [ + "srd_crystal", + "srd_orb", + "srd_rod", + "srd_staff", + "srd_wand" + ] } -] \ No newline at end of file +}, +{ + "model": "api_v2.itemset", + "pk": "artisans-tools", + "fields": { + "name": "Artisan's tools", + "desc": "These special tools include the items needed to pursue a craft or trade. The table shows examples of the most common types of tools, each providing items related to a single craft. Proficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "items": [ + "srd_alchemists-supplies", + "srd_brewers-supplies", + "srd_calligraphers-supplies", + "srd_carpenters-tools", + "srd_cartographers-tools", + "srd_cobblers-tools", + "srd_cooks-utensils", + "srd_disguise-kit", + "srd_forgery-kit", + "srd_glassblowers-tools", + "srd_jewelers-tools", + "srd_leatherworkers-tools", + "srd_masons-tools", + "srd_painters-supplies", + "srd_potters-tools", + "srd_smiths-tools", + "srd_tinkers-tools", + "srd_weavers-tools", + "srd_woodcarvers-tools" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "burglars-pack", + "fields": { + "name": "Burglar's Pack", + "desc": "Includes a backpack, a bag of 1,000 ball bearings, 10 feet of string, a bell, 5 candles, a crowbar, a hammer, 10 pitons, a hooded lantern, 2 flasks of oil, 5 days rations, a tinderbox, and a waterskin. The pack also has 50 feet of hempen rope strapped to the side of it.", + "document": "srd", + "items": [ + "srd_backpack", + "srd_ball-bearings-bag-of-1000", + "srd_candle", + "srd_crowbar", + "srd_hammer", + "srd_lamp-oil-flask", + "srd_lantern-hooded", + "srd_rations-1-day", + "srd_rope-hempen-50-feet", + "srd_tinderbox", + "srd_waterskin" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "diplomats-pack", + "fields": { + "name": "Diplomat's Pack", + "desc": "Includes a chest, 2 cases for maps and scrolls, a set of fine clothes, a bottle of ink, an ink pen, a lamp, 2 flasks of oil, 5 sheets of paper, a vial of perfume, sealing wax, and soap.", + "document": "srd", + "items": [ + "srd_case-map-or-scroll", + "srd_chest", + "srd_clothes-fine", + "srd_ink-1-ounce-bottle", + "srd_ink-pen", + "srd_lamp", + "srd_lamp-oil-flask", + "srd_paper-one-sheet", + "srd_perfume-vial", + "srd_sealing-wax", + "srd_soap" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "druidic-focuses", + "fields": { + "name": "Druidic Focuses", + "desc": "A druidic focus might be a sprig of mistletoe or holly, a wand or scepter made of yew or another special wood, a staff drawn whole out of a living tree, or a totem object incorporating feathers, fur, bones, and teeth from sacred animals. A druid can use such an object as a spellcasting focus.", + "document": "srd", + "items": [ + "srd_sprig-of-mistletoe", + "srd_totem", + "srd_wooden-staff", + "srd_yew-wand" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "dungeoneers-pack", + "fields": { + "name": "Dungeoneer's Pack", + "desc": "Includes a backpack, a crowbar, a hammer, 10 pitons, 10 torches, a tinderbox, 10 days of rations, and a waterskin. The pack also has 50 feet of hempen rope strapped to the side of it.", + "document": "srd", + "items": [ + "srd_backpack", + "srd_crowbar", + "srd_hammer", + "srd_piton", + "srd_rations-1-day", + "srd_rope-hempen-50-feet", + "srd_tinderbox", + "srd_torch", + "srd_waterskin" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "entertainers-pack", + "fields": { + "name": "Entertainer's Pack", + "desc": "Includes a backpack, a bedroll, 2 costumes, 5 candles, 5 days of rations, a waterskin, and a disguise kit.", + "document": "srd", + "items": [ + "srd_backpack", + "srd_bedroll", + "srd_candle", + "srd_clothes-costume", + "srd_disguise-kit", + "srd_rations-1-day", + "srd_waterskin" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "explorers-pack", + "fields": { + "name": "Explorer's Pack", + "desc": "Includes a backpack, a bedroll, a mess kit, a tinderbox, 10 torches, 10 days of rations, and a waterskin. The pack also has 50 feet of hempen rope strapped to the side of it.", + "document": "srd", + "items": [ + "srd_backpack", + "srd_bedroll", + "srd_mess-kit", + "srd_rations-1-day", + "srd_rope-hempen-50-feet", + "srd_tinderbox", + "srd_torch", + "srd_waterskin" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "gaming-sets", + "fields": { + "name": "Gaming set", + "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", + "document": "srd", + "items": [ + "srd_dice-set", + "srd_playing-card-set" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "heavy-armor", + "fields": { + "name": "Heavy Armor", + "desc": "Of all the armor categories, heavy armor offers the best protection. These suits of armor cover the entire body and are designed to stop a wide range of attacks. Only proficient warriors can manage their weight and bulk.\r\n\r\nHeavy armor doesn't let you add your Dexterity modifier to your Armor Class, but it also doesn't penalize you if your Dexterity modifier is negative.", + "document": "srd", + "items": [ + "srd_chain-mail", + "srd_plate-armor", + "srd_ring-mail", + "srd_splint-armor" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "holy-symbols", + "fields": { + "name": "Holy Symbols", + "desc": "A holy symbol is a representation of a god or pantheon. It might be an amulet depicting a symbol representing a deity, the same symbol carefully engraved or inlaid as an emblem on a shield, or a tiny box holding a fragment of a sacred relic. Appendix PH-­‐‑B \"Fantasy-­‐‑Historical Pantheons\" lists the symbols commonly associated with many gods in the multiverse. A cleric or paladin can use a holy symbol as a spellcasting focus. To use the symbol in this way, the caster must hold it in hand, wear it visibly, or bear it on a shield.", + "document": "srd", + "items": [ + "srd_amulet", + "srd_emblem", + "srd_reliquary" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "light-armor", + "fields": { + "name": "Light Armor", + "desc": "Made from supple and thin materials, light armor favors agile adventurers since it offers some protection without sacrificing mobility. If you wear light armor, you add your Dexterity modifier to the base number from your armor type to determine your Armor Class.", + "document": "srd", + "items": [ + "srd_leather-armor", + "srd_padded-armor", + "srd_studded-leather-armor" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "martial-melee-weapons", + "fields": { + "name": "Martial Melee Weapons", + "desc": "Martial weapons, including swords, axes, and polearms, require more specialized training to use effectively. Most warriors use martial weapons because these weapons put their fighting style and training to best use.", + "document": "srd", + "items": [ + "srd_battleaxe", + "srd_flail", + "srd_glaive", + "srd_greataxe", + "srd_greatsword", + "srd_halberd", + "srd_lance", + "srd_longsword", + "srd_maul", + "srd_morningstar", + "srd_pike", + "srd_rapier", + "srd_scimitar", + "srd_shortsword", + "srd_trident", + "srd_war-pick", + "srd_warhammer", + "srd_whip" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "martial-ranged-weapons", + "fields": { + "name": "Martial Ranged Weapons", + "desc": "Martial weapons, including swords, axes, and polearms, require more specialized training to use effectively. Most warriors use martial weapons because these weapons put their fighting style and training to best use.", + "document": "srd", + "items": [ + "srd_blowgun", + "srd_crossbow-hand", + "srd_crossbow-heavy", + "srd_longbow", + "srd_net" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "medium-armor", + "fields": { + "name": "Medium Armor", + "desc": "Medium armor offers more protection than light armor, but it also impairs movement more. If you wear medium armor, you add your Dexterity modifier, to a maximum of +2, to the base number from your armor type to determine your Armor Class.", + "document": "srd", + "items": [ + "srd_breastplate", + "srd_chain-shirt", + "srd_half-plate", + "srd_hide-armor", + "srd_scale-mail" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "musical-instruments", + "fields": { + "name": "Musical instruments", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "items": [ + "srd_bagpipes", + "srd_drum", + "srd_dulcimer", + "srd_flute", + "srd_horn", + "srd_lute", + "srd_lyre", + "srd_pan-flute", + "srd_shawm", + "srd_viol" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "priests-pack", + "fields": { + "name": "Priest's Pack", + "desc": "Includes a backpack, a blanket, 10 candles, a tinderbox, an alms box, 2 blocks of incense, a censer, vestments, 2 days of rations, and a waterskin.", + "document": "srd", + "items": [ + "srd_backpack", + "srd_blanket", + "srd_candle", + "srd_rations-1-day", + "srd_tinderbox", + "srd_waterskin" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "scholars-pack", + "fields": { + "name": "Scholar's Pack", + "desc": "Includes a backpack, a book of lore, a bottle of ink, an ink pen, 10 sheets of parchment, a little bag of sand, and a small knife.", + "document": "srd", + "items": [ + "srd_backpack", + "srd_book", + "srd_ink-1-ounce-bottle", + "srd_ink-pen", + "srd_parchment-one-sheet" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "simple-melee-weapons", + "fields": { + "name": "Simple Melee Weapons", + "desc": "Most people can use simple weapons with proficiency. These weapons include clubs, maces, and other weapons often found in the hands of commoners.", + "document": "srd", + "items": [ + "srd_club", + "srd_dagger", + "srd_greatclub", + "srd_handaxe", + "srd_javelin", + "srd_light-hammer", + "srd_mace", + "srd_quarterstaff", + "srd_sickle", + "srd_spear" + ] + } +}, +{ + "model": "api_v2.itemset", + "pk": "simple-ranged-weapons", + "fields": { + "name": "Simple Ranged Weapons", + "desc": "Most people can use simple weapons with proficiency.", + "document": "srd", + "items": [ + "srd_crossbow-light", + "srd_dart", + "srd_shortbow", + "srd_sling" + ] + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/Spell.json b/data/v2/wizards-of-the-coast/srd/Spell.json index caa1b7f7..88470161 100644 --- a/data/v2/wizards-of-the-coast/srd/Spell.json +++ b/data/v2/wizards-of-the-coast/srd/Spell.json @@ -1,10018 +1,10018 @@ [ - { - "model": "api_v2.spell", - "pk": "srd_acid-arrow", - "fields": { - "name": "Acid Arrow", - "desc": "A shimmering green arrow streaks toward a target within range and bursts in a spray of acid. Make a ranged spell attack against the target. On a hit, the target takes 4d4 acid damage immediately and 2d4 acid damage at the end of its next turn. On a miss, the arrow splashes the target with acid for half as much of the initial damage and no damage at the end of its next turn.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d4 for each slot level above 2nd.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Powdered rhubarb leaf and an adder's stomach.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "4d4", - "damage_types": [ - "acid" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_acid-splash", - "fields": { - "name": "Acid Splash", - "desc": "You hurl a bubble of acid. Choose one creature within range, or choose two creatures within range that are within 5 feet of each other. A target must succeed on a dexterity saving throw or take 1d6 acid damage.", - "document": "srd", - "level": 0, - "school": "conjuration", - "higher_level": "This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_aid", - "fields": { - "name": "Aid", - "desc": "Your spell bolsters your allies with toughness and resolve. Choose up to three creatures within range. Each target's hit point maximum and current hit points increase by 5 for the duration.", - "document": "srd", - "level": 2, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, a target's hit points increase by an additional 5 for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny strip of white cloth.", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_alarm", - "fields": { - "name": "Alarm", - "desc": "You set an alarm against unwanted intrusion. Choose a door, a window, or an area within range that is no larger than a 20-foot cube. Until the spell ends, an alarm alerts you whenever a Tiny or larger creature touches or enters the warded area. \n\nWhen you cast the spell, you can designate creatures that won't set off the alarm. You also choose whether the alarm is mental or audible. A mental alarm alerts you with a ping in your mind if you are within 1 mile of the warded area. This ping awakens you if you are sleeping. An audible alarm produces the sound of a hand bell for 10 seconds within 60 feet.", - "document": "srd", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny bell and a piece of fine silver wire.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_alter-self", - "fields": { - "name": "Alter Self", - "desc": "You assume a different form. When you cast the spell, choose one of the following options, the effects of which last for the duration of the spell. While the spell lasts, you can end one option as an action to gain the benefits of a different one.\n\n**Aquatic Adaptation.** You adapt your body to an aquatic environment, sprouting gills and growing webbing between your fingers. You can breathe underwater and gain a swimming speed equal to your walking speed.\n\n**Change Appearance.** You transform your appearance. You decide what you look like, including your height, weight, facial features, sound of your voice, hair length, coloration, and distinguishing characteristics, if any. You can make yourself appear as a member of another race, though none of your statistics change. You also can't appear as a creature of a different size than you, and your basic shape stays the same; if you're bipedal, you can't use this spell to become quadrupedal, for instance. At any time for the duration of the spell, you can use your action to change your appearance in this way again.\n\n**Natural Weapons.** You grow claws, fangs, spines, horns, or a different natural weapon of your choice. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage, as appropriate to the natural weapon you chose, and you are proficient with your unarmed strikes. Finally, the natural weapon is magic and you have a +1 bonus to the attack and damage rolls you make using it.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_animal-friendship", - "fields": { - "name": "Animal Friendship", - "desc": "This spell lets you convince a beast that you mean it no harm. Choose a beast that you can see within range. It must see and hear you. If the beast's Intelligence is 4 or higher, the spell fails. Otherwise, the beast must succeed on a Wisdom saving throw or be charmed by you for the spell's duration. If you or one of your companions harms the target, the spells ends.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional beast for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A morsel of food.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_animal-messenger", - "fields": { - "name": "Animal Messenger", - "desc": "By means of this spell, you use an animal to deliver a message. Choose a Tiny beast you can see within range, such as a squirrel, a blue jay, or a bat. You specify a location, which you must have visited, and a recipient who matches a general description, such as \"a man or woman dressed in the uniform of the town guard\" or \"a red-haired dwarf wearing a pointed hat.\" You also speak a message of up to twenty-five words. The target beast travels for the duration of the spell toward the specified location, covering about 50 miles per 24 hours for a flying messenger, or 25 miles for other animals. \n\nWhen the messenger arrives, it delivers your message to the creature that you described, replicating the sound of your voice. The messenger speaks only to a creature matching the description you gave. If the messenger doesn't reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.", - "document": "srd", - "level": 2, - "school": "enchantment", - "higher_level": "If you cast this spell using a spell slot of 3nd level or higher, the duration of the spell increases by 48 hours for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A morsel of food.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_animal-shapes", - "fields": { - "name": "Animal Shapes", - "desc": "Your magic turns others into beasts. Choose any number of willing creatures that you can see within range. You transform each target into the form of a Large or smaller beast with a challenge rating of 4 or lower. On subsequent turns, you can use your action to transform affected creatures into new forms. \n\nThe transformation lasts for the duration for each target, or until the target drops to 0 hit points or dies. You can choose a different form for each target. A target's game statistics are replaced by the statistics of the chosen beast, though the target retains its alignment and Intelligence, Wisdom, and Charisma scores. The target assumes the hit points of its new form, and when it reverts to its normal form, it returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak or cast spells. \n\nThe target's gear melds into the new form. The target can't activate, wield, or otherwise benefit from any of its equipment.", - "document": "srd", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_animate-dead", - "fields": { - "name": "Animate Dead", - "desc": "This spell creates an undead servant. Choose a pile of bones or a corpse of a Medium or Small humanoid within range. Your spell imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a skeleton if you chose bones or a zombie if you chose a corpse (the DM has the creature's game statistics). \n\nOn each of your turns, you can use a bonus action to mentally command any creature you made with this spell if the creature is within 60 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete. \n\nThe creature is under your control for 24 hours, after which it stops obeying any command you've given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature again before the current 24-hour period ends. This use of the spell reasserts your control over up to four creatures you have animated with this spell, rather than animating a new one.", - "document": "srd", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional undead creatures for each slot level above 3rd. Each of the creatures must come from a different corpse or pile of bones.", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of blood, a piece of flesh, and a pinch of bone dust.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_animate-objects", - "fields": { - "name": "Animate Objects", - "desc": "Objects come to life at your command. Choose up to ten nonmagical objects within range that are not being worn or carried. Medium targets count as two objects, Large targets count as four objects, Huge targets count as eight objects. You can't animate any object larger than Huge. Each target animates and becomes a creature under your control until the spell ends or until reduced to 0 hit points. \nAs a bonus action, you can mentally command any creature you made with this spell if the creature is within 500 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.\n### Animated Object Statistics \n| Size | HP | AC | Attack | Str | Dex |\n|--------|----|----|----------------------------|-----|-----|\n| Tiny | 20 | 18 | +8 to hit, 1d4 + 4 damage | 4 | 18 |\n| Small | 25 | 16 | +6 to hit, 1d8 + 2 damage | 6 | 14 |\n| Medium | 40 | 13 | +5 to hit, 2d6 + 1 damage | 10 | 12 |\n| Large | 50 | 10 | +6 to hit, 2d10 + 2 damage | 14 | 10 |\n| Huge | 80 | 10 | +8 to hit, 2d12 + 4 damage | 18 | 6 | \n\nAn animated object is a construct with AC, hit points, attacks, Strength, and Dexterity determined by its size. Its Constitution is 10 and its Intelligence and Wisdom are 3, and its Charisma is 1. Its speed is 30 feet; if the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or a larger object, such as a chain bolted to a wall, its speed is 0. It has blindsight with a radius of 30 feet and is blind beyond that distance. When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form. If you command an object to attack, it can make a single melee attack against a creature within 5 feet of it. It makes a slam attack with an attack bonus and bludgeoning damage determined by its size. The DM might rule that a specific object inflicts slashing or piercing damage based on its form.", - "document": "srd", - "level": 5, - "school": "transmutation", - "higher_level": "If you cast this spell using a spell slot of 6th level or higher, you can animate two additional objects for each slot level above 5th.", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_antilife-shell", - "fields": { - "name": "Antilife Shell", - "desc": "A shimmering barrier extends out from you in a 10-foot radius and moves with you, remaining centered on you and hedging out creatures other than undead and constructs. The barrier lasts for the duration. The barrier prevents an affected creature from passing or reaching through. An affected creature can cast spells or make attacks with ranged or reach weapons through the barrier. If you move so that an affected creature is forced to pass through the barrier, the spell ends.", - "document": "srd", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_antimagic-field", - "fields": { - "name": "Antimagic Field", - "desc": "A 10-foot-radius invisible sphere of antimagic surrounds you. This area is divorced from the magical energy that suffuses the multiverse. Within the sphere, spells can't be cast, summoned creatures disappear, and even magic items become mundane. Until the spell ends, the sphere moves with you, centered on you. Spells and other magical effects, except those created by an artifact or a deity, are suppressed in the sphere and can't protrude into it. A slot expended to cast a suppressed spell is consumed. While an effect is suppressed, it doesn't function, but the time it spends suppressed counts against its duration.\n\n**Targeted Effects.** Spells and other magical effects, such as magic missile and charm person, that target a creature or an object in the sphere have no effect on that target.\n\n**Areas of Magic.** The area of another spell or magical effect, such as fireball, can't extend into the sphere. If the sphere overlaps an area of magic, the part of the area that is covered by the sphere is suppressed. For example, the flames created by a wall of fire are suppressed within the sphere, creating a gap in the wall if the overlap is large enough.\n\n**Spells.** Any active spell or other magical effect on a creature or an object in the sphere is suppressed while the creature or object is in it.\n\n**Magic Items.** The properties and powers of magic items are suppressed in the sphere. For example, a +1 longsword in the sphere functions as a nonmagical longsword. A magic weapon's properties and powers are suppressed if it is used against a target in the sphere or wielded by an attacker in the sphere. If a magic weapon or a piece of magic ammunition fully leaves the sphere (for example, if you fire a magic arrow or throw a magic spear at a target outside the sphere), the magic of the item ceases to be suppressed as soon as it exits.\n\n**Magical Travel.** Teleportation and planar travel fail to work in the sphere, whether the sphere is the destination or the departure point for such magical travel. A portal to another location, world, or plane of existence, as well as an opening to an extradimensional space such as that created by the rope trick spell, temporarily closes while in the sphere.\n\n**Creatures and Objects.** A creature or object summoned or created by magic temporarily winks out of existence in the sphere. Such a creature instantly reappears once the space the creature occupied is no longer within the sphere.\n\n**Dispel Magic.** Spells and magical effects such as dispel magic have no effect on the sphere. Likewise, the spheres created by different antimagic field spells don't nullify each other.", - "document": "srd", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of powdered iron or iron filings.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": "sphere", - "shape_magnitude": 10, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_antipathysympathy", - "fields": { - "name": "Antipathy/Sympathy", - "desc": "This spell attracts or repels creatures of your choice. You target something within range, either a Huge or smaller object or creature or an area that is no larger than a 200-foot cube. Then specify a kind of intelligent creature, such as red dragons, goblins, or vampires. You invest the target with an aura that either attracts or repels the specified creatures for the duration. Choose antipathy or sympathy as the aura's effect.\n\n**Antipathy.** The enchantment causes creatures of the kind you designated to feel an intense urge to leave the area and avoid the target. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a wisdom saving throw or become frightened. The creature remains frightened while it can see the target or is within 60 feet of it. While frightened by the target, the creature must use its movement to move to the nearest safe spot from which it can't see the target. If the creature moves more than 60 feet from the target and can't see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.\n\n **Sympathy.** The enchantment causes the specified creatures to feel an intense urge to approach the target while within 60 feet of it or able to see it. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a wisdom saving throw or use its movement on each of its turns to enter the area or move within reach of the target. When the creature has done so, it can't willingly move away from the target. If the target damages or otherwise harms an affected creature, the affected creature can make a wisdom saving throw to end the effect, as described below.\n\n**Ending the Effect.** If an affected creature ends its turn while not within 60 feet of the target or able to see it, the creature makes a wisdom saving throw. On a successful save, the creature is no longer affected by the target and recognizes the feeling of repugnance or attraction as magical. In addition, a creature affected by the spell is allowed another wisdom saving throw every 24 hours while the spell persists. A creature that successfully saves against this effect is immune to it for 1 minute, after which time it can be affected again.", - "document": "srd", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Either a lump of alum soaked in vinegar for the antipathy effect or a drop of honey for the sympathy effect.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": "cube", - "shape_magnitude": 200, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_arcane-eye", - "fields": { - "name": "Arcane Eye", - "desc": "You create an invisible, magical eye within range that hovers in the air for the duration. You mentally receive visual information from the eye, which has normal vision and darkvision out to 30 feet. The eye can look in every direction. As an action, you can move the eye up to 30 feet in any direction. There is no limit to how far away from you the eye can move, but it can't enter another plane of existence. A solid barrier blocks the eye's movement, but the eye can pass through an opening as small as 1 inch in diameter.", - "document": "srd", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of bat fur.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_arcane-hand", - "fields": { - "name": "Arcane Hand", - "desc": "You create a Large hand of shimmering, translucent force in an unoccupied space that you can see within range. The hand lasts for the spell's duration, and it moves at your command, mimicking the movements of your own hand. The hand is an object that has AC 20 and hit points equal to your hit point maximum. If it drops to 0 hit points, the spell ends. It has a Strength of 26 (+8) and a Dexterity of 10 (+0). The hand doesn't fill its space. When you cast the spell and as a bonus action on your subsequent turns, you can move the hand up to 60 feet and then cause one of the following effects with it.\n\n**Clenched Fist.** The hand strikes one creature or object within 5 feet of it. Make a melee spell attack for the hand using your game statistics. On a hit, the target takes 4d8 force damage.\n\n**Forceful Hand.** The hand attempts to push a creature within 5 feet of it in a direction you choose. Make a check with the hand's Strength contested by the Strength (Athletics) check of the target. If the target is Medium or smaller, you have advantage on the check. If you succeed, the hand pushes the target up to 5 feet plus a number of feet equal to five times your spellcasting ability modifier. The hand moves with the target to remain within 5 feet of it.\n\n**Grasping Hand.** The hand attempts to grapple a Huge or smaller creature within 5 feet of it. You use the hand's Strength score to resolve the grapple. If the target is Medium or smaller, you have advantage on the check. While the hand is grappling the target, you can use a bonus action to have the hand crush it. When you do so, the target takes bludgeoning damage equal to 2d6 + your spellcasting ability modifier\n\n **Interposing Hand.** The hand interposes itself between you and a creature you choose until you give the hand a different command. The hand moves to stay between you and the target, providing you with half cover against the target. The target can't move through the hand's space if its Strength score is less than or equal to the hand's Strength score. If its Strength score is higher than the hand's Strength score, the target can move toward you through the hand's space, but that space is difficult terrain for the target.", - "document": "srd", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage from the clenched fist option increases by 2d8 and the damage from the grasping hand increases by 2d6 for each slot level above 5th.", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An eggshell and a snakeskin glove.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "4d8", - "damage_types": [ - "force" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_arcane-lock", - "fields": { - "name": "Arcane Lock", - "desc": "You touch a closed door, window, gate, chest, or other entryway, and it becomes locked for the duration. You and the creatures you designate when you cast this spell can open the object normally. You can also set a password that, when spoken within 5 feet of the object, suppresses this spell for 1 minute. Otherwise, it is impassable until it is broken or the spell is dispelled or suppressed. Casting knock on the object suppresses arcane lock for 10 minutes. While affected by this spell, the object is more difficult to break or force open; the DC to break it or pick any locks on it increases by 10.", - "document": "srd", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Gold dust worth at least 25gp, which the spell consumes.", - "material_cost": "25.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_arcane-sword", - "fields": { - "name": "Arcane Sword", - "desc": "You create a sword-shaped plane of force that hovers within range. It lasts for the duration. When the sword appears, you make a melee spell attack against a target of your choice within 5 feet of the sword. On a hit, the target takes 3d10 force damage. Until the spell ends, you can use a bonus action on each of your turns to move the sword up to 20 feet to a spot you can see and repeat this attack against the same target or a different one.", - "document": "srd", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A miniature platinum sword with a grip and pommel of copper and zinc, worth 250 gp.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "3d10", - "damage_types": [ - "force" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_arcanists-magic-aura", - "fields": { - "name": "Arcanist's Magic Aura", - "desc": "You place an illusion on a creature or an object you touch so that divination spells reveal false information about it. The target can be a willing creature or an object that isn't being carried or worn by another creature. When you cast the spell, choose one or both of the following effects. The effect lasts for the duration. If you cast this spell on the same creature or object every day for 30 days, placing the same effect on it each time, the illusion lasts until it is dispelled.\n\n**False Aura.** You change the way the target appears to spells and magical effects, such as detect magic, that detect magical auras. You can make a nonmagical object appear magical, a magical object appear nonmagical, or change the object's magical aura so that it appears to belong to a specific school of magic that you choose. When you use this effect on an object, you can make the false magic apparent to any creature that handles the item.\n\n**Mask.** You change the way the target appears to spells and magical effects that detect creature types, such as a paladin's Divine Sense or the trigger of a symbol spell. You choose a creature type and other spells and magical effects treat the target as if it were a creature of that type or of that alignment.", - "document": "srd", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small square of silk.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_astral-projection", - "fields": { - "name": "Astral Projection", - "desc": "You and up to eight willing creatures within range project your astral bodies into the Astral Plane (the spell fails and the casting is wasted if you are already on that plane). The material body you leave behind is unconscious and in a state of suspended animation; it doesn't need food or air and doesn't age. Your astral body resembles your mortal form in almost every way, replicating your game statistics and possessions. The principal difference is the addition of a silvery cord that extends from between your shoulder blades and trails behind you, fading to invisibility after 1 foot. This cord is your tether to your material body. As long as the tether remains intact, you can find your way home. If the cord is cut-something that can happen only when an effect specifically states that it does-your soul and body are separated, killing you instantly. Your astral form can freely travel through the Astral Plane and can pass through portals there leading to any other plane. If you enter a new plane or return to the plane you were on when casting this spell, your body and possessions are transported along the silver cord, allowing you to re-enter your body as you enter the new plane. Your astral form is a separate incarnation. Any damage or other effects that apply to it have no effect on your physical body, nor do they persist when you return to it. The spell ends for you and your companions when you use your action to dismiss it. When the spell ends, the affected creature returns to its physical body, and it awakens. The spell might also end early for you or one of your companions. A successful dispel magic spell used against an astral or physical body ends the spell for that creature. If a creature's original body or its astral form drops to 0 hit points, the spell ends for that creature. If the spell ends and the silver cord is intact, the cord pulls the creature's astral form back to its body, ending its state of suspended animation. If you are returned to your body prematurely, your companions remain in their astral forms and must find their own way back to their bodies, usually by dropping to 0 hit points.", - "document": "srd", - "level": 9, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "For each creature you affect with this spell, you must provide one jacinth worth at least 1,000gp and one ornately carved bar of silver worth at least 100gp, all of which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_augury", - "fields": { - "name": "Augury", - "desc": "By casting gem-inlaid sticks, rolling dragon bones, laying out ornate cards, or employing some other divining tool, you receive an omen from an otherworldly entity about the results of a specific course of action that you plan to take within the next 30 minutes. The DM chooses from the following possible omens: \n- Weal, for good results \n- Woe, for bad results \n- Weal and woe, for both good and bad results \n- Nothing, for results that aren't especially good or bad The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion. If you cast the spell two or more times before completing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.", - "document": "srd", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Specially marked sticks, bones, or similar tokens worth at least 25gp.", - "material_cost": "25.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_awaken", - "fields": { - "name": "Awaken", - "desc": "After spending the casting time tracing magical pathways within a precious gemstone, you touch a Huge or smaller beast or plant. The target must have either no Intelligence score or an Intelligence of 3 or less. The target gains an Intelligence of 10. The target also gains the ability to speak one language you know. If the target is a plant, it gains the ability to move its limbs, roots, vines, creepers, and so forth, and it gains senses similar to a human's. Your DM chooses statistics appropriate for the awakened plant, such as the statistics for the awakened shrub or the awakened tree. The awakened beast or plant is charmed by you for 30 days or until you or your companions do anything harmful to it. When the charmed condition ends, the awakened creature chooses whether to remain friendly to you, based on how you treated it while it was charmed.", - "document": "srd", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An agate worth at least 1,000 gp, which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_bane", - "fields": { - "name": "Bane", - "desc": "Up to three creatures of your choice that you can see within range must make charisma saving throws. Whenever a target that fails this saving throw makes an attack roll or a saving throw before the spell ends, the target must roll a d4 and subtract the number rolled from the attack roll or saving throw.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of blood.", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_banishment", - "fields": { - "name": "Banishment", - "desc": "You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a charisma saving throw or be banished. If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.", - "document": "srd", - "level": 4, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An item distasteful to the target.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_barkskin", - "fields": { - "name": "Barkskin", - "desc": "You touch a willing creature. Until the spell ends, the target's skin has a rough, bark-like appearance, and the target's AC can't be less than 16, regardless of what kind of armor it is wearing.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A handful of oak bark.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_beacon-of-hope", - "fields": { - "name": "Beacon of Hope", - "desc": "This spell bestows hope and vitality. Choose any number of creatures within range. For the duration, each target has advantage on wisdom saving throws and death saving throws, and regains the maximum number of hit points possible from any healing.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_bestow-curse", - "fields": { - "name": "Bestow Curse", - "desc": "You touch a creature, and that creature must succeed on a wisdom saving throw or become cursed for the duration of the spell. When you cast this spell, choose the nature of the curse from the following options: \n- Choose one ability score. While cursed, the target has disadvantage on ability checks and saving throws made with that ability score. \n- While cursed, the target has disadvantage on attack rolls against you. \n- While cursed, the target must make a wisdom saving throw at the start of each of its turns. If it fails, it wastes its action that turn doing nothing. \n- While the target is cursed, your attacks and spells deal an extra 1d8 necrotic damage to the target. A remove curse spell ends this effect. At the DM's option, you may choose an alternative curse effect, but it should be no more powerful than those described above. The DM has final say on such a curse's effect.", - "document": "srd", - "level": 3, - "school": "necromancy", - "higher_level": "If you cast this spell using a spell slot of 4th level or higher, the duration is concentration, up to 10 minutes. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the spell lasts until it is dispelled. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_black-tentacles", - "fields": { - "name": "Black Tentacles", - "desc": "Squirming, ebony tentacles fill a 20-foot square on ground that you can see within range. For the duration, these tentacles turn the ground in the area into difficult terrain. When a creature enters the affected area for the first time on a turn or starts its turn there, the creature must succeed on a Dexterity saving throw or take 3d6 bludgeoning damage and be restrained by the tentacles until the spell ends. A creature that starts its turn in the area and is already restrained by the tentacles takes 3d6 bludgeoning damage. A creature restrained by the tentacles can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "area", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A piece of tentacle from a giant octopus or a giant squid", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_blade-barrier", - "fields": { - "name": "Blade Barrier", - "desc": "You create a vertical wall of whirling, razor-sharp blades made of magical energy. The wall appears within range and lasts for the duration. You can make a straight wall up to 100 feet long, 20 feet high, and 5 feet thick, or a ringed wall up to 60 feet in diameter, 20 feet high, and 5 feet thick. The wall provides three-quarters cover to creatures behind it, and its space is difficult terrain. When a creature enters the wall's area for the first time on a turn or starts its turn there, the creature must make a dexterity saving throw. On a failed save, the creature takes 6d10 slashing damage. On a successful save, the creature takes half as much damage.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "6d10", - "damage_types": [ - "slashing" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_bless", - "fields": { - "name": "Bless", - "desc": "You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll a d4 and add the number rolled to the attack roll or saving throw.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A sprinkling of holy water.", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_blight", - "fields": { - "name": "Blight", - "desc": "Necromantic energy washes over a creature of your choice that you can see within range, draining moisture and vitality from it. The target must make a constitution saving throw. The target takes 8d8 necrotic damage on a failed save, or half as much damage on a successful one. The spell has no effect on undead or constructs. If you target a plant creature or a magical plant, it makes the saving throw with disadvantage, and the spell deals maximum damage to it. If you target a nonmagical plant that isn't a creature, such as a tree or shrub, it doesn't make a saving throw; it simply withers and dies.", - "document": "srd", - "level": 4, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 5th level of higher, the damage increases by 1d8 for each slot level above 4th.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d8", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_blindnessdeafness", - "fields": { - "name": "Blindness/Deafness", - "desc": "You can blind or deafen a foe. Choose one creature that you can see within range to make a constitution saving throw. If it fails, the target is either blinded or deafened (your choice) for the duration. At the end of each of its turns, the target can make a constitution saving throw. On a success, the spell ends.", - "document": "srd", - "level": 2, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_blink", - "fields": { - "name": "Blink", - "desc": "Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 11 or higher, you vanish from your current plane of existence and appear in the Ethereal Plane (the spell fails and the casting is wasted if you were already on that plane). At the start of your next turn, and when the spell ends if you are on the Ethereal Plane, you return to an unoccupied space of your choice that you can see within 10 feet of the space you vanished from. If no unoccupied space is available within that range, you appear in the nearest unoccupied space (chosen at random if more than one space is equally near). You can dismiss this spell as an action. While on the Ethereal Plane, you can see and hear the plane you originated from, which is cast in shades of gray, and you can't see anything there more than 60 feet away. You can only affect and be affected by other creatures on the Ethereal Plane. Creatures that aren't there can't perceive you or interact with you, unless they have the ability to do so.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_blur", - "fields": { - "name": "Blur", - "desc": "Your body becomes blurred, shifting and wavering to all who can see you. For the duration, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight.", - "document": "srd", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_branding-smite", - "fields": { - "name": "Branding Smite", - "desc": "The next time you hit a creature with a weapon attack before this spell ends, the weapon gleams with astral radiance as you strike. The attack deals an extra 2d6 radiant damage to the target, which becomes visible if it's invisible, and the target sheds dim light in a 5-­--foot radius and can't become invisible until the spell ends.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the extra damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_burning-hands", - "fields": { - "name": "Burning Hands", - "desc": "As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one. The fire ignites any flammable objects in the area that aren't being worn or carried.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 15, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_call-lightning", - "fields": { - "name": "Call Lightning", - "desc": "A storm cloud appears in the shape of a cylinder that is 10 feet tall with a 60-foot radius, centered on a point you can see 100 feet directly above you. The spell fails if you can't see a point in the air where the storm cloud could appear (for example, if you are in a room that can't accommodate the cloud). When you cast the spell, choose a point you can see within range. A bolt of lightning flashes down from the cloud to that point. Each creature within 5 feet of that point must make a dexterity saving throw. A creature takes 3d10 lightning damage on a failed save, or half as much damage on a successful one. On each of your turns until the spell ends, you can use your action to call down lightning in this way again, targeting the same point or a different one. If you are outdoors in stormy conditions when you cast this spell, the spell gives you control over the existing storm instead of creating a new one. Under such conditions, the spell's damage increases by 1d10.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th or higher level, the damage increases by 1d10 for each slot level above 3rd.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "3d10", - "damage_types": [ - "lightning" - ], - "duration": "10 minutes", - "shape_type": "cylinder", - "shape_magnitude": 60, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_calm-emotions", - "fields": { - "name": "Calm Emotions", - "desc": "You attempt to suppress strong emotions in a group of people. Each humanoid in a 20-foot-radius sphere centered on a point you choose within range must make a charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, choose one of the following two effects. You can suppress any effect causing a target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime. Alternatively, you can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its friends being harmed. When the spell ends, the creature becomes hostile again, unless the DM rules otherwise.", - "document": "srd", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_chain-lightning", - "fields": { - "name": "Chain Lightning", - "desc": "You create a bolt of lightning that arcs toward a target of your choice that you can see within range. Three bolts then leap from that target to as many as three other targets, each of which must be within 30 feet of the first target. A target can be a creature or an object and can be targeted by only one of the bolts. A target must make a dexterity saving throw. The target takes 10d8 lightning damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, one additional bolt leaps from the first target to another target for each slot level above 6th.", - "target_type": "creature", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fur; a piece of amber, glass, or a crystal rod; and three silver pins.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "10d8", - "damage_types": [ - "lightning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_charm-person", - "fields": { - "name": "Charm Person", - "desc": "You attempt to charm a humanoid you can see within range. It must make a wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_chill-touch", - "fields": { - "name": "Chill Touch", - "desc": "You create a ghostly, skeletal hand in the space of a creature within range. Make a ranged spell attack against the creature to assail it with the chill of the grave. On a hit, the target takes 1d8 necrotic damage, and it can't regain hit points until the start of your next turn. Until then, the hand clings to the target. If you hit an undead target, it also has disadvantage on attack rolls against you until the end of your next turn.", - "document": "srd", - "level": 0, - "school": "necromancy", - "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "necrotic" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_circle-of-death", - "fields": { - "name": "Circle of Death", - "desc": "A sphere of negative energy ripples out in a 60-foot-radius sphere from a point within range. Each creature in that area must make a constitution saving throw. A target takes 8d6 necrotic damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "level": 6, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 2d6 for each slot level above 6th.", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "The powder of a crushed black pearl worth at least 500 gp.", - "material_cost": "500.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 60, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_clairvoyance", - "fields": { - "name": "Clairvoyance", - "desc": "You create an invisible sensor within range in a location familiar to you (a place you have visited or seen before) or in an obvious location that is unfamiliar to you (such as behind a door, around a corner, or in a grove of trees). The sensor remains in place for the duration, and it can't be attacked or otherwise interacted with. When you cast the spell, you choose seeing or hearing. You can use the chosen sense through the sensor as if you were in its space. As your action, you can switch between seeing and hearing. A creature that can see the sensor (such as a creature benefiting from see invisibility or truesight) sees a luminous, intangible orb about the size of your fist.", - "document": "srd", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "1 mile", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A focus worth at least 100gp, either a jeweled horn for hearing or a glass eye for seeing.", - "material_cost": "100.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_clone", - "fields": { - "name": "Clone", - "desc": "This spell grows an inert duplicate of a living creature as a safeguard against death. This clone forms inside a sealed vessel and grows to full size and maturity after 120 days; you can also choose to have the clone be a younger version of the same creature. It remains inert and endures indefinitely, as long as its vessel remains undisturbed. At any time after the clone matures, if the original creature dies, its soul transfers to the clone, provided that the soul is free and willing to return. The clone is physically identical to the original and has the same personality, memories, and abilities, but none of the original's equipment. The original creature's physical remains, if they still exist, become inert and can't thereafter be restored to life, since the creature's soul is elsewhere.", - "document": "srd", - "level": 8, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A diamond worth at least 1,000 gp and at least 1 cubic inch of flesh of the creature that is to be cloned, which the spell consumes, and a vessel worth at least 2,000 gp that has a sealable lid and is large enough to hold a Medium creature, such as a huge urn, coffin, mud-filled cyst in the ground, or crystal container filled with salt water.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_cloudkill", - "fields": { - "name": "Cloudkill", - "desc": "You create a 20-foot-radius sphere of poisonous, yellow-green fog centered on a point you choose within range. The fog spreads around corners. It lasts for the duration or until strong wind disperses the fog, ending the spell. Its area is heavily obscured. When a creature enters the spell's area for the first time on a turn or starts its turn there, that creature must make a constitution saving throw. The creature takes 5d8 poison damage on a failed save, or half as much damage on a successful one. Creatures are affected even if they hold their breath or don't need to breathe. The fog moves 10 feet away from you at the start of each of your turns, rolling along the surface of the ground. The vapors, being heavier than air, sink to the lowest level of the land, even pouring down openings.", - "document": "srd", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "poison" - ], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_color-spray", - "fields": { - "name": "Color Spray", - "desc": "A dazzling array of flashing, colored light springs from your hand. Roll 6d10; the total is how many hit points of creatures this spell can effect. Creatures in a 15-foot cone originating from you are affected in ascending order of their current hit points (ignoring unconscious creatures and creatures that can't see). Starting with the creature that has the lowest current hit points, each creature affected by this spell is blinded until the spell ends. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.", - "document": "srd", - "level": 1, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d10 for each slot level above 1st.", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of powder or sand that is colored red, yellow, and blue.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": "cone", - "shape_magnitude": 15, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_command", - "fields": { - "name": "Command", - "desc": "You speak a one-word command to a creature you can see within range. The target must succeed on a wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it. Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends\n\n **Approach.** The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.\n\n**Drop** The target drops whatever it is holding and then ends its turn.\n\n**Flee.** The target spends its turn moving away from you by the fastest available means.\n\n**Grovel.** The target falls prone and then ends its turn.\n\n**Halt.** The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_commune", - "fields": { - "name": "Commune", - "desc": "You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question. Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead. If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.", - "document": "srd", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Incense and a vial of holy or unholy water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_commune-with-nature", - "fields": { - "name": "Commune with Nature", - "desc": "You briefly become one with nature and gain knowledge of the surrounding territory. In the outdoors, the spell gives you knowledge of the land within 3 miles of you. In caves and other natural underground settings, the radius is limited to 300 feet. The spell doesn't function where nature has been replaced by construction, such as in dungeons and towns. You instantly gain knowledge of up to three facts of your choice about any of the following subjects as they relate to the area: \n- terrain and bodies of water \n- prevalent plants, minerals, animals, or peoples \n- powerful celestials, fey, fiends, elementals, or undead \n- influence from other planes of existence \n- buildings For example, you could determine the location of powerful undead in the area, the location of major sources of safe drinking water, and the location of any nearby towns.", - "document": "srd", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_comprehend-languages", - "fields": { - "name": "Comprehend Languages", - "desc": "For the duration, you understand the literal meaning of any spoken language that you hear. You also understand any written language that you see, but you must be touching the surface on which the words are written. It takes about 1 minute to read one page of text. This spell doesn't decode secret messages in a text or a glyph, such as an arcane sigil, that isn't part of a written language.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of soot and salt.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_compulsion", - "fields": { - "name": "Compulsion", - "desc": "Creatures of your choice that you can see within range and that can hear you must make a Wisdom saving throw. A target automatically succeeds on this saving throw if it can't be charmed. On a failed save, a target is affected by this spell. Until the spell ends, you can use a bonus action on each of your turns to designate a direction that is horizontal to you. Each affected target must use as much of its movement as possible to move in that direction on its next turn. It can take its action before it moves. After moving in this way, it can make another Wisdom saving throw to try to end the effect. A target isn't compelled to move into an obviously deadly hazard, such as a fire or pit, but it will provoke opportunity attacks to move in the designated direction.", - "document": "srd", - "level": 4, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_cone-of-cold", - "fields": { - "name": "Cone of Cold", - "desc": "A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one. A creature killed by this spell becomes a frozen statue until it thaws.", - "document": "srd", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small crystal or glass cone.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "8d8", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 60, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_confusion", - "fields": { - "name": "Confusion", - "desc": "This spell assaults and twists creatures' minds, spawning delusions and provoking uncontrolled action. Each creature in a 10 foot radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\n\nAn affected target can't take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|---|---|\n| 1 | The creature uses all its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. The creature doesn’t take an action this turn. |\n| 2-6 | The creature doesn’t move or take actions this turn. |\n| 7-8 | The creature uses its action to make a melee attack against a randomly determined creature within its reach. If there is no creature within its reach, the creature does nothing this turn. |\n| 9-10 | The creature can act and move normally. |\n\nAt the end of each of its turns, an affected target can make a Wisdom saving throw. If it succeeds, this effect ends for that target.", - "document": "srd", - "level": 4, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Three walnut shells.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_conjure-animals", - "fields": { - "name": "Conjure Animals", - "desc": "You summon fey spirits that take the form of beasts and appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears: \n- One beast of challenge rating 2 or lower \n- Two beasts of challenge rating 1 or lower \n- Four beasts of challenge rating 1/2 or lower \n- Eight beasts of challenge rating 1/4 or lower \n- Each beast is also considered fey, and it disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 5th-level slot, three times as many with a 7th-level, and four times as many with a 9th-level slot.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_conjure-celestial", - "fields": { - "name": "Conjure Celestial", - "desc": "You summon a celestial of challenge rating 4 or lower, which appears in an unoccupied space that you can see within range. The celestial disappears when it drops to 0 hit points or when the spell ends. The celestial is friendly to you and your companions for the duration. Roll initiative for the celestial, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the celestial, it defends itself from hostile creatures but otherwise takes no actions. The DM has the celestial's statistics.", - "document": "srd", - "level": 7, - "school": "conjuration", - "higher_level": "When you cast this spell using a 9th-level spell slot, you summon a celestial of challenge rating 5 or lower.", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_conjure-elemental", - "fields": { - "name": "Conjure Elemental", - "desc": "You call forth an elemental servant. Choose an area of air, earth, fire, or water that fills a 10-foot cube within range. An elemental of challenge rating 5 or lower appropriate to the area you chose appears in an unoccupied space within 10 feet of it. For example, a fire elemental emerges from a bonfire, and an earth elemental rises up from the ground. The elemental disappears when it drops to 0 hit points or when the spell ends. The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions. If your concentration is broken, the elemental doesn't disappear. Instead, you lose control of the elemental, it becomes hostile toward you and your companions, and it might attack. An uncontrolled elemental can't be dismissed by you, and it disappears 1 hour after you summoned it. The DM has the elemental's statistics.", - "document": "srd", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the challenge rating increases by 1 for each slot level above 5th.", - "target_type": "area", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Burning incense for air, soft clay for earth, sulfur and phosphorus for fire, or water and sand for water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_conjure-fey", - "fields": { - "name": "Conjure Fey", - "desc": "You summon a fey creature of challenge rating 6 or lower, or a fey spirit that takes the form of a beast of challenge rating 6 or lower. It appears in an unoccupied space that you can see within range. The fey creature disappears when it drops to 0 hit points or when the spell ends. The fey creature is friendly to you and your companions for the duration. Roll initiative for the creature, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the fey creature, it defends itself from hostile creatures but otherwise takes no actions. If your concentration is broken, the fey creature doesn't disappear. Instead, you lose control of the fey creature, it becomes hostile toward you and your companions, and it might attack. An uncontrolled fey creature can't be dismissed by you, and it disappears 1 hour after you summoned it. The DM has the fey creature's statistics.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the challenge rating increases by 1 for each slot level above 6th.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_conjure-minor-elementals", - "fields": { - "name": "Conjure Minor Elementals", - "desc": "You summon elementals that appear in unoccupied spaces that you can see within range. You choose one the following options for what appears: \n- One elemental of challenge rating 2 or lower \n- Two elementals of challenge rating 1 or lower \n- Four elementals of challenge rating 1/2 or lower \n- Eight elementals of challenge rating 1/4 or lower. An elemental summoned by this spell disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_conjure-woodland-beings", - "fields": { - "name": "Conjure Woodland Beings", - "desc": "You summon fey creatures that appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears: \n- One fey creature of challenge rating 2 or lower \n- Two fey creatures of challenge rating 1 or lower \n- Four fey creatures of challenge rating 1/2 or lower \n- Eight fey creatures of challenge rating 1/4 or lower A summoned creature disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which have their own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "One holly berry per creature summoned.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_contact-other-plane", - "fields": { - "name": "Contact Other Plane", - "desc": "You mentally contact a demigod, the spirit of a long-dead sage, or some other mysterious entity from another plane. Contacting this extraplanar intelligence can strain or even break your mind. When you cast this spell, make a DC 15 intelligence saving throw. On a failure, you take 6d6 psychic damage and are insane until you finish a long rest. While insane, you can't take actions, can't understand what other creatures say, can't read, and speak only in gibberish. A greater restoration spell cast on you ends this effect. On a successful save, you can ask the entity up to five questions. You must ask your questions before the spell ends. The DM answers each question with one word, such as \"yes,\" \"no,\" \"maybe,\" \"never,\" \"irrelevant,\" or \"unclear\" (if the entity doesn't know the answer to the question). If a one-word answer would be misleading, the DM might instead offer a short phrase as an answer.", - "document": "srd", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_contagion", - "fields": { - "name": "Contagion", - "desc": "Your touch inflicts disease. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with a disease of your choice from any of the ones described below. At the end of each of the target's turns, it must make a constitution saving throw. After failing three of these saving throws, the disease's effects last for the duration, and the creature stops making these saves. After succeeding on three of these saving throws, the creature recovers from the disease, and the spell ends. Since this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease's effects apply to it.\n\n**Blinding Sickness.** Pain grips the creature's mind, and its eyes turn milky white. The creature has disadvantage on wisdom checks and wisdom saving throws and is blinded.\n\n**Filth Fever.** A raging fever sweeps through the creature's body. The creature has disadvantage on strength checks, strength saving throws, and attack rolls that use Strength.\n\n**Flesh Rot.** The creature's flesh decays. The creature has disadvantage on Charisma checks and vulnerability to all damage.\n\n**Mindfire.** The creature's mind becomes feverish. The creature has disadvantage on intelligence checks and intelligence saving throws, and the creature behaves as if under the effects of the confusion spell during combat.\n\n**Seizure.** The creature is overcome with shaking. The creature has disadvantage on dexterity checks, dexterity saving throws, and attack rolls that use Dexterity.\n\n**Slimy Doom.** The creature begins to bleed uncontrollably. The creature has disadvantage on constitution checks and constitution saving throws. In addition, whenever the creature takes damage, it is stunned until the end of its next turn.", - "document": "srd", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "7 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_contingency", - "fields": { - "name": "Contingency", - "desc": "Choose a spell of 5th level or lower that you can cast, that has a casting time of 1 action, and that can target you. You cast that spell-called the contingent spell-as part of casting contingency, expending spell slots for both, but the contingent spell doesn't come into effect. Instead, it takes effect when a certain circumstance occurs. You describe that circumstance when you cast the two spells. For example, a contingency cast with water breathing might stipulate that water breathing comes into effect when you are engulfed in water or a similar liquid. The contingent spell takes effect immediately after the circumstance is met for the first time, whether or not you want it to. and then contingency ends. The contingent spell takes effect only on you, even if it can normally target others. You can use only one contingency spell at a time. If you cast this spell again, the effect of another contingency spell on you ends. Also, contingency ends on you if its material component is ever not on your person.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A statuette of yourself carved from ivory and decorated with gems worth at least 1,500 gp.", - "material_cost": "1500.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_continual-flame", - "fields": { - "name": "Continual Flame", - "desc": "A flame, equivalent in brightness to a torch, springs forth from an object that you touch. The effect looks like a regular flame, but it creates no heat and doesn't use oxygen. A continual flame can be covered or hidden but not smothered or quenched.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Ruby dust worth 50 gp, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_control-water", - "fields": { - "name": "Control Water", - "desc": "Until the spell ends, you control any freestanding water inside an area you choose that is a cube up to 100 feet on a side. You can choose from any of the following effects when you cast this spell. As an action on your turn, you can repeat the same effect or choose a different one.\n\n**Flood.** You cause the water level of all standing water in the area to rise by as much as 20 feet. If the area includes a shore, the flooding water spills over onto dry land. instead create a 20-foot tall wave that travels from one side of the area to the other and then crashes down. Any Huge or smaller vehicles in the wave's path are carried with it to the other side. Any Huge or smaller vehicles struck by the wave have a 25 percent chance of capsizing. The water level remains elevated until the spell ends or you choose a different effect. If this effect produced a wave, the wave repeats on the start of your next turn while the flood effect lasts\n\n **Part Water.** You cause water in the area to move apart and create a trench. The trench extends across the spell's area, and the separated water forms a wall to either side. The trench remains until the spell ends or you choose a different effect. The water then slowly fills in the trench over the course of the next round until the normal water level is restored.\n\n**Redirect Flow.** You cause flowing water in the area to move in a direction you choose, even if the water has to flow over obstacles, up walls, or in other unlikely directions. The water in the area moves as you direct it, but once it moves beyond the spell's area, it resumes its flow based on the terrain conditions. The water continues to move in the direction you chose until the spell ends or you choose a different effect.\n\n**Whirlpool.** This effect requires a body of water at least 50 feet square and 25 feet deep. You cause a whirlpool to form in the center of the area. The whirlpool forms a vortex that is 5 feet wide at the base, up to 50 feet wide at the top, and 25 feet tall. Any creature or object in the water and within 25 feet of the vortex is pulled 10 feet toward it. A creature can swim away from the vortex by making a Strength (Athletics) check against your spell save DC. When a creature enters the vortex for the first time on a turn or starts its turn there, it must make a strength saving throw. On a failed save, the creature takes 2d8 bludgeoning damage and is caught in the vortex until the spell ends. On a successful save, the creature takes half damage, and isn't caught in the vortex. A creature caught in the vortex can use its action to try to swim away from the vortex as described above, but has disadvantage on the Strength (Athletics) check to do so. The first time each turn that an object enters the vortex, the object takes 2d8 bludgeoning damage; this damage occurs each round it remains in the vortex.", - "document": "srd", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of water and a pinch of dust.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_control-weather", - "fields": { - "name": "Control Weather", - "desc": "You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early. When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal. When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.", - "document": "srd", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Burning incense and bits of earth and wood mixed in water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_counterspell", - "fields": { - "name": "Counterspell", - "desc": "You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_create-food-and-water", - "fields": { - "name": "Create Food and Water", - "desc": "You create 45 pounds of food and 30 gallons of water on the ground or in containers within range, enough to sustain up to fifteen humanoids or five steeds for 24 hours. The food is bland but nourishing, and spoils if uneaten after 24 hours. The water is clean and doesn't go bad.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_create-or-destroy-water", - "fields": { - "name": "Create or Destroy Water", - "desc": "You either create or destroy water.\n\n**Create Water.** You create up to 10 gallons of clean water within range in an open container. Alternatively, the water falls as rain in a 30-foot cube within range\n\n **Destroy Water.** You destroy up to 10 gallons of water in an open container within range. Alternatively, you destroy fog in a 30-foot cube within range.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet, for each slot level above 1st.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of water if creating water, or a few grains of sand if destroying it.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 30, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_create-undead", - "fields": { - "name": "Create Undead", - "desc": "You can cast this spell only at night. Choose up to three corpses of Medium or Small humanoids within range. Each corpse becomes a ghoul under your control. (The DM has game statistics for these creatures.) As a bonus action on each of your turns, you can mentally command any creature you animated with this spell if the creature is within 120 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete. The creature is under your control for 24 hours, after which it stops obeying any command you have given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature before the current 24-hour period ends. This use of the spell reasserts your control over up to three creatures you have animated with this spell, rather than animating new ones.", - "document": "srd", - "level": 6, - "school": "necromancy", - "higher_level": "When you cast this spell using a 7th-level spell slot, you can animate or reassert control over four ghouls. When you cast this spell using an 8th-level spell slot, you can animate or reassert control over five ghouls or two ghasts or wights. When you cast this spell using a 9th-level spell slot, you can animate or reassert control over six ghouls, three ghasts or wights, or two mummies.", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "One clay pot filled with grave dirt, one clay pot filled with brackish water, and one 150 gp black onyx stone for each corpse.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_creation", - "fields": { - "name": "Creation", - "desc": "You pull wisps of shadow material from the Shadowfell to create a nonliving object of vegetable matter within 'range': soft goods, rope, wood, or something similar. You can also use this spell to create mineral objects such as stone, crystal, or metal. The object created must be no larger than a 5-foot cube, and the object must be of a form and material that you have seen before. The duration depends on the object's material. If the object is composed of multiple materials, use the shortest duration\n\n **Vegetable matter** 1 day **Stone or crystal** 12 hours **Precious metals** 1 hour **Gems** 10 minutes **Adamantine or mithral** 1 minute Using any material created by this spell as another spell's material component causes that spell to fail.", - "document": "srd", - "level": 5, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the cube increases by 5 feet for each slot level above 5th.", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny piece of matter of the same type of the item you plan to create.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "special", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_cure-wounds", - "fields": { - "name": "Cure Wounds", - "desc": "A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_dancing-lights", - "fields": { - "name": "Dancing Lights", - "desc": "You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius. As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of phosphorus or wychwood, or a glowworm.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_darkness", - "fields": { - "name": "Darkness", - "desc": "Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it. If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness. If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "Bat fur and a drop of pitch or piece of coal.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 15, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_darkvision", - "fields": { - "name": "Darkvision", - "desc": "You touch a willing creature to grant it the ability to see in the dark. For the duration, that creature has darkvision out to a range of 60 feet.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Either a pinch of dried carrot or an agate.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_daylight", - "fields": { - "name": "Daylight", - "desc": "A 60-foot-radius sphere of light spreads out from a point you choose within range. The sphere is bright light and sheds dim light for an additional 60 feet. If you chose a point on an object you are holding or one that isn't being worn or carried, the light shines from the object and moves with it. Completely covering the affected object with an opaque object, such as a bowl or a helm, blocks the light. If any of this spell's area overlaps with an area of darkness created by a spell of 3rd level or lower, the spell that created the darkness is dispelled.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": "sphere", - "shape_magnitude": 60, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_death-ward", - "fields": { - "name": "Death Ward", - "desc": "You touch a creature and grant it a measure of protection from death. The first time the target would drop to 0 hit points as a result of taking damage, the target instead drops to 1 hit point, and the spell ends. If the spell is still in effect when the target is subjected to an effect that would kill it instantaneously without dealing damage, that effect is instead negated against the target, and the spell ends.", - "document": "srd", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_delayed-blast-fireball", - "fields": { - "name": "Delayed Blast Fireball", - "desc": "A beam of yellow light flashes from your pointing finger, then condenses to linger at a chosen point within range as a glowing bead for the duration. When the spell ends, either because your concentration is broken or because you decide to end it, the bead blossoms with a low roar into an explosion of flame that spreads around corners. Each creature in a 20-foot-radius sphere centered on that point must make a dexterity saving throw. A creature takes fire damage equal to the total accumulated damage on a failed save, or half as much damage on a successful one. The spell's base damage is 12d6. If at the end of your turn the bead has not yet detonated, the damage increases by 1d6. If the glowing bead is touched before the interval has expired, the creature touching it must make a dexterity saving throw. On a failed save, the spell ends immediately, causing the bead to erupt in flame. On a successful save, the creature can throw the bead up to 40 feet. When it strikes a creature or a solid object, the spell ends, and the bead explodes. The fire damages objects in the area and ignites flammable objects that aren't being worn or carried.", - "document": "srd", - "level": 7, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the base damage increases by 1d6 for each slot level above 7th.", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny ball of bat guano and sulfur.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_demiplane", - "fields": { - "name": "Demiplane", - "desc": "You create a shadowy door on a flat solid surface that you can see within range. The door is large enough to allow Medium creatures to pass through unhindered. When opened, the door leads to a demiplane that appears to be an empty room 30 feet in each dimension, made of wood or stone. When the spell ends, the door disappears, and any creatures or objects inside the demiplane remain trapped there, as the door also disappears from the other side. Each time you cast this spell, you can create a new demiplane, or have the shadowy door connect to a demiplane you created with a previous casting of this spell. Additionally, if you know the nature and contents of a demiplane created by a casting of this spell by another creature, you can have the shadowy door connect to its demiplane instead.", - "document": "srd", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_detect-evil-and-good", - "fields": { - "name": "Detect Evil and Good", - "desc": "For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_detect-magic", - "fields": { - "name": "Detect Magic", - "desc": "For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_detect-poison-and-disease", - "fields": { - "name": "Detect Poison and Disease", - "desc": "For the duration, you can sense the presence and location of poisons, poisonous creatures, and diseases within 30 feet of you. You also identify the kind of poison, poisonous creature, or disease in each case. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A yew leaf.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_detect-thoughts", - "fields": { - "name": "Detect Thoughts", - "desc": "For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected. You initially learn the surface thoughts of the creature-what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends. Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation. You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language. Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.", - "document": "srd", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A copper coin.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_dimension-door", - "fields": { - "name": "Dimension Door", - "desc": "You teleport yourself from your current location to any other spot within range. You arrive at exactly the spot desired. It can be a place you can see, one you can visualize, or one you can describe by stating distance and direction, such as \"200 feet straight downward\" or \"upward to the northwest at a 45-degree angle, 300 feet.\" You can bring along objects as long as their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller who is carrying gear up to its carrying capacity. The creature must be within 5 feet of you when you cast this spell. If you would arrive in a place already occupied by an object or a creature, you and any creature traveling with you each take 4d6 force damage, and the spell fails to teleport you.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "500 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_disguise-self", - "fields": { - "name": "Disguise Self", - "desc": "You make yourself - including your clothing, armor, weapons, and other belongings on your person - look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you. The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair. To discern that you are disguised, a creature can use its action to inspect your apperance and must succeed on an Intelligence (Investigation) check against your spell save DC.", - "document": "srd", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_disintegrate", - "fields": { - "name": "Disintegrate", - "desc": "A thin green ray springs from your pointing finger to a target that you can see within range. The target can be a creature, an object, or a creation of magical force, such as the wall created by wall of force. A creature targeted by this spell must make a dexterity saving throw. On a failed save, the target takes 10d6 + 40 force damage. If this damage reduces the target to 0 hit points, it is disintegrated. A disintegrated creature and everything it is wearing and carrying, except magic items, are reduced to a pile of fine gray dust. The creature can be restored to life only by means of a true resurrection or a wish spell. This spell automatically disintegrates a Large or smaller nonmagical object or a creation of magical force. If the target is a Huge or larger object or creation of force, this spell disintegrates a 10-foot-cube portion of it. A magic item is unaffected by this spell.", - "document": "srd", - "level": 6, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 3d6 for each slot level above 6th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A lodestone and a pinch of dust.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "10d6+40", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_dispel-evil-and-good", - "fields": { - "name": "Dispel Evil and Good", - "desc": "Shimmering energy surrounds and protects you from fey, undead, and creatures originating from beyond the Material Plane. For the duration, celestials, elementals, fey, fiends, and undead have disadvantage on attack rolls against you. You can end the spell early by using either of the following special functions.\n\n**Break Enchantment.** As your action, you touch a creature you can reach that is charmed, frightened, or possessed by a celestial, an elemental, a fey, a fiend, or an undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.\n\n**Dismissal.** As your action, make a melee spell attack against a celestial, an elemental, a fey, a fiend, or an undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.", - "document": "srd", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Holy water or powdered silver and iron.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_dispel-magic", - "fields": { - "name": "Dispel Magic", - "desc": "Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_divination", - "fields": { - "name": "Divination", - "desc": "Your magic and an offering put you in contact with a god or a god's servants. You ask a single question concerning a specific goal, event, or activity to occur within 7 days. The DM offers a truthful reply. The reply might be a short phrase, a cryptic rhyme, or an omen. The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion. If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.", - "document": "srd", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Incense and a sacrificial offering appropriate to your religion, together worth at least 25gp, which the spell consumes.", - "material_cost": "25.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_divine-favor", - "fields": { - "name": "Divine Favor", - "desc": "Your prayer empowers you with divine radiance. Until the spell ends, your weapon attacks deal an extra 1d4 radiant damage on a hit.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_divine-word", - "fields": { - "name": "Divine Word", - "desc": "You utter a divine word, imbued with the power that shaped the world at the dawn of creation. Choose any number of creatures you can see within range. Each creature that can hear you must make a Charisma saving throw. On a failed save, a creature suffers an effect based on its current hit points: \n- 50hp or less: deafened for 1 minute \n- 40 hp or less: deafened and blinded for 10 minutes \n- 30 hp or less: blinded, deafened and dazed for 1 hour \n- 20 hp or less: killed instantly. Regardless of its current hit points, a celestial, an elemental, a fey, or a fiend that fails its save is forced back to its plane of origin (if it isn't there already) and can't return to your current plane for 24 hours by any means short of a wish spell.", - "document": "srd", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_dominate-beast", - "fields": { - "name": "Dominate Beast", - "desc": "You attempt to beguile a beast that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the beast is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", - "document": "srd", - "level": 4, - "school": "enchantment", - "higher_level": "When you cast this spell with a 5th-­level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-­level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_dominate-monster", - "fields": { - "name": "Dominate Monster", - "desc": "You attempt to beguile a creature that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the creature is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", - "document": "srd", - "level": 8, - "school": "enchantment", - "higher_level": "When you cast this spell with a 9th-level spell slot, the duration is concentration, up to 8 hours.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_dominate-person", - "fields": { - "name": "Dominate Person", - "desc": "You attempt to beguile a humanoid that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the target is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", - "document": "srd", - "level": 5, - "school": "enchantment", - "higher_level": "When you cast this spell using a 6th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 7th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 8 hours.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_dream", - "fields": { - "name": "Dream", - "desc": "This spell shapes a creature's dreams. Choose a creature known to you as the target of this spell. The target must be on the same plane of existence as you. Creatures that don't sleep, such as elves, can't be contacted by this spell. You, or a willing creature you touch, enters a trance state, acting as a messenger. While in the trance, the messenger is aware of his or her surroundings, but can't take actions or move. If the target is asleep, the messenger appears in the target's dreams and can converse with the target as long as it remains asleep, through the duration of the spell. The messenger can also shape the environment of the dream, creating landscapes, objects, and other images. The messenger can emerge from the trance at any time, ending the effect of the spell early. The target recalls the dream perfectly upon waking. If the target is awake when you cast the spell, the messenger knows it, and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the messenger appears in the target's dreams. You can make the messenger appear monstrous and terrifying to the target. If you do, the messenger can deliver a message of no more than ten words and then the target must make a wisdom saving throw. On a failed save, echoes of the phantasmal monstrosity spawn a nightmare that lasts the duration of the target's sleep and prevents the target from gaining any benefit from that rest. In addition, when the target wakes up, it takes 3d6 psychic damage. If you have a body part, lock of hair, clipping from a nail, or similar portion of the target's body, the target makes its saving throw with disadvantage.", - "document": "srd", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Special", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A handful of sand, a dab of ink, and a writing quill plucked from a sleeping bird.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "3d6", - "damage_types": [ - "psychic" - ], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_druidcraft", - "fields": { - "name": "Druidcraft", - "desc": "Whispering to the spirits of nature, you create one of the following effects within range: \n- You create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, falling snowflakes for snow, and so on. This effect persists for 1 round. \n- You instantly make a flower blossom, a seed pod open, or a leaf bud bloom. \n- You create an instantaneous, harmless sensory effect, such as falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-­--foot cube. \n- You instantly light or snuff out a candle, a torch, or a small campfire.", - "document": "srd", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_earthquake", - "fields": { - "name": "Earthquake", - "desc": "You create a seismic disturbance at a point on the ground that you can see within range. For the duration, an intense tremor rips through the ground in a 100-foot-radius circle centered on that point and shakes creatures and structures in contact with the ground in that area. The ground in the area becomes difficult terrain. Each creature on the ground that is concentrating must make a constitution saving throw. On a failed save, the creature's concentration is broken. When you cast this spell and at the end of each turn you spend concentrating on it, each creature on the ground in the area must make a dexterity saving throw. On a failed save, the creature is knocked prone. This spell can have additional effects depending on the terrain in the area, as determined by the DM. \n\n**Fissures.** Fissures open throughout the spell's area at the start of your next turn after you cast the spell. A total of 1d6 such fissures open in locations chosen by the DM. Each is 1d10 × 10 feet deep, 10 feet wide, and extends from one edge of the spell's area to the opposite side. A creature standing on a spot where a fissure opens must succeed on a dexterity saving throw or fall in. A creature that successfully saves moves with the fissure's edge as it opens. A fissure that opens beneath a structure causes it to automatically collapse (see below). \n\n**Structures.** The tremor deals 50 bludgeoning damage to any structure in contact with the ground in the area when you cast the spell and at the start of each of your turns until the spell ends. If a structure drops to 0 hit points, it collapses and potentially damages nearby creatures. A creature within half the distance of a structure's height must make a dexterity saving throw. On a failed save, the creature takes 5d6 bludgeoning damage, is knocked prone, and is buried in the rubble, requiring a DC 20 Strength (Athletics) check as an action to escape. The DM can adjust the DC higher or lower, depending on the nature of the rubble. On a successful save, the creature takes half as much damage and doesn't fall prone or become buried.", - "document": "srd", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "500 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of dirt, a piece of rock, and a lump of clay.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "5d6", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_eldritch-blast", - "fields": { - "name": "Eldritch Blast", - "desc": "A beam of crackling energy streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 force damage. The spell creates more than one beam when you reach higher levels: two beams at 5th level, three beams at 11th level, and four beams at 17th level. You can direct the beams at the same target or at different ones. Make a separate attack roll for each beam.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d10", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_enhance-ability", - "fields": { - "name": "Enhance Ability", - "desc": "You touch a creature and bestow upon it a magical enhancement. Choose one of the following effects; the target gains that effect until the spell ends.\n\n**Bear's Endurance.** The target has advantage on constitution checks. It also gains 2d6 temporary hit points, which are lost when the spell ends.\n\n**Bull's Strength.** The target has advantage on strength checks, and his or her carrying capacity doubles.\n\n**Cat's Grace.** The target has advantage on dexterity checks. It also doesn't take damage from falling 20 feet or less if it isn't incapacitated.\n\n**Eagle's Splendor.** The target has advantage on Charisma checks\n\n **Fox's Cunning.** The target has advantage on intelligence checks.\n\n**Owl's Wisdom.** The target has advantage on wisdom checks.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Fur or a feather from a beast.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_enlargereduce", - "fields": { - "name": "Enlarge/Reduce", - "desc": "You cause a creature or an object you can see within range to grow larger or smaller for the duration. Choose either a creature or an object that is neither worn nor carried. If the target is unwilling, it can make a Constitution saving throw. On a success, the spell has no effect. If the target is a creature, everything it is wearing and carrying changes size with it. Any item dropped by an affected creature returns to normal size at once. \n\n**Enlarge.** The target's size doubles in all dimensions, and its weight is multiplied by eight. This growth increases its size by one category-from Medium to Large, for example. If there isn't enough room for the target to double its size, the creature or object attains the maximum possible size in the space available. Until the spell ends, the target also has advantage on Strength checks and Strength saving throws. The target's weapons also grow to match its new size. While these weapons are enlarged, the target's attacks with them deal 1d4 extra damage. \n\n**Reduce.** The target's size is halved in all dimensions, and its weight is reduced to one-­eighth of normal. This reduction decreases its size by one category-from Medium to Small, for example. Until the spell ends, the target also has disadvantage on Strength checks and Strength saving throws. The target's weapons also shrink to match its new size. While these weapons are reduced, the target's attacks with them deal 1d4 less damage (this can't reduce the damage below 1).", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch iron powder.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_entangle", - "fields": { - "name": "Entangle", - "desc": "Grasping weeds and vines sprout from the ground in a 20-foot square starting form a point within range. For the duration, these plants turn the ground in the area into difficult terrain. A creature in the area when you cast the spell must succeed on a strength saving throw or be restrained by the entangling plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself. When the spell ends, the conjured plants wilt away.", - "document": "srd", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_enthrall", - "fields": { - "name": "Enthrall", - "desc": "You weave a distracting string of words, causing creatures of your choice that you can see within range and that can hear you to make a wisdom saving throw. Any creature that can't be charmed succeeds on this saving throw automatically, and if you or your companions are fighting a creature, it has advantage on the save. On a failed save, the target has disadvantage on Wisdom (Perception) checks made to perceive any creature other than you until the spell ends or until the target can no longer hear you. The spell ends if you are incapacitated or can no longer speak.", - "document": "srd", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_etherealness", - "fields": { - "name": "Etherealness", - "desc": "You step into the border regions of the Ethereal Plane, in the area where it overlaps with your current plane. You remain in the Border Ethereal for the duration or until you use your action to dismiss the spell. During this time, you can move in any direction. If you move up or down, every foot of movement costs an extra foot. You can see and hear the plane you originated from, but everything there looks gray, and you can't see anything more than 60 feet away. While on the Ethereal Plane, you can only affect and be affected by other creatures on that plane. Creatures that aren't on the Ethereal Plane can't perceive you and can't interact with you, unless a special ability or magic has given them the ability to do so. You ignore all objects and effects that aren't on the Ethereal Plane, allowing you to move through objects you perceive on the plane you originated from. When the spell ends, you immediately return to the plane you originated from in the spot you currently occupy. If you occupy the same spot as a solid object or creature when this happens, you are immediately shunted to the nearest unoccupied space that you can occupy and take force damage equal to twice the number of feet you are moved. This spell has no effect if you cast it while you are on the Ethereal Plane or a plane that doesn't border it, such as one of the Outer Planes.", - "document": "srd", - "level": 7, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you can target up to three willing creatures (including you) for each slot level above 7th. The creatures must be within 10 feet of you when you cast the spell.", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_expeditious-retreat", - "fields": { - "name": "Expeditious Retreat", - "desc": "This spell allows you to move at an incredible pace. When you cast this spell, and then as a bonus action on each of your turns until the spell ends, you can take the Dash action.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_eyebite", - "fields": { - "name": "Eyebite", - "desc": "For the spell's duration, your eyes become an inky void imbued with dread power. One creature of your choice within 60 feet of you that you can see must succeed on a wisdom saving throw or be affected by one of the following effects of your choice for the duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of eyebite.\n\n**Asleep.** The target falls unconscious. It wakes up if it takes any damage or if another creature uses its action to shake the sleeper awake.\n\n**Panicked.** The target is frightened of you. On each of its turns, the frightened creature must take the Dash action and move away from you by the safest and shortest available route, unless there is nowhere to move. If the target moves to a place at least 60 feet away from you where it can no longer see you, this effect ends\n\n **Sickened.** The target has disadvantage on attack rolls and ability checks. At the end of each of its turns, it can make another wisdom saving throw. If it succeeds, the effect ends.", - "document": "srd", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_fabricate", - "fields": { - "name": "Fabricate", - "desc": "You convert raw materials into products of the same material. For example, you can fabricate a wooden bridge from a clump of trees, a rope from a patch of hemp, and clothes from flax or wool. Choose raw materials that you can see within range. You can fabricate a Large or smaller object (contained within a 10-foot cube, or eight connected 5-foot cubes), given a sufficient quantity of raw material. If you are working with metal, stone, or another mineral substance, however, the fabricated object can be no larger than Medium (contained within a single 5-foot cube). The quality of objects made by the spell is commensurate with the quality of the raw materials. Creatures or magic items can't be created or transmuted by this spell. You also can't use it to create items that ordinarily require a high degree of craftsmanship, such as jewelry, weapons, glass, or armor, unless you have proficiency with the type of artisan's tools used to craft such objects.", - "document": "srd", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_faerie-fire", - "fields": { - "name": "Faerie Fire", - "desc": "Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius. Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_faithful-hound", - "fields": { - "name": "Faithful Hound", - "desc": "You conjure a phantom watchdog in an unoccupied space that you can see within range, where it remains for the duration, until you dismiss it as an action, or until you move more than 100 feet away from it. The hound is invisible to all creatures except you and can't be harmed. When a Small or larger creature comes within 30 feet of it without first speaking the password that you specify when you cast this spell, the hound starts barking loudly. The hound sees invisible creatures and can see into the Ethereal Plane. It ignores illusions. At the start of each of your turns, the hound attempts to bite one creature within 5 feet of it that is hostile to you. The hound's attack bonus is equal to your spellcasting ability modifier + your proficiency bonus. On a hit, it deals 4d8 piercing damage.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny silver whistle, a piece of bone, and a thread", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_false-life", - "fields": { - "name": "False Life", - "desc": "Bolstering yourself with a necromantic facsimile of life, you gain 1d4 + 4 temporary hit points for the duration.", - "document": "srd", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you gain 5 additional temporary hit points for each slot level above 1st.", - "target_type": "point", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small amount of alcohol or distilled spirits.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_fear", - "fields": { - "name": "Fear", - "desc": "You project a phantasmal image of a creature's worst fears. Each creature in a 30-foot cone must succeed on a wisdom saving throw or drop whatever it is holding and become frightened for the duration. While frightened by this spell, a creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. If the creature ends its turn in a location where it doesn't have line of sight to you, the creature can make a wisdom saving throw. On a successful save, the spell ends for that creature.", - "document": "srd", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A white feather or the heart of a hen.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cone", - "shape_magnitude": 30, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_feather-fall", - "fields": { - "name": "Feather Fall", - "desc": "Choose up to five falling creatures within range. A falling creature's rate of descent slows to 60 feet per round until the spell ends. If the creature lands before the spell ends, it takes no falling damage and can land on its feet, and the spell ends for that creature.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "A small feather or a piece of down.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_feeblemind", - "fields": { - "name": "Feeblemind", - "desc": "You blast the mind of a creature that you can see within range, attempting to shatter its intellect and personality. The target takes 4d6 psychic damage and must make an intelligence saving throw. On a failed save, the creature's Intelligence and Charisma scores become 1. The creature can't cast spells, activate magic items, understand language, or communicate in any intelligible way. The creature can, however, identify its friends, follow them, and even protect them. At the end of every 30 days, the creature can repeat its saving throw against this spell. If it succeeds on its saving throw, the spell ends. The spell can also be ended by greater restoration, heal, or wish.", - "document": "srd", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A handful of clay, crystal, glass, or mineral spheres.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "psychic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_find-familiar", - "fields": { - "name": "Find Familiar", - "desc": "You gain the service of a familiar, a spirit that takes an animal form you choose: bat, cat, crab, frog (toad), hawk, lizard, octopus, owl, poisonous snake, fish (quipper), rat, raven, sea horse, spider, or weasel. Appearing in an unoccupied space within range, the familiar has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of a beast. Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal. When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again. While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses. As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you. You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature. Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your attack modifier for the roll.", - "document": "srd", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "10 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "10 gp worth of charcoal, incense, and herbs that must be consumed by fire in a brass brazier", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_find-steed", - "fields": { - "name": "Find Steed", - "desc": "You summon a spirit that assumes the form of an unusually intelligent, strong, and loyal steed, creating a long-lasting bond with it. Appearing in an unoccupied space within range, the steed takes on a form that you choose, such as a warhorse, a pony, a camel, an elk, or a mastiff. (Your DM might allow other animals to be summoned as steeds.) The steed has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of its normal type. Additionally, if your steed has an Intelligence of 5 or less, its Intelligence becomes 6, and it gains the ability to understand one language of your choice that you speak. Your steed serves you as a mount, both in combat and out, and you have an instinctive bond with it that allows you to fight as a seamless unit. While mounted on your steed, you can make any spell you cast that targets only you also target your steed. When the steed drops to 0 hit points, it disappears, leaving behind no physical form. You can also dismiss your steed at any time as an action, causing it to disappear. In either case, casting this spell again summons the same steed, restored to its hit point maximum. While your steed is within 1 mile of you, you can communicate with it telepathically. You can't have more than one steed bonded by this spell at a time. As an action, you can release the steed from its bond at any time, causing it to disappear.", - "document": "srd", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_find-the-path", - "fields": { - "name": "Find the Path", - "desc": "This spell allows you to find the shortest, most direct physical route to a specific fixed location that you are familiar with on the same plane of existence. If you name a destination on another plane of existence, a destination that moves (such as a mobile fortress), or a destination that isn't specific (such as \"a green dragon's lair\"), the spell fails. For the duration, as long as you are on the same plane of existence as the destination, you know how far it is and in what direction it lies. While you are traveling there, whenever you are presented with a choice of paths along the way, you automatically determine which path is the shortest and most direct route (but not necessarily the safest route) to the destination.", - "document": "srd", - "level": 6, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A set of divinatory tools-such as bones, ivory sticks, cards, teeth, or carved runes-worth 100gp and an object from the location you wish to find.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_find-traps", - "fields": { - "name": "Find Traps", - "desc": "You sense the presence of any trap within range that is within line of sight. A trap, for the purpose of this spell, includes anything that would inflict a sudden or unexpected effect you consider harmful or undesirable, which was specifically intended as such by its creator. Thus, the spell would sense an area affected by the alarm spell, a glyph of warding, or a mechanical pit trap, but it would not reveal a natural weakness in the floor, an unstable ceiling, or a hidden sinkhole. This spell merely reveals that a trap is present. You don't learn the location of each trap, but you do learn the general nature of the danger posed by a trap you sense.", - "document": "srd", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_finger-of-death", - "fields": { - "name": "Finger of Death", - "desc": "You send negative energy coursing through a creature that you can see within range, causing it searing pain. The target must make a constitution saving throw. It takes 7d8 + 30 necrotic damage on a failed save, or half as much damage on a successful one. A humanoid killed by this spell rises at the start of your next turn as a zombie that is permanently under your command, following your verbal orders to the best of its ability.", - "document": "srd", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "7d8+30", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_fire-bolt", - "fields": { - "name": "Fire Bolt", - "desc": "You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d10", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_fire-shield", - "fields": { - "name": "Fire Shield", - "desc": "Thin and vaporous flame surround your body for the duration of the spell, radiating a bright light bright light in a 10-foot radius and dim light for an additional 10 feet. You can end the spell using an action to make it disappear. The flames are around you a heat shield or cold, your choice. The heat shield gives you cold damage resistance and the cold resistance to fire damage. In addition, whenever a creature within 5 feet of you hits you with a melee attack, flames spring from the shield. The attacker then suffers 2d8 points of fire damage or cold, depending on the model.", - "document": "srd", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A little phosphorus or a firefly.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_fire-storm", - "fields": { - "name": "Fire Storm", - "desc": "A storm made up of sheets of roaring flame appears in a location you choose within range. The area of the storm consists of up to ten 10-foot cubes, which you can arrange as you wish. Each cube must have at least one face adjacent to the face of another cube. Each creature in the area must make a dexterity saving throw. It takes 7d10 fire damage on a failed save, or half as much damage on a successful one. The fire damages objects in the area and ignites flammable objects that aren't being worn or carried. If you choose, plant life in the area is unaffected by this spell.", - "document": "srd", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "7d10", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_fireball", - "fields": { - "name": "Fireball", - "desc": "A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one. The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny ball of bat guano and sulfur.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_flame-blade", - "fields": { - "name": "Flame Blade", - "desc": "You evoke a fiery blade in your free hand. The blade is similar in size and shape to a scimitar, and it lasts for the duration. If you let go of the blade, it disappears, but you can evoke the blade again as a bonus action. You can use your action to make a melee spell attack with the fiery blade. On a hit, the target takes 3d6 fire damage. The flaming blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for every two slot levels above 2nd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Leaf of sumac.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "3d6", - "damage_types": [ - "fire" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_flame-strike", - "fields": { - "name": "Flame Strike", - "desc": "A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high cylinder centered on a point within range must make a dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "level": 5, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Pinch of sulfur.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "4d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_flaming-sphere", - "fields": { - "name": "Flaming Sphere", - "desc": "A 5-foot-diameter sphere of fire appears in an unoccupied space of your choice within range and lasts for the duration. Any creature that ends its turn within 5 feet of the sphere must make a dexterity saving throw. The creature takes 2d6 fire damage on a failed save, or half as much damage on a successful one. As a bonus action, you can move the sphere up to 30 feet. If you ram the sphere into a creature, that creature must make the saving throw against the sphere's damage, and the sphere stops moving this turn. When you move the sphere, you can direct it over barriers up to 5 feet tall and jump it across pits up to 10 feet wide. The sphere ignites flammable objects not being worn or carried, and it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", - "document": "srd", - "level": 2, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of tallow, a pinch of brimstone, and a dusting of powdered iron.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_flesh-to-stone", - "fields": { - "name": "Flesh to Stone", - "desc": "You attempt to turn one creature that you can see within range into stone. If the target's body is made of flesh, the creature must make a constitution saving throw. On a failed save, it is restrained as its flesh begins to harden. On a successful save, the creature isn't affected. A creature restrained by this spell must make another constitution saving throw at the end of each of its turns. If it successfully saves against this spell three times, the spell ends. If it fails its saves three times, it is turned to stone and subjected to the petrified condition for the duration. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind. If the creature is physically broken while petrified, it suffers from similar deformities if it reverts to its original state. If you maintain your concentration on this spell for the entire possible duration, the creature is turned to stone until the effect is removed.", - "document": "srd", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of lime, water, and earth.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_floating-disk", - "fields": { - "name": "Floating Disk", - "desc": "This spell creates a circular, horizontal plane of force, 3 feet in diameter and 1 inch thick, that floats 3 feet above the ground in an unoccupied space of your choice that you can see within range. The disk remains for the duration, and can hold up to 500 pounds. If more weight is placed on it, the spell ends, and everything on the disk falls to the ground. The disk is immobile while you are within 20 feet of it. If you move more than 20 feet away from it, the disk follows you so that it remains within 20 feet of you. If can move across uneven terrain, up or down stairs, slopes and the like, but it can't cross an elevation change of 10 feet or more. For example, the disk can't move across a 10-foot-deep pit, nor could it leave such a pit if it was created at the bottom. If you move more than 100 feet away from the disk (typically because it can't move around an obstacle to follow you), the spell ends.", - "document": "srd", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of mercury.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_fly", - "fields": { - "name": "Fly", - "desc": "You touch a willing creature. The target gains a flying speed of 60 feet for the duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A wing feather from any bird.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_fog-cloud", - "fields": { - "name": "Fog Cloud", - "desc": "You create a 20-foot-radius sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.", - "document": "srd", - "level": 1, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_forbiddance", - "fields": { - "name": "Forbiddance", - "desc": "You create a ward against magical travel that protects up to 40,000 square feet of floor space to a height of 30 feet above the floor. For the duration, creatures can't teleport into the area or use portals, such as those created by the gate spell, to enter the area. The spell proofs the area against planar travel, and therefore prevents creatures from accessing the area by way of the Astral Plane, Ethereal Plane, Feywild, Shadowfell, or the plane shift spell. In addition, the spell damages types of creatures that you choose when you cast it. Choose one or more of the following: celestials, elementals, fey, fiends, and undead. When a chosen creature enters the spell's area for the first time on a turn or starts its turn there, the creature takes 5d10 radiant or necrotic damage (your choice when you cast this spell). When you cast this spell, you can designate a password. A creature that speaks the password as it enters the area takes no damage from the spell. The spell's area can't overlap with the area of another forbiddance spell. If you cast forbiddance every day for 30 days in the same location, the spell lasts until it is dispelled, and the material components are consumed on the last casting.", - "document": "srd", - "level": 6, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A sprinkling of holy water, rare incense, and powdered ruby worth at least 1,000 gp.", - "material_cost": "1000.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "necrotic", - "radiant" - ], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_forcecage", - "fields": { - "name": "Forcecage", - "desc": "An immobile, invisible, cube-shaped prison composed of magical force springs into existence around an area you choose within range. The prison can be a cage or a solid box, as you choose. A prison in the shape of a cage can be up to 20 feet on a side and is made from 1/2-inch diameter bars spaced 1/2 inch apart. A prison in the shape of a box can be up to 10 feet on a side, creating a solid barrier that prevents any matter from passing through it and blocking any spells cast into or out from the area. When you cast the spell, any creature that is completely inside the cage's area is trapped. Creatures only partially within the area, or those too large to fit inside the area, are pushed away from the center of the area until they are completely outside the area. A creature inside the cage can't leave it by nonmagical means. If the creature tries to use teleportation or interplanar travel to leave the cage, it must first make a charisma saving throw. On a success, the creature can use that magic to exit the cage. On a failure, the creature can't exit the cage and wastes the use of the spell or effect. The cage also extends into the Ethereal Plane, blocking ethereal travel. This spell can't be dispelled by dispel magic.", - "document": "srd", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Ruby dust worth 1,500 gp.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_foresight", - "fields": { - "name": "Foresight", - "desc": "You touch a willing creature and bestow a limited ability to see into the immediate future. For the duration, the target can't be surprised and has advantage on attack rolls, ability checks, and saving throws. Additionally, other creatures have disadvantage on attack rolls against the target for the duration. This spell immediately ends if you cast it again before its duration ends.", - "document": "srd", - "level": 9, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A hummingbird feather.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_freedom-of-movement", - "fields": { - "name": "Freedom of Movement", - "desc": "You touch a willing creature. For the duration, the target's movement is unaffected by difficult terrain, and spells and other magical effects can neither reduce the target's speed nor cause the target to be paralyzed or restrained. The target can also spend 5 feet of movement to automatically escape from nonmagical restraints, such as manacles or a creature that has it grappled. Finally, being underwater imposes no penalties on the target's movement or attacks.", - "document": "srd", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A leather strap, bound around the arm or a similar appendage.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_freezing-sphere", - "fields": { - "name": "Freezing Sphere", - "desc": "A frigid globe of cold energy streaks from your fingertips to a point of your choice within range, where it explodes in a 60-foot-radius sphere. Each creature within the area must make a constitution saving throw. On a failed save, a creature takes 10d6 cold damage. On a successful save, it takes half as much damage. If the globe strikes a body of water or a liquid that is principally water (not including water-based creatures), it freezes the liquid to a depth of 6 inches over an area 30 feet square. This ice lasts for 1 minute. Creatures that were swimming on the surface of frozen water are trapped in the ice. A trapped creature can use an action to make a Strength check against your spell save DC to break free. You can refrain from firing the globe after completing the spell, if you wish. A small globe about the size of a sling stone, cool to the touch, appears in your hand. At any time, you or a creature you give the globe to can throw the globe (to a range of 40 feet) or hurl it with a sling (to the sling's normal range). It shatters on impact, with the same effect as the normal casting of the spell. You can also set the globe down without shattering it. After 1 minute, if the globe hasn't already shattered, it explodes.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d6 for each slot level above 6th.", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small crystal sphere.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 60, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_gaseous-form", - "fields": { - "name": "Gaseous Form", - "desc": "You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected. While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated. While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of gauze and a wisp of smoke.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_gate", - "fields": { - "name": "Gate", - "desc": "You conjure a portal linking an unoccupied space you can see within range to a precise location on a different plane of existence. The portal is a circular opening, which you can make 5 to 20 feet in diameter. You can orient the portal in any direction you choose. The portal lasts for the duration. The portal has a front and a back on each plane where it appears. Travel through the portal is possible only by moving through its front. Anything that does so is instantly transported to the other plane, appearing in the unoccupied space nearest to the portal. Deities and other planar rulers can prevent portals created by this spell from opening in their presence or anywhere within their domains. When you cast this spell, you can speak the name of a specific creature (a pseudonym, title, or nickname doesn't work). If that creature is on a plane other than the one you are on, the portal opens in the named creature's immediate vicinity and draws the creature through it to the nearest unoccupied space on your side of the portal. You gain no special power over the creature, and it is free to act as the DM deems appropriate. It might leave, attack you, or help you.", - "document": "srd", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A diamond worth at least 5,000gp.", - "material_cost": "5000.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_geas", - "fields": { - "name": "Geas", - "desc": "You place a magical command on a creature that you can see within range, forcing it to carry out some service or refrain from some action or course of activity as you decide. If the creature can understand you, it must succeed on a wisdom saving throw or become charmed by you for the duration. While the creature is charmed by you, it takes 5d10 psychic damage each time it acts in a manner directly counter to your instructions, but no more than once each day. A creature that can't understand you is unaffected by the spell. You can issue any command you choose, short of an activity that would result in certain death. Should you issue a suicidal command, the spell ends. You can end the spell early by using an action to dismiss it. A remove curse, greater restoration, or wish spell also ends it.", - "document": "srd", - "level": 5, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 7th or 8th level, the duration is 1 year. When you cast this spell using a spell slot of 9th level, the spell lasts until it is ended by one of the spells mentioned above.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "5d10", - "damage_types": [ - "psychic" - ], - "duration": "30 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_gentle-repose", - "fields": { - "name": "Gentle Repose", - "desc": "You touch a corpse or other remains. For the duration, the target is protected from decay and can't become undead. The spell also effectively extends the time limit on raising the target from the dead, since days spent under the influence of this spell don't count against the time limit of spells such as raise dead.", - "document": "srd", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of salt and one copper piece placed on each of the corpse's eyes, which must remain there for the duration.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_giant-insect", - "fields": { - "name": "Giant Insect", - "desc": "You transform up to ten centipedes, three spiders, five wasps, or one scorpion within range into giant versions of their natural forms for the duration. A centipede becomes a giant centipede, a spider becomes a giant spider, a wasp becomes a giant wasp, and a scorpion becomes a giant scorpion. Each creature obeys your verbal commands, and in combat, they act on your turn each round. The DM has the statistics for these creatures and resolves their actions and movement. A creature remains in its giant size for the duration, until it drops to 0 hit points, or until you use an action to dismiss the effect on it. The DM might allow you to choose different targets. For example, if you transform a bee, its giant version might have the same statistics as a giant wasp.", - "document": "srd", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_glibness", - "fields": { - "name": "Glibness", - "desc": "Until the spell ends, when you make a Charisma check, you can replace the number you roll with a 15. Additionally, no matter what you say, magic that would determine if you are telling the truth indicates that you are being truthful.", - "document": "srd", - "level": 8, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_globe-of-invulnerability", - "fields": { - "name": "Globe of Invulnerability", - "desc": "An immobile, faintly shimmering barrier springs into existence in a 10-foot radius around you and remains for the duration. Any spell of 5th level or lower cast from outside the barrier can't affect creatures or objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such spells.", - "document": "srd", - "level": 6, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the barrier blocks spells of one level higher for each slot level above 6th.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A glass or crystal bead that shatters when the spell ends.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_glyph-of-warding", - "fields": { - "name": "Glyph of Warding", - "desc": "When you cast this spell, you inscribe a glyph that harms other creatures, either upon a surface (such as a table or a section of floor or wall) or within an object that can be closed (such as a book, a scroll, or a treasure chest) to conceal the glyph. If you choose a surface, the glyph can cover an area of the surface no larger than 10 feet in diameter. If you choose an object, that object must remain in its place; if the object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered. The glyph is nearly invisible and requires a successful Intelligence (Investigation) check against your spell save DC to be found. You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or standing on the glyph, removing another object covering the glyph, approaching within a certain distance of the glyph, or manipulating the object on which the glyph is inscribed. For glyphs inscribed within an object, the most common triggers include opening that object, approaching within a certain distance of the object, or seeing or reading the glyph. Once a glyph is triggered, this spell ends. You can further refine the trigger so the spell activates only under certain circumstances or according to physical characteristics (such as height or weight), creature kind (for example, the ward could be set to affect aberrations or drow), or alignment. You can also set conditions for creatures that don't trigger the glyph, such as those who say a certain password. When you inscribe the glyph, choose explosive runes or a spell glyph.\n\n**Explosive Runes.** When triggered, the glyph erupts with magical energy in a 20-­foot-­radius sphere centered on the glyph. The sphere spreads around corners. Each creature in the area must make a Dexterity saving throw. A creature takes 5d8 acid, cold, fire, lightning, or thunder damage on a failed saving throw (your choice when you create the glyph), or half as much damage on a successful one.\n\n**Spell Glyph.** You can store a prepared spell of 3rd level or lower in the glyph by casting it as part of creating the glyph. The spell must target a single creature or an area. The spell being stored has no immediate effect when cast in this way. When the glyph is triggered, the stored spell is cast. If the spell has a target, it targets the creature that triggered the glyph. If the spell affects an area, the area is centered on that creature. If the spell summons hostile creatures or creates harmful objects or traps, they appear as close as possible to the intruder and attack it. If the spell requires concentration, it lasts until the end of its full duration.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage of an explosive runes glyph increases by 1d8 for each slot level above 3rd. If you create a spell glyph, you can store any spell of up to the same level as the slot you use for the glyph of warding.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Incense and powdered diamond worth at least 200 gp, which the spell consumes.", - "material_cost": "200.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "acid", - "cold", - "fire", - "lightning", - "thunder" - ], - "duration": "until dispelled or triggered", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_goodberry", - "fields": { - "name": "Goodberry", - "desc": "Up to ten berries appear in your hand and are infused with magic for the duration. A creature can use its action to eat one berry. Eating a berry restores 1 hit point, and the berry provides enough nourishment to sustain a creature for one day. The berries lose their potency if they have not been consumed within 24 hours of the casting of this spell.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A sprig of mistletoe.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_grease", - "fields": { - "name": "Grease", - "desc": "Slick grease covers the ground in a 10-foot square centered on a point within range and turns it into difficult terrain for the duration. When the grease appears, each creature standing in its area must succeed on a dexterity saving throw or fall prone. A creature that enters the area or ends its turn there must also succeed on a dexterity saving throw or fall prone.", - "document": "srd", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of pork rind or butter.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_greater-invisibility", - "fields": { - "name": "Greater Invisibility", - "desc": "You or a creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person.", - "document": "srd", - "level": 4, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_greater-restoration", - "fields": { - "name": "Greater Restoration", - "desc": "You imbue a creature you touch with positive energy to undo a debilitating effect. You can reduce the target's exhaustion level by one, or end one of the following effects on the target: \n- One effect that charmed or petrified the target \n- One curse, including the target's attunement to a cursed magic item \n- Any reduction to one of the target's ability scores \n- One effect reducing the target's hit point maximum", - "document": "srd", - "level": 5, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Diamond dust worth at least 100gp, which the spell consumes.", - "material_cost": "100.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_guardian-of-faith", - "fields": { - "name": "Guardian of Faith", - "desc": "A Large spectral guardian appears and hovers for the duration in an unoccupied space of your choice that you can see within range. The guardian occupies that space and is indistinct except for a gleaming sword and shield emblazoned with the symbol of your deity. Any creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "20", - "damage_types": [ - "radiant" - ], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_guards-and-wards", - "fields": { - "name": "Guards and Wards", - "desc": "You create a ward that protects up to 2,500 square feet of floor space (an area 50 feet square, or one hundred 5-foot squares or twenty-five 10-foot squares). The warded area can be up to 20 feet tall, and shaped as you desire. You can ward several stories of a stronghold by dividing the area among them, as long as you can walk into each contiguous area while you are casting the spell. When you cast this spell, you can specify individuals that are unaffected by any or all of the effects that you choose. You can also specify a password that, when spoken aloud, makes the speaker immune to these effects. Guards and wards creates the following effects within the warded area.\n\n**Corridors.** Fog fills all the warded corridors, making them heavily obscured. In addition, at each intersection or branching passage offering a choice of direction, there is a 50 percent chance that a creature other than you will believe it is going in the opposite direction from the one it chooses.\n\n**Doors.** All doors in the warded area are magically locked, as if sealed by an arcane lock spell. In addition, you can cover up to ten doors with an illusion (equivalent to the illusory object function of the minor illusion spell) to make them appear as plain sections of wall\n\n **Stairs.** Webs fill all stairs in the warded area from top to bottom, as the web spell. These strands regrow in 10 minutes if they are burned or torn away while guards and wards lasts.\n\n**Other Spell Effect.** You can place your choice of one of the following magical effects within the warded area of the stronghold. \n- Place dancing lights in four corridors. You can designate a simple program that the lights repeat as long as guards and wards lasts. \n- Place magic mouth in two locations. \n- Place stinking cloud in two locations. The vapors appear in the places you designate; they return within 10 minutes if dispersed by wind while guards and wards lasts. \n- Place a constant gust of wind in one corridor or room. \n- Place a suggestion in one location. You select an area of up to 5 feet square, and any creature that enters or passes through the area receives the suggestion mentally. The whole warded area radiates magic. A dispel magic cast on a specific effect, if successful, removes only that effect. You can create a permanently guarded and warded structure by casting this spell there every day for one year.", - "document": "srd", - "level": 6, - "school": "abjuration", - "higher_level": "", - "target_type": "area", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Burning incense, a small measure of brimstone and oil, a knotted string, a small amount of umber hulk blood, and a small silver rod worth at least 10 gp.", - "material_cost": "10.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_guidance", - "fields": { - "name": "Guidance", - "desc": "You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one ability check of its choice. It can roll the die before or after making the ability check. The spell then ends.", - "document": "srd", - "level": 0, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_guiding-bolt", - "fields": { - "name": "Guiding Bolt", - "desc": "A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "4d6", - "damage_types": [ - "radiant" - ], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_gust-of-wind", - "fields": { - "name": "Gust of Wind", - "desc": "A line of strong wind 60 feet long and 10 feet wide blasts from you in a direction you choose for the spell's duration. Each creature that starts its turn in the line must succeed on a strength saving throw or be pushed 15 feet away from you in a direction following the line. Any creature in the line must spend 2 feet of movement for every 1 foot it moves when moving closer to you. The gust disperses gas or vapor, and it extinguishes candles, torches, and similar unprotected flames in the area. It causes protected flames, such as those of lanterns, to dance wildly and has a 50 percent chance to extinguish them. As a bonus action on each of your turns before the spell ends, you can change the direction in which the line blasts from you.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A legume seed.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_hallow", - "fields": { - "name": "Hallow", - "desc": "You touch a point and infuse an area around it with holy (or unholy) power. The area can have a radius up to 60 feet, and the spell fails if the radius includes an area already under the effect a hallow spell. The affected area is subject to the following effects. First, celestials, elementals, fey, fiends, and undead can't enter the area, nor can such creatures charm, frighten, or possess creatures within it. Any creature charmed, frightened, or possessed by such a creature is no longer charmed, frightened, or possessed upon entering the area. You can exclude one or more of those types of creatures from this effect. Second, you can bind an extra effect to the area. Choose the effect from the following list, or choose an effect offered by the DM. Some of these effects apply to creatures in the area; you can designate whether the effect applies to all creatures, creatures that follow a specific deity or leader, or creatures of a specific sort, such as ores or trolls. When a creature that would be affected enters the spell's area for the first time on a turn or starts its turn there, it can make a charisma saving throw. On a success, the creature ignores the extra effect until it leaves the area.\n\n**Courage.** Affected creatures can't be frightened while in the area.\n\n**Darkness.** Darkness fills the area. Normal light, as well as magical light created by spells of a lower level than the slot you used to cast this spell, can't illuminate the area\n\n **Daylight.** Bright light fills the area. Magical darkness created by spells of a lower level than the slot you used to cast this spell can't extinguish the light.\n\n**Energy Protection.** Affected creatures in the area have resistance to one damage type of your choice, except for bludgeoning, piercing, or slashing\n\n **Energy Vulnerability.** Affected creatures in the area have vulnerability to one damage type of your choice, except for bludgeoning, piercing, or slashing.\n\n**Everlasting Rest.** Dead bodies interred in the area can't be turned into undead.\n\n**Extradimensional Interference.** Affected creatures can't move or travel using teleportation or by extradimensional or interplanar means.\n\n**Fear.** Affected creatures are frightened while in the area.\n\n**Silence.** No sound can emanate from within the area, and no sound can reach into it.\n\n**Tongues.** Affected creatures can communicate with any other creature in the area, even if they don't share a common language.", - "document": "srd", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Herbs, oils, and incense worth at least 1,000 gp, which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_hallucinatory-terrain", - "fields": { - "name": "Hallucinatory Terrain", - "desc": "You make natural terrain in a 150-foot cube in range look, sound, and smell like some other sort of natural terrain. Thus, open fields or a road can be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road. Manufactured structures, equipment, and creatures within the area aren't changed in appearance.\n\nThe tactile characteristics of the terrain are unchanged, so creatures entering the area are likely to see through the illusion. If the difference isn't obvious by touch, a creature carefully examining the illusion can attempt an Intelligence (Investigation) check against your spell save DC to disbelieve it. A creature who discerns the illusion for what it is, sees it as a vague image superimposed on the terrain.", - "document": "srd", - "level": 4, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A stone, a twig, and a bit of green plant.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": "cube", - "shape_magnitude": 150, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_harm", - "fields": { - "name": "Harm", - "desc": "You unleash a virulent disease on a creature that you can see within range. The target must make a constitution saving throw. On a failed save, it takes 14d6 necrotic damage, or half as much damage on a successful save. The damage can't reduce the target's hit points below 1. If the target fails the saving throw, its hit point maximum is reduced for 1 hour by an amount equal to the necrotic damage it took. Any effect that removes a disease allows a creature's hit point maximum to return to normal before that time passes.", - "document": "srd", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "14d6", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_haste", - "fields": { - "name": "Haste", - "desc": "Choose a willing creature that you can see within range. Until the spell ends, the target's speed is doubled, it gains a +2 bonus to AC, it has advantage on dexterity saving throws, and it gains an additional action on each of its turns. That action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action. When the spell ends, the target can't move or take actions until after its next turn, as a wave of lethargy sweeps over it.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A shaving of licorice root.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_heal", - "fields": { - "name": "Heal", - "desc": "Choose a creature that you can see within range. A surge of positive energy washes through the creature, causing it to regain 70 hit points. This spell also ends blindness, deafness, and any diseases affecting the target. This spell has no effect on constructs or undead.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the amount of healing increases by 10 for each slot level above 6th.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_healing-word", - "fields": { - "name": "Healing Word", - "desc": "A creature of your choice that you can see within range regains hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d4 for each slot level above 1st.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_heat-metal", - "fields": { - "name": "Heat Metal", - "desc": "Choose a manufactured metal object, such as a metal weapon or a suit of heavy or medium metal armor, that you can see within range. You cause the object to glow red-hot. Any creature in physical contact with the object takes 2d8 fire damage when you cast the spell. Until the spell ends, you can use a bonus action on each of your subsequent turns to cause this damage again. If a creature is holding or wearing the object and takes the damage from it, the creature must succeed on a constitution saving throw or drop the object if it can. If it doesn't drop the object, it has disadvantage on attack rolls and ability checks until the start of your next turn.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A piece of iron and a flame.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_hellish-rebuke", - "fields": { - "name": "Hellish Rebuke", - "desc": "You point your finger, and the creature that damaged you is momentarily surrounded by hellish flames. The creature must make a Dexterity saving throw. It takes 2d10 fire damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "2d10", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_heroes-feast", - "fields": { - "name": "Heroes' Feast", - "desc": "You bring forth a great feast, including magnificent food and drink. The feast takes 1 hour to consume and disappears at the end of that time, and the beneficial effects don't set in until this hour is over. Up to twelve other creatures can partake of the feast. A creature that partakes of the feast gains several benefits. The creature is cured of all diseases and poison, becomes immune to poison and being frightened, and makes all wisdom saving throws with advantage. Its hit point maximum also increases by 2d10, and it gains the same number of hit points. These benefits last for 24 hours.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A gem-encrusted bowl worth at least 1,000gp, which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_heroism", - "fields": { - "name": "Heroism", - "desc": "A willing creature you touch is imbued with bravery. Until the spell ends, the creature is immune to being frightened and gains temporary hit points equal to your spellcasting ability modifier at the start of each of its turns. When the spell ends, the target loses any remaining temporary hit points from this spell.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_hideous-laughter", - "fields": { - "name": "Hideous Laughter", - "desc": "A creature of your choice that you can see within range perceives everything as hilariously funny and falls into fits of laughter if this spell affects it. The target must succeed on a wisdom saving throw or fall prone, becoming incapacitated and unable to stand up for the duration. A creature with an Intelligence score of 4 or less isn't affected. At the end of each of its turns, and each time it takes damage, the target can make another wisdom saving throw. The target had advantage on the saving throw if it's triggered by damage. On a success, the spell ends.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Tiny tarts and a feather that is waved in the air.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_hold-monster", - "fields": { - "name": "Hold Monster", - "desc": "Choose a creature you can see within range. The target must make a saving throw of Wisdom or be paralyzed for the duration of the spell. This spell has no effect against the undead. At the end of each round, the target can make a new saving throw of Wisdom. If successful, the spell ends for the creature.", - "document": "srd", - "level": 5, - "school": "enchantment", - "higher_level": "When you cast this spell using a level 6 or higher location, you can target an additional creature for each level of location beyond the fifth. The creatures must be within 30 feet o f each other when you target them.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small piece of iron.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_hold-person", - "fields": { - "name": "Hold Person", - "desc": "Choose a humanoid that you can see within range. The target must succeed on a wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another wisdom saving throw. On a success, the spell ends on the target.", - "document": "srd", - "level": 2, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small, straight piece of iron.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_holy-aura", - "fields": { - "name": "Holy Aura", - "desc": "Divine light washes out from you and coalesces in a soft radiance in a 30-foot radius around you. Creatures of your choice in that radius when you cast this spell shed dim light in a 5-foot radius and have advantage on all saving throws, and other creatures have disadvantage on attack rolls against them until the spell ends. In addition, when a fiend or an undead hits an affected creature with a melee attack, the aura flashes with brilliant light. The attacker must succeed on a constitution saving throw or be blinded until the spell ends.", - "document": "srd", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny reliquary worth at least 1,000gp containing a sacred relic, such as a scrap of cloth from a saint's robe or a piece of parchment from a religious text.", - "material_cost": "1000.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_hunters-mark", - "fields": { - "name": "Hunter's Mark", - "desc": "You choose a creature you can see within range and mystically mark it as your quarry. Until the spell ends, you deal an extra 1d6 damage to the target whenever you hit it with a weapon attack, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find it. If the target drops to 0 hit points before this spell ends, you can use a bonus action on a subsequent turn of yours to mark a new creature.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": " When you cast this spell using a spell slot of 3rd or 4th level, you can maintain your concentration on the spell for up to 8 hours. When you use a spell slot of 5th level or higher, you can maintain your concentration on the spell for up to 24 hours.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_hypnotic-pattern", - "fields": { - "name": "Hypnotic Pattern", - "desc": "You create a twisting pattern of colors that weaves through the air inside a 30-foot cube within range. The pattern appears for a moment and vanishes. Each creature in the area who sees the pattern must make a wisdom saving throw. On a failed save, the creature becomes charmed for the duration. While charmed by this spell, the creature is incapacitated and has a speed of 0. The spell ends for an affected creature if it takes any damage or if someone else uses an action to shake the creature out of its stupor.", - "document": "srd", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "A glowing stick of incense or a crystal vial filled with phosphorescent material.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 30, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_ice-storm", - "fields": { - "name": "Ice Storm", - "desc": "A hail of rock-hard ice pounds to the ground in a 20-foot-radius, 40-foot-high cylinder centered on a point within range. Each creature in the cylinder must make a dexterity saving throw. A creature takes 2d8 bludgeoning damage and 4d6 cold damage on a failed save, or half as much damage on a successful one. Hailstones turn the storm's area of effect into difficult terrain until the end of your next turn.", - "document": "srd", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the bludgeoning damage increases by 1d8 for each slot level above 4th.", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of dust and a few drops of water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_identify", - "fields": { - "name": "Identify", - "desc": "You choose one object that you must touch throughout the casting of the spell. If it is a magic item or some other magic-imbued object, you learn its properties and how to use them, whether it requires attunement to use, and how many charges it has, if any. You learn whether any spells are affecting the item and what they are. If the item was created by a spell, you learn which spell created it. If you instead touch a creature throughout the casting, you learn what spells, if any, are currently affecting it.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pearl worth at least 100gp and an owl feather.", - "material_cost": "100.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_illusory-script", - "fields": { - "name": "Illusory Script", - "desc": "You write on parchment, paper, or some other suitable writing material and imbue it with a potent illusion that lasts for the duration. To you and any creatures you designate when you cast the spell, the writing appears normal, written in your hand, and conveys whatever meaning you intended when you wrote the text. To all others, the writing appears as if it were written in an unknown or magical script that is unintelligible. Alternatively, you can cause the writing to appear to be an entirely different message, written in a different hand and language, though the language must be one you know. Should the spell be dispelled, the original script and the illusion both disappear. A creature with truesight can read the hidden message.", - "document": "srd", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "A lead-based ink worth at least 10gp, which this spell consumes.", - "material_cost": "10.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_imprisonment", - "fields": { - "name": "Imprisonment", - "desc": "You create a magical restraint to hold a creature that you can see within range. The target must succeed on a wisdom saving throw or be bound by the spell; if it succeeds, it is immune to this spell if you cast it again. While affected by this spell, the creature doesn't need to breathe, eat, or drink, and it doesn't age. Divination spells can't locate or perceive the target. When you cast the spell, you choose one of the following forms of imprisonment.\n\n**Burial.** The target is entombed far beneath the earth in a sphere of magical force that is just large enough to contain the target. Nothing can pass through the sphere, nor can any creature teleport or use planar travel to get into or out of it. The special component for this version of the spell is a small mithral orb.\n\n**Chaining.** Heavy chains, firmly rooted in the ground, hold the target in place. The target is restrained until the spell ends, and it can't move or be moved by any means until then. The special component for this version of the spell is a fine chain of precious metal.\n\n**Hedged Prison.** The spell transports the target into a tiny demiplane that is warded against teleportation and planar travel. The demiplane can be a labyrinth, a cage, a tower, or any similar confined structure or area of your choice. The special component for this version of the spell is a miniature representation of the prison made from jade.\n\n**Minimus Containment.** The target shrinks to a height of 1 inch and is imprisoned inside a gemstone or similar object. Light can pass through the gemstone normally (allowing the target to see out and other creatures to see in), but nothing else can pass through, even by means of teleportation or planar travel. The gemstone can't be cut or broken while the spell remains in effect. The special component for this version of the spell is a large, transparent gemstone, such as a corundum, diamond, or ruby.\n\n**Slumber.** The target falls asleep and can't be awoken. The special component for this version of the spell consists of rare soporific herbs.\n\n**Ending the Spell.** During the casting of the spell, in any of its versions, you can specify a condition that will cause the spell to end and release the target. The condition can be as specific or as elaborate as you choose, but the DM must agree that the condition is reasonable and has a likelihood of coming to pass. The conditions can be based on a creature's name, identity, or deity but otherwise must be based on observable actions or qualities and not based on intangibles such as level, class, or hit points. A dispel magic spell can end the spell only if it is cast as a 9th-level spell, targeting either the prison or the special component used to create it. You can use a particular special component to create only one prison at a time. If you cast the spell again using the same component, the target of the first casting is immediately freed from its binding.", - "document": "srd", - "level": 9, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A vellum depiction or a carved statuette in the likeness of the target, and a special component that varies according to the version of the spell you choose, worth at least 500gp per Hit Die of the target.", - "material_cost": "500.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_incendiary-cloud", - "fields": { - "name": "Incendiary Cloud", - "desc": "A swirling cloud of smoke shot through with white-hot embers appears in a 20-foot-radius sphere centered on a point within range. The cloud spreads around corners and is heavily obscured. It lasts for the duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. When the cloud appears, each creature in it must make a dexterity saving throw. A creature takes 10d8 fire damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there. The cloud moves 10 feet directly away from you in a direction that you choose at the start of each of your turns.", - "document": "srd", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "10d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_inflict-wounds", - "fields": { - "name": "Inflict Wounds", - "desc": "Make a melee spell attack against a creature you can reach. On a hit, the target takes 3d10 necrotic damage.", - "document": "srd", - "level": 1, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d10", - "damage_types": [ - "necrotic" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_insect-plague", - "fields": { - "name": "Insect Plague", - "desc": "Swarming, biting locusts fill a 20-foot-radius sphere centered on a point you choose within range. The sphere spreads around corners. The sphere remains for the duration, and its area is lightly obscured. The sphere's area is difficult terrain. When the area appears, each creature in it must make a constitution saving throw. A creature takes 4d10 piercing damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.", - "document": "srd", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.", - "target_type": "point", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A few grains of sugar, some kernels of grain, and a smear of fat.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "4d10", - "damage_types": [ - "piercing" - ], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_instant-summons", - "fields": { - "name": "Instant Summons", - "desc": "You touch an object weighing 10 pounds or less whose longest dimension is 6 feet or less. The spell leaves an invisible mark on its surface and invisibly inscribes the name of the item on the sapphire you use as the material component. Each time you cast this spell, you must use a different sapphire. At any time thereafter, you can use your action to speak the item's name and crush the sapphire. The item instantly appears in your hand regardless of physical or planar distances, and the spell ends. If another creature is holding or carrying the item, crushing the sapphire doesn't transport the item to you, but instead you learn who the creature possessing the object is and roughly where that creature is located at that moment. Dispel magic or a similar effect successfully applied to the sapphire ends this spell's effect.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A sapphire worth 1,000 gp.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_invisibility", - "fields": { - "name": "Invisibility", - "desc": "A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.", - "document": "srd", - "level": 2, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An eyelash encased in gum arabic.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_irresistible-dance", - "fields": { - "name": "Irresistible Dance", - "desc": "Choose one creature that you can see within range. The target begins a comic dance in place: shuffling, tapping its feet, and capering for the duration. Creatures that can't be charmed are immune to this spell. A dancing creature must use all its movement to dance without leaving its space and has disadvantage on dexterity saving throws and attack rolls. While the target is affected by this spell, other creatures have advantage on attack rolls against it. As an action, a dancing creature makes a wisdom saving throw to regain control of itself. On a successful save, the spell ends.", - "document": "srd", - "level": 6, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_jump", - "fields": { - "name": "Jump", - "desc": "You touch a creature. The creature's jump distance is tripled until the spell ends.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A grasshopper's hind leg.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_knock", - "fields": { - "name": "Knock", - "desc": "Choose an object that you can see within range. The object can be a door, a box, a chest, a set of manacles, a padlock, or another object that contains a mundane or magical means that prevents access. A target that is held shut by a mundane lock or that is stuck or barred becomes unlocked, unstuck, or unbarred. If the object has multiple locks, only one of them is unlocked. If you choose a target that is held shut with arcane lock, that spell is suppressed for 10 minutes, during which time the target can be opened and shut normally. When you cast the spell, a loud knock, audible from as far away as 300 feet, emanates from the target object.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_legend-lore", - "fields": { - "name": "Legend Lore", - "desc": "Name or describe a person, place, or object. The spell brings to your mind a brief summary of the significant lore about the thing you named. The lore might consist of current tales, forgotten stories, or even secret lore that has never been widely known. If the thing you named isn't of legendary importance, you gain no information. The more information you already have about the thing, the more precise and detailed the information you receive is. The information you learn is accurate but might be couched in figurative language. For example, if you have a mysterious magic axe on hand, the spell might yield this information: \"Woe to the evildoer whose hand touches the axe, for even the haft slices the hand of the evil ones. Only a true Child of Stone, lover and beloved of Moradin, may awaken the true powers of the axe, and only with the sacred word Rudnogg on the lips.\"", - "document": "srd", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Incense worth 250 inches that fate consumes and four sticks of ivory worth 50 gp each.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_lesser-restoration", - "fields": { - "name": "Lesser Restoration", - "desc": "You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.", - "document": "srd", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_levitate", - "fields": { - "name": "Levitate", - "desc": "One creature or object of your choice that you can see within range rises vertically, up to 20 feet, and remains suspended there for the duration. The spell can levitate a target that weighs up to 500 pounds. An unwilling creature that succeeds on a constitution saving throw is unaffected. The target can move only by pushing or pulling against a fixed object or surface within reach (such as a wall or a ceiling), which allows it to move as if it were climbing. You can change the target's altitude by up to 20 feet in either direction on your turn. If you are the target, you can move up or down as part of your move. Otherwise, you can use your action to move the target, which must remain within the spell's range. When the spell ends, the target floats gently to the ground if it is still aloft.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Either a small leather loop or a piece of golden wire bent into a cup shape with a long shank on one end.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_light", - "fields": { - "name": "Light", - "desc": "You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action. If you target an object held or worn by a hostile creature, that creature must succeed on a dexterity saving throw to avoid the spell.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "A firefly or phosphorescent moss.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_lightning-bolt", - "fields": { - "name": "Lightning Bolt", - "desc": "A stroke of lightning forming a line 100 feet long and 5 feet wide blasts out from you in a direction you choose. Each creature in the line must make a dexterity saving throw. A creature takes 8d6 lightning damage on a failed save, or half as much damage on a successful one. The lightning ignites flammable objects in the area that aren't being worn or carried.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fur and a rod of amber, crystal, or glass.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "8d6", - "damage_types": [ - "lightning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_locate-animals-or-plants", - "fields": { - "name": "Locate Animals or Plants", - "desc": "Describe or name a specific kind of beast or plant. Concentrating on the voice of nature in your surroundings, you learn the direction and distance to the closest creature or plant of that kind within 5 miles, if any are present.", - "document": "srd", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fur from a bloodhound.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_locate-creature", - "fields": { - "name": "Locate Creature", - "desc": "Describe or name a creature that is familiar to you. You sense the direction to the creature's location, as long as that creature is within 1,000 feet of you. If the creature is moving, you know the direction of its movement. The spell can locate a specific creature known to you, or the nearest creature of a specific kind (such as a human or a unicorn), so long as you have seen such a creature up close-within 30 feet-at least once. If the creature you described or named is in a different form, such as being under the effects of a polymorph spell, this spell doesn't locate the creature. This spell can't locate a creature if running water at least 10 feet wide blocks a direct path between you and the creature.", - "document": "srd", - "level": 4, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fur from a bloodhound.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_locate-object", - "fields": { - "name": "Locate Object", - "desc": "Describe or name an object that is familiar to you. You sense the direction to the object's location, as long as that object is within 1,000 feet of you. If the object is in motion, you know the direction of its movement. The spell can locate a specific object known to you, as long as you have seen it up close-within 30 feet-at least once. Alternatively, the spell can locate the nearest object of a particular kind, such as a certain kind of apparel, jewelry, furniture, tool, or weapon. This spell can't locate an object if any thickness of lead, even a thin sheet, blocks a direct path between you and the object.", - "document": "srd", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "object", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A forked twig.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_longstrider", - "fields": { - "name": "Longstrider", - "desc": "You touch a creature. The target's speed increases by 10 feet until the spell ends.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each spell slot above 1st.", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of dirt.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_mage-armor", - "fields": { - "name": "Mage Armor", - "desc": "You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.", - "document": "srd", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A piece of cured leather.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_mage-hand", - "fields": { - "name": "Mage Hand", - "desc": "A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again. You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it. The hand can't attack, activate magic items, or carry more than 10 pounds.", - "document": "srd", - "level": 0, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_magic-circle", - "fields": { - "name": "Magic Circle", - "desc": "You create a 10-­--foot-­--radius, 20-­--foot-­--tall cylinder of magical energy centered on a point on the ground that you can see within range. Glowing runes appear wherever the cylinder intersects with the floor or other surface. Choose one or more of the following types of creatures: celestials, elementals, fey, fiends, or undead. The circle affects a creature of the chosen type in the following ways: \n- The creature can't willingly enter the cylinder by nonmagical means. If the creature tries to use teleportation or interplanar travel to do so, it must first succeed on a charisma saving throw. \n- The creature has disadvantage on attack rolls against targets within the cylinder. \n- Targets within the cylinder can't be charmed, frightened, or possessed by the creature.\nWhen you cast this spell, you can elect to cause its magic to operate in the reverse direction, preventing a creature of the specified type from leaving the cylinder and protecting targets outside it.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 hour for each slot level above 3rd.", - "target_type": "point", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Holy water or powdered silver and iron worth at least 100 gp, which the spell consumes.", - "material_cost": "100.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_magic-jar", - "fields": { - "name": "Magic Jar", - "desc": "Your body falls into a catatonic state as your soul leaves it and enters the container you used for the spell's material component. While your soul inhabits the container, you are aware of your surroundings as if you were in the container's space. You can't move or use reactions. The only action you can take is to project your soul up to 100 feet out of the container, either returning to your living body (and ending the spell) or attempting to possess a humanoids body. You can attempt to possess any humanoid within 100 feet of you that you can see (creatures warded by a protection from evil and good or magic circle spell can't be possessed). The target must make a charisma saving throw. On a failure, your soul moves into the target's body, and the target's soul becomes trapped in the container. On a success, the target resists your efforts to possess it, and you can't attempt to possess it again for 24 hours. Once you possess a creature's body, you control it. Your game statistics are replaced by the statistics of the creature, though you retain your alignment and your Intelligence, Wisdom, and Charisma scores. You retain the benefit of your own class features. If the target has any class levels, you can't use any of its class features. Meanwhile, the possessed creature's soul can perceive from the container using its own senses, but it can't move or take actions at all. While possessing a body, you can use your action to return from the host body to the container if it is within 100 feet of you, returning the host creature's soul to its body. If the host body dies while you're in it, the creature dies, and you must make a charisma saving throw against your own spellcasting DC. On a success, you return to the container if it is within 100 feet of you. Otherwise, you die. If the container is destroyed or the spell ends, your soul immediately returns to your body. If your body is more than 100 feet away from you or if your body is dead when you attempt to return to it, you die. If another creature's soul is in the container when it is destroyed, the creature's soul returns to its body if the body is alive and within 100 feet. Otherwise, that creature dies. When the spell ends, the container is destroyed.", - "document": "srd", - "level": 6, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A gem, crystal, reliquary, or some other ornamental container worth at least 500 gp.", - "material_cost": "500.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_magic-missile", - "fields": { - "name": "Magic Missile", - "desc": "You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_magic-mouth", - "fields": { - "name": "Magic Mouth", - "desc": "You implant a message within an object in range, a message that is uttered when a trigger condition is met. Choose an object that you can see and that isn't being worn or carried by another creature. Then speak the message, which must be 25 words or less, though it can be delivered over as long as 10 minutes. Finally, determine the circumstance that will trigger the spell to deliver your message. When that circumstance occurs, a magical mouth appears on the object and recites the message in your voice and at the same volume you spoke. If the object you chose has a mouth or something that looks like a mouth (for example, the mouth of a statue), the magical mouth appears there so that the words appear to come from the object's mouth. When you cast this spell, you can have the spell end after it delivers its message, or it can remain and repeat its message whenever the trigger occurs. The triggering circumstance can be as general or as detailed as you like, though it must be based on visual or audible conditions that occur within 30 feet of the object. For example, you could instruct the mouth to speak when any creature moves within 30 feet of the object or when a silver bell rings within 30 feet of it.", - "document": "srd", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small bit of honeycomb and jade dust worth at least 10 gp, which the spell consumes", - "material_cost": "10.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_magic-weapon", - "fields": { - "name": "Magic Weapon", - "desc": "You touch a nonmagical weapon. Until the spell ends, that weapon becomes a magic weapon with a +1 bonus to attack rolls and damage rolls.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bonus increases to +2. When you use a spell slot of 6th level or higher, the bonus increases to +3.", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_magnificent-mansion", - "fields": { - "name": "Magnificent Mansion", - "desc": "You conjure an extradimensional dwelling in range that lasts for the duration. You choose where its one entrance is located. The entrance shimmers faintly and is 5 feet wide and 10 feet tall. You and any creature you designate when you cast the spell can enter the extradimensional dwelling as long as the portal remains open. You can open or close the portal if you are within 30 feet of it. While closed, the portal is invisible. Beyond the portal is a magnificent foyer with numerous chambers beyond. The atmosphere is clean, fresh, and warm. You can create any floor plan you like, but the space can't exceed 50 cubes, each cube being 10 feet on each side. The place is furnished and decorated as you choose. It contains sufficient food to serve a nine course banquet for up to 100 people. A staff of 100 near-transparent servants attends all who enter. You decide the visual appearance of these servants and their attire. They are completely obedient to your orders. Each servant can perform any task a normal human servant could perform, but they can't attack or take any action that would directly harm another creature. Thus the servants can fetch things, clean, mend, fold clothes, light fires, serve food, pour wine, and so on. The servants can go anywhere in the mansion but can't leave it. Furnishings and other objects created by this spell dissipate into smoke if removed from the mansion. When the spell ends, any creatures inside the extradimensional space are expelled into the open spaces nearest to the entrance.", - "document": "srd", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "300 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A miniature portal carved from ivory, a small piece of polished marble, and a tiny silver spoon, each item worth at least 5 gp.", - "material_cost": "5.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_major-image", - "fields": { - "name": "Major Image", - "desc": "You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench). As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.", - "document": "srd", - "level": 3, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fleece.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_mass-cure-wounds", - "fields": { - "name": "Mass Cure Wounds", - "desc": "A wave of healing energy washes out from a point of your choice within range. Choose up to six creatures in a 30-foot-radius sphere centered on that point. Each target regains hit points equal to 3d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 5, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the healing increases by 1d8 for each slot level above 5th.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_mass-heal", - "fields": { - "name": "Mass Heal", - "desc": "A flood of healing energy flows from you into injured creatures around you. You restore up to 700 hit points, divided as you choose among any number of creatures that you can see within range. Creatures healed by this spell are also cured of all diseases and any effect making them blinded or deafened. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_mass-healing-word", - "fields": { - "name": "Mass Healing Word", - "desc": "As you call out words of restoration, up to six creatures of your choice that you can see within range regain hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 6, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_mass-suggestion", - "fields": { - "name": "Mass Suggestion", - "desc": "You suggest a course of activity (limited to a sentence or two) and magically influence up to twelve creatures of your choice that you can see within range and that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act automatically negates the effect of the spell. Each target must make a wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do. You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a group of soldiers give all their money to the first beggar they meet. If the condition isn't met before the spell ends, the activity isn't performed. If you or any of your companions damage a creature affected by this spell, the spell ends for that creature.", - "document": "srd", - "level": 6, - "school": "enchantment", - "higher_level": "When you cast this spell using a 7th-level spell slot, the duration is 10 days. When you use an 8th-level spell slot, the duration is 30 days. When you use a 9th-level spell slot, the duration is a year and a day.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "A snake's tongue and either a bit of honeycomb or a drop of sweet oil.", - "material_cost": null, - "material_consumed": false, - "target_count": 12, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_maze", - "fields": { - "name": "Maze", - "desc": "You banish a creature that you can see within range into a labyrinthine demiplane. The target remains there for the duration or until it escapes the maze. The target can use its action to attempt to escape. When it does so, it makes a DC 20 Intelligence check. If it succeeds, it escapes, and the spell ends (a minotaur or goristro demon automatically succeeds). When the spell ends, the target reappears in the space it left or, if that space is occupied, in the nearest unoccupied space.", - "document": "srd", - "level": 8, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_meld-into-stone", - "fields": { - "name": "Meld into Stone", - "desc": "You step into a stone object or surface large enough to fully contain your body, melding yourself and all the equipment you carry with the stone for the duration. Using your movement, you step into the stone at a point you can touch. Nothing of your presence remains visible or otherwise detectable by nonmagical senses. While merged with the stone, you can't see what occurs outside it, and any Wisdom (Perception) checks you make to hear sounds outside it are made with disadvantage. You remain aware of the passage of time and can cast spells on yourself while merged in the stone. You can use your movement to leave the stone where you entered it, which ends the spell. You otherwise can't move. Minor physical damage to the stone doesn't harm you, but its partial destruction or a change in its shape (to the extent that you no longer fit within it) expels you and deals 6d6 bludgeoning damage to you. The stone's complete destruction (or transmutation into a different substance) expels you and deals 50 bludgeoning damage to you. If expelled, you fall prone in an unoccupied space closest to where you first entered.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_mending", - "fields": { - "name": "Mending", - "desc": "This spell repairs a single break or tear in an object you touch, such as a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no longer than 1 foot in any dimension, you mend it, leaving no trace of the former damage. This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.", - "document": "srd", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Two lodestones.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_message", - "fields": { - "name": "Message", - "desc": "You point your finger toward a creature within range and whisper a message. The target (and only the target) hears the message and can reply in a whisper that only you can hear. You can cast this spell through solid objects if you are familiar with the target and know it is beyond the barrier. Magical silence, 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood blocks the spell. The spell doesn't have to follow a straight line and can travel freely around corners or through openings.", - "document": "srd", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A short piece of copper wire.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_meteor-swarm", - "fields": { - "name": "Meteor Swarm", - "desc": "Blazing orbs of fire plummet to the ground at four different points you can see within range. Each creature in a 40-foot-radius sphere centered on each point you choose must make a dexterity saving throw. The sphere spreads around corners. A creature takes 20d6 fire damage and 20d6 bludgeoning damage on a failed save, or half as much damage on a successful one. A creature in the area of more than one fiery burst is affected only once. The spell damages objects in the area and ignites flammable objects that aren't being worn or carried.", - "document": "srd", - "level": 9, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "1 mile", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "20d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 40, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_mind-blank", - "fields": { - "name": "Mind Blank", - "desc": "Until the spell ends, one willing creature you touch is immune to psychic damage, any effect that would sense its emotions or read its thoughts, divination spells, and the charmed condition. The spell even foils wish spells and spells or effects of similar power used to affect the target's mind or to gain information about the target.", - "document": "srd", - "level": 8, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_minor-illusion", - "fields": { - "name": "Minor Illusion", - "desc": "You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again. If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends. If you create an image of an object-such as a chair, muddy footprints, or a small chest-it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it. If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.", - "document": "srd", - "level": 0, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": true, - "material_specified": "A bit of fleece.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 5, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_mirage-arcane", - "fields": { - "name": "Mirage Arcane", - "desc": "You make terrain in an area up to 1 mile square look, sound, smell, and even feel like some other sort of terrain. The terrain's general shape remains the same, however. Open fields or a road could be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road. Similarly, you can alter the appearance of structures, or add them where none are present. The spell doesn't disguise, conceal, or add creatures. The illusion includes audible, visual, tactile, and olfactory elements, so it can turn clear ground into difficult terrain (or vice versa) or otherwise impede movement through the area. Any piece of the illusory terrain (such as a rock or stick) that is removed from the spell's area disappears immediately. Creatures with truesight can see through the illusion to the terrain's true form; however, all other elements of the illusion remain, so while the creature is aware of the illusion's presence, the creature can still physically interact with the illusion.", - "document": "srd", - "level": 7, - "school": "illusion", - "higher_level": "", - "target_type": "area", - "range": "Sight", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 days", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_mirror-image", - "fields": { - "name": "Mirror Image", - "desc": "Three illusionary duplicates of yourself appear in your space. Until the end of the spell, duplicates move with you and imitate your actions, swapping their position so that it is impossible to determine which image is real. You can use your action to dispel the illusory duplicates. Whenever a creature is targeting you with an attack during the duration of the spell, roll 1d20 to determine if the attack does not target rather one of your duplicates. If you have three duplicates, you need 6 or more on your throw to lead the target of the attack to a duplicate. With two duplicates, you need 8 or more. With one duplicate, you need 11 or more. The CA of a duplicate is 10 + your Dexterity modifier. If an attack hits a duplicate, it is destroyed. A duplicate may be destroyed not just an attack on key. It ignores other damage and effects. The spell ends if the three duplicates are destroyed. A creature is unaffected by this fate if she can not see if it relies on a different meaning as vision, such as blind vision, or if it can perceive illusions as false, as with clear vision.", - "document": "srd", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_mislead", - "fields": { - "name": "Mislead", - "desc": "You become invisible at the same time that an illusory double of you appears where you are standing. The double lasts for the duration, but the invisibility ends if you attack or cast a spell. You can use your action to move your illusory double up to twice your speed and make it gesture, speak, and behave in whatever way you choose. You can see through its eyes and hear through its ears as if you were located where it is. On each of your turns as a bonus action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are blinded and deafened in regard to your own surroundings.", - "document": "srd", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_misty-step", - "fields": { - "name": "Misty Step", - "desc": "Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.", - "document": "srd", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_modify-memory", - "fields": { - "name": "Modify Memory", - "desc": "You attempt to reshape another creature's memories. One creature that you can see must make a wisdom saving throw. If you are fighting the creature, it has advantage on the saving throw. On a failed save, the target becomes charmed by you for the duration. The charmed target is incapacitated and unaware of its surroundings, though it can still hear you. If it takes any damage or is targeted by another spell, this spell ends, and none of the target's memories are modified. While this charm lasts, you can affect the target's memory of an event that it experienced within the last 24 hours and that lasted no more than 10 minutes. You can permanently eliminate all memory of the event, allow the target to recall the event with perfect clarity and exacting detail, change its memory of the details of the event, or create a memory of some other event. You must speak to the target to describe how its memories are affected, and it must be able to understand your language for the modified memories to take root. Its mind fills in any gaps in the details of your description. If the spell ends before you have finished describing the modified memories, the creature's memory isn't altered. Otherwise, the modified memories take hold when the spell ends. A modified memory doesn't necessarily affect how a creature behaves, particularly if the memory contradicts the creature's natural inclinations, alignment, or beliefs. An illogical modified memory, such as implanting a memory of how much the creature enjoyed dousing itself in acid, is dismissed, perhaps as a bad dream. The DM might deem a modified memory too nonsensical to affect a creature in a significant manner. A remove curse or greater restoration spell cast on the target restores the creature's true memory.", - "document": "srd", - "level": 5, - "school": "enchantment", - "higher_level": "If you cast this spell using a spell slot of 6th level or higher, you can alter the target's memories of an event that took place up to 7 days ago (6th level), 30 days ago (7th level), 1 year ago (8th level), or any time in the creature's past (9th level).", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_moonbeam", - "fields": { - "name": "Moonbeam", - "desc": "A silvery beam of pale light shines down in a 5-foot-radius, 40-foot-high cylinder centered on a point within range. Until the spell ends, dim light fills the cylinder. When a creature enters the spell's area for the first time on a turn or starts its turn there, it is engulfed in ghostly flames that cause searing pain, and it must make a constitution saving throw. It takes 2d10 radiant damage on a failed save, or half as much damage on a successful one. A shapechanger makes its saving throw with disadvantage. If it fails, it also instantly reverts to its original form and can't assume a different form until it leaves the spell's light. On each of your turns after you cast this spell, you can use an action to move the beam 60 feet in any direction.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d10 for each slot level above 2nd.", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Several seeds of any moonseed plant and a piece of opalescent feldspar.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d10", - "damage_types": [ - "radiant" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_move-earth", - "fields": { - "name": "Move Earth", - "desc": "Choose an area of terrain no larger than 40 feet on a side within range. You can reshape dirt, sand, or clay in the area in any manner you choose for the duration. You can raise or lower the area's elevation, create or fill in a trench, erect or flatten a wall, or form a pillar. The extent of any such changes can't exceed half the area's largest dimension. So, if you affect a 40-foot square, you can create a pillar up to 20 feet high, raise or lower the square's elevation by up to 20 feet, dig a trench up to 20 feet deep, and so on. It takes 10 minutes for these changes to complete. At the end of every 10 minutes you spend concentrating on the spell, you can choose a new area of terrain to affect. Because the terrain's transformation occurs slowly, creatures in the area can't usually be trapped or injured by the ground's movement. This spell can't manipulate natural stone or stone construction. Rocks and structures shift to accommodate the new terrain. If the way you shape the terrain would make a structure unstable, it might collapse. Similarly, this spell doesn't directly affect plant growth. The moved earth carries any plants along with it.", - "document": "srd", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An iron blade and a small bag containing a mixture of soils-clay, loam, and sand.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "2 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_nondetection", - "fields": { - "name": "Nondetection", - "desc": "For the duration, you hide a target that you touch from divination magic. The target can be a willing creature or a place or an object no larger than 10 feet in any dimension. The target can't be targeted by any divination magic or perceived through magical scrying sensors.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of diamond dust worth 25 gp sprinkled over the target, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_pass-without-trace", - "fields": { - "name": "Pass without Trace", - "desc": "A veil of shadows and silence radiates from you, masking you and your companions from detection. For the duration, each creature you choose within 30 feet of you (including you) has a +10 bonus to Dexterity (Stealth) checks and can't be tracked except by magical means. A creature that receives this bonus leaves behind no tracks or other traces of its passage.", - "document": "srd", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Ashes from a burned leaf of mistletoe and a sprig of spruce.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_passwall", - "fields": { - "name": "Passwall", - "desc": "A passage appears at a point of your choice that you can see on a wooden, plaster, or stone surface (such as a wall, a ceiling, or a floor) within range, and lasts for the duration. You choose the opening's dimensions: up to 5 feet wide, 8 feet tall, and 20 feet deep. The passage creates no instability in a structure surrounding it. When the opening disappears, any creatures or objects still in the passage created by the spell are safely ejected to an unoccupied space nearest to the surface on which you cast the spell.", - "document": "srd", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of sesame seeds.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_phantasmal-killer", - "fields": { - "name": "Phantasmal Killer", - "desc": "You tap into the nightmares of a creature you can see within range and create an illusory manifestation of its deepest fears, visible only to that creature. The target must make a wisdom saving throw. On a failed save, the target becomes frightened for the duration. At the start of each of the target's turns before the spell ends, the target must succeed on a wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends.", - "document": "srd", - "level": 4, - "school": "illusion", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d10 for each slot level above 4th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_phantom-steed", - "fields": { - "name": "Phantom Steed", - "desc": "A Large quasi-real, horselike creature appears on the ground in an unoccupied space of your choice within range. You decide the creature's appearance, but it is equipped with a saddle, bit, and bridle. Any of the equipment created by the spell vanishes in a puff of smoke if it is carried more than 10 feet away from the steed. For the duration, you or a creature you choose can ride the steed. The creature uses the statistics for a riding horse, except it has a speed of 100 feet and can travel 10 miles in an hour, or 13 miles at a fast pace. When the spell ends, the steed gradually fades, giving the rider 1 minute to dismount. The spell ends if you use an action to dismiss it or if the steed takes any damage.", - "document": "srd", - "level": 3, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_planar-ally", - "fields": { - "name": "Planar Ally", - "desc": "You beseech an otherworldly entity for aid. The being must be known to you: a god, a primordial, a demon prince, or some other being of cosmic power. That entity sends a celestial, an elemental, or a fiend loyal to it to aid you, making the creature appear in an unoccupied space within range. If you know a specific creature's name, you can speak that name when you cast this spell to request that creature, though you might get a different creature anyway (DM's choice). When the creature appears, it is under no compulsion to behave in any particular way. You can ask the creature to perform a service in exchange for payment, but it isn't obliged to do so. The requested task could range from simple (fly us across the chasm, or help us fight a battle) to complex (spy on our enemies, or protect us during our foray into the dungeon). You must be able to communicate with the creature to bargain for its services. Payment can take a variety of forms. A celestial might require a sizable donation of gold or magic items to an allied temple, while a fiend might demand a living sacrifice or a gift of treasure. Some creatures might exchange their service for a quest undertaken by you. As a rule of thumb, a task that can be measured in minutes requires a payment worth 100 gp per minute. A task measured in hours requires 1,000 gp per hour. And a task measured in days (up to 10 days) requires 10,000 gp per day. The DM can adjust these payments based on the circumstances under which you cast the spell. If the task is aligned with the creature's ethos, the payment might be halved or even waived. Nonhazardous tasks typically require only half the suggested payment, while especially dangerous tasks might require a greater gift. Creatures rarely accept tasks that seem suicidal. After the creature completes the task, or when the agreed-upon duration of service expires, the creature returns to its home plane after reporting back to you, if appropriate to the task and if possible. If you are unable to agree on a price for the creature's service, the creature immediately returns to its home plane. A creature enlisted to join your group counts as a member of it, receiving a full share of experience points awarded.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_planar-binding", - "fields": { - "name": "Planar Binding", - "desc": "With this spell, you attempt to bind a celestial, an elemental, a fey, or a fiend to your service. The creature must be within range for the entire casting of the spell. (Typically, the creature is first summoned into the center of an inverted magic circle in order to keep it trapped while this spell is cast.) At the completion of the casting, the target must make a charisma saving throw. On a failed save, it is bound to serve you for the duration. If the creature was summoned or created by another spell, that spell's duration is extended to match the duration of this spell. A bound creature must follow your instructions to the best of its ability. You might command the creature to accompany you on an adventure, to guard a location, or to deliver a message. The creature obeys the letter of your instructions, but if the creature is hostile to you, it strives to twist your words to achieve its own objectives. If the creature carries out your instructions completely before the spell ends, it travels to you to report this fact if you are on the same plane of existence. If you are on a different plane of existence, it returns to the place where you bound it and remains there until the spell ends.", - "document": "srd", - "level": 5, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of a higher level, the duration increases to 10 days with a 6th-level slot, to 30 days with a 7th-level slot, to 180 days with an 8th-level slot, and to a year and a day with a 9th-level spell slot.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A jewel worth at least 1,000 gp, which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_plane-shift", - "fields": { - "name": "Plane Shift", - "desc": "You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion. Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle. You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.", - "document": "srd", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence.", - "material_cost": "250.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_plant-growth", - "fields": { - "name": "Plant Growth", - "desc": "This spell channels vitality into plants within a specific area. There are two possible uses for the spell, granting either immediate or long-term benefits. If you cast this spell using 1 action, choose a point within range. All normal plants in a 100-foot radius centered on that point become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves. You can exclude one or more areas of any size within the spell's area from being affected. If you cast this spell over 8 hours, you enrich the land. All plants in a half-mile radius centered on a point within range become enriched for 1 year. The plants yield twice the normal amount of food when harvested.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_poison-spray", - "fields": { - "name": "Poison Spray", - "desc": "You extend your hand toward a creature you can see within range and project a puff of noxious gas from your palm. The creature must succeed on a Constitution saving throw or take 1d12 poison damage.", - "document": "srd", - "level": 0, - "school": "conjuration", - "higher_level": "This spell's damage increases by 1d12 when you reach 5th level (2d12), 11th level (3d12), and 17th level (4d12).", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_polymorph", - "fields": { - "name": "Polymorph", - "desc": "This spell transforms a creature that you can see within range into a new form. An unwilling creature must make a wisdom saving throw to avoid the effect. A shapechanger automatically succeeds on this saving throw. The transformation lasts for the duration, or until the target drops to 0 hit points or dies. The new form can be any beast whose challenge rating is equal to or less than the target's (or the target's level, if it doesn't have a challenge rating). The target's game statistics, including mental ability scores, are replaced by the statistics of the chosen beast. It retains its alignment and personality. The target assumes the hit points of its new form. When it reverts to its normal form, the creature returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak, cast spells, or take any other action that requires hands or speech. The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its equipment.", - "document": "srd", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A caterpillar cocoon.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_power-word-kill", - "fields": { - "name": "Power Word Kill", - "desc": "You utter a word of power that can compel one creature you can see within range to die instantly. If the creature you choose has 100 hit points or fewer, it dies. Otherwise, the spell has no effect.", - "document": "srd", - "level": 9, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_power-word-stun", - "fields": { - "name": "Power Word Stun", - "desc": "You speak a word of power that can overwhelm the mind of one creature you can see within range, leaving it dumbfounded. If the target has 150 hit points or fewer, it is stunned. Otherwise, the spell has no effect. The stunned target must make a constitution saving throw at the end of each of its turns. On a successful save, this stunning effect ends.", - "document": "srd", - "level": 8, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_prayer-of-healing", - "fields": { - "name": "Prayer of Healing", - "desc": "Up to six creatures of your choice that you can see within range each regain hit points equal to 2d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the healing increases by 1d8 for each slot level above 2nd.", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 6, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_prestidigitation", - "fields": { - "name": "Prestidigitation", - "desc": "This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within 'range': \n- You create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor. \n- You instantaneously light or snuff out a candle, a torch, or a small campfire. \n- You instantaneously clean or soil an object no larger than 1 cubic foot. \n- You chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour. \n- You make a color, a small mark, or a symbol appear on an object or a surface for 1 hour. \n- You create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn. \nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.", - "document": "srd", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_prismatic-spray", - "fields": { - "name": "Prismatic Spray", - "desc": "Eight multicolored rays of light flash from your hand. Each ray is a different color and has a different power and purpose. Each creature in a 60-foot cone must make a dexterity saving throw. For each target, roll a d8 to determine which color ray affects it.\n\n**1. Red.** The target takes 10d6 fire damage on a failed save, or half as much damage on a successful one.\n\n**2. Orange.** The target takes 10d6 acid damage on a failed save, or half as much damage on a successful one.\n\n**3. Yellow.** The target takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**4. Green.** The target takes 10d6 poison damage on a failed save, or half as much damage on a successful one.\n\n**5. Blue.** The target takes 10d6 cold damage on a failed save, or half as much damage on a successful one.\n\n**6. Indigo.** On a failed save, the target is restrained. It must then make a constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the petrified condition. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind.\n\n**7. Violet.** On a failed save, the target is blinded. It must then make a wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of existence of the DM's choosing and is no longer blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.) \n\n**8. Special.** The target is struck by two rays. Roll twice more, rerolling any 8.", - "document": "srd", - "level": 7, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": "cone", - "shape_magnitude": 60, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_prismatic-wall", - "fields": { - "name": "Prismatic Wall", - "desc": "A shimmering, multicolored plane of light forms a vertical opaque wall-up to 90 feet long, 30 feet high, and 1 inch thick-centered on a point you can see within range. Alternatively, you can shape the wall into a sphere up to 30 feet in diameter centered on a point you choose within range. The wall remains in place for the duration. If you position the wall so that it passes through a space occupied by a creature, the spell fails, and your action and the spell slot are wasted. The wall sheds bright light out to a range of 100 feet and dim light for an additional 100 feet. You and creatures you designate at the time you cast the spell can pass through and remain near the wall without harm. If another creature that can see the wall moves to within 20 feet of it or starts its turn there, the creature must succeed on a constitution saving throw or become blinded for 1 minute. The wall consists of seven layers, each with a different color. When a creature attempts to reach into or pass through the wall, it does so one layer at a time through all the wall's layers. As it passes or reaches through each layer, the creature must make a dexterity saving throw or be affected by that layer's properties as described below. The wall can be destroyed, also one layer at a time, in order from red to violet, by means specific to each layer. Once a layer is destroyed, it remains so for the duration of the spell. A rod of cancellation destroys a prismatic wall, but an antimagic field has no effect on it.\n\n**1. Red.** The creature takes 10d6 fire damage on a failed save, or half as much damage on a successful one. While this layer is in place, nonmagical ranged attacks can't pass through the wall. The layer can be destroyed by dealing at least 25 cold damage to it.\n\n**2. Orange.** The creature takes 10d6 acid damage on a failed save, or half as much damage on a successful one. While this layer is in place, magical ranged attacks can't pass through the wall. The layer is destroyed by a strong wind.\n\n**3. Yellow.** The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 60 force damage to it.\n\n**4. Green.** The creature takes 10d6 poison damage on a failed save, or half as much damage on a successful one. A passwall spell, or another spell of equal or greater level that can open a portal on a solid surface, destroys this layer.\n\n**5. Blue.** The creature takes 10d6 cold damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 25 fire damage to it.\n\n**6. Indigo.** On a failed save, the creature is restrained. It must then make a constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the petrified condition. The successes and failures don't need to be consecutive; keep track of both until the creature collects three of a kind. While this layer is in place, spells can't be cast through the wall. The layer is destroyed by bright light shed by a daylight spell or a similar spell of equal or higher level.\n\n**7. Violet.** On a failed save, the creature is blinded. It must then make a wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of the DM's choosing and is no longer blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.) This layer is destroyed by a dispel magic spell or a similar spell of equal or higher level that can end spells and magical effects.", - "document": "srd", - "level": 9, - "school": "abjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "fire" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_private-sanctum", - "fields": { - "name": "Private Sanctum", - "desc": "You make an area within range magically secure. The area is a cube that can be as small as 5 feet to as large as 100 feet on each side. The spell lasts for the duration or until you use an action to dismiss it. When you cast the spell, you decide what sort of security the spell provides, choosing any or all of the following properties: \n- Sound can't pass through the barrier at the edge of the warded area. \n- The barrier of the warded area appears dark and foggy, preventing vision (including darkvision) through it. \n- Sensors created by divination spells can't appear inside the protected area or pass through the barrier at its perimeter. \n- Creatures in the area can't be targeted by divination spells. \n- Nothing can teleport into or out of the warded area. \n- Planar travel is blocked within the warded area. \nCasting this spell on the same spot every day for a year makes this effect permanent.", - "document": "srd", - "level": 4, - "school": "abjuration", - "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can increase the size of the cube by 100 feet for each slot level beyond 4th. Thus you could protect a cube that can be up to 200 feet on one side by using a spell slot of 5th level.", - "target_type": "area", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A thin sheet of lead, a piece of opaque glass, a wad of cotton or cloth, and powdered chrysolite.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_produce-flame", - "fields": { - "name": "Produce Flame", - "desc": "A flickering flame appears in your hand. The flame remains there for the duration and harms neither you nor your equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The spell ends if you dismiss it as an action or if you cast it again. You can also attack with the flame, although doing so ends the spell. When you cast this spell, or as an action on a later turn, you can hurl the flame at a creature within 30 feet of you. Make a ranged spell attack. On a hit, the target takes 1d8 fire damage.", - "document": "srd", - "level": 0, - "school": "conjuration", - "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "fire" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_programmed-illusion", - "fields": { - "name": "Programmed Illusion", - "desc": "You create an illusion of an object, a creature, or some other visible phenomenon within range that activates when a specific condition occurs. The illusion is imperceptible until then. It must be no larger than a 30-foot cube, and you decide when you cast the spell how the illusion behaves and what sounds it makes. This scripted performance can last up to 5 minutes. When the condition you specify occurs, the illusion springs into existence and performs in the manner you described. Once the illusion finishes performing, it disappears and remains dormant for 10 minutes. After this time, the illusion can be activated again. The triggering condition can be as general or as detailed as you like, though it must be based on visual or audible conditions that occur within 30 feet of the area. For example, you could create an illusion of yourself to appear and warn off others who attempt to open a trapped door, or you could set the illusion to trigger only when a creature says the correct word or phrase. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature.", - "document": "srd", - "level": 6, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fleece and jade dust worth at least 25 gp.", - "material_cost": "25.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": "cube", - "shape_magnitude": 30, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_project-image", - "fields": { - "name": "Project Image", - "desc": "You create an illusory copy of yourself that lasts for the duration. The copy can appear at any location within range that you have seen before, regardless of intervening obstacles. The illusion looks and sounds like you but is intangible. If the illusion takes any damage, it disappears, and the spell ends. You can use your action to move this illusion up to twice your speed, and make it gesture, speak, and behave in whatever way you choose. It mimics your mannerisms perfectly. You can see through its eyes and hear through its ears as if you were in its space. On your turn as a bonus action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are blinded and deafened in regard to your own surroundings. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature.", - "document": "srd", - "level": 7, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "500 miles", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small replica of you made from materials worth at least 5 gp.", - "material_cost": "5.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_protection-from-energy", - "fields": { - "name": "Protection from Energy", - "desc": "For the duration, the willing creature you touch has resistance to one damage type of your choice: acid, cold, fire, lightning, or thunder.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_protection-from-evil-and-good", - "fields": { - "name": "Protection from Evil and Good", - "desc": "Until the spell ends, one willing creature you touch is protected against certain types of creatures: aberrations, celestials, elementals, fey, fiends, and undead. The protection grants several benefits. Creatures of those types have disadvantage on attack rolls against the target. The target also can't be charmed, frightened, or possessed by them. If the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against the relevant effect.", - "document": "srd", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Holy water or powdered silver and iron, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_protection-from-poison", - "fields": { - "name": "Protection from Poison", - "desc": "You touch a creature. If it is poisoned, you neutralize the poison. If more than one poison afflicts the target, you neutralize one poison that you know is present, or you neutralize one at random. For the duration, the target has advantage on saving throws against being poisoned, and it has resistance to poison damage.", - "document": "srd", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_purify-food-and-drink", - "fields": { - "name": "Purify Food and Drink", - "desc": "All nonmagical food and drink within a 5-foot radius sphere centered on a point of your choice within range is purified and rendered free of poison and disease.", - "document": "srd", - "level": 1, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "10 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": "sphere", - "shape_magnitude": 5, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_raise-dead", - "fields": { - "name": "Raise Dead", - "desc": "You return a dead creature you touch to life, provided that it has been dead no longer than 10 days. If the creature's soul is both willing and at liberty to rejoin the body, the creature returns to life with 1 hit point. This spell also neutralizes any poisons and cures nonmagical diseases that affected the creature at the time it died. This spell doesn't, however, remove magical diseases, curses, or similar effects; if these aren't first removed prior to casting the spell, they take effect when the creature returns to life. The spell can't return an undead creature to life. This spell closes all mortal wounds, but it doesn't restore missing body parts. If the creature is lacking body parts or organs integral for its survival-its head, for instance-the spell automatically fails. Coming back from the dead is an ordeal. The target takes a -4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.", - "document": "srd", - "level": 5, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A diamond worth at least 500gp, which the spell consumes.", - "material_cost": "500.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_ray-of-enfeeblement", - "fields": { - "name": "Ray of Enfeeblement", - "desc": "A black beam of enervating energy springs from your finger toward a creature within range. Make a ranged spell attack against the target. On a hit, the target deals only half damage with weapon attacks that use Strength until the spell ends. At the end of each of the target's turns, it can make a constitution saving throw against the spell. On a success, the spell ends.", - "document": "srd", - "level": 2, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_ray-of-frost", - "fields": { - "name": "Ray of Frost", - "desc": "A frigid beam of blue-white light streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage, and its speed is reduced by 10 feet until the start of your next turn.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "cold" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_regenerate", - "fields": { - "name": "Regenerate", - "desc": "You touch a creature and stimulate its natural healing ability. The target regains 4d8 + 15 hit points. For the duration of the spell, the target regains 1 hit point at the start of each of its turns (10 hit points each minute). The target's severed body members (fingers, legs, tails, and so on), if any, are restored after 2 minutes. If you have the severed part and hold it to the stump, the spell instantaneously causes the limb to knit to the stump.", - "document": "srd", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A prayer wheel and holy water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_reincarnate", - "fields": { - "name": "Reincarnate", - "desc": "You touch a dead humanoid or a piece of a dead humanoid. Provided that the creature has been dead no longer than 10 days, the spell forms a new adult body for it and then calls the soul to enter that body. If the target's soul isn't free or willing to do so, the spell fails. The magic fashions a new body for the creature to inhabit, which likely causes the creature's race to change. The DM rolls a d 100 and consults the following table to determine what form the creature takes when restored to life, or the DM chooses a form.\n\n**01-04** Dragonborn **05-13** Dwarf, hill **14-21** Dwarf, mountain **22-25** Elf, dark **26-34** Elf, high **35-42** Elf, wood **43-46** Gnome, forest **47-52** Gnome, rock **53-56** Half-elf **57-60** Half-orc **61-68** Halfling, lightfoot **69-76** Halfling, stout **77-96** Human **97-00** Tiefling \nThe reincarnated creature recalls its former life and experiences. It retains the capabilities it had in its original form, except it exchanges its original race for the new one and changes its racial traits accordingly.", - "document": "srd", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Rare oils and unguents worth at least 1,000 gp, which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_remove-curse", - "fields": { - "name": "Remove Curse", - "desc": "At your touch, all curses affecting one creature or object end. If the object is a cursed magic item, its curse remains, but the spell breaks its owner's attunement to the object so it can be removed or discarded.", - "document": "srd", - "level": 3, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_resilient-sphere", - "fields": { - "name": "Resilient Sphere", - "desc": "A sphere of shimmering force encloses a creature or object of Large size or smaller within range. An unwilling creature must make a dexterity saving throw. On a failed save, the creature is enclosed for the duration. Nothing-not physical objects, energy, or other spell effects-can pass through the barrier, in or out, though a creature in the sphere can breathe there. The sphere is immune to all damage, and a creature or object inside can't be damaged by attacks or effects originating from outside, nor can a creature inside the sphere damage anything outside it. The sphere is weightless and just large enough to contain the creature or object inside. An enclosed creature can use its action to push against the sphere's walls and thus roll the sphere at up to half the creature's speed. Similarly, the globe can be picked up and moved by other creatures. A disintegrate spell targeting the globe destroys it without harming anything inside it.", - "document": "srd", - "level": 4, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A hemispherical piece of clear crystal and a matching hemispherical piece of gum arabic.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_resistance", - "fields": { - "name": "Resistance", - "desc": "You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one saving throw of its choice. It can roll the die before or after making the saving throw. The spell then ends.", - "document": "srd", - "level": 0, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A miniature cloak.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_resurrection", - "fields": { - "name": "Resurrection", - "desc": "You touch a dead creature that has been dead for no more than a century, that didn't die of old age, and that isn't undead. If its soul is free and willing, the target returns to life with all its hit points. This spell neutralizes any poisons and cures normal diseases afflicting the creature when it died. It doesn't, however, remove magical diseases, curses, and the like; if such effects aren't removed prior to casting the spell, they afflict the target on its return to life. This spell closes all mortal wounds and restores any missing body parts. Coming back from the dead is an ordeal. The target takes a -4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears. Casting this spell to restore life to a creature that has been dead for one year or longer taxes you greatly. Until you finish a long rest, you can't cast spells again, and you have disadvantage on all attack rolls, ability checks, and saving throws.", - "document": "srd", - "level": 7, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A diamond worth at least 1,000gp, which the spell consumes.", - "material_cost": "1000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_reverse-gravity", - "fields": { - "name": "Reverse Gravity", - "desc": "This spell reverses gravity in a 50-foot-radius, 100-foot high cylinder centered on a point within range. All creatures and objects that aren't somehow anchored to the ground in the area fall upward and reach the top of the area when you cast this spell. A creature can make a dexterity saving throw to grab onto a fixed object it can reach, thus avoiding the fall. If some solid object (such as a ceiling) is encountered in this fall, falling objects and creatures strike it just as they would during a normal downward fall. If an object or creature reaches the top of the area without striking anything, it remains there, oscillating slightly, for the duration. At the end of the duration, affected objects and creatures fall back down.", - "document": "srd", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "100 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A lodestone and iron filings.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cylinder", - "shape_magnitude": 100, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_revivify", - "fields": { - "name": "Revivify", - "desc": "You touch a creature that has died within the last minute. That creature returns to life with 1 hit point. This spell can't return to life a creature that has died of old age, nor can it restore any missing body parts.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Diamonds worth 300gp, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_rope-trick", - "fields": { - "name": "Rope Trick", - "desc": "You touch a length of rope that is up to 60 feet long. One end of the rope then rises into the air until the whole rope hangs perpendicular to the ground. At the upper end of the rope, an invisible entrance opens to an extradimensional space that lasts until the spell ends. The extradimensional space can be reached by climbing to the top of the rope. The space can hold as many as eight Medium or smaller creatures. The rope can be pulled into the space, making the rope disappear from view outside the space. Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window centered on the rope. Anything inside the extradimensional space drops out when the spell ends.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Powdered corn extract and a twisted loop of parchment.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_sacred-flame", - "fields": { - "name": "Sacred Flame", - "desc": "Flame-like radiance descends on a creature that you can see within range. The target must succeed on a dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_sanctuary", - "fields": { - "name": "Sanctuary", - "desc": "You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a fireball. If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.", - "document": "srd", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small silver mirror.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_scorching-ray", - "fields": { - "name": "Scorching Ray", - "desc": "You create three rays of fire and hurl them at targets within range. You can hurl them at one target or several. Make a ranged spell attack for each ray. On a hit, the target takes 2d6 fire damage.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 3, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "2d6", - "damage_types": [ - "fire" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_scrying", - "fields": { - "name": "Scrying", - "desc": "You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n**Knowledge & Save Modifier** Secondhand (you have heard of the target) +5 Firsthand (you have met the target) +0 Familiar (you know the target well) -5 **Connection & Save Modifier** Likeness or picture -2 Possession or garment -4 Body part, lock of hair, bit of nail, or the like -10 \nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours. On a failed save, the spell creates an invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the duration. A creature that can see invisible objects sees the sensor as a luminous orb about the size of your fist. Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.", - "document": "srd", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.", - "material_cost": "1000.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_secret-chest", - "fields": { - "name": "Secret Chest", - "desc": "You hide a chest, and all its contents, on the Ethereal Plane. You must touch the chest and the miniature replica that serves as a material component for the spell. The chest can contain up to 12 cubic feet of nonliving material (3 feet by 2 feet by 2 feet). While the chest remains on the Ethereal Plane, you can use an action and touch the replica to recall the chest. It appears in an unoccupied space on the ground within 5 feet of you. You can send the chest back to the Ethereal Plane by using an action and touching both the chest and the replica. After 60 days, there is a cumulative 5 percent chance per day that the spell's effect ends. This effect ends if you cast this spell again, if the smaller replica chest is destroyed, or if you choose to end the spell as an action. If the spell ends and the larger chest is on the Ethereal Plane, it is irretrievably lost.", - "document": "srd", - "level": 4, - "school": "conjuration", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An exquisite chest, 3 feet by 2 feet by 2 feet, constructed from rare materials worth at least 5,000 gp, and a Tiny replica made from the same materials worth at least 50 gp.", - "material_cost": "5000.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_see-invisibility", - "fields": { - "name": "See Invisibility", - "desc": "For the duration of the spell, you see invisible creatures and objects as if they were visible, and you can see through Ethereal. The ethereal objects and creatures appear ghostly translucent.", - "document": "srd", - "level": 2, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A dash of talc and a small amount of silver powder.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_seeming", - "fields": { - "name": "Seeming", - "desc": "This spell allows you to change the appearance of any number of creatures that you can see within range. You give each target you choose a new, illusory appearance. An unwilling target can make a charisma saving throw, and if it succeeds, it is unaffected by this spell. The spell disguises physical appearance as well as clothing, armor, weapons, and equipment. You can make each creature seem 1 foot shorter or taller and appear thin, fat, or in between. You can't change a target's body type, so you must choose a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you. The spell lasts for the duration, unless you use your action to dismiss it sooner. The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to a creature's outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel the creature's head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair. A creature can use its action to inspect a target and make an Intelligence (Investigation) check against your spell save DC. If it succeeds, it becomes aware that the target is disguised.", - "document": "srd", - "level": 5, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_sending", - "fields": { - "name": "Sending", - "desc": "You send a short message of twenty-five words or less to a creature with which you are familiar. The creature hears the message in its mind, recognizes you as the sender if it knows you, and can answer in a like manner immediately. The spell enables creatures with Intelligence scores of at least 1 to understand the meaning of your message. You can send the message across any distance and even to other planes of existence, but if the target is on a different plane than you, there is a 5 percent chance that the message doesn't arrive.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Unlimited", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A short piece of fine copper wire.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_sequester", - "fields": { - "name": "Sequester", - "desc": "By means of this spell, a willing creature or an object can be hidden away, safe from detection for the duration. When you cast the spell and touch the target, it becomes invisible and can't be targeted by divination spells or perceived through scrying sensors created by divination spells. If the target is a creature, it falls into a state of suspended animation. Time ceases to flow for it, and it doesn't grow older. You can set a condition for the spell to end early. The condition can be anything you choose, but it must occur or be visible within 1 mile of the target. Examples include \"after 1,000 years\" or \"when the tarrasque awakens.\" This spell also ends if the target takes any damage.", - "document": "srd", - "level": 7, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A powder composed of diamond, emerald, ruby, and sapphire dust worth at least 5,000 gp, which the spell consumes.", - "material_cost": "5000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_shapechange", - "fields": { - "name": "Shapechange", - "desc": "You assume the form of a different creature for the duration. The new form can be of any creature with a challenge rating equal to your level or lower. The creature can't be a construct or an undead, and you must have seen the sort of creature at least once. You transform into an average example of that creature, one without any class levels or the Spellcasting trait. Your game statistics are replaced by the statistics of the chosen creature, though you retain your alignment and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus listed in its statistics is higher than yours, use the creature's bonus in place of yours. You can't use any legendary actions or lair actions of the new form. You assume the hit points and Hit Dice of the new form. When you revert to your normal form, you return to the number of hit points you had before you transformed. If you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious. You retain the benefit of any features from your class, race, or other source and can use them, provided that your new form is physically capable of doing so. You can't use any special senses you have (for example, darkvision) unless your new form also has that sense. You can only speak if the creature can normally speak. When you transform, you choose whether your equipment falls to the ground, merges into the new form, or is worn by it. Worn equipment functions as normal. The DM determines whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change shape or size to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge into your new form. Equipment that merges has no effect in that state. During this spell's duration, you can use your action to assume a different form following the same restrictions and rules for the original form, with one exception: if your new form has more hit points than your current one, your hit points remain at their current value.", - "document": "srd", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A jade circlet worth at least 1,500 gp, which you must place on your head before you cast the spell.", - "material_cost": "1500.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_shatter", - "fields": { - "name": "Shatter", - "desc": "A sudden loud ringing noise, painfully intense, erupts from a point of your choice within range. Each creature in a 10-­--foot-­--radius sphere centered on that point must make a Constitution saving throw. A creature takes 3d8 thunder damage on a failed save, or half as much damage on a successful one. A creature made of inorganic material such as stone,crystal, or metal has disadvantage on this saving throw. A nonmagical object that isn't being worn or carried also takes the damage if it's in the spell's area.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A burst of mica.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_shield", - "fields": { - "name": "Shield", - "desc": "An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.", - "document": "srd", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "reaction", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_shield-of-faith", - "fields": { - "name": "Shield of Faith", - "desc": "A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.", - "document": "srd", - "level": 1, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small parchment with a bit of holy text written on it.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_shillelagh", - "fields": { - "name": "Shillelagh", - "desc": "The wood of a club or a quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.", - "document": "srd", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Mistletoe, a shamrock leaf, and a club or quarterstaff.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_shocking-grasp", - "fields": { - "name": "Shocking Grasp", - "desc": "Lightning springs from your hand to deliver a shock to a creature you try to touch. Make a melee spell attack against the target. You have advantage on the attack roll if the target is wearing armor made of metal. On a hit, the target takes 1d8 lightning damage, and it can't take reactions until the start of its next turn.", - "document": "srd", - "level": 0, - "school": "evocation", - "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "1d8", - "damage_types": [ - "lightning" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_silence", - "fields": { - "name": "Silence", - "desc": "For the duration, no sound can be created within or pass through a 20-foot-radius sphere centered on a point you choose within range. Any creature or object entirely inside the sphere is immune to thunder damage, and creatures are deafened while entirely inside it. Casting a spell that includes a verbal component is impossible there.", - "document": "srd", - "level": 2, - "school": "illusion", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_silent-image", - "fields": { - "name": "Silent Image", - "desc": "You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 15-foot cube. The image appears at a spot within range and lasts for the duration. The image is purely visual; it isn't accompanied by sound, smell, or other sensory effects. You can use your action to cause the image to move to any spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image.", - "document": "srd", - "level": 1, - "school": "illusion", - "higher_level": "", - "target_type": "object", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of fleece.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "cube", - "shape_magnitude": 15, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_simulacrum", - "fields": { - "name": "Simulacrum", - "desc": "You shape an illusory duplicate of one beast or humanoid that is within range for the entire casting time of the spell. The duplicate is a creature, partially real and formed from ice or snow, and it can take actions and otherwise be affected as a normal creature. It appears to be the same as the original, but it has half the creature's hit point maximum and is formed without any equipment. Otherwise, the illusion uses all the statistics of the creature it duplicates. The simulacrum is friendly to you and creatures you designate. It obeys your spoken commands, moving and acting in accordance with your wishes and acting on your turn in combat. The simulacrum lacks the ability to learn or become more powerful, so it never increases its level or other abilities, nor can it regain expended spell slots. If the simulacrum is damaged, you can repair it in an alchemical laboratory, using rare herbs and minerals worth 100 gp per hit point it regains. The simulacrum lasts until it drops to 0 hit points, at which point it reverts to snow and melts instantly. If you cast this spell again, any currently active duplicates you created with this spell are instantly destroyed.", - "document": "srd", - "level": 7, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Snow or ice in quantities sufficient to made a life-size copy of the duplicated creature; some hair, fingernail clippings, or other piece of that creature's body placed inside the snow or ice; and powdered ruby worth 1,500 gp, sprinkled over the duplicate and consumed by the spell.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_sleep", - "fields": { - "name": "Sleep", - "desc": "This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures). Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected. Undead and creatures immune to being charmed aren't affected by this spell.", - "document": "srd", - "level": 1, - "school": "enchantment", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.", - "target_type": "creature", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of fine sand, rose petals, or a cricket.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_sleet-storm", - "fields": { - "name": "Sleet Storm", - "desc": "Until the spell ends, freezing rain and sleet fall in a 20-foot-tall cylinder with a 40-foot radius centered on a point you choose within range. The area is heavily obscured, and exposed flames in the area are doused. The ground in the area is covered with slick ice, making it difficult terrain. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a dexterity saving throw. On a failed save, it falls prone. If a creature is concentrating in the spell's area, the creature must make a successful constitution saving throw against your spell save DC or lose concentration.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of dust and a few drops of water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cylinder", - "shape_magnitude": 40, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_slow", - "fields": { - "name": "Slow", - "desc": "You alter time around up to six creatures of your choice in a 40-foot cube within range. Each target must succeed on a wisdom saving throw or be affected by this spell for the duration. An affected target's speed is halved, it takes a -2 penalty to AC and dexterity saving throws, and it can't use reactions. On its turn, it can use either an action or a bonus action, not both. Regardless of the creature's abilities or magic items, it can't make more than one melee or ranged attack during its turn. If the creature attempts to cast a spell with a casting time of 1 action, roll a d20. On an 11 or higher, the spell doesn't take effect until the creature's next turn, and the creature must use its action on that turn to complete the spell. If it can't, the spell is wasted. A creature affected by this spell makes another wisdom saving throw at the end of its turn. On a successful save, the effect ends for it.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of molasses.", - "material_cost": null, - "material_consumed": false, - "target_count": 6, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "cube", - "shape_magnitude": 40, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_spare-the-dying", - "fields": { - "name": "Spare the Dying", - "desc": "You touch a living creature that has 0 hit points. The creature becomes stable. This spell has no effect on undead or constructs.", - "document": "srd", - "level": 0, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_speak-with-animals", - "fields": { - "name": "Speak with Animals", - "desc": "You gain the ability to comprehend and verbally communicate with beasts for the duration. The knowledge and awareness of many beasts is limited by their intelligence, but at a minimum, beasts can give you information about nearby locations and monsters, including whatever they can perceive or have perceived within the past day. You might be able to persuade a beast to perform a small favor for you, at the DM's discretion.", - "document": "srd", - "level": 1, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_speak-with-dead", - "fields": { - "name": "Speak with Dead", - "desc": "You grant the semblance of life and intelligence to a corpse of your choice within range, allowing it to answer the questions you pose. The corpse must still have a mouth and can't be undead. The spell fails if the corpse was the target of this spell within the last 10 days. Until the spell ends, you can ask the corpse up to five questions. The corpse knows only what it knew in life, including the languages it knew. Answers are usually brief, cryptic, or repetitive, and the corpse is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This spell doesn't return the creature's soul to its body, only its animating spirit. Thus, the corpse can't learn new information, doesn't comprehend anything that has happened since it died, and can't speculate about future events.", - "document": "srd", - "level": 3, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Burning incense.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_speak-with-plants", - "fields": { - "name": "Speak with Plants", - "desc": "You imbue plants within 30 feet of you with limited sentience and animation, giving them the ability to communicate with you and follow your simple commands. You can question plants about events in the spell's area within the past day, gaining information about creatures that have passed, weather, and other circumstances. You can also turn difficult terrain caused by plant growth (such as thickets and undergrowth) into ordinary terrain that lasts for the duration. Or you can turn ordinary terrain where plants are present into difficult terrain that lasts for the duration, causing vines and branches to hinder pursuers, for example. Plants might be able to perform other tasks on your behalf, at the DM's discretion. The spell doesn't enable plants to uproot themselves and move about, but they can freely move branches, tendrils, and stalks. If a plant creature is in the area, you can communicate with it as if you shared a common language, but you gain no magical ability to influence it. This spell can cause the plants created by the entangle spell to release a restrained creature.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_spider-climb", - "fields": { - "name": "Spider Climb", - "desc": "Until the spell ends, one willing creature you touch gains the ability to move up, down, and across vertical surfaces and upside down along ceilings, while leaving its hands free. The target also gains a climbing speed equal to its walking speed.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of bitumen and a spider.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_spike-growth", - "fields": { - "name": "Spike Growth", - "desc": "The ground in a 20-foot radius centered on a point within range twists and sprouts hard spikes and thorns. The area becomes difficult terrain for the duration. When a creature moves into or within the area, it takes 2d4 piercing damage for every 5 feet it travels. The development of land is camouflaged to look natural. Any creature that does not see the area when the spell is spell casts must make a Wisdom (Perception) check against your spell save DC to recognize the terrain as hazardous before entering it.", - "document": "srd", - "level": 2, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Seven sharp spines or seven twigs cut peak.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "2d4", - "damage_types": [ - "piercing" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_spirit-guardians", - "fields": { - "name": "Spirit Guardians", - "desc": "You call forth spirits to protect you. They flit around you to a distance of 15 feet for the duration. If you are good or neutral, their spectral form appears angelic or fey (your choice). If you are evil, they appear fiendish. When you cast this spell, you can designate any number of creatures you can see to be unaffected by it. An affected creature's speed is halved in the area, and when the creature enters the area for the first time on a turn or starts its turn there, it must make a wisdom saving throw. On a failed save, the creature takes 3d8 radiant damage (if you are good or neutral) or 3d8 necrotic damage (if you are evil). On a successful save, the creature takes half as much damage.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A holy symbol.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "radiant" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_spiritual-weapon", - "fields": { - "name": "Spiritual Weapon", - "desc": "You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier. As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it. The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.", - "document": "srd", - "level": 2, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_stinking-cloud", - "fields": { - "name": "Stinking Cloud", - "desc": "You create a 20-foot-radius sphere of yellow, nauseating gas centered on a point within range. The cloud spreads around corners, and its area is heavily obscured. The cloud lingers in the air for the duration. Each creature that is completely within the cloud at the start of its turn must make a constitution saving throw against poison. On a failed save, the creature spends its action that turn retching and reeling. Creatures that don't need to breathe or are immune to poison automatically succeed on this saving throw. A moderate wind (at least 10 miles per hour) disperses the cloud after 4 rounds. A strong wind (at least 20 miles per hour) disperses it after 1 round.", - "document": "srd", - "level": 3, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "90 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A rotten egg or several skunk cabbage leaves.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_stone-shape", - "fields": { - "name": "Stone Shape", - "desc": "You touch a stone object of Medium size or smaller or a section of stone no more than 5 feet in any dimension and form it into any shape that suits your purpose. So, for example, you could shape a large rock into a weapon, idol, or coffer, or make a small passage through a wall, as long as the wall is less than 5 feet thick. You could also shape a stone door or its frame to seal the door shut. The object you create can have up to two hinges and a latch, but finer mechanical detail isn't possible.", - "document": "srd", - "level": 4, - "school": "transmutation", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Soft clay, to be crudely worked into the desired shape for the stone object.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_stoneskin", - "fields": { - "name": "Stoneskin", - "desc": "This spell turns the flesh of a willing creature you touch as hard as stone. Until the spell ends, the target has resistance to nonmagical bludgeoning, piercing, and slashing damage.", - "document": "srd", - "level": 4, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Diamond dust worth 100 gp, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_storm-of-vengeance", - "fields": { - "name": "Storm of Vengeance", - "desc": "A churning storm cloud forms, centered on a point you can see and spreading to a radius of 360 feet. Lightning flashes in the area, thunder booms, and strong winds roar. Each creature under the cloud (no more than 5,000 feet beneath the cloud) when it appears must make a constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 5 minutes. Each round you maintain concentration on this spell, the storm produces additional effects on your turn.\n\n**Round 2.** Acidic rain falls from the cloud. Each creature and object under the cloud takes 1d6 acid damage.\n\n**Round 3.** You call six bolts of lightning from the cloud to strike six creatures or objects of your choice beneath the cloud. A given creature or object can't be struck by more than one bolt. A struck creature must make a dexterity saving throw. The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**Round 4.** Hailstones rain down from the cloud. Each creature under the cloud takes 2d6 bludgeoning damage.\n\n**Round 5-10.** Gusts and freezing rain assail the area under the cloud. The area becomes difficult terrain and is heavily obscured. Each creature there takes 1d6 cold damage. Ranged weapon attacks in the area are impossible. The wind and rain count as a severe distraction for the purposes of maintaining concentration on spells. Finally, gusts of strong wind (ranging from 20 to 50 miles per hour) automatically disperse fog, mists, and similar phenomena in the area, whether mundane or magical.", - "document": "srd", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "Sight", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d6", - "damage_types": [ - "thunder" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_suggestion", - "fields": { - "name": "Suggestion", - "desc": "You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell. The target must make a wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do. You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed. If you or any of your companions damage the target, the spell ends.", - "document": "srd", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "A snake's tongue and either a bit of honeycomb or a drop of sweet oil.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_sunbeam", - "fields": { - "name": "Sunbeam", - "desc": "A beam of brilliant light flashes out from your hand in a 5-foot-wide, 60-foot-long line. Each creature in the line must make a constitution saving throw. On a failed save, a creature takes 6d8 radiant damage and is blinded until your next turn. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw. You can create a new line of radiance as your action on any turn until the spell ends. For the duration, a mote of brilliant radiance shines in your hand. It sheds bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A magnifying glass.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "6d8", - "damage_types": [ - "radiant" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_sunburst", - "fields": { - "name": "Sunburst", - "desc": "Brilliant sunlight flashes in a 60-foot radius centered on a point you choose within range. Each creature in that light must make a constitution saving throw. On a failed save, a creature takes 12d6 radiant damage and is blinded for 1 minute. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw. A creature blinded by this spell makes another constitution saving throw at the end of each of its turns. On a successful save, it is no longer blinded. This spell dispels any darkness in its area that was created by a spell.", - "document": "srd", - "level": 8, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "150 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Fire and a piece of sunstone.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "12d6", - "damage_types": [ - "radiant" - ], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_symbol", - "fields": { - "name": "Symbol", - "desc": "When you cast this spell, you inscribe a harmful glyph either on a surface (such as a section of floor, a wall, or a table) or within an object that can be closed to conceal the glyph (such as a book, a scroll, or a treasure chest). If you choose a surface, the glyph can cover an area of the surface no larger than 10 feet in diameter. If you choose an object, that object must remain in its place; if the object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered. The glyph is nearly invisible, requiring an Intelligence (Investigation) check against your spell save DC to find it. You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or stepping on the glyph, removing another object covering it, approaching within a certain distance of it, or manipulating the object that holds it. For glyphs inscribed within an object, the most common triggers are opening the object, approaching within a certain distance of it, or seeing or reading the glyph. You can further refine the trigger so the spell is activated only under certain circumstances or according to a creature's physical characteristics (such as height or weight), or physical kind (for example, the ward could be set to affect hags or shapechangers). You can also specify creatures that don't trigger the glyph, such as those who say a certain password. When you inscribe the glyph, choose one of the options below for its effect. Once triggered, the glyph glows, filling a 60-foot-radius sphere with dim light for 10 minutes, after which time the spell ends. Each creature in the sphere when the glyph activates is targeted by its effect, as is a creature that enters the sphere for the first time on a turn or ends its turn there.\n\n**Death.** Each target must make a constitution saving throw, taking 10d 10 necrotic damage on a failed save, or half as much damage on a successful save\n\n **Discord.** Each target must make a constitution saving throw. On a failed save, a target bickers and argues with other creatures for 1 minute. During this time, it is incapable of meaningful communication and has disadvantage on attack rolls and ability checks.\n\n**Fear.** Each target must make a wisdom saving throw and becomes frightened for 1 minute on a failed save. While frightened, the target drops whatever it is holding and must move at least 30 feet away from the glyph on each of its turns, if able.\n\n**Hopelessness.** Each target must make a charisma saving throw. On a failed save, the target is overwhelmed with despair for 1 minute. During this time, it can't attack or target any creature with harmful abilities, spells, or other magical effects.\n\n**Insanity.** Each target must make an intelligence saving throw. On a failed save, the target is driven insane for 1 minute. An insane creature can't take actions, can't understand what other creatures say, can't read, and speaks only in gibberish. The DM controls its movement, which is erratic.\n\n**Pain.** Each target must make a constitution saving throw and becomes incapacitated with excruciating pain for 1 minute on a failed save.\n\n**Sleep.** Each target must make a wisdom saving throw and falls unconscious for 10 minutes on a failed save. A creature awakens if it takes damage or if someone uses an action to shake or slap it awake.\n\n**Stunning.** Each target must make a wisdom saving throw and becomes stunned for 1 minute on a failed save.", - "document": "srd", - "level": 7, - "school": "abjuration", - "higher_level": "", - "target_type": "object", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Mercury, phosphorus, and powdered diamond and opal with a total value of at least 1,000 gp, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "intelligence", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "until dispelled or triggered", - "shape_type": "sphere", - "shape_magnitude": 60, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_telekinesis", - "fields": { - "name": "Telekinesis", - "desc": "You gain the ability to move or manipulate creatures or objects by thought. When you cast the spell, and as your action each round for the duration, you can exert your will on one creature or object that you can see within range, causing the appropriate effect below. You can affect the same target round after round, or choose a new one at any time. If you switch targets, the prior target is no longer affected by the spell.\n\n**Creature.** You can try to move a Huge or smaller creature. Make an ability check with your spellcasting ability contested by the creature's Strength check. If you win the contest, you move the creature up to 30 feet in any direction, including upward but not beyond the range of this spell. Until the end of your next turn, the creature is restrained in your telekinetic grip. A creature lifted upward is suspended in mid-air. On subsequent rounds, you can use your action to attempt to maintain your telekinetic grip on the creature by repeating the contest.\n\n**Object.** You can try to move an object that weighs up to 1,000 pounds. If the object isn't being worn or carried, you automatically move it up to 30 feet in any direction, but not beyond the range of this spell. If the object is worn or carried by a creature, you must make an ability check with your spellcasting ability contested by that creature's Strength check. If you succeed, you pull the object away from that creature and can move it up to 30 feet in any direction but not beyond the range of this spell. You can exert fine control on objects with your telekinetic grip, such as manipulating a simple tool, opening a door or a container, stowing or retrieving an item from an open container, or pouring the contents from a vial.", - "document": "srd", - "level": 5, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_telepathic-bond", - "fields": { - "name": "Telepathic Bond", - "desc": "You forge a telepathic link among up to eight willing creatures of your choice within range, psychically linking each creature to all the others for the duration. Creatures with Intelligence scores of 2 or less aren't affected by this spell. Until the spell ends, the targets can communicate telepathically through the bond whether or not they have a common language. The communication is possible over any distance, though it can't extend to other planes of existence.", - "document": "srd", - "level": 5, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Pieces of eggshell from two different kinds of creatures", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_teleport", - "fields": { - "name": "Teleport", - "desc": "This spell instantly transports you and up to eight willing creatures of your choice that you can see within range, or a single object that you can see within range, to a destination you select. If you target an object, it must be able to fit entirely inside a 10-foot cube, and it can't be held or carried by an unwilling creature. The destination you choose must be known to you, and it must be on the same plane of existence as you. Your familiarity with the destination determines whether you arrive there successfully. The DM rolls d100 and consults the table.\n\n**Familiarity.** \"Permanent circle\" means a permanent teleportation circle whose sigil sequence you know. \"Associated object\" means that you possess an object taken from the desired destination within the last six months, such as a book from a wizard's library, bed linen from a royal suite, or a chunk of marble from a lich's secret tomb. \"Very familiar\" is a place you have been very often, a place you have carefully studied, or a place you can see when you cast the spell. \"Seen casually\" is someplace you have seen more than once but with which you aren't very familiar. \"Viewed once\" is a place you have seen once, possibly using magic. \"Description\" is a place whose location and appearance you know through someone else's description, perhaps from a map. \"False destination\" is a place that doesn't exist. Perhaps you tried to scry an enemy's sanctum but instead viewed an illusion, or you are attempting to teleport to a familiar location that no longer exists.\n\n**On Target.** You and your group (or the target object) appear where you want to.\n\n**Off Target.** You and your group (or the target object) appear a random distance away from the destination in a random direction. Distance off target is 1d10 × 1d10 percent of the distance that was to be traveled. For example, if you tried to travel 120 miles, landed off target, and rolled a 5 and 3 on the two d10s, then you would be off target by 15 percent, or 18 miles. The GM determines the direction off target randomly by rolling a d8 and designating 1 as north, 2 as northeast, 3 as east, and so on around the points of the compass. If you were teleporting to a coastal city and wound up 18 miles out at sea, you could be in trouble.\n\n**Similar Area.** You and your group (or the target object) wind up in a different area that's visually or thematically similar to the target area. If you are heading for your home laboratory, for example, you might wind up in another wizard's laboratory or in an alchemical supply shop that has many of the same tools and implements as your laboratory. Generally, you appear in the closest similar place, but since the spell has no range limit, you could conceivably wind up anywhere on the plane.\n\n**Mishap.** The spell's unpredictable magic results in a difficult journey. Each teleporting creature (or the target object) takes 3d10 force damage, and the GM rerolls on the table to see where you wind up (multiple mishaps can occur, dealing damage each time).", - "document": "srd", - "level": 7, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "3d10", - "damage_types": [ - "force" - ], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 10, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_teleportation-circle", - "fields": { - "name": "Teleportation Circle", - "desc": "As you cast the spell, you draw a 10-foot-diameter circle on the ground inscribed with sigils that link your location to a permanent teleportation circle of your choice whose sigil sequence you know and that is on the same plane of existence as you. A shimmering portal opens within the circle you drew and remains open until the end of your next turn. Any creature that enters the portal instantly appears within 5 feet of the destination circle or in the nearest unoccupied space if that space is occupied. Many major temples, guilds, and other important places have permanent teleportation circles inscribed somewhere within their confines. Each such circle includes a unique sigil sequence-a string of magical runes arranged in a particular pattern. When you first gain the ability to cast this spell, you learn the sigil sequences for two destinations on the Material Plane, determined by the DM. You can learn additional sigil sequences during your adventures. You can commit a new sigil sequence to memory after studying it for 1 minute. You can create a permanent teleportation circle by casting this spell in the same location every day for one year. You need not use the circle to teleport when you cast the spell in this way.", - "document": "srd", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "Rare chalks and inks infused with precious gems with 50 gp, which the spell consumes.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_thaumaturgy", - "fields": { - "name": "Thaumaturgy", - "desc": "You manifest a minor wonder, a sign of supernatural power, within range. You create one of the following magical effects within range. \n- Your voice booms up to three times as loud as normal for 1 minute. \n- You cause flames to flicker, brighten, dim, or change color for 1 minute. \n- You cause harmless tremors in the ground for 1 minute. \n- You create an instantaneous sound that originates from a point of your choice within range, such as a rumble of thunder, the cry of a raven, or ominous whispers. \n- You instantaneously cause an unlocked door or window to fly open or slam shut. \n- You alter the appearance of your eyes for 1 minute. \nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.", - "document": "srd", - "level": 0, - "school": "transmutation", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_thunderwave", - "fields": { - "name": "Thunderwave", - "desc": "A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed. In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.", - "document": "srd", - "level": 1, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "constitution", - "attack_roll": false, - "damage_roll": "2d8", - "damage_types": [ - "thunder" - ], - "duration": "instantaneous", - "shape_type": "cube", - "shape_magnitude": 15, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_time-stop", - "fields": { - "name": "Time Stop", - "desc": "You briefly stop the flow of time for everyone but yourself. No time passes for other creatures, while you take 1d4 + 1 turns in a row, during which you can use actions and move as normal. This spell ends if one of the actions you use during this period, or any effects that you create during this period, affects a creature other than you or an object being worn or carried by someone other than you. In addition, the spell ends if you move to a place more than 1,000 feet from the location where you cast it.", - "document": "srd", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_tiny-hut", - "fields": { - "name": "Tiny Hut", - "desc": "A 10-foot-radius immobile dome of force springs into existence around and above you and remains stationary for the duration. The spell ends if you leave its area. Nine creatures of Medium size or smaller can fit inside the dome with you. The spell fails if its area includes a larger creature or more than nine creatures. Creatures and objects within the dome when you cast this spell can move through it freely. All other creatures and objects are barred from passing through it. Spells and other magical effects can't extend through the dome or be cast through it. The atmosphere inside the space is comfortable and dry, regardless of the weather outside. Until the spell ends, you can command the interior to become dimly lit or dark. The dome is opaque from the outside, of any color you choose, but it is transparent from the inside.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "area", - "range": "Self", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small crystal bead.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_tongues", - "fields": { - "name": "Tongues", - "desc": "This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.", - "document": "srd", - "level": 3, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": true, - "material_specified": "A small clay model of a ziggurat.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_transport-via-plants", - "fields": { - "name": "Transport via Plants", - "desc": "This spell creates a magical link between a Large or larger inanimate plant within range and another plant, at any distance, on the same plane of existence. You must have seen or touched the destination plant at least once before. For the duration, any creature can step into the target plant and exit from the destination plant by using 5 feet of movement.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "10 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_tree-stride", - "fields": { - "name": "Tree Stride", - "desc": "You gain the ability to enter a tree and move from inside it to inside another tree of the same kind within 500 feet. Both trees must be living and at least the same size as you. You must use 5 feet of movement to enter a tree. You instantly know the location of all other trees of the same kind within 500 feet and, as part of the move used to enter the tree, can either pass into one of those trees or step out of the tree you're in. You appear in a spot of your choice within 5 feet of the destination tree, using another 5 feet of movement. If you have no movement left, you appear within 5 feet of the tree you entered. You can use this transportation ability once per round for the duration. You must end each turn outside a tree.", - "document": "srd", - "level": 5, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_true-polymorph", - "fields": { - "name": "True Polymorph", - "desc": "Choose one creature or nonmagical object that you can see within range. You transform the creature into a different creature, the creature into an object, or the object into a creature (the object must be neither worn nor carried by another creature). The transformation lasts for the duration, or until the target drops to 0 hit points or dies. If you concentrate on this spell for the full duration, the transformation lasts until it is dispelled. This spell has no effect on a shapechanger or a creature with 0 hit points. An unwilling creature can make a Wisdom saving throw, and if it succeeds, it isn't affected by this spell.\n\n**Creature into Creature.** If you turn a creature into another kind of creature, the new form can be any kind you choose whose challenge rating is equal to or less than the target's (or its level, if the target doesn't have a challenge rating). The target's game statistics, including mental ability scores, are replaced by the statistics of the new form. It retains its alignment and personality. The target assumes the hit points of its new form, and when it reverts to its normal form, the creature returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak, cast spells, or take any other action that requires hands or speech unless its new form is capable of such actions. The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its equipment.\n\n**Object into Creature.** You can turn an object into any kind of creature, as long as the creature's size is no larger than the object's size and the creature's challenge rating is 9 or lower. The creature is friendly to you and your companions. It acts on each of your turns. You decide what action it takes and how it moves. The DM has the creature's statistics and resolves all of its actions and movement. If the spell becomes permanent, you no longer control the creature. It might remain friendly to you, depending on how you have treated it.\n\n **Creature into Object.** If you turn a creature into an object, it transforms along with whatever it is wearing and carrying into that form. The creature's statistics become those of the object, and the creature has no memory of time spent in this form, after the spell ends and it returns to its normal form.", - "document": "srd", - "level": 9, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A drop of mercury, a dollop of gum arabic, and a wisp of smoke.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_true-resurrection", - "fields": { - "name": "True Resurrection", - "desc": "You touch a creature that has been dead for no longer than 200 years and that died for any reason except old age. If the creature's soul is free and willing, the creature is restored to life with all its hit points. This spell closes all wounds, neutralizes any poison, cures all diseases, and lifts any curses affecting the creature when it died. The spell replaces damaged or missing organs and limbs. The spell can even provide a new body if the original no longer exists, in which case you must speak the creature's name. The creature then appears in an unoccupied space you choose within 10 feet of you.", - "document": "srd", - "level": 9, - "school": "necromancy", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A sprinkle of holy water and diamonds worth at least 25,000gp, which the spell consumes.", - "material_cost": "25000.00", - "material_consumed": true, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_true-seeing", - "fields": { - "name": "True Seeing", - "desc": "This spell gives the willing creature you touch the ability to see things as they actually are. For the duration, the creature has truesight, notices secret doors hidden by magic, and can see into the Ethereal Plane, all out to a range of 120 feet.", - "document": "srd", - "level": 6, - "school": "divination", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "An ointment for the eyes that costs 25gp; is made from mushroom powder, saffron, and fat; and is consumed by the spell.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_true-strike", - "fields": { - "name": "True Strike", - "desc": "You extend your hand and point a finger at a target in range. Your magic grants you a brief insight into the target's defenses. On your next turn, you gain advantage on your first attack roll against the target, provided that this spell hasn't ended.", - "document": "srd", - "level": 0, - "school": "divination", - "higher_level": "", - "target_type": "point", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": false, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 round", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_unseen-servant", - "fields": { - "name": "Unseen Servant", - "desc": "This spell creates an invisible, mindless, shapeless force that performs simple tasks at your command until the spell ends. The servant springs into existence in an unoccupied space on the ground within range. It has AC 10, 1 hit point, and a Strength of 2, and it can't attack. If it drops to 0 hit points, the spell ends. Once on each of your turns as a bonus action, you can mentally command the servant to move up to 15 feet and interact with an object. The servant can perform simple tasks that a human servant could do, such as fetching things, cleaning, mending, folding clothes, lighting fires, serving food, and pouring wind. Once you give the command, the servant performs the task to the best of its ability until it completes the task, then waits for your next command. If you command the servant to perform a task that would move it more than 60 feet away from you, the spell ends.", - "document": "srd", - "level": 1, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A piece of string and a bit of wood.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_vampiric-touch", - "fields": { - "name": "Vampiric Touch", - "desc": "The touch of your shadow-wreathed hand can siphon life force from others to heal your wounds. Make a melee spell attack against a creature within your reach. On a hit, the target takes 3d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt. Until the spell ends, you can make the attack again on each of your turns as an action.", - "document": "srd", - "level": 3, - "school": "necromancy", - "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": true, - "damage_roll": "3d6", - "damage_types": [ - "necrotic" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_vicious-mockery", - "fields": { - "name": "Vicious Mockery", - "desc": "You unleash a string of insults laced with subtle enchantments at a creature you can see within range. If the target can hear you (though it need not understand you), it must succeed on a Wisdom saving throw or take 1d4 psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn.", - "document": "srd", - "level": 0, - "school": "enchantment", - "higher_level": "This spell's damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", - "target_type": "creature", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_wall-of-fire", - "fields": { - "name": "Wall of Fire", - "desc": "You create a wall of fire on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts for the duration. When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire damage, or half as much damage on a successful save. One side of the wall, selected by you when you cast this spell, deals 5d8 fire damage to each creature that ends its turn within 10 feet o f that side or inside the wall. A creature takes the same damage when it enters the wall for the first time on a turn or ends its turn there. The other side o f the wall deals no damage. The other side of the wall deals no damage.", - "document": "srd", - "level": 4, - "school": "evocation", - "higher_level": "When you cast this spell using a level spell slot 5 or more, the damage of the spell increases by 1d8 for each level of higher spell slot to 4.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small piece of phosphorus.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "5d8", - "damage_types": [ - "fire" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_wall-of-force", - "fields": { - "name": "Wall of Force", - "desc": "An invisible wall of force springs into existence at a point you choose within range. The wall appears in any orientation you choose, as a horizontal or vertical barrier or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-by-10-foot panels. Each panel must be contiguous with another panel. In any form, the wall is 1/4 inch thick. It lasts for the duration. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice which side). Nothing can physically pass through the wall. It is immune to all damage and can't be dispelled by dispel magic. A disintegrate spell destroys the wall instantly, however. The wall also extends into the Ethereal Plane, blocking ethereal travel through the wall.", - "document": "srd", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pinch of powder made by crushing a clear gemstone.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 10, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_wall-of-ice", - "fields": { - "name": "Wall of Ice", - "desc": "You create a wall of ice on a solid surface within range. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-square panels. Each panel must be contiguous with another panel. In any form, the wall is 1 foot thick and lasts for the duration. If the wall cuts through a creature's space when it appears, the creature within its area is pushed to one side of the wall and must make a dexterity saving throw. On a failed save, the creature takes 10d6 cold damage, or half as much damage on a successful save. The wall is an object that can be damaged and thus breached. It has AC 12 and 30 hit points per 10-foot section, and it is vulnerable to fire damage. Reducing a 10-foot section of wall to 0 hit points destroys it and leaves behind a sheet of frigid air in the space the wall occupied. A creature moving through the sheet of frigid air for the first time on a turn must make a constitution saving throw. That creature takes 5d6 cold damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "level": 6, - "school": "evocation", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage the wall deals when it appears increases by 2d6, and the damage from passing through the sheet of frigid air increases by 1d6, for each slot level above 6th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small piece of quartz.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "10d6", - "damage_types": [ - "cold" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_wall-of-stone", - "fields": { - "name": "Wall of Stone", - "desc": "A nonmagical wall of solid stone springs into existence at a point you choose within range. The wall is 6 inches thick and is composed of ten 10-foot-by-10-foot panels. Each panel must be contiguous with at least one other panel. Alternatively, you can create 10-foot-by-20-foot panels that are only 3 inches thick. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice). If a creature would be surrounded on all sides by the wall (or the wall and another solid surface), that creature can make a dexterity saving throw. On a success, it can use its reaction to move up to its speed so that it is no longer enclosed by the wall. The wall can have any shape you desire, though it can't occupy the same space as a creature or object. The wall doesn't need to be vertical or rest on any firm foundation. It must, however, merge with and be solidly supported by existing stone. Thus, you can use this spell to bridge a chasm or create a ramp. If you create a span greater than 20 feet in length, you must halve the size of each panel to create supports. You can crudely shape the wall to create crenellations, battlements, and so on. The wall is an object made of stone that can be damaged and thus breached. Each panel has AC 15 and 30 hit points per inch of thickness. Reducing a panel to 0 hit points destroys it and might cause connected panels to collapse at the DM's discretion. If you maintain your concentration on this spell for its whole duration, the wall becomes permanent and can't be dispelled. Otherwise, the wall disappears when the spell ends.", - "document": "srd", - "level": 5, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A small block of granite.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_wall-of-thorns", - "fields": { - "name": "Wall of Thorns", - "desc": "You create a wall of tough, pliable, tangled brush bristling with needle-sharp thorns. The wall appears within range on a solid surface and lasts for the duration. You choose to make the wall up to 60 feet long, 10 feet high, and 5 feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and 5 feet thick. The wall blocks line of sight. When the wall appears, each creature within its area must make a dexterity saving throw. On a failed save, a creature takes 7d8 piercing damage, or half as much damage on a successful save. A creature can move through the wall, albeit slowly and painfully. For every 1 foot a creature moves through the wall, it must spend 4 feet of movement. Furthermore, the first time a creature enters the wall on a turn or ends its turn there, the creature must make a dexterity saving throw. It takes 7d8 slashing damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "When you cast this spell using a spell slot of 7th level or higher, both types of damage increase by 1d8 for each slot level above 6th.", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A handful of thorns.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "7d8", - "damage_types": [ - "piercing" - ], - "duration": "10 minutes", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_warding-bond", - "fields": { - "name": "Warding Bond", - "desc": "This spell wards a willing creature you touch and creates a mystic connection between you and the target until the spell ends. While the target is within 60 feet of you, it gains a +1 bonus to AC and saving throws, and it has resistance to all damage. Also, each time it takes damage, you take the same amount of damage. The spell ends if you drop to 0 hit points or if you and the target become separated by more than 60 feet. It also ends if the spell is cast again on either of the connected creatures. You can also dismiss the spell as an action.", - "document": "srd", - "level": 2, - "school": "abjuration", - "higher_level": "", - "target_type": "creature", - "range": "Touch", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A pair of platinum rings worth at least 50gp each, which you and the target must wear for the duration.", - "material_cost": "50.00", - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_water-breathing", - "fields": { - "name": "Water Breathing", - "desc": "This spell gives a maximum of ten willing creatures within range and you can see, the ability to breathe underwater until the end of its term. Affected creatures also retain their normal breathing pattern.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A short piece of reed or straw.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "24 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_water-walk", - "fields": { - "name": "Water Walk", - "desc": "This spell grants the ability to move across any liquid surface-such as water, acid, mud, snow, quicksand, or lava-as if it were harmless solid ground (creatures crossing molten lava can still take damage from the heat). Up to ten willing creatures you can see within range gain this ability for the duration. If you target a creature submerged in a liquid, the spell carries the target to the surface of the liquid at a rate of 60 feet per round.", - "document": "srd", - "level": 3, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": true, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_web", - "fields": { - "name": "Web", - "desc": "You conjure a mass of thick, sticky webbing at a point of your choice within range. The webs fill a 20-foot cube from that point for the duration. The webs are difficult terrain and lightly obscure their area. If the webs aren't anchored between two solid masses (such as walls or trees) or layered across a floor, wall, or ceiling, the conjured web collapses on itself, and the spell ends at the start of your next turn. Webs layered over a flat surface have a depth of 5 feet. Each creature that starts its turn in the webs or that enters them during its turn must make a dexterity saving throw. On a failed save, the creature is restrained as long as it remains in the webs or until it breaks free. A creature restrained by the webs can use its action to make a Strength check against your spell save DC. If it succeeds, it is no longer restrained. The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", - "document": "srd", - "level": 2, - "school": "conjuration", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A bit of spiderweb.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "dexterity", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 hour", - "shape_type": "cube", - "shape_magnitude": 20, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_weird", - "fields": { - "name": "Weird", - "desc": "Drawing on the deepest fears of a group of creatures, you create illusory creatures in their minds, visible only to them. Each creature in a 30-foot-radius sphere centered on a point of your choice within range must make a wisdom saving throw. On a failed save, a creature becomes frightened for the duration. The illusion calls on the creature's deepest fears, manifesting its worst nightmares as an implacable threat. At the start of each of the frightened creature's turns, it must succeed on a wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends for that creature.", - "document": "srd", - "level": 9, - "school": "illusion", - "higher_level": "", - "target_type": "creature", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "wisdom", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "1 minute", - "shape_type": "sphere", - "shape_magnitude": 30, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_wind-walk", - "fields": { - "name": "Wind Walk", - "desc": "You and up to ten willing creatures you can see within range assume a gaseous form for the duration, appearing as wisps of cloud. While in this cloud form, a creature has a flying speed of 300 feet and has resistance to damage from nonmagical weapons. The only actions a creature can take in this form are the Dash action or to revert to its normal form. Reverting takes 1 minute, during which time a creature is incapacitated and can't move. Until the spell ends, a creature can revert to cloud form, which also requires the 1-minute transformation. If a creature is in cloud form and flying when the effect ends, the creature descends 60 feet per round for 1 minute until it lands, which it does safely. If it can't land after 1 minute, the creature falls the remaining distance.", - "document": "srd", - "level": 6, - "school": "transmutation", - "higher_level": "", - "target_type": "creature", - "range": "30 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "Fire and holy water.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "8 hours", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_wind-wall", - "fields": { - "name": "Wind Wall", - "desc": "A wall of strong wind rises from the ground at a point you choose within range. You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You can shape the wall in any way you choose so long as it makes one continuous path along the ground. The wall lasts for the duration. When the wall appears, each creature within its area must make a strength saving throw. A creature takes 3d8 bludgeoning damage on a failed save, or half as much damage on a successful one. The strong wind keeps fog, smoke, and other gases at bay. Small or smaller flying creatures or objects can't pass through the wall. Loose, lightweight materials brought into the wall fly upward. Arrows, bolts, and other ordinary projectiles launched at targets behind the wall are deflected upward and automatically miss. (Boulders hurled by giants or siege engines, and similar projectiles, are unaffected.) Creatures in gaseous form can't pass through it.", - "document": "srd", - "level": 3, - "school": "evocation", - "higher_level": "", - "target_type": "point", - "range": "120 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": true, - "material_specified": "A tiny fan and a feather of exotic origin.", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "strength", - "attack_roll": false, - "damage_roll": "3d8", - "damage_types": [ - "bludgeoning" - ], - "duration": "1 minute", - "shape_type": null, - "shape_magnitude": null, - "concentration": true - } - }, - { - "model": "api_v2.spell", - "pk": "srd_wish", - "fields": { - "name": "Wish", - "desc": "Wish is the mightiest spell a mortal creature can cast. By simply speaking aloud, you can alter the very foundations of reality in accord with your desires. The basic use of this spell is to duplicate any other spell of 8th level or lower. You don't need to meet any requirements in that spell, including costly components. The spell simply takes effect. Alternatively, you can create one of the following effects of your choice: \n- You create one object of up to 25,000 gp in value that isn't a magic item. The object can be no more than 300 feet in any dimension, and it appears in an unoccupied space you can see on the ground. \n- You allow up to twenty creatures that you can see to regain all hit points, and you end all effects on them described in the greater restoration spell. \n- You grant up to ten creatures you can see resistance to a damage type you choose. \n- You grant up to ten creatures you can see immunity to a single spell or other magical effect for 8 hours. For instance, you could make yourself and all your companions immune to a lich's life drain attack. \n- You undo a single recent event by forcing a reroll of any roll made within the last round (including your last turn). Reality reshapes itself to accommodate the new result. For example, a wish spell could undo an opponent's successful save, a foe's critical hit, or a friend's failed save. You can force the reroll to be made with advantage or disadvantage, and you can choose whether to use the reroll or the original roll. \nYou might be able to achieve something beyond the scope of the above examples. State your wish to the DM as precisely as possible. The DM has great latitude in ruling what occurs in such an instance; the greater the wish, the greater the likelihood that something goes wrong. This spell might simply fail, the effect you desire might only be partly achieved, or you might suffer some unforeseen consequence as a result of how you worded the wish. For example, wishing that a villain were dead might propel you forward in time to a period when that villain is no longer alive, effectively removing you from the game. Similarly, wishing for a legendary magic item or artifact might instantly transport you to the presence of the item's current owner. The stress of casting this spell to produce any effect other than duplicating another spell weakens you. After enduring that stress, each time you cast a spell until you finish a long rest, you take 1d10 necrotic damage per level of that spell. This damage can't be reduced or prevented in any way. In addition, your Strength drops to 3, if it isn't 3 or lower already, for 2d4 days. For each of those days that you spend resting and doing nothing more than light activity, your remaining recovery time decreases by 2 days. Finally, there is a 33 percent chance that you are unable to cast wish ever again if you suffer this stress.", - "document": "srd", - "level": 9, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "Self", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_word-of-recall", - "fields": { - "name": "Word of Recall", - "desc": "You and up to five willing creatures within 5 feet of you instantly teleport to a previously designated sanctuary. You and any creatures that teleport with you appear in the nearest unoccupied space to the spot you designated when you prepared your sanctuary (see below). If you cast this spell without first preparing a sanctuary, the spell has no effect. You must designate a sanctuary by casting this spell within a location, such as a temple, dedicated to or strongly linked to your deity. If you attempt to cast the spell in this manner in an area that isn't dedicated to your deity, the spell has no effect.", - "document": "srd", - "level": 6, - "school": "conjuration", - "higher_level": "", - "target_type": "creature", - "range": "5 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": false, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "instantaneous", - "shape_type": null, - "shape_magnitude": null, - "concentration": false - } - }, - { - "model": "api_v2.spell", - "pk": "srd_zone-of-truth", - "fields": { - "name": "Zone of Truth", - "desc": "You create a magical zone that guards against deception in a 15-foot-radius sphere centered on a point of your choice within range. Until the spell ends, a creature that enters the spell's area for the first time on a turn or starts its turn there must make a Charisma saving throw. On a failed save, a creature can't speak a deliberate lie while in the radius. You know whether each creature succeeds or fails on its saving throw. An affected creature is aware of the fate and can avoid answering questions she would normally have responded with a lie. Such a creature can remain evasive in his answers as they remain within the limits of truth.", - "document": "srd", - "level": 2, - "school": "enchantment", - "higher_level": "", - "target_type": "point", - "range": "60 feet", - "ritual": false, - "casting_time": "action", - "verbal": true, - "somatic": true, - "material": false, - "material_specified": "", - "material_cost": null, - "material_consumed": false, - "target_count": 1, - "saving_throw_ability": "charisma", - "attack_roll": false, - "damage_roll": "", - "damage_types": [], - "duration": "10 minutes", - "shape_type": "sphere", - "shape_magnitude": 15, - "concentration": false - } - } -] \ No newline at end of file +{ + "model": "api_v2.spell", + "pk": "srd_acid-arrow", + "fields": { + "name": "Acid Arrow", + "desc": "A shimmering green arrow streaks toward a target within range and bursts in a spray of acid. Make a ranged spell attack against the target. On a hit, the target takes 4d4 acid damage immediately and 2d4 acid damage at the end of its next turn. On a miss, the arrow splashes the target with acid for half as much of the initial damage and no damage at the end of its next turn.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage (both initial and later) increases by 1d4 for each slot level above 2nd.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Powdered rhubarb leaf and an adder's stomach.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "4d4", + "damage_types": [ + "acid" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_acid-splash", + "fields": { + "name": "Acid Splash", + "desc": "You hurl a bubble of acid. Choose one creature within range, or choose two creatures within range that are within 5 feet of each other. A target must succeed on a dexterity saving throw or take 1d6 acid damage.", + "document": "srd", + "level": 0, + "school": "conjuration", + "higher_level": "This spell's damage increases by 1d6 when you reach 5th level (2d6), 11th level (3d6), and 17th level (4d6).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_aid", + "fields": { + "name": "Aid", + "desc": "Your spell bolsters your allies with toughness and resolve. Choose up to three creatures within range. Each target's hit point maximum and current hit points increase by 5 for the duration.", + "document": "srd", + "level": 2, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, a target's hit points increase by an additional 5 for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny strip of white cloth.", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_alarm", + "fields": { + "name": "Alarm", + "desc": "You set an alarm against unwanted intrusion. Choose a door, a window, or an area within range that is no larger than a 20-foot cube. Until the spell ends, an alarm alerts you whenever a Tiny or larger creature touches or enters the warded area. \n\nWhen you cast the spell, you can designate creatures that won't set off the alarm. You also choose whether the alarm is mental or audible. A mental alarm alerts you with a ping in your mind if you are within 1 mile of the warded area. This ping awakens you if you are sleeping. An audible alarm produces the sound of a hand bell for 10 seconds within 60 feet.", + "document": "srd", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny bell and a piece of fine silver wire.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_alter-self", + "fields": { + "name": "Alter Self", + "desc": "You assume a different form. When you cast the spell, choose one of the following options, the effects of which last for the duration of the spell. While the spell lasts, you can end one option as an action to gain the benefits of a different one.\n\n**Aquatic Adaptation.** You adapt your body to an aquatic environment, sprouting gills and growing webbing between your fingers. You can breathe underwater and gain a swimming speed equal to your walking speed.\n\n**Change Appearance.** You transform your appearance. You decide what you look like, including your height, weight, facial features, sound of your voice, hair length, coloration, and distinguishing characteristics, if any. You can make yourself appear as a member of another race, though none of your statistics change. You also can't appear as a creature of a different size than you, and your basic shape stays the same; if you're bipedal, you can't use this spell to become quadrupedal, for instance. At any time for the duration of the spell, you can use your action to change your appearance in this way again.\n\n**Natural Weapons.** You grow claws, fangs, spines, horns, or a different natural weapon of your choice. Your unarmed strikes deal 1d6 bludgeoning, piercing, or slashing damage, as appropriate to the natural weapon you chose, and you are proficient with your unarmed strikes. Finally, the natural weapon is magic and you have a +1 bonus to the attack and damage rolls you make using it.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_animal-friendship", + "fields": { + "name": "Animal Friendship", + "desc": "This spell lets you convince a beast that you mean it no harm. Choose a beast that you can see within range. It must see and hear you. If the beast's Intelligence is 4 or higher, the spell fails. Otherwise, the beast must succeed on a Wisdom saving throw or be charmed by you for the spell's duration. If you or one of your companions harms the target, the spells ends.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional beast for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A morsel of food.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_animal-messenger", + "fields": { + "name": "Animal Messenger", + "desc": "By means of this spell, you use an animal to deliver a message. Choose a Tiny beast you can see within range, such as a squirrel, a blue jay, or a bat. You specify a location, which you must have visited, and a recipient who matches a general description, such as \"a man or woman dressed in the uniform of the town guard\" or \"a red-haired dwarf wearing a pointed hat.\" You also speak a message of up to twenty-five words. The target beast travels for the duration of the spell toward the specified location, covering about 50 miles per 24 hours for a flying messenger, or 25 miles for other animals. \n\nWhen the messenger arrives, it delivers your message to the creature that you described, replicating the sound of your voice. The messenger speaks only to a creature matching the description you gave. If the messenger doesn't reach its destination before the spell ends, the message is lost, and the beast makes its way back to where you cast this spell.", + "document": "srd", + "level": 2, + "school": "enchantment", + "higher_level": "If you cast this spell using a spell slot of 3nd level or higher, the duration of the spell increases by 48 hours for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A morsel of food.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_animal-shapes", + "fields": { + "name": "Animal Shapes", + "desc": "Your magic turns others into beasts. Choose any number of willing creatures that you can see within range. You transform each target into the form of a Large or smaller beast with a challenge rating of 4 or lower. On subsequent turns, you can use your action to transform affected creatures into new forms. \n\nThe transformation lasts for the duration for each target, or until the target drops to 0 hit points or dies. You can choose a different form for each target. A target's game statistics are replaced by the statistics of the chosen beast, though the target retains its alignment and Intelligence, Wisdom, and Charisma scores. The target assumes the hit points of its new form, and when it reverts to its normal form, it returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak or cast spells. \n\nThe target's gear melds into the new form. The target can't activate, wield, or otherwise benefit from any of its equipment.", + "document": "srd", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_animate-dead", + "fields": { + "name": "Animate Dead", + "desc": "This spell creates an undead servant. Choose a pile of bones or a corpse of a Medium or Small humanoid within range. Your spell imbues the target with a foul mimicry of life, raising it as an undead creature. The target becomes a skeleton if you chose bones or a zombie if you chose a corpse (the DM has the creature's game statistics). \n\nOn each of your turns, you can use a bonus action to mentally command any creature you made with this spell if the creature is within 60 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete. \n\nThe creature is under your control for 24 hours, after which it stops obeying any command you've given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature again before the current 24-hour period ends. This use of the spell reasserts your control over up to four creatures you have animated with this spell, rather than animating a new one.", + "document": "srd", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you animate or reassert control over two additional undead creatures for each slot level above 3rd. Each of the creatures must come from a different corpse or pile of bones.", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of blood, a piece of flesh, and a pinch of bone dust.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_animate-objects", + "fields": { + "name": "Animate Objects", + "desc": "Objects come to life at your command. Choose up to ten nonmagical objects within range that are not being worn or carried. Medium targets count as two objects, Large targets count as four objects, Huge targets count as eight objects. You can't animate any object larger than Huge. Each target animates and becomes a creature under your control until the spell ends or until reduced to 0 hit points. \nAs a bonus action, you can mentally command any creature you made with this spell if the creature is within 500 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete.\n### Animated Object Statistics \n| Size | HP | AC | Attack | Str | Dex |\n|--------|----|----|----------------------------|-----|-----|\n| Tiny | 20 | 18 | +8 to hit, 1d4 + 4 damage | 4 | 18 |\n| Small | 25 | 16 | +6 to hit, 1d8 + 2 damage | 6 | 14 |\n| Medium | 40 | 13 | +5 to hit, 2d6 + 1 damage | 10 | 12 |\n| Large | 50 | 10 | +6 to hit, 2d10 + 2 damage | 14 | 10 |\n| Huge | 80 | 10 | +8 to hit, 2d12 + 4 damage | 18 | 6 | \n\nAn animated object is a construct with AC, hit points, attacks, Strength, and Dexterity determined by its size. Its Constitution is 10 and its Intelligence and Wisdom are 3, and its Charisma is 1. Its speed is 30 feet; if the object lacks legs or other appendages it can use for locomotion, it instead has a flying speed of 30 feet and can hover. If the object is securely attached to a surface or a larger object, such as a chain bolted to a wall, its speed is 0. It has blindsight with a radius of 30 feet and is blind beyond that distance. When the animated object drops to 0 hit points, it reverts to its original object form, and any remaining damage carries over to its original object form. If you command an object to attack, it can make a single melee attack against a creature within 5 feet of it. It makes a slam attack with an attack bonus and bludgeoning damage determined by its size. The DM might rule that a specific object inflicts slashing or piercing damage based on its form.", + "document": "srd", + "level": 5, + "school": "transmutation", + "higher_level": "If you cast this spell using a spell slot of 6th level or higher, you can animate two additional objects for each slot level above 5th.", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_antilife-shell", + "fields": { + "name": "Antilife Shell", + "desc": "A shimmering barrier extends out from you in a 10-foot radius and moves with you, remaining centered on you and hedging out creatures other than undead and constructs. The barrier lasts for the duration. The barrier prevents an affected creature from passing or reaching through. An affected creature can cast spells or make attacks with ranged or reach weapons through the barrier. If you move so that an affected creature is forced to pass through the barrier, the spell ends.", + "document": "srd", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_antimagic-field", + "fields": { + "name": "Antimagic Field", + "desc": "A 10-foot-radius invisible sphere of antimagic surrounds you. This area is divorced from the magical energy that suffuses the multiverse. Within the sphere, spells can't be cast, summoned creatures disappear, and even magic items become mundane. Until the spell ends, the sphere moves with you, centered on you. Spells and other magical effects, except those created by an artifact or a deity, are suppressed in the sphere and can't protrude into it. A slot expended to cast a suppressed spell is consumed. While an effect is suppressed, it doesn't function, but the time it spends suppressed counts against its duration.\n\n**Targeted Effects.** Spells and other magical effects, such as magic missile and charm person, that target a creature or an object in the sphere have no effect on that target.\n\n**Areas of Magic.** The area of another spell or magical effect, such as fireball, can't extend into the sphere. If the sphere overlaps an area of magic, the part of the area that is covered by the sphere is suppressed. For example, the flames created by a wall of fire are suppressed within the sphere, creating a gap in the wall if the overlap is large enough.\n\n**Spells.** Any active spell or other magical effect on a creature or an object in the sphere is suppressed while the creature or object is in it.\n\n**Magic Items.** The properties and powers of magic items are suppressed in the sphere. For example, a +1 longsword in the sphere functions as a nonmagical longsword. A magic weapon's properties and powers are suppressed if it is used against a target in the sphere or wielded by an attacker in the sphere. If a magic weapon or a piece of magic ammunition fully leaves the sphere (for example, if you fire a magic arrow or throw a magic spear at a target outside the sphere), the magic of the item ceases to be suppressed as soon as it exits.\n\n**Magical Travel.** Teleportation and planar travel fail to work in the sphere, whether the sphere is the destination or the departure point for such magical travel. A portal to another location, world, or plane of existence, as well as an opening to an extradimensional space such as that created by the rope trick spell, temporarily closes while in the sphere.\n\n**Creatures and Objects.** A creature or object summoned or created by magic temporarily winks out of existence in the sphere. Such a creature instantly reappears once the space the creature occupied is no longer within the sphere.\n\n**Dispel Magic.** Spells and magical effects such as dispel magic have no effect on the sphere. Likewise, the spheres created by different antimagic field spells don't nullify each other.", + "document": "srd", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of powdered iron or iron filings.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": "sphere", + "shape_magnitude": 10, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_antipathysympathy", + "fields": { + "name": "Antipathy/Sympathy", + "desc": "This spell attracts or repels creatures of your choice. You target something within range, either a Huge or smaller object or creature or an area that is no larger than a 200-foot cube. Then specify a kind of intelligent creature, such as red dragons, goblins, or vampires. You invest the target with an aura that either attracts or repels the specified creatures for the duration. Choose antipathy or sympathy as the aura's effect.\n\n**Antipathy.** The enchantment causes creatures of the kind you designated to feel an intense urge to leave the area and avoid the target. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a wisdom saving throw or become frightened. The creature remains frightened while it can see the target or is within 60 feet of it. While frightened by the target, the creature must use its movement to move to the nearest safe spot from which it can't see the target. If the creature moves more than 60 feet from the target and can't see it, the creature is no longer frightened, but the creature becomes frightened again if it regains sight of the target or moves within 60 feet of it.\n\n **Sympathy.** The enchantment causes the specified creatures to feel an intense urge to approach the target while within 60 feet of it or able to see it. When such a creature can see the target or comes within 60 feet of it, the creature must succeed on a wisdom saving throw or use its movement on each of its turns to enter the area or move within reach of the target. When the creature has done so, it can't willingly move away from the target. If the target damages or otherwise harms an affected creature, the affected creature can make a wisdom saving throw to end the effect, as described below.\n\n**Ending the Effect.** If an affected creature ends its turn while not within 60 feet of the target or able to see it, the creature makes a wisdom saving throw. On a successful save, the creature is no longer affected by the target and recognizes the feeling of repugnance or attraction as magical. In addition, a creature affected by the spell is allowed another wisdom saving throw every 24 hours while the spell persists. A creature that successfully saves against this effect is immune to it for 1 minute, after which time it can be affected again.", + "document": "srd", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Either a lump of alum soaked in vinegar for the antipathy effect or a drop of honey for the sympathy effect.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": "cube", + "shape_magnitude": 200, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_arcane-eye", + "fields": { + "name": "Arcane Eye", + "desc": "You create an invisible, magical eye within range that hovers in the air for the duration. You mentally receive visual information from the eye, which has normal vision and darkvision out to 30 feet. The eye can look in every direction. As an action, you can move the eye up to 30 feet in any direction. There is no limit to how far away from you the eye can move, but it can't enter another plane of existence. A solid barrier blocks the eye's movement, but the eye can pass through an opening as small as 1 inch in diameter.", + "document": "srd", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of bat fur.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_arcane-hand", + "fields": { + "name": "Arcane Hand", + "desc": "You create a Large hand of shimmering, translucent force in an unoccupied space that you can see within range. The hand lasts for the spell's duration, and it moves at your command, mimicking the movements of your own hand. The hand is an object that has AC 20 and hit points equal to your hit point maximum. If it drops to 0 hit points, the spell ends. It has a Strength of 26 (+8) and a Dexterity of 10 (+0). The hand doesn't fill its space. When you cast the spell and as a bonus action on your subsequent turns, you can move the hand up to 60 feet and then cause one of the following effects with it.\n\n**Clenched Fist.** The hand strikes one creature or object within 5 feet of it. Make a melee spell attack for the hand using your game statistics. On a hit, the target takes 4d8 force damage.\n\n**Forceful Hand.** The hand attempts to push a creature within 5 feet of it in a direction you choose. Make a check with the hand's Strength contested by the Strength (Athletics) check of the target. If the target is Medium or smaller, you have advantage on the check. If you succeed, the hand pushes the target up to 5 feet plus a number of feet equal to five times your spellcasting ability modifier. The hand moves with the target to remain within 5 feet of it.\n\n**Grasping Hand.** The hand attempts to grapple a Huge or smaller creature within 5 feet of it. You use the hand's Strength score to resolve the grapple. If the target is Medium or smaller, you have advantage on the check. While the hand is grappling the target, you can use a bonus action to have the hand crush it. When you do so, the target takes bludgeoning damage equal to 2d6 + your spellcasting ability modifier\n\n **Interposing Hand.** The hand interposes itself between you and a creature you choose until you give the hand a different command. The hand moves to stay between you and the target, providing you with half cover against the target. The target can't move through the hand's space if its Strength score is less than or equal to the hand's Strength score. If its Strength score is higher than the hand's Strength score, the target can move toward you through the hand's space, but that space is difficult terrain for the target.", + "document": "srd", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage from the clenched fist option increases by 2d8 and the damage from the grasping hand increases by 2d6 for each slot level above 5th.", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An eggshell and a snakeskin glove.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "4d8", + "damage_types": [ + "force" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_arcane-lock", + "fields": { + "name": "Arcane Lock", + "desc": "You touch a closed door, window, gate, chest, or other entryway, and it becomes locked for the duration. You and the creatures you designate when you cast this spell can open the object normally. You can also set a password that, when spoken within 5 feet of the object, suppresses this spell for 1 minute. Otherwise, it is impassable until it is broken or the spell is dispelled or suppressed. Casting knock on the object suppresses arcane lock for 10 minutes. While affected by this spell, the object is more difficult to break or force open; the DC to break it or pick any locks on it increases by 10.", + "document": "srd", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Gold dust worth at least 25gp, which the spell consumes.", + "material_cost": "25.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_arcane-sword", + "fields": { + "name": "Arcane Sword", + "desc": "You create a sword-shaped plane of force that hovers within range. It lasts for the duration. When the sword appears, you make a melee spell attack against a target of your choice within 5 feet of the sword. On a hit, the target takes 3d10 force damage. Until the spell ends, you can use a bonus action on each of your turns to move the sword up to 20 feet to a spot you can see and repeat this attack against the same target or a different one.", + "document": "srd", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A miniature platinum sword with a grip and pommel of copper and zinc, worth 250 gp.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "3d10", + "damage_types": [ + "force" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_arcanists-magic-aura", + "fields": { + "name": "Arcanist's Magic Aura", + "desc": "You place an illusion on a creature or an object you touch so that divination spells reveal false information about it. The target can be a willing creature or an object that isn't being carried or worn by another creature. When you cast the spell, choose one or both of the following effects. The effect lasts for the duration. If you cast this spell on the same creature or object every day for 30 days, placing the same effect on it each time, the illusion lasts until it is dispelled.\n\n**False Aura.** You change the way the target appears to spells and magical effects, such as detect magic, that detect magical auras. You can make a nonmagical object appear magical, a magical object appear nonmagical, or change the object's magical aura so that it appears to belong to a specific school of magic that you choose. When you use this effect on an object, you can make the false magic apparent to any creature that handles the item.\n\n**Mask.** You change the way the target appears to spells and magical effects that detect creature types, such as a paladin's Divine Sense or the trigger of a symbol spell. You choose a creature type and other spells and magical effects treat the target as if it were a creature of that type or of that alignment.", + "document": "srd", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small square of silk.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_astral-projection", + "fields": { + "name": "Astral Projection", + "desc": "You and up to eight willing creatures within range project your astral bodies into the Astral Plane (the spell fails and the casting is wasted if you are already on that plane). The material body you leave behind is unconscious and in a state of suspended animation; it doesn't need food or air and doesn't age. Your astral body resembles your mortal form in almost every way, replicating your game statistics and possessions. The principal difference is the addition of a silvery cord that extends from between your shoulder blades and trails behind you, fading to invisibility after 1 foot. This cord is your tether to your material body. As long as the tether remains intact, you can find your way home. If the cord is cut-something that can happen only when an effect specifically states that it does-your soul and body are separated, killing you instantly. Your astral form can freely travel through the Astral Plane and can pass through portals there leading to any other plane. If you enter a new plane or return to the plane you were on when casting this spell, your body and possessions are transported along the silver cord, allowing you to re-enter your body as you enter the new plane. Your astral form is a separate incarnation. Any damage or other effects that apply to it have no effect on your physical body, nor do they persist when you return to it. The spell ends for you and your companions when you use your action to dismiss it. When the spell ends, the affected creature returns to its physical body, and it awakens. The spell might also end early for you or one of your companions. A successful dispel magic spell used against an astral or physical body ends the spell for that creature. If a creature's original body or its astral form drops to 0 hit points, the spell ends for that creature. If the spell ends and the silver cord is intact, the cord pulls the creature's astral form back to its body, ending its state of suspended animation. If you are returned to your body prematurely, your companions remain in their astral forms and must find their own way back to their bodies, usually by dropping to 0 hit points.", + "document": "srd", + "level": 9, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "For each creature you affect with this spell, you must provide one jacinth worth at least 1,000gp and one ornately carved bar of silver worth at least 100gp, all of which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_augury", + "fields": { + "name": "Augury", + "desc": "By casting gem-inlaid sticks, rolling dragon bones, laying out ornate cards, or employing some other divining tool, you receive an omen from an otherworldly entity about the results of a specific course of action that you plan to take within the next 30 minutes. The DM chooses from the following possible omens: \n- Weal, for good results \n- Woe, for bad results \n- Weal and woe, for both good and bad results \n- Nothing, for results that aren't especially good or bad The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion. If you cast the spell two or more times before completing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.", + "document": "srd", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Specially marked sticks, bones, or similar tokens worth at least 25gp.", + "material_cost": "25.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_awaken", + "fields": { + "name": "Awaken", + "desc": "After spending the casting time tracing magical pathways within a precious gemstone, you touch a Huge or smaller beast or plant. The target must have either no Intelligence score or an Intelligence of 3 or less. The target gains an Intelligence of 10. The target also gains the ability to speak one language you know. If the target is a plant, it gains the ability to move its limbs, roots, vines, creepers, and so forth, and it gains senses similar to a human's. Your DM chooses statistics appropriate for the awakened plant, such as the statistics for the awakened shrub or the awakened tree. The awakened beast or plant is charmed by you for 30 days or until you or your companions do anything harmful to it. When the charmed condition ends, the awakened creature chooses whether to remain friendly to you, based on how you treated it while it was charmed.", + "document": "srd", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An agate worth at least 1,000 gp, which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_bane", + "fields": { + "name": "Bane", + "desc": "Up to three creatures of your choice that you can see within range must make charisma saving throws. Whenever a target that fails this saving throw makes an attack roll or a saving throw before the spell ends, the target must roll a d4 and subtract the number rolled from the attack roll or saving throw.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of blood.", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_banishment", + "fields": { + "name": "Banishment", + "desc": "You attempt to send one creature that you can see within range to another plane of existence. The target must succeed on a charisma saving throw or be banished. If the target is native to the plane of existence you're on, you banish the target to a harmless demiplane. While there, the target is incapacitated. The target remains there until the spell ends, at which point the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. If the target is native to a different plane of existence than the one you're on, the target is banished with a faint popping noise, returning to its home plane. If the spell ends before 1 minute has passed, the target reappears in the space it left or in the nearest unoccupied space if that space is occupied. Otherwise, the target doesn't return.", + "document": "srd", + "level": 4, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can target one additional creature for each slot level above 4th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An item distasteful to the target.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_barkskin", + "fields": { + "name": "Barkskin", + "desc": "You touch a willing creature. Until the spell ends, the target's skin has a rough, bark-like appearance, and the target's AC can't be less than 16, regardless of what kind of armor it is wearing.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A handful of oak bark.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_beacon-of-hope", + "fields": { + "name": "Beacon of Hope", + "desc": "This spell bestows hope and vitality. Choose any number of creatures within range. For the duration, each target has advantage on wisdom saving throws and death saving throws, and regains the maximum number of hit points possible from any healing.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_bestow-curse", + "fields": { + "name": "Bestow Curse", + "desc": "You touch a creature, and that creature must succeed on a wisdom saving throw or become cursed for the duration of the spell. When you cast this spell, choose the nature of the curse from the following options: \n- Choose one ability score. While cursed, the target has disadvantage on ability checks and saving throws made with that ability score. \n- While cursed, the target has disadvantage on attack rolls against you. \n- While cursed, the target must make a wisdom saving throw at the start of each of its turns. If it fails, it wastes its action that turn doing nothing. \n- While the target is cursed, your attacks and spells deal an extra 1d8 necrotic damage to the target. A remove curse spell ends this effect. At the DM's option, you may choose an alternative curse effect, but it should be no more powerful than those described above. The DM has final say on such a curse's effect.", + "document": "srd", + "level": 3, + "school": "necromancy", + "higher_level": "If you cast this spell using a spell slot of 4th level or higher, the duration is concentration, up to 10 minutes. If you use a spell slot of 5th level or higher, the duration is 8 hours. If you use a spell slot of 7th level or higher, the duration is 24 hours. If you use a 9th level spell slot, the spell lasts until it is dispelled. Using a spell slot of 5th level or higher grants a duration that doesn't require concentration.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_black-tentacles", + "fields": { + "name": "Black Tentacles", + "desc": "Squirming, ebony tentacles fill a 20-foot square on ground that you can see within range. For the duration, these tentacles turn the ground in the area into difficult terrain. When a creature enters the affected area for the first time on a turn or starts its turn there, the creature must succeed on a Dexterity saving throw or take 3d6 bludgeoning damage and be restrained by the tentacles until the spell ends. A creature that starts its turn in the area and is already restrained by the tentacles takes 3d6 bludgeoning damage. A creature restrained by the tentacles can use its action to make a Strength or Dexterity check (its choice) against your spell save DC. On a success, it frees itself.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "area", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A piece of tentacle from a giant octopus or a giant squid", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_blade-barrier", + "fields": { + "name": "Blade Barrier", + "desc": "You create a vertical wall of whirling, razor-sharp blades made of magical energy. The wall appears within range and lasts for the duration. You can make a straight wall up to 100 feet long, 20 feet high, and 5 feet thick, or a ringed wall up to 60 feet in diameter, 20 feet high, and 5 feet thick. The wall provides three-quarters cover to creatures behind it, and its space is difficult terrain. When a creature enters the wall's area for the first time on a turn or starts its turn there, the creature must make a dexterity saving throw. On a failed save, the creature takes 6d10 slashing damage. On a successful save, the creature takes half as much damage.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "6d10", + "damage_types": [ + "slashing" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_bless", + "fields": { + "name": "Bless", + "desc": "You bless up to three creatures of your choice within range. Whenever a target makes an attack roll or a saving throw before the spell ends, the target can roll a d4 and add the number rolled to the attack roll or saving throw.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A sprinkling of holy water.", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_blight", + "fields": { + "name": "Blight", + "desc": "Necromantic energy washes over a creature of your choice that you can see within range, draining moisture and vitality from it. The target must make a constitution saving throw. The target takes 8d8 necrotic damage on a failed save, or half as much damage on a successful one. The spell has no effect on undead or constructs. If you target a plant creature or a magical plant, it makes the saving throw with disadvantage, and the spell deals maximum damage to it. If you target a nonmagical plant that isn't a creature, such as a tree or shrub, it doesn't make a saving throw; it simply withers and dies.", + "document": "srd", + "level": 4, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 5th level of higher, the damage increases by 1d8 for each slot level above 4th.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d8", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_blindnessdeafness", + "fields": { + "name": "Blindness/Deafness", + "desc": "You can blind or deafen a foe. Choose one creature that you can see within range to make a constitution saving throw. If it fails, the target is either blinded or deafened (your choice) for the duration. At the end of each of its turns, the target can make a constitution saving throw. On a success, the spell ends.", + "document": "srd", + "level": 2, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_blink", + "fields": { + "name": "Blink", + "desc": "Roll a d20 at the end of each of your turns for the duration of the spell. On a roll of 11 or higher, you vanish from your current plane of existence and appear in the Ethereal Plane (the spell fails and the casting is wasted if you were already on that plane). At the start of your next turn, and when the spell ends if you are on the Ethereal Plane, you return to an unoccupied space of your choice that you can see within 10 feet of the space you vanished from. If no unoccupied space is available within that range, you appear in the nearest unoccupied space (chosen at random if more than one space is equally near). You can dismiss this spell as an action. While on the Ethereal Plane, you can see and hear the plane you originated from, which is cast in shades of gray, and you can't see anything there more than 60 feet away. You can only affect and be affected by other creatures on the Ethereal Plane. Creatures that aren't there can't perceive you or interact with you, unless they have the ability to do so.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_blur", + "fields": { + "name": "Blur", + "desc": "Your body becomes blurred, shifting and wavering to all who can see you. For the duration, any creature has disadvantage on attack rolls against you. An attacker is immune to this effect if it doesn't rely on sight, as with blindsight, or can see through illusions, as with truesight.", + "document": "srd", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_branding-smite", + "fields": { + "name": "Branding Smite", + "desc": "The next time you hit a creature with a weapon attack before this spell ends, the weapon gleams with astral radiance as you strike. The attack deals an extra 2d6 radiant damage to the target, which becomes visible if it's invisible, and the target sheds dim light in a 5-­--foot radius and can't become invisible until the spell ends.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the extra damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_burning-hands", + "fields": { + "name": "Burning Hands", + "desc": "As you hold your hands with thumbs touching and fingers spread, a thin sheet of flames shoots forth from your outstretched fingertips. Each creature in a 15-foot cone must make a dexterity saving throw. A creature takes 3d6 fire damage on a failed save, or half as much damage on a successful one. The fire ignites any flammable objects in the area that aren't being worn or carried.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 15, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_call-lightning", + "fields": { + "name": "Call Lightning", + "desc": "A storm cloud appears in the shape of a cylinder that is 10 feet tall with a 60-foot radius, centered on a point you can see 100 feet directly above you. The spell fails if you can't see a point in the air where the storm cloud could appear (for example, if you are in a room that can't accommodate the cloud). When you cast the spell, choose a point you can see within range. A bolt of lightning flashes down from the cloud to that point. Each creature within 5 feet of that point must make a dexterity saving throw. A creature takes 3d10 lightning damage on a failed save, or half as much damage on a successful one. On each of your turns until the spell ends, you can use your action to call down lightning in this way again, targeting the same point or a different one. If you are outdoors in stormy conditions when you cast this spell, the spell gives you control over the existing storm instead of creating a new one. Under such conditions, the spell's damage increases by 1d10.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th or higher level, the damage increases by 1d10 for each slot level above 3rd.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "3d10", + "damage_types": [ + "lightning" + ], + "duration": "10 minutes", + "shape_type": "cylinder", + "shape_magnitude": 60, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_calm-emotions", + "fields": { + "name": "Calm Emotions", + "desc": "You attempt to suppress strong emotions in a group of people. Each humanoid in a 20-foot-radius sphere centered on a point you choose within range must make a charisma saving throw; a creature can choose to fail this saving throw if it wishes. If a creature fails its saving throw, choose one of the following two effects. You can suppress any effect causing a target to be charmed or frightened. When this spell ends, any suppressed effect resumes, provided that its duration has not expired in the meantime. Alternatively, you can make a target indifferent about creatures of your choice that it is hostile toward. This indifference ends if the target is attacked or harmed by a spell or if it witnesses any of its friends being harmed. When the spell ends, the creature becomes hostile again, unless the DM rules otherwise.", + "document": "srd", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_chain-lightning", + "fields": { + "name": "Chain Lightning", + "desc": "You create a bolt of lightning that arcs toward a target of your choice that you can see within range. Three bolts then leap from that target to as many as three other targets, each of which must be within 30 feet of the first target. A target can be a creature or an object and can be targeted by only one of the bolts. A target must make a dexterity saving throw. The target takes 10d8 lightning damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, one additional bolt leaps from the first target to another target for each slot level above 6th.", + "target_type": "creature", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fur; a piece of amber, glass, or a crystal rod; and three silver pins.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "10d8", + "damage_types": [ + "lightning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_charm-person", + "fields": { + "name": "Charm Person", + "desc": "You attempt to charm a humanoid you can see within range. It must make a wisdom saving throw, and does so with advantage if you or your companions are fighting it. If it fails the saving throw, it is charmed by you until the spell ends or until you or your companions do anything harmful to it. The charmed creature regards you as a friendly acquaintance. When the spell ends, the creature knows it was charmed by you.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_chill-touch", + "fields": { + "name": "Chill Touch", + "desc": "You create a ghostly, skeletal hand in the space of a creature within range. Make a ranged spell attack against the creature to assail it with the chill of the grave. On a hit, the target takes 1d8 necrotic damage, and it can't regain hit points until the start of your next turn. Until then, the hand clings to the target. If you hit an undead target, it also has disadvantage on attack rolls against you until the end of your next turn.", + "document": "srd", + "level": 0, + "school": "necromancy", + "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "necrotic" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_circle-of-death", + "fields": { + "name": "Circle of Death", + "desc": "A sphere of negative energy ripples out in a 60-foot-radius sphere from a point within range. Each creature in that area must make a constitution saving throw. A target takes 8d6 necrotic damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "level": 6, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 2d6 for each slot level above 6th.", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "The powder of a crushed black pearl worth at least 500 gp.", + "material_cost": "500.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 60, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_clairvoyance", + "fields": { + "name": "Clairvoyance", + "desc": "You create an invisible sensor within range in a location familiar to you (a place you have visited or seen before) or in an obvious location that is unfamiliar to you (such as behind a door, around a corner, or in a grove of trees). The sensor remains in place for the duration, and it can't be attacked or otherwise interacted with. When you cast the spell, you choose seeing or hearing. You can use the chosen sense through the sensor as if you were in its space. As your action, you can switch between seeing and hearing. A creature that can see the sensor (such as a creature benefiting from see invisibility or truesight) sees a luminous, intangible orb about the size of your fist.", + "document": "srd", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "1 mile", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A focus worth at least 100gp, either a jeweled horn for hearing or a glass eye for seeing.", + "material_cost": "100.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_clone", + "fields": { + "name": "Clone", + "desc": "This spell grows an inert duplicate of a living creature as a safeguard against death. This clone forms inside a sealed vessel and grows to full size and maturity after 120 days; you can also choose to have the clone be a younger version of the same creature. It remains inert and endures indefinitely, as long as its vessel remains undisturbed. At any time after the clone matures, if the original creature dies, its soul transfers to the clone, provided that the soul is free and willing to return. The clone is physically identical to the original and has the same personality, memories, and abilities, but none of the original's equipment. The original creature's physical remains, if they still exist, become inert and can't thereafter be restored to life, since the creature's soul is elsewhere.", + "document": "srd", + "level": 8, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A diamond worth at least 1,000 gp and at least 1 cubic inch of flesh of the creature that is to be cloned, which the spell consumes, and a vessel worth at least 2,000 gp that has a sealable lid and is large enough to hold a Medium creature, such as a huge urn, coffin, mud-filled cyst in the ground, or crystal container filled with salt water.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_cloudkill", + "fields": { + "name": "Cloudkill", + "desc": "You create a 20-foot-radius sphere of poisonous, yellow-green fog centered on a point you choose within range. The fog spreads around corners. It lasts for the duration or until strong wind disperses the fog, ending the spell. Its area is heavily obscured. When a creature enters the spell's area for the first time on a turn or starts its turn there, that creature must make a constitution saving throw. The creature takes 5d8 poison damage on a failed save, or half as much damage on a successful one. Creatures are affected even if they hold their breath or don't need to breathe. The fog moves 10 feet away from you at the start of each of your turns, rolling along the surface of the ground. The vapors, being heavier than air, sink to the lowest level of the land, even pouring down openings.", + "document": "srd", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "poison" + ], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_color-spray", + "fields": { + "name": "Color Spray", + "desc": "A dazzling array of flashing, colored light springs from your hand. Roll 6d10; the total is how many hit points of creatures this spell can effect. Creatures in a 15-foot cone originating from you are affected in ascending order of their current hit points (ignoring unconscious creatures and creatures that can't see). Starting with the creature that has the lowest current hit points, each creature affected by this spell is blinded until the spell ends. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected.", + "document": "srd", + "level": 1, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d10 for each slot level above 1st.", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of powder or sand that is colored red, yellow, and blue.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": "cone", + "shape_magnitude": 15, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_command", + "fields": { + "name": "Command", + "desc": "You speak a one-word command to a creature you can see within range. The target must succeed on a wisdom saving throw or follow the command on its next turn. The spell has no effect if the target is undead, if it doesn't understand your language, or if your command is directly harmful to it. Some typical commands and their effects follow. You might issue a command other than one described here. If you do so, the DM determines how the target behaves. If the target can't follow your command, the spell ends\n\n **Approach.** The target moves toward you by the shortest and most direct route, ending its turn if it moves within 5 feet of you.\n\n**Drop** The target drops whatever it is holding and then ends its turn.\n\n**Flee.** The target spends its turn moving away from you by the fastest available means.\n\n**Grovel.** The target falls prone and then ends its turn.\n\n**Halt.** The target doesn't move and takes no actions. A flying creature stays aloft, provided that it is able to do so. If it must move to stay aloft, it flies the minimum distance needed to remain in the air.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can affect one additional creature for each slot level above 1st. The creatures must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_commune", + "fields": { + "name": "Commune", + "desc": "You contact your deity or a divine proxy and ask up to three questions that can be answered with a yes or no. You must ask your questions before the spell ends. You receive a correct answer for each question. Divine beings aren't necessarily omniscient, so you might receive \"unclear\" as an answer if a question pertains to information that lies beyond the deity's knowledge. In a case where a one-word answer could be misleading or contrary to the deity's interests, the DM might offer a short phrase as an answer instead. If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get no answer. The DM makes this roll in secret.", + "document": "srd", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Incense and a vial of holy or unholy water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_commune-with-nature", + "fields": { + "name": "Commune with Nature", + "desc": "You briefly become one with nature and gain knowledge of the surrounding territory. In the outdoors, the spell gives you knowledge of the land within 3 miles of you. In caves and other natural underground settings, the radius is limited to 300 feet. The spell doesn't function where nature has been replaced by construction, such as in dungeons and towns. You instantly gain knowledge of up to three facts of your choice about any of the following subjects as they relate to the area: \n- terrain and bodies of water \n- prevalent plants, minerals, animals, or peoples \n- powerful celestials, fey, fiends, elementals, or undead \n- influence from other planes of existence \n- buildings For example, you could determine the location of powerful undead in the area, the location of major sources of safe drinking water, and the location of any nearby towns.", + "document": "srd", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_comprehend-languages", + "fields": { + "name": "Comprehend Languages", + "desc": "For the duration, you understand the literal meaning of any spoken language that you hear. You also understand any written language that you see, but you must be touching the surface on which the words are written. It takes about 1 minute to read one page of text. This spell doesn't decode secret messages in a text or a glyph, such as an arcane sigil, that isn't part of a written language.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of soot and salt.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_compulsion", + "fields": { + "name": "Compulsion", + "desc": "Creatures of your choice that you can see within range and that can hear you must make a Wisdom saving throw. A target automatically succeeds on this saving throw if it can't be charmed. On a failed save, a target is affected by this spell. Until the spell ends, you can use a bonus action on each of your turns to designate a direction that is horizontal to you. Each affected target must use as much of its movement as possible to move in that direction on its next turn. It can take its action before it moves. After moving in this way, it can make another Wisdom saving throw to try to end the effect. A target isn't compelled to move into an obviously deadly hazard, such as a fire or pit, but it will provoke opportunity attacks to move in the designated direction.", + "document": "srd", + "level": 4, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_cone-of-cold", + "fields": { + "name": "Cone of Cold", + "desc": "A blast of cold air erupts from your hands. Each creature in a 60-foot cone must make a constitution saving throw. A creature takes 8d8 cold damage on a failed save, or half as much damage on a successful one. A creature killed by this spell becomes a frozen statue until it thaws.", + "document": "srd", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d8 for each slot level above 5th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small crystal or glass cone.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "8d8", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 60, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_confusion", + "fields": { + "name": "Confusion", + "desc": "This spell assaults and twists creatures' minds, spawning delusions and provoking uncontrolled action. Each creature in a 10 foot radius sphere centered on a point you choose within range must succeed on a Wisdom saving throw when you cast this spell or be affected by it.\n\nAn affected target can't take reactions and must roll a d10 at the start of each of its turns to determine its behavior for that turn.\n\n| d10 | Behavior |\n|---|---|\n| 1 | The creature uses all its movement to move in a random direction. To determine the direction, roll a d8 and assign a direction to each die face. The creature doesn’t take an action this turn. |\n| 2-6 | The creature doesn’t move or take actions this turn. |\n| 7-8 | The creature uses its action to make a melee attack against a randomly determined creature within its reach. If there is no creature within its reach, the creature does nothing this turn. |\n| 9-10 | The creature can act and move normally. |\n\nAt the end of each of its turns, an affected target can make a Wisdom saving throw. If it succeeds, this effect ends for that target.", + "document": "srd", + "level": 4, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the radius of the sphere increases by 5 feet for each slot level above 4th.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Three walnut shells.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_conjure-animals", + "fields": { + "name": "Conjure Animals", + "desc": "You summon fey spirits that take the form of beasts and appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears: \n- One beast of challenge rating 2 or lower \n- Two beasts of challenge rating 1 or lower \n- Four beasts of challenge rating 1/2 or lower \n- Eight beasts of challenge rating 1/4 or lower \n- Each beast is also considered fey, and it disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 5th-level slot, three times as many with a 7th-level, and four times as many with a 9th-level slot.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_conjure-celestial", + "fields": { + "name": "Conjure Celestial", + "desc": "You summon a celestial of challenge rating 4 or lower, which appears in an unoccupied space that you can see within range. The celestial disappears when it drops to 0 hit points or when the spell ends. The celestial is friendly to you and your companions for the duration. Roll initiative for the celestial, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the celestial, it defends itself from hostile creatures but otherwise takes no actions. The DM has the celestial's statistics.", + "document": "srd", + "level": 7, + "school": "conjuration", + "higher_level": "When you cast this spell using a 9th-level spell slot, you summon a celestial of challenge rating 5 or lower.", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_conjure-elemental", + "fields": { + "name": "Conjure Elemental", + "desc": "You call forth an elemental servant. Choose an area of air, earth, fire, or water that fills a 10-foot cube within range. An elemental of challenge rating 5 or lower appropriate to the area you chose appears in an unoccupied space within 10 feet of it. For example, a fire elemental emerges from a bonfire, and an earth elemental rises up from the ground. The elemental disappears when it drops to 0 hit points or when the spell ends. The elemental is friendly to you and your companions for the duration. Roll initiative for the elemental, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you). If you don't issue any commands to the elemental, it defends itself from hostile creatures but otherwise takes no actions. If your concentration is broken, the elemental doesn't disappear. Instead, you lose control of the elemental, it becomes hostile toward you and your companions, and it might attack. An uncontrolled elemental can't be dismissed by you, and it disappears 1 hour after you summoned it. The DM has the elemental's statistics.", + "document": "srd", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the challenge rating increases by 1 for each slot level above 5th.", + "target_type": "area", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Burning incense for air, soft clay for earth, sulfur and phosphorus for fire, or water and sand for water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_conjure-fey", + "fields": { + "name": "Conjure Fey", + "desc": "You summon a fey creature of challenge rating 6 or lower, or a fey spirit that takes the form of a beast of challenge rating 6 or lower. It appears in an unoccupied space that you can see within range. The fey creature disappears when it drops to 0 hit points or when the spell ends. The fey creature is friendly to you and your companions for the duration. Roll initiative for the creature, which has its own turns. It obeys any verbal commands that you issue to it (no action required by you), as long as they don't violate its alignment. If you don't issue any commands to the fey creature, it defends itself from hostile creatures but otherwise takes no actions. If your concentration is broken, the fey creature doesn't disappear. Instead, you lose control of the fey creature, it becomes hostile toward you and your companions, and it might attack. An uncontrolled fey creature can't be dismissed by you, and it disappears 1 hour after you summoned it. The DM has the fey creature's statistics.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the challenge rating increases by 1 for each slot level above 6th.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_conjure-minor-elementals", + "fields": { + "name": "Conjure Minor Elementals", + "desc": "You summon elementals that appear in unoccupied spaces that you can see within range. You choose one the following options for what appears: \n- One elemental of challenge rating 2 or lower \n- Two elementals of challenge rating 1 or lower \n- Four elementals of challenge rating 1/2 or lower \n- Eight elementals of challenge rating 1/4 or lower. An elemental summoned by this spell disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which has its own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_conjure-woodland-beings", + "fields": { + "name": "Conjure Woodland Beings", + "desc": "You summon fey creatures that appear in unoccupied spaces that you can see within range. Choose one of the following options for what appears: \n- One fey creature of challenge rating 2 or lower \n- Two fey creatures of challenge rating 1 or lower \n- Four fey creatures of challenge rating 1/2 or lower \n- Eight fey creatures of challenge rating 1/4 or lower A summoned creature disappears when it drops to 0 hit points or when the spell ends. The summoned creatures are friendly to you and your companions. Roll initiative for the summoned creatures as a group, which have their own turns. They obey any verbal commands that you issue to them (no action required by you). If you don't issue any commands to them, they defend themselves from hostile creatures, but otherwise take no actions. The DM has the creatures' statistics.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "When you cast this spell using certain higher-level spell slots, you choose one of the summoning options above, and more creatures appear: twice as many with a 6th-level slot and three times as many with an 8th-level slot.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "One holly berry per creature summoned.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_contact-other-plane", + "fields": { + "name": "Contact Other Plane", + "desc": "You mentally contact a demigod, the spirit of a long-dead sage, or some other mysterious entity from another plane. Contacting this extraplanar intelligence can strain or even break your mind. When you cast this spell, make a DC 15 intelligence saving throw. On a failure, you take 6d6 psychic damage and are insane until you finish a long rest. While insane, you can't take actions, can't understand what other creatures say, can't read, and speak only in gibberish. A greater restoration spell cast on you ends this effect. On a successful save, you can ask the entity up to five questions. You must ask your questions before the spell ends. The DM answers each question with one word, such as \"yes,\" \"no,\" \"maybe,\" \"never,\" \"irrelevant,\" or \"unclear\" (if the entity doesn't know the answer to the question). If a one-word answer would be misleading, the DM might instead offer a short phrase as an answer.", + "document": "srd", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_contagion", + "fields": { + "name": "Contagion", + "desc": "Your touch inflicts disease. Make a melee spell attack against a creature within your reach. On a hit, you afflict the creature with a disease of your choice from any of the ones described below. At the end of each of the target's turns, it must make a constitution saving throw. After failing three of these saving throws, the disease's effects last for the duration, and the creature stops making these saves. After succeeding on three of these saving throws, the creature recovers from the disease, and the spell ends. Since this spell induces a natural disease in its target, any effect that removes a disease or otherwise ameliorates a disease's effects apply to it.\n\n**Blinding Sickness.** Pain grips the creature's mind, and its eyes turn milky white. The creature has disadvantage on wisdom checks and wisdom saving throws and is blinded.\n\n**Filth Fever.** A raging fever sweeps through the creature's body. The creature has disadvantage on strength checks, strength saving throws, and attack rolls that use Strength.\n\n**Flesh Rot.** The creature's flesh decays. The creature has disadvantage on Charisma checks and vulnerability to all damage.\n\n**Mindfire.** The creature's mind becomes feverish. The creature has disadvantage on intelligence checks and intelligence saving throws, and the creature behaves as if under the effects of the confusion spell during combat.\n\n**Seizure.** The creature is overcome with shaking. The creature has disadvantage on dexterity checks, dexterity saving throws, and attack rolls that use Dexterity.\n\n**Slimy Doom.** The creature begins to bleed uncontrollably. The creature has disadvantage on constitution checks and constitution saving throws. In addition, whenever the creature takes damage, it is stunned until the end of its next turn.", + "document": "srd", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "7 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_contingency", + "fields": { + "name": "Contingency", + "desc": "Choose a spell of 5th level or lower that you can cast, that has a casting time of 1 action, and that can target you. You cast that spell-called the contingent spell-as part of casting contingency, expending spell slots for both, but the contingent spell doesn't come into effect. Instead, it takes effect when a certain circumstance occurs. You describe that circumstance when you cast the two spells. For example, a contingency cast with water breathing might stipulate that water breathing comes into effect when you are engulfed in water or a similar liquid. The contingent spell takes effect immediately after the circumstance is met for the first time, whether or not you want it to. and then contingency ends. The contingent spell takes effect only on you, even if it can normally target others. You can use only one contingency spell at a time. If you cast this spell again, the effect of another contingency spell on you ends. Also, contingency ends on you if its material component is ever not on your person.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A statuette of yourself carved from ivory and decorated with gems worth at least 1,500 gp.", + "material_cost": "1500.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_continual-flame", + "fields": { + "name": "Continual Flame", + "desc": "A flame, equivalent in brightness to a torch, springs forth from an object that you touch. The effect looks like a regular flame, but it creates no heat and doesn't use oxygen. A continual flame can be covered or hidden but not smothered or quenched.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Ruby dust worth 50 gp, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_control-water", + "fields": { + "name": "Control Water", + "desc": "Until the spell ends, you control any freestanding water inside an area you choose that is a cube up to 100 feet on a side. You can choose from any of the following effects when you cast this spell. As an action on your turn, you can repeat the same effect or choose a different one.\n\n**Flood.** You cause the water level of all standing water in the area to rise by as much as 20 feet. If the area includes a shore, the flooding water spills over onto dry land. instead create a 20-foot tall wave that travels from one side of the area to the other and then crashes down. Any Huge or smaller vehicles in the wave's path are carried with it to the other side. Any Huge or smaller vehicles struck by the wave have a 25 percent chance of capsizing. The water level remains elevated until the spell ends or you choose a different effect. If this effect produced a wave, the wave repeats on the start of your next turn while the flood effect lasts\n\n **Part Water.** You cause water in the area to move apart and create a trench. The trench extends across the spell's area, and the separated water forms a wall to either side. The trench remains until the spell ends or you choose a different effect. The water then slowly fills in the trench over the course of the next round until the normal water level is restored.\n\n**Redirect Flow.** You cause flowing water in the area to move in a direction you choose, even if the water has to flow over obstacles, up walls, or in other unlikely directions. The water in the area moves as you direct it, but once it moves beyond the spell's area, it resumes its flow based on the terrain conditions. The water continues to move in the direction you chose until the spell ends or you choose a different effect.\n\n**Whirlpool.** This effect requires a body of water at least 50 feet square and 25 feet deep. You cause a whirlpool to form in the center of the area. The whirlpool forms a vortex that is 5 feet wide at the base, up to 50 feet wide at the top, and 25 feet tall. Any creature or object in the water and within 25 feet of the vortex is pulled 10 feet toward it. A creature can swim away from the vortex by making a Strength (Athletics) check against your spell save DC. When a creature enters the vortex for the first time on a turn or starts its turn there, it must make a strength saving throw. On a failed save, the creature takes 2d8 bludgeoning damage and is caught in the vortex until the spell ends. On a successful save, the creature takes half damage, and isn't caught in the vortex. A creature caught in the vortex can use its action to try to swim away from the vortex as described above, but has disadvantage on the Strength (Athletics) check to do so. The first time each turn that an object enters the vortex, the object takes 2d8 bludgeoning damage; this damage occurs each round it remains in the vortex.", + "document": "srd", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of water and a pinch of dust.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_control-weather", + "fields": { + "name": "Control Weather", + "desc": "You take control of the weather within 5 miles of you for the duration. You must be outdoors to cast this spell. Moving to a place where you don't have a clear path to the sky ends the spell early. When you cast the spell, you change the current weather conditions, which are determined by the DM based on the climate and season. You can change precipitation, temperature, and wind. It takes 1d4 x 10 minutes for the new conditions to take effect. Once they do so, you can change the conditions again. When the spell ends, the weather gradually returns to normal. When you change the weather conditions, find a current condition on the following tables and change its stage by one, up or down. When changing the wind, you can change its direction.", + "document": "srd", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Burning incense and bits of earth and wood mixed in water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_counterspell", + "fields": { + "name": "Counterspell", + "desc": "You attempt to interrupt a creature in the process of casting a spell. If the creature is casting a spell of 3rd level or lower, its spell fails and has no effect. If it is casting a spell of 4th level or higher, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a success, the creature's spell fails and has no effect.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the interrupted spell has no effect if its level is less than or equal to the level of the spell slot you used.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_create-food-and-water", + "fields": { + "name": "Create Food and Water", + "desc": "You create 45 pounds of food and 30 gallons of water on the ground or in containers within range, enough to sustain up to fifteen humanoids or five steeds for 24 hours. The food is bland but nourishing, and spoils if uneaten after 24 hours. The water is clean and doesn't go bad.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_create-or-destroy-water", + "fields": { + "name": "Create or Destroy Water", + "desc": "You either create or destroy water.\n\n**Create Water.** You create up to 10 gallons of clean water within range in an open container. Alternatively, the water falls as rain in a 30-foot cube within range\n\n **Destroy Water.** You destroy up to 10 gallons of water in an open container within range. Alternatively, you destroy fog in a 30-foot cube within range.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you create or destroy 10 additional gallons of water, or the size of the cube increases by 5 feet, for each slot level above 1st.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of water if creating water, or a few grains of sand if destroying it.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 30, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_create-undead", + "fields": { + "name": "Create Undead", + "desc": "You can cast this spell only at night. Choose up to three corpses of Medium or Small humanoids within range. Each corpse becomes a ghoul under your control. (The DM has game statistics for these creatures.) As a bonus action on each of your turns, you can mentally command any creature you animated with this spell if the creature is within 120 feet of you (if you control multiple creatures, you can command any or all of them at the same time, issuing the same command to each one). You decide what action the creature will take and where it will move during its next turn, or you can issue a general command, such as to guard a particular chamber or corridor. If you issue no commands, the creature only defends itself against hostile creatures. Once given an order, the creature continues to follow it until its task is complete. The creature is under your control for 24 hours, after which it stops obeying any command you have given it. To maintain control of the creature for another 24 hours, you must cast this spell on the creature before the current 24-hour period ends. This use of the spell reasserts your control over up to three creatures you have animated with this spell, rather than animating new ones.", + "document": "srd", + "level": 6, + "school": "necromancy", + "higher_level": "When you cast this spell using a 7th-level spell slot, you can animate or reassert control over four ghouls. When you cast this spell using an 8th-level spell slot, you can animate or reassert control over five ghouls or two ghasts or wights. When you cast this spell using a 9th-level spell slot, you can animate or reassert control over six ghouls, three ghasts or wights, or two mummies.", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "One clay pot filled with grave dirt, one clay pot filled with brackish water, and one 150 gp black onyx stone for each corpse.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_creation", + "fields": { + "name": "Creation", + "desc": "You pull wisps of shadow material from the Shadowfell to create a nonliving object of vegetable matter within 'range': soft goods, rope, wood, or something similar. You can also use this spell to create mineral objects such as stone, crystal, or metal. The object created must be no larger than a 5-foot cube, and the object must be of a form and material that you have seen before. The duration depends on the object's material. If the object is composed of multiple materials, use the shortest duration\n\n **Vegetable matter** 1 day **Stone or crystal** 12 hours **Precious metals** 1 hour **Gems** 10 minutes **Adamantine or mithral** 1 minute Using any material created by this spell as another spell's material component causes that spell to fail.", + "document": "srd", + "level": 5, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the cube increases by 5 feet for each slot level above 5th.", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny piece of matter of the same type of the item you plan to create.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "special", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_cure-wounds", + "fields": { + "name": "Cure Wounds", + "desc": "A creature you touch regains a number of hit points equal to 1d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_dancing-lights", + "fields": { + "name": "Dancing Lights", + "desc": "You create up to four torch-sized lights within range, making them appear as torches, lanterns, or glowing orbs that hover in the air for the duration. You can also combine the four lights into one glowing vaguely humanoid form of Medium size. Whichever form you choose, each light sheds dim light in a 10-foot radius. As a bonus action on your turn, you can move the lights up to 60 feet to a new spot within range. A light must be within 20 feet of another light created by this spell, and a light winks out if it exceeds the spell's range.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of phosphorus or wychwood, or a glowworm.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_darkness", + "fields": { + "name": "Darkness", + "desc": "Magical darkness spreads from a point you choose within range to fill a 15-foot-radius sphere for the duration. The darkness spreads around corners. A creature with darkvision can't see through this darkness, and nonmagical light can't illuminate it. If the point you choose is on an object you are holding or one that isn't being worn or carried, the darkness emanates from the object and moves with it. Completely covering the source of the darkness with an opaque object, such as a bowl or a helm, blocks the darkness. If any of this spell's area overlaps with an area of light created by a spell of 2nd level or lower, the spell that created the light is dispelled.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "Bat fur and a drop of pitch or piece of coal.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 15, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_darkvision", + "fields": { + "name": "Darkvision", + "desc": "You touch a willing creature to grant it the ability to see in the dark. For the duration, that creature has darkvision out to a range of 60 feet.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Either a pinch of dried carrot or an agate.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_daylight", + "fields": { + "name": "Daylight", + "desc": "A 60-foot-radius sphere of light spreads out from a point you choose within range. The sphere is bright light and sheds dim light for an additional 60 feet. If you chose a point on an object you are holding or one that isn't being worn or carried, the light shines from the object and moves with it. Completely covering the affected object with an opaque object, such as a bowl or a helm, blocks the light. If any of this spell's area overlaps with an area of darkness created by a spell of 3rd level or lower, the spell that created the darkness is dispelled.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": "sphere", + "shape_magnitude": 60, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_death-ward", + "fields": { + "name": "Death Ward", + "desc": "You touch a creature and grant it a measure of protection from death. The first time the target would drop to 0 hit points as a result of taking damage, the target instead drops to 1 hit point, and the spell ends. If the spell is still in effect when the target is subjected to an effect that would kill it instantaneously without dealing damage, that effect is instead negated against the target, and the spell ends.", + "document": "srd", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_delayed-blast-fireball", + "fields": { + "name": "Delayed Blast Fireball", + "desc": "A beam of yellow light flashes from your pointing finger, then condenses to linger at a chosen point within range as a glowing bead for the duration. When the spell ends, either because your concentration is broken or because you decide to end it, the bead blossoms with a low roar into an explosion of flame that spreads around corners. Each creature in a 20-foot-radius sphere centered on that point must make a dexterity saving throw. A creature takes fire damage equal to the total accumulated damage on a failed save, or half as much damage on a successful one. The spell's base damage is 12d6. If at the end of your turn the bead has not yet detonated, the damage increases by 1d6. If the glowing bead is touched before the interval has expired, the creature touching it must make a dexterity saving throw. On a failed save, the spell ends immediately, causing the bead to erupt in flame. On a successful save, the creature can throw the bead up to 40 feet. When it strikes a creature or a solid object, the spell ends, and the bead explodes. The fire damages objects in the area and ignites flammable objects that aren't being worn or carried.", + "document": "srd", + "level": 7, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, the base damage increases by 1d6 for each slot level above 7th.", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny ball of bat guano and sulfur.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_demiplane", + "fields": { + "name": "Demiplane", + "desc": "You create a shadowy door on a flat solid surface that you can see within range. The door is large enough to allow Medium creatures to pass through unhindered. When opened, the door leads to a demiplane that appears to be an empty room 30 feet in each dimension, made of wood or stone. When the spell ends, the door disappears, and any creatures or objects inside the demiplane remain trapped there, as the door also disappears from the other side. Each time you cast this spell, you can create a new demiplane, or have the shadowy door connect to a demiplane you created with a previous casting of this spell. Additionally, if you know the nature and contents of a demiplane created by a casting of this spell by another creature, you can have the shadowy door connect to its demiplane instead.", + "document": "srd", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_detect-evil-and-good", + "fields": { + "name": "Detect Evil and Good", + "desc": "For the duration, you know if there is an aberration, celestial, elemental, fey, fiend, or undead within 30 feet of you, as well as where the creature is located. Similarly, you know if there is a place or object within 30 feet of you that has been magically consecrated or desecrated. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_detect-magic", + "fields": { + "name": "Detect Magic", + "desc": "For the duration, you sense the presence of magic within 30 feet of you. If you sense magic in this way, you can use your action to see a faint aura around any visible creature or object in the area that bears magic, and you learn its school of magic, if any. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_detect-poison-and-disease", + "fields": { + "name": "Detect Poison and Disease", + "desc": "For the duration, you can sense the presence and location of poisons, poisonous creatures, and diseases within 30 feet of you. You also identify the kind of poison, poisonous creature, or disease in each case. The spell can penetrate most barriers, but it is blocked by 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood or dirt.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A yew leaf.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_detect-thoughts", + "fields": { + "name": "Detect Thoughts", + "desc": "For the duration, you can read the thoughts of certain creatures. When you cast the spell and as your action on each turn until the spell ends, you can focus your mind on any one creature that you can see within 30 feet of you. If the creature you choose has an Intelligence of 3 or lower or doesn't speak any language, the creature is unaffected. You initially learn the surface thoughts of the creature-what is most on its mind in that moment. As an action, you can either shift your attention to another creature's thoughts or attempt to probe deeper into the same creature's mind. If you probe deeper, the target must make a Wisdom saving throw. If it fails, you gain insight into its reasoning (if any), its emotional state, and something that looms large in its mind (such as something it worries over, loves, or hates). If it succeeds, the spell ends. Either way, the target knows that you are probing into its mind, and unless you shift your attention to another creature's thoughts, the creature can use its action on its turn to make an Intelligence check contested by your Intelligence check; if it succeeds, the spell ends. Questions verbally directed at the target creature naturally shape the course of its thoughts, so this spell is particularly effective as part of an interrogation. You can also use this spell to detect the presence of thinking creatures you can't see. When you cast the spell or as your action during the duration, you can search for thoughts within 30 feet of you. The spell can penetrate barriers, but 2 feet of rock, 2 inches of any metal other than lead, or a thin sheet of lead blocks you. You can't detect a creature with an Intelligence of 3 or lower or one that doesn't speak any language. Once you detect the presence of a creature in this way, you can read its thoughts for the rest of the duration as described above, even if you can't see it, but it must still be within range.", + "document": "srd", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A copper coin.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_dimension-door", + "fields": { + "name": "Dimension Door", + "desc": "You teleport yourself from your current location to any other spot within range. You arrive at exactly the spot desired. It can be a place you can see, one you can visualize, or one you can describe by stating distance and direction, such as \"200 feet straight downward\" or \"upward to the northwest at a 45-degree angle, 300 feet.\" You can bring along objects as long as their weight doesn't exceed what you can carry. You can also bring one willing creature of your size or smaller who is carrying gear up to its carrying capacity. The creature must be within 5 feet of you when you cast this spell. If you would arrive in a place already occupied by an object or a creature, you and any creature traveling with you each take 4d6 force damage, and the spell fails to teleport you.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "500 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_disguise-self", + "fields": { + "name": "Disguise Self", + "desc": "You make yourself - including your clothing, armor, weapons, and other belongings on your person - look different until the spell ends or until you use your action to dismiss it. You can seem 1 foot shorter or taller and can appear thin, fat, or in between. You can't change your body type, so you must adopt a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you. The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to your outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel your head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair. To discern that you are disguised, a creature can use its action to inspect your apperance and must succeed on an Intelligence (Investigation) check against your spell save DC.", + "document": "srd", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_disintegrate", + "fields": { + "name": "Disintegrate", + "desc": "A thin green ray springs from your pointing finger to a target that you can see within range. The target can be a creature, an object, or a creation of magical force, such as the wall created by wall of force. A creature targeted by this spell must make a dexterity saving throw. On a failed save, the target takes 10d6 + 40 force damage. If this damage reduces the target to 0 hit points, it is disintegrated. A disintegrated creature and everything it is wearing and carrying, except magic items, are reduced to a pile of fine gray dust. The creature can be restored to life only by means of a true resurrection or a wish spell. This spell automatically disintegrates a Large or smaller nonmagical object or a creation of magical force. If the target is a Huge or larger object or creation of force, this spell disintegrates a 10-foot-cube portion of it. A magic item is unaffected by this spell.", + "document": "srd", + "level": 6, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 3d6 for each slot level above 6th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A lodestone and a pinch of dust.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "10d6+40", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_dispel-evil-and-good", + "fields": { + "name": "Dispel Evil and Good", + "desc": "Shimmering energy surrounds and protects you from fey, undead, and creatures originating from beyond the Material Plane. For the duration, celestials, elementals, fey, fiends, and undead have disadvantage on attack rolls against you. You can end the spell early by using either of the following special functions.\n\n**Break Enchantment.** As your action, you touch a creature you can reach that is charmed, frightened, or possessed by a celestial, an elemental, a fey, a fiend, or an undead. The creature you touch is no longer charmed, frightened, or possessed by such creatures.\n\n**Dismissal.** As your action, make a melee spell attack against a celestial, an elemental, a fey, a fiend, or an undead you can reach. On a hit, you attempt to drive the creature back to its home plane. The creature must succeed on a charisma saving throw or be sent back to its home plane (if it isn't there already). If they aren't on their home plane, undead are sent to the Shadowfell, and fey are sent to the Feywild.", + "document": "srd", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Holy water or powdered silver and iron.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_dispel-magic", + "fields": { + "name": "Dispel Magic", + "desc": "Choose one creature, object, or magical effect within range. Any spell of 3rd level or lower on the target ends. For each spell of 4th level or higher on the target, make an ability check using your spellcasting ability. The DC equals 10 + the spell's level. On a successful check, the spell ends.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you automatically end the effects of a spell on the target if the spell's level is equal to or less than the level of the spell slot you used.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_divination", + "fields": { + "name": "Divination", + "desc": "Your magic and an offering put you in contact with a god or a god's servants. You ask a single question concerning a specific goal, event, or activity to occur within 7 days. The DM offers a truthful reply. The reply might be a short phrase, a cryptic rhyme, or an omen. The spell doesn't take into account any possible circumstances that might change the outcome, such as the casting of additional spells or the loss or gain of a companion. If you cast the spell two or more times before finishing your next long rest, there is a cumulative 25 percent chance for each casting after the first that you get a random reading. The DM makes this roll in secret.", + "document": "srd", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Incense and a sacrificial offering appropriate to your religion, together worth at least 25gp, which the spell consumes.", + "material_cost": "25.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_divine-favor", + "fields": { + "name": "Divine Favor", + "desc": "Your prayer empowers you with divine radiance. Until the spell ends, your weapon attacks deal an extra 1d4 radiant damage on a hit.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_divine-word", + "fields": { + "name": "Divine Word", + "desc": "You utter a divine word, imbued with the power that shaped the world at the dawn of creation. Choose any number of creatures you can see within range. Each creature that can hear you must make a Charisma saving throw. On a failed save, a creature suffers an effect based on its current hit points: \n- 50hp or less: deafened for 1 minute \n- 40 hp or less: deafened and blinded for 10 minutes \n- 30 hp or less: blinded, deafened and dazed for 1 hour \n- 20 hp or less: killed instantly. Regardless of its current hit points, a celestial, an elemental, a fey, or a fiend that fails its save is forced back to its plane of origin (if it isn't there already) and can't return to your current plane for 24 hours by any means short of a wish spell.", + "document": "srd", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_dominate-beast", + "fields": { + "name": "Dominate Beast", + "desc": "You attempt to beguile a beast that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the beast is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", + "document": "srd", + "level": 4, + "school": "enchantment", + "higher_level": "When you cast this spell with a 5th-­level spell slot, the duration is concentration, up to 10 minutes. When you use a 6th-­level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 7th level or higher, the duration is concentration, up to 8 hours.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_dominate-monster", + "fields": { + "name": "Dominate Monster", + "desc": "You attempt to beguile a creature that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the creature is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time, you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", + "document": "srd", + "level": 8, + "school": "enchantment", + "higher_level": "When you cast this spell with a 9th-level spell slot, the duration is concentration, up to 8 hours.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_dominate-person", + "fields": { + "name": "Dominate Person", + "desc": "You attempt to beguile a humanoid that you can see within range. It must succeed on a wisdom saving throw or be charmed by you for the duration. If you or creatures that are friendly to you are fighting it, it has advantage on the saving throw. While the target is charmed, you have a telepathic link with it as long as the two of you are on the same plane of existence. You can use this telepathic link to issue commands to the creature while you are conscious (no action required), which it does its best to obey. You can specify a simple and general course of action, such as \"Attack that creature,\" \"Run over there,\" or \"Fetch that object.\" If the creature completes the order and doesn't receive further direction from you, it defends and preserves itself to the best of its ability. You can use your action to take total and precise control of the target. Until the end of your next turn, the creature takes only the actions you choose, and doesn't do anything that you don't allow it to do. During this time you can also cause the creature to use a reaction, but this requires you to use your own reaction as well. Each time the target takes damage, it makes a new wisdom saving throw against the spell. If the saving throw succeeds, the spell ends.", + "document": "srd", + "level": 5, + "school": "enchantment", + "higher_level": "When you cast this spell using a 6th-level spell slot, the duration is concentration, up to 10 minutes. When you use a 7th-level spell slot, the duration is concentration, up to 1 hour. When you use a spell slot of 8th level or higher, the duration is concentration, up to 8 hours.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_dream", + "fields": { + "name": "Dream", + "desc": "This spell shapes a creature's dreams. Choose a creature known to you as the target of this spell. The target must be on the same plane of existence as you. Creatures that don't sleep, such as elves, can't be contacted by this spell. You, or a willing creature you touch, enters a trance state, acting as a messenger. While in the trance, the messenger is aware of his or her surroundings, but can't take actions or move. If the target is asleep, the messenger appears in the target's dreams and can converse with the target as long as it remains asleep, through the duration of the spell. The messenger can also shape the environment of the dream, creating landscapes, objects, and other images. The messenger can emerge from the trance at any time, ending the effect of the spell early. The target recalls the dream perfectly upon waking. If the target is awake when you cast the spell, the messenger knows it, and can either end the trance (and the spell) or wait for the target to fall asleep, at which point the messenger appears in the target's dreams. You can make the messenger appear monstrous and terrifying to the target. If you do, the messenger can deliver a message of no more than ten words and then the target must make a wisdom saving throw. On a failed save, echoes of the phantasmal monstrosity spawn a nightmare that lasts the duration of the target's sleep and prevents the target from gaining any benefit from that rest. In addition, when the target wakes up, it takes 3d6 psychic damage. If you have a body part, lock of hair, clipping from a nail, or similar portion of the target's body, the target makes its saving throw with disadvantage.", + "document": "srd", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Special", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A handful of sand, a dab of ink, and a writing quill plucked from a sleeping bird.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "3d6", + "damage_types": [ + "psychic" + ], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_druidcraft", + "fields": { + "name": "Druidcraft", + "desc": "Whispering to the spirits of nature, you create one of the following effects within range: \n- You create a tiny, harmless sensory effect that predicts what the weather will be at your location for the next 24 hours. The effect might manifest as a golden orb for clear skies, a cloud for rain, falling snowflakes for snow, and so on. This effect persists for 1 round. \n- You instantly make a flower blossom, a seed pod open, or a leaf bud bloom. \n- You create an instantaneous, harmless sensory effect, such as falling leaves, a puff of wind, the sound of a small animal, or the faint odor of skunk. The effect must fit in a 5-­--foot cube. \n- You instantly light or snuff out a candle, a torch, or a small campfire.", + "document": "srd", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_earthquake", + "fields": { + "name": "Earthquake", + "desc": "You create a seismic disturbance at a point on the ground that you can see within range. For the duration, an intense tremor rips through the ground in a 100-foot-radius circle centered on that point and shakes creatures and structures in contact with the ground in that area. The ground in the area becomes difficult terrain. Each creature on the ground that is concentrating must make a constitution saving throw. On a failed save, the creature's concentration is broken. When you cast this spell and at the end of each turn you spend concentrating on it, each creature on the ground in the area must make a dexterity saving throw. On a failed save, the creature is knocked prone. This spell can have additional effects depending on the terrain in the area, as determined by the DM. \n\n**Fissures.** Fissures open throughout the spell's area at the start of your next turn after you cast the spell. A total of 1d6 such fissures open in locations chosen by the DM. Each is 1d10 × 10 feet deep, 10 feet wide, and extends from one edge of the spell's area to the opposite side. A creature standing on a spot where a fissure opens must succeed on a dexterity saving throw or fall in. A creature that successfully saves moves with the fissure's edge as it opens. A fissure that opens beneath a structure causes it to automatically collapse (see below). \n\n**Structures.** The tremor deals 50 bludgeoning damage to any structure in contact with the ground in the area when you cast the spell and at the start of each of your turns until the spell ends. If a structure drops to 0 hit points, it collapses and potentially damages nearby creatures. A creature within half the distance of a structure's height must make a dexterity saving throw. On a failed save, the creature takes 5d6 bludgeoning damage, is knocked prone, and is buried in the rubble, requiring a DC 20 Strength (Athletics) check as an action to escape. The DM can adjust the DC higher or lower, depending on the nature of the rubble. On a successful save, the creature takes half as much damage and doesn't fall prone or become buried.", + "document": "srd", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "500 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of dirt, a piece of rock, and a lump of clay.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "5d6", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_eldritch-blast", + "fields": { + "name": "Eldritch Blast", + "desc": "A beam of crackling energy streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 force damage. The spell creates more than one beam when you reach higher levels: two beams at 5th level, three beams at 11th level, and four beams at 17th level. You can direct the beams at the same target or at different ones. Make a separate attack roll for each beam.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d10", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_enhance-ability", + "fields": { + "name": "Enhance Ability", + "desc": "You touch a creature and bestow upon it a magical enhancement. Choose one of the following effects; the target gains that effect until the spell ends.\n\n**Bear's Endurance.** The target has advantage on constitution checks. It also gains 2d6 temporary hit points, which are lost when the spell ends.\n\n**Bull's Strength.** The target has advantage on strength checks, and his or her carrying capacity doubles.\n\n**Cat's Grace.** The target has advantage on dexterity checks. It also doesn't take damage from falling 20 feet or less if it isn't incapacitated.\n\n**Eagle's Splendor.** The target has advantage on Charisma checks\n\n **Fox's Cunning.** The target has advantage on intelligence checks.\n\n**Owl's Wisdom.** The target has advantage on wisdom checks.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Fur or a feather from a beast.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_enlargereduce", + "fields": { + "name": "Enlarge/Reduce", + "desc": "You cause a creature or an object you can see within range to grow larger or smaller for the duration. Choose either a creature or an object that is neither worn nor carried. If the target is unwilling, it can make a Constitution saving throw. On a success, the spell has no effect. If the target is a creature, everything it is wearing and carrying changes size with it. Any item dropped by an affected creature returns to normal size at once. \n\n**Enlarge.** The target's size doubles in all dimensions, and its weight is multiplied by eight. This growth increases its size by one category-from Medium to Large, for example. If there isn't enough room for the target to double its size, the creature or object attains the maximum possible size in the space available. Until the spell ends, the target also has advantage on Strength checks and Strength saving throws. The target's weapons also grow to match its new size. While these weapons are enlarged, the target's attacks with them deal 1d4 extra damage. \n\n**Reduce.** The target's size is halved in all dimensions, and its weight is reduced to one-­eighth of normal. This reduction decreases its size by one category-from Medium to Small, for example. Until the spell ends, the target also has disadvantage on Strength checks and Strength saving throws. The target's weapons also shrink to match its new size. While these weapons are reduced, the target's attacks with them deal 1d4 less damage (this can't reduce the damage below 1).", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch iron powder.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_entangle", + "fields": { + "name": "Entangle", + "desc": "Grasping weeds and vines sprout from the ground in a 20-foot square starting form a point within range. For the duration, these plants turn the ground in the area into difficult terrain. A creature in the area when you cast the spell must succeed on a strength saving throw or be restrained by the entangling plants until the spell ends. A creature restrained by the plants can use its action to make a Strength check against your spell save DC. On a success, it frees itself. When the spell ends, the conjured plants wilt away.", + "document": "srd", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_enthrall", + "fields": { + "name": "Enthrall", + "desc": "You weave a distracting string of words, causing creatures of your choice that you can see within range and that can hear you to make a wisdom saving throw. Any creature that can't be charmed succeeds on this saving throw automatically, and if you or your companions are fighting a creature, it has advantage on the save. On a failed save, the target has disadvantage on Wisdom (Perception) checks made to perceive any creature other than you until the spell ends or until the target can no longer hear you. The spell ends if you are incapacitated or can no longer speak.", + "document": "srd", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_etherealness", + "fields": { + "name": "Etherealness", + "desc": "You step into the border regions of the Ethereal Plane, in the area where it overlaps with your current plane. You remain in the Border Ethereal for the duration or until you use your action to dismiss the spell. During this time, you can move in any direction. If you move up or down, every foot of movement costs an extra foot. You can see and hear the plane you originated from, but everything there looks gray, and you can't see anything more than 60 feet away. While on the Ethereal Plane, you can only affect and be affected by other creatures on that plane. Creatures that aren't on the Ethereal Plane can't perceive you and can't interact with you, unless a special ability or magic has given them the ability to do so. You ignore all objects and effects that aren't on the Ethereal Plane, allowing you to move through objects you perceive on the plane you originated from. When the spell ends, you immediately return to the plane you originated from in the spot you currently occupy. If you occupy the same spot as a solid object or creature when this happens, you are immediately shunted to the nearest unoccupied space that you can occupy and take force damage equal to twice the number of feet you are moved. This spell has no effect if you cast it while you are on the Ethereal Plane or a plane that doesn't border it, such as one of the Outer Planes.", + "document": "srd", + "level": 7, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 8th level or higher, you can target up to three willing creatures (including you) for each slot level above 7th. The creatures must be within 10 feet of you when you cast the spell.", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_expeditious-retreat", + "fields": { + "name": "Expeditious Retreat", + "desc": "This spell allows you to move at an incredible pace. When you cast this spell, and then as a bonus action on each of your turns until the spell ends, you can take the Dash action.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_eyebite", + "fields": { + "name": "Eyebite", + "desc": "For the spell's duration, your eyes become an inky void imbued with dread power. One creature of your choice within 60 feet of you that you can see must succeed on a wisdom saving throw or be affected by one of the following effects of your choice for the duration. On each of your turns until the spell ends, you can use your action to target another creature but can't target a creature again if it has succeeded on a saving throw against this casting of eyebite.\n\n**Asleep.** The target falls unconscious. It wakes up if it takes any damage or if another creature uses its action to shake the sleeper awake.\n\n**Panicked.** The target is frightened of you. On each of its turns, the frightened creature must take the Dash action and move away from you by the safest and shortest available route, unless there is nowhere to move. If the target moves to a place at least 60 feet away from you where it can no longer see you, this effect ends\n\n **Sickened.** The target has disadvantage on attack rolls and ability checks. At the end of each of its turns, it can make another wisdom saving throw. If it succeeds, the effect ends.", + "document": "srd", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_fabricate", + "fields": { + "name": "Fabricate", + "desc": "You convert raw materials into products of the same material. For example, you can fabricate a wooden bridge from a clump of trees, a rope from a patch of hemp, and clothes from flax or wool. Choose raw materials that you can see within range. You can fabricate a Large or smaller object (contained within a 10-foot cube, or eight connected 5-foot cubes), given a sufficient quantity of raw material. If you are working with metal, stone, or another mineral substance, however, the fabricated object can be no larger than Medium (contained within a single 5-foot cube). The quality of objects made by the spell is commensurate with the quality of the raw materials. Creatures or magic items can't be created or transmuted by this spell. You also can't use it to create items that ordinarily require a high degree of craftsmanship, such as jewelry, weapons, glass, or armor, unless you have proficiency with the type of artisan's tools used to craft such objects.", + "document": "srd", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_faerie-fire", + "fields": { + "name": "Faerie Fire", + "desc": "Each object in a 20-foot cube within range is outlined in blue, green, or violet light (your choice). Any creature in the area when the spell is cast is also outlined in light if it fails a dexterity saving throw. For the duration, objects and affected creatures shed dim light in a 10-foot radius. Any attack roll against an affected creature or object has advantage if the attacker can see it, and the affected creature or object can't benefit from being invisible.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_faithful-hound", + "fields": { + "name": "Faithful Hound", + "desc": "You conjure a phantom watchdog in an unoccupied space that you can see within range, where it remains for the duration, until you dismiss it as an action, or until you move more than 100 feet away from it. The hound is invisible to all creatures except you and can't be harmed. When a Small or larger creature comes within 30 feet of it without first speaking the password that you specify when you cast this spell, the hound starts barking loudly. The hound sees invisible creatures and can see into the Ethereal Plane. It ignores illusions. At the start of each of your turns, the hound attempts to bite one creature within 5 feet of it that is hostile to you. The hound's attack bonus is equal to your spellcasting ability modifier + your proficiency bonus. On a hit, it deals 4d8 piercing damage.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny silver whistle, a piece of bone, and a thread", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_false-life", + "fields": { + "name": "False Life", + "desc": "Bolstering yourself with a necromantic facsimile of life, you gain 1d4 + 4 temporary hit points for the duration.", + "document": "srd", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you gain 5 additional temporary hit points for each slot level above 1st.", + "target_type": "point", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small amount of alcohol or distilled spirits.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_fear", + "fields": { + "name": "Fear", + "desc": "You project a phantasmal image of a creature's worst fears. Each creature in a 30-foot cone must succeed on a wisdom saving throw or drop whatever it is holding and become frightened for the duration. While frightened by this spell, a creature must take the Dash action and move away from you by the safest available route on each of its turns, unless there is nowhere to move. If the creature ends its turn in a location where it doesn't have line of sight to you, the creature can make a wisdom saving throw. On a successful save, the spell ends for that creature.", + "document": "srd", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A white feather or the heart of a hen.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cone", + "shape_magnitude": 30, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_feather-fall", + "fields": { + "name": "Feather Fall", + "desc": "Choose up to five falling creatures within range. A falling creature's rate of descent slows to 60 feet per round until the spell ends. If the creature lands before the spell ends, it takes no falling damage and can land on its feet, and the spell ends for that creature.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "A small feather or a piece of down.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_feeblemind", + "fields": { + "name": "Feeblemind", + "desc": "You blast the mind of a creature that you can see within range, attempting to shatter its intellect and personality. The target takes 4d6 psychic damage and must make an intelligence saving throw. On a failed save, the creature's Intelligence and Charisma scores become 1. The creature can't cast spells, activate magic items, understand language, or communicate in any intelligible way. The creature can, however, identify its friends, follow them, and even protect them. At the end of every 30 days, the creature can repeat its saving throw against this spell. If it succeeds on its saving throw, the spell ends. The spell can also be ended by greater restoration, heal, or wish.", + "document": "srd", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A handful of clay, crystal, glass, or mineral spheres.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "psychic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_find-familiar", + "fields": { + "name": "Find Familiar", + "desc": "You gain the service of a familiar, a spirit that takes an animal form you choose: bat, cat, crab, frog (toad), hawk, lizard, octopus, owl, poisonous snake, fish (quipper), rat, raven, sea horse, spider, or weasel. Appearing in an unoccupied space within range, the familiar has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of a beast. Your familiar acts independently of you, but it always obeys your commands. In combat, it rolls its own initiative and acts on its own turn. A familiar can't attack, but it can take other actions as normal. When the familiar drops to 0 hit points, it disappears, leaving behind no physical form. It reappears after you cast this spell again. While your familiar is within 100 feet of you, you can communicate with it telepathically. Additionally, as an action, you can see through your familiar's eyes and hear what it hears until the start of your next turn, gaining the benefits of any special senses that the familiar has. During this time, you are deaf and blind with regard to your own senses. As an action, you can temporarily dismiss your familiar. It disappears into a pocket dimension where it awaits your summons. Alternatively, you can dismiss it forever. As an action while it is temporarily dismissed, you can cause it to reappear in any unoccupied space within 30 feet of you. You can't have more than one familiar at a time. If you cast this spell while you already have a familiar, you instead cause it to adopt a new form. Choose one of the forms from the above list. Your familiar transforms into the chosen creature. Finally, when you cast a spell with a range of touch, your familiar can deliver the spell as if it had cast the spell. Your familiar must be within 100 feet of you, and it must use its reaction to deliver the spell when you cast it. If the spell requires an attack roll, you use your attack modifier for the roll.", + "document": "srd", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "10 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "10 gp worth of charcoal, incense, and herbs that must be consumed by fire in a brass brazier", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_find-steed", + "fields": { + "name": "Find Steed", + "desc": "You summon a spirit that assumes the form of an unusually intelligent, strong, and loyal steed, creating a long-lasting bond with it. Appearing in an unoccupied space within range, the steed takes on a form that you choose, such as a warhorse, a pony, a camel, an elk, or a mastiff. (Your DM might allow other animals to be summoned as steeds.) The steed has the statistics of the chosen form, though it is a celestial, fey, or fiend (your choice) instead of its normal type. Additionally, if your steed has an Intelligence of 5 or less, its Intelligence becomes 6, and it gains the ability to understand one language of your choice that you speak. Your steed serves you as a mount, both in combat and out, and you have an instinctive bond with it that allows you to fight as a seamless unit. While mounted on your steed, you can make any spell you cast that targets only you also target your steed. When the steed drops to 0 hit points, it disappears, leaving behind no physical form. You can also dismiss your steed at any time as an action, causing it to disappear. In either case, casting this spell again summons the same steed, restored to its hit point maximum. While your steed is within 1 mile of you, you can communicate with it telepathically. You can't have more than one steed bonded by this spell at a time. As an action, you can release the steed from its bond at any time, causing it to disappear.", + "document": "srd", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_find-the-path", + "fields": { + "name": "Find the Path", + "desc": "This spell allows you to find the shortest, most direct physical route to a specific fixed location that you are familiar with on the same plane of existence. If you name a destination on another plane of existence, a destination that moves (such as a mobile fortress), or a destination that isn't specific (such as \"a green dragon's lair\"), the spell fails. For the duration, as long as you are on the same plane of existence as the destination, you know how far it is and in what direction it lies. While you are traveling there, whenever you are presented with a choice of paths along the way, you automatically determine which path is the shortest and most direct route (but not necessarily the safest route) to the destination.", + "document": "srd", + "level": 6, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A set of divinatory tools-such as bones, ivory sticks, cards, teeth, or carved runes-worth 100gp and an object from the location you wish to find.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_find-traps", + "fields": { + "name": "Find Traps", + "desc": "You sense the presence of any trap within range that is within line of sight. A trap, for the purpose of this spell, includes anything that would inflict a sudden or unexpected effect you consider harmful or undesirable, which was specifically intended as such by its creator. Thus, the spell would sense an area affected by the alarm spell, a glyph of warding, or a mechanical pit trap, but it would not reveal a natural weakness in the floor, an unstable ceiling, or a hidden sinkhole. This spell merely reveals that a trap is present. You don't learn the location of each trap, but you do learn the general nature of the danger posed by a trap you sense.", + "document": "srd", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_finger-of-death", + "fields": { + "name": "Finger of Death", + "desc": "You send negative energy coursing through a creature that you can see within range, causing it searing pain. The target must make a constitution saving throw. It takes 7d8 + 30 necrotic damage on a failed save, or half as much damage on a successful one. A humanoid killed by this spell rises at the start of your next turn as a zombie that is permanently under your command, following your verbal orders to the best of its ability.", + "document": "srd", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "7d8+30", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_fire-bolt", + "fields": { + "name": "Fire Bolt", + "desc": "You hurl a mote of fire at a creature or object within range. Make a ranged spell attack against the target. On a hit, the target takes 1d10 fire damage. A flammable object hit by this spell ignites if it isn't being worn or carried.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "This spell's damage increases by 1d10 when you reach 5th level (2d10), 11th level (3d10), and 17th level (4d10).", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d10", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_fire-shield", + "fields": { + "name": "Fire Shield", + "desc": "Thin and vaporous flame surround your body for the duration of the spell, radiating a bright light bright light in a 10-foot radius and dim light for an additional 10 feet. You can end the spell using an action to make it disappear. The flames are around you a heat shield or cold, your choice. The heat shield gives you cold damage resistance and the cold resistance to fire damage. In addition, whenever a creature within 5 feet of you hits you with a melee attack, flames spring from the shield. The attacker then suffers 2d8 points of fire damage or cold, depending on the model.", + "document": "srd", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A little phosphorus or a firefly.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_fire-storm", + "fields": { + "name": "Fire Storm", + "desc": "A storm made up of sheets of roaring flame appears in a location you choose within range. The area of the storm consists of up to ten 10-foot cubes, which you can arrange as you wish. Each cube must have at least one face adjacent to the face of another cube. Each creature in the area must make a dexterity saving throw. It takes 7d10 fire damage on a failed save, or half as much damage on a successful one. The fire damages objects in the area and ignites flammable objects that aren't being worn or carried. If you choose, plant life in the area is unaffected by this spell.", + "document": "srd", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "7d10", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_fireball", + "fields": { + "name": "Fireball", + "desc": "A bright streak flashes from your pointing finger to a point you choose within range and then blossoms with a low roar into an explosion of flame. Each creature in a 20-foot-radius sphere centered on that point must make a dexterity saving throw. A target takes 8d6 fire damage on a failed save, or half as much damage on a successful one. The fire spreads around corners. It ignites flammable objects in the area that aren't being worn or carried.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny ball of bat guano and sulfur.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_flame-blade", + "fields": { + "name": "Flame Blade", + "desc": "You evoke a fiery blade in your free hand. The blade is similar in size and shape to a scimitar, and it lasts for the duration. If you let go of the blade, it disappears, but you can evoke the blade again as a bonus action. You can use your action to make a melee spell attack with the fiery blade. On a hit, the target takes 3d6 fire damage. The flaming blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for every two slot levels above 2nd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Leaf of sumac.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "3d6", + "damage_types": [ + "fire" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_flame-strike", + "fields": { + "name": "Flame Strike", + "desc": "A vertical column of divine fire roars down from the heavens in a location you specify. Each creature in a 10-foot-radius, 40-foot-high cylinder centered on a point within range must make a dexterity saving throw. A creature takes 4d6 fire damage and 4d6 radiant damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "level": 5, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the fire damage or the radiant damage (your choice) increases by 1d6 for each slot level above 5th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Pinch of sulfur.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "4d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_flaming-sphere", + "fields": { + "name": "Flaming Sphere", + "desc": "A 5-foot-diameter sphere of fire appears in an unoccupied space of your choice within range and lasts for the duration. Any creature that ends its turn within 5 feet of the sphere must make a dexterity saving throw. The creature takes 2d6 fire damage on a failed save, or half as much damage on a successful one. As a bonus action, you can move the sphere up to 30 feet. If you ram the sphere into a creature, that creature must make the saving throw against the sphere's damage, and the sphere stops moving this turn. When you move the sphere, you can direct it over barriers up to 5 feet tall and jump it across pits up to 10 feet wide. The sphere ignites flammable objects not being worn or carried, and it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", + "document": "srd", + "level": 2, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d6 for each slot level above 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of tallow, a pinch of brimstone, and a dusting of powdered iron.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_flesh-to-stone", + "fields": { + "name": "Flesh to Stone", + "desc": "You attempt to turn one creature that you can see within range into stone. If the target's body is made of flesh, the creature must make a constitution saving throw. On a failed save, it is restrained as its flesh begins to harden. On a successful save, the creature isn't affected. A creature restrained by this spell must make another constitution saving throw at the end of each of its turns. If it successfully saves against this spell three times, the spell ends. If it fails its saves three times, it is turned to stone and subjected to the petrified condition for the duration. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind. If the creature is physically broken while petrified, it suffers from similar deformities if it reverts to its original state. If you maintain your concentration on this spell for the entire possible duration, the creature is turned to stone until the effect is removed.", + "document": "srd", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of lime, water, and earth.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_floating-disk", + "fields": { + "name": "Floating Disk", + "desc": "This spell creates a circular, horizontal plane of force, 3 feet in diameter and 1 inch thick, that floats 3 feet above the ground in an unoccupied space of your choice that you can see within range. The disk remains for the duration, and can hold up to 500 pounds. If more weight is placed on it, the spell ends, and everything on the disk falls to the ground. The disk is immobile while you are within 20 feet of it. If you move more than 20 feet away from it, the disk follows you so that it remains within 20 feet of you. If can move across uneven terrain, up or down stairs, slopes and the like, but it can't cross an elevation change of 10 feet or more. For example, the disk can't move across a 10-foot-deep pit, nor could it leave such a pit if it was created at the bottom. If you move more than 100 feet away from the disk (typically because it can't move around an obstacle to follow you), the spell ends.", + "document": "srd", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of mercury.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_fly", + "fields": { + "name": "Fly", + "desc": "You touch a willing creature. The target gains a flying speed of 60 feet for the duration. When the spell ends, the target falls if it is still aloft, unless it can stop the fall.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, you can target one additional creature for each slot level above 3rd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A wing feather from any bird.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_fog-cloud", + "fields": { + "name": "Fog Cloud", + "desc": "You create a 20-foot-radius sphere of fog centered on a point within range. The sphere spreads around corners, and its area is heavily obscured. It lasts for the duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it.", + "document": "srd", + "level": 1, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the radius of the fog increases by 20 feet for each slot level above 1st.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_forbiddance", + "fields": { + "name": "Forbiddance", + "desc": "You create a ward against magical travel that protects up to 40,000 square feet of floor space to a height of 30 feet above the floor. For the duration, creatures can't teleport into the area or use portals, such as those created by the gate spell, to enter the area. The spell proofs the area against planar travel, and therefore prevents creatures from accessing the area by way of the Astral Plane, Ethereal Plane, Feywild, Shadowfell, or the plane shift spell. In addition, the spell damages types of creatures that you choose when you cast it. Choose one or more of the following: celestials, elementals, fey, fiends, and undead. When a chosen creature enters the spell's area for the first time on a turn or starts its turn there, the creature takes 5d10 radiant or necrotic damage (your choice when you cast this spell). When you cast this spell, you can designate a password. A creature that speaks the password as it enters the area takes no damage from the spell. The spell's area can't overlap with the area of another forbiddance spell. If you cast forbiddance every day for 30 days in the same location, the spell lasts until it is dispelled, and the material components are consumed on the last casting.", + "document": "srd", + "level": 6, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A sprinkling of holy water, rare incense, and powdered ruby worth at least 1,000 gp.", + "material_cost": "1000.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "necrotic", + "radiant" + ], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_forcecage", + "fields": { + "name": "Forcecage", + "desc": "An immobile, invisible, cube-shaped prison composed of magical force springs into existence around an area you choose within range. The prison can be a cage or a solid box, as you choose. A prison in the shape of a cage can be up to 20 feet on a side and is made from 1/2-inch diameter bars spaced 1/2 inch apart. A prison in the shape of a box can be up to 10 feet on a side, creating a solid barrier that prevents any matter from passing through it and blocking any spells cast into or out from the area. When you cast the spell, any creature that is completely inside the cage's area is trapped. Creatures only partially within the area, or those too large to fit inside the area, are pushed away from the center of the area until they are completely outside the area. A creature inside the cage can't leave it by nonmagical means. If the creature tries to use teleportation or interplanar travel to leave the cage, it must first make a charisma saving throw. On a success, the creature can use that magic to exit the cage. On a failure, the creature can't exit the cage and wastes the use of the spell or effect. The cage also extends into the Ethereal Plane, blocking ethereal travel. This spell can't be dispelled by dispel magic.", + "document": "srd", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Ruby dust worth 1,500 gp.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_foresight", + "fields": { + "name": "Foresight", + "desc": "You touch a willing creature and bestow a limited ability to see into the immediate future. For the duration, the target can't be surprised and has advantage on attack rolls, ability checks, and saving throws. Additionally, other creatures have disadvantage on attack rolls against the target for the duration. This spell immediately ends if you cast it again before its duration ends.", + "document": "srd", + "level": 9, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A hummingbird feather.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_freedom-of-movement", + "fields": { + "name": "Freedom of Movement", + "desc": "You touch a willing creature. For the duration, the target's movement is unaffected by difficult terrain, and spells and other magical effects can neither reduce the target's speed nor cause the target to be paralyzed or restrained. The target can also spend 5 feet of movement to automatically escape from nonmagical restraints, such as manacles or a creature that has it grappled. Finally, being underwater imposes no penalties on the target's movement or attacks.", + "document": "srd", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A leather strap, bound around the arm or a similar appendage.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_freezing-sphere", + "fields": { + "name": "Freezing Sphere", + "desc": "A frigid globe of cold energy streaks from your fingertips to a point of your choice within range, where it explodes in a 60-foot-radius sphere. Each creature within the area must make a constitution saving throw. On a failed save, a creature takes 10d6 cold damage. On a successful save, it takes half as much damage. If the globe strikes a body of water or a liquid that is principally water (not including water-based creatures), it freezes the liquid to a depth of 6 inches over an area 30 feet square. This ice lasts for 1 minute. Creatures that were swimming on the surface of frozen water are trapped in the ice. A trapped creature can use an action to make a Strength check against your spell save DC to break free. You can refrain from firing the globe after completing the spell, if you wish. A small globe about the size of a sling stone, cool to the touch, appears in your hand. At any time, you or a creature you give the globe to can throw the globe (to a range of 40 feet) or hurl it with a sling (to the sling's normal range). It shatters on impact, with the same effect as the normal casting of the spell. You can also set the globe down without shattering it. After 1 minute, if the globe hasn't already shattered, it explodes.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage increases by 1d6 for each slot level above 6th.", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small crystal sphere.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 60, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_gaseous-form", + "fields": { + "name": "Gaseous Form", + "desc": "You transform a willing creature you touch, along with everything it's wearing and carrying, into a misty cloud for the duration. The spell ends if the creature drops to 0 hit points. An incorporeal creature isn't affected. While in this form, the target's only method of movement is a flying speed of 10 feet. The target can enter and occupy the space of another creature. The target has resistance to nonmagical damage, and it has advantage on Strength, Dexterity, and constitution saving throws. The target can pass through small holes, narrow openings, and even mere cracks, though it treats liquids as though they were solid surfaces. The target can't fall and remains hovering in the air even when stunned or otherwise incapacitated. While in the form of a misty cloud, the target can't talk or manipulate objects, and any objects it was carrying or holding can't be dropped, used, or otherwise interacted with. The target can't attack or cast spells.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of gauze and a wisp of smoke.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_gate", + "fields": { + "name": "Gate", + "desc": "You conjure a portal linking an unoccupied space you can see within range to a precise location on a different plane of existence. The portal is a circular opening, which you can make 5 to 20 feet in diameter. You can orient the portal in any direction you choose. The portal lasts for the duration. The portal has a front and a back on each plane where it appears. Travel through the portal is possible only by moving through its front. Anything that does so is instantly transported to the other plane, appearing in the unoccupied space nearest to the portal. Deities and other planar rulers can prevent portals created by this spell from opening in their presence or anywhere within their domains. When you cast this spell, you can speak the name of a specific creature (a pseudonym, title, or nickname doesn't work). If that creature is on a plane other than the one you are on, the portal opens in the named creature's immediate vicinity and draws the creature through it to the nearest unoccupied space on your side of the portal. You gain no special power over the creature, and it is free to act as the DM deems appropriate. It might leave, attack you, or help you.", + "document": "srd", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A diamond worth at least 5,000gp.", + "material_cost": "5000.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_geas", + "fields": { + "name": "Geas", + "desc": "You place a magical command on a creature that you can see within range, forcing it to carry out some service or refrain from some action or course of activity as you decide. If the creature can understand you, it must succeed on a wisdom saving throw or become charmed by you for the duration. While the creature is charmed by you, it takes 5d10 psychic damage each time it acts in a manner directly counter to your instructions, but no more than once each day. A creature that can't understand you is unaffected by the spell. You can issue any command you choose, short of an activity that would result in certain death. Should you issue a suicidal command, the spell ends. You can end the spell early by using an action to dismiss it. A remove curse, greater restoration, or wish spell also ends it.", + "document": "srd", + "level": 5, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 7th or 8th level, the duration is 1 year. When you cast this spell using a spell slot of 9th level, the spell lasts until it is ended by one of the spells mentioned above.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "5d10", + "damage_types": [ + "psychic" + ], + "duration": "30 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_gentle-repose", + "fields": { + "name": "Gentle Repose", + "desc": "You touch a corpse or other remains. For the duration, the target is protected from decay and can't become undead. The spell also effectively extends the time limit on raising the target from the dead, since days spent under the influence of this spell don't count against the time limit of spells such as raise dead.", + "document": "srd", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of salt and one copper piece placed on each of the corpse's eyes, which must remain there for the duration.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_giant-insect", + "fields": { + "name": "Giant Insect", + "desc": "You transform up to ten centipedes, three spiders, five wasps, or one scorpion within range into giant versions of their natural forms for the duration. A centipede becomes a giant centipede, a spider becomes a giant spider, a wasp becomes a giant wasp, and a scorpion becomes a giant scorpion. Each creature obeys your verbal commands, and in combat, they act on your turn each round. The DM has the statistics for these creatures and resolves their actions and movement. A creature remains in its giant size for the duration, until it drops to 0 hit points, or until you use an action to dismiss the effect on it. The DM might allow you to choose different targets. For example, if you transform a bee, its giant version might have the same statistics as a giant wasp.", + "document": "srd", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_glibness", + "fields": { + "name": "Glibness", + "desc": "Until the spell ends, when you make a Charisma check, you can replace the number you roll with a 15. Additionally, no matter what you say, magic that would determine if you are telling the truth indicates that you are being truthful.", + "document": "srd", + "level": 8, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_globe-of-invulnerability", + "fields": { + "name": "Globe of Invulnerability", + "desc": "An immobile, faintly shimmering barrier springs into existence in a 10-foot radius around you and remains for the duration. Any spell of 5th level or lower cast from outside the barrier can't affect creatures or objects within it, even if the spell is cast using a higher level spell slot. Such a spell can target creatures and objects within the barrier, but the spell has no effect on them. Similarly, the area within the barrier is excluded from the areas affected by such spells.", + "document": "srd", + "level": 6, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the barrier blocks spells of one level higher for each slot level above 6th.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A glass or crystal bead that shatters when the spell ends.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_glyph-of-warding", + "fields": { + "name": "Glyph of Warding", + "desc": "When you cast this spell, you inscribe a glyph that harms other creatures, either upon a surface (such as a table or a section of floor or wall) or within an object that can be closed (such as a book, a scroll, or a treasure chest) to conceal the glyph. If you choose a surface, the glyph can cover an area of the surface no larger than 10 feet in diameter. If you choose an object, that object must remain in its place; if the object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered. The glyph is nearly invisible and requires a successful Intelligence (Investigation) check against your spell save DC to be found. You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or standing on the glyph, removing another object covering the glyph, approaching within a certain distance of the glyph, or manipulating the object on which the glyph is inscribed. For glyphs inscribed within an object, the most common triggers include opening that object, approaching within a certain distance of the object, or seeing or reading the glyph. Once a glyph is triggered, this spell ends. You can further refine the trigger so the spell activates only under certain circumstances or according to physical characteristics (such as height or weight), creature kind (for example, the ward could be set to affect aberrations or drow), or alignment. You can also set conditions for creatures that don't trigger the glyph, such as those who say a certain password. When you inscribe the glyph, choose explosive runes or a spell glyph.\n\n**Explosive Runes.** When triggered, the glyph erupts with magical energy in a 20-­foot-­radius sphere centered on the glyph. The sphere spreads around corners. Each creature in the area must make a Dexterity saving throw. A creature takes 5d8 acid, cold, fire, lightning, or thunder damage on a failed saving throw (your choice when you create the glyph), or half as much damage on a successful one.\n\n**Spell Glyph.** You can store a prepared spell of 3rd level or lower in the glyph by casting it as part of creating the glyph. The spell must target a single creature or an area. The spell being stored has no immediate effect when cast in this way. When the glyph is triggered, the stored spell is cast. If the spell has a target, it targets the creature that triggered the glyph. If the spell affects an area, the area is centered on that creature. If the spell summons hostile creatures or creates harmful objects or traps, they appear as close as possible to the intruder and attack it. If the spell requires concentration, it lasts until the end of its full duration.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage of an explosive runes glyph increases by 1d8 for each slot level above 3rd. If you create a spell glyph, you can store any spell of up to the same level as the slot you use for the glyph of warding.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Incense and powdered diamond worth at least 200 gp, which the spell consumes.", + "material_cost": "200.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "acid", + "cold", + "fire", + "lightning", + "thunder" + ], + "duration": "until dispelled or triggered", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_goodberry", + "fields": { + "name": "Goodberry", + "desc": "Up to ten berries appear in your hand and are infused with magic for the duration. A creature can use its action to eat one berry. Eating a berry restores 1 hit point, and the berry provides enough nourishment to sustain a creature for one day. The berries lose their potency if they have not been consumed within 24 hours of the casting of this spell.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A sprig of mistletoe.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_grease", + "fields": { + "name": "Grease", + "desc": "Slick grease covers the ground in a 10-foot square centered on a point within range and turns it into difficult terrain for the duration. When the grease appears, each creature standing in its area must succeed on a dexterity saving throw or fall prone. A creature that enters the area or ends its turn there must also succeed on a dexterity saving throw or fall prone.", + "document": "srd", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of pork rind or butter.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_greater-invisibility", + "fields": { + "name": "Greater Invisibility", + "desc": "You or a creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person.", + "document": "srd", + "level": 4, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_greater-restoration", + "fields": { + "name": "Greater Restoration", + "desc": "You imbue a creature you touch with positive energy to undo a debilitating effect. You can reduce the target's exhaustion level by one, or end one of the following effects on the target: \n- One effect that charmed or petrified the target \n- One curse, including the target's attunement to a cursed magic item \n- Any reduction to one of the target's ability scores \n- One effect reducing the target's hit point maximum", + "document": "srd", + "level": 5, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Diamond dust worth at least 100gp, which the spell consumes.", + "material_cost": "100.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_guardian-of-faith", + "fields": { + "name": "Guardian of Faith", + "desc": "A Large spectral guardian appears and hovers for the duration in an unoccupied space of your choice that you can see within range. The guardian occupies that space and is indistinct except for a gleaming sword and shield emblazoned with the symbol of your deity. Any creature hostile to you that moves to a space within 10 feet of the guardian for the first time on a turn must succeed on a Dexterity saving throw. The creature takes 20 radiant damage on a failed save, or half as much damage on a successful one. The guardian vanishes when it has dealt a total of 60 damage.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "20", + "damage_types": [ + "radiant" + ], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_guards-and-wards", + "fields": { + "name": "Guards and Wards", + "desc": "You create a ward that protects up to 2,500 square feet of floor space (an area 50 feet square, or one hundred 5-foot squares or twenty-five 10-foot squares). The warded area can be up to 20 feet tall, and shaped as you desire. You can ward several stories of a stronghold by dividing the area among them, as long as you can walk into each contiguous area while you are casting the spell. When you cast this spell, you can specify individuals that are unaffected by any or all of the effects that you choose. You can also specify a password that, when spoken aloud, makes the speaker immune to these effects. Guards and wards creates the following effects within the warded area.\n\n**Corridors.** Fog fills all the warded corridors, making them heavily obscured. In addition, at each intersection or branching passage offering a choice of direction, there is a 50 percent chance that a creature other than you will believe it is going in the opposite direction from the one it chooses.\n\n**Doors.** All doors in the warded area are magically locked, as if sealed by an arcane lock spell. In addition, you can cover up to ten doors with an illusion (equivalent to the illusory object function of the minor illusion spell) to make them appear as plain sections of wall\n\n **Stairs.** Webs fill all stairs in the warded area from top to bottom, as the web spell. These strands regrow in 10 minutes if they are burned or torn away while guards and wards lasts.\n\n**Other Spell Effect.** You can place your choice of one of the following magical effects within the warded area of the stronghold. \n- Place dancing lights in four corridors. You can designate a simple program that the lights repeat as long as guards and wards lasts. \n- Place magic mouth in two locations. \n- Place stinking cloud in two locations. The vapors appear in the places you designate; they return within 10 minutes if dispersed by wind while guards and wards lasts. \n- Place a constant gust of wind in one corridor or room. \n- Place a suggestion in one location. You select an area of up to 5 feet square, and any creature that enters or passes through the area receives the suggestion mentally. The whole warded area radiates magic. A dispel magic cast on a specific effect, if successful, removes only that effect. You can create a permanently guarded and warded structure by casting this spell there every day for one year.", + "document": "srd", + "level": 6, + "school": "abjuration", + "higher_level": "", + "target_type": "area", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Burning incense, a small measure of brimstone and oil, a knotted string, a small amount of umber hulk blood, and a small silver rod worth at least 10 gp.", + "material_cost": "10.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_guidance", + "fields": { + "name": "Guidance", + "desc": "You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one ability check of its choice. It can roll the die before or after making the ability check. The spell then ends.", + "document": "srd", + "level": 0, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_guiding-bolt", + "fields": { + "name": "Guiding Bolt", + "desc": "A flash of light streaks toward a creature of your choice within range. Make a ranged spell attack against the target. On a hit, the target takes 4d6 radiant damage, and the next attack roll made against this target before the end of your next turn has advantage, thanks to the mystical dim light glittering on the target until then.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d6 for each slot level above 1st.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "4d6", + "damage_types": [ + "radiant" + ], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_gust-of-wind", + "fields": { + "name": "Gust of Wind", + "desc": "A line of strong wind 60 feet long and 10 feet wide blasts from you in a direction you choose for the spell's duration. Each creature that starts its turn in the line must succeed on a strength saving throw or be pushed 15 feet away from you in a direction following the line. Any creature in the line must spend 2 feet of movement for every 1 foot it moves when moving closer to you. The gust disperses gas or vapor, and it extinguishes candles, torches, and similar unprotected flames in the area. It causes protected flames, such as those of lanterns, to dance wildly and has a 50 percent chance to extinguish them. As a bonus action on each of your turns before the spell ends, you can change the direction in which the line blasts from you.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A legume seed.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_hallow", + "fields": { + "name": "Hallow", + "desc": "You touch a point and infuse an area around it with holy (or unholy) power. The area can have a radius up to 60 feet, and the spell fails if the radius includes an area already under the effect a hallow spell. The affected area is subject to the following effects. First, celestials, elementals, fey, fiends, and undead can't enter the area, nor can such creatures charm, frighten, or possess creatures within it. Any creature charmed, frightened, or possessed by such a creature is no longer charmed, frightened, or possessed upon entering the area. You can exclude one or more of those types of creatures from this effect. Second, you can bind an extra effect to the area. Choose the effect from the following list, or choose an effect offered by the DM. Some of these effects apply to creatures in the area; you can designate whether the effect applies to all creatures, creatures that follow a specific deity or leader, or creatures of a specific sort, such as ores or trolls. When a creature that would be affected enters the spell's area for the first time on a turn or starts its turn there, it can make a charisma saving throw. On a success, the creature ignores the extra effect until it leaves the area.\n\n**Courage.** Affected creatures can't be frightened while in the area.\n\n**Darkness.** Darkness fills the area. Normal light, as well as magical light created by spells of a lower level than the slot you used to cast this spell, can't illuminate the area\n\n **Daylight.** Bright light fills the area. Magical darkness created by spells of a lower level than the slot you used to cast this spell can't extinguish the light.\n\n**Energy Protection.** Affected creatures in the area have resistance to one damage type of your choice, except for bludgeoning, piercing, or slashing\n\n **Energy Vulnerability.** Affected creatures in the area have vulnerability to one damage type of your choice, except for bludgeoning, piercing, or slashing.\n\n**Everlasting Rest.** Dead bodies interred in the area can't be turned into undead.\n\n**Extradimensional Interference.** Affected creatures can't move or travel using teleportation or by extradimensional or interplanar means.\n\n**Fear.** Affected creatures are frightened while in the area.\n\n**Silence.** No sound can emanate from within the area, and no sound can reach into it.\n\n**Tongues.** Affected creatures can communicate with any other creature in the area, even if they don't share a common language.", + "document": "srd", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Herbs, oils, and incense worth at least 1,000 gp, which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_hallucinatory-terrain", + "fields": { + "name": "Hallucinatory Terrain", + "desc": "You make natural terrain in a 150-foot cube in range look, sound, and smell like some other sort of natural terrain. Thus, open fields or a road can be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road. Manufactured structures, equipment, and creatures within the area aren't changed in appearance.\n\nThe tactile characteristics of the terrain are unchanged, so creatures entering the area are likely to see through the illusion. If the difference isn't obvious by touch, a creature carefully examining the illusion can attempt an Intelligence (Investigation) check against your spell save DC to disbelieve it. A creature who discerns the illusion for what it is, sees it as a vague image superimposed on the terrain.", + "document": "srd", + "level": 4, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A stone, a twig, and a bit of green plant.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": "cube", + "shape_magnitude": 150, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_harm", + "fields": { + "name": "Harm", + "desc": "You unleash a virulent disease on a creature that you can see within range. The target must make a constitution saving throw. On a failed save, it takes 14d6 necrotic damage, or half as much damage on a successful save. The damage can't reduce the target's hit points below 1. If the target fails the saving throw, its hit point maximum is reduced for 1 hour by an amount equal to the necrotic damage it took. Any effect that removes a disease allows a creature's hit point maximum to return to normal before that time passes.", + "document": "srd", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "14d6", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_haste", + "fields": { + "name": "Haste", + "desc": "Choose a willing creature that you can see within range. Until the spell ends, the target's speed is doubled, it gains a +2 bonus to AC, it has advantage on dexterity saving throws, and it gains an additional action on each of its turns. That action can be used only to take the Attack (one weapon attack only), Dash, Disengage, Hide, or Use an Object action. When the spell ends, the target can't move or take actions until after its next turn, as a wave of lethargy sweeps over it.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A shaving of licorice root.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_heal", + "fields": { + "name": "Heal", + "desc": "Choose a creature that you can see within range. A surge of positive energy washes through the creature, causing it to regain 70 hit points. This spell also ends blindness, deafness, and any diseases affecting the target. This spell has no effect on constructs or undead.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the amount of healing increases by 10 for each slot level above 6th.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_healing-word", + "fields": { + "name": "Healing Word", + "desc": "A creature of your choice that you can see within range regains hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the healing increases by 1d4 for each slot level above 1st.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_heat-metal", + "fields": { + "name": "Heat Metal", + "desc": "Choose a manufactured metal object, such as a metal weapon or a suit of heavy or medium metal armor, that you can see within range. You cause the object to glow red-hot. Any creature in physical contact with the object takes 2d8 fire damage when you cast the spell. Until the spell ends, you can use a bonus action on each of your subsequent turns to cause this damage again. If a creature is holding or wearing the object and takes the damage from it, the creature must succeed on a constitution saving throw or drop the object if it can. If it doesn't drop the object, it has disadvantage on attack rolls and ability checks until the start of your next turn.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A piece of iron and a flame.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_hellish-rebuke", + "fields": { + "name": "Hellish Rebuke", + "desc": "You point your finger, and the creature that damaged you is momentarily surrounded by hellish flames. The creature must make a Dexterity saving throw. It takes 2d10 fire damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "2d10", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_heroes-feast", + "fields": { + "name": "Heroes' Feast", + "desc": "You bring forth a great feast, including magnificent food and drink. The feast takes 1 hour to consume and disappears at the end of that time, and the beneficial effects don't set in until this hour is over. Up to twelve other creatures can partake of the feast. A creature that partakes of the feast gains several benefits. The creature is cured of all diseases and poison, becomes immune to poison and being frightened, and makes all wisdom saving throws with advantage. Its hit point maximum also increases by 2d10, and it gains the same number of hit points. These benefits last for 24 hours.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A gem-encrusted bowl worth at least 1,000gp, which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_heroism", + "fields": { + "name": "Heroism", + "desc": "A willing creature you touch is imbued with bravery. Until the spell ends, the creature is immune to being frightened and gains temporary hit points equal to your spellcasting ability modifier at the start of each of its turns. When the spell ends, the target loses any remaining temporary hit points from this spell.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_hideous-laughter", + "fields": { + "name": "Hideous Laughter", + "desc": "A creature of your choice that you can see within range perceives everything as hilariously funny and falls into fits of laughter if this spell affects it. The target must succeed on a wisdom saving throw or fall prone, becoming incapacitated and unable to stand up for the duration. A creature with an Intelligence score of 4 or less isn't affected. At the end of each of its turns, and each time it takes damage, the target can make another wisdom saving throw. The target had advantage on the saving throw if it's triggered by damage. On a success, the spell ends.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Tiny tarts and a feather that is waved in the air.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_hold-monster", + "fields": { + "name": "Hold Monster", + "desc": "Choose a creature you can see within range. The target must make a saving throw of Wisdom or be paralyzed for the duration of the spell. This spell has no effect against the undead. At the end of each round, the target can make a new saving throw of Wisdom. If successful, the spell ends for the creature.", + "document": "srd", + "level": 5, + "school": "enchantment", + "higher_level": "When you cast this spell using a level 6 or higher location, you can target an additional creature for each level of location beyond the fifth. The creatures must be within 30 feet o f each other when you target them.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small piece of iron.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_hold-person", + "fields": { + "name": "Hold Person", + "desc": "Choose a humanoid that you can see within range. The target must succeed on a wisdom saving throw or be paralyzed for the duration. At the end of each of its turns, the target can make another wisdom saving throw. On a success, the spell ends on the target.", + "document": "srd", + "level": 2, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional humanoid for each slot level above 2nd. The humanoids must be within 30 feet of each other when you target them.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small, straight piece of iron.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_holy-aura", + "fields": { + "name": "Holy Aura", + "desc": "Divine light washes out from you and coalesces in a soft radiance in a 30-foot radius around you. Creatures of your choice in that radius when you cast this spell shed dim light in a 5-foot radius and have advantage on all saving throws, and other creatures have disadvantage on attack rolls against them until the spell ends. In addition, when a fiend or an undead hits an affected creature with a melee attack, the aura flashes with brilliant light. The attacker must succeed on a constitution saving throw or be blinded until the spell ends.", + "document": "srd", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny reliquary worth at least 1,000gp containing a sacred relic, such as a scrap of cloth from a saint's robe or a piece of parchment from a religious text.", + "material_cost": "1000.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_hunters-mark", + "fields": { + "name": "Hunter's Mark", + "desc": "You choose a creature you can see within range and mystically mark it as your quarry. Until the spell ends, you deal an extra 1d6 damage to the target whenever you hit it with a weapon attack, and you have advantage on any Wisdom (Perception) or Wisdom (Survival) check you make to find it. If the target drops to 0 hit points before this spell ends, you can use a bonus action on a subsequent turn of yours to mark a new creature.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": " When you cast this spell using a spell slot of 3rd or 4th level, you can maintain your concentration on the spell for up to 8 hours. When you use a spell slot of 5th level or higher, you can maintain your concentration on the spell for up to 24 hours.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_hypnotic-pattern", + "fields": { + "name": "Hypnotic Pattern", + "desc": "You create a twisting pattern of colors that weaves through the air inside a 30-foot cube within range. The pattern appears for a moment and vanishes. Each creature in the area who sees the pattern must make a wisdom saving throw. On a failed save, the creature becomes charmed for the duration. While charmed by this spell, the creature is incapacitated and has a speed of 0. The spell ends for an affected creature if it takes any damage or if someone else uses an action to shake the creature out of its stupor.", + "document": "srd", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "A glowing stick of incense or a crystal vial filled with phosphorescent material.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 30, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_ice-storm", + "fields": { + "name": "Ice Storm", + "desc": "A hail of rock-hard ice pounds to the ground in a 20-foot-radius, 40-foot-high cylinder centered on a point within range. Each creature in the cylinder must make a dexterity saving throw. A creature takes 2d8 bludgeoning damage and 4d6 cold damage on a failed save, or half as much damage on a successful one. Hailstones turn the storm's area of effect into difficult terrain until the end of your next turn.", + "document": "srd", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the bludgeoning damage increases by 1d8 for each slot level above 4th.", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of dust and a few drops of water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_identify", + "fields": { + "name": "Identify", + "desc": "You choose one object that you must touch throughout the casting of the spell. If it is a magic item or some other magic-imbued object, you learn its properties and how to use them, whether it requires attunement to use, and how many charges it has, if any. You learn whether any spells are affecting the item and what they are. If the item was created by a spell, you learn which spell created it. If you instead touch a creature throughout the casting, you learn what spells, if any, are currently affecting it.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pearl worth at least 100gp and an owl feather.", + "material_cost": "100.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_illusory-script", + "fields": { + "name": "Illusory Script", + "desc": "You write on parchment, paper, or some other suitable writing material and imbue it with a potent illusion that lasts for the duration. To you and any creatures you designate when you cast the spell, the writing appears normal, written in your hand, and conveys whatever meaning you intended when you wrote the text. To all others, the writing appears as if it were written in an unknown or magical script that is unintelligible. Alternatively, you can cause the writing to appear to be an entirely different message, written in a different hand and language, though the language must be one you know. Should the spell be dispelled, the original script and the illusion both disappear. A creature with truesight can read the hidden message.", + "document": "srd", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "A lead-based ink worth at least 10gp, which this spell consumes.", + "material_cost": "10.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_imprisonment", + "fields": { + "name": "Imprisonment", + "desc": "You create a magical restraint to hold a creature that you can see within range. The target must succeed on a wisdom saving throw or be bound by the spell; if it succeeds, it is immune to this spell if you cast it again. While affected by this spell, the creature doesn't need to breathe, eat, or drink, and it doesn't age. Divination spells can't locate or perceive the target. When you cast the spell, you choose one of the following forms of imprisonment.\n\n**Burial.** The target is entombed far beneath the earth in a sphere of magical force that is just large enough to contain the target. Nothing can pass through the sphere, nor can any creature teleport or use planar travel to get into or out of it. The special component for this version of the spell is a small mithral orb.\n\n**Chaining.** Heavy chains, firmly rooted in the ground, hold the target in place. The target is restrained until the spell ends, and it can't move or be moved by any means until then. The special component for this version of the spell is a fine chain of precious metal.\n\n**Hedged Prison.** The spell transports the target into a tiny demiplane that is warded against teleportation and planar travel. The demiplane can be a labyrinth, a cage, a tower, or any similar confined structure or area of your choice. The special component for this version of the spell is a miniature representation of the prison made from jade.\n\n**Minimus Containment.** The target shrinks to a height of 1 inch and is imprisoned inside a gemstone or similar object. Light can pass through the gemstone normally (allowing the target to see out and other creatures to see in), but nothing else can pass through, even by means of teleportation or planar travel. The gemstone can't be cut or broken while the spell remains in effect. The special component for this version of the spell is a large, transparent gemstone, such as a corundum, diamond, or ruby.\n\n**Slumber.** The target falls asleep and can't be awoken. The special component for this version of the spell consists of rare soporific herbs.\n\n**Ending the Spell.** During the casting of the spell, in any of its versions, you can specify a condition that will cause the spell to end and release the target. The condition can be as specific or as elaborate as you choose, but the DM must agree that the condition is reasonable and has a likelihood of coming to pass. The conditions can be based on a creature's name, identity, or deity but otherwise must be based on observable actions or qualities and not based on intangibles such as level, class, or hit points. A dispel magic spell can end the spell only if it is cast as a 9th-level spell, targeting either the prison or the special component used to create it. You can use a particular special component to create only one prison at a time. If you cast the spell again using the same component, the target of the first casting is immediately freed from its binding.", + "document": "srd", + "level": 9, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A vellum depiction or a carved statuette in the likeness of the target, and a special component that varies according to the version of the spell you choose, worth at least 500gp per Hit Die of the target.", + "material_cost": "500.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_incendiary-cloud", + "fields": { + "name": "Incendiary Cloud", + "desc": "A swirling cloud of smoke shot through with white-hot embers appears in a 20-foot-radius sphere centered on a point within range. The cloud spreads around corners and is heavily obscured. It lasts for the duration or until a wind of moderate or greater speed (at least 10 miles per hour) disperses it. When the cloud appears, each creature in it must make a dexterity saving throw. A creature takes 10d8 fire damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there. The cloud moves 10 feet directly away from you in a direction that you choose at the start of each of your turns.", + "document": "srd", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "10d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_inflict-wounds", + "fields": { + "name": "Inflict Wounds", + "desc": "Make a melee spell attack against a creature you can reach. On a hit, the target takes 3d10 necrotic damage.", + "document": "srd", + "level": 1, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d10 for each slot level above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d10", + "damage_types": [ + "necrotic" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_insect-plague", + "fields": { + "name": "Insect Plague", + "desc": "Swarming, biting locusts fill a 20-foot-radius sphere centered on a point you choose within range. The sphere spreads around corners. The sphere remains for the duration, and its area is lightly obscured. The sphere's area is difficult terrain. When the area appears, each creature in it must make a constitution saving throw. A creature takes 4d10 piercing damage on a failed save, or half as much damage on a successful one. A creature must also make this saving throw when it enters the spell's area for the first time on a turn or ends its turn there.", + "document": "srd", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the damage increases by 1d10 for each slot level above 5th.", + "target_type": "point", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A few grains of sugar, some kernels of grain, and a smear of fat.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "4d10", + "damage_types": [ + "piercing" + ], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_instant-summons", + "fields": { + "name": "Instant Summons", + "desc": "You touch an object weighing 10 pounds or less whose longest dimension is 6 feet or less. The spell leaves an invisible mark on its surface and invisibly inscribes the name of the item on the sapphire you use as the material component. Each time you cast this spell, you must use a different sapphire. At any time thereafter, you can use your action to speak the item's name and crush the sapphire. The item instantly appears in your hand regardless of physical or planar distances, and the spell ends. If another creature is holding or carrying the item, crushing the sapphire doesn't transport the item to you, but instead you learn who the creature possessing the object is and roughly where that creature is located at that moment. Dispel magic or a similar effect successfully applied to the sapphire ends this spell's effect.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A sapphire worth 1,000 gp.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_invisibility", + "fields": { + "name": "Invisibility", + "desc": "A creature you touch becomes invisible until the spell ends. Anything the target is wearing or carrying is invisible as long as it is on the target's person. The spell ends for a target that attacks or casts a spell.", + "document": "srd", + "level": 2, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you can target one additional creature for each slot level above 2nd.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An eyelash encased in gum arabic.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_irresistible-dance", + "fields": { + "name": "Irresistible Dance", + "desc": "Choose one creature that you can see within range. The target begins a comic dance in place: shuffling, tapping its feet, and capering for the duration. Creatures that can't be charmed are immune to this spell. A dancing creature must use all its movement to dance without leaving its space and has disadvantage on dexterity saving throws and attack rolls. While the target is affected by this spell, other creatures have advantage on attack rolls against it. As an action, a dancing creature makes a wisdom saving throw to regain control of itself. On a successful save, the spell ends.", + "document": "srd", + "level": 6, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_jump", + "fields": { + "name": "Jump", + "desc": "You touch a creature. The creature's jump distance is tripled until the spell ends.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A grasshopper's hind leg.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_knock", + "fields": { + "name": "Knock", + "desc": "Choose an object that you can see within range. The object can be a door, a box, a chest, a set of manacles, a padlock, or another object that contains a mundane or magical means that prevents access. A target that is held shut by a mundane lock or that is stuck or barred becomes unlocked, unstuck, or unbarred. If the object has multiple locks, only one of them is unlocked. If you choose a target that is held shut with arcane lock, that spell is suppressed for 10 minutes, during which time the target can be opened and shut normally. When you cast the spell, a loud knock, audible from as far away as 300 feet, emanates from the target object.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_legend-lore", + "fields": { + "name": "Legend Lore", + "desc": "Name or describe a person, place, or object. The spell brings to your mind a brief summary of the significant lore about the thing you named. The lore might consist of current tales, forgotten stories, or even secret lore that has never been widely known. If the thing you named isn't of legendary importance, you gain no information. The more information you already have about the thing, the more precise and detailed the information you receive is. The information you learn is accurate but might be couched in figurative language. For example, if you have a mysterious magic axe on hand, the spell might yield this information: \"Woe to the evildoer whose hand touches the axe, for even the haft slices the hand of the evil ones. Only a true Child of Stone, lover and beloved of Moradin, may awaken the true powers of the axe, and only with the sacred word Rudnogg on the lips.\"", + "document": "srd", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Incense worth 250 inches that fate consumes and four sticks of ivory worth 50 gp each.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_lesser-restoration", + "fields": { + "name": "Lesser Restoration", + "desc": "You touch a creature and can end either one disease or one condition afflicting it. The condition can be blinded, deafened, paralyzed, or poisoned.", + "document": "srd", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_levitate", + "fields": { + "name": "Levitate", + "desc": "One creature or object of your choice that you can see within range rises vertically, up to 20 feet, and remains suspended there for the duration. The spell can levitate a target that weighs up to 500 pounds. An unwilling creature that succeeds on a constitution saving throw is unaffected. The target can move only by pushing or pulling against a fixed object or surface within reach (such as a wall or a ceiling), which allows it to move as if it were climbing. You can change the target's altitude by up to 20 feet in either direction on your turn. If you are the target, you can move up or down as part of your move. Otherwise, you can use your action to move the target, which must remain within the spell's range. When the spell ends, the target floats gently to the ground if it is still aloft.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Either a small leather loop or a piece of golden wire bent into a cup shape with a long shank on one end.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_light", + "fields": { + "name": "Light", + "desc": "You touch one object that is no larger than 10 feet in any dimension. Until the spell ends, the object sheds bright light in a 20-foot radius and dim light for an additional 20 feet. The light can be colored as you like. Completely covering the object with something opaque blocks the light. The spell ends if you cast it again or dismiss it as an action. If you target an object held or worn by a hostile creature, that creature must succeed on a dexterity saving throw to avoid the spell.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "A firefly or phosphorescent moss.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_lightning-bolt", + "fields": { + "name": "Lightning Bolt", + "desc": "A stroke of lightning forming a line 100 feet long and 5 feet wide blasts out from you in a direction you choose. Each creature in the line must make a dexterity saving throw. A creature takes 8d6 lightning damage on a failed save, or half as much damage on a successful one. The lightning ignites flammable objects in the area that aren't being worn or carried.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fur and a rod of amber, crystal, or glass.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "8d6", + "damage_types": [ + "lightning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_locate-animals-or-plants", + "fields": { + "name": "Locate Animals or Plants", + "desc": "Describe or name a specific kind of beast or plant. Concentrating on the voice of nature in your surroundings, you learn the direction and distance to the closest creature or plant of that kind within 5 miles, if any are present.", + "document": "srd", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fur from a bloodhound.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_locate-creature", + "fields": { + "name": "Locate Creature", + "desc": "Describe or name a creature that is familiar to you. You sense the direction to the creature's location, as long as that creature is within 1,000 feet of you. If the creature is moving, you know the direction of its movement. The spell can locate a specific creature known to you, or the nearest creature of a specific kind (such as a human or a unicorn), so long as you have seen such a creature up close-within 30 feet-at least once. If the creature you described or named is in a different form, such as being under the effects of a polymorph spell, this spell doesn't locate the creature. This spell can't locate a creature if running water at least 10 feet wide blocks a direct path between you and the creature.", + "document": "srd", + "level": 4, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fur from a bloodhound.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_locate-object", + "fields": { + "name": "Locate Object", + "desc": "Describe or name an object that is familiar to you. You sense the direction to the object's location, as long as that object is within 1,000 feet of you. If the object is in motion, you know the direction of its movement. The spell can locate a specific object known to you, as long as you have seen it up close-within 30 feet-at least once. Alternatively, the spell can locate the nearest object of a particular kind, such as a certain kind of apparel, jewelry, furniture, tool, or weapon. This spell can't locate an object if any thickness of lead, even a thin sheet, blocks a direct path between you and the object.", + "document": "srd", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "object", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A forked twig.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_longstrider", + "fields": { + "name": "Longstrider", + "desc": "You touch a creature. The target's speed increases by 10 feet until the spell ends.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, you can target one additional creature for each spell slot above 1st.", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of dirt.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_mage-armor", + "fields": { + "name": "Mage Armor", + "desc": "You touch a willing creature who isn't wearing armor, and a protective magical force surrounds it until the spell ends. The target's base AC becomes 13 + its Dexterity modifier. The spell ends if the target dons armor or if you dismiss the spell as an action.", + "document": "srd", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A piece of cured leather.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_mage-hand", + "fields": { + "name": "Mage Hand", + "desc": "A spectral, floating hand appears at a point you choose within range. The hand lasts for the duration or until you dismiss it as an action. The hand vanishes if it is ever more than 30 feet away from you or if you cast this spell again. You can use your action to control the hand. You can use the hand to manipulate an object, open an unlocked door or container, stow or retrieve an item from an open container, or pour the contents out of a vial. You can move the hand up to 30 feet each time you use it. The hand can't attack, activate magic items, or carry more than 10 pounds.", + "document": "srd", + "level": 0, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_magic-circle", + "fields": { + "name": "Magic Circle", + "desc": "You create a 10-­--foot-­--radius, 20-­--foot-­--tall cylinder of magical energy centered on a point on the ground that you can see within range. Glowing runes appear wherever the cylinder intersects with the floor or other surface. Choose one or more of the following types of creatures: celestials, elementals, fey, fiends, or undead. The circle affects a creature of the chosen type in the following ways: \n- The creature can't willingly enter the cylinder by nonmagical means. If the creature tries to use teleportation or interplanar travel to do so, it must first succeed on a charisma saving throw. \n- The creature has disadvantage on attack rolls against targets within the cylinder. \n- Targets within the cylinder can't be charmed, frightened, or possessed by the creature.\nWhen you cast this spell, you can elect to cause its magic to operate in the reverse direction, preventing a creature of the specified type from leaving the cylinder and protecting targets outside it.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the duration increases by 1 hour for each slot level above 3rd.", + "target_type": "point", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Holy water or powdered silver and iron worth at least 100 gp, which the spell consumes.", + "material_cost": "100.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_magic-jar", + "fields": { + "name": "Magic Jar", + "desc": "Your body falls into a catatonic state as your soul leaves it and enters the container you used for the spell's material component. While your soul inhabits the container, you are aware of your surroundings as if you were in the container's space. You can't move or use reactions. The only action you can take is to project your soul up to 100 feet out of the container, either returning to your living body (and ending the spell) or attempting to possess a humanoids body. You can attempt to possess any humanoid within 100 feet of you that you can see (creatures warded by a protection from evil and good or magic circle spell can't be possessed). The target must make a charisma saving throw. On a failure, your soul moves into the target's body, and the target's soul becomes trapped in the container. On a success, the target resists your efforts to possess it, and you can't attempt to possess it again for 24 hours. Once you possess a creature's body, you control it. Your game statistics are replaced by the statistics of the creature, though you retain your alignment and your Intelligence, Wisdom, and Charisma scores. You retain the benefit of your own class features. If the target has any class levels, you can't use any of its class features. Meanwhile, the possessed creature's soul can perceive from the container using its own senses, but it can't move or take actions at all. While possessing a body, you can use your action to return from the host body to the container if it is within 100 feet of you, returning the host creature's soul to its body. If the host body dies while you're in it, the creature dies, and you must make a charisma saving throw against your own spellcasting DC. On a success, you return to the container if it is within 100 feet of you. Otherwise, you die. If the container is destroyed or the spell ends, your soul immediately returns to your body. If your body is more than 100 feet away from you or if your body is dead when you attempt to return to it, you die. If another creature's soul is in the container when it is destroyed, the creature's soul returns to its body if the body is alive and within 100 feet. Otherwise, that creature dies. When the spell ends, the container is destroyed.", + "document": "srd", + "level": 6, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A gem, crystal, reliquary, or some other ornamental container worth at least 500 gp.", + "material_cost": "500.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_magic-missile", + "fields": { + "name": "Magic Missile", + "desc": "You create three glowing darts of magical force. Each dart hits a creature of your choice that you can see within range. A dart deals 1d4 + 1 force damage to its target. The darts all strike simultaneously, and you can direct them to hit one creature or several.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the spell creates one more dart for each slot level above 1st.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_magic-mouth", + "fields": { + "name": "Magic Mouth", + "desc": "You implant a message within an object in range, a message that is uttered when a trigger condition is met. Choose an object that you can see and that isn't being worn or carried by another creature. Then speak the message, which must be 25 words or less, though it can be delivered over as long as 10 minutes. Finally, determine the circumstance that will trigger the spell to deliver your message. When that circumstance occurs, a magical mouth appears on the object and recites the message in your voice and at the same volume you spoke. If the object you chose has a mouth or something that looks like a mouth (for example, the mouth of a statue), the magical mouth appears there so that the words appear to come from the object's mouth. When you cast this spell, you can have the spell end after it delivers its message, or it can remain and repeat its message whenever the trigger occurs. The triggering circumstance can be as general or as detailed as you like, though it must be based on visual or audible conditions that occur within 30 feet of the object. For example, you could instruct the mouth to speak when any creature moves within 30 feet of the object or when a silver bell rings within 30 feet of it.", + "document": "srd", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small bit of honeycomb and jade dust worth at least 10 gp, which the spell consumes", + "material_cost": "10.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_magic-weapon", + "fields": { + "name": "Magic Weapon", + "desc": "You touch a nonmagical weapon. Until the spell ends, that weapon becomes a magic weapon with a +1 bonus to attack rolls and damage rolls.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the bonus increases to +2. When you use a spell slot of 6th level or higher, the bonus increases to +3.", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_magnificent-mansion", + "fields": { + "name": "Magnificent Mansion", + "desc": "You conjure an extradimensional dwelling in range that lasts for the duration. You choose where its one entrance is located. The entrance shimmers faintly and is 5 feet wide and 10 feet tall. You and any creature you designate when you cast the spell can enter the extradimensional dwelling as long as the portal remains open. You can open or close the portal if you are within 30 feet of it. While closed, the portal is invisible. Beyond the portal is a magnificent foyer with numerous chambers beyond. The atmosphere is clean, fresh, and warm. You can create any floor plan you like, but the space can't exceed 50 cubes, each cube being 10 feet on each side. The place is furnished and decorated as you choose. It contains sufficient food to serve a nine course banquet for up to 100 people. A staff of 100 near-transparent servants attends all who enter. You decide the visual appearance of these servants and their attire. They are completely obedient to your orders. Each servant can perform any task a normal human servant could perform, but they can't attack or take any action that would directly harm another creature. Thus the servants can fetch things, clean, mend, fold clothes, light fires, serve food, pour wine, and so on. The servants can go anywhere in the mansion but can't leave it. Furnishings and other objects created by this spell dissipate into smoke if removed from the mansion. When the spell ends, any creatures inside the extradimensional space are expelled into the open spaces nearest to the entrance.", + "document": "srd", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "300 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A miniature portal carved from ivory, a small piece of polished marble, and a tiny silver spoon, each item worth at least 5 gp.", + "material_cost": "5.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_major-image", + "fields": { + "name": "Major Image", + "desc": "You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 20-foot cube. The image appears at a spot that you can see within range and lasts for the duration. It seems completely real, including sounds, smells, and temperature appropriate to the thing depicted. You can't create sufficient heat or cold to cause damage, a sound loud enough to deal thunder damage or deafen a creature, or a smell that might sicken a creature (like a troglodyte's stench). As long as you are within range of the illusion, you can use your action to cause the image to move to any other spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Similarly, you can cause the illusion to make different sounds at different times, even making it carry on a conversation, for example. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and its other sensory qualities become faint to the creature.", + "document": "srd", + "level": 3, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the spell lasts until dispelled, without requiring your concentration.", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fleece.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_mass-cure-wounds", + "fields": { + "name": "Mass Cure Wounds", + "desc": "A wave of healing energy washes out from a point of your choice within range. Choose up to six creatures in a 30-foot-radius sphere centered on that point. Each target regains hit points equal to 3d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 5, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 6th level or higher, the healing increases by 1d8 for each slot level above 5th.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_mass-heal", + "fields": { + "name": "Mass Heal", + "desc": "A flood of healing energy flows from you into injured creatures around you. You restore up to 700 hit points, divided as you choose among any number of creatures that you can see within range. Creatures healed by this spell are also cured of all diseases and any effect making them blinded or deafened. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_mass-healing-word", + "fields": { + "name": "Mass Healing Word", + "desc": "As you call out words of restoration, up to six creatures of your choice that you can see within range regain hit points equal to 1d4 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the healing increases by 1d4 for each slot level above 3rd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 6, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_mass-suggestion", + "fields": { + "name": "Mass Suggestion", + "desc": "You suggest a course of activity (limited to a sentence or two) and magically influence up to twelve creatures of your choice that you can see within range and that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act automatically negates the effect of the spell. Each target must make a wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do. You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a group of soldiers give all their money to the first beggar they meet. If the condition isn't met before the spell ends, the activity isn't performed. If you or any of your companions damage a creature affected by this spell, the spell ends for that creature.", + "document": "srd", + "level": 6, + "school": "enchantment", + "higher_level": "When you cast this spell using a 7th-level spell slot, the duration is 10 days. When you use an 8th-level spell slot, the duration is 30 days. When you use a 9th-level spell slot, the duration is a year and a day.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "A snake's tongue and either a bit of honeycomb or a drop of sweet oil.", + "material_cost": null, + "material_consumed": false, + "target_count": 12, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_maze", + "fields": { + "name": "Maze", + "desc": "You banish a creature that you can see within range into a labyrinthine demiplane. The target remains there for the duration or until it escapes the maze. The target can use its action to attempt to escape. When it does so, it makes a DC 20 Intelligence check. If it succeeds, it escapes, and the spell ends (a minotaur or goristro demon automatically succeeds). When the spell ends, the target reappears in the space it left or, if that space is occupied, in the nearest unoccupied space.", + "document": "srd", + "level": 8, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_meld-into-stone", + "fields": { + "name": "Meld into Stone", + "desc": "You step into a stone object or surface large enough to fully contain your body, melding yourself and all the equipment you carry with the stone for the duration. Using your movement, you step into the stone at a point you can touch. Nothing of your presence remains visible or otherwise detectable by nonmagical senses. While merged with the stone, you can't see what occurs outside it, and any Wisdom (Perception) checks you make to hear sounds outside it are made with disadvantage. You remain aware of the passage of time and can cast spells on yourself while merged in the stone. You can use your movement to leave the stone where you entered it, which ends the spell. You otherwise can't move. Minor physical damage to the stone doesn't harm you, but its partial destruction or a change in its shape (to the extent that you no longer fit within it) expels you and deals 6d6 bludgeoning damage to you. The stone's complete destruction (or transmutation into a different substance) expels you and deals 50 bludgeoning damage to you. If expelled, you fall prone in an unoccupied space closest to where you first entered.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_mending", + "fields": { + "name": "Mending", + "desc": "This spell repairs a single break or tear in an object you touch, such as a broken key, a torn cloak, or a leaking wineskin. As long as the break or tear is no longer than 1 foot in any dimension, you mend it, leaving no trace of the former damage. This spell can physically repair a magic item or construct, but the spell can't restore magic to such an object.", + "document": "srd", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Two lodestones.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_message", + "fields": { + "name": "Message", + "desc": "You point your finger toward a creature within range and whisper a message. The target (and only the target) hears the message and can reply in a whisper that only you can hear. You can cast this spell through solid objects if you are familiar with the target and know it is beyond the barrier. Magical silence, 1 foot of stone, 1 inch of common metal, a thin sheet of lead, or 3 feet of wood blocks the spell. The spell doesn't have to follow a straight line and can travel freely around corners or through openings.", + "document": "srd", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A short piece of copper wire.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_meteor-swarm", + "fields": { + "name": "Meteor Swarm", + "desc": "Blazing orbs of fire plummet to the ground at four different points you can see within range. Each creature in a 40-foot-radius sphere centered on each point you choose must make a dexterity saving throw. The sphere spreads around corners. A creature takes 20d6 fire damage and 20d6 bludgeoning damage on a failed save, or half as much damage on a successful one. A creature in the area of more than one fiery burst is affected only once. The spell damages objects in the area and ignites flammable objects that aren't being worn or carried.", + "document": "srd", + "level": 9, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "1 mile", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "20d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 40, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_mind-blank", + "fields": { + "name": "Mind Blank", + "desc": "Until the spell ends, one willing creature you touch is immune to psychic damage, any effect that would sense its emotions or read its thoughts, divination spells, and the charmed condition. The spell even foils wish spells and spells or effects of similar power used to affect the target's mind or to gain information about the target.", + "document": "srd", + "level": 8, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_minor-illusion", + "fields": { + "name": "Minor Illusion", + "desc": "You create a sound or an image of an object within range that lasts for the duration. The illusion also ends if you dismiss it as an action or cast this spell again. If you create a sound, its volume can range from a whisper to a scream. It can be your voice, someone else's voice, a lion's roar, a beating of drums, or any other sound you choose. The sound continues unabated throughout the duration, or you can make discrete sounds at different times before the spell ends. If you create an image of an object-such as a chair, muddy footprints, or a small chest-it must be no larger than a 5-foot cube. The image can't create sound, light, smell, or any other sensory effect. Physical interaction with the image reveals it to be an illusion, because things can pass through it. If a creature uses its action to examine the sound or image, the creature can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the illusion becomes faint to the creature.", + "document": "srd", + "level": 0, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": true, + "material_specified": "A bit of fleece.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 5, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_mirage-arcane", + "fields": { + "name": "Mirage Arcane", + "desc": "You make terrain in an area up to 1 mile square look, sound, smell, and even feel like some other sort of terrain. The terrain's general shape remains the same, however. Open fields or a road could be made to resemble a swamp, hill, crevasse, or some other difficult or impassable terrain. A pond can be made to seem like a grassy meadow, a precipice like a gentle slope, or a rock-strewn gully like a wide and smooth road. Similarly, you can alter the appearance of structures, or add them where none are present. The spell doesn't disguise, conceal, or add creatures. The illusion includes audible, visual, tactile, and olfactory elements, so it can turn clear ground into difficult terrain (or vice versa) or otherwise impede movement through the area. Any piece of the illusory terrain (such as a rock or stick) that is removed from the spell's area disappears immediately. Creatures with truesight can see through the illusion to the terrain's true form; however, all other elements of the illusion remain, so while the creature is aware of the illusion's presence, the creature can still physically interact with the illusion.", + "document": "srd", + "level": 7, + "school": "illusion", + "higher_level": "", + "target_type": "area", + "range": "Sight", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 days", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_mirror-image", + "fields": { + "name": "Mirror Image", + "desc": "Three illusionary duplicates of yourself appear in your space. Until the end of the spell, duplicates move with you and imitate your actions, swapping their position so that it is impossible to determine which image is real. You can use your action to dispel the illusory duplicates. Whenever a creature is targeting you with an attack during the duration of the spell, roll 1d20 to determine if the attack does not target rather one of your duplicates. If you have three duplicates, you need 6 or more on your throw to lead the target of the attack to a duplicate. With two duplicates, you need 8 or more. With one duplicate, you need 11 or more. The CA of a duplicate is 10 + your Dexterity modifier. If an attack hits a duplicate, it is destroyed. A duplicate may be destroyed not just an attack on key. It ignores other damage and effects. The spell ends if the three duplicates are destroyed. A creature is unaffected by this fate if she can not see if it relies on a different meaning as vision, such as blind vision, or if it can perceive illusions as false, as with clear vision.", + "document": "srd", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_mislead", + "fields": { + "name": "Mislead", + "desc": "You become invisible at the same time that an illusory double of you appears where you are standing. The double lasts for the duration, but the invisibility ends if you attack or cast a spell. You can use your action to move your illusory double up to twice your speed and make it gesture, speak, and behave in whatever way you choose. You can see through its eyes and hear through its ears as if you were located where it is. On each of your turns as a bonus action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are blinded and deafened in regard to your own surroundings.", + "document": "srd", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_misty-step", + "fields": { + "name": "Misty Step", + "desc": "Briefly surrounded by silvery mist, you teleport up to 30 feet to an unoccupied space that you can see.", + "document": "srd", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_modify-memory", + "fields": { + "name": "Modify Memory", + "desc": "You attempt to reshape another creature's memories. One creature that you can see must make a wisdom saving throw. If you are fighting the creature, it has advantage on the saving throw. On a failed save, the target becomes charmed by you for the duration. The charmed target is incapacitated and unaware of its surroundings, though it can still hear you. If it takes any damage or is targeted by another spell, this spell ends, and none of the target's memories are modified. While this charm lasts, you can affect the target's memory of an event that it experienced within the last 24 hours and that lasted no more than 10 minutes. You can permanently eliminate all memory of the event, allow the target to recall the event with perfect clarity and exacting detail, change its memory of the details of the event, or create a memory of some other event. You must speak to the target to describe how its memories are affected, and it must be able to understand your language for the modified memories to take root. Its mind fills in any gaps in the details of your description. If the spell ends before you have finished describing the modified memories, the creature's memory isn't altered. Otherwise, the modified memories take hold when the spell ends. A modified memory doesn't necessarily affect how a creature behaves, particularly if the memory contradicts the creature's natural inclinations, alignment, or beliefs. An illogical modified memory, such as implanting a memory of how much the creature enjoyed dousing itself in acid, is dismissed, perhaps as a bad dream. The DM might deem a modified memory too nonsensical to affect a creature in a significant manner. A remove curse or greater restoration spell cast on the target restores the creature's true memory.", + "document": "srd", + "level": 5, + "school": "enchantment", + "higher_level": "If you cast this spell using a spell slot of 6th level or higher, you can alter the target's memories of an event that took place up to 7 days ago (6th level), 30 days ago (7th level), 1 year ago (8th level), or any time in the creature's past (9th level).", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_moonbeam", + "fields": { + "name": "Moonbeam", + "desc": "A silvery beam of pale light shines down in a 5-foot-radius, 40-foot-high cylinder centered on a point within range. Until the spell ends, dim light fills the cylinder. When a creature enters the spell's area for the first time on a turn or starts its turn there, it is engulfed in ghostly flames that cause searing pain, and it must make a constitution saving throw. It takes 2d10 radiant damage on a failed save, or half as much damage on a successful one. A shapechanger makes its saving throw with disadvantage. If it fails, it also instantly reverts to its original form and can't assume a different form until it leaves the spell's light. On each of your turns after you cast this spell, you can use an action to move the beam 60 feet in any direction.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d10 for each slot level above 2nd.", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Several seeds of any moonseed plant and a piece of opalescent feldspar.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d10", + "damage_types": [ + "radiant" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_move-earth", + "fields": { + "name": "Move Earth", + "desc": "Choose an area of terrain no larger than 40 feet on a side within range. You can reshape dirt, sand, or clay in the area in any manner you choose for the duration. You can raise or lower the area's elevation, create or fill in a trench, erect or flatten a wall, or form a pillar. The extent of any such changes can't exceed half the area's largest dimension. So, if you affect a 40-foot square, you can create a pillar up to 20 feet high, raise or lower the square's elevation by up to 20 feet, dig a trench up to 20 feet deep, and so on. It takes 10 minutes for these changes to complete. At the end of every 10 minutes you spend concentrating on the spell, you can choose a new area of terrain to affect. Because the terrain's transformation occurs slowly, creatures in the area can't usually be trapped or injured by the ground's movement. This spell can't manipulate natural stone or stone construction. Rocks and structures shift to accommodate the new terrain. If the way you shape the terrain would make a structure unstable, it might collapse. Similarly, this spell doesn't directly affect plant growth. The moved earth carries any plants along with it.", + "document": "srd", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An iron blade and a small bag containing a mixture of soils-clay, loam, and sand.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "2 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_nondetection", + "fields": { + "name": "Nondetection", + "desc": "For the duration, you hide a target that you touch from divination magic. The target can be a willing creature or a place or an object no larger than 10 feet in any dimension. The target can't be targeted by any divination magic or perceived through magical scrying sensors.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of diamond dust worth 25 gp sprinkled over the target, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_pass-without-trace", + "fields": { + "name": "Pass without Trace", + "desc": "A veil of shadows and silence radiates from you, masking you and your companions from detection. For the duration, each creature you choose within 30 feet of you (including you) has a +10 bonus to Dexterity (Stealth) checks and can't be tracked except by magical means. A creature that receives this bonus leaves behind no tracks or other traces of its passage.", + "document": "srd", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Ashes from a burned leaf of mistletoe and a sprig of spruce.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_passwall", + "fields": { + "name": "Passwall", + "desc": "A passage appears at a point of your choice that you can see on a wooden, plaster, or stone surface (such as a wall, a ceiling, or a floor) within range, and lasts for the duration. You choose the opening's dimensions: up to 5 feet wide, 8 feet tall, and 20 feet deep. The passage creates no instability in a structure surrounding it. When the opening disappears, any creatures or objects still in the passage created by the spell are safely ejected to an unoccupied space nearest to the surface on which you cast the spell.", + "document": "srd", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of sesame seeds.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_phantasmal-killer", + "fields": { + "name": "Phantasmal Killer", + "desc": "You tap into the nightmares of a creature you can see within range and create an illusory manifestation of its deepest fears, visible only to that creature. The target must make a wisdom saving throw. On a failed save, the target becomes frightened for the duration. At the start of each of the target's turns before the spell ends, the target must succeed on a wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends.", + "document": "srd", + "level": 4, + "school": "illusion", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, the damage increases by 1d10 for each slot level above 4th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_phantom-steed", + "fields": { + "name": "Phantom Steed", + "desc": "A Large quasi-real, horselike creature appears on the ground in an unoccupied space of your choice within range. You decide the creature's appearance, but it is equipped with a saddle, bit, and bridle. Any of the equipment created by the spell vanishes in a puff of smoke if it is carried more than 10 feet away from the steed. For the duration, you or a creature you choose can ride the steed. The creature uses the statistics for a riding horse, except it has a speed of 100 feet and can travel 10 miles in an hour, or 13 miles at a fast pace. When the spell ends, the steed gradually fades, giving the rider 1 minute to dismount. The spell ends if you use an action to dismiss it or if the steed takes any damage.", + "document": "srd", + "level": 3, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_planar-ally", + "fields": { + "name": "Planar Ally", + "desc": "You beseech an otherworldly entity for aid. The being must be known to you: a god, a primordial, a demon prince, or some other being of cosmic power. That entity sends a celestial, an elemental, or a fiend loyal to it to aid you, making the creature appear in an unoccupied space within range. If you know a specific creature's name, you can speak that name when you cast this spell to request that creature, though you might get a different creature anyway (DM's choice). When the creature appears, it is under no compulsion to behave in any particular way. You can ask the creature to perform a service in exchange for payment, but it isn't obliged to do so. The requested task could range from simple (fly us across the chasm, or help us fight a battle) to complex (spy on our enemies, or protect us during our foray into the dungeon). You must be able to communicate with the creature to bargain for its services. Payment can take a variety of forms. A celestial might require a sizable donation of gold or magic items to an allied temple, while a fiend might demand a living sacrifice or a gift of treasure. Some creatures might exchange their service for a quest undertaken by you. As a rule of thumb, a task that can be measured in minutes requires a payment worth 100 gp per minute. A task measured in hours requires 1,000 gp per hour. And a task measured in days (up to 10 days) requires 10,000 gp per day. The DM can adjust these payments based on the circumstances under which you cast the spell. If the task is aligned with the creature's ethos, the payment might be halved or even waived. Nonhazardous tasks typically require only half the suggested payment, while especially dangerous tasks might require a greater gift. Creatures rarely accept tasks that seem suicidal. After the creature completes the task, or when the agreed-upon duration of service expires, the creature returns to its home plane after reporting back to you, if appropriate to the task and if possible. If you are unable to agree on a price for the creature's service, the creature immediately returns to its home plane. A creature enlisted to join your group counts as a member of it, receiving a full share of experience points awarded.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_planar-binding", + "fields": { + "name": "Planar Binding", + "desc": "With this spell, you attempt to bind a celestial, an elemental, a fey, or a fiend to your service. The creature must be within range for the entire casting of the spell. (Typically, the creature is first summoned into the center of an inverted magic circle in order to keep it trapped while this spell is cast.) At the completion of the casting, the target must make a charisma saving throw. On a failed save, it is bound to serve you for the duration. If the creature was summoned or created by another spell, that spell's duration is extended to match the duration of this spell. A bound creature must follow your instructions to the best of its ability. You might command the creature to accompany you on an adventure, to guard a location, or to deliver a message. The creature obeys the letter of your instructions, but if the creature is hostile to you, it strives to twist your words to achieve its own objectives. If the creature carries out your instructions completely before the spell ends, it travels to you to report this fact if you are on the same plane of existence. If you are on a different plane of existence, it returns to the place where you bound it and remains there until the spell ends.", + "document": "srd", + "level": 5, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of a higher level, the duration increases to 10 days with a 6th-level slot, to 30 days with a 7th-level slot, to 180 days with an 8th-level slot, and to a year and a day with a 9th-level spell slot.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A jewel worth at least 1,000 gp, which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_plane-shift", + "fields": { + "name": "Plane Shift", + "desc": "You and up to eight willing creatures who link hands in a circle are transported to a different plane of existence. You can specify a target destination in general terms, such as the City of Brass on the Elemental Plane of Fire or the palace of Dispater on the second level of the Nine Hells, and you appear in or near that destination. If you are trying to reach the City of Brass, for example, you might arrive in its Street of Steel, before its Gate of Ashes, or looking at the city from across the Sea of Fire, at the DM's discretion. Alternatively, if you know the sigil sequence of a teleportation circle on another plane of existence, this spell can take you to that circle. If the teleportation circle is too small to hold all the creatures you transported, they appear in the closest unoccupied spaces next to the circle. You can use this spell to banish an unwilling creature to another plane. Choose a creature within your reach and make a melee spell attack against it. On a hit, the creature must make a charisma saving throw. If the creature fails this save, it is transported to a random location on the plane of existence you specify. A creature so transported must find its own way back to your current plane of existence.", + "document": "srd", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A forked, metal rod worth at least 250 gp, attuned to a particular plane of existence.", + "material_cost": "250.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_plant-growth", + "fields": { + "name": "Plant Growth", + "desc": "This spell channels vitality into plants within a specific area. There are two possible uses for the spell, granting either immediate or long-term benefits. If you cast this spell using 1 action, choose a point within range. All normal plants in a 100-foot radius centered on that point become thick and overgrown. A creature moving through the area must spend 4 feet of movement for every 1 foot it moves. You can exclude one or more areas of any size within the spell's area from being affected. If you cast this spell over 8 hours, you enrich the land. All plants in a half-mile radius centered on a point within range become enriched for 1 year. The plants yield twice the normal amount of food when harvested.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_poison-spray", + "fields": { + "name": "Poison Spray", + "desc": "You extend your hand toward a creature you can see within range and project a puff of noxious gas from your palm. The creature must succeed on a Constitution saving throw or take 1d12 poison damage.", + "document": "srd", + "level": 0, + "school": "conjuration", + "higher_level": "This spell's damage increases by 1d12 when you reach 5th level (2d12), 11th level (3d12), and 17th level (4d12).", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_polymorph", + "fields": { + "name": "Polymorph", + "desc": "This spell transforms a creature that you can see within range into a new form. An unwilling creature must make a wisdom saving throw to avoid the effect. A shapechanger automatically succeeds on this saving throw. The transformation lasts for the duration, or until the target drops to 0 hit points or dies. The new form can be any beast whose challenge rating is equal to or less than the target's (or the target's level, if it doesn't have a challenge rating). The target's game statistics, including mental ability scores, are replaced by the statistics of the chosen beast. It retains its alignment and personality. The target assumes the hit points of its new form. When it reverts to its normal form, the creature returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak, cast spells, or take any other action that requires hands or speech. The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its equipment.", + "document": "srd", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A caterpillar cocoon.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_power-word-kill", + "fields": { + "name": "Power Word Kill", + "desc": "You utter a word of power that can compel one creature you can see within range to die instantly. If the creature you choose has 100 hit points or fewer, it dies. Otherwise, the spell has no effect.", + "document": "srd", + "level": 9, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_power-word-stun", + "fields": { + "name": "Power Word Stun", + "desc": "You speak a word of power that can overwhelm the mind of one creature you can see within range, leaving it dumbfounded. If the target has 150 hit points or fewer, it is stunned. Otherwise, the spell has no effect. The stunned target must make a constitution saving throw at the end of each of its turns. On a successful save, this stunning effect ends.", + "document": "srd", + "level": 8, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_prayer-of-healing", + "fields": { + "name": "Prayer of Healing", + "desc": "Up to six creatures of your choice that you can see within range each regain hit points equal to 2d8 + your spellcasting ability modifier. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the healing increases by 1d8 for each slot level above 2nd.", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 6, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_prestidigitation", + "fields": { + "name": "Prestidigitation", + "desc": "This spell is a minor magical trick that novice spellcasters use for practice. You create one of the following magical effects within 'range': \n- You create an instantaneous, harmless sensory effect, such as a shower of sparks, a puff of wind, faint musical notes, or an odd odor. \n- You instantaneously light or snuff out a candle, a torch, or a small campfire. \n- You instantaneously clean or soil an object no larger than 1 cubic foot. \n- You chill, warm, or flavor up to 1 cubic foot of nonliving material for 1 hour. \n- You make a color, a small mark, or a symbol appear on an object or a surface for 1 hour. \n- You create a nonmagical trinket or an illusory image that can fit in your hand and that lasts until the end of your next turn. \nIf you cast this spell multiple times, you can have up to three of its non-instantaneous effects active at a time, and you can dismiss such an effect as an action.", + "document": "srd", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_prismatic-spray", + "fields": { + "name": "Prismatic Spray", + "desc": "Eight multicolored rays of light flash from your hand. Each ray is a different color and has a different power and purpose. Each creature in a 60-foot cone must make a dexterity saving throw. For each target, roll a d8 to determine which color ray affects it.\n\n**1. Red.** The target takes 10d6 fire damage on a failed save, or half as much damage on a successful one.\n\n**2. Orange.** The target takes 10d6 acid damage on a failed save, or half as much damage on a successful one.\n\n**3. Yellow.** The target takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**4. Green.** The target takes 10d6 poison damage on a failed save, or half as much damage on a successful one.\n\n**5. Blue.** The target takes 10d6 cold damage on a failed save, or half as much damage on a successful one.\n\n**6. Indigo.** On a failed save, the target is restrained. It must then make a constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the petrified condition. The successes and failures don't need to be consecutive; keep track of both until the target collects three of a kind.\n\n**7. Violet.** On a failed save, the target is blinded. It must then make a wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of existence of the DM's choosing and is no longer blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.) \n\n**8. Special.** The target is struck by two rays. Roll twice more, rerolling any 8.", + "document": "srd", + "level": 7, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": "cone", + "shape_magnitude": 60, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_prismatic-wall", + "fields": { + "name": "Prismatic Wall", + "desc": "A shimmering, multicolored plane of light forms a vertical opaque wall-up to 90 feet long, 30 feet high, and 1 inch thick-centered on a point you can see within range. Alternatively, you can shape the wall into a sphere up to 30 feet in diameter centered on a point you choose within range. The wall remains in place for the duration. If you position the wall so that it passes through a space occupied by a creature, the spell fails, and your action and the spell slot are wasted. The wall sheds bright light out to a range of 100 feet and dim light for an additional 100 feet. You and creatures you designate at the time you cast the spell can pass through and remain near the wall without harm. If another creature that can see the wall moves to within 20 feet of it or starts its turn there, the creature must succeed on a constitution saving throw or become blinded for 1 minute. The wall consists of seven layers, each with a different color. When a creature attempts to reach into or pass through the wall, it does so one layer at a time through all the wall's layers. As it passes or reaches through each layer, the creature must make a dexterity saving throw or be affected by that layer's properties as described below. The wall can be destroyed, also one layer at a time, in order from red to violet, by means specific to each layer. Once a layer is destroyed, it remains so for the duration of the spell. A rod of cancellation destroys a prismatic wall, but an antimagic field has no effect on it.\n\n**1. Red.** The creature takes 10d6 fire damage on a failed save, or half as much damage on a successful one. While this layer is in place, nonmagical ranged attacks can't pass through the wall. The layer can be destroyed by dealing at least 25 cold damage to it.\n\n**2. Orange.** The creature takes 10d6 acid damage on a failed save, or half as much damage on a successful one. While this layer is in place, magical ranged attacks can't pass through the wall. The layer is destroyed by a strong wind.\n\n**3. Yellow.** The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 60 force damage to it.\n\n**4. Green.** The creature takes 10d6 poison damage on a failed save, or half as much damage on a successful one. A passwall spell, or another spell of equal or greater level that can open a portal on a solid surface, destroys this layer.\n\n**5. Blue.** The creature takes 10d6 cold damage on a failed save, or half as much damage on a successful one. This layer can be destroyed by dealing at least 25 fire damage to it.\n\n**6. Indigo.** On a failed save, the creature is restrained. It must then make a constitution saving throw at the end of each of its turns. If it successfully saves three times, the spell ends. If it fails its save three times, it permanently turns to stone and is subjected to the petrified condition. The successes and failures don't need to be consecutive; keep track of both until the creature collects three of a kind. While this layer is in place, spells can't be cast through the wall. The layer is destroyed by bright light shed by a daylight spell or a similar spell of equal or higher level.\n\n**7. Violet.** On a failed save, the creature is blinded. It must then make a wisdom saving throw at the start of your next turn. A successful save ends the blindness. If it fails that save, the creature is transported to another plane of the DM's choosing and is no longer blinded. (Typically, a creature that is on a plane that isn't its home plane is banished home, while other creatures are usually cast into the Astral or Ethereal planes.) This layer is destroyed by a dispel magic spell or a similar spell of equal or higher level that can end spells and magical effects.", + "document": "srd", + "level": 9, + "school": "abjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "fire" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_private-sanctum", + "fields": { + "name": "Private Sanctum", + "desc": "You make an area within range magically secure. The area is a cube that can be as small as 5 feet to as large as 100 feet on each side. The spell lasts for the duration or until you use an action to dismiss it. When you cast the spell, you decide what sort of security the spell provides, choosing any or all of the following properties: \n- Sound can't pass through the barrier at the edge of the warded area. \n- The barrier of the warded area appears dark and foggy, preventing vision (including darkvision) through it. \n- Sensors created by divination spells can't appear inside the protected area or pass through the barrier at its perimeter. \n- Creatures in the area can't be targeted by divination spells. \n- Nothing can teleport into or out of the warded area. \n- Planar travel is blocked within the warded area. \nCasting this spell on the same spot every day for a year makes this effect permanent.", + "document": "srd", + "level": 4, + "school": "abjuration", + "higher_level": "When you cast this spell using a spell slot of 5th level or higher, you can increase the size of the cube by 100 feet for each slot level beyond 4th. Thus you could protect a cube that can be up to 200 feet on one side by using a spell slot of 5th level.", + "target_type": "area", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A thin sheet of lead, a piece of opaque glass, a wad of cotton or cloth, and powdered chrysolite.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_produce-flame", + "fields": { + "name": "Produce Flame", + "desc": "A flickering flame appears in your hand. The flame remains there for the duration and harms neither you nor your equipment. The flame sheds bright light in a 10-foot radius and dim light for an additional 10 feet. The spell ends if you dismiss it as an action or if you cast it again. You can also attack with the flame, although doing so ends the spell. When you cast this spell, or as an action on a later turn, you can hurl the flame at a creature within 30 feet of you. Make a ranged spell attack. On a hit, the target takes 1d8 fire damage.", + "document": "srd", + "level": 0, + "school": "conjuration", + "higher_level": "This spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "fire" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_programmed-illusion", + "fields": { + "name": "Programmed Illusion", + "desc": "You create an illusion of an object, a creature, or some other visible phenomenon within range that activates when a specific condition occurs. The illusion is imperceptible until then. It must be no larger than a 30-foot cube, and you decide when you cast the spell how the illusion behaves and what sounds it makes. This scripted performance can last up to 5 minutes. When the condition you specify occurs, the illusion springs into existence and performs in the manner you described. Once the illusion finishes performing, it disappears and remains dormant for 10 minutes. After this time, the illusion can be activated again. The triggering condition can be as general or as detailed as you like, though it must be based on visual or audible conditions that occur within 30 feet of the area. For example, you could create an illusion of yourself to appear and warn off others who attempt to open a trapped door, or you could set the illusion to trigger only when a creature says the correct word or phrase. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature.", + "document": "srd", + "level": 6, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fleece and jade dust worth at least 25 gp.", + "material_cost": "25.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": "cube", + "shape_magnitude": 30, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_project-image", + "fields": { + "name": "Project Image", + "desc": "You create an illusory copy of yourself that lasts for the duration. The copy can appear at any location within range that you have seen before, regardless of intervening obstacles. The illusion looks and sounds like you but is intangible. If the illusion takes any damage, it disappears, and the spell ends. You can use your action to move this illusion up to twice your speed, and make it gesture, speak, and behave in whatever way you choose. It mimics your mannerisms perfectly. You can see through its eyes and hear through its ears as if you were in its space. On your turn as a bonus action, you can switch from using its senses to using your own, or back again. While you are using its senses, you are blinded and deafened in regard to your own surroundings. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image, and any noise it makes sounds hollow to the creature.", + "document": "srd", + "level": 7, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "500 miles", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small replica of you made from materials worth at least 5 gp.", + "material_cost": "5.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_protection-from-energy", + "fields": { + "name": "Protection from Energy", + "desc": "For the duration, the willing creature you touch has resistance to one damage type of your choice: acid, cold, fire, lightning, or thunder.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_protection-from-evil-and-good", + "fields": { + "name": "Protection from Evil and Good", + "desc": "Until the spell ends, one willing creature you touch is protected against certain types of creatures: aberrations, celestials, elementals, fey, fiends, and undead. The protection grants several benefits. Creatures of those types have disadvantage on attack rolls against the target. The target also can't be charmed, frightened, or possessed by them. If the target is already charmed, frightened, or possessed by such a creature, the target has advantage on any new saving throw against the relevant effect.", + "document": "srd", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Holy water or powdered silver and iron, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_protection-from-poison", + "fields": { + "name": "Protection from Poison", + "desc": "You touch a creature. If it is poisoned, you neutralize the poison. If more than one poison afflicts the target, you neutralize one poison that you know is present, or you neutralize one at random. For the duration, the target has advantage on saving throws against being poisoned, and it has resistance to poison damage.", + "document": "srd", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_purify-food-and-drink", + "fields": { + "name": "Purify Food and Drink", + "desc": "All nonmagical food and drink within a 5-foot radius sphere centered on a point of your choice within range is purified and rendered free of poison and disease.", + "document": "srd", + "level": 1, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "10 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": "sphere", + "shape_magnitude": 5, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_raise-dead", + "fields": { + "name": "Raise Dead", + "desc": "You return a dead creature you touch to life, provided that it has been dead no longer than 10 days. If the creature's soul is both willing and at liberty to rejoin the body, the creature returns to life with 1 hit point. This spell also neutralizes any poisons and cures nonmagical diseases that affected the creature at the time it died. This spell doesn't, however, remove magical diseases, curses, or similar effects; if these aren't first removed prior to casting the spell, they take effect when the creature returns to life. The spell can't return an undead creature to life. This spell closes all mortal wounds, but it doesn't restore missing body parts. If the creature is lacking body parts or organs integral for its survival-its head, for instance-the spell automatically fails. Coming back from the dead is an ordeal. The target takes a -4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears.", + "document": "srd", + "level": 5, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A diamond worth at least 500gp, which the spell consumes.", + "material_cost": "500.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_ray-of-enfeeblement", + "fields": { + "name": "Ray of Enfeeblement", + "desc": "A black beam of enervating energy springs from your finger toward a creature within range. Make a ranged spell attack against the target. On a hit, the target deals only half damage with weapon attacks that use Strength until the spell ends. At the end of each of the target's turns, it can make a constitution saving throw against the spell. On a success, the spell ends.", + "document": "srd", + "level": 2, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_ray-of-frost", + "fields": { + "name": "Ray of Frost", + "desc": "A frigid beam of blue-white light streaks toward a creature within range. Make a ranged spell attack against the target. On a hit, it takes 1d8 cold damage, and its speed is reduced by 10 feet until the start of your next turn.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "cold" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_regenerate", + "fields": { + "name": "Regenerate", + "desc": "You touch a creature and stimulate its natural healing ability. The target regains 4d8 + 15 hit points. For the duration of the spell, the target regains 1 hit point at the start of each of its turns (10 hit points each minute). The target's severed body members (fingers, legs, tails, and so on), if any, are restored after 2 minutes. If you have the severed part and hold it to the stump, the spell instantaneously causes the limb to knit to the stump.", + "document": "srd", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A prayer wheel and holy water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_reincarnate", + "fields": { + "name": "Reincarnate", + "desc": "You touch a dead humanoid or a piece of a dead humanoid. Provided that the creature has been dead no longer than 10 days, the spell forms a new adult body for it and then calls the soul to enter that body. If the target's soul isn't free or willing to do so, the spell fails. The magic fashions a new body for the creature to inhabit, which likely causes the creature's race to change. The DM rolls a d 100 and consults the following table to determine what form the creature takes when restored to life, or the DM chooses a form.\n\n**01-04** Dragonborn **05-13** Dwarf, hill **14-21** Dwarf, mountain **22-25** Elf, dark **26-34** Elf, high **35-42** Elf, wood **43-46** Gnome, forest **47-52** Gnome, rock **53-56** Half-elf **57-60** Half-orc **61-68** Halfling, lightfoot **69-76** Halfling, stout **77-96** Human **97-00** Tiefling \nThe reincarnated creature recalls its former life and experiences. It retains the capabilities it had in its original form, except it exchanges its original race for the new one and changes its racial traits accordingly.", + "document": "srd", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Rare oils and unguents worth at least 1,000 gp, which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_remove-curse", + "fields": { + "name": "Remove Curse", + "desc": "At your touch, all curses affecting one creature or object end. If the object is a cursed magic item, its curse remains, but the spell breaks its owner's attunement to the object so it can be removed or discarded.", + "document": "srd", + "level": 3, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_resilient-sphere", + "fields": { + "name": "Resilient Sphere", + "desc": "A sphere of shimmering force encloses a creature or object of Large size or smaller within range. An unwilling creature must make a dexterity saving throw. On a failed save, the creature is enclosed for the duration. Nothing-not physical objects, energy, or other spell effects-can pass through the barrier, in or out, though a creature in the sphere can breathe there. The sphere is immune to all damage, and a creature or object inside can't be damaged by attacks or effects originating from outside, nor can a creature inside the sphere damage anything outside it. The sphere is weightless and just large enough to contain the creature or object inside. An enclosed creature can use its action to push against the sphere's walls and thus roll the sphere at up to half the creature's speed. Similarly, the globe can be picked up and moved by other creatures. A disintegrate spell targeting the globe destroys it without harming anything inside it.", + "document": "srd", + "level": 4, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A hemispherical piece of clear crystal and a matching hemispherical piece of gum arabic.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_resistance", + "fields": { + "name": "Resistance", + "desc": "You touch one willing creature. Once before the spell ends, the target can roll a d4 and add the number rolled to one saving throw of its choice. It can roll the die before or after making the saving throw. The spell then ends.", + "document": "srd", + "level": 0, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A miniature cloak.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_resurrection", + "fields": { + "name": "Resurrection", + "desc": "You touch a dead creature that has been dead for no more than a century, that didn't die of old age, and that isn't undead. If its soul is free and willing, the target returns to life with all its hit points. This spell neutralizes any poisons and cures normal diseases afflicting the creature when it died. It doesn't, however, remove magical diseases, curses, and the like; if such effects aren't removed prior to casting the spell, they afflict the target on its return to life. This spell closes all mortal wounds and restores any missing body parts. Coming back from the dead is an ordeal. The target takes a -4 penalty to all attack rolls, saving throws, and ability checks. Every time the target finishes a long rest, the penalty is reduced by 1 until it disappears. Casting this spell to restore life to a creature that has been dead for one year or longer taxes you greatly. Until you finish a long rest, you can't cast spells again, and you have disadvantage on all attack rolls, ability checks, and saving throws.", + "document": "srd", + "level": 7, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A diamond worth at least 1,000gp, which the spell consumes.", + "material_cost": "1000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_reverse-gravity", + "fields": { + "name": "Reverse Gravity", + "desc": "This spell reverses gravity in a 50-foot-radius, 100-foot high cylinder centered on a point within range. All creatures and objects that aren't somehow anchored to the ground in the area fall upward and reach the top of the area when you cast this spell. A creature can make a dexterity saving throw to grab onto a fixed object it can reach, thus avoiding the fall. If some solid object (such as a ceiling) is encountered in this fall, falling objects and creatures strike it just as they would during a normal downward fall. If an object or creature reaches the top of the area without striking anything, it remains there, oscillating slightly, for the duration. At the end of the duration, affected objects and creatures fall back down.", + "document": "srd", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "100 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A lodestone and iron filings.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cylinder", + "shape_magnitude": 100, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_revivify", + "fields": { + "name": "Revivify", + "desc": "You touch a creature that has died within the last minute. That creature returns to life with 1 hit point. This spell can't return to life a creature that has died of old age, nor can it restore any missing body parts.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Diamonds worth 300gp, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_rope-trick", + "fields": { + "name": "Rope Trick", + "desc": "You touch a length of rope that is up to 60 feet long. One end of the rope then rises into the air until the whole rope hangs perpendicular to the ground. At the upper end of the rope, an invisible entrance opens to an extradimensional space that lasts until the spell ends. The extradimensional space can be reached by climbing to the top of the rope. The space can hold as many as eight Medium or smaller creatures. The rope can be pulled into the space, making the rope disappear from view outside the space. Attacks and spells can't cross through the entrance into or out of the extradimensional space, but those inside can see out of it as if through a 3-foot-by-5-foot window centered on the rope. Anything inside the extradimensional space drops out when the spell ends.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Powdered corn extract and a twisted loop of parchment.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_sacred-flame", + "fields": { + "name": "Sacred Flame", + "desc": "Flame-like radiance descends on a creature that you can see within range. The target must succeed on a dexterity saving throw or take 1d8 radiant damage. The target gains no benefit from cover for this saving throw.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_sanctuary", + "fields": { + "name": "Sanctuary", + "desc": "You ward a creature within range against attack. Until the spell ends, any creature who targets the warded creature with an attack or a harmful spell must first make a wisdom saving throw. On a failed save, the creature must choose a new target or lose the attack or spell. This spell doesn't protect the warded creature from area effects, such as the explosion of a fireball. If the warded creature makes an attack or casts a spell that affects an enemy creature, this spell ends.", + "document": "srd", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small silver mirror.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_scorching-ray", + "fields": { + "name": "Scorching Ray", + "desc": "You create three rays of fire and hurl them at targets within range. You can hurl them at one target or several. Make a ranged spell attack for each ray. On a hit, the target takes 2d6 fire damage.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, you create one additional ray for each slot level above 2nd.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 3, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "2d6", + "damage_types": [ + "fire" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_scrying", + "fields": { + "name": "Scrying", + "desc": "You can see and hear a particular creature you choose that is on the same plane of existence as you. The target must make a wisdom saving throw, which is modified by how well you know the target and the sort of physical connection you have to it. If a target knows you're casting this spell, it can fail the saving throw voluntarily if it wants to be observed.\n\n**Knowledge & Save Modifier** Secondhand (you have heard of the target) +5 Firsthand (you have met the target) +0 Familiar (you know the target well) -5 **Connection & Save Modifier** Likeness or picture -2 Possession or garment -4 Body part, lock of hair, bit of nail, or the like -10 \nOn a successful save, the target isn't affected, and you can't use this spell against it again for 24 hours. On a failed save, the spell creates an invisible sensor within 10 feet of the target. You can see and hear through the sensor as if you were there. The sensor moves with the target, remaining within 10 feet of it for the duration. A creature that can see invisible objects sees the sensor as a luminous orb about the size of your fist. Instead of targeting a creature, you can choose a location you have seen before as the target of this spell. When you do, the sensor appears at that location and doesn't move.", + "document": "srd", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A focus worth at least 1,000 gp, such as a crystal ball, a silver mirror, or a font filled with holy water.", + "material_cost": "1000.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_secret-chest", + "fields": { + "name": "Secret Chest", + "desc": "You hide a chest, and all its contents, on the Ethereal Plane. You must touch the chest and the miniature replica that serves as a material component for the spell. The chest can contain up to 12 cubic feet of nonliving material (3 feet by 2 feet by 2 feet). While the chest remains on the Ethereal Plane, you can use an action and touch the replica to recall the chest. It appears in an unoccupied space on the ground within 5 feet of you. You can send the chest back to the Ethereal Plane by using an action and touching both the chest and the replica. After 60 days, there is a cumulative 5 percent chance per day that the spell's effect ends. This effect ends if you cast this spell again, if the smaller replica chest is destroyed, or if you choose to end the spell as an action. If the spell ends and the larger chest is on the Ethereal Plane, it is irretrievably lost.", + "document": "srd", + "level": 4, + "school": "conjuration", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An exquisite chest, 3 feet by 2 feet by 2 feet, constructed from rare materials worth at least 5,000 gp, and a Tiny replica made from the same materials worth at least 50 gp.", + "material_cost": "5000.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_see-invisibility", + "fields": { + "name": "See Invisibility", + "desc": "For the duration of the spell, you see invisible creatures and objects as if they were visible, and you can see through Ethereal. The ethereal objects and creatures appear ghostly translucent.", + "document": "srd", + "level": 2, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A dash of talc and a small amount of silver powder.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_seeming", + "fields": { + "name": "Seeming", + "desc": "This spell allows you to change the appearance of any number of creatures that you can see within range. You give each target you choose a new, illusory appearance. An unwilling target can make a charisma saving throw, and if it succeeds, it is unaffected by this spell. The spell disguises physical appearance as well as clothing, armor, weapons, and equipment. You can make each creature seem 1 foot shorter or taller and appear thin, fat, or in between. You can't change a target's body type, so you must choose a form that has the same basic arrangement of limbs. Otherwise, the extent of the illusion is up to you. The spell lasts for the duration, unless you use your action to dismiss it sooner. The changes wrought by this spell fail to hold up to physical inspection. For example, if you use this spell to add a hat to a creature's outfit, objects pass through the hat, and anyone who touches it would feel nothing or would feel the creature's head and hair. If you use this spell to appear thinner than you are, the hand of someone who reaches out to touch you would bump into you while it was seemingly still in midair. A creature can use its action to inspect a target and make an Intelligence (Investigation) check against your spell save DC. If it succeeds, it becomes aware that the target is disguised.", + "document": "srd", + "level": 5, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_sending", + "fields": { + "name": "Sending", + "desc": "You send a short message of twenty-five words or less to a creature with which you are familiar. The creature hears the message in its mind, recognizes you as the sender if it knows you, and can answer in a like manner immediately. The spell enables creatures with Intelligence scores of at least 1 to understand the meaning of your message. You can send the message across any distance and even to other planes of existence, but if the target is on a different plane than you, there is a 5 percent chance that the message doesn't arrive.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Unlimited", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A short piece of fine copper wire.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_sequester", + "fields": { + "name": "Sequester", + "desc": "By means of this spell, a willing creature or an object can be hidden away, safe from detection for the duration. When you cast the spell and touch the target, it becomes invisible and can't be targeted by divination spells or perceived through scrying sensors created by divination spells. If the target is a creature, it falls into a state of suspended animation. Time ceases to flow for it, and it doesn't grow older. You can set a condition for the spell to end early. The condition can be anything you choose, but it must occur or be visible within 1 mile of the target. Examples include \"after 1,000 years\" or \"when the tarrasque awakens.\" This spell also ends if the target takes any damage.", + "document": "srd", + "level": 7, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A powder composed of diamond, emerald, ruby, and sapphire dust worth at least 5,000 gp, which the spell consumes.", + "material_cost": "5000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_shapechange", + "fields": { + "name": "Shapechange", + "desc": "You assume the form of a different creature for the duration. The new form can be of any creature with a challenge rating equal to your level or lower. The creature can't be a construct or an undead, and you must have seen the sort of creature at least once. You transform into an average example of that creature, one without any class levels or the Spellcasting trait. Your game statistics are replaced by the statistics of the chosen creature, though you retain your alignment and Intelligence, Wisdom, and Charisma scores. You also retain all of your skill and saving throw proficiencies, in addition to gaining those of the creature. If the creature has the same proficiency as you and the bonus listed in its statistics is higher than yours, use the creature's bonus in place of yours. You can't use any legendary actions or lair actions of the new form. You assume the hit points and Hit Dice of the new form. When you revert to your normal form, you return to the number of hit points you had before you transformed. If you revert as a result of dropping to 0 hit points, any excess damage carries over to your normal form. As long as the excess damage doesn't reduce your normal form to 0 hit points, you aren't knocked unconscious. You retain the benefit of any features from your class, race, or other source and can use them, provided that your new form is physically capable of doing so. You can't use any special senses you have (for example, darkvision) unless your new form also has that sense. You can only speak if the creature can normally speak. When you transform, you choose whether your equipment falls to the ground, merges into the new form, or is worn by it. Worn equipment functions as normal. The DM determines whether it is practical for the new form to wear a piece of equipment, based on the creature's shape and size. Your equipment doesn't change shape or size to match the new form, and any equipment that the new form can't wear must either fall to the ground or merge into your new form. Equipment that merges has no effect in that state. During this spell's duration, you can use your action to assume a different form following the same restrictions and rules for the original form, with one exception: if your new form has more hit points than your current one, your hit points remain at their current value.", + "document": "srd", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A jade circlet worth at least 1,500 gp, which you must place on your head before you cast the spell.", + "material_cost": "1500.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_shatter", + "fields": { + "name": "Shatter", + "desc": "A sudden loud ringing noise, painfully intense, erupts from a point of your choice within range. Each creature in a 10-­--foot-­--radius sphere centered on that point must make a Constitution saving throw. A creature takes 3d8 thunder damage on a failed save, or half as much damage on a successful one. A creature made of inorganic material such as stone,crystal, or metal has disadvantage on this saving throw. A nonmagical object that isn't being worn or carried also takes the damage if it's in the spell's area.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for each slot level above 2nd.", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A burst of mica.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_shield", + "fields": { + "name": "Shield", + "desc": "An invisible barrier of magical force appears and protects you. Until the start of your next turn, you have a +5 bonus to AC, including against the triggering attack, and you take no damage from magic missile.", + "document": "srd", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "reaction", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_shield-of-faith", + "fields": { + "name": "Shield of Faith", + "desc": "A shimmering field appears and surrounds a creature of your choice within range, granting it a +2 bonus to AC for the duration.", + "document": "srd", + "level": 1, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small parchment with a bit of holy text written on it.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_shillelagh", + "fields": { + "name": "Shillelagh", + "desc": "The wood of a club or a quarterstaff you are holding is imbued with nature's power. For the duration, you can use your spellcasting ability instead of Strength for the attack and damage rolls of melee attacks using that weapon, and the weapon's damage die becomes a d8. The weapon also becomes magical, if it isn't already. The spell ends if you cast it again or if you let go of the weapon.", + "document": "srd", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Mistletoe, a shamrock leaf, and a club or quarterstaff.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_shocking-grasp", + "fields": { + "name": "Shocking Grasp", + "desc": "Lightning springs from your hand to deliver a shock to a creature you try to touch. Make a melee spell attack against the target. You have advantage on the attack roll if the target is wearing armor made of metal. On a hit, the target takes 1d8 lightning damage, and it can't take reactions until the start of its next turn.", + "document": "srd", + "level": 0, + "school": "evocation", + "higher_level": "The spell's damage increases by 1d8 when you reach 5th level (2d8), 11th level (3d8), and 17th level (4d8).", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "1d8", + "damage_types": [ + "lightning" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_silence", + "fields": { + "name": "Silence", + "desc": "For the duration, no sound can be created within or pass through a 20-foot-radius sphere centered on a point you choose within range. Any creature or object entirely inside the sphere is immune to thunder damage, and creatures are deafened while entirely inside it. Casting a spell that includes a verbal component is impossible there.", + "document": "srd", + "level": 2, + "school": "illusion", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_silent-image", + "fields": { + "name": "Silent Image", + "desc": "You create the image of an object, a creature, or some other visible phenomenon that is no larger than a 15-foot cube. The image appears at a spot within range and lasts for the duration. The image is purely visual; it isn't accompanied by sound, smell, or other sensory effects. You can use your action to cause the image to move to any spot within range. As the image changes location, you can alter its appearance so that its movements appear natural for the image. For example, if you create an image of a creature and move it, you can alter the image so that it appears to be walking. Physical interaction with the image reveals it to be an illusion, because things can pass through it. A creature that uses its action to examine the image can determine that it is an illusion with a successful Intelligence (Investigation) check against your spell save DC. If a creature discerns the illusion for what it is, the creature can see through the image.", + "document": "srd", + "level": 1, + "school": "illusion", + "higher_level": "", + "target_type": "object", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of fleece.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "cube", + "shape_magnitude": 15, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_simulacrum", + "fields": { + "name": "Simulacrum", + "desc": "You shape an illusory duplicate of one beast or humanoid that is within range for the entire casting time of the spell. The duplicate is a creature, partially real and formed from ice or snow, and it can take actions and otherwise be affected as a normal creature. It appears to be the same as the original, but it has half the creature's hit point maximum and is formed without any equipment. Otherwise, the illusion uses all the statistics of the creature it duplicates. The simulacrum is friendly to you and creatures you designate. It obeys your spoken commands, moving and acting in accordance with your wishes and acting on your turn in combat. The simulacrum lacks the ability to learn or become more powerful, so it never increases its level or other abilities, nor can it regain expended spell slots. If the simulacrum is damaged, you can repair it in an alchemical laboratory, using rare herbs and minerals worth 100 gp per hit point it regains. The simulacrum lasts until it drops to 0 hit points, at which point it reverts to snow and melts instantly. If you cast this spell again, any currently active duplicates you created with this spell are instantly destroyed.", + "document": "srd", + "level": 7, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Snow or ice in quantities sufficient to made a life-size copy of the duplicated creature; some hair, fingernail clippings, or other piece of that creature's body placed inside the snow or ice; and powdered ruby worth 1,500 gp, sprinkled over the duplicate and consumed by the spell.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_sleep", + "fields": { + "name": "Sleep", + "desc": "This spell sends creatures into a magical slumber. Roll 5d8; the total is how many hit points of creatures this spell can affect. Creatures within 20 feet of a point you choose within range are affected in ascending order of their current hit points (ignoring unconscious creatures). Starting with the creature that has the lowest current hit points, each creature affected by this spell falls unconscious until the spell ends, the sleeper takes damage, or someone uses an action to shake or slap the sleeper awake. Subtract each creature's hit points from the total before moving on to the creature with the next lowest hit points. A creature's hit points must be equal to or less than the remaining total for that creature to be affected. Undead and creatures immune to being charmed aren't affected by this spell.", + "document": "srd", + "level": 1, + "school": "enchantment", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, roll an additional 2d8 for each slot level above 1st.", + "target_type": "creature", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of fine sand, rose petals, or a cricket.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_sleet-storm", + "fields": { + "name": "Sleet Storm", + "desc": "Until the spell ends, freezing rain and sleet fall in a 20-foot-tall cylinder with a 40-foot radius centered on a point you choose within range. The area is heavily obscured, and exposed flames in the area are doused. The ground in the area is covered with slick ice, making it difficult terrain. When a creature enters the spell's area for the first time on a turn or starts its turn there, it must make a dexterity saving throw. On a failed save, it falls prone. If a creature is concentrating in the spell's area, the creature must make a successful constitution saving throw against your spell save DC or lose concentration.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of dust and a few drops of water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cylinder", + "shape_magnitude": 40, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_slow", + "fields": { + "name": "Slow", + "desc": "You alter time around up to six creatures of your choice in a 40-foot cube within range. Each target must succeed on a wisdom saving throw or be affected by this spell for the duration. An affected target's speed is halved, it takes a -2 penalty to AC and dexterity saving throws, and it can't use reactions. On its turn, it can use either an action or a bonus action, not both. Regardless of the creature's abilities or magic items, it can't make more than one melee or ranged attack during its turn. If the creature attempts to cast a spell with a casting time of 1 action, roll a d20. On an 11 or higher, the spell doesn't take effect until the creature's next turn, and the creature must use its action on that turn to complete the spell. If it can't, the spell is wasted. A creature affected by this spell makes another wisdom saving throw at the end of its turn. On a successful save, the effect ends for it.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of molasses.", + "material_cost": null, + "material_consumed": false, + "target_count": 6, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "cube", + "shape_magnitude": 40, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_spare-the-dying", + "fields": { + "name": "Spare the Dying", + "desc": "You touch a living creature that has 0 hit points. The creature becomes stable. This spell has no effect on undead or constructs.", + "document": "srd", + "level": 0, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_speak-with-animals", + "fields": { + "name": "Speak with Animals", + "desc": "You gain the ability to comprehend and verbally communicate with beasts for the duration. The knowledge and awareness of many beasts is limited by their intelligence, but at a minimum, beasts can give you information about nearby locations and monsters, including whatever they can perceive or have perceived within the past day. You might be able to persuade a beast to perform a small favor for you, at the DM's discretion.", + "document": "srd", + "level": 1, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_speak-with-dead", + "fields": { + "name": "Speak with Dead", + "desc": "You grant the semblance of life and intelligence to a corpse of your choice within range, allowing it to answer the questions you pose. The corpse must still have a mouth and can't be undead. The spell fails if the corpse was the target of this spell within the last 10 days. Until the spell ends, you can ask the corpse up to five questions. The corpse knows only what it knew in life, including the languages it knew. Answers are usually brief, cryptic, or repetitive, and the corpse is under no compulsion to offer a truthful answer if you are hostile to it or it recognizes you as an enemy. This spell doesn't return the creature's soul to its body, only its animating spirit. Thus, the corpse can't learn new information, doesn't comprehend anything that has happened since it died, and can't speculate about future events.", + "document": "srd", + "level": 3, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Burning incense.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_speak-with-plants", + "fields": { + "name": "Speak with Plants", + "desc": "You imbue plants within 30 feet of you with limited sentience and animation, giving them the ability to communicate with you and follow your simple commands. You can question plants about events in the spell's area within the past day, gaining information about creatures that have passed, weather, and other circumstances. You can also turn difficult terrain caused by plant growth (such as thickets and undergrowth) into ordinary terrain that lasts for the duration. Or you can turn ordinary terrain where plants are present into difficult terrain that lasts for the duration, causing vines and branches to hinder pursuers, for example. Plants might be able to perform other tasks on your behalf, at the DM's discretion. The spell doesn't enable plants to uproot themselves and move about, but they can freely move branches, tendrils, and stalks. If a plant creature is in the area, you can communicate with it as if you shared a common language, but you gain no magical ability to influence it. This spell can cause the plants created by the entangle spell to release a restrained creature.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_spider-climb", + "fields": { + "name": "Spider Climb", + "desc": "Until the spell ends, one willing creature you touch gains the ability to move up, down, and across vertical surfaces and upside down along ceilings, while leaving its hands free. The target also gains a climbing speed equal to its walking speed.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of bitumen and a spider.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_spike-growth", + "fields": { + "name": "Spike Growth", + "desc": "The ground in a 20-foot radius centered on a point within range twists and sprouts hard spikes and thorns. The area becomes difficult terrain for the duration. When a creature moves into or within the area, it takes 2d4 piercing damage for every 5 feet it travels. The development of land is camouflaged to look natural. Any creature that does not see the area when the spell is spell casts must make a Wisdom (Perception) check against your spell save DC to recognize the terrain as hazardous before entering it.", + "document": "srd", + "level": 2, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Seven sharp spines or seven twigs cut peak.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "2d4", + "damage_types": [ + "piercing" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_spirit-guardians", + "fields": { + "name": "Spirit Guardians", + "desc": "You call forth spirits to protect you. They flit around you to a distance of 15 feet for the duration. If you are good or neutral, their spectral form appears angelic or fey (your choice). If you are evil, they appear fiendish. When you cast this spell, you can designate any number of creatures you can see to be unaffected by it. An affected creature's speed is halved in the area, and when the creature enters the area for the first time on a turn or starts its turn there, it must make a wisdom saving throw. On a failed save, the creature takes 3d8 radiant damage (if you are good or neutral) or 3d8 necrotic damage (if you are evil). On a successful save, the creature takes half as much damage.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d8 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A holy symbol.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "radiant" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_spiritual-weapon", + "fields": { + "name": "Spiritual Weapon", + "desc": "You create a floating, spectral weapon within range that lasts for the duration or until you cast this spell again. When you cast the spell, you can make a melee spell attack against a creature within 5 feet of the weapon. On a hit, the target takes force damage equal to 1d8 + your spellcasting ability modifier. As a bonus action on your turn, you can move the weapon up to 20 feet and repeat the attack against a creature within 5 feet of it. The weapon can take whatever form you choose. Clerics of deities who are associated with a particular weapon (as St. Cuthbert is known for his mace and Thor for his hammer) make this spell's effect resemble that weapon.", + "document": "srd", + "level": 2, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 3rd level or higher, the damage increases by 1d8 for every two slot levels above the 2nd.", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_stinking-cloud", + "fields": { + "name": "Stinking Cloud", + "desc": "You create a 20-foot-radius sphere of yellow, nauseating gas centered on a point within range. The cloud spreads around corners, and its area is heavily obscured. The cloud lingers in the air for the duration. Each creature that is completely within the cloud at the start of its turn must make a constitution saving throw against poison. On a failed save, the creature spends its action that turn retching and reeling. Creatures that don't need to breathe or are immune to poison automatically succeed on this saving throw. A moderate wind (at least 10 miles per hour) disperses the cloud after 4 rounds. A strong wind (at least 20 miles per hour) disperses it after 1 round.", + "document": "srd", + "level": 3, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "90 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A rotten egg or several skunk cabbage leaves.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_stone-shape", + "fields": { + "name": "Stone Shape", + "desc": "You touch a stone object of Medium size or smaller or a section of stone no more than 5 feet in any dimension and form it into any shape that suits your purpose. So, for example, you could shape a large rock into a weapon, idol, or coffer, or make a small passage through a wall, as long as the wall is less than 5 feet thick. You could also shape a stone door or its frame to seal the door shut. The object you create can have up to two hinges and a latch, but finer mechanical detail isn't possible.", + "document": "srd", + "level": 4, + "school": "transmutation", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Soft clay, to be crudely worked into the desired shape for the stone object.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_stoneskin", + "fields": { + "name": "Stoneskin", + "desc": "This spell turns the flesh of a willing creature you touch as hard as stone. Until the spell ends, the target has resistance to nonmagical bludgeoning, piercing, and slashing damage.", + "document": "srd", + "level": 4, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Diamond dust worth 100 gp, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_storm-of-vengeance", + "fields": { + "name": "Storm of Vengeance", + "desc": "A churning storm cloud forms, centered on a point you can see and spreading to a radius of 360 feet. Lightning flashes in the area, thunder booms, and strong winds roar. Each creature under the cloud (no more than 5,000 feet beneath the cloud) when it appears must make a constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 5 minutes. Each round you maintain concentration on this spell, the storm produces additional effects on your turn.\n\n**Round 2.** Acidic rain falls from the cloud. Each creature and object under the cloud takes 1d6 acid damage.\n\n**Round 3.** You call six bolts of lightning from the cloud to strike six creatures or objects of your choice beneath the cloud. A given creature or object can't be struck by more than one bolt. A struck creature must make a dexterity saving throw. The creature takes 10d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**Round 4.** Hailstones rain down from the cloud. Each creature under the cloud takes 2d6 bludgeoning damage.\n\n**Round 5-10.** Gusts and freezing rain assail the area under the cloud. The area becomes difficult terrain and is heavily obscured. Each creature there takes 1d6 cold damage. Ranged weapon attacks in the area are impossible. The wind and rain count as a severe distraction for the purposes of maintaining concentration on spells. Finally, gusts of strong wind (ranging from 20 to 50 miles per hour) automatically disperse fog, mists, and similar phenomena in the area, whether mundane or magical.", + "document": "srd", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "Sight", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d6", + "damage_types": [ + "thunder" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_suggestion", + "fields": { + "name": "Suggestion", + "desc": "You suggest a course of activity (limited to a sentence or two) and magically influence a creature you can see within range that can hear and understand you. Creatures that can't be charmed are immune to this effect. The suggestion must be worded in such a manner as to make the course of action sound reasonable. Asking the creature to stab itself, throw itself onto a spear, immolate itself, or do some other obviously harmful act ends the spell. The target must make a wisdom saving throw. On a failed save, it pursues the course of action you described to the best of its ability. The suggested course of action can continue for the entire duration. If the suggested activity can be completed in a shorter time, the spell ends when the subject finishes what it was asked to do. You can also specify conditions that will trigger a special activity during the duration. For example, you might suggest that a knight give her warhorse to the first beggar she meets. If the condition isn't met before the spell expires, the activity isn't performed. If you or any of your companions damage the target, the spell ends.", + "document": "srd", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "A snake's tongue and either a bit of honeycomb or a drop of sweet oil.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_sunbeam", + "fields": { + "name": "Sunbeam", + "desc": "A beam of brilliant light flashes out from your hand in a 5-foot-wide, 60-foot-long line. Each creature in the line must make a constitution saving throw. On a failed save, a creature takes 6d8 radiant damage and is blinded until your next turn. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw. You can create a new line of radiance as your action on any turn until the spell ends. For the duration, a mote of brilliant radiance shines in your hand. It sheds bright light in a 30-foot radius and dim light for an additional 30 feet. This light is sunlight.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A magnifying glass.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "6d8", + "damage_types": [ + "radiant" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_sunburst", + "fields": { + "name": "Sunburst", + "desc": "Brilliant sunlight flashes in a 60-foot radius centered on a point you choose within range. Each creature in that light must make a constitution saving throw. On a failed save, a creature takes 12d6 radiant damage and is blinded for 1 minute. On a successful save, it takes half as much damage and isn't blinded by this spell. Undead and oozes have disadvantage on this saving throw. A creature blinded by this spell makes another constitution saving throw at the end of each of its turns. On a successful save, it is no longer blinded. This spell dispels any darkness in its area that was created by a spell.", + "document": "srd", + "level": 8, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "150 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Fire and a piece of sunstone.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "12d6", + "damage_types": [ + "radiant" + ], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_symbol", + "fields": { + "name": "Symbol", + "desc": "When you cast this spell, you inscribe a harmful glyph either on a surface (such as a section of floor, a wall, or a table) or within an object that can be closed to conceal the glyph (such as a book, a scroll, or a treasure chest). If you choose a surface, the glyph can cover an area of the surface no larger than 10 feet in diameter. If you choose an object, that object must remain in its place; if the object is moved more than 10 feet from where you cast this spell, the glyph is broken, and the spell ends without being triggered. The glyph is nearly invisible, requiring an Intelligence (Investigation) check against your spell save DC to find it. You decide what triggers the glyph when you cast the spell. For glyphs inscribed on a surface, the most typical triggers include touching or stepping on the glyph, removing another object covering it, approaching within a certain distance of it, or manipulating the object that holds it. For glyphs inscribed within an object, the most common triggers are opening the object, approaching within a certain distance of it, or seeing or reading the glyph. You can further refine the trigger so the spell is activated only under certain circumstances or according to a creature's physical characteristics (such as height or weight), or physical kind (for example, the ward could be set to affect hags or shapechangers). You can also specify creatures that don't trigger the glyph, such as those who say a certain password. When you inscribe the glyph, choose one of the options below for its effect. Once triggered, the glyph glows, filling a 60-foot-radius sphere with dim light for 10 minutes, after which time the spell ends. Each creature in the sphere when the glyph activates is targeted by its effect, as is a creature that enters the sphere for the first time on a turn or ends its turn there.\n\n**Death.** Each target must make a constitution saving throw, taking 10d 10 necrotic damage on a failed save, or half as much damage on a successful save\n\n **Discord.** Each target must make a constitution saving throw. On a failed save, a target bickers and argues with other creatures for 1 minute. During this time, it is incapable of meaningful communication and has disadvantage on attack rolls and ability checks.\n\n**Fear.** Each target must make a wisdom saving throw and becomes frightened for 1 minute on a failed save. While frightened, the target drops whatever it is holding and must move at least 30 feet away from the glyph on each of its turns, if able.\n\n**Hopelessness.** Each target must make a charisma saving throw. On a failed save, the target is overwhelmed with despair for 1 minute. During this time, it can't attack or target any creature with harmful abilities, spells, or other magical effects.\n\n**Insanity.** Each target must make an intelligence saving throw. On a failed save, the target is driven insane for 1 minute. An insane creature can't take actions, can't understand what other creatures say, can't read, and speaks only in gibberish. The DM controls its movement, which is erratic.\n\n**Pain.** Each target must make a constitution saving throw and becomes incapacitated with excruciating pain for 1 minute on a failed save.\n\n**Sleep.** Each target must make a wisdom saving throw and falls unconscious for 10 minutes on a failed save. A creature awakens if it takes damage or if someone uses an action to shake or slap it awake.\n\n**Stunning.** Each target must make a wisdom saving throw and becomes stunned for 1 minute on a failed save.", + "document": "srd", + "level": 7, + "school": "abjuration", + "higher_level": "", + "target_type": "object", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Mercury, phosphorus, and powdered diamond and opal with a total value of at least 1,000 gp, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "intelligence", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "until dispelled or triggered", + "shape_type": "sphere", + "shape_magnitude": 60, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_telekinesis", + "fields": { + "name": "Telekinesis", + "desc": "You gain the ability to move or manipulate creatures or objects by thought. When you cast the spell, and as your action each round for the duration, you can exert your will on one creature or object that you can see within range, causing the appropriate effect below. You can affect the same target round after round, or choose a new one at any time. If you switch targets, the prior target is no longer affected by the spell.\n\n**Creature.** You can try to move a Huge or smaller creature. Make an ability check with your spellcasting ability contested by the creature's Strength check. If you win the contest, you move the creature up to 30 feet in any direction, including upward but not beyond the range of this spell. Until the end of your next turn, the creature is restrained in your telekinetic grip. A creature lifted upward is suspended in mid-air. On subsequent rounds, you can use your action to attempt to maintain your telekinetic grip on the creature by repeating the contest.\n\n**Object.** You can try to move an object that weighs up to 1,000 pounds. If the object isn't being worn or carried, you automatically move it up to 30 feet in any direction, but not beyond the range of this spell. If the object is worn or carried by a creature, you must make an ability check with your spellcasting ability contested by that creature's Strength check. If you succeed, you pull the object away from that creature and can move it up to 30 feet in any direction but not beyond the range of this spell. You can exert fine control on objects with your telekinetic grip, such as manipulating a simple tool, opening a door or a container, stowing or retrieving an item from an open container, or pouring the contents from a vial.", + "document": "srd", + "level": 5, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_telepathic-bond", + "fields": { + "name": "Telepathic Bond", + "desc": "You forge a telepathic link among up to eight willing creatures of your choice within range, psychically linking each creature to all the others for the duration. Creatures with Intelligence scores of 2 or less aren't affected by this spell. Until the spell ends, the targets can communicate telepathically through the bond whether or not they have a common language. The communication is possible over any distance, though it can't extend to other planes of existence.", + "document": "srd", + "level": 5, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Pieces of eggshell from two different kinds of creatures", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_teleport", + "fields": { + "name": "Teleport", + "desc": "This spell instantly transports you and up to eight willing creatures of your choice that you can see within range, or a single object that you can see within range, to a destination you select. If you target an object, it must be able to fit entirely inside a 10-foot cube, and it can't be held or carried by an unwilling creature. The destination you choose must be known to you, and it must be on the same plane of existence as you. Your familiarity with the destination determines whether you arrive there successfully. The DM rolls d100 and consults the table.\n\n**Familiarity.** \"Permanent circle\" means a permanent teleportation circle whose sigil sequence you know. \"Associated object\" means that you possess an object taken from the desired destination within the last six months, such as a book from a wizard's library, bed linen from a royal suite, or a chunk of marble from a lich's secret tomb. \"Very familiar\" is a place you have been very often, a place you have carefully studied, or a place you can see when you cast the spell. \"Seen casually\" is someplace you have seen more than once but with which you aren't very familiar. \"Viewed once\" is a place you have seen once, possibly using magic. \"Description\" is a place whose location and appearance you know through someone else's description, perhaps from a map. \"False destination\" is a place that doesn't exist. Perhaps you tried to scry an enemy's sanctum but instead viewed an illusion, or you are attempting to teleport to a familiar location that no longer exists.\n\n**On Target.** You and your group (or the target object) appear where you want to.\n\n**Off Target.** You and your group (or the target object) appear a random distance away from the destination in a random direction. Distance off target is 1d10 × 1d10 percent of the distance that was to be traveled. For example, if you tried to travel 120 miles, landed off target, and rolled a 5 and 3 on the two d10s, then you would be off target by 15 percent, or 18 miles. The GM determines the direction off target randomly by rolling a d8 and designating 1 as north, 2 as northeast, 3 as east, and so on around the points of the compass. If you were teleporting to a coastal city and wound up 18 miles out at sea, you could be in trouble.\n\n**Similar Area.** You and your group (or the target object) wind up in a different area that's visually or thematically similar to the target area. If you are heading for your home laboratory, for example, you might wind up in another wizard's laboratory or in an alchemical supply shop that has many of the same tools and implements as your laboratory. Generally, you appear in the closest similar place, but since the spell has no range limit, you could conceivably wind up anywhere on the plane.\n\n**Mishap.** The spell's unpredictable magic results in a difficult journey. Each teleporting creature (or the target object) takes 3d10 force damage, and the GM rerolls on the table to see where you wind up (multiple mishaps can occur, dealing damage each time).", + "document": "srd", + "level": 7, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "3d10", + "damage_types": [ + "force" + ], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 10, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_teleportation-circle", + "fields": { + "name": "Teleportation Circle", + "desc": "As you cast the spell, you draw a 10-foot-diameter circle on the ground inscribed with sigils that link your location to a permanent teleportation circle of your choice whose sigil sequence you know and that is on the same plane of existence as you. A shimmering portal opens within the circle you drew and remains open until the end of your next turn. Any creature that enters the portal instantly appears within 5 feet of the destination circle or in the nearest unoccupied space if that space is occupied. Many major temples, guilds, and other important places have permanent teleportation circles inscribed somewhere within their confines. Each such circle includes a unique sigil sequence-a string of magical runes arranged in a particular pattern. When you first gain the ability to cast this spell, you learn the sigil sequences for two destinations on the Material Plane, determined by the DM. You can learn additional sigil sequences during your adventures. You can commit a new sigil sequence to memory after studying it for 1 minute. You can create a permanent teleportation circle by casting this spell in the same location every day for one year. You need not use the circle to teleport when you cast the spell in this way.", + "document": "srd", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "Rare chalks and inks infused with precious gems with 50 gp, which the spell consumes.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_thaumaturgy", + "fields": { + "name": "Thaumaturgy", + "desc": "You manifest a minor wonder, a sign of supernatural power, within range. You create one of the following magical effects within range. \n- Your voice booms up to three times as loud as normal for 1 minute. \n- You cause flames to flicker, brighten, dim, or change color for 1 minute. \n- You cause harmless tremors in the ground for 1 minute. \n- You create an instantaneous sound that originates from a point of your choice within range, such as a rumble of thunder, the cry of a raven, or ominous whispers. \n- You instantaneously cause an unlocked door or window to fly open or slam shut. \n- You alter the appearance of your eyes for 1 minute. \nIf you cast this spell multiple times, you can have up to three of its 1-minute effects active at a time, and you can dismiss such an effect as an action.", + "document": "srd", + "level": 0, + "school": "transmutation", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_thunderwave", + "fields": { + "name": "Thunderwave", + "desc": "A wave of thunderous force sweeps out from you. Each creature in a 15-foot cube originating from you must make a constitution saving throw. On a failed save, a creature takes 2d8 thunder damage and is pushed 10 feet away from you. On a successful save, the creature takes half as much damage and isn't pushed. In addition, unsecured objects that are completely within the area of effect are automatically pushed 10 feet away from you by the spell's effect, and the spell emits a thunderous boom audible out to 300 feet.", + "document": "srd", + "level": 1, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 2nd level or higher, the damage increases by 1d8 for each slot level above 1st.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "constitution", + "attack_roll": false, + "damage_roll": "2d8", + "damage_types": [ + "thunder" + ], + "duration": "instantaneous", + "shape_type": "cube", + "shape_magnitude": 15, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_time-stop", + "fields": { + "name": "Time Stop", + "desc": "You briefly stop the flow of time for everyone but yourself. No time passes for other creatures, while you take 1d4 + 1 turns in a row, during which you can use actions and move as normal. This spell ends if one of the actions you use during this period, or any effects that you create during this period, affects a creature other than you or an object being worn or carried by someone other than you. In addition, the spell ends if you move to a place more than 1,000 feet from the location where you cast it.", + "document": "srd", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_tiny-hut", + "fields": { + "name": "Tiny Hut", + "desc": "A 10-foot-radius immobile dome of force springs into existence around and above you and remains stationary for the duration. The spell ends if you leave its area. Nine creatures of Medium size or smaller can fit inside the dome with you. The spell fails if its area includes a larger creature or more than nine creatures. Creatures and objects within the dome when you cast this spell can move through it freely. All other creatures and objects are barred from passing through it. Spells and other magical effects can't extend through the dome or be cast through it. The atmosphere inside the space is comfortable and dry, regardless of the weather outside. Until the spell ends, you can command the interior to become dimly lit or dark. The dome is opaque from the outside, of any color you choose, but it is transparent from the inside.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "area", + "range": "Self", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small crystal bead.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_tongues", + "fields": { + "name": "Tongues", + "desc": "This spell grants the creature you touch the ability to understand any spoken language it hears. Moreover, when the target speaks, any creature that knows at least one language and can hear the target understands what it says.", + "document": "srd", + "level": 3, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": true, + "material_specified": "A small clay model of a ziggurat.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_transport-via-plants", + "fields": { + "name": "Transport via Plants", + "desc": "This spell creates a magical link between a Large or larger inanimate plant within range and another plant, at any distance, on the same plane of existence. You must have seen or touched the destination plant at least once before. For the duration, any creature can step into the target plant and exit from the destination plant by using 5 feet of movement.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "10 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_tree-stride", + "fields": { + "name": "Tree Stride", + "desc": "You gain the ability to enter a tree and move from inside it to inside another tree of the same kind within 500 feet. Both trees must be living and at least the same size as you. You must use 5 feet of movement to enter a tree. You instantly know the location of all other trees of the same kind within 500 feet and, as part of the move used to enter the tree, can either pass into one of those trees or step out of the tree you're in. You appear in a spot of your choice within 5 feet of the destination tree, using another 5 feet of movement. If you have no movement left, you appear within 5 feet of the tree you entered. You can use this transportation ability once per round for the duration. You must end each turn outside a tree.", + "document": "srd", + "level": 5, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_true-polymorph", + "fields": { + "name": "True Polymorph", + "desc": "Choose one creature or nonmagical object that you can see within range. You transform the creature into a different creature, the creature into an object, or the object into a creature (the object must be neither worn nor carried by another creature). The transformation lasts for the duration, or until the target drops to 0 hit points or dies. If you concentrate on this spell for the full duration, the transformation lasts until it is dispelled. This spell has no effect on a shapechanger or a creature with 0 hit points. An unwilling creature can make a Wisdom saving throw, and if it succeeds, it isn't affected by this spell.\n\n**Creature into Creature.** If you turn a creature into another kind of creature, the new form can be any kind you choose whose challenge rating is equal to or less than the target's (or its level, if the target doesn't have a challenge rating). The target's game statistics, including mental ability scores, are replaced by the statistics of the new form. It retains its alignment and personality. The target assumes the hit points of its new form, and when it reverts to its normal form, the creature returns to the number of hit points it had before it transformed. If it reverts as a result of dropping to 0 hit points, any excess damage carries over to its normal form. As long as the excess damage doesn't reduce the creature's normal form to 0 hit points, it isn't knocked unconscious. The creature is limited in the actions it can perform by the nature of its new form, and it can't speak, cast spells, or take any other action that requires hands or speech unless its new form is capable of such actions. The target's gear melds into the new form. The creature can't activate, use, wield, or otherwise benefit from any of its equipment.\n\n**Object into Creature.** You can turn an object into any kind of creature, as long as the creature's size is no larger than the object's size and the creature's challenge rating is 9 or lower. The creature is friendly to you and your companions. It acts on each of your turns. You decide what action it takes and how it moves. The DM has the creature's statistics and resolves all of its actions and movement. If the spell becomes permanent, you no longer control the creature. It might remain friendly to you, depending on how you have treated it.\n\n **Creature into Object.** If you turn a creature into an object, it transforms along with whatever it is wearing and carrying into that form. The creature's statistics become those of the object, and the creature has no memory of time spent in this form, after the spell ends and it returns to its normal form.", + "document": "srd", + "level": 9, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A drop of mercury, a dollop of gum arabic, and a wisp of smoke.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_true-resurrection", + "fields": { + "name": "True Resurrection", + "desc": "You touch a creature that has been dead for no longer than 200 years and that died for any reason except old age. If the creature's soul is free and willing, the creature is restored to life with all its hit points. This spell closes all wounds, neutralizes any poison, cures all diseases, and lifts any curses affecting the creature when it died. The spell replaces damaged or missing organs and limbs. The spell can even provide a new body if the original no longer exists, in which case you must speak the creature's name. The creature then appears in an unoccupied space you choose within 10 feet of you.", + "document": "srd", + "level": 9, + "school": "necromancy", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A sprinkle of holy water and diamonds worth at least 25,000gp, which the spell consumes.", + "material_cost": "25000.00", + "material_consumed": true, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_true-seeing", + "fields": { + "name": "True Seeing", + "desc": "This spell gives the willing creature you touch the ability to see things as they actually are. For the duration, the creature has truesight, notices secret doors hidden by magic, and can see into the Ethereal Plane, all out to a range of 120 feet.", + "document": "srd", + "level": 6, + "school": "divination", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "An ointment for the eyes that costs 25gp; is made from mushroom powder, saffron, and fat; and is consumed by the spell.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_true-strike", + "fields": { + "name": "True Strike", + "desc": "You extend your hand and point a finger at a target in range. Your magic grants you a brief insight into the target's defenses. On your next turn, you gain advantage on your first attack roll against the target, provided that this spell hasn't ended.", + "document": "srd", + "level": 0, + "school": "divination", + "higher_level": "", + "target_type": "point", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": false, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 round", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_unseen-servant", + "fields": { + "name": "Unseen Servant", + "desc": "This spell creates an invisible, mindless, shapeless force that performs simple tasks at your command until the spell ends. The servant springs into existence in an unoccupied space on the ground within range. It has AC 10, 1 hit point, and a Strength of 2, and it can't attack. If it drops to 0 hit points, the spell ends. Once on each of your turns as a bonus action, you can mentally command the servant to move up to 15 feet and interact with an object. The servant can perform simple tasks that a human servant could do, such as fetching things, cleaning, mending, folding clothes, lighting fires, serving food, and pouring wind. Once you give the command, the servant performs the task to the best of its ability until it completes the task, then waits for your next command. If you command the servant to perform a task that would move it more than 60 feet away from you, the spell ends.", + "document": "srd", + "level": 1, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A piece of string and a bit of wood.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_vampiric-touch", + "fields": { + "name": "Vampiric Touch", + "desc": "The touch of your shadow-wreathed hand can siphon life force from others to heal your wounds. Make a melee spell attack against a creature within your reach. On a hit, the target takes 3d6 necrotic damage, and you regain hit points equal to half the amount of necrotic damage dealt. Until the spell ends, you can make the attack again on each of your turns as an action.", + "document": "srd", + "level": 3, + "school": "necromancy", + "higher_level": "When you cast this spell using a spell slot of 4th level or higher, the damage increases by 1d6 for each slot level above 3rd.", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": true, + "damage_roll": "3d6", + "damage_types": [ + "necrotic" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_vicious-mockery", + "fields": { + "name": "Vicious Mockery", + "desc": "You unleash a string of insults laced with subtle enchantments at a creature you can see within range. If the target can hear you (though it need not understand you), it must succeed on a Wisdom saving throw or take 1d4 psychic damage and have disadvantage on the next attack roll it makes before the end of its next turn.", + "document": "srd", + "level": 0, + "school": "enchantment", + "higher_level": "This spell's damage increases by 1d4 when you reach 5th level (2d4), 11th level (3d4), and 17th level (4d4).", + "target_type": "creature", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_wall-of-fire", + "fields": { + "name": "Wall of Fire", + "desc": "You create a wall of fire on a solid surface within range. You can make the wall up to 60 feet long, 20 feet high, and 1 foot thick, or a ringed wall up to 20 feet in diameter, 20 feet high, and 1 foot thick. The wall is opaque and lasts for the duration. When the wall appears, each creature within its area must make a Dexterity saving throw. On a failed save, a creature takes 5d8 fire damage, or half as much damage on a successful save. One side of the wall, selected by you when you cast this spell, deals 5d8 fire damage to each creature that ends its turn within 10 feet o f that side or inside the wall. A creature takes the same damage when it enters the wall for the first time on a turn or ends its turn there. The other side o f the wall deals no damage. The other side of the wall deals no damage.", + "document": "srd", + "level": 4, + "school": "evocation", + "higher_level": "When you cast this spell using a level spell slot 5 or more, the damage of the spell increases by 1d8 for each level of higher spell slot to 4.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small piece of phosphorus.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "5d8", + "damage_types": [ + "fire" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_wall-of-force", + "fields": { + "name": "Wall of Force", + "desc": "An invisible wall of force springs into existence at a point you choose within range. The wall appears in any orientation you choose, as a horizontal or vertical barrier or at an angle. It can be free floating or resting on a solid surface. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-by-10-foot panels. Each panel must be contiguous with another panel. In any form, the wall is 1/4 inch thick. It lasts for the duration. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice which side). Nothing can physically pass through the wall. It is immune to all damage and can't be dispelled by dispel magic. A disintegrate spell destroys the wall instantly, however. The wall also extends into the Ethereal Plane, blocking ethereal travel through the wall.", + "document": "srd", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pinch of powder made by crushing a clear gemstone.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 10, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_wall-of-ice", + "fields": { + "name": "Wall of Ice", + "desc": "You create a wall of ice on a solid surface within range. You can form it into a hemispherical dome or a sphere with a radius of up to 10 feet, or you can shape a flat surface made up of ten 10-foot-square panels. Each panel must be contiguous with another panel. In any form, the wall is 1 foot thick and lasts for the duration. If the wall cuts through a creature's space when it appears, the creature within its area is pushed to one side of the wall and must make a dexterity saving throw. On a failed save, the creature takes 10d6 cold damage, or half as much damage on a successful save. The wall is an object that can be damaged and thus breached. It has AC 12 and 30 hit points per 10-foot section, and it is vulnerable to fire damage. Reducing a 10-foot section of wall to 0 hit points destroys it and leaves behind a sheet of frigid air in the space the wall occupied. A creature moving through the sheet of frigid air for the first time on a turn must make a constitution saving throw. That creature takes 5d6 cold damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "level": 6, + "school": "evocation", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, the damage the wall deals when it appears increases by 2d6, and the damage from passing through the sheet of frigid air increases by 1d6, for each slot level above 6th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small piece of quartz.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "10d6", + "damage_types": [ + "cold" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_wall-of-stone", + "fields": { + "name": "Wall of Stone", + "desc": "A nonmagical wall of solid stone springs into existence at a point you choose within range. The wall is 6 inches thick and is composed of ten 10-foot-by-10-foot panels. Each panel must be contiguous with at least one other panel. Alternatively, you can create 10-foot-by-20-foot panels that are only 3 inches thick. If the wall cuts through a creature's space when it appears, the creature is pushed to one side of the wall (your choice). If a creature would be surrounded on all sides by the wall (or the wall and another solid surface), that creature can make a dexterity saving throw. On a success, it can use its reaction to move up to its speed so that it is no longer enclosed by the wall. The wall can have any shape you desire, though it can't occupy the same space as a creature or object. The wall doesn't need to be vertical or rest on any firm foundation. It must, however, merge with and be solidly supported by existing stone. Thus, you can use this spell to bridge a chasm or create a ramp. If you create a span greater than 20 feet in length, you must halve the size of each panel to create supports. You can crudely shape the wall to create crenellations, battlements, and so on. The wall is an object made of stone that can be damaged and thus breached. Each panel has AC 15 and 30 hit points per inch of thickness. Reducing a panel to 0 hit points destroys it and might cause connected panels to collapse at the DM's discretion. If you maintain your concentration on this spell for its whole duration, the wall becomes permanent and can't be dispelled. Otherwise, the wall disappears when the spell ends.", + "document": "srd", + "level": 5, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A small block of granite.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_wall-of-thorns", + "fields": { + "name": "Wall of Thorns", + "desc": "You create a wall of tough, pliable, tangled brush bristling with needle-sharp thorns. The wall appears within range on a solid surface and lasts for the duration. You choose to make the wall up to 60 feet long, 10 feet high, and 5 feet thick or a circle that has a 20-foot diameter and is up to 20 feet high and 5 feet thick. The wall blocks line of sight. When the wall appears, each creature within its area must make a dexterity saving throw. On a failed save, a creature takes 7d8 piercing damage, or half as much damage on a successful save. A creature can move through the wall, albeit slowly and painfully. For every 1 foot a creature moves through the wall, it must spend 4 feet of movement. Furthermore, the first time a creature enters the wall on a turn or ends its turn there, the creature must make a dexterity saving throw. It takes 7d8 slashing damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "When you cast this spell using a spell slot of 7th level or higher, both types of damage increase by 1d8 for each slot level above 6th.", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A handful of thorns.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "7d8", + "damage_types": [ + "piercing" + ], + "duration": "10 minutes", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_warding-bond", + "fields": { + "name": "Warding Bond", + "desc": "This spell wards a willing creature you touch and creates a mystic connection between you and the target until the spell ends. While the target is within 60 feet of you, it gains a +1 bonus to AC and saving throws, and it has resistance to all damage. Also, each time it takes damage, you take the same amount of damage. The spell ends if you drop to 0 hit points or if you and the target become separated by more than 60 feet. It also ends if the spell is cast again on either of the connected creatures. You can also dismiss the spell as an action.", + "document": "srd", + "level": 2, + "school": "abjuration", + "higher_level": "", + "target_type": "creature", + "range": "Touch", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A pair of platinum rings worth at least 50gp each, which you and the target must wear for the duration.", + "material_cost": "50.00", + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_water-breathing", + "fields": { + "name": "Water Breathing", + "desc": "This spell gives a maximum of ten willing creatures within range and you can see, the ability to breathe underwater until the end of its term. Affected creatures also retain their normal breathing pattern.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A short piece of reed or straw.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "24 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_water-walk", + "fields": { + "name": "Water Walk", + "desc": "This spell grants the ability to move across any liquid surface-such as water, acid, mud, snow, quicksand, or lava-as if it were harmless solid ground (creatures crossing molten lava can still take damage from the heat). Up to ten willing creatures you can see within range gain this ability for the duration. If you target a creature submerged in a liquid, the spell carries the target to the surface of the liquid at a rate of 60 feet per round.", + "document": "srd", + "level": 3, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": true, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_web", + "fields": { + "name": "Web", + "desc": "You conjure a mass of thick, sticky webbing at a point of your choice within range. The webs fill a 20-foot cube from that point for the duration. The webs are difficult terrain and lightly obscure their area. If the webs aren't anchored between two solid masses (such as walls or trees) or layered across a floor, wall, or ceiling, the conjured web collapses on itself, and the spell ends at the start of your next turn. Webs layered over a flat surface have a depth of 5 feet. Each creature that starts its turn in the webs or that enters them during its turn must make a dexterity saving throw. On a failed save, the creature is restrained as long as it remains in the webs or until it breaks free. A creature restrained by the webs can use its action to make a Strength check against your spell save DC. If it succeeds, it is no longer restrained. The webs are flammable. Any 5-foot cube of webs exposed to fire burns away in 1 round, dealing 2d4 fire damage to any creature that starts its turn in the fire.", + "document": "srd", + "level": 2, + "school": "conjuration", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A bit of spiderweb.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "dexterity", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 hour", + "shape_type": "cube", + "shape_magnitude": 20, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_weird", + "fields": { + "name": "Weird", + "desc": "Drawing on the deepest fears of a group of creatures, you create illusory creatures in their minds, visible only to them. Each creature in a 30-foot-radius sphere centered on a point of your choice within range must make a wisdom saving throw. On a failed save, a creature becomes frightened for the duration. The illusion calls on the creature's deepest fears, manifesting its worst nightmares as an implacable threat. At the start of each of the frightened creature's turns, it must succeed on a wisdom saving throw or take 4d10 psychic damage. On a successful save, the spell ends for that creature.", + "document": "srd", + "level": 9, + "school": "illusion", + "higher_level": "", + "target_type": "creature", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "wisdom", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "1 minute", + "shape_type": "sphere", + "shape_magnitude": 30, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_wind-walk", + "fields": { + "name": "Wind Walk", + "desc": "You and up to ten willing creatures you can see within range assume a gaseous form for the duration, appearing as wisps of cloud. While in this cloud form, a creature has a flying speed of 300 feet and has resistance to damage from nonmagical weapons. The only actions a creature can take in this form are the Dash action or to revert to its normal form. Reverting takes 1 minute, during which time a creature is incapacitated and can't move. Until the spell ends, a creature can revert to cloud form, which also requires the 1-minute transformation. If a creature is in cloud form and flying when the effect ends, the creature descends 60 feet per round for 1 minute until it lands, which it does safely. If it can't land after 1 minute, the creature falls the remaining distance.", + "document": "srd", + "level": 6, + "school": "transmutation", + "higher_level": "", + "target_type": "creature", + "range": "30 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "Fire and holy water.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "8 hours", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_wind-wall", + "fields": { + "name": "Wind Wall", + "desc": "A wall of strong wind rises from the ground at a point you choose within range. You can make the wall up to 50 feet long, 15 feet high, and 1 foot thick. You can shape the wall in any way you choose so long as it makes one continuous path along the ground. The wall lasts for the duration. When the wall appears, each creature within its area must make a strength saving throw. A creature takes 3d8 bludgeoning damage on a failed save, or half as much damage on a successful one. The strong wind keeps fog, smoke, and other gases at bay. Small or smaller flying creatures or objects can't pass through the wall. Loose, lightweight materials brought into the wall fly upward. Arrows, bolts, and other ordinary projectiles launched at targets behind the wall are deflected upward and automatically miss. (Boulders hurled by giants or siege engines, and similar projectiles, are unaffected.) Creatures in gaseous form can't pass through it.", + "document": "srd", + "level": 3, + "school": "evocation", + "higher_level": "", + "target_type": "point", + "range": "120 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": true, + "material_specified": "A tiny fan and a feather of exotic origin.", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "strength", + "attack_roll": false, + "damage_roll": "3d8", + "damage_types": [ + "bludgeoning" + ], + "duration": "1 minute", + "shape_type": null, + "shape_magnitude": null, + "concentration": true + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_wish", + "fields": { + "name": "Wish", + "desc": "Wish is the mightiest spell a mortal creature can cast. By simply speaking aloud, you can alter the very foundations of reality in accord with your desires. The basic use of this spell is to duplicate any other spell of 8th level or lower. You don't need to meet any requirements in that spell, including costly components. The spell simply takes effect. Alternatively, you can create one of the following effects of your choice: \n- You create one object of up to 25,000 gp in value that isn't a magic item. The object can be no more than 300 feet in any dimension, and it appears in an unoccupied space you can see on the ground. \n- You allow up to twenty creatures that you can see to regain all hit points, and you end all effects on them described in the greater restoration spell. \n- You grant up to ten creatures you can see resistance to a damage type you choose. \n- You grant up to ten creatures you can see immunity to a single spell or other magical effect for 8 hours. For instance, you could make yourself and all your companions immune to a lich's life drain attack. \n- You undo a single recent event by forcing a reroll of any roll made within the last round (including your last turn). Reality reshapes itself to accommodate the new result. For example, a wish spell could undo an opponent's successful save, a foe's critical hit, or a friend's failed save. You can force the reroll to be made with advantage or disadvantage, and you can choose whether to use the reroll or the original roll. \nYou might be able to achieve something beyond the scope of the above examples. State your wish to the DM as precisely as possible. The DM has great latitude in ruling what occurs in such an instance; the greater the wish, the greater the likelihood that something goes wrong. This spell might simply fail, the effect you desire might only be partly achieved, or you might suffer some unforeseen consequence as a result of how you worded the wish. For example, wishing that a villain were dead might propel you forward in time to a period when that villain is no longer alive, effectively removing you from the game. Similarly, wishing for a legendary magic item or artifact might instantly transport you to the presence of the item's current owner. The stress of casting this spell to produce any effect other than duplicating another spell weakens you. After enduring that stress, each time you cast a spell until you finish a long rest, you take 1d10 necrotic damage per level of that spell. This damage can't be reduced or prevented in any way. In addition, your Strength drops to 3, if it isn't 3 or lower already, for 2d4 days. For each of those days that you spend resting and doing nothing more than light activity, your remaining recovery time decreases by 2 days. Finally, there is a 33 percent chance that you are unable to cast wish ever again if you suffer this stress.", + "document": "srd", + "level": 9, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "Self", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_word-of-recall", + "fields": { + "name": "Word of Recall", + "desc": "You and up to five willing creatures within 5 feet of you instantly teleport to a previously designated sanctuary. You and any creatures that teleport with you appear in the nearest unoccupied space to the spot you designated when you prepared your sanctuary (see below). If you cast this spell without first preparing a sanctuary, the spell has no effect. You must designate a sanctuary by casting this spell within a location, such as a temple, dedicated to or strongly linked to your deity. If you attempt to cast the spell in this manner in an area that isn't dedicated to your deity, the spell has no effect.", + "document": "srd", + "level": 6, + "school": "conjuration", + "higher_level": "", + "target_type": "creature", + "range": "5 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": false, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "instantaneous", + "shape_type": null, + "shape_magnitude": null, + "concentration": false + } +}, +{ + "model": "api_v2.spell", + "pk": "srd_zone-of-truth", + "fields": { + "name": "Zone of Truth", + "desc": "You create a magical zone that guards against deception in a 15-foot-radius sphere centered on a point of your choice within range. Until the spell ends, a creature that enters the spell's area for the first time on a turn or starts its turn there must make a Charisma saving throw. On a failed save, a creature can't speak a deliberate lie while in the radius. You know whether each creature succeeds or fails on its saving throw. An affected creature is aware of the fate and can avoid answering questions she would normally have responded with a lie. Such a creature can remain evasive in his answers as they remain within the limits of truth.", + "document": "srd", + "level": 2, + "school": "enchantment", + "higher_level": "", + "target_type": "point", + "range": "60 feet", + "ritual": false, + "casting_time": "action", + "verbal": true, + "somatic": true, + "material": false, + "material_specified": "", + "material_cost": null, + "material_consumed": false, + "target_count": 1, + "saving_throw_ability": "charisma", + "attack_roll": false, + "damage_roll": "", + "damage_types": [], + "duration": "10 minutes", + "shape_type": "sphere", + "shape_magnitude": 15, + "concentration": false + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json b/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json index 96e09fee..6eb30b9c 100644 --- a/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json +++ b/data/v2/wizards-of-the-coast/srd/SpellCastingOption.json @@ -1,12518 +1,12518 @@ [ - { - "model": "api_v2.spellcastingoption", - "pk": 5005, - "fields": { - "parent": "srd_acid-arrow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5007, - "fields": { - "parent": "srd_acid-arrow", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5008, - "fields": { - "parent": "srd_acid-arrow", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5009, - "fields": { - "parent": "srd_acid-arrow", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5010, - "fields": { - "parent": "srd_acid-arrow", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5011, - "fields": { - "parent": "srd_acid-arrow", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5012, - "fields": { - "parent": "srd_acid-arrow", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5013, - "fields": { - "parent": "srd_acid-arrow", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5014, - "fields": { - "parent": "srd_acid-splash", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5015, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5016, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5017, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5018, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5019, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_5", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5020, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_6", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5021, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_7", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5022, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_8", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5023, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_9", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5024, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_10", - "damage_roll": "2d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5025, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_11", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5026, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_12", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5027, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_13", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5028, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_14", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5029, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_15", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5030, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_16", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5031, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_17", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5032, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_18", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5033, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_19", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5034, - "fields": { - "parent": "srd_acid-splash", - "type": "player_level_20", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5035, - "fields": { - "parent": "srd_aid", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5037, - "fields": { - "parent": "srd_aid", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5038, - "fields": { - "parent": "srd_aid", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5039, - "fields": { - "parent": "srd_aid", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5040, - "fields": { - "parent": "srd_aid", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5041, - "fields": { - "parent": "srd_aid", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5042, - "fields": { - "parent": "srd_aid", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5043, - "fields": { - "parent": "srd_aid", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5044, - "fields": { - "parent": "srd_alarm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5045, - "fields": { - "parent": "srd_alarm", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5046, - "fields": { - "parent": "srd_alter-self", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5047, - "fields": { - "parent": "srd_animal-friendship", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5049, - "fields": { - "parent": "srd_animal-friendship", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5050, - "fields": { - "parent": "srd_animal-friendship", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5051, - "fields": { - "parent": "srd_animal-friendship", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5052, - "fields": { - "parent": "srd_animal-friendship", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5053, - "fields": { - "parent": "srd_animal-friendship", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5054, - "fields": { - "parent": "srd_animal-friendship", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5055, - "fields": { - "parent": "srd_animal-friendship", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5056, - "fields": { - "parent": "srd_animal-friendship", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5057, - "fields": { - "parent": "srd_animal-messenger", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5058, - "fields": { - "parent": "srd_animal-messenger", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5060, - "fields": { - "parent": "srd_animal-messenger", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": "3 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5061, - "fields": { - "parent": "srd_animal-messenger", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "5 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5062, - "fields": { - "parent": "srd_animal-messenger", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "7 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5063, - "fields": { - "parent": "srd_animal-messenger", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "9 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5064, - "fields": { - "parent": "srd_animal-messenger", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "11 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5065, - "fields": { - "parent": "srd_animal-messenger", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "13 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5066, - "fields": { - "parent": "srd_animal-messenger", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "15 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5067, - "fields": { - "parent": "srd_animal-shapes", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5068, - "fields": { - "parent": "srd_animate-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5070, - "fields": { - "parent": "srd_animate-dead", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5071, - "fields": { - "parent": "srd_animate-dead", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5072, - "fields": { - "parent": "srd_animate-dead", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5073, - "fields": { - "parent": "srd_animate-dead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5074, - "fields": { - "parent": "srd_animate-dead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5075, - "fields": { - "parent": "srd_animate-dead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5076, - "fields": { - "parent": "srd_animate-objects", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5078, - "fields": { - "parent": "srd_animate-objects", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5079, - "fields": { - "parent": "srd_animate-objects", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5080, - "fields": { - "parent": "srd_animate-objects", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5081, - "fields": { - "parent": "srd_animate-objects", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5082, - "fields": { - "parent": "srd_antilife-shell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5083, - "fields": { - "parent": "srd_antimagic-field", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5084, - "fields": { - "parent": "srd_antipathysympathy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5085, - "fields": { - "parent": "srd_arcane-eye", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5086, - "fields": { - "parent": "srd_arcane-hand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5088, - "fields": { - "parent": "srd_arcane-hand", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5089, - "fields": { - "parent": "srd_arcane-hand", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5090, - "fields": { - "parent": "srd_arcane-hand", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5091, - "fields": { - "parent": "srd_arcane-hand", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5092, - "fields": { - "parent": "srd_arcane-lock", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5093, - "fields": { - "parent": "srd_arcane-sword", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5094, - "fields": { - "parent": "srd_arcanists-magic-aura", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5095, - "fields": { - "parent": "srd_astral-projection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5096, - "fields": { - "parent": "srd_augury", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5097, - "fields": { - "parent": "srd_augury", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5098, - "fields": { - "parent": "srd_awaken", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5099, - "fields": { - "parent": "srd_bane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5101, - "fields": { - "parent": "srd_bane", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5102, - "fields": { - "parent": "srd_bane", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5103, - "fields": { - "parent": "srd_bane", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5104, - "fields": { - "parent": "srd_bane", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5105, - "fields": { - "parent": "srd_bane", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5106, - "fields": { - "parent": "srd_bane", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5107, - "fields": { - "parent": "srd_bane", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5108, - "fields": { - "parent": "srd_bane", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 11, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5109, - "fields": { - "parent": "srd_banishment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5111, - "fields": { - "parent": "srd_banishment", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5112, - "fields": { - "parent": "srd_banishment", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5113, - "fields": { - "parent": "srd_banishment", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5114, - "fields": { - "parent": "srd_banishment", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5115, - "fields": { - "parent": "srd_banishment", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5116, - "fields": { - "parent": "srd_barkskin", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5117, - "fields": { - "parent": "srd_beacon-of-hope", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5118, - "fields": { - "parent": "srd_bestow-curse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5120, - "fields": { - "parent": "srd_bestow-curse", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5121, - "fields": { - "parent": "srd_bestow-curse", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5122, - "fields": { - "parent": "srd_bestow-curse", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5123, - "fields": { - "parent": "srd_bestow-curse", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5124, - "fields": { - "parent": "srd_bestow-curse", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "24 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5125, - "fields": { - "parent": "srd_bestow-curse", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5126, - "fields": { - "parent": "srd_black-tentacles", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5127, - "fields": { - "parent": "srd_blade-barrier", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5128, - "fields": { - "parent": "srd_bless", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5130, - "fields": { - "parent": "srd_bless", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5131, - "fields": { - "parent": "srd_bless", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5132, - "fields": { - "parent": "srd_bless", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5133, - "fields": { - "parent": "srd_bless", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5134, - "fields": { - "parent": "srd_bless", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5135, - "fields": { - "parent": "srd_bless", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5136, - "fields": { - "parent": "srd_bless", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5137, - "fields": { - "parent": "srd_bless", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 11, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5138, - "fields": { - "parent": "srd_blight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5140, - "fields": { - "parent": "srd_blight", - "type": "slot_level_5", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5141, - "fields": { - "parent": "srd_blight", - "type": "slot_level_6", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5142, - "fields": { - "parent": "srd_blight", - "type": "slot_level_7", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5143, - "fields": { - "parent": "srd_blight", - "type": "slot_level_8", - "damage_roll": "12d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5144, - "fields": { - "parent": "srd_blight", - "type": "slot_level_9", - "damage_roll": "13d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5145, - "fields": { - "parent": "srd_blindnessdeafness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5147, - "fields": { - "parent": "srd_blindnessdeafness", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5148, - "fields": { - "parent": "srd_blindnessdeafness", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5149, - "fields": { - "parent": "srd_blindnessdeafness", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5150, - "fields": { - "parent": "srd_blindnessdeafness", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5151, - "fields": { - "parent": "srd_blindnessdeafness", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5152, - "fields": { - "parent": "srd_blindnessdeafness", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5153, - "fields": { - "parent": "srd_blindnessdeafness", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5154, - "fields": { - "parent": "srd_blink", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5155, - "fields": { - "parent": "srd_blur", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5156, - "fields": { - "parent": "srd_branding-smite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5158, - "fields": { - "parent": "srd_branding-smite", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5159, - "fields": { - "parent": "srd_branding-smite", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5160, - "fields": { - "parent": "srd_branding-smite", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5161, - "fields": { - "parent": "srd_branding-smite", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5162, - "fields": { - "parent": "srd_branding-smite", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5163, - "fields": { - "parent": "srd_branding-smite", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5164, - "fields": { - "parent": "srd_branding-smite", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5165, - "fields": { - "parent": "srd_burning-hands", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5167, - "fields": { - "parent": "srd_burning-hands", - "type": "slot_level_2", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5168, - "fields": { - "parent": "srd_burning-hands", - "type": "slot_level_3", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5169, - "fields": { - "parent": "srd_burning-hands", - "type": "slot_level_4", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5170, - "fields": { - "parent": "srd_burning-hands", - "type": "slot_level_5", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5171, - "fields": { - "parent": "srd_burning-hands", - "type": "slot_level_6", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5172, - "fields": { - "parent": "srd_burning-hands", - "type": "slot_level_7", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5173, - "fields": { - "parent": "srd_burning-hands", - "type": "slot_level_8", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5174, - "fields": { - "parent": "srd_burning-hands", - "type": "slot_level_9", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5175, - "fields": { - "parent": "srd_call-lightning", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5177, - "fields": { - "parent": "srd_call-lightning", - "type": "slot_level_4", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5178, - "fields": { - "parent": "srd_call-lightning", - "type": "slot_level_5", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5179, - "fields": { - "parent": "srd_call-lightning", - "type": "slot_level_6", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5180, - "fields": { - "parent": "srd_call-lightning", - "type": "slot_level_7", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5181, - "fields": { - "parent": "srd_call-lightning", - "type": "slot_level_8", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5182, - "fields": { - "parent": "srd_call-lightning", - "type": "slot_level_9", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5183, - "fields": { - "parent": "srd_calm-emotions", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5184, - "fields": { - "parent": "srd_chain-lightning", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5186, - "fields": { - "parent": "srd_chain-lightning", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5187, - "fields": { - "parent": "srd_chain-lightning", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5188, - "fields": { - "parent": "srd_chain-lightning", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5189, - "fields": { - "parent": "srd_charm-person", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5191, - "fields": { - "parent": "srd_charm-person", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5192, - "fields": { - "parent": "srd_charm-person", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5193, - "fields": { - "parent": "srd_charm-person", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5194, - "fields": { - "parent": "srd_charm-person", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5195, - "fields": { - "parent": "srd_charm-person", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5196, - "fields": { - "parent": "srd_charm-person", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5197, - "fields": { - "parent": "srd_charm-person", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5198, - "fields": { - "parent": "srd_charm-person", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5199, - "fields": { - "parent": "srd_chill-touch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5200, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5201, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5202, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5203, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5204, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5205, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5206, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5207, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5208, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5209, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5210, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5211, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5212, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5213, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5214, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5215, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5216, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5217, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5218, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5219, - "fields": { - "parent": "srd_chill-touch", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5220, - "fields": { - "parent": "srd_circle-of-death", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5222, - "fields": { - "parent": "srd_circle-of-death", - "type": "slot_level_7", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5223, - "fields": { - "parent": "srd_circle-of-death", - "type": "slot_level_8", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5224, - "fields": { - "parent": "srd_circle-of-death", - "type": "slot_level_9", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5225, - "fields": { - "parent": "srd_clairvoyance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5226, - "fields": { - "parent": "srd_clone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5227, - "fields": { - "parent": "srd_cloudkill", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5229, - "fields": { - "parent": "srd_cloudkill", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5230, - "fields": { - "parent": "srd_cloudkill", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5231, - "fields": { - "parent": "srd_cloudkill", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5232, - "fields": { - "parent": "srd_cloudkill", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5233, - "fields": { - "parent": "srd_color-spray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5235, - "fields": { - "parent": "srd_color-spray", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5236, - "fields": { - "parent": "srd_color-spray", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5237, - "fields": { - "parent": "srd_color-spray", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5238, - "fields": { - "parent": "srd_color-spray", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5239, - "fields": { - "parent": "srd_color-spray", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5240, - "fields": { - "parent": "srd_color-spray", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5241, - "fields": { - "parent": "srd_color-spray", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5242, - "fields": { - "parent": "srd_color-spray", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5243, - "fields": { - "parent": "srd_command", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5245, - "fields": { - "parent": "srd_command", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5246, - "fields": { - "parent": "srd_command", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5247, - "fields": { - "parent": "srd_command", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5248, - "fields": { - "parent": "srd_command", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5249, - "fields": { - "parent": "srd_command", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5250, - "fields": { - "parent": "srd_command", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5251, - "fields": { - "parent": "srd_command", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5252, - "fields": { - "parent": "srd_command", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5253, - "fields": { - "parent": "srd_commune", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5254, - "fields": { - "parent": "srd_commune", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5255, - "fields": { - "parent": "srd_commune-with-nature", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5256, - "fields": { - "parent": "srd_commune-with-nature", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5257, - "fields": { - "parent": "srd_comprehend-languages", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5258, - "fields": { - "parent": "srd_comprehend-languages", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5259, - "fields": { - "parent": "srd_compulsion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5260, - "fields": { - "parent": "srd_cone-of-cold", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5262, - "fields": { - "parent": "srd_cone-of-cold", - "type": "slot_level_6", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5263, - "fields": { - "parent": "srd_cone-of-cold", - "type": "slot_level_7", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5264, - "fields": { - "parent": "srd_cone-of-cold", - "type": "slot_level_8", - "damage_roll": "11d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5265, - "fields": { - "parent": "srd_cone-of-cold", - "type": "slot_level_9", - "damage_roll": "12d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5266, - "fields": { - "parent": "srd_confusion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5268, - "fields": { - "parent": "srd_confusion", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5269, - "fields": { - "parent": "srd_confusion", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5270, - "fields": { - "parent": "srd_confusion", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5271, - "fields": { - "parent": "srd_confusion", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5272, - "fields": { - "parent": "srd_confusion", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5273, - "fields": { - "parent": "srd_conjure-animals", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5275, - "fields": { - "parent": "srd_conjure-animals", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5276, - "fields": { - "parent": "srd_conjure-animals", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5277, - "fields": { - "parent": "srd_conjure-animals", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5278, - "fields": { - "parent": "srd_conjure-animals", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5279, - "fields": { - "parent": "srd_conjure-animals", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5280, - "fields": { - "parent": "srd_conjure-animals", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5281, - "fields": { - "parent": "srd_conjure-celestial", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5283, - "fields": { - "parent": "srd_conjure-celestial", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5284, - "fields": { - "parent": "srd_conjure-celestial", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5285, - "fields": { - "parent": "srd_conjure-elemental", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5287, - "fields": { - "parent": "srd_conjure-elemental", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5288, - "fields": { - "parent": "srd_conjure-elemental", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5289, - "fields": { - "parent": "srd_conjure-elemental", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5290, - "fields": { - "parent": "srd_conjure-elemental", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5291, - "fields": { - "parent": "srd_conjure-fey", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5293, - "fields": { - "parent": "srd_conjure-fey", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5294, - "fields": { - "parent": "srd_conjure-fey", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5295, - "fields": { - "parent": "srd_conjure-fey", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5296, - "fields": { - "parent": "srd_conjure-minor-elementals", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5298, - "fields": { - "parent": "srd_conjure-minor-elementals", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5299, - "fields": { - "parent": "srd_conjure-minor-elementals", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5300, - "fields": { - "parent": "srd_conjure-minor-elementals", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5301, - "fields": { - "parent": "srd_conjure-minor-elementals", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5302, - "fields": { - "parent": "srd_conjure-minor-elementals", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5303, - "fields": { - "parent": "srd_conjure-woodland-beings", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5305, - "fields": { - "parent": "srd_conjure-woodland-beings", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5306, - "fields": { - "parent": "srd_conjure-woodland-beings", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5307, - "fields": { - "parent": "srd_conjure-woodland-beings", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5308, - "fields": { - "parent": "srd_conjure-woodland-beings", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5309, - "fields": { - "parent": "srd_conjure-woodland-beings", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5310, - "fields": { - "parent": "srd_contact-other-plane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5311, - "fields": { - "parent": "srd_contact-other-plane", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5312, - "fields": { - "parent": "srd_contagion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5313, - "fields": { - "parent": "srd_contingency", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5314, - "fields": { - "parent": "srd_continual-flame", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5315, - "fields": { - "parent": "srd_control-water", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5316, - "fields": { - "parent": "srd_control-weather", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5317, - "fields": { - "parent": "srd_counterspell", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5319, - "fields": { - "parent": "srd_counterspell", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5320, - "fields": { - "parent": "srd_counterspell", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5321, - "fields": { - "parent": "srd_counterspell", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5322, - "fields": { - "parent": "srd_counterspell", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5323, - "fields": { - "parent": "srd_counterspell", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5324, - "fields": { - "parent": "srd_counterspell", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5325, - "fields": { - "parent": "srd_create-food-and-water", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5326, - "fields": { - "parent": "srd_create-or-destroy-water", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5328, - "fields": { - "parent": "srd_create-or-destroy-water", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5329, - "fields": { - "parent": "srd_create-or-destroy-water", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5330, - "fields": { - "parent": "srd_create-or-destroy-water", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5331, - "fields": { - "parent": "srd_create-or-destroy-water", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5332, - "fields": { - "parent": "srd_create-or-destroy-water", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5333, - "fields": { - "parent": "srd_create-or-destroy-water", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5334, - "fields": { - "parent": "srd_create-or-destroy-water", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5335, - "fields": { - "parent": "srd_create-or-destroy-water", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5336, - "fields": { - "parent": "srd_create-undead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5338, - "fields": { - "parent": "srd_create-undead", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5339, - "fields": { - "parent": "srd_create-undead", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5340, - "fields": { - "parent": "srd_create-undead", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5341, - "fields": { - "parent": "srd_creation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5343, - "fields": { - "parent": "srd_creation", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5344, - "fields": { - "parent": "srd_creation", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5345, - "fields": { - "parent": "srd_creation", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5346, - "fields": { - "parent": "srd_creation", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5347, - "fields": { - "parent": "srd_cure-wounds", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5349, - "fields": { - "parent": "srd_cure-wounds", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5350, - "fields": { - "parent": "srd_cure-wounds", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5351, - "fields": { - "parent": "srd_cure-wounds", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5352, - "fields": { - "parent": "srd_cure-wounds", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5353, - "fields": { - "parent": "srd_cure-wounds", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5354, - "fields": { - "parent": "srd_cure-wounds", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5355, - "fields": { - "parent": "srd_cure-wounds", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5356, - "fields": { - "parent": "srd_cure-wounds", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5357, - "fields": { - "parent": "srd_dancing-lights", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5358, - "fields": { - "parent": "srd_darkness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5359, - "fields": { - "parent": "srd_darkvision", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5360, - "fields": { - "parent": "srd_daylight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5361, - "fields": { - "parent": "srd_death-ward", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5362, - "fields": { - "parent": "srd_delayed-blast-fireball", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5364, - "fields": { - "parent": "srd_delayed-blast-fireball", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5365, - "fields": { - "parent": "srd_delayed-blast-fireball", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5366, - "fields": { - "parent": "srd_demiplane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5367, - "fields": { - "parent": "srd_detect-evil-and-good", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5368, - "fields": { - "parent": "srd_detect-magic", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5369, - "fields": { - "parent": "srd_detect-magic", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5370, - "fields": { - "parent": "srd_detect-poison-and-disease", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5371, - "fields": { - "parent": "srd_detect-poison-and-disease", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5372, - "fields": { - "parent": "srd_detect-thoughts", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5373, - "fields": { - "parent": "srd_dimension-door", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5374, - "fields": { - "parent": "srd_disguise-self", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5375, - "fields": { - "parent": "srd_disintegrate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5377, - "fields": { - "parent": "srd_disintegrate", - "type": "slot_level_7", - "damage_roll": "13d6+40", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5378, - "fields": { - "parent": "srd_disintegrate", - "type": "slot_level_8", - "damage_roll": "16d6+40", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5379, - "fields": { - "parent": "srd_disintegrate", - "type": "slot_level_9", - "damage_roll": "19d6+40", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5380, - "fields": { - "parent": "srd_dispel-evil-and-good", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5381, - "fields": { - "parent": "srd_dispel-magic", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5383, - "fields": { - "parent": "srd_dispel-magic", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5384, - "fields": { - "parent": "srd_dispel-magic", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5385, - "fields": { - "parent": "srd_dispel-magic", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5386, - "fields": { - "parent": "srd_dispel-magic", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5387, - "fields": { - "parent": "srd_dispel-magic", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5388, - "fields": { - "parent": "srd_dispel-magic", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5389, - "fields": { - "parent": "srd_divination", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5390, - "fields": { - "parent": "srd_divination", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5391, - "fields": { - "parent": "srd_divine-favor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5392, - "fields": { - "parent": "srd_divine-word", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5393, - "fields": { - "parent": "srd_dominate-beast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5395, - "fields": { - "parent": "srd_dominate-beast", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5396, - "fields": { - "parent": "srd_dominate-beast", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5397, - "fields": { - "parent": "srd_dominate-beast", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5398, - "fields": { - "parent": "srd_dominate-beast", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5399, - "fields": { - "parent": "srd_dominate-beast", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5400, - "fields": { - "parent": "srd_dominate-monster", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5402, - "fields": { - "parent": "srd_dominate-monster", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5403, - "fields": { - "parent": "srd_dominate-person", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5405, - "fields": { - "parent": "srd_dominate-person", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "10 minutes", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5406, - "fields": { - "parent": "srd_dominate-person", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 hour", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5407, - "fields": { - "parent": "srd_dominate-person", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5408, - "fields": { - "parent": "srd_dominate-person", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "8 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5409, - "fields": { - "parent": "srd_dream", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5410, - "fields": { - "parent": "srd_druidcraft", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5411, - "fields": { - "parent": "srd_earthquake", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5412, - "fields": { - "parent": "srd_eldritch-blast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5413, - "fields": { - "parent": "srd_enhance-ability", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5415, - "fields": { - "parent": "srd_enhance-ability", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5416, - "fields": { - "parent": "srd_enhance-ability", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5417, - "fields": { - "parent": "srd_enhance-ability", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5418, - "fields": { - "parent": "srd_enhance-ability", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5419, - "fields": { - "parent": "srd_enhance-ability", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5420, - "fields": { - "parent": "srd_enhance-ability", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5421, - "fields": { - "parent": "srd_enhance-ability", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5422, - "fields": { - "parent": "srd_enlargereduce", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5423, - "fields": { - "parent": "srd_entangle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5424, - "fields": { - "parent": "srd_enthrall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5425, - "fields": { - "parent": "srd_etherealness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5427, - "fields": { - "parent": "srd_etherealness", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5428, - "fields": { - "parent": "srd_etherealness", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5429, - "fields": { - "parent": "srd_expeditious-retreat", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5430, - "fields": { - "parent": "srd_eyebite", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5431, - "fields": { - "parent": "srd_fabricate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5432, - "fields": { - "parent": "srd_faerie-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5433, - "fields": { - "parent": "srd_faithful-hound", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5434, - "fields": { - "parent": "srd_false-life", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5436, - "fields": { - "parent": "srd_false-life", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5437, - "fields": { - "parent": "srd_false-life", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5438, - "fields": { - "parent": "srd_false-life", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5439, - "fields": { - "parent": "srd_false-life", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5440, - "fields": { - "parent": "srd_false-life", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5441, - "fields": { - "parent": "srd_false-life", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5442, - "fields": { - "parent": "srd_false-life", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5443, - "fields": { - "parent": "srd_false-life", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5444, - "fields": { - "parent": "srd_fear", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5445, - "fields": { - "parent": "srd_feather-fall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5446, - "fields": { - "parent": "srd_feeblemind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5447, - "fields": { - "parent": "srd_find-familiar", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5448, - "fields": { - "parent": "srd_find-familiar", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5449, - "fields": { - "parent": "srd_find-steed", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5450, - "fields": { - "parent": "srd_find-the-path", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5451, - "fields": { - "parent": "srd_find-traps", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5452, - "fields": { - "parent": "srd_finger-of-death", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5453, - "fields": { - "parent": "srd_fire-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5454, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5455, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5456, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5457, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5458, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_5", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5459, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_6", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5460, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_7", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5461, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_8", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5462, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_9", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5463, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_10", - "damage_roll": "2d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5464, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_11", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5465, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_12", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5466, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_13", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5467, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_14", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5468, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_15", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5469, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_16", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5470, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_17", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5471, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_18", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5472, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_19", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5473, - "fields": { - "parent": "srd_fire-bolt", - "type": "player_level_20", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5474, - "fields": { - "parent": "srd_fire-shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5475, - "fields": { - "parent": "srd_fire-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5476, - "fields": { - "parent": "srd_fireball", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5478, - "fields": { - "parent": "srd_fireball", - "type": "slot_level_4", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5479, - "fields": { - "parent": "srd_fireball", - "type": "slot_level_5", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5480, - "fields": { - "parent": "srd_fireball", - "type": "slot_level_6", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5481, - "fields": { - "parent": "srd_fireball", - "type": "slot_level_7", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5482, - "fields": { - "parent": "srd_fireball", - "type": "slot_level_8", - "damage_roll": "13d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5483, - "fields": { - "parent": "srd_fireball", - "type": "slot_level_9", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5484, - "fields": { - "parent": "srd_flame-blade", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5486, - "fields": { - "parent": "srd_flame-blade", - "type": "slot_level_3", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5487, - "fields": { - "parent": "srd_flame-blade", - "type": "slot_level_4", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5488, - "fields": { - "parent": "srd_flame-blade", - "type": "slot_level_5", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5489, - "fields": { - "parent": "srd_flame-blade", - "type": "slot_level_6", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5490, - "fields": { - "parent": "srd_flame-blade", - "type": "slot_level_7", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5491, - "fields": { - "parent": "srd_flame-blade", - "type": "slot_level_8", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5492, - "fields": { - "parent": "srd_flame-blade", - "type": "slot_level_9", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5493, - "fields": { - "parent": "srd_flame-strike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5495, - "fields": { - "parent": "srd_flame-strike", - "type": "slot_level_6", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5496, - "fields": { - "parent": "srd_flame-strike", - "type": "slot_level_7", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5497, - "fields": { - "parent": "srd_flame-strike", - "type": "slot_level_8", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5498, - "fields": { - "parent": "srd_flame-strike", - "type": "slot_level_9", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5499, - "fields": { - "parent": "srd_flaming-sphere", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5501, - "fields": { - "parent": "srd_flaming-sphere", - "type": "slot_level_3", - "damage_roll": "3d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5502, - "fields": { - "parent": "srd_flaming-sphere", - "type": "slot_level_4", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5503, - "fields": { - "parent": "srd_flaming-sphere", - "type": "slot_level_5", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5504, - "fields": { - "parent": "srd_flaming-sphere", - "type": "slot_level_6", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5505, - "fields": { - "parent": "srd_flaming-sphere", - "type": "slot_level_7", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5506, - "fields": { - "parent": "srd_flaming-sphere", - "type": "slot_level_8", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5507, - "fields": { - "parent": "srd_flaming-sphere", - "type": "slot_level_9", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5508, - "fields": { - "parent": "srd_flesh-to-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5509, - "fields": { - "parent": "srd_floating-disk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5510, - "fields": { - "parent": "srd_floating-disk", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5511, - "fields": { - "parent": "srd_fly", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5513, - "fields": { - "parent": "srd_fly", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5514, - "fields": { - "parent": "srd_fly", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5515, - "fields": { - "parent": "srd_fly", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5516, - "fields": { - "parent": "srd_fly", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5517, - "fields": { - "parent": "srd_fly", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5518, - "fields": { - "parent": "srd_fly", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5519, - "fields": { - "parent": "srd_fog-cloud", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5521, - "fields": { - "parent": "srd_fog-cloud", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5522, - "fields": { - "parent": "srd_fog-cloud", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5523, - "fields": { - "parent": "srd_fog-cloud", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5524, - "fields": { - "parent": "srd_fog-cloud", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5525, - "fields": { - "parent": "srd_fog-cloud", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5526, - "fields": { - "parent": "srd_fog-cloud", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5527, - "fields": { - "parent": "srd_fog-cloud", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5528, - "fields": { - "parent": "srd_fog-cloud", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5529, - "fields": { - "parent": "srd_forbiddance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5530, - "fields": { - "parent": "srd_forbiddance", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5531, - "fields": { - "parent": "srd_forcecage", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5532, - "fields": { - "parent": "srd_foresight", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5533, - "fields": { - "parent": "srd_freedom-of-movement", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5534, - "fields": { - "parent": "srd_freezing-sphere", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5536, - "fields": { - "parent": "srd_freezing-sphere", - "type": "slot_level_7", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5537, - "fields": { - "parent": "srd_freezing-sphere", - "type": "slot_level_8", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5538, - "fields": { - "parent": "srd_freezing-sphere", - "type": "slot_level_9", - "damage_roll": "13d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5539, - "fields": { - "parent": "srd_gaseous-form", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5540, - "fields": { - "parent": "srd_gate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5541, - "fields": { - "parent": "srd_geas", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5543, - "fields": { - "parent": "srd_geas", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5544, - "fields": { - "parent": "srd_geas", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5545, - "fields": { - "parent": "srd_geas", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "1 year", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5546, - "fields": { - "parent": "srd_geas", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "Until dispelled", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5547, - "fields": { - "parent": "srd_gentle-repose", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5548, - "fields": { - "parent": "srd_gentle-repose", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5549, - "fields": { - "parent": "srd_giant-insect", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5550, - "fields": { - "parent": "srd_glibness", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5551, - "fields": { - "parent": "srd_globe-of-invulnerability", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5553, - "fields": { - "parent": "srd_globe-of-invulnerability", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5554, - "fields": { - "parent": "srd_globe-of-invulnerability", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5555, - "fields": { - "parent": "srd_globe-of-invulnerability", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5556, - "fields": { - "parent": "srd_glyph-of-warding", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5558, - "fields": { - "parent": "srd_glyph-of-warding", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5559, - "fields": { - "parent": "srd_glyph-of-warding", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5560, - "fields": { - "parent": "srd_glyph-of-warding", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5561, - "fields": { - "parent": "srd_glyph-of-warding", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5562, - "fields": { - "parent": "srd_glyph-of-warding", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5563, - "fields": { - "parent": "srd_glyph-of-warding", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5564, - "fields": { - "parent": "srd_goodberry", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5565, - "fields": { - "parent": "srd_grease", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5566, - "fields": { - "parent": "srd_greater-invisibility", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5567, - "fields": { - "parent": "srd_greater-restoration", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5568, - "fields": { - "parent": "srd_guardian-of-faith", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5569, - "fields": { - "parent": "srd_guards-and-wards", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5570, - "fields": { - "parent": "srd_guidance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5571, - "fields": { - "parent": "srd_guiding-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5573, - "fields": { - "parent": "srd_guiding-bolt", - "type": "slot_level_2", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5574, - "fields": { - "parent": "srd_guiding-bolt", - "type": "slot_level_3", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5575, - "fields": { - "parent": "srd_guiding-bolt", - "type": "slot_level_4", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5576, - "fields": { - "parent": "srd_guiding-bolt", - "type": "slot_level_5", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5577, - "fields": { - "parent": "srd_guiding-bolt", - "type": "slot_level_6", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5578, - "fields": { - "parent": "srd_guiding-bolt", - "type": "slot_level_7", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5579, - "fields": { - "parent": "srd_guiding-bolt", - "type": "slot_level_8", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5580, - "fields": { - "parent": "srd_guiding-bolt", - "type": "slot_level_9", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5581, - "fields": { - "parent": "srd_gust-of-wind", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5582, - "fields": { - "parent": "srd_hallow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5583, - "fields": { - "parent": "srd_hallucinatory-terrain", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5584, - "fields": { - "parent": "srd_harm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5585, - "fields": { - "parent": "srd_haste", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5586, - "fields": { - "parent": "srd_heal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5588, - "fields": { - "parent": "srd_heal", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5589, - "fields": { - "parent": "srd_heal", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5590, - "fields": { - "parent": "srd_heal", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5591, - "fields": { - "parent": "srd_healing-word", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5593, - "fields": { - "parent": "srd_healing-word", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5594, - "fields": { - "parent": "srd_healing-word", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5595, - "fields": { - "parent": "srd_healing-word", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5596, - "fields": { - "parent": "srd_healing-word", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5597, - "fields": { - "parent": "srd_healing-word", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5598, - "fields": { - "parent": "srd_healing-word", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5599, - "fields": { - "parent": "srd_healing-word", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5600, - "fields": { - "parent": "srd_healing-word", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5601, - "fields": { - "parent": "srd_heat-metal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5603, - "fields": { - "parent": "srd_heat-metal", - "type": "slot_level_3", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5604, - "fields": { - "parent": "srd_heat-metal", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5605, - "fields": { - "parent": "srd_heat-metal", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5606, - "fields": { - "parent": "srd_heat-metal", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5607, - "fields": { - "parent": "srd_heat-metal", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5608, - "fields": { - "parent": "srd_heat-metal", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5609, - "fields": { - "parent": "srd_heat-metal", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5610, - "fields": { - "parent": "srd_hellish-rebuke", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5612, - "fields": { - "parent": "srd_hellish-rebuke", - "type": "slot_level_2", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5613, - "fields": { - "parent": "srd_hellish-rebuke", - "type": "slot_level_3", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5614, - "fields": { - "parent": "srd_hellish-rebuke", - "type": "slot_level_4", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5615, - "fields": { - "parent": "srd_hellish-rebuke", - "type": "slot_level_5", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5616, - "fields": { - "parent": "srd_hellish-rebuke", - "type": "slot_level_6", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5617, - "fields": { - "parent": "srd_hellish-rebuke", - "type": "slot_level_7", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5618, - "fields": { - "parent": "srd_hellish-rebuke", - "type": "slot_level_8", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5619, - "fields": { - "parent": "srd_hellish-rebuke", - "type": "slot_level_9", - "damage_roll": "10d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5620, - "fields": { - "parent": "srd_heroes-feast", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5621, - "fields": { - "parent": "srd_heroism", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5622, - "fields": { - "parent": "srd_hideous-laughter", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5623, - "fields": { - "parent": "srd_hold-monster", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5625, - "fields": { - "parent": "srd_hold-monster", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5626, - "fields": { - "parent": "srd_hold-monster", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5627, - "fields": { - "parent": "srd_hold-monster", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5628, - "fields": { - "parent": "srd_hold-monster", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5629, - "fields": { - "parent": "srd_hold-person", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5631, - "fields": { - "parent": "srd_hold-person", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5632, - "fields": { - "parent": "srd_hold-person", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5633, - "fields": { - "parent": "srd_hold-person", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5634, - "fields": { - "parent": "srd_hold-person", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5635, - "fields": { - "parent": "srd_hold-person", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5636, - "fields": { - "parent": "srd_hold-person", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5637, - "fields": { - "parent": "srd_hold-person", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5638, - "fields": { - "parent": "srd_holy-aura", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5639, - "fields": { - "parent": "srd_hunters-mark", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5641, - "fields": { - "parent": "srd_hunters-mark", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5642, - "fields": { - "parent": "srd_hunters-mark", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5643, - "fields": { - "parent": "srd_hunters-mark", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5644, - "fields": { - "parent": "srd_hunters-mark", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5645, - "fields": { - "parent": "srd_hunters-mark", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5646, - "fields": { - "parent": "srd_hunters-mark", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5647, - "fields": { - "parent": "srd_hunters-mark", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5648, - "fields": { - "parent": "srd_hunters-mark", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5649, - "fields": { - "parent": "srd_hypnotic-pattern", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5650, - "fields": { - "parent": "srd_ice-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5652, - "fields": { - "parent": "srd_ice-storm", - "type": "slot_level_5", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5653, - "fields": { - "parent": "srd_ice-storm", - "type": "slot_level_6", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5654, - "fields": { - "parent": "srd_ice-storm", - "type": "slot_level_7", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5655, - "fields": { - "parent": "srd_ice-storm", - "type": "slot_level_8", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5656, - "fields": { - "parent": "srd_ice-storm", - "type": "slot_level_9", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5657, - "fields": { - "parent": "srd_identify", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5658, - "fields": { - "parent": "srd_identify", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5659, - "fields": { - "parent": "srd_illusory-script", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5660, - "fields": { - "parent": "srd_illusory-script", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5661, - "fields": { - "parent": "srd_imprisonment", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5662, - "fields": { - "parent": "srd_incendiary-cloud", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5663, - "fields": { - "parent": "srd_inflict-wounds", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5665, - "fields": { - "parent": "srd_inflict-wounds", - "type": "slot_level_2", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5666, - "fields": { - "parent": "srd_inflict-wounds", - "type": "slot_level_3", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5667, - "fields": { - "parent": "srd_inflict-wounds", - "type": "slot_level_4", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5668, - "fields": { - "parent": "srd_inflict-wounds", - "type": "slot_level_5", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5669, - "fields": { - "parent": "srd_inflict-wounds", - "type": "slot_level_6", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5670, - "fields": { - "parent": "srd_inflict-wounds", - "type": "slot_level_7", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5671, - "fields": { - "parent": "srd_inflict-wounds", - "type": "slot_level_8", - "damage_roll": "10d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5672, - "fields": { - "parent": "srd_inflict-wounds", - "type": "slot_level_9", - "damage_roll": "11d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5673, - "fields": { - "parent": "srd_insect-plague", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5675, - "fields": { - "parent": "srd_insect-plague", - "type": "slot_level_6", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5676, - "fields": { - "parent": "srd_insect-plague", - "type": "slot_level_7", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5677, - "fields": { - "parent": "srd_insect-plague", - "type": "slot_level_8", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5678, - "fields": { - "parent": "srd_insect-plague", - "type": "slot_level_9", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5679, - "fields": { - "parent": "srd_instant-summons", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5680, - "fields": { - "parent": "srd_instant-summons", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5681, - "fields": { - "parent": "srd_invisibility", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5683, - "fields": { - "parent": "srd_invisibility", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5684, - "fields": { - "parent": "srd_invisibility", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5685, - "fields": { - "parent": "srd_invisibility", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5686, - "fields": { - "parent": "srd_invisibility", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5687, - "fields": { - "parent": "srd_invisibility", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5688, - "fields": { - "parent": "srd_invisibility", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5689, - "fields": { - "parent": "srd_invisibility", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5690, - "fields": { - "parent": "srd_irresistible-dance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5691, - "fields": { - "parent": "srd_jump", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5692, - "fields": { - "parent": "srd_knock", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5693, - "fields": { - "parent": "srd_legend-lore", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5694, - "fields": { - "parent": "srd_lesser-restoration", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5695, - "fields": { - "parent": "srd_levitate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5696, - "fields": { - "parent": "srd_light", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5697, - "fields": { - "parent": "srd_lightning-bolt", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5699, - "fields": { - "parent": "srd_lightning-bolt", - "type": "slot_level_4", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5700, - "fields": { - "parent": "srd_lightning-bolt", - "type": "slot_level_5", - "damage_roll": "10d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5701, - "fields": { - "parent": "srd_lightning-bolt", - "type": "slot_level_6", - "damage_roll": "11d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5702, - "fields": { - "parent": "srd_lightning-bolt", - "type": "slot_level_7", - "damage_roll": "12d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5703, - "fields": { - "parent": "srd_lightning-bolt", - "type": "slot_level_8", - "damage_roll": "13d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5704, - "fields": { - "parent": "srd_lightning-bolt", - "type": "slot_level_9", - "damage_roll": "14d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5705, - "fields": { - "parent": "srd_locate-animals-or-plants", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5706, - "fields": { - "parent": "srd_locate-animals-or-plants", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5707, - "fields": { - "parent": "srd_locate-creature", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5708, - "fields": { - "parent": "srd_locate-object", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5709, - "fields": { - "parent": "srd_longstrider", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5711, - "fields": { - "parent": "srd_longstrider", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5712, - "fields": { - "parent": "srd_longstrider", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5713, - "fields": { - "parent": "srd_longstrider", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5714, - "fields": { - "parent": "srd_longstrider", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5715, - "fields": { - "parent": "srd_longstrider", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5716, - "fields": { - "parent": "srd_longstrider", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5717, - "fields": { - "parent": "srd_longstrider", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5718, - "fields": { - "parent": "srd_longstrider", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5719, - "fields": { - "parent": "srd_mage-armor", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5720, - "fields": { - "parent": "srd_mage-hand", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5721, - "fields": { - "parent": "srd_magic-circle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5723, - "fields": { - "parent": "srd_magic-circle", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": "2 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5724, - "fields": { - "parent": "srd_magic-circle", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": "3 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5725, - "fields": { - "parent": "srd_magic-circle", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "4 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5726, - "fields": { - "parent": "srd_magic-circle", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "5 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5727, - "fields": { - "parent": "srd_magic-circle", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "6 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5728, - "fields": { - "parent": "srd_magic-circle", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "7 hours", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5729, - "fields": { - "parent": "srd_magic-jar", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5730, - "fields": { - "parent": "srd_magic-missile", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5732, - "fields": { - "parent": "srd_magic-missile", - "type": "slot_level_2", - "damage_roll": null, - "target_count": 2, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5733, - "fields": { - "parent": "srd_magic-missile", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 3, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5734, - "fields": { - "parent": "srd_magic-missile", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5735, - "fields": { - "parent": "srd_magic-missile", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5736, - "fields": { - "parent": "srd_magic-missile", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5737, - "fields": { - "parent": "srd_magic-missile", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5738, - "fields": { - "parent": "srd_magic-missile", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5739, - "fields": { - "parent": "srd_magic-missile", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5740, - "fields": { - "parent": "srd_magic-mouth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5741, - "fields": { - "parent": "srd_magic-mouth", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5742, - "fields": { - "parent": "srd_magic-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5744, - "fields": { - "parent": "srd_magic-weapon", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5745, - "fields": { - "parent": "srd_magic-weapon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5746, - "fields": { - "parent": "srd_magic-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5747, - "fields": { - "parent": "srd_magic-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5748, - "fields": { - "parent": "srd_magic-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5749, - "fields": { - "parent": "srd_magic-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5750, - "fields": { - "parent": "srd_magic-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5751, - "fields": { - "parent": "srd_magnificent-mansion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5752, - "fields": { - "parent": "srd_major-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5754, - "fields": { - "parent": "srd_major-image", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5755, - "fields": { - "parent": "srd_major-image", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5756, - "fields": { - "parent": "srd_major-image", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5757, - "fields": { - "parent": "srd_major-image", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5758, - "fields": { - "parent": "srd_major-image", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5759, - "fields": { - "parent": "srd_major-image", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5760, - "fields": { - "parent": "srd_mass-cure-wounds", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5762, - "fields": { - "parent": "srd_mass-cure-wounds", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5763, - "fields": { - "parent": "srd_mass-cure-wounds", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5764, - "fields": { - "parent": "srd_mass-cure-wounds", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5765, - "fields": { - "parent": "srd_mass-cure-wounds", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5766, - "fields": { - "parent": "srd_mass-heal", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5767, - "fields": { - "parent": "srd_mass-healing-word", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5769, - "fields": { - "parent": "srd_mass-healing-word", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5770, - "fields": { - "parent": "srd_mass-healing-word", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5771, - "fields": { - "parent": "srd_mass-healing-word", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5772, - "fields": { - "parent": "srd_mass-healing-word", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5773, - "fields": { - "parent": "srd_mass-healing-word", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5774, - "fields": { - "parent": "srd_mass-healing-word", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5775, - "fields": { - "parent": "srd_mass-suggestion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5777, - "fields": { - "parent": "srd_mass-suggestion", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "10 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5778, - "fields": { - "parent": "srd_mass-suggestion", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "30 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5779, - "fields": { - "parent": "srd_mass-suggestion", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "A year and a day", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5780, - "fields": { - "parent": "srd_maze", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5781, - "fields": { - "parent": "srd_meld-into-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5782, - "fields": { - "parent": "srd_meld-into-stone", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5783, - "fields": { - "parent": "srd_mending", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5784, - "fields": { - "parent": "srd_message", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5785, - "fields": { - "parent": "srd_meteor-swarm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5786, - "fields": { - "parent": "srd_mind-blank", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5787, - "fields": { - "parent": "srd_minor-illusion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5788, - "fields": { - "parent": "srd_mirage-arcane", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5789, - "fields": { - "parent": "srd_mirror-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5790, - "fields": { - "parent": "srd_mislead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5791, - "fields": { - "parent": "srd_misty-step", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5792, - "fields": { - "parent": "srd_modify-memory", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5794, - "fields": { - "parent": "srd_modify-memory", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5795, - "fields": { - "parent": "srd_modify-memory", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5796, - "fields": { - "parent": "srd_modify-memory", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5797, - "fields": { - "parent": "srd_modify-memory", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5798, - "fields": { - "parent": "srd_moonbeam", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5800, - "fields": { - "parent": "srd_moonbeam", - "type": "slot_level_3", - "damage_roll": "3d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5801, - "fields": { - "parent": "srd_moonbeam", - "type": "slot_level_4", - "damage_roll": "4d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5802, - "fields": { - "parent": "srd_moonbeam", - "type": "slot_level_5", - "damage_roll": "5d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5803, - "fields": { - "parent": "srd_moonbeam", - "type": "slot_level_6", - "damage_roll": "6d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5804, - "fields": { - "parent": "srd_moonbeam", - "type": "slot_level_7", - "damage_roll": "7d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5805, - "fields": { - "parent": "srd_moonbeam", - "type": "slot_level_8", - "damage_roll": "8d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5806, - "fields": { - "parent": "srd_moonbeam", - "type": "slot_level_9", - "damage_roll": "9d10", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5807, - "fields": { - "parent": "srd_move-earth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5808, - "fields": { - "parent": "srd_nondetection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5809, - "fields": { - "parent": "srd_pass-without-trace", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5810, - "fields": { - "parent": "srd_passwall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5811, - "fields": { - "parent": "srd_phantasmal-killer", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5813, - "fields": { - "parent": "srd_phantasmal-killer", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5814, - "fields": { - "parent": "srd_phantasmal-killer", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5815, - "fields": { - "parent": "srd_phantasmal-killer", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5816, - "fields": { - "parent": "srd_phantasmal-killer", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5817, - "fields": { - "parent": "srd_phantasmal-killer", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5818, - "fields": { - "parent": "srd_phantom-steed", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5819, - "fields": { - "parent": "srd_phantom-steed", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5820, - "fields": { - "parent": "srd_planar-ally", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5821, - "fields": { - "parent": "srd_planar-binding", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5823, - "fields": { - "parent": "srd_planar-binding", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": "10 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5824, - "fields": { - "parent": "srd_planar-binding", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": "30 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5825, - "fields": { - "parent": "srd_planar-binding", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": "180 days", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5826, - "fields": { - "parent": "srd_planar-binding", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": "A year and a day", - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5827, - "fields": { - "parent": "srd_plane-shift", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5828, - "fields": { - "parent": "srd_plant-growth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5829, - "fields": { - "parent": "srd_poison-spray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5830, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5831, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_2", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5832, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_3", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5833, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5834, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_5", - "damage_roll": "2d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5835, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_6", - "damage_roll": "2d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5836, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_7", - "damage_roll": "2d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5837, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_8", - "damage_roll": "2d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5838, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_9", - "damage_roll": "2d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5839, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_10", - "damage_roll": "2d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5840, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_11", - "damage_roll": "3d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5841, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_12", - "damage_roll": "3d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5842, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_13", - "damage_roll": "3d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5843, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_14", - "damage_roll": "3d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5844, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_15", - "damage_roll": "3d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5845, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_16", - "damage_roll": "3d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5846, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_17", - "damage_roll": "4d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5847, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_18", - "damage_roll": "4d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5848, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_19", - "damage_roll": "4d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5849, - "fields": { - "parent": "srd_poison-spray", - "type": "player_level_20", - "damage_roll": "4d12", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5850, - "fields": { - "parent": "srd_polymorph", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5851, - "fields": { - "parent": "srd_power-word-kill", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5852, - "fields": { - "parent": "srd_power-word-stun", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5853, - "fields": { - "parent": "srd_prayer-of-healing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5855, - "fields": { - "parent": "srd_prayer-of-healing", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5856, - "fields": { - "parent": "srd_prayer-of-healing", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5857, - "fields": { - "parent": "srd_prayer-of-healing", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5858, - "fields": { - "parent": "srd_prayer-of-healing", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5859, - "fields": { - "parent": "srd_prayer-of-healing", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5860, - "fields": { - "parent": "srd_prayer-of-healing", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5861, - "fields": { - "parent": "srd_prayer-of-healing", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5862, - "fields": { - "parent": "srd_prestidigitation", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5863, - "fields": { - "parent": "srd_prismatic-spray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5864, - "fields": { - "parent": "srd_prismatic-wall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5865, - "fields": { - "parent": "srd_private-sanctum", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5867, - "fields": { - "parent": "srd_private-sanctum", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5868, - "fields": { - "parent": "srd_private-sanctum", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5869, - "fields": { - "parent": "srd_private-sanctum", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5870, - "fields": { - "parent": "srd_private-sanctum", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5871, - "fields": { - "parent": "srd_private-sanctum", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5872, - "fields": { - "parent": "srd_produce-flame", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5873, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5874, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5875, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5876, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5877, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5878, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5879, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5880, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5881, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5882, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5883, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5884, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5885, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5886, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5887, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5888, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5889, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5890, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5891, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5892, - "fields": { - "parent": "srd_produce-flame", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5893, - "fields": { - "parent": "srd_programmed-illusion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5894, - "fields": { - "parent": "srd_project-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5895, - "fields": { - "parent": "srd_protection-from-energy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5896, - "fields": { - "parent": "srd_protection-from-evil-and-good", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5897, - "fields": { - "parent": "srd_protection-from-poison", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5898, - "fields": { - "parent": "srd_purify-food-and-drink", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5899, - "fields": { - "parent": "srd_purify-food-and-drink", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5900, - "fields": { - "parent": "srd_raise-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5901, - "fields": { - "parent": "srd_ray-of-enfeeblement", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5902, - "fields": { - "parent": "srd_ray-of-frost", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5903, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5904, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5905, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5906, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5907, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5908, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5909, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5910, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5911, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5912, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5913, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5914, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5915, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5916, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5917, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5918, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5919, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5920, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5921, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5922, - "fields": { - "parent": "srd_ray-of-frost", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5923, - "fields": { - "parent": "srd_regenerate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5924, - "fields": { - "parent": "srd_reincarnate", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5925, - "fields": { - "parent": "srd_remove-curse", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5926, - "fields": { - "parent": "srd_resilient-sphere", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5927, - "fields": { - "parent": "srd_resistance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5928, - "fields": { - "parent": "srd_resurrection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5929, - "fields": { - "parent": "srd_reverse-gravity", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5930, - "fields": { - "parent": "srd_revivify", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5931, - "fields": { - "parent": "srd_rope-trick", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5932, - "fields": { - "parent": "srd_sacred-flame", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5933, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5934, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5935, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5936, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5937, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5938, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5939, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5940, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5941, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5942, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5943, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5944, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5945, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5946, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5947, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5948, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5949, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5950, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5951, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5952, - "fields": { - "parent": "srd_sacred-flame", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5953, - "fields": { - "parent": "srd_sanctuary", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5954, - "fields": { - "parent": "srd_scorching-ray", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5956, - "fields": { - "parent": "srd_scorching-ray", - "type": "slot_level_3", - "damage_roll": null, - "target_count": 4, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5957, - "fields": { - "parent": "srd_scorching-ray", - "type": "slot_level_4", - "damage_roll": null, - "target_count": 5, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5958, - "fields": { - "parent": "srd_scorching-ray", - "type": "slot_level_5", - "damage_roll": null, - "target_count": 6, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5959, - "fields": { - "parent": "srd_scorching-ray", - "type": "slot_level_6", - "damage_roll": null, - "target_count": 7, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5960, - "fields": { - "parent": "srd_scorching-ray", - "type": "slot_level_7", - "damage_roll": null, - "target_count": 8, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5961, - "fields": { - "parent": "srd_scorching-ray", - "type": "slot_level_8", - "damage_roll": null, - "target_count": 9, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5962, - "fields": { - "parent": "srd_scorching-ray", - "type": "slot_level_9", - "damage_roll": null, - "target_count": 10, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5963, - "fields": { - "parent": "srd_scrying", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5964, - "fields": { - "parent": "srd_secret-chest", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5965, - "fields": { - "parent": "srd_see-invisibility", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5966, - "fields": { - "parent": "srd_seeming", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5967, - "fields": { - "parent": "srd_sending", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5968, - "fields": { - "parent": "srd_sequester", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5969, - "fields": { - "parent": "srd_shapechange", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5970, - "fields": { - "parent": "srd_shatter", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5972, - "fields": { - "parent": "srd_shatter", - "type": "slot_level_3", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5973, - "fields": { - "parent": "srd_shatter", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5974, - "fields": { - "parent": "srd_shatter", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5975, - "fields": { - "parent": "srd_shatter", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5976, - "fields": { - "parent": "srd_shatter", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5977, - "fields": { - "parent": "srd_shatter", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5978, - "fields": { - "parent": "srd_shatter", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5979, - "fields": { - "parent": "srd_shield", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5980, - "fields": { - "parent": "srd_shield-of-faith", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5981, - "fields": { - "parent": "srd_shillelagh", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5982, - "fields": { - "parent": "srd_shocking-grasp", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5983, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5984, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5985, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5986, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5987, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_5", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5988, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_6", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5989, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_7", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5990, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_8", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5991, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_9", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5992, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_10", - "damage_roll": "2d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5993, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_11", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5994, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_12", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5995, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_13", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5996, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_14", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5997, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_15", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5998, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_16", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 5999, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_17", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6000, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_18", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6001, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_19", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6002, - "fields": { - "parent": "srd_shocking-grasp", - "type": "player_level_20", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6003, - "fields": { - "parent": "srd_silence", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6004, - "fields": { - "parent": "srd_silence", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6005, - "fields": { - "parent": "srd_silent-image", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6006, - "fields": { - "parent": "srd_simulacrum", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6007, - "fields": { - "parent": "srd_sleep", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6009, - "fields": { - "parent": "srd_sleep", - "type": "slot_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6010, - "fields": { - "parent": "srd_sleep", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6011, - "fields": { - "parent": "srd_sleep", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6012, - "fields": { - "parent": "srd_sleep", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6013, - "fields": { - "parent": "srd_sleep", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6014, - "fields": { - "parent": "srd_sleep", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6015, - "fields": { - "parent": "srd_sleep", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6016, - "fields": { - "parent": "srd_sleep", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6017, - "fields": { - "parent": "srd_sleet-storm", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6018, - "fields": { - "parent": "srd_slow", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6019, - "fields": { - "parent": "srd_spare-the-dying", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6020, - "fields": { - "parent": "srd_speak-with-animals", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6021, - "fields": { - "parent": "srd_speak-with-animals", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6022, - "fields": { - "parent": "srd_speak-with-dead", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6023, - "fields": { - "parent": "srd_speak-with-plants", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6024, - "fields": { - "parent": "srd_spider-climb", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6025, - "fields": { - "parent": "srd_spike-growth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6026, - "fields": { - "parent": "srd_spirit-guardians", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6028, - "fields": { - "parent": "srd_spirit-guardians", - "type": "slot_level_4", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6029, - "fields": { - "parent": "srd_spirit-guardians", - "type": "slot_level_5", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6030, - "fields": { - "parent": "srd_spirit-guardians", - "type": "slot_level_6", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6031, - "fields": { - "parent": "srd_spirit-guardians", - "type": "slot_level_7", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6032, - "fields": { - "parent": "srd_spirit-guardians", - "type": "slot_level_8", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6033, - "fields": { - "parent": "srd_spirit-guardians", - "type": "slot_level_9", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6034, - "fields": { - "parent": "srd_spiritual-weapon", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6036, - "fields": { - "parent": "srd_spiritual-weapon", - "type": "slot_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6037, - "fields": { - "parent": "srd_spiritual-weapon", - "type": "slot_level_4", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6038, - "fields": { - "parent": "srd_spiritual-weapon", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6039, - "fields": { - "parent": "srd_spiritual-weapon", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6040, - "fields": { - "parent": "srd_spiritual-weapon", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6041, - "fields": { - "parent": "srd_spiritual-weapon", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6042, - "fields": { - "parent": "srd_spiritual-weapon", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6043, - "fields": { - "parent": "srd_stinking-cloud", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6044, - "fields": { - "parent": "srd_stone-shape", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6045, - "fields": { - "parent": "srd_stoneskin", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6046, - "fields": { - "parent": "srd_storm-of-vengeance", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6047, - "fields": { - "parent": "srd_suggestion", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6048, - "fields": { - "parent": "srd_sunbeam", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6049, - "fields": { - "parent": "srd_sunburst", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6050, - "fields": { - "parent": "srd_symbol", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6051, - "fields": { - "parent": "srd_telekinesis", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6052, - "fields": { - "parent": "srd_telepathic-bond", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6053, - "fields": { - "parent": "srd_telepathic-bond", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6054, - "fields": { - "parent": "srd_teleport", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6055, - "fields": { - "parent": "srd_teleportation-circle", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6056, - "fields": { - "parent": "srd_thaumaturgy", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6057, - "fields": { - "parent": "srd_thunderwave", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6059, - "fields": { - "parent": "srd_thunderwave", - "type": "slot_level_2", - "damage_roll": "3d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6060, - "fields": { - "parent": "srd_thunderwave", - "type": "slot_level_3", - "damage_roll": "4d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6061, - "fields": { - "parent": "srd_thunderwave", - "type": "slot_level_4", - "damage_roll": "5d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6062, - "fields": { - "parent": "srd_thunderwave", - "type": "slot_level_5", - "damage_roll": "6d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6063, - "fields": { - "parent": "srd_thunderwave", - "type": "slot_level_6", - "damage_roll": "7d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6064, - "fields": { - "parent": "srd_thunderwave", - "type": "slot_level_7", - "damage_roll": "8d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6065, - "fields": { - "parent": "srd_thunderwave", - "type": "slot_level_8", - "damage_roll": "9d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6066, - "fields": { - "parent": "srd_thunderwave", - "type": "slot_level_9", - "damage_roll": "10d8", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6067, - "fields": { - "parent": "srd_time-stop", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6068, - "fields": { - "parent": "srd_tiny-hut", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6069, - "fields": { - "parent": "srd_tiny-hut", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6070, - "fields": { - "parent": "srd_tongues", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6071, - "fields": { - "parent": "srd_transport-via-plants", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6072, - "fields": { - "parent": "srd_tree-stride", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6073, - "fields": { - "parent": "srd_true-polymorph", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6074, - "fields": { - "parent": "srd_true-resurrection", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6075, - "fields": { - "parent": "srd_true-seeing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6076, - "fields": { - "parent": "srd_true-strike", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6077, - "fields": { - "parent": "srd_unseen-servant", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6078, - "fields": { - "parent": "srd_unseen-servant", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6079, - "fields": { - "parent": "srd_vampiric-touch", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6081, - "fields": { - "parent": "srd_vampiric-touch", - "type": "slot_level_4", - "damage_roll": "4d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6082, - "fields": { - "parent": "srd_vampiric-touch", - "type": "slot_level_5", - "damage_roll": "5d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6083, - "fields": { - "parent": "srd_vampiric-touch", - "type": "slot_level_6", - "damage_roll": "6d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6084, - "fields": { - "parent": "srd_vampiric-touch", - "type": "slot_level_7", - "damage_roll": "7d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6085, - "fields": { - "parent": "srd_vampiric-touch", - "type": "slot_level_8", - "damage_roll": "8d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6086, - "fields": { - "parent": "srd_vampiric-touch", - "type": "slot_level_9", - "damage_roll": "9d6", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6087, - "fields": { - "parent": "srd_vicious-mockery", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6088, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_1", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6089, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_2", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6090, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_3", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6091, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_4", - "damage_roll": "", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6092, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_5", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6093, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_6", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6094, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_7", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6095, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_8", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6096, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_9", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6097, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_10", - "damage_roll": "2d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6098, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_11", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6099, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_12", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6100, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_13", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6101, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_14", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6102, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_15", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6103, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_16", - "damage_roll": "3d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6104, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_17", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6105, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_18", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6106, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_19", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6107, - "fields": { - "parent": "srd_vicious-mockery", - "type": "player_level_20", - "damage_roll": "4d4", - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6108, - "fields": { - "parent": "srd_wall-of-fire", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6110, - "fields": { - "parent": "srd_wall-of-fire", - "type": "slot_level_5", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6111, - "fields": { - "parent": "srd_wall-of-fire", - "type": "slot_level_6", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6112, - "fields": { - "parent": "srd_wall-of-fire", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6113, - "fields": { - "parent": "srd_wall-of-fire", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6114, - "fields": { - "parent": "srd_wall-of-fire", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6115, - "fields": { - "parent": "srd_wall-of-force", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6116, - "fields": { - "parent": "srd_wall-of-ice", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6118, - "fields": { - "parent": "srd_wall-of-ice", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6119, - "fields": { - "parent": "srd_wall-of-ice", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6120, - "fields": { - "parent": "srd_wall-of-ice", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6121, - "fields": { - "parent": "srd_wall-of-stone", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6122, - "fields": { - "parent": "srd_wall-of-thorns", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6124, - "fields": { - "parent": "srd_wall-of-thorns", - "type": "slot_level_7", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6125, - "fields": { - "parent": "srd_wall-of-thorns", - "type": "slot_level_8", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6126, - "fields": { - "parent": "srd_wall-of-thorns", - "type": "slot_level_9", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6127, - "fields": { - "parent": "srd_warding-bond", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6128, - "fields": { - "parent": "srd_water-breathing", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6129, - "fields": { - "parent": "srd_water-breathing", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6130, - "fields": { - "parent": "srd_water-walk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6131, - "fields": { - "parent": "srd_water-walk", - "type": "ritual", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6132, - "fields": { - "parent": "srd_web", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6133, - "fields": { - "parent": "srd_weird", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6134, - "fields": { - "parent": "srd_wind-walk", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6135, - "fields": { - "parent": "srd_wind-wall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6136, - "fields": { - "parent": "srd_wish", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6137, - "fields": { - "parent": "srd_word-of-recall", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - }, - { - "model": "api_v2.spellcastingoption", - "pk": 6138, - "fields": { - "parent": "srd_zone-of-truth", - "type": "default", - "damage_roll": null, - "target_count": null, - "duration": null, - "range": null - } - } -] \ No newline at end of file +{ + "model": "api_v2.spellcastingoption", + "pk": 5005, + "fields": { + "parent": "srd_acid-arrow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5007, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5008, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5009, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5010, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5011, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5012, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5013, + "fields": { + "parent": "srd_acid-arrow", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5014, + "fields": { + "parent": "srd_acid-splash", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5015, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5016, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5017, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5018, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5019, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_5", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5020, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_6", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5021, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_7", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5022, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_8", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5023, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_9", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5024, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_10", + "damage_roll": "2d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5025, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_11", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5026, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_12", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5027, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_13", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5028, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_14", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5029, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_15", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5030, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_16", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5031, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_17", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5032, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_18", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5033, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_19", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5034, + "fields": { + "parent": "srd_acid-splash", + "type": "player_level_20", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5035, + "fields": { + "parent": "srd_aid", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5037, + "fields": { + "parent": "srd_aid", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5038, + "fields": { + "parent": "srd_aid", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5039, + "fields": { + "parent": "srd_aid", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5040, + "fields": { + "parent": "srd_aid", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5041, + "fields": { + "parent": "srd_aid", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5042, + "fields": { + "parent": "srd_aid", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5043, + "fields": { + "parent": "srd_aid", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5044, + "fields": { + "parent": "srd_alarm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5045, + "fields": { + "parent": "srd_alarm", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5046, + "fields": { + "parent": "srd_alter-self", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5047, + "fields": { + "parent": "srd_animal-friendship", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5049, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5050, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5051, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5052, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5053, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5054, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5055, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5056, + "fields": { + "parent": "srd_animal-friendship", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5057, + "fields": { + "parent": "srd_animal-messenger", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5058, + "fields": { + "parent": "srd_animal-messenger", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5060, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": "3 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5061, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "5 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5062, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "7 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5063, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "9 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5064, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "11 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5065, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "13 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5066, + "fields": { + "parent": "srd_animal-messenger", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "15 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5067, + "fields": { + "parent": "srd_animal-shapes", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5068, + "fields": { + "parent": "srd_animate-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5070, + "fields": { + "parent": "srd_animate-dead", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5071, + "fields": { + "parent": "srd_animate-dead", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5072, + "fields": { + "parent": "srd_animate-dead", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5073, + "fields": { + "parent": "srd_animate-dead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5074, + "fields": { + "parent": "srd_animate-dead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5075, + "fields": { + "parent": "srd_animate-dead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5076, + "fields": { + "parent": "srd_animate-objects", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5078, + "fields": { + "parent": "srd_animate-objects", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5079, + "fields": { + "parent": "srd_animate-objects", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5080, + "fields": { + "parent": "srd_animate-objects", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5081, + "fields": { + "parent": "srd_animate-objects", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5082, + "fields": { + "parent": "srd_antilife-shell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5083, + "fields": { + "parent": "srd_antimagic-field", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5084, + "fields": { + "parent": "srd_antipathysympathy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5085, + "fields": { + "parent": "srd_arcane-eye", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5086, + "fields": { + "parent": "srd_arcane-hand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5088, + "fields": { + "parent": "srd_arcane-hand", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5089, + "fields": { + "parent": "srd_arcane-hand", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5090, + "fields": { + "parent": "srd_arcane-hand", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5091, + "fields": { + "parent": "srd_arcane-hand", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5092, + "fields": { + "parent": "srd_arcane-lock", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5093, + "fields": { + "parent": "srd_arcane-sword", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5094, + "fields": { + "parent": "srd_arcanists-magic-aura", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5095, + "fields": { + "parent": "srd_astral-projection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5096, + "fields": { + "parent": "srd_augury", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5097, + "fields": { + "parent": "srd_augury", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5098, + "fields": { + "parent": "srd_awaken", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5099, + "fields": { + "parent": "srd_bane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5101, + "fields": { + "parent": "srd_bane", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5102, + "fields": { + "parent": "srd_bane", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5103, + "fields": { + "parent": "srd_bane", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5104, + "fields": { + "parent": "srd_bane", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5105, + "fields": { + "parent": "srd_bane", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5106, + "fields": { + "parent": "srd_bane", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5107, + "fields": { + "parent": "srd_bane", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5108, + "fields": { + "parent": "srd_bane", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 11, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5109, + "fields": { + "parent": "srd_banishment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5111, + "fields": { + "parent": "srd_banishment", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5112, + "fields": { + "parent": "srd_banishment", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5113, + "fields": { + "parent": "srd_banishment", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5114, + "fields": { + "parent": "srd_banishment", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5115, + "fields": { + "parent": "srd_banishment", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5116, + "fields": { + "parent": "srd_barkskin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5117, + "fields": { + "parent": "srd_beacon-of-hope", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5118, + "fields": { + "parent": "srd_bestow-curse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5120, + "fields": { + "parent": "srd_bestow-curse", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5121, + "fields": { + "parent": "srd_bestow-curse", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5122, + "fields": { + "parent": "srd_bestow-curse", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5123, + "fields": { + "parent": "srd_bestow-curse", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5124, + "fields": { + "parent": "srd_bestow-curse", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "24 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5125, + "fields": { + "parent": "srd_bestow-curse", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5126, + "fields": { + "parent": "srd_black-tentacles", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5127, + "fields": { + "parent": "srd_blade-barrier", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5128, + "fields": { + "parent": "srd_bless", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5130, + "fields": { + "parent": "srd_bless", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5131, + "fields": { + "parent": "srd_bless", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5132, + "fields": { + "parent": "srd_bless", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5133, + "fields": { + "parent": "srd_bless", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5134, + "fields": { + "parent": "srd_bless", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5135, + "fields": { + "parent": "srd_bless", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5136, + "fields": { + "parent": "srd_bless", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5137, + "fields": { + "parent": "srd_bless", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 11, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5138, + "fields": { + "parent": "srd_blight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5140, + "fields": { + "parent": "srd_blight", + "type": "slot_level_5", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5141, + "fields": { + "parent": "srd_blight", + "type": "slot_level_6", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5142, + "fields": { + "parent": "srd_blight", + "type": "slot_level_7", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5143, + "fields": { + "parent": "srd_blight", + "type": "slot_level_8", + "damage_roll": "12d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5144, + "fields": { + "parent": "srd_blight", + "type": "slot_level_9", + "damage_roll": "13d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5145, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5147, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5148, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5149, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5150, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5151, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5152, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5153, + "fields": { + "parent": "srd_blindnessdeafness", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5154, + "fields": { + "parent": "srd_blink", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5155, + "fields": { + "parent": "srd_blur", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5156, + "fields": { + "parent": "srd_branding-smite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5158, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5159, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5160, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5161, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5162, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5163, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5164, + "fields": { + "parent": "srd_branding-smite", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5165, + "fields": { + "parent": "srd_burning-hands", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5167, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_2", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5168, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_3", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5169, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_4", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5170, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_5", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5171, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_6", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5172, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_7", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5173, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_8", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5174, + "fields": { + "parent": "srd_burning-hands", + "type": "slot_level_9", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5175, + "fields": { + "parent": "srd_call-lightning", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5177, + "fields": { + "parent": "srd_call-lightning", + "type": "slot_level_4", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5178, + "fields": { + "parent": "srd_call-lightning", + "type": "slot_level_5", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5179, + "fields": { + "parent": "srd_call-lightning", + "type": "slot_level_6", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5180, + "fields": { + "parent": "srd_call-lightning", + "type": "slot_level_7", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5181, + "fields": { + "parent": "srd_call-lightning", + "type": "slot_level_8", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5182, + "fields": { + "parent": "srd_call-lightning", + "type": "slot_level_9", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5183, + "fields": { + "parent": "srd_calm-emotions", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5184, + "fields": { + "parent": "srd_chain-lightning", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5186, + "fields": { + "parent": "srd_chain-lightning", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5187, + "fields": { + "parent": "srd_chain-lightning", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5188, + "fields": { + "parent": "srd_chain-lightning", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5189, + "fields": { + "parent": "srd_charm-person", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5191, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5192, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5193, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5194, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5195, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5196, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5197, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5198, + "fields": { + "parent": "srd_charm-person", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5199, + "fields": { + "parent": "srd_chill-touch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5200, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5201, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5202, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5203, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5204, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5205, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5206, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5207, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5208, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5209, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5210, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5211, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5212, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5213, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5214, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5215, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5216, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5217, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5218, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5219, + "fields": { + "parent": "srd_chill-touch", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5220, + "fields": { + "parent": "srd_circle-of-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5222, + "fields": { + "parent": "srd_circle-of-death", + "type": "slot_level_7", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5223, + "fields": { + "parent": "srd_circle-of-death", + "type": "slot_level_8", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5224, + "fields": { + "parent": "srd_circle-of-death", + "type": "slot_level_9", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5225, + "fields": { + "parent": "srd_clairvoyance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5226, + "fields": { + "parent": "srd_clone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5227, + "fields": { + "parent": "srd_cloudkill", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5229, + "fields": { + "parent": "srd_cloudkill", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5230, + "fields": { + "parent": "srd_cloudkill", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5231, + "fields": { + "parent": "srd_cloudkill", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5232, + "fields": { + "parent": "srd_cloudkill", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5233, + "fields": { + "parent": "srd_color-spray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5235, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5236, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5237, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5238, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5239, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5240, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5241, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5242, + "fields": { + "parent": "srd_color-spray", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5243, + "fields": { + "parent": "srd_command", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5245, + "fields": { + "parent": "srd_command", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5246, + "fields": { + "parent": "srd_command", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5247, + "fields": { + "parent": "srd_command", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5248, + "fields": { + "parent": "srd_command", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5249, + "fields": { + "parent": "srd_command", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5250, + "fields": { + "parent": "srd_command", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5251, + "fields": { + "parent": "srd_command", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5252, + "fields": { + "parent": "srd_command", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5253, + "fields": { + "parent": "srd_commune", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5254, + "fields": { + "parent": "srd_commune", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5255, + "fields": { + "parent": "srd_commune-with-nature", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5256, + "fields": { + "parent": "srd_commune-with-nature", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5257, + "fields": { + "parent": "srd_comprehend-languages", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5258, + "fields": { + "parent": "srd_comprehend-languages", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5259, + "fields": { + "parent": "srd_compulsion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5260, + "fields": { + "parent": "srd_cone-of-cold", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5262, + "fields": { + "parent": "srd_cone-of-cold", + "type": "slot_level_6", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5263, + "fields": { + "parent": "srd_cone-of-cold", + "type": "slot_level_7", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5264, + "fields": { + "parent": "srd_cone-of-cold", + "type": "slot_level_8", + "damage_roll": "11d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5265, + "fields": { + "parent": "srd_cone-of-cold", + "type": "slot_level_9", + "damage_roll": "12d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5266, + "fields": { + "parent": "srd_confusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5268, + "fields": { + "parent": "srd_confusion", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5269, + "fields": { + "parent": "srd_confusion", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5270, + "fields": { + "parent": "srd_confusion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5271, + "fields": { + "parent": "srd_confusion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5272, + "fields": { + "parent": "srd_confusion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5273, + "fields": { + "parent": "srd_conjure-animals", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5275, + "fields": { + "parent": "srd_conjure-animals", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5276, + "fields": { + "parent": "srd_conjure-animals", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5277, + "fields": { + "parent": "srd_conjure-animals", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5278, + "fields": { + "parent": "srd_conjure-animals", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5279, + "fields": { + "parent": "srd_conjure-animals", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5280, + "fields": { + "parent": "srd_conjure-animals", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5281, + "fields": { + "parent": "srd_conjure-celestial", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5283, + "fields": { + "parent": "srd_conjure-celestial", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5284, + "fields": { + "parent": "srd_conjure-celestial", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5285, + "fields": { + "parent": "srd_conjure-elemental", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5287, + "fields": { + "parent": "srd_conjure-elemental", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5288, + "fields": { + "parent": "srd_conjure-elemental", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5289, + "fields": { + "parent": "srd_conjure-elemental", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5290, + "fields": { + "parent": "srd_conjure-elemental", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5291, + "fields": { + "parent": "srd_conjure-fey", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5293, + "fields": { + "parent": "srd_conjure-fey", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5294, + "fields": { + "parent": "srd_conjure-fey", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5295, + "fields": { + "parent": "srd_conjure-fey", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5296, + "fields": { + "parent": "srd_conjure-minor-elementals", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5298, + "fields": { + "parent": "srd_conjure-minor-elementals", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5299, + "fields": { + "parent": "srd_conjure-minor-elementals", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5300, + "fields": { + "parent": "srd_conjure-minor-elementals", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5301, + "fields": { + "parent": "srd_conjure-minor-elementals", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5302, + "fields": { + "parent": "srd_conjure-minor-elementals", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5303, + "fields": { + "parent": "srd_conjure-woodland-beings", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5305, + "fields": { + "parent": "srd_conjure-woodland-beings", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5306, + "fields": { + "parent": "srd_conjure-woodland-beings", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5307, + "fields": { + "parent": "srd_conjure-woodland-beings", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5308, + "fields": { + "parent": "srd_conjure-woodland-beings", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5309, + "fields": { + "parent": "srd_conjure-woodland-beings", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5310, + "fields": { + "parent": "srd_contact-other-plane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5311, + "fields": { + "parent": "srd_contact-other-plane", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5312, + "fields": { + "parent": "srd_contagion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5313, + "fields": { + "parent": "srd_contingency", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5314, + "fields": { + "parent": "srd_continual-flame", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5315, + "fields": { + "parent": "srd_control-water", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5316, + "fields": { + "parent": "srd_control-weather", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5317, + "fields": { + "parent": "srd_counterspell", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5319, + "fields": { + "parent": "srd_counterspell", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5320, + "fields": { + "parent": "srd_counterspell", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5321, + "fields": { + "parent": "srd_counterspell", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5322, + "fields": { + "parent": "srd_counterspell", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5323, + "fields": { + "parent": "srd_counterspell", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5324, + "fields": { + "parent": "srd_counterspell", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5325, + "fields": { + "parent": "srd_create-food-and-water", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5326, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5328, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5329, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5330, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5331, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5332, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5333, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5334, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5335, + "fields": { + "parent": "srd_create-or-destroy-water", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5336, + "fields": { + "parent": "srd_create-undead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5338, + "fields": { + "parent": "srd_create-undead", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5339, + "fields": { + "parent": "srd_create-undead", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5340, + "fields": { + "parent": "srd_create-undead", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5341, + "fields": { + "parent": "srd_creation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5343, + "fields": { + "parent": "srd_creation", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5344, + "fields": { + "parent": "srd_creation", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5345, + "fields": { + "parent": "srd_creation", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5346, + "fields": { + "parent": "srd_creation", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5347, + "fields": { + "parent": "srd_cure-wounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5349, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5350, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5351, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5352, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5353, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5354, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5355, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5356, + "fields": { + "parent": "srd_cure-wounds", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5357, + "fields": { + "parent": "srd_dancing-lights", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5358, + "fields": { + "parent": "srd_darkness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5359, + "fields": { + "parent": "srd_darkvision", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5360, + "fields": { + "parent": "srd_daylight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5361, + "fields": { + "parent": "srd_death-ward", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5362, + "fields": { + "parent": "srd_delayed-blast-fireball", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5364, + "fields": { + "parent": "srd_delayed-blast-fireball", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5365, + "fields": { + "parent": "srd_delayed-blast-fireball", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5366, + "fields": { + "parent": "srd_demiplane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5367, + "fields": { + "parent": "srd_detect-evil-and-good", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5368, + "fields": { + "parent": "srd_detect-magic", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5369, + "fields": { + "parent": "srd_detect-magic", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5370, + "fields": { + "parent": "srd_detect-poison-and-disease", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5371, + "fields": { + "parent": "srd_detect-poison-and-disease", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5372, + "fields": { + "parent": "srd_detect-thoughts", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5373, + "fields": { + "parent": "srd_dimension-door", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5374, + "fields": { + "parent": "srd_disguise-self", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5375, + "fields": { + "parent": "srd_disintegrate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5377, + "fields": { + "parent": "srd_disintegrate", + "type": "slot_level_7", + "damage_roll": "13d6+40", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5378, + "fields": { + "parent": "srd_disintegrate", + "type": "slot_level_8", + "damage_roll": "16d6+40", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5379, + "fields": { + "parent": "srd_disintegrate", + "type": "slot_level_9", + "damage_roll": "19d6+40", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5380, + "fields": { + "parent": "srd_dispel-evil-and-good", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5381, + "fields": { + "parent": "srd_dispel-magic", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5383, + "fields": { + "parent": "srd_dispel-magic", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5384, + "fields": { + "parent": "srd_dispel-magic", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5385, + "fields": { + "parent": "srd_dispel-magic", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5386, + "fields": { + "parent": "srd_dispel-magic", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5387, + "fields": { + "parent": "srd_dispel-magic", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5388, + "fields": { + "parent": "srd_dispel-magic", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5389, + "fields": { + "parent": "srd_divination", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5390, + "fields": { + "parent": "srd_divination", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5391, + "fields": { + "parent": "srd_divine-favor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5392, + "fields": { + "parent": "srd_divine-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5393, + "fields": { + "parent": "srd_dominate-beast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5395, + "fields": { + "parent": "srd_dominate-beast", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5396, + "fields": { + "parent": "srd_dominate-beast", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5397, + "fields": { + "parent": "srd_dominate-beast", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5398, + "fields": { + "parent": "srd_dominate-beast", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5399, + "fields": { + "parent": "srd_dominate-beast", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5400, + "fields": { + "parent": "srd_dominate-monster", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5402, + "fields": { + "parent": "srd_dominate-monster", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5403, + "fields": { + "parent": "srd_dominate-person", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5405, + "fields": { + "parent": "srd_dominate-person", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "10 minutes", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5406, + "fields": { + "parent": "srd_dominate-person", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 hour", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5407, + "fields": { + "parent": "srd_dominate-person", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5408, + "fields": { + "parent": "srd_dominate-person", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "8 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5409, + "fields": { + "parent": "srd_dream", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5410, + "fields": { + "parent": "srd_druidcraft", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5411, + "fields": { + "parent": "srd_earthquake", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5412, + "fields": { + "parent": "srd_eldritch-blast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5413, + "fields": { + "parent": "srd_enhance-ability", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5415, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5416, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5417, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5418, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5419, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5420, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5421, + "fields": { + "parent": "srd_enhance-ability", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5422, + "fields": { + "parent": "srd_enlargereduce", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5423, + "fields": { + "parent": "srd_entangle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5424, + "fields": { + "parent": "srd_enthrall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5425, + "fields": { + "parent": "srd_etherealness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5427, + "fields": { + "parent": "srd_etherealness", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5428, + "fields": { + "parent": "srd_etherealness", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5429, + "fields": { + "parent": "srd_expeditious-retreat", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5430, + "fields": { + "parent": "srd_eyebite", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5431, + "fields": { + "parent": "srd_fabricate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5432, + "fields": { + "parent": "srd_faerie-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5433, + "fields": { + "parent": "srd_faithful-hound", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5434, + "fields": { + "parent": "srd_false-life", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5436, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5437, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5438, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5439, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5440, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5441, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5442, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5443, + "fields": { + "parent": "srd_false-life", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5444, + "fields": { + "parent": "srd_fear", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5445, + "fields": { + "parent": "srd_feather-fall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5446, + "fields": { + "parent": "srd_feeblemind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5447, + "fields": { + "parent": "srd_find-familiar", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5448, + "fields": { + "parent": "srd_find-familiar", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5449, + "fields": { + "parent": "srd_find-steed", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5450, + "fields": { + "parent": "srd_find-the-path", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5451, + "fields": { + "parent": "srd_find-traps", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5452, + "fields": { + "parent": "srd_finger-of-death", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5453, + "fields": { + "parent": "srd_fire-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5454, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5455, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5456, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5457, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5458, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_5", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5459, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_6", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5460, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_7", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5461, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_8", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5462, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_9", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5463, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_10", + "damage_roll": "2d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5464, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_11", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5465, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_12", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5466, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_13", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5467, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_14", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5468, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_15", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5469, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_16", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5470, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_17", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5471, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_18", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5472, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_19", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5473, + "fields": { + "parent": "srd_fire-bolt", + "type": "player_level_20", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5474, + "fields": { + "parent": "srd_fire-shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5475, + "fields": { + "parent": "srd_fire-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5476, + "fields": { + "parent": "srd_fireball", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5478, + "fields": { + "parent": "srd_fireball", + "type": "slot_level_4", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5479, + "fields": { + "parent": "srd_fireball", + "type": "slot_level_5", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5480, + "fields": { + "parent": "srd_fireball", + "type": "slot_level_6", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5481, + "fields": { + "parent": "srd_fireball", + "type": "slot_level_7", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5482, + "fields": { + "parent": "srd_fireball", + "type": "slot_level_8", + "damage_roll": "13d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5483, + "fields": { + "parent": "srd_fireball", + "type": "slot_level_9", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5484, + "fields": { + "parent": "srd_flame-blade", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5486, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_3", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5487, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_4", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5488, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_5", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5489, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_6", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5490, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_7", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5491, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_8", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5492, + "fields": { + "parent": "srd_flame-blade", + "type": "slot_level_9", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5493, + "fields": { + "parent": "srd_flame-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5495, + "fields": { + "parent": "srd_flame-strike", + "type": "slot_level_6", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5496, + "fields": { + "parent": "srd_flame-strike", + "type": "slot_level_7", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5497, + "fields": { + "parent": "srd_flame-strike", + "type": "slot_level_8", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5498, + "fields": { + "parent": "srd_flame-strike", + "type": "slot_level_9", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5499, + "fields": { + "parent": "srd_flaming-sphere", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5501, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_3", + "damage_roll": "3d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5502, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_4", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5503, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_5", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5504, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_6", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5505, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_7", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5506, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_8", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5507, + "fields": { + "parent": "srd_flaming-sphere", + "type": "slot_level_9", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5508, + "fields": { + "parent": "srd_flesh-to-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5509, + "fields": { + "parent": "srd_floating-disk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5510, + "fields": { + "parent": "srd_floating-disk", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5511, + "fields": { + "parent": "srd_fly", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5513, + "fields": { + "parent": "srd_fly", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5514, + "fields": { + "parent": "srd_fly", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5515, + "fields": { + "parent": "srd_fly", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5516, + "fields": { + "parent": "srd_fly", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5517, + "fields": { + "parent": "srd_fly", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5518, + "fields": { + "parent": "srd_fly", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5519, + "fields": { + "parent": "srd_fog-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5521, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5522, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5523, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5524, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5525, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5526, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5527, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5528, + "fields": { + "parent": "srd_fog-cloud", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5529, + "fields": { + "parent": "srd_forbiddance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5530, + "fields": { + "parent": "srd_forbiddance", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5531, + "fields": { + "parent": "srd_forcecage", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5532, + "fields": { + "parent": "srd_foresight", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5533, + "fields": { + "parent": "srd_freedom-of-movement", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5534, + "fields": { + "parent": "srd_freezing-sphere", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5536, + "fields": { + "parent": "srd_freezing-sphere", + "type": "slot_level_7", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5537, + "fields": { + "parent": "srd_freezing-sphere", + "type": "slot_level_8", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5538, + "fields": { + "parent": "srd_freezing-sphere", + "type": "slot_level_9", + "damage_roll": "13d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5539, + "fields": { + "parent": "srd_gaseous-form", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5540, + "fields": { + "parent": "srd_gate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5541, + "fields": { + "parent": "srd_geas", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5543, + "fields": { + "parent": "srd_geas", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5544, + "fields": { + "parent": "srd_geas", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5545, + "fields": { + "parent": "srd_geas", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "1 year", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5546, + "fields": { + "parent": "srd_geas", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "Until dispelled", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5547, + "fields": { + "parent": "srd_gentle-repose", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5548, + "fields": { + "parent": "srd_gentle-repose", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5549, + "fields": { + "parent": "srd_giant-insect", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5550, + "fields": { + "parent": "srd_glibness", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5551, + "fields": { + "parent": "srd_globe-of-invulnerability", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5553, + "fields": { + "parent": "srd_globe-of-invulnerability", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5554, + "fields": { + "parent": "srd_globe-of-invulnerability", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5555, + "fields": { + "parent": "srd_globe-of-invulnerability", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5556, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5558, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5559, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5560, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5561, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5562, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5563, + "fields": { + "parent": "srd_glyph-of-warding", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5564, + "fields": { + "parent": "srd_goodberry", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5565, + "fields": { + "parent": "srd_grease", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5566, + "fields": { + "parent": "srd_greater-invisibility", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5567, + "fields": { + "parent": "srd_greater-restoration", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5568, + "fields": { + "parent": "srd_guardian-of-faith", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5569, + "fields": { + "parent": "srd_guards-and-wards", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5570, + "fields": { + "parent": "srd_guidance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5571, + "fields": { + "parent": "srd_guiding-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5573, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_2", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5574, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_3", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5575, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_4", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5576, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_5", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5577, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_6", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5578, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_7", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5579, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_8", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5580, + "fields": { + "parent": "srd_guiding-bolt", + "type": "slot_level_9", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5581, + "fields": { + "parent": "srd_gust-of-wind", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5582, + "fields": { + "parent": "srd_hallow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5583, + "fields": { + "parent": "srd_hallucinatory-terrain", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5584, + "fields": { + "parent": "srd_harm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5585, + "fields": { + "parent": "srd_haste", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5586, + "fields": { + "parent": "srd_heal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5588, + "fields": { + "parent": "srd_heal", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5589, + "fields": { + "parent": "srd_heal", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5590, + "fields": { + "parent": "srd_heal", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5591, + "fields": { + "parent": "srd_healing-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5593, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5594, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5595, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5596, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5597, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5598, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5599, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5600, + "fields": { + "parent": "srd_healing-word", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5601, + "fields": { + "parent": "srd_heat-metal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5603, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_3", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5604, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5605, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5606, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5607, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5608, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5609, + "fields": { + "parent": "srd_heat-metal", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5610, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5612, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_2", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5613, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_3", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5614, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_4", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5615, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_5", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5616, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_6", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5617, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_7", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5618, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_8", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5619, + "fields": { + "parent": "srd_hellish-rebuke", + "type": "slot_level_9", + "damage_roll": "10d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5620, + "fields": { + "parent": "srd_heroes-feast", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5621, + "fields": { + "parent": "srd_heroism", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5622, + "fields": { + "parent": "srd_hideous-laughter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5623, + "fields": { + "parent": "srd_hold-monster", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5625, + "fields": { + "parent": "srd_hold-monster", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5626, + "fields": { + "parent": "srd_hold-monster", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5627, + "fields": { + "parent": "srd_hold-monster", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5628, + "fields": { + "parent": "srd_hold-monster", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5629, + "fields": { + "parent": "srd_hold-person", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5631, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5632, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5633, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5634, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5635, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5636, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5637, + "fields": { + "parent": "srd_hold-person", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5638, + "fields": { + "parent": "srd_holy-aura", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5639, + "fields": { + "parent": "srd_hunters-mark", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5641, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5642, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5643, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5644, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5645, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5646, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5647, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5648, + "fields": { + "parent": "srd_hunters-mark", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5649, + "fields": { + "parent": "srd_hypnotic-pattern", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5650, + "fields": { + "parent": "srd_ice-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5652, + "fields": { + "parent": "srd_ice-storm", + "type": "slot_level_5", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5653, + "fields": { + "parent": "srd_ice-storm", + "type": "slot_level_6", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5654, + "fields": { + "parent": "srd_ice-storm", + "type": "slot_level_7", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5655, + "fields": { + "parent": "srd_ice-storm", + "type": "slot_level_8", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5656, + "fields": { + "parent": "srd_ice-storm", + "type": "slot_level_9", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5657, + "fields": { + "parent": "srd_identify", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5658, + "fields": { + "parent": "srd_identify", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5659, + "fields": { + "parent": "srd_illusory-script", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5660, + "fields": { + "parent": "srd_illusory-script", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5661, + "fields": { + "parent": "srd_imprisonment", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5662, + "fields": { + "parent": "srd_incendiary-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5663, + "fields": { + "parent": "srd_inflict-wounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5665, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_2", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5666, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_3", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5667, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_4", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5668, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_5", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5669, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_6", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5670, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_7", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5671, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_8", + "damage_roll": "10d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5672, + "fields": { + "parent": "srd_inflict-wounds", + "type": "slot_level_9", + "damage_roll": "11d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5673, + "fields": { + "parent": "srd_insect-plague", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5675, + "fields": { + "parent": "srd_insect-plague", + "type": "slot_level_6", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5676, + "fields": { + "parent": "srd_insect-plague", + "type": "slot_level_7", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5677, + "fields": { + "parent": "srd_insect-plague", + "type": "slot_level_8", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5678, + "fields": { + "parent": "srd_insect-plague", + "type": "slot_level_9", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5679, + "fields": { + "parent": "srd_instant-summons", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5680, + "fields": { + "parent": "srd_instant-summons", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5681, + "fields": { + "parent": "srd_invisibility", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5683, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5684, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5685, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5686, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5687, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5688, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5689, + "fields": { + "parent": "srd_invisibility", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5690, + "fields": { + "parent": "srd_irresistible-dance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5691, + "fields": { + "parent": "srd_jump", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5692, + "fields": { + "parent": "srd_knock", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5693, + "fields": { + "parent": "srd_legend-lore", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5694, + "fields": { + "parent": "srd_lesser-restoration", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5695, + "fields": { + "parent": "srd_levitate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5696, + "fields": { + "parent": "srd_light", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5697, + "fields": { + "parent": "srd_lightning-bolt", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5699, + "fields": { + "parent": "srd_lightning-bolt", + "type": "slot_level_4", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5700, + "fields": { + "parent": "srd_lightning-bolt", + "type": "slot_level_5", + "damage_roll": "10d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5701, + "fields": { + "parent": "srd_lightning-bolt", + "type": "slot_level_6", + "damage_roll": "11d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5702, + "fields": { + "parent": "srd_lightning-bolt", + "type": "slot_level_7", + "damage_roll": "12d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5703, + "fields": { + "parent": "srd_lightning-bolt", + "type": "slot_level_8", + "damage_roll": "13d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5704, + "fields": { + "parent": "srd_lightning-bolt", + "type": "slot_level_9", + "damage_roll": "14d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5705, + "fields": { + "parent": "srd_locate-animals-or-plants", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5706, + "fields": { + "parent": "srd_locate-animals-or-plants", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5707, + "fields": { + "parent": "srd_locate-creature", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5708, + "fields": { + "parent": "srd_locate-object", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5709, + "fields": { + "parent": "srd_longstrider", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5711, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5712, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5713, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5714, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5715, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5716, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5717, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5718, + "fields": { + "parent": "srd_longstrider", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5719, + "fields": { + "parent": "srd_mage-armor", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5720, + "fields": { + "parent": "srd_mage-hand", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5721, + "fields": { + "parent": "srd_magic-circle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5723, + "fields": { + "parent": "srd_magic-circle", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": "2 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5724, + "fields": { + "parent": "srd_magic-circle", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": "3 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5725, + "fields": { + "parent": "srd_magic-circle", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "4 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5726, + "fields": { + "parent": "srd_magic-circle", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "5 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5727, + "fields": { + "parent": "srd_magic-circle", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "6 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5728, + "fields": { + "parent": "srd_magic-circle", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "7 hours", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5729, + "fields": { + "parent": "srd_magic-jar", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5730, + "fields": { + "parent": "srd_magic-missile", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5732, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_2", + "damage_roll": null, + "target_count": 2, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5733, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 3, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5734, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5735, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5736, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5737, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5738, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5739, + "fields": { + "parent": "srd_magic-missile", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5740, + "fields": { + "parent": "srd_magic-mouth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5741, + "fields": { + "parent": "srd_magic-mouth", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5742, + "fields": { + "parent": "srd_magic-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5744, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5745, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5746, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5747, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5748, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5749, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5750, + "fields": { + "parent": "srd_magic-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5751, + "fields": { + "parent": "srd_magnificent-mansion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5752, + "fields": { + "parent": "srd_major-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5754, + "fields": { + "parent": "srd_major-image", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5755, + "fields": { + "parent": "srd_major-image", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5756, + "fields": { + "parent": "srd_major-image", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5757, + "fields": { + "parent": "srd_major-image", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5758, + "fields": { + "parent": "srd_major-image", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5759, + "fields": { + "parent": "srd_major-image", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5760, + "fields": { + "parent": "srd_mass-cure-wounds", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5762, + "fields": { + "parent": "srd_mass-cure-wounds", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5763, + "fields": { + "parent": "srd_mass-cure-wounds", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5764, + "fields": { + "parent": "srd_mass-cure-wounds", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5765, + "fields": { + "parent": "srd_mass-cure-wounds", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5766, + "fields": { + "parent": "srd_mass-heal", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5767, + "fields": { + "parent": "srd_mass-healing-word", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5769, + "fields": { + "parent": "srd_mass-healing-word", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5770, + "fields": { + "parent": "srd_mass-healing-word", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5771, + "fields": { + "parent": "srd_mass-healing-word", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5772, + "fields": { + "parent": "srd_mass-healing-word", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5773, + "fields": { + "parent": "srd_mass-healing-word", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5774, + "fields": { + "parent": "srd_mass-healing-word", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5775, + "fields": { + "parent": "srd_mass-suggestion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5777, + "fields": { + "parent": "srd_mass-suggestion", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "10 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5778, + "fields": { + "parent": "srd_mass-suggestion", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "30 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5779, + "fields": { + "parent": "srd_mass-suggestion", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "A year and a day", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5780, + "fields": { + "parent": "srd_maze", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5781, + "fields": { + "parent": "srd_meld-into-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5782, + "fields": { + "parent": "srd_meld-into-stone", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5783, + "fields": { + "parent": "srd_mending", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5784, + "fields": { + "parent": "srd_message", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5785, + "fields": { + "parent": "srd_meteor-swarm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5786, + "fields": { + "parent": "srd_mind-blank", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5787, + "fields": { + "parent": "srd_minor-illusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5788, + "fields": { + "parent": "srd_mirage-arcane", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5789, + "fields": { + "parent": "srd_mirror-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5790, + "fields": { + "parent": "srd_mislead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5791, + "fields": { + "parent": "srd_misty-step", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5792, + "fields": { + "parent": "srd_modify-memory", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5794, + "fields": { + "parent": "srd_modify-memory", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5795, + "fields": { + "parent": "srd_modify-memory", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5796, + "fields": { + "parent": "srd_modify-memory", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5797, + "fields": { + "parent": "srd_modify-memory", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5798, + "fields": { + "parent": "srd_moonbeam", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5800, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_3", + "damage_roll": "3d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5801, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_4", + "damage_roll": "4d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5802, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_5", + "damage_roll": "5d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5803, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_6", + "damage_roll": "6d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5804, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_7", + "damage_roll": "7d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5805, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_8", + "damage_roll": "8d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5806, + "fields": { + "parent": "srd_moonbeam", + "type": "slot_level_9", + "damage_roll": "9d10", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5807, + "fields": { + "parent": "srd_move-earth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5808, + "fields": { + "parent": "srd_nondetection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5809, + "fields": { + "parent": "srd_pass-without-trace", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5810, + "fields": { + "parent": "srd_passwall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5811, + "fields": { + "parent": "srd_phantasmal-killer", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5813, + "fields": { + "parent": "srd_phantasmal-killer", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5814, + "fields": { + "parent": "srd_phantasmal-killer", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5815, + "fields": { + "parent": "srd_phantasmal-killer", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5816, + "fields": { + "parent": "srd_phantasmal-killer", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5817, + "fields": { + "parent": "srd_phantasmal-killer", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5818, + "fields": { + "parent": "srd_phantom-steed", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5819, + "fields": { + "parent": "srd_phantom-steed", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5820, + "fields": { + "parent": "srd_planar-ally", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5821, + "fields": { + "parent": "srd_planar-binding", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5823, + "fields": { + "parent": "srd_planar-binding", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": "10 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5824, + "fields": { + "parent": "srd_planar-binding", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": "30 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5825, + "fields": { + "parent": "srd_planar-binding", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": "180 days", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5826, + "fields": { + "parent": "srd_planar-binding", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": "A year and a day", + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5827, + "fields": { + "parent": "srd_plane-shift", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5828, + "fields": { + "parent": "srd_plant-growth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5829, + "fields": { + "parent": "srd_poison-spray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5830, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5831, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_2", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5832, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_3", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5833, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5834, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_5", + "damage_roll": "2d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5835, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_6", + "damage_roll": "2d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5836, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_7", + "damage_roll": "2d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5837, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_8", + "damage_roll": "2d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5838, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_9", + "damage_roll": "2d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5839, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_10", + "damage_roll": "2d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5840, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_11", + "damage_roll": "3d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5841, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_12", + "damage_roll": "3d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5842, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_13", + "damage_roll": "3d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5843, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_14", + "damage_roll": "3d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5844, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_15", + "damage_roll": "3d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5845, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_16", + "damage_roll": "3d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5846, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_17", + "damage_roll": "4d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5847, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_18", + "damage_roll": "4d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5848, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_19", + "damage_roll": "4d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5849, + "fields": { + "parent": "srd_poison-spray", + "type": "player_level_20", + "damage_roll": "4d12", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5850, + "fields": { + "parent": "srd_polymorph", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5851, + "fields": { + "parent": "srd_power-word-kill", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5852, + "fields": { + "parent": "srd_power-word-stun", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5853, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5855, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5856, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5857, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5858, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5859, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5860, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5861, + "fields": { + "parent": "srd_prayer-of-healing", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5862, + "fields": { + "parent": "srd_prestidigitation", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5863, + "fields": { + "parent": "srd_prismatic-spray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5864, + "fields": { + "parent": "srd_prismatic-wall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5865, + "fields": { + "parent": "srd_private-sanctum", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5867, + "fields": { + "parent": "srd_private-sanctum", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5868, + "fields": { + "parent": "srd_private-sanctum", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5869, + "fields": { + "parent": "srd_private-sanctum", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5870, + "fields": { + "parent": "srd_private-sanctum", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5871, + "fields": { + "parent": "srd_private-sanctum", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5872, + "fields": { + "parent": "srd_produce-flame", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5873, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5874, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5875, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5876, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5877, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5878, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5879, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5880, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5881, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5882, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5883, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5884, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5885, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5886, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5887, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5888, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5889, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5890, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5891, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5892, + "fields": { + "parent": "srd_produce-flame", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5893, + "fields": { + "parent": "srd_programmed-illusion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5894, + "fields": { + "parent": "srd_project-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5895, + "fields": { + "parent": "srd_protection-from-energy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5896, + "fields": { + "parent": "srd_protection-from-evil-and-good", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5897, + "fields": { + "parent": "srd_protection-from-poison", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5898, + "fields": { + "parent": "srd_purify-food-and-drink", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5899, + "fields": { + "parent": "srd_purify-food-and-drink", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5900, + "fields": { + "parent": "srd_raise-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5901, + "fields": { + "parent": "srd_ray-of-enfeeblement", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5902, + "fields": { + "parent": "srd_ray-of-frost", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5903, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5904, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5905, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5906, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5907, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5908, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5909, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5910, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5911, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5912, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5913, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5914, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5915, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5916, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5917, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5918, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5919, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5920, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5921, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5922, + "fields": { + "parent": "srd_ray-of-frost", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5923, + "fields": { + "parent": "srd_regenerate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5924, + "fields": { + "parent": "srd_reincarnate", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5925, + "fields": { + "parent": "srd_remove-curse", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5926, + "fields": { + "parent": "srd_resilient-sphere", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5927, + "fields": { + "parent": "srd_resistance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5928, + "fields": { + "parent": "srd_resurrection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5929, + "fields": { + "parent": "srd_reverse-gravity", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5930, + "fields": { + "parent": "srd_revivify", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5931, + "fields": { + "parent": "srd_rope-trick", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5932, + "fields": { + "parent": "srd_sacred-flame", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5933, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5934, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5935, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5936, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5937, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5938, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5939, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5940, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5941, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5942, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5943, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5944, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5945, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5946, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5947, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5948, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5949, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5950, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5951, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5952, + "fields": { + "parent": "srd_sacred-flame", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5953, + "fields": { + "parent": "srd_sanctuary", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5954, + "fields": { + "parent": "srd_scorching-ray", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5956, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_3", + "damage_roll": null, + "target_count": 4, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5957, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_4", + "damage_roll": null, + "target_count": 5, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5958, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_5", + "damage_roll": null, + "target_count": 6, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5959, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_6", + "damage_roll": null, + "target_count": 7, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5960, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_7", + "damage_roll": null, + "target_count": 8, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5961, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_8", + "damage_roll": null, + "target_count": 9, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5962, + "fields": { + "parent": "srd_scorching-ray", + "type": "slot_level_9", + "damage_roll": null, + "target_count": 10, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5963, + "fields": { + "parent": "srd_scrying", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5964, + "fields": { + "parent": "srd_secret-chest", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5965, + "fields": { + "parent": "srd_see-invisibility", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5966, + "fields": { + "parent": "srd_seeming", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5967, + "fields": { + "parent": "srd_sending", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5968, + "fields": { + "parent": "srd_sequester", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5969, + "fields": { + "parent": "srd_shapechange", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5970, + "fields": { + "parent": "srd_shatter", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5972, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_3", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5973, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5974, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5975, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5976, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5977, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5978, + "fields": { + "parent": "srd_shatter", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5979, + "fields": { + "parent": "srd_shield", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5980, + "fields": { + "parent": "srd_shield-of-faith", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5981, + "fields": { + "parent": "srd_shillelagh", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5982, + "fields": { + "parent": "srd_shocking-grasp", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5983, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5984, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5985, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5986, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5987, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_5", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5988, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_6", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5989, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_7", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5990, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_8", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5991, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_9", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5992, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_10", + "damage_roll": "2d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5993, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_11", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5994, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_12", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5995, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_13", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5996, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_14", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5997, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_15", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5998, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_16", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 5999, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_17", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6000, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_18", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6001, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_19", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6002, + "fields": { + "parent": "srd_shocking-grasp", + "type": "player_level_20", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6003, + "fields": { + "parent": "srd_silence", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6004, + "fields": { + "parent": "srd_silence", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6005, + "fields": { + "parent": "srd_silent-image", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6006, + "fields": { + "parent": "srd_simulacrum", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6007, + "fields": { + "parent": "srd_sleep", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6009, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6010, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6011, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6012, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6013, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6014, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6015, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6016, + "fields": { + "parent": "srd_sleep", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6017, + "fields": { + "parent": "srd_sleet-storm", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6018, + "fields": { + "parent": "srd_slow", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6019, + "fields": { + "parent": "srd_spare-the-dying", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6020, + "fields": { + "parent": "srd_speak-with-animals", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6021, + "fields": { + "parent": "srd_speak-with-animals", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6022, + "fields": { + "parent": "srd_speak-with-dead", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6023, + "fields": { + "parent": "srd_speak-with-plants", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6024, + "fields": { + "parent": "srd_spider-climb", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6025, + "fields": { + "parent": "srd_spike-growth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6026, + "fields": { + "parent": "srd_spirit-guardians", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6028, + "fields": { + "parent": "srd_spirit-guardians", + "type": "slot_level_4", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6029, + "fields": { + "parent": "srd_spirit-guardians", + "type": "slot_level_5", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6030, + "fields": { + "parent": "srd_spirit-guardians", + "type": "slot_level_6", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6031, + "fields": { + "parent": "srd_spirit-guardians", + "type": "slot_level_7", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6032, + "fields": { + "parent": "srd_spirit-guardians", + "type": "slot_level_8", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6033, + "fields": { + "parent": "srd_spirit-guardians", + "type": "slot_level_9", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6034, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6036, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6037, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_4", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6038, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6039, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6040, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6041, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6042, + "fields": { + "parent": "srd_spiritual-weapon", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6043, + "fields": { + "parent": "srd_stinking-cloud", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6044, + "fields": { + "parent": "srd_stone-shape", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6045, + "fields": { + "parent": "srd_stoneskin", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6046, + "fields": { + "parent": "srd_storm-of-vengeance", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6047, + "fields": { + "parent": "srd_suggestion", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6048, + "fields": { + "parent": "srd_sunbeam", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6049, + "fields": { + "parent": "srd_sunburst", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6050, + "fields": { + "parent": "srd_symbol", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6051, + "fields": { + "parent": "srd_telekinesis", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6052, + "fields": { + "parent": "srd_telepathic-bond", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6053, + "fields": { + "parent": "srd_telepathic-bond", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6054, + "fields": { + "parent": "srd_teleport", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6055, + "fields": { + "parent": "srd_teleportation-circle", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6056, + "fields": { + "parent": "srd_thaumaturgy", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6057, + "fields": { + "parent": "srd_thunderwave", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6059, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_2", + "damage_roll": "3d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6060, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_3", + "damage_roll": "4d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6061, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_4", + "damage_roll": "5d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6062, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_5", + "damage_roll": "6d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6063, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_6", + "damage_roll": "7d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6064, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_7", + "damage_roll": "8d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6065, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_8", + "damage_roll": "9d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6066, + "fields": { + "parent": "srd_thunderwave", + "type": "slot_level_9", + "damage_roll": "10d8", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6067, + "fields": { + "parent": "srd_time-stop", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6068, + "fields": { + "parent": "srd_tiny-hut", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6069, + "fields": { + "parent": "srd_tiny-hut", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6070, + "fields": { + "parent": "srd_tongues", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6071, + "fields": { + "parent": "srd_transport-via-plants", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6072, + "fields": { + "parent": "srd_tree-stride", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6073, + "fields": { + "parent": "srd_true-polymorph", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6074, + "fields": { + "parent": "srd_true-resurrection", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6075, + "fields": { + "parent": "srd_true-seeing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6076, + "fields": { + "parent": "srd_true-strike", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6077, + "fields": { + "parent": "srd_unseen-servant", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6078, + "fields": { + "parent": "srd_unseen-servant", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6079, + "fields": { + "parent": "srd_vampiric-touch", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6081, + "fields": { + "parent": "srd_vampiric-touch", + "type": "slot_level_4", + "damage_roll": "4d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6082, + "fields": { + "parent": "srd_vampiric-touch", + "type": "slot_level_5", + "damage_roll": "5d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6083, + "fields": { + "parent": "srd_vampiric-touch", + "type": "slot_level_6", + "damage_roll": "6d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6084, + "fields": { + "parent": "srd_vampiric-touch", + "type": "slot_level_7", + "damage_roll": "7d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6085, + "fields": { + "parent": "srd_vampiric-touch", + "type": "slot_level_8", + "damage_roll": "8d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6086, + "fields": { + "parent": "srd_vampiric-touch", + "type": "slot_level_9", + "damage_roll": "9d6", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6087, + "fields": { + "parent": "srd_vicious-mockery", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6088, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_1", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6089, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_2", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6090, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_3", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6091, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_4", + "damage_roll": "", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6092, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_5", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6093, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_6", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6094, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_7", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6095, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_8", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6096, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_9", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6097, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_10", + "damage_roll": "2d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6098, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_11", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6099, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_12", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6100, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_13", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6101, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_14", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6102, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_15", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6103, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_16", + "damage_roll": "3d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6104, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_17", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6105, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_18", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6106, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_19", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6107, + "fields": { + "parent": "srd_vicious-mockery", + "type": "player_level_20", + "damage_roll": "4d4", + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6108, + "fields": { + "parent": "srd_wall-of-fire", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6110, + "fields": { + "parent": "srd_wall-of-fire", + "type": "slot_level_5", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6111, + "fields": { + "parent": "srd_wall-of-fire", + "type": "slot_level_6", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6112, + "fields": { + "parent": "srd_wall-of-fire", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6113, + "fields": { + "parent": "srd_wall-of-fire", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6114, + "fields": { + "parent": "srd_wall-of-fire", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6115, + "fields": { + "parent": "srd_wall-of-force", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6116, + "fields": { + "parent": "srd_wall-of-ice", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6118, + "fields": { + "parent": "srd_wall-of-ice", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6119, + "fields": { + "parent": "srd_wall-of-ice", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6120, + "fields": { + "parent": "srd_wall-of-ice", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6121, + "fields": { + "parent": "srd_wall-of-stone", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6122, + "fields": { + "parent": "srd_wall-of-thorns", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6124, + "fields": { + "parent": "srd_wall-of-thorns", + "type": "slot_level_7", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6125, + "fields": { + "parent": "srd_wall-of-thorns", + "type": "slot_level_8", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6126, + "fields": { + "parent": "srd_wall-of-thorns", + "type": "slot_level_9", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6127, + "fields": { + "parent": "srd_warding-bond", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6128, + "fields": { + "parent": "srd_water-breathing", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6129, + "fields": { + "parent": "srd_water-breathing", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6130, + "fields": { + "parent": "srd_water-walk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6131, + "fields": { + "parent": "srd_water-walk", + "type": "ritual", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6132, + "fields": { + "parent": "srd_web", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6133, + "fields": { + "parent": "srd_weird", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6134, + "fields": { + "parent": "srd_wind-walk", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6135, + "fields": { + "parent": "srd_wind-wall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6136, + "fields": { + "parent": "srd_wish", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6137, + "fields": { + "parent": "srd_word-of-recall", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +}, +{ + "model": "api_v2.spellcastingoption", + "pk": 6138, + "fields": { + "parent": "srd_zone-of-truth", + "type": "default", + "damage_roll": null, + "target_count": null, + "duration": null, + "range": null + } +} +] From 761f8cdddf69e32ee4a1d588f33861151c4b106c Mon Sep 17 00:00:00 2001 From: August Johnson Date: Thu, 30 May 2024 13:23:33 -0500 Subject: [PATCH 56/84] Refactoring armor. --- data/v2/wizards-of-the-coast/srd/Armor.json | 312 +- data/v2/wizards-of-the-coast/srd/Item.json | 27704 ++++++++-------- .../data_manipulation/data_v2_format_check.py | 10 +- 3 files changed, 14013 insertions(+), 14013 deletions(-) diff --git a/data/v2/wizards-of-the-coast/srd/Armor.json b/data/v2/wizards-of-the-coast/srd/Armor.json index 1b89f59c..1832a540 100644 --- a/data/v2/wizards-of-the-coast/srd/Armor.json +++ b/data/v2/wizards-of-the-coast/srd/Armor.json @@ -1,158 +1,158 @@ [ -{ - "model": "api_v2.armor", - "pk": "breastplate", - "fields": { - "name": "Breastplate", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 14, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 + { + "model": "api_v2.armor", + "pk": "srd_breastplate", + "fields": { + "name": "Breastplate", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 14, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 + } + }, + { + "model": "api_v2.armor", + "pk": "srd_chain-mail", + "fields": { + "name": "Chain mail", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": 13, + "ac_base": 16, + "ac_add_dexmod": false, + "ac_cap_dexmod": null + } + }, + { + "model": "api_v2.armor", + "pk": "srd_chain-shirt", + "fields": { + "name": "Chain shirt", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 13, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 + } + }, + { + "model": "api_v2.armor", + "pk": "srd_half-plate", + "fields": { + "name": "Half plate", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": null, + "ac_base": 15, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 + } + }, + { + "model": "api_v2.armor", + "pk": "srd_hide", + "fields": { + "name": "Hide", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 12, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 + } + }, + { + "model": "api_v2.armor", + "pk": "srd_leather", + "fields": { + "name": "Leather", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 11, + "ac_add_dexmod": true, + "ac_cap_dexmod": null + } + }, + { + "model": "api_v2.armor", + "pk": "srd_padded", + "fields": { + "name": "Padded", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": null, + "ac_base": 11, + "ac_add_dexmod": true, + "ac_cap_dexmod": null + } + }, + { + "model": "api_v2.armor", + "pk": "srd_plate", + "fields": { + "name": "Plate", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": 15, + "ac_base": 18, + "ac_add_dexmod": false, + "ac_cap_dexmod": null + } + }, + { + "model": "api_v2.armor", + "pk": "srd_ring-mail", + "fields": { + "name": "Ring mail", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": null, + "ac_base": 14, + "ac_add_dexmod": false, + "ac_cap_dexmod": null + } + }, + { + "model": "api_v2.armor", + "pk": "srd_scale-mail", + "fields": { + "name": "Scale mail", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": null, + "ac_base": 14, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 + } + }, + { + "model": "api_v2.armor", + "pk": "srd_splint", + "fields": { + "name": "Splint", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": 15, + "ac_base": 17, + "ac_add_dexmod": false, + "ac_cap_dexmod": null + } + }, + { + "model": "api_v2.armor", + "pk": "srd_studded-leather", + "fields": { + "name": "Studded leather", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 12, + "ac_add_dexmod": true, + "ac_cap_dexmod": null + } } -}, -{ - "model": "api_v2.armor", - "pk": "chain-mail", - "fields": { - "name": "Chain mail", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": 13, - "ac_base": 16, - "ac_add_dexmod": false, - "ac_cap_dexmod": null - } -}, -{ - "model": "api_v2.armor", - "pk": "chain-shirt", - "fields": { - "name": "Chain shirt", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 13, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } -}, -{ - "model": "api_v2.armor", - "pk": "half-plate", - "fields": { - "name": "Half plate", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": null, - "ac_base": 15, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } -}, -{ - "model": "api_v2.armor", - "pk": "hide", - "fields": { - "name": "Hide", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 12, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } -}, -{ - "model": "api_v2.armor", - "pk": "leather", - "fields": { - "name": "Leather", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 11, - "ac_add_dexmod": true, - "ac_cap_dexmod": null - } -}, -{ - "model": "api_v2.armor", - "pk": "padded", - "fields": { - "name": "Padded", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": null, - "ac_base": 11, - "ac_add_dexmod": true, - "ac_cap_dexmod": null - } -}, -{ - "model": "api_v2.armor", - "pk": "plate", - "fields": { - "name": "Plate", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": 15, - "ac_base": 18, - "ac_add_dexmod": false, - "ac_cap_dexmod": null - } -}, -{ - "model": "api_v2.armor", - "pk": "ring-mail", - "fields": { - "name": "Ring mail", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": null, - "ac_base": 14, - "ac_add_dexmod": false, - "ac_cap_dexmod": null - } -}, -{ - "model": "api_v2.armor", - "pk": "scale-mail", - "fields": { - "name": "Scale mail", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": null, - "ac_base": 14, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } -}, -{ - "model": "api_v2.armor", - "pk": "splint", - "fields": { - "name": "Splint", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": 15, - "ac_base": 17, - "ac_add_dexmod": false, - "ac_cap_dexmod": null - } -}, -{ - "model": "api_v2.armor", - "pk": "studded-leather", - "fields": { - "name": "Studded leather", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 12, - "ac_add_dexmod": true, - "ac_cap_dexmod": null - } -} -] +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/Item.json b/data/v2/wizards-of-the-coast/srd/Item.json index e9209b98..06831030 100644 --- a/data/v2/wizards-of-the-coast/srd/Item.json +++ b/data/v2/wizards-of-the-coast/srd/Item.json @@ -1,13853 +1,13853 @@ [ -{ - "model": "api_v2.item", - "pk": "srd_abacus", - "fields": { - "name": "Abacus", - "desc": "An abacus.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_acid", - "fields": { - "name": "Acid", - "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_acid-vial", - "fields": { - "name": "Acid (vial)", - "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_adamantine-armor-breastplate", - "fields": { - "name": "Adamantine Armor (Breastplate)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_adamantine-armor-chain-mail", - "fields": { - "name": "Adamantine Armor (Chain-Mail)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_adamantine-armor-chain-shirt", - "fields": { - "name": "Adamantine Armor (Chain-Shirt)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_adamantine-armor-half-plate", - "fields": { - "name": "Adamantine Armor (Half-Plate)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_adamantine-armor-hide", - "fields": { - "name": "Adamantine Armor (Hide)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_adamantine-armor-plate", - "fields": { - "name": "Adamantine Armor (Plate)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_adamantine-armor-ring-mail", - "fields": { - "name": "Adamantine Armor (Ring-Mail)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_adamantine-armor-scale-mail", - "fields": { - "name": "Adamantine Armor (Scale-Mail)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_adamantine-armor-splint", - "fields": { - "name": "Adamantine Armor (Splint)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_alchemists-fire-flask", - "fields": { - "name": "Alchemist's Fire (Flask)", - "desc": "This sticky, adhesive fluid ignites when exposed to air. As an action, you can throw this flask up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the alchemist's fire as an improvised weapon. On a hit, the target takes 1d4 fire damage at the start of each of its turns. A creature can end this damage by using its action to make a DC 10 Dexterity check to extinguish the flames.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_alchemists-supplies", - "fields": { - "name": "Alchemist's Supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_amulet", - "fields": { - "name": "Amulet", - "desc": "Can be used as a holy symbol.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_amulet-of-health", - "fields": { - "name": "Amulet of Health", - "desc": "Your Constitution score is 19 while you wear this amulet. It has no effect on you if your Constitution is already 19 or higher.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_amulet-of-proof-against-detection-and-location", - "fields": { - "name": "Amulet of Proof against Detection and Location", - "desc": "While wearing this amulet, you are hidden from divination magic. You can't be targeted by such magic or perceived through magical scrying sensors.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_amulet-of-the-planes", - "fields": { - "name": "Amulet of the Planes", - "desc": "While wearing this amulet, you can use an action to name a location that you are familiar with on another plane of existence. Then make a DC 15 Intelligence check. On a successful check, you cast the _plane shift_ spell. On a failure, you and each creature and object within 15 feet of you travel to a random destination. Roll a d100. On a 1-60, you travel to a random location on the plane you named. On a 61-100, you travel to a randomly determined plane of existence.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_animated-shield", - "fields": { - "name": "Animated Shield", - "desc": "While holding this shield, you can speak its command word as a bonus action to cause it to animate. The shield leaps into the air and hovers in your space to protect you as if you were wielding it, leaving your hands free. The shield remains animated for 1 minute, until you use a bonus action to end this effect, or until you are incapacitated or die, at which point the shield falls to the ground or into your hand if you have one free.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_antitoxin-vial", - "fields": { - "name": "Antitoxin (Vial)", - "desc": "A creature that drinks this vial of liquid gains advantage on saving throws against poison for 1 hour. It confers no benefit to undead or constructs.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_apparatus-of-the-crab", - "fields": { - "name": "Apparatus of the Crab", - "desc": "This item first appears to be a Large sealed iron barrel weighing 500 pounds. The barrel has a hidden catch, which can be found with a successful DC 20 Intelligence (Investigation) check. Releasing the catch unlocks a hatch at one end of the barrel, allowing two Medium or smaller creatures to crawl inside. Ten levers are set in a row at the far end, each in a neutral position, able to move either up or down. When certain levers are used, the apparatus transforms to resemble a giant lobster.\r\n\r\nThe apparatus of the Crab is a Large object with the following statistics:\r\n\r\n**Armor Class:** 20\r\n\r\n**Hit Points:** 200\r\n\r\n**Speed:** 30 ft., swim 30 ft. (or 0 ft. for both if the legs and tail aren't extended)\r\n\r\n**Damage Immunities:** poison, psychic\r\n\r\nTo be used as a vehicle, the apparatus requires one pilot. While the apparatus's hatch is closed, the compartment is airtight and watertight. The compartment holds enough air for 10 hours of breathing, divided by the number of breathing creatures inside.\r\n\r\nThe apparatus floats on water. It can also go underwater to a depth of 900 feet. Below that, the vehicle takes 2d6 bludgeoning damage per minute from pressure.\r\n\r\nA creature in the compartment can use an action to move as many as two of the apparatus's levers up or down. After each use, a lever goes back to its neutral position. Each lever, from left to right, functions as shown in the Apparatus of the Crab Levers table.\r\n\r\n**Apparatus of the Crab Levers (table)**\r\n\r\n| Lever | Up | Down |\r\n|-------|----------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 1 | Legs and tail extend, allowing the apparatus to walk and swim. | Legs and tail retract, reducing the apparatus's speed to 0 and making it unable to benefit from bonuses to speed. |\r\n| 2 | Forward window shutter opens. | Forward window shutter closes. |\r\n| 3 | Side window shutters open (two per side). | Side window shutters close (two per side). |\r\n| 4 | Two claws extend from the front sides of the apparatus. | The claws retract. |\r\n| 5 | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: 7 (2d6) bludgeoning damage. | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: The target is grappled (escape DC 15). |\r\n| 6 | The apparatus walks or swims forward. | The apparatus walks or swims backward. |\r\n| 7 | The apparatus turns 90 degrees left. | The apparatus turns 90 degrees right. |\r\n| 8 | Eyelike fixtures emit bright light in a 30-foot radius and dim light for an additional 30 feet. | The light turns off. |\r\n| 9 | The apparatus sinks as much as 20 feet in liquid. | The apparatus rises up to 20 feet in liquid. |\r\n| 10 | The rear hatch unseals and opens. | The rear hatch closes and seals. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_armor-of-invulnerability", - "fields": { - "name": "Armor of Invulnerability", - "desc": "You have resistance to nonmagical damage while you wear this armor. Additionally, you can use an action to make yourself immune to nonmagical damage for 10 minutes or until you are no longer wearing the armor. Once this special action is used, it can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_armor-of-resistance-leather", - "fields": { - "name": "Armor of Resistance (Leather)", - "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_armor-of-resistance-padded", - "fields": { - "name": "Armor of Resistance (Padded)", - "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_armor-of-resistance-studded-leather", - "fields": { - "name": "Armor of Resistance (Studded-Leather)", - "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_armor-of-vulnerability", - "fields": { - "name": "Armor of Vulnerability", - "desc": "While wearing this armor, you have resistance to one of the following damage types: bludgeoning, piercing, or slashing. The GM chooses the type or determines it randomly.\n\n**_Curse_**. This armor is cursed, a fact that is revealed only when an _identify_ spell is cast on the armor or you attune to it. Attuning to the armor curses you until you are targeted by the _remove curse_ spell or similar magic; removing the armor fails to end the curse. While cursed, you have vulnerability to two of the three damage types associated with the armor (not the one to which it grants resistance).", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_arrow-bow", - "fields": { - "name": "Arrow (bow)", - "desc": "An arrow for a bow.", - "document": "srd", - "size": "tiny", - "weight": "0.050", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_arrow-catching-shield", - "fields": { - "name": "Arrow-Catching Shield", - "desc": "You gain a +2 bonus to AC against ranged attacks while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. In addition, whenever an attacker makes a ranged attack against a target within 5 feet of you, you can use your reaction to become the target of the attack instead.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_arrow-of-slaying", - "fields": { - "name": "Arrow of Slaying", - "desc": "An _arrow of slaying_ is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both _arrows of dragon slaying_ and _arrows of blue dragon slaying_. If a creature belonging to the type, race, or group associated with an _arrow of slaying_ takes damage from the arrow, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.\\n\\nOnce an _arrow of slaying_ deals its extra damage to a creature, it becomes a nonmagical arrow.\\n\\nOther types of magic ammunition of this kind exist, such as _bolts of slaying_ meant for a crossbow, though arrows are most common.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_assassins-blood", - "fields": { - "name": "Assassin's Blood", - "desc": "A creature subjected to this poison must make a DC 10 Constitution saving throw. On a failed save, it takes 6 (1d12) poison damage and is poisoned for 24 hours. On a successful save, the creature takes half damage and isn't poisoned.\\n\\n\r\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "150.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_backpack", - "fields": { - "name": "Backpack", - "desc": "A backpack. Capacity: 1 cubic foot/30 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_bag-of-beans", - "fields": { - "name": "Bag of Beans", - "desc": "Inside this heavy cloth bag are 3d4 dry beans. The bag weighs 1/2 pound plus 1/4 pound for each bean it contains.\r\n\r\nIf you dump the bag's contents out on the ground, they explode in a 10-foot radius, extending from the beans. Each creature in the area, including you, must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.\r\n\r\nIf you remove a bean from the bag, plant it in dirt or sand, and then water it, the bean produces an effect 1 minute later from the ground where it was planted. The GM can choose an effect from the following table, determine it randomly, or create an effect.\r\n\r\n| d100 | Effect |\r\n|-------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01 | 5d4 toadstools sprout. If a creature eats a toadstool, roll any die. On an odd roll, the eater must succeed on a DC 15 Constitution saving throw or take 5d6 poison damage and become poisoned for 1 hour. On an even roll, the eater gains 5d6 temporary hit points for 1 hour. |\r\n| 02-10 | A geyser erupts and spouts water, beer, berry juice, tea, vinegar, wine, or oil (GM's choice) 30 feet into the air for 1d12 rounds. |\r\n| 11-20 | A treant sprouts. There's a 50 percent chance that the treant is chaotic evil and attacks. |\r\n| 21-30 | An animate, immobile stone statue in your likeness rises. It makes verbal threats against you. If you leave it and others come near, it describes you as the most heinous of villains and directs the newcomers to find and attack you. If you are on the same plane of existence as the statue, it knows where you are. The statue becomes inanimate after 24 hours. |\r\n| 31-40 | A campfire with blue flames springs forth and burns for 24 hours (or until it is extinguished). |\r\n| 41-50 | 1d6 + 6 shriekers sprout |\r\n| 51-60 | 1d4 + 8 bright pink toads crawl forth. Whenever a toad is touched, it transforms into a Large or smaller monster of the GM's choice. The monster remains for 1 minute, then disappears in a puff of bright pink smoke. |\r\n| 61-70 | A hungry bulette burrows up and attacks. 71-80 A fruit tree grows. It has 1d10 + 20 fruit, 1d8 of which act as randomly determined magic potions, while one acts as an ingested poison of the GM's choice. The tree vanishes after 1 hour. Picked fruit remains, retaining any magic for 30 days. |\r\n| 81-90 | A nest of 1d4 + 3 eggs springs up. Any creature that eats an egg must make a DC 20 Constitution saving throw. On a successful save, a creature permanently increases its lowest ability score by 1, randomly choosing among equally low scores. On a failed save, the creature takes 10d6 force damage from an internal magical explosion. |\r\n| 91-99 | A pyramid with a 60-foot-square base bursts upward. Inside is a sarcophagus containing a mummy lord. The pyramid is treated as the mummy lord's lair, and its sarcophagus contains treasure of the GM's choice. |\r\n| 100 | A giant beanstalk sprouts, growing to a height of the GM's choice. The top leads where the GM chooses, such as to a great view, a cloud giant's castle, or a different plane of existence. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_bag-of-devouring", - "fields": { - "name": "Bag of Devouring", - "desc": "This bag superficially resembles a _bag of holding_ but is a feeding orifice for a gigantic extradimensional creature. Turning the bag inside out closes the orifice.\r\n\r\nThe extradimensional creature attached to the bag can sense whatever is placed inside the bag. Animal or vegetable matter placed wholly in the bag is devoured and lost forever. When part of a living creature is placed in the bag, as happens when someone reaches inside it, there is a 50 percent chance that the creature is pulled inside the bag. A creature inside the bag can use its action to try to escape with a successful DC 15 Strength check. Another creature can use its action to reach into the bag to pull a creature out, doing so with a successful DC 20 Strength check (provided it isn't pulled inside the bag first). Any creature that starts its turn inside the bag is devoured, its body destroyed.\r\n\r\nInanimate objects can be stored in the bag, which can hold a cubic foot of such material. However, once each day, the bag swallows any objects inside it and spits them out into another plane of existence. The GM determines the time and plane.\r\n\r\nIf the bag is pierced or torn, it is destroyed, and anything contained within it is transported to a random location on the Astral Plane.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_bag-of-holding", - "fields": { - "name": "Bag of Holding", - "desc": "This bag has an interior space considerably larger than its outside dimensions, roughly 2 feet in diameter at the mouth and 4 feet deep. The bag can hold up to 500 pounds, not exceeding a volume of 64 cubic feet. The bag weighs 15 pounds, regardless of its contents. Retrieving an item from the bag requires an action.\r\n\r\nIf the bag is overloaded, pierced, or torn, it ruptures and is destroyed, and its contents are scattered in the Astral Plane. If the bag is turned inside out, its contents spill forth, unharmed, but the bag must be put right before it can be used again. Breathing creatures inside the bag can survive up to a number of minutes equal to 10 divided by the number of creatures (minimum 1 minute), after which time they begin to suffocate.\r\n\r\nPlacing a _bag of holding_ inside an extradimensional space created by a _handy haversack_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it to a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_bag-of-tricks", - "fields": { - "name": "Bag of Tricks", - "desc": "This ordinary bag, made from gray, rust, or tan cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\r\n\r\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a d8 and consulting the table that corresponds to the bag's color.\r\n\r\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\r\n\r\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.\r\n\r\n**Gray Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Weasel |\r\n| 2 | Giant rat |\r\n| 3 | Badger |\r\n| 4 | Boar |\r\n| 5 | Panther |\r\n| 6 | Giant badger |\r\n| 7 | Dire wolf |\r\n| 8 | Giant elk |\r\n\r\n**Rust Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|------------|\r\n| 1 | Rat |\r\n| 2 | Owl |\r\n| 3 | Mastiff |\r\n| 4 | Goat |\r\n| 5 | Giant goat |\r\n| 6 | Giant boar |\r\n| 7 | Lion |\r\n| 8 | Brown bear |\r\n\r\n**Tan Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Jackal |\r\n| 2 | Ape |\r\n| 3 | Baboon |\r\n| 4 | Axe beak |\r\n| 5 | Black bear |\r\n| 6 | Giant weasel |\r\n| 7 | Giant hyena |\r\n| 8 | Tiger |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_bagpipes", - "fields": { - "name": "Bagpipes", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ball-bearings-bag-of-1000", - "fields": { - "name": "Ball Bearings (bag of 1000)", - "desc": "As an action, you can spill these tiny metal balls from their pouch to cover a level, square area that is 10 feet on a side. A creature moving across the covered area must succeed on a DC 10 Dexterity saving throw or fall prone. A creature moving through the area at half speed doesn't need to make the save.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_barrel", - "fields": { - "name": "Barrel", - "desc": "A barrel. Capacity: 40 gallons liquid, 4 cubic feet solid.", - "document": "srd", - "size": "medium", - "weight": "70.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_basket", - "fields": { - "name": "Basket", - "desc": "A basket. Capacity: 2 cubic feet/40 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.40", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_battleaxe", - "fields": { - "name": "Battleaxe", - "desc": "A battleaxe.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_battleaxe-1", - "fields": { - "name": "Battleaxe (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_battleaxe-2", - "fields": { - "name": "Battleaxe (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_battleaxe-3", - "fields": { - "name": "Battleaxe (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_bead-of-force", - "fields": { - "name": "Bead of Force", - "desc": "This small black sphere measures 3/4 of an inch in diameter and weighs an ounce. Typically, 1d4 + 4 _beads of force_ are found together.\r\n\r\nYou can use an action to throw the bead up to 60 feet. The bead explodes on impact and is destroyed. Each creature within a 10-foot radius of where the bead landed must succeed on a DC 15 Dexterity saving throw or take 5d4 force damage. A sphere of transparent force then encloses the area for 1 minute. Any creature that failed the save and is completely within the area is trapped inside this sphere. Creatures that succeeded on the save, or are partially within the area, are pushed away from the center of the sphere until they are no longer inside it. Only breathable air can pass through the sphere's wall. No attack or other effect can.\r\n\r\nAn enclosed creature can use its action to push against the sphere's wall, moving the sphere up to half the creature's walking speed. The sphere can be picked up, and its magic causes it to weigh only 1 pound, regardless of the weight of creatures inside.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_bedroll", - "fields": { - "name": "Bedroll", - "desc": "A bedroll.", - "document": "srd", - "size": "tiny", - "weight": "7.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_bell", - "fields": { - "name": "Bell", - "desc": "A bell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_belt-of-cloud-giant-strength", - "fields": { - "name": "Belt of Cloud Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_belt-of-dwarvenkind", - "fields": { - "name": "Belt of Dwarvenkind", - "desc": "While wearing this belt, you gain the following benefits:\r\n\r\n* Your Constitution score increases by 2, to a maximum of 20.\r\n* You have advantage on Charisma (Persuasion) checks made to interact with dwarves.\r\n\r\nIn addition, while attuned to the belt, you have a 50 percent chance each day at dawn of growing a full beard if you're capable of growing one, or a visibly thicker beard if you already have one.\r\n\r\nIf you aren't a dwarf, you gain the following additional benefits while wearing the belt:\r\n\r\n* You have advantage on saving throws against poison, and you have resistance against poison damage.\r\n* You have darkvision out to a range of 60 feet.\r\n* You can speak, read, and write Dwarvish.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_belt-of-fire-giant-strength", - "fields": { - "name": "Belt of Fire Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_belt-of-frost-giant-strength", - "fields": { - "name": "Belt of Frost Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_belt-of-hill-giant-strength", - "fields": { - "name": "Belt of Hill Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_belt-of-stone-giant-strength", - "fields": { - "name": "Belt of Stone Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_belt-of-storm-giant-strength", - "fields": { - "name": "Belt of Storm Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_blanket", - "fields": { - "name": "Blanket", - "desc": "A blanket.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_block-and-tackle", - "fields": { - "name": "Block and Tackle", - "desc": "A set of pulleys with a cable threaded through them and a hook to attach to objects, a block and tackle allows you to hoist up to four times the weight you can normally lift.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_blowgun", - "fields": { - "name": "Blowgun", - "desc": "A blowgun.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_blowgun-1", - "fields": { - "name": "Blowgun (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_blowgun-2", - "fields": { - "name": "Blowgun (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_blowgun-3", - "fields": { - "name": "Blowgun (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_blowgun-needles", - "fields": { - "name": "Blowgun needles", - "desc": "Needles to be fired with a blowgun.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_book", - "fields": { - "name": "Book", - "desc": "A book might contain poetry, historical accounts, information pertaining to a particular field of lore, diagrams and notes on gnomish contraptions, or just about anything else that can be represented using text or pictures. A book of spells is a spellbook (described later in this section).", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_boots-of-elvenkind", - "fields": { - "name": "Boots of Elvenkind", - "desc": "While you wear these boots, your steps make no sound, regardless of the surface you are moving across. You also have advantage on Dexterity (Stealth) checks that rely on moving silently.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_boots-of-levitation", - "fields": { - "name": "Boots of Levitation", - "desc": "While you wear these boots, you can use an action to cast the _levitate_ spell on yourself at will.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_boots-of-speed", - "fields": { - "name": "Boots of Speed", - "desc": "While you wear these boots, you can use a bonus action and click the boots' heels together. If you do, the boots double your walking speed, and any creature that makes an opportunity attack against you has disadvantage on the attack roll. If you click your heels together again, you end the effect.\r\n\r\nWhen the boots' property has been used for a total of 10 minutes, the magic ceases to function until you finish a long rest.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_boots-of-striding-and-springing", - "fields": { - "name": "Boots of Striding and Springing", - "desc": "While you wear these boots, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced if you are encumbered or wearing heavy armor. In addition, you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_boots-of-the-winterlands", - "fields": { - "name": "Boots of the Winterlands", - "desc": "These furred boots are snug and feel quite warm. While you wear them, you gain the following benefits:\r\n\r\n* You have resistance to cold damage.\r\n* You ignore difficult terrain created by ice or snow.\r\n* You can tolerate temperatures as low as -50 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as -100 degrees Fahrenheit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_bottle-glass", - "fields": { - "name": "Bottle, glass", - "desc": "A glass bottle. Capacity: 1.5 pints liquid.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_bowl-of-commanding-water-elementals", - "fields": { - "name": "Bowl of Commanding Water Elementals", - "desc": "While this bowl is filled with water, you can use an action to speak the bowl's command word and summon a water elemental, as if you had cast the _conjure elemental_ spell. The bowl can't be used this way again until the next dawn.\r\n\r\nThe bowl is about 1 foot in diameter and half as deep. It weighs 3 pounds and holds about 3 gallons.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_bracers-of-archery", - "fields": { - "name": "Bracers of Archery", - "desc": "While wearing these bracers, you have proficiency with the longbow and shortbow, and you gain a +2 bonus to damage rolls on ranged attacks made with such weapons.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_bracers-of-defense", - "fields": { - "name": "Bracers of Defense", - "desc": "While wearing these bracers, you gain a +2 bonus to AC if you are wearing no armor and using no shield.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_brazier-of-commanding-fire-elementals", - "fields": { - "name": "Brazier of Commanding Fire Elementals", - "desc": "While a fire burns in this brass brazier, you can use an action to speak the brazier's command word and summon a fire elemental, as if you had cast the _conjure elemental_ spell. The brazier can't be used this way again until the next dawn.\r\n\r\nThe brazier weighs 5 pounds.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_breastplate", - "fields": { - "name": "Breastplate", - "desc": "This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.", - "document": "srd", - "size": "tiny", - "weight": "20.000", - "armor_class": 0, - "hit_points": 0, - "cost": "400.00", - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_brewers-supplies", - "fields": { - "name": "Brewer's Supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "9.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_brooch-of-shielding", - "fields": { - "name": "Brooch of Shielding", - "desc": "While wearing this brooch, you have resistance to force damage, and you have immunity to damage from the _magic missile_ spell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_broom-of-flying", - "fields": { - "name": "Broom of Flying", - "desc": "This wooden broom, which weighs 3 pounds, functions like a mundane broom until you stand astride it and speak its command word. It then hovers beneath you and can be ridden in the air. It has a flying speed of 50 feet. It can carry up to 400 pounds, but its flying speed becomes 30 feet while carrying over 200 pounds. The broom stops hovering when you land.\r\n\r\nYou can send the broom to travel alone to a destination within 1 mile of you if you speak the command word, name the location, and are familiar with that place. The broom comes back to you when you speak another command word, provided that the broom is still within 1 mile of you.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_bucket", - "fields": { - "name": "Bucket", - "desc": "A bucket. Capacity: 3 gallons liquid, 1/2 cubic foot solid.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_burnt-othur-fumes", - "fields": { - "name": "Burnt othur fumes", - "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or take 10 (3d6) poison damage, and must repeat the saving throw at the start of each of its turns. On each successive failed save, the character takes 3 (1d6) poison damage. After three successful saves, the poison ends.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "500.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_calligraphers-supplies", - "fields": { - "name": "Calligrapher's supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_caltrops-bag-of-20", - "fields": { - "name": "Caltrops (bag of 20)", - "desc": "As an action, you can spread a bag of caltrops to cover a square area that is 5 feet on a side. Any creature that enters the area must succeed on a DC 15 Dexterity saving throw or stop moving this turn and take 1 piercing damage. Taking this damage reduces the creature's walking speed by 10 feet until the creature regains at least 1 hit point. A creature moving through the area at half speed doesn't need to make the save.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_candle", - "fields": { - "name": "Candle", - "desc": "For 1 hour, a candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_candle-of-invocation", - "fields": { - "name": "Candle of Invocation", - "desc": "This slender taper is dedicated to a deity and shares that deity's alignment. The candle's alignment can be detected with the _detect evil and good_ spell. The GM chooses the god and associated alignment or determines the alignment randomly.\r\n\r\n| d20 | Alignment |\r\n|-------|-----------------|\r\n| 1-2 | Chaotic evil |\r\n| 3-4 | Chaotic neutral |\r\n| 5-7 | Chaotic good |\r\n| 8-9 | Neutral evil |\r\n| 10-11 | Neutral |\r\n| 12-13 | Neutral good |\r\n| 14-15 | Lawful evil |\r\n| 16-17 | Lawful neutral |\r\n| 18-20 | Lawful good |\r\n\r\nThe candle's magic is activated when the candle is lit, which requires an action. After burning for 4 hours, the candle is destroyed. You can snuff it out early for use at a later time. Deduct the time it burned in increments of 1 minute from the candle's total burn time.\r\n\r\nWhile lit, the candle sheds dim light in a 30-foot radius. Any creature within that light whose alignment matches that of the candle makes attack rolls, saving throws, and ability checks with advantage. In addition, a cleric or druid in the light whose alignment matches the candle's can cast 1st* level spells he or she has prepared without expending spell slots, though the spell's effect is as if cast with a 1st-level slot.\r\n\r\nAlternatively, when you light the candle for the first time, you can cast the _gate_ spell with it. Doing so destroys the candle.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_canvas", - "fields": { - "name": "Canvas", - "desc": "1 sq. yd. of canvas", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cape-of-the-mountebank", - "fields": { - "name": "Cape of the Mountebank", - "desc": "This cape smells faintly of brimstone. While wearing it, you can use it to cast the _dimension door_ spell as an action. This property of the cape can't be used again until the next dawn.\r\n\r\nWhen you disappear, you leave behind a cloud of smoke, and you appear in a similar cloud of smoke at your destination. The smoke lightly obscures the space you left and the space you appear in, and it dissipates at the end of your next turn. A light or stronger wind disperses the smoke.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_carpenters-tools", - "fields": { - "name": "Carpenter's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "8.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_carpet-of-flying", - "fields": { - "name": "Carpet of Flying", - "desc": "You can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.\r\n\r\nFour sizes of _carpet of flying_ exist. The GM chooses the size of a given carpet or determines it randomly.\r\n\r\n| d100 | Size | Capacity | Flying Speed |\r\n|--------|---------------|----------|--------------|\r\n| 01-20 | 3 ft. × 5 ft. | 200 lb. | 80 feet |\r\n| 21-55 | 4 ft. × 6 ft. | 400 lb. | 60 feet |\r\n| 56-80 | 5 ft. × 7 ft. | 600 lb. | 40 feet |\r\n| 81-100 | 6 ft. × 9 ft. | 800 lb. | 30 feet |\r\n\r\nA carpet can carry up to twice the weight shown on the table, but it flies at half speed if it carries more than its normal capacity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_carriage", - "fields": { - "name": "Carriage", - "desc": "Drawn vehicle.", - "document": "srd", - "size": "huge", - "weight": "600.000", - "armor_class": 0, - "hit_points": 0, - "cost": "100.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cart", - "fields": { - "name": "Cart", - "desc": "Drawn vehicle", - "document": "srd", - "size": "large", - "weight": "200.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cartographers-tools", - "fields": { - "name": "Cartographer's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_case-crossbow-bolt", - "fields": { - "name": "Case, Crossbow Bolt", - "desc": "This wooden case can hold up to twenty crossbow bolts.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_case-map-or-scroll", - "fields": { - "name": "Case, Map or Scroll", - "desc": "This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_censer-of-controlling-air-elementals", - "fields": { - "name": "Censer of Controlling Air Elementals", - "desc": "While incense is burning in this censer, you can use an action to speak the censer's command word and summon an air elemental, as if you had cast the _conjure elemental_ spell. The censer can't be used this way again until the next dawn.\r\n\r\nThis 6-inch-wide, 1-foot-high vessel resembles a chalice with a decorated lid. It weighs 1 pound.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_chain-10-feet", - "fields": { - "name": "Chain (10 feet)", - "desc": "A chain has 10 hit points. It can be burst with a successful DC 20 Strength check.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_chain-mail", - "fields": { - "name": "Chain mail", - "desc": "Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.", - "document": "srd", - "size": "tiny", - "weight": "55.000", - "armor_class": 0, - "hit_points": 0, - "cost": "75.00", - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_chain-shirt", - "fields": { - "name": "Chain shirt", - "desc": "Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.", - "document": "srd", - "size": "tiny", - "weight": "20.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_chalk-1-piece", - "fields": { - "name": "Chalk (1 piece)", - "desc": "A piece of chalk.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_chariot", - "fields": { - "name": "Chariot", - "desc": "Drawn vehicle.", - "document": "srd", - "size": "large", - "weight": "100.000", - "armor_class": 0, - "hit_points": 0, - "cost": "250.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_chest", - "fields": { - "name": "Chest", - "desc": "A chest. Capacity: 12 cubic feet/300 pounds of gear.", - "document": "srd", - "size": "small", - "weight": "25.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_chicken", - "fields": { - "name": "Chicken", - "desc": "One chicken", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_chime-of-opening", - "fields": { - "name": "Chime of Opening", - "desc": "This hollow metal tube measures about 1 foot long and weighs 1 pound. You can strike it as an action, pointing it at an object within 120 feet of you that can be opened, such as a door, lid, or lock. The chime issues a clear tone, and one lock or latch on the object opens unless the sound can't reach the object. If no locks or latches remain, the object itself opens.\r\n\r\nThe chime can be used ten times. After the tenth time, it cracks and becomes useless.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cinnamon", - "fields": { - "name": "Cinnamon", - "desc": "1lb of cinnamon", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_circlet-of-blasting", - "fields": { - "name": "Circlet of Blasting", - "desc": "While wearing this circlet, you can use an action to cast the _scorching ray_ spell with it. When you make the spell's attacks, you do so with an attack bonus of +5. The circlet can't be used this way again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_climbers-kit", - "fields": { - "name": "Climber's Kit", - "desc": "A climber's kit includes special pitons, boot tips, gloves, and a harness. You can use the climber's kit as an action to anchor yourself; when you do, you can't fall more than 25 feet from the point where you anchored yourself, and you can't climb more than 25 feet away from that point without undoing the anchor.", - "document": "srd", - "size": "tiny", - "weight": "12.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cloak-of-arachnida", - "fields": { - "name": "Cloak of Arachnida", - "desc": "This fine garment is made of black silk interwoven with faint silvery threads. While wearing it, you gain the following benefits:\r\n\r\n* You have resistance to poison damage.\r\n* You have a climbing speed equal to your walking speed.\r\n* You can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free.\r\n* You can't be caught in webs of any sort and can move through webs as if they were difficult terrain.\r\n* You can use an action to cast the _web_ spell (save DC 13). The web created by the spell fills twice its normal area. Once used, this property of the cloak can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cloak-of-displacement", - "fields": { - "name": "Cloak of Displacement", - "desc": "While you wear this cloak, it projects an illusion that makes you appear to be standing in a place near your actual location, causing any creature to have disadvantage on attack rolls against you. If you take damage, the property ceases to function until the start of your next turn. This property is suppressed while you are incapacitated, restrained, or otherwise unable to move.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cloak-of-elvenkind", - "fields": { - "name": "Cloak of Elvenkind", - "desc": "While you wear this cloak with its hood up, Wisdom (Perception) checks made to see you have disadvantage, and you have advantage on Dexterity (Stealth) checks made to hide, as the cloak's color shifts to camouflage you. Pulling the hood up or down requires an action.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cloak-of-protection", - "fields": { - "name": "Cloak of Protection", - "desc": "You gain a +1 bonus to AC and saving throws while you wear this cloak.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cloak-of-the-bat", - "fields": { - "name": "Cloak of the Bat", - "desc": "While wearing this cloak, you have advantage on Dexterity (Stealth) checks. In an area of dim light or darkness, you can grip the edges of the cloak with both hands and use it to fly at a speed of 40 feet. If you ever fail to grip the cloak's edges while flying in this way, or if you are no longer in dim light or darkness, you lose this flying speed.\r\n\r\nWhile wearing the cloak in an area of dim light or darkness, you can use your action to cast _polymorph_ on yourself, transforming into a bat. While you are in the form of the bat, you retain your Intelligence, Wisdom, and Charisma scores. The cloak can't be used this way again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cloak-of-the-manta-ray", - "fields": { - "name": "Cloak of the Manta Ray", - "desc": "While wearing this cloak with its hood up, you can breathe underwater, and you have a swimming speed of 60 feet. Pulling the hood up or down requires an action.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_clothes-common", - "fields": { - "name": "Clothes, Common", - "desc": "Common clothes.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_clothes-costume", - "fields": { - "name": "Clothes, costume", - "desc": "A costume.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_clothes-fine", - "fields": { - "name": "Clothes, fine", - "desc": "Fine clothing.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_clothes-travelers", - "fields": { - "name": "Clothes, traveler's", - "desc": "Traveler's clothing.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cloves", - "fields": { - "name": "Cloves", - "desc": "1lb of cloves.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "3.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_club", - "fields": { - "name": "Club", - "desc": "A club", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_club-1", - "fields": { - "name": "Club (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_club-2", - "fields": { - "name": "Club (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_club-3", - "fields": { - "name": "Club (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cobblers-tools", - "fields": { - "name": "Cobbler's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_component-pouch", - "fields": { - "name": "Component Pouch", - "desc": "A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cooks-utensils", - "fields": { - "name": "Cook's utensils", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_copper", - "fields": { - "name": "Copper", - "desc": "1lb of copper.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_copper-piece", - "fields": { - "name": "Copper Piece", - "desc": "One silver piece is worth ten copper pieces, which are common among laborers and beggars. A single copper piece buys a candle, a torch, or a piece of chalk.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cotton-cloth", - "fields": { - "name": "Cotton Cloth", - "desc": "1 sq. yd. of cotton cloth.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cow", - "fields": { - "name": "Cow", - "desc": "One cow.", - "document": "srd", - "size": "large", - "weight": "1000.000", - "armor_class": 10, - "hit_points": 15, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crawler-mucus", - "fields": { - "name": "Crawler mucus", - "desc": "This poison must be harvested from a dead or incapacitated crawler. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. The poisoned creature is paralyzed. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\\n\\n\r\n**_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crossbow-bolt", - "fields": { - "name": "Crossbow bolt", - "desc": "Bolts to be used in a crossbow.", - "document": "srd", - "size": "tiny", - "weight": "0.080", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crossbow-hand", - "fields": { - "name": "Crossbow, hand", - "desc": "A hand crossbow.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "75.00", - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crossbow-hand-1", - "fields": { - "name": "Crossbow-Hand (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crossbow-hand-2", - "fields": { - "name": "Crossbow-Hand (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crossbow-hand-3", - "fields": { - "name": "Crossbow-Hand (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crossbow-heavy", - "fields": { - "name": "Crossbow, heavy", - "desc": "A heavy crossbow", - "document": "srd", - "size": "tiny", - "weight": "18.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crossbow-heavy-1", - "fields": { - "name": "Crossbow-Heavy (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crossbow-heavy-2", - "fields": { - "name": "Crossbow-Heavy (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crossbow-heavy-3", - "fields": { - "name": "Crossbow-Heavy (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crossbow-light", - "fields": { - "name": "Crossbow, light", - "desc": "A light crossbow.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crossbow-light-1", - "fields": { - "name": "Crossbow-Light (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crossbow-light-2", - "fields": { - "name": "Crossbow-Light (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crossbow-light-3", - "fields": { - "name": "Crossbow-Light (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crowbar", - "fields": { - "name": "Crowbar", - "desc": "Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crystal", - "fields": { - "name": "Crystal", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crystal-ball", - "fields": { - "name": "Crystal Ball", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crystal-ball-of-mind-reading", - "fields": { - "name": "Crystal Ball of Mind Reading", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nYou can use an action to cast the detect thoughts spell (save DC 17) while you are scrying with the crystal ball, targeting creatures you can see within 30 feet of the spell's sensor. You don't need to concentrate on this detect thoughts to maintain it during its duration, but it ends if scrying ends.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crystal-ball-of-telepathy", - "fields": { - "name": "Crystal Ball of Telepathy", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nThe following crystal ball variants are legendary items and have additional properties.\r\n\r\nWhile scrying with the crystal ball, you can communicate telepathically with creatures you can see within 30 feet of the spell's sensor. You can also use an action to cast the suggestion spell (save DC 17) through the sensor on one of those creatures. You don't need to concentrate on this suggestion to maintain it during its duration, but it ends if scrying ends. Once used, the suggestion power of the crystal ball can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_crystal-ball-of-true-seeing", - "fields": { - "name": "Crystal Ball of True Seeing", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nWhile scrying with the crystal ball, you have truesight with a radius of 120 feet centered on the spell's sensor.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cube-of-force", - "fields": { - "name": "Cube of Force", - "desc": "This cube is about an inch across. Each face has a distinct marking on it that can be pressed. The cube starts with 36 charges, and it regains 1d20 expended charges daily at dawn.\r\n\r\nYou can use an action to press one of the cube's faces, expending a number of charges based on the chosen face, as shown in the Cube of Force Faces table. Each face has a different effect. If the cube has insufficient charges remaining, nothing happens. Otherwise, a barrier of invisible force springs into existence, forming a cube 15 feet on a side. The barrier is centered on you, moves with you, and lasts for 1 minute, until you use an action to press the cube's sixth face, or the cube runs out of charges. You can change the barrier's effect by pressing a different face of the cube and expending the requisite number of charges, resetting the duration.\r\n\r\nIf your movement causes the barrier to come into contact with a solid object that can't pass through the cube, you can't move any closer to that object as long as the barrier remains.\r\n\r\n**Cube of Force Faces (table)**\r\n\r\n| Face | Charges | Effect |\r\n|------|---------|-------------------------------------------------------------------------------------------------------------------|\r\n| 1 | 1 | Gases, wind, and fog can't pass through the barrier. |\r\n| 2 | 2 | Nonliving matter can't pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 3 | 3 | Living matter can't pass through the barrier. |\r\n| 4 | 4 | Spell effects can't pass through the barrier. |\r\n| 5 | 5 | Nothing can pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 6 | 0 | The barrier deactivates. |\r\n\r\nThe cube loses charges when the barrier is targeted by certain spells or comes into contact with certain spell or magic item effects, as shown in the table below.\r\n\r\n| Spell or Item | Charges Lost |\r\n|------------------|--------------|\r\n| Disintegrate | 1d12 |\r\n| Horn of blasting | 1d10 |\r\n| Passwall | 1d6 |\r\n| Prismatic spray | 1d20 |\r\n| Wall of fire | 1d4 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_cubic-gate", - "fields": { - "name": "Cubic Gate", - "desc": "This cube is 3 inches across and radiates palpable magical energy. The six sides of the cube are each keyed to a different plane of existence, one of which is the Material Plane. The other sides are linked to planes determined by the GM.\r\n\r\nYou can use an action to press one side of the cube to cast the _gate_ spell with it, opening a portal to the plane keyed to that side. Alternatively, if you use an action to press one side twice, you can cast the _plane shift_ spell (save DC 17) with the cube and transport the targets to the plane keyed to that side.\r\n\r\nThe cube has 3 charges. Each use of the cube expends 1 charge. The cube regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dagger", - "fields": { - "name": "Dagger", - "desc": "A dagger.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dagger-1", - "fields": { - "name": "Dagger (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dagger-2", - "fields": { - "name": "Dagger (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dagger-3", - "fields": { - "name": "Dagger (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dagger-of-venom", - "fields": { - "name": "Dagger of Venom", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nYou can use an action to cause thick, black poison to coat the blade. The poison remains for 1 minute or until an attack using this weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or take 2d10 poison damage and become poisoned for 1 minute. The dagger can't be used this way again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dancing-sword-greatsword", - "fields": { - "name": "Dancing Sword (Greatsword)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dancing-sword-longsword", - "fields": { - "name": "Dancing Sword (Longsword)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dancing-sword-rapier", - "fields": { - "name": "Dancing Sword (Rapier)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dancing-sword-shortsword", - "fields": { - "name": "Dancing Sword (Shortsword)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dart", - "fields": { - "name": "Dart", - "desc": "A dart.", - "document": "srd", - "size": "tiny", - "weight": "0.250", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dart-1", - "fields": { - "name": "Dart (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dart-2", - "fields": { - "name": "Dart (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dart-3", - "fields": { - "name": "Dart (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_decanter-of-endless-water", - "fields": { - "name": "Decanter of Endless Water", - "desc": "This stoppered flask sloshes when shaken, as if it contains water. The decanter weighs 2 pounds.\r\n\r\nYou can use an action to remove the stopper and speak one of three command words, whereupon an amount of fresh water or salt water (your choice) pours out of the flask. The water stops pouring out at the start of your next turn. Choose from the following options:\r\n\r\n* \"Stream\" produces 1 gallon of water.\r\n* \"Fountain\" produces 5 gallons of water.\r\n* \"Geyser\" produces 30 gallons of water that gushes forth in a geyser 30 feet long and 1 foot wide. As a bonus action while holding the decanter, you can aim the geyser at a creature you can see within 30 feet of you. The target must succeed on a DC 13 Strength saving throw or take 1d4 bludgeoning damage and fall prone. Instead of a creature, you can target an object that isn't being worn or carried and that weighs no more than 200 pounds. The object is either knocked over or pushed up to 15 feet away from you.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_deck-of-illusions", - "fields": { - "name": "Deck of Illusions", - "desc": "This box contains a set of parchment cards. A full deck has 34 cards. A deck found as treasure is usually missing 1d20 - 1 cards.\r\n\r\nThe magic of the deck functions only if cards are drawn at random (you can use an altered deck of playing cards to simulate the deck). You can use an action to draw a card at random from the deck and throw it to the ground at a point within 30 feet of you.\r\n\r\nAn illusion of one or more creatures forms over the thrown card and remains until dispelled. An illusory creature appears real, of the appropriate size, and behaves as if it were a real creature except that it can do no harm. While you are within 120 feet of the illusory creature and can see it, you can use an action to move it magically anywhere within 30 feet of its card. Any physical interaction with the illusory creature reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect the creature identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The creature then appears translucent.\r\n\r\nThe illusion lasts until its card is moved or the illusion is dispelled. When the illusion ends, the image on its card disappears, and that card can't be used again.\r\n\r\n| Playing Card | Illusion |\r\n|-------------------|----------------------------------|\r\n| Ace of hearts | Red dragon |\r\n| King of hearts | Knight and four guards |\r\n| Queen of hearts | Succubus or incubus |\r\n| Jack of hearts | Druid |\r\n| Ten of hearts | Cloud giant |\r\n| Nine of hearts | Ettin |\r\n| Eight of hearts | Bugbear |\r\n| Two of hearts | Goblin |\r\n| Ace of diamonds | Beholder |\r\n| King of diamonds | Archmage and mage apprentice |\r\n| Queen of diamonds | Night hag |\r\n| Jack of diamonds | Assassin |\r\n| Ten of diamonds | Fire giant |\r\n| Nine of diamonds | Ogre mage |\r\n| Eight of diamonds | Gnoll |\r\n| Two of diamonds | Kobold |\r\n| Ace of spades | Lich |\r\n| King of spades | Priest and two acolytes |\r\n| Queen of spades | Medusa |\r\n| Jack of spades | Veteran |\r\n| Ten of spades | Frost giant |\r\n| Nine of spades | Troll |\r\n| Eight of spades | Hobgoblin |\r\n| Two of spades | Goblin |\r\n| Ace of clubs | Iron golem |\r\n| King of clubs | Bandit captain and three bandits |\r\n| Queen of clubs | Erinyes |\r\n| Jack of clubs | Berserker |\r\n| Ten of clubs | Hill giant |\r\n| Nine of clubs | Ogre |\r\n| Eight of clubs | Orc |\r\n| Two of clubs | Kobold |\r\n| Jokers (2) | You (the deck's owner) |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_deck-of-many-things", - "fields": { - "name": "Deck of Many Things", - "desc": "Usually found in a box or pouch, this deck contains a number of cards made of ivory or vellum. Most (75 percent) of these decks have only thirteen cards, but the rest have twenty-two.\r\n\r\nBefore you draw a card, you must declare how many cards you intend to draw and then draw them randomly (you can use an altered deck of playing cards to simulate the deck). Any cards drawn in excess of this number have no effect. Otherwise, as soon as you draw a card from the deck, its magic takes effect. You must draw each card no more than 1 hour after the previous draw. If you fail to draw the chosen number, the remaining number of cards fly from the deck on their own and take effect all at once.\r\n\r\nOnce a card is drawn, it fades from existence. Unless the card is the Fool or the Jester, the card reappears in the deck, making it possible to draw the same card twice.\r\n\r\n| Playing Card | Card |\r\n|--------------------|-------------|\r\n| Ace of diamonds | Vizier\\* |\r\n| King of diamonds | Sun |\r\n| Queen of diamonds | Moon |\r\n| Jack of diamonds | Star |\r\n| Two of diamonds | Comet\\* |\r\n| Ace of hearts | The Fates\\* |\r\n| King of hearts | Throne |\r\n| Queen of hearts | Key |\r\n| Jack of hearts | Knight |\r\n| Two of hearts | Gem\\* |\r\n| Ace of clubs | Talons\\* |\r\n| King of clubs | The Void |\r\n| Queen of clubs | Flames |\r\n| Jack of clubs | Skull |\r\n| Two of clubs | Idiot\\* |\r\n| Ace of spades | Donjon\\* |\r\n| King of spades | Ruin |\r\n| Queen of spades | Euryale |\r\n| Jack of spades | Rogue |\r\n| Two of spades | Balance\\* |\r\n| Joker (with TM) | Fool\\* |\r\n| Joker (without TM) | Jester |\r\n\r\n\\*Found only in a deck with twenty-two cards\r\n\r\n**_Balance_**. Your mind suffers a wrenching alteration, causing your alignment to change. Lawful becomes chaotic, good becomes evil, and vice versa. If you are true neutral or unaligned, this card has no effect on you.\r\n\r\n**_Comet_**. If you single-handedly defeat the next hostile monster or group of monsters you encounter, you gain experience points enough to gain one level. Otherwise, this card has no effect.\r\n\r\n**_Donjon_**. You disappear and become entombed in a state of suspended animation in an extradimensional sphere. Everything you were wearing and carrying stays behind in the space you occupied when you disappeared. You remain imprisoned until you are found and removed from the sphere. You can't be located by any divination magic, but a _wish_ spell can reveal the location of your prison. You draw no more cards.\r\n\r\n**_Euryale_**. The card's medusa-like visage curses you. You take a -2 penalty on saving throws while cursed in this way. Only a god or the magic of The Fates card can end this curse.\r\n\r\n**_The Fates_**. Reality's fabric unravels and spins anew, allowing you to avoid or erase one event as if it never happened. You can use the card's magic as soon as you draw the card or at any other time before you die.\r\n\r\n**_Flames_**. A powerful devil becomes your enemy. The devil seeks your ruin and plagues your life, savoring your suffering before attempting to slay you. This enmity lasts until either you or the devil dies.\r\n\r\n**_Fool_**. You lose 10,000 XP, discard this card, and draw from the deck again, counting both draws as one of your declared draws. If losing that much XP would cause you to lose a level, you instead lose an amount that leaves you with just enough XP to keep your level.\r\n\r\n**_Gem_**. Twenty-five pieces of jewelry worth 2,000 gp each or fifty gems worth 1,000 gp each appear at your feet.\r\n\r\n**_Idiot_**. Permanently reduce your Intelligence by 1d4 + 1 (to a minimum score of 1). You can draw one additional card beyond your declared draws.\r\n\r\n**_Jester_**. You gain 10,000 XP, or you can draw two additional cards beyond your declared draws.\r\n\r\n**_Key_**. A rare or rarer magic weapon with which you are proficient appears in your hands. The GM chooses the weapon.\r\n\r\n**_Knight_**. You gain the service of a 4th-level fighter who appears in a space you choose within 30 feet of you. The fighter is of the same race as you and serves you loyally until death, believing the fates have drawn him or her to you. You control this character.\r\n\r\n**_Moon_**. You are granted the ability to cast the _wish_ spell 1d3 times.\r\n\r\n**_Rogue_**. A nonplayer character of the GM's choice becomes hostile toward you. The identity of your new enemy isn't known until the NPC or someone else reveals it. Nothing less than a _wish_ spell or divine intervention can end the NPC's hostility toward you.\r\n\r\n**_Ruin_**. All forms of wealth that you carry or own, other than magic items, are lost to you. Portable property vanishes. Businesses, buildings, and land you own are lost in a way that alters reality the least. Any documentation that proves you should own something lost to this card also disappears.\r\n\r\n**_Skull_**. You summon an avatar of death-a ghostly humanoid skeleton clad in a tattered black robe and carrying a spectral scythe. It appears in a space of the GM's choice within 10 feet of you and attacks you, warning all others that you must win the battle alone. The avatar fights until you die or it drops to 0 hit points, whereupon it disappears. If anyone tries to help you, the helper summons its own avatar of death. A creature slain by an avatar of death can't be restored to life.\r\n\r\n#", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_defender-greatsword", - "fields": { - "name": "Defender (Greatsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_defender-longsword", - "fields": { - "name": "Defender (Longsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_defender-rapier", - "fields": { - "name": "Defender (Rapier)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_defender-shortsword", - "fields": { - "name": "Defender (Shortsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_demon-armor", - "fields": { - "name": "Demon Armor", - "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, the armor's clawed gauntlets turn unarmed strikes with your hands into magic weapons that deal slashing damage, with a +1 bonus to attack rolls and damage rolls and a damage die of 1d8.\n\n**_Curse_**. Once you don this cursed armor, you can't doff it unless you are targeted by the _remove curse_ spell or similar magic. While wearing the armor, you have disadvantage on attack rolls against demons and on saving throws against their spells and special abilities.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dice-set", - "fields": { - "name": "Dice set", - "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dimensional-shackles", - "fields": { - "name": "Dimensional Shackles", - "desc": "You can use an action to place these shackles on an incapacitated creature. The shackles adjust to fit a creature of Small to Large size. In addition to serving as mundane manacles, the shackles prevent a creature bound by them from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. They don't prevent the creature from passing through an interdimensional portal.\r\n\r\nYou and any creature you designate when you use the shackles can use an action to remove them. Once every 30 days, the bound creature can make a DC 30 Strength (Athletics) check. On a success, the creature breaks free and destroys the shackles.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_disguise-kit", - "fields": { - "name": "Disguise kit", - "desc": "This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dragon-scale-mail", - "fields": { - "name": "Dragon Scale Mail", - "desc": "Dragon scale mail is made of the scales of one kind of dragon. Sometimes dragons collect their cast-off scales and gift them to humanoids. Other times, hunters carefully skin and preserve the hide of a dead dragon. In either case, dragon scale mail is highly valued.\r\n\r\nWhile wearing this armor, you gain a +1 bonus to AC, you have advantage on saving throws against the Frightful Presence and breath weapons of dragons, and you have resistance to one damage type that is determined by the kind of dragon that provided the scales (see the table).\r\n\r\nAdditionally, you can focus your senses as an action to magically discern the distance and direction to the closest dragon within 30 miles of you that is of the same type as the armor. This special action can't be used again until the next dawn.\r\n\r\n| Dragon | Resistance |\r\n|--------|------------|\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dragon-slayer-greatsword", - "fields": { - "name": "Dragon Slayer (Greatsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dragon-slayer-longsword", - "fields": { - "name": "Dragon Slayer (Longsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dragon-slayer-rapier", - "fields": { - "name": "Dragon Slayer (Rapier)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dragon-slayer-shortsword", - "fields": { - "name": "Dragon Slayer (Shortsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_drow-poison", - "fields": { - "name": "Drow poison", - "desc": "This poison is typically made only by the drow, and only in a place far removed from sunlight. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the creature is also unconscious while poisoned in this way. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\r\n\\n\\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_drum", - "fields": { - "name": "Drum", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "6.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dulcimer", - "fields": { - "name": "Dulcimer", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dust-of-disappearance", - "fields": { - "name": "Dust of Disappearance", - "desc": "Found in a small packet, this powder resembles very fine sand. There is enough of it for one use. When you use an action to throw the dust into the air, you and each creature and object within 10 feet of you become invisible for 2d4 minutes. The duration is the same for all subjects, and the dust is consumed when its magic takes effect. If a creature affected by the dust attacks or casts a spell, the invisibility ends for that creature.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dust-of-dryness", - "fields": { - "name": "Dust of Dryness", - "desc": "This small packet contains 1d6 + 4 pinches of dust. You can use an action to sprinkle a pinch of it over water. The dust turns a cube of water 15 feet on a side into one marble-sized pellet, which floats or rests near where the dust was sprinkled. The pellet's weight is negligible.\r\n\r\nSomeone can use an action to smash the pellet against a hard surface, causing the pellet to shatter and release the water the dust absorbed. Doing so ends that pellet's magic.\r\n\r\nAn elemental composed mostly of water that is exposed to a pinch of the dust must make a DC 13 Constitution saving throw, taking 10d6 necrotic damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dust-of-sneezing-and-choking", - "fields": { - "name": "Dust of Sneezing and Choking", - "desc": "Found in a small container, this powder resembles very fine sand. It appears to be _dust of disappearance_, and an _identify_ spell reveals it to be such. There is enough of it for one use.\r\n\r\nWhen you use an action to throw a handful of the dust into the air, you and each creature that needs to breathe within 30 feet of you must succeed on a DC 15 Constitution saving throw or become unable to breathe, while sneezing uncontrollably. A creature affected in this way is incapacitated and suffocating. As long as it is conscious, a creature can repeat the saving throw at the end of each of its turns, ending the effect on it on a success. The _lesser restoration_ spell can also end the effect on a creature.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dwarven-plate", - "fields": { - "name": "Dwarven Plate", - "desc": "While wearing this armor, you gain a +2 bonus to AC. In addition, if an effect moves you against your will along the ground, you can use your reaction to reduce the distance you are moved by up to 10 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_dwarven-thrower", - "fields": { - "name": "Dwarven Thrower", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. It has the thrown property with a normal range of 20 feet and a long range of 60 feet. When you hit with a ranged attack using this weapon, it deals an extra 1d8 damage or, if the target is a giant, 2d8 damage. Immediately after the attack, the weapon flies back to your hand.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_efficient-quiver", - "fields": { - "name": "Efficient Quiver", - "desc": "Each of the quiver's three compartments connects to an extradimensional space that allows the quiver to hold numerous items while never weighing more than 2 pounds. The shortest compartment can hold up to sixty arrows, bolts, or similar objects. The midsize compartment holds up to eighteen javelins or similar objects. The longest compartment holds up to six long objects, such as bows, quarterstaffs, or spears.\r\n\r\nYou can draw any item the quiver contains as if doing so from a regular quiver or scabbard.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_efreeti-bottle", - "fields": { - "name": "Efreeti Bottle", - "desc": "This painted brass bottle weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke flows out of the bottle. At the end of your turn, the smoke disappears with a flash of harmless fire, and an efreeti appears in an unoccupied space within 30 feet of you.\r\n\r\nThe first time the bottle is opened, the GM rolls to determine what happens.\r\n\r\n| d100 | Effect |\r\n|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-10 | The efreeti attacks you. After fighting for 5 rounds, the efreeti disappears, and the bottle loses its magic. |\r\n| 11-90 | The efreeti serves you for 1 hour, doing as you command. Then the efreeti returns to the bottle, and a new stopper contains it. The stopper can't be removed for 24 hours. The next two times the bottle is opened, the same effect occurs. If the bottle is opened a fourth time, the efreeti escapes and disappears, and the bottle loses its magic. |\r\n| 91-100 | The efreeti can cast the wish spell three times for you. It disappears when it grants the final wish or after 1 hour, and the bottle loses its magic. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_electrum-piece", - "fields": { - "name": "Electrum Piece", - "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_elemental-gem", - "fields": { - "name": "Elemental Gem", - "desc": "This gem contains a mote of elemental energy. When you use an action to break the gem, an elemental is summoned as if you had cast the _conjure elemental_ spell, and the gem's magic is lost. The type of gem determines the elemental summoned by the spell.\r\n\r\n| Gem | Summoned Elemental |\r\n|----------------|--------------------|\r\n| Blue sapphire | Air elemental |\r\n| Yellow diamond | Earth elemental |\r\n| Red corundum | Fire elemental |\r\n| Emerald | Water elemental |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_elven-chain", - "fields": { - "name": "Elven Chain", - "desc": "You gain a +1 bonus to AC while you wear this armor. You are considered proficient with this armor even if you lack proficiency with medium armor.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_emblem", - "fields": { - "name": "Emblem", - "desc": "Can be used as a holy symbol.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_essense-of-either", - "fields": { - "name": "Essense of either", - "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 8 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "300.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_eversmoking-bottle", - "fields": { - "name": "Eversmoking Bottle", - "desc": "Smoke leaks from the lead-stoppered mouth of this brass bottle, which weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke pours out in a 60-foot radius from the bottle. The cloud's area is heavily obscured. Each minute the bottle remains open and within the cloud, the radius increases by 10 feet until it reaches its maximum radius of 120 feet.\r\n\r\nThe cloud persists as long as the bottle is open. Closing the bottle requires you to speak its command word as an action. Once the bottle is closed, the cloud disperses after 10 minutes. A moderate wind (11 to 20 miles per hour) can also disperse the smoke after 1 minute, and a strong wind (21 or more miles per hour) can do so after 1 round.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_eyes-of-charming", - "fields": { - "name": "Eyes of Charming", - "desc": "These crystal lenses fit over the eyes. They have 3 charges. While wearing them, you can expend 1 charge as an action to cast the _charm person_ spell (save DC 13) on a humanoid within 30 feet of you, provided that you and the target can see each other. The lenses regain all expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_eyes-of-minute-seeing", - "fields": { - "name": "Eyes of Minute Seeing", - "desc": "These crystal lenses fit over the eyes. While wearing them, you can see much better than normal out to a range of 1 foot. You have advantage on Intelligence (Investigation) checks that rely on sight while searching an area or studying an object within that range.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_eyes-of-the-eagle", - "fields": { - "name": "Eyes of the Eagle", - "desc": "These crystal lenses fit over the eyes. While wearing them, you have advantage on Wisdom (Perception) checks that rely on sight. In conditions of clear visibility, you can make out details of even extremely distant creatures and objects as small as 2 feet across.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_feather-token", - "fields": { - "name": "Feather Token", - "desc": "This tiny object looks like a feather. Different types of feather tokens exist, each with a different single* use effect. The GM chooses the kind of token or determines it randomly.\r\n\r\n| d100 | Feather Token |\r\n|--------|---------------|\r\n| 01-20 | Anchor |\r\n| 21-35 | Bird |\r\n| 36-50 | Fan |\r\n| 51-65 | Swan boat |\r\n| 66-90 | Tree |\r\n| 91-100 | Whip |\r\n\r\n**_Anchor_**. You can use an action to touch the token to a boat or ship. For the next 24 hours, the vessel can't be moved by any means. Touching the token to the vessel again ends the effect. When the effect ends, the token disappears.\r\n\r\n**_Bird_**. You can use an action to toss the token 5 feet into the air. The token disappears and an enormous, multicolored bird takes its place. The bird has the statistics of a roc, but it obeys your simple commands and can't attack. It can carry up to 500 pounds while flying at its maximum speed (16 miles an hour for a maximum of 144 miles per day, with a one-hour rest for every 3 hours of flying), or 1,000 pounds at half that speed. The bird disappears after flying its maximum distance for a day or if it drops to 0 hit points. You can dismiss the bird as an action.\r\n\r\n**_Fan_**. If you are on a boat or ship, you can use an action to toss the token up to 10 feet in the air. The token disappears, and a giant flapping fan takes its place. The fan floats and creates a wind strong enough to fill the sails of one ship, increasing its speed by 5 miles per hour for 8 hours. You can dismiss the fan as an action.\r\n\r\n**_Swan Boat_**. You can use an action to touch the token to a body of water at least 60 feet in diameter. The token disappears, and a 50-foot-long, 20-foot* wide boat shaped like a swan takes its place. The boat is self-propelled and moves across water at a speed of 6 miles per hour. You can use an action while on the boat to command it to move or to turn up to 90 degrees. The boat can carry up to thirty-two Medium or smaller creatures. A Large creature counts as four Medium creatures, while a Huge creature counts as nine. The boat remains for 24 hours and then disappears. You can dismiss the boat as an action.\r\n\r\n**_Tree_**. You must be outdoors to use this token. You can use an action to touch it to an unoccupied space on the ground. The token disappears, and in its place a nonmagical oak tree springs into existence. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\r\n\r\n**_Whip_**. You can use an action to throw the token to a point within 10 feet of you. The token disappears, and a floating whip takes its place. You can then use a bonus action to make a melee spell attack against a creature within 10 feet of the whip, with an attack bonus of +9. On a hit, the target takes 1d6 + 5 force damage.\r\n\r\nAs a bonus action on your turn, you can direct the whip to fly up to 20 feet and repeat the attack against a creature within 10 feet of it. The whip disappears after 1 hour, when you use an action to dismiss it, or when you are incapacitated or die.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-bronze-griffon", - "fields": { - "name": "Figurine of Wondrous Power (Bronze Griffon)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Bronze Griffon (Rare)_**. This bronze statuette is of a griffon rampant. It can become a griffon for up to 6 hours. Once it has been used, it can't be used again until 5 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-ebony-fly", - "fields": { - "name": "Figurine of Wondrous Power (Ebony Fly)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ebony Fly (Rare)_**. This ebony statuette is carved in the likeness of a horsefly. It can become a giant fly for up to 12 hours and can be ridden as a mount. Once it has been used, it can’t be used again until 2 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-golden-lions", - "fields": { - "name": "Figurine of Wondrous Power (Golden Lions)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Golden Lions (Rare)_**. These gold statuettes of lions are always created in pairs. You can use one figurine or both simultaneously. Each can become a lion for up to 1 hour. Once a lion has been used, it can’t be used again until 7 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-ivory-goats", - "fields": { - "name": "Figurine of Wondrous Power (Ivory Goats)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ivory Goats (Rare_**.These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others. Their properties are as follows:\\n\\n* The _goat of traveling_ can become a Large goat with the same statistics as a riding horse. It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can't be used again until 7 days have passed, when it regains all its charges.\\n* The _goat of travail_ becomes a giant goat for up to 3 hours. Once it has been used, it can't be used again until 30 days have passed.\\n* The _goat of terror_ becomes a giant goat for up to 3 hours. The goat can't attack, but you can remove its horns and use them as weapons. One horn becomes a _+1 lance_, and the other becomes a _+2 longsword_. Removing a horn requires an action, and the weapons disappear and the horns return when the goat reverts to figurine form. In addition, the goat radiates a 30-foot-radius aura of terror while you are riding it. Any creature hostile to you that starts its turn in the aura must succeed on a DC 15 Wisdom saving throw or be frightened of the goat for 1 minute, or until the goat reverts to figurine form. The frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it successfully saves against the effect, a creature is immune to the goat's aura for the next 24 hours. Once the figurine has been used, it can't be used again until 15 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-marble-elephant", - "fields": { - "name": "Figurine of Wondrous Power (Marble Elephant)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Marble Elephant (Rare)_**. This marble statuette is about 4 inches high and long. It can become an elephant for up to 24 hours. Once it has been used, it can’t be used again until 7 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-obsidian-steed", - "fields": { - "name": "Figurine of Wondrous Power (Obsidian Steed)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Obsidian Steed (Very Rare)_**. This polished obsidian horse can become a nightmare for up to 24 hours. The nightmare fights only to defend itself. Once it has been used, it can't be used again until 5 days have passed.\\n\\nIf you have a good alignment, the figurine has a 10 percent chance each time you use it to ignore your orders, including a command to revert to figurine form. If you mount the nightmare while it is ignoring your orders, you and the nightmare are instantly transported to a random location on the plane of Hades, where the nightmare reverts to figurine form.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-onyx-dog", - "fields": { - "name": "Figurine of Wondrous Power (Onyx Dog)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Onyx Dog (Rare)_**. This onyx statuette of a dog can become a mastiff for up to 6 hours. The mastiff has an Intelligence of 8 and can speak Common. It also has darkvision out to a range of 60 feet and can see invisible creatures and objects within that range. Once it has been used, it can’t be used again until 7 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-serpentine-owl", - "fields": { - "name": "Figurine of Wondrous Power (Serpentine Owl)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Serpentine Owl (Rare)_**. This serpentine statuette of an owl can become a giant owl for up to 8 hours. Once it has been used, it can’t be used again until 2 days have passed. The owl can telepathically communicate with you at any range if you and it are on the same plane of existence.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-silver-raven", - "fields": { - "name": "Figurine of Wondrous Power (Silver Raven)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Silver Raven (Uncommon)_**. This silver statuette of a raven can become a raven for up to 12 hours. Once it has been used, it can’t be used again until 2 days have passed. While in raven form, the figurine allows you to cast the animal messenger spell on it at will.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_fishing-tackle", - "fields": { - "name": "Fishing Tackle", - "desc": "This kit includes a wooden rod, silken line, corkwood bobbers, steel hooks, lead sinkers, velvet lures, and narrow netting.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_flail", - "fields": { - "name": "Flail", - "desc": "A flail.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_flail-1", - "fields": { - "name": "Flail (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_flail-2", - "fields": { - "name": "Flail (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_flail-3", - "fields": { - "name": "Flail (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_flame-tongue-greatsword", - "fields": { - "name": "Flame Tongue (Greatsword)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_flame-tongue-longsword", - "fields": { - "name": "Flame Tongue (Longsword)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_flame-tongue-rapier", - "fields": { - "name": "Flame Tongue (Rapier)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_flame-tongue-shortsword", - "fields": { - "name": "Flame Tongue (Shortsword)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_flask-or-tankard", - "fields": { - "name": "Flask or tankard", - "desc": "For drinking. Capacity: 1 pint liquid.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_flour", - "fields": { - "name": "Flour", - "desc": "1lb of flour", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_flute", - "fields": { - "name": "Flute", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_folding-boat", - "fields": { - "name": "Folding Boat", - "desc": "This object appears as a wooden box that measures 12 inches long, 6 inches wide, and 6 inches deep. It weighs 4 pounds and floats. It can be opened to store items inside. This item also has three command words, each requiring you to use an action to speak it.\r\n\r\nOne command word causes the box to unfold into a boat 10 feet long, 4 feet wide, and 2 feet deep. The boat has one pair of oars, an anchor, a mast, and a lateen sail. The boat can hold up to four Medium creatures comfortably.\r\n\r\nThe second command word causes the box to unfold into a ship 24 feet long, 8 feet wide, and 6 feet deep. The ship has a deck, rowing seats, five sets of oars, a steering oar, an anchor, a deck cabin, and a mast with a square sail. The ship can hold fifteen Medium creatures comfortably.\r\n\r\nWhen the box becomes a vessel, its weight becomes that of a normal vessel its size, and anything that was stored in the box remains in the boat.\r\n\r\nThe third command word causes the _folding boat_ to fold back into a box, provided that no creatures are aboard. Any objects in the vessel that can't fit inside the box remain outside the box as it folds. Any objects in the vessel that can fit inside the box do so.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_forgery-kit", - "fields": { - "name": "Forgery kit", - "desc": "This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. \\n\\nProficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_frost-brand-greatsword", - "fields": { - "name": "Frost Brand (Greatsword)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_frost-brand-longsword", - "fields": { - "name": "Frost Brand (Longsword)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_frost-brand-rapier", - "fields": { - "name": "Frost Brand (Rapier)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_frost-brand-shortsword", - "fields": { - "name": "Frost Brand (Shortsword)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_galley", - "fields": { - "name": "Galley", - "desc": "A waterborne vehicle. Speed 4 mph", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_gauntlets-of-ogre-power", - "fields": { - "name": "Gauntlets of Ogre Power", - "desc": "Your Strength score is 19 while you wear these gauntlets. They have no effect on you if your Strength is already 19 or higher.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_gem-of-brightness", - "fields": { - "name": "Gem of Brightness", - "desc": "This prism has 50 charges. While you are holding it, you can use an action to speak one of three command words to cause one of the following effects:\r\n\r\n* The first command word causes the gem to shed bright light in a 30-foot radius and dim light for an additional 30 feet. This effect doesn't expend a charge. It lasts until you use a bonus action to repeat the command word or until you use another function of the gem.\r\n* The second command word expends 1 charge and causes the gem to fire a brilliant beam of light at one creature you can see within 60 feet of you. The creature must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\r\n* The third command word expends 5 charges and causes the gem to flare with blinding light in a 30* foot cone originating from it. Each creature in the cone must make a saving throw as if struck by the beam created with the second command word.\r\n\r\nWhen all of the gem's charges are expended, the gem becomes a nonmagical jewel worth 50 gp.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_gem-of-seeing", - "fields": { - "name": "Gem of Seeing", - "desc": "This gem has 3 charges. As an action, you can speak the gem's command word and expend 1 charge. For the next 10 minutes, you have truesight out to 120 feet when you peer through the gem.\r\n\r\nThe gem regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_giant-slayer-battleaxe", - "fields": { - "name": "Giant Slayer (Battleaxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_giant-slayer-greataxe", - "fields": { - "name": "Giant Slayer (Greataxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_giant-slayer-greatsword", - "fields": { - "name": "Giant Slayer (Greatsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_giant-slayer-handaxe", - "fields": { - "name": "Giant Slayer (Handaxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_giant-slayer-longsword", - "fields": { - "name": "Giant Slayer (Longsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_giant-slayer-rapier", - "fields": { - "name": "Giant Slayer (Rapier)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_giant-slayer-shortsword", - "fields": { - "name": "Giant Slayer (Shortsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ginger", - "fields": { - "name": "Ginger", - "desc": "1lb of Ginger.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_glaive", - "fields": { - "name": "Glaive", - "desc": "A glaive.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_glaive-1", - "fields": { - "name": "Glaive (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_glaive-2", - "fields": { - "name": "Glaive (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_glaive-3", - "fields": { - "name": "Glaive (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_glamoured-studded-leather", - "fields": { - "name": "Glamoured Studded Leather", - "desc": "While wearing this armor, you gain a +1 bonus to AC. You can also use a bonus action to speak the armor's command word and cause the armor to assume the appearance of a normal set of clothing or some other kind of armor. You decide what it looks like, including color, style, and accessories, but the armor retains its normal bulk and weight. The illusory appearance lasts until you use this property again or remove the armor.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_glassblowers-tools", - "fields": { - "name": "Glassblower's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_gloves-of-missile-snaring", - "fields": { - "name": "Gloves of Missile Snaring", - "desc": "These gloves seem to almost meld into your hands when you don them. When a ranged weapon attack hits you while you're wearing them, you can use your reaction to reduce the damage by 1d10 + your Dexterity modifier, provided that you have a free hand. If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in that hand.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_gloves-of-swimming-and-climbing", - "fields": { - "name": "Gloves of Swimming and Climbing", - "desc": "While wearing these gloves, climbing and swimming don't cost you extra movement, and you gain a +5 bonus to Strength (Athletics) checks made to climb or swim.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_goat", - "fields": { - "name": "Goat", - "desc": "One goat.", - "document": "srd", - "size": "medium", - "weight": "75.000", - "armor_class": 10, - "hit_points": 4, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_goggles-of-night", - "fields": { - "name": "Goggles of Night", - "desc": "While wearing these dark lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the goggles increases its range by 60 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_gold", - "fields": { - "name": "Gold", - "desc": "1lb of gold.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_gold-piece", - "fields": { - "name": "Gold Piece", - "desc": "With one gold piece, a character can buy a bedroll, 50 feet of good rope, or a goat. A skilled (but not exceptional) artisan can earn one gold piece a day. The gold piece is the standard unit of measure for wealth, even if the coin itself is not commonly used. When merchants discuss deals that involve goods or services worth hundreds or thousands of gold pieces, the transactions don't usually involve the exchange of individual coins. Rather, the gold piece is a standard measure of value, and the actual exchange is in gold bars, letters of credit, or valuable goods.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_grappling-hook", - "fields": { - "name": "Grappling hook", - "desc": "A grappling hook.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_greataxe", - "fields": { - "name": "Greataxe", - "desc": "A greataxe.", - "document": "srd", - "size": "tiny", - "weight": "7.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_greataxe-1", - "fields": { - "name": "Greataxe (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_greataxe-2", - "fields": { - "name": "Greataxe (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_greataxe-3", - "fields": { - "name": "Greataxe (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_greatclub", - "fields": { - "name": "Greatclub", - "desc": "A greatclub.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_greatclub-1", - "fields": { - "name": "Greatclub (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_greatclub-2", - "fields": { - "name": "Greatclub (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_greatclub-3", - "fields": { - "name": "Greatclub (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_greatsword", - "fields": { - "name": "Greatsword", - "desc": "A great sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_greatsword-1", - "fields": { - "name": "Greatsword (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_greatsword-2", - "fields": { - "name": "Greatsword (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_greatsword-3", - "fields": { - "name": "Greatsword (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_halberd", - "fields": { - "name": "Halberd", - "desc": "A halberd.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_halberd-1", - "fields": { - "name": "Halberd (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_halberd-2", - "fields": { - "name": "Halberd (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_halberd-3", - "fields": { - "name": "Halberd (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_half-plate", - "fields": { - "name": "Half plate", - "desc": "Half plate consists of shaped metal plates that cover most of the wearer's body. It does not include leg protection beyond simple greaves that are attached with leather straps.", - "document": "srd", - "size": "tiny", - "weight": "40.000", - "armor_class": 0, - "hit_points": 0, - "cost": "750.00", - "weapon": null, - "armor": "half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_hammer", - "fields": { - "name": "Hammer", - "desc": "A hammer.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_hammer-of-thunderbolts", - "fields": { - "name": "Hammer of Thunderbolts", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\n**_Giant's Bane (Requires Attunement)_**. You must be wearing a _belt of giant strength_ (any variety) and _gauntlets of ogre power_ to attune to this weapon. The attunement ends if you take off either of those items. While you are attuned to this weapon and holding it, your Strength score increases by 4 and can exceed 20, but not 30. When you roll a 20 on an attack roll made with this weapon against a giant, the giant must succeed on a DC 17 Constitution saving throw or die.\n\nThe hammer also has 5 charges. While attuned to it, you can expend 1 charge and make a ranged weapon attack with the hammer, hurling it as if it had the thrown property with a normal range of 20 feet and a long range of 60 feet. If the attack hits, the hammer unleashes a thunderclap audible out to 300 feet. The target and every creature within 30 feet of it must succeed on a DC 17 Constitution saving throw or be stunned until the end of your next turn. The hammer regains 1d4 + 1 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_hammer-sledge", - "fields": { - "name": "Hammer, sledge", - "desc": "A sledgehammer", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_handaxe", - "fields": { - "name": "Handaxe", - "desc": "A handaxe.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_handaxe-1", - "fields": { - "name": "Handaxe (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_handaxe-2", - "fields": { - "name": "Handaxe (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_handaxe-3", - "fields": { - "name": "Handaxe (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_handy-haversack", - "fields": { - "name": "Handy Haversack", - "desc": "This backpack has a central pouch and two side pouches, each of which is an extradimensional space. Each side pouch can hold up to 20 pounds of material, not exceeding a volume of 2 cubic feet. The large central pouch can hold up to 8 cubic feet or 80 pounds of material. The backpack always weighs 5 pounds, regardless of its contents.\r\n\r\nPlacing an object in the haversack follows the normal rules for interacting with objects. Retrieving an item from the haversack requires you to use an action. When you reach into the haversack for a specific item, the item is always magically on top.\r\n\r\nThe haversack has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the haversack ruptures and is destroyed. If the haversack is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If the haversack is turned inside out, its contents spill forth, unharmed, and the haversack must be put right before it can be used again. If a breathing creature is placed within the haversack, the creature can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing the haversack inside an extradimensional space created by a _bag of holding_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_hat-of-disguise", - "fields": { - "name": "Hat of Disguise", - "desc": "While wearing this hat, you can use an action to cast the _disguise self_ spell from it at will. The spell ends if the hat is removed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_headband-of-intellect", - "fields": { - "name": "Headband of Intellect", - "desc": "Your Intelligence score is 19 while you wear this headband. It has no effect on you if your Intelligence is already 19 or higher.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_healers-kit", - "fields": { - "name": "Healer's Kit", - "desc": "This kit is a leather pouch containing bandages, salves, and splints. The kit has ten uses. As an action, you can expend one use of the kit to stabilize a creature that has 0 hit points, without needing to make a Wisdom (Medicine) check.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_helm-of-brilliance", - "fields": { - "name": "Helm of Brilliance", - "desc": "This dazzling helm is set with 1d10 diamonds, 2d10 rubies, 3d10 fire opals, and 4d10 opals. Any gem pried from the helm crumbles to dust. When all the gems are removed or destroyed, the helm loses its magic.\r\n\r\nYou gain the following benefits while wearing it:\r\n\r\n* You can use an action to cast one of the following spells (save DC 18), using one of the helm's gems of the specified type as a component: _daylight_ (opal), _fireball_ (fire opal), _prismatic spray_ (diamond), or _wall of fire_ (ruby). The gem is destroyed when the spell is cast and disappears from the helm.\r\n* As long as it has at least one diamond, the helm emits dim light in a 30-foot radius when at least one undead is within that area. Any undead that starts its turn in that area takes 1d6 radiant damage.\r\n* As long as the helm has at least one ruby, you have resistance to fire damage.\r\n* As long as the helm has at least one fire opal, you can use an action and speak a command word to cause one weapon you are holding to burst into flames. The flames emit bright light in a 10-foot radius and dim light for an additional 10 feet. The flames are harmless to you and the weapon. When you hit with an attack using the blazing weapon, the target takes an extra 1d6 fire damage. The flames last until you use a bonus action to speak the command word again or until you drop or stow the weapon.\r\n\r\nRoll a d20 if you are wearing the helm and take fire damage as a result of failing a saving throw against a spell. On a roll of 1, the helm emits beams of light from its remaining gems. Each creature within 60 feet of the helm other than you must succeed on a DC 17 Dexterity saving throw or be struck by a beam, taking radiant damage equal to the number of gems in the helm. The helm and its gems are then destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_helm-of-comprehending-languages", - "fields": { - "name": "Helm of Comprehending Languages", - "desc": "While wearing this helm, you can use an action to cast the _comprehend languages_ spell from it at will.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_helm-of-telepathy", - "fields": { - "name": "Helm of Telepathy", - "desc": "While wearing this helm, you can use an action to cast the _detect thoughts_ spell (save DC 13) from it. As long as you maintain concentration on the spell, you can use a bonus action to send a telepathic message to a creature you are focused on. It can reply-using a bonus action to do so-while your focus on it continues.\r\n\r\nWhile focusing on a creature with _detect thoughts_, you can use an action to cast the _suggestion_ spell (save DC 13) from the helm on that creature. Once used, the _suggestion_ property can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_helm-of-teleportation", - "fields": { - "name": "Helm of Teleportation", - "desc": "This helm has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _teleport_ spell from it. The helm regains 1d3\r\n\r\nexpended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_herbalism-kit", - "fields": { - "name": "Herbalism Kit", - "desc": "This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create\r\nantitoxin and potions of healing.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_hide-armor", - "fields": { - "name": "Hide Armor", - "desc": "This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.", - "document": "srd", - "size": "tiny", - "weight": "12.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_holy-avenger-greatsword", - "fields": { - "name": "Holy Avenger (Greatsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_holy-avenger-longsword", - "fields": { - "name": "Holy Avenger (Longsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_holy-avenger-rapier", - "fields": { - "name": "Holy Avenger (Rapier)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_holy-avenger-shortsword", - "fields": { - "name": "Holy Avenger (Shortsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_holy-water-flask", - "fields": { - "name": "Holy Water (flask)", - "desc": "As an action, you can splash the contents of this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact.In either case, make a ranged attack against a target creature, treating the holy water as an improvised weapon. If the target is a fiend or undead, it takes 2d6 radiant damage.\\n\\nA cleric or paladin may create holy water by performing a special ritual. The ritual takes 1 hour to perform, uses 25 gp worth of powdered silver, and requires the caster to expend a 1st-­‐‑level spell slot.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_horn", - "fields": { - "name": "Horn", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "3.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_horn-of-blasting", - "fields": { - "name": "Horn of Blasting", - "desc": "You can use an action to speak the horn's command word and then blow the horn, which emits a thunderous blast in a 30-foot cone that is audible 600 feet away. Each creature in the cone must make a DC 15 Constitution saving throw. On a failed save, a creature takes 5d6 thunder damage and is deafened for 1 minute. On a successful save, a creature takes half as much damage and isn't deafened. Creatures and objects made of glass or crystal have disadvantage on the saving throw and take 10d6 thunder damage instead of 5d6.\r\n\r\nEach use of the horn's magic has a 20 percent chance of causing the horn to explode. The explosion deals 10d6 fire damage to the blower and destroys the horn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_horn-of-valhalla-brass", - "fields": { - "name": "Horn of Valhalla (Brass)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_horn-of-valhalla-bronze", - "fields": { - "name": "Horn of Valhalla (Bronze)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_horn-of-valhalla-iron", - "fields": { - "name": "Horn of Valhalla (Iron)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_horn-of-valhalla-silver", - "fields": { - "name": "Horn of Valhalla (silver)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_horseshoes-of-a-zephyr", - "fields": { - "name": "Horseshoes of a Zephyr", - "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they allow the creature to move normally while floating 4 inches above the ground. This effect means the creature can cross or stand above nonsolid or unstable surfaces, such as water or lava. The creature leaves no tracks and ignores difficult terrain. In addition, the creature can move at normal speed for up to 12 hours a day without suffering exhaustion from a forced march.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_horseshoes-of-speed", - "fields": { - "name": "Horseshoes of Speed", - "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they increase the creature's walking speed by 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_hourglass", - "fields": { - "name": "Hourglass", - "desc": "An hourglass.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_hunting-trap", - "fields": { - "name": "Hunting Trap", - "desc": "When you use your action to set it, this trap forms a saw-­‐‑toothed steel ring that snaps shut when a creature steps on a pressure plate in the center. The trap is affixed by a heavy chain to an immobile object, such as a tree or a spike driven into the ground. A creature that steps on the plate must succeed on a DC 13 Dexterity saving throw or take 1d4 piercing damage and stop moving. Thereafter, until the creature breaks free of the trap, its movement is limited by the length of the chain (typically 3 feet long). A creature can use its action to make a DC 13 Strength check, freeing itself or another creature within its reach on a success. Each failed check deals 1 piercing damage to the trapped creature.", - "document": "srd", - "size": "tiny", - "weight": "25.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_immovable-rod", - "fields": { - "name": "Immovable Rod", - "desc": "This flat iron rod has a button on one end. You can use an action to press the button, which causes the rod to become magically fixed in place. Until you or another creature uses an action to push the button again, the rod doesn't move, even if it is defying gravity. The rod can hold up to 8,000 pounds of weight. More weight causes the rod to deactivate and fall. A creature can use an action to make a DC 30 Strength check, moving the fixed rod up to 10 feet on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ink-1-ounce-bottle", - "fields": { - "name": "Ink (1 ounce bottle)", - "desc": "A bottle of ink.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ink-pen", - "fields": { - "name": "Ink pen", - "desc": "A pen for writing with ink.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_instant-fortress", - "fields": { - "name": "Instant Fortress", - "desc": "You can use an action to place this 1-inch metal cube on the ground and speak its command word. The cube rapidly grows into a fortress that remains until you use an action to speak the command word that dismisses it, which works only if the fortress is empty.\r\n\r\nThe fortress is a square tower, 20 feet on a side and 30 feet high, with arrow slits on all sides and a battlement atop it. Its interior is divided into two floors, with a ladder running along one wall to connect them. The ladder ends at a trapdoor leading to the roof. When activated, the tower has a small door on the side facing you. The door opens only at your command, which you can speak as a bonus action. It is immune to the _knock_ spell and similar magic, such as that of a _chime of opening_.\r\n\r\nEach creature in the area where the fortress appears must make a DC 15 Dexterity saving throw, taking 10d10 bludgeoning damage on a failed save, or half as much damage on a successful one. In either case, the creature is pushed to an unoccupied space outside but next to the fortress. Objects in the area that aren't being worn or carried take this damage and are pushed automatically.\r\n\r\nThe tower is made of adamantine, and its magic prevents it from being tipped over. The roof, the door, and the walls each have 100 hit points,\r\n\r\nimmunity to damage from nonmagical weapons excluding siege weapons, and resistance to all other damage. Only a _wish_ spell can repair the fortress (this use of the spell counts as replicating a spell of 8th level or lower). Each casting of _wish_ causes the roof, the door, or one wall to regain 50 hit points.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ioun-stone-absorption", - "fields": { - "name": "Ioun Stone (Absorption)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Fortitude (Very Rare)_**. Your Constitution score increases by 2, to a maximum of 20, while this pink rhomboid orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ioun-stone-agility", - "fields": { - "name": "Ioun Stone (Agility)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Agility (Very Rare)._** Your Dexterity score increases by 2, to a maximum of 20, while this deep red sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ioun-stone-awareness", - "fields": { - "name": "Ioun Stone (Awareness)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Awareness (Rare)._** You can't be surprised while this dark blue rhomboid orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ioun-stone-greater-absorption", - "fields": { - "name": "Ioun Stone (Greater Absorption)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Greater Absorption (Legendary)._** While this marbled lavender and green ellipsoid orbits your head, you can use your reaction to cancel a spell of 8th level or lower cast by a creature you can see and targeting only you.\\n\\nOnce the stone has canceled 50 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ioun-stone-insight", - "fields": { - "name": "Ioun Stone (Insight)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Insight (Very Rare)._** Your Wisdom score increases by 2, to a maximum of 20, while this incandescent blue sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ioun-stone-intellect", - "fields": { - "name": "Ioun Stone (Intellect)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Intellect (Very Rare)._** Your Intelligence score increases by 2, to a maximum of 20, while this marbled scarlet and blue sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ioun-stone-leadership", - "fields": { - "name": "Ioun Stone (Leadership)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Leadership (Very Rare)._** Your Charisma score increases by 2, to a maximum of 20, while this marbled pink and green sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ioun-stone-mastery", - "fields": { - "name": "Ioun Stone (Mastery)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Mastery (Legendary)._** Your proficiency bonus increases by 1 while this pale green prism orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ioun-stone-protection", - "fields": { - "name": "Ioun Stone (Protection)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Protection (Rare)_**. You gain a +1 bonus to AC while this dusty rose prism orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ioun-stone-regeneration", - "fields": { - "name": "Ioun Stone (Regeneration)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Regeneration (Legendary)_**. You regain 15 hit points at the end of each hour this pearly white spindle orbits your head, provided that you have at least 1 hit point.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ioun-stone-reserve", - "fields": { - "name": "Ioun Stone (Reserve)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Reserve (Rare)._** This vibrant purple prism stores spells cast into it, holding them until you use them. The stone can store up to 3 levels worth of spells at a time. When found, it contains 1d4 - 1 levels of stored spells chosen by the GM.\\n\\nAny creature can cast a spell of 1st through 3rd level into the stone by touching it as the spell is cast. The spell has no effect, other than to be stored in the stone. If the stone can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\\n\\nWhile this stone orbits your head, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the stone is no longer stored in it, freeing up space.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ioun-stone-strength", - "fields": { - "name": "Ioun Stone (Strength)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Strength (Very Rare)._** Your Strength score increases by 2, to a maximum of 20, while this pale blue rhomboid orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ioun-stone-sustenance", - "fields": { - "name": "Ioun Stone (Sustenance)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Sustenance (Rare)._** You don't need to eat or drink while this clear spindle orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_iron", - "fields": { - "name": "Iron", - "desc": "1lb of iron.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_iron-bands-of-binding", - "fields": { - "name": "Iron Bands of Binding", - "desc": "This rusty iron sphere measures 3 inches in diameter and weighs 1 pound. You can use an action to speak the command word and throw the sphere at a Huge or smaller creature you can see within 60 feet of you. As the sphere moves through the air, it opens into a tangle of metal bands.\r\n\r\nMake a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the target is restrained until you take a bonus action to speak the command word again to release it. Doing so, or missing with the attack, causes the bands to contract and become a sphere once more.\r\n\r\nA creature, including the one restrained, can use an action to make a DC 20 Strength check to break the iron bands. On a success, the item is destroyed, and the restrained creature is freed. If the check fails, any further attempts made by that creature automatically fail until 24 hours have elapsed.\r\n\r\nOnce the bands are used, they can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_iron-flask", - "fields": { - "name": "Iron Flask", - "desc": "This iron bottle has a brass stopper. You can use an action to speak the flask's command word, targeting a creature that you can see within 60 feet of you. If the target is native to a plane of existence other than the one you're on, the target must succeed on a DC 17 Wisdom saving throw or be trapped in the flask. If the target has been trapped by the flask before, it has advantage on the saving throw. Once trapped, a creature remains in the flask until released. The flask can hold only one creature at a time. A creature trapped in the flask doesn't need to breathe, eat, or drink and doesn't age.\r\n\r\nYou can use an action to remove the flask's stopper and release the creature the flask contains. The creature is friendly to you and your companions for 1 hour and obeys your commands for that duration. If you give no commands or give it a command that is likely to result in its death, it defends itself but otherwise takes no actions. At the end of the duration, the creature acts in accordance with its normal disposition and alignment.\r\n\r\nAn _identify_ spell reveals that a creature is inside the flask, but the only way to determine the type of creature is to open the flask. A newly discovered bottle might already contain a creature chosen by the GM or determined randomly.\r\n\r\n| d100 | Contents |\r\n|-------|-------------------|\r\n| 1-50 | Empty |\r\n| 51-54 | Demon (type 1) |\r\n| 55-58 | Demon (type 2) |\r\n| 59-62 | Demon (type 3) |\r\n| 63-64 | Demon (type 4) |\r\n| 65 | Demon (type 5) |\r\n| 66 | Demon (type 6) |\r\n| 67 | Deva |\r\n| 68-69 | Devil (greater) |\r\n| 70-73 | Devil (lesser) |\r\n| 74-75 | Djinni |\r\n| 76-77 | Efreeti |\r\n| 78-83 | Elemental (any) |\r\n| 84-86 | Invisible stalker |\r\n| 87-90 | Night hag |\r\n| 91 | Planetar |\r\n| 92-95 | Salamander |\r\n| 96 | Solar |\r\n| 97-99 | Succubus/incubus |\r\n| 100 | Xorn |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_javelin", - "fields": { - "name": "Javelin", - "desc": "A javelin", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_javelin-1", - "fields": { - "name": "Javelin (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_javelin-2", - "fields": { - "name": "Javelin (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_javelin-3", - "fields": { - "name": "Javelin (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_javelin-of-lightning", - "fields": { - "name": "Javelin of Lightning", - "desc": "This javelin is a magic weapon. When you hurl it and speak its command word, it transforms into a bolt of lightning, forming a line 5 feet wide that extends out from you to a target within 120 feet. Each creature in the line excluding you and the target must make a DC 13 Dexterity saving throw, taking 4d6 lightning damage on a failed save, and half as much damage on a successful one. The lightning bolt turns back into a javelin when it reaches the target. Make a ranged weapon attack against the target. On a hit, the target takes damage from the javelin plus 4d6 lightning damage.\n\nThe javelin's property can't be used again until the next dawn. In the meantime, the javelin can still be used as a magic weapon.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_jewelers-tools", - "fields": { - "name": "Jeweler's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_jug-or-pitcher", - "fields": { - "name": "Jug or pitcher", - "desc": "For drinking a lot. Capacity: 1 gallon liquid.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_keelboat", - "fields": { - "name": "Keelboat", - "desc": "Waterborne vehicle. Speed is 1mph.", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "3000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ladder-10-foot", - "fields": { - "name": "Ladder (10-foot)", - "desc": "A 10 foot ladder.", - "document": "srd", - "size": "tiny", - "weight": "25.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_lamp", - "fields": { - "name": "Lamp", - "desc": "A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_lamp-oil-flask", - "fields": { - "name": "Lamp oil (flask)", - "desc": "Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon. On a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-­foot‑square area, provided that the surface is level. If lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_lance", - "fields": { - "name": "Lance", - "desc": "A lance.\r\n\r\nYou have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_lance-1", - "fields": { - "name": "Lance (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_lance-2", - "fields": { - "name": "Lance (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_lance-3", - "fields": { - "name": "Lance (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_lantern-bullseye", - "fields": { - "name": "Lantern, Bullseye", - "desc": "A bullseye lantern casts bright light in a 60-­‐‑foot cone and dim light for an additional 60 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_lantern-hooded", - "fields": { - "name": "Lantern, Hooded", - "desc": "A hooded lantern casts bright light in a 30-­‐‑foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil. As an action, you can lower the hood, reducing the light to dim light in a 5-­‐‑foot radius.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_lantern-of-revealing", - "fields": { - "name": "Lantern of Revealing", - "desc": "While lit, this hooded lantern burns for 6 hours on 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the lantern's bright light. You can use an action to lower the hood, reducing the light to dim light in a 5* foot radius.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_leather-armor", - "fields": { - "name": "Leather Armor", - "desc": "The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": "leather", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_leatherworkers-tools", - "fields": { - "name": "Leatherworker's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_light-hammer", - "fields": { - "name": "Light hammer", - "desc": "A light hammer.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_light-hammer-1", - "fields": { - "name": "Light-Hammer (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_light-hammer-2", - "fields": { - "name": "Light-Hammer (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_light-hammer-3", - "fields": { - "name": "Light-Hammer (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_linen", - "fields": { - "name": "Linen", - "desc": "1 sq. yd. of linen.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_lock", - "fields": { - "name": "Lock", - "desc": "A key is provided with the lock. Without the key, a creature proficient with thieves’ tools can pick this lock with a successful DC 15 Dexterity check. Your GM may decide that better locks are available for higher prices.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_longbow", - "fields": { - "name": "Longbow", - "desc": "A longbow.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_longbow-1", - "fields": { - "name": "Longbow (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_longbow-2", - "fields": { - "name": "Longbow (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_longbow-3", - "fields": { - "name": "Longbow (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_longship", - "fields": { - "name": "Longship", - "desc": "Waterborne vehicle. Speed 3mph.", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_longsword", - "fields": { - "name": "Longsword", - "desc": "A longsword", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_longsword-1", - "fields": { - "name": "Longsword (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_longsword-2", - "fields": { - "name": "Longsword (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_longsword-3", - "fields": { - "name": "Longsword (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_luck-blade-greatsword", - "fields": { - "name": "Luck Blade (Greatsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_luck-blade-longsword", - "fields": { - "name": "Luck Blade (Longsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_luck-blade-rapier", - "fields": { - "name": "Luck Blade (Rapier)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_luck-blade-shortsword", - "fields": { - "name": "Luck Blade (Shortsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_lute", - "fields": { - "name": "Lute", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "35.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_lyre", - "fields": { - "name": "Lyre", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mace", - "fields": { - "name": "Mace", - "desc": "A mace.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mace-1", - "fields": { - "name": "Mace (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mace-2", - "fields": { - "name": "Mace (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mace-3", - "fields": { - "name": "Mace (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mace-of-disruption", - "fields": { - "name": "Mace of Disruption", - "desc": "When you hit a fiend or an undead with this magic weapon, that creature takes an extra 2d6 radiant damage. If the target has 25 hit points or fewer after taking this damage, it must succeed on a DC 15 Wisdom saving throw or be destroyed. On a successful save, the creature becomes frightened of you until the end of your next turn.\n\nWhile you hold this weapon, it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mace-of-smiting", - "fields": { - "name": "Mace of Smiting", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the mace to attack a construct.\n\nWhen you roll a 20 on an attack roll made with this weapon, the target takes an extra 2d6 bludgeoning damage, or 4d6 bludgeoning damage if it's a construct. If a construct has 25 hit points or fewer after taking this damage, it is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mace-of-terror", - "fields": { - "name": "Mace of Terror", - "desc": "This magic weapon has 3 charges. While holding it, you can use an action and expend 1 charge to release a wave of terror. Each creature of your choice in a 30-foot radius extending from you must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.\n\nThe mace regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_magnifying-glass", - "fields": { - "name": "Magnifying Glass", - "desc": "This lens allows a closer look at small objects. It is also useful as a substitute for flint and steel when starting fires. Lighting a fire with a magnifying glass requires light as bright as sunlight to focus, tinder to ignite, and about 5 minutes for the fire to ignite. A magnifying glass grants advantage on any ability check made to appraise or inspect an item that is small or highly detailed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "100.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_malice", - "fields": { - "name": "Malice", - "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 1 hour. The poisoned creature is blinded.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "250.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_manacles", - "fields": { - "name": "Manacles", - "desc": "These metal restraints can bind a Small or Medium creature. Escaping the manacles requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of manacles comes with one key. Without the key, a creature proficient with thieves’ tools can pick the manacles’ lock with a successful DC 15 Dexterity check. Manacles have 15 hit points.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 15, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mantle-of-spell-resistance", - "fields": { - "name": "Mantle of Spell Resistance", - "desc": "You have advantage on saving throws against spells while you wear this cloak.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_manual-of-bodily-health", - "fields": { - "name": "Manual of Bodily Health", - "desc": "This book contains health and diet tips, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Constitution score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_manual-of-gainful-exercise", - "fields": { - "name": "Manual of Gainful Exercise", - "desc": "This book describes fitness exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Strength score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_manual-of-golems", - "fields": { - "name": "Manual of Golems", - "desc": "This tome contains information and incantations necessary to make a particular type of golem. The GM chooses the type or determines it randomly. To decipher and use the manual, you must be a spellcaster with at least two 5th-level spell slots. A creature that can't use a _manual of golems_ and attempts to read it takes 6d6 psychic damage.\r\n\r\n| d20 | Golem | Time | Cost |\r\n|-------|-------|----------|------------|\r\n| 1-5 | Clay | 30 days | 65,000 gp |\r\n| 6-17 | Flesh | 60 days | 50,000 gp |\r\n| 18 | Iron | 120 days | 100,000 gp |\r\n| 19-20 | Stone | 90 days | 80,000 gp |\r\n\r\nTo create a golem, you must spend the time shown on the table, working without interruption with the manual at hand and resting no more than 8 hours per day. You must also pay the specified cost to purchase supplies.\r\n\r\nOnce you finish creating the golem, the book is consumed in eldritch flames. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_manual-of-quickness-of-action", - "fields": { - "name": "Manual of Quickness of Action", - "desc": "This book contains coordination and balance exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Dexterity score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_marvelous-pigments", - "fields": { - "name": "Marvelous Pigments", - "desc": "Typically found in 1d4 pots inside a fine wooden box with a brush (weighing 1 pound in total), these pigments allow you to create three-dimensional objects by painting them in two dimensions. The paint flows from the brush to form the desired object as you concentrate on its image.\r\n\r\nEach pot of paint is sufficient to cover 1,000 square feet of a surface, which lets you create inanimate objects or terrain features-such as a door, a pit, flowers, trees, cells, rooms, or weapons- that are up to 10,000 cubic feet. It takes 10 minutes to cover 100 square feet.\r\n\r\nWhen you complete the painting, the object or terrain feature depicted becomes a real, nonmagical object. Thus, painting a door on a wall creates an actual door that can be opened to whatever is beyond. Painting a pit on a floor creates a real pit, and its depth counts against the total area of objects you create.\r\n\r\nNothing created by the pigments can have a value greater than 25 gp. If you paint an object of greater value (such as a diamond or a pile of gold), the object looks authentic, but close inspection reveals it is made from paste, bone, or some other worthless material.\r\n\r\nIf you paint a form of energy such as fire or lightning, the energy appears but dissipates as soon as you complete the painting, doing no harm to anything.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_masons-tools", - "fields": { - "name": "Mason's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_maul", - "fields": { - "name": "Maul", - "desc": "A maul.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_maul-1", - "fields": { - "name": "Maul (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_maul-2", - "fields": { - "name": "Maul (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_maul-3", - "fields": { - "name": "Maul (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_medallion-of-thoughts", - "fields": { - "name": "Medallion of Thoughts", - "desc": "The medallion has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _detect thoughts_ spell (save DC 13) from it. The medallion regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mess-kit", - "fields": { - "name": "Mess Kit", - "desc": "This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_midnight-tears", - "fields": { - "name": "Midnight tears", - "desc": "A creature that ingests this poison suffers no effect until the stroke of midnight. If the poison has not been neutralized before then, the creature must succeed on a DC 17 Constitution saving throw, taking 31 (9d6) poison damage on a failed save, or half as much damage on a successful one.\\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1500.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mirror-of-life-trapping", - "fields": { - "name": "Mirror of Life Trapping", - "desc": "When this 4-foot-tall mirror is viewed indirectly, its surface shows faint images of creatures. The mirror weighs 50 pounds, and it has AC 11, 10 hit points, and vulnerability to bludgeoning damage. It shatters and is destroyed when reduced to 0 hit points.\r\n\r\nIf the mirror is hanging on a vertical surface and you are within 5 feet of it, you can use an action to speak its command word and activate it. It remains activated until you use an action to speak the command word again.\r\n\r\nAny creature other than you that sees its reflection in the activated mirror while within 30 feet of it must succeed on a DC 15 Charisma saving throw or be trapped, along with anything it is wearing or carrying, in one of the mirror's twelve extradimensional cells. This saving throw is made with advantage if the creature knows the mirror's nature, and constructs succeed on the saving throw automatically.\r\n\r\nAn extradimensional cell is an infinite expanse filled with thick fog that reduces visibility to 10 feet. Creatures trapped in the mirror's cells don't age, and they don't need to eat, drink, or sleep. A creature trapped within a cell can escape using magic that permits planar travel. Otherwise, the creature is confined to the cell until freed.\r\n\r\nIf the mirror traps a creature but its twelve extradimensional cells are already occupied, the mirror frees one trapped creature at random to accommodate the new prisoner. A freed creature appears in an unoccupied space within sight of the mirror but facing away from it. If the mirror is shattered, all creatures it contains are freed and appear in unoccupied spaces near it.\r\n\r\nWhile within 5 feet of the mirror, you can use an action to speak the name of one creature trapped in it or call out a particular cell by number. The creature named or contained in the named cell appears as an image on the mirror's surface. You and the creature can then communicate normally.\r\n\r\nIn a similar way, you can use an action to speak a second command word and free one creature trapped in the mirror. The freed creature appears, along with its possessions, in the unoccupied space nearest to the mirror and facing away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mirror-steel", - "fields": { - "name": "Mirror, steel", - "desc": "A mirror.", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mithral-armor-breastplate", - "fields": { - "name": "Mithral Armor (Breastplate)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mithral-armor-chain-mail", - "fields": { - "name": "Mithral Armor (Chain-Mail)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mithral-armor-chain-shirt", - "fields": { - "name": "Mithral Armor (Chain-Shirt)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mithral-armor-half-plate", - "fields": { - "name": "Mithral Armor (Half-Plate)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "half-plate", - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mithral-armor-hide", - "fields": { - "name": "Mithral Armor (Hide)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mithral-armor-plate", - "fields": { - "name": "Mithral Armor (Plate)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mithral-armor-ring-mail", - "fields": { - "name": "Mithral Armor (Ring-Mail)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mithral-armor-scale-mail", - "fields": { - "name": "Mithral Armor (Scale-Mail)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_mithral-armor-splint", - "fields": { - "name": "Mithral Armor (Splint)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_morningstar", - "fields": { - "name": "Morningstar", - "desc": "A morningstar", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_morningstar-1", - "fields": { - "name": "Morningstar (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_morningstar-2", - "fields": { - "name": "Morningstar (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_morningstar-3", - "fields": { - "name": "Morningstar (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_navigators-tools", - "fields": { - "name": "Navigator's tools", - "desc": "This set of instruments is used for navigation at sea. Proficiency with navigator's tools lets you chart a ship's course and follow navigation charts. In addition, these tools allow you to add your proficiency bonus to any ability check you make to avoid getting lost at sea.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_necklace-of-adaptation", - "fields": { - "name": "Necklace of Adaptation", - "desc": "While wearing this necklace, you can breathe normally in any environment, and you have advantage on saving throws made against harmful gases and vapors (such as _cloudkill_ and _stinking cloud_ effects, inhaled poisons, and the breath weapons of some dragons).", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_necklace-of-fireballs", - "fields": { - "name": "Necklace of Fireballs", - "desc": "This necklace has 1d6 + 3 beads hanging from it. You can use an action to detach a bead and throw it up to 60 feet away. When it reaches the end of its trajectory, the bead detonates as a 3rd-level _fireball_ spell (save DC 15).\r\n\r\nYou can hurl multiple beads, or even the whole necklace, as one action. When you do so, increase the level of the _fireball_ by 1 for each bead beyond the first.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_necklace-of-prayer-beads", - "fields": { - "name": "Necklace of Prayer Beads", - "desc": "This necklace has 1d4 + 2 magic beads made from aquamarine, black pearl, or topaz. It also has many nonmagical beads made from stones such as amber, bloodstone, citrine, coral, jade, pearl, or quartz. If a magic bead is removed from the necklace, that bead loses its magic.\r\n\r\nSix types of magic beads exist. The GM decides the type of each bead on the necklace or determines it randomly. A necklace can have more than one bead of the same type. To use one, you must be wearing the necklace. Each bead contains a spell that you can cast from it as a bonus action (using your spell save DC if a save is necessary). Once a magic bead's spell is cast, that bead can't be used again until the next dawn.\r\n\r\n| d20 | Bead of... | Spell |\r\n|-------|--------------|-----------------------------------------------|\r\n| 1-6 | Blessing | Bless |\r\n| 7-12 | Curing | Cure wounds (2nd level) or lesser restoration |\r\n| 13-16 | Favor | Greater restoration |\r\n| 17-18 | Smiting | Branding smite |\r\n| 19 | Summons | Planar ally |\r\n| 20 | Wind walking | Wind walk |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_net", - "fields": { - "name": "Net", - "desc": "A net.\r\n\r\nA Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net.\r\n\r\nWhen you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_net-1", - "fields": { - "name": "Net (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_net-2", - "fields": { - "name": "Net (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_net-3", - "fields": { - "name": "Net (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_nine-lives-stealer-greatsword", - "fields": { - "name": "Nine Lives Stealer (Greatsword)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_nine-lives-stealer-longsword", - "fields": { - "name": "Nine Lives Stealer (Longsword)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_nine-lives-stealer-rapier", - "fields": { - "name": "Nine Lives Stealer (Rapier)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_nine-lives-stealer-shortsword", - "fields": { - "name": "Nine Lives Stealer (Shortsword)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_oathbow", - "fields": { - "name": "Oathbow", - "desc": "When you nock an arrow on this bow, it whispers in Elvish, \"Swift defeat to my enemies.\" When you use this weapon to make a ranged attack, you can, as a command phrase, say, \"Swift death to you who have wronged me.\" The target of your attack becomes your sworn enemy until it dies or until dawn seven days later. You can have only one such sworn enemy at a time. When your sworn enemy dies, you can choose a new one after the next dawn.\n\nWhen you make a ranged attack roll with this weapon against your sworn enemy, you have advantage on the roll. In addition, your target gains no benefit from cover, other than total cover, and you suffer no disadvantage due to long range. If the attack hits, your sworn enemy takes an extra 3d6 piercing damage.\n\nWhile your sworn enemy lives, you have disadvantage on attack rolls with all other weapons.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_oil-of-etherealness", - "fields": { - "name": "Oil of Etherealness", - "desc": "Beads of this cloudy gray oil form on the outside of its container and quickly evaporate. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of the _etherealness_ spell for 1 hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_oil-of-sharpness", - "fields": { - "name": "Oil of Sharpness", - "desc": "This clear, gelatinous oil sparkles with tiny, ultrathin silver shards. The oil can coat one slashing or piercing weapon or up to 5 pieces of slashing or piercing ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical and has a +3 bonus to attack and damage rolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_oil-of-slipperiness", - "fields": { - "name": "Oil of Slipperiness", - "desc": "This sticky black unguent is thick and heavy in the container, but it flows quickly when poured. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of a _freedom of movement_ spell for 8 hours.\n\nAlternatively, the oil can be poured on the ground as an action, where it covers a 10-foot square, duplicating the effect of the _grease_ spell in that area for 8 hours.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_oil-of-taggit", - "fields": { - "name": "Oil of taggit", - "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or become poisoned for 24 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage.\\n\\n **_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "400.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_orb", - "fields": { - "name": "Orb", - "desc": "Can be used as an Arcane Focus.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_orb-of-dragonkind", - "fields": { - "name": "Orb of Dragonkind", - "desc": "Ages past, elves and humans waged a terrible war against evil dragons. When the world seemed doomed, powerful wizards came together and worked their greatest magic, forging five _Orbs of Dragonkind_ (or _Dragon Orbs_) to help them defeat the dragons. One orb was taken to each of the five wizard towers, and there they were used to speed the war toward a victorious end. The wizards used the orbs to lure dragons to them, then destroyed the dragons with powerful magic.\\n\\nAs the wizard towers fell in later ages, the orbs were destroyed or faded into legend, and only three are thought to survive. Their magic has been warped and twisted over the centuries, so although their primary purpose of calling dragons still functions, they also allow some measure of control over dragons.\\n\\nEach orb contains the essence of an evil dragon, a presence that resents any attempt to coax magic from it. Those lacking in force of personality might find themselves enslaved to an orb.\\n\\nAn orb is an etched crystal globe about 10 inches in diameter. When used, it grows to about 20 inches in diameter, and mist swirls inside it.\\n\\nWhile attuned to an orb, you can use an action to peer into the orb's depths and speak its command word. You must then make a DC 15 Charisma check. On a successful check, you control the orb for as long as you remain attuned to it. On a failed check, you become charmed by the orb for as long as you remain attuned to it.\\n\\nWhile you are charmed by the orb, you can't voluntarily end your attunement to it, and the orb casts _suggestion_ on you at will (save DC 18), urging you to work toward the evil ends it desires. The dragon essence within the orb might want many things: the annihilation of a particular people, freedom from the orb, to spread suffering in the world, to advance the worship of Tiamat, or something else the GM decides.\\n\\n**_Random Properties_**. An _Orb of Dragonkind_ has the following random properties:\\n\\n* 2 minor beneficial properties\\n* 1 minor detrimental property\\n* 1 major detrimental property\\n\\n**_Spells_**. The orb has 7 charges and regains 1d4 + 3 expended charges daily at dawn. If you control the orb, you can use an action and expend 1 or more charges to cast one of the following spells (save DC 18) from it: _cure wounds_ (5th-level version, 3 charges), _daylight_ (1 charge), _death ward_ (2 charges), or _scrying_ (3 charges).\\n\\nYou can also use an action to cast the _detect magic_ spell from the orb without using any charges.\\n\\n**_Call Dragons_**. While you control the orb, you can use an action to cause the artifact to issue a telepathic call that extends in all directions for 40 miles. Evil dragons in range feel compelled to come to the orb as soon as possible by the most direct route. Dragon deities such as Tiamat are unaffected by this call. Dragons drawn to the orb might be hostile toward you for compelling them against their will. Once you have used this property, it can't be used again for 1 hour.\\n\\n**_Destroying an Orb_**. An _Orb of Dragonkind_ appears fragile but is impervious to most damage, including the attacks and breath weapons of dragons. A _disintegrate_ spell or one good hit from a +3 magic weapon is sufficient to destroy an orb, however.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "artifact" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ox", - "fields": { - "name": "Ox", - "desc": "One ox.", - "document": "srd", - "size": "large", - "weight": "1500.000", - "armor_class": 10, - "hit_points": 15, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_padded-armor", - "fields": { - "name": "Padded Armor", - "desc": "Padded armor consists of quilted layers of cloth and batting.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": "padded", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_painters-supplies", - "fields": { - "name": "Painter's Supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pale-tincture", - "fields": { - "name": "Pale tincture", - "desc": "A creature subjected to this poison must succeed on a DC 16 Constitution saving throw or take 3 (1d6) poison damage and become poisoned. The poisoned creature must repeat the saving throw every 24 hours, taking 3 (1d6) poison damage on a failed save. Until this poison ends, the damage the poison deals can't be healed by any means. After seven successful saving throws, the effect ends and the creature can heal normally. \\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "250.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pan-flute", - "fields": { - "name": "Pan flute", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "12.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_paper-one-sheet", - "fields": { - "name": "Paper (one sheet)", - "desc": "A sheet of paper", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_parchment-one-sheet", - "fields": { - "name": "Parchment (one sheet)", - "desc": "A sheet of parchment", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pearl-of-power", - "fields": { - "name": "Pearl of Power", - "desc": "While this pearl is on your person, you can use an action to speak its command word and regain one expended spell slot. If the expended slot was of 4th level or higher, the new slot is 3rd level. Once you use the pearl, it can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pepper", - "fields": { - "name": "Pepper", - "desc": "1lb of pepper.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_perfume-vial", - "fields": { - "name": "Perfume (vial)", - "desc": "A vial of perfume.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_periapt-of-health", - "fields": { - "name": "Periapt of Health", - "desc": "You are immune to contracting any disease while you wear this pendant. If you are already infected with a disease, the effects of the disease are suppressed you while you wear the pendant.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_periapt-of-proof-against-poison", - "fields": { - "name": "Periapt of Proof against Poison", - "desc": "This delicate silver chain has a brilliant-cut black gem pendant. While you wear it, poisons have no effect on you. You are immune to the poisoned condition and have immunity to poison damage.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_periapt-of-wound-closure", - "fields": { - "name": "Periapt of Wound Closure", - "desc": "While you wear this pendant, you stabilize whenever you are dying at the start of your turn. In addition, whenever you roll a Hit Die to regain hit points, double the number of hit points it restores.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_philter-of-love", - "fields": { - "name": "Philter of Love", - "desc": "The next time you see a creature within 10 minutes after drinking this philter, you become charmed by that creature for 1 hour. If the creature is of a species and gender you are normally attracted to, you regard it as your true love while you are charmed. This potion's rose-hued, effervescent liquid contains one easy-to-miss bubble shaped like a heart.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pick-miners", - "fields": { - "name": "Pick, miner's", - "desc": "A pick for mining.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pig", - "fields": { - "name": "Pig", - "desc": "One pig.", - "document": "srd", - "size": "medium", - "weight": "400.000", - "armor_class": 10, - "hit_points": 4, - "cost": "3.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pike", - "fields": { - "name": "Pike", - "desc": "A pike.", - "document": "srd", - "size": "tiny", - "weight": "18.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pike-1", - "fields": { - "name": "Pike (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pike-2", - "fields": { - "name": "Pike (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pike-3", - "fields": { - "name": "Pike (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pipes-of-haunting", - "fields": { - "name": "Pipes of Haunting", - "desc": "You must be proficient with wind instruments to use these pipes. They have 3 charges. You can use an action to play them and expend 1 charge to create an eerie, spellbinding tune. Each creature within 30 feet of you that hears you play must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. If you wish, all creatures in the area that aren't hostile toward you automatically succeed on the saving throw. A creature that fails the saving throw can repeat it at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on its saving throw is immune to the effect of these pipes for 24 hours. The pipes regain 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pipes-of-the-sewers", - "fields": { - "name": "Pipes of the Sewers", - "desc": "You must be proficient with wind instruments to use these pipes. While you are attuned to the pipes, ordinary rats and giant rats are indifferent toward you and will not attack you unless you threaten or harm them.\r\n\r\nThe pipes have 3 charges. If you play the pipes as an action, you can use a bonus action to expend 1 to 3 charges, calling forth one swarm of rats with each expended charge, provided that enough rats are within half a mile of you to be called in this fashion (as determined by the GM). If there aren't enough rats to form a swarm, the charge is wasted. Called swarms move toward the music by the shortest available route but aren't under your control otherwise. The pipes regain 1d3 expended charges daily at dawn.\r\n\r\nWhenever a swarm of rats that isn't under another creature's control comes within 30 feet of you while you are playing the pipes, you can make a Charisma check contested by the swarm's Wisdom check. If you lose the contest, the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours. If you win the contest, the swarm is swayed by the pipes' music and becomes friendly to you and your companions for as long as you continue to play the pipes each round as an action. A friendly swarm obeys your commands. If you issue no commands to a friendly swarm, it defends itself but otherwise takes no actions. If a friendly swarm starts its turn and can't hear the pipes' music, your control over that swarm ends, and the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_piton", - "fields": { - "name": "Piton", - "desc": "A piton for climbing.", - "document": "srd", - "size": "tiny", - "weight": "0.250", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_plate-armor", - "fields": { - "name": "Plate Armor", - "desc": "Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.", - "document": "srd", - "size": "tiny", - "weight": "65.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1500.00", - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_plate-armor-of-etherealness", - "fields": { - "name": "Plate Armor of Etherealness", - "desc": "While you're wearing this armor, you can speak its command word as an action to gain the effect of the _etherealness_ spell, which last for 10 minutes or until you remove the armor or use an action to speak the command word again. This property of the armor can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "plate", - "category": "armor", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_platinum", - "fields": { - "name": "Platinum", - "desc": "1 lb. of platinum.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "500.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_platinum-piece", - "fields": { - "name": "Platinum Piece", - "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_playing-card-set", - "fields": { - "name": "Playing card set", - "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_poison-basic", - "fields": { - "name": "Poison, Basic", - "desc": "You can use the poison in this vial to coat one slashing or piercing weapon or up to three pieces of ammunition. Applying the poison takes an action. A creature hit by the poisoned weapon or ammunition must make a DC 10 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "100.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_poisoners-kit", - "fields": { - "name": "Poisoner's kit", - "desc": "A poisoner’s kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pole-10-foot", - "fields": { - "name": "Pole (10-foot)", - "desc": "A 10 foot pole.", - "document": "srd", - "size": "tiny", - "weight": "7.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_portable-hole", - "fields": { - "name": "Portable Hole", - "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold a _portable hole_ and place it on or against a solid surface, whereupon the _portable hole_ creates an extradimensional hole 10 feet deep. The cylindrical space within the hole exists on a different plane, so it can't be used to create open passages. Any creature inside an open _portable hole_ can exit the hole by climbing out of it.\r\n\r\nYou can use an action to close a _portable hole_ by taking hold of the edges of the cloth and folding it up. Folding the cloth closes the hole, and any creatures or objects within remain in the extradimensional space. No matter what's in it, the hole weighs next to nothing.\r\n\r\nIf the hole is folded up, a creature within the hole's extradimensional space can use an action to make a DC 10 Strength check. On a successful check, the creature forces its way out and appears within 5 feet of the _portable hole_ or the creature carrying it. A breathing creature within a closed _portable hole_ can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing a _portable hole_ inside an extradimensional space created by a _bag of holding_, _handy haversack_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pot-iron", - "fields": { - "name": "Pot, iron", - "desc": "An iron pot. Capacity: 1 gallon liquid.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-animal-friendship", - "fields": { - "name": "Potion of Animal Friendship", - "desc": "When you drink this potion, you can cast the _animal friendship_ spell (save DC 13) for 1 hour at will. Agitating this muddy liquid brings little bits into view: a fish scale, a hummingbird tongue, a cat claw, or a squirrel hair.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-clairvoyance", - "fields": { - "name": "Potion of Clairvoyance", - "desc": "When you drink this potion, you gain the effect of the _clairvoyance_ spell. An eyeball bobs in this yellowish liquid but vanishes when the potion is opened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-climbing", - "fields": { - "name": "Potion of Climbing", - "desc": "When you drink this potion, you gain a climbing speed equal to your walking speed for 1 hour. During this time, you have advantage on Strength (Athletics) checks you make to climb. The potion is separated into brown, silver, and gray layers resembling bands of stone. Shaking the bottle fails to mix the colors.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-cloud-giant-strength", - "fields": { - "name": "Potion of Cloud Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-diminution", - "fields": { - "name": "Potion of Diminution", - "desc": "When you drink this potion, you gain the \"reduce\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously contracts to a tiny bead and then expands to color the clear liquid around it. Shaking the bottle fails to interrupt this process.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-fire-giant-strength", - "fields": { - "name": "Potion of Fire Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-flying", - "fields": { - "name": "Potion of Flying", - "desc": "When you drink this potion, you gain a flying speed equal to your walking speed for 1 hour and can hover. If you're in the air when the potion wears off, you fall unless you have some other means of staying aloft. This potion's clear liquid floats at the top of its container and has cloudy white impurities drifting in it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-frost-giant-strength", - "fields": { - "name": "Potion of Frost Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-gaseous-form", - "fields": { - "name": "Potion of Gaseous Form", - "desc": "When you drink this potion, you gain the effect of the _gaseous form_ spell for 1 hour (no concentration required) or until you end the effect as a bonus action. This potion's container seems to hold fog that moves and pours like water.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-greater-healing", - "fields": { - "name": "Potion of Greater Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-growth", - "fields": { - "name": "Potion of Growth", - "desc": "When you drink this potion, you gain the \"enlarge\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously expands from a tiny bead to color the clear liquid around it and then contracts. Shaking the bottle fails to interrupt this process.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-healing", - "fields": { - "name": "Potion of Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-heroism", - "fields": { - "name": "Potion of Heroism", - "desc": "For 1 hour after drinking it, you gain 10 temporary hit points that last for 1 hour. For the same duration, you are under the effect of the _bless_ spell (no concentration required). This blue potion bubbles and steams as if boiling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-hill-giant-strength", - "fields": { - "name": "Potion of Hill Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-invisibility", - "fields": { - "name": "Potion of Invisibility", - "desc": "This potion's container looks empty but feels as though it holds liquid. When you drink it, you become invisible for 1 hour. Anything you wear or carry is invisible with you. The effect ends early if you attack or cast a spell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-mind-reading", - "fields": { - "name": "Potion of Mind Reading", - "desc": "When you drink this potion, you gain the effect of the _detect thoughts_ spell (save DC 13). The potion's dense, purple liquid has an ovoid cloud of pink floating in it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-poison", - "fields": { - "name": "Potion of Poison", - "desc": "This concoction looks, smells, and tastes like a _potion of healing_ or other beneficial potion. However, it is actually poison masked by illusion magic. An _identify_ spell reveals its true nature.\n\nIf you drink it, you take 3d6 poison damage, and you must succeed on a DC 13 Constitution saving throw or be poisoned. At the start of each of your turns while you are poisoned in this way, you take 3d6 poison damage. At the end of each of your turns, you can repeat the saving throw. On a successful save, the poison damage you take on your subsequent turns decreases by 1d6. The poison ends when the damage decreases to 0.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-resistance", - "fields": { - "name": "Potion of Resistance", - "desc": "When you drink this potion, you gain resistance to one type of damage for 1 hour. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-speed", - "fields": { - "name": "Potion of Speed", - "desc": "When you drink this potion, you gain the effect of the _haste_ spell for 1 minute (no concentration required). The potion's yellow fluid is streaked with black and swirls on its own.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-stone-giant-strength", - "fields": { - "name": "Potion of Stone Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-storm-giant-strength", - "fields": { - "name": "Potion of Storm Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-superior-healing", - "fields": { - "name": "Potion of Superior Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-supreme-healing", - "fields": { - "name": "Potion of Supreme Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potion-of-water-breathing", - "fields": { - "name": "Potion of Water Breathing", - "desc": "You can breathe underwater for 1 hour after drinking this potion. Its cloudy green fluid smells of the sea and has a jellyfish-like bubble floating in it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_potters-tools", - "fields": { - "name": "Potter's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_pouch", - "fields": { - "name": "Pouch", - "desc": "A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch (described earlier in this section).\r\nCapacity: 1/5 cubic foot/6 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_purple-worm-poison", - "fields": { - "name": "Purple worm poison", - "desc": "This poison must be harvested from a dead or incapacitated purple worm. A creature subjected to this poison must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2000.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_quarterstaff", - "fields": { - "name": "Quarterstaff", - "desc": "A quarterstaff.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_quarterstaff-1", - "fields": { - "name": "Quarterstaff (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_quarterstaff-2", - "fields": { - "name": "Quarterstaff (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_quarterstaff-3", - "fields": { - "name": "Quarterstaff (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_quiver", - "fields": { - "name": "Quiver", - "desc": "A quiver can hold up to 20 arrows.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ram-portable", - "fields": { - "name": "Ram, Portable", - "desc": "You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.", - "document": "srd", - "size": "tiny", - "weight": "35.000", - "armor_class": 0, - "hit_points": 0, - "cost": "4.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rapier", - "fields": { - "name": "Rapier", - "desc": "A rapier.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rapier-1", - "fields": { - "name": "Rapier (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rapier-2", - "fields": { - "name": "Rapier (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rapier-3", - "fields": { - "name": "Rapier (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rations-1-day", - "fields": { - "name": "Rations (1 day)", - "desc": "Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_reliquary", - "fields": { - "name": "Reliquary", - "desc": "Can be used as a holy symbol.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_restorative-ointment", - "fields": { - "name": "Restorative Ointment", - "desc": "This glass jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture that smells faintly of aloe. The jar and its contents weigh 1/2 pound.\r\n\r\nAs an action, one dose of the ointment can be swallowed or applied to the skin. The creature that receives it regains 2d8 + 2 hit points, ceases to be poisoned, and is cured of any disease.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-mail", - "fields": { - "name": "Ring mail", - "desc": "This armor is leather armor with heavy rings sewn into it. The rings help reinforce the armor against blows from swords and axes. Ring mail is inferior to chain mail, and it's usually worn only by those who can't afford better armor.", - "document": "srd", - "size": "tiny", - "weight": "40.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": "ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-animal-influence", - "fields": { - "name": "Ring of Animal Influence", - "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 of its charges to cast one of the following spells:\n\n* _Animal friendship_ (save DC 13)\n* _Fear_ (save DC 13), targeting only beasts that have an Intelligence of 3 or lower\n* _Speak with animals_", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-djinni-summoning", - "fields": { - "name": "Ring of Djinni Summoning", - "desc": "While wearing this ring, you can speak its command word as an action to summon a particular djinni from the Elemental Plane of Air. The djinni appears in an unoccupied space you choose within 120 feet of you. It remains as long as you concentrate (as if concentrating on a spell), to a maximum of 1 hour, or until it drops to 0 hit points. It then returns to its home plane.\n\nWhile summoned, the djinni is friendly to you and your companions. It obeys any commands you give it, no matter what language you use. If you fail to command it, the djinni defends itself against attackers but takes no other actions.\n\nAfter the djinni departs, it can't be summoned again for 24 hours, and the ring becomes nonmagical if the djinni dies.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-elemental-command", - "fields": { - "name": "Ring of Elemental Command", - "desc": "This ring is linked to one of the four Elemental Planes. The GM chooses or randomly determines the linked plane.\n\nWhile wearing this ring, you have advantage on attack rolls against elementals from the linked plane, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\n\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\n\n**_Ring of Air Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an air elemental. In addition, when you fall, you descend 60 feet per round and take no damage from falling. You can also speak and understand Auran.\n\nIf you help slay an air elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to lightning damage.\n* You have a flying speed equal to your walking speed and can hover.\n* You can cast the following spells from the ring, expending the necessary number of charges: _chain lightning_ (3 charges), _gust of wind_ (2 charges), or _wind wall_ (1 charge).\n\n**_Ring of Earth Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an earth elemental. In addition, you can move in difficult terrain that is composed of rubble, rocks, or dirt as if it were normal terrain. You can also speak and understand Terran.\n\nIf you help slay an earth elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to acid damage.\n* You can move through solid earth or rock as if those areas were difficult terrain. If you end your turn there, you are shunted out to the nearest unoccupied space you last occupied.\n* You can cast the following spells from the ring, expending the necessary number of charges: _stone shape_ (2 charges), _stoneskin_ (3 charges), or _wall of stone_ (3 charges).\n\n**_Ring of Fire Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a fire elemental. In addition, you have resistance to fire damage. You can also speak and understand Ignan.\n\nIf you help slay a fire elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You are immune to fire damage.\n* You can cast the following spells from the ring, expending the necessary number of charges: _burning hands_ (1 charge), _fireball_ (2 charges), and _wall of fire_ (3 charges).\n\n**_Ring of Water Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a water elemental. In addition, you can stand on and walk across liquid surfaces as if they were solid ground. You can also speak and understand Aquan.\n\nIf you help slay a water elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You can breathe underwater and have a swimming speed equal to your walking speed.\n* You can cast the following spells from the ring, expending the necessary number of charges: _create or destroy water_ (1 charge), _control water_ (3 charges), _ice storm_ (2 charges), or _wall of ice_ (3 charges).", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-evasion", - "fields": { - "name": "Ring of Evasion", - "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. When you fail a Dexterity saving throw while wearing it, you can use your reaction to expend 1 of its charges to succeed on that saving throw instead.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-feather-falling", - "fields": { - "name": "Ring of Feather Falling", - "desc": "When you fall while wearing this ring, you descend 60 feet per round and take no damage from falling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-free-action", - "fields": { - "name": "Ring of Free Action", - "desc": "While you wear this ring, difficult terrain doesn't cost you extra movement. In addition, magic can neither reduce your speed nor cause you to be paralyzed or restrained.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-invisibility", - "fields": { - "name": "Ring of Invisibility", - "desc": "While wearing this ring, you can turn invisible as an action. Anything you are wearing or carrying is invisible with you. You remain invisible until the ring is removed, until you attack or cast a spell, or until you use a bonus action to become visible again.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-jumping", - "fields": { - "name": "Ring of Jumping", - "desc": "While wearing this ring, you can cast the _jump_ spell from it as a bonus action at will, but can target only yourself when you do so.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-mind-shielding", - "fields": { - "name": "Ring of Mind Shielding", - "desc": "While wearing this ring, you are immune to magic that allows other creatures to read your thoughts, determine whether you are lying, know your alignment, or know your creature type. Creatures can telepathically communicate with you only if you allow it.\n\nYou can use an action to cause the ring to become invisible until you use another action to make it visible, until you remove the ring, or until you die.\n\nIf you die while wearing the ring, your soul enters it, unless it already houses a soul. You can remain in the ring or depart for the afterlife. As long as your soul is in the ring, you can telepathically communicate with any creature wearing it. A wearer can't prevent this telepathic communication.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-protection", - "fields": { - "name": "Ring of Protection", - "desc": "You gain a +1 bonus to AC and saving throws while wearing this ring.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-regeneration", - "fields": { - "name": "Ring of Regeneration", - "desc": "While wearing this ring, you regain 1d6 hit points every 10 minutes, provided that you have at least 1 hit point. If you lose a body part, the ring causes the missing part to regrow and return to full functionality after 1d6 + 1 days if you have at least 1 hit point the whole time.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-resistance", - "fields": { - "name": "Ring of Resistance", - "desc": "You have resistance to one damage type while wearing this ring. The gem in the ring indicates the type, which the GM chooses or determines randomly.\n\n| d10 | Damage Type | Gem |\n|-----|-------------|------------|\n| 1 | Acid | Pearl |\n| 2 | Cold | Tourmaline |\n| 3 | Fire | Garnet |\n| 4 | Force | Sapphire |\n| 5 | Lightning | Citrine |\n| 6 | Necrotic | Jet |\n| 7 | Poison | Amethyst |\n| 8 | Psychic | Jade |\n| 9 | Radiant | Topaz |\n| 10 | Thunder | Spinel |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-shooting-stars", - "fields": { - "name": "Ring of Shooting Stars", - "desc": "While wearing this ring in dim light or darkness, you can cast _dancing lights_ and _light_ from the ring at will. Casting either spell from the ring requires an action.\n\nThe ring has 6 charges for the following other properties. The ring regains 1d6 expended charges daily at dawn.\n\n**_Faerie Fire_**. You can expend 1 charge as an action to cast _faerie fire_ from the ring.\n\n**_Ball Lightning_**. You can expend 2 charges as an action to create one to four 3-foot-diameter spheres of lightning. The more spheres you create, the less powerful each sphere is individually.\n\nEach sphere appears in an unoccupied space you can see within 120 feet of you. The spheres last as long as you concentrate (as if concentrating on a spell), up to 1 minute. Each sphere sheds dim light in a 30-foot radius.\n\nAs a bonus action, you can move each sphere up to 30 feet, but no farther than 120 feet away from you. When a creature other than you comes within 5 feet of a sphere, the sphere discharges lightning at that creature and disappears. That creature must make a DC 15 Dexterity saving throw. On a failed save, the creature takes lightning damage based on the number of spheres you created.\n\n| Spheres | Lightning Damage |\n|---------|------------------|\n| 4 | 2d4 |\n| 3 | 2d6 |\n| 2 | 5d4 |\n| 1 | 4d12 |\n\n**_Shooting Stars_**. You can expend 1 to 3 charges as an action. For every charge you expend, you launch a glowing mote of light from the ring at a point you can see within 60 feet of you. Each creature within a 15-foot cube originating from that point is showered in sparks and must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-spell-storing", - "fields": { - "name": "Ring of Spell Storing", - "desc": "This ring stores spells cast into it, holding them until the attuned wearer uses them. The ring can store up to 5 levels worth of spells at a time. When found, it contains 1d6 - 1 levels of stored spells chosen by the GM.\n\nAny creature can cast a spell of 1st through 5th level into the ring by touching the ring as the spell is cast. The spell has no effect, other than to be stored in the ring. If the ring can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\n\nWhile wearing this ring, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the ring is no longer stored in it, freeing up space.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-spell-turning", - "fields": { - "name": "Ring of Spell Turning", - "desc": "While wearing this ring, you have advantage on saving throws against any spell that targets only you (not in an area of effect). In addition, if you roll a 20 for the save and the spell is 7th level or lower, the spell has no effect on you and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-swimming", - "fields": { - "name": "Ring of Swimming", - "desc": "You have a swimming speed of 40 feet while wearing this ring.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-telekinesis", - "fields": { - "name": "Ring of Telekinesis", - "desc": "While wearing this ring, you can cast the _telekinesis_ spell at will, but you can target only objects that aren't being worn or carried.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-the-ram", - "fields": { - "name": "Ring of the Ram", - "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a spectral ram's head and makes its attack roll with a +7 bonus. On a hit, for each charge you spend, the target takes 2d10 force damage and is pushed 5 feet away from you.\n\nAlternatively, you can expend 1 to 3 of the ring's charges as an action to try to break an object you can see within 60 feet of you that isn't being worn or carried. The ring makes a Strength check with a +5 bonus for each charge you spend.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-three-wishes", - "fields": { - "name": "Ring of Three Wishes", - "desc": "While wearing this ring, you can use an action to expend 1 of its 3 charges to cast the _wish_ spell from it. The ring becomes nonmagical when you use the last charge.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-warmth", - "fields": { - "name": "Ring of Warmth", - "desc": "While wearing this ring, you have resistance to cold damage. In addition, you and everything you wear and carry are unharmed by temperatures as low as -50 degrees Fahrenheit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-water-walking", - "fields": { - "name": "Ring of Water Walking", - "desc": "While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_ring-of-x-ray-vision", - "fields": { - "name": "Ring of X-ray Vision", - "desc": "While wearing this ring, you can use an action to speak its command word. When you do so, you can see into and through solid matter for 1 minute. This vision has a radius of 30 feet. To you, solid objects within that radius appear transparent and don't prevent light from passing through them. The vision can penetrate 1 foot of stone, 1 inch of common metal, or up to 3 feet of wood or dirt. Thicker substances block the vision, as does a thin sheet of lead.\n\nWhenever you use the ring again before taking a long rest, you must succeed on a DC 15 Constitution saving throw or gain one level of exhaustion.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_robe-of-eyes", - "fields": { - "name": "Robe of Eyes", - "desc": "This robe is adorned with eyelike patterns. While you wear the robe, you gain the following benefits:\r\n\r\n* The robe lets you see in all directions, and you have advantage on Wisdom (Perception) checks that rely on sight.\r\n* You have darkvision out to a range of 120 feet.\r\n* You can see invisible creatures and objects, as well as see into the Ethereal Plane, out to a range of 120 feet.\r\n\r\nThe eyes on the robe can't be closed or averted. Although you can close or avert your own eyes, you are never considered to be doing so while wearing this robe.\r\n\r\nA _light_ spell cast on the robe or a _daylight_ spell cast within 5 feet of the robe causes you to be blinded for 1 minute. At the end of each of your turns, you can make a Constitution saving throw (DC 11 for _light_ or DC 15 for _daylight_), ending the blindness on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_robe-of-scintillating-colors", - "fields": { - "name": "Robe of Scintillating Colors", - "desc": "This robe has 3 charges, and it regains 1d3 expended charges daily at dawn. While you wear it, you can use an action and expend 1 charge to cause the garment to display a shifting pattern of dazzling hues until the end of your next turn. During this time, the robe sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Creatures that can see you have disadvantage on attack rolls against you. In addition, any creature in the bright light that can see you when the robe's power is activated must succeed on a DC 15 Wisdom saving throw or become stunned until the effect ends.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_robe-of-stars", - "fields": { - "name": "Robe of Stars", - "desc": "This black or dark blue robe is embroidered with small white or silver stars. You gain a +1 bonus to saving throws while you wear it.\r\n\r\nSix stars, located on the robe's upper front portion, are particularly large. While wearing this robe, you can use an action to pull off one of the stars and use it to cast _magic missile_ as a 5th-level spell. Daily at dusk, 1d6 removed stars reappear on the robe.\r\n\r\nWhile you wear the robe, you can use an action to enter the Astral Plane along with everything you are wearing and carrying. You remain there until you use an action to return to the plane you were on. You reappear in the last space you occupied, or if that space is occupied, the nearest unoccupied space.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_robe-of-the-archmagi", - "fields": { - "name": "Robe of the Archmagi", - "desc": "This elegant garment is made from exquisite cloth of white, gray, or black and adorned with silvery runes. The robe's color corresponds to the alignment for which the item was created. A white robe was made for good, gray for neutral, and black for evil. You can't attune to a _robe of the archmagi_ that doesn't correspond to your alignment.\r\n\r\nYou gain these benefits while wearing the robe:\r\n\r\n* If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* Your spell save DC and spell attack bonus each increase by 2.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_robe-of-useful-items", - "fields": { - "name": "Robe of Useful Items", - "desc": "This robe has cloth patches of various shapes and colors covering it. While wearing the robe, you can use an action to detach one of the patches, causing it to become the object or creature it represents. Once the last patch is removed, the robe becomes an ordinary garment.\r\n\r\nThe robe has two of each of the following patches:\r\n\r\n* Dagger\r\n* Bullseye lantern (filled and lit)\r\n* Steel mirror\r\n* 10-foot pole\r\n* Hempen rope (50 feet, coiled)\r\n* Sack\r\n\r\nIn addition, the robe has 4d4 other patches. The GM chooses the patches or determines them randomly.\r\n\r\n| d100 | Patch |\r\n|--------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-08 | Bag of 100 gp |\r\n| 09-15 | Silver coffer (1 foot long, 6 inches wide and deep) worth 500 gp |\r\n| 16-22 | Iron door (up to 10 feet wide and 10 feet high, barred on one side of your choice), which you can place in an opening you can reach; it conforms to fit the opening, attaching and hinging itself |\r\n| 23-30 | 10 gems worth 100 gp each |\r\n| 31-44 | Wooden ladder (24 feet long) |\r\n| 45-51 | A riding horse with saddle bags |\r\n| 52-59 | Pit (a cube 10 feet on a side), which you can place on the ground within 10 feet of you |\r\n| 60-68 | 4 potions of healing |\r\n| 69-75 | Rowboat (12 feet long) |\r\n| 76-83 | Spell scroll containing one spell of 1st to 3rd level |\r\n| 84-90 | 2 mastiffs |\r\n| 91-96 | Window (2 feet by 4 feet, up to 2 feet deep), which you can place on a vertical surface you can reach |\r\n| 97-100 | Portable ram |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_robes", - "fields": { - "name": "Robes", - "desc": "Robes, for wearing.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rod", - "fields": { - "name": "Rod", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rod-of-absorption", - "fields": { - "name": "Rod of Absorption", - "desc": "While holding this rod, you can use your reaction to absorb a spell that is targeting only you and not with an area of effect. The absorbed spell's effect is canceled, and the spell's energy-not the spell itself-is stored in the rod. The energy has the same level as the spell when it was cast. The rod can absorb and store up to 50 levels of energy over the course of its existence. Once the rod absorbs 50 levels of energy, it can't absorb more. If you are targeted by a spell that the rod can't store, the rod has no effect on that spell.\n\nWhen you become attuned to the rod, you know how many levels of energy the rod has absorbed over the course of its existence, and how many levels of spell energy it currently has stored.\n\nIf you are a spellcaster holding the rod, you can convert energy stored in it into spell slots to cast spells you have prepared or know. You can create spell slots only of a level equal to or lower than your own spell slots, up to a maximum of 5th level. You use the stored levels in place of your slots, but otherwise cast the spell as normal. For example, you can use 3 levels stored in the rod as a 3rd-level spell slot.\n\nA newly found rod has 1d10 levels of spell energy stored in it already. A rod that can no longer absorb spell energy and has no energy remaining becomes nonmagical.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rod-of-alertness", - "fields": { - "name": "Rod of Alertness", - "desc": "This rod has a flanged head and the following properties.\n\n**_Alertness_**. While holding the rod, you have advantage on Wisdom (Perception) checks and on rolls for initiative.\n\n**_Spells_**. While holding the rod, you can use an action to cast one of the following spells from it: _detect evil and good_, _detect magic_, _detect poison and disease_, or _see invisibility._\n\n**_Protective Aura_**. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's head sheds bright light in a 60-foot radius and dim light for an additional 60 feet. While in that bright light, you and any creature that is friendly to you gain a +1 bonus to AC and saving throws and can sense the location of any invisible hostile creature that is also in the bright light.\n\nThe rod's head stops glowing and the effect ends after 10 minutes, or when a creature uses an action to pull the rod from the ground. This property can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rod-of-lordly-might", - "fields": { - "name": "Rod of Lordly Might", - "desc": "This rod has a flanged head, and it functions as a magic mace that grants a +3 bonus to attack and damage rolls made with it. The rod has properties associated with six different buttons that are set in a row along the haft. It has three other properties as well, detailed below.\n\n**_Six Buttons_**. You can press one of the rod's six buttons as a bonus action. A button's effect lasts until you push a different button or until you push the same button again, which causes the rod to revert to its normal form.\n\nIf you press **button 1**, the rod becomes a _flame tongue_, as a fiery blade sprouts from the end opposite the rod's flanged head.\n\nIf you press **button 2**, the rod's flanged head folds down and two crescent-shaped blades spring out, transforming the rod into a magic battleaxe that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 3**, the rod's flanged head folds down, a spear point springs from the rod's tip, and the rod's handle lengthens into a 6-foot haft, transforming the rod into a magic spear that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 4**, the rod transforms into a climbing pole up to 50 feet long, as you specify. In surfaces as hard as granite, a spike at the bottom and three hooks at the top anchor the pole. Horizontal bars 3 inches long fold out from the sides, 1 foot apart, forming a ladder. The pole can bear up to 4,000 pounds. More weight or lack of solid anchoring causes the rod to revert to its normal form.\n\nIf you press **button 5**, the rod transforms into a handheld battering ram and grants its user a +10 bonus to Strength checks made to break through doors, barricades, and other barriers.\n\nIf you press **button 6**, the rod assumes or remains in its normal form and indicates magnetic north. (Nothing happens if this function of the rod is used in a location that has no magnetic north.) The rod also gives you knowledge of your approximate depth beneath the ground or your height above it.\n\n**_Drain Life_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target takes an extra 4d6 necrotic damage, and you regain a number of hit points equal to half that necrotic damage. This property can't be used again until the next dawn.\n\n**_Paralyze_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Strength saving throw. On a failure, the target is paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. This property can't be used again until the next dawn.\n\n**_Terrify_**. While holding the rod, you can use an action to force each creature you can see within 30 feet of you to make a DC 17 Wisdom saving throw. On a failure, a target is frightened of you for 1 minute. A frightened target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This property can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rod-of-rulership", - "fields": { - "name": "Rod of Rulership", - "desc": "You can use an action to present the rod and command obedience from each creature of your choice that you can see within 120 feet of you. Each target must succeed on a DC 15 Wisdom saving throw or be charmed by you for 8 hours. While charmed in this way, the creature regards you as its trusted leader. If harmed by you or your companions, or commanded to do something contrary to its nature, a target ceases to be charmed in this way. The rod can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rod-of-security", - "fields": { - "name": "Rod of Security", - "desc": "While holding this rod, you can use an action to activate it. The rod then instantly transports you and up to 199 other willing creatures you can see to a paradise that exists in an extraplanar space. You choose the form that the paradise takes. It could be a tranquil garden, lovely glade, cheery tavern, immense palace, tropical island, fantastic carnival, or whatever else you can imagine. Regardless of its nature, the paradise contains enough water and food to sustain its visitors. Everything else that can be interacted with inside the extraplanar space can exist only there. For example, a flower picked from a garden in the paradise disappears if it is taken outside the extraplanar space.\n\nFor each hour spent in the paradise, a visitor regains hit points as if it had spent 1 Hit Die. Also, creatures don't age while in the paradise, although time passes normally. Visitors can remain in the paradise for up to 200 days divided by the number of creatures present (round down).\n\nWhen the time runs out or you use an action to end it, all visitors reappear in the location they occupied when you activated the rod, or an unoccupied space nearest that location. The rod can't be used again until ten days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rope-hempen-50-feet", - "fields": { - "name": "Rope, hempen (50 feet)", - "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 2, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rope-of-climbing", - "fields": { - "name": "Rope of Climbing", - "desc": "This 60-foot length of silk rope weighs 3 pounds and can hold up to 3,000 pounds. If you hold one end of the rope and use an action to speak the command word, the rope animates. As a bonus action, you can command the other end to move toward a destination you choose. That end moves 10 feet on your turn when you first command it and 10 feet on each of your turns until reaching its destination, up to its maximum length away, or until you tell it to stop. You can also tell the rope to fasten itself securely to an object or to unfasten itself, to knot or unknot itself, or to coil itself for carrying.\r\n\r\nIf you tell the rope to knot, large knots appear at 1* foot intervals along the rope. While knotted, the rope shortens to a 50-foot length and grants advantage on checks made to climb it.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rope-of-entanglement", - "fields": { - "name": "Rope of Entanglement", - "desc": "This rope is 30 feet long and weighs 3 pounds. If you hold one end of the rope and use an action to speak its command word, the other end darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 15 Dexterity saving throw or become restrained.\r\n\r\nYou can release the creature by using a bonus action to speak a second command word. A target restrained by the rope can use an action to make a DC 15 Strength or Dexterity check (target's choice). On a success, the creature is no longer restrained by the rope.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rope-silk-50-feet", - "fields": { - "name": "Rope, silk (50 feet)", - "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_rowboat", - "fields": { - "name": "Rowboat", - "desc": "Waterborne vehicle. Speed 1.5mph", - "document": "srd", - "size": "large", - "weight": "100.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sack", - "fields": { - "name": "Sack", - "desc": "A sack. Capacity: 1 cubic foot/30 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_saffron", - "fields": { - "name": "Saffron", - "desc": "1lb of saffron.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sailing-ship", - "fields": { - "name": "Sailing Ship", - "desc": "Waterborne vehicle. Speed 2mph", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_salt", - "fields": { - "name": "Salt", - "desc": "1lb of salt.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_scale-mail", - "fields": { - "name": "Scale mail", - "desc": "This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.", - "document": "srd", - "size": "tiny", - "weight": "45.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": "scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_scale-merchants", - "fields": { - "name": "Scale, Merchant's", - "desc": "A scale includes a small balance, pans, and a suitable assortment of weights up to 2 pounds. With it, you can measure the exact weight of small objects, such as raw precious metals or trade goods, to help determine their worth.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_scarab-of-protection", - "fields": { - "name": "Scarab of Protection", - "desc": "If you hold this beetle-shaped medallion in your hand for 1 round, an inscription appears on its surface revealing its magical nature. It provides two benefits while it is on your person:\r\n\r\n* You have advantage on saving throws against spells.\r\n* The scarab has 12 charges. If you fail a saving throw against a necromancy spell or a harmful effect originating from an undead creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into powder and is destroyed when its last charge is expended.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_scimitar", - "fields": { - "name": "Scimitar", - "desc": "A scimitar.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_scimitar-1", - "fields": { - "name": "Scimitar (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_scimitar-2", - "fields": { - "name": "Scimitar (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_scimitar-3", - "fields": { - "name": "Scimitar (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_scimitar-of-speed", - "fields": { - "name": "Scimitar of Speed", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. In addition, you can make one attack with it as a bonus action on each of your turns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sealing-wax", - "fields": { - "name": "Sealing wax", - "desc": "For sealing written letters.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_serpent-venom", - "fields": { - "name": "Serpent venom", - "desc": "This poison must be harvested from a dead or incapacitated giant poisonous snake. A creature subjected to this poison must succeed on a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_shawm", - "fields": { - "name": "Shawm", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sheep", - "fields": { - "name": "Sheep", - "desc": "One sheep.", - "document": "srd", - "size": "medium", - "weight": "75.000", - "armor_class": 10, - "hit_points": 4, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_shield", - "fields": { - "name": "Shield", - "desc": "A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_shield-of-missile-attraction", - "fields": { - "name": "Shield of Missile Attraction", - "desc": "While holding this shield, you have resistance to damage from ranged weapon attacks.\n\n**_Curse_**. This shield is cursed. Attuning to it curses you until you are targeted by the _remove curse_ spell or similar magic. Removing the shield fails to end the curse on you. Whenever a ranged weapon attack is made against a target within 10 feet of you, the curse causes you to become the target instead.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_shortbow", - "fields": { - "name": "Shortbow", - "desc": "A shortbow", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_shortbow-1", - "fields": { - "name": "Shortbow (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_shortbow-2", - "fields": { - "name": "Shortbow (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_shortbow-3", - "fields": { - "name": "Shortbow (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_shortsword", - "fields": { - "name": "Shortsword", - "desc": "A short sword.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_shortsword-1", - "fields": { - "name": "Shortsword (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_shortsword-2", - "fields": { - "name": "Shortsword (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_shortsword-3", - "fields": { - "name": "Shortsword (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_shovel", - "fields": { - "name": "Shovel", - "desc": "A shovel.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sickle", - "fields": { - "name": "Sickle", - "desc": "A sickle.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sickle-1", - "fields": { - "name": "Sickle (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sickle-2", - "fields": { - "name": "Sickle (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sickle-3", - "fields": { - "name": "Sickle (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_signal-whistle", - "fields": { - "name": "Signal whistle", - "desc": "For signalling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_signet-ring", - "fields": { - "name": "Signet Ring", - "desc": "A ring with a signet on it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_silk", - "fields": { - "name": "Silk", - "desc": "1 sq. yd. of silk.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_silver", - "fields": { - "name": "Silver", - "desc": "1lb of silver", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_silver-piece", - "fields": { - "name": "Silver Piece", - "desc": "One gold piece is worth ten silver pieces, the most prevalent coin among commoners. A silver piece buys a laborer's work for half a day, a flask of lamp oil, or a night's rest in a poor inn.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sled", - "fields": { - "name": "Sled", - "desc": "Drawn vehicle", - "document": "srd", - "size": "large", - "weight": "300.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sling", - "fields": { - "name": "Sling", - "desc": "A sling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sling-1", - "fields": { - "name": "Sling (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sling-2", - "fields": { - "name": "Sling (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sling-3", - "fields": { - "name": "Sling (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sling-bullets", - "fields": { - "name": "Sling bullets", - "desc": "Technically their cost is 20 for 4cp.", - "document": "srd", - "size": "tiny", - "weight": "0.075", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_slippers-of-spider-climbing", - "fields": { - "name": "Slippers of Spider Climbing", - "desc": "While you wear these light shoes, you can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free. You have a climbing speed equal to your walking speed. However, the slippers don't allow you to move this way on a slippery surface, such as one covered by ice or oil.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_smiths-tools", - "fields": { - "name": "Smith's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_soap", - "fields": { - "name": "Soap", - "desc": "For cleaning.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sovereign-glue", - "fields": { - "name": "Sovereign Glue", - "desc": "This viscous, milky-white substance can form a permanent adhesive bond between any two objects. It must be stored in a jar or flask that has been coated inside with _oil of slipperiness._ When found, a container contains 1d6 + 1 ounces.\r\n\r\nOne ounce of the glue can cover a 1-foot square surface. The glue takes 1 minute to set. Once it has done so, the bond it creates can be broken only by the application of _universal solvent_ or _oil of etherealness_, or with a _wish_ spell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spear", - "fields": { - "name": "Spear", - "desc": "A spear.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spear-1", - "fields": { - "name": "Spear (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spear-2", - "fields": { - "name": "Spear (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spear-3", - "fields": { - "name": "Spear (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spell-scroll-1st-level", - "fields": { - "name": "Spell Scroll (1st Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spell-scroll-2nd-level", - "fields": { - "name": "Spell Scroll (2nd Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spell-scroll-3rd-level", - "fields": { - "name": "Spell Scroll (3rd Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spell-scroll-4th-level", - "fields": { - "name": "Spell Scroll (4th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spell-scroll-5th-level", - "fields": { - "name": "Spell Scroll (5th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spell-scroll-6th-level", - "fields": { - "name": "Spell Scroll (6th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spell-scroll-7th-level", - "fields": { - "name": "Spell Scroll (7th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spell-scroll-8th-level", - "fields": { - "name": "Spell Scroll (8th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spell-scroll-9th-level", - "fields": { - "name": "Spell Scroll (9th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spell-scroll-cantrip", - "fields": { - "name": "Spell Scroll (Cantrip)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "common" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spellbook", - "fields": { - "name": "Spellbook", - "desc": "Essential for wizards, a spellbook is a leather-­‐‑bound tome with 100 blank vellum pages suitable for recording spells.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spellguard-shield", - "fields": { - "name": "Spellguard Shield", - "desc": "While holding this shield, you have advantage on saving throws against spells and other magical effects, and spell attacks have disadvantage against you.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sphere-of-annihilation", - "fields": { - "name": "Sphere of Annihilation", - "desc": "This 2-foot-diameter black sphere is a hole in the multiverse, hovering in space and stabilized by a magical field surrounding it.\r\n\r\nThe sphere obliterates all matter it passes through and all matter that passes through it. Artifacts are the exception. Unless an artifact is susceptible to damage from a _sphere of annihilation_, it passes through the sphere unscathed. Anything else that touches the sphere but isn't wholly engulfed and obliterated by it takes 4d10 force damage.\r\n\r\nThe sphere is stationary until someone controls it. If you are within 60 feet of an uncontrolled sphere, you can use an action to make a DC 25 Intelligence (Arcana) check. On a success, the sphere levitates in one direction of your choice, up to a number of feet equal to 5 × your Intelligence modifier (minimum 5 feet). On a failure, the sphere moves 10 feet toward you. A creature whose space the sphere enters must succeed on a DC 13 Dexterity saving throw or be touched by it, taking 4d10 force damage.\r\n\r\nIf you attempt to control a sphere that is under another creature's control, you make an Intelligence (Arcana) check contested by the other creature's Intelligence (Arcana) check. The winner of the contest gains control of the sphere and can levitate it as normal.\r\n\r\nIf the sphere comes into contact with a planar portal, such as that created by the _gate_ spell, or an extradimensional space, such as that within a _portable hole_, the GM determines randomly what happens, using the following table.\r\n\r\n| d100 | Result |\r\n|--------|------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-50 | The sphere is destroyed. |\r\n| 51-85 | The sphere moves through the portal or into the extradimensional space. |\r\n| 86-00 | A spatial rift sends each creature and object within 180 feet of the sphere, including the sphere, to a random plane of existence. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spike-iron", - "fields": { - "name": "Spike, iron", - "desc": "An iron spike.", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_splint-armor", - "fields": { - "name": "Splint Armor", - "desc": "This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.", - "document": "srd", - "size": "tiny", - "weight": "60.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": "splint", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sprig-of-mistletoe", - "fields": { - "name": "Sprig of mistletoe", - "desc": "A sprig of mistletoe that can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_spyglass", - "fields": { - "name": "Spyglass", - "desc": "Objects viewed through a spyglass are magnified to twice their size.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1000.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_staff", - "fields": { - "name": "Staff", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_staff-of-charming", - "fields": { - "name": "Staff of Charming", - "desc": "While holding this staff, you can use an action to expend 1 of its 10 charges to cast _charm person_, _command_, _or comprehend languages_ from it using your spell save DC. The staff can also be used as a magic quarterstaff.\n\nIf you are holding the staff and fail a saving throw against an enchantment spell that targets only you, you can turn your failed save into a successful one. You can't use this property of the staff again until the next dawn. If you succeed on a save against an enchantment spell that targets only you, with or without the staff's intervention, you can use your reaction to expend 1 charge from the staff and turn the spell back on its caster as if you had cast the spell.\n\nThe staff regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_staff-of-fire", - "fields": { - "name": "Staff of Fire", - "desc": "You have resistance to fire damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _burning hands_ (1 charge), _fireball_ (3 charges), or _wall of fire_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff blackens, crumbles into cinders, and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_staff-of-frost", - "fields": { - "name": "Staff of Frost", - "desc": "You have resistance to cold damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _cone of cold_ (5 charges), _fog cloud_ (1 charge), _ice storm_ (4 charges), or _wall of ice_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff turns to water and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_staff-of-healing", - "fields": { - "name": "Staff of Healing", - "desc": "This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability modifier: _cure wounds_ (1 charge per spell level, up to 4th), _lesser restoration_ (2 charges), or _mass cure wounds_ (5 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_staff-of-power", - "fields": { - "name": "Staff of Power", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to Armor Class, saving throws, and spell attack rolls.\n\nThe staff has 20 charges for the following properties. The staff regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses all other properties. On a 20, the staff regains 1d8 + 2 charges.\n\n**_Power Strike_**. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d6 force damage to the target.\n\n**_Spells_**. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spell attack bonus: _cone of cold_ (5 charges), _fireball_ (5th-level version, 5 charges), _globe of invulnerability_ (6 charges), _hold monster_ (5 charges), _levitate_ (2 charges), _lightning bolt_ (5th-level version, 5 charges), _magic missile_ (1 charge), _ray of enfeeblement_ (1 charge), or _wall of force_ (5 charges).\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_staff-of-striking", - "fields": { - "name": "Staff of Striking", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +3 bonus to attack and damage rolls made with it.\n\nThe staff has 10 charges. When you hit with a melee attack using it, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 force damage. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_staff-of-swarming-insects", - "fields": { - "name": "Staff of Swarming Insects", - "desc": "This staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of insects consumes and destroys the staff, then disperses.\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC: _giant insect_ (4 charges) or _insect plague_ (5 charges).\n\n**_Insect Cloud_**. While holding the staff, you can use an action and expend 1 charge to cause a swarm of harmless flying insects to spread out in a 30-foot radius from you. The insects remain for 10 minutes, making the area heavily obscured for creatures other than you. The swarm moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the swarm and ends the effect.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_staff-of-the-magi", - "fields": { - "name": "Staff of the Magi", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls.\n\nThe staff has 50 charges for the following properties. It regains 4d6 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 20, the staff regains 1d12 + 1 charges.\n\n**_Spell Absorption_**. While holding the staff, you have advantage on saving throws against spells. In addition, you can use your reaction when another creature casts a spell that targets only you. If you do, the staff absorbs the magic of the spell, canceling its effect and gaining a number of charges equal to the absorbed spell's level. However, if doing so brings the staff's total number of charges above 50, the staff explodes as if you activated its retributive strike (see below).\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: _conjure elemental_ (7 charges), _dispel magic_ (3 charges), _fireball_ (7th-level version, 7 charges), _flaming sphere_ (2 charges), _ice storm_ (4 charges), _invisibility_ (2 charges), _knock_ (2 charges), _lightning bolt_ (7th-level version, 7 charges), _passwall_ (5 charges), _plane shift_ (7 charges), _telekinesis_ (5 charges), _wall of fire_ (4 charges), or _web_ (2 charges).\n\nYou can also use an action to cast one of the following spells from the staff without using any charges: _arcane lock_, _detect magic_, _enlarge/reduce_, _light_, _mage hand_, or _protection from evil and good._\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_staff-of-the-python", - "fields": { - "name": "Staff of the Python", - "desc": "You can use an action to speak this staff's command word and throw the staff on the ground within 10 feet of you. The staff becomes a giant constrictor snake under your control and acts on its own initiative count. By using a bonus action to speak the command word again, you return the staff to its normal form in a space formerly occupied by the snake.\n\nOn your turn, you can mentally command the snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snake takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location.\n\nIf the snake is reduced to 0 hit points, it dies and reverts to its staff form. The staff then shatters and is destroyed. If the snake reverts to staff form before losing all its hit points, it regains all of them.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_staff-of-the-woodlands", - "fields": { - "name": "Staff of the Woodlands", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you have a +2 bonus to spell attack rolls.\n\nThe staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff.\n\n**_Spells_**. You can use an action to expend 1 or more of the staff's charges to cast one of the following spells from it, using your spell save DC: _animal friendship_ (1 charge), _awaken_ (5 charges), _barkskin_ (2 charges), _locate animals or plants_ (2 charges), _speak with animals_ (1 charge), _speak with plants_ (3 charges), or _wall of thorns_ (6 charges).\n\nYou can also use an action to cast the _pass without trace_ spell from the staff without using any charges. **_Tree Form_**. You can use an action to plant one end of the staff in fertile earth and expend 1 charge to transform the staff into a healthy tree. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\n\nThe tree appears ordinary but radiates a faint aura of transmutation magic if targeted by _detect magic_. While touching the tree and using another action to speak its command word, you return the staff to its normal form. Any creature in the tree falls when it reverts to a staff.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_staff-of-thunder-and-lightning", - "fields": { - "name": "Staff of Thunder and Lightning", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. It also has the following additional properties. When one of these properties is used, it can't be used again until the next dawn.\n\n**_Lightning_**. When you hit with a melee attack using the staff, you can cause the target to take an extra 2d6 lightning damage.\n\n**_Thunder_**. When you hit with a melee attack using the staff, you can cause the staff to emit a crack of thunder, audible out to 300 feet. The target you hit must succeed on a DC 17 Constitution saving throw or become stunned until the end of your next turn.\n\n**_Lightning Strike_**. You can use an action to cause a bolt of lightning to leap from the staff's tip in a line that is 5 feet wide and 120 feet long. Each creature in that line must make a DC 17 Dexterity saving throw, taking 9d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**_Thunderclap_**. You can use an action to cause the staff to issue a deafening thunderclap, audible out to 600 feet. Each creature within 60 feet of you (not including you) must make a DC 17 Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 1 minute. On a successful save, a creature takes half damage and isn't deafened.\n\n**_Thunder and Lightning_**. You can use an action to use the Lightning Strike and Thunderclap properties at the same time. Doing so doesn't expend the daily use of those properties, only the use of this one.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_staff-of-withering", - "fields": { - "name": "Staff of Withering", - "desc": "This staff has 3 charges and regains 1d3 expended charges daily at dawn.\n\nThe staff can be wielded as a magic quarterstaff. On a hit, it deals damage as a normal quarterstaff, and you can expend 1 charge to deal an extra 2d10 necrotic damage to the target. In addition, the target must succeed on a DC 15 Constitution saving throw or have disadvantage for 1 hour on any ability check or saving throw that uses Strength or Constitution.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_stone-of-controlling-earth-elementals", - "fields": { - "name": "Stone of Controlling Earth Elementals", - "desc": "If the stone is touching the ground, you can use an action to speak its command word and summon an earth elemental, as if you had cast the _conjure elemental_ spell. The stone can't be used this way again until the next dawn. The stone weighs 5 pounds.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_stone-of-good-luck-luckstone", - "fields": { - "name": "Stone of Good Luck (Luckstone)", - "desc": "While this polished agate is on your person, you gain a +1 bonus to ability checks and saving throws.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_studded-leather-armor", - "fields": { - "name": "Studded Leather Armor", - "desc": "Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.", - "document": "srd", - "size": "tiny", - "weight": "13.000", - "armor_class": 0, - "hit_points": 0, - "cost": "45.00", - "weapon": null, - "armor": "studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sun-blade", - "fields": { - "name": "Sun Blade", - "desc": "This item appears to be a longsword hilt. While grasping the hilt, you can use a bonus action to cause a blade of pure radiance to spring into existence, or make the blade disappear. While the blade exists, this magic longsword has the finesse property. If you are proficient with shortswords or longswords, you are proficient with the _sun blade_.\n\nYou gain a +2 bonus to attack and damage rolls made with this weapon, which deals radiant damage instead of slashing damage. When you hit an undead with it, that target takes an extra 1d8 radiant damage.\n\nThe sword's luminous blade emits bright light in a 15-foot radius and dim light for an additional 15 feet. The light is sunlight. While the blade persists, you can use an action to expand or reduce its radius of bright and dim light by 5 feet each, to a maximum of 30 feet each or a minimum of 10 feet each.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sword-of-life-stealing-greatsword", - "fields": { - "name": "Sword of Life Stealing (Greatsword)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sword-of-life-stealing-longsword", - "fields": { - "name": "Sword of Life Stealing (Longsword)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sword-of-life-stealing-rapier", - "fields": { - "name": "Sword of Life Stealing (Rapier)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sword-of-life-stealing-shortsword", - "fields": { - "name": "Sword of Life Stealing (Shortsword)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sword-of-sharpness-greatsword", - "fields": { - "name": "Sword of Sharpness (Greatsword)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sword-of-sharpness-longsword", - "fields": { - "name": "Sword of Sharpness (Longsword)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sword-of-sharpness-scimitar", - "fields": { - "name": "Sword of Sharpness (Scimitar)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sword-of-sharpness-shortsword", - "fields": { - "name": "Sword of Sharpness (Shortsword)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sword-of-wounding-greatsword", - "fields": { - "name": "Sword of Wounding (Greatsword)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sword-of-wounding-longsword", - "fields": { - "name": "Sword of Wounding (Longsword)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sword-of-wounding-rapier", - "fields": { - "name": "Sword of Wounding (Rapier)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_sword-of-wounding-shortsword", - "fields": { - "name": "Sword of Wounding (Shortsword)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_talisman-of-pure-good", - "fields": { - "name": "Talisman of Pure Good", - "desc": "This talisman is a mighty symbol of goodness. A creature that is neither good nor evil in alignment takes 6d6 radiant damage upon touching the talisman. An evil creature takes 8d6 radiant damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are a good cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 7 charges. If you are wearing or holding it, you can use an action to expend 1 charge from it and choose one creature you can see on the ground within 120 feet of you. If the target is of evil alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman disperses into motes of golden light and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_talisman-of-the-sphere", - "fields": { - "name": "Talisman of the Sphere", - "desc": "When you make an Intelligence (Arcana) check to control a _sphere of annihilation_ while you are holding this talisman, you double your proficiency bonus on the check. In addition, when you start your turn with control over a _sphere of annihilation_, you can use an action to levitate it 10 feet plus a number of additional feet equal to 10 × your Intelligence modifier.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_talisman-of-ultimate-evil", - "fields": { - "name": "Talisman of Ultimate Evil", - "desc": "This item symbolizes unrepentant evil. A creature that is neither good nor evil in alignment takes 6d6 necrotic damage upon touching the talisman. A good creature takes 8d6 necrotic damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are an evil cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 6 charges. If you are wearing or holding it, you can use an action to expend 1 charge from the talisman and choose one creature you can see on the ground within 120 feet of you. If the target is of good alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman dissolves into foul-smelling slime and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_tent", - "fields": { - "name": "Tent", - "desc": "A simple and portable canvas shelter, a tent sleeps two.", - "document": "srd", - "size": "tiny", - "weight": "20.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_thieves-tools", - "fields": { - "name": "Thieves' tools", - "desc": "This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-­‐‑bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_tinderbox", - "fields": { - "name": "Tinderbox", - "desc": "This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch—or anything else with abundant, exposed fuel—takes an action. Lighting any other fire takes 1 minute.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_tinkers-tools", - "fields": { - "name": "Tinker's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_tome-of-clear-thought", - "fields": { - "name": "Tome of Clear Thought", - "desc": "This book contains memory and logic exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Intelligence score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_tome-of-leadership-and-influence", - "fields": { - "name": "Tome of Leadership and Influence", - "desc": "This book contains guidelines for influencing and charming others, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Charisma score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_tome-of-understanding", - "fields": { - "name": "Tome of Understanding", - "desc": "This book contains intuition and insight exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Wisdom score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_torch", - "fields": { - "name": "Torch", - "desc": "A torch burns for 1 hour, providing bright light in a 20-­‐‑foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_torpor", - "fields": { - "name": "Torpor", - "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 4d6 hours. The poisoned creature is incapacitated.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "600.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_totem", - "fields": { - "name": "Totem", - "desc": "Can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_trident", - "fields": { - "name": "Trident", - "desc": "A trident.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_trident-1", - "fields": { - "name": "Trident (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_trident-2", - "fields": { - "name": "Trident (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_trident-3", - "fields": { - "name": "Trident (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_trident-of-fish-command", - "fields": { - "name": "Trident of Fish Command", - "desc": "This trident is a magic weapon. It has 3 charges. While you carry it, you can use an action and expend 1 charge to cast _dominate beast_ (save DC 15) from it on a beast that has an innate swimming speed. The trident regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_truth-serum", - "fields": { - "name": "Truth serum", - "desc": "A creature subjected to this poison must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. The poisoned creature can't knowingly speak a lie, as if under the effect of a zone of truth spell.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "150.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_universal-solvent", - "fields": { - "name": "Universal Solvent", - "desc": "This tube holds milky liquid with a strong alcohol smell. You can use an action to pour the contents of the tube onto a surface within reach. The liquid instantly dissolves up to 1 square foot of adhesive it touches, including _sovereign glue._", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vial", - "fields": { - "name": "Vial", - "desc": "For holding liquids. Capacity: 4 ounces liquid.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-battleaxe", - "fields": { - "name": "Vicious Weapon (Battleaxe)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-blowgun", - "fields": { - "name": "Vicious Weapon (Blowgun)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-club", - "fields": { - "name": "Vicious Weapon (Club)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-crossbow-hand", - "fields": { - "name": "Vicious Weapon (Crossbow-Hand)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-crossbow-heavy", - "fields": { - "name": "Vicious Weapon (Crossbow-Heavy)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-crossbow-light", - "fields": { - "name": "Vicious Weapon (Crossbow-Light)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-dagger", - "fields": { - "name": "Vicious Weapon (Dagger)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-dart", - "fields": { - "name": "Vicious Weapon (Dart)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-flail", - "fields": { - "name": "Vicious Weapon (Flail)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-glaive", - "fields": { - "name": "Vicious Weapon (Glaive)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-greataxe", - "fields": { - "name": "Vicious Weapon (Greataxe)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-greatclub", - "fields": { - "name": "Vicious Weapon (Greatclub)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-greatsword", - "fields": { - "name": "Vicious Weapon (Greatsword)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-halberd", - "fields": { - "name": "Vicious Weapon (Halberd)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-handaxe", - "fields": { - "name": "Vicious Weapon (Handaxe)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-javelin", - "fields": { - "name": "Vicious Weapon (Javelin)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-lance", - "fields": { - "name": "Vicious Weapon (Lance)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-light-hammer", - "fields": { - "name": "Vicious Weapon (Light-Hammer)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-longbow", - "fields": { - "name": "Vicious Weapon (Longbow)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-longsword", - "fields": { - "name": "Vicious Weapon (Longsword)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-mace", - "fields": { - "name": "Vicious Weapon (Mace)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-maul", - "fields": { - "name": "Vicious Weapon (Maul)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-morningstar", - "fields": { - "name": "Vicious Weapon (Morningstar)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-net", - "fields": { - "name": "Vicious Weapon (Net)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-pike", - "fields": { - "name": "Vicious Weapon (Pike)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-quarterstaff", - "fields": { - "name": "Vicious Weapon (Quarterstaff)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-rapier", - "fields": { - "name": "Vicious Weapon (Rapier)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-scimitar", - "fields": { - "name": "Vicious Weapon (Scimitar)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-shortbow", - "fields": { - "name": "Vicious Weapon (Shortbow)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-shortsword", - "fields": { - "name": "Vicious Weapon (Shortsword)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-sickle", - "fields": { - "name": "Vicious Weapon (Sickle)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-sling", - "fields": { - "name": "Vicious Weapon (Sling)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-spear", - "fields": { - "name": "Vicious Weapon (Spear)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-trident", - "fields": { - "name": "Vicious Weapon (Trident)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-war-pick", - "fields": { - "name": "Vicious Weapon (War-Pick)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-warhammer", - "fields": { - "name": "Vicious Weapon (Warhammer)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vicious-weapon-whip", - "fields": { - "name": "Vicious Weapon (Whip)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_viol", - "fields": { - "name": "Viol", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vorpal-sword-greatsword", - "fields": { - "name": "Vorpal Sword (Greatsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vorpal-sword-longsword", - "fields": { - "name": "Vorpal Sword (Longsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vorpal-sword-scimitar", - "fields": { - "name": "Vorpal Sword (Scimitar)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_vorpal-sword-shortsword", - "fields": { - "name": "Vorpal Sword (Shortsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wagon", - "fields": { - "name": "Wagon", - "desc": "Drawn vehicle.", - "document": "srd", - "size": "large", - "weight": "400.000", - "armor_class": 0, - "hit_points": 0, - "cost": "35.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand", - "fields": { - "name": "Wand", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-binding", - "fields": { - "name": "Wand of Binding", - "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Spells_**. While holding the wand, you can use an action to expend some of its charges to cast one of the following spells (save DC 17): _hold monster_ (5 charges) or _hold person_ (2 charges).\n\n**_Assisted Escape_**. While holding the wand, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained, or you can expend 1 charge and gain advantage on any check you make to escape a grapple.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-enemy-detection", - "fields": { - "name": "Wand of Enemy Detection", - "desc": "This wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For the next minute, you know the direction of the nearest creature hostile to you within 60 feet, but not its distance from you. The wand can sense the presence of hostile creatures that are ethereal, invisible, disguised, or hidden, as well as those in plain sight. The effect ends if you stop holding the wand.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-fear", - "fields": { - "name": "Wand of Fear", - "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Command_**. While holding the wand, you can use an action to expend 1 charge and command another creature to flee or grovel, as with the _command_ spell (save DC 15).\n\n**_Cone of Fear_**. While holding the wand, you can use an action to expend 2 charges, causing the wand's tip to emit a 60-foot cone of amber light. Each creature in the cone must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-fireballs", - "fields": { - "name": "Wand of Fireballs", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _fireball_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-lightning-bolts", - "fields": { - "name": "Wand of Lightning Bolts", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _lightning bolt_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-magic-detection", - "fields": { - "name": "Wand of Magic Detection", - "desc": "This wand has 3 charges. While holding it, you can expend 1 charge as an action to cast the _detect magic_ spell from it. The wand regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-magic-missiles", - "fields": { - "name": "Wand of Magic Missiles", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _magic missile_ spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-paralysis", - "fields": { - "name": "Wand of Paralysis", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cause a thin blue ray to streak from the tip toward a creature you can see within 60 feet of you. The target must succeed on a DC 15 Constitution saving throw or be paralyzed for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a success.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-polymorph", - "fields": { - "name": "Wand of Polymorph", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _polymorph_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-secrets", - "fields": { - "name": "Wand of Secrets", - "desc": "The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges, and if a secret door or trap is within 30 feet of you, the wand pulses and points at the one nearest to you. The wand regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-the-war-mage-1", - "fields": { - "name": "Wand of the War Mage (+1)", - "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-the-war-mage-2", - "fields": { - "name": "Wand of the War Mage (+2)", - "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-the-war-mage-3", - "fields": { - "name": "Wand of the War Mage (+3)", - "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-web", - "fields": { - "name": "Wand of Web", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _web_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wand-of-wonder", - "fields": { - "name": "Wand of Wonder", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and choose a target within 120 feet of you. The target can be a creature, an object, or a point in space. Roll d100 and consult the following table to discover what happens.\n\nIf the effect causes you to cast a spell from the wand, the spell's save DC is 15. If the spell normally has a range expressed in feet, its range becomes 120 feet if it isn't already.\n\nIf an effect covers an area, you must center the spell on and include the target. If an effect has multiple possible subjects, the GM randomly determines which ones are affected.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into dust and is destroyed.\n\n| d100 | Effect |\n|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| 01-05 | You cast slow. 06-10 You cast faerie fire. |\n| 11-15 | You are stunned until the start of your next turn, believing something awesome just happened. 16-20 You cast gust of wind. |\n| 21-25 | You cast detect thoughts on the target you chose. If you didn't target a creature, you instead take 1d6 psychic damage. |\n| 26-30 | You cast stinking cloud. |\n| 31-33 | Heavy rain falls in a 60-foot radius centered on the target. The area becomes lightly obscured. The rain falls until the start of your next turn. |\n| 34-36 | An animal appears in the unoccupied space nearest the target. The animal isn't under your control and acts as it normally would. Roll a d100 to determine which animal appears. On a 01-25, a rhinoceros appears; on a 26-50, an elephant appears; and on a 51-100, a rat appears. |\n| 37-46 | You cast lightning bolt. |\n| 47-49 | A cloud of 600 oversized butterflies fills a 30-foot radius centered on the target. The area becomes heavily obscured. The butterflies remain for 10 minutes. |\n| 50-53 | You enlarge the target as if you had cast enlarge/reduce. If the target can't be affected by that spell, or if you didn't target a creature, you become the target. |\n| 54-58 | You cast darkness. |\n| 59-62 | Grass grows on the ground in a 60-foot radius centered on the target. If grass is already there, it grows to ten times its normal size and remains overgrown for 1 minute. |\n| 63-65 | An object of the GM's choice disappears into the Ethereal Plane. The object must be neither worn nor carried, within 120 feet of the target, and no larger than 10 feet in any dimension. |\n| 66-69 | You shrink yourself as if you had cast enlarge/reduce on yourself. |\n| 70-79 | You cast fireball. |\n| 80-84 | You cast invisibility on yourself. |\n| 85-87 | Leaves grow from the target. If you chose a point in space as the target, leaves sprout from the creature nearest to that point. Unless they are picked off, the leaves turn brown and fall off after 24 hours. |\n| 88-90 | A stream of 1d4 × 10 gems, each worth 1 gp, shoots from the wand's tip in a line 30 feet long and 5 feet wide. Each gem deals 1 bludgeoning damage, and the total damage of the gems is divided equally among all creatures in the line. |\n| 91-95 | A burst of colorful shimmering light extends from you in a 30-foot radius. You and each creature in the area that can see must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. |\n| 96-97 | The target's skin turns bright blue for 1d10 days. If you chose a point in space, the creature nearest to that point is affected. |\n| 98-100 | If you targeted a creature, it must make a DC 15 Constitution saving throw. If you didn't target a creature, you become the target and must make the saving throw. If the saving throw fails by 5 or more, the target is instantly petrified. On any other failed save, the target is restrained and begins to turn to stone. While restrained in this way, the target must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the target is freed by the greater restoration spell or similar magic. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_war-pick", - "fields": { - "name": "War pick", - "desc": "A war pick.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_war-pick-1", - "fields": { - "name": "War-Pick (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_war-pick-2", - "fields": { - "name": "War-Pick (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_war-pick-3", - "fields": { - "name": "War-Pick (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warpick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_warhammer", - "fields": { - "name": "Warhammer", - "desc": "A warhammer.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_warhammer-1", - "fields": { - "name": "Warhammer (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_warhammer-2", - "fields": { - "name": "Warhammer (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_warhammer-3", - "fields": { - "name": "Warhammer (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_warship", - "fields": { - "name": "Warship", - "desc": "Waterborne vehicle. Speed 2.5mph", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_waterskin", - "fields": { - "name": "Waterskin", - "desc": "For drinking. 5lb is the full weight. Capacity: 4 pints liquid.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_weavers-tools", - "fields": { - "name": "Weaver's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_well-of-many-worlds", - "fields": { - "name": "Well of Many Worlds", - "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold and place the _well of many worlds_ on a solid surface, whereupon it creates a two-way portal to another world or plane of existence. Each time the item opens a portal, the GM decides where it leads. You can use an action to close an open portal by taking hold of the edges of the cloth and folding it up. Once _well of many worlds_ has opened a portal, it can't do so again for 1d8 hours.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wheat", - "fields": { - "name": "Wheat", - "desc": "1 pound of wheat.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_whetstone", - "fields": { - "name": "Whetstone", - "desc": "For sharpening.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_whip", - "fields": { - "name": "Whip", - "desc": "A whip.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_whip-1", - "fields": { - "name": "Whip (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_whip-2", - "fields": { - "name": "Whip (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_whip-3", - "fields": { - "name": "Whip (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wind-fan", - "fields": { - "name": "Wind Fan", - "desc": "While holding this fan, you can use an action to cast the _gust of wind_ spell (save DC 13) from it. Once used, the fan shouldn't be used again until the next dawn. Each time it is used again before then, it has a cumulative 20 percent chance of not working and tearing into useless, nonmagical tatters.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_winged-boots", - "fields": { - "name": "Winged Boots", - "desc": "While you wear these boots, you have a flying speed equal to your walking speed. You can use the boots to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land.\r\n\r\nThe boots regain 2 hours of flying capability for every 12 hours they aren't in use.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wings-of-flying", - "fields": { - "name": "Wings of Flying", - "desc": "While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of bat wings or bird wings on your back for 1 hour or until you repeat the command word as an action. The wings give you a flying speed of 60 feet. When they disappear, you can't use them again for 1d12 hours.\r\n\r\n\r\n\r\n\r\n## Sentient Magic Items\r\n\r\nSome magic items possess sentience and personality. Such an item might be possessed, haunted by the spirit of a previous owner, or self-aware thanks to the magic used to create it. In any case, the item behaves like a character, complete with personality quirks, ideals, bonds, and sometimes flaws. A sentient item might be a cherished ally to its wielder or a continual thorn in the side.\r\n\r\nMost sentient items are weapons. Other kinds of items can manifest sentience, but consumable items such as potions and scrolls are never sentient.\r\n\r\nSentient magic items function as NPCs under the GM's control. Any activated property of the item is under the item's control, not its wielder's. As long as the wielder maintains a good relationship with the item, the wielder can access those properties normally. If the relationship is strained, the item can suppress its activated properties or even turn them against the wielder.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } -}, -{ - "model": "api_v2.item", - "pk": "srd_woodcarvers-tools", - "fields": { - "name": "Woodcarver's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wooden-staff", - "fields": { - "name": "Wooden staff", - "desc": "Can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "quarterstaff", - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_wyvern-poison", - "fields": { - "name": "Wyvern poison", - "desc": "This poison must be harvested from a dead or incapacitated wyvern. A creature subjected to this poison must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } -}, -{ - "model": "api_v2.item", - "pk": "srd_yew-wand", - "fields": { - "name": "Yew wand", - "desc": "Can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": null - } -} -] + { + "model": "api_v2.item", + "pk": "srd_abacus", + "fields": { + "name": "Abacus", + "desc": "An abacus.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_acid", + "fields": { + "name": "Acid", + "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_acid-vial", + "fields": { + "name": "Acid (vial)", + "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-breastplate", + "fields": { + "name": "Adamantine Armor (Breastplate)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-chain-mail", + "fields": { + "name": "Adamantine Armor (Chain-Mail)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-chain-shirt", + "fields": { + "name": "Adamantine Armor (Chain-Shirt)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-half-plate", + "fields": { + "name": "Adamantine Armor (Half-Plate)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-hide", + "fields": { + "name": "Adamantine Armor (Hide)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-plate", + "fields": { + "name": "Adamantine Armor (Plate)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-ring-mail", + "fields": { + "name": "Adamantine Armor (Ring-Mail)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-scale-mail", + "fields": { + "name": "Adamantine Armor (Scale-Mail)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_adamantine-armor-splint", + "fields": { + "name": "Adamantine Armor (Splint)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_splint", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_alchemists-fire-flask", + "fields": { + "name": "Alchemist's Fire (Flask)", + "desc": "This sticky, adhesive fluid ignites when exposed to air. As an action, you can throw this flask up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the alchemist's fire as an improvised weapon. On a hit, the target takes 1d4 fire damage at the start of each of its turns. A creature can end this damage by using its action to make a DC 10 Dexterity check to extinguish the flames.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_alchemists-supplies", + "fields": { + "name": "Alchemist's Supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_amulet", + "fields": { + "name": "Amulet", + "desc": "Can be used as a holy symbol.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_amulet-of-health", + "fields": { + "name": "Amulet of Health", + "desc": "Your Constitution score is 19 while you wear this amulet. It has no effect on you if your Constitution is already 19 or higher.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_amulet-of-proof-against-detection-and-location", + "fields": { + "name": "Amulet of Proof against Detection and Location", + "desc": "While wearing this amulet, you are hidden from divination magic. You can't be targeted by such magic or perceived through magical scrying sensors.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_amulet-of-the-planes", + "fields": { + "name": "Amulet of the Planes", + "desc": "While wearing this amulet, you can use an action to name a location that you are familiar with on another plane of existence. Then make a DC 15 Intelligence check. On a successful check, you cast the _plane shift_ spell. On a failure, you and each creature and object within 15 feet of you travel to a random destination. Roll a d100. On a 1-60, you travel to a random location on the plane you named. On a 61-100, you travel to a randomly determined plane of existence.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_animated-shield", + "fields": { + "name": "Animated Shield", + "desc": "While holding this shield, you can speak its command word as a bonus action to cause it to animate. The shield leaps into the air and hovers in your space to protect you as if you were wielding it, leaving your hands free. The shield remains animated for 1 minute, until you use a bonus action to end this effect, or until you are incapacitated or die, at which point the shield falls to the ground or into your hand if you have one free.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_antitoxin-vial", + "fields": { + "name": "Antitoxin (Vial)", + "desc": "A creature that drinks this vial of liquid gains advantage on saving throws against poison for 1 hour. It confers no benefit to undead or constructs.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_apparatus-of-the-crab", + "fields": { + "name": "Apparatus of the Crab", + "desc": "This item first appears to be a Large sealed iron barrel weighing 500 pounds. The barrel has a hidden catch, which can be found with a successful DC 20 Intelligence (Investigation) check. Releasing the catch unlocks a hatch at one end of the barrel, allowing two Medium or smaller creatures to crawl inside. Ten levers are set in a row at the far end, each in a neutral position, able to move either up or down. When certain levers are used, the apparatus transforms to resemble a giant lobster.\r\n\r\nThe apparatus of the Crab is a Large object with the following statistics:\r\n\r\n**Armor Class:** 20\r\n\r\n**Hit Points:** 200\r\n\r\n**Speed:** 30 ft., swim 30 ft. (or 0 ft. for both if the legs and tail aren't extended)\r\n\r\n**Damage Immunities:** poison, psychic\r\n\r\nTo be used as a vehicle, the apparatus requires one pilot. While the apparatus's hatch is closed, the compartment is airtight and watertight. The compartment holds enough air for 10 hours of breathing, divided by the number of breathing creatures inside.\r\n\r\nThe apparatus floats on water. It can also go underwater to a depth of 900 feet. Below that, the vehicle takes 2d6 bludgeoning damage per minute from pressure.\r\n\r\nA creature in the compartment can use an action to move as many as two of the apparatus's levers up or down. After each use, a lever goes back to its neutral position. Each lever, from left to right, functions as shown in the Apparatus of the Crab Levers table.\r\n\r\n**Apparatus of the Crab Levers (table)**\r\n\r\n| Lever | Up | Down |\r\n|-------|----------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 1 | Legs and tail extend, allowing the apparatus to walk and swim. | Legs and tail retract, reducing the apparatus's speed to 0 and making it unable to benefit from bonuses to speed. |\r\n| 2 | Forward window shutter opens. | Forward window shutter closes. |\r\n| 3 | Side window shutters open (two per side). | Side window shutters close (two per side). |\r\n| 4 | Two claws extend from the front sides of the apparatus. | The claws retract. |\r\n| 5 | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: 7 (2d6) bludgeoning damage. | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: The target is grappled (escape DC 15). |\r\n| 6 | The apparatus walks or swims forward. | The apparatus walks or swims backward. |\r\n| 7 | The apparatus turns 90 degrees left. | The apparatus turns 90 degrees right. |\r\n| 8 | Eyelike fixtures emit bright light in a 30-foot radius and dim light for an additional 30 feet. | The light turns off. |\r\n| 9 | The apparatus sinks as much as 20 feet in liquid. | The apparatus rises up to 20 feet in liquid. |\r\n| 10 | The rear hatch unseals and opens. | The rear hatch closes and seals. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_armor-of-invulnerability", + "fields": { + "name": "Armor of Invulnerability", + "desc": "You have resistance to nonmagical damage while you wear this armor. Additionally, you can use an action to make yourself immune to nonmagical damage for 10 minutes or until you are no longer wearing the armor. Once this special action is used, it can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_armor-of-resistance-leather", + "fields": { + "name": "Armor of Resistance (Leather)", + "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_leather", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_armor-of-resistance-padded", + "fields": { + "name": "Armor of Resistance (Padded)", + "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_padded", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_armor-of-resistance-studded-leather", + "fields": { + "name": "Armor of Resistance (Studded-Leather)", + "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_studded-leather", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_armor-of-vulnerability", + "fields": { + "name": "Armor of Vulnerability", + "desc": "While wearing this armor, you have resistance to one of the following damage types: bludgeoning, piercing, or slashing. The GM chooses the type or determines it randomly.\n\n**_Curse_**. This armor is cursed, a fact that is revealed only when an _identify_ spell is cast on the armor or you attune to it. Attuning to the armor curses you until you are targeted by the _remove curse_ spell or similar magic; removing the armor fails to end the curse. While cursed, you have vulnerability to two of the three damage types associated with the armor (not the one to which it grants resistance).", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_arrow-bow", + "fields": { + "name": "Arrow (bow)", + "desc": "An arrow for a bow.", + "document": "srd", + "size": "tiny", + "weight": "0.050", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_arrow-catching-shield", + "fields": { + "name": "Arrow-Catching Shield", + "desc": "You gain a +2 bonus to AC against ranged attacks while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. In addition, whenever an attacker makes a ranged attack against a target within 5 feet of you, you can use your reaction to become the target of the attack instead.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_arrow-of-slaying", + "fields": { + "name": "Arrow of Slaying", + "desc": "An _arrow of slaying_ is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both _arrows of dragon slaying_ and _arrows of blue dragon slaying_. If a creature belonging to the type, race, or group associated with an _arrow of slaying_ takes damage from the arrow, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.\\n\\nOnce an _arrow of slaying_ deals its extra damage to a creature, it becomes a nonmagical arrow.\\n\\nOther types of magic ammunition of this kind exist, such as _bolts of slaying_ meant for a crossbow, though arrows are most common.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_assassins-blood", + "fields": { + "name": "Assassin's Blood", + "desc": "A creature subjected to this poison must make a DC 10 Constitution saving throw. On a failed save, it takes 6 (1d12) poison damage and is poisoned for 24 hours. On a successful save, the creature takes half damage and isn't poisoned.\\n\\n\r\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "150.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_backpack", + "fields": { + "name": "Backpack", + "desc": "A backpack. Capacity: 1 cubic foot/30 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_bag-of-beans", + "fields": { + "name": "Bag of Beans", + "desc": "Inside this heavy cloth bag are 3d4 dry beans. The bag weighs 1/2 pound plus 1/4 pound for each bean it contains.\r\n\r\nIf you dump the bag's contents out on the ground, they explode in a 10-foot radius, extending from the beans. Each creature in the area, including you, must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.\r\n\r\nIf you remove a bean from the bag, plant it in dirt or sand, and then water it, the bean produces an effect 1 minute later from the ground where it was planted. The GM can choose an effect from the following table, determine it randomly, or create an effect.\r\n\r\n| d100 | Effect |\r\n|-------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01 | 5d4 toadstools sprout. If a creature eats a toadstool, roll any die. On an odd roll, the eater must succeed on a DC 15 Constitution saving throw or take 5d6 poison damage and become poisoned for 1 hour. On an even roll, the eater gains 5d6 temporary hit points for 1 hour. |\r\n| 02-10 | A geyser erupts and spouts water, beer, berry juice, tea, vinegar, wine, or oil (GM's choice) 30 feet into the air for 1d12 rounds. |\r\n| 11-20 | A treant sprouts. There's a 50 percent chance that the treant is chaotic evil and attacks. |\r\n| 21-30 | An animate, immobile stone statue in your likeness rises. It makes verbal threats against you. If you leave it and others come near, it describes you as the most heinous of villains and directs the newcomers to find and attack you. If you are on the same plane of existence as the statue, it knows where you are. The statue becomes inanimate after 24 hours. |\r\n| 31-40 | A campfire with blue flames springs forth and burns for 24 hours (or until it is extinguished). |\r\n| 41-50 | 1d6 + 6 shriekers sprout |\r\n| 51-60 | 1d4 + 8 bright pink toads crawl forth. Whenever a toad is touched, it transforms into a Large or smaller monster of the GM's choice. The monster remains for 1 minute, then disappears in a puff of bright pink smoke. |\r\n| 61-70 | A hungry bulette burrows up and attacks. 71-80 A fruit tree grows. It has 1d10 + 20 fruit, 1d8 of which act as randomly determined magic potions, while one acts as an ingested poison of the GM's choice. The tree vanishes after 1 hour. Picked fruit remains, retaining any magic for 30 days. |\r\n| 81-90 | A nest of 1d4 + 3 eggs springs up. Any creature that eats an egg must make a DC 20 Constitution saving throw. On a successful save, a creature permanently increases its lowest ability score by 1, randomly choosing among equally low scores. On a failed save, the creature takes 10d6 force damage from an internal magical explosion. |\r\n| 91-99 | A pyramid with a 60-foot-square base bursts upward. Inside is a sarcophagus containing a mummy lord. The pyramid is treated as the mummy lord's lair, and its sarcophagus contains treasure of the GM's choice. |\r\n| 100 | A giant beanstalk sprouts, growing to a height of the GM's choice. The top leads where the GM chooses, such as to a great view, a cloud giant's castle, or a different plane of existence. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bag-of-devouring", + "fields": { + "name": "Bag of Devouring", + "desc": "This bag superficially resembles a _bag of holding_ but is a feeding orifice for a gigantic extradimensional creature. Turning the bag inside out closes the orifice.\r\n\r\nThe extradimensional creature attached to the bag can sense whatever is placed inside the bag. Animal or vegetable matter placed wholly in the bag is devoured and lost forever. When part of a living creature is placed in the bag, as happens when someone reaches inside it, there is a 50 percent chance that the creature is pulled inside the bag. A creature inside the bag can use its action to try to escape with a successful DC 15 Strength check. Another creature can use its action to reach into the bag to pull a creature out, doing so with a successful DC 20 Strength check (provided it isn't pulled inside the bag first). Any creature that starts its turn inside the bag is devoured, its body destroyed.\r\n\r\nInanimate objects can be stored in the bag, which can hold a cubic foot of such material. However, once each day, the bag swallows any objects inside it and spits them out into another plane of existence. The GM determines the time and plane.\r\n\r\nIf the bag is pierced or torn, it is destroyed, and anything contained within it is transported to a random location on the Astral Plane.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bag-of-holding", + "fields": { + "name": "Bag of Holding", + "desc": "This bag has an interior space considerably larger than its outside dimensions, roughly 2 feet in diameter at the mouth and 4 feet deep. The bag can hold up to 500 pounds, not exceeding a volume of 64 cubic feet. The bag weighs 15 pounds, regardless of its contents. Retrieving an item from the bag requires an action.\r\n\r\nIf the bag is overloaded, pierced, or torn, it ruptures and is destroyed, and its contents are scattered in the Astral Plane. If the bag is turned inside out, its contents spill forth, unharmed, but the bag must be put right before it can be used again. Breathing creatures inside the bag can survive up to a number of minutes equal to 10 divided by the number of creatures (minimum 1 minute), after which time they begin to suffocate.\r\n\r\nPlacing a _bag of holding_ inside an extradimensional space created by a _handy haversack_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it to a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bag-of-tricks", + "fields": { + "name": "Bag of Tricks", + "desc": "This ordinary bag, made from gray, rust, or tan cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\r\n\r\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a d8 and consulting the table that corresponds to the bag's color.\r\n\r\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\r\n\r\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.\r\n\r\n**Gray Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Weasel |\r\n| 2 | Giant rat |\r\n| 3 | Badger |\r\n| 4 | Boar |\r\n| 5 | Panther |\r\n| 6 | Giant badger |\r\n| 7 | Dire wolf |\r\n| 8 | Giant elk |\r\n\r\n**Rust Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|------------|\r\n| 1 | Rat |\r\n| 2 | Owl |\r\n| 3 | Mastiff |\r\n| 4 | Goat |\r\n| 5 | Giant goat |\r\n| 6 | Giant boar |\r\n| 7 | Lion |\r\n| 8 | Brown bear |\r\n\r\n**Tan Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Jackal |\r\n| 2 | Ape |\r\n| 3 | Baboon |\r\n| 4 | Axe beak |\r\n| 5 | Black bear |\r\n| 6 | Giant weasel |\r\n| 7 | Giant hyena |\r\n| 8 | Tiger |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bagpipes", + "fields": { + "name": "Bagpipes", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_ball-bearings-bag-of-1000", + "fields": { + "name": "Ball Bearings (bag of 1000)", + "desc": "As an action, you can spill these tiny metal balls from their pouch to cover a level, square area that is 10 feet on a side. A creature moving across the covered area must succeed on a DC 10 Dexterity saving throw or fall prone. A creature moving through the area at half speed doesn't need to make the save.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_barrel", + "fields": { + "name": "Barrel", + "desc": "A barrel. Capacity: 40 gallons liquid, 4 cubic feet solid.", + "document": "srd", + "size": "medium", + "weight": "70.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_basket", + "fields": { + "name": "Basket", + "desc": "A basket. Capacity: 2 cubic feet/40 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.40", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_battleaxe", + "fields": { + "name": "Battleaxe", + "desc": "A battleaxe.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_battleaxe-1", + "fields": { + "name": "Battleaxe (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_battleaxe-2", + "fields": { + "name": "Battleaxe (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_battleaxe-3", + "fields": { + "name": "Battleaxe (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bead-of-force", + "fields": { + "name": "Bead of Force", + "desc": "This small black sphere measures 3/4 of an inch in diameter and weighs an ounce. Typically, 1d4 + 4 _beads of force_ are found together.\r\n\r\nYou can use an action to throw the bead up to 60 feet. The bead explodes on impact and is destroyed. Each creature within a 10-foot radius of where the bead landed must succeed on a DC 15 Dexterity saving throw or take 5d4 force damage. A sphere of transparent force then encloses the area for 1 minute. Any creature that failed the save and is completely within the area is trapped inside this sphere. Creatures that succeeded on the save, or are partially within the area, are pushed away from the center of the sphere until they are no longer inside it. Only breathable air can pass through the sphere's wall. No attack or other effect can.\r\n\r\nAn enclosed creature can use its action to push against the sphere's wall, moving the sphere up to half the creature's walking speed. The sphere can be picked up, and its magic causes it to weigh only 1 pound, regardless of the weight of creatures inside.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bedroll", + "fields": { + "name": "Bedroll", + "desc": "A bedroll.", + "document": "srd", + "size": "tiny", + "weight": "7.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_bell", + "fields": { + "name": "Bell", + "desc": "A bell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-cloud-giant-strength", + "fields": { + "name": "Belt of Cloud Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-dwarvenkind", + "fields": { + "name": "Belt of Dwarvenkind", + "desc": "While wearing this belt, you gain the following benefits:\r\n\r\n* Your Constitution score increases by 2, to a maximum of 20.\r\n* You have advantage on Charisma (Persuasion) checks made to interact with dwarves.\r\n\r\nIn addition, while attuned to the belt, you have a 50 percent chance each day at dawn of growing a full beard if you're capable of growing one, or a visibly thicker beard if you already have one.\r\n\r\nIf you aren't a dwarf, you gain the following additional benefits while wearing the belt:\r\n\r\n* You have advantage on saving throws against poison, and you have resistance against poison damage.\r\n* You have darkvision out to a range of 60 feet.\r\n* You can speak, read, and write Dwarvish.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-fire-giant-strength", + "fields": { + "name": "Belt of Fire Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-frost-giant-strength", + "fields": { + "name": "Belt of Frost Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-hill-giant-strength", + "fields": { + "name": "Belt of Hill Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-stone-giant-strength", + "fields": { + "name": "Belt of Stone Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_belt-of-storm-giant-strength", + "fields": { + "name": "Belt of Storm Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_blanket", + "fields": { + "name": "Blanket", + "desc": "A blanket.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_block-and-tackle", + "fields": { + "name": "Block and Tackle", + "desc": "A set of pulleys with a cable threaded through them and a hook to attach to objects, a block and tackle allows you to hoist up to four times the weight you can normally lift.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_blowgun", + "fields": { + "name": "Blowgun", + "desc": "A blowgun.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_blowgun-1", + "fields": { + "name": "Blowgun (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_blowgun-2", + "fields": { + "name": "Blowgun (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_blowgun-3", + "fields": { + "name": "Blowgun (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_blowgun-needles", + "fields": { + "name": "Blowgun needles", + "desc": "Needles to be fired with a blowgun.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_book", + "fields": { + "name": "Book", + "desc": "A book might contain poetry, historical accounts, information pertaining to a particular field of lore, diagrams and notes on gnomish contraptions, or just about anything else that can be represented using text or pictures. A book of spells is a spellbook (described later in this section).", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_boots-of-elvenkind", + "fields": { + "name": "Boots of Elvenkind", + "desc": "While you wear these boots, your steps make no sound, regardless of the surface you are moving across. You also have advantage on Dexterity (Stealth) checks that rely on moving silently.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_boots-of-levitation", + "fields": { + "name": "Boots of Levitation", + "desc": "While you wear these boots, you can use an action to cast the _levitate_ spell on yourself at will.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_boots-of-speed", + "fields": { + "name": "Boots of Speed", + "desc": "While you wear these boots, you can use a bonus action and click the boots' heels together. If you do, the boots double your walking speed, and any creature that makes an opportunity attack against you has disadvantage on the attack roll. If you click your heels together again, you end the effect.\r\n\r\nWhen the boots' property has been used for a total of 10 minutes, the magic ceases to function until you finish a long rest.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_boots-of-striding-and-springing", + "fields": { + "name": "Boots of Striding and Springing", + "desc": "While you wear these boots, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced if you are encumbered or wearing heavy armor. In addition, you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_boots-of-the-winterlands", + "fields": { + "name": "Boots of the Winterlands", + "desc": "These furred boots are snug and feel quite warm. While you wear them, you gain the following benefits:\r\n\r\n* You have resistance to cold damage.\r\n* You ignore difficult terrain created by ice or snow.\r\n* You can tolerate temperatures as low as -50 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as -100 degrees Fahrenheit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bottle-glass", + "fields": { + "name": "Bottle, glass", + "desc": "A glass bottle. Capacity: 1.5 pints liquid.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_bowl-of-commanding-water-elementals", + "fields": { + "name": "Bowl of Commanding Water Elementals", + "desc": "While this bowl is filled with water, you can use an action to speak the bowl's command word and summon a water elemental, as if you had cast the _conjure elemental_ spell. The bowl can't be used this way again until the next dawn.\r\n\r\nThe bowl is about 1 foot in diameter and half as deep. It weighs 3 pounds and holds about 3 gallons.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bracers-of-archery", + "fields": { + "name": "Bracers of Archery", + "desc": "While wearing these bracers, you have proficiency with the longbow and shortbow, and you gain a +2 bonus to damage rolls on ranged attacks made with such weapons.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bracers-of-defense", + "fields": { + "name": "Bracers of Defense", + "desc": "While wearing these bracers, you gain a +2 bonus to AC if you are wearing no armor and using no shield.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_brazier-of-commanding-fire-elementals", + "fields": { + "name": "Brazier of Commanding Fire Elementals", + "desc": "While a fire burns in this brass brazier, you can use an action to speak the brazier's command word and summon a fire elemental, as if you had cast the _conjure elemental_ spell. The brazier can't be used this way again until the next dawn.\r\n\r\nThe brazier weighs 5 pounds.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_breastplate", + "fields": { + "name": "Breastplate", + "desc": "This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.", + "document": "srd", + "size": "tiny", + "weight": "20.000", + "armor_class": 0, + "hit_points": 0, + "cost": "400.00", + "weapon": null, + "armor": "srd_breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_brewers-supplies", + "fields": { + "name": "Brewer's Supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "9.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_brooch-of-shielding", + "fields": { + "name": "Brooch of Shielding", + "desc": "While wearing this brooch, you have resistance to force damage, and you have immunity to damage from the _magic missile_ spell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_broom-of-flying", + "fields": { + "name": "Broom of Flying", + "desc": "This wooden broom, which weighs 3 pounds, functions like a mundane broom until you stand astride it and speak its command word. It then hovers beneath you and can be ridden in the air. It has a flying speed of 50 feet. It can carry up to 400 pounds, but its flying speed becomes 30 feet while carrying over 200 pounds. The broom stops hovering when you land.\r\n\r\nYou can send the broom to travel alone to a destination within 1 mile of you if you speak the command word, name the location, and are familiar with that place. The broom comes back to you when you speak another command word, provided that the broom is still within 1 mile of you.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_bucket", + "fields": { + "name": "Bucket", + "desc": "A bucket. Capacity: 3 gallons liquid, 1/2 cubic foot solid.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_burnt-othur-fumes", + "fields": { + "name": "Burnt othur fumes", + "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or take 10 (3d6) poison damage, and must repeat the saving throw at the start of each of its turns. On each successive failed save, the character takes 3 (1d6) poison damage. After three successful saves, the poison ends.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "500.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_calligraphers-supplies", + "fields": { + "name": "Calligrapher's supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_caltrops-bag-of-20", + "fields": { + "name": "Caltrops (bag of 20)", + "desc": "As an action, you can spread a bag of caltrops to cover a square area that is 5 feet on a side. Any creature that enters the area must succeed on a DC 15 Dexterity saving throw or stop moving this turn and take 1 piercing damage. Taking this damage reduces the creature's walking speed by 10 feet until the creature regains at least 1 hit point. A creature moving through the area at half speed doesn't need to make the save.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_candle", + "fields": { + "name": "Candle", + "desc": "For 1 hour, a candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_candle-of-invocation", + "fields": { + "name": "Candle of Invocation", + "desc": "This slender taper is dedicated to a deity and shares that deity's alignment. The candle's alignment can be detected with the _detect evil and good_ spell. The GM chooses the god and associated alignment or determines the alignment randomly.\r\n\r\n| d20 | Alignment |\r\n|-------|-----------------|\r\n| 1-2 | Chaotic evil |\r\n| 3-4 | Chaotic neutral |\r\n| 5-7 | Chaotic good |\r\n| 8-9 | Neutral evil |\r\n| 10-11 | Neutral |\r\n| 12-13 | Neutral good |\r\n| 14-15 | Lawful evil |\r\n| 16-17 | Lawful neutral |\r\n| 18-20 | Lawful good |\r\n\r\nThe candle's magic is activated when the candle is lit, which requires an action. After burning for 4 hours, the candle is destroyed. You can snuff it out early for use at a later time. Deduct the time it burned in increments of 1 minute from the candle's total burn time.\r\n\r\nWhile lit, the candle sheds dim light in a 30-foot radius. Any creature within that light whose alignment matches that of the candle makes attack rolls, saving throws, and ability checks with advantage. In addition, a cleric or druid in the light whose alignment matches the candle's can cast 1st* level spells he or she has prepared without expending spell slots, though the spell's effect is as if cast with a 1st-level slot.\r\n\r\nAlternatively, when you light the candle for the first time, you can cast the _gate_ spell with it. Doing so destroys the candle.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_canvas", + "fields": { + "name": "Canvas", + "desc": "1 sq. yd. of canvas", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cape-of-the-mountebank", + "fields": { + "name": "Cape of the Mountebank", + "desc": "This cape smells faintly of brimstone. While wearing it, you can use it to cast the _dimension door_ spell as an action. This property of the cape can't be used again until the next dawn.\r\n\r\nWhen you disappear, you leave behind a cloud of smoke, and you appear in a similar cloud of smoke at your destination. The smoke lightly obscures the space you left and the space you appear in, and it dissipates at the end of your next turn. A light or stronger wind disperses the smoke.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_carpenters-tools", + "fields": { + "name": "Carpenter's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "8.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_carpet-of-flying", + "fields": { + "name": "Carpet of Flying", + "desc": "You can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.\r\n\r\nFour sizes of _carpet of flying_ exist. The GM chooses the size of a given carpet or determines it randomly.\r\n\r\n| d100 | Size | Capacity | Flying Speed |\r\n|--------|---------------|----------|--------------|\r\n| 01-20 | 3 ft. × 5 ft. | 200 lb. | 80 feet |\r\n| 21-55 | 4 ft. × 6 ft. | 400 lb. | 60 feet |\r\n| 56-80 | 5 ft. × 7 ft. | 600 lb. | 40 feet |\r\n| 81-100 | 6 ft. × 9 ft. | 800 lb. | 30 feet |\r\n\r\nA carpet can carry up to twice the weight shown on the table, but it flies at half speed if it carries more than its normal capacity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_carriage", + "fields": { + "name": "Carriage", + "desc": "Drawn vehicle.", + "document": "srd", + "size": "huge", + "weight": "600.000", + "armor_class": 0, + "hit_points": 0, + "cost": "100.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cart", + "fields": { + "name": "Cart", + "desc": "Drawn vehicle", + "document": "srd", + "size": "large", + "weight": "200.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cartographers-tools", + "fields": { + "name": "Cartographer's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_case-crossbow-bolt", + "fields": { + "name": "Case, Crossbow Bolt", + "desc": "This wooden case can hold up to twenty crossbow bolts.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_case-map-or-scroll", + "fields": { + "name": "Case, Map or Scroll", + "desc": "This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_censer-of-controlling-air-elementals", + "fields": { + "name": "Censer of Controlling Air Elementals", + "desc": "While incense is burning in this censer, you can use an action to speak the censer's command word and summon an air elemental, as if you had cast the _conjure elemental_ spell. The censer can't be used this way again until the next dawn.\r\n\r\nThis 6-inch-wide, 1-foot-high vessel resembles a chalice with a decorated lid. It weighs 1 pound.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_chain-10-feet", + "fields": { + "name": "Chain (10 feet)", + "desc": "A chain has 10 hit points. It can be burst with a successful DC 20 Strength check.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chain-mail", + "fields": { + "name": "Chain mail", + "desc": "Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.", + "document": "srd", + "size": "tiny", + "weight": "55.000", + "armor_class": 0, + "hit_points": 0, + "cost": "75.00", + "weapon": null, + "armor": "srd_chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chain-shirt", + "fields": { + "name": "Chain shirt", + "desc": "Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.", + "document": "srd", + "size": "tiny", + "weight": "20.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": "srd_chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chalk-1-piece", + "fields": { + "name": "Chalk (1 piece)", + "desc": "A piece of chalk.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chariot", + "fields": { + "name": "Chariot", + "desc": "Drawn vehicle.", + "document": "srd", + "size": "large", + "weight": "100.000", + "armor_class": 0, + "hit_points": 0, + "cost": "250.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chest", + "fields": { + "name": "Chest", + "desc": "A chest. Capacity: 12 cubic feet/300 pounds of gear.", + "document": "srd", + "size": "small", + "weight": "25.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chicken", + "fields": { + "name": "Chicken", + "desc": "One chicken", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_chime-of-opening", + "fields": { + "name": "Chime of Opening", + "desc": "This hollow metal tube measures about 1 foot long and weighs 1 pound. You can strike it as an action, pointing it at an object within 120 feet of you that can be opened, such as a door, lid, or lock. The chime issues a clear tone, and one lock or latch on the object opens unless the sound can't reach the object. If no locks or latches remain, the object itself opens.\r\n\r\nThe chime can be used ten times. After the tenth time, it cracks and becomes useless.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cinnamon", + "fields": { + "name": "Cinnamon", + "desc": "1lb of cinnamon", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_circlet-of-blasting", + "fields": { + "name": "Circlet of Blasting", + "desc": "While wearing this circlet, you can use an action to cast the _scorching ray_ spell with it. When you make the spell's attacks, you do so with an attack bonus of +5. The circlet can't be used this way again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_climbers-kit", + "fields": { + "name": "Climber's Kit", + "desc": "A climber's kit includes special pitons, boot tips, gloves, and a harness. You can use the climber's kit as an action to anchor yourself; when you do, you can't fall more than 25 feet from the point where you anchored yourself, and you can't climb more than 25 feet away from that point without undoing the anchor.", + "document": "srd", + "size": "tiny", + "weight": "12.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloak-of-arachnida", + "fields": { + "name": "Cloak of Arachnida", + "desc": "This fine garment is made of black silk interwoven with faint silvery threads. While wearing it, you gain the following benefits:\r\n\r\n* You have resistance to poison damage.\r\n* You have a climbing speed equal to your walking speed.\r\n* You can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free.\r\n* You can't be caught in webs of any sort and can move through webs as if they were difficult terrain.\r\n* You can use an action to cast the _web_ spell (save DC 13). The web created by the spell fills twice its normal area. Once used, this property of the cloak can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloak-of-displacement", + "fields": { + "name": "Cloak of Displacement", + "desc": "While you wear this cloak, it projects an illusion that makes you appear to be standing in a place near your actual location, causing any creature to have disadvantage on attack rolls against you. If you take damage, the property ceases to function until the start of your next turn. This property is suppressed while you are incapacitated, restrained, or otherwise unable to move.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloak-of-elvenkind", + "fields": { + "name": "Cloak of Elvenkind", + "desc": "While you wear this cloak with its hood up, Wisdom (Perception) checks made to see you have disadvantage, and you have advantage on Dexterity (Stealth) checks made to hide, as the cloak's color shifts to camouflage you. Pulling the hood up or down requires an action.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloak-of-protection", + "fields": { + "name": "Cloak of Protection", + "desc": "You gain a +1 bonus to AC and saving throws while you wear this cloak.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloak-of-the-bat", + "fields": { + "name": "Cloak of the Bat", + "desc": "While wearing this cloak, you have advantage on Dexterity (Stealth) checks. In an area of dim light or darkness, you can grip the edges of the cloak with both hands and use it to fly at a speed of 40 feet. If you ever fail to grip the cloak's edges while flying in this way, or if you are no longer in dim light or darkness, you lose this flying speed.\r\n\r\nWhile wearing the cloak in an area of dim light or darkness, you can use your action to cast _polymorph_ on yourself, transforming into a bat. While you are in the form of the bat, you retain your Intelligence, Wisdom, and Charisma scores. The cloak can't be used this way again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloak-of-the-manta-ray", + "fields": { + "name": "Cloak of the Manta Ray", + "desc": "While wearing this cloak with its hood up, you can breathe underwater, and you have a swimming speed of 60 feet. Pulling the hood up or down requires an action.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_clothes-common", + "fields": { + "name": "Clothes, Common", + "desc": "Common clothes.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_clothes-costume", + "fields": { + "name": "Clothes, costume", + "desc": "A costume.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_clothes-fine", + "fields": { + "name": "Clothes, fine", + "desc": "Fine clothing.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_clothes-travelers", + "fields": { + "name": "Clothes, traveler's", + "desc": "Traveler's clothing.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cloves", + "fields": { + "name": "Cloves", + "desc": "1lb of cloves.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "3.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_club", + "fields": { + "name": "Club", + "desc": "A club", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_club-1", + "fields": { + "name": "Club (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_club-2", + "fields": { + "name": "Club (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_club-3", + "fields": { + "name": "Club (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cobblers-tools", + "fields": { + "name": "Cobbler's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_component-pouch", + "fields": { + "name": "Component Pouch", + "desc": "A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cooks-utensils", + "fields": { + "name": "Cook's utensils", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_copper", + "fields": { + "name": "Copper", + "desc": "1lb of copper.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_copper-piece", + "fields": { + "name": "Copper Piece", + "desc": "One silver piece is worth ten copper pieces, which are common among laborers and beggars. A single copper piece buys a candle, a torch, or a piece of chalk.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cotton-cloth", + "fields": { + "name": "Cotton Cloth", + "desc": "1 sq. yd. of cotton cloth.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_cow", + "fields": { + "name": "Cow", + "desc": "One cow.", + "document": "srd", + "size": "large", + "weight": "1000.000", + "armor_class": 10, + "hit_points": 15, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crawler-mucus", + "fields": { + "name": "Crawler mucus", + "desc": "This poison must be harvested from a dead or incapacitated crawler. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. The poisoned creature is paralyzed. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\\n\\n\r\n**_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-bolt", + "fields": { + "name": "Crossbow bolt", + "desc": "Bolts to be used in a crossbow.", + "document": "srd", + "size": "tiny", + "weight": "0.080", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-hand", + "fields": { + "name": "Crossbow, hand", + "desc": "A hand crossbow.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "75.00", + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-hand-1", + "fields": { + "name": "Crossbow-Hand (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-hand-2", + "fields": { + "name": "Crossbow-Hand (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-hand-3", + "fields": { + "name": "Crossbow-Hand (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-heavy", + "fields": { + "name": "Crossbow, heavy", + "desc": "A heavy crossbow", + "document": "srd", + "size": "tiny", + "weight": "18.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-heavy-1", + "fields": { + "name": "Crossbow-Heavy (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-heavy-2", + "fields": { + "name": "Crossbow-Heavy (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-heavy-3", + "fields": { + "name": "Crossbow-Heavy (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-light", + "fields": { + "name": "Crossbow, light", + "desc": "A light crossbow.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-light-1", + "fields": { + "name": "Crossbow-Light (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-light-2", + "fields": { + "name": "Crossbow-Light (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crossbow-light-3", + "fields": { + "name": "Crossbow-Light (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crowbar", + "fields": { + "name": "Crowbar", + "desc": "Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crystal", + "fields": { + "name": "Crystal", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_crystal-ball", + "fields": { + "name": "Crystal Ball", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crystal-ball-of-mind-reading", + "fields": { + "name": "Crystal Ball of Mind Reading", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nYou can use an action to cast the detect thoughts spell (save DC 17) while you are scrying with the crystal ball, targeting creatures you can see within 30 feet of the spell's sensor. You don't need to concentrate on this detect thoughts to maintain it during its duration, but it ends if scrying ends.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crystal-ball-of-telepathy", + "fields": { + "name": "Crystal Ball of Telepathy", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nThe following crystal ball variants are legendary items and have additional properties.\r\n\r\nWhile scrying with the crystal ball, you can communicate telepathically with creatures you can see within 30 feet of the spell's sensor. You can also use an action to cast the suggestion spell (save DC 17) through the sensor on one of those creatures. You don't need to concentrate on this suggestion to maintain it during its duration, but it ends if scrying ends. Once used, the suggestion power of the crystal ball can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_crystal-ball-of-true-seeing", + "fields": { + "name": "Crystal Ball of True Seeing", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nWhile scrying with the crystal ball, you have truesight with a radius of 120 feet centered on the spell's sensor.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cube-of-force", + "fields": { + "name": "Cube of Force", + "desc": "This cube is about an inch across. Each face has a distinct marking on it that can be pressed. The cube starts with 36 charges, and it regains 1d20 expended charges daily at dawn.\r\n\r\nYou can use an action to press one of the cube's faces, expending a number of charges based on the chosen face, as shown in the Cube of Force Faces table. Each face has a different effect. If the cube has insufficient charges remaining, nothing happens. Otherwise, a barrier of invisible force springs into existence, forming a cube 15 feet on a side. The barrier is centered on you, moves with you, and lasts for 1 minute, until you use an action to press the cube's sixth face, or the cube runs out of charges. You can change the barrier's effect by pressing a different face of the cube and expending the requisite number of charges, resetting the duration.\r\n\r\nIf your movement causes the barrier to come into contact with a solid object that can't pass through the cube, you can't move any closer to that object as long as the barrier remains.\r\n\r\n**Cube of Force Faces (table)**\r\n\r\n| Face | Charges | Effect |\r\n|------|---------|-------------------------------------------------------------------------------------------------------------------|\r\n| 1 | 1 | Gases, wind, and fog can't pass through the barrier. |\r\n| 2 | 2 | Nonliving matter can't pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 3 | 3 | Living matter can't pass through the barrier. |\r\n| 4 | 4 | Spell effects can't pass through the barrier. |\r\n| 5 | 5 | Nothing can pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 6 | 0 | The barrier deactivates. |\r\n\r\nThe cube loses charges when the barrier is targeted by certain spells or comes into contact with certain spell or magic item effects, as shown in the table below.\r\n\r\n| Spell or Item | Charges Lost |\r\n|------------------|--------------|\r\n| Disintegrate | 1d12 |\r\n| Horn of blasting | 1d10 |\r\n| Passwall | 1d6 |\r\n| Prismatic spray | 1d20 |\r\n| Wall of fire | 1d4 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_cubic-gate", + "fields": { + "name": "Cubic Gate", + "desc": "This cube is 3 inches across and radiates palpable magical energy. The six sides of the cube are each keyed to a different plane of existence, one of which is the Material Plane. The other sides are linked to planes determined by the GM.\r\n\r\nYou can use an action to press one side of the cube to cast the _gate_ spell with it, opening a portal to the plane keyed to that side. Alternatively, if you use an action to press one side twice, you can cast the _plane shift_ spell (save DC 17) with the cube and transport the targets to the plane keyed to that side.\r\n\r\nThe cube has 3 charges. Each use of the cube expends 1 charge. The cube regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dagger", + "fields": { + "name": "Dagger", + "desc": "A dagger.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dagger-1", + "fields": { + "name": "Dagger (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dagger-2", + "fields": { + "name": "Dagger (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dagger-3", + "fields": { + "name": "Dagger (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dagger-of-venom", + "fields": { + "name": "Dagger of Venom", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nYou can use an action to cause thick, black poison to coat the blade. The poison remains for 1 minute or until an attack using this weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or take 2d10 poison damage and become poisoned for 1 minute. The dagger can't be used this way again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dancing-sword-greatsword", + "fields": { + "name": "Dancing Sword (Greatsword)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dancing-sword-longsword", + "fields": { + "name": "Dancing Sword (Longsword)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dancing-sword-rapier", + "fields": { + "name": "Dancing Sword (Rapier)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dancing-sword-shortsword", + "fields": { + "name": "Dancing Sword (Shortsword)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dart", + "fields": { + "name": "Dart", + "desc": "A dart.", + "document": "srd", + "size": "tiny", + "weight": "0.250", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dart-1", + "fields": { + "name": "Dart (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dart-2", + "fields": { + "name": "Dart (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dart-3", + "fields": { + "name": "Dart (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_decanter-of-endless-water", + "fields": { + "name": "Decanter of Endless Water", + "desc": "This stoppered flask sloshes when shaken, as if it contains water. The decanter weighs 2 pounds.\r\n\r\nYou can use an action to remove the stopper and speak one of three command words, whereupon an amount of fresh water or salt water (your choice) pours out of the flask. The water stops pouring out at the start of your next turn. Choose from the following options:\r\n\r\n* \"Stream\" produces 1 gallon of water.\r\n* \"Fountain\" produces 5 gallons of water.\r\n* \"Geyser\" produces 30 gallons of water that gushes forth in a geyser 30 feet long and 1 foot wide. As a bonus action while holding the decanter, you can aim the geyser at a creature you can see within 30 feet of you. The target must succeed on a DC 13 Strength saving throw or take 1d4 bludgeoning damage and fall prone. Instead of a creature, you can target an object that isn't being worn or carried and that weighs no more than 200 pounds. The object is either knocked over or pushed up to 15 feet away from you.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_deck-of-illusions", + "fields": { + "name": "Deck of Illusions", + "desc": "This box contains a set of parchment cards. A full deck has 34 cards. A deck found as treasure is usually missing 1d20 - 1 cards.\r\n\r\nThe magic of the deck functions only if cards are drawn at random (you can use an altered deck of playing cards to simulate the deck). You can use an action to draw a card at random from the deck and throw it to the ground at a point within 30 feet of you.\r\n\r\nAn illusion of one or more creatures forms over the thrown card and remains until dispelled. An illusory creature appears real, of the appropriate size, and behaves as if it were a real creature except that it can do no harm. While you are within 120 feet of the illusory creature and can see it, you can use an action to move it magically anywhere within 30 feet of its card. Any physical interaction with the illusory creature reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect the creature identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The creature then appears translucent.\r\n\r\nThe illusion lasts until its card is moved or the illusion is dispelled. When the illusion ends, the image on its card disappears, and that card can't be used again.\r\n\r\n| Playing Card | Illusion |\r\n|-------------------|----------------------------------|\r\n| Ace of hearts | Red dragon |\r\n| King of hearts | Knight and four guards |\r\n| Queen of hearts | Succubus or incubus |\r\n| Jack of hearts | Druid |\r\n| Ten of hearts | Cloud giant |\r\n| Nine of hearts | Ettin |\r\n| Eight of hearts | Bugbear |\r\n| Two of hearts | Goblin |\r\n| Ace of diamonds | Beholder |\r\n| King of diamonds | Archmage and mage apprentice |\r\n| Queen of diamonds | Night hag |\r\n| Jack of diamonds | Assassin |\r\n| Ten of diamonds | Fire giant |\r\n| Nine of diamonds | Ogre mage |\r\n| Eight of diamonds | Gnoll |\r\n| Two of diamonds | Kobold |\r\n| Ace of spades | Lich |\r\n| King of spades | Priest and two acolytes |\r\n| Queen of spades | Medusa |\r\n| Jack of spades | Veteran |\r\n| Ten of spades | Frost giant |\r\n| Nine of spades | Troll |\r\n| Eight of spades | Hobgoblin |\r\n| Two of spades | Goblin |\r\n| Ace of clubs | Iron golem |\r\n| King of clubs | Bandit captain and three bandits |\r\n| Queen of clubs | Erinyes |\r\n| Jack of clubs | Berserker |\r\n| Ten of clubs | Hill giant |\r\n| Nine of clubs | Ogre |\r\n| Eight of clubs | Orc |\r\n| Two of clubs | Kobold |\r\n| Jokers (2) | You (the deck's owner) |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_deck-of-many-things", + "fields": { + "name": "Deck of Many Things", + "desc": "Usually found in a box or pouch, this deck contains a number of cards made of ivory or vellum. Most (75 percent) of these decks have only thirteen cards, but the rest have twenty-two.\r\n\r\nBefore you draw a card, you must declare how many cards you intend to draw and then draw them randomly (you can use an altered deck of playing cards to simulate the deck). Any cards drawn in excess of this number have no effect. Otherwise, as soon as you draw a card from the deck, its magic takes effect. You must draw each card no more than 1 hour after the previous draw. If you fail to draw the chosen number, the remaining number of cards fly from the deck on their own and take effect all at once.\r\n\r\nOnce a card is drawn, it fades from existence. Unless the card is the Fool or the Jester, the card reappears in the deck, making it possible to draw the same card twice.\r\n\r\n| Playing Card | Card |\r\n|--------------------|-------------|\r\n| Ace of diamonds | Vizier\\* |\r\n| King of diamonds | Sun |\r\n| Queen of diamonds | Moon |\r\n| Jack of diamonds | Star |\r\n| Two of diamonds | Comet\\* |\r\n| Ace of hearts | The Fates\\* |\r\n| King of hearts | Throne |\r\n| Queen of hearts | Key |\r\n| Jack of hearts | Knight |\r\n| Two of hearts | Gem\\* |\r\n| Ace of clubs | Talons\\* |\r\n| King of clubs | The Void |\r\n| Queen of clubs | Flames |\r\n| Jack of clubs | Skull |\r\n| Two of clubs | Idiot\\* |\r\n| Ace of spades | Donjon\\* |\r\n| King of spades | Ruin |\r\n| Queen of spades | Euryale |\r\n| Jack of spades | Rogue |\r\n| Two of spades | Balance\\* |\r\n| Joker (with TM) | Fool\\* |\r\n| Joker (without TM) | Jester |\r\n\r\n\\*Found only in a deck with twenty-two cards\r\n\r\n**_Balance_**. Your mind suffers a wrenching alteration, causing your alignment to change. Lawful becomes chaotic, good becomes evil, and vice versa. If you are true neutral or unaligned, this card has no effect on you.\r\n\r\n**_Comet_**. If you single-handedly defeat the next hostile monster or group of monsters you encounter, you gain experience points enough to gain one level. Otherwise, this card has no effect.\r\n\r\n**_Donjon_**. You disappear and become entombed in a state of suspended animation in an extradimensional sphere. Everything you were wearing and carrying stays behind in the space you occupied when you disappeared. You remain imprisoned until you are found and removed from the sphere. You can't be located by any divination magic, but a _wish_ spell can reveal the location of your prison. You draw no more cards.\r\n\r\n**_Euryale_**. The card's medusa-like visage curses you. You take a -2 penalty on saving throws while cursed in this way. Only a god or the magic of The Fates card can end this curse.\r\n\r\n**_The Fates_**. Reality's fabric unravels and spins anew, allowing you to avoid or erase one event as if it never happened. You can use the card's magic as soon as you draw the card or at any other time before you die.\r\n\r\n**_Flames_**. A powerful devil becomes your enemy. The devil seeks your ruin and plagues your life, savoring your suffering before attempting to slay you. This enmity lasts until either you or the devil dies.\r\n\r\n**_Fool_**. You lose 10,000 XP, discard this card, and draw from the deck again, counting both draws as one of your declared draws. If losing that much XP would cause you to lose a level, you instead lose an amount that leaves you with just enough XP to keep your level.\r\n\r\n**_Gem_**. Twenty-five pieces of jewelry worth 2,000 gp each or fifty gems worth 1,000 gp each appear at your feet.\r\n\r\n**_Idiot_**. Permanently reduce your Intelligence by 1d4 + 1 (to a minimum score of 1). You can draw one additional card beyond your declared draws.\r\n\r\n**_Jester_**. You gain 10,000 XP, or you can draw two additional cards beyond your declared draws.\r\n\r\n**_Key_**. A rare or rarer magic weapon with which you are proficient appears in your hands. The GM chooses the weapon.\r\n\r\n**_Knight_**. You gain the service of a 4th-level fighter who appears in a space you choose within 30 feet of you. The fighter is of the same race as you and serves you loyally until death, believing the fates have drawn him or her to you. You control this character.\r\n\r\n**_Moon_**. You are granted the ability to cast the _wish_ spell 1d3 times.\r\n\r\n**_Rogue_**. A nonplayer character of the GM's choice becomes hostile toward you. The identity of your new enemy isn't known until the NPC or someone else reveals it. Nothing less than a _wish_ spell or divine intervention can end the NPC's hostility toward you.\r\n\r\n**_Ruin_**. All forms of wealth that you carry or own, other than magic items, are lost to you. Portable property vanishes. Businesses, buildings, and land you own are lost in a way that alters reality the least. Any documentation that proves you should own something lost to this card also disappears.\r\n\r\n**_Skull_**. You summon an avatar of death-a ghostly humanoid skeleton clad in a tattered black robe and carrying a spectral scythe. It appears in a space of the GM's choice within 10 feet of you and attacks you, warning all others that you must win the battle alone. The avatar fights until you die or it drops to 0 hit points, whereupon it disappears. If anyone tries to help you, the helper summons its own avatar of death. A creature slain by an avatar of death can't be restored to life.\r\n\r\n#", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_defender-greatsword", + "fields": { + "name": "Defender (Greatsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_defender-longsword", + "fields": { + "name": "Defender (Longsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_defender-rapier", + "fields": { + "name": "Defender (Rapier)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_defender-shortsword", + "fields": { + "name": "Defender (Shortsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_demon-armor", + "fields": { + "name": "Demon Armor", + "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, the armor's clawed gauntlets turn unarmed strikes with your hands into magic weapons that deal slashing damage, with a +1 bonus to attack rolls and damage rolls and a damage die of 1d8.\n\n**_Curse_**. Once you don this cursed armor, you can't doff it unless you are targeted by the _remove curse_ spell or similar magic. While wearing the armor, you have disadvantage on attack rolls against demons and on saving throws against their spells and special abilities.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dice-set", + "fields": { + "name": "Dice set", + "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dimensional-shackles", + "fields": { + "name": "Dimensional Shackles", + "desc": "You can use an action to place these shackles on an incapacitated creature. The shackles adjust to fit a creature of Small to Large size. In addition to serving as mundane manacles, the shackles prevent a creature bound by them from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. They don't prevent the creature from passing through an interdimensional portal.\r\n\r\nYou and any creature you designate when you use the shackles can use an action to remove them. Once every 30 days, the bound creature can make a DC 30 Strength (Athletics) check. On a success, the creature breaks free and destroys the shackles.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_disguise-kit", + "fields": { + "name": "Disguise kit", + "desc": "This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dragon-scale-mail", + "fields": { + "name": "Dragon Scale Mail", + "desc": "Dragon scale mail is made of the scales of one kind of dragon. Sometimes dragons collect their cast-off scales and gift them to humanoids. Other times, hunters carefully skin and preserve the hide of a dead dragon. In either case, dragon scale mail is highly valued.\r\n\r\nWhile wearing this armor, you gain a +1 bonus to AC, you have advantage on saving throws against the Frightful Presence and breath weapons of dragons, and you have resistance to one damage type that is determined by the kind of dragon that provided the scales (see the table).\r\n\r\nAdditionally, you can focus your senses as an action to magically discern the distance and direction to the closest dragon within 30 miles of you that is of the same type as the armor. This special action can't be used again until the next dawn.\r\n\r\n| Dragon | Resistance |\r\n|--------|------------|\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "srd_scale-mail", + "category": "armor", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dragon-slayer-greatsword", + "fields": { + "name": "Dragon Slayer (Greatsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dragon-slayer-longsword", + "fields": { + "name": "Dragon Slayer (Longsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dragon-slayer-rapier", + "fields": { + "name": "Dragon Slayer (Rapier)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dragon-slayer-shortsword", + "fields": { + "name": "Dragon Slayer (Shortsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_drow-poison", + "fields": { + "name": "Drow poison", + "desc": "This poison is typically made only by the drow, and only in a place far removed from sunlight. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the creature is also unconscious while poisoned in this way. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\r\n\\n\\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_drum", + "fields": { + "name": "Drum", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "6.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dulcimer", + "fields": { + "name": "Dulcimer", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_dust-of-disappearance", + "fields": { + "name": "Dust of Disappearance", + "desc": "Found in a small packet, this powder resembles very fine sand. There is enough of it for one use. When you use an action to throw the dust into the air, you and each creature and object within 10 feet of you become invisible for 2d4 minutes. The duration is the same for all subjects, and the dust is consumed when its magic takes effect. If a creature affected by the dust attacks or casts a spell, the invisibility ends for that creature.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dust-of-dryness", + "fields": { + "name": "Dust of Dryness", + "desc": "This small packet contains 1d6 + 4 pinches of dust. You can use an action to sprinkle a pinch of it over water. The dust turns a cube of water 15 feet on a side into one marble-sized pellet, which floats or rests near where the dust was sprinkled. The pellet's weight is negligible.\r\n\r\nSomeone can use an action to smash the pellet against a hard surface, causing the pellet to shatter and release the water the dust absorbed. Doing so ends that pellet's magic.\r\n\r\nAn elemental composed mostly of water that is exposed to a pinch of the dust must make a DC 13 Constitution saving throw, taking 10d6 necrotic damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dust-of-sneezing-and-choking", + "fields": { + "name": "Dust of Sneezing and Choking", + "desc": "Found in a small container, this powder resembles very fine sand. It appears to be _dust of disappearance_, and an _identify_ spell reveals it to be such. There is enough of it for one use.\r\n\r\nWhen you use an action to throw a handful of the dust into the air, you and each creature that needs to breathe within 30 feet of you must succeed on a DC 15 Constitution saving throw or become unable to breathe, while sneezing uncontrollably. A creature affected in this way is incapacitated and suffocating. As long as it is conscious, a creature can repeat the saving throw at the end of each of its turns, ending the effect on it on a success. The _lesser restoration_ spell can also end the effect on a creature.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dwarven-plate", + "fields": { + "name": "Dwarven Plate", + "desc": "While wearing this armor, you gain a +2 bonus to AC. In addition, if an effect moves you against your will along the ground, you can use your reaction to reduce the distance you are moved by up to 10 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_dwarven-thrower", + "fields": { + "name": "Dwarven Thrower", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. It has the thrown property with a normal range of 20 feet and a long range of 60 feet. When you hit with a ranged attack using this weapon, it deals an extra 1d8 damage or, if the target is a giant, 2d8 damage. Immediately after the attack, the weapon flies back to your hand.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_efficient-quiver", + "fields": { + "name": "Efficient Quiver", + "desc": "Each of the quiver's three compartments connects to an extradimensional space that allows the quiver to hold numerous items while never weighing more than 2 pounds. The shortest compartment can hold up to sixty arrows, bolts, or similar objects. The midsize compartment holds up to eighteen javelins or similar objects. The longest compartment holds up to six long objects, such as bows, quarterstaffs, or spears.\r\n\r\nYou can draw any item the quiver contains as if doing so from a regular quiver or scabbard.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_efreeti-bottle", + "fields": { + "name": "Efreeti Bottle", + "desc": "This painted brass bottle weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke flows out of the bottle. At the end of your turn, the smoke disappears with a flash of harmless fire, and an efreeti appears in an unoccupied space within 30 feet of you.\r\n\r\nThe first time the bottle is opened, the GM rolls to determine what happens.\r\n\r\n| d100 | Effect |\r\n|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-10 | The efreeti attacks you. After fighting for 5 rounds, the efreeti disappears, and the bottle loses its magic. |\r\n| 11-90 | The efreeti serves you for 1 hour, doing as you command. Then the efreeti returns to the bottle, and a new stopper contains it. The stopper can't be removed for 24 hours. The next two times the bottle is opened, the same effect occurs. If the bottle is opened a fourth time, the efreeti escapes and disappears, and the bottle loses its magic. |\r\n| 91-100 | The efreeti can cast the wish spell three times for you. It disappears when it grants the final wish or after 1 hour, and the bottle loses its magic. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_electrum-piece", + "fields": { + "name": "Electrum Piece", + "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_elemental-gem", + "fields": { + "name": "Elemental Gem", + "desc": "This gem contains a mote of elemental energy. When you use an action to break the gem, an elemental is summoned as if you had cast the _conjure elemental_ spell, and the gem's magic is lost. The type of gem determines the elemental summoned by the spell.\r\n\r\n| Gem | Summoned Elemental |\r\n|----------------|--------------------|\r\n| Blue sapphire | Air elemental |\r\n| Yellow diamond | Earth elemental |\r\n| Red corundum | Fire elemental |\r\n| Emerald | Water elemental |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_elven-chain", + "fields": { + "name": "Elven Chain", + "desc": "You gain a +1 bonus to AC while you wear this armor. You are considered proficient with this armor even if you lack proficiency with medium armor.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_emblem", + "fields": { + "name": "Emblem", + "desc": "Can be used as a holy symbol.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_essense-of-either", + "fields": { + "name": "Essense of either", + "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 8 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "300.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_eversmoking-bottle", + "fields": { + "name": "Eversmoking Bottle", + "desc": "Smoke leaks from the lead-stoppered mouth of this brass bottle, which weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke pours out in a 60-foot radius from the bottle. The cloud's area is heavily obscured. Each minute the bottle remains open and within the cloud, the radius increases by 10 feet until it reaches its maximum radius of 120 feet.\r\n\r\nThe cloud persists as long as the bottle is open. Closing the bottle requires you to speak its command word as an action. Once the bottle is closed, the cloud disperses after 10 minutes. A moderate wind (11 to 20 miles per hour) can also disperse the smoke after 1 minute, and a strong wind (21 or more miles per hour) can do so after 1 round.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_eyes-of-charming", + "fields": { + "name": "Eyes of Charming", + "desc": "These crystal lenses fit over the eyes. They have 3 charges. While wearing them, you can expend 1 charge as an action to cast the _charm person_ spell (save DC 13) on a humanoid within 30 feet of you, provided that you and the target can see each other. The lenses regain all expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_eyes-of-minute-seeing", + "fields": { + "name": "Eyes of Minute Seeing", + "desc": "These crystal lenses fit over the eyes. While wearing them, you can see much better than normal out to a range of 1 foot. You have advantage on Intelligence (Investigation) checks that rely on sight while searching an area or studying an object within that range.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_eyes-of-the-eagle", + "fields": { + "name": "Eyes of the Eagle", + "desc": "These crystal lenses fit over the eyes. While wearing them, you have advantage on Wisdom (Perception) checks that rely on sight. In conditions of clear visibility, you can make out details of even extremely distant creatures and objects as small as 2 feet across.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_feather-token", + "fields": { + "name": "Feather Token", + "desc": "This tiny object looks like a feather. Different types of feather tokens exist, each with a different single* use effect. The GM chooses the kind of token or determines it randomly.\r\n\r\n| d100 | Feather Token |\r\n|--------|---------------|\r\n| 01-20 | Anchor |\r\n| 21-35 | Bird |\r\n| 36-50 | Fan |\r\n| 51-65 | Swan boat |\r\n| 66-90 | Tree |\r\n| 91-100 | Whip |\r\n\r\n**_Anchor_**. You can use an action to touch the token to a boat or ship. For the next 24 hours, the vessel can't be moved by any means. Touching the token to the vessel again ends the effect. When the effect ends, the token disappears.\r\n\r\n**_Bird_**. You can use an action to toss the token 5 feet into the air. The token disappears and an enormous, multicolored bird takes its place. The bird has the statistics of a roc, but it obeys your simple commands and can't attack. It can carry up to 500 pounds while flying at its maximum speed (16 miles an hour for a maximum of 144 miles per day, with a one-hour rest for every 3 hours of flying), or 1,000 pounds at half that speed. The bird disappears after flying its maximum distance for a day or if it drops to 0 hit points. You can dismiss the bird as an action.\r\n\r\n**_Fan_**. If you are on a boat or ship, you can use an action to toss the token up to 10 feet in the air. The token disappears, and a giant flapping fan takes its place. The fan floats and creates a wind strong enough to fill the sails of one ship, increasing its speed by 5 miles per hour for 8 hours. You can dismiss the fan as an action.\r\n\r\n**_Swan Boat_**. You can use an action to touch the token to a body of water at least 60 feet in diameter. The token disappears, and a 50-foot-long, 20-foot* wide boat shaped like a swan takes its place. The boat is self-propelled and moves across water at a speed of 6 miles per hour. You can use an action while on the boat to command it to move or to turn up to 90 degrees. The boat can carry up to thirty-two Medium or smaller creatures. A Large creature counts as four Medium creatures, while a Huge creature counts as nine. The boat remains for 24 hours and then disappears. You can dismiss the boat as an action.\r\n\r\n**_Tree_**. You must be outdoors to use this token. You can use an action to touch it to an unoccupied space on the ground. The token disappears, and in its place a nonmagical oak tree springs into existence. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\r\n\r\n**_Whip_**. You can use an action to throw the token to a point within 10 feet of you. The token disappears, and a floating whip takes its place. You can then use a bonus action to make a melee spell attack against a creature within 10 feet of the whip, with an attack bonus of +9. On a hit, the target takes 1d6 + 5 force damage.\r\n\r\nAs a bonus action on your turn, you can direct the whip to fly up to 20 feet and repeat the attack against a creature within 10 feet of it. The whip disappears after 1 hour, when you use an action to dismiss it, or when you are incapacitated or die.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-bronze-griffon", + "fields": { + "name": "Figurine of Wondrous Power (Bronze Griffon)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Bronze Griffon (Rare)_**. This bronze statuette is of a griffon rampant. It can become a griffon for up to 6 hours. Once it has been used, it can't be used again until 5 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-ebony-fly", + "fields": { + "name": "Figurine of Wondrous Power (Ebony Fly)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ebony Fly (Rare)_**. This ebony statuette is carved in the likeness of a horsefly. It can become a giant fly for up to 12 hours and can be ridden as a mount. Once it has been used, it can’t be used again until 2 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-golden-lions", + "fields": { + "name": "Figurine of Wondrous Power (Golden Lions)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Golden Lions (Rare)_**. These gold statuettes of lions are always created in pairs. You can use one figurine or both simultaneously. Each can become a lion for up to 1 hour. Once a lion has been used, it can’t be used again until 7 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-ivory-goats", + "fields": { + "name": "Figurine of Wondrous Power (Ivory Goats)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ivory Goats (Rare_**.These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others. Their properties are as follows:\\n\\n* The _goat of traveling_ can become a Large goat with the same statistics as a riding horse. It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can't be used again until 7 days have passed, when it regains all its charges.\\n* The _goat of travail_ becomes a giant goat for up to 3 hours. Once it has been used, it can't be used again until 30 days have passed.\\n* The _goat of terror_ becomes a giant goat for up to 3 hours. The goat can't attack, but you can remove its horns and use them as weapons. One horn becomes a _+1 lance_, and the other becomes a _+2 longsword_. Removing a horn requires an action, and the weapons disappear and the horns return when the goat reverts to figurine form. In addition, the goat radiates a 30-foot-radius aura of terror while you are riding it. Any creature hostile to you that starts its turn in the aura must succeed on a DC 15 Wisdom saving throw or be frightened of the goat for 1 minute, or until the goat reverts to figurine form. The frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it successfully saves against the effect, a creature is immune to the goat's aura for the next 24 hours. Once the figurine has been used, it can't be used again until 15 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-marble-elephant", + "fields": { + "name": "Figurine of Wondrous Power (Marble Elephant)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Marble Elephant (Rare)_**. This marble statuette is about 4 inches high and long. It can become an elephant for up to 24 hours. Once it has been used, it can’t be used again until 7 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-obsidian-steed", + "fields": { + "name": "Figurine of Wondrous Power (Obsidian Steed)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Obsidian Steed (Very Rare)_**. This polished obsidian horse can become a nightmare for up to 24 hours. The nightmare fights only to defend itself. Once it has been used, it can't be used again until 5 days have passed.\\n\\nIf you have a good alignment, the figurine has a 10 percent chance each time you use it to ignore your orders, including a command to revert to figurine form. If you mount the nightmare while it is ignoring your orders, you and the nightmare are instantly transported to a random location on the plane of Hades, where the nightmare reverts to figurine form.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-onyx-dog", + "fields": { + "name": "Figurine of Wondrous Power (Onyx Dog)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Onyx Dog (Rare)_**. This onyx statuette of a dog can become a mastiff for up to 6 hours. The mastiff has an Intelligence of 8 and can speak Common. It also has darkvision out to a range of 60 feet and can see invisible creatures and objects within that range. Once it has been used, it can’t be used again until 7 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-serpentine-owl", + "fields": { + "name": "Figurine of Wondrous Power (Serpentine Owl)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Serpentine Owl (Rare)_**. This serpentine statuette of an owl can become a giant owl for up to 8 hours. Once it has been used, it can’t be used again until 2 days have passed. The owl can telepathically communicate with you at any range if you and it are on the same plane of existence.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-silver-raven", + "fields": { + "name": "Figurine of Wondrous Power (Silver Raven)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Silver Raven (Uncommon)_**. This silver statuette of a raven can become a raven for up to 12 hours. Once it has been used, it can’t be used again until 2 days have passed. While in raven form, the figurine allows you to cast the animal messenger spell on it at will.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_fishing-tackle", + "fields": { + "name": "Fishing Tackle", + "desc": "This kit includes a wooden rod, silken line, corkwood bobbers, steel hooks, lead sinkers, velvet lures, and narrow netting.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flail", + "fields": { + "name": "Flail", + "desc": "A flail.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flail-1", + "fields": { + "name": "Flail (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_flail-2", + "fields": { + "name": "Flail (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_flail-3", + "fields": { + "name": "Flail (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_flame-tongue-greatsword", + "fields": { + "name": "Flame Tongue (Greatsword)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flame-tongue-longsword", + "fields": { + "name": "Flame Tongue (Longsword)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flame-tongue-rapier", + "fields": { + "name": "Flame Tongue (Rapier)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flame-tongue-shortsword", + "fields": { + "name": "Flame Tongue (Shortsword)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flask-or-tankard", + "fields": { + "name": "Flask or tankard", + "desc": "For drinking. Capacity: 1 pint liquid.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flour", + "fields": { + "name": "Flour", + "desc": "1lb of flour", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_flute", + "fields": { + "name": "Flute", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_folding-boat", + "fields": { + "name": "Folding Boat", + "desc": "This object appears as a wooden box that measures 12 inches long, 6 inches wide, and 6 inches deep. It weighs 4 pounds and floats. It can be opened to store items inside. This item also has three command words, each requiring you to use an action to speak it.\r\n\r\nOne command word causes the box to unfold into a boat 10 feet long, 4 feet wide, and 2 feet deep. The boat has one pair of oars, an anchor, a mast, and a lateen sail. The boat can hold up to four Medium creatures comfortably.\r\n\r\nThe second command word causes the box to unfold into a ship 24 feet long, 8 feet wide, and 6 feet deep. The ship has a deck, rowing seats, five sets of oars, a steering oar, an anchor, a deck cabin, and a mast with a square sail. The ship can hold fifteen Medium creatures comfortably.\r\n\r\nWhen the box becomes a vessel, its weight becomes that of a normal vessel its size, and anything that was stored in the box remains in the boat.\r\n\r\nThe third command word causes the _folding boat_ to fold back into a box, provided that no creatures are aboard. Any objects in the vessel that can't fit inside the box remain outside the box as it folds. Any objects in the vessel that can fit inside the box do so.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_forgery-kit", + "fields": { + "name": "Forgery kit", + "desc": "This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. \\n\\nProficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_frost-brand-greatsword", + "fields": { + "name": "Frost Brand (Greatsword)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_frost-brand-longsword", + "fields": { + "name": "Frost Brand (Longsword)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_frost-brand-rapier", + "fields": { + "name": "Frost Brand (Rapier)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_frost-brand-shortsword", + "fields": { + "name": "Frost Brand (Shortsword)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_galley", + "fields": { + "name": "Galley", + "desc": "A waterborne vehicle. Speed 4 mph", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_gauntlets-of-ogre-power", + "fields": { + "name": "Gauntlets of Ogre Power", + "desc": "Your Strength score is 19 while you wear these gauntlets. They have no effect on you if your Strength is already 19 or higher.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_gem-of-brightness", + "fields": { + "name": "Gem of Brightness", + "desc": "This prism has 50 charges. While you are holding it, you can use an action to speak one of three command words to cause one of the following effects:\r\n\r\n* The first command word causes the gem to shed bright light in a 30-foot radius and dim light for an additional 30 feet. This effect doesn't expend a charge. It lasts until you use a bonus action to repeat the command word or until you use another function of the gem.\r\n* The second command word expends 1 charge and causes the gem to fire a brilliant beam of light at one creature you can see within 60 feet of you. The creature must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\r\n* The third command word expends 5 charges and causes the gem to flare with blinding light in a 30* foot cone originating from it. Each creature in the cone must make a saving throw as if struck by the beam created with the second command word.\r\n\r\nWhen all of the gem's charges are expended, the gem becomes a nonmagical jewel worth 50 gp.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_gem-of-seeing", + "fields": { + "name": "Gem of Seeing", + "desc": "This gem has 3 charges. As an action, you can speak the gem's command word and expend 1 charge. For the next 10 minutes, you have truesight out to 120 feet when you peer through the gem.\r\n\r\nThe gem regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-battleaxe", + "fields": { + "name": "Giant Slayer (Battleaxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-greataxe", + "fields": { + "name": "Giant Slayer (Greataxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-greatsword", + "fields": { + "name": "Giant Slayer (Greatsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-handaxe", + "fields": { + "name": "Giant Slayer (Handaxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-longsword", + "fields": { + "name": "Giant Slayer (Longsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-rapier", + "fields": { + "name": "Giant Slayer (Rapier)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_giant-slayer-shortsword", + "fields": { + "name": "Giant Slayer (Shortsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_ginger", + "fields": { + "name": "Ginger", + "desc": "1lb of Ginger.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_glaive", + "fields": { + "name": "Glaive", + "desc": "A glaive.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_glaive-1", + "fields": { + "name": "Glaive (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_glaive-2", + "fields": { + "name": "Glaive (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_glaive-3", + "fields": { + "name": "Glaive (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_glamoured-studded-leather", + "fields": { + "name": "Glamoured Studded Leather", + "desc": "While wearing this armor, you gain a +1 bonus to AC. You can also use a bonus action to speak the armor's command word and cause the armor to assume the appearance of a normal set of clothing or some other kind of armor. You decide what it looks like, including color, style, and accessories, but the armor retains its normal bulk and weight. The illusory appearance lasts until you use this property again or remove the armor.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_glassblowers-tools", + "fields": { + "name": "Glassblower's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_gloves-of-missile-snaring", + "fields": { + "name": "Gloves of Missile Snaring", + "desc": "These gloves seem to almost meld into your hands when you don them. When a ranged weapon attack hits you while you're wearing them, you can use your reaction to reduce the damage by 1d10 + your Dexterity modifier, provided that you have a free hand. If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in that hand.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_gloves-of-swimming-and-climbing", + "fields": { + "name": "Gloves of Swimming and Climbing", + "desc": "While wearing these gloves, climbing and swimming don't cost you extra movement, and you gain a +5 bonus to Strength (Athletics) checks made to climb or swim.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_goat", + "fields": { + "name": "Goat", + "desc": "One goat.", + "document": "srd", + "size": "medium", + "weight": "75.000", + "armor_class": 10, + "hit_points": 4, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_goggles-of-night", + "fields": { + "name": "Goggles of Night", + "desc": "While wearing these dark lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the goggles increases its range by 60 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_gold", + "fields": { + "name": "Gold", + "desc": "1lb of gold.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_gold-piece", + "fields": { + "name": "Gold Piece", + "desc": "With one gold piece, a character can buy a bedroll, 50 feet of good rope, or a goat. A skilled (but not exceptional) artisan can earn one gold piece a day. The gold piece is the standard unit of measure for wealth, even if the coin itself is not commonly used. When merchants discuss deals that involve goods or services worth hundreds or thousands of gold pieces, the transactions don't usually involve the exchange of individual coins. Rather, the gold piece is a standard measure of value, and the actual exchange is in gold bars, letters of credit, or valuable goods.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_grappling-hook", + "fields": { + "name": "Grappling hook", + "desc": "A grappling hook.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_greataxe", + "fields": { + "name": "Greataxe", + "desc": "A greataxe.", + "document": "srd", + "size": "tiny", + "weight": "7.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_greataxe-1", + "fields": { + "name": "Greataxe (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greataxe-2", + "fields": { + "name": "Greataxe (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greataxe-3", + "fields": { + "name": "Greataxe (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatclub", + "fields": { + "name": "Greatclub", + "desc": "A greatclub.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatclub-1", + "fields": { + "name": "Greatclub (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatclub-2", + "fields": { + "name": "Greatclub (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatclub-3", + "fields": { + "name": "Greatclub (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatsword", + "fields": { + "name": "Greatsword", + "desc": "A great sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatsword-1", + "fields": { + "name": "Greatsword (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatsword-2", + "fields": { + "name": "Greatsword (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_greatsword-3", + "fields": { + "name": "Greatsword (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_halberd", + "fields": { + "name": "Halberd", + "desc": "A halberd.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_halberd-1", + "fields": { + "name": "Halberd (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_halberd-2", + "fields": { + "name": "Halberd (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_halberd-3", + "fields": { + "name": "Halberd (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_half-plate", + "fields": { + "name": "Half plate", + "desc": "Half plate consists of shaped metal plates that cover most of the wearer's body. It does not include leg protection beyond simple greaves that are attached with leather straps.", + "document": "srd", + "size": "tiny", + "weight": "40.000", + "armor_class": 0, + "hit_points": 0, + "cost": "750.00", + "weapon": null, + "armor": "srd_half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_hammer", + "fields": { + "name": "Hammer", + "desc": "A hammer.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_hammer-of-thunderbolts", + "fields": { + "name": "Hammer of Thunderbolts", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\n**_Giant's Bane (Requires Attunement)_**. You must be wearing a _belt of giant strength_ (any variety) and _gauntlets of ogre power_ to attune to this weapon. The attunement ends if you take off either of those items. While you are attuned to this weapon and holding it, your Strength score increases by 4 and can exceed 20, but not 30. When you roll a 20 on an attack roll made with this weapon against a giant, the giant must succeed on a DC 17 Constitution saving throw or die.\n\nThe hammer also has 5 charges. While attuned to it, you can expend 1 charge and make a ranged weapon attack with the hammer, hurling it as if it had the thrown property with a normal range of 20 feet and a long range of 60 feet. If the attack hits, the hammer unleashes a thunderclap audible out to 300 feet. The target and every creature within 30 feet of it must succeed on a DC 17 Constitution saving throw or be stunned until the end of your next turn. The hammer regains 1d4 + 1 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_hammer-sledge", + "fields": { + "name": "Hammer, sledge", + "desc": "A sledgehammer", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_handaxe", + "fields": { + "name": "Handaxe", + "desc": "A handaxe.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_handaxe-1", + "fields": { + "name": "Handaxe (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_handaxe-2", + "fields": { + "name": "Handaxe (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_handaxe-3", + "fields": { + "name": "Handaxe (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_handy-haversack", + "fields": { + "name": "Handy Haversack", + "desc": "This backpack has a central pouch and two side pouches, each of which is an extradimensional space. Each side pouch can hold up to 20 pounds of material, not exceeding a volume of 2 cubic feet. The large central pouch can hold up to 8 cubic feet or 80 pounds of material. The backpack always weighs 5 pounds, regardless of its contents.\r\n\r\nPlacing an object in the haversack follows the normal rules for interacting with objects. Retrieving an item from the haversack requires you to use an action. When you reach into the haversack for a specific item, the item is always magically on top.\r\n\r\nThe haversack has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the haversack ruptures and is destroyed. If the haversack is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If the haversack is turned inside out, its contents spill forth, unharmed, and the haversack must be put right before it can be used again. If a breathing creature is placed within the haversack, the creature can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing the haversack inside an extradimensional space created by a _bag of holding_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_hat-of-disguise", + "fields": { + "name": "Hat of Disguise", + "desc": "While wearing this hat, you can use an action to cast the _disguise self_ spell from it at will. The spell ends if the hat is removed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_headband-of-intellect", + "fields": { + "name": "Headband of Intellect", + "desc": "Your Intelligence score is 19 while you wear this headband. It has no effect on you if your Intelligence is already 19 or higher.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_healers-kit", + "fields": { + "name": "Healer's Kit", + "desc": "This kit is a leather pouch containing bandages, salves, and splints. The kit has ten uses. As an action, you can expend one use of the kit to stabilize a creature that has 0 hit points, without needing to make a Wisdom (Medicine) check.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_helm-of-brilliance", + "fields": { + "name": "Helm of Brilliance", + "desc": "This dazzling helm is set with 1d10 diamonds, 2d10 rubies, 3d10 fire opals, and 4d10 opals. Any gem pried from the helm crumbles to dust. When all the gems are removed or destroyed, the helm loses its magic.\r\n\r\nYou gain the following benefits while wearing it:\r\n\r\n* You can use an action to cast one of the following spells (save DC 18), using one of the helm's gems of the specified type as a component: _daylight_ (opal), _fireball_ (fire opal), _prismatic spray_ (diamond), or _wall of fire_ (ruby). The gem is destroyed when the spell is cast and disappears from the helm.\r\n* As long as it has at least one diamond, the helm emits dim light in a 30-foot radius when at least one undead is within that area. Any undead that starts its turn in that area takes 1d6 radiant damage.\r\n* As long as the helm has at least one ruby, you have resistance to fire damage.\r\n* As long as the helm has at least one fire opal, you can use an action and speak a command word to cause one weapon you are holding to burst into flames. The flames emit bright light in a 10-foot radius and dim light for an additional 10 feet. The flames are harmless to you and the weapon. When you hit with an attack using the blazing weapon, the target takes an extra 1d6 fire damage. The flames last until you use a bonus action to speak the command word again or until you drop or stow the weapon.\r\n\r\nRoll a d20 if you are wearing the helm and take fire damage as a result of failing a saving throw against a spell. On a roll of 1, the helm emits beams of light from its remaining gems. Each creature within 60 feet of the helm other than you must succeed on a DC 17 Dexterity saving throw or be struck by a beam, taking radiant damage equal to the number of gems in the helm. The helm and its gems are then destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_helm-of-comprehending-languages", + "fields": { + "name": "Helm of Comprehending Languages", + "desc": "While wearing this helm, you can use an action to cast the _comprehend languages_ spell from it at will.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_helm-of-telepathy", + "fields": { + "name": "Helm of Telepathy", + "desc": "While wearing this helm, you can use an action to cast the _detect thoughts_ spell (save DC 13) from it. As long as you maintain concentration on the spell, you can use a bonus action to send a telepathic message to a creature you are focused on. It can reply-using a bonus action to do so-while your focus on it continues.\r\n\r\nWhile focusing on a creature with _detect thoughts_, you can use an action to cast the _suggestion_ spell (save DC 13) from the helm on that creature. Once used, the _suggestion_ property can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_helm-of-teleportation", + "fields": { + "name": "Helm of Teleportation", + "desc": "This helm has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _teleport_ spell from it. The helm regains 1d3\r\n\r\nexpended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_herbalism-kit", + "fields": { + "name": "Herbalism Kit", + "desc": "This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create\r\nantitoxin and potions of healing.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_hide-armor", + "fields": { + "name": "Hide Armor", + "desc": "This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.", + "document": "srd", + "size": "tiny", + "weight": "12.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": "srd_hide", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_holy-avenger-greatsword", + "fields": { + "name": "Holy Avenger (Greatsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_holy-avenger-longsword", + "fields": { + "name": "Holy Avenger (Longsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_holy-avenger-rapier", + "fields": { + "name": "Holy Avenger (Rapier)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_holy-avenger-shortsword", + "fields": { + "name": "Holy Avenger (Shortsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_holy-water-flask", + "fields": { + "name": "Holy Water (flask)", + "desc": "As an action, you can splash the contents of this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact.In either case, make a ranged attack against a target creature, treating the holy water as an improvised weapon. If the target is a fiend or undead, it takes 2d6 radiant damage.\\n\\nA cleric or paladin may create holy water by performing a special ritual. The ritual takes 1 hour to perform, uses 25 gp worth of powdered silver, and requires the caster to expend a 1st-­‐‑level spell slot.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_horn", + "fields": { + "name": "Horn", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "3.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_horn-of-blasting", + "fields": { + "name": "Horn of Blasting", + "desc": "You can use an action to speak the horn's command word and then blow the horn, which emits a thunderous blast in a 30-foot cone that is audible 600 feet away. Each creature in the cone must make a DC 15 Constitution saving throw. On a failed save, a creature takes 5d6 thunder damage and is deafened for 1 minute. On a successful save, a creature takes half as much damage and isn't deafened. Creatures and objects made of glass or crystal have disadvantage on the saving throw and take 10d6 thunder damage instead of 5d6.\r\n\r\nEach use of the horn's magic has a 20 percent chance of causing the horn to explode. The explosion deals 10d6 fire damage to the blower and destroys the horn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-brass", + "fields": { + "name": "Horn of Valhalla (Brass)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-bronze", + "fields": { + "name": "Horn of Valhalla (Bronze)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-iron", + "fields": { + "name": "Horn of Valhalla (Iron)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-silver", + "fields": { + "name": "Horn of Valhalla (silver)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_horseshoes-of-a-zephyr", + "fields": { + "name": "Horseshoes of a Zephyr", + "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they allow the creature to move normally while floating 4 inches above the ground. This effect means the creature can cross or stand above nonsolid or unstable surfaces, such as water or lava. The creature leaves no tracks and ignores difficult terrain. In addition, the creature can move at normal speed for up to 12 hours a day without suffering exhaustion from a forced march.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_horseshoes-of-speed", + "fields": { + "name": "Horseshoes of Speed", + "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they increase the creature's walking speed by 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_hourglass", + "fields": { + "name": "Hourglass", + "desc": "An hourglass.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_hunting-trap", + "fields": { + "name": "Hunting Trap", + "desc": "When you use your action to set it, this trap forms a saw-­‐‑toothed steel ring that snaps shut when a creature steps on a pressure plate in the center. The trap is affixed by a heavy chain to an immobile object, such as a tree or a spike driven into the ground. A creature that steps on the plate must succeed on a DC 13 Dexterity saving throw or take 1d4 piercing damage and stop moving. Thereafter, until the creature breaks free of the trap, its movement is limited by the length of the chain (typically 3 feet long). A creature can use its action to make a DC 13 Strength check, freeing itself or another creature within its reach on a success. Each failed check deals 1 piercing damage to the trapped creature.", + "document": "srd", + "size": "tiny", + "weight": "25.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_immovable-rod", + "fields": { + "name": "Immovable Rod", + "desc": "This flat iron rod has a button on one end. You can use an action to press the button, which causes the rod to become magically fixed in place. Until you or another creature uses an action to push the button again, the rod doesn't move, even if it is defying gravity. The rod can hold up to 8,000 pounds of weight. More weight causes the rod to deactivate and fall. A creature can use an action to make a DC 30 Strength check, moving the fixed rod up to 10 feet on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ink-1-ounce-bottle", + "fields": { + "name": "Ink (1 ounce bottle)", + "desc": "A bottle of ink.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_ink-pen", + "fields": { + "name": "Ink pen", + "desc": "A pen for writing with ink.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_instant-fortress", + "fields": { + "name": "Instant Fortress", + "desc": "You can use an action to place this 1-inch metal cube on the ground and speak its command word. The cube rapidly grows into a fortress that remains until you use an action to speak the command word that dismisses it, which works only if the fortress is empty.\r\n\r\nThe fortress is a square tower, 20 feet on a side and 30 feet high, with arrow slits on all sides and a battlement atop it. Its interior is divided into two floors, with a ladder running along one wall to connect them. The ladder ends at a trapdoor leading to the roof. When activated, the tower has a small door on the side facing you. The door opens only at your command, which you can speak as a bonus action. It is immune to the _knock_ spell and similar magic, such as that of a _chime of opening_.\r\n\r\nEach creature in the area where the fortress appears must make a DC 15 Dexterity saving throw, taking 10d10 bludgeoning damage on a failed save, or half as much damage on a successful one. In either case, the creature is pushed to an unoccupied space outside but next to the fortress. Objects in the area that aren't being worn or carried take this damage and are pushed automatically.\r\n\r\nThe tower is made of adamantine, and its magic prevents it from being tipped over. The roof, the door, and the walls each have 100 hit points,\r\n\r\nimmunity to damage from nonmagical weapons excluding siege weapons, and resistance to all other damage. Only a _wish_ spell can repair the fortress (this use of the spell counts as replicating a spell of 8th level or lower). Each casting of _wish_ causes the roof, the door, or one wall to regain 50 hit points.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-absorption", + "fields": { + "name": "Ioun Stone (Absorption)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Fortitude (Very Rare)_**. Your Constitution score increases by 2, to a maximum of 20, while this pink rhomboid orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-agility", + "fields": { + "name": "Ioun Stone (Agility)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Agility (Very Rare)._** Your Dexterity score increases by 2, to a maximum of 20, while this deep red sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-awareness", + "fields": { + "name": "Ioun Stone (Awareness)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Awareness (Rare)._** You can't be surprised while this dark blue rhomboid orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-greater-absorption", + "fields": { + "name": "Ioun Stone (Greater Absorption)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Greater Absorption (Legendary)._** While this marbled lavender and green ellipsoid orbits your head, you can use your reaction to cancel a spell of 8th level or lower cast by a creature you can see and targeting only you.\\n\\nOnce the stone has canceled 50 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-insight", + "fields": { + "name": "Ioun Stone (Insight)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Insight (Very Rare)._** Your Wisdom score increases by 2, to a maximum of 20, while this incandescent blue sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-intellect", + "fields": { + "name": "Ioun Stone (Intellect)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Intellect (Very Rare)._** Your Intelligence score increases by 2, to a maximum of 20, while this marbled scarlet and blue sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-leadership", + "fields": { + "name": "Ioun Stone (Leadership)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Leadership (Very Rare)._** Your Charisma score increases by 2, to a maximum of 20, while this marbled pink and green sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-mastery", + "fields": { + "name": "Ioun Stone (Mastery)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Mastery (Legendary)._** Your proficiency bonus increases by 1 while this pale green prism orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-protection", + "fields": { + "name": "Ioun Stone (Protection)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Protection (Rare)_**. You gain a +1 bonus to AC while this dusty rose prism orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-regeneration", + "fields": { + "name": "Ioun Stone (Regeneration)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Regeneration (Legendary)_**. You regain 15 hit points at the end of each hour this pearly white spindle orbits your head, provided that you have at least 1 hit point.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-reserve", + "fields": { + "name": "Ioun Stone (Reserve)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Reserve (Rare)._** This vibrant purple prism stores spells cast into it, holding them until you use them. The stone can store up to 3 levels worth of spells at a time. When found, it contains 1d4 - 1 levels of stored spells chosen by the GM.\\n\\nAny creature can cast a spell of 1st through 3rd level into the stone by touching it as the spell is cast. The spell has no effect, other than to be stored in the stone. If the stone can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\\n\\nWhile this stone orbits your head, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the stone is no longer stored in it, freeing up space.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-strength", + "fields": { + "name": "Ioun Stone (Strength)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Strength (Very Rare)._** Your Strength score increases by 2, to a maximum of 20, while this pale blue rhomboid orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ioun-stone-sustenance", + "fields": { + "name": "Ioun Stone (Sustenance)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Sustenance (Rare)._** You don't need to eat or drink while this clear spindle orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_iron", + "fields": { + "name": "Iron", + "desc": "1lb of iron.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_iron-bands-of-binding", + "fields": { + "name": "Iron Bands of Binding", + "desc": "This rusty iron sphere measures 3 inches in diameter and weighs 1 pound. You can use an action to speak the command word and throw the sphere at a Huge or smaller creature you can see within 60 feet of you. As the sphere moves through the air, it opens into a tangle of metal bands.\r\n\r\nMake a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the target is restrained until you take a bonus action to speak the command word again to release it. Doing so, or missing with the attack, causes the bands to contract and become a sphere once more.\r\n\r\nA creature, including the one restrained, can use an action to make a DC 20 Strength check to break the iron bands. On a success, the item is destroyed, and the restrained creature is freed. If the check fails, any further attempts made by that creature automatically fail until 24 hours have elapsed.\r\n\r\nOnce the bands are used, they can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_iron-flask", + "fields": { + "name": "Iron Flask", + "desc": "This iron bottle has a brass stopper. You can use an action to speak the flask's command word, targeting a creature that you can see within 60 feet of you. If the target is native to a plane of existence other than the one you're on, the target must succeed on a DC 17 Wisdom saving throw or be trapped in the flask. If the target has been trapped by the flask before, it has advantage on the saving throw. Once trapped, a creature remains in the flask until released. The flask can hold only one creature at a time. A creature trapped in the flask doesn't need to breathe, eat, or drink and doesn't age.\r\n\r\nYou can use an action to remove the flask's stopper and release the creature the flask contains. The creature is friendly to you and your companions for 1 hour and obeys your commands for that duration. If you give no commands or give it a command that is likely to result in its death, it defends itself but otherwise takes no actions. At the end of the duration, the creature acts in accordance with its normal disposition and alignment.\r\n\r\nAn _identify_ spell reveals that a creature is inside the flask, but the only way to determine the type of creature is to open the flask. A newly discovered bottle might already contain a creature chosen by the GM or determined randomly.\r\n\r\n| d100 | Contents |\r\n|-------|-------------------|\r\n| 1-50 | Empty |\r\n| 51-54 | Demon (type 1) |\r\n| 55-58 | Demon (type 2) |\r\n| 59-62 | Demon (type 3) |\r\n| 63-64 | Demon (type 4) |\r\n| 65 | Demon (type 5) |\r\n| 66 | Demon (type 6) |\r\n| 67 | Deva |\r\n| 68-69 | Devil (greater) |\r\n| 70-73 | Devil (lesser) |\r\n| 74-75 | Djinni |\r\n| 76-77 | Efreeti |\r\n| 78-83 | Elemental (any) |\r\n| 84-86 | Invisible stalker |\r\n| 87-90 | Night hag |\r\n| 91 | Planetar |\r\n| 92-95 | Salamander |\r\n| 96 | Solar |\r\n| 97-99 | Succubus/incubus |\r\n| 100 | Xorn |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_javelin", + "fields": { + "name": "Javelin", + "desc": "A javelin", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_javelin-1", + "fields": { + "name": "Javelin (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_javelin-2", + "fields": { + "name": "Javelin (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_javelin-3", + "fields": { + "name": "Javelin (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_javelin-of-lightning", + "fields": { + "name": "Javelin of Lightning", + "desc": "This javelin is a magic weapon. When you hurl it and speak its command word, it transforms into a bolt of lightning, forming a line 5 feet wide that extends out from you to a target within 120 feet. Each creature in the line excluding you and the target must make a DC 13 Dexterity saving throw, taking 4d6 lightning damage on a failed save, and half as much damage on a successful one. The lightning bolt turns back into a javelin when it reaches the target. Make a ranged weapon attack against the target. On a hit, the target takes damage from the javelin plus 4d6 lightning damage.\n\nThe javelin's property can't be used again until the next dawn. In the meantime, the javelin can still be used as a magic weapon.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_jewelers-tools", + "fields": { + "name": "Jeweler's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_jug-or-pitcher", + "fields": { + "name": "Jug or pitcher", + "desc": "For drinking a lot. Capacity: 1 gallon liquid.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_keelboat", + "fields": { + "name": "Keelboat", + "desc": "Waterborne vehicle. Speed is 1mph.", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "3000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_ladder-10-foot", + "fields": { + "name": "Ladder (10-foot)", + "desc": "A 10 foot ladder.", + "document": "srd", + "size": "tiny", + "weight": "25.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lamp", + "fields": { + "name": "Lamp", + "desc": "A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lamp-oil-flask", + "fields": { + "name": "Lamp oil (flask)", + "desc": "Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon. On a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-­foot‑square area, provided that the surface is level. If lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lance", + "fields": { + "name": "Lance", + "desc": "A lance.\r\n\r\nYou have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lance-1", + "fields": { + "name": "Lance (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_lance-2", + "fields": { + "name": "Lance (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_lance-3", + "fields": { + "name": "Lance (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_lantern-bullseye", + "fields": { + "name": "Lantern, Bullseye", + "desc": "A bullseye lantern casts bright light in a 60-­‐‑foot cone and dim light for an additional 60 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lantern-hooded", + "fields": { + "name": "Lantern, Hooded", + "desc": "A hooded lantern casts bright light in a 30-­‐‑foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil. As an action, you can lower the hood, reducing the light to dim light in a 5-­‐‑foot radius.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lantern-of-revealing", + "fields": { + "name": "Lantern of Revealing", + "desc": "While lit, this hooded lantern burns for 6 hours on 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the lantern's bright light. You can use an action to lower the hood, reducing the light to dim light in a 5* foot radius.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_leather-armor", + "fields": { + "name": "Leather Armor", + "desc": "The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": "srd_leather", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_leatherworkers-tools", + "fields": { + "name": "Leatherworker's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_light-hammer", + "fields": { + "name": "Light hammer", + "desc": "A light hammer.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_light-hammer-1", + "fields": { + "name": "Light-Hammer (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_light-hammer-2", + "fields": { + "name": "Light-Hammer (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_light-hammer-3", + "fields": { + "name": "Light-Hammer (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_linen", + "fields": { + "name": "Linen", + "desc": "1 sq. yd. of linen.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lock", + "fields": { + "name": "Lock", + "desc": "A key is provided with the lock. Without the key, a creature proficient with thieves’ tools can pick this lock with a successful DC 15 Dexterity check. Your GM may decide that better locks are available for higher prices.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_longbow", + "fields": { + "name": "Longbow", + "desc": "A longbow.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_longbow-1", + "fields": { + "name": "Longbow (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_longbow-2", + "fields": { + "name": "Longbow (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_longbow-3", + "fields": { + "name": "Longbow (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_longship", + "fields": { + "name": "Longship", + "desc": "Waterborne vehicle. Speed 3mph.", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_longsword", + "fields": { + "name": "Longsword", + "desc": "A longsword", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_longsword-1", + "fields": { + "name": "Longsword (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_longsword-2", + "fields": { + "name": "Longsword (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_longsword-3", + "fields": { + "name": "Longsword (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_luck-blade-greatsword", + "fields": { + "name": "Luck Blade (Greatsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_luck-blade-longsword", + "fields": { + "name": "Luck Blade (Longsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_luck-blade-rapier", + "fields": { + "name": "Luck Blade (Rapier)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_luck-blade-shortsword", + "fields": { + "name": "Luck Blade (Shortsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lute", + "fields": { + "name": "Lute", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "35.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_lyre", + "fields": { + "name": "Lyre", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace", + "fields": { + "name": "Mace", + "desc": "A mace.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace-1", + "fields": { + "name": "Mace (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace-2", + "fields": { + "name": "Mace (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace-3", + "fields": { + "name": "Mace (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace-of-disruption", + "fields": { + "name": "Mace of Disruption", + "desc": "When you hit a fiend or an undead with this magic weapon, that creature takes an extra 2d6 radiant damage. If the target has 25 hit points or fewer after taking this damage, it must succeed on a DC 15 Wisdom saving throw or be destroyed. On a successful save, the creature becomes frightened of you until the end of your next turn.\n\nWhile you hold this weapon, it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace-of-smiting", + "fields": { + "name": "Mace of Smiting", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the mace to attack a construct.\n\nWhen you roll a 20 on an attack roll made with this weapon, the target takes an extra 2d6 bludgeoning damage, or 4d6 bludgeoning damage if it's a construct. If a construct has 25 hit points or fewer after taking this damage, it is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mace-of-terror", + "fields": { + "name": "Mace of Terror", + "desc": "This magic weapon has 3 charges. While holding it, you can use an action and expend 1 charge to release a wave of terror. Each creature of your choice in a 30-foot radius extending from you must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.\n\nThe mace regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_magnifying-glass", + "fields": { + "name": "Magnifying Glass", + "desc": "This lens allows a closer look at small objects. It is also useful as a substitute for flint and steel when starting fires. Lighting a fire with a magnifying glass requires light as bright as sunlight to focus, tinder to ignite, and about 5 minutes for the fire to ignite. A magnifying glass grants advantage on any ability check made to appraise or inspect an item that is small or highly detailed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "100.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_malice", + "fields": { + "name": "Malice", + "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 1 hour. The poisoned creature is blinded.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "250.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_manacles", + "fields": { + "name": "Manacles", + "desc": "These metal restraints can bind a Small or Medium creature. Escaping the manacles requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of manacles comes with one key. Without the key, a creature proficient with thieves’ tools can pick the manacles’ lock with a successful DC 15 Dexterity check. Manacles have 15 hit points.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 15, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mantle-of-spell-resistance", + "fields": { + "name": "Mantle of Spell Resistance", + "desc": "You have advantage on saving throws against spells while you wear this cloak.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_manual-of-bodily-health", + "fields": { + "name": "Manual of Bodily Health", + "desc": "This book contains health and diet tips, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Constitution score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_manual-of-gainful-exercise", + "fields": { + "name": "Manual of Gainful Exercise", + "desc": "This book describes fitness exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Strength score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_manual-of-golems", + "fields": { + "name": "Manual of Golems", + "desc": "This tome contains information and incantations necessary to make a particular type of golem. The GM chooses the type or determines it randomly. To decipher and use the manual, you must be a spellcaster with at least two 5th-level spell slots. A creature that can't use a _manual of golems_ and attempts to read it takes 6d6 psychic damage.\r\n\r\n| d20 | Golem | Time | Cost |\r\n|-------|-------|----------|------------|\r\n| 1-5 | Clay | 30 days | 65,000 gp |\r\n| 6-17 | Flesh | 60 days | 50,000 gp |\r\n| 18 | Iron | 120 days | 100,000 gp |\r\n| 19-20 | Stone | 90 days | 80,000 gp |\r\n\r\nTo create a golem, you must spend the time shown on the table, working without interruption with the manual at hand and resting no more than 8 hours per day. You must also pay the specified cost to purchase supplies.\r\n\r\nOnce you finish creating the golem, the book is consumed in eldritch flames. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_manual-of-quickness-of-action", + "fields": { + "name": "Manual of Quickness of Action", + "desc": "This book contains coordination and balance exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Dexterity score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_marvelous-pigments", + "fields": { + "name": "Marvelous Pigments", + "desc": "Typically found in 1d4 pots inside a fine wooden box with a brush (weighing 1 pound in total), these pigments allow you to create three-dimensional objects by painting them in two dimensions. The paint flows from the brush to form the desired object as you concentrate on its image.\r\n\r\nEach pot of paint is sufficient to cover 1,000 square feet of a surface, which lets you create inanimate objects or terrain features-such as a door, a pit, flowers, trees, cells, rooms, or weapons- that are up to 10,000 cubic feet. It takes 10 minutes to cover 100 square feet.\r\n\r\nWhen you complete the painting, the object or terrain feature depicted becomes a real, nonmagical object. Thus, painting a door on a wall creates an actual door that can be opened to whatever is beyond. Painting a pit on a floor creates a real pit, and its depth counts against the total area of objects you create.\r\n\r\nNothing created by the pigments can have a value greater than 25 gp. If you paint an object of greater value (such as a diamond or a pile of gold), the object looks authentic, but close inspection reveals it is made from paste, bone, or some other worthless material.\r\n\r\nIf you paint a form of energy such as fire or lightning, the energy appears but dissipates as soon as you complete the painting, doing no harm to anything.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_masons-tools", + "fields": { + "name": "Mason's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_maul", + "fields": { + "name": "Maul", + "desc": "A maul.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_maul-1", + "fields": { + "name": "Maul (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_maul-2", + "fields": { + "name": "Maul (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_maul-3", + "fields": { + "name": "Maul (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_medallion-of-thoughts", + "fields": { + "name": "Medallion of Thoughts", + "desc": "The medallion has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _detect thoughts_ spell (save DC 13) from it. The medallion regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mess-kit", + "fields": { + "name": "Mess Kit", + "desc": "This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_midnight-tears", + "fields": { + "name": "Midnight tears", + "desc": "A creature that ingests this poison suffers no effect until the stroke of midnight. If the poison has not been neutralized before then, the creature must succeed on a DC 17 Constitution saving throw, taking 31 (9d6) poison damage on a failed save, or half as much damage on a successful one.\\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1500.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mirror-of-life-trapping", + "fields": { + "name": "Mirror of Life Trapping", + "desc": "When this 4-foot-tall mirror is viewed indirectly, its surface shows faint images of creatures. The mirror weighs 50 pounds, and it has AC 11, 10 hit points, and vulnerability to bludgeoning damage. It shatters and is destroyed when reduced to 0 hit points.\r\n\r\nIf the mirror is hanging on a vertical surface and you are within 5 feet of it, you can use an action to speak its command word and activate it. It remains activated until you use an action to speak the command word again.\r\n\r\nAny creature other than you that sees its reflection in the activated mirror while within 30 feet of it must succeed on a DC 15 Charisma saving throw or be trapped, along with anything it is wearing or carrying, in one of the mirror's twelve extradimensional cells. This saving throw is made with advantage if the creature knows the mirror's nature, and constructs succeed on the saving throw automatically.\r\n\r\nAn extradimensional cell is an infinite expanse filled with thick fog that reduces visibility to 10 feet. Creatures trapped in the mirror's cells don't age, and they don't need to eat, drink, or sleep. A creature trapped within a cell can escape using magic that permits planar travel. Otherwise, the creature is confined to the cell until freed.\r\n\r\nIf the mirror traps a creature but its twelve extradimensional cells are already occupied, the mirror frees one trapped creature at random to accommodate the new prisoner. A freed creature appears in an unoccupied space within sight of the mirror but facing away from it. If the mirror is shattered, all creatures it contains are freed and appear in unoccupied spaces near it.\r\n\r\nWhile within 5 feet of the mirror, you can use an action to speak the name of one creature trapped in it or call out a particular cell by number. The creature named or contained in the named cell appears as an image on the mirror's surface. You and the creature can then communicate normally.\r\n\r\nIn a similar way, you can use an action to speak a second command word and free one creature trapped in the mirror. The freed creature appears, along with its possessions, in the unoccupied space nearest to the mirror and facing away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mirror-steel", + "fields": { + "name": "Mirror, steel", + "desc": "A mirror.", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-breastplate", + "fields": { + "name": "Mithral Armor (Breastplate)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-chain-mail", + "fields": { + "name": "Mithral Armor (Chain-Mail)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-chain-shirt", + "fields": { + "name": "Mithral Armor (Chain-Shirt)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-half-plate", + "fields": { + "name": "Mithral Armor (Half-Plate)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_half-plate", + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-hide", + "fields": { + "name": "Mithral Armor (Hide)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-plate", + "fields": { + "name": "Mithral Armor (Plate)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-ring-mail", + "fields": { + "name": "Mithral Armor (Ring-Mail)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-scale-mail", + "fields": { + "name": "Mithral Armor (Scale-Mail)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_mithral-armor-splint", + "fields": { + "name": "Mithral Armor (Splint)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_splint", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_morningstar", + "fields": { + "name": "Morningstar", + "desc": "A morningstar", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_morningstar-1", + "fields": { + "name": "Morningstar (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_morningstar-2", + "fields": { + "name": "Morningstar (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_morningstar-3", + "fields": { + "name": "Morningstar (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_navigators-tools", + "fields": { + "name": "Navigator's tools", + "desc": "This set of instruments is used for navigation at sea. Proficiency with navigator's tools lets you chart a ship's course and follow navigation charts. In addition, these tools allow you to add your proficiency bonus to any ability check you make to avoid getting lost at sea.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_necklace-of-adaptation", + "fields": { + "name": "Necklace of Adaptation", + "desc": "While wearing this necklace, you can breathe normally in any environment, and you have advantage on saving throws made against harmful gases and vapors (such as _cloudkill_ and _stinking cloud_ effects, inhaled poisons, and the breath weapons of some dragons).", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_necklace-of-fireballs", + "fields": { + "name": "Necklace of Fireballs", + "desc": "This necklace has 1d6 + 3 beads hanging from it. You can use an action to detach a bead and throw it up to 60 feet away. When it reaches the end of its trajectory, the bead detonates as a 3rd-level _fireball_ spell (save DC 15).\r\n\r\nYou can hurl multiple beads, or even the whole necklace, as one action. When you do so, increase the level of the _fireball_ by 1 for each bead beyond the first.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_necklace-of-prayer-beads", + "fields": { + "name": "Necklace of Prayer Beads", + "desc": "This necklace has 1d4 + 2 magic beads made from aquamarine, black pearl, or topaz. It also has many nonmagical beads made from stones such as amber, bloodstone, citrine, coral, jade, pearl, or quartz. If a magic bead is removed from the necklace, that bead loses its magic.\r\n\r\nSix types of magic beads exist. The GM decides the type of each bead on the necklace or determines it randomly. A necklace can have more than one bead of the same type. To use one, you must be wearing the necklace. Each bead contains a spell that you can cast from it as a bonus action (using your spell save DC if a save is necessary). Once a magic bead's spell is cast, that bead can't be used again until the next dawn.\r\n\r\n| d20 | Bead of... | Spell |\r\n|-------|--------------|-----------------------------------------------|\r\n| 1-6 | Blessing | Bless |\r\n| 7-12 | Curing | Cure wounds (2nd level) or lesser restoration |\r\n| 13-16 | Favor | Greater restoration |\r\n| 17-18 | Smiting | Branding smite |\r\n| 19 | Summons | Planar ally |\r\n| 20 | Wind walking | Wind walk |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_net", + "fields": { + "name": "Net", + "desc": "A net.\r\n\r\nA Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net.\r\n\r\nWhen you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_net-1", + "fields": { + "name": "Net (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_net-2", + "fields": { + "name": "Net (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_net-3", + "fields": { + "name": "Net (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-greatsword", + "fields": { + "name": "Nine Lives Stealer (Greatsword)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-longsword", + "fields": { + "name": "Nine Lives Stealer (Longsword)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-rapier", + "fields": { + "name": "Nine Lives Stealer (Rapier)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-shortsword", + "fields": { + "name": "Nine Lives Stealer (Shortsword)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_oathbow", + "fields": { + "name": "Oathbow", + "desc": "When you nock an arrow on this bow, it whispers in Elvish, \"Swift defeat to my enemies.\" When you use this weapon to make a ranged attack, you can, as a command phrase, say, \"Swift death to you who have wronged me.\" The target of your attack becomes your sworn enemy until it dies or until dawn seven days later. You can have only one such sworn enemy at a time. When your sworn enemy dies, you can choose a new one after the next dawn.\n\nWhen you make a ranged attack roll with this weapon against your sworn enemy, you have advantage on the roll. In addition, your target gains no benefit from cover, other than total cover, and you suffer no disadvantage due to long range. If the attack hits, your sworn enemy takes an extra 3d6 piercing damage.\n\nWhile your sworn enemy lives, you have disadvantage on attack rolls with all other weapons.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_oil-of-etherealness", + "fields": { + "name": "Oil of Etherealness", + "desc": "Beads of this cloudy gray oil form on the outside of its container and quickly evaporate. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of the _etherealness_ spell for 1 hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_oil-of-sharpness", + "fields": { + "name": "Oil of Sharpness", + "desc": "This clear, gelatinous oil sparkles with tiny, ultrathin silver shards. The oil can coat one slashing or piercing weapon or up to 5 pieces of slashing or piercing ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical and has a +3 bonus to attack and damage rolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_oil-of-slipperiness", + "fields": { + "name": "Oil of Slipperiness", + "desc": "This sticky black unguent is thick and heavy in the container, but it flows quickly when poured. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of a _freedom of movement_ spell for 8 hours.\n\nAlternatively, the oil can be poured on the ground as an action, where it covers a 10-foot square, duplicating the effect of the _grease_ spell in that area for 8 hours.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_oil-of-taggit", + "fields": { + "name": "Oil of taggit", + "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or become poisoned for 24 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage.\\n\\n **_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "400.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_orb", + "fields": { + "name": "Orb", + "desc": "Can be used as an Arcane Focus.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_orb-of-dragonkind", + "fields": { + "name": "Orb of Dragonkind", + "desc": "Ages past, elves and humans waged a terrible war against evil dragons. When the world seemed doomed, powerful wizards came together and worked their greatest magic, forging five _Orbs of Dragonkind_ (or _Dragon Orbs_) to help them defeat the dragons. One orb was taken to each of the five wizard towers, and there they were used to speed the war toward a victorious end. The wizards used the orbs to lure dragons to them, then destroyed the dragons with powerful magic.\\n\\nAs the wizard towers fell in later ages, the orbs were destroyed or faded into legend, and only three are thought to survive. Their magic has been warped and twisted over the centuries, so although their primary purpose of calling dragons still functions, they also allow some measure of control over dragons.\\n\\nEach orb contains the essence of an evil dragon, a presence that resents any attempt to coax magic from it. Those lacking in force of personality might find themselves enslaved to an orb.\\n\\nAn orb is an etched crystal globe about 10 inches in diameter. When used, it grows to about 20 inches in diameter, and mist swirls inside it.\\n\\nWhile attuned to an orb, you can use an action to peer into the orb's depths and speak its command word. You must then make a DC 15 Charisma check. On a successful check, you control the orb for as long as you remain attuned to it. On a failed check, you become charmed by the orb for as long as you remain attuned to it.\\n\\nWhile you are charmed by the orb, you can't voluntarily end your attunement to it, and the orb casts _suggestion_ on you at will (save DC 18), urging you to work toward the evil ends it desires. The dragon essence within the orb might want many things: the annihilation of a particular people, freedom from the orb, to spread suffering in the world, to advance the worship of Tiamat, or something else the GM decides.\\n\\n**_Random Properties_**. An _Orb of Dragonkind_ has the following random properties:\\n\\n* 2 minor beneficial properties\\n* 1 minor detrimental property\\n* 1 major detrimental property\\n\\n**_Spells_**. The orb has 7 charges and regains 1d4 + 3 expended charges daily at dawn. If you control the orb, you can use an action and expend 1 or more charges to cast one of the following spells (save DC 18) from it: _cure wounds_ (5th-level version, 3 charges), _daylight_ (1 charge), _death ward_ (2 charges), or _scrying_ (3 charges).\\n\\nYou can also use an action to cast the _detect magic_ spell from the orb without using any charges.\\n\\n**_Call Dragons_**. While you control the orb, you can use an action to cause the artifact to issue a telepathic call that extends in all directions for 40 miles. Evil dragons in range feel compelled to come to the orb as soon as possible by the most direct route. Dragon deities such as Tiamat are unaffected by this call. Dragons drawn to the orb might be hostile toward you for compelling them against their will. Once you have used this property, it can't be used again for 1 hour.\\n\\n**_Destroying an Orb_**. An _Orb of Dragonkind_ appears fragile but is impervious to most damage, including the attacks and breath weapons of dragons. A _disintegrate_ spell or one good hit from a +3 magic weapon is sufficient to destroy an orb, however.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "artifact" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ox", + "fields": { + "name": "Ox", + "desc": "One ox.", + "document": "srd", + "size": "large", + "weight": "1500.000", + "armor_class": 10, + "hit_points": 15, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_padded-armor", + "fields": { + "name": "Padded Armor", + "desc": "Padded armor consists of quilted layers of cloth and batting.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": "srd_padded", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_painters-supplies", + "fields": { + "name": "Painter's Supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pale-tincture", + "fields": { + "name": "Pale tincture", + "desc": "A creature subjected to this poison must succeed on a DC 16 Constitution saving throw or take 3 (1d6) poison damage and become poisoned. The poisoned creature must repeat the saving throw every 24 hours, taking 3 (1d6) poison damage on a failed save. Until this poison ends, the damage the poison deals can't be healed by any means. After seven successful saving throws, the effect ends and the creature can heal normally. \\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "250.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pan-flute", + "fields": { + "name": "Pan flute", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "12.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_paper-one-sheet", + "fields": { + "name": "Paper (one sheet)", + "desc": "A sheet of paper", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_parchment-one-sheet", + "fields": { + "name": "Parchment (one sheet)", + "desc": "A sheet of parchment", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pearl-of-power", + "fields": { + "name": "Pearl of Power", + "desc": "While this pearl is on your person, you can use an action to speak its command word and regain one expended spell slot. If the expended slot was of 4th level or higher, the new slot is 3rd level. Once you use the pearl, it can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_pepper", + "fields": { + "name": "Pepper", + "desc": "1lb of pepper.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_perfume-vial", + "fields": { + "name": "Perfume (vial)", + "desc": "A vial of perfume.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_periapt-of-health", + "fields": { + "name": "Periapt of Health", + "desc": "You are immune to contracting any disease while you wear this pendant. If you are already infected with a disease, the effects of the disease are suppressed you while you wear the pendant.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_periapt-of-proof-against-poison", + "fields": { + "name": "Periapt of Proof against Poison", + "desc": "This delicate silver chain has a brilliant-cut black gem pendant. While you wear it, poisons have no effect on you. You are immune to the poisoned condition and have immunity to poison damage.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_periapt-of-wound-closure", + "fields": { + "name": "Periapt of Wound Closure", + "desc": "While you wear this pendant, you stabilize whenever you are dying at the start of your turn. In addition, whenever you roll a Hit Die to regain hit points, double the number of hit points it restores.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_philter-of-love", + "fields": { + "name": "Philter of Love", + "desc": "The next time you see a creature within 10 minutes after drinking this philter, you become charmed by that creature for 1 hour. If the creature is of a species and gender you are normally attracted to, you regard it as your true love while you are charmed. This potion's rose-hued, effervescent liquid contains one easy-to-miss bubble shaped like a heart.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_pick-miners", + "fields": { + "name": "Pick, miner's", + "desc": "A pick for mining.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pig", + "fields": { + "name": "Pig", + "desc": "One pig.", + "document": "srd", + "size": "medium", + "weight": "400.000", + "armor_class": 10, + "hit_points": 4, + "cost": "3.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pike", + "fields": { + "name": "Pike", + "desc": "A pike.", + "document": "srd", + "size": "tiny", + "weight": "18.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pike-1", + "fields": { + "name": "Pike (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_pike-2", + "fields": { + "name": "Pike (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_pike-3", + "fields": { + "name": "Pike (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_pipes-of-haunting", + "fields": { + "name": "Pipes of Haunting", + "desc": "You must be proficient with wind instruments to use these pipes. They have 3 charges. You can use an action to play them and expend 1 charge to create an eerie, spellbinding tune. Each creature within 30 feet of you that hears you play must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. If you wish, all creatures in the area that aren't hostile toward you automatically succeed on the saving throw. A creature that fails the saving throw can repeat it at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on its saving throw is immune to the effect of these pipes for 24 hours. The pipes regain 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_pipes-of-the-sewers", + "fields": { + "name": "Pipes of the Sewers", + "desc": "You must be proficient with wind instruments to use these pipes. While you are attuned to the pipes, ordinary rats and giant rats are indifferent toward you and will not attack you unless you threaten or harm them.\r\n\r\nThe pipes have 3 charges. If you play the pipes as an action, you can use a bonus action to expend 1 to 3 charges, calling forth one swarm of rats with each expended charge, provided that enough rats are within half a mile of you to be called in this fashion (as determined by the GM). If there aren't enough rats to form a swarm, the charge is wasted. Called swarms move toward the music by the shortest available route but aren't under your control otherwise. The pipes regain 1d3 expended charges daily at dawn.\r\n\r\nWhenever a swarm of rats that isn't under another creature's control comes within 30 feet of you while you are playing the pipes, you can make a Charisma check contested by the swarm's Wisdom check. If you lose the contest, the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours. If you win the contest, the swarm is swayed by the pipes' music and becomes friendly to you and your companions for as long as you continue to play the pipes each round as an action. A friendly swarm obeys your commands. If you issue no commands to a friendly swarm, it defends itself but otherwise takes no actions. If a friendly swarm starts its turn and can't hear the pipes' music, your control over that swarm ends, and the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_piton", + "fields": { + "name": "Piton", + "desc": "A piton for climbing.", + "document": "srd", + "size": "tiny", + "weight": "0.250", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_plate-armor", + "fields": { + "name": "Plate Armor", + "desc": "Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.", + "document": "srd", + "size": "tiny", + "weight": "65.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1500.00", + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_plate-armor-of-etherealness", + "fields": { + "name": "Plate Armor of Etherealness", + "desc": "While you're wearing this armor, you can speak its command word as an action to gain the effect of the _etherealness_ spell, which last for 10 minutes or until you remove the armor or use an action to speak the command word again. This property of the armor can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_platinum", + "fields": { + "name": "Platinum", + "desc": "1 lb. of platinum.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "500.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_platinum-piece", + "fields": { + "name": "Platinum Piece", + "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_playing-card-set", + "fields": { + "name": "Playing card set", + "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_poison-basic", + "fields": { + "name": "Poison, Basic", + "desc": "You can use the poison in this vial to coat one slashing or piercing weapon or up to three pieces of ammunition. Applying the poison takes an action. A creature hit by the poisoned weapon or ammunition must make a DC 10 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "100.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_poisoners-kit", + "fields": { + "name": "Poisoner's kit", + "desc": "A poisoner’s kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pole-10-foot", + "fields": { + "name": "Pole (10-foot)", + "desc": "A 10 foot pole.", + "document": "srd", + "size": "tiny", + "weight": "7.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_portable-hole", + "fields": { + "name": "Portable Hole", + "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold a _portable hole_ and place it on or against a solid surface, whereupon the _portable hole_ creates an extradimensional hole 10 feet deep. The cylindrical space within the hole exists on a different plane, so it can't be used to create open passages. Any creature inside an open _portable hole_ can exit the hole by climbing out of it.\r\n\r\nYou can use an action to close a _portable hole_ by taking hold of the edges of the cloth and folding it up. Folding the cloth closes the hole, and any creatures or objects within remain in the extradimensional space. No matter what's in it, the hole weighs next to nothing.\r\n\r\nIf the hole is folded up, a creature within the hole's extradimensional space can use an action to make a DC 10 Strength check. On a successful check, the creature forces its way out and appears within 5 feet of the _portable hole_ or the creature carrying it. A breathing creature within a closed _portable hole_ can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing a _portable hole_ inside an extradimensional space created by a _bag of holding_, _handy haversack_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_pot-iron", + "fields": { + "name": "Pot, iron", + "desc": "An iron pot. Capacity: 1 gallon liquid.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-animal-friendship", + "fields": { + "name": "Potion of Animal Friendship", + "desc": "When you drink this potion, you can cast the _animal friendship_ spell (save DC 13) for 1 hour at will. Agitating this muddy liquid brings little bits into view: a fish scale, a hummingbird tongue, a cat claw, or a squirrel hair.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-clairvoyance", + "fields": { + "name": "Potion of Clairvoyance", + "desc": "When you drink this potion, you gain the effect of the _clairvoyance_ spell. An eyeball bobs in this yellowish liquid but vanishes when the potion is opened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-climbing", + "fields": { + "name": "Potion of Climbing", + "desc": "When you drink this potion, you gain a climbing speed equal to your walking speed for 1 hour. During this time, you have advantage on Strength (Athletics) checks you make to climb. The potion is separated into brown, silver, and gray layers resembling bands of stone. Shaking the bottle fails to mix the colors.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-cloud-giant-strength", + "fields": { + "name": "Potion of Cloud Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-diminution", + "fields": { + "name": "Potion of Diminution", + "desc": "When you drink this potion, you gain the \"reduce\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously contracts to a tiny bead and then expands to color the clear liquid around it. Shaking the bottle fails to interrupt this process.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-fire-giant-strength", + "fields": { + "name": "Potion of Fire Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-flying", + "fields": { + "name": "Potion of Flying", + "desc": "When you drink this potion, you gain a flying speed equal to your walking speed for 1 hour and can hover. If you're in the air when the potion wears off, you fall unless you have some other means of staying aloft. This potion's clear liquid floats at the top of its container and has cloudy white impurities drifting in it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-frost-giant-strength", + "fields": { + "name": "Potion of Frost Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-gaseous-form", + "fields": { + "name": "Potion of Gaseous Form", + "desc": "When you drink this potion, you gain the effect of the _gaseous form_ spell for 1 hour (no concentration required) or until you end the effect as a bonus action. This potion's container seems to hold fog that moves and pours like water.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-greater-healing", + "fields": { + "name": "Potion of Greater Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-growth", + "fields": { + "name": "Potion of Growth", + "desc": "When you drink this potion, you gain the \"enlarge\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously expands from a tiny bead to color the clear liquid around it and then contracts. Shaking the bottle fails to interrupt this process.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-healing", + "fields": { + "name": "Potion of Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-heroism", + "fields": { + "name": "Potion of Heroism", + "desc": "For 1 hour after drinking it, you gain 10 temporary hit points that last for 1 hour. For the same duration, you are under the effect of the _bless_ spell (no concentration required). This blue potion bubbles and steams as if boiling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-hill-giant-strength", + "fields": { + "name": "Potion of Hill Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-invisibility", + "fields": { + "name": "Potion of Invisibility", + "desc": "This potion's container looks empty but feels as though it holds liquid. When you drink it, you become invisible for 1 hour. Anything you wear or carry is invisible with you. The effect ends early if you attack or cast a spell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-mind-reading", + "fields": { + "name": "Potion of Mind Reading", + "desc": "When you drink this potion, you gain the effect of the _detect thoughts_ spell (save DC 13). The potion's dense, purple liquid has an ovoid cloud of pink floating in it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-poison", + "fields": { + "name": "Potion of Poison", + "desc": "This concoction looks, smells, and tastes like a _potion of healing_ or other beneficial potion. However, it is actually poison masked by illusion magic. An _identify_ spell reveals its true nature.\n\nIf you drink it, you take 3d6 poison damage, and you must succeed on a DC 13 Constitution saving throw or be poisoned. At the start of each of your turns while you are poisoned in this way, you take 3d6 poison damage. At the end of each of your turns, you can repeat the saving throw. On a successful save, the poison damage you take on your subsequent turns decreases by 1d6. The poison ends when the damage decreases to 0.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-resistance", + "fields": { + "name": "Potion of Resistance", + "desc": "When you drink this potion, you gain resistance to one type of damage for 1 hour. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-speed", + "fields": { + "name": "Potion of Speed", + "desc": "When you drink this potion, you gain the effect of the _haste_ spell for 1 minute (no concentration required). The potion's yellow fluid is streaked with black and swirls on its own.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-stone-giant-strength", + "fields": { + "name": "Potion of Stone Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-storm-giant-strength", + "fields": { + "name": "Potion of Storm Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-superior-healing", + "fields": { + "name": "Potion of Superior Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-supreme-healing", + "fields": { + "name": "Potion of Supreme Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potion-of-water-breathing", + "fields": { + "name": "Potion of Water Breathing", + "desc": "You can breathe underwater for 1 hour after drinking this potion. Its cloudy green fluid smells of the sea and has a jellyfish-like bubble floating in it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_potters-tools", + "fields": { + "name": "Potter's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_pouch", + "fields": { + "name": "Pouch", + "desc": "A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch (described earlier in this section).\r\nCapacity: 1/5 cubic foot/6 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_purple-worm-poison", + "fields": { + "name": "Purple worm poison", + "desc": "This poison must be harvested from a dead or incapacitated purple worm. A creature subjected to this poison must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2000.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_quarterstaff", + "fields": { + "name": "Quarterstaff", + "desc": "A quarterstaff.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_quarterstaff-1", + "fields": { + "name": "Quarterstaff (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_quarterstaff-2", + "fields": { + "name": "Quarterstaff (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_quarterstaff-3", + "fields": { + "name": "Quarterstaff (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_quiver", + "fields": { + "name": "Quiver", + "desc": "A quiver can hold up to 20 arrows.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_ram-portable", + "fields": { + "name": "Ram, Portable", + "desc": "You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.", + "document": "srd", + "size": "tiny", + "weight": "35.000", + "armor_class": 0, + "hit_points": 0, + "cost": "4.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_rapier", + "fields": { + "name": "Rapier", + "desc": "A rapier.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_rapier-1", + "fields": { + "name": "Rapier (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rapier-2", + "fields": { + "name": "Rapier (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rapier-3", + "fields": { + "name": "Rapier (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rations-1-day", + "fields": { + "name": "Rations (1 day)", + "desc": "Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_reliquary", + "fields": { + "name": "Reliquary", + "desc": "Can be used as a holy symbol.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_restorative-ointment", + "fields": { + "name": "Restorative Ointment", + "desc": "This glass jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture that smells faintly of aloe. The jar and its contents weigh 1/2 pound.\r\n\r\nAs an action, one dose of the ointment can be swallowed or applied to the skin. The creature that receives it regains 2d8 + 2 hit points, ceases to be poisoned, and is cured of any disease.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-mail", + "fields": { + "name": "Ring mail", + "desc": "This armor is leather armor with heavy rings sewn into it. The rings help reinforce the armor against blows from swords and axes. Ring mail is inferior to chain mail, and it's usually worn only by those who can't afford better armor.", + "document": "srd", + "size": "tiny", + "weight": "40.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": "srd_ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-animal-influence", + "fields": { + "name": "Ring of Animal Influence", + "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 of its charges to cast one of the following spells:\n\n* _Animal friendship_ (save DC 13)\n* _Fear_ (save DC 13), targeting only beasts that have an Intelligence of 3 or lower\n* _Speak with animals_", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-djinni-summoning", + "fields": { + "name": "Ring of Djinni Summoning", + "desc": "While wearing this ring, you can speak its command word as an action to summon a particular djinni from the Elemental Plane of Air. The djinni appears in an unoccupied space you choose within 120 feet of you. It remains as long as you concentrate (as if concentrating on a spell), to a maximum of 1 hour, or until it drops to 0 hit points. It then returns to its home plane.\n\nWhile summoned, the djinni is friendly to you and your companions. It obeys any commands you give it, no matter what language you use. If you fail to command it, the djinni defends itself against attackers but takes no other actions.\n\nAfter the djinni departs, it can't be summoned again for 24 hours, and the ring becomes nonmagical if the djinni dies.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-elemental-command", + "fields": { + "name": "Ring of Elemental Command", + "desc": "This ring is linked to one of the four Elemental Planes. The GM chooses or randomly determines the linked plane.\n\nWhile wearing this ring, you have advantage on attack rolls against elementals from the linked plane, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\n\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\n\n**_Ring of Air Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an air elemental. In addition, when you fall, you descend 60 feet per round and take no damage from falling. You can also speak and understand Auran.\n\nIf you help slay an air elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to lightning damage.\n* You have a flying speed equal to your walking speed and can hover.\n* You can cast the following spells from the ring, expending the necessary number of charges: _chain lightning_ (3 charges), _gust of wind_ (2 charges), or _wind wall_ (1 charge).\n\n**_Ring of Earth Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an earth elemental. In addition, you can move in difficult terrain that is composed of rubble, rocks, or dirt as if it were normal terrain. You can also speak and understand Terran.\n\nIf you help slay an earth elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to acid damage.\n* You can move through solid earth or rock as if those areas were difficult terrain. If you end your turn there, you are shunted out to the nearest unoccupied space you last occupied.\n* You can cast the following spells from the ring, expending the necessary number of charges: _stone shape_ (2 charges), _stoneskin_ (3 charges), or _wall of stone_ (3 charges).\n\n**_Ring of Fire Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a fire elemental. In addition, you have resistance to fire damage. You can also speak and understand Ignan.\n\nIf you help slay a fire elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You are immune to fire damage.\n* You can cast the following spells from the ring, expending the necessary number of charges: _burning hands_ (1 charge), _fireball_ (2 charges), and _wall of fire_ (3 charges).\n\n**_Ring of Water Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a water elemental. In addition, you can stand on and walk across liquid surfaces as if they were solid ground. You can also speak and understand Aquan.\n\nIf you help slay a water elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You can breathe underwater and have a swimming speed equal to your walking speed.\n* You can cast the following spells from the ring, expending the necessary number of charges: _create or destroy water_ (1 charge), _control water_ (3 charges), _ice storm_ (2 charges), or _wall of ice_ (3 charges).", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-evasion", + "fields": { + "name": "Ring of Evasion", + "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. When you fail a Dexterity saving throw while wearing it, you can use your reaction to expend 1 of its charges to succeed on that saving throw instead.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-feather-falling", + "fields": { + "name": "Ring of Feather Falling", + "desc": "When you fall while wearing this ring, you descend 60 feet per round and take no damage from falling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-free-action", + "fields": { + "name": "Ring of Free Action", + "desc": "While you wear this ring, difficult terrain doesn't cost you extra movement. In addition, magic can neither reduce your speed nor cause you to be paralyzed or restrained.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-invisibility", + "fields": { + "name": "Ring of Invisibility", + "desc": "While wearing this ring, you can turn invisible as an action. Anything you are wearing or carrying is invisible with you. You remain invisible until the ring is removed, until you attack or cast a spell, or until you use a bonus action to become visible again.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-jumping", + "fields": { + "name": "Ring of Jumping", + "desc": "While wearing this ring, you can cast the _jump_ spell from it as a bonus action at will, but can target only yourself when you do so.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-mind-shielding", + "fields": { + "name": "Ring of Mind Shielding", + "desc": "While wearing this ring, you are immune to magic that allows other creatures to read your thoughts, determine whether you are lying, know your alignment, or know your creature type. Creatures can telepathically communicate with you only if you allow it.\n\nYou can use an action to cause the ring to become invisible until you use another action to make it visible, until you remove the ring, or until you die.\n\nIf you die while wearing the ring, your soul enters it, unless it already houses a soul. You can remain in the ring or depart for the afterlife. As long as your soul is in the ring, you can telepathically communicate with any creature wearing it. A wearer can't prevent this telepathic communication.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-protection", + "fields": { + "name": "Ring of Protection", + "desc": "You gain a +1 bonus to AC and saving throws while wearing this ring.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-regeneration", + "fields": { + "name": "Ring of Regeneration", + "desc": "While wearing this ring, you regain 1d6 hit points every 10 minutes, provided that you have at least 1 hit point. If you lose a body part, the ring causes the missing part to regrow and return to full functionality after 1d6 + 1 days if you have at least 1 hit point the whole time.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-resistance", + "fields": { + "name": "Ring of Resistance", + "desc": "You have resistance to one damage type while wearing this ring. The gem in the ring indicates the type, which the GM chooses or determines randomly.\n\n| d10 | Damage Type | Gem |\n|-----|-------------|------------|\n| 1 | Acid | Pearl |\n| 2 | Cold | Tourmaline |\n| 3 | Fire | Garnet |\n| 4 | Force | Sapphire |\n| 5 | Lightning | Citrine |\n| 6 | Necrotic | Jet |\n| 7 | Poison | Amethyst |\n| 8 | Psychic | Jade |\n| 9 | Radiant | Topaz |\n| 10 | Thunder | Spinel |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-shooting-stars", + "fields": { + "name": "Ring of Shooting Stars", + "desc": "While wearing this ring in dim light or darkness, you can cast _dancing lights_ and _light_ from the ring at will. Casting either spell from the ring requires an action.\n\nThe ring has 6 charges for the following other properties. The ring regains 1d6 expended charges daily at dawn.\n\n**_Faerie Fire_**. You can expend 1 charge as an action to cast _faerie fire_ from the ring.\n\n**_Ball Lightning_**. You can expend 2 charges as an action to create one to four 3-foot-diameter spheres of lightning. The more spheres you create, the less powerful each sphere is individually.\n\nEach sphere appears in an unoccupied space you can see within 120 feet of you. The spheres last as long as you concentrate (as if concentrating on a spell), up to 1 minute. Each sphere sheds dim light in a 30-foot radius.\n\nAs a bonus action, you can move each sphere up to 30 feet, but no farther than 120 feet away from you. When a creature other than you comes within 5 feet of a sphere, the sphere discharges lightning at that creature and disappears. That creature must make a DC 15 Dexterity saving throw. On a failed save, the creature takes lightning damage based on the number of spheres you created.\n\n| Spheres | Lightning Damage |\n|---------|------------------|\n| 4 | 2d4 |\n| 3 | 2d6 |\n| 2 | 5d4 |\n| 1 | 4d12 |\n\n**_Shooting Stars_**. You can expend 1 to 3 charges as an action. For every charge you expend, you launch a glowing mote of light from the ring at a point you can see within 60 feet of you. Each creature within a 15-foot cube originating from that point is showered in sparks and must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-spell-storing", + "fields": { + "name": "Ring of Spell Storing", + "desc": "This ring stores spells cast into it, holding them until the attuned wearer uses them. The ring can store up to 5 levels worth of spells at a time. When found, it contains 1d6 - 1 levels of stored spells chosen by the GM.\n\nAny creature can cast a spell of 1st through 5th level into the ring by touching the ring as the spell is cast. The spell has no effect, other than to be stored in the ring. If the ring can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\n\nWhile wearing this ring, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the ring is no longer stored in it, freeing up space.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-spell-turning", + "fields": { + "name": "Ring of Spell Turning", + "desc": "While wearing this ring, you have advantage on saving throws against any spell that targets only you (not in an area of effect). In addition, if you roll a 20 for the save and the spell is 7th level or lower, the spell has no effect on you and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-swimming", + "fields": { + "name": "Ring of Swimming", + "desc": "You have a swimming speed of 40 feet while wearing this ring.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-telekinesis", + "fields": { + "name": "Ring of Telekinesis", + "desc": "While wearing this ring, you can cast the _telekinesis_ spell at will, but you can target only objects that aren't being worn or carried.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-the-ram", + "fields": { + "name": "Ring of the Ram", + "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a spectral ram's head and makes its attack roll with a +7 bonus. On a hit, for each charge you spend, the target takes 2d10 force damage and is pushed 5 feet away from you.\n\nAlternatively, you can expend 1 to 3 of the ring's charges as an action to try to break an object you can see within 60 feet of you that isn't being worn or carried. The ring makes a Strength check with a +5 bonus for each charge you spend.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-three-wishes", + "fields": { + "name": "Ring of Three Wishes", + "desc": "While wearing this ring, you can use an action to expend 1 of its 3 charges to cast the _wish_ spell from it. The ring becomes nonmagical when you use the last charge.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-warmth", + "fields": { + "name": "Ring of Warmth", + "desc": "While wearing this ring, you have resistance to cold damage. In addition, you and everything you wear and carry are unharmed by temperatures as low as -50 degrees Fahrenheit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-water-walking", + "fields": { + "name": "Ring of Water Walking", + "desc": "While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_ring-of-x-ray-vision", + "fields": { + "name": "Ring of X-ray Vision", + "desc": "While wearing this ring, you can use an action to speak its command word. When you do so, you can see into and through solid matter for 1 minute. This vision has a radius of 30 feet. To you, solid objects within that radius appear transparent and don't prevent light from passing through them. The vision can penetrate 1 foot of stone, 1 inch of common metal, or up to 3 feet of wood or dirt. Thicker substances block the vision, as does a thin sheet of lead.\n\nWhenever you use the ring again before taking a long rest, you must succeed on a DC 15 Constitution saving throw or gain one level of exhaustion.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_robe-of-eyes", + "fields": { + "name": "Robe of Eyes", + "desc": "This robe is adorned with eyelike patterns. While you wear the robe, you gain the following benefits:\r\n\r\n* The robe lets you see in all directions, and you have advantage on Wisdom (Perception) checks that rely on sight.\r\n* You have darkvision out to a range of 120 feet.\r\n* You can see invisible creatures and objects, as well as see into the Ethereal Plane, out to a range of 120 feet.\r\n\r\nThe eyes on the robe can't be closed or averted. Although you can close or avert your own eyes, you are never considered to be doing so while wearing this robe.\r\n\r\nA _light_ spell cast on the robe or a _daylight_ spell cast within 5 feet of the robe causes you to be blinded for 1 minute. At the end of each of your turns, you can make a Constitution saving throw (DC 11 for _light_ or DC 15 for _daylight_), ending the blindness on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_robe-of-scintillating-colors", + "fields": { + "name": "Robe of Scintillating Colors", + "desc": "This robe has 3 charges, and it regains 1d3 expended charges daily at dawn. While you wear it, you can use an action and expend 1 charge to cause the garment to display a shifting pattern of dazzling hues until the end of your next turn. During this time, the robe sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Creatures that can see you have disadvantage on attack rolls against you. In addition, any creature in the bright light that can see you when the robe's power is activated must succeed on a DC 15 Wisdom saving throw or become stunned until the effect ends.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_robe-of-stars", + "fields": { + "name": "Robe of Stars", + "desc": "This black or dark blue robe is embroidered with small white or silver stars. You gain a +1 bonus to saving throws while you wear it.\r\n\r\nSix stars, located on the robe's upper front portion, are particularly large. While wearing this robe, you can use an action to pull off one of the stars and use it to cast _magic missile_ as a 5th-level spell. Daily at dusk, 1d6 removed stars reappear on the robe.\r\n\r\nWhile you wear the robe, you can use an action to enter the Astral Plane along with everything you are wearing and carrying. You remain there until you use an action to return to the plane you were on. You reappear in the last space you occupied, or if that space is occupied, the nearest unoccupied space.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_robe-of-the-archmagi", + "fields": { + "name": "Robe of the Archmagi", + "desc": "This elegant garment is made from exquisite cloth of white, gray, or black and adorned with silvery runes. The robe's color corresponds to the alignment for which the item was created. A white robe was made for good, gray for neutral, and black for evil. You can't attune to a _robe of the archmagi_ that doesn't correspond to your alignment.\r\n\r\nYou gain these benefits while wearing the robe:\r\n\r\n* If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* Your spell save DC and spell attack bonus each increase by 2.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_robe-of-useful-items", + "fields": { + "name": "Robe of Useful Items", + "desc": "This robe has cloth patches of various shapes and colors covering it. While wearing the robe, you can use an action to detach one of the patches, causing it to become the object or creature it represents. Once the last patch is removed, the robe becomes an ordinary garment.\r\n\r\nThe robe has two of each of the following patches:\r\n\r\n* Dagger\r\n* Bullseye lantern (filled and lit)\r\n* Steel mirror\r\n* 10-foot pole\r\n* Hempen rope (50 feet, coiled)\r\n* Sack\r\n\r\nIn addition, the robe has 4d4 other patches. The GM chooses the patches or determines them randomly.\r\n\r\n| d100 | Patch |\r\n|--------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-08 | Bag of 100 gp |\r\n| 09-15 | Silver coffer (1 foot long, 6 inches wide and deep) worth 500 gp |\r\n| 16-22 | Iron door (up to 10 feet wide and 10 feet high, barred on one side of your choice), which you can place in an opening you can reach; it conforms to fit the opening, attaching and hinging itself |\r\n| 23-30 | 10 gems worth 100 gp each |\r\n| 31-44 | Wooden ladder (24 feet long) |\r\n| 45-51 | A riding horse with saddle bags |\r\n| 52-59 | Pit (a cube 10 feet on a side), which you can place on the ground within 10 feet of you |\r\n| 60-68 | 4 potions of healing |\r\n| 69-75 | Rowboat (12 feet long) |\r\n| 76-83 | Spell scroll containing one spell of 1st to 3rd level |\r\n| 84-90 | 2 mastiffs |\r\n| 91-96 | Window (2 feet by 4 feet, up to 2 feet deep), which you can place on a vertical surface you can reach |\r\n| 97-100 | Portable ram |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_robes", + "fields": { + "name": "Robes", + "desc": "Robes, for wearing.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_rod", + "fields": { + "name": "Rod", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_rod-of-absorption", + "fields": { + "name": "Rod of Absorption", + "desc": "While holding this rod, you can use your reaction to absorb a spell that is targeting only you and not with an area of effect. The absorbed spell's effect is canceled, and the spell's energy-not the spell itself-is stored in the rod. The energy has the same level as the spell when it was cast. The rod can absorb and store up to 50 levels of energy over the course of its existence. Once the rod absorbs 50 levels of energy, it can't absorb more. If you are targeted by a spell that the rod can't store, the rod has no effect on that spell.\n\nWhen you become attuned to the rod, you know how many levels of energy the rod has absorbed over the course of its existence, and how many levels of spell energy it currently has stored.\n\nIf you are a spellcaster holding the rod, you can convert energy stored in it into spell slots to cast spells you have prepared or know. You can create spell slots only of a level equal to or lower than your own spell slots, up to a maximum of 5th level. You use the stored levels in place of your slots, but otherwise cast the spell as normal. For example, you can use 3 levels stored in the rod as a 3rd-level spell slot.\n\nA newly found rod has 1d10 levels of spell energy stored in it already. A rod that can no longer absorb spell energy and has no energy remaining becomes nonmagical.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rod-of-alertness", + "fields": { + "name": "Rod of Alertness", + "desc": "This rod has a flanged head and the following properties.\n\n**_Alertness_**. While holding the rod, you have advantage on Wisdom (Perception) checks and on rolls for initiative.\n\n**_Spells_**. While holding the rod, you can use an action to cast one of the following spells from it: _detect evil and good_, _detect magic_, _detect poison and disease_, or _see invisibility._\n\n**_Protective Aura_**. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's head sheds bright light in a 60-foot radius and dim light for an additional 60 feet. While in that bright light, you and any creature that is friendly to you gain a +1 bonus to AC and saving throws and can sense the location of any invisible hostile creature that is also in the bright light.\n\nThe rod's head stops glowing and the effect ends after 10 minutes, or when a creature uses an action to pull the rod from the ground. This property can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rod-of-lordly-might", + "fields": { + "name": "Rod of Lordly Might", + "desc": "This rod has a flanged head, and it functions as a magic mace that grants a +3 bonus to attack and damage rolls made with it. The rod has properties associated with six different buttons that are set in a row along the haft. It has three other properties as well, detailed below.\n\n**_Six Buttons_**. You can press one of the rod's six buttons as a bonus action. A button's effect lasts until you push a different button or until you push the same button again, which causes the rod to revert to its normal form.\n\nIf you press **button 1**, the rod becomes a _flame tongue_, as a fiery blade sprouts from the end opposite the rod's flanged head.\n\nIf you press **button 2**, the rod's flanged head folds down and two crescent-shaped blades spring out, transforming the rod into a magic battleaxe that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 3**, the rod's flanged head folds down, a spear point springs from the rod's tip, and the rod's handle lengthens into a 6-foot haft, transforming the rod into a magic spear that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 4**, the rod transforms into a climbing pole up to 50 feet long, as you specify. In surfaces as hard as granite, a spike at the bottom and three hooks at the top anchor the pole. Horizontal bars 3 inches long fold out from the sides, 1 foot apart, forming a ladder. The pole can bear up to 4,000 pounds. More weight or lack of solid anchoring causes the rod to revert to its normal form.\n\nIf you press **button 5**, the rod transforms into a handheld battering ram and grants its user a +10 bonus to Strength checks made to break through doors, barricades, and other barriers.\n\nIf you press **button 6**, the rod assumes or remains in its normal form and indicates magnetic north. (Nothing happens if this function of the rod is used in a location that has no magnetic north.) The rod also gives you knowledge of your approximate depth beneath the ground or your height above it.\n\n**_Drain Life_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target takes an extra 4d6 necrotic damage, and you regain a number of hit points equal to half that necrotic damage. This property can't be used again until the next dawn.\n\n**_Paralyze_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Strength saving throw. On a failure, the target is paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. This property can't be used again until the next dawn.\n\n**_Terrify_**. While holding the rod, you can use an action to force each creature you can see within 30 feet of you to make a DC 17 Wisdom saving throw. On a failure, a target is frightened of you for 1 minute. A frightened target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This property can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rod-of-rulership", + "fields": { + "name": "Rod of Rulership", + "desc": "You can use an action to present the rod and command obedience from each creature of your choice that you can see within 120 feet of you. Each target must succeed on a DC 15 Wisdom saving throw or be charmed by you for 8 hours. While charmed in this way, the creature regards you as its trusted leader. If harmed by you or your companions, or commanded to do something contrary to its nature, a target ceases to be charmed in this way. The rod can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rod-of-security", + "fields": { + "name": "Rod of Security", + "desc": "While holding this rod, you can use an action to activate it. The rod then instantly transports you and up to 199 other willing creatures you can see to a paradise that exists in an extraplanar space. You choose the form that the paradise takes. It could be a tranquil garden, lovely glade, cheery tavern, immense palace, tropical island, fantastic carnival, or whatever else you can imagine. Regardless of its nature, the paradise contains enough water and food to sustain its visitors. Everything else that can be interacted with inside the extraplanar space can exist only there. For example, a flower picked from a garden in the paradise disappears if it is taken outside the extraplanar space.\n\nFor each hour spent in the paradise, a visitor regains hit points as if it had spent 1 Hit Die. Also, creatures don't age while in the paradise, although time passes normally. Visitors can remain in the paradise for up to 200 days divided by the number of creatures present (round down).\n\nWhen the time runs out or you use an action to end it, all visitors reappear in the location they occupied when you activated the rod, or an unoccupied space nearest that location. The rod can't be used again until ten days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rope-hempen-50-feet", + "fields": { + "name": "Rope, hempen (50 feet)", + "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 2, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_rope-of-climbing", + "fields": { + "name": "Rope of Climbing", + "desc": "This 60-foot length of silk rope weighs 3 pounds and can hold up to 3,000 pounds. If you hold one end of the rope and use an action to speak the command word, the rope animates. As a bonus action, you can command the other end to move toward a destination you choose. That end moves 10 feet on your turn when you first command it and 10 feet on each of your turns until reaching its destination, up to its maximum length away, or until you tell it to stop. You can also tell the rope to fasten itself securely to an object or to unfasten itself, to knot or unknot itself, or to coil itself for carrying.\r\n\r\nIf you tell the rope to knot, large knots appear at 1* foot intervals along the rope. While knotted, the rope shortens to a 50-foot length and grants advantage on checks made to climb it.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rope-of-entanglement", + "fields": { + "name": "Rope of Entanglement", + "desc": "This rope is 30 feet long and weighs 3 pounds. If you hold one end of the rope and use an action to speak its command word, the other end darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 15 Dexterity saving throw or become restrained.\r\n\r\nYou can release the creature by using a bonus action to speak a second command word. A target restrained by the rope can use an action to make a DC 15 Strength or Dexterity check (target's choice). On a success, the creature is no longer restrained by the rope.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_rope-silk-50-feet", + "fields": { + "name": "Rope, silk (50 feet)", + "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_rowboat", + "fields": { + "name": "Rowboat", + "desc": "Waterborne vehicle. Speed 1.5mph", + "document": "srd", + "size": "large", + "weight": "100.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sack", + "fields": { + "name": "Sack", + "desc": "A sack. Capacity: 1 cubic foot/30 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_saffron", + "fields": { + "name": "Saffron", + "desc": "1lb of saffron.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sailing-ship", + "fields": { + "name": "Sailing Ship", + "desc": "Waterborne vehicle. Speed 2mph", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_salt", + "fields": { + "name": "Salt", + "desc": "1lb of salt.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_scale-mail", + "fields": { + "name": "Scale mail", + "desc": "This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.", + "document": "srd", + "size": "tiny", + "weight": "45.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": "srd_scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_scale-merchants", + "fields": { + "name": "Scale, Merchant's", + "desc": "A scale includes a small balance, pans, and a suitable assortment of weights up to 2 pounds. With it, you can measure the exact weight of small objects, such as raw precious metals or trade goods, to help determine their worth.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_scarab-of-protection", + "fields": { + "name": "Scarab of Protection", + "desc": "If you hold this beetle-shaped medallion in your hand for 1 round, an inscription appears on its surface revealing its magical nature. It provides two benefits while it is on your person:\r\n\r\n* You have advantage on saving throws against spells.\r\n* The scarab has 12 charges. If you fail a saving throw against a necromancy spell or a harmful effect originating from an undead creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into powder and is destroyed when its last charge is expended.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_scimitar", + "fields": { + "name": "Scimitar", + "desc": "A scimitar.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_scimitar-1", + "fields": { + "name": "Scimitar (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_scimitar-2", + "fields": { + "name": "Scimitar (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_scimitar-3", + "fields": { + "name": "Scimitar (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_scimitar-of-speed", + "fields": { + "name": "Scimitar of Speed", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. In addition, you can make one attack with it as a bonus action on each of your turns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sealing-wax", + "fields": { + "name": "Sealing wax", + "desc": "For sealing written letters.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_serpent-venom", + "fields": { + "name": "Serpent venom", + "desc": "This poison must be harvested from a dead or incapacitated giant poisonous snake. A creature subjected to this poison must succeed on a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_shawm", + "fields": { + "name": "Shawm", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sheep", + "fields": { + "name": "Sheep", + "desc": "One sheep.", + "document": "srd", + "size": "medium", + "weight": "75.000", + "armor_class": 10, + "hit_points": 4, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_shield", + "fields": { + "name": "Shield", + "desc": "A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_shield-of-missile-attraction", + "fields": { + "name": "Shield of Missile Attraction", + "desc": "While holding this shield, you have resistance to damage from ranged weapon attacks.\n\n**_Curse_**. This shield is cursed. Attuning to it curses you until you are targeted by the _remove curse_ spell or similar magic. Removing the shield fails to end the curse on you. Whenever a ranged weapon attack is made against a target within 10 feet of you, the curse causes you to become the target instead.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortbow", + "fields": { + "name": "Shortbow", + "desc": "A shortbow", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortbow-1", + "fields": { + "name": "Shortbow (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortbow-2", + "fields": { + "name": "Shortbow (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortbow-3", + "fields": { + "name": "Shortbow (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortsword", + "fields": { + "name": "Shortsword", + "desc": "A short sword.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortsword-1", + "fields": { + "name": "Shortsword (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortsword-2", + "fields": { + "name": "Shortsword (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shortsword-3", + "fields": { + "name": "Shortsword (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_shovel", + "fields": { + "name": "Shovel", + "desc": "A shovel.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sickle", + "fields": { + "name": "Sickle", + "desc": "A sickle.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sickle-1", + "fields": { + "name": "Sickle (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_sickle-2", + "fields": { + "name": "Sickle (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_sickle-3", + "fields": { + "name": "Sickle (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_signal-whistle", + "fields": { + "name": "Signal whistle", + "desc": "For signalling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_signet-ring", + "fields": { + "name": "Signet Ring", + "desc": "A ring with a signet on it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_silk", + "fields": { + "name": "Silk", + "desc": "1 sq. yd. of silk.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_silver", + "fields": { + "name": "Silver", + "desc": "1lb of silver", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_silver-piece", + "fields": { + "name": "Silver Piece", + "desc": "One gold piece is worth ten silver pieces, the most prevalent coin among commoners. A silver piece buys a laborer's work for half a day, a flask of lamp oil, or a night's rest in a poor inn.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sled", + "fields": { + "name": "Sled", + "desc": "Drawn vehicle", + "document": "srd", + "size": "large", + "weight": "300.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sling", + "fields": { + "name": "Sling", + "desc": "A sling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sling-1", + "fields": { + "name": "Sling (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_sling-2", + "fields": { + "name": "Sling (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_sling-3", + "fields": { + "name": "Sling (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_sling-bullets", + "fields": { + "name": "Sling bullets", + "desc": "Technically their cost is 20 for 4cp.", + "document": "srd", + "size": "tiny", + "weight": "0.075", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_slippers-of-spider-climbing", + "fields": { + "name": "Slippers of Spider Climbing", + "desc": "While you wear these light shoes, you can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free. You have a climbing speed equal to your walking speed. However, the slippers don't allow you to move this way on a slippery surface, such as one covered by ice or oil.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_smiths-tools", + "fields": { + "name": "Smith's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_soap", + "fields": { + "name": "Soap", + "desc": "For cleaning.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sovereign-glue", + "fields": { + "name": "Sovereign Glue", + "desc": "This viscous, milky-white substance can form a permanent adhesive bond between any two objects. It must be stored in a jar or flask that has been coated inside with _oil of slipperiness._ When found, a container contains 1d6 + 1 ounces.\r\n\r\nOne ounce of the glue can cover a 1-foot square surface. The glue takes 1 minute to set. Once it has done so, the bond it creates can be broken only by the application of _universal solvent_ or _oil of etherealness_, or with a _wish_ spell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spear", + "fields": { + "name": "Spear", + "desc": "A spear.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_spear-1", + "fields": { + "name": "Spear (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spear-2", + "fields": { + "name": "Spear (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spear-3", + "fields": { + "name": "Spear (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-1st-level", + "fields": { + "name": "Spell Scroll (1st Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-2nd-level", + "fields": { + "name": "Spell Scroll (2nd Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-3rd-level", + "fields": { + "name": "Spell Scroll (3rd Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-4th-level", + "fields": { + "name": "Spell Scroll (4th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-5th-level", + "fields": { + "name": "Spell Scroll (5th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-6th-level", + "fields": { + "name": "Spell Scroll (6th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-7th-level", + "fields": { + "name": "Spell Scroll (7th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-8th-level", + "fields": { + "name": "Spell Scroll (8th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-9th-level", + "fields": { + "name": "Spell Scroll (9th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spell-scroll-cantrip", + "fields": { + "name": "Spell Scroll (Cantrip)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "common" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spellbook", + "fields": { + "name": "Spellbook", + "desc": "Essential for wizards, a spellbook is a leather-­‐‑bound tome with 100 blank vellum pages suitable for recording spells.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_spellguard-shield", + "fields": { + "name": "Spellguard Shield", + "desc": "While holding this shield, you have advantage on saving throws against spells and other magical effects, and spell attacks have disadvantage against you.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_sphere-of-annihilation", + "fields": { + "name": "Sphere of Annihilation", + "desc": "This 2-foot-diameter black sphere is a hole in the multiverse, hovering in space and stabilized by a magical field surrounding it.\r\n\r\nThe sphere obliterates all matter it passes through and all matter that passes through it. Artifacts are the exception. Unless an artifact is susceptible to damage from a _sphere of annihilation_, it passes through the sphere unscathed. Anything else that touches the sphere but isn't wholly engulfed and obliterated by it takes 4d10 force damage.\r\n\r\nThe sphere is stationary until someone controls it. If you are within 60 feet of an uncontrolled sphere, you can use an action to make a DC 25 Intelligence (Arcana) check. On a success, the sphere levitates in one direction of your choice, up to a number of feet equal to 5 × your Intelligence modifier (minimum 5 feet). On a failure, the sphere moves 10 feet toward you. A creature whose space the sphere enters must succeed on a DC 13 Dexterity saving throw or be touched by it, taking 4d10 force damage.\r\n\r\nIf you attempt to control a sphere that is under another creature's control, you make an Intelligence (Arcana) check contested by the other creature's Intelligence (Arcana) check. The winner of the contest gains control of the sphere and can levitate it as normal.\r\n\r\nIf the sphere comes into contact with a planar portal, such as that created by the _gate_ spell, or an extradimensional space, such as that within a _portable hole_, the GM determines randomly what happens, using the following table.\r\n\r\n| d100 | Result |\r\n|--------|------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-50 | The sphere is destroyed. |\r\n| 51-85 | The sphere moves through the portal or into the extradimensional space. |\r\n| 86-00 | A spatial rift sends each creature and object within 180 feet of the sphere, including the sphere, to a random plane of existence. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_spike-iron", + "fields": { + "name": "Spike, iron", + "desc": "An iron spike.", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_splint-armor", + "fields": { + "name": "Splint Armor", + "desc": "This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.", + "document": "srd", + "size": "tiny", + "weight": "60.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": "srd_splint", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sprig-of-mistletoe", + "fields": { + "name": "Sprig of mistletoe", + "desc": "A sprig of mistletoe that can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_spyglass", + "fields": { + "name": "Spyglass", + "desc": "Objects viewed through a spyglass are magnified to twice their size.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1000.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff", + "fields": { + "name": "Staff", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-charming", + "fields": { + "name": "Staff of Charming", + "desc": "While holding this staff, you can use an action to expend 1 of its 10 charges to cast _charm person_, _command_, _or comprehend languages_ from it using your spell save DC. The staff can also be used as a magic quarterstaff.\n\nIf you are holding the staff and fail a saving throw against an enchantment spell that targets only you, you can turn your failed save into a successful one. You can't use this property of the staff again until the next dawn. If you succeed on a save against an enchantment spell that targets only you, with or without the staff's intervention, you can use your reaction to expend 1 charge from the staff and turn the spell back on its caster as if you had cast the spell.\n\nThe staff regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-fire", + "fields": { + "name": "Staff of Fire", + "desc": "You have resistance to fire damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _burning hands_ (1 charge), _fireball_ (3 charges), or _wall of fire_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff blackens, crumbles into cinders, and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-frost", + "fields": { + "name": "Staff of Frost", + "desc": "You have resistance to cold damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _cone of cold_ (5 charges), _fog cloud_ (1 charge), _ice storm_ (4 charges), or _wall of ice_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff turns to water and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-healing", + "fields": { + "name": "Staff of Healing", + "desc": "This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability modifier: _cure wounds_ (1 charge per spell level, up to 4th), _lesser restoration_ (2 charges), or _mass cure wounds_ (5 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-power", + "fields": { + "name": "Staff of Power", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to Armor Class, saving throws, and spell attack rolls.\n\nThe staff has 20 charges for the following properties. The staff regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses all other properties. On a 20, the staff regains 1d8 + 2 charges.\n\n**_Power Strike_**. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d6 force damage to the target.\n\n**_Spells_**. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spell attack bonus: _cone of cold_ (5 charges), _fireball_ (5th-level version, 5 charges), _globe of invulnerability_ (6 charges), _hold monster_ (5 charges), _levitate_ (2 charges), _lightning bolt_ (5th-level version, 5 charges), _magic missile_ (1 charge), _ray of enfeeblement_ (1 charge), or _wall of force_ (5 charges).\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-striking", + "fields": { + "name": "Staff of Striking", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +3 bonus to attack and damage rolls made with it.\n\nThe staff has 10 charges. When you hit with a melee attack using it, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 force damage. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-swarming-insects", + "fields": { + "name": "Staff of Swarming Insects", + "desc": "This staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of insects consumes and destroys the staff, then disperses.\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC: _giant insect_ (4 charges) or _insect plague_ (5 charges).\n\n**_Insect Cloud_**. While holding the staff, you can use an action and expend 1 charge to cause a swarm of harmless flying insects to spread out in a 30-foot radius from you. The insects remain for 10 minutes, making the area heavily obscured for creatures other than you. The swarm moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the swarm and ends the effect.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-the-magi", + "fields": { + "name": "Staff of the Magi", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls.\n\nThe staff has 50 charges for the following properties. It regains 4d6 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 20, the staff regains 1d12 + 1 charges.\n\n**_Spell Absorption_**. While holding the staff, you have advantage on saving throws against spells. In addition, you can use your reaction when another creature casts a spell that targets only you. If you do, the staff absorbs the magic of the spell, canceling its effect and gaining a number of charges equal to the absorbed spell's level. However, if doing so brings the staff's total number of charges above 50, the staff explodes as if you activated its retributive strike (see below).\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: _conjure elemental_ (7 charges), _dispel magic_ (3 charges), _fireball_ (7th-level version, 7 charges), _flaming sphere_ (2 charges), _ice storm_ (4 charges), _invisibility_ (2 charges), _knock_ (2 charges), _lightning bolt_ (7th-level version, 7 charges), _passwall_ (5 charges), _plane shift_ (7 charges), _telekinesis_ (5 charges), _wall of fire_ (4 charges), or _web_ (2 charges).\n\nYou can also use an action to cast one of the following spells from the staff without using any charges: _arcane lock_, _detect magic_, _enlarge/reduce_, _light_, _mage hand_, or _protection from evil and good._\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-the-python", + "fields": { + "name": "Staff of the Python", + "desc": "You can use an action to speak this staff's command word and throw the staff on the ground within 10 feet of you. The staff becomes a giant constrictor snake under your control and acts on its own initiative count. By using a bonus action to speak the command word again, you return the staff to its normal form in a space formerly occupied by the snake.\n\nOn your turn, you can mentally command the snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snake takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location.\n\nIf the snake is reduced to 0 hit points, it dies and reverts to its staff form. The staff then shatters and is destroyed. If the snake reverts to staff form before losing all its hit points, it regains all of them.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-the-woodlands", + "fields": { + "name": "Staff of the Woodlands", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you have a +2 bonus to spell attack rolls.\n\nThe staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff.\n\n**_Spells_**. You can use an action to expend 1 or more of the staff's charges to cast one of the following spells from it, using your spell save DC: _animal friendship_ (1 charge), _awaken_ (5 charges), _barkskin_ (2 charges), _locate animals or plants_ (2 charges), _speak with animals_ (1 charge), _speak with plants_ (3 charges), or _wall of thorns_ (6 charges).\n\nYou can also use an action to cast the _pass without trace_ spell from the staff without using any charges. **_Tree Form_**. You can use an action to plant one end of the staff in fertile earth and expend 1 charge to transform the staff into a healthy tree. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\n\nThe tree appears ordinary but radiates a faint aura of transmutation magic if targeted by _detect magic_. While touching the tree and using another action to speak its command word, you return the staff to its normal form. Any creature in the tree falls when it reverts to a staff.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-thunder-and-lightning", + "fields": { + "name": "Staff of Thunder and Lightning", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. It also has the following additional properties. When one of these properties is used, it can't be used again until the next dawn.\n\n**_Lightning_**. When you hit with a melee attack using the staff, you can cause the target to take an extra 2d6 lightning damage.\n\n**_Thunder_**. When you hit with a melee attack using the staff, you can cause the staff to emit a crack of thunder, audible out to 300 feet. The target you hit must succeed on a DC 17 Constitution saving throw or become stunned until the end of your next turn.\n\n**_Lightning Strike_**. You can use an action to cause a bolt of lightning to leap from the staff's tip in a line that is 5 feet wide and 120 feet long. Each creature in that line must make a DC 17 Dexterity saving throw, taking 9d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**_Thunderclap_**. You can use an action to cause the staff to issue a deafening thunderclap, audible out to 600 feet. Each creature within 60 feet of you (not including you) must make a DC 17 Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 1 minute. On a successful save, a creature takes half damage and isn't deafened.\n\n**_Thunder and Lightning_**. You can use an action to use the Lightning Strike and Thunderclap properties at the same time. Doing so doesn't expend the daily use of those properties, only the use of this one.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_staff-of-withering", + "fields": { + "name": "Staff of Withering", + "desc": "This staff has 3 charges and regains 1d3 expended charges daily at dawn.\n\nThe staff can be wielded as a magic quarterstaff. On a hit, it deals damage as a normal quarterstaff, and you can expend 1 charge to deal an extra 2d10 necrotic damage to the target. In addition, the target must succeed on a DC 15 Constitution saving throw or have disadvantage for 1 hour on any ability check or saving throw that uses Strength or Constitution.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_stone-of-controlling-earth-elementals", + "fields": { + "name": "Stone of Controlling Earth Elementals", + "desc": "If the stone is touching the ground, you can use an action to speak its command word and summon an earth elemental, as if you had cast the _conjure elemental_ spell. The stone can't be used this way again until the next dawn. The stone weighs 5 pounds.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_stone-of-good-luck-luckstone", + "fields": { + "name": "Stone of Good Luck (Luckstone)", + "desc": "While this polished agate is on your person, you gain a +1 bonus to ability checks and saving throws.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_studded-leather-armor", + "fields": { + "name": "Studded Leather Armor", + "desc": "Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.", + "document": "srd", + "size": "tiny", + "weight": "13.000", + "armor_class": 0, + "hit_points": 0, + "cost": "45.00", + "weapon": null, + "armor": "srd_studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sun-blade", + "fields": { + "name": "Sun Blade", + "desc": "This item appears to be a longsword hilt. While grasping the hilt, you can use a bonus action to cause a blade of pure radiance to spring into existence, or make the blade disappear. While the blade exists, this magic longsword has the finesse property. If you are proficient with shortswords or longswords, you are proficient with the _sun blade_.\n\nYou gain a +2 bonus to attack and damage rolls made with this weapon, which deals radiant damage instead of slashing damage. When you hit an undead with it, that target takes an extra 1d8 radiant damage.\n\nThe sword's luminous blade emits bright light in a 15-foot radius and dim light for an additional 15 feet. The light is sunlight. While the blade persists, you can use an action to expand or reduce its radius of bright and dim light by 5 feet each, to a maximum of 30 feet each or a minimum of 10 feet each.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-greatsword", + "fields": { + "name": "Sword of Life Stealing (Greatsword)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-longsword", + "fields": { + "name": "Sword of Life Stealing (Longsword)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-rapier", + "fields": { + "name": "Sword of Life Stealing (Rapier)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-shortsword", + "fields": { + "name": "Sword of Life Stealing (Shortsword)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-greatsword", + "fields": { + "name": "Sword of Sharpness (Greatsword)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-longsword", + "fields": { + "name": "Sword of Sharpness (Longsword)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-scimitar", + "fields": { + "name": "Sword of Sharpness (Scimitar)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-shortsword", + "fields": { + "name": "Sword of Sharpness (Shortsword)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-greatsword", + "fields": { + "name": "Sword of Wounding (Greatsword)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-longsword", + "fields": { + "name": "Sword of Wounding (Longsword)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-rapier", + "fields": { + "name": "Sword of Wounding (Rapier)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-shortsword", + "fields": { + "name": "Sword of Wounding (Shortsword)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_talisman-of-pure-good", + "fields": { + "name": "Talisman of Pure Good", + "desc": "This talisman is a mighty symbol of goodness. A creature that is neither good nor evil in alignment takes 6d6 radiant damage upon touching the talisman. An evil creature takes 8d6 radiant damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are a good cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 7 charges. If you are wearing or holding it, you can use an action to expend 1 charge from it and choose one creature you can see on the ground within 120 feet of you. If the target is of evil alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman disperses into motes of golden light and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_talisman-of-the-sphere", + "fields": { + "name": "Talisman of the Sphere", + "desc": "When you make an Intelligence (Arcana) check to control a _sphere of annihilation_ while you are holding this talisman, you double your proficiency bonus on the check. In addition, when you start your turn with control over a _sphere of annihilation_, you can use an action to levitate it 10 feet plus a number of additional feet equal to 10 × your Intelligence modifier.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_talisman-of-ultimate-evil", + "fields": { + "name": "Talisman of Ultimate Evil", + "desc": "This item symbolizes unrepentant evil. A creature that is neither good nor evil in alignment takes 6d6 necrotic damage upon touching the talisman. A good creature takes 8d6 necrotic damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are an evil cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 6 charges. If you are wearing or holding it, you can use an action to expend 1 charge from the talisman and choose one creature you can see on the ground within 120 feet of you. If the target is of good alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman dissolves into foul-smelling slime and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_tent", + "fields": { + "name": "Tent", + "desc": "A simple and portable canvas shelter, a tent sleeps two.", + "document": "srd", + "size": "tiny", + "weight": "20.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_thieves-tools", + "fields": { + "name": "Thieves' tools", + "desc": "This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-­‐‑bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_tinderbox", + "fields": { + "name": "Tinderbox", + "desc": "This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch—or anything else with abundant, exposed fuel—takes an action. Lighting any other fire takes 1 minute.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_tinkers-tools", + "fields": { + "name": "Tinker's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_tome-of-clear-thought", + "fields": { + "name": "Tome of Clear Thought", + "desc": "This book contains memory and logic exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Intelligence score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_tome-of-leadership-and-influence", + "fields": { + "name": "Tome of Leadership and Influence", + "desc": "This book contains guidelines for influencing and charming others, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Charisma score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_tome-of-understanding", + "fields": { + "name": "Tome of Understanding", + "desc": "This book contains intuition and insight exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Wisdom score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_torch", + "fields": { + "name": "Torch", + "desc": "A torch burns for 1 hour, providing bright light in a 20-­‐‑foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_torpor", + "fields": { + "name": "Torpor", + "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 4d6 hours. The poisoned creature is incapacitated.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "600.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_totem", + "fields": { + "name": "Totem", + "desc": "Can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_trident", + "fields": { + "name": "Trident", + "desc": "A trident.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_trident-1", + "fields": { + "name": "Trident (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_trident-2", + "fields": { + "name": "Trident (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_trident-3", + "fields": { + "name": "Trident (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_trident-of-fish-command", + "fields": { + "name": "Trident of Fish Command", + "desc": "This trident is a magic weapon. It has 3 charges. While you carry it, you can use an action and expend 1 charge to cast _dominate beast_ (save DC 15) from it on a beast that has an innate swimming speed. The trident regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_truth-serum", + "fields": { + "name": "Truth serum", + "desc": "A creature subjected to this poison must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. The poisoned creature can't knowingly speak a lie, as if under the effect of a zone of truth spell.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "150.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_universal-solvent", + "fields": { + "name": "Universal Solvent", + "desc": "This tube holds milky liquid with a strong alcohol smell. You can use an action to pour the contents of the tube onto a surface within reach. The liquid instantly dissolves up to 1 square foot of adhesive it touches, including _sovereign glue._", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_vial", + "fields": { + "name": "Vial", + "desc": "For holding liquids. Capacity: 4 ounces liquid.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-battleaxe", + "fields": { + "name": "Vicious Weapon (Battleaxe)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-blowgun", + "fields": { + "name": "Vicious Weapon (Blowgun)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-club", + "fields": { + "name": "Vicious Weapon (Club)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-crossbow-hand", + "fields": { + "name": "Vicious Weapon (Crossbow-Hand)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-crossbow-heavy", + "fields": { + "name": "Vicious Weapon (Crossbow-Heavy)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-crossbow-light", + "fields": { + "name": "Vicious Weapon (Crossbow-Light)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-dagger", + "fields": { + "name": "Vicious Weapon (Dagger)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-dart", + "fields": { + "name": "Vicious Weapon (Dart)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-flail", + "fields": { + "name": "Vicious Weapon (Flail)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-glaive", + "fields": { + "name": "Vicious Weapon (Glaive)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-greataxe", + "fields": { + "name": "Vicious Weapon (Greataxe)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-greatclub", + "fields": { + "name": "Vicious Weapon (Greatclub)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-greatsword", + "fields": { + "name": "Vicious Weapon (Greatsword)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-halberd", + "fields": { + "name": "Vicious Weapon (Halberd)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-handaxe", + "fields": { + "name": "Vicious Weapon (Handaxe)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-javelin", + "fields": { + "name": "Vicious Weapon (Javelin)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-lance", + "fields": { + "name": "Vicious Weapon (Lance)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-light-hammer", + "fields": { + "name": "Vicious Weapon (Light-Hammer)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-longbow", + "fields": { + "name": "Vicious Weapon (Longbow)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-longsword", + "fields": { + "name": "Vicious Weapon (Longsword)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-mace", + "fields": { + "name": "Vicious Weapon (Mace)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-maul", + "fields": { + "name": "Vicious Weapon (Maul)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-morningstar", + "fields": { + "name": "Vicious Weapon (Morningstar)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-net", + "fields": { + "name": "Vicious Weapon (Net)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-pike", + "fields": { + "name": "Vicious Weapon (Pike)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-quarterstaff", + "fields": { + "name": "Vicious Weapon (Quarterstaff)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-rapier", + "fields": { + "name": "Vicious Weapon (Rapier)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-scimitar", + "fields": { + "name": "Vicious Weapon (Scimitar)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-shortbow", + "fields": { + "name": "Vicious Weapon (Shortbow)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-shortsword", + "fields": { + "name": "Vicious Weapon (Shortsword)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-sickle", + "fields": { + "name": "Vicious Weapon (Sickle)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-sling", + "fields": { + "name": "Vicious Weapon (Sling)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-spear", + "fields": { + "name": "Vicious Weapon (Spear)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-trident", + "fields": { + "name": "Vicious Weapon (Trident)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-war-pick", + "fields": { + "name": "Vicious Weapon (War-Pick)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-warhammer", + "fields": { + "name": "Vicious Weapon (Warhammer)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vicious-weapon-whip", + "fields": { + "name": "Vicious Weapon (Whip)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_viol", + "fields": { + "name": "Viol", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vorpal-sword-greatsword", + "fields": { + "name": "Vorpal Sword (Greatsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vorpal-sword-longsword", + "fields": { + "name": "Vorpal Sword (Longsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vorpal-sword-scimitar", + "fields": { + "name": "Vorpal Sword (Scimitar)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_vorpal-sword-shortsword", + "fields": { + "name": "Vorpal Sword (Shortsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_wagon", + "fields": { + "name": "Wagon", + "desc": "Drawn vehicle.", + "document": "srd", + "size": "large", + "weight": "400.000", + "armor_class": 0, + "hit_points": 0, + "cost": "35.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand", + "fields": { + "name": "Wand", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-binding", + "fields": { + "name": "Wand of Binding", + "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Spells_**. While holding the wand, you can use an action to expend some of its charges to cast one of the following spells (save DC 17): _hold monster_ (5 charges) or _hold person_ (2 charges).\n\n**_Assisted Escape_**. While holding the wand, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained, or you can expend 1 charge and gain advantage on any check you make to escape a grapple.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-enemy-detection", + "fields": { + "name": "Wand of Enemy Detection", + "desc": "This wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For the next minute, you know the direction of the nearest creature hostile to you within 60 feet, but not its distance from you. The wand can sense the presence of hostile creatures that are ethereal, invisible, disguised, or hidden, as well as those in plain sight. The effect ends if you stop holding the wand.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-fear", + "fields": { + "name": "Wand of Fear", + "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Command_**. While holding the wand, you can use an action to expend 1 charge and command another creature to flee or grovel, as with the _command_ spell (save DC 15).\n\n**_Cone of Fear_**. While holding the wand, you can use an action to expend 2 charges, causing the wand's tip to emit a 60-foot cone of amber light. Each creature in the cone must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-fireballs", + "fields": { + "name": "Wand of Fireballs", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _fireball_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-lightning-bolts", + "fields": { + "name": "Wand of Lightning Bolts", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _lightning bolt_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-magic-detection", + "fields": { + "name": "Wand of Magic Detection", + "desc": "This wand has 3 charges. While holding it, you can expend 1 charge as an action to cast the _detect magic_ spell from it. The wand regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-magic-missiles", + "fields": { + "name": "Wand of Magic Missiles", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _magic missile_ spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-paralysis", + "fields": { + "name": "Wand of Paralysis", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cause a thin blue ray to streak from the tip toward a creature you can see within 60 feet of you. The target must succeed on a DC 15 Constitution saving throw or be paralyzed for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a success.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-polymorph", + "fields": { + "name": "Wand of Polymorph", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _polymorph_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-secrets", + "fields": { + "name": "Wand of Secrets", + "desc": "The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges, and if a secret door or trap is within 30 feet of you, the wand pulses and points at the one nearest to you. The wand regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-the-war-mage-1", + "fields": { + "name": "Wand of the War Mage (+1)", + "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-the-war-mage-2", + "fields": { + "name": "Wand of the War Mage (+2)", + "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-the-war-mage-3", + "fields": { + "name": "Wand of the War Mage (+3)", + "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-web", + "fields": { + "name": "Wand of Web", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _web_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wand-of-wonder", + "fields": { + "name": "Wand of Wonder", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and choose a target within 120 feet of you. The target can be a creature, an object, or a point in space. Roll d100 and consult the following table to discover what happens.\n\nIf the effect causes you to cast a spell from the wand, the spell's save DC is 15. If the spell normally has a range expressed in feet, its range becomes 120 feet if it isn't already.\n\nIf an effect covers an area, you must center the spell on and include the target. If an effect has multiple possible subjects, the GM randomly determines which ones are affected.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into dust and is destroyed.\n\n| d100 | Effect |\n|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| 01-05 | You cast slow. 06-10 You cast faerie fire. |\n| 11-15 | You are stunned until the start of your next turn, believing something awesome just happened. 16-20 You cast gust of wind. |\n| 21-25 | You cast detect thoughts on the target you chose. If you didn't target a creature, you instead take 1d6 psychic damage. |\n| 26-30 | You cast stinking cloud. |\n| 31-33 | Heavy rain falls in a 60-foot radius centered on the target. The area becomes lightly obscured. The rain falls until the start of your next turn. |\n| 34-36 | An animal appears in the unoccupied space nearest the target. The animal isn't under your control and acts as it normally would. Roll a d100 to determine which animal appears. On a 01-25, a rhinoceros appears; on a 26-50, an elephant appears; and on a 51-100, a rat appears. |\n| 37-46 | You cast lightning bolt. |\n| 47-49 | A cloud of 600 oversized butterflies fills a 30-foot radius centered on the target. The area becomes heavily obscured. The butterflies remain for 10 minutes. |\n| 50-53 | You enlarge the target as if you had cast enlarge/reduce. If the target can't be affected by that spell, or if you didn't target a creature, you become the target. |\n| 54-58 | You cast darkness. |\n| 59-62 | Grass grows on the ground in a 60-foot radius centered on the target. If grass is already there, it grows to ten times its normal size and remains overgrown for 1 minute. |\n| 63-65 | An object of the GM's choice disappears into the Ethereal Plane. The object must be neither worn nor carried, within 120 feet of the target, and no larger than 10 feet in any dimension. |\n| 66-69 | You shrink yourself as if you had cast enlarge/reduce on yourself. |\n| 70-79 | You cast fireball. |\n| 80-84 | You cast invisibility on yourself. |\n| 85-87 | Leaves grow from the target. If you chose a point in space as the target, leaves sprout from the creature nearest to that point. Unless they are picked off, the leaves turn brown and fall off after 24 hours. |\n| 88-90 | A stream of 1d4 × 10 gems, each worth 1 gp, shoots from the wand's tip in a line 30 feet long and 5 feet wide. Each gem deals 1 bludgeoning damage, and the total damage of the gems is divided equally among all creatures in the line. |\n| 91-95 | A burst of colorful shimmering light extends from you in a 30-foot radius. You and each creature in the area that can see must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. |\n| 96-97 | The target's skin turns bright blue for 1d10 days. If you chose a point in space, the creature nearest to that point is affected. |\n| 98-100 | If you targeted a creature, it must make a DC 15 Constitution saving throw. If you didn't target a creature, you become the target and must make the saving throw. If the saving throw fails by 5 or more, the target is instantly petrified. On any other failed save, the target is restrained and begins to turn to stone. While restrained in this way, the target must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the target is freed by the greater restoration spell or similar magic. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_war-pick", + "fields": { + "name": "War pick", + "desc": "A war pick.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_war-pick-1", + "fields": { + "name": "War-Pick (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_war-pick-2", + "fields": { + "name": "War-Pick (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_war-pick-3", + "fields": { + "name": "War-Pick (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warpick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_warhammer", + "fields": { + "name": "Warhammer", + "desc": "A warhammer.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_warhammer-1", + "fields": { + "name": "Warhammer (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_warhammer-2", + "fields": { + "name": "Warhammer (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_warhammer-3", + "fields": { + "name": "Warhammer (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_warship", + "fields": { + "name": "Warship", + "desc": "Waterborne vehicle. Speed 2.5mph", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_waterskin", + "fields": { + "name": "Waterskin", + "desc": "For drinking. 5lb is the full weight. Capacity: 4 pints liquid.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_weavers-tools", + "fields": { + "name": "Weaver's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_well-of-many-worlds", + "fields": { + "name": "Well of Many Worlds", + "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold and place the _well of many worlds_ on a solid surface, whereupon it creates a two-way portal to another world or plane of existence. Each time the item opens a portal, the GM decides where it leads. You can use an action to close an open portal by taking hold of the edges of the cloth and folding it up. Once _well of many worlds_ has opened a portal, it can't do so again for 1d8 hours.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wheat", + "fields": { + "name": "Wheat", + "desc": "1 pound of wheat.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_whetstone", + "fields": { + "name": "Whetstone", + "desc": "For sharpening.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_whip", + "fields": { + "name": "Whip", + "desc": "A whip.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_whip-1", + "fields": { + "name": "Whip (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_whip-2", + "fields": { + "name": "Whip (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_whip-3", + "fields": { + "name": "Whip (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wind-fan", + "fields": { + "name": "Wind Fan", + "desc": "While holding this fan, you can use an action to cast the _gust of wind_ spell (save DC 13) from it. Once used, the fan shouldn't be used again until the next dawn. Each time it is used again before then, it has a cumulative 20 percent chance of not working and tearing into useless, nonmagical tatters.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_winged-boots", + "fields": { + "name": "Winged Boots", + "desc": "While you wear these boots, you have a flying speed equal to your walking speed. You can use the boots to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land.\r\n\r\nThe boots regain 2 hours of flying capability for every 12 hours they aren't in use.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } + }, + { + "model": "api_v2.item", + "pk": "srd_wings-of-flying", + "fields": { + "name": "Wings of Flying", + "desc": "While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of bat wings or bird wings on your back for 1 hour or until you repeat the command word as an action. The wings give you a flying speed of 60 feet. When they disappear, you can't use them again for 1d12 hours.\r\n\r\n\r\n\r\n\r\n## Sentient Magic Items\r\n\r\nSome magic items possess sentience and personality. Such an item might be possessed, haunted by the spirit of a previous owner, or self-aware thanks to the magic used to create it. In any case, the item behaves like a character, complete with personality quirks, ideals, bonds, and sometimes flaws. A sentient item might be a cherished ally to its wielder or a continual thorn in the side.\r\n\r\nMost sentient items are weapons. Other kinds of items can manifest sentience, but consumable items such as potions and scrolls are never sentient.\r\n\r\nSentient magic items function as NPCs under the GM's control. Any activated property of the item is under the item's control, not its wielder's. As long as the wielder maintains a good relationship with the item, the wielder can access those properties normally. If the relationship is strained, the item can suppress its activated properties or even turn them against the wielder.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } + }, + { + "model": "api_v2.item", + "pk": "srd_woodcarvers-tools", + "fields": { + "name": "Woodcarver's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_wooden-staff", + "fields": { + "name": "Wooden staff", + "desc": "Can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "quarterstaff", + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_wyvern-poison", + "fields": { + "name": "Wyvern poison", + "desc": "This poison must be harvested from a dead or incapacitated wyvern. A creature subjected to this poison must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } + }, + { + "model": "api_v2.item", + "pk": "srd_yew-wand", + "fields": { + "name": "Yew wand", + "desc": "Can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": null + } + } +] \ No newline at end of file diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index 06cd95c9..cb5be86f 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -139,7 +139,7 @@ def fix_keys_to_doc_name(objs,f): for obj in objs: if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): - if f['filename']=='Item.json': + if f['filename']=='Armor.json': logger.warning("{} changing to doc_name format".format(f['path'])) pk_value = "{}_{}".format(obj['fields']['document'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) @@ -150,15 +150,15 @@ def fix_keys_to_doc_name(objs,f): related_path = "{}/{}/{}/{}/{}/".format(f['root'],f['dir'],f['schema'],f['publisher'],f['doc']) - related_filenames = ['ItemSet.json'] + related_filenames = ['Item.json'] for obj in objs_fixed: for related_file in related_filenames: logger.warning("CHANGING RELATED PK IN {} TO {}".format(related_file,obj['pk'])) - refactor_relations(related_path+related_file,"items",obj['former_pk'], obj['pk']) + refactor_relations(related_path+related_file,"armor",obj['former_pk'], obj['pk']) obj.pop('former_pk') - if f['filename']=='Item.json': + if f['filename']=='Armor.json': with open(f['path'],'w',encoding='utf-8') as wf: json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) pass @@ -192,7 +192,7 @@ def refactor_relations(filename, key, former_pk, new_pk): if os.path.isfile(filename): with open(filename, 'r', encoding='utf-8') as f: objs = json.load(f) - if key == "parent": + if key == "armor": for obj in objs: if obj['fields'][key] == former_pk: obj['fields'][key] = new_pk From d41db17bedfc9aa8b9e35feb8b7663dbb1adecfa Mon Sep 17 00:00:00 2001 From: August Johnson Date: Thu, 30 May 2024 13:24:28 -0500 Subject: [PATCH 57/84] Fixing weapons. --- data/v2/wizards-of-the-coast/srd/Item.json | 506 ++--- data/v2/wizards-of-the-coast/srd/Weapon.json | 1852 ++++++++--------- .../data_manipulation/data_v2_format_check.py | 8 +- 3 files changed, 1183 insertions(+), 1183 deletions(-) diff --git a/data/v2/wizards-of-the-coast/srd/Item.json b/data/v2/wizards-of-the-coast/srd/Item.json index 06831030..6fe345db 100644 --- a/data/v2/wizards-of-the-coast/srd/Item.json +++ b/data/v2/wizards-of-the-coast/srd/Item.json @@ -752,7 +752,7 @@ "armor_class": 0, "hit_points": 0, "cost": "10.00", - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -771,7 +771,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -790,7 +790,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -809,7 +809,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -1056,7 +1056,7 @@ "armor_class": 0, "hit_points": 0, "cost": "10.00", - "weapon": "blowgun", + "weapon": "srd_blowgun", "armor": null, "category": "weapon", "requires_attunement": false, @@ -1075,7 +1075,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "blowgun", + "weapon": "srd_blowgun", "armor": null, "category": "weapon", "requires_attunement": false, @@ -1094,7 +1094,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "blowgun", + "weapon": "srd_blowgun", "armor": null, "category": "weapon", "requires_attunement": false, @@ -1113,7 +1113,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "blowgun", + "weapon": "srd_blowgun", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2158,7 +2158,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.10", - "weapon": "club", + "weapon": "srd_club", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2177,7 +2177,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "club", + "weapon": "srd_club", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2196,7 +2196,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "club", + "weapon": "srd_club", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2215,7 +2215,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "club", + "weapon": "srd_club", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2405,7 +2405,7 @@ "armor_class": 0, "hit_points": 0, "cost": "75.00", - "weapon": "crossbow-hand", + "weapon": "srd_crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2424,7 +2424,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "crossbow-hand", + "weapon": "srd_crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2443,7 +2443,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "crossbow-hand", + "weapon": "srd_crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2462,7 +2462,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "crossbow-hand", + "weapon": "srd_crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2481,7 +2481,7 @@ "armor_class": 0, "hit_points": 0, "cost": "50.00", - "weapon": "crossbow-heavy", + "weapon": "srd_crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2500,7 +2500,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "crossbow-heavy", + "weapon": "srd_crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2519,7 +2519,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "crossbow-heavy", + "weapon": "srd_crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2538,7 +2538,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "crossbow-heavy", + "weapon": "srd_crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2557,7 +2557,7 @@ "armor_class": 0, "hit_points": 0, "cost": "25.00", - "weapon": "crossbow-light", + "weapon": "srd_crossbow-light", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2576,7 +2576,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "crossbow-light", + "weapon": "srd_crossbow-light", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2595,7 +2595,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "crossbow-light", + "weapon": "srd_crossbow-light", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2614,7 +2614,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "crossbow-light", + "weapon": "srd_crossbow-light", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2785,7 +2785,7 @@ "armor_class": 0, "hit_points": 0, "cost": "2.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2804,7 +2804,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2823,7 +2823,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2842,7 +2842,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2861,7 +2861,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2880,7 +2880,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2899,7 +2899,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2918,7 +2918,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2937,7 +2937,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2956,7 +2956,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.05", - "weapon": "dart", + "weapon": "srd_dart", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2975,7 +2975,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "dart", + "weapon": "srd_dart", "armor": null, "category": "weapon", "requires_attunement": false, @@ -2994,7 +2994,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "dart", + "weapon": "srd_dart", "armor": null, "category": "weapon", "requires_attunement": false, @@ -3013,7 +3013,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "dart", + "weapon": "srd_dart", "armor": null, "category": "weapon", "requires_attunement": false, @@ -3089,7 +3089,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3108,7 +3108,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3127,7 +3127,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3146,7 +3146,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3260,7 +3260,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -3279,7 +3279,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -3298,7 +3298,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": false, @@ -3317,7 +3317,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -3469,7 +3469,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "warhammer", + "weapon": "srd_warhammer", "armor": null, "category": "weapon", "requires_attunement": false, @@ -3906,7 +3906,7 @@ "armor_class": 0, "hit_points": 0, "cost": "10.00", - "weapon": "flail", + "weapon": "srd_flail", "armor": null, "category": "weapon", "requires_attunement": false, @@ -3925,7 +3925,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "flail", + "weapon": "srd_flail", "armor": null, "category": "weapon", "requires_attunement": false, @@ -3944,7 +3944,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "flail", + "weapon": "srd_flail", "armor": null, "category": "weapon", "requires_attunement": false, @@ -3963,7 +3963,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "flail", + "weapon": "srd_flail", "armor": null, "category": "weapon", "requires_attunement": false, @@ -3982,7 +3982,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -4001,7 +4001,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -4020,7 +4020,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -4039,7 +4039,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -4153,7 +4153,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -4172,7 +4172,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -4191,7 +4191,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -4210,7 +4210,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -4305,7 +4305,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4324,7 +4324,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4343,7 +4343,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4362,7 +4362,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "handaxe", + "weapon": "srd_handaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4381,7 +4381,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4400,7 +4400,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4419,7 +4419,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4457,7 +4457,7 @@ "armor_class": 0, "hit_points": 0, "cost": "20.00", - "weapon": "glaive", + "weapon": "srd_glaive", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4476,7 +4476,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "glaive", + "weapon": "srd_glaive", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4495,7 +4495,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "glaive", + "weapon": "srd_glaive", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4514,7 +4514,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "glaive", + "weapon": "srd_glaive", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4704,7 +4704,7 @@ "armor_class": 0, "hit_points": 0, "cost": "30.00", - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4723,7 +4723,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4742,7 +4742,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4761,7 +4761,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4780,7 +4780,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.20", - "weapon": "greatclub", + "weapon": "srd_greatclub", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4799,7 +4799,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatclub", + "weapon": "srd_greatclub", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4818,7 +4818,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatclub", + "weapon": "srd_greatclub", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4837,7 +4837,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatclub", + "weapon": "srd_greatclub", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4856,7 +4856,7 @@ "armor_class": 0, "hit_points": 0, "cost": "50.00", - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4875,7 +4875,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4894,7 +4894,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4913,7 +4913,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4932,7 +4932,7 @@ "armor_class": 0, "hit_points": 0, "cost": "20.00", - "weapon": "halberd", + "weapon": "srd_halberd", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4951,7 +4951,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "halberd", + "weapon": "srd_halberd", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4970,7 +4970,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "halberd", + "weapon": "srd_halberd", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4989,7 +4989,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "halberd", + "weapon": "srd_halberd", "armor": null, "category": "weapon", "requires_attunement": false, @@ -5046,7 +5046,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "maul", + "weapon": "srd_maul", "armor": null, "category": "weapon", "requires_attunement": false, @@ -5084,7 +5084,7 @@ "armor_class": 0, "hit_points": 0, "cost": "5.00", - "weapon": "handaxe", + "weapon": "srd_handaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -5103,7 +5103,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "handaxe", + "weapon": "srd_handaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -5122,7 +5122,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "handaxe", + "weapon": "srd_handaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -5141,7 +5141,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "handaxe", + "weapon": "srd_handaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -5350,7 +5350,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -5369,7 +5369,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -5388,7 +5388,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": false, @@ -5407,7 +5407,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6015,7 +6015,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.50", - "weapon": "javelin", + "weapon": "srd_javelin", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6034,7 +6034,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "javelin", + "weapon": "srd_javelin", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6053,7 +6053,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "javelin", + "weapon": "srd_javelin", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6072,7 +6072,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "javelin", + "weapon": "srd_javelin", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6091,7 +6091,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "javelin", + "weapon": "srd_javelin", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6224,7 +6224,7 @@ "armor_class": 0, "hit_points": 0, "cost": "10.00", - "weapon": "lance", + "weapon": "srd_lance", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6243,7 +6243,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "lance", + "weapon": "srd_lance", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6262,7 +6262,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "lance", + "weapon": "srd_lance", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6281,7 +6281,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "lance", + "weapon": "srd_lance", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6395,7 +6395,7 @@ "armor_class": 0, "hit_points": 0, "cost": "2.00", - "weapon": "light-hammer", + "weapon": "srd_light-hammer", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6414,7 +6414,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "light-hammer", + "weapon": "srd_light-hammer", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6433,7 +6433,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "light-hammer", + "weapon": "srd_light-hammer", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6452,7 +6452,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "light-hammer", + "weapon": "srd_light-hammer", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6509,7 +6509,7 @@ "armor_class": 0, "hit_points": 0, "cost": "50.00", - "weapon": "longbow", + "weapon": "srd_longbow", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6528,7 +6528,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longbow", + "weapon": "srd_longbow", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6547,7 +6547,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longbow", + "weapon": "srd_longbow", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6566,7 +6566,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longbow", + "weapon": "srd_longbow", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6604,7 +6604,7 @@ "armor_class": 0, "hit_points": 0, "cost": "15.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6623,7 +6623,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6642,7 +6642,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6661,7 +6661,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6680,7 +6680,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -6699,7 +6699,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -6718,7 +6718,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -6737,7 +6737,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -6794,7 +6794,7 @@ "armor_class": 0, "hit_points": 0, "cost": "5.00", - "weapon": "mace", + "weapon": "srd_mace", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6813,7 +6813,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "mace", + "weapon": "srd_mace", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6832,7 +6832,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "mace", + "weapon": "srd_mace", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6851,7 +6851,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "mace", + "weapon": "srd_mace", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6870,7 +6870,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "mace", + "weapon": "srd_mace", "armor": null, "category": "weapon", "requires_attunement": true, @@ -6889,7 +6889,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "mace", + "weapon": "srd_mace", "armor": null, "category": "weapon", "requires_attunement": false, @@ -6908,7 +6908,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "mace", + "weapon": "srd_mace", "armor": null, "category": "weapon", "requires_attunement": true, @@ -7117,7 +7117,7 @@ "armor_class": 0, "hit_points": 0, "cost": "10.00", - "weapon": "maul", + "weapon": "srd_maul", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7136,7 +7136,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "maul", + "weapon": "srd_maul", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7155,7 +7155,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "maul", + "weapon": "srd_maul", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7174,7 +7174,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "maul", + "weapon": "srd_maul", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7459,7 +7459,7 @@ "armor_class": 0, "hit_points": 0, "cost": "15.00", - "weapon": "morningstar", + "weapon": "srd_morningstar", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7478,7 +7478,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "morningstar", + "weapon": "srd_morningstar", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7497,7 +7497,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "morningstar", + "weapon": "srd_morningstar", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7516,7 +7516,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "morningstar", + "weapon": "srd_morningstar", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7611,7 +7611,7 @@ "armor_class": 0, "hit_points": 0, "cost": "1.00", - "weapon": "net", + "weapon": "srd_net", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7630,7 +7630,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "net", + "weapon": "srd_net", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7649,7 +7649,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "net", + "weapon": "srd_net", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7668,7 +7668,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "net", + "weapon": "srd_net", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7687,7 +7687,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -7706,7 +7706,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -7725,7 +7725,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -7744,7 +7744,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -7763,7 +7763,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longbow", + "weapon": "srd_longbow", "armor": null, "category": "weapon", "requires_attunement": true, @@ -8200,7 +8200,7 @@ "armor_class": 0, "hit_points": 0, "cost": "5.00", - "weapon": "pike", + "weapon": "srd_pike", "armor": null, "category": "weapon", "requires_attunement": false, @@ -8219,7 +8219,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "pike", + "weapon": "srd_pike", "armor": null, "category": "weapon", "requires_attunement": false, @@ -8238,7 +8238,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "pike", + "weapon": "srd_pike", "armor": null, "category": "weapon", "requires_attunement": false, @@ -8257,7 +8257,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "pike", + "weapon": "srd_pike", "armor": null, "category": "weapon", "requires_attunement": false, @@ -9036,7 +9036,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.20", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "weapon", "requires_attunement": false, @@ -9055,7 +9055,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "weapon", "requires_attunement": false, @@ -9074,7 +9074,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "weapon", "requires_attunement": false, @@ -9093,7 +9093,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "weapon", "requires_attunement": false, @@ -9150,7 +9150,7 @@ "armor_class": 0, "hit_points": 0, "cost": "25.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": false, @@ -9169,7 +9169,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": false, @@ -9188,7 +9188,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": false, @@ -9207,7 +9207,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10176,7 +10176,7 @@ "armor_class": 0, "hit_points": 0, "cost": "25.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10195,7 +10195,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10214,7 +10214,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10233,7 +10233,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10252,7 +10252,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10385,7 +10385,7 @@ "armor_class": 0, "hit_points": 0, "cost": "25.00", - "weapon": "shortbow", + "weapon": "srd_shortbow", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10404,7 +10404,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortbow", + "weapon": "srd_shortbow", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10423,7 +10423,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortbow", + "weapon": "srd_shortbow", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10442,7 +10442,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortbow", + "weapon": "srd_shortbow", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10461,7 +10461,7 @@ "armor_class": 0, "hit_points": 0, "cost": "10.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10480,7 +10480,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10499,7 +10499,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10518,7 +10518,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10556,7 +10556,7 @@ "armor_class": 0, "hit_points": 0, "cost": "1.00", - "weapon": "sickle", + "weapon": "srd_sickle", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10575,7 +10575,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "sickle", + "weapon": "srd_sickle", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10594,7 +10594,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "sickle", + "weapon": "srd_sickle", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10613,7 +10613,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "sickle", + "weapon": "srd_sickle", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10746,7 +10746,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.10", - "weapon": "sling", + "weapon": "srd_sling", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10765,7 +10765,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "sling", + "weapon": "srd_sling", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10784,7 +10784,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "sling", + "weapon": "srd_sling", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10803,7 +10803,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "sling", + "weapon": "srd_sling", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10917,7 +10917,7 @@ "armor_class": 0, "hit_points": 0, "cost": "1.00", - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10936,7 +10936,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10955,7 +10955,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10974,7 +10974,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": false, @@ -11316,7 +11316,7 @@ "armor_class": 0, "hit_points": 0, "cost": "5.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -11620,7 +11620,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11639,7 +11639,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11658,7 +11658,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11677,7 +11677,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11696,7 +11696,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11715,7 +11715,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11734,7 +11734,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11753,7 +11753,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11772,7 +11772,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11791,7 +11791,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11810,7 +11810,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11829,7 +11829,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11848,7 +11848,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -12114,7 +12114,7 @@ "armor_class": 0, "hit_points": 0, "cost": "5.00", - "weapon": "trident", + "weapon": "srd_trident", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12133,7 +12133,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "trident", + "weapon": "srd_trident", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12152,7 +12152,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "trident", + "weapon": "srd_trident", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12171,7 +12171,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "trident", + "weapon": "srd_trident", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12190,7 +12190,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "trident", + "weapon": "srd_trident", "armor": null, "category": "weapon", "requires_attunement": true, @@ -12266,7 +12266,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12285,7 +12285,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "blowgun", + "weapon": "srd_blowgun", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12304,7 +12304,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "club", + "weapon": "srd_club", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12323,7 +12323,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "crossbow-hand", + "weapon": "srd_crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12342,7 +12342,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "crossbow-heavy", + "weapon": "srd_crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12361,7 +12361,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "crossbow-light", + "weapon": "srd_crossbow-light", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12380,7 +12380,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12399,7 +12399,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "dart", + "weapon": "srd_dart", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12418,7 +12418,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "flail", + "weapon": "srd_flail", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12437,7 +12437,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "glaive", + "weapon": "srd_glaive", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12456,7 +12456,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12475,7 +12475,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatclub", + "weapon": "srd_greatclub", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12494,7 +12494,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12513,7 +12513,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "halberd", + "weapon": "srd_halberd", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12532,7 +12532,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "handaxe", + "weapon": "srd_handaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12551,7 +12551,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "javelin", + "weapon": "srd_javelin", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12570,7 +12570,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "lance", + "weapon": "srd_lance", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12589,7 +12589,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "light-hammer", + "weapon": "srd_light-hammer", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12608,7 +12608,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longbow", + "weapon": "srd_longbow", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12627,7 +12627,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12646,7 +12646,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "mace", + "weapon": "srd_mace", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12665,7 +12665,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "maul", + "weapon": "srd_maul", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12684,7 +12684,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "morningstar", + "weapon": "srd_morningstar", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12703,7 +12703,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "net", + "weapon": "srd_net", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12722,7 +12722,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "pike", + "weapon": "srd_pike", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12741,7 +12741,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12760,7 +12760,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12779,7 +12779,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12798,7 +12798,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortbow", + "weapon": "srd_shortbow", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12817,7 +12817,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12836,7 +12836,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "sickle", + "weapon": "srd_sickle", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12855,7 +12855,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "sling", + "weapon": "srd_sling", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12874,7 +12874,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12893,7 +12893,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "trident", + "weapon": "srd_trident", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12912,7 +12912,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "warpick", + "weapon": "srd_war-pick", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12931,7 +12931,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "warhammer", + "weapon": "srd_warhammer", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12950,7 +12950,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12988,7 +12988,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -13007,7 +13007,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -13026,7 +13026,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -13045,7 +13045,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -13387,7 +13387,7 @@ "armor_class": 0, "hit_points": 0, "cost": "5.00", - "weapon": "warpick", + "weapon": "srd_war-pick", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13406,7 +13406,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "warpick", + "weapon": "srd_war-pick", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13425,7 +13425,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "warpick", + "weapon": "srd_war-pick", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13444,7 +13444,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "warpick", + "weapon": "srd_war-pick", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13463,7 +13463,7 @@ "armor_class": 0, "hit_points": 0, "cost": "15.00", - "weapon": "warhammer", + "weapon": "srd_warhammer", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13482,7 +13482,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "warhammer", + "weapon": "srd_warhammer", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13501,7 +13501,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "warhammer", + "weapon": "srd_warhammer", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13520,7 +13520,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "warhammer", + "weapon": "srd_warhammer", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13653,7 +13653,7 @@ "armor_class": 0, "hit_points": 0, "cost": "2.00", - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13672,7 +13672,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13691,7 +13691,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13710,7 +13710,7 @@ "armor_class": 0, "hit_points": 0, "cost": null, - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13805,7 +13805,7 @@ "armor_class": 0, "hit_points": 0, "cost": "5.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "adventuring-gear", "requires_attunement": false, diff --git a/data/v2/wizards-of-the-coast/srd/Weapon.json b/data/v2/wizards-of-the-coast/srd/Weapon.json index 15c75f9b..6252211c 100644 --- a/data/v2/wizards-of-the-coast/srd/Weapon.json +++ b/data/v2/wizards-of-the-coast/srd/Weapon.json @@ -1,927 +1,927 @@ [ -{ - "model": "api_v2.weapon", - "pk": "battleaxe", - "fields": { - "name": "Battleaxe", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d8", - "versatile_dice": "1d10", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "blowgun", - "fields": { - "name": "Blowgun", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 25, - "range_long": 100, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": true, - "requires_loading": true, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "club", - "fields": { - "name": "Club", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "crossbow-hand", - "fields": { - "name": "Crossbow, hand", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 30, - "range_long": 120, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": true, - "requires_loading": true, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "crossbow-heavy", - "fields": { - "name": "Crossbow, heavy", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d10", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 100, - "range_long": 400, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": true, - "requires_loading": true, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "crossbow-light", - "fields": { - "name": "Crossbow, light", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 80, - "range_long": 320, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": true, - "requires_loading": true, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "dagger", - "fields": { - "name": "Dagger", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": true, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "dart", - "fields": { - "name": "Dart", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": true, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "flail", - "fields": { - "name": "Flail", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "glaive", - "fields": { - "name": "Glaive", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d10", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "greataxe", - "fields": { - "name": "Greataxe", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d12", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "greatclub", - "fields": { - "name": "Greatclub", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "greatsword", - "fields": { - "name": "Greatsword", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "2d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "halberd", - "fields": { - "name": "Halberd", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d10", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "handaxe", - "fields": { - "name": "Handaxe", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "javelin", - "fields": { - "name": "Javelin", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 30, - "range_long": 120, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "lance", - "fields": { - "name": "Lance", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d12", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": true, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "light-hammer", - "fields": { - "name": "Light hammer", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "longbow", - "fields": { - "name": "Longbow", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 150, - "range_long": 600, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": true, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "longsword", - "fields": { - "name": "Longsword", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d8", - "versatile_dice": "1d10", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "mace", - "fields": { - "name": "Mace", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "maul", - "fields": { - "name": "Maul", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "2d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "morningstar", - "fields": { - "name": "Morningstar", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "net", - "fields": { - "name": "Net", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "0", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 5, - "range_long": 15, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": true, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "pike", - "fields": { - "name": "Pike", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d10", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "quarterstaff", - "fields": { - "name": "Quarterstaff", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d6", - "versatile_dice": "1d8", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "rapier", - "fields": { - "name": "Rapier", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": true, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "scimitar", - "fields": { - "name": "Scimitar", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": true, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "shortbow", - "fields": { - "name": "Shortbow", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 80, - "range_long": 320, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": true, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "shortsword", - "fields": { - "name": "Shortsword", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": true, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "sickle", - "fields": { - "name": "Sickle", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "sling", - "fields": { - "name": "Sling", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 30, - "range_long": 120, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": true, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "spear", - "fields": { - "name": "Spear", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "1d8", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "trident", - "fields": { - "name": "Trident", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "1d8", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "warhammer", - "fields": { - "name": "Warhammer", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d8", - "versatile_dice": "1d10", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "warpick", - "fields": { - "name": "War Pick", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -}, -{ - "model": "api_v2.weapon", - "pk": "whip", - "fields": { - "name": "Whip", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": true, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } -} -] + { + "model": "api_v2.weapon", + "pk": "srd_battleaxe", + "fields": { + "name": "Battleaxe", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d8", + "versatile_dice": "1d10", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_blowgun", + "fields": { + "name": "Blowgun", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 25, + "range_long": 100, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": true, + "requires_loading": true, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_club", + "fields": { + "name": "Club", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_crossbow-hand", + "fields": { + "name": "Crossbow, hand", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 30, + "range_long": 120, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": true, + "requires_loading": true, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_crossbow-heavy", + "fields": { + "name": "Crossbow, heavy", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d10", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 100, + "range_long": 400, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": true, + "requires_loading": true, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_crossbow-light", + "fields": { + "name": "Crossbow, light", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 80, + "range_long": 320, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": true, + "requires_loading": true, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_dagger", + "fields": { + "name": "Dagger", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": true, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_dart", + "fields": { + "name": "Dart", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": true, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_flail", + "fields": { + "name": "Flail", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_glaive", + "fields": { + "name": "Glaive", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d10", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_greataxe", + "fields": { + "name": "Greataxe", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d12", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_greatclub", + "fields": { + "name": "Greatclub", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_greatsword", + "fields": { + "name": "Greatsword", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "2d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_halberd", + "fields": { + "name": "Halberd", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d10", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_handaxe", + "fields": { + "name": "Handaxe", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_javelin", + "fields": { + "name": "Javelin", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 30, + "range_long": 120, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_lance", + "fields": { + "name": "Lance", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d12", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": true, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_light-hammer", + "fields": { + "name": "Light hammer", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_longbow", + "fields": { + "name": "Longbow", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 150, + "range_long": 600, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": true, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_longsword", + "fields": { + "name": "Longsword", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d8", + "versatile_dice": "1d10", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_mace", + "fields": { + "name": "Mace", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_maul", + "fields": { + "name": "Maul", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "2d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_morningstar", + "fields": { + "name": "Morningstar", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_net", + "fields": { + "name": "Net", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "0", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 5, + "range_long": 15, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": true, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_pike", + "fields": { + "name": "Pike", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d10", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_quarterstaff", + "fields": { + "name": "Quarterstaff", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d6", + "versatile_dice": "1d8", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_rapier", + "fields": { + "name": "Rapier", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": true, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_scimitar", + "fields": { + "name": "Scimitar", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": true, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_shortbow", + "fields": { + "name": "Shortbow", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 80, + "range_long": 320, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": true, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_shortsword", + "fields": { + "name": "Shortsword", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": true, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_sickle", + "fields": { + "name": "Sickle", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_sling", + "fields": { + "name": "Sling", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 30, + "range_long": 120, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": true, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_spear", + "fields": { + "name": "Spear", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "1d8", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_trident", + "fields": { + "name": "Trident", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "1d8", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_warhammer", + "fields": { + "name": "Warhammer", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d8", + "versatile_dice": "1d10", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_war-pick", + "fields": { + "name": "War Pick", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + }, + { + "model": "api_v2.weapon", + "pk": "srd_whip", + "fields": { + "name": "Whip", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": true, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } + } +] \ No newline at end of file diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index cb5be86f..505e5e3c 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -139,7 +139,7 @@ def fix_keys_to_doc_name(objs,f): for obj in objs: if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): - if f['filename']=='Armor.json': + if f['filename']=='Weapon.json': logger.warning("{} changing to doc_name format".format(f['path'])) pk_value = "{}_{}".format(obj['fields']['document'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) @@ -155,10 +155,10 @@ def fix_keys_to_doc_name(objs,f): for obj in objs_fixed: for related_file in related_filenames: logger.warning("CHANGING RELATED PK IN {} TO {}".format(related_file,obj['pk'])) - refactor_relations(related_path+related_file,"armor",obj['former_pk'], obj['pk']) + refactor_relations(related_path+related_file,"weapon",obj['former_pk'], obj['pk']) obj.pop('former_pk') - if f['filename']=='Armor.json': + if f['filename']=='Weapon.json': with open(f['path'],'w',encoding='utf-8') as wf: json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) pass @@ -192,7 +192,7 @@ def refactor_relations(filename, key, former_pk, new_pk): if os.path.isfile(filename): with open(filename, 'r', encoding='utf-8') as f: objs = json.load(f) - if key == "armor": + if key == "weapon": for obj in objs: if obj['fields'][key] == former_pk: obj['fields'][key] = new_pk From bc1a84836f4dc7f45266a2927e6521bb4b4e1d40 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 31 May 2024 08:45:24 -0500 Subject: [PATCH 58/84] Fixing some references. --- data/v2/wizards-of-the-coast/srd/Item.json | 27704 +++++++++---------- 1 file changed, 13852 insertions(+), 13852 deletions(-) diff --git a/data/v2/wizards-of-the-coast/srd/Item.json b/data/v2/wizards-of-the-coast/srd/Item.json index 6fe345db..fd01a061 100644 --- a/data/v2/wizards-of-the-coast/srd/Item.json +++ b/data/v2/wizards-of-the-coast/srd/Item.json @@ -1,13853 +1,13853 @@ [ - { - "model": "api_v2.item", - "pk": "srd_abacus", - "fields": { - "name": "Abacus", - "desc": "An abacus.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_acid", - "fields": { - "name": "Acid", - "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_acid-vial", - "fields": { - "name": "Acid (vial)", - "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-breastplate", - "fields": { - "name": "Adamantine Armor (Breastplate)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-chain-mail", - "fields": { - "name": "Adamantine Armor (Chain-Mail)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-chain-shirt", - "fields": { - "name": "Adamantine Armor (Chain-Shirt)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-half-plate", - "fields": { - "name": "Adamantine Armor (Half-Plate)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-hide", - "fields": { - "name": "Adamantine Armor (Hide)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-plate", - "fields": { - "name": "Adamantine Armor (Plate)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-ring-mail", - "fields": { - "name": "Adamantine Armor (Ring-Mail)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-scale-mail", - "fields": { - "name": "Adamantine Armor (Scale-Mail)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_adamantine-armor-splint", - "fields": { - "name": "Adamantine Armor (Splint)", - "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_splint", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_alchemists-fire-flask", - "fields": { - "name": "Alchemist's Fire (Flask)", - "desc": "This sticky, adhesive fluid ignites when exposed to air. As an action, you can throw this flask up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the alchemist's fire as an improvised weapon. On a hit, the target takes 1d4 fire damage at the start of each of its turns. A creature can end this damage by using its action to make a DC 10 Dexterity check to extinguish the flames.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_alchemists-supplies", - "fields": { - "name": "Alchemist's Supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_amulet", - "fields": { - "name": "Amulet", - "desc": "Can be used as a holy symbol.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_amulet-of-health", - "fields": { - "name": "Amulet of Health", - "desc": "Your Constitution score is 19 while you wear this amulet. It has no effect on you if your Constitution is already 19 or higher.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_amulet-of-proof-against-detection-and-location", - "fields": { - "name": "Amulet of Proof against Detection and Location", - "desc": "While wearing this amulet, you are hidden from divination magic. You can't be targeted by such magic or perceived through magical scrying sensors.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_amulet-of-the-planes", - "fields": { - "name": "Amulet of the Planes", - "desc": "While wearing this amulet, you can use an action to name a location that you are familiar with on another plane of existence. Then make a DC 15 Intelligence check. On a successful check, you cast the _plane shift_ spell. On a failure, you and each creature and object within 15 feet of you travel to a random destination. Roll a d100. On a 1-60, you travel to a random location on the plane you named. On a 61-100, you travel to a randomly determined plane of existence.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_animated-shield", - "fields": { - "name": "Animated Shield", - "desc": "While holding this shield, you can speak its command word as a bonus action to cause it to animate. The shield leaps into the air and hovers in your space to protect you as if you were wielding it, leaving your hands free. The shield remains animated for 1 minute, until you use a bonus action to end this effect, or until you are incapacitated or die, at which point the shield falls to the ground or into your hand if you have one free.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_antitoxin-vial", - "fields": { - "name": "Antitoxin (Vial)", - "desc": "A creature that drinks this vial of liquid gains advantage on saving throws against poison for 1 hour. It confers no benefit to undead or constructs.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_apparatus-of-the-crab", - "fields": { - "name": "Apparatus of the Crab", - "desc": "This item first appears to be a Large sealed iron barrel weighing 500 pounds. The barrel has a hidden catch, which can be found with a successful DC 20 Intelligence (Investigation) check. Releasing the catch unlocks a hatch at one end of the barrel, allowing two Medium or smaller creatures to crawl inside. Ten levers are set in a row at the far end, each in a neutral position, able to move either up or down. When certain levers are used, the apparatus transforms to resemble a giant lobster.\r\n\r\nThe apparatus of the Crab is a Large object with the following statistics:\r\n\r\n**Armor Class:** 20\r\n\r\n**Hit Points:** 200\r\n\r\n**Speed:** 30 ft., swim 30 ft. (or 0 ft. for both if the legs and tail aren't extended)\r\n\r\n**Damage Immunities:** poison, psychic\r\n\r\nTo be used as a vehicle, the apparatus requires one pilot. While the apparatus's hatch is closed, the compartment is airtight and watertight. The compartment holds enough air for 10 hours of breathing, divided by the number of breathing creatures inside.\r\n\r\nThe apparatus floats on water. It can also go underwater to a depth of 900 feet. Below that, the vehicle takes 2d6 bludgeoning damage per minute from pressure.\r\n\r\nA creature in the compartment can use an action to move as many as two of the apparatus's levers up or down. After each use, a lever goes back to its neutral position. Each lever, from left to right, functions as shown in the Apparatus of the Crab Levers table.\r\n\r\n**Apparatus of the Crab Levers (table)**\r\n\r\n| Lever | Up | Down |\r\n|-------|----------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 1 | Legs and tail extend, allowing the apparatus to walk and swim. | Legs and tail retract, reducing the apparatus's speed to 0 and making it unable to benefit from bonuses to speed. |\r\n| 2 | Forward window shutter opens. | Forward window shutter closes. |\r\n| 3 | Side window shutters open (two per side). | Side window shutters close (two per side). |\r\n| 4 | Two claws extend from the front sides of the apparatus. | The claws retract. |\r\n| 5 | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: 7 (2d6) bludgeoning damage. | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: The target is grappled (escape DC 15). |\r\n| 6 | The apparatus walks or swims forward. | The apparatus walks or swims backward. |\r\n| 7 | The apparatus turns 90 degrees left. | The apparatus turns 90 degrees right. |\r\n| 8 | Eyelike fixtures emit bright light in a 30-foot radius and dim light for an additional 30 feet. | The light turns off. |\r\n| 9 | The apparatus sinks as much as 20 feet in liquid. | The apparatus rises up to 20 feet in liquid. |\r\n| 10 | The rear hatch unseals and opens. | The rear hatch closes and seals. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_armor-of-invulnerability", - "fields": { - "name": "Armor of Invulnerability", - "desc": "You have resistance to nonmagical damage while you wear this armor. Additionally, you can use an action to make yourself immune to nonmagical damage for 10 minutes or until you are no longer wearing the armor. Once this special action is used, it can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_plate", - "category": "armor", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_armor-of-resistance-leather", - "fields": { - "name": "Armor of Resistance (Leather)", - "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_leather", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_armor-of-resistance-padded", - "fields": { - "name": "Armor of Resistance (Padded)", - "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_padded", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_armor-of-resistance-studded-leather", - "fields": { - "name": "Armor of Resistance (Studded-Leather)", - "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_studded-leather", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_armor-of-vulnerability", - "fields": { - "name": "Armor of Vulnerability", - "desc": "While wearing this armor, you have resistance to one of the following damage types: bludgeoning, piercing, or slashing. The GM chooses the type or determines it randomly.\n\n**_Curse_**. This armor is cursed, a fact that is revealed only when an _identify_ spell is cast on the armor or you attune to it. Attuning to the armor curses you until you are targeted by the _remove curse_ spell or similar magic; removing the armor fails to end the curse. While cursed, you have vulnerability to two of the three damage types associated with the armor (not the one to which it grants resistance).", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_plate", - "category": "armor", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_arrow-bow", - "fields": { - "name": "Arrow (bow)", - "desc": "An arrow for a bow.", - "document": "srd", - "size": "tiny", - "weight": "0.050", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_arrow-catching-shield", - "fields": { - "name": "Arrow-Catching Shield", - "desc": "You gain a +2 bonus to AC against ranged attacks while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. In addition, whenever an attacker makes a ranged attack against a target within 5 feet of you, you can use your reaction to become the target of the attack instead.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_arrow-of-slaying", - "fields": { - "name": "Arrow of Slaying", - "desc": "An _arrow of slaying_ is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both _arrows of dragon slaying_ and _arrows of blue dragon slaying_. If a creature belonging to the type, race, or group associated with an _arrow of slaying_ takes damage from the arrow, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.\\n\\nOnce an _arrow of slaying_ deals its extra damage to a creature, it becomes a nonmagical arrow.\\n\\nOther types of magic ammunition of this kind exist, such as _bolts of slaying_ meant for a crossbow, though arrows are most common.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_assassins-blood", - "fields": { - "name": "Assassin's Blood", - "desc": "A creature subjected to this poison must make a DC 10 Constitution saving throw. On a failed save, it takes 6 (1d12) poison damage and is poisoned for 24 hours. On a successful save, the creature takes half damage and isn't poisoned.\\n\\n\r\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "150.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_backpack", - "fields": { - "name": "Backpack", - "desc": "A backpack. Capacity: 1 cubic foot/30 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_bag-of-beans", - "fields": { - "name": "Bag of Beans", - "desc": "Inside this heavy cloth bag are 3d4 dry beans. The bag weighs 1/2 pound plus 1/4 pound for each bean it contains.\r\n\r\nIf you dump the bag's contents out on the ground, they explode in a 10-foot radius, extending from the beans. Each creature in the area, including you, must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.\r\n\r\nIf you remove a bean from the bag, plant it in dirt or sand, and then water it, the bean produces an effect 1 minute later from the ground where it was planted. The GM can choose an effect from the following table, determine it randomly, or create an effect.\r\n\r\n| d100 | Effect |\r\n|-------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01 | 5d4 toadstools sprout. If a creature eats a toadstool, roll any die. On an odd roll, the eater must succeed on a DC 15 Constitution saving throw or take 5d6 poison damage and become poisoned for 1 hour. On an even roll, the eater gains 5d6 temporary hit points for 1 hour. |\r\n| 02-10 | A geyser erupts and spouts water, beer, berry juice, tea, vinegar, wine, or oil (GM's choice) 30 feet into the air for 1d12 rounds. |\r\n| 11-20 | A treant sprouts. There's a 50 percent chance that the treant is chaotic evil and attacks. |\r\n| 21-30 | An animate, immobile stone statue in your likeness rises. It makes verbal threats against you. If you leave it and others come near, it describes you as the most heinous of villains and directs the newcomers to find and attack you. If you are on the same plane of existence as the statue, it knows where you are. The statue becomes inanimate after 24 hours. |\r\n| 31-40 | A campfire with blue flames springs forth and burns for 24 hours (or until it is extinguished). |\r\n| 41-50 | 1d6 + 6 shriekers sprout |\r\n| 51-60 | 1d4 + 8 bright pink toads crawl forth. Whenever a toad is touched, it transforms into a Large or smaller monster of the GM's choice. The monster remains for 1 minute, then disappears in a puff of bright pink smoke. |\r\n| 61-70 | A hungry bulette burrows up and attacks. 71-80 A fruit tree grows. It has 1d10 + 20 fruit, 1d8 of which act as randomly determined magic potions, while one acts as an ingested poison of the GM's choice. The tree vanishes after 1 hour. Picked fruit remains, retaining any magic for 30 days. |\r\n| 81-90 | A nest of 1d4 + 3 eggs springs up. Any creature that eats an egg must make a DC 20 Constitution saving throw. On a successful save, a creature permanently increases its lowest ability score by 1, randomly choosing among equally low scores. On a failed save, the creature takes 10d6 force damage from an internal magical explosion. |\r\n| 91-99 | A pyramid with a 60-foot-square base bursts upward. Inside is a sarcophagus containing a mummy lord. The pyramid is treated as the mummy lord's lair, and its sarcophagus contains treasure of the GM's choice. |\r\n| 100 | A giant beanstalk sprouts, growing to a height of the GM's choice. The top leads where the GM chooses, such as to a great view, a cloud giant's castle, or a different plane of existence. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bag-of-devouring", - "fields": { - "name": "Bag of Devouring", - "desc": "This bag superficially resembles a _bag of holding_ but is a feeding orifice for a gigantic extradimensional creature. Turning the bag inside out closes the orifice.\r\n\r\nThe extradimensional creature attached to the bag can sense whatever is placed inside the bag. Animal or vegetable matter placed wholly in the bag is devoured and lost forever. When part of a living creature is placed in the bag, as happens when someone reaches inside it, there is a 50 percent chance that the creature is pulled inside the bag. A creature inside the bag can use its action to try to escape with a successful DC 15 Strength check. Another creature can use its action to reach into the bag to pull a creature out, doing so with a successful DC 20 Strength check (provided it isn't pulled inside the bag first). Any creature that starts its turn inside the bag is devoured, its body destroyed.\r\n\r\nInanimate objects can be stored in the bag, which can hold a cubic foot of such material. However, once each day, the bag swallows any objects inside it and spits them out into another plane of existence. The GM determines the time and plane.\r\n\r\nIf the bag is pierced or torn, it is destroyed, and anything contained within it is transported to a random location on the Astral Plane.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bag-of-holding", - "fields": { - "name": "Bag of Holding", - "desc": "This bag has an interior space considerably larger than its outside dimensions, roughly 2 feet in diameter at the mouth and 4 feet deep. The bag can hold up to 500 pounds, not exceeding a volume of 64 cubic feet. The bag weighs 15 pounds, regardless of its contents. Retrieving an item from the bag requires an action.\r\n\r\nIf the bag is overloaded, pierced, or torn, it ruptures and is destroyed, and its contents are scattered in the Astral Plane. If the bag is turned inside out, its contents spill forth, unharmed, but the bag must be put right before it can be used again. Breathing creatures inside the bag can survive up to a number of minutes equal to 10 divided by the number of creatures (minimum 1 minute), after which time they begin to suffocate.\r\n\r\nPlacing a _bag of holding_ inside an extradimensional space created by a _handy haversack_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it to a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bag-of-tricks", - "fields": { - "name": "Bag of Tricks", - "desc": "This ordinary bag, made from gray, rust, or tan cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\r\n\r\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a d8 and consulting the table that corresponds to the bag's color.\r\n\r\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\r\n\r\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.\r\n\r\n**Gray Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Weasel |\r\n| 2 | Giant rat |\r\n| 3 | Badger |\r\n| 4 | Boar |\r\n| 5 | Panther |\r\n| 6 | Giant badger |\r\n| 7 | Dire wolf |\r\n| 8 | Giant elk |\r\n\r\n**Rust Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|------------|\r\n| 1 | Rat |\r\n| 2 | Owl |\r\n| 3 | Mastiff |\r\n| 4 | Goat |\r\n| 5 | Giant goat |\r\n| 6 | Giant boar |\r\n| 7 | Lion |\r\n| 8 | Brown bear |\r\n\r\n**Tan Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Jackal |\r\n| 2 | Ape |\r\n| 3 | Baboon |\r\n| 4 | Axe beak |\r\n| 5 | Black bear |\r\n| 6 | Giant weasel |\r\n| 7 | Giant hyena |\r\n| 8 | Tiger |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bagpipes", - "fields": { - "name": "Bagpipes", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_ball-bearings-bag-of-1000", - "fields": { - "name": "Ball Bearings (bag of 1000)", - "desc": "As an action, you can spill these tiny metal balls from their pouch to cover a level, square area that is 10 feet on a side. A creature moving across the covered area must succeed on a DC 10 Dexterity saving throw or fall prone. A creature moving through the area at half speed doesn't need to make the save.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_barrel", - "fields": { - "name": "Barrel", - "desc": "A barrel. Capacity: 40 gallons liquid, 4 cubic feet solid.", - "document": "srd", - "size": "medium", - "weight": "70.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_basket", - "fields": { - "name": "Basket", - "desc": "A basket. Capacity: 2 cubic feet/40 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.40", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_battleaxe", - "fields": { - "name": "Battleaxe", - "desc": "A battleaxe.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "srd_battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_battleaxe-1", - "fields": { - "name": "Battleaxe (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_battleaxe-2", - "fields": { - "name": "Battleaxe (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_battleaxe-3", - "fields": { - "name": "Battleaxe (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bead-of-force", - "fields": { - "name": "Bead of Force", - "desc": "This small black sphere measures 3/4 of an inch in diameter and weighs an ounce. Typically, 1d4 + 4 _beads of force_ are found together.\r\n\r\nYou can use an action to throw the bead up to 60 feet. The bead explodes on impact and is destroyed. Each creature within a 10-foot radius of where the bead landed must succeed on a DC 15 Dexterity saving throw or take 5d4 force damage. A sphere of transparent force then encloses the area for 1 minute. Any creature that failed the save and is completely within the area is trapped inside this sphere. Creatures that succeeded on the save, or are partially within the area, are pushed away from the center of the sphere until they are no longer inside it. Only breathable air can pass through the sphere's wall. No attack or other effect can.\r\n\r\nAn enclosed creature can use its action to push against the sphere's wall, moving the sphere up to half the creature's walking speed. The sphere can be picked up, and its magic causes it to weigh only 1 pound, regardless of the weight of creatures inside.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bedroll", - "fields": { - "name": "Bedroll", - "desc": "A bedroll.", - "document": "srd", - "size": "tiny", - "weight": "7.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_bell", - "fields": { - "name": "Bell", - "desc": "A bell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-cloud-giant-strength", - "fields": { - "name": "Belt of Cloud Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-dwarvenkind", - "fields": { - "name": "Belt of Dwarvenkind", - "desc": "While wearing this belt, you gain the following benefits:\r\n\r\n* Your Constitution score increases by 2, to a maximum of 20.\r\n* You have advantage on Charisma (Persuasion) checks made to interact with dwarves.\r\n\r\nIn addition, while attuned to the belt, you have a 50 percent chance each day at dawn of growing a full beard if you're capable of growing one, or a visibly thicker beard if you already have one.\r\n\r\nIf you aren't a dwarf, you gain the following additional benefits while wearing the belt:\r\n\r\n* You have advantage on saving throws against poison, and you have resistance against poison damage.\r\n* You have darkvision out to a range of 60 feet.\r\n* You can speak, read, and write Dwarvish.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-fire-giant-strength", - "fields": { - "name": "Belt of Fire Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-frost-giant-strength", - "fields": { - "name": "Belt of Frost Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-hill-giant-strength", - "fields": { - "name": "Belt of Hill Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-stone-giant-strength", - "fields": { - "name": "Belt of Stone Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_belt-of-storm-giant-strength", - "fields": { - "name": "Belt of Storm Giant Strength", - "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_blanket", - "fields": { - "name": "Blanket", - "desc": "A blanket.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_block-and-tackle", - "fields": { - "name": "Block and Tackle", - "desc": "A set of pulleys with a cable threaded through them and a hook to attach to objects, a block and tackle allows you to hoist up to four times the weight you can normally lift.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_blowgun", - "fields": { - "name": "Blowgun", - "desc": "A blowgun.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "srd_blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_blowgun-1", - "fields": { - "name": "Blowgun (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_blowgun-2", - "fields": { - "name": "Blowgun (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_blowgun-3", - "fields": { - "name": "Blowgun (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_blowgun-needles", - "fields": { - "name": "Blowgun needles", - "desc": "Needles to be fired with a blowgun.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_book", - "fields": { - "name": "Book", - "desc": "A book might contain poetry, historical accounts, information pertaining to a particular field of lore, diagrams and notes on gnomish contraptions, or just about anything else that can be represented using text or pictures. A book of spells is a spellbook (described later in this section).", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_boots-of-elvenkind", - "fields": { - "name": "Boots of Elvenkind", - "desc": "While you wear these boots, your steps make no sound, regardless of the surface you are moving across. You also have advantage on Dexterity (Stealth) checks that rely on moving silently.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_boots-of-levitation", - "fields": { - "name": "Boots of Levitation", - "desc": "While you wear these boots, you can use an action to cast the _levitate_ spell on yourself at will.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_boots-of-speed", - "fields": { - "name": "Boots of Speed", - "desc": "While you wear these boots, you can use a bonus action and click the boots' heels together. If you do, the boots double your walking speed, and any creature that makes an opportunity attack against you has disadvantage on the attack roll. If you click your heels together again, you end the effect.\r\n\r\nWhen the boots' property has been used for a total of 10 minutes, the magic ceases to function until you finish a long rest.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_boots-of-striding-and-springing", - "fields": { - "name": "Boots of Striding and Springing", - "desc": "While you wear these boots, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced if you are encumbered or wearing heavy armor. In addition, you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_boots-of-the-winterlands", - "fields": { - "name": "Boots of the Winterlands", - "desc": "These furred boots are snug and feel quite warm. While you wear them, you gain the following benefits:\r\n\r\n* You have resistance to cold damage.\r\n* You ignore difficult terrain created by ice or snow.\r\n* You can tolerate temperatures as low as -50 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as -100 degrees Fahrenheit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bottle-glass", - "fields": { - "name": "Bottle, glass", - "desc": "A glass bottle. Capacity: 1.5 pints liquid.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_bowl-of-commanding-water-elementals", - "fields": { - "name": "Bowl of Commanding Water Elementals", - "desc": "While this bowl is filled with water, you can use an action to speak the bowl's command word and summon a water elemental, as if you had cast the _conjure elemental_ spell. The bowl can't be used this way again until the next dawn.\r\n\r\nThe bowl is about 1 foot in diameter and half as deep. It weighs 3 pounds and holds about 3 gallons.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bracers-of-archery", - "fields": { - "name": "Bracers of Archery", - "desc": "While wearing these bracers, you have proficiency with the longbow and shortbow, and you gain a +2 bonus to damage rolls on ranged attacks made with such weapons.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bracers-of-defense", - "fields": { - "name": "Bracers of Defense", - "desc": "While wearing these bracers, you gain a +2 bonus to AC if you are wearing no armor and using no shield.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_brazier-of-commanding-fire-elementals", - "fields": { - "name": "Brazier of Commanding Fire Elementals", - "desc": "While a fire burns in this brass brazier, you can use an action to speak the brazier's command word and summon a fire elemental, as if you had cast the _conjure elemental_ spell. The brazier can't be used this way again until the next dawn.\r\n\r\nThe brazier weighs 5 pounds.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_breastplate", - "fields": { - "name": "Breastplate", - "desc": "This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.", - "document": "srd", - "size": "tiny", - "weight": "20.000", - "armor_class": 0, - "hit_points": 0, - "cost": "400.00", - "weapon": null, - "armor": "srd_breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_brewers-supplies", - "fields": { - "name": "Brewer's Supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "9.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_brooch-of-shielding", - "fields": { - "name": "Brooch of Shielding", - "desc": "While wearing this brooch, you have resistance to force damage, and you have immunity to damage from the _magic missile_ spell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_broom-of-flying", - "fields": { - "name": "Broom of Flying", - "desc": "This wooden broom, which weighs 3 pounds, functions like a mundane broom until you stand astride it and speak its command word. It then hovers beneath you and can be ridden in the air. It has a flying speed of 50 feet. It can carry up to 400 pounds, but its flying speed becomes 30 feet while carrying over 200 pounds. The broom stops hovering when you land.\r\n\r\nYou can send the broom to travel alone to a destination within 1 mile of you if you speak the command word, name the location, and are familiar with that place. The broom comes back to you when you speak another command word, provided that the broom is still within 1 mile of you.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_bucket", - "fields": { - "name": "Bucket", - "desc": "A bucket. Capacity: 3 gallons liquid, 1/2 cubic foot solid.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_burnt-othur-fumes", - "fields": { - "name": "Burnt othur fumes", - "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or take 10 (3d6) poison damage, and must repeat the saving throw at the start of each of its turns. On each successive failed save, the character takes 3 (1d6) poison damage. After three successful saves, the poison ends.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "500.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_calligraphers-supplies", - "fields": { - "name": "Calligrapher's supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_caltrops-bag-of-20", - "fields": { - "name": "Caltrops (bag of 20)", - "desc": "As an action, you can spread a bag of caltrops to cover a square area that is 5 feet on a side. Any creature that enters the area must succeed on a DC 15 Dexterity saving throw or stop moving this turn and take 1 piercing damage. Taking this damage reduces the creature's walking speed by 10 feet until the creature regains at least 1 hit point. A creature moving through the area at half speed doesn't need to make the save.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_candle", - "fields": { - "name": "Candle", - "desc": "For 1 hour, a candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_candle-of-invocation", - "fields": { - "name": "Candle of Invocation", - "desc": "This slender taper is dedicated to a deity and shares that deity's alignment. The candle's alignment can be detected with the _detect evil and good_ spell. The GM chooses the god and associated alignment or determines the alignment randomly.\r\n\r\n| d20 | Alignment |\r\n|-------|-----------------|\r\n| 1-2 | Chaotic evil |\r\n| 3-4 | Chaotic neutral |\r\n| 5-7 | Chaotic good |\r\n| 8-9 | Neutral evil |\r\n| 10-11 | Neutral |\r\n| 12-13 | Neutral good |\r\n| 14-15 | Lawful evil |\r\n| 16-17 | Lawful neutral |\r\n| 18-20 | Lawful good |\r\n\r\nThe candle's magic is activated when the candle is lit, which requires an action. After burning for 4 hours, the candle is destroyed. You can snuff it out early for use at a later time. Deduct the time it burned in increments of 1 minute from the candle's total burn time.\r\n\r\nWhile lit, the candle sheds dim light in a 30-foot radius. Any creature within that light whose alignment matches that of the candle makes attack rolls, saving throws, and ability checks with advantage. In addition, a cleric or druid in the light whose alignment matches the candle's can cast 1st* level spells he or she has prepared without expending spell slots, though the spell's effect is as if cast with a 1st-level slot.\r\n\r\nAlternatively, when you light the candle for the first time, you can cast the _gate_ spell with it. Doing so destroys the candle.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_canvas", - "fields": { - "name": "Canvas", - "desc": "1 sq. yd. of canvas", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cape-of-the-mountebank", - "fields": { - "name": "Cape of the Mountebank", - "desc": "This cape smells faintly of brimstone. While wearing it, you can use it to cast the _dimension door_ spell as an action. This property of the cape can't be used again until the next dawn.\r\n\r\nWhen you disappear, you leave behind a cloud of smoke, and you appear in a similar cloud of smoke at your destination. The smoke lightly obscures the space you left and the space you appear in, and it dissipates at the end of your next turn. A light or stronger wind disperses the smoke.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_carpenters-tools", - "fields": { - "name": "Carpenter's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "8.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_carpet-of-flying", - "fields": { - "name": "Carpet of Flying", - "desc": "You can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.\r\n\r\nFour sizes of _carpet of flying_ exist. The GM chooses the size of a given carpet or determines it randomly.\r\n\r\n| d100 | Size | Capacity | Flying Speed |\r\n|--------|---------------|----------|--------------|\r\n| 01-20 | 3 ft. × 5 ft. | 200 lb. | 80 feet |\r\n| 21-55 | 4 ft. × 6 ft. | 400 lb. | 60 feet |\r\n| 56-80 | 5 ft. × 7 ft. | 600 lb. | 40 feet |\r\n| 81-100 | 6 ft. × 9 ft. | 800 lb. | 30 feet |\r\n\r\nA carpet can carry up to twice the weight shown on the table, but it flies at half speed if it carries more than its normal capacity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_carriage", - "fields": { - "name": "Carriage", - "desc": "Drawn vehicle.", - "document": "srd", - "size": "huge", - "weight": "600.000", - "armor_class": 0, - "hit_points": 0, - "cost": "100.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cart", - "fields": { - "name": "Cart", - "desc": "Drawn vehicle", - "document": "srd", - "size": "large", - "weight": "200.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cartographers-tools", - "fields": { - "name": "Cartographer's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_case-crossbow-bolt", - "fields": { - "name": "Case, Crossbow Bolt", - "desc": "This wooden case can hold up to twenty crossbow bolts.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_case-map-or-scroll", - "fields": { - "name": "Case, Map or Scroll", - "desc": "This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_censer-of-controlling-air-elementals", - "fields": { - "name": "Censer of Controlling Air Elementals", - "desc": "While incense is burning in this censer, you can use an action to speak the censer's command word and summon an air elemental, as if you had cast the _conjure elemental_ spell. The censer can't be used this way again until the next dawn.\r\n\r\nThis 6-inch-wide, 1-foot-high vessel resembles a chalice with a decorated lid. It weighs 1 pound.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_chain-10-feet", - "fields": { - "name": "Chain (10 feet)", - "desc": "A chain has 10 hit points. It can be burst with a successful DC 20 Strength check.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chain-mail", - "fields": { - "name": "Chain mail", - "desc": "Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.", - "document": "srd", - "size": "tiny", - "weight": "55.000", - "armor_class": 0, - "hit_points": 0, - "cost": "75.00", - "weapon": null, - "armor": "srd_chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chain-shirt", - "fields": { - "name": "Chain shirt", - "desc": "Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.", - "document": "srd", - "size": "tiny", - "weight": "20.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": "srd_chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chalk-1-piece", - "fields": { - "name": "Chalk (1 piece)", - "desc": "A piece of chalk.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chariot", - "fields": { - "name": "Chariot", - "desc": "Drawn vehicle.", - "document": "srd", - "size": "large", - "weight": "100.000", - "armor_class": 0, - "hit_points": 0, - "cost": "250.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chest", - "fields": { - "name": "Chest", - "desc": "A chest. Capacity: 12 cubic feet/300 pounds of gear.", - "document": "srd", - "size": "small", - "weight": "25.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chicken", - "fields": { - "name": "Chicken", - "desc": "One chicken", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_chime-of-opening", - "fields": { - "name": "Chime of Opening", - "desc": "This hollow metal tube measures about 1 foot long and weighs 1 pound. You can strike it as an action, pointing it at an object within 120 feet of you that can be opened, such as a door, lid, or lock. The chime issues a clear tone, and one lock or latch on the object opens unless the sound can't reach the object. If no locks or latches remain, the object itself opens.\r\n\r\nThe chime can be used ten times. After the tenth time, it cracks and becomes useless.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cinnamon", - "fields": { - "name": "Cinnamon", - "desc": "1lb of cinnamon", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_circlet-of-blasting", - "fields": { - "name": "Circlet of Blasting", - "desc": "While wearing this circlet, you can use an action to cast the _scorching ray_ spell with it. When you make the spell's attacks, you do so with an attack bonus of +5. The circlet can't be used this way again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_climbers-kit", - "fields": { - "name": "Climber's Kit", - "desc": "A climber's kit includes special pitons, boot tips, gloves, and a harness. You can use the climber's kit as an action to anchor yourself; when you do, you can't fall more than 25 feet from the point where you anchored yourself, and you can't climb more than 25 feet away from that point without undoing the anchor.", - "document": "srd", - "size": "tiny", - "weight": "12.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloak-of-arachnida", - "fields": { - "name": "Cloak of Arachnida", - "desc": "This fine garment is made of black silk interwoven with faint silvery threads. While wearing it, you gain the following benefits:\r\n\r\n* You have resistance to poison damage.\r\n* You have a climbing speed equal to your walking speed.\r\n* You can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free.\r\n* You can't be caught in webs of any sort and can move through webs as if they were difficult terrain.\r\n* You can use an action to cast the _web_ spell (save DC 13). The web created by the spell fills twice its normal area. Once used, this property of the cloak can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloak-of-displacement", - "fields": { - "name": "Cloak of Displacement", - "desc": "While you wear this cloak, it projects an illusion that makes you appear to be standing in a place near your actual location, causing any creature to have disadvantage on attack rolls against you. If you take damage, the property ceases to function until the start of your next turn. This property is suppressed while you are incapacitated, restrained, or otherwise unable to move.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloak-of-elvenkind", - "fields": { - "name": "Cloak of Elvenkind", - "desc": "While you wear this cloak with its hood up, Wisdom (Perception) checks made to see you have disadvantage, and you have advantage on Dexterity (Stealth) checks made to hide, as the cloak's color shifts to camouflage you. Pulling the hood up or down requires an action.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloak-of-protection", - "fields": { - "name": "Cloak of Protection", - "desc": "You gain a +1 bonus to AC and saving throws while you wear this cloak.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloak-of-the-bat", - "fields": { - "name": "Cloak of the Bat", - "desc": "While wearing this cloak, you have advantage on Dexterity (Stealth) checks. In an area of dim light or darkness, you can grip the edges of the cloak with both hands and use it to fly at a speed of 40 feet. If you ever fail to grip the cloak's edges while flying in this way, or if you are no longer in dim light or darkness, you lose this flying speed.\r\n\r\nWhile wearing the cloak in an area of dim light or darkness, you can use your action to cast _polymorph_ on yourself, transforming into a bat. While you are in the form of the bat, you retain your Intelligence, Wisdom, and Charisma scores. The cloak can't be used this way again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloak-of-the-manta-ray", - "fields": { - "name": "Cloak of the Manta Ray", - "desc": "While wearing this cloak with its hood up, you can breathe underwater, and you have a swimming speed of 60 feet. Pulling the hood up or down requires an action.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_clothes-common", - "fields": { - "name": "Clothes, Common", - "desc": "Common clothes.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_clothes-costume", - "fields": { - "name": "Clothes, costume", - "desc": "A costume.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_clothes-fine", - "fields": { - "name": "Clothes, fine", - "desc": "Fine clothing.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_clothes-travelers", - "fields": { - "name": "Clothes, traveler's", - "desc": "Traveler's clothing.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cloves", - "fields": { - "name": "Cloves", - "desc": "1lb of cloves.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "3.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_club", - "fields": { - "name": "Club", - "desc": "A club", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": "srd_club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_club-1", - "fields": { - "name": "Club (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_club-2", - "fields": { - "name": "Club (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_club-3", - "fields": { - "name": "Club (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cobblers-tools", - "fields": { - "name": "Cobbler's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_component-pouch", - "fields": { - "name": "Component Pouch", - "desc": "A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cooks-utensils", - "fields": { - "name": "Cook's utensils", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_copper", - "fields": { - "name": "Copper", - "desc": "1lb of copper.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_copper-piece", - "fields": { - "name": "Copper Piece", - "desc": "One silver piece is worth ten copper pieces, which are common among laborers and beggars. A single copper piece buys a candle, a torch, or a piece of chalk.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cotton-cloth", - "fields": { - "name": "Cotton Cloth", - "desc": "1 sq. yd. of cotton cloth.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_cow", - "fields": { - "name": "Cow", - "desc": "One cow.", - "document": "srd", - "size": "large", - "weight": "1000.000", - "armor_class": 10, - "hit_points": 15, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crawler-mucus", - "fields": { - "name": "Crawler mucus", - "desc": "This poison must be harvested from a dead or incapacitated crawler. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. The poisoned creature is paralyzed. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\\n\\n\r\n**_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-bolt", - "fields": { - "name": "Crossbow bolt", - "desc": "Bolts to be used in a crossbow.", - "document": "srd", - "size": "tiny", - "weight": "0.080", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-hand", - "fields": { - "name": "Crossbow, hand", - "desc": "A hand crossbow.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "75.00", - "weapon": "srd_crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-hand-1", - "fields": { - "name": "Crossbow-Hand (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-hand-2", - "fields": { - "name": "Crossbow-Hand (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-hand-3", - "fields": { - "name": "Crossbow-Hand (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-heavy", - "fields": { - "name": "Crossbow, heavy", - "desc": "A heavy crossbow", - "document": "srd", - "size": "tiny", - "weight": "18.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": "srd_crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-heavy-1", - "fields": { - "name": "Crossbow-Heavy (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-heavy-2", - "fields": { - "name": "Crossbow-Heavy (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-heavy-3", - "fields": { - "name": "Crossbow-Heavy (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-light", - "fields": { - "name": "Crossbow, light", - "desc": "A light crossbow.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "srd_crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-light-1", - "fields": { - "name": "Crossbow-Light (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-light-2", - "fields": { - "name": "Crossbow-Light (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crossbow-light-3", - "fields": { - "name": "Crossbow-Light (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crowbar", - "fields": { - "name": "Crowbar", - "desc": "Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crystal", - "fields": { - "name": "Crystal", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_crystal-ball", - "fields": { - "name": "Crystal Ball", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crystal-ball-of-mind-reading", - "fields": { - "name": "Crystal Ball of Mind Reading", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nYou can use an action to cast the detect thoughts spell (save DC 17) while you are scrying with the crystal ball, targeting creatures you can see within 30 feet of the spell's sensor. You don't need to concentrate on this detect thoughts to maintain it during its duration, but it ends if scrying ends.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crystal-ball-of-telepathy", - "fields": { - "name": "Crystal Ball of Telepathy", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nThe following crystal ball variants are legendary items and have additional properties.\r\n\r\nWhile scrying with the crystal ball, you can communicate telepathically with creatures you can see within 30 feet of the spell's sensor. You can also use an action to cast the suggestion spell (save DC 17) through the sensor on one of those creatures. You don't need to concentrate on this suggestion to maintain it during its duration, but it ends if scrying ends. Once used, the suggestion power of the crystal ball can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_crystal-ball-of-true-seeing", - "fields": { - "name": "Crystal Ball of True Seeing", - "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nWhile scrying with the crystal ball, you have truesight with a radius of 120 feet centered on the spell's sensor.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cube-of-force", - "fields": { - "name": "Cube of Force", - "desc": "This cube is about an inch across. Each face has a distinct marking on it that can be pressed. The cube starts with 36 charges, and it regains 1d20 expended charges daily at dawn.\r\n\r\nYou can use an action to press one of the cube's faces, expending a number of charges based on the chosen face, as shown in the Cube of Force Faces table. Each face has a different effect. If the cube has insufficient charges remaining, nothing happens. Otherwise, a barrier of invisible force springs into existence, forming a cube 15 feet on a side. The barrier is centered on you, moves with you, and lasts for 1 minute, until you use an action to press the cube's sixth face, or the cube runs out of charges. You can change the barrier's effect by pressing a different face of the cube and expending the requisite number of charges, resetting the duration.\r\n\r\nIf your movement causes the barrier to come into contact with a solid object that can't pass through the cube, you can't move any closer to that object as long as the barrier remains.\r\n\r\n**Cube of Force Faces (table)**\r\n\r\n| Face | Charges | Effect |\r\n|------|---------|-------------------------------------------------------------------------------------------------------------------|\r\n| 1 | 1 | Gases, wind, and fog can't pass through the barrier. |\r\n| 2 | 2 | Nonliving matter can't pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 3 | 3 | Living matter can't pass through the barrier. |\r\n| 4 | 4 | Spell effects can't pass through the barrier. |\r\n| 5 | 5 | Nothing can pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 6 | 0 | The barrier deactivates. |\r\n\r\nThe cube loses charges when the barrier is targeted by certain spells or comes into contact with certain spell or magic item effects, as shown in the table below.\r\n\r\n| Spell or Item | Charges Lost |\r\n|------------------|--------------|\r\n| Disintegrate | 1d12 |\r\n| Horn of blasting | 1d10 |\r\n| Passwall | 1d6 |\r\n| Prismatic spray | 1d20 |\r\n| Wall of fire | 1d4 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_cubic-gate", - "fields": { - "name": "Cubic Gate", - "desc": "This cube is 3 inches across and radiates palpable magical energy. The six sides of the cube are each keyed to a different plane of existence, one of which is the Material Plane. The other sides are linked to planes determined by the GM.\r\n\r\nYou can use an action to press one side of the cube to cast the _gate_ spell with it, opening a portal to the plane keyed to that side. Alternatively, if you use an action to press one side twice, you can cast the _plane shift_ spell (save DC 17) with the cube and transport the targets to the plane keyed to that side.\r\n\r\nThe cube has 3 charges. Each use of the cube expends 1 charge. The cube regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dagger", - "fields": { - "name": "Dagger", - "desc": "A dagger.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": "srd_dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dagger-1", - "fields": { - "name": "Dagger (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dagger-2", - "fields": { - "name": "Dagger (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dagger-3", - "fields": { - "name": "Dagger (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dagger-of-venom", - "fields": { - "name": "Dagger of Venom", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nYou can use an action to cause thick, black poison to coat the blade. The poison remains for 1 minute or until an attack using this weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or take 2d10 poison damage and become poisoned for 1 minute. The dagger can't be used this way again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dancing-sword-greatsword", - "fields": { - "name": "Dancing Sword (Greatsword)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dancing-sword-longsword", - "fields": { - "name": "Dancing Sword (Longsword)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dancing-sword-rapier", - "fields": { - "name": "Dancing Sword (Rapier)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dancing-sword-shortsword", - "fields": { - "name": "Dancing Sword (Shortsword)", - "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dart", - "fields": { - "name": "Dart", - "desc": "A dart.", - "document": "srd", - "size": "tiny", - "weight": "0.250", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": "srd_dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dart-1", - "fields": { - "name": "Dart (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dart-2", - "fields": { - "name": "Dart (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dart-3", - "fields": { - "name": "Dart (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_decanter-of-endless-water", - "fields": { - "name": "Decanter of Endless Water", - "desc": "This stoppered flask sloshes when shaken, as if it contains water. The decanter weighs 2 pounds.\r\n\r\nYou can use an action to remove the stopper and speak one of three command words, whereupon an amount of fresh water or salt water (your choice) pours out of the flask. The water stops pouring out at the start of your next turn. Choose from the following options:\r\n\r\n* \"Stream\" produces 1 gallon of water.\r\n* \"Fountain\" produces 5 gallons of water.\r\n* \"Geyser\" produces 30 gallons of water that gushes forth in a geyser 30 feet long and 1 foot wide. As a bonus action while holding the decanter, you can aim the geyser at a creature you can see within 30 feet of you. The target must succeed on a DC 13 Strength saving throw or take 1d4 bludgeoning damage and fall prone. Instead of a creature, you can target an object that isn't being worn or carried and that weighs no more than 200 pounds. The object is either knocked over or pushed up to 15 feet away from you.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_deck-of-illusions", - "fields": { - "name": "Deck of Illusions", - "desc": "This box contains a set of parchment cards. A full deck has 34 cards. A deck found as treasure is usually missing 1d20 - 1 cards.\r\n\r\nThe magic of the deck functions only if cards are drawn at random (you can use an altered deck of playing cards to simulate the deck). You can use an action to draw a card at random from the deck and throw it to the ground at a point within 30 feet of you.\r\n\r\nAn illusion of one or more creatures forms over the thrown card and remains until dispelled. An illusory creature appears real, of the appropriate size, and behaves as if it were a real creature except that it can do no harm. While you are within 120 feet of the illusory creature and can see it, you can use an action to move it magically anywhere within 30 feet of its card. Any physical interaction with the illusory creature reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect the creature identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The creature then appears translucent.\r\n\r\nThe illusion lasts until its card is moved or the illusion is dispelled. When the illusion ends, the image on its card disappears, and that card can't be used again.\r\n\r\n| Playing Card | Illusion |\r\n|-------------------|----------------------------------|\r\n| Ace of hearts | Red dragon |\r\n| King of hearts | Knight and four guards |\r\n| Queen of hearts | Succubus or incubus |\r\n| Jack of hearts | Druid |\r\n| Ten of hearts | Cloud giant |\r\n| Nine of hearts | Ettin |\r\n| Eight of hearts | Bugbear |\r\n| Two of hearts | Goblin |\r\n| Ace of diamonds | Beholder |\r\n| King of diamonds | Archmage and mage apprentice |\r\n| Queen of diamonds | Night hag |\r\n| Jack of diamonds | Assassin |\r\n| Ten of diamonds | Fire giant |\r\n| Nine of diamonds | Ogre mage |\r\n| Eight of diamonds | Gnoll |\r\n| Two of diamonds | Kobold |\r\n| Ace of spades | Lich |\r\n| King of spades | Priest and two acolytes |\r\n| Queen of spades | Medusa |\r\n| Jack of spades | Veteran |\r\n| Ten of spades | Frost giant |\r\n| Nine of spades | Troll |\r\n| Eight of spades | Hobgoblin |\r\n| Two of spades | Goblin |\r\n| Ace of clubs | Iron golem |\r\n| King of clubs | Bandit captain and three bandits |\r\n| Queen of clubs | Erinyes |\r\n| Jack of clubs | Berserker |\r\n| Ten of clubs | Hill giant |\r\n| Nine of clubs | Ogre |\r\n| Eight of clubs | Orc |\r\n| Two of clubs | Kobold |\r\n| Jokers (2) | You (the deck's owner) |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_deck-of-many-things", - "fields": { - "name": "Deck of Many Things", - "desc": "Usually found in a box or pouch, this deck contains a number of cards made of ivory or vellum. Most (75 percent) of these decks have only thirteen cards, but the rest have twenty-two.\r\n\r\nBefore you draw a card, you must declare how many cards you intend to draw and then draw them randomly (you can use an altered deck of playing cards to simulate the deck). Any cards drawn in excess of this number have no effect. Otherwise, as soon as you draw a card from the deck, its magic takes effect. You must draw each card no more than 1 hour after the previous draw. If you fail to draw the chosen number, the remaining number of cards fly from the deck on their own and take effect all at once.\r\n\r\nOnce a card is drawn, it fades from existence. Unless the card is the Fool or the Jester, the card reappears in the deck, making it possible to draw the same card twice.\r\n\r\n| Playing Card | Card |\r\n|--------------------|-------------|\r\n| Ace of diamonds | Vizier\\* |\r\n| King of diamonds | Sun |\r\n| Queen of diamonds | Moon |\r\n| Jack of diamonds | Star |\r\n| Two of diamonds | Comet\\* |\r\n| Ace of hearts | The Fates\\* |\r\n| King of hearts | Throne |\r\n| Queen of hearts | Key |\r\n| Jack of hearts | Knight |\r\n| Two of hearts | Gem\\* |\r\n| Ace of clubs | Talons\\* |\r\n| King of clubs | The Void |\r\n| Queen of clubs | Flames |\r\n| Jack of clubs | Skull |\r\n| Two of clubs | Idiot\\* |\r\n| Ace of spades | Donjon\\* |\r\n| King of spades | Ruin |\r\n| Queen of spades | Euryale |\r\n| Jack of spades | Rogue |\r\n| Two of spades | Balance\\* |\r\n| Joker (with TM) | Fool\\* |\r\n| Joker (without TM) | Jester |\r\n\r\n\\*Found only in a deck with twenty-two cards\r\n\r\n**_Balance_**. Your mind suffers a wrenching alteration, causing your alignment to change. Lawful becomes chaotic, good becomes evil, and vice versa. If you are true neutral or unaligned, this card has no effect on you.\r\n\r\n**_Comet_**. If you single-handedly defeat the next hostile monster or group of monsters you encounter, you gain experience points enough to gain one level. Otherwise, this card has no effect.\r\n\r\n**_Donjon_**. You disappear and become entombed in a state of suspended animation in an extradimensional sphere. Everything you were wearing and carrying stays behind in the space you occupied when you disappeared. You remain imprisoned until you are found and removed from the sphere. You can't be located by any divination magic, but a _wish_ spell can reveal the location of your prison. You draw no more cards.\r\n\r\n**_Euryale_**. The card's medusa-like visage curses you. You take a -2 penalty on saving throws while cursed in this way. Only a god or the magic of The Fates card can end this curse.\r\n\r\n**_The Fates_**. Reality's fabric unravels and spins anew, allowing you to avoid or erase one event as if it never happened. You can use the card's magic as soon as you draw the card or at any other time before you die.\r\n\r\n**_Flames_**. A powerful devil becomes your enemy. The devil seeks your ruin and plagues your life, savoring your suffering before attempting to slay you. This enmity lasts until either you or the devil dies.\r\n\r\n**_Fool_**. You lose 10,000 XP, discard this card, and draw from the deck again, counting both draws as one of your declared draws. If losing that much XP would cause you to lose a level, you instead lose an amount that leaves you with just enough XP to keep your level.\r\n\r\n**_Gem_**. Twenty-five pieces of jewelry worth 2,000 gp each or fifty gems worth 1,000 gp each appear at your feet.\r\n\r\n**_Idiot_**. Permanently reduce your Intelligence by 1d4 + 1 (to a minimum score of 1). You can draw one additional card beyond your declared draws.\r\n\r\n**_Jester_**. You gain 10,000 XP, or you can draw two additional cards beyond your declared draws.\r\n\r\n**_Key_**. A rare or rarer magic weapon with which you are proficient appears in your hands. The GM chooses the weapon.\r\n\r\n**_Knight_**. You gain the service of a 4th-level fighter who appears in a space you choose within 30 feet of you. The fighter is of the same race as you and serves you loyally until death, believing the fates have drawn him or her to you. You control this character.\r\n\r\n**_Moon_**. You are granted the ability to cast the _wish_ spell 1d3 times.\r\n\r\n**_Rogue_**. A nonplayer character of the GM's choice becomes hostile toward you. The identity of your new enemy isn't known until the NPC or someone else reveals it. Nothing less than a _wish_ spell or divine intervention can end the NPC's hostility toward you.\r\n\r\n**_Ruin_**. All forms of wealth that you carry or own, other than magic items, are lost to you. Portable property vanishes. Businesses, buildings, and land you own are lost in a way that alters reality the least. Any documentation that proves you should own something lost to this card also disappears.\r\n\r\n**_Skull_**. You summon an avatar of death-a ghostly humanoid skeleton clad in a tattered black robe and carrying a spectral scythe. It appears in a space of the GM's choice within 10 feet of you and attacks you, warning all others that you must win the battle alone. The avatar fights until you die or it drops to 0 hit points, whereupon it disappears. If anyone tries to help you, the helper summons its own avatar of death. A creature slain by an avatar of death can't be restored to life.\r\n\r\n#", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_defender-greatsword", - "fields": { - "name": "Defender (Greatsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_defender-longsword", - "fields": { - "name": "Defender (Longsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_defender-rapier", - "fields": { - "name": "Defender (Rapier)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_defender-shortsword", - "fields": { - "name": "Defender (Shortsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_demon-armor", - "fields": { - "name": "Demon Armor", - "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, the armor's clawed gauntlets turn unarmed strikes with your hands into magic weapons that deal slashing damage, with a +1 bonus to attack rolls and damage rolls and a damage die of 1d8.\n\n**_Curse_**. Once you don this cursed armor, you can't doff it unless you are targeted by the _remove curse_ spell or similar magic. While wearing the armor, you have disadvantage on attack rolls against demons and on saving throws against their spells and special abilities.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_plate", - "category": "armor", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dice-set", - "fields": { - "name": "Dice set", - "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dimensional-shackles", - "fields": { - "name": "Dimensional Shackles", - "desc": "You can use an action to place these shackles on an incapacitated creature. The shackles adjust to fit a creature of Small to Large size. In addition to serving as mundane manacles, the shackles prevent a creature bound by them from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. They don't prevent the creature from passing through an interdimensional portal.\r\n\r\nYou and any creature you designate when you use the shackles can use an action to remove them. Once every 30 days, the bound creature can make a DC 30 Strength (Athletics) check. On a success, the creature breaks free and destroys the shackles.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_disguise-kit", - "fields": { - "name": "Disguise kit", - "desc": "This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dragon-scale-mail", - "fields": { - "name": "Dragon Scale Mail", - "desc": "Dragon scale mail is made of the scales of one kind of dragon. Sometimes dragons collect their cast-off scales and gift them to humanoids. Other times, hunters carefully skin and preserve the hide of a dead dragon. In either case, dragon scale mail is highly valued.\r\n\r\nWhile wearing this armor, you gain a +1 bonus to AC, you have advantage on saving throws against the Frightful Presence and breath weapons of dragons, and you have resistance to one damage type that is determined by the kind of dragon that provided the scales (see the table).\r\n\r\nAdditionally, you can focus your senses as an action to magically discern the distance and direction to the closest dragon within 30 miles of you that is of the same type as the armor. This special action can't be used again until the next dawn.\r\n\r\n| Dragon | Resistance |\r\n|--------|------------|\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": "srd_scale-mail", - "category": "armor", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dragon-slayer-greatsword", - "fields": { - "name": "Dragon Slayer (Greatsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dragon-slayer-longsword", - "fields": { - "name": "Dragon Slayer (Longsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dragon-slayer-rapier", - "fields": { - "name": "Dragon Slayer (Rapier)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dragon-slayer-shortsword", - "fields": { - "name": "Dragon Slayer (Shortsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_drow-poison", - "fields": { - "name": "Drow poison", - "desc": "This poison is typically made only by the drow, and only in a place far removed from sunlight. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the creature is also unconscious while poisoned in this way. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\r\n\\n\\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_drum", - "fields": { - "name": "Drum", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "6.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dulcimer", - "fields": { - "name": "Dulcimer", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_dust-of-disappearance", - "fields": { - "name": "Dust of Disappearance", - "desc": "Found in a small packet, this powder resembles very fine sand. There is enough of it for one use. When you use an action to throw the dust into the air, you and each creature and object within 10 feet of you become invisible for 2d4 minutes. The duration is the same for all subjects, and the dust is consumed when its magic takes effect. If a creature affected by the dust attacks or casts a spell, the invisibility ends for that creature.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dust-of-dryness", - "fields": { - "name": "Dust of Dryness", - "desc": "This small packet contains 1d6 + 4 pinches of dust. You can use an action to sprinkle a pinch of it over water. The dust turns a cube of water 15 feet on a side into one marble-sized pellet, which floats or rests near where the dust was sprinkled. The pellet's weight is negligible.\r\n\r\nSomeone can use an action to smash the pellet against a hard surface, causing the pellet to shatter and release the water the dust absorbed. Doing so ends that pellet's magic.\r\n\r\nAn elemental composed mostly of water that is exposed to a pinch of the dust must make a DC 13 Constitution saving throw, taking 10d6 necrotic damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dust-of-sneezing-and-choking", - "fields": { - "name": "Dust of Sneezing and Choking", - "desc": "Found in a small container, this powder resembles very fine sand. It appears to be _dust of disappearance_, and an _identify_ spell reveals it to be such. There is enough of it for one use.\r\n\r\nWhen you use an action to throw a handful of the dust into the air, you and each creature that needs to breathe within 30 feet of you must succeed on a DC 15 Constitution saving throw or become unable to breathe, while sneezing uncontrollably. A creature affected in this way is incapacitated and suffocating. As long as it is conscious, a creature can repeat the saving throw at the end of each of its turns, ending the effect on it on a success. The _lesser restoration_ spell can also end the effect on a creature.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dwarven-plate", - "fields": { - "name": "Dwarven Plate", - "desc": "While wearing this armor, you gain a +2 bonus to AC. In addition, if an effect moves you against your will along the ground, you can use your reaction to reduce the distance you are moved by up to 10 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_plate", - "category": "armor", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_dwarven-thrower", - "fields": { - "name": "Dwarven Thrower", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. It has the thrown property with a normal range of 20 feet and a long range of 60 feet. When you hit with a ranged attack using this weapon, it deals an extra 1d8 damage or, if the target is a giant, 2d8 damage. Immediately after the attack, the weapon flies back to your hand.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_efficient-quiver", - "fields": { - "name": "Efficient Quiver", - "desc": "Each of the quiver's three compartments connects to an extradimensional space that allows the quiver to hold numerous items while never weighing more than 2 pounds. The shortest compartment can hold up to sixty arrows, bolts, or similar objects. The midsize compartment holds up to eighteen javelins or similar objects. The longest compartment holds up to six long objects, such as bows, quarterstaffs, or spears.\r\n\r\nYou can draw any item the quiver contains as if doing so from a regular quiver or scabbard.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_efreeti-bottle", - "fields": { - "name": "Efreeti Bottle", - "desc": "This painted brass bottle weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke flows out of the bottle. At the end of your turn, the smoke disappears with a flash of harmless fire, and an efreeti appears in an unoccupied space within 30 feet of you.\r\n\r\nThe first time the bottle is opened, the GM rolls to determine what happens.\r\n\r\n| d100 | Effect |\r\n|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-10 | The efreeti attacks you. After fighting for 5 rounds, the efreeti disappears, and the bottle loses its magic. |\r\n| 11-90 | The efreeti serves you for 1 hour, doing as you command. Then the efreeti returns to the bottle, and a new stopper contains it. The stopper can't be removed for 24 hours. The next two times the bottle is opened, the same effect occurs. If the bottle is opened a fourth time, the efreeti escapes and disappears, and the bottle loses its magic. |\r\n| 91-100 | The efreeti can cast the wish spell three times for you. It disappears when it grants the final wish or after 1 hour, and the bottle loses its magic. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_electrum-piece", - "fields": { - "name": "Electrum Piece", - "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_elemental-gem", - "fields": { - "name": "Elemental Gem", - "desc": "This gem contains a mote of elemental energy. When you use an action to break the gem, an elemental is summoned as if you had cast the _conjure elemental_ spell, and the gem's magic is lost. The type of gem determines the elemental summoned by the spell.\r\n\r\n| Gem | Summoned Elemental |\r\n|----------------|--------------------|\r\n| Blue sapphire | Air elemental |\r\n| Yellow diamond | Earth elemental |\r\n| Red corundum | Fire elemental |\r\n| Emerald | Water elemental |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_elven-chain", - "fields": { - "name": "Elven Chain", - "desc": "You gain a +1 bonus to AC while you wear this armor. You are considered proficient with this armor even if you lack proficiency with medium armor.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_emblem", - "fields": { - "name": "Emblem", - "desc": "Can be used as a holy symbol.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_essense-of-either", - "fields": { - "name": "Essense of either", - "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 8 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "300.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_eversmoking-bottle", - "fields": { - "name": "Eversmoking Bottle", - "desc": "Smoke leaks from the lead-stoppered mouth of this brass bottle, which weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke pours out in a 60-foot radius from the bottle. The cloud's area is heavily obscured. Each minute the bottle remains open and within the cloud, the radius increases by 10 feet until it reaches its maximum radius of 120 feet.\r\n\r\nThe cloud persists as long as the bottle is open. Closing the bottle requires you to speak its command word as an action. Once the bottle is closed, the cloud disperses after 10 minutes. A moderate wind (11 to 20 miles per hour) can also disperse the smoke after 1 minute, and a strong wind (21 or more miles per hour) can do so after 1 round.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_eyes-of-charming", - "fields": { - "name": "Eyes of Charming", - "desc": "These crystal lenses fit over the eyes. They have 3 charges. While wearing them, you can expend 1 charge as an action to cast the _charm person_ spell (save DC 13) on a humanoid within 30 feet of you, provided that you and the target can see each other. The lenses regain all expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_eyes-of-minute-seeing", - "fields": { - "name": "Eyes of Minute Seeing", - "desc": "These crystal lenses fit over the eyes. While wearing them, you can see much better than normal out to a range of 1 foot. You have advantage on Intelligence (Investigation) checks that rely on sight while searching an area or studying an object within that range.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_eyes-of-the-eagle", - "fields": { - "name": "Eyes of the Eagle", - "desc": "These crystal lenses fit over the eyes. While wearing them, you have advantage on Wisdom (Perception) checks that rely on sight. In conditions of clear visibility, you can make out details of even extremely distant creatures and objects as small as 2 feet across.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_feather-token", - "fields": { - "name": "Feather Token", - "desc": "This tiny object looks like a feather. Different types of feather tokens exist, each with a different single* use effect. The GM chooses the kind of token or determines it randomly.\r\n\r\n| d100 | Feather Token |\r\n|--------|---------------|\r\n| 01-20 | Anchor |\r\n| 21-35 | Bird |\r\n| 36-50 | Fan |\r\n| 51-65 | Swan boat |\r\n| 66-90 | Tree |\r\n| 91-100 | Whip |\r\n\r\n**_Anchor_**. You can use an action to touch the token to a boat or ship. For the next 24 hours, the vessel can't be moved by any means. Touching the token to the vessel again ends the effect. When the effect ends, the token disappears.\r\n\r\n**_Bird_**. You can use an action to toss the token 5 feet into the air. The token disappears and an enormous, multicolored bird takes its place. The bird has the statistics of a roc, but it obeys your simple commands and can't attack. It can carry up to 500 pounds while flying at its maximum speed (16 miles an hour for a maximum of 144 miles per day, with a one-hour rest for every 3 hours of flying), or 1,000 pounds at half that speed. The bird disappears after flying its maximum distance for a day or if it drops to 0 hit points. You can dismiss the bird as an action.\r\n\r\n**_Fan_**. If you are on a boat or ship, you can use an action to toss the token up to 10 feet in the air. The token disappears, and a giant flapping fan takes its place. The fan floats and creates a wind strong enough to fill the sails of one ship, increasing its speed by 5 miles per hour for 8 hours. You can dismiss the fan as an action.\r\n\r\n**_Swan Boat_**. You can use an action to touch the token to a body of water at least 60 feet in diameter. The token disappears, and a 50-foot-long, 20-foot* wide boat shaped like a swan takes its place. The boat is self-propelled and moves across water at a speed of 6 miles per hour. You can use an action while on the boat to command it to move or to turn up to 90 degrees. The boat can carry up to thirty-two Medium or smaller creatures. A Large creature counts as four Medium creatures, while a Huge creature counts as nine. The boat remains for 24 hours and then disappears. You can dismiss the boat as an action.\r\n\r\n**_Tree_**. You must be outdoors to use this token. You can use an action to touch it to an unoccupied space on the ground. The token disappears, and in its place a nonmagical oak tree springs into existence. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\r\n\r\n**_Whip_**. You can use an action to throw the token to a point within 10 feet of you. The token disappears, and a floating whip takes its place. You can then use a bonus action to make a melee spell attack against a creature within 10 feet of the whip, with an attack bonus of +9. On a hit, the target takes 1d6 + 5 force damage.\r\n\r\nAs a bonus action on your turn, you can direct the whip to fly up to 20 feet and repeat the attack against a creature within 10 feet of it. The whip disappears after 1 hour, when you use an action to dismiss it, or when you are incapacitated or die.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-bronze-griffon", - "fields": { - "name": "Figurine of Wondrous Power (Bronze Griffon)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Bronze Griffon (Rare)_**. This bronze statuette is of a griffon rampant. It can become a griffon for up to 6 hours. Once it has been used, it can't be used again until 5 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-ebony-fly", - "fields": { - "name": "Figurine of Wondrous Power (Ebony Fly)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ebony Fly (Rare)_**. This ebony statuette is carved in the likeness of a horsefly. It can become a giant fly for up to 12 hours and can be ridden as a mount. Once it has been used, it can’t be used again until 2 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-golden-lions", - "fields": { - "name": "Figurine of Wondrous Power (Golden Lions)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Golden Lions (Rare)_**. These gold statuettes of lions are always created in pairs. You can use one figurine or both simultaneously. Each can become a lion for up to 1 hour. Once a lion has been used, it can’t be used again until 7 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-ivory-goats", - "fields": { - "name": "Figurine of Wondrous Power (Ivory Goats)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ivory Goats (Rare_**.These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others. Their properties are as follows:\\n\\n* The _goat of traveling_ can become a Large goat with the same statistics as a riding horse. It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can't be used again until 7 days have passed, when it regains all its charges.\\n* The _goat of travail_ becomes a giant goat for up to 3 hours. Once it has been used, it can't be used again until 30 days have passed.\\n* The _goat of terror_ becomes a giant goat for up to 3 hours. The goat can't attack, but you can remove its horns and use them as weapons. One horn becomes a _+1 lance_, and the other becomes a _+2 longsword_. Removing a horn requires an action, and the weapons disappear and the horns return when the goat reverts to figurine form. In addition, the goat radiates a 30-foot-radius aura of terror while you are riding it. Any creature hostile to you that starts its turn in the aura must succeed on a DC 15 Wisdom saving throw or be frightened of the goat for 1 minute, or until the goat reverts to figurine form. The frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it successfully saves against the effect, a creature is immune to the goat's aura for the next 24 hours. Once the figurine has been used, it can't be used again until 15 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-marble-elephant", - "fields": { - "name": "Figurine of Wondrous Power (Marble Elephant)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Marble Elephant (Rare)_**. This marble statuette is about 4 inches high and long. It can become an elephant for up to 24 hours. Once it has been used, it can’t be used again until 7 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-obsidian-steed", - "fields": { - "name": "Figurine of Wondrous Power (Obsidian Steed)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Obsidian Steed (Very Rare)_**. This polished obsidian horse can become a nightmare for up to 24 hours. The nightmare fights only to defend itself. Once it has been used, it can't be used again until 5 days have passed.\\n\\nIf you have a good alignment, the figurine has a 10 percent chance each time you use it to ignore your orders, including a command to revert to figurine form. If you mount the nightmare while it is ignoring your orders, you and the nightmare are instantly transported to a random location on the plane of Hades, where the nightmare reverts to figurine form.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-onyx-dog", - "fields": { - "name": "Figurine of Wondrous Power (Onyx Dog)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Onyx Dog (Rare)_**. This onyx statuette of a dog can become a mastiff for up to 6 hours. The mastiff has an Intelligence of 8 and can speak Common. It also has darkvision out to a range of 60 feet and can see invisible creatures and objects within that range. Once it has been used, it can’t be used again until 7 days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-serpentine-owl", - "fields": { - "name": "Figurine of Wondrous Power (Serpentine Owl)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Serpentine Owl (Rare)_**. This serpentine statuette of an owl can become a giant owl for up to 8 hours. Once it has been used, it can’t be used again until 2 days have passed. The owl can telepathically communicate with you at any range if you and it are on the same plane of existence.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_figurine-of-wondrous-power-silver-raven", - "fields": { - "name": "Figurine of Wondrous Power (Silver Raven)", - "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Silver Raven (Uncommon)_**. This silver statuette of a raven can become a raven for up to 12 hours. Once it has been used, it can’t be used again until 2 days have passed. While in raven form, the figurine allows you to cast the animal messenger spell on it at will.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_fishing-tackle", - "fields": { - "name": "Fishing Tackle", - "desc": "This kit includes a wooden rod, silken line, corkwood bobbers, steel hooks, lead sinkers, velvet lures, and narrow netting.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flail", - "fields": { - "name": "Flail", - "desc": "A flail.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "srd_flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flail-1", - "fields": { - "name": "Flail (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_flail-2", - "fields": { - "name": "Flail (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_flail-3", - "fields": { - "name": "Flail (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_flame-tongue-greatsword", - "fields": { - "name": "Flame Tongue (Greatsword)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flame-tongue-longsword", - "fields": { - "name": "Flame Tongue (Longsword)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flame-tongue-rapier", - "fields": { - "name": "Flame Tongue (Rapier)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flame-tongue-shortsword", - "fields": { - "name": "Flame Tongue (Shortsword)", - "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flask-or-tankard", - "fields": { - "name": "Flask or tankard", - "desc": "For drinking. Capacity: 1 pint liquid.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flour", - "fields": { - "name": "Flour", - "desc": "1lb of flour", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_flute", - "fields": { - "name": "Flute", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_folding-boat", - "fields": { - "name": "Folding Boat", - "desc": "This object appears as a wooden box that measures 12 inches long, 6 inches wide, and 6 inches deep. It weighs 4 pounds and floats. It can be opened to store items inside. This item also has three command words, each requiring you to use an action to speak it.\r\n\r\nOne command word causes the box to unfold into a boat 10 feet long, 4 feet wide, and 2 feet deep. The boat has one pair of oars, an anchor, a mast, and a lateen sail. The boat can hold up to four Medium creatures comfortably.\r\n\r\nThe second command word causes the box to unfold into a ship 24 feet long, 8 feet wide, and 6 feet deep. The ship has a deck, rowing seats, five sets of oars, a steering oar, an anchor, a deck cabin, and a mast with a square sail. The ship can hold fifteen Medium creatures comfortably.\r\n\r\nWhen the box becomes a vessel, its weight becomes that of a normal vessel its size, and anything that was stored in the box remains in the boat.\r\n\r\nThe third command word causes the _folding boat_ to fold back into a box, provided that no creatures are aboard. Any objects in the vessel that can't fit inside the box remain outside the box as it folds. Any objects in the vessel that can fit inside the box do so.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_forgery-kit", - "fields": { - "name": "Forgery kit", - "desc": "This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. \\n\\nProficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_frost-brand-greatsword", - "fields": { - "name": "Frost Brand (Greatsword)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_frost-brand-longsword", - "fields": { - "name": "Frost Brand (Longsword)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_frost-brand-rapier", - "fields": { - "name": "Frost Brand (Rapier)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_frost-brand-shortsword", - "fields": { - "name": "Frost Brand (Shortsword)", - "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_galley", - "fields": { - "name": "Galley", - "desc": "A waterborne vehicle. Speed 4 mph", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_gauntlets-of-ogre-power", - "fields": { - "name": "Gauntlets of Ogre Power", - "desc": "Your Strength score is 19 while you wear these gauntlets. They have no effect on you if your Strength is already 19 or higher.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_gem-of-brightness", - "fields": { - "name": "Gem of Brightness", - "desc": "This prism has 50 charges. While you are holding it, you can use an action to speak one of three command words to cause one of the following effects:\r\n\r\n* The first command word causes the gem to shed bright light in a 30-foot radius and dim light for an additional 30 feet. This effect doesn't expend a charge. It lasts until you use a bonus action to repeat the command word or until you use another function of the gem.\r\n* The second command word expends 1 charge and causes the gem to fire a brilliant beam of light at one creature you can see within 60 feet of you. The creature must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\r\n* The third command word expends 5 charges and causes the gem to flare with blinding light in a 30* foot cone originating from it. Each creature in the cone must make a saving throw as if struck by the beam created with the second command word.\r\n\r\nWhen all of the gem's charges are expended, the gem becomes a nonmagical jewel worth 50 gp.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_gem-of-seeing", - "fields": { - "name": "Gem of Seeing", - "desc": "This gem has 3 charges. As an action, you can speak the gem's command word and expend 1 charge. For the next 10 minutes, you have truesight out to 120 feet when you peer through the gem.\r\n\r\nThe gem regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-battleaxe", - "fields": { - "name": "Giant Slayer (Battleaxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-greataxe", - "fields": { - "name": "Giant Slayer (Greataxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-greatsword", - "fields": { - "name": "Giant Slayer (Greatsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-handaxe", - "fields": { - "name": "Giant Slayer (Handaxe)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-longsword", - "fields": { - "name": "Giant Slayer (Longsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-rapier", - "fields": { - "name": "Giant Slayer (Rapier)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_giant-slayer-shortsword", - "fields": { - "name": "Giant Slayer (Shortsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_ginger", - "fields": { - "name": "Ginger", - "desc": "1lb of Ginger.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_glaive", - "fields": { - "name": "Glaive", - "desc": "A glaive.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": "srd_glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_glaive-1", - "fields": { - "name": "Glaive (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_glaive-2", - "fields": { - "name": "Glaive (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_glaive-3", - "fields": { - "name": "Glaive (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_glamoured-studded-leather", - "fields": { - "name": "Glamoured Studded Leather", - "desc": "While wearing this armor, you gain a +1 bonus to AC. You can also use a bonus action to speak the armor's command word and cause the armor to assume the appearance of a normal set of clothing or some other kind of armor. You decide what it looks like, including color, style, and accessories, but the armor retains its normal bulk and weight. The illusory appearance lasts until you use this property again or remove the armor.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_glassblowers-tools", - "fields": { - "name": "Glassblower's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_gloves-of-missile-snaring", - "fields": { - "name": "Gloves of Missile Snaring", - "desc": "These gloves seem to almost meld into your hands when you don them. When a ranged weapon attack hits you while you're wearing them, you can use your reaction to reduce the damage by 1d10 + your Dexterity modifier, provided that you have a free hand. If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in that hand.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_gloves-of-swimming-and-climbing", - "fields": { - "name": "Gloves of Swimming and Climbing", - "desc": "While wearing these gloves, climbing and swimming don't cost you extra movement, and you gain a +5 bonus to Strength (Athletics) checks made to climb or swim.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_goat", - "fields": { - "name": "Goat", - "desc": "One goat.", - "document": "srd", - "size": "medium", - "weight": "75.000", - "armor_class": 10, - "hit_points": 4, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_goggles-of-night", - "fields": { - "name": "Goggles of Night", - "desc": "While wearing these dark lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the goggles increases its range by 60 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_gold", - "fields": { - "name": "Gold", - "desc": "1lb of gold.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_gold-piece", - "fields": { - "name": "Gold Piece", - "desc": "With one gold piece, a character can buy a bedroll, 50 feet of good rope, or a goat. A skilled (but not exceptional) artisan can earn one gold piece a day. The gold piece is the standard unit of measure for wealth, even if the coin itself is not commonly used. When merchants discuss deals that involve goods or services worth hundreds or thousands of gold pieces, the transactions don't usually involve the exchange of individual coins. Rather, the gold piece is a standard measure of value, and the actual exchange is in gold bars, letters of credit, or valuable goods.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_grappling-hook", - "fields": { - "name": "Grappling hook", - "desc": "A grappling hook.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_greataxe", - "fields": { - "name": "Greataxe", - "desc": "A greataxe.", - "document": "srd", - "size": "tiny", - "weight": "7.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": "srd_greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_greataxe-1", - "fields": { - "name": "Greataxe (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greataxe-2", - "fields": { - "name": "Greataxe (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greataxe-3", - "fields": { - "name": "Greataxe (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatclub", - "fields": { - "name": "Greatclub", - "desc": "A greatclub.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": "srd_greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatclub-1", - "fields": { - "name": "Greatclub (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatclub-2", - "fields": { - "name": "Greatclub (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatclub-3", - "fields": { - "name": "Greatclub (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatsword", - "fields": { - "name": "Greatsword", - "desc": "A great sword.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatsword-1", - "fields": { - "name": "Greatsword (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatsword-2", - "fields": { - "name": "Greatsword (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_greatsword-3", - "fields": { - "name": "Greatsword (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_halberd", - "fields": { - "name": "Halberd", - "desc": "A halberd.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": "srd_halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_halberd-1", - "fields": { - "name": "Halberd (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_halberd-2", - "fields": { - "name": "Halberd (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_halberd-3", - "fields": { - "name": "Halberd (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_half-plate", - "fields": { - "name": "Half plate", - "desc": "Half plate consists of shaped metal plates that cover most of the wearer's body. It does not include leg protection beyond simple greaves that are attached with leather straps.", - "document": "srd", - "size": "tiny", - "weight": "40.000", - "armor_class": 0, - "hit_points": 0, - "cost": "750.00", - "weapon": null, - "armor": "srd_half-plate", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_hammer", - "fields": { - "name": "Hammer", - "desc": "A hammer.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_hammer-of-thunderbolts", - "fields": { - "name": "Hammer of Thunderbolts", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\n**_Giant's Bane (Requires Attunement)_**. You must be wearing a _belt of giant strength_ (any variety) and _gauntlets of ogre power_ to attune to this weapon. The attunement ends if you take off either of those items. While you are attuned to this weapon and holding it, your Strength score increases by 4 and can exceed 20, but not 30. When you roll a 20 on an attack roll made with this weapon against a giant, the giant must succeed on a DC 17 Constitution saving throw or die.\n\nThe hammer also has 5 charges. While attuned to it, you can expend 1 charge and make a ranged weapon attack with the hammer, hurling it as if it had the thrown property with a normal range of 20 feet and a long range of 60 feet. If the attack hits, the hammer unleashes a thunderclap audible out to 300 feet. The target and every creature within 30 feet of it must succeed on a DC 17 Constitution saving throw or be stunned until the end of your next turn. The hammer regains 1d4 + 1 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_hammer-sledge", - "fields": { - "name": "Hammer, sledge", - "desc": "A sledgehammer", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_handaxe", - "fields": { - "name": "Handaxe", - "desc": "A handaxe.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "srd_handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_handaxe-1", - "fields": { - "name": "Handaxe (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_handaxe-2", - "fields": { - "name": "Handaxe (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_handaxe-3", - "fields": { - "name": "Handaxe (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_handy-haversack", - "fields": { - "name": "Handy Haversack", - "desc": "This backpack has a central pouch and two side pouches, each of which is an extradimensional space. Each side pouch can hold up to 20 pounds of material, not exceeding a volume of 2 cubic feet. The large central pouch can hold up to 8 cubic feet or 80 pounds of material. The backpack always weighs 5 pounds, regardless of its contents.\r\n\r\nPlacing an object in the haversack follows the normal rules for interacting with objects. Retrieving an item from the haversack requires you to use an action. When you reach into the haversack for a specific item, the item is always magically on top.\r\n\r\nThe haversack has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the haversack ruptures and is destroyed. If the haversack is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If the haversack is turned inside out, its contents spill forth, unharmed, and the haversack must be put right before it can be used again. If a breathing creature is placed within the haversack, the creature can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing the haversack inside an extradimensional space created by a _bag of holding_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_hat-of-disguise", - "fields": { - "name": "Hat of Disguise", - "desc": "While wearing this hat, you can use an action to cast the _disguise self_ spell from it at will. The spell ends if the hat is removed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_headband-of-intellect", - "fields": { - "name": "Headband of Intellect", - "desc": "Your Intelligence score is 19 while you wear this headband. It has no effect on you if your Intelligence is already 19 or higher.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_healers-kit", - "fields": { - "name": "Healer's Kit", - "desc": "This kit is a leather pouch containing bandages, salves, and splints. The kit has ten uses. As an action, you can expend one use of the kit to stabilize a creature that has 0 hit points, without needing to make a Wisdom (Medicine) check.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_helm-of-brilliance", - "fields": { - "name": "Helm of Brilliance", - "desc": "This dazzling helm is set with 1d10 diamonds, 2d10 rubies, 3d10 fire opals, and 4d10 opals. Any gem pried from the helm crumbles to dust. When all the gems are removed or destroyed, the helm loses its magic.\r\n\r\nYou gain the following benefits while wearing it:\r\n\r\n* You can use an action to cast one of the following spells (save DC 18), using one of the helm's gems of the specified type as a component: _daylight_ (opal), _fireball_ (fire opal), _prismatic spray_ (diamond), or _wall of fire_ (ruby). The gem is destroyed when the spell is cast and disappears from the helm.\r\n* As long as it has at least one diamond, the helm emits dim light in a 30-foot radius when at least one undead is within that area. Any undead that starts its turn in that area takes 1d6 radiant damage.\r\n* As long as the helm has at least one ruby, you have resistance to fire damage.\r\n* As long as the helm has at least one fire opal, you can use an action and speak a command word to cause one weapon you are holding to burst into flames. The flames emit bright light in a 10-foot radius and dim light for an additional 10 feet. The flames are harmless to you and the weapon. When you hit with an attack using the blazing weapon, the target takes an extra 1d6 fire damage. The flames last until you use a bonus action to speak the command word again or until you drop or stow the weapon.\r\n\r\nRoll a d20 if you are wearing the helm and take fire damage as a result of failing a saving throw against a spell. On a roll of 1, the helm emits beams of light from its remaining gems. Each creature within 60 feet of the helm other than you must succeed on a DC 17 Dexterity saving throw or be struck by a beam, taking radiant damage equal to the number of gems in the helm. The helm and its gems are then destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_helm-of-comprehending-languages", - "fields": { - "name": "Helm of Comprehending Languages", - "desc": "While wearing this helm, you can use an action to cast the _comprehend languages_ spell from it at will.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_helm-of-telepathy", - "fields": { - "name": "Helm of Telepathy", - "desc": "While wearing this helm, you can use an action to cast the _detect thoughts_ spell (save DC 13) from it. As long as you maintain concentration on the spell, you can use a bonus action to send a telepathic message to a creature you are focused on. It can reply-using a bonus action to do so-while your focus on it continues.\r\n\r\nWhile focusing on a creature with _detect thoughts_, you can use an action to cast the _suggestion_ spell (save DC 13) from the helm on that creature. Once used, the _suggestion_ property can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_helm-of-teleportation", - "fields": { - "name": "Helm of Teleportation", - "desc": "This helm has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _teleport_ spell from it. The helm regains 1d3\r\n\r\nexpended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_herbalism-kit", - "fields": { - "name": "Herbalism Kit", - "desc": "This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create\r\nantitoxin and potions of healing.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_hide-armor", - "fields": { - "name": "Hide Armor", - "desc": "This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.", - "document": "srd", - "size": "tiny", - "weight": "12.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": "srd_hide", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_holy-avenger-greatsword", - "fields": { - "name": "Holy Avenger (Greatsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_holy-avenger-longsword", - "fields": { - "name": "Holy Avenger (Longsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_holy-avenger-rapier", - "fields": { - "name": "Holy Avenger (Rapier)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_holy-avenger-shortsword", - "fields": { - "name": "Holy Avenger (Shortsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_holy-water-flask", - "fields": { - "name": "Holy Water (flask)", - "desc": "As an action, you can splash the contents of this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact.In either case, make a ranged attack against a target creature, treating the holy water as an improvised weapon. If the target is a fiend or undead, it takes 2d6 radiant damage.\\n\\nA cleric or paladin may create holy water by performing a special ritual. The ritual takes 1 hour to perform, uses 25 gp worth of powdered silver, and requires the caster to expend a 1st-­‐‑level spell slot.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_horn", - "fields": { - "name": "Horn", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "3.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_horn-of-blasting", - "fields": { - "name": "Horn of Blasting", - "desc": "You can use an action to speak the horn's command word and then blow the horn, which emits a thunderous blast in a 30-foot cone that is audible 600 feet away. Each creature in the cone must make a DC 15 Constitution saving throw. On a failed save, a creature takes 5d6 thunder damage and is deafened for 1 minute. On a successful save, a creature takes half as much damage and isn't deafened. Creatures and objects made of glass or crystal have disadvantage on the saving throw and take 10d6 thunder damage instead of 5d6.\r\n\r\nEach use of the horn's magic has a 20 percent chance of causing the horn to explode. The explosion deals 10d6 fire damage to the blower and destroys the horn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_horn-of-valhalla-brass", - "fields": { - "name": "Horn of Valhalla (Brass)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_horn-of-valhalla-bronze", - "fields": { - "name": "Horn of Valhalla (Bronze)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_horn-of-valhalla-iron", - "fields": { - "name": "Horn of Valhalla (Iron)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_horn-of-valhalla-silver", - "fields": { - "name": "Horn of Valhalla (silver)", - "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_horseshoes-of-a-zephyr", - "fields": { - "name": "Horseshoes of a Zephyr", - "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they allow the creature to move normally while floating 4 inches above the ground. This effect means the creature can cross or stand above nonsolid or unstable surfaces, such as water or lava. The creature leaves no tracks and ignores difficult terrain. In addition, the creature can move at normal speed for up to 12 hours a day without suffering exhaustion from a forced march.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_horseshoes-of-speed", - "fields": { - "name": "Horseshoes of Speed", - "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they increase the creature's walking speed by 30 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_hourglass", - "fields": { - "name": "Hourglass", - "desc": "An hourglass.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_hunting-trap", - "fields": { - "name": "Hunting Trap", - "desc": "When you use your action to set it, this trap forms a saw-­‐‑toothed steel ring that snaps shut when a creature steps on a pressure plate in the center. The trap is affixed by a heavy chain to an immobile object, such as a tree or a spike driven into the ground. A creature that steps on the plate must succeed on a DC 13 Dexterity saving throw or take 1d4 piercing damage and stop moving. Thereafter, until the creature breaks free of the trap, its movement is limited by the length of the chain (typically 3 feet long). A creature can use its action to make a DC 13 Strength check, freeing itself or another creature within its reach on a success. Each failed check deals 1 piercing damage to the trapped creature.", - "document": "srd", - "size": "tiny", - "weight": "25.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_immovable-rod", - "fields": { - "name": "Immovable Rod", - "desc": "This flat iron rod has a button on one end. You can use an action to press the button, which causes the rod to become magically fixed in place. Until you or another creature uses an action to push the button again, the rod doesn't move, even if it is defying gravity. The rod can hold up to 8,000 pounds of weight. More weight causes the rod to deactivate and fall. A creature can use an action to make a DC 30 Strength check, moving the fixed rod up to 10 feet on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ink-1-ounce-bottle", - "fields": { - "name": "Ink (1 ounce bottle)", - "desc": "A bottle of ink.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_ink-pen", - "fields": { - "name": "Ink pen", - "desc": "A pen for writing with ink.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_instant-fortress", - "fields": { - "name": "Instant Fortress", - "desc": "You can use an action to place this 1-inch metal cube on the ground and speak its command word. The cube rapidly grows into a fortress that remains until you use an action to speak the command word that dismisses it, which works only if the fortress is empty.\r\n\r\nThe fortress is a square tower, 20 feet on a side and 30 feet high, with arrow slits on all sides and a battlement atop it. Its interior is divided into two floors, with a ladder running along one wall to connect them. The ladder ends at a trapdoor leading to the roof. When activated, the tower has a small door on the side facing you. The door opens only at your command, which you can speak as a bonus action. It is immune to the _knock_ spell and similar magic, such as that of a _chime of opening_.\r\n\r\nEach creature in the area where the fortress appears must make a DC 15 Dexterity saving throw, taking 10d10 bludgeoning damage on a failed save, or half as much damage on a successful one. In either case, the creature is pushed to an unoccupied space outside but next to the fortress. Objects in the area that aren't being worn or carried take this damage and are pushed automatically.\r\n\r\nThe tower is made of adamantine, and its magic prevents it from being tipped over. The roof, the door, and the walls each have 100 hit points,\r\n\r\nimmunity to damage from nonmagical weapons excluding siege weapons, and resistance to all other damage. Only a _wish_ spell can repair the fortress (this use of the spell counts as replicating a spell of 8th level or lower). Each casting of _wish_ causes the roof, the door, or one wall to regain 50 hit points.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-absorption", - "fields": { - "name": "Ioun Stone (Absorption)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Fortitude (Very Rare)_**. Your Constitution score increases by 2, to a maximum of 20, while this pink rhomboid orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-agility", - "fields": { - "name": "Ioun Stone (Agility)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Agility (Very Rare)._** Your Dexterity score increases by 2, to a maximum of 20, while this deep red sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-awareness", - "fields": { - "name": "Ioun Stone (Awareness)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Awareness (Rare)._** You can't be surprised while this dark blue rhomboid orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-greater-absorption", - "fields": { - "name": "Ioun Stone (Greater Absorption)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Greater Absorption (Legendary)._** While this marbled lavender and green ellipsoid orbits your head, you can use your reaction to cancel a spell of 8th level or lower cast by a creature you can see and targeting only you.\\n\\nOnce the stone has canceled 50 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-insight", - "fields": { - "name": "Ioun Stone (Insight)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Insight (Very Rare)._** Your Wisdom score increases by 2, to a maximum of 20, while this incandescent blue sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-intellect", - "fields": { - "name": "Ioun Stone (Intellect)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Intellect (Very Rare)._** Your Intelligence score increases by 2, to a maximum of 20, while this marbled scarlet and blue sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-leadership", - "fields": { - "name": "Ioun Stone (Leadership)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Leadership (Very Rare)._** Your Charisma score increases by 2, to a maximum of 20, while this marbled pink and green sphere orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-mastery", - "fields": { - "name": "Ioun Stone (Mastery)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Mastery (Legendary)._** Your proficiency bonus increases by 1 while this pale green prism orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-protection", - "fields": { - "name": "Ioun Stone (Protection)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Protection (Rare)_**. You gain a +1 bonus to AC while this dusty rose prism orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-regeneration", - "fields": { - "name": "Ioun Stone (Regeneration)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Regeneration (Legendary)_**. You regain 15 hit points at the end of each hour this pearly white spindle orbits your head, provided that you have at least 1 hit point.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-reserve", - "fields": { - "name": "Ioun Stone (Reserve)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Reserve (Rare)._** This vibrant purple prism stores spells cast into it, holding them until you use them. The stone can store up to 3 levels worth of spells at a time. When found, it contains 1d4 - 1 levels of stored spells chosen by the GM.\\n\\nAny creature can cast a spell of 1st through 3rd level into the stone by touching it as the spell is cast. The spell has no effect, other than to be stored in the stone. If the stone can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\\n\\nWhile this stone orbits your head, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the stone is no longer stored in it, freeing up space.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-strength", - "fields": { - "name": "Ioun Stone (Strength)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Strength (Very Rare)._** Your Strength score increases by 2, to a maximum of 20, while this pale blue rhomboid orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ioun-stone-sustenance", - "fields": { - "name": "Ioun Stone (Sustenance)", - "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Sustenance (Rare)._** You don't need to eat or drink while this clear spindle orbits your head.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 24, - "hit_points": 10, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_iron", - "fields": { - "name": "Iron", - "desc": "1lb of iron.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_iron-bands-of-binding", - "fields": { - "name": "Iron Bands of Binding", - "desc": "This rusty iron sphere measures 3 inches in diameter and weighs 1 pound. You can use an action to speak the command word and throw the sphere at a Huge or smaller creature you can see within 60 feet of you. As the sphere moves through the air, it opens into a tangle of metal bands.\r\n\r\nMake a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the target is restrained until you take a bonus action to speak the command word again to release it. Doing so, or missing with the attack, causes the bands to contract and become a sphere once more.\r\n\r\nA creature, including the one restrained, can use an action to make a DC 20 Strength check to break the iron bands. On a success, the item is destroyed, and the restrained creature is freed. If the check fails, any further attempts made by that creature automatically fail until 24 hours have elapsed.\r\n\r\nOnce the bands are used, they can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_iron-flask", - "fields": { - "name": "Iron Flask", - "desc": "This iron bottle has a brass stopper. You can use an action to speak the flask's command word, targeting a creature that you can see within 60 feet of you. If the target is native to a plane of existence other than the one you're on, the target must succeed on a DC 17 Wisdom saving throw or be trapped in the flask. If the target has been trapped by the flask before, it has advantage on the saving throw. Once trapped, a creature remains in the flask until released. The flask can hold only one creature at a time. A creature trapped in the flask doesn't need to breathe, eat, or drink and doesn't age.\r\n\r\nYou can use an action to remove the flask's stopper and release the creature the flask contains. The creature is friendly to you and your companions for 1 hour and obeys your commands for that duration. If you give no commands or give it a command that is likely to result in its death, it defends itself but otherwise takes no actions. At the end of the duration, the creature acts in accordance with its normal disposition and alignment.\r\n\r\nAn _identify_ spell reveals that a creature is inside the flask, but the only way to determine the type of creature is to open the flask. A newly discovered bottle might already contain a creature chosen by the GM or determined randomly.\r\n\r\n| d100 | Contents |\r\n|-------|-------------------|\r\n| 1-50 | Empty |\r\n| 51-54 | Demon (type 1) |\r\n| 55-58 | Demon (type 2) |\r\n| 59-62 | Demon (type 3) |\r\n| 63-64 | Demon (type 4) |\r\n| 65 | Demon (type 5) |\r\n| 66 | Demon (type 6) |\r\n| 67 | Deva |\r\n| 68-69 | Devil (greater) |\r\n| 70-73 | Devil (lesser) |\r\n| 74-75 | Djinni |\r\n| 76-77 | Efreeti |\r\n| 78-83 | Elemental (any) |\r\n| 84-86 | Invisible stalker |\r\n| 87-90 | Night hag |\r\n| 91 | Planetar |\r\n| 92-95 | Salamander |\r\n| 96 | Solar |\r\n| 97-99 | Succubus/incubus |\r\n| 100 | Xorn |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_javelin", - "fields": { - "name": "Javelin", - "desc": "A javelin", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": "srd_javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_javelin-1", - "fields": { - "name": "Javelin (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_javelin-2", - "fields": { - "name": "Javelin (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_javelin-3", - "fields": { - "name": "Javelin (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_javelin-of-lightning", - "fields": { - "name": "Javelin of Lightning", - "desc": "This javelin is a magic weapon. When you hurl it and speak its command word, it transforms into a bolt of lightning, forming a line 5 feet wide that extends out from you to a target within 120 feet. Each creature in the line excluding you and the target must make a DC 13 Dexterity saving throw, taking 4d6 lightning damage on a failed save, and half as much damage on a successful one. The lightning bolt turns back into a javelin when it reaches the target. Make a ranged weapon attack against the target. On a hit, the target takes damage from the javelin plus 4d6 lightning damage.\n\nThe javelin's property can't be used again until the next dawn. In the meantime, the javelin can still be used as a magic weapon.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_jewelers-tools", - "fields": { - "name": "Jeweler's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_jug-or-pitcher", - "fields": { - "name": "Jug or pitcher", - "desc": "For drinking a lot. Capacity: 1 gallon liquid.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_keelboat", - "fields": { - "name": "Keelboat", - "desc": "Waterborne vehicle. Speed is 1mph.", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "3000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_ladder-10-foot", - "fields": { - "name": "Ladder (10-foot)", - "desc": "A 10 foot ladder.", - "document": "srd", - "size": "tiny", - "weight": "25.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lamp", - "fields": { - "name": "Lamp", - "desc": "A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lamp-oil-flask", - "fields": { - "name": "Lamp oil (flask)", - "desc": "Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon. On a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-­foot‑square area, provided that the surface is level. If lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lance", - "fields": { - "name": "Lance", - "desc": "A lance.\r\n\r\nYou have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "srd_lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lance-1", - "fields": { - "name": "Lance (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_lance-2", - "fields": { - "name": "Lance (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_lance-3", - "fields": { - "name": "Lance (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_lantern-bullseye", - "fields": { - "name": "Lantern, Bullseye", - "desc": "A bullseye lantern casts bright light in a 60-­‐‑foot cone and dim light for an additional 60 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lantern-hooded", - "fields": { - "name": "Lantern, Hooded", - "desc": "A hooded lantern casts bright light in a 30-­‐‑foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil. As an action, you can lower the hood, reducing the light to dim light in a 5-­‐‑foot radius.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lantern-of-revealing", - "fields": { - "name": "Lantern of Revealing", - "desc": "While lit, this hooded lantern burns for 6 hours on 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the lantern's bright light. You can use an action to lower the hood, reducing the light to dim light in a 5* foot radius.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_leather-armor", - "fields": { - "name": "Leather Armor", - "desc": "The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": "srd_leather", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_leatherworkers-tools", - "fields": { - "name": "Leatherworker's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_light-hammer", - "fields": { - "name": "Light hammer", - "desc": "A light hammer.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": "srd_light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_light-hammer-1", - "fields": { - "name": "Light-Hammer (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_light-hammer-2", - "fields": { - "name": "Light-Hammer (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_light-hammer-3", - "fields": { - "name": "Light-Hammer (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_linen", - "fields": { - "name": "Linen", - "desc": "1 sq. yd. of linen.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lock", - "fields": { - "name": "Lock", - "desc": "A key is provided with the lock. Without the key, a creature proficient with thieves’ tools can pick this lock with a successful DC 15 Dexterity check. Your GM may decide that better locks are available for higher prices.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_longbow", - "fields": { - "name": "Longbow", - "desc": "A longbow.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": "srd_longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_longbow-1", - "fields": { - "name": "Longbow (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_longbow-2", - "fields": { - "name": "Longbow (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_longbow-3", - "fields": { - "name": "Longbow (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_longship", - "fields": { - "name": "Longship", - "desc": "Waterborne vehicle. Speed 3mph.", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_longsword", - "fields": { - "name": "Longsword", - "desc": "A longsword", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_longsword-1", - "fields": { - "name": "Longsword (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_longsword-2", - "fields": { - "name": "Longsword (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_longsword-3", - "fields": { - "name": "Longsword (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_luck-blade-greatsword", - "fields": { - "name": "Luck Blade (Greatsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_luck-blade-longsword", - "fields": { - "name": "Luck Blade (Longsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_luck-blade-rapier", - "fields": { - "name": "Luck Blade (Rapier)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_luck-blade-shortsword", - "fields": { - "name": "Luck Blade (Shortsword)", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lute", - "fields": { - "name": "Lute", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "35.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_lyre", - "fields": { - "name": "Lyre", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace", - "fields": { - "name": "Mace", - "desc": "A mace.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "srd_mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace-1", - "fields": { - "name": "Mace (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace-2", - "fields": { - "name": "Mace (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace-3", - "fields": { - "name": "Mace (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace-of-disruption", - "fields": { - "name": "Mace of Disruption", - "desc": "When you hit a fiend or an undead with this magic weapon, that creature takes an extra 2d6 radiant damage. If the target has 25 hit points or fewer after taking this damage, it must succeed on a DC 15 Wisdom saving throw or be destroyed. On a successful save, the creature becomes frightened of you until the end of your next turn.\n\nWhile you hold this weapon, it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace-of-smiting", - "fields": { - "name": "Mace of Smiting", - "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the mace to attack a construct.\n\nWhen you roll a 20 on an attack roll made with this weapon, the target takes an extra 2d6 bludgeoning damage, or 4d6 bludgeoning damage if it's a construct. If a construct has 25 hit points or fewer after taking this damage, it is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mace-of-terror", - "fields": { - "name": "Mace of Terror", - "desc": "This magic weapon has 3 charges. While holding it, you can use an action and expend 1 charge to release a wave of terror. Each creature of your choice in a 30-foot radius extending from you must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.\n\nThe mace regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_mace", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_magnifying-glass", - "fields": { - "name": "Magnifying Glass", - "desc": "This lens allows a closer look at small objects. It is also useful as a substitute for flint and steel when starting fires. Lighting a fire with a magnifying glass requires light as bright as sunlight to focus, tinder to ignite, and about 5 minutes for the fire to ignite. A magnifying glass grants advantage on any ability check made to appraise or inspect an item that is small or highly detailed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "100.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_malice", - "fields": { - "name": "Malice", - "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 1 hour. The poisoned creature is blinded.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "250.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_manacles", - "fields": { - "name": "Manacles", - "desc": "These metal restraints can bind a Small or Medium creature. Escaping the manacles requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of manacles comes with one key. Without the key, a creature proficient with thieves’ tools can pick the manacles’ lock with a successful DC 15 Dexterity check. Manacles have 15 hit points.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 15, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mantle-of-spell-resistance", - "fields": { - "name": "Mantle of Spell Resistance", - "desc": "You have advantage on saving throws against spells while you wear this cloak.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_manual-of-bodily-health", - "fields": { - "name": "Manual of Bodily Health", - "desc": "This book contains health and diet tips, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Constitution score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_manual-of-gainful-exercise", - "fields": { - "name": "Manual of Gainful Exercise", - "desc": "This book describes fitness exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Strength score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_manual-of-golems", - "fields": { - "name": "Manual of Golems", - "desc": "This tome contains information and incantations necessary to make a particular type of golem. The GM chooses the type or determines it randomly. To decipher and use the manual, you must be a spellcaster with at least two 5th-level spell slots. A creature that can't use a _manual of golems_ and attempts to read it takes 6d6 psychic damage.\r\n\r\n| d20 | Golem | Time | Cost |\r\n|-------|-------|----------|------------|\r\n| 1-5 | Clay | 30 days | 65,000 gp |\r\n| 6-17 | Flesh | 60 days | 50,000 gp |\r\n| 18 | Iron | 120 days | 100,000 gp |\r\n| 19-20 | Stone | 90 days | 80,000 gp |\r\n\r\nTo create a golem, you must spend the time shown on the table, working without interruption with the manual at hand and resting no more than 8 hours per day. You must also pay the specified cost to purchase supplies.\r\n\r\nOnce you finish creating the golem, the book is consumed in eldritch flames. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_manual-of-quickness-of-action", - "fields": { - "name": "Manual of Quickness of Action", - "desc": "This book contains coordination and balance exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Dexterity score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_marvelous-pigments", - "fields": { - "name": "Marvelous Pigments", - "desc": "Typically found in 1d4 pots inside a fine wooden box with a brush (weighing 1 pound in total), these pigments allow you to create three-dimensional objects by painting them in two dimensions. The paint flows from the brush to form the desired object as you concentrate on its image.\r\n\r\nEach pot of paint is sufficient to cover 1,000 square feet of a surface, which lets you create inanimate objects or terrain features-such as a door, a pit, flowers, trees, cells, rooms, or weapons- that are up to 10,000 cubic feet. It takes 10 minutes to cover 100 square feet.\r\n\r\nWhen you complete the painting, the object or terrain feature depicted becomes a real, nonmagical object. Thus, painting a door on a wall creates an actual door that can be opened to whatever is beyond. Painting a pit on a floor creates a real pit, and its depth counts against the total area of objects you create.\r\n\r\nNothing created by the pigments can have a value greater than 25 gp. If you paint an object of greater value (such as a diamond or a pile of gold), the object looks authentic, but close inspection reveals it is made from paste, bone, or some other worthless material.\r\n\r\nIf you paint a form of energy such as fire or lightning, the energy appears but dissipates as soon as you complete the painting, doing no harm to anything.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_masons-tools", - "fields": { - "name": "Mason's Tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_maul", - "fields": { - "name": "Maul", - "desc": "A maul.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "srd_maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_maul-1", - "fields": { - "name": "Maul (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_maul-2", - "fields": { - "name": "Maul (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_maul-3", - "fields": { - "name": "Maul (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_medallion-of-thoughts", - "fields": { - "name": "Medallion of Thoughts", - "desc": "The medallion has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _detect thoughts_ spell (save DC 13) from it. The medallion regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mess-kit", - "fields": { - "name": "Mess Kit", - "desc": "This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_midnight-tears", - "fields": { - "name": "Midnight tears", - "desc": "A creature that ingests this poison suffers no effect until the stroke of midnight. If the poison has not been neutralized before then, the creature must succeed on a DC 17 Constitution saving throw, taking 31 (9d6) poison damage on a failed save, or half as much damage on a successful one.\\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1500.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mirror-of-life-trapping", - "fields": { - "name": "Mirror of Life Trapping", - "desc": "When this 4-foot-tall mirror is viewed indirectly, its surface shows faint images of creatures. The mirror weighs 50 pounds, and it has AC 11, 10 hit points, and vulnerability to bludgeoning damage. It shatters and is destroyed when reduced to 0 hit points.\r\n\r\nIf the mirror is hanging on a vertical surface and you are within 5 feet of it, you can use an action to speak its command word and activate it. It remains activated until you use an action to speak the command word again.\r\n\r\nAny creature other than you that sees its reflection in the activated mirror while within 30 feet of it must succeed on a DC 15 Charisma saving throw or be trapped, along with anything it is wearing or carrying, in one of the mirror's twelve extradimensional cells. This saving throw is made with advantage if the creature knows the mirror's nature, and constructs succeed on the saving throw automatically.\r\n\r\nAn extradimensional cell is an infinite expanse filled with thick fog that reduces visibility to 10 feet. Creatures trapped in the mirror's cells don't age, and they don't need to eat, drink, or sleep. A creature trapped within a cell can escape using magic that permits planar travel. Otherwise, the creature is confined to the cell until freed.\r\n\r\nIf the mirror traps a creature but its twelve extradimensional cells are already occupied, the mirror frees one trapped creature at random to accommodate the new prisoner. A freed creature appears in an unoccupied space within sight of the mirror but facing away from it. If the mirror is shattered, all creatures it contains are freed and appear in unoccupied spaces near it.\r\n\r\nWhile within 5 feet of the mirror, you can use an action to speak the name of one creature trapped in it or call out a particular cell by number. The creature named or contained in the named cell appears as an image on the mirror's surface. You and the creature can then communicate normally.\r\n\r\nIn a similar way, you can use an action to speak a second command word and free one creature trapped in the mirror. The freed creature appears, along with its possessions, in the unoccupied space nearest to the mirror and facing away from it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mirror-steel", - "fields": { - "name": "Mirror, steel", - "desc": "A mirror.", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-breastplate", - "fields": { - "name": "Mithral Armor (Breastplate)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_breastplate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-chain-mail", - "fields": { - "name": "Mithral Armor (Chain-Mail)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_chain-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-chain-shirt", - "fields": { - "name": "Mithral Armor (Chain-Shirt)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_chain-shirt", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-half-plate", - "fields": { - "name": "Mithral Armor (Half-Plate)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_half-plate", - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-hide", - "fields": { - "name": "Mithral Armor (Hide)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_hide", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-plate", - "fields": { - "name": "Mithral Armor (Plate)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_plate", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-ring-mail", - "fields": { - "name": "Mithral Armor (Ring-Mail)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-scale-mail", - "fields": { - "name": "Mithral Armor (Scale-Mail)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_mithral-armor-splint", - "fields": { - "name": "Mithral Armor (Splint)", - "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_splint", - "category": "armor", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_morningstar", - "fields": { - "name": "Morningstar", - "desc": "A morningstar", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": "srd_morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_morningstar-1", - "fields": { - "name": "Morningstar (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_morningstar-2", - "fields": { - "name": "Morningstar (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_morningstar-3", - "fields": { - "name": "Morningstar (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_navigators-tools", - "fields": { - "name": "Navigator's tools", - "desc": "This set of instruments is used for navigation at sea. Proficiency with navigator's tools lets you chart a ship's course and follow navigation charts. In addition, these tools allow you to add your proficiency bonus to any ability check you make to avoid getting lost at sea.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_necklace-of-adaptation", - "fields": { - "name": "Necklace of Adaptation", - "desc": "While wearing this necklace, you can breathe normally in any environment, and you have advantage on saving throws made against harmful gases and vapors (such as _cloudkill_ and _stinking cloud_ effects, inhaled poisons, and the breath weapons of some dragons).", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_necklace-of-fireballs", - "fields": { - "name": "Necklace of Fireballs", - "desc": "This necklace has 1d6 + 3 beads hanging from it. You can use an action to detach a bead and throw it up to 60 feet away. When it reaches the end of its trajectory, the bead detonates as a 3rd-level _fireball_ spell (save DC 15).\r\n\r\nYou can hurl multiple beads, or even the whole necklace, as one action. When you do so, increase the level of the _fireball_ by 1 for each bead beyond the first.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_necklace-of-prayer-beads", - "fields": { - "name": "Necklace of Prayer Beads", - "desc": "This necklace has 1d4 + 2 magic beads made from aquamarine, black pearl, or topaz. It also has many nonmagical beads made from stones such as amber, bloodstone, citrine, coral, jade, pearl, or quartz. If a magic bead is removed from the necklace, that bead loses its magic.\r\n\r\nSix types of magic beads exist. The GM decides the type of each bead on the necklace or determines it randomly. A necklace can have more than one bead of the same type. To use one, you must be wearing the necklace. Each bead contains a spell that you can cast from it as a bonus action (using your spell save DC if a save is necessary). Once a magic bead's spell is cast, that bead can't be used again until the next dawn.\r\n\r\n| d20 | Bead of... | Spell |\r\n|-------|--------------|-----------------------------------------------|\r\n| 1-6 | Blessing | Bless |\r\n| 7-12 | Curing | Cure wounds (2nd level) or lesser restoration |\r\n| 13-16 | Favor | Greater restoration |\r\n| 17-18 | Smiting | Branding smite |\r\n| 19 | Summons | Planar ally |\r\n| 20 | Wind walking | Wind walk |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_net", - "fields": { - "name": "Net", - "desc": "A net.\r\n\r\nA Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net.\r\n\r\nWhen you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": "srd_net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_net-1", - "fields": { - "name": "Net (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_net-2", - "fields": { - "name": "Net (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_net-3", - "fields": { - "name": "Net (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_nine-lives-stealer-greatsword", - "fields": { - "name": "Nine Lives Stealer (Greatsword)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_nine-lives-stealer-longsword", - "fields": { - "name": "Nine Lives Stealer (Longsword)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_nine-lives-stealer-rapier", - "fields": { - "name": "Nine Lives Stealer (Rapier)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_nine-lives-stealer-shortsword", - "fields": { - "name": "Nine Lives Stealer (Shortsword)", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_oathbow", - "fields": { - "name": "Oathbow", - "desc": "When you nock an arrow on this bow, it whispers in Elvish, \"Swift defeat to my enemies.\" When you use this weapon to make a ranged attack, you can, as a command phrase, say, \"Swift death to you who have wronged me.\" The target of your attack becomes your sworn enemy until it dies or until dawn seven days later. You can have only one such sworn enemy at a time. When your sworn enemy dies, you can choose a new one after the next dawn.\n\nWhen you make a ranged attack roll with this weapon against your sworn enemy, you have advantage on the roll. In addition, your target gains no benefit from cover, other than total cover, and you suffer no disadvantage due to long range. If the attack hits, your sworn enemy takes an extra 3d6 piercing damage.\n\nWhile your sworn enemy lives, you have disadvantage on attack rolls with all other weapons.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longbow", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_oil-of-etherealness", - "fields": { - "name": "Oil of Etherealness", - "desc": "Beads of this cloudy gray oil form on the outside of its container and quickly evaporate. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of the _etherealness_ spell for 1 hour.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_oil-of-sharpness", - "fields": { - "name": "Oil of Sharpness", - "desc": "This clear, gelatinous oil sparkles with tiny, ultrathin silver shards. The oil can coat one slashing or piercing weapon or up to 5 pieces of slashing or piercing ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical and has a +3 bonus to attack and damage rolls.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_oil-of-slipperiness", - "fields": { - "name": "Oil of Slipperiness", - "desc": "This sticky black unguent is thick and heavy in the container, but it flows quickly when poured. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of a _freedom of movement_ spell for 8 hours.\n\nAlternatively, the oil can be poured on the ground as an action, where it covers a 10-foot square, duplicating the effect of the _grease_ spell in that area for 8 hours.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_oil-of-taggit", - "fields": { - "name": "Oil of taggit", - "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or become poisoned for 24 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage.\\n\\n **_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "400.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_orb", - "fields": { - "name": "Orb", - "desc": "Can be used as an Arcane Focus.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_orb-of-dragonkind", - "fields": { - "name": "Orb of Dragonkind", - "desc": "Ages past, elves and humans waged a terrible war against evil dragons. When the world seemed doomed, powerful wizards came together and worked their greatest magic, forging five _Orbs of Dragonkind_ (or _Dragon Orbs_) to help them defeat the dragons. One orb was taken to each of the five wizard towers, and there they were used to speed the war toward a victorious end. The wizards used the orbs to lure dragons to them, then destroyed the dragons with powerful magic.\\n\\nAs the wizard towers fell in later ages, the orbs were destroyed or faded into legend, and only three are thought to survive. Their magic has been warped and twisted over the centuries, so although their primary purpose of calling dragons still functions, they also allow some measure of control over dragons.\\n\\nEach orb contains the essence of an evil dragon, a presence that resents any attempt to coax magic from it. Those lacking in force of personality might find themselves enslaved to an orb.\\n\\nAn orb is an etched crystal globe about 10 inches in diameter. When used, it grows to about 20 inches in diameter, and mist swirls inside it.\\n\\nWhile attuned to an orb, you can use an action to peer into the orb's depths and speak its command word. You must then make a DC 15 Charisma check. On a successful check, you control the orb for as long as you remain attuned to it. On a failed check, you become charmed by the orb for as long as you remain attuned to it.\\n\\nWhile you are charmed by the orb, you can't voluntarily end your attunement to it, and the orb casts _suggestion_ on you at will (save DC 18), urging you to work toward the evil ends it desires. The dragon essence within the orb might want many things: the annihilation of a particular people, freedom from the orb, to spread suffering in the world, to advance the worship of Tiamat, or something else the GM decides.\\n\\n**_Random Properties_**. An _Orb of Dragonkind_ has the following random properties:\\n\\n* 2 minor beneficial properties\\n* 1 minor detrimental property\\n* 1 major detrimental property\\n\\n**_Spells_**. The orb has 7 charges and regains 1d4 + 3 expended charges daily at dawn. If you control the orb, you can use an action and expend 1 or more charges to cast one of the following spells (save DC 18) from it: _cure wounds_ (5th-level version, 3 charges), _daylight_ (1 charge), _death ward_ (2 charges), or _scrying_ (3 charges).\\n\\nYou can also use an action to cast the _detect magic_ spell from the orb without using any charges.\\n\\n**_Call Dragons_**. While you control the orb, you can use an action to cause the artifact to issue a telepathic call that extends in all directions for 40 miles. Evil dragons in range feel compelled to come to the orb as soon as possible by the most direct route. Dragon deities such as Tiamat are unaffected by this call. Dragons drawn to the orb might be hostile toward you for compelling them against their will. Once you have used this property, it can't be used again for 1 hour.\\n\\n**_Destroying an Orb_**. An _Orb of Dragonkind_ appears fragile but is impervious to most damage, including the attacks and breath weapons of dragons. A _disintegrate_ spell or one good hit from a +3 magic weapon is sufficient to destroy an orb, however.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "artifact" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ox", - "fields": { - "name": "Ox", - "desc": "One ox.", - "document": "srd", - "size": "large", - "weight": "1500.000", - "armor_class": 10, - "hit_points": 15, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_padded-armor", - "fields": { - "name": "Padded Armor", - "desc": "Padded armor consists of quilted layers of cloth and batting.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": "srd_padded", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_painters-supplies", - "fields": { - "name": "Painter's Supplies", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pale-tincture", - "fields": { - "name": "Pale tincture", - "desc": "A creature subjected to this poison must succeed on a DC 16 Constitution saving throw or take 3 (1d6) poison damage and become poisoned. The poisoned creature must repeat the saving throw every 24 hours, taking 3 (1d6) poison damage on a failed save. Until this poison ends, the damage the poison deals can't be healed by any means. After seven successful saving throws, the effect ends and the creature can heal normally. \\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "250.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pan-flute", - "fields": { - "name": "Pan flute", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "12.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_paper-one-sheet", - "fields": { - "name": "Paper (one sheet)", - "desc": "A sheet of paper", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_parchment-one-sheet", - "fields": { - "name": "Parchment (one sheet)", - "desc": "A sheet of parchment", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pearl-of-power", - "fields": { - "name": "Pearl of Power", - "desc": "While this pearl is on your person, you can use an action to speak its command word and regain one expended spell slot. If the expended slot was of 4th level or higher, the new slot is 3rd level. Once you use the pearl, it can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_pepper", - "fields": { - "name": "Pepper", - "desc": "1lb of pepper.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_perfume-vial", - "fields": { - "name": "Perfume (vial)", - "desc": "A vial of perfume.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_periapt-of-health", - "fields": { - "name": "Periapt of Health", - "desc": "You are immune to contracting any disease while you wear this pendant. If you are already infected with a disease, the effects of the disease are suppressed you while you wear the pendant.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_periapt-of-proof-against-poison", - "fields": { - "name": "Periapt of Proof against Poison", - "desc": "This delicate silver chain has a brilliant-cut black gem pendant. While you wear it, poisons have no effect on you. You are immune to the poisoned condition and have immunity to poison damage.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_periapt-of-wound-closure", - "fields": { - "name": "Periapt of Wound Closure", - "desc": "While you wear this pendant, you stabilize whenever you are dying at the start of your turn. In addition, whenever you roll a Hit Die to regain hit points, double the number of hit points it restores.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_philter-of-love", - "fields": { - "name": "Philter of Love", - "desc": "The next time you see a creature within 10 minutes after drinking this philter, you become charmed by that creature for 1 hour. If the creature is of a species and gender you are normally attracted to, you regard it as your true love while you are charmed. This potion's rose-hued, effervescent liquid contains one easy-to-miss bubble shaped like a heart.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_pick-miners", - "fields": { - "name": "Pick, miner's", - "desc": "A pick for mining.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pig", - "fields": { - "name": "Pig", - "desc": "One pig.", - "document": "srd", - "size": "medium", - "weight": "400.000", - "armor_class": 10, - "hit_points": 4, - "cost": "3.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pike", - "fields": { - "name": "Pike", - "desc": "A pike.", - "document": "srd", - "size": "tiny", - "weight": "18.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "srd_pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pike-1", - "fields": { - "name": "Pike (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_pike-2", - "fields": { - "name": "Pike (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_pike-3", - "fields": { - "name": "Pike (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_pipes-of-haunting", - "fields": { - "name": "Pipes of Haunting", - "desc": "You must be proficient with wind instruments to use these pipes. They have 3 charges. You can use an action to play them and expend 1 charge to create an eerie, spellbinding tune. Each creature within 30 feet of you that hears you play must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. If you wish, all creatures in the area that aren't hostile toward you automatically succeed on the saving throw. A creature that fails the saving throw can repeat it at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on its saving throw is immune to the effect of these pipes for 24 hours. The pipes regain 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_pipes-of-the-sewers", - "fields": { - "name": "Pipes of the Sewers", - "desc": "You must be proficient with wind instruments to use these pipes. While you are attuned to the pipes, ordinary rats and giant rats are indifferent toward you and will not attack you unless you threaten or harm them.\r\n\r\nThe pipes have 3 charges. If you play the pipes as an action, you can use a bonus action to expend 1 to 3 charges, calling forth one swarm of rats with each expended charge, provided that enough rats are within half a mile of you to be called in this fashion (as determined by the GM). If there aren't enough rats to form a swarm, the charge is wasted. Called swarms move toward the music by the shortest available route but aren't under your control otherwise. The pipes regain 1d3 expended charges daily at dawn.\r\n\r\nWhenever a swarm of rats that isn't under another creature's control comes within 30 feet of you while you are playing the pipes, you can make a Charisma check contested by the swarm's Wisdom check. If you lose the contest, the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours. If you win the contest, the swarm is swayed by the pipes' music and becomes friendly to you and your companions for as long as you continue to play the pipes each round as an action. A friendly swarm obeys your commands. If you issue no commands to a friendly swarm, it defends itself but otherwise takes no actions. If a friendly swarm starts its turn and can't hear the pipes' music, your control over that swarm ends, and the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_piton", - "fields": { - "name": "Piton", - "desc": "A piton for climbing.", - "document": "srd", - "size": "tiny", - "weight": "0.250", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_plate-armor", - "fields": { - "name": "Plate Armor", - "desc": "Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.", - "document": "srd", - "size": "tiny", - "weight": "65.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1500.00", - "weapon": null, - "armor": "srd_plate", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_plate-armor-of-etherealness", - "fields": { - "name": "Plate Armor of Etherealness", - "desc": "While you're wearing this armor, you can speak its command word as an action to gain the effect of the _etherealness_ spell, which last for 10 minutes or until you remove the armor or use an action to speak the command word again. This property of the armor can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": "srd_plate", - "category": "armor", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_platinum", - "fields": { - "name": "Platinum", - "desc": "1 lb. of platinum.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "500.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_platinum-piece", - "fields": { - "name": "Platinum Piece", - "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_playing-card-set", - "fields": { - "name": "Playing card set", - "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_poison-basic", - "fields": { - "name": "Poison, Basic", - "desc": "You can use the poison in this vial to coat one slashing or piercing weapon or up to three pieces of ammunition. Applying the poison takes an action. A creature hit by the poisoned weapon or ammunition must make a DC 10 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "100.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_poisoners-kit", - "fields": { - "name": "Poisoner's kit", - "desc": "A poisoner’s kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pole-10-foot", - "fields": { - "name": "Pole (10-foot)", - "desc": "A 10 foot pole.", - "document": "srd", - "size": "tiny", - "weight": "7.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_portable-hole", - "fields": { - "name": "Portable Hole", - "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold a _portable hole_ and place it on or against a solid surface, whereupon the _portable hole_ creates an extradimensional hole 10 feet deep. The cylindrical space within the hole exists on a different plane, so it can't be used to create open passages. Any creature inside an open _portable hole_ can exit the hole by climbing out of it.\r\n\r\nYou can use an action to close a _portable hole_ by taking hold of the edges of the cloth and folding it up. Folding the cloth closes the hole, and any creatures or objects within remain in the extradimensional space. No matter what's in it, the hole weighs next to nothing.\r\n\r\nIf the hole is folded up, a creature within the hole's extradimensional space can use an action to make a DC 10 Strength check. On a successful check, the creature forces its way out and appears within 5 feet of the _portable hole_ or the creature carrying it. A breathing creature within a closed _portable hole_ can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing a _portable hole_ inside an extradimensional space created by a _bag of holding_, _handy haversack_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_pot-iron", - "fields": { - "name": "Pot, iron", - "desc": "An iron pot. Capacity: 1 gallon liquid.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-animal-friendship", - "fields": { - "name": "Potion of Animal Friendship", - "desc": "When you drink this potion, you can cast the _animal friendship_ spell (save DC 13) for 1 hour at will. Agitating this muddy liquid brings little bits into view: a fish scale, a hummingbird tongue, a cat claw, or a squirrel hair.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-clairvoyance", - "fields": { - "name": "Potion of Clairvoyance", - "desc": "When you drink this potion, you gain the effect of the _clairvoyance_ spell. An eyeball bobs in this yellowish liquid but vanishes when the potion is opened.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-climbing", - "fields": { - "name": "Potion of Climbing", - "desc": "When you drink this potion, you gain a climbing speed equal to your walking speed for 1 hour. During this time, you have advantage on Strength (Athletics) checks you make to climb. The potion is separated into brown, silver, and gray layers resembling bands of stone. Shaking the bottle fails to mix the colors.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-cloud-giant-strength", - "fields": { - "name": "Potion of Cloud Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-diminution", - "fields": { - "name": "Potion of Diminution", - "desc": "When you drink this potion, you gain the \"reduce\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously contracts to a tiny bead and then expands to color the clear liquid around it. Shaking the bottle fails to interrupt this process.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-fire-giant-strength", - "fields": { - "name": "Potion of Fire Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-flying", - "fields": { - "name": "Potion of Flying", - "desc": "When you drink this potion, you gain a flying speed equal to your walking speed for 1 hour and can hover. If you're in the air when the potion wears off, you fall unless you have some other means of staying aloft. This potion's clear liquid floats at the top of its container and has cloudy white impurities drifting in it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-frost-giant-strength", - "fields": { - "name": "Potion of Frost Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-gaseous-form", - "fields": { - "name": "Potion of Gaseous Form", - "desc": "When you drink this potion, you gain the effect of the _gaseous form_ spell for 1 hour (no concentration required) or until you end the effect as a bonus action. This potion's container seems to hold fog that moves and pours like water.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-greater-healing", - "fields": { - "name": "Potion of Greater Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-growth", - "fields": { - "name": "Potion of Growth", - "desc": "When you drink this potion, you gain the \"enlarge\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously expands from a tiny bead to color the clear liquid around it and then contracts. Shaking the bottle fails to interrupt this process.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-healing", - "fields": { - "name": "Potion of Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-heroism", - "fields": { - "name": "Potion of Heroism", - "desc": "For 1 hour after drinking it, you gain 10 temporary hit points that last for 1 hour. For the same duration, you are under the effect of the _bless_ spell (no concentration required). This blue potion bubbles and steams as if boiling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-hill-giant-strength", - "fields": { - "name": "Potion of Hill Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-invisibility", - "fields": { - "name": "Potion of Invisibility", - "desc": "This potion's container looks empty but feels as though it holds liquid. When you drink it, you become invisible for 1 hour. Anything you wear or carry is invisible with you. The effect ends early if you attack or cast a spell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-mind-reading", - "fields": { - "name": "Potion of Mind Reading", - "desc": "When you drink this potion, you gain the effect of the _detect thoughts_ spell (save DC 13). The potion's dense, purple liquid has an ovoid cloud of pink floating in it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-poison", - "fields": { - "name": "Potion of Poison", - "desc": "This concoction looks, smells, and tastes like a _potion of healing_ or other beneficial potion. However, it is actually poison masked by illusion magic. An _identify_ spell reveals its true nature.\n\nIf you drink it, you take 3d6 poison damage, and you must succeed on a DC 13 Constitution saving throw or be poisoned. At the start of each of your turns while you are poisoned in this way, you take 3d6 poison damage. At the end of each of your turns, you can repeat the saving throw. On a successful save, the poison damage you take on your subsequent turns decreases by 1d6. The poison ends when the damage decreases to 0.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-resistance", - "fields": { - "name": "Potion of Resistance", - "desc": "When you drink this potion, you gain resistance to one type of damage for 1 hour. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-speed", - "fields": { - "name": "Potion of Speed", - "desc": "When you drink this potion, you gain the effect of the _haste_ spell for 1 minute (no concentration required). The potion's yellow fluid is streaked with black and swirls on its own.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-stone-giant-strength", - "fields": { - "name": "Potion of Stone Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-storm-giant-strength", - "fields": { - "name": "Potion of Storm Giant Strength", - "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-superior-healing", - "fields": { - "name": "Potion of Superior Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-supreme-healing", - "fields": { - "name": "Potion of Supreme Healing", - "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potion-of-water-breathing", - "fields": { - "name": "Potion of Water Breathing", - "desc": "You can breathe underwater for 1 hour after drinking this potion. Its cloudy green fluid smells of the sea and has a jellyfish-like bubble floating in it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "potion", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_potters-tools", - "fields": { - "name": "Potter's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_pouch", - "fields": { - "name": "Pouch", - "desc": "A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch (described earlier in this section).\r\nCapacity: 1/5 cubic foot/6 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_purple-worm-poison", - "fields": { - "name": "Purple worm poison", - "desc": "This poison must be harvested from a dead or incapacitated purple worm. A creature subjected to this poison must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2000.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_quarterstaff", - "fields": { - "name": "Quarterstaff", - "desc": "A quarterstaff.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": "srd_quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_quarterstaff-1", - "fields": { - "name": "Quarterstaff (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_quarterstaff-2", - "fields": { - "name": "Quarterstaff (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_quarterstaff-3", - "fields": { - "name": "Quarterstaff (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_quiver", - "fields": { - "name": "Quiver", - "desc": "A quiver can hold up to 20 arrows.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_ram-portable", - "fields": { - "name": "Ram, Portable", - "desc": "You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.", - "document": "srd", - "size": "tiny", - "weight": "35.000", - "armor_class": 0, - "hit_points": 0, - "cost": "4.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_rapier", - "fields": { - "name": "Rapier", - "desc": "A rapier.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_rapier-1", - "fields": { - "name": "Rapier (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rapier-2", - "fields": { - "name": "Rapier (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rapier-3", - "fields": { - "name": "Rapier (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rations-1-day", - "fields": { - "name": "Rations (1 day)", - "desc": "Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_reliquary", - "fields": { - "name": "Reliquary", - "desc": "Can be used as a holy symbol.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_restorative-ointment", - "fields": { - "name": "Restorative Ointment", - "desc": "This glass jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture that smells faintly of aloe. The jar and its contents weigh 1/2 pound.\r\n\r\nAs an action, one dose of the ointment can be swallowed or applied to the skin. The creature that receives it regains 2d8 + 2 hit points, ceases to be poisoned, and is cured of any disease.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-mail", - "fields": { - "name": "Ring mail", - "desc": "This armor is leather armor with heavy rings sewn into it. The rings help reinforce the armor against blows from swords and axes. Ring mail is inferior to chain mail, and it's usually worn only by those who can't afford better armor.", - "document": "srd", - "size": "tiny", - "weight": "40.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": "srd_ring-mail", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-animal-influence", - "fields": { - "name": "Ring of Animal Influence", - "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 of its charges to cast one of the following spells:\n\n* _Animal friendship_ (save DC 13)\n* _Fear_ (save DC 13), targeting only beasts that have an Intelligence of 3 or lower\n* _Speak with animals_", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-djinni-summoning", - "fields": { - "name": "Ring of Djinni Summoning", - "desc": "While wearing this ring, you can speak its command word as an action to summon a particular djinni from the Elemental Plane of Air. The djinni appears in an unoccupied space you choose within 120 feet of you. It remains as long as you concentrate (as if concentrating on a spell), to a maximum of 1 hour, or until it drops to 0 hit points. It then returns to its home plane.\n\nWhile summoned, the djinni is friendly to you and your companions. It obeys any commands you give it, no matter what language you use. If you fail to command it, the djinni defends itself against attackers but takes no other actions.\n\nAfter the djinni departs, it can't be summoned again for 24 hours, and the ring becomes nonmagical if the djinni dies.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-elemental-command", - "fields": { - "name": "Ring of Elemental Command", - "desc": "This ring is linked to one of the four Elemental Planes. The GM chooses or randomly determines the linked plane.\n\nWhile wearing this ring, you have advantage on attack rolls against elementals from the linked plane, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\n\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\n\n**_Ring of Air Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an air elemental. In addition, when you fall, you descend 60 feet per round and take no damage from falling. You can also speak and understand Auran.\n\nIf you help slay an air elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to lightning damage.\n* You have a flying speed equal to your walking speed and can hover.\n* You can cast the following spells from the ring, expending the necessary number of charges: _chain lightning_ (3 charges), _gust of wind_ (2 charges), or _wind wall_ (1 charge).\n\n**_Ring of Earth Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an earth elemental. In addition, you can move in difficult terrain that is composed of rubble, rocks, or dirt as if it were normal terrain. You can also speak and understand Terran.\n\nIf you help slay an earth elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to acid damage.\n* You can move through solid earth or rock as if those areas were difficult terrain. If you end your turn there, you are shunted out to the nearest unoccupied space you last occupied.\n* You can cast the following spells from the ring, expending the necessary number of charges: _stone shape_ (2 charges), _stoneskin_ (3 charges), or _wall of stone_ (3 charges).\n\n**_Ring of Fire Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a fire elemental. In addition, you have resistance to fire damage. You can also speak and understand Ignan.\n\nIf you help slay a fire elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You are immune to fire damage.\n* You can cast the following spells from the ring, expending the necessary number of charges: _burning hands_ (1 charge), _fireball_ (2 charges), and _wall of fire_ (3 charges).\n\n**_Ring of Water Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a water elemental. In addition, you can stand on and walk across liquid surfaces as if they were solid ground. You can also speak and understand Aquan.\n\nIf you help slay a water elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You can breathe underwater and have a swimming speed equal to your walking speed.\n* You can cast the following spells from the ring, expending the necessary number of charges: _create or destroy water_ (1 charge), _control water_ (3 charges), _ice storm_ (2 charges), or _wall of ice_ (3 charges).", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-evasion", - "fields": { - "name": "Ring of Evasion", - "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. When you fail a Dexterity saving throw while wearing it, you can use your reaction to expend 1 of its charges to succeed on that saving throw instead.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-feather-falling", - "fields": { - "name": "Ring of Feather Falling", - "desc": "When you fall while wearing this ring, you descend 60 feet per round and take no damage from falling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-free-action", - "fields": { - "name": "Ring of Free Action", - "desc": "While you wear this ring, difficult terrain doesn't cost you extra movement. In addition, magic can neither reduce your speed nor cause you to be paralyzed or restrained.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-invisibility", - "fields": { - "name": "Ring of Invisibility", - "desc": "While wearing this ring, you can turn invisible as an action. Anything you are wearing or carrying is invisible with you. You remain invisible until the ring is removed, until you attack or cast a spell, or until you use a bonus action to become visible again.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-jumping", - "fields": { - "name": "Ring of Jumping", - "desc": "While wearing this ring, you can cast the _jump_ spell from it as a bonus action at will, but can target only yourself when you do so.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-mind-shielding", - "fields": { - "name": "Ring of Mind Shielding", - "desc": "While wearing this ring, you are immune to magic that allows other creatures to read your thoughts, determine whether you are lying, know your alignment, or know your creature type. Creatures can telepathically communicate with you only if you allow it.\n\nYou can use an action to cause the ring to become invisible until you use another action to make it visible, until you remove the ring, or until you die.\n\nIf you die while wearing the ring, your soul enters it, unless it already houses a soul. You can remain in the ring or depart for the afterlife. As long as your soul is in the ring, you can telepathically communicate with any creature wearing it. A wearer can't prevent this telepathic communication.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-protection", - "fields": { - "name": "Ring of Protection", - "desc": "You gain a +1 bonus to AC and saving throws while wearing this ring.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-regeneration", - "fields": { - "name": "Ring of Regeneration", - "desc": "While wearing this ring, you regain 1d6 hit points every 10 minutes, provided that you have at least 1 hit point. If you lose a body part, the ring causes the missing part to regrow and return to full functionality after 1d6 + 1 days if you have at least 1 hit point the whole time.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-resistance", - "fields": { - "name": "Ring of Resistance", - "desc": "You have resistance to one damage type while wearing this ring. The gem in the ring indicates the type, which the GM chooses or determines randomly.\n\n| d10 | Damage Type | Gem |\n|-----|-------------|------------|\n| 1 | Acid | Pearl |\n| 2 | Cold | Tourmaline |\n| 3 | Fire | Garnet |\n| 4 | Force | Sapphire |\n| 5 | Lightning | Citrine |\n| 6 | Necrotic | Jet |\n| 7 | Poison | Amethyst |\n| 8 | Psychic | Jade |\n| 9 | Radiant | Topaz |\n| 10 | Thunder | Spinel |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-shooting-stars", - "fields": { - "name": "Ring of Shooting Stars", - "desc": "While wearing this ring in dim light or darkness, you can cast _dancing lights_ and _light_ from the ring at will. Casting either spell from the ring requires an action.\n\nThe ring has 6 charges for the following other properties. The ring regains 1d6 expended charges daily at dawn.\n\n**_Faerie Fire_**. You can expend 1 charge as an action to cast _faerie fire_ from the ring.\n\n**_Ball Lightning_**. You can expend 2 charges as an action to create one to four 3-foot-diameter spheres of lightning. The more spheres you create, the less powerful each sphere is individually.\n\nEach sphere appears in an unoccupied space you can see within 120 feet of you. The spheres last as long as you concentrate (as if concentrating on a spell), up to 1 minute. Each sphere sheds dim light in a 30-foot radius.\n\nAs a bonus action, you can move each sphere up to 30 feet, but no farther than 120 feet away from you. When a creature other than you comes within 5 feet of a sphere, the sphere discharges lightning at that creature and disappears. That creature must make a DC 15 Dexterity saving throw. On a failed save, the creature takes lightning damage based on the number of spheres you created.\n\n| Spheres | Lightning Damage |\n|---------|------------------|\n| 4 | 2d4 |\n| 3 | 2d6 |\n| 2 | 5d4 |\n| 1 | 4d12 |\n\n**_Shooting Stars_**. You can expend 1 to 3 charges as an action. For every charge you expend, you launch a glowing mote of light from the ring at a point you can see within 60 feet of you. Each creature within a 15-foot cube originating from that point is showered in sparks and must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-spell-storing", - "fields": { - "name": "Ring of Spell Storing", - "desc": "This ring stores spells cast into it, holding them until the attuned wearer uses them. The ring can store up to 5 levels worth of spells at a time. When found, it contains 1d6 - 1 levels of stored spells chosen by the GM.\n\nAny creature can cast a spell of 1st through 5th level into the ring by touching the ring as the spell is cast. The spell has no effect, other than to be stored in the ring. If the ring can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\n\nWhile wearing this ring, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the ring is no longer stored in it, freeing up space.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-spell-turning", - "fields": { - "name": "Ring of Spell Turning", - "desc": "While wearing this ring, you have advantage on saving throws against any spell that targets only you (not in an area of effect). In addition, if you roll a 20 for the save and the spell is 7th level or lower, the spell has no effect on you and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-swimming", - "fields": { - "name": "Ring of Swimming", - "desc": "You have a swimming speed of 40 feet while wearing this ring.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-telekinesis", - "fields": { - "name": "Ring of Telekinesis", - "desc": "While wearing this ring, you can cast the _telekinesis_ spell at will, but you can target only objects that aren't being worn or carried.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-the-ram", - "fields": { - "name": "Ring of the Ram", - "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a spectral ram's head and makes its attack roll with a +7 bonus. On a hit, for each charge you spend, the target takes 2d10 force damage and is pushed 5 feet away from you.\n\nAlternatively, you can expend 1 to 3 of the ring's charges as an action to try to break an object you can see within 60 feet of you that isn't being worn or carried. The ring makes a Strength check with a +5 bonus for each charge you spend.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-three-wishes", - "fields": { - "name": "Ring of Three Wishes", - "desc": "While wearing this ring, you can use an action to expend 1 of its 3 charges to cast the _wish_ spell from it. The ring becomes nonmagical when you use the last charge.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-warmth", - "fields": { - "name": "Ring of Warmth", - "desc": "While wearing this ring, you have resistance to cold damage. In addition, you and everything you wear and carry are unharmed by temperatures as low as -50 degrees Fahrenheit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-water-walking", - "fields": { - "name": "Ring of Water Walking", - "desc": "While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_ring-of-x-ray-vision", - "fields": { - "name": "Ring of X-ray Vision", - "desc": "While wearing this ring, you can use an action to speak its command word. When you do so, you can see into and through solid matter for 1 minute. This vision has a radius of 30 feet. To you, solid objects within that radius appear transparent and don't prevent light from passing through them. The vision can penetrate 1 foot of stone, 1 inch of common metal, or up to 3 feet of wood or dirt. Thicker substances block the vision, as does a thin sheet of lead.\n\nWhenever you use the ring again before taking a long rest, you must succeed on a DC 15 Constitution saving throw or gain one level of exhaustion.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_robe-of-eyes", - "fields": { - "name": "Robe of Eyes", - "desc": "This robe is adorned with eyelike patterns. While you wear the robe, you gain the following benefits:\r\n\r\n* The robe lets you see in all directions, and you have advantage on Wisdom (Perception) checks that rely on sight.\r\n* You have darkvision out to a range of 120 feet.\r\n* You can see invisible creatures and objects, as well as see into the Ethereal Plane, out to a range of 120 feet.\r\n\r\nThe eyes on the robe can't be closed or averted. Although you can close or avert your own eyes, you are never considered to be doing so while wearing this robe.\r\n\r\nA _light_ spell cast on the robe or a _daylight_ spell cast within 5 feet of the robe causes you to be blinded for 1 minute. At the end of each of your turns, you can make a Constitution saving throw (DC 11 for _light_ or DC 15 for _daylight_), ending the blindness on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_robe-of-scintillating-colors", - "fields": { - "name": "Robe of Scintillating Colors", - "desc": "This robe has 3 charges, and it regains 1d3 expended charges daily at dawn. While you wear it, you can use an action and expend 1 charge to cause the garment to display a shifting pattern of dazzling hues until the end of your next turn. During this time, the robe sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Creatures that can see you have disadvantage on attack rolls against you. In addition, any creature in the bright light that can see you when the robe's power is activated must succeed on a DC 15 Wisdom saving throw or become stunned until the effect ends.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_robe-of-stars", - "fields": { - "name": "Robe of Stars", - "desc": "This black or dark blue robe is embroidered with small white or silver stars. You gain a +1 bonus to saving throws while you wear it.\r\n\r\nSix stars, located on the robe's upper front portion, are particularly large. While wearing this robe, you can use an action to pull off one of the stars and use it to cast _magic missile_ as a 5th-level spell. Daily at dusk, 1d6 removed stars reappear on the robe.\r\n\r\nWhile you wear the robe, you can use an action to enter the Astral Plane along with everything you are wearing and carrying. You remain there until you use an action to return to the plane you were on. You reappear in the last space you occupied, or if that space is occupied, the nearest unoccupied space.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_robe-of-the-archmagi", - "fields": { - "name": "Robe of the Archmagi", - "desc": "This elegant garment is made from exquisite cloth of white, gray, or black and adorned with silvery runes. The robe's color corresponds to the alignment for which the item was created. A white robe was made for good, gray for neutral, and black for evil. You can't attune to a _robe of the archmagi_ that doesn't correspond to your alignment.\r\n\r\nYou gain these benefits while wearing the robe:\r\n\r\n* If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* Your spell save DC and spell attack bonus each increase by 2.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_robe-of-useful-items", - "fields": { - "name": "Robe of Useful Items", - "desc": "This robe has cloth patches of various shapes and colors covering it. While wearing the robe, you can use an action to detach one of the patches, causing it to become the object or creature it represents. Once the last patch is removed, the robe becomes an ordinary garment.\r\n\r\nThe robe has two of each of the following patches:\r\n\r\n* Dagger\r\n* Bullseye lantern (filled and lit)\r\n* Steel mirror\r\n* 10-foot pole\r\n* Hempen rope (50 feet, coiled)\r\n* Sack\r\n\r\nIn addition, the robe has 4d4 other patches. The GM chooses the patches or determines them randomly.\r\n\r\n| d100 | Patch |\r\n|--------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-08 | Bag of 100 gp |\r\n| 09-15 | Silver coffer (1 foot long, 6 inches wide and deep) worth 500 gp |\r\n| 16-22 | Iron door (up to 10 feet wide and 10 feet high, barred on one side of your choice), which you can place in an opening you can reach; it conforms to fit the opening, attaching and hinging itself |\r\n| 23-30 | 10 gems worth 100 gp each |\r\n| 31-44 | Wooden ladder (24 feet long) |\r\n| 45-51 | A riding horse with saddle bags |\r\n| 52-59 | Pit (a cube 10 feet on a side), which you can place on the ground within 10 feet of you |\r\n| 60-68 | 4 potions of healing |\r\n| 69-75 | Rowboat (12 feet long) |\r\n| 76-83 | Spell scroll containing one spell of 1st to 3rd level |\r\n| 84-90 | 2 mastiffs |\r\n| 91-96 | Window (2 feet by 4 feet, up to 2 feet deep), which you can place on a vertical surface you can reach |\r\n| 97-100 | Portable ram |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_robes", - "fields": { - "name": "Robes", - "desc": "Robes, for wearing.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_rod", - "fields": { - "name": "Rod", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_rod-of-absorption", - "fields": { - "name": "Rod of Absorption", - "desc": "While holding this rod, you can use your reaction to absorb a spell that is targeting only you and not with an area of effect. The absorbed spell's effect is canceled, and the spell's energy-not the spell itself-is stored in the rod. The energy has the same level as the spell when it was cast. The rod can absorb and store up to 50 levels of energy over the course of its existence. Once the rod absorbs 50 levels of energy, it can't absorb more. If you are targeted by a spell that the rod can't store, the rod has no effect on that spell.\n\nWhen you become attuned to the rod, you know how many levels of energy the rod has absorbed over the course of its existence, and how many levels of spell energy it currently has stored.\n\nIf you are a spellcaster holding the rod, you can convert energy stored in it into spell slots to cast spells you have prepared or know. You can create spell slots only of a level equal to or lower than your own spell slots, up to a maximum of 5th level. You use the stored levels in place of your slots, but otherwise cast the spell as normal. For example, you can use 3 levels stored in the rod as a 3rd-level spell slot.\n\nA newly found rod has 1d10 levels of spell energy stored in it already. A rod that can no longer absorb spell energy and has no energy remaining becomes nonmagical.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rod-of-alertness", - "fields": { - "name": "Rod of Alertness", - "desc": "This rod has a flanged head and the following properties.\n\n**_Alertness_**. While holding the rod, you have advantage on Wisdom (Perception) checks and on rolls for initiative.\n\n**_Spells_**. While holding the rod, you can use an action to cast one of the following spells from it: _detect evil and good_, _detect magic_, _detect poison and disease_, or _see invisibility._\n\n**_Protective Aura_**. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's head sheds bright light in a 60-foot radius and dim light for an additional 60 feet. While in that bright light, you and any creature that is friendly to you gain a +1 bonus to AC and saving throws and can sense the location of any invisible hostile creature that is also in the bright light.\n\nThe rod's head stops glowing and the effect ends after 10 minutes, or when a creature uses an action to pull the rod from the ground. This property can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rod-of-lordly-might", - "fields": { - "name": "Rod of Lordly Might", - "desc": "This rod has a flanged head, and it functions as a magic mace that grants a +3 bonus to attack and damage rolls made with it. The rod has properties associated with six different buttons that are set in a row along the haft. It has three other properties as well, detailed below.\n\n**_Six Buttons_**. You can press one of the rod's six buttons as a bonus action. A button's effect lasts until you push a different button or until you push the same button again, which causes the rod to revert to its normal form.\n\nIf you press **button 1**, the rod becomes a _flame tongue_, as a fiery blade sprouts from the end opposite the rod's flanged head.\n\nIf you press **button 2**, the rod's flanged head folds down and two crescent-shaped blades spring out, transforming the rod into a magic battleaxe that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 3**, the rod's flanged head folds down, a spear point springs from the rod's tip, and the rod's handle lengthens into a 6-foot haft, transforming the rod into a magic spear that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 4**, the rod transforms into a climbing pole up to 50 feet long, as you specify. In surfaces as hard as granite, a spike at the bottom and three hooks at the top anchor the pole. Horizontal bars 3 inches long fold out from the sides, 1 foot apart, forming a ladder. The pole can bear up to 4,000 pounds. More weight or lack of solid anchoring causes the rod to revert to its normal form.\n\nIf you press **button 5**, the rod transforms into a handheld battering ram and grants its user a +10 bonus to Strength checks made to break through doors, barricades, and other barriers.\n\nIf you press **button 6**, the rod assumes or remains in its normal form and indicates magnetic north. (Nothing happens if this function of the rod is used in a location that has no magnetic north.) The rod also gives you knowledge of your approximate depth beneath the ground or your height above it.\n\n**_Drain Life_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target takes an extra 4d6 necrotic damage, and you regain a number of hit points equal to half that necrotic damage. This property can't be used again until the next dawn.\n\n**_Paralyze_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Strength saving throw. On a failure, the target is paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. This property can't be used again until the next dawn.\n\n**_Terrify_**. While holding the rod, you can use an action to force each creature you can see within 30 feet of you to make a DC 17 Wisdom saving throw. On a failure, a target is frightened of you for 1 minute. A frightened target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This property can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rod-of-rulership", - "fields": { - "name": "Rod of Rulership", - "desc": "You can use an action to present the rod and command obedience from each creature of your choice that you can see within 120 feet of you. Each target must succeed on a DC 15 Wisdom saving throw or be charmed by you for 8 hours. While charmed in this way, the creature regards you as its trusted leader. If harmed by you or your companions, or commanded to do something contrary to its nature, a target ceases to be charmed in this way. The rod can't be used again until the next dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rod-of-security", - "fields": { - "name": "Rod of Security", - "desc": "While holding this rod, you can use an action to activate it. The rod then instantly transports you and up to 199 other willing creatures you can see to a paradise that exists in an extraplanar space. You choose the form that the paradise takes. It could be a tranquil garden, lovely glade, cheery tavern, immense palace, tropical island, fantastic carnival, or whatever else you can imagine. Regardless of its nature, the paradise contains enough water and food to sustain its visitors. Everything else that can be interacted with inside the extraplanar space can exist only there. For example, a flower picked from a garden in the paradise disappears if it is taken outside the extraplanar space.\n\nFor each hour spent in the paradise, a visitor regains hit points as if it had spent 1 Hit Die. Also, creatures don't age while in the paradise, although time passes normally. Visitors can remain in the paradise for up to 200 days divided by the number of creatures present (round down).\n\nWhen the time runs out or you use an action to end it, all visitors reappear in the location they occupied when you activated the rod, or an unoccupied space nearest that location. The rod can't be used again until ten days have passed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "rod", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rope-hempen-50-feet", - "fields": { - "name": "Rope, hempen (50 feet)", - "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 2, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_rope-of-climbing", - "fields": { - "name": "Rope of Climbing", - "desc": "This 60-foot length of silk rope weighs 3 pounds and can hold up to 3,000 pounds. If you hold one end of the rope and use an action to speak the command word, the rope animates. As a bonus action, you can command the other end to move toward a destination you choose. That end moves 10 feet on your turn when you first command it and 10 feet on each of your turns until reaching its destination, up to its maximum length away, or until you tell it to stop. You can also tell the rope to fasten itself securely to an object or to unfasten itself, to knot or unknot itself, or to coil itself for carrying.\r\n\r\nIf you tell the rope to knot, large knots appear at 1* foot intervals along the rope. While knotted, the rope shortens to a 50-foot length and grants advantage on checks made to climb it.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rope-of-entanglement", - "fields": { - "name": "Rope of Entanglement", - "desc": "This rope is 30 feet long and weighs 3 pounds. If you hold one end of the rope and use an action to speak its command word, the other end darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 15 Dexterity saving throw or become restrained.\r\n\r\nYou can release the creature by using a bonus action to speak a second command word. A target restrained by the rope can use an action to make a DC 15 Strength or Dexterity check (target's choice). On a success, the creature is no longer restrained by the rope.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_rope-silk-50-feet", - "fields": { - "name": "Rope, silk (50 feet)", - "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_rowboat", - "fields": { - "name": "Rowboat", - "desc": "Waterborne vehicle. Speed 1.5mph", - "document": "srd", - "size": "large", - "weight": "100.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sack", - "fields": { - "name": "Sack", - "desc": "A sack. Capacity: 1 cubic foot/30 pounds of gear.", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_saffron", - "fields": { - "name": "Saffron", - "desc": "1lb of saffron.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sailing-ship", - "fields": { - "name": "Sailing Ship", - "desc": "Waterborne vehicle. Speed 2mph", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_salt", - "fields": { - "name": "Salt", - "desc": "1lb of salt.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_scale-mail", - "fields": { - "name": "Scale mail", - "desc": "This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.", - "document": "srd", - "size": "tiny", - "weight": "45.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": "srd_scale-mail", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_scale-merchants", - "fields": { - "name": "Scale, Merchant's", - "desc": "A scale includes a small balance, pans, and a suitable assortment of weights up to 2 pounds. With it, you can measure the exact weight of small objects, such as raw precious metals or trade goods, to help determine their worth.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_scarab-of-protection", - "fields": { - "name": "Scarab of Protection", - "desc": "If you hold this beetle-shaped medallion in your hand for 1 round, an inscription appears on its surface revealing its magical nature. It provides two benefits while it is on your person:\r\n\r\n* You have advantage on saving throws against spells.\r\n* The scarab has 12 charges. If you fail a saving throw against a necromancy spell or a harmful effect originating from an undead creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into powder and is destroyed when its last charge is expended.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_scimitar", - "fields": { - "name": "Scimitar", - "desc": "A scimitar.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "srd_scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_scimitar-1", - "fields": { - "name": "Scimitar (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_scimitar-2", - "fields": { - "name": "Scimitar (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_scimitar-3", - "fields": { - "name": "Scimitar (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_scimitar-of-speed", - "fields": { - "name": "Scimitar of Speed", - "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. In addition, you can make one attack with it as a bonus action on each of your turns.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sealing-wax", - "fields": { - "name": "Sealing wax", - "desc": "For sealing written letters.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_serpent-venom", - "fields": { - "name": "Serpent venom", - "desc": "This poison must be harvested from a dead or incapacitated giant poisonous snake. A creature subjected to this poison must succeed on a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_shawm", - "fields": { - "name": "Shawm", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sheep", - "fields": { - "name": "Sheep", - "desc": "One sheep.", - "document": "srd", - "size": "medium", - "weight": "75.000", - "armor_class": 10, - "hit_points": 4, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_shield", - "fields": { - "name": "Shield", - "desc": "A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.", - "document": "srd", - "size": "tiny", - "weight": "6.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_shield-of-missile-attraction", - "fields": { - "name": "Shield of Missile Attraction", - "desc": "While holding this shield, you have resistance to damage from ranged weapon attacks.\n\n**_Curse_**. This shield is cursed. Attuning to it curses you until you are targeted by the _remove curse_ spell or similar magic. Removing the shield fails to end the curse on you. Whenever a ranged weapon attack is made against a target within 10 feet of you, the curse causes you to become the target instead.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortbow", - "fields": { - "name": "Shortbow", - "desc": "A shortbow", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": "srd_shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortbow-1", - "fields": { - "name": "Shortbow (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortbow-2", - "fields": { - "name": "Shortbow (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortbow-3", - "fields": { - "name": "Shortbow (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortsword", - "fields": { - "name": "Shortsword", - "desc": "A short sword.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortsword-1", - "fields": { - "name": "Shortsword (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortsword-2", - "fields": { - "name": "Shortsword (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shortsword-3", - "fields": { - "name": "Shortsword (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_shovel", - "fields": { - "name": "Shovel", - "desc": "A shovel.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sickle", - "fields": { - "name": "Sickle", - "desc": "A sickle.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": "srd_sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sickle-1", - "fields": { - "name": "Sickle (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_sickle-2", - "fields": { - "name": "Sickle (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_sickle-3", - "fields": { - "name": "Sickle (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_signal-whistle", - "fields": { - "name": "Signal whistle", - "desc": "For signalling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.05", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_signet-ring", - "fields": { - "name": "Signet Ring", - "desc": "A ring with a signet on it.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "ring", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_silk", - "fields": { - "name": "Silk", - "desc": "1 sq. yd. of silk.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_silver", - "fields": { - "name": "Silver", - "desc": "1lb of silver", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_silver-piece", - "fields": { - "name": "Silver Piece", - "desc": "One gold piece is worth ten silver pieces, the most prevalent coin among commoners. A silver piece buys a laborer's work for half a day, a flask of lamp oil, or a night's rest in a poor inn.", - "document": "srd", - "size": "tiny", - "weight": "0.020", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sled", - "fields": { - "name": "Sled", - "desc": "Drawn vehicle", - "document": "srd", - "size": "large", - "weight": "300.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sling", - "fields": { - "name": "Sling", - "desc": "A sling.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": "srd_sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sling-1", - "fields": { - "name": "Sling (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_sling-2", - "fields": { - "name": "Sling (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_sling-3", - "fields": { - "name": "Sling (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_sling-bullets", - "fields": { - "name": "Sling bullets", - "desc": "Technically their cost is 20 for 4cp.", - "document": "srd", - "size": "tiny", - "weight": "0.075", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "ammunition", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_slippers-of-spider-climbing", - "fields": { - "name": "Slippers of Spider Climbing", - "desc": "While you wear these light shoes, you can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free. You have a climbing speed equal to your walking speed. However, the slippers don't allow you to move this way on a slippery surface, such as one covered by ice or oil.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_smiths-tools", - "fields": { - "name": "Smith's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "8.000", - "armor_class": 0, - "hit_points": 0, - "cost": "20.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_soap", - "fields": { - "name": "Soap", - "desc": "For cleaning.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.02", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sovereign-glue", - "fields": { - "name": "Sovereign Glue", - "desc": "This viscous, milky-white substance can form a permanent adhesive bond between any two objects. It must be stored in a jar or flask that has been coated inside with _oil of slipperiness._ When found, a container contains 1d6 + 1 ounces.\r\n\r\nOne ounce of the glue can cover a 1-foot square surface. The glue takes 1 minute to set. Once it has done so, the bond it creates can be broken only by the application of _universal solvent_ or _oil of etherealness_, or with a _wish_ spell.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spear", - "fields": { - "name": "Spear", - "desc": "A spear.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": "srd_spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_spear-1", - "fields": { - "name": "Spear (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spear-2", - "fields": { - "name": "Spear (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spear-3", - "fields": { - "name": "Spear (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-1st-level", - "fields": { - "name": "Spell Scroll (1st Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-2nd-level", - "fields": { - "name": "Spell Scroll (2nd Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-3rd-level", - "fields": { - "name": "Spell Scroll (3rd Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-4th-level", - "fields": { - "name": "Spell Scroll (4th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-5th-level", - "fields": { - "name": "Spell Scroll (5th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-6th-level", - "fields": { - "name": "Spell Scroll (6th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-7th-level", - "fields": { - "name": "Spell Scroll (7th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-8th-level", - "fields": { - "name": "Spell Scroll (8th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-9th-level", - "fields": { - "name": "Spell Scroll (9th Level)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spell-scroll-cantrip", - "fields": { - "name": "Spell Scroll (Cantrip)", - "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "scroll", - "requires_attunement": false, - "rarity": "common" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spellbook", - "fields": { - "name": "Spellbook", - "desc": "Essential for wizards, a spellbook is a leather-­‐‑bound tome with 100 blank vellum pages suitable for recording spells.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_spellguard-shield", - "fields": { - "name": "Spellguard Shield", - "desc": "While holding this shield, you have advantage on saving throws against spells and other magical effects, and spell attacks have disadvantage against you.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "shield", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_sphere-of-annihilation", - "fields": { - "name": "Sphere of Annihilation", - "desc": "This 2-foot-diameter black sphere is a hole in the multiverse, hovering in space and stabilized by a magical field surrounding it.\r\n\r\nThe sphere obliterates all matter it passes through and all matter that passes through it. Artifacts are the exception. Unless an artifact is susceptible to damage from a _sphere of annihilation_, it passes through the sphere unscathed. Anything else that touches the sphere but isn't wholly engulfed and obliterated by it takes 4d10 force damage.\r\n\r\nThe sphere is stationary until someone controls it. If you are within 60 feet of an uncontrolled sphere, you can use an action to make a DC 25 Intelligence (Arcana) check. On a success, the sphere levitates in one direction of your choice, up to a number of feet equal to 5 × your Intelligence modifier (minimum 5 feet). On a failure, the sphere moves 10 feet toward you. A creature whose space the sphere enters must succeed on a DC 13 Dexterity saving throw or be touched by it, taking 4d10 force damage.\r\n\r\nIf you attempt to control a sphere that is under another creature's control, you make an Intelligence (Arcana) check contested by the other creature's Intelligence (Arcana) check. The winner of the contest gains control of the sphere and can levitate it as normal.\r\n\r\nIf the sphere comes into contact with a planar portal, such as that created by the _gate_ spell, or an extradimensional space, such as that within a _portable hole_, the GM determines randomly what happens, using the following table.\r\n\r\n| d100 | Result |\r\n|--------|------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-50 | The sphere is destroyed. |\r\n| 51-85 | The sphere moves through the portal or into the extradimensional space. |\r\n| 86-00 | A spatial rift sends each creature and object within 180 feet of the sphere, including the sphere, to a random plane of existence. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_spike-iron", - "fields": { - "name": "Spike, iron", - "desc": "An iron spike.", - "document": "srd", - "size": "tiny", - "weight": "0.500", - "armor_class": 0, - "hit_points": 0, - "cost": "0.10", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_splint-armor", - "fields": { - "name": "Splint Armor", - "desc": "This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.", - "document": "srd", - "size": "tiny", - "weight": "60.000", - "armor_class": 0, - "hit_points": 0, - "cost": "200.00", - "weapon": null, - "armor": "srd_splint", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sprig-of-mistletoe", - "fields": { - "name": "Sprig of mistletoe", - "desc": "A sprig of mistletoe that can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_spyglass", - "fields": { - "name": "Spyglass", - "desc": "Objects viewed through a spyglass are magnified to twice their size.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1000.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff", - "fields": { - "name": "Staff", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "srd_quarterstaff", - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-charming", - "fields": { - "name": "Staff of Charming", - "desc": "While holding this staff, you can use an action to expend 1 of its 10 charges to cast _charm person_, _command_, _or comprehend languages_ from it using your spell save DC. The staff can also be used as a magic quarterstaff.\n\nIf you are holding the staff and fail a saving throw against an enchantment spell that targets only you, you can turn your failed save into a successful one. You can't use this property of the staff again until the next dawn. If you succeed on a save against an enchantment spell that targets only you, with or without the staff's intervention, you can use your reaction to expend 1 charge from the staff and turn the spell back on its caster as if you had cast the spell.\n\nThe staff regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-fire", - "fields": { - "name": "Staff of Fire", - "desc": "You have resistance to fire damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _burning hands_ (1 charge), _fireball_ (3 charges), or _wall of fire_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff blackens, crumbles into cinders, and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-frost", - "fields": { - "name": "Staff of Frost", - "desc": "You have resistance to cold damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _cone of cold_ (5 charges), _fog cloud_ (1 charge), _ice storm_ (4 charges), or _wall of ice_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff turns to water and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-healing", - "fields": { - "name": "Staff of Healing", - "desc": "This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability modifier: _cure wounds_ (1 charge per spell level, up to 4th), _lesser restoration_ (2 charges), or _mass cure wounds_ (5 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-power", - "fields": { - "name": "Staff of Power", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to Armor Class, saving throws, and spell attack rolls.\n\nThe staff has 20 charges for the following properties. The staff regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses all other properties. On a 20, the staff regains 1d8 + 2 charges.\n\n**_Power Strike_**. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d6 force damage to the target.\n\n**_Spells_**. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spell attack bonus: _cone of cold_ (5 charges), _fireball_ (5th-level version, 5 charges), _globe of invulnerability_ (6 charges), _hold monster_ (5 charges), _levitate_ (2 charges), _lightning bolt_ (5th-level version, 5 charges), _magic missile_ (1 charge), _ray of enfeeblement_ (1 charge), or _wall of force_ (5 charges).\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-striking", - "fields": { - "name": "Staff of Striking", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +3 bonus to attack and damage rolls made with it.\n\nThe staff has 10 charges. When you hit with a melee attack using it, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 force damage. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-swarming-insects", - "fields": { - "name": "Staff of Swarming Insects", - "desc": "This staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of insects consumes and destroys the staff, then disperses.\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC: _giant insect_ (4 charges) or _insect plague_ (5 charges).\n\n**_Insect Cloud_**. While holding the staff, you can use an action and expend 1 charge to cause a swarm of harmless flying insects to spread out in a 30-foot radius from you. The insects remain for 10 minutes, making the area heavily obscured for creatures other than you. The swarm moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the swarm and ends the effect.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-the-magi", - "fields": { - "name": "Staff of the Magi", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls.\n\nThe staff has 50 charges for the following properties. It regains 4d6 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 20, the staff regains 1d12 + 1 charges.\n\n**_Spell Absorption_**. While holding the staff, you have advantage on saving throws against spells. In addition, you can use your reaction when another creature casts a spell that targets only you. If you do, the staff absorbs the magic of the spell, canceling its effect and gaining a number of charges equal to the absorbed spell's level. However, if doing so brings the staff's total number of charges above 50, the staff explodes as if you activated its retributive strike (see below).\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: _conjure elemental_ (7 charges), _dispel magic_ (3 charges), _fireball_ (7th-level version, 7 charges), _flaming sphere_ (2 charges), _ice storm_ (4 charges), _invisibility_ (2 charges), _knock_ (2 charges), _lightning bolt_ (7th-level version, 7 charges), _passwall_ (5 charges), _plane shift_ (7 charges), _telekinesis_ (5 charges), _wall of fire_ (4 charges), or _web_ (2 charges).\n\nYou can also use an action to cast one of the following spells from the staff without using any charges: _arcane lock_, _detect magic_, _enlarge/reduce_, _light_, _mage hand_, or _protection from evil and good._\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-the-python", - "fields": { - "name": "Staff of the Python", - "desc": "You can use an action to speak this staff's command word and throw the staff on the ground within 10 feet of you. The staff becomes a giant constrictor snake under your control and acts on its own initiative count. By using a bonus action to speak the command word again, you return the staff to its normal form in a space formerly occupied by the snake.\n\nOn your turn, you can mentally command the snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snake takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location.\n\nIf the snake is reduced to 0 hit points, it dies and reverts to its staff form. The staff then shatters and is destroyed. If the snake reverts to staff form before losing all its hit points, it regains all of them.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-the-woodlands", - "fields": { - "name": "Staff of the Woodlands", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you have a +2 bonus to spell attack rolls.\n\nThe staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff.\n\n**_Spells_**. You can use an action to expend 1 or more of the staff's charges to cast one of the following spells from it, using your spell save DC: _animal friendship_ (1 charge), _awaken_ (5 charges), _barkskin_ (2 charges), _locate animals or plants_ (2 charges), _speak with animals_ (1 charge), _speak with plants_ (3 charges), or _wall of thorns_ (6 charges).\n\nYou can also use an action to cast the _pass without trace_ spell from the staff without using any charges. **_Tree Form_**. You can use an action to plant one end of the staff in fertile earth and expend 1 charge to transform the staff into a healthy tree. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\n\nThe tree appears ordinary but radiates a faint aura of transmutation magic if targeted by _detect magic_. While touching the tree and using another action to speak its command word, you return the staff to its normal form. Any creature in the tree falls when it reverts to a staff.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-thunder-and-lightning", - "fields": { - "name": "Staff of Thunder and Lightning", - "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. It also has the following additional properties. When one of these properties is used, it can't be used again until the next dawn.\n\n**_Lightning_**. When you hit with a melee attack using the staff, you can cause the target to take an extra 2d6 lightning damage.\n\n**_Thunder_**. When you hit with a melee attack using the staff, you can cause the staff to emit a crack of thunder, audible out to 300 feet. The target you hit must succeed on a DC 17 Constitution saving throw or become stunned until the end of your next turn.\n\n**_Lightning Strike_**. You can use an action to cause a bolt of lightning to leap from the staff's tip in a line that is 5 feet wide and 120 feet long. Each creature in that line must make a DC 17 Dexterity saving throw, taking 9d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**_Thunderclap_**. You can use an action to cause the staff to issue a deafening thunderclap, audible out to 600 feet. Each creature within 60 feet of you (not including you) must make a DC 17 Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 1 minute. On a successful save, a creature takes half damage and isn't deafened.\n\n**_Thunder and Lightning_**. You can use an action to use the Lightning Strike and Thunderclap properties at the same time. Doing so doesn't expend the daily use of those properties, only the use of this one.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_staff-of-withering", - "fields": { - "name": "Staff of Withering", - "desc": "This staff has 3 charges and regains 1d3 expended charges daily at dawn.\n\nThe staff can be wielded as a magic quarterstaff. On a hit, it deals damage as a normal quarterstaff, and you can expend 1 charge to deal an extra 2d10 necrotic damage to the target. In addition, the target must succeed on a DC 15 Constitution saving throw or have disadvantage for 1 hour on any ability check or saving throw that uses Strength or Constitution.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "staff", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_stone-of-controlling-earth-elementals", - "fields": { - "name": "Stone of Controlling Earth Elementals", - "desc": "If the stone is touching the ground, you can use an action to speak its command word and summon an earth elemental, as if you had cast the _conjure elemental_ spell. The stone can't be used this way again until the next dawn. The stone weighs 5 pounds.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_stone-of-good-luck-luckstone", - "fields": { - "name": "Stone of Good Luck (Luckstone)", - "desc": "While this polished agate is on your person, you gain a +1 bonus to ability checks and saving throws.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_studded-leather-armor", - "fields": { - "name": "Studded Leather Armor", - "desc": "Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.", - "document": "srd", - "size": "tiny", - "weight": "13.000", - "armor_class": 0, - "hit_points": 0, - "cost": "45.00", - "weapon": null, - "armor": "srd_studded-leather", - "category": "armor", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sun-blade", - "fields": { - "name": "Sun Blade", - "desc": "This item appears to be a longsword hilt. While grasping the hilt, you can use a bonus action to cause a blade of pure radiance to spring into existence, or make the blade disappear. While the blade exists, this magic longsword has the finesse property. If you are proficient with shortswords or longswords, you are proficient with the _sun blade_.\n\nYou gain a +2 bonus to attack and damage rolls made with this weapon, which deals radiant damage instead of slashing damage. When you hit an undead with it, that target takes an extra 1d8 radiant damage.\n\nThe sword's luminous blade emits bright light in a 15-foot radius and dim light for an additional 15 feet. The light is sunlight. While the blade persists, you can use an action to expand or reduce its radius of bright and dim light by 5 feet each, to a maximum of 30 feet each or a minimum of 10 feet each.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-life-stealing-greatsword", - "fields": { - "name": "Sword of Life Stealing (Greatsword)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-life-stealing-longsword", - "fields": { - "name": "Sword of Life Stealing (Longsword)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-life-stealing-rapier", - "fields": { - "name": "Sword of Life Stealing (Rapier)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-life-stealing-shortsword", - "fields": { - "name": "Sword of Life Stealing (Shortsword)", - "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-sharpness-greatsword", - "fields": { - "name": "Sword of Sharpness (Greatsword)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-sharpness-longsword", - "fields": { - "name": "Sword of Sharpness (Longsword)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-sharpness-scimitar", - "fields": { - "name": "Sword of Sharpness (Scimitar)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-sharpness-shortsword", - "fields": { - "name": "Sword of Sharpness (Shortsword)", - "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-wounding-greatsword", - "fields": { - "name": "Sword of Wounding (Greatsword)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-wounding-longsword", - "fields": { - "name": "Sword of Wounding (Longsword)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-wounding-rapier", - "fields": { - "name": "Sword of Wounding (Rapier)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_sword-of-wounding-shortsword", - "fields": { - "name": "Sword of Wounding (Shortsword)", - "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_talisman-of-pure-good", - "fields": { - "name": "Talisman of Pure Good", - "desc": "This talisman is a mighty symbol of goodness. A creature that is neither good nor evil in alignment takes 6d6 radiant damage upon touching the talisman. An evil creature takes 8d6 radiant damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are a good cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 7 charges. If you are wearing or holding it, you can use an action to expend 1 charge from it and choose one creature you can see on the ground within 120 feet of you. If the target is of evil alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman disperses into motes of golden light and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_talisman-of-the-sphere", - "fields": { - "name": "Talisman of the Sphere", - "desc": "When you make an Intelligence (Arcana) check to control a _sphere of annihilation_ while you are holding this talisman, you double your proficiency bonus on the check. In addition, when you start your turn with control over a _sphere of annihilation_, you can use an action to levitate it 10 feet plus a number of additional feet equal to 10 × your Intelligence modifier.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_talisman-of-ultimate-evil", - "fields": { - "name": "Talisman of Ultimate Evil", - "desc": "This item symbolizes unrepentant evil. A creature that is neither good nor evil in alignment takes 6d6 necrotic damage upon touching the talisman. A good creature takes 8d6 necrotic damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are an evil cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 6 charges. If you are wearing or holding it, you can use an action to expend 1 charge from the talisman and choose one creature you can see on the ground within 120 feet of you. If the target is of good alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman dissolves into foul-smelling slime and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_tent", - "fields": { - "name": "Tent", - "desc": "A simple and portable canvas shelter, a tent sleeps two.", - "document": "srd", - "size": "tiny", - "weight": "20.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_thieves-tools", - "fields": { - "name": "Thieves' tools", - "desc": "This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-­‐‑bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_tinderbox", - "fields": { - "name": "Tinderbox", - "desc": "This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch—or anything else with abundant, exposed fuel—takes an action. Lighting any other fire takes 1 minute.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.50", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_tinkers-tools", - "fields": { - "name": "Tinker's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "10.000", - "armor_class": 0, - "hit_points": 0, - "cost": "50.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_tome-of-clear-thought", - "fields": { - "name": "Tome of Clear Thought", - "desc": "This book contains memory and logic exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Intelligence score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_tome-of-leadership-and-influence", - "fields": { - "name": "Tome of Leadership and Influence", - "desc": "This book contains guidelines for influencing and charming others, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Charisma score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_tome-of-understanding", - "fields": { - "name": "Tome of Understanding", - "desc": "This book contains intuition and insight exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Wisdom score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_torch", - "fields": { - "name": "Torch", - "desc": "A torch burns for 1 hour, providing bright light in a 20-­‐‑foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_torpor", - "fields": { - "name": "Torpor", - "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 4d6 hours. The poisoned creature is incapacitated.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "600.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_totem", - "fields": { - "name": "Totem", - "desc": "Can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_trident", - "fields": { - "name": "Trident", - "desc": "A trident.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "srd_trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_trident-1", - "fields": { - "name": "Trident (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_trident-2", - "fields": { - "name": "Trident (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_trident-3", - "fields": { - "name": "Trident (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_trident-of-fish-command", - "fields": { - "name": "Trident of Fish Command", - "desc": "This trident is a magic weapon. It has 3 charges. While you carry it, you can use an action and expend 1 charge to cast _dominate beast_ (save DC 15) from it on a beast that has an innate swimming speed. The trident regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_trident", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_truth-serum", - "fields": { - "name": "Truth serum", - "desc": "A creature subjected to this poison must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. The poisoned creature can't knowingly speak a lie, as if under the effect of a zone of truth spell.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "150.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_universal-solvent", - "fields": { - "name": "Universal Solvent", - "desc": "This tube holds milky liquid with a strong alcohol smell. You can use an action to pour the contents of the tube onto a surface within reach. The liquid instantly dissolves up to 1 square foot of adhesive it touches, including _sovereign glue._", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_vial", - "fields": { - "name": "Vial", - "desc": "For holding liquids. Capacity: 4 ounces liquid.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-battleaxe", - "fields": { - "name": "Vicious Weapon (Battleaxe)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_battleaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-blowgun", - "fields": { - "name": "Vicious Weapon (Blowgun)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_blowgun", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-club", - "fields": { - "name": "Vicious Weapon (Club)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_club", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-crossbow-hand", - "fields": { - "name": "Vicious Weapon (Crossbow-Hand)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_crossbow-hand", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-crossbow-heavy", - "fields": { - "name": "Vicious Weapon (Crossbow-Heavy)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_crossbow-heavy", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-crossbow-light", - "fields": { - "name": "Vicious Weapon (Crossbow-Light)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_crossbow-light", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-dagger", - "fields": { - "name": "Vicious Weapon (Dagger)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_dagger", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-dart", - "fields": { - "name": "Vicious Weapon (Dart)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_dart", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-flail", - "fields": { - "name": "Vicious Weapon (Flail)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_flail", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-glaive", - "fields": { - "name": "Vicious Weapon (Glaive)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_glaive", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-greataxe", - "fields": { - "name": "Vicious Weapon (Greataxe)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greataxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-greatclub", - "fields": { - "name": "Vicious Weapon (Greatclub)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatclub", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-greatsword", - "fields": { - "name": "Vicious Weapon (Greatsword)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-halberd", - "fields": { - "name": "Vicious Weapon (Halberd)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_halberd", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-handaxe", - "fields": { - "name": "Vicious Weapon (Handaxe)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_handaxe", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-javelin", - "fields": { - "name": "Vicious Weapon (Javelin)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_javelin", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-lance", - "fields": { - "name": "Vicious Weapon (Lance)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_lance", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-light-hammer", - "fields": { - "name": "Vicious Weapon (Light-Hammer)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_light-hammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-longbow", - "fields": { - "name": "Vicious Weapon (Longbow)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-longsword", - "fields": { - "name": "Vicious Weapon (Longsword)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-mace", - "fields": { - "name": "Vicious Weapon (Mace)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_mace", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-maul", - "fields": { - "name": "Vicious Weapon (Maul)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_maul", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-morningstar", - "fields": { - "name": "Vicious Weapon (Morningstar)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_morningstar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-net", - "fields": { - "name": "Vicious Weapon (Net)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_net", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-pike", - "fields": { - "name": "Vicious Weapon (Pike)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_pike", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-quarterstaff", - "fields": { - "name": "Vicious Weapon (Quarterstaff)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_quarterstaff", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-rapier", - "fields": { - "name": "Vicious Weapon (Rapier)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_rapier", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-scimitar", - "fields": { - "name": "Vicious Weapon (Scimitar)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-shortbow", - "fields": { - "name": "Vicious Weapon (Shortbow)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortbow", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-shortsword", - "fields": { - "name": "Vicious Weapon (Shortsword)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-sickle", - "fields": { - "name": "Vicious Weapon (Sickle)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_sickle", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-sling", - "fields": { - "name": "Vicious Weapon (Sling)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_sling", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-spear", - "fields": { - "name": "Vicious Weapon (Spear)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_spear", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-trident", - "fields": { - "name": "Vicious Weapon (Trident)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_trident", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-war-pick", - "fields": { - "name": "Vicious Weapon (War-Pick)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_war-pick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-warhammer", - "fields": { - "name": "Vicious Weapon (Warhammer)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vicious-weapon-whip", - "fields": { - "name": "Vicious Weapon (Whip)", - "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_viol", - "fields": { - "name": "Viol", - "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "30.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vorpal-sword-greatsword", - "fields": { - "name": "Vorpal Sword (Greatsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_greatsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vorpal-sword-longsword", - "fields": { - "name": "Vorpal Sword (Longsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_longsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vorpal-sword-scimitar", - "fields": { - "name": "Vorpal Sword (Scimitar)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_scimitar", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_vorpal-sword-shortsword", - "fields": { - "name": "Vorpal Sword (Shortsword)", - "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_shortsword", - "armor": null, - "category": "weapon", - "requires_attunement": true, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_wagon", - "fields": { - "name": "Wagon", - "desc": "Drawn vehicle.", - "document": "srd", - "size": "large", - "weight": "400.000", - "armor_class": 0, - "hit_points": 0, - "cost": "35.00", - "weapon": null, - "armor": null, - "category": "drawn-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand", - "fields": { - "name": "Wand", - "desc": "Can be used as an arcane focus.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-binding", - "fields": { - "name": "Wand of Binding", - "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Spells_**. While holding the wand, you can use an action to expend some of its charges to cast one of the following spells (save DC 17): _hold monster_ (5 charges) or _hold person_ (2 charges).\n\n**_Assisted Escape_**. While holding the wand, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained, or you can expend 1 charge and gain advantage on any check you make to escape a grapple.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-enemy-detection", - "fields": { - "name": "Wand of Enemy Detection", - "desc": "This wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For the next minute, you know the direction of the nearest creature hostile to you within 60 feet, but not its distance from you. The wand can sense the presence of hostile creatures that are ethereal, invisible, disguised, or hidden, as well as those in plain sight. The effect ends if you stop holding the wand.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-fear", - "fields": { - "name": "Wand of Fear", - "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Command_**. While holding the wand, you can use an action to expend 1 charge and command another creature to flee or grovel, as with the _command_ spell (save DC 15).\n\n**_Cone of Fear_**. While holding the wand, you can use an action to expend 2 charges, causing the wand's tip to emit a 60-foot cone of amber light. Each creature in the cone must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-fireballs", - "fields": { - "name": "Wand of Fireballs", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _fireball_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-lightning-bolts", - "fields": { - "name": "Wand of Lightning Bolts", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _lightning bolt_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-magic-detection", - "fields": { - "name": "Wand of Magic Detection", - "desc": "This wand has 3 charges. While holding it, you can expend 1 charge as an action to cast the _detect magic_ spell from it. The wand regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-magic-missiles", - "fields": { - "name": "Wand of Magic Missiles", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _magic missile_ spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-paralysis", - "fields": { - "name": "Wand of Paralysis", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cause a thin blue ray to streak from the tip toward a creature you can see within 60 feet of you. The target must succeed on a DC 15 Constitution saving throw or be paralyzed for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a success.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-polymorph", - "fields": { - "name": "Wand of Polymorph", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _polymorph_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-secrets", - "fields": { - "name": "Wand of Secrets", - "desc": "The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges, and if a secret door or trap is within 30 feet of you, the wand pulses and points at the one nearest to you. The wand regains 1d3 expended charges daily at dawn.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-the-war-mage-1", - "fields": { - "name": "Wand of the War Mage (+1)", - "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-the-war-mage-2", - "fields": { - "name": "Wand of the War Mage (+2)", - "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-the-war-mage-3", - "fields": { - "name": "Wand of the War Mage (+3)", - "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": true, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-web", - "fields": { - "name": "Wand of Web", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _web_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wand-of-wonder", - "fields": { - "name": "Wand of Wonder", - "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and choose a target within 120 feet of you. The target can be a creature, an object, or a point in space. Roll d100 and consult the following table to discover what happens.\n\nIf the effect causes you to cast a spell from the wand, the spell's save DC is 15. If the spell normally has a range expressed in feet, its range becomes 120 feet if it isn't already.\n\nIf an effect covers an area, you must center the spell on and include the target. If an effect has multiple possible subjects, the GM randomly determines which ones are affected.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into dust and is destroyed.\n\n| d100 | Effect |\n|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| 01-05 | You cast slow. 06-10 You cast faerie fire. |\n| 11-15 | You are stunned until the start of your next turn, believing something awesome just happened. 16-20 You cast gust of wind. |\n| 21-25 | You cast detect thoughts on the target you chose. If you didn't target a creature, you instead take 1d6 psychic damage. |\n| 26-30 | You cast stinking cloud. |\n| 31-33 | Heavy rain falls in a 60-foot radius centered on the target. The area becomes lightly obscured. The rain falls until the start of your next turn. |\n| 34-36 | An animal appears in the unoccupied space nearest the target. The animal isn't under your control and acts as it normally would. Roll a d100 to determine which animal appears. On a 01-25, a rhinoceros appears; on a 26-50, an elephant appears; and on a 51-100, a rat appears. |\n| 37-46 | You cast lightning bolt. |\n| 47-49 | A cloud of 600 oversized butterflies fills a 30-foot radius centered on the target. The area becomes heavily obscured. The butterflies remain for 10 minutes. |\n| 50-53 | You enlarge the target as if you had cast enlarge/reduce. If the target can't be affected by that spell, or if you didn't target a creature, you become the target. |\n| 54-58 | You cast darkness. |\n| 59-62 | Grass grows on the ground in a 60-foot radius centered on the target. If grass is already there, it grows to ten times its normal size and remains overgrown for 1 minute. |\n| 63-65 | An object of the GM's choice disappears into the Ethereal Plane. The object must be neither worn nor carried, within 120 feet of the target, and no larger than 10 feet in any dimension. |\n| 66-69 | You shrink yourself as if you had cast enlarge/reduce on yourself. |\n| 70-79 | You cast fireball. |\n| 80-84 | You cast invisibility on yourself. |\n| 85-87 | Leaves grow from the target. If you chose a point in space as the target, leaves sprout from the creature nearest to that point. Unless they are picked off, the leaves turn brown and fall off after 24 hours. |\n| 88-90 | A stream of 1d4 × 10 gems, each worth 1 gp, shoots from the wand's tip in a line 30 feet long and 5 feet wide. Each gem deals 1 bludgeoning damage, and the total damage of the gems is divided equally among all creatures in the line. |\n| 91-95 | A burst of colorful shimmering light extends from you in a 30-foot radius. You and each creature in the area that can see must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. |\n| 96-97 | The target's skin turns bright blue for 1d10 days. If you chose a point in space, the creature nearest to that point is affected. |\n| 98-100 | If you targeted a creature, it must make a DC 15 Constitution saving throw. If you didn't target a creature, you become the target and must make the saving throw. If the saving throw fails by 5 or more, the target is instantly petrified. On any other failed save, the target is restrained and begins to turn to stone. While restrained in this way, the target must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the target is freed by the greater restoration spell or similar magic. |", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_war-pick", - "fields": { - "name": "War pick", - "desc": "A war pick.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "srd_war-pick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_war-pick-1", - "fields": { - "name": "War-Pick (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_war-pick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_war-pick-2", - "fields": { - "name": "War-Pick (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_war-pick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_war-pick-3", - "fields": { - "name": "War-Pick (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_war-pick", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_warhammer", - "fields": { - "name": "Warhammer", - "desc": "A warhammer.", - "document": "srd", - "size": "tiny", - "weight": "2.000", - "armor_class": 0, - "hit_points": 0, - "cost": "15.00", - "weapon": "srd_warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_warhammer-1", - "fields": { - "name": "Warhammer (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_warhammer-2", - "fields": { - "name": "Warhammer (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_warhammer-3", - "fields": { - "name": "Warhammer (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_warhammer", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_warship", - "fields": { - "name": "Warship", - "desc": "Waterborne vehicle. Speed 2.5mph", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "25000.00", - "weapon": null, - "armor": null, - "category": "waterborne-vehicle", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_waterskin", - "fields": { - "name": "Waterskin", - "desc": "For drinking. 5lb is the full weight. Capacity: 4 pints liquid.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.20", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_weavers-tools", - "fields": { - "name": "Weaver's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_well-of-many-worlds", - "fields": { - "name": "Well of Many Worlds", - "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold and place the _well of many worlds_ on a solid surface, whereupon it creates a two-way portal to another world or plane of existence. Each time the item opens a portal, the GM decides where it leads. You can use an action to close an open portal by taking hold of the edges of the cloth and folding it up. Once _well of many worlds_ has opened a portal, it can't do so again for 1d8 hours.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "legendary" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wheat", - "fields": { - "name": "Wheat", - "desc": "1 pound of wheat.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "trade-good", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_whetstone", - "fields": { - "name": "Whetstone", - "desc": "For sharpening.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.01", - "weapon": null, - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_whip", - "fields": { - "name": "Whip", - "desc": "A whip.", - "document": "srd", - "size": "tiny", - "weight": "3.000", - "armor_class": 0, - "hit_points": 0, - "cost": "2.00", - "weapon": "srd_whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_whip-1", - "fields": { - "name": "Whip (+1)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_whip-2", - "fields": { - "name": "Whip (+2)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_whip-3", - "fields": { - "name": "Whip (+3)", - "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": null, - "weapon": "srd_whip", - "armor": null, - "category": "weapon", - "requires_attunement": false, - "rarity": "very-rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wind-fan", - "fields": { - "name": "Wind Fan", - "desc": "While holding this fan, you can use an action to cast the _gust of wind_ spell (save DC 13) from it. Once used, the fan shouldn't be used again until the next dawn. Each time it is used again before then, it has a cumulative 20 percent chance of not working and tearing into useless, nonmagical tatters.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": false, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_winged-boots", - "fields": { - "name": "Winged Boots", - "desc": "While you wear these boots, you have a flying speed equal to your walking speed. You can use the boots to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land.\r\n\r\nThe boots regain 2 hours of flying capability for every 12 hours they aren't in use.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "uncommon" - } - }, - { - "model": "api_v2.item", - "pk": "srd_wings-of-flying", - "fields": { - "name": "Wings of Flying", - "desc": "While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of bat wings or bird wings on your back for 1 hour or until you repeat the command word as an action. The wings give you a flying speed of 60 feet. When they disappear, you can't use them again for 1d12 hours.\r\n\r\n\r\n\r\n\r\n## Sentient Magic Items\r\n\r\nSome magic items possess sentience and personality. Such an item might be possessed, haunted by the spirit of a previous owner, or self-aware thanks to the magic used to create it. In any case, the item behaves like a character, complete with personality quirks, ideals, bonds, and sometimes flaws. A sentient item might be a cherished ally to its wielder or a continual thorn in the side.\r\n\r\nMost sentient items are weapons. Other kinds of items can manifest sentience, but consumable items such as potions and scrolls are never sentient.\r\n\r\nSentient magic items function as NPCs under the GM's control. Any activated property of the item is under the item's control, not its wielder's. As long as the wielder maintains a good relationship with the item, the wielder can access those properties normally. If the relationship is strained, the item can suppress its activated properties or even turn them against the wielder.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "0.00", - "weapon": null, - "armor": null, - "category": "wondrous-item", - "requires_attunement": true, - "rarity": "rare" - } - }, - { - "model": "api_v2.item", - "pk": "srd_woodcarvers-tools", - "fields": { - "name": "Woodcarver's tools", - "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", - "document": "srd", - "size": "tiny", - "weight": "5.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1.00", - "weapon": null, - "armor": null, - "category": "tools", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_wooden-staff", - "fields": { - "name": "Wooden staff", - "desc": "Can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "4.000", - "armor_class": 0, - "hit_points": 0, - "cost": "5.00", - "weapon": "srd_quarterstaff", - "armor": null, - "category": "adventuring-gear", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_wyvern-poison", - "fields": { - "name": "Wyvern poison", - "desc": "This poison must be harvested from a dead or incapacitated wyvern. A creature subjected to this poison must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 0, - "hit_points": 0, - "cost": "1200.00", - "weapon": null, - "armor": null, - "category": "poison", - "requires_attunement": false, - "rarity": null - } - }, - { - "model": "api_v2.item", - "pk": "srd_yew-wand", - "fields": { - "name": "Yew wand", - "desc": "Can be used as a druidic focus.", - "document": "srd", - "size": "tiny", - "weight": "1.000", - "armor_class": 0, - "hit_points": 0, - "cost": "10.00", - "weapon": null, - "armor": null, - "category": "wand", - "requires_attunement": false, - "rarity": null - } - } -] \ No newline at end of file +{ + "model": "api_v2.item", + "pk": "srd_abacus", + "fields": { + "name": "Abacus", + "desc": "An abacus.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_acid", + "fields": { + "name": "Acid", + "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_acid-vial", + "fields": { + "name": "Acid (vial)", + "desc": "As an action, you can splash the contents of this vial onto a creature within 5 feet of you or throw the vial up to 20 feet, shattering it on impact. In either case, make a ranged attack against a creature or object, treating the acid as an improvised weapon. On a hit, the target takes 2d6 acid damage.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-breastplate", + "fields": { + "name": "Adamantine Armor (Breastplate)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-chain-mail", + "fields": { + "name": "Adamantine Armor (Chain-Mail)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-chain-shirt", + "fields": { + "name": "Adamantine Armor (Chain-Shirt)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-half-plate", + "fields": { + "name": "Adamantine Armor (Half-Plate)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-hide", + "fields": { + "name": "Adamantine Armor (Hide)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-plate", + "fields": { + "name": "Adamantine Armor (Plate)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-ring-mail", + "fields": { + "name": "Adamantine Armor (Ring-Mail)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-scale-mail", + "fields": { + "name": "Adamantine Armor (Scale-Mail)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_adamantine-armor-splint", + "fields": { + "name": "Adamantine Armor (Splint)", + "desc": "This suit of armor is reinforced with adamantine, one of the hardest substances in existence. While you're wearing it, any critical hit against you becomes a normal hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_splint", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_alchemists-fire-flask", + "fields": { + "name": "Alchemist's Fire (Flask)", + "desc": "This sticky, adhesive fluid ignites when exposed to air. As an action, you can throw this flask up to 20 feet, shattering it on impact. Make a ranged attack against a creature or object, treating the alchemist's fire as an improvised weapon. On a hit, the target takes 1d4 fire damage at the start of each of its turns. A creature can end this damage by using its action to make a DC 10 Dexterity check to extinguish the flames.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_alchemists-supplies", + "fields": { + "name": "Alchemist's Supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_amulet", + "fields": { + "name": "Amulet", + "desc": "Can be used as a holy symbol.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_amulet-of-health", + "fields": { + "name": "Amulet of Health", + "desc": "Your Constitution score is 19 while you wear this amulet. It has no effect on you if your Constitution is already 19 or higher.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_amulet-of-proof-against-detection-and-location", + "fields": { + "name": "Amulet of Proof against Detection and Location", + "desc": "While wearing this amulet, you are hidden from divination magic. You can't be targeted by such magic or perceived through magical scrying sensors.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_amulet-of-the-planes", + "fields": { + "name": "Amulet of the Planes", + "desc": "While wearing this amulet, you can use an action to name a location that you are familiar with on another plane of existence. Then make a DC 15 Intelligence check. On a successful check, you cast the _plane shift_ spell. On a failure, you and each creature and object within 15 feet of you travel to a random destination. Roll a d100. On a 1-60, you travel to a random location on the plane you named. On a 61-100, you travel to a randomly determined plane of existence.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_animated-shield", + "fields": { + "name": "Animated Shield", + "desc": "While holding this shield, you can speak its command word as a bonus action to cause it to animate. The shield leaps into the air and hovers in your space to protect you as if you were wielding it, leaving your hands free. The shield remains animated for 1 minute, until you use a bonus action to end this effect, or until you are incapacitated or die, at which point the shield falls to the ground or into your hand if you have one free.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_antitoxin-vial", + "fields": { + "name": "Antitoxin (Vial)", + "desc": "A creature that drinks this vial of liquid gains advantage on saving throws against poison for 1 hour. It confers no benefit to undead or constructs.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_apparatus-of-the-crab", + "fields": { + "name": "Apparatus of the Crab", + "desc": "This item first appears to be a Large sealed iron barrel weighing 500 pounds. The barrel has a hidden catch, which can be found with a successful DC 20 Intelligence (Investigation) check. Releasing the catch unlocks a hatch at one end of the barrel, allowing two Medium or smaller creatures to crawl inside. Ten levers are set in a row at the far end, each in a neutral position, able to move either up or down. When certain levers are used, the apparatus transforms to resemble a giant lobster.\r\n\r\nThe apparatus of the Crab is a Large object with the following statistics:\r\n\r\n**Armor Class:** 20\r\n\r\n**Hit Points:** 200\r\n\r\n**Speed:** 30 ft., swim 30 ft. (or 0 ft. for both if the legs and tail aren't extended)\r\n\r\n**Damage Immunities:** poison, psychic\r\n\r\nTo be used as a vehicle, the apparatus requires one pilot. While the apparatus's hatch is closed, the compartment is airtight and watertight. The compartment holds enough air for 10 hours of breathing, divided by the number of breathing creatures inside.\r\n\r\nThe apparatus floats on water. It can also go underwater to a depth of 900 feet. Below that, the vehicle takes 2d6 bludgeoning damage per minute from pressure.\r\n\r\nA creature in the compartment can use an action to move as many as two of the apparatus's levers up or down. After each use, a lever goes back to its neutral position. Each lever, from left to right, functions as shown in the Apparatus of the Crab Levers table.\r\n\r\n**Apparatus of the Crab Levers (table)**\r\n\r\n| Lever | Up | Down |\r\n|-------|----------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 1 | Legs and tail extend, allowing the apparatus to walk and swim. | Legs and tail retract, reducing the apparatus's speed to 0 and making it unable to benefit from bonuses to speed. |\r\n| 2 | Forward window shutter opens. | Forward window shutter closes. |\r\n| 3 | Side window shutters open (two per side). | Side window shutters close (two per side). |\r\n| 4 | Two claws extend from the front sides of the apparatus. | The claws retract. |\r\n| 5 | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: 7 (2d6) bludgeoning damage. | Each extended claw makes the following melee weapon attack: +8 to hit, reach 5 ft., one target. Hit: The target is grappled (escape DC 15). |\r\n| 6 | The apparatus walks or swims forward. | The apparatus walks or swims backward. |\r\n| 7 | The apparatus turns 90 degrees left. | The apparatus turns 90 degrees right. |\r\n| 8 | Eyelike fixtures emit bright light in a 30-foot radius and dim light for an additional 30 feet. | The light turns off. |\r\n| 9 | The apparatus sinks as much as 20 feet in liquid. | The apparatus rises up to 20 feet in liquid. |\r\n| 10 | The rear hatch unseals and opens. | The rear hatch closes and seals. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_armor-of-invulnerability", + "fields": { + "name": "Armor of Invulnerability", + "desc": "You have resistance to nonmagical damage while you wear this armor. Additionally, you can use an action to make yourself immune to nonmagical damage for 10 minutes or until you are no longer wearing the armor. Once this special action is used, it can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_armor-of-resistance-leather", + "fields": { + "name": "Armor of Resistance (Leather)", + "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_leather", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_armor-of-resistance-padded", + "fields": { + "name": "Armor of Resistance (Padded)", + "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_padded", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_armor-of-resistance-studded-leather", + "fields": { + "name": "Armor of Resistance (Studded-Leather)", + "desc": "You have resistance to one type of damage while you wear this armor. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_studded-leather", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_armor-of-vulnerability", + "fields": { + "name": "Armor of Vulnerability", + "desc": "While wearing this armor, you have resistance to one of the following damage types: bludgeoning, piercing, or slashing. The GM chooses the type or determines it randomly.\n\n**_Curse_**. This armor is cursed, a fact that is revealed only when an _identify_ spell is cast on the armor or you attune to it. Attuning to the armor curses you until you are targeted by the _remove curse_ spell or similar magic; removing the armor fails to end the curse. While cursed, you have vulnerability to two of the three damage types associated with the armor (not the one to which it grants resistance).", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_arrow-bow", + "fields": { + "name": "Arrow (bow)", + "desc": "An arrow for a bow.", + "document": "srd", + "size": "tiny", + "weight": "0.050", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_arrow-catching-shield", + "fields": { + "name": "Arrow-Catching Shield", + "desc": "You gain a +2 bonus to AC against ranged attacks while you wield this shield. This bonus is in addition to the shield's normal bonus to AC. In addition, whenever an attacker makes a ranged attack against a target within 5 feet of you, you can use your reaction to become the target of the attack instead.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_arrow-of-slaying", + "fields": { + "name": "Arrow of Slaying", + "desc": "An _arrow of slaying_ is a magic weapon meant to slay a particular kind of creature. Some are more focused than others; for example, there are both _arrows of dragon slaying_ and _arrows of blue dragon slaying_. If a creature belonging to the type, race, or group associated with an _arrow of slaying_ takes damage from the arrow, the creature must make a DC 17 Constitution saving throw, taking an extra 6d10 piercing damage on a failed save, or half as much extra damage on a successful one.\\n\\nOnce an _arrow of slaying_ deals its extra damage to a creature, it becomes a nonmagical arrow.\\n\\nOther types of magic ammunition of this kind exist, such as _bolts of slaying_ meant for a crossbow, though arrows are most common.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_assassins-blood", + "fields": { + "name": "Assassin's Blood", + "desc": "A creature subjected to this poison must make a DC 10 Constitution saving throw. On a failed save, it takes 6 (1d12) poison damage and is poisoned for 24 hours. On a successful save, the creature takes half damage and isn't poisoned.\\n\\n\r\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "150.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_backpack", + "fields": { + "name": "Backpack", + "desc": "A backpack. Capacity: 1 cubic foot/30 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bag-of-beans", + "fields": { + "name": "Bag of Beans", + "desc": "Inside this heavy cloth bag are 3d4 dry beans. The bag weighs 1/2 pound plus 1/4 pound for each bean it contains.\r\n\r\nIf you dump the bag's contents out on the ground, they explode in a 10-foot radius, extending from the beans. Each creature in the area, including you, must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one. The fire ignites flammable objects in the area that aren't being worn or carried.\r\n\r\nIf you remove a bean from the bag, plant it in dirt or sand, and then water it, the bean produces an effect 1 minute later from the ground where it was planted. The GM can choose an effect from the following table, determine it randomly, or create an effect.\r\n\r\n| d100 | Effect |\r\n|-------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01 | 5d4 toadstools sprout. If a creature eats a toadstool, roll any die. On an odd roll, the eater must succeed on a DC 15 Constitution saving throw or take 5d6 poison damage and become poisoned for 1 hour. On an even roll, the eater gains 5d6 temporary hit points for 1 hour. |\r\n| 02-10 | A geyser erupts and spouts water, beer, berry juice, tea, vinegar, wine, or oil (GM's choice) 30 feet into the air for 1d12 rounds. |\r\n| 11-20 | A treant sprouts. There's a 50 percent chance that the treant is chaotic evil and attacks. |\r\n| 21-30 | An animate, immobile stone statue in your likeness rises. It makes verbal threats against you. If you leave it and others come near, it describes you as the most heinous of villains and directs the newcomers to find and attack you. If you are on the same plane of existence as the statue, it knows where you are. The statue becomes inanimate after 24 hours. |\r\n| 31-40 | A campfire with blue flames springs forth and burns for 24 hours (or until it is extinguished). |\r\n| 41-50 | 1d6 + 6 shriekers sprout |\r\n| 51-60 | 1d4 + 8 bright pink toads crawl forth. Whenever a toad is touched, it transforms into a Large or smaller monster of the GM's choice. The monster remains for 1 minute, then disappears in a puff of bright pink smoke. |\r\n| 61-70 | A hungry bulette burrows up and attacks. 71-80 A fruit tree grows. It has 1d10 + 20 fruit, 1d8 of which act as randomly determined magic potions, while one acts as an ingested poison of the GM's choice. The tree vanishes after 1 hour. Picked fruit remains, retaining any magic for 30 days. |\r\n| 81-90 | A nest of 1d4 + 3 eggs springs up. Any creature that eats an egg must make a DC 20 Constitution saving throw. On a successful save, a creature permanently increases its lowest ability score by 1, randomly choosing among equally low scores. On a failed save, the creature takes 10d6 force damage from an internal magical explosion. |\r\n| 91-99 | A pyramid with a 60-foot-square base bursts upward. Inside is a sarcophagus containing a mummy lord. The pyramid is treated as the mummy lord's lair, and its sarcophagus contains treasure of the GM's choice. |\r\n| 100 | A giant beanstalk sprouts, growing to a height of the GM's choice. The top leads where the GM chooses, such as to a great view, a cloud giant's castle, or a different plane of existence. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bag-of-devouring", + "fields": { + "name": "Bag of Devouring", + "desc": "This bag superficially resembles a _bag of holding_ but is a feeding orifice for a gigantic extradimensional creature. Turning the bag inside out closes the orifice.\r\n\r\nThe extradimensional creature attached to the bag can sense whatever is placed inside the bag. Animal or vegetable matter placed wholly in the bag is devoured and lost forever. When part of a living creature is placed in the bag, as happens when someone reaches inside it, there is a 50 percent chance that the creature is pulled inside the bag. A creature inside the bag can use its action to try to escape with a successful DC 15 Strength check. Another creature can use its action to reach into the bag to pull a creature out, doing so with a successful DC 20 Strength check (provided it isn't pulled inside the bag first). Any creature that starts its turn inside the bag is devoured, its body destroyed.\r\n\r\nInanimate objects can be stored in the bag, which can hold a cubic foot of such material. However, once each day, the bag swallows any objects inside it and spits them out into another plane of existence. The GM determines the time and plane.\r\n\r\nIf the bag is pierced or torn, it is destroyed, and anything contained within it is transported to a random location on the Astral Plane.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bag-of-holding", + "fields": { + "name": "Bag of Holding", + "desc": "This bag has an interior space considerably larger than its outside dimensions, roughly 2 feet in diameter at the mouth and 4 feet deep. The bag can hold up to 500 pounds, not exceeding a volume of 64 cubic feet. The bag weighs 15 pounds, regardless of its contents. Retrieving an item from the bag requires an action.\r\n\r\nIf the bag is overloaded, pierced, or torn, it ruptures and is destroyed, and its contents are scattered in the Astral Plane. If the bag is turned inside out, its contents spill forth, unharmed, but the bag must be put right before it can be used again. Breathing creatures inside the bag can survive up to a number of minutes equal to 10 divided by the number of creatures (minimum 1 minute), after which time they begin to suffocate.\r\n\r\nPlacing a _bag of holding_ inside an extradimensional space created by a _handy haversack_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it to a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bag-of-tricks", + "fields": { + "name": "Bag of Tricks", + "desc": "This ordinary bag, made from gray, rust, or tan cloth, appears empty. Reaching inside the bag, however, reveals the presence of a small, fuzzy object. The bag weighs 1/2 pound.\r\n\r\nYou can use an action to pull the fuzzy object from the bag and throw it up to 20 feet. When the object lands, it transforms into a creature you determine by rolling a d8 and consulting the table that corresponds to the bag's color.\r\n\r\nThe creature is friendly to you and your companions, and it acts on your turn. You can use a bonus action to command how the creature moves and what action it takes on its next turn, or to give it general orders, such as to attack your enemies. In the absence of such orders, the creature acts in a fashion appropriate to its nature.\r\n\r\nOnce three fuzzy objects have been pulled from the bag, the bag can't be used again until the next dawn.\r\n\r\n**Gray Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Weasel |\r\n| 2 | Giant rat |\r\n| 3 | Badger |\r\n| 4 | Boar |\r\n| 5 | Panther |\r\n| 6 | Giant badger |\r\n| 7 | Dire wolf |\r\n| 8 | Giant elk |\r\n\r\n**Rust Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|------------|\r\n| 1 | Rat |\r\n| 2 | Owl |\r\n| 3 | Mastiff |\r\n| 4 | Goat |\r\n| 5 | Giant goat |\r\n| 6 | Giant boar |\r\n| 7 | Lion |\r\n| 8 | Brown bear |\r\n\r\n**Tan Bag of Tricks (table)**\r\n\r\n| d8 | Creature |\r\n|----|--------------|\r\n| 1 | Jackal |\r\n| 2 | Ape |\r\n| 3 | Baboon |\r\n| 4 | Axe beak |\r\n| 5 | Black bear |\r\n| 6 | Giant weasel |\r\n| 7 | Giant hyena |\r\n| 8 | Tiger |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bagpipes", + "fields": { + "name": "Bagpipes", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ball-bearings-bag-of-1000", + "fields": { + "name": "Ball Bearings (bag of 1000)", + "desc": "As an action, you can spill these tiny metal balls from their pouch to cover a level, square area that is 10 feet on a side. A creature moving across the covered area must succeed on a DC 10 Dexterity saving throw or fall prone. A creature moving through the area at half speed doesn't need to make the save.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_barrel", + "fields": { + "name": "Barrel", + "desc": "A barrel. Capacity: 40 gallons liquid, 4 cubic feet solid.", + "document": "srd", + "size": "medium", + "weight": "70.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_basket", + "fields": { + "name": "Basket", + "desc": "A basket. Capacity: 2 cubic feet/40 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.40", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_battleaxe", + "fields": { + "name": "Battleaxe", + "desc": "A battleaxe.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "srd_battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_battleaxe-1", + "fields": { + "name": "Battleaxe (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_battleaxe-2", + "fields": { + "name": "Battleaxe (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_battleaxe-3", + "fields": { + "name": "Battleaxe (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bead-of-force", + "fields": { + "name": "Bead of Force", + "desc": "This small black sphere measures 3/4 of an inch in diameter and weighs an ounce. Typically, 1d4 + 4 _beads of force_ are found together.\r\n\r\nYou can use an action to throw the bead up to 60 feet. The bead explodes on impact and is destroyed. Each creature within a 10-foot radius of where the bead landed must succeed on a DC 15 Dexterity saving throw or take 5d4 force damage. A sphere of transparent force then encloses the area for 1 minute. Any creature that failed the save and is completely within the area is trapped inside this sphere. Creatures that succeeded on the save, or are partially within the area, are pushed away from the center of the sphere until they are no longer inside it. Only breathable air can pass through the sphere's wall. No attack or other effect can.\r\n\r\nAn enclosed creature can use its action to push against the sphere's wall, moving the sphere up to half the creature's walking speed. The sphere can be picked up, and its magic causes it to weigh only 1 pound, regardless of the weight of creatures inside.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bedroll", + "fields": { + "name": "Bedroll", + "desc": "A bedroll.", + "document": "srd", + "size": "tiny", + "weight": "7.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bell", + "fields": { + "name": "Bell", + "desc": "A bell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-cloud-giant-strength", + "fields": { + "name": "Belt of Cloud Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-dwarvenkind", + "fields": { + "name": "Belt of Dwarvenkind", + "desc": "While wearing this belt, you gain the following benefits:\r\n\r\n* Your Constitution score increases by 2, to a maximum of 20.\r\n* You have advantage on Charisma (Persuasion) checks made to interact with dwarves.\r\n\r\nIn addition, while attuned to the belt, you have a 50 percent chance each day at dawn of growing a full beard if you're capable of growing one, or a visibly thicker beard if you already have one.\r\n\r\nIf you aren't a dwarf, you gain the following additional benefits while wearing the belt:\r\n\r\n* You have advantage on saving throws against poison, and you have resistance against poison damage.\r\n* You have darkvision out to a range of 60 feet.\r\n* You can speak, read, and write Dwarvish.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-fire-giant-strength", + "fields": { + "name": "Belt of Fire Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-frost-giant-strength", + "fields": { + "name": "Belt of Frost Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-hill-giant-strength", + "fields": { + "name": "Belt of Hill Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-stone-giant-strength", + "fields": { + "name": "Belt of Stone Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_belt-of-storm-giant-strength", + "fields": { + "name": "Belt of Storm Giant Strength", + "desc": "While wearing this belt, your Strength score changes to a score granted by the belt. If your Strength is already equal to or greater than the belt's score, the item has no effect on you.\\n\\nSix varieties of this belt exist, corresponding with and having rarity according to the six kinds of true giants. The _belt of stone giant strength_ and the _belt of frost giant strength_ look different, but they have the same effect.\\n\\n| Type | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Rare |\\n| Stone/frost giant | 23 | Very rare |\\n| Fire giant | 25 | Very rare |\\n| Cloud giant | 27 | Legendary |\\n| Storm giant | 29 | Legendary |\"", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_blanket", + "fields": { + "name": "Blanket", + "desc": "A blanket.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_block-and-tackle", + "fields": { + "name": "Block and Tackle", + "desc": "A set of pulleys with a cable threaded through them and a hook to attach to objects, a block and tackle allows you to hoist up to four times the weight you can normally lift.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_blowgun", + "fields": { + "name": "Blowgun", + "desc": "A blowgun.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "srd_blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_blowgun-1", + "fields": { + "name": "Blowgun (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_blowgun-2", + "fields": { + "name": "Blowgun (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_blowgun-3", + "fields": { + "name": "Blowgun (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_blowgun-needles", + "fields": { + "name": "Blowgun needles", + "desc": "Needles to be fired with a blowgun.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_book", + "fields": { + "name": "Book", + "desc": "A book might contain poetry, historical accounts, information pertaining to a particular field of lore, diagrams and notes on gnomish contraptions, or just about anything else that can be represented using text or pictures. A book of spells is a spellbook (described later in this section).", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_boots-of-elvenkind", + "fields": { + "name": "Boots of Elvenkind", + "desc": "While you wear these boots, your steps make no sound, regardless of the surface you are moving across. You also have advantage on Dexterity (Stealth) checks that rely on moving silently.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_boots-of-levitation", + "fields": { + "name": "Boots of Levitation", + "desc": "While you wear these boots, you can use an action to cast the _levitate_ spell on yourself at will.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_boots-of-speed", + "fields": { + "name": "Boots of Speed", + "desc": "While you wear these boots, you can use a bonus action and click the boots' heels together. If you do, the boots double your walking speed, and any creature that makes an opportunity attack against you has disadvantage on the attack roll. If you click your heels together again, you end the effect.\r\n\r\nWhen the boots' property has been used for a total of 10 minutes, the magic ceases to function until you finish a long rest.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_boots-of-striding-and-springing", + "fields": { + "name": "Boots of Striding and Springing", + "desc": "While you wear these boots, your walking speed becomes 30 feet, unless your walking speed is higher, and your speed isn't reduced if you are encumbered or wearing heavy armor. In addition, you can jump three times the normal distance, though you can't jump farther than your remaining movement would allow.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_boots-of-the-winterlands", + "fields": { + "name": "Boots of the Winterlands", + "desc": "These furred boots are snug and feel quite warm. While you wear them, you gain the following benefits:\r\n\r\n* You have resistance to cold damage.\r\n* You ignore difficult terrain created by ice or snow.\r\n* You can tolerate temperatures as low as -50 degrees Fahrenheit without any additional protection. If you wear heavy clothes, you can tolerate temperatures as low as -100 degrees Fahrenheit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bottle-glass", + "fields": { + "name": "Bottle, glass", + "desc": "A glass bottle. Capacity: 1.5 pints liquid.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bowl-of-commanding-water-elementals", + "fields": { + "name": "Bowl of Commanding Water Elementals", + "desc": "While this bowl is filled with water, you can use an action to speak the bowl's command word and summon a water elemental, as if you had cast the _conjure elemental_ spell. The bowl can't be used this way again until the next dawn.\r\n\r\nThe bowl is about 1 foot in diameter and half as deep. It weighs 3 pounds and holds about 3 gallons.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bracers-of-archery", + "fields": { + "name": "Bracers of Archery", + "desc": "While wearing these bracers, you have proficiency with the longbow and shortbow, and you gain a +2 bonus to damage rolls on ranged attacks made with such weapons.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bracers-of-defense", + "fields": { + "name": "Bracers of Defense", + "desc": "While wearing these bracers, you gain a +2 bonus to AC if you are wearing no armor and using no shield.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_brazier-of-commanding-fire-elementals", + "fields": { + "name": "Brazier of Commanding Fire Elementals", + "desc": "While a fire burns in this brass brazier, you can use an action to speak the brazier's command word and summon a fire elemental, as if you had cast the _conjure elemental_ spell. The brazier can't be used this way again until the next dawn.\r\n\r\nThe brazier weighs 5 pounds.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_breastplate", + "fields": { + "name": "Breastplate", + "desc": "This armor consists of a fitted metal chest piece worn with supple leather. Although it leaves the legs and arms relatively unprotected, this armor provides good protection for the wearer's vital organs while leaving the wearer relatively unencumbered.", + "document": "srd", + "size": "tiny", + "weight": "20.000", + "armor_class": 0, + "hit_points": 0, + "cost": "400.00", + "weapon": null, + "armor": "srd_breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_brewers-supplies", + "fields": { + "name": "Brewer's Supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "9.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_brooch-of-shielding", + "fields": { + "name": "Brooch of Shielding", + "desc": "While wearing this brooch, you have resistance to force damage, and you have immunity to damage from the _magic missile_ spell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_broom-of-flying", + "fields": { + "name": "Broom of Flying", + "desc": "This wooden broom, which weighs 3 pounds, functions like a mundane broom until you stand astride it and speak its command word. It then hovers beneath you and can be ridden in the air. It has a flying speed of 50 feet. It can carry up to 400 pounds, but its flying speed becomes 30 feet while carrying over 200 pounds. The broom stops hovering when you land.\r\n\r\nYou can send the broom to travel alone to a destination within 1 mile of you if you speak the command word, name the location, and are familiar with that place. The broom comes back to you when you speak another command word, provided that the broom is still within 1 mile of you.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_bucket", + "fields": { + "name": "Bucket", + "desc": "A bucket. Capacity: 3 gallons liquid, 1/2 cubic foot solid.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_burnt-othur-fumes", + "fields": { + "name": "Burnt othur fumes", + "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or take 10 (3d6) poison damage, and must repeat the saving throw at the start of each of its turns. On each successive failed save, the character takes 3 (1d6) poison damage. After three successful saves, the poison ends.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "500.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_calligraphers-supplies", + "fields": { + "name": "Calligrapher's supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_caltrops-bag-of-20", + "fields": { + "name": "Caltrops (bag of 20)", + "desc": "As an action, you can spread a bag of caltrops to cover a square area that is 5 feet on a side. Any creature that enters the area must succeed on a DC 15 Dexterity saving throw or stop moving this turn and take 1 piercing damage. Taking this damage reduces the creature's walking speed by 10 feet until the creature regains at least 1 hit point. A creature moving through the area at half speed doesn't need to make the save.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_candle", + "fields": { + "name": "Candle", + "desc": "For 1 hour, a candle sheds bright light in a 5-foot radius and dim light for an additional 5 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_candle-of-invocation", + "fields": { + "name": "Candle of Invocation", + "desc": "This slender taper is dedicated to a deity and shares that deity's alignment. The candle's alignment can be detected with the _detect evil and good_ spell. The GM chooses the god and associated alignment or determines the alignment randomly.\r\n\r\n| d20 | Alignment |\r\n|-------|-----------------|\r\n| 1-2 | Chaotic evil |\r\n| 3-4 | Chaotic neutral |\r\n| 5-7 | Chaotic good |\r\n| 8-9 | Neutral evil |\r\n| 10-11 | Neutral |\r\n| 12-13 | Neutral good |\r\n| 14-15 | Lawful evil |\r\n| 16-17 | Lawful neutral |\r\n| 18-20 | Lawful good |\r\n\r\nThe candle's magic is activated when the candle is lit, which requires an action. After burning for 4 hours, the candle is destroyed. You can snuff it out early for use at a later time. Deduct the time it burned in increments of 1 minute from the candle's total burn time.\r\n\r\nWhile lit, the candle sheds dim light in a 30-foot radius. Any creature within that light whose alignment matches that of the candle makes attack rolls, saving throws, and ability checks with advantage. In addition, a cleric or druid in the light whose alignment matches the candle's can cast 1st* level spells he or she has prepared without expending spell slots, though the spell's effect is as if cast with a 1st-level slot.\r\n\r\nAlternatively, when you light the candle for the first time, you can cast the _gate_ spell with it. Doing so destroys the candle.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_canvas", + "fields": { + "name": "Canvas", + "desc": "1 sq. yd. of canvas", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cape-of-the-mountebank", + "fields": { + "name": "Cape of the Mountebank", + "desc": "This cape smells faintly of brimstone. While wearing it, you can use it to cast the _dimension door_ spell as an action. This property of the cape can't be used again until the next dawn.\r\n\r\nWhen you disappear, you leave behind a cloud of smoke, and you appear in a similar cloud of smoke at your destination. The smoke lightly obscures the space you left and the space you appear in, and it dissipates at the end of your next turn. A light or stronger wind disperses the smoke.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_carpenters-tools", + "fields": { + "name": "Carpenter's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "8.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_carpet-of-flying", + "fields": { + "name": "Carpet of Flying", + "desc": "You can speak the carpet's command word as an action to make the carpet hover and fly. It moves according to your spoken directions, provided that you are within 30 feet of it.\r\n\r\nFour sizes of _carpet of flying_ exist. The GM chooses the size of a given carpet or determines it randomly.\r\n\r\n| d100 | Size | Capacity | Flying Speed |\r\n|--------|---------------|----------|--------------|\r\n| 01-20 | 3 ft. × 5 ft. | 200 lb. | 80 feet |\r\n| 21-55 | 4 ft. × 6 ft. | 400 lb. | 60 feet |\r\n| 56-80 | 5 ft. × 7 ft. | 600 lb. | 40 feet |\r\n| 81-100 | 6 ft. × 9 ft. | 800 lb. | 30 feet |\r\n\r\nA carpet can carry up to twice the weight shown on the table, but it flies at half speed if it carries more than its normal capacity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_carriage", + "fields": { + "name": "Carriage", + "desc": "Drawn vehicle.", + "document": "srd", + "size": "huge", + "weight": "600.000", + "armor_class": 0, + "hit_points": 0, + "cost": "100.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cart", + "fields": { + "name": "Cart", + "desc": "Drawn vehicle", + "document": "srd", + "size": "large", + "weight": "200.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cartographers-tools", + "fields": { + "name": "Cartographer's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_case-crossbow-bolt", + "fields": { + "name": "Case, Crossbow Bolt", + "desc": "This wooden case can hold up to twenty crossbow bolts.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_case-map-or-scroll", + "fields": { + "name": "Case, Map or Scroll", + "desc": "This cylindrical leather case can hold up to ten rolled-up sheets of paper or five rolled-up sheets of parchment.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_censer-of-controlling-air-elementals", + "fields": { + "name": "Censer of Controlling Air Elementals", + "desc": "While incense is burning in this censer, you can use an action to speak the censer's command word and summon an air elemental, as if you had cast the _conjure elemental_ spell. The censer can't be used this way again until the next dawn.\r\n\r\nThis 6-inch-wide, 1-foot-high vessel resembles a chalice with a decorated lid. It weighs 1 pound.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chain-10-feet", + "fields": { + "name": "Chain (10 feet)", + "desc": "A chain has 10 hit points. It can be burst with a successful DC 20 Strength check.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chain-mail", + "fields": { + "name": "Chain mail", + "desc": "Made of interlocking metal rings, chain mail includes a layer of quilted fabric worn underneath the mail to prevent chafing and to cushion the impact of blows. The suit includes gauntlets.", + "document": "srd", + "size": "tiny", + "weight": "55.000", + "armor_class": 0, + "hit_points": 0, + "cost": "75.00", + "weapon": null, + "armor": "srd_chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chain-shirt", + "fields": { + "name": "Chain shirt", + "desc": "Made of interlocking metal rings, a chain shirt is worn between layers of clothing or leather. This armor offers modest protection to the wearer's upper body and allows the sound of the rings rubbing against one another to be muffled by outer layers.", + "document": "srd", + "size": "tiny", + "weight": "20.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": "srd_chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chalk-1-piece", + "fields": { + "name": "Chalk (1 piece)", + "desc": "A piece of chalk.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chariot", + "fields": { + "name": "Chariot", + "desc": "Drawn vehicle.", + "document": "srd", + "size": "large", + "weight": "100.000", + "armor_class": 0, + "hit_points": 0, + "cost": "250.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chest", + "fields": { + "name": "Chest", + "desc": "A chest. Capacity: 12 cubic feet/300 pounds of gear.", + "document": "srd", + "size": "small", + "weight": "25.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chicken", + "fields": { + "name": "Chicken", + "desc": "One chicken", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_chime-of-opening", + "fields": { + "name": "Chime of Opening", + "desc": "This hollow metal tube measures about 1 foot long and weighs 1 pound. You can strike it as an action, pointing it at an object within 120 feet of you that can be opened, such as a door, lid, or lock. The chime issues a clear tone, and one lock or latch on the object opens unless the sound can't reach the object. If no locks or latches remain, the object itself opens.\r\n\r\nThe chime can be used ten times. After the tenth time, it cracks and becomes useless.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cinnamon", + "fields": { + "name": "Cinnamon", + "desc": "1lb of cinnamon", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_circlet-of-blasting", + "fields": { + "name": "Circlet of Blasting", + "desc": "While wearing this circlet, you can use an action to cast the _scorching ray_ spell with it. When you make the spell's attacks, you do so with an attack bonus of +5. The circlet can't be used this way again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_climbers-kit", + "fields": { + "name": "Climber's Kit", + "desc": "A climber's kit includes special pitons, boot tips, gloves, and a harness. You can use the climber's kit as an action to anchor yourself; when you do, you can't fall more than 25 feet from the point where you anchored yourself, and you can't climb more than 25 feet away from that point without undoing the anchor.", + "document": "srd", + "size": "tiny", + "weight": "12.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloak-of-arachnida", + "fields": { + "name": "Cloak of Arachnida", + "desc": "This fine garment is made of black silk interwoven with faint silvery threads. While wearing it, you gain the following benefits:\r\n\r\n* You have resistance to poison damage.\r\n* You have a climbing speed equal to your walking speed.\r\n* You can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free.\r\n* You can't be caught in webs of any sort and can move through webs as if they were difficult terrain.\r\n* You can use an action to cast the _web_ spell (save DC 13). The web created by the spell fills twice its normal area. Once used, this property of the cloak can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloak-of-displacement", + "fields": { + "name": "Cloak of Displacement", + "desc": "While you wear this cloak, it projects an illusion that makes you appear to be standing in a place near your actual location, causing any creature to have disadvantage on attack rolls against you. If you take damage, the property ceases to function until the start of your next turn. This property is suppressed while you are incapacitated, restrained, or otherwise unable to move.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloak-of-elvenkind", + "fields": { + "name": "Cloak of Elvenkind", + "desc": "While you wear this cloak with its hood up, Wisdom (Perception) checks made to see you have disadvantage, and you have advantage on Dexterity (Stealth) checks made to hide, as the cloak's color shifts to camouflage you. Pulling the hood up or down requires an action.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloak-of-protection", + "fields": { + "name": "Cloak of Protection", + "desc": "You gain a +1 bonus to AC and saving throws while you wear this cloak.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloak-of-the-bat", + "fields": { + "name": "Cloak of the Bat", + "desc": "While wearing this cloak, you have advantage on Dexterity (Stealth) checks. In an area of dim light or darkness, you can grip the edges of the cloak with both hands and use it to fly at a speed of 40 feet. If you ever fail to grip the cloak's edges while flying in this way, or if you are no longer in dim light or darkness, you lose this flying speed.\r\n\r\nWhile wearing the cloak in an area of dim light or darkness, you can use your action to cast _polymorph_ on yourself, transforming into a bat. While you are in the form of the bat, you retain your Intelligence, Wisdom, and Charisma scores. The cloak can't be used this way again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloak-of-the-manta-ray", + "fields": { + "name": "Cloak of the Manta Ray", + "desc": "While wearing this cloak with its hood up, you can breathe underwater, and you have a swimming speed of 60 feet. Pulling the hood up or down requires an action.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_clothes-common", + "fields": { + "name": "Clothes, Common", + "desc": "Common clothes.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_clothes-costume", + "fields": { + "name": "Clothes, costume", + "desc": "A costume.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_clothes-fine", + "fields": { + "name": "Clothes, fine", + "desc": "Fine clothing.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_clothes-travelers", + "fields": { + "name": "Clothes, traveler's", + "desc": "Traveler's clothing.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cloves", + "fields": { + "name": "Cloves", + "desc": "1lb of cloves.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "3.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_club", + "fields": { + "name": "Club", + "desc": "A club", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": "srd_club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_club-1", + "fields": { + "name": "Club (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_club-2", + "fields": { + "name": "Club (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_club-3", + "fields": { + "name": "Club (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cobblers-tools", + "fields": { + "name": "Cobbler's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_component-pouch", + "fields": { + "name": "Component Pouch", + "desc": "A component pouch is a small, watertight leather belt pouch that has compartments to hold all the material components and other special items you need to cast your spells, except for those components that have a specific cost (as indicated in a spell's description).", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cooks-utensils", + "fields": { + "name": "Cook's utensils", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_copper", + "fields": { + "name": "Copper", + "desc": "1lb of copper.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_copper-piece", + "fields": { + "name": "Copper Piece", + "desc": "One silver piece is worth ten copper pieces, which are common among laborers and beggars. A single copper piece buys a candle, a torch, or a piece of chalk.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cotton-cloth", + "fields": { + "name": "Cotton Cloth", + "desc": "1 sq. yd. of cotton cloth.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cow", + "fields": { + "name": "Cow", + "desc": "One cow.", + "document": "srd", + "size": "large", + "weight": "1000.000", + "armor_class": 10, + "hit_points": 15, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crawler-mucus", + "fields": { + "name": "Crawler mucus", + "desc": "This poison must be harvested from a dead or incapacitated crawler. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. The poisoned creature is paralyzed. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\\n\\n\r\n**_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-bolt", + "fields": { + "name": "Crossbow bolt", + "desc": "Bolts to be used in a crossbow.", + "document": "srd", + "size": "tiny", + "weight": "0.080", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-hand", + "fields": { + "name": "Crossbow, hand", + "desc": "A hand crossbow.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "75.00", + "weapon": "srd_crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-hand-1", + "fields": { + "name": "Crossbow-Hand (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-hand-2", + "fields": { + "name": "Crossbow-Hand (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-hand-3", + "fields": { + "name": "Crossbow-Hand (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-heavy", + "fields": { + "name": "Crossbow, heavy", + "desc": "A heavy crossbow", + "document": "srd", + "size": "tiny", + "weight": "18.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": "srd_crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-heavy-1", + "fields": { + "name": "Crossbow-Heavy (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-heavy-2", + "fields": { + "name": "Crossbow-Heavy (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-heavy-3", + "fields": { + "name": "Crossbow-Heavy (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-light", + "fields": { + "name": "Crossbow, light", + "desc": "A light crossbow.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "srd_crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-light-1", + "fields": { + "name": "Crossbow-Light (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-light-2", + "fields": { + "name": "Crossbow-Light (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crossbow-light-3", + "fields": { + "name": "Crossbow-Light (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crowbar", + "fields": { + "name": "Crowbar", + "desc": "Using a crowbar grants advantage to Strength checks where the crowbar's leverage can be applied.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crystal", + "fields": { + "name": "Crystal", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crystal-ball", + "fields": { + "name": "Crystal Ball", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crystal-ball-of-mind-reading", + "fields": { + "name": "Crystal Ball of Mind Reading", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nYou can use an action to cast the detect thoughts spell (save DC 17) while you are scrying with the crystal ball, targeting creatures you can see within 30 feet of the spell's sensor. You don't need to concentrate on this detect thoughts to maintain it during its duration, but it ends if scrying ends.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crystal-ball-of-telepathy", + "fields": { + "name": "Crystal Ball of Telepathy", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nThe following crystal ball variants are legendary items and have additional properties.\r\n\r\nWhile scrying with the crystal ball, you can communicate telepathically with creatures you can see within 30 feet of the spell's sensor. You can also use an action to cast the suggestion spell (save DC 17) through the sensor on one of those creatures. You don't need to concentrate on this suggestion to maintain it during its duration, but it ends if scrying ends. Once used, the suggestion power of the crystal ball can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_crystal-ball-of-true-seeing", + "fields": { + "name": "Crystal Ball of True Seeing", + "desc": "The typical crystal ball, a very rare item, is about 6 inches in diameter. While touching it, you can cast the scrying spell (save DC 17) with it.\r\n\r\nWhile scrying with the crystal ball, you have truesight with a radius of 120 feet centered on the spell's sensor.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cube-of-force", + "fields": { + "name": "Cube of Force", + "desc": "This cube is about an inch across. Each face has a distinct marking on it that can be pressed. The cube starts with 36 charges, and it regains 1d20 expended charges daily at dawn.\r\n\r\nYou can use an action to press one of the cube's faces, expending a number of charges based on the chosen face, as shown in the Cube of Force Faces table. Each face has a different effect. If the cube has insufficient charges remaining, nothing happens. Otherwise, a barrier of invisible force springs into existence, forming a cube 15 feet on a side. The barrier is centered on you, moves with you, and lasts for 1 minute, until you use an action to press the cube's sixth face, or the cube runs out of charges. You can change the barrier's effect by pressing a different face of the cube and expending the requisite number of charges, resetting the duration.\r\n\r\nIf your movement causes the barrier to come into contact with a solid object that can't pass through the cube, you can't move any closer to that object as long as the barrier remains.\r\n\r\n**Cube of Force Faces (table)**\r\n\r\n| Face | Charges | Effect |\r\n|------|---------|-------------------------------------------------------------------------------------------------------------------|\r\n| 1 | 1 | Gases, wind, and fog can't pass through the barrier. |\r\n| 2 | 2 | Nonliving matter can't pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 3 | 3 | Living matter can't pass through the barrier. |\r\n| 4 | 4 | Spell effects can't pass through the barrier. |\r\n| 5 | 5 | Nothing can pass through the barrier. Walls, floors, and ceilings can pass through at your discretion. |\r\n| 6 | 0 | The barrier deactivates. |\r\n\r\nThe cube loses charges when the barrier is targeted by certain spells or comes into contact with certain spell or magic item effects, as shown in the table below.\r\n\r\n| Spell or Item | Charges Lost |\r\n|------------------|--------------|\r\n| Disintegrate | 1d12 |\r\n| Horn of blasting | 1d10 |\r\n| Passwall | 1d6 |\r\n| Prismatic spray | 1d20 |\r\n| Wall of fire | 1d4 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_cubic-gate", + "fields": { + "name": "Cubic Gate", + "desc": "This cube is 3 inches across and radiates palpable magical energy. The six sides of the cube are each keyed to a different plane of existence, one of which is the Material Plane. The other sides are linked to planes determined by the GM.\r\n\r\nYou can use an action to press one side of the cube to cast the _gate_ spell with it, opening a portal to the plane keyed to that side. Alternatively, if you use an action to press one side twice, you can cast the _plane shift_ spell (save DC 17) with the cube and transport the targets to the plane keyed to that side.\r\n\r\nThe cube has 3 charges. Each use of the cube expends 1 charge. The cube regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dagger", + "fields": { + "name": "Dagger", + "desc": "A dagger.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": "srd_dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dagger-1", + "fields": { + "name": "Dagger (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dagger-2", + "fields": { + "name": "Dagger (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dagger-3", + "fields": { + "name": "Dagger (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dagger-of-venom", + "fields": { + "name": "Dagger of Venom", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nYou can use an action to cause thick, black poison to coat the blade. The poison remains for 1 minute or until an attack using this weapon hits a creature. That creature must succeed on a DC 15 Constitution saving throw or take 2d10 poison damage and become poisoned for 1 minute. The dagger can't be used this way again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dancing-sword-greatsword", + "fields": { + "name": "Dancing Sword (Greatsword)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dancing-sword-longsword", + "fields": { + "name": "Dancing Sword (Longsword)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dancing-sword-rapier", + "fields": { + "name": "Dancing Sword (Rapier)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dancing-sword-shortsword", + "fields": { + "name": "Dancing Sword (Shortsword)", + "desc": "You can use a bonus action to toss this magic sword into the air and speak the command word. When you do so, the sword begins to hover, flies up to 30 feet, and attacks one creature of your choice within 5 feet of it. The sword uses your attack roll and ability score modifier to damage rolls.\n\nWhile the sword hovers, you can use a bonus action to cause it to fly up to 30 feet to another spot within 30 feet of you. As part of the same bonus action, you can cause the sword to attack one creature within 5 feet of it.\n\nAfter the hovering sword attacks for the fourth time, it flies up to 30 feet and tries to return to your hand. If you have no hand free, it falls to the ground at your feet. If the sword has no unobstructed path to you, it moves as close to you as it can and then falls to the ground. It also ceases to hover if you grasp it or move more than 30 feet away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dart", + "fields": { + "name": "Dart", + "desc": "A dart.", + "document": "srd", + "size": "tiny", + "weight": "0.250", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": "srd_dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dart-1", + "fields": { + "name": "Dart (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dart-2", + "fields": { + "name": "Dart (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dart-3", + "fields": { + "name": "Dart (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_decanter-of-endless-water", + "fields": { + "name": "Decanter of Endless Water", + "desc": "This stoppered flask sloshes when shaken, as if it contains water. The decanter weighs 2 pounds.\r\n\r\nYou can use an action to remove the stopper and speak one of three command words, whereupon an amount of fresh water or salt water (your choice) pours out of the flask. The water stops pouring out at the start of your next turn. Choose from the following options:\r\n\r\n* \"Stream\" produces 1 gallon of water.\r\n* \"Fountain\" produces 5 gallons of water.\r\n* \"Geyser\" produces 30 gallons of water that gushes forth in a geyser 30 feet long and 1 foot wide. As a bonus action while holding the decanter, you can aim the geyser at a creature you can see within 30 feet of you. The target must succeed on a DC 13 Strength saving throw or take 1d4 bludgeoning damage and fall prone. Instead of a creature, you can target an object that isn't being worn or carried and that weighs no more than 200 pounds. The object is either knocked over or pushed up to 15 feet away from you.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_deck-of-illusions", + "fields": { + "name": "Deck of Illusions", + "desc": "This box contains a set of parchment cards. A full deck has 34 cards. A deck found as treasure is usually missing 1d20 - 1 cards.\r\n\r\nThe magic of the deck functions only if cards are drawn at random (you can use an altered deck of playing cards to simulate the deck). You can use an action to draw a card at random from the deck and throw it to the ground at a point within 30 feet of you.\r\n\r\nAn illusion of one or more creatures forms over the thrown card and remains until dispelled. An illusory creature appears real, of the appropriate size, and behaves as if it were a real creature except that it can do no harm. While you are within 120 feet of the illusory creature and can see it, you can use an action to move it magically anywhere within 30 feet of its card. Any physical interaction with the illusory creature reveals it to be an illusion, because objects pass through it. Someone who uses an action to visually inspect the creature identifies it as illusory with a successful DC 15 Intelligence (Investigation) check. The creature then appears translucent.\r\n\r\nThe illusion lasts until its card is moved or the illusion is dispelled. When the illusion ends, the image on its card disappears, and that card can't be used again.\r\n\r\n| Playing Card | Illusion |\r\n|-------------------|----------------------------------|\r\n| Ace of hearts | Red dragon |\r\n| King of hearts | Knight and four guards |\r\n| Queen of hearts | Succubus or incubus |\r\n| Jack of hearts | Druid |\r\n| Ten of hearts | Cloud giant |\r\n| Nine of hearts | Ettin |\r\n| Eight of hearts | Bugbear |\r\n| Two of hearts | Goblin |\r\n| Ace of diamonds | Beholder |\r\n| King of diamonds | Archmage and mage apprentice |\r\n| Queen of diamonds | Night hag |\r\n| Jack of diamonds | Assassin |\r\n| Ten of diamonds | Fire giant |\r\n| Nine of diamonds | Ogre mage |\r\n| Eight of diamonds | Gnoll |\r\n| Two of diamonds | Kobold |\r\n| Ace of spades | Lich |\r\n| King of spades | Priest and two acolytes |\r\n| Queen of spades | Medusa |\r\n| Jack of spades | Veteran |\r\n| Ten of spades | Frost giant |\r\n| Nine of spades | Troll |\r\n| Eight of spades | Hobgoblin |\r\n| Two of spades | Goblin |\r\n| Ace of clubs | Iron golem |\r\n| King of clubs | Bandit captain and three bandits |\r\n| Queen of clubs | Erinyes |\r\n| Jack of clubs | Berserker |\r\n| Ten of clubs | Hill giant |\r\n| Nine of clubs | Ogre |\r\n| Eight of clubs | Orc |\r\n| Two of clubs | Kobold |\r\n| Jokers (2) | You (the deck's owner) |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_deck-of-many-things", + "fields": { + "name": "Deck of Many Things", + "desc": "Usually found in a box or pouch, this deck contains a number of cards made of ivory or vellum. Most (75 percent) of these decks have only thirteen cards, but the rest have twenty-two.\r\n\r\nBefore you draw a card, you must declare how many cards you intend to draw and then draw them randomly (you can use an altered deck of playing cards to simulate the deck). Any cards drawn in excess of this number have no effect. Otherwise, as soon as you draw a card from the deck, its magic takes effect. You must draw each card no more than 1 hour after the previous draw. If you fail to draw the chosen number, the remaining number of cards fly from the deck on their own and take effect all at once.\r\n\r\nOnce a card is drawn, it fades from existence. Unless the card is the Fool or the Jester, the card reappears in the deck, making it possible to draw the same card twice.\r\n\r\n| Playing Card | Card |\r\n|--------------------|-------------|\r\n| Ace of diamonds | Vizier\\* |\r\n| King of diamonds | Sun |\r\n| Queen of diamonds | Moon |\r\n| Jack of diamonds | Star |\r\n| Two of diamonds | Comet\\* |\r\n| Ace of hearts | The Fates\\* |\r\n| King of hearts | Throne |\r\n| Queen of hearts | Key |\r\n| Jack of hearts | Knight |\r\n| Two of hearts | Gem\\* |\r\n| Ace of clubs | Talons\\* |\r\n| King of clubs | The Void |\r\n| Queen of clubs | Flames |\r\n| Jack of clubs | Skull |\r\n| Two of clubs | Idiot\\* |\r\n| Ace of spades | Donjon\\* |\r\n| King of spades | Ruin |\r\n| Queen of spades | Euryale |\r\n| Jack of spades | Rogue |\r\n| Two of spades | Balance\\* |\r\n| Joker (with TM) | Fool\\* |\r\n| Joker (without TM) | Jester |\r\n\r\n\\*Found only in a deck with twenty-two cards\r\n\r\n**_Balance_**. Your mind suffers a wrenching alteration, causing your alignment to change. Lawful becomes chaotic, good becomes evil, and vice versa. If you are true neutral or unaligned, this card has no effect on you.\r\n\r\n**_Comet_**. If you single-handedly defeat the next hostile monster or group of monsters you encounter, you gain experience points enough to gain one level. Otherwise, this card has no effect.\r\n\r\n**_Donjon_**. You disappear and become entombed in a state of suspended animation in an extradimensional sphere. Everything you were wearing and carrying stays behind in the space you occupied when you disappeared. You remain imprisoned until you are found and removed from the sphere. You can't be located by any divination magic, but a _wish_ spell can reveal the location of your prison. You draw no more cards.\r\n\r\n**_Euryale_**. The card's medusa-like visage curses you. You take a -2 penalty on saving throws while cursed in this way. Only a god or the magic of The Fates card can end this curse.\r\n\r\n**_The Fates_**. Reality's fabric unravels and spins anew, allowing you to avoid or erase one event as if it never happened. You can use the card's magic as soon as you draw the card or at any other time before you die.\r\n\r\n**_Flames_**. A powerful devil becomes your enemy. The devil seeks your ruin and plagues your life, savoring your suffering before attempting to slay you. This enmity lasts until either you or the devil dies.\r\n\r\n**_Fool_**. You lose 10,000 XP, discard this card, and draw from the deck again, counting both draws as one of your declared draws. If losing that much XP would cause you to lose a level, you instead lose an amount that leaves you with just enough XP to keep your level.\r\n\r\n**_Gem_**. Twenty-five pieces of jewelry worth 2,000 gp each or fifty gems worth 1,000 gp each appear at your feet.\r\n\r\n**_Idiot_**. Permanently reduce your Intelligence by 1d4 + 1 (to a minimum score of 1). You can draw one additional card beyond your declared draws.\r\n\r\n**_Jester_**. You gain 10,000 XP, or you can draw two additional cards beyond your declared draws.\r\n\r\n**_Key_**. A rare or rarer magic weapon with which you are proficient appears in your hands. The GM chooses the weapon.\r\n\r\n**_Knight_**. You gain the service of a 4th-level fighter who appears in a space you choose within 30 feet of you. The fighter is of the same race as you and serves you loyally until death, believing the fates have drawn him or her to you. You control this character.\r\n\r\n**_Moon_**. You are granted the ability to cast the _wish_ spell 1d3 times.\r\n\r\n**_Rogue_**. A nonplayer character of the GM's choice becomes hostile toward you. The identity of your new enemy isn't known until the NPC or someone else reveals it. Nothing less than a _wish_ spell or divine intervention can end the NPC's hostility toward you.\r\n\r\n**_Ruin_**. All forms of wealth that you carry or own, other than magic items, are lost to you. Portable property vanishes. Businesses, buildings, and land you own are lost in a way that alters reality the least. Any documentation that proves you should own something lost to this card also disappears.\r\n\r\n**_Skull_**. You summon an avatar of death-a ghostly humanoid skeleton clad in a tattered black robe and carrying a spectral scythe. It appears in a space of the GM's choice within 10 feet of you and attacks you, warning all others that you must win the battle alone. The avatar fights until you die or it drops to 0 hit points, whereupon it disappears. If anyone tries to help you, the helper summons its own avatar of death. A creature slain by an avatar of death can't be restored to life.\r\n\r\n#", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_defender-greatsword", + "fields": { + "name": "Defender (Greatsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_defender-longsword", + "fields": { + "name": "Defender (Longsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_defender-rapier", + "fields": { + "name": "Defender (Rapier)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_defender-shortsword", + "fields": { + "name": "Defender (Shortsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon.\n\nThe first time you attack with the sword on each of your turns, you can transfer some or all of the sword's bonus to your Armor Class, instead of using the bonus on any attacks that turn. For example, you could reduce the bonus to your attack and damage rolls to +1 and gain a +2 bonus to AC. The adjusted bonuses remain in effect until the start of your next turn, although you must hold the sword to gain a bonus to AC from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_demon-armor", + "fields": { + "name": "Demon Armor", + "desc": "While wearing this armor, you gain a +1 bonus to AC, and you can understand and speak Abyssal. In addition, the armor's clawed gauntlets turn unarmed strikes with your hands into magic weapons that deal slashing damage, with a +1 bonus to attack rolls and damage rolls and a damage die of 1d8.\n\n**_Curse_**. Once you don this cursed armor, you can't doff it unless you are targeted by the _remove curse_ spell or similar magic. While wearing the armor, you have disadvantage on attack rolls against demons and on saving throws against their spells and special abilities.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dice-set", + "fields": { + "name": "Dice set", + "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dimensional-shackles", + "fields": { + "name": "Dimensional Shackles", + "desc": "You can use an action to place these shackles on an incapacitated creature. The shackles adjust to fit a creature of Small to Large size. In addition to serving as mundane manacles, the shackles prevent a creature bound by them from using any method of extradimensional movement, including teleportation or travel to a different plane of existence. They don't prevent the creature from passing through an interdimensional portal.\r\n\r\nYou and any creature you designate when you use the shackles can use an action to remove them. Once every 30 days, the bound creature can make a DC 30 Strength (Athletics) check. On a success, the creature breaks free and destroys the shackles.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_disguise-kit", + "fields": { + "name": "Disguise kit", + "desc": "This pouch of cosmetics, hair dye, and small props lets you create disguises that change your physical appearance. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a visual disguise.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dragon-scale-mail", + "fields": { + "name": "Dragon Scale Mail", + "desc": "Dragon scale mail is made of the scales of one kind of dragon. Sometimes dragons collect their cast-off scales and gift them to humanoids. Other times, hunters carefully skin and preserve the hide of a dead dragon. In either case, dragon scale mail is highly valued.\r\n\r\nWhile wearing this armor, you gain a +1 bonus to AC, you have advantage on saving throws against the Frightful Presence and breath weapons of dragons, and you have resistance to one damage type that is determined by the kind of dragon that provided the scales (see the table).\r\n\r\nAdditionally, you can focus your senses as an action to magically discern the distance and direction to the closest dragon within 30 miles of you that is of the same type as the armor. This special action can't be used again until the next dawn.\r\n\r\n| Dragon | Resistance |\r\n|--------|------------|\r\n| Black | Acid |\r\n| Blue | Lightning |\r\n| Brass | Fire |\r\n| Bronze | Lightning |\r\n| Copper | Acid |\r\n| Gold | Fire |\r\n| Green | Poison |\r\n| Red | Fire |\r\n| Silver | Cold |\r\n| White | Cold |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": "srd_scale-mail", + "category": "armor", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dragon-slayer-greatsword", + "fields": { + "name": "Dragon Slayer (Greatsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dragon-slayer-longsword", + "fields": { + "name": "Dragon Slayer (Longsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dragon-slayer-rapier", + "fields": { + "name": "Dragon Slayer (Rapier)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dragon-slayer-shortsword", + "fields": { + "name": "Dragon Slayer (Shortsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a dragon with this weapon, the dragon takes an extra 3d6 damage of the weapon's type. For the purpose of this weapon, \"dragon\" refers to any creature with the dragon type, including dragon turtles and wyverns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_drow-poison", + "fields": { + "name": "Drow poison", + "desc": "This poison is typically made only by the drow, and only in a place far removed from sunlight. A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the creature is also unconscious while poisoned in this way. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\r\n\\n\\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_drum", + "fields": { + "name": "Drum", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "6.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dulcimer", + "fields": { + "name": "Dulcimer", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dust-of-disappearance", + "fields": { + "name": "Dust of Disappearance", + "desc": "Found in a small packet, this powder resembles very fine sand. There is enough of it for one use. When you use an action to throw the dust into the air, you and each creature and object within 10 feet of you become invisible for 2d4 minutes. The duration is the same for all subjects, and the dust is consumed when its magic takes effect. If a creature affected by the dust attacks or casts a spell, the invisibility ends for that creature.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dust-of-dryness", + "fields": { + "name": "Dust of Dryness", + "desc": "This small packet contains 1d6 + 4 pinches of dust. You can use an action to sprinkle a pinch of it over water. The dust turns a cube of water 15 feet on a side into one marble-sized pellet, which floats or rests near where the dust was sprinkled. The pellet's weight is negligible.\r\n\r\nSomeone can use an action to smash the pellet against a hard surface, causing the pellet to shatter and release the water the dust absorbed. Doing so ends that pellet's magic.\r\n\r\nAn elemental composed mostly of water that is exposed to a pinch of the dust must make a DC 13 Constitution saving throw, taking 10d6 necrotic damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dust-of-sneezing-and-choking", + "fields": { + "name": "Dust of Sneezing and Choking", + "desc": "Found in a small container, this powder resembles very fine sand. It appears to be _dust of disappearance_, and an _identify_ spell reveals it to be such. There is enough of it for one use.\r\n\r\nWhen you use an action to throw a handful of the dust into the air, you and each creature that needs to breathe within 30 feet of you must succeed on a DC 15 Constitution saving throw or become unable to breathe, while sneezing uncontrollably. A creature affected in this way is incapacitated and suffocating. As long as it is conscious, a creature can repeat the saving throw at the end of each of its turns, ending the effect on it on a success. The _lesser restoration_ spell can also end the effect on a creature.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dwarven-plate", + "fields": { + "name": "Dwarven Plate", + "desc": "While wearing this armor, you gain a +2 bonus to AC. In addition, if an effect moves you against your will along the ground, you can use your reaction to reduce the distance you are moved by up to 10 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_dwarven-thrower", + "fields": { + "name": "Dwarven Thrower", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. It has the thrown property with a normal range of 20 feet and a long range of 60 feet. When you hit with a ranged attack using this weapon, it deals an extra 1d8 damage or, if the target is a giant, 2d8 damage. Immediately after the attack, the weapon flies back to your hand.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_efficient-quiver", + "fields": { + "name": "Efficient Quiver", + "desc": "Each of the quiver's three compartments connects to an extradimensional space that allows the quiver to hold numerous items while never weighing more than 2 pounds. The shortest compartment can hold up to sixty arrows, bolts, or similar objects. The midsize compartment holds up to eighteen javelins or similar objects. The longest compartment holds up to six long objects, such as bows, quarterstaffs, or spears.\r\n\r\nYou can draw any item the quiver contains as if doing so from a regular quiver or scabbard.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_efreeti-bottle", + "fields": { + "name": "Efreeti Bottle", + "desc": "This painted brass bottle weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke flows out of the bottle. At the end of your turn, the smoke disappears with a flash of harmless fire, and an efreeti appears in an unoccupied space within 30 feet of you.\r\n\r\nThe first time the bottle is opened, the GM rolls to determine what happens.\r\n\r\n| d100 | Effect |\r\n|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-10 | The efreeti attacks you. After fighting for 5 rounds, the efreeti disappears, and the bottle loses its magic. |\r\n| 11-90 | The efreeti serves you for 1 hour, doing as you command. Then the efreeti returns to the bottle, and a new stopper contains it. The stopper can't be removed for 24 hours. The next two times the bottle is opened, the same effect occurs. If the bottle is opened a fourth time, the efreeti escapes and disappears, and the bottle loses its magic. |\r\n| 91-100 | The efreeti can cast the wish spell three times for you. It disappears when it grants the final wish or after 1 hour, and the bottle loses its magic. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_electrum-piece", + "fields": { + "name": "Electrum Piece", + "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_elemental-gem", + "fields": { + "name": "Elemental Gem", + "desc": "This gem contains a mote of elemental energy. When you use an action to break the gem, an elemental is summoned as if you had cast the _conjure elemental_ spell, and the gem's magic is lost. The type of gem determines the elemental summoned by the spell.\r\n\r\n| Gem | Summoned Elemental |\r\n|----------------|--------------------|\r\n| Blue sapphire | Air elemental |\r\n| Yellow diamond | Earth elemental |\r\n| Red corundum | Fire elemental |\r\n| Emerald | Water elemental |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_elven-chain", + "fields": { + "name": "Elven Chain", + "desc": "You gain a +1 bonus to AC while you wear this armor. You are considered proficient with this armor even if you lack proficiency with medium armor.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_emblem", + "fields": { + "name": "Emblem", + "desc": "Can be used as a holy symbol.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_essense-of-either", + "fields": { + "name": "Essense of either", + "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 8 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage or if another creature takes an action to shake it awake.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "300.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_eversmoking-bottle", + "fields": { + "name": "Eversmoking Bottle", + "desc": "Smoke leaks from the lead-stoppered mouth of this brass bottle, which weighs 1 pound. When you use an action to remove the stopper, a cloud of thick smoke pours out in a 60-foot radius from the bottle. The cloud's area is heavily obscured. Each minute the bottle remains open and within the cloud, the radius increases by 10 feet until it reaches its maximum radius of 120 feet.\r\n\r\nThe cloud persists as long as the bottle is open. Closing the bottle requires you to speak its command word as an action. Once the bottle is closed, the cloud disperses after 10 minutes. A moderate wind (11 to 20 miles per hour) can also disperse the smoke after 1 minute, and a strong wind (21 or more miles per hour) can do so after 1 round.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_eyes-of-charming", + "fields": { + "name": "Eyes of Charming", + "desc": "These crystal lenses fit over the eyes. They have 3 charges. While wearing them, you can expend 1 charge as an action to cast the _charm person_ spell (save DC 13) on a humanoid within 30 feet of you, provided that you and the target can see each other. The lenses regain all expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_eyes-of-minute-seeing", + "fields": { + "name": "Eyes of Minute Seeing", + "desc": "These crystal lenses fit over the eyes. While wearing them, you can see much better than normal out to a range of 1 foot. You have advantage on Intelligence (Investigation) checks that rely on sight while searching an area or studying an object within that range.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_eyes-of-the-eagle", + "fields": { + "name": "Eyes of the Eagle", + "desc": "These crystal lenses fit over the eyes. While wearing them, you have advantage on Wisdom (Perception) checks that rely on sight. In conditions of clear visibility, you can make out details of even extremely distant creatures and objects as small as 2 feet across.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_feather-token", + "fields": { + "name": "Feather Token", + "desc": "This tiny object looks like a feather. Different types of feather tokens exist, each with a different single* use effect. The GM chooses the kind of token or determines it randomly.\r\n\r\n| d100 | Feather Token |\r\n|--------|---------------|\r\n| 01-20 | Anchor |\r\n| 21-35 | Bird |\r\n| 36-50 | Fan |\r\n| 51-65 | Swan boat |\r\n| 66-90 | Tree |\r\n| 91-100 | Whip |\r\n\r\n**_Anchor_**. You can use an action to touch the token to a boat or ship. For the next 24 hours, the vessel can't be moved by any means. Touching the token to the vessel again ends the effect. When the effect ends, the token disappears.\r\n\r\n**_Bird_**. You can use an action to toss the token 5 feet into the air. The token disappears and an enormous, multicolored bird takes its place. The bird has the statistics of a roc, but it obeys your simple commands and can't attack. It can carry up to 500 pounds while flying at its maximum speed (16 miles an hour for a maximum of 144 miles per day, with a one-hour rest for every 3 hours of flying), or 1,000 pounds at half that speed. The bird disappears after flying its maximum distance for a day or if it drops to 0 hit points. You can dismiss the bird as an action.\r\n\r\n**_Fan_**. If you are on a boat or ship, you can use an action to toss the token up to 10 feet in the air. The token disappears, and a giant flapping fan takes its place. The fan floats and creates a wind strong enough to fill the sails of one ship, increasing its speed by 5 miles per hour for 8 hours. You can dismiss the fan as an action.\r\n\r\n**_Swan Boat_**. You can use an action to touch the token to a body of water at least 60 feet in diameter. The token disappears, and a 50-foot-long, 20-foot* wide boat shaped like a swan takes its place. The boat is self-propelled and moves across water at a speed of 6 miles per hour. You can use an action while on the boat to command it to move or to turn up to 90 degrees. The boat can carry up to thirty-two Medium or smaller creatures. A Large creature counts as four Medium creatures, while a Huge creature counts as nine. The boat remains for 24 hours and then disappears. You can dismiss the boat as an action.\r\n\r\n**_Tree_**. You must be outdoors to use this token. You can use an action to touch it to an unoccupied space on the ground. The token disappears, and in its place a nonmagical oak tree springs into existence. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\r\n\r\n**_Whip_**. You can use an action to throw the token to a point within 10 feet of you. The token disappears, and a floating whip takes its place. You can then use a bonus action to make a melee spell attack against a creature within 10 feet of the whip, with an attack bonus of +9. On a hit, the target takes 1d6 + 5 force damage.\r\n\r\nAs a bonus action on your turn, you can direct the whip to fly up to 20 feet and repeat the attack against a creature within 10 feet of it. The whip disappears after 1 hour, when you use an action to dismiss it, or when you are incapacitated or die.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-bronze-griffon", + "fields": { + "name": "Figurine of Wondrous Power (Bronze Griffon)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Bronze Griffon (Rare)_**. This bronze statuette is of a griffon rampant. It can become a griffon for up to 6 hours. Once it has been used, it can't be used again until 5 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-ebony-fly", + "fields": { + "name": "Figurine of Wondrous Power (Ebony Fly)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ebony Fly (Rare)_**. This ebony statuette is carved in the likeness of a horsefly. It can become a giant fly for up to 12 hours and can be ridden as a mount. Once it has been used, it can’t be used again until 2 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-golden-lions", + "fields": { + "name": "Figurine of Wondrous Power (Golden Lions)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Golden Lions (Rare)_**. These gold statuettes of lions are always created in pairs. You can use one figurine or both simultaneously. Each can become a lion for up to 1 hour. Once a lion has been used, it can’t be used again until 7 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-ivory-goats", + "fields": { + "name": "Figurine of Wondrous Power (Ivory Goats)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Ivory Goats (Rare_**.These ivory statuettes of goats are always created in sets of three. Each goat looks unique and functions differently from the others. Their properties are as follows:\\n\\n* The _goat of traveling_ can become a Large goat with the same statistics as a riding horse. It has 24 charges, and each hour or portion thereof it spends in beast form costs 1 charge. While it has charges, you can use it as often as you wish. When it runs out of charges, it reverts to a figurine and can't be used again until 7 days have passed, when it regains all its charges.\\n* The _goat of travail_ becomes a giant goat for up to 3 hours. Once it has been used, it can't be used again until 30 days have passed.\\n* The _goat of terror_ becomes a giant goat for up to 3 hours. The goat can't attack, but you can remove its horns and use them as weapons. One horn becomes a _+1 lance_, and the other becomes a _+2 longsword_. Removing a horn requires an action, and the weapons disappear and the horns return when the goat reverts to figurine form. In addition, the goat radiates a 30-foot-radius aura of terror while you are riding it. Any creature hostile to you that starts its turn in the aura must succeed on a DC 15 Wisdom saving throw or be frightened of the goat for 1 minute, or until the goat reverts to figurine form. The frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Once it successfully saves against the effect, a creature is immune to the goat's aura for the next 24 hours. Once the figurine has been used, it can't be used again until 15 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-marble-elephant", + "fields": { + "name": "Figurine of Wondrous Power (Marble Elephant)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Marble Elephant (Rare)_**. This marble statuette is about 4 inches high and long. It can become an elephant for up to 24 hours. Once it has been used, it can’t be used again until 7 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-obsidian-steed", + "fields": { + "name": "Figurine of Wondrous Power (Obsidian Steed)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Obsidian Steed (Very Rare)_**. This polished obsidian horse can become a nightmare for up to 24 hours. The nightmare fights only to defend itself. Once it has been used, it can't be used again until 5 days have passed.\\n\\nIf you have a good alignment, the figurine has a 10 percent chance each time you use it to ignore your orders, including a command to revert to figurine form. If you mount the nightmare while it is ignoring your orders, you and the nightmare are instantly transported to a random location on the plane of Hades, where the nightmare reverts to figurine form.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-onyx-dog", + "fields": { + "name": "Figurine of Wondrous Power (Onyx Dog)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Onyx Dog (Rare)_**. This onyx statuette of a dog can become a mastiff for up to 6 hours. The mastiff has an Intelligence of 8 and can speak Common. It also has darkvision out to a range of 60 feet and can see invisible creatures and objects within that range. Once it has been used, it can’t be used again until 7 days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-serpentine-owl", + "fields": { + "name": "Figurine of Wondrous Power (Serpentine Owl)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Serpentine Owl (Rare)_**. This serpentine statuette of an owl can become a giant owl for up to 8 hours. Once it has been used, it can’t be used again until 2 days have passed. The owl can telepathically communicate with you at any range if you and it are on the same plane of existence.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_figurine-of-wondrous-power-silver-raven", + "fields": { + "name": "Figurine of Wondrous Power (Silver Raven)", + "desc": "A _figurine of wondrous power_ is a statuette of a beast small enough to fit in a pocket. If you use an action to speak the command word and throw the figurine to a point on the ground within 60 feet of you, the figurine becomes a living creature. If the space where the creature would appear is occupied by other creatures or objects, or if there isn't enough space for the creature, the figurine doesn't become a creature.\\n\\nThe creature is friendly to you and your companions. It understands your languages and obeys your spoken commands. If you issue no commands, the creature defends itself but takes no other actions.\\n\\nThe creature exists for a duration specific to each figurine. At the end of the duration, the creature reverts to its figurine form. It reverts to a figurine early if it drops to 0 hit points or if you use an action to speak the command word again while touching it. When the creature becomes a figurine again, its property can't be used again until a certain amount of time has passed, as specified in the figurine's description.\\n\\n**_Silver Raven (Uncommon)_**. This silver statuette of a raven can become a raven for up to 12 hours. Once it has been used, it can’t be used again until 2 days have passed. While in raven form, the figurine allows you to cast the animal messenger spell on it at will.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_fishing-tackle", + "fields": { + "name": "Fishing Tackle", + "desc": "This kit includes a wooden rod, silken line, corkwood bobbers, steel hooks, lead sinkers, velvet lures, and narrow netting.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flail", + "fields": { + "name": "Flail", + "desc": "A flail.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "srd_flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flail-1", + "fields": { + "name": "Flail (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flail-2", + "fields": { + "name": "Flail (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flail-3", + "fields": { + "name": "Flail (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flame-tongue-greatsword", + "fields": { + "name": "Flame Tongue (Greatsword)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flame-tongue-longsword", + "fields": { + "name": "Flame Tongue (Longsword)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flame-tongue-rapier", + "fields": { + "name": "Flame Tongue (Rapier)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flame-tongue-shortsword", + "fields": { + "name": "Flame Tongue (Shortsword)", + "desc": "You can use a bonus action to speak this magic sword's command word, causing flames to erupt from the blade. These flames shed bright light in a 40-foot radius and dim light for an additional 40 feet. While the sword is ablaze, it deals an extra 2d6 fire damage to any target it hits. The flames last until you use a bonus action to speak the command word again or until you drop or sheathe the sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flask-or-tankard", + "fields": { + "name": "Flask or tankard", + "desc": "For drinking. Capacity: 1 pint liquid.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flour", + "fields": { + "name": "Flour", + "desc": "1lb of flour", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_flute", + "fields": { + "name": "Flute", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_folding-boat", + "fields": { + "name": "Folding Boat", + "desc": "This object appears as a wooden box that measures 12 inches long, 6 inches wide, and 6 inches deep. It weighs 4 pounds and floats. It can be opened to store items inside. This item also has three command words, each requiring you to use an action to speak it.\r\n\r\nOne command word causes the box to unfold into a boat 10 feet long, 4 feet wide, and 2 feet deep. The boat has one pair of oars, an anchor, a mast, and a lateen sail. The boat can hold up to four Medium creatures comfortably.\r\n\r\nThe second command word causes the box to unfold into a ship 24 feet long, 8 feet wide, and 6 feet deep. The ship has a deck, rowing seats, five sets of oars, a steering oar, an anchor, a deck cabin, and a mast with a square sail. The ship can hold fifteen Medium creatures comfortably.\r\n\r\nWhen the box becomes a vessel, its weight becomes that of a normal vessel its size, and anything that was stored in the box remains in the boat.\r\n\r\nThe third command word causes the _folding boat_ to fold back into a box, provided that no creatures are aboard. Any objects in the vessel that can't fit inside the box remain outside the box as it folds. Any objects in the vessel that can fit inside the box do so.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_forgery-kit", + "fields": { + "name": "Forgery kit", + "desc": "This small box contains a variety of papers and parchments, pens and inks, seals and sealing wax, gold and silver leaf, and other supplies necessary to create convincing forgeries of physical documents. \\n\\nProficiency with this kit lets you add your proficiency bonus to any ability checks you make to create a physical forgery of a document.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_frost-brand-greatsword", + "fields": { + "name": "Frost Brand (Greatsword)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_frost-brand-longsword", + "fields": { + "name": "Frost Brand (Longsword)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_frost-brand-rapier", + "fields": { + "name": "Frost Brand (Rapier)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_frost-brand-shortsword", + "fields": { + "name": "Frost Brand (Shortsword)", + "desc": "When you hit with an attack using this magic sword, the target takes an extra 1d6 cold damage. In addition, while you hold the sword, you have resistance to fire damage.\n\nIn freezing temperatures, the blade sheds bright light in a 10-foot radius and dim light for an additional 10 feet.\n\nWhen you draw this weapon, you can extinguish all nonmagical flames within 30 feet of you. This property can be used no more than once per hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_galley", + "fields": { + "name": "Galley", + "desc": "A waterborne vehicle. Speed 4 mph", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gauntlets-of-ogre-power", + "fields": { + "name": "Gauntlets of Ogre Power", + "desc": "Your Strength score is 19 while you wear these gauntlets. They have no effect on you if your Strength is already 19 or higher.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gem-of-brightness", + "fields": { + "name": "Gem of Brightness", + "desc": "This prism has 50 charges. While you are holding it, you can use an action to speak one of three command words to cause one of the following effects:\r\n\r\n* The first command word causes the gem to shed bright light in a 30-foot radius and dim light for an additional 30 feet. This effect doesn't expend a charge. It lasts until you use a bonus action to repeat the command word or until you use another function of the gem.\r\n* The second command word expends 1 charge and causes the gem to fire a brilliant beam of light at one creature you can see within 60 feet of you. The creature must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\r\n* The third command word expends 5 charges and causes the gem to flare with blinding light in a 30* foot cone originating from it. Each creature in the cone must make a saving throw as if struck by the beam created with the second command word.\r\n\r\nWhen all of the gem's charges are expended, the gem becomes a nonmagical jewel worth 50 gp.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gem-of-seeing", + "fields": { + "name": "Gem of Seeing", + "desc": "This gem has 3 charges. As an action, you can speak the gem's command word and expend 1 charge. For the next 10 minutes, you have truesight out to 120 feet when you peer through the gem.\r\n\r\nThe gem regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-battleaxe", + "fields": { + "name": "Giant Slayer (Battleaxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-greataxe", + "fields": { + "name": "Giant Slayer (Greataxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-greatsword", + "fields": { + "name": "Giant Slayer (Greatsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-handaxe", + "fields": { + "name": "Giant Slayer (Handaxe)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-longsword", + "fields": { + "name": "Giant Slayer (Longsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-rapier", + "fields": { + "name": "Giant Slayer (Rapier)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_giant-slayer-shortsword", + "fields": { + "name": "Giant Slayer (Shortsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\nWhen you hit a giant with it, the giant takes an extra 2d6 damage of the weapon's type and must succeed on a DC 15 Strength saving throw or fall prone. For the purpose of this weapon, \"giant\" refers to any creature with the giant type, including ettins and trolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ginger", + "fields": { + "name": "Ginger", + "desc": "1lb of Ginger.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_glaive", + "fields": { + "name": "Glaive", + "desc": "A glaive.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": "srd_glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_glaive-1", + "fields": { + "name": "Glaive (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_glaive-2", + "fields": { + "name": "Glaive (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_glaive-3", + "fields": { + "name": "Glaive (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_glamoured-studded-leather", + "fields": { + "name": "Glamoured Studded Leather", + "desc": "While wearing this armor, you gain a +1 bonus to AC. You can also use a bonus action to speak the armor's command word and cause the armor to assume the appearance of a normal set of clothing or some other kind of armor. You decide what it looks like, including color, style, and accessories, but the armor retains its normal bulk and weight. The illusory appearance lasts until you use this property again or remove the armor.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_glassblowers-tools", + "fields": { + "name": "Glassblower's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gloves-of-missile-snaring", + "fields": { + "name": "Gloves of Missile Snaring", + "desc": "These gloves seem to almost meld into your hands when you don them. When a ranged weapon attack hits you while you're wearing them, you can use your reaction to reduce the damage by 1d10 + your Dexterity modifier, provided that you have a free hand. If you reduce the damage to 0, you can catch the missile if it is small enough for you to hold in that hand.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gloves-of-swimming-and-climbing", + "fields": { + "name": "Gloves of Swimming and Climbing", + "desc": "While wearing these gloves, climbing and swimming don't cost you extra movement, and you gain a +5 bonus to Strength (Athletics) checks made to climb or swim.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_goat", + "fields": { + "name": "Goat", + "desc": "One goat.", + "document": "srd", + "size": "medium", + "weight": "75.000", + "armor_class": 10, + "hit_points": 4, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_goggles-of-night", + "fields": { + "name": "Goggles of Night", + "desc": "While wearing these dark lenses, you have darkvision out to a range of 60 feet. If you already have darkvision, wearing the goggles increases its range by 60 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gold", + "fields": { + "name": "Gold", + "desc": "1lb of gold.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_gold-piece", + "fields": { + "name": "Gold Piece", + "desc": "With one gold piece, a character can buy a bedroll, 50 feet of good rope, or a goat. A skilled (but not exceptional) artisan can earn one gold piece a day. The gold piece is the standard unit of measure for wealth, even if the coin itself is not commonly used. When merchants discuss deals that involve goods or services worth hundreds or thousands of gold pieces, the transactions don't usually involve the exchange of individual coins. Rather, the gold piece is a standard measure of value, and the actual exchange is in gold bars, letters of credit, or valuable goods.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_grappling-hook", + "fields": { + "name": "Grappling hook", + "desc": "A grappling hook.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greataxe", + "fields": { + "name": "Greataxe", + "desc": "A greataxe.", + "document": "srd", + "size": "tiny", + "weight": "7.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": "srd_greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greataxe-1", + "fields": { + "name": "Greataxe (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greataxe-2", + "fields": { + "name": "Greataxe (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greataxe-3", + "fields": { + "name": "Greataxe (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatclub", + "fields": { + "name": "Greatclub", + "desc": "A greatclub.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": "srd_greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatclub-1", + "fields": { + "name": "Greatclub (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatclub-2", + "fields": { + "name": "Greatclub (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatclub-3", + "fields": { + "name": "Greatclub (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatsword", + "fields": { + "name": "Greatsword", + "desc": "A great sword.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatsword-1", + "fields": { + "name": "Greatsword (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatsword-2", + "fields": { + "name": "Greatsword (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_greatsword-3", + "fields": { + "name": "Greatsword (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_halberd", + "fields": { + "name": "Halberd", + "desc": "A halberd.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": "srd_halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_halberd-1", + "fields": { + "name": "Halberd (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_halberd-2", + "fields": { + "name": "Halberd (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_halberd-3", + "fields": { + "name": "Halberd (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_half-plate", + "fields": { + "name": "Half plate", + "desc": "Half plate consists of shaped metal plates that cover most of the wearer's body. It does not include leg protection beyond simple greaves that are attached with leather straps.", + "document": "srd", + "size": "tiny", + "weight": "40.000", + "armor_class": 0, + "hit_points": 0, + "cost": "750.00", + "weapon": null, + "armor": "srd_half-plate", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hammer", + "fields": { + "name": "Hammer", + "desc": "A hammer.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hammer-of-thunderbolts", + "fields": { + "name": "Hammer of Thunderbolts", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon.\n\n**_Giant's Bane (Requires Attunement)_**. You must be wearing a _belt of giant strength_ (any variety) and _gauntlets of ogre power_ to attune to this weapon. The attunement ends if you take off either of those items. While you are attuned to this weapon and holding it, your Strength score increases by 4 and can exceed 20, but not 30. When you roll a 20 on an attack roll made with this weapon against a giant, the giant must succeed on a DC 17 Constitution saving throw or die.\n\nThe hammer also has 5 charges. While attuned to it, you can expend 1 charge and make a ranged weapon attack with the hammer, hurling it as if it had the thrown property with a normal range of 20 feet and a long range of 60 feet. If the attack hits, the hammer unleashes a thunderclap audible out to 300 feet. The target and every creature within 30 feet of it must succeed on a DC 17 Constitution saving throw or be stunned until the end of your next turn. The hammer regains 1d4 + 1 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hammer-sledge", + "fields": { + "name": "Hammer, sledge", + "desc": "A sledgehammer", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_handaxe", + "fields": { + "name": "Handaxe", + "desc": "A handaxe.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "srd_handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_handaxe-1", + "fields": { + "name": "Handaxe (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_handaxe-2", + "fields": { + "name": "Handaxe (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_handaxe-3", + "fields": { + "name": "Handaxe (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_handy-haversack", + "fields": { + "name": "Handy Haversack", + "desc": "This backpack has a central pouch and two side pouches, each of which is an extradimensional space. Each side pouch can hold up to 20 pounds of material, not exceeding a volume of 2 cubic feet. The large central pouch can hold up to 8 cubic feet or 80 pounds of material. The backpack always weighs 5 pounds, regardless of its contents.\r\n\r\nPlacing an object in the haversack follows the normal rules for interacting with objects. Retrieving an item from the haversack requires you to use an action. When you reach into the haversack for a specific item, the item is always magically on top.\r\n\r\nThe haversack has a few limitations. If it is overloaded, or if a sharp object pierces it or tears it, the haversack ruptures and is destroyed. If the haversack is destroyed, its contents are lost forever, although an artifact always turns up again somewhere. If the haversack is turned inside out, its contents spill forth, unharmed, and the haversack must be put right before it can be used again. If a breathing creature is placed within the haversack, the creature can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing the haversack inside an extradimensional space created by a _bag of holding_, _portable hole_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hat-of-disguise", + "fields": { + "name": "Hat of Disguise", + "desc": "While wearing this hat, you can use an action to cast the _disguise self_ spell from it at will. The spell ends if the hat is removed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_headband-of-intellect", + "fields": { + "name": "Headband of Intellect", + "desc": "Your Intelligence score is 19 while you wear this headband. It has no effect on you if your Intelligence is already 19 or higher.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_healers-kit", + "fields": { + "name": "Healer's Kit", + "desc": "This kit is a leather pouch containing bandages, salves, and splints. The kit has ten uses. As an action, you can expend one use of the kit to stabilize a creature that has 0 hit points, without needing to make a Wisdom (Medicine) check.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_helm-of-brilliance", + "fields": { + "name": "Helm of Brilliance", + "desc": "This dazzling helm is set with 1d10 diamonds, 2d10 rubies, 3d10 fire opals, and 4d10 opals. Any gem pried from the helm crumbles to dust. When all the gems are removed or destroyed, the helm loses its magic.\r\n\r\nYou gain the following benefits while wearing it:\r\n\r\n* You can use an action to cast one of the following spells (save DC 18), using one of the helm's gems of the specified type as a component: _daylight_ (opal), _fireball_ (fire opal), _prismatic spray_ (diamond), or _wall of fire_ (ruby). The gem is destroyed when the spell is cast and disappears from the helm.\r\n* As long as it has at least one diamond, the helm emits dim light in a 30-foot radius when at least one undead is within that area. Any undead that starts its turn in that area takes 1d6 radiant damage.\r\n* As long as the helm has at least one ruby, you have resistance to fire damage.\r\n* As long as the helm has at least one fire opal, you can use an action and speak a command word to cause one weapon you are holding to burst into flames. The flames emit bright light in a 10-foot radius and dim light for an additional 10 feet. The flames are harmless to you and the weapon. When you hit with an attack using the blazing weapon, the target takes an extra 1d6 fire damage. The flames last until you use a bonus action to speak the command word again or until you drop or stow the weapon.\r\n\r\nRoll a d20 if you are wearing the helm and take fire damage as a result of failing a saving throw against a spell. On a roll of 1, the helm emits beams of light from its remaining gems. Each creature within 60 feet of the helm other than you must succeed on a DC 17 Dexterity saving throw or be struck by a beam, taking radiant damage equal to the number of gems in the helm. The helm and its gems are then destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_helm-of-comprehending-languages", + "fields": { + "name": "Helm of Comprehending Languages", + "desc": "While wearing this helm, you can use an action to cast the _comprehend languages_ spell from it at will.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_helm-of-telepathy", + "fields": { + "name": "Helm of Telepathy", + "desc": "While wearing this helm, you can use an action to cast the _detect thoughts_ spell (save DC 13) from it. As long as you maintain concentration on the spell, you can use a bonus action to send a telepathic message to a creature you are focused on. It can reply-using a bonus action to do so-while your focus on it continues.\r\n\r\nWhile focusing on a creature with _detect thoughts_, you can use an action to cast the _suggestion_ spell (save DC 13) from the helm on that creature. Once used, the _suggestion_ property can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_helm-of-teleportation", + "fields": { + "name": "Helm of Teleportation", + "desc": "This helm has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _teleport_ spell from it. The helm regains 1d3\r\n\r\nexpended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_herbalism-kit", + "fields": { + "name": "Herbalism Kit", + "desc": "This kit contains a variety of instruments such as clippers, mortar and pestle, and pouches and vials used by herbalists to create remedies and potions. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to identify or apply herbs. Also, proficiency with this kit is required to create\r\nantitoxin and potions of healing.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hide-armor", + "fields": { + "name": "Hide Armor", + "desc": "This crude armor consists of thick furs and pelts. It is commonly worn by barbarian tribes, evil humanoids, and other folk who lack access to the tools and materials needed to create better armor.", + "document": "srd", + "size": "tiny", + "weight": "12.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": "srd_hide", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_holy-avenger-greatsword", + "fields": { + "name": "Holy Avenger (Greatsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_holy-avenger-longsword", + "fields": { + "name": "Holy Avenger (Longsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_holy-avenger-rapier", + "fields": { + "name": "Holy Avenger (Rapier)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_holy-avenger-shortsword", + "fields": { + "name": "Holy Avenger (Shortsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. When you hit a fiend or an undead with it, that creature takes an extra 2d10 radiant damage.\n\nWhile you hold the drawn sword, it creates an aura in a 10-foot radius around you. You and all creatures friendly to you in the aura have advantage on saving throws against spells and other magical effects. If you have 17 or more levels in the paladin class, the radius of the aura increases to 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_holy-water-flask", + "fields": { + "name": "Holy Water (flask)", + "desc": "As an action, you can splash the contents of this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact.In either case, make a ranged attack against a target creature, treating the holy water as an improvised weapon. If the target is a fiend or undead, it takes 2d6 radiant damage.\\n\\nA cleric or paladin may create holy water by performing a special ritual. The ritual takes 1 hour to perform, uses 25 gp worth of powdered silver, and requires the caster to expend a 1st-­‐‑level spell slot.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horn", + "fields": { + "name": "Horn", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "3.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horn-of-blasting", + "fields": { + "name": "Horn of Blasting", + "desc": "You can use an action to speak the horn's command word and then blow the horn, which emits a thunderous blast in a 30-foot cone that is audible 600 feet away. Each creature in the cone must make a DC 15 Constitution saving throw. On a failed save, a creature takes 5d6 thunder damage and is deafened for 1 minute. On a successful save, a creature takes half as much damage and isn't deafened. Creatures and objects made of glass or crystal have disadvantage on the saving throw and take 10d6 thunder damage instead of 5d6.\r\n\r\nEach use of the horn's magic has a 20 percent chance of causing the horn to explode. The explosion deals 10d6 fire damage to the blower and destroys the horn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-brass", + "fields": { + "name": "Horn of Valhalla (Brass)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-bronze", + "fields": { + "name": "Horn of Valhalla (Bronze)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-iron", + "fields": { + "name": "Horn of Valhalla (Iron)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horn-of-valhalla-silver", + "fields": { + "name": "Horn of Valhalla (silver)", + "desc": "You can use an action to blow this horn. In response, warrior spirits from the Valhalla appear within 60 feet of you. They use the statistics of a berserker. They return to Valhalla after 1 hour or when they drop to 0 hit points. Once you use the horn, it can't be used again until 7 days have passed.\\n\\nFour types of _horn of Valhalla_ are known to exist, each made of a different metal. The horn's type determines how many berserkers answer its summons, as well as the requirement for its use. The GM chooses the horn's type or determines it randomly.\\n\\n| d100 | Horn Type | Berserkers Summoned | Requirement |\\n|--------|-----------|---------------------|--------------------------------------|\\n| 01-40 | Silver | 2d4 + 2 | None |\\n| 41-75 | Brass | 3d4 + 3 | Proficiency with all simple weapons |\\n| 76-90 | Bronze | 4d4 + 4 | Proficiency with all medium armor |\\n| 91-00 | Iron | 5d4 + 5 | Proficiency with all martial weapons |\\n\\nIf you blow the horn without meeting its requirement, the summoned berserkers attack you. If you meet the requirement, they are friendly to you and your companions and follow your commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horseshoes-of-a-zephyr", + "fields": { + "name": "Horseshoes of a Zephyr", + "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they allow the creature to move normally while floating 4 inches above the ground. This effect means the creature can cross or stand above nonsolid or unstable surfaces, such as water or lava. The creature leaves no tracks and ignores difficult terrain. In addition, the creature can move at normal speed for up to 12 hours a day without suffering exhaustion from a forced march.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_horseshoes-of-speed", + "fields": { + "name": "Horseshoes of Speed", + "desc": "These iron horseshoes come in a set of four. While all four shoes are affixed to the hooves of a horse or similar creature, they increase the creature's walking speed by 30 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hourglass", + "fields": { + "name": "Hourglass", + "desc": "An hourglass.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_hunting-trap", + "fields": { + "name": "Hunting Trap", + "desc": "When you use your action to set it, this trap forms a saw-­‐‑toothed steel ring that snaps shut when a creature steps on a pressure plate in the center. The trap is affixed by a heavy chain to an immobile object, such as a tree or a spike driven into the ground. A creature that steps on the plate must succeed on a DC 13 Dexterity saving throw or take 1d4 piercing damage and stop moving. Thereafter, until the creature breaks free of the trap, its movement is limited by the length of the chain (typically 3 feet long). A creature can use its action to make a DC 13 Strength check, freeing itself or another creature within its reach on a success. Each failed check deals 1 piercing damage to the trapped creature.", + "document": "srd", + "size": "tiny", + "weight": "25.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_immovable-rod", + "fields": { + "name": "Immovable Rod", + "desc": "This flat iron rod has a button on one end. You can use an action to press the button, which causes the rod to become magically fixed in place. Until you or another creature uses an action to push the button again, the rod doesn't move, even if it is defying gravity. The rod can hold up to 8,000 pounds of weight. More weight causes the rod to deactivate and fall. A creature can use an action to make a DC 30 Strength check, moving the fixed rod up to 10 feet on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ink-1-ounce-bottle", + "fields": { + "name": "Ink (1 ounce bottle)", + "desc": "A bottle of ink.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ink-pen", + "fields": { + "name": "Ink pen", + "desc": "A pen for writing with ink.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_instant-fortress", + "fields": { + "name": "Instant Fortress", + "desc": "You can use an action to place this 1-inch metal cube on the ground and speak its command word. The cube rapidly grows into a fortress that remains until you use an action to speak the command word that dismisses it, which works only if the fortress is empty.\r\n\r\nThe fortress is a square tower, 20 feet on a side and 30 feet high, with arrow slits on all sides and a battlement atop it. Its interior is divided into two floors, with a ladder running along one wall to connect them. The ladder ends at a trapdoor leading to the roof. When activated, the tower has a small door on the side facing you. The door opens only at your command, which you can speak as a bonus action. It is immune to the _knock_ spell and similar magic, such as that of a _chime of opening_.\r\n\r\nEach creature in the area where the fortress appears must make a DC 15 Dexterity saving throw, taking 10d10 bludgeoning damage on a failed save, or half as much damage on a successful one. In either case, the creature is pushed to an unoccupied space outside but next to the fortress. Objects in the area that aren't being worn or carried take this damage and are pushed automatically.\r\n\r\nThe tower is made of adamantine, and its magic prevents it from being tipped over. The roof, the door, and the walls each have 100 hit points,\r\n\r\nimmunity to damage from nonmagical weapons excluding siege weapons, and resistance to all other damage. Only a _wish_ spell can repair the fortress (this use of the spell counts as replicating a spell of 8th level or lower). Each casting of _wish_ causes the roof, the door, or one wall to regain 50 hit points.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-absorption", + "fields": { + "name": "Ioun Stone (Absorption)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Fortitude (Very Rare)_**. Your Constitution score increases by 2, to a maximum of 20, while this pink rhomboid orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-agility", + "fields": { + "name": "Ioun Stone (Agility)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Agility (Very Rare)._** Your Dexterity score increases by 2, to a maximum of 20, while this deep red sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-awareness", + "fields": { + "name": "Ioun Stone (Awareness)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Awareness (Rare)._** You can't be surprised while this dark blue rhomboid orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-greater-absorption", + "fields": { + "name": "Ioun Stone (Greater Absorption)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Greater Absorption (Legendary)._** While this marbled lavender and green ellipsoid orbits your head, you can use your reaction to cancel a spell of 8th level or lower cast by a creature you can see and targeting only you.\\n\\nOnce the stone has canceled 50 levels of spells, it burns out and turns dull gray, losing its magic. If you are targeted by a spell whose level is higher than the number of spell levels the stone has left, the stone can't cancel it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-insight", + "fields": { + "name": "Ioun Stone (Insight)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Insight (Very Rare)._** Your Wisdom score increases by 2, to a maximum of 20, while this incandescent blue sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-intellect", + "fields": { + "name": "Ioun Stone (Intellect)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Intellect (Very Rare)._** Your Intelligence score increases by 2, to a maximum of 20, while this marbled scarlet and blue sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-leadership", + "fields": { + "name": "Ioun Stone (Leadership)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Leadership (Very Rare)._** Your Charisma score increases by 2, to a maximum of 20, while this marbled pink and green sphere orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-mastery", + "fields": { + "name": "Ioun Stone (Mastery)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Mastery (Legendary)._** Your proficiency bonus increases by 1 while this pale green prism orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-protection", + "fields": { + "name": "Ioun Stone (Protection)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Protection (Rare)_**. You gain a +1 bonus to AC while this dusty rose prism orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-regeneration", + "fields": { + "name": "Ioun Stone (Regeneration)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Regeneration (Legendary)_**. You regain 15 hit points at the end of each hour this pearly white spindle orbits your head, provided that you have at least 1 hit point.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-reserve", + "fields": { + "name": "Ioun Stone (Reserve)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Reserve (Rare)._** This vibrant purple prism stores spells cast into it, holding them until you use them. The stone can store up to 3 levels worth of spells at a time. When found, it contains 1d4 - 1 levels of stored spells chosen by the GM.\\n\\nAny creature can cast a spell of 1st through 3rd level into the stone by touching it as the spell is cast. The spell has no effect, other than to be stored in the stone. If the stone can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\\n\\nWhile this stone orbits your head, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the stone is no longer stored in it, freeing up space.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-strength", + "fields": { + "name": "Ioun Stone (Strength)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Strength (Very Rare)._** Your Strength score increases by 2, to a maximum of 20, while this pale blue rhomboid orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ioun-stone-sustenance", + "fields": { + "name": "Ioun Stone (Sustenance)", + "desc": "An Ioun stone is named after Ioun, a god of knowledge and prophecy revered on some worlds. Many types of Ioun stone exist, each type a distinct combination of shape and color.\\n\\nWhen you use an action to toss one of these stones into the air, the stone orbits your head at a distance of 1d3 feet and confers a benefit to you. Thereafter, another creature must use an action to grasp or net the stone to separate it from you, either by making a successful attack roll against AC 24 or a successful DC 24 Dexterity (Acrobatics) check. You can use an action to seize and stow the stone, ending its effect.\\n\\nA stone has AC 24, 10 hit points, and resistance to all damage. It is considered to be an object that is being worn while it orbits your head.\\n\\n**_Sustenance (Rare)._** You don't need to eat or drink while this clear spindle orbits your head.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 24, + "hit_points": 10, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_iron", + "fields": { + "name": "Iron", + "desc": "1lb of iron.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_iron-bands-of-binding", + "fields": { + "name": "Iron Bands of Binding", + "desc": "This rusty iron sphere measures 3 inches in diameter and weighs 1 pound. You can use an action to speak the command word and throw the sphere at a Huge or smaller creature you can see within 60 feet of you. As the sphere moves through the air, it opens into a tangle of metal bands.\r\n\r\nMake a ranged attack roll with an attack bonus equal to your Dexterity modifier plus your proficiency bonus. On a hit, the target is restrained until you take a bonus action to speak the command word again to release it. Doing so, or missing with the attack, causes the bands to contract and become a sphere once more.\r\n\r\nA creature, including the one restrained, can use an action to make a DC 20 Strength check to break the iron bands. On a success, the item is destroyed, and the restrained creature is freed. If the check fails, any further attempts made by that creature automatically fail until 24 hours have elapsed.\r\n\r\nOnce the bands are used, they can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_iron-flask", + "fields": { + "name": "Iron Flask", + "desc": "This iron bottle has a brass stopper. You can use an action to speak the flask's command word, targeting a creature that you can see within 60 feet of you. If the target is native to a plane of existence other than the one you're on, the target must succeed on a DC 17 Wisdom saving throw or be trapped in the flask. If the target has been trapped by the flask before, it has advantage on the saving throw. Once trapped, a creature remains in the flask until released. The flask can hold only one creature at a time. A creature trapped in the flask doesn't need to breathe, eat, or drink and doesn't age.\r\n\r\nYou can use an action to remove the flask's stopper and release the creature the flask contains. The creature is friendly to you and your companions for 1 hour and obeys your commands for that duration. If you give no commands or give it a command that is likely to result in its death, it defends itself but otherwise takes no actions. At the end of the duration, the creature acts in accordance with its normal disposition and alignment.\r\n\r\nAn _identify_ spell reveals that a creature is inside the flask, but the only way to determine the type of creature is to open the flask. A newly discovered bottle might already contain a creature chosen by the GM or determined randomly.\r\n\r\n| d100 | Contents |\r\n|-------|-------------------|\r\n| 1-50 | Empty |\r\n| 51-54 | Demon (type 1) |\r\n| 55-58 | Demon (type 2) |\r\n| 59-62 | Demon (type 3) |\r\n| 63-64 | Demon (type 4) |\r\n| 65 | Demon (type 5) |\r\n| 66 | Demon (type 6) |\r\n| 67 | Deva |\r\n| 68-69 | Devil (greater) |\r\n| 70-73 | Devil (lesser) |\r\n| 74-75 | Djinni |\r\n| 76-77 | Efreeti |\r\n| 78-83 | Elemental (any) |\r\n| 84-86 | Invisible stalker |\r\n| 87-90 | Night hag |\r\n| 91 | Planetar |\r\n| 92-95 | Salamander |\r\n| 96 | Solar |\r\n| 97-99 | Succubus/incubus |\r\n| 100 | Xorn |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_javelin", + "fields": { + "name": "Javelin", + "desc": "A javelin", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": "srd_javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_javelin-1", + "fields": { + "name": "Javelin (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_javelin-2", + "fields": { + "name": "Javelin (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_javelin-3", + "fields": { + "name": "Javelin (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_javelin-of-lightning", + "fields": { + "name": "Javelin of Lightning", + "desc": "This javelin is a magic weapon. When you hurl it and speak its command word, it transforms into a bolt of lightning, forming a line 5 feet wide that extends out from you to a target within 120 feet. Each creature in the line excluding you and the target must make a DC 13 Dexterity saving throw, taking 4d6 lightning damage on a failed save, and half as much damage on a successful one. The lightning bolt turns back into a javelin when it reaches the target. Make a ranged weapon attack against the target. On a hit, the target takes damage from the javelin plus 4d6 lightning damage.\n\nThe javelin's property can't be used again until the next dawn. In the meantime, the javelin can still be used as a magic weapon.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_jewelers-tools", + "fields": { + "name": "Jeweler's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_jug-or-pitcher", + "fields": { + "name": "Jug or pitcher", + "desc": "For drinking a lot. Capacity: 1 gallon liquid.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_keelboat", + "fields": { + "name": "Keelboat", + "desc": "Waterborne vehicle. Speed is 1mph.", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "3000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ladder-10-foot", + "fields": { + "name": "Ladder (10-foot)", + "desc": "A 10 foot ladder.", + "document": "srd", + "size": "tiny", + "weight": "25.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lamp", + "fields": { + "name": "Lamp", + "desc": "A lamp casts bright light in a 15-foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lamp-oil-flask", + "fields": { + "name": "Lamp oil (flask)", + "desc": "Oil usually comes in a clay flask that holds 1 pint. As an action, you can splash the oil in this flask onto a creature within 5 feet of you or throw it up to 20 feet, shattering it on impact. Make a ranged attack against a target creature or object, treating the oil as an improvised weapon. On a hit, the target is covered in oil. If the target takes any fire damage before the oil dries (after 1 minute), the target takes an additional 5 fire damage from the burning oil. You can also pour a flask of oil on the ground to cover a 5-­foot‑square area, provided that the surface is level. If lit, the oil burns for 2 rounds and deals 5 fire damage to any creature that enters the area or ends its turn in the area. A creature can take this damage only once per turn.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lance", + "fields": { + "name": "Lance", + "desc": "A lance.\r\n\r\nYou have disadvantage when you use a lance to attack a target within 5 feet of you. Also, a lance requires two hands to wield when you aren't mounted.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "srd_lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lance-1", + "fields": { + "name": "Lance (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lance-2", + "fields": { + "name": "Lance (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lance-3", + "fields": { + "name": "Lance (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lantern-bullseye", + "fields": { + "name": "Lantern, Bullseye", + "desc": "A bullseye lantern casts bright light in a 60-­‐‑foot cone and dim light for an additional 60 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lantern-hooded", + "fields": { + "name": "Lantern, Hooded", + "desc": "A hooded lantern casts bright light in a 30-­‐‑foot radius and dim light for an additional 30 feet. Once lit, it burns for 6 hours on a flask (1 pint) of oil. As an action, you can lower the hood, reducing the light to dim light in a 5-­‐‑foot radius.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lantern-of-revealing", + "fields": { + "name": "Lantern of Revealing", + "desc": "While lit, this hooded lantern burns for 6 hours on 1 pint of oil, shedding bright light in a 30-foot radius and dim light for an additional 30 feet. Invisible creatures and objects are visible as long as they are in the lantern's bright light. You can use an action to lower the hood, reducing the light to dim light in a 5* foot radius.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_leather-armor", + "fields": { + "name": "Leather Armor", + "desc": "The breastplate and shoulder protectors of this armor are made of leather that has been stiffened by being boiled in oil. The rest of the armor is made of softer and more flexible materials.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": "srd_leather", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_leatherworkers-tools", + "fields": { + "name": "Leatherworker's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_light-hammer", + "fields": { + "name": "Light hammer", + "desc": "A light hammer.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": "srd_light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_light-hammer-1", + "fields": { + "name": "Light-Hammer (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_light-hammer-2", + "fields": { + "name": "Light-Hammer (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_light-hammer-3", + "fields": { + "name": "Light-Hammer (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_linen", + "fields": { + "name": "Linen", + "desc": "1 sq. yd. of linen.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lock", + "fields": { + "name": "Lock", + "desc": "A key is provided with the lock. Without the key, a creature proficient with thieves’ tools can pick this lock with a successful DC 15 Dexterity check. Your GM may decide that better locks are available for higher prices.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longbow", + "fields": { + "name": "Longbow", + "desc": "A longbow.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": "srd_longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longbow-1", + "fields": { + "name": "Longbow (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longbow-2", + "fields": { + "name": "Longbow (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longbow-3", + "fields": { + "name": "Longbow (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longship", + "fields": { + "name": "Longship", + "desc": "Waterborne vehicle. Speed 3mph.", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longsword", + "fields": { + "name": "Longsword", + "desc": "A longsword", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longsword-1", + "fields": { + "name": "Longsword (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longsword-2", + "fields": { + "name": "Longsword (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_longsword-3", + "fields": { + "name": "Longsword (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_luck-blade-greatsword", + "fields": { + "name": "Luck Blade (Greatsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_luck-blade-longsword", + "fields": { + "name": "Luck Blade (Longsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_luck-blade-rapier", + "fields": { + "name": "Luck Blade (Rapier)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_luck-blade-shortsword", + "fields": { + "name": "Luck Blade (Shortsword)", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. While the sword is on your person, you also gain a +1 bonus to saving throws.\n\n**_Luck_**. If the sword is on your person, you can call on its luck (no action required) to reroll one attack roll, ability check, or saving throw you dislike. You must use the second roll. This property can't be used again until the next dawn.\n\n**_Wish_**. The sword has 1d4 - 1 charges. While holding it, you can use an action to expend 1 charge and cast the _wish_ spell from it. This property can't be used again until the next dawn. The sword loses this property if it has no charges.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lute", + "fields": { + "name": "Lute", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "35.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_lyre", + "fields": { + "name": "Lyre", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace", + "fields": { + "name": "Mace", + "desc": "A mace.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "srd_mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace-1", + "fields": { + "name": "Mace (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace-2", + "fields": { + "name": "Mace (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace-3", + "fields": { + "name": "Mace (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace-of-disruption", + "fields": { + "name": "Mace of Disruption", + "desc": "When you hit a fiend or an undead with this magic weapon, that creature takes an extra 2d6 radiant damage. If the target has 25 hit points or fewer after taking this damage, it must succeed on a DC 15 Wisdom saving throw or be destroyed. On a successful save, the creature becomes frightened of you until the end of your next turn.\n\nWhile you hold this weapon, it sheds bright light in a 20-foot radius and dim light for an additional 20 feet.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace-of-smiting", + "fields": { + "name": "Mace of Smiting", + "desc": "You gain a +1 bonus to attack and damage rolls made with this magic weapon. The bonus increases to +3 when you use the mace to attack a construct.\n\nWhen you roll a 20 on an attack roll made with this weapon, the target takes an extra 2d6 bludgeoning damage, or 4d6 bludgeoning damage if it's a construct. If a construct has 25 hit points or fewer after taking this damage, it is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mace-of-terror", + "fields": { + "name": "Mace of Terror", + "desc": "This magic weapon has 3 charges. While holding it, you can use an action and expend 1 charge to release a wave of terror. Each creature of your choice in a 30-foot radius extending from you must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.\n\nThe mace regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_mace", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_magnifying-glass", + "fields": { + "name": "Magnifying Glass", + "desc": "This lens allows a closer look at small objects. It is also useful as a substitute for flint and steel when starting fires. Lighting a fire with a magnifying glass requires light as bright as sunlight to focus, tinder to ignite, and about 5 minutes for the fire to ignite. A magnifying glass grants advantage on any ability check made to appraise or inspect an item that is small or highly detailed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "100.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_malice", + "fields": { + "name": "Malice", + "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 1 hour. The poisoned creature is blinded.\\n\\n**_Inhaled._** These poisons are powders or gases that take effect when inhaled. Blowing the powder or releasing the gas subjects creatures in a 5-foot cube to its effect. The resulting cloud dissipates immediately afterward. Holding one's breath is ineffective against inhaled poisons, as they affect nasal membranes, tear ducts, and other parts of the body.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "250.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_manacles", + "fields": { + "name": "Manacles", + "desc": "These metal restraints can bind a Small or Medium creature. Escaping the manacles requires a successful DC 20 Dexterity check. Breaking them requires a successful DC 20 Strength check. Each set of manacles comes with one key. Without the key, a creature proficient with thieves’ tools can pick the manacles’ lock with a successful DC 15 Dexterity check. Manacles have 15 hit points.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 15, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mantle-of-spell-resistance", + "fields": { + "name": "Mantle of Spell Resistance", + "desc": "You have advantage on saving throws against spells while you wear this cloak.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_manual-of-bodily-health", + "fields": { + "name": "Manual of Bodily Health", + "desc": "This book contains health and diet tips, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Constitution score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_manual-of-gainful-exercise", + "fields": { + "name": "Manual of Gainful Exercise", + "desc": "This book describes fitness exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Strength score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_manual-of-golems", + "fields": { + "name": "Manual of Golems", + "desc": "This tome contains information and incantations necessary to make a particular type of golem. The GM chooses the type or determines it randomly. To decipher and use the manual, you must be a spellcaster with at least two 5th-level spell slots. A creature that can't use a _manual of golems_ and attempts to read it takes 6d6 psychic damage.\r\n\r\n| d20 | Golem | Time | Cost |\r\n|-------|-------|----------|------------|\r\n| 1-5 | Clay | 30 days | 65,000 gp |\r\n| 6-17 | Flesh | 60 days | 50,000 gp |\r\n| 18 | Iron | 120 days | 100,000 gp |\r\n| 19-20 | Stone | 90 days | 80,000 gp |\r\n\r\nTo create a golem, you must spend the time shown on the table, working without interruption with the manual at hand and resting no more than 8 hours per day. You must also pay the specified cost to purchase supplies.\r\n\r\nOnce you finish creating the golem, the book is consumed in eldritch flames. The golem becomes animate when the ashes of the manual are sprinkled on it. It is under your control, and it understands and obeys your spoken commands.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_manual-of-quickness-of-action", + "fields": { + "name": "Manual of Quickness of Action", + "desc": "This book contains coordination and balance exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Dexterity score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_marvelous-pigments", + "fields": { + "name": "Marvelous Pigments", + "desc": "Typically found in 1d4 pots inside a fine wooden box with a brush (weighing 1 pound in total), these pigments allow you to create three-dimensional objects by painting them in two dimensions. The paint flows from the brush to form the desired object as you concentrate on its image.\r\n\r\nEach pot of paint is sufficient to cover 1,000 square feet of a surface, which lets you create inanimate objects or terrain features-such as a door, a pit, flowers, trees, cells, rooms, or weapons- that are up to 10,000 cubic feet. It takes 10 minutes to cover 100 square feet.\r\n\r\nWhen you complete the painting, the object or terrain feature depicted becomes a real, nonmagical object. Thus, painting a door on a wall creates an actual door that can be opened to whatever is beyond. Painting a pit on a floor creates a real pit, and its depth counts against the total area of objects you create.\r\n\r\nNothing created by the pigments can have a value greater than 25 gp. If you paint an object of greater value (such as a diamond or a pile of gold), the object looks authentic, but close inspection reveals it is made from paste, bone, or some other worthless material.\r\n\r\nIf you paint a form of energy such as fire or lightning, the energy appears but dissipates as soon as you complete the painting, doing no harm to anything.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_masons-tools", + "fields": { + "name": "Mason's Tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_maul", + "fields": { + "name": "Maul", + "desc": "A maul.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "srd_maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_maul-1", + "fields": { + "name": "Maul (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_maul-2", + "fields": { + "name": "Maul (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_maul-3", + "fields": { + "name": "Maul (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_medallion-of-thoughts", + "fields": { + "name": "Medallion of Thoughts", + "desc": "The medallion has 3 charges. While wearing it, you can use an action and expend 1 charge to cast the _detect thoughts_ spell (save DC 13) from it. The medallion regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mess-kit", + "fields": { + "name": "Mess Kit", + "desc": "This tin box contains a cup and simple cutlery. The box clamps together, and one side can be used as a cooking pan and the other as a plate or shallow bowl.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_midnight-tears", + "fields": { + "name": "Midnight tears", + "desc": "A creature that ingests this poison suffers no effect until the stroke of midnight. If the poison has not been neutralized before then, the creature must succeed on a DC 17 Constitution saving throw, taking 31 (9d6) poison damage on a failed save, or half as much damage on a successful one.\\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1500.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mirror-of-life-trapping", + "fields": { + "name": "Mirror of Life Trapping", + "desc": "When this 4-foot-tall mirror is viewed indirectly, its surface shows faint images of creatures. The mirror weighs 50 pounds, and it has AC 11, 10 hit points, and vulnerability to bludgeoning damage. It shatters and is destroyed when reduced to 0 hit points.\r\n\r\nIf the mirror is hanging on a vertical surface and you are within 5 feet of it, you can use an action to speak its command word and activate it. It remains activated until you use an action to speak the command word again.\r\n\r\nAny creature other than you that sees its reflection in the activated mirror while within 30 feet of it must succeed on a DC 15 Charisma saving throw or be trapped, along with anything it is wearing or carrying, in one of the mirror's twelve extradimensional cells. This saving throw is made with advantage if the creature knows the mirror's nature, and constructs succeed on the saving throw automatically.\r\n\r\nAn extradimensional cell is an infinite expanse filled with thick fog that reduces visibility to 10 feet. Creatures trapped in the mirror's cells don't age, and they don't need to eat, drink, or sleep. A creature trapped within a cell can escape using magic that permits planar travel. Otherwise, the creature is confined to the cell until freed.\r\n\r\nIf the mirror traps a creature but its twelve extradimensional cells are already occupied, the mirror frees one trapped creature at random to accommodate the new prisoner. A freed creature appears in an unoccupied space within sight of the mirror but facing away from it. If the mirror is shattered, all creatures it contains are freed and appear in unoccupied spaces near it.\r\n\r\nWhile within 5 feet of the mirror, you can use an action to speak the name of one creature trapped in it or call out a particular cell by number. The creature named or contained in the named cell appears as an image on the mirror's surface. You and the creature can then communicate normally.\r\n\r\nIn a similar way, you can use an action to speak a second command word and free one creature trapped in the mirror. The freed creature appears, along with its possessions, in the unoccupied space nearest to the mirror and facing away from it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mirror-steel", + "fields": { + "name": "Mirror, steel", + "desc": "A mirror.", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-breastplate", + "fields": { + "name": "Mithral Armor (Breastplate)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_breastplate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-chain-mail", + "fields": { + "name": "Mithral Armor (Chain-Mail)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_chain-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-chain-shirt", + "fields": { + "name": "Mithral Armor (Chain-Shirt)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_chain-shirt", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-half-plate", + "fields": { + "name": "Mithral Armor (Half-Plate)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_half-plate", + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-hide", + "fields": { + "name": "Mithral Armor (Hide)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_hide", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-plate", + "fields": { + "name": "Mithral Armor (Plate)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-ring-mail", + "fields": { + "name": "Mithral Armor (Ring-Mail)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-scale-mail", + "fields": { + "name": "Mithral Armor (Scale-Mail)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_mithral-armor-splint", + "fields": { + "name": "Mithral Armor (Splint)", + "desc": "Mithral is a light, flexible metal. A mithral chain shirt or breastplate can be worn under normal clothes. If the armor normally imposes disadvantage on Dexterity (Stealth) checks or has a Strength requirement, the mithral version of the armor doesn't.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_splint", + "category": "armor", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_morningstar", + "fields": { + "name": "Morningstar", + "desc": "A morningstar", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": "srd_morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_morningstar-1", + "fields": { + "name": "Morningstar (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_morningstar-2", + "fields": { + "name": "Morningstar (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_morningstar-3", + "fields": { + "name": "Morningstar (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_navigators-tools", + "fields": { + "name": "Navigator's tools", + "desc": "This set of instruments is used for navigation at sea. Proficiency with navigator's tools lets you chart a ship's course and follow navigation charts. In addition, these tools allow you to add your proficiency bonus to any ability check you make to avoid getting lost at sea.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_necklace-of-adaptation", + "fields": { + "name": "Necklace of Adaptation", + "desc": "While wearing this necklace, you can breathe normally in any environment, and you have advantage on saving throws made against harmful gases and vapors (such as _cloudkill_ and _stinking cloud_ effects, inhaled poisons, and the breath weapons of some dragons).", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_necklace-of-fireballs", + "fields": { + "name": "Necklace of Fireballs", + "desc": "This necklace has 1d6 + 3 beads hanging from it. You can use an action to detach a bead and throw it up to 60 feet away. When it reaches the end of its trajectory, the bead detonates as a 3rd-level _fireball_ spell (save DC 15).\r\n\r\nYou can hurl multiple beads, or even the whole necklace, as one action. When you do so, increase the level of the _fireball_ by 1 for each bead beyond the first.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_necklace-of-prayer-beads", + "fields": { + "name": "Necklace of Prayer Beads", + "desc": "This necklace has 1d4 + 2 magic beads made from aquamarine, black pearl, or topaz. It also has many nonmagical beads made from stones such as amber, bloodstone, citrine, coral, jade, pearl, or quartz. If a magic bead is removed from the necklace, that bead loses its magic.\r\n\r\nSix types of magic beads exist. The GM decides the type of each bead on the necklace or determines it randomly. A necklace can have more than one bead of the same type. To use one, you must be wearing the necklace. Each bead contains a spell that you can cast from it as a bonus action (using your spell save DC if a save is necessary). Once a magic bead's spell is cast, that bead can't be used again until the next dawn.\r\n\r\n| d20 | Bead of... | Spell |\r\n|-------|--------------|-----------------------------------------------|\r\n| 1-6 | Blessing | Bless |\r\n| 7-12 | Curing | Cure wounds (2nd level) or lesser restoration |\r\n| 13-16 | Favor | Greater restoration |\r\n| 17-18 | Smiting | Branding smite |\r\n| 19 | Summons | Planar ally |\r\n| 20 | Wind walking | Wind walk |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_net", + "fields": { + "name": "Net", + "desc": "A net.\r\n\r\nA Large or smaller creature hit by a net is restrained until it is freed. A net has no effect on creatures that are formless, or creatures that are Huge or larger. A creature can use its action to make a DC 10 Strength check, freeing itself or another creature within its reach on a success. Dealing 5 slashing damage to the net (AC 10) also frees the creature without harming it, ending the effect and destroying the net.\r\n\r\nWhen you use an action, bonus action, or reaction to attack with a net, you can make only one attack regardless of the number of attacks you can normally make.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": "srd_net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_net-1", + "fields": { + "name": "Net (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_net-2", + "fields": { + "name": "Net (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_net-3", + "fields": { + "name": "Net (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-greatsword", + "fields": { + "name": "Nine Lives Stealer (Greatsword)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-longsword", + "fields": { + "name": "Nine Lives Stealer (Longsword)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-rapier", + "fields": { + "name": "Nine Lives Stealer (Rapier)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_nine-lives-stealer-shortsword", + "fields": { + "name": "Nine Lives Stealer (Shortsword)", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon.\n\nThe sword has 1d8 + 1 charges. If you score a critical hit against a creature that has fewer than 100 hit points, it must succeed on a DC 15 Constitution saving throw or be slain instantly as the sword tears its life force from its body (a construct or an undead is immune). The sword loses 1 charge if the creature is slain. When the sword has no charges remaining, it loses this property.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_oathbow", + "fields": { + "name": "Oathbow", + "desc": "When you nock an arrow on this bow, it whispers in Elvish, \"Swift defeat to my enemies.\" When you use this weapon to make a ranged attack, you can, as a command phrase, say, \"Swift death to you who have wronged me.\" The target of your attack becomes your sworn enemy until it dies or until dawn seven days later. You can have only one such sworn enemy at a time. When your sworn enemy dies, you can choose a new one after the next dawn.\n\nWhen you make a ranged attack roll with this weapon against your sworn enemy, you have advantage on the roll. In addition, your target gains no benefit from cover, other than total cover, and you suffer no disadvantage due to long range. If the attack hits, your sworn enemy takes an extra 3d6 piercing damage.\n\nWhile your sworn enemy lives, you have disadvantage on attack rolls with all other weapons.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longbow", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_oil-of-etherealness", + "fields": { + "name": "Oil of Etherealness", + "desc": "Beads of this cloudy gray oil form on the outside of its container and quickly evaporate. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of the _etherealness_ spell for 1 hour.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_oil-of-sharpness", + "fields": { + "name": "Oil of Sharpness", + "desc": "This clear, gelatinous oil sparkles with tiny, ultrathin silver shards. The oil can coat one slashing or piercing weapon or up to 5 pieces of slashing or piercing ammunition. Applying the oil takes 1 minute. For 1 hour, the coated item is magical and has a +3 bonus to attack and damage rolls.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_oil-of-slipperiness", + "fields": { + "name": "Oil of Slipperiness", + "desc": "This sticky black unguent is thick and heavy in the container, but it flows quickly when poured. The oil can cover a Medium or smaller creature, along with the equipment it's wearing and carrying (one additional vial is required for each size category above Medium). Applying the oil takes 10 minutes. The affected creature then gains the effect of a _freedom of movement_ spell for 8 hours.\n\nAlternatively, the oil can be poured on the ground as an action, where it covers a 10-foot square, duplicating the effect of the _grease_ spell in that area for 8 hours.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_oil-of-taggit", + "fields": { + "name": "Oil of taggit", + "desc": "A creature subjected to this poison must succeed on a DC 13 Constitution saving throw or become poisoned for 24 hours. The poisoned creature is unconscious. The creature wakes up if it takes damage.\\n\\n **_Contact._** Contact poison can be smeared on an object and remains potent until it is touched or washed off. A creature that touches contact poison with exposed skin suffers its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "400.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_orb", + "fields": { + "name": "Orb", + "desc": "Can be used as an Arcane Focus.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_orb-of-dragonkind", + "fields": { + "name": "Orb of Dragonkind", + "desc": "Ages past, elves and humans waged a terrible war against evil dragons. When the world seemed doomed, powerful wizards came together and worked their greatest magic, forging five _Orbs of Dragonkind_ (or _Dragon Orbs_) to help them defeat the dragons. One orb was taken to each of the five wizard towers, and there they were used to speed the war toward a victorious end. The wizards used the orbs to lure dragons to them, then destroyed the dragons with powerful magic.\\n\\nAs the wizard towers fell in later ages, the orbs were destroyed or faded into legend, and only three are thought to survive. Their magic has been warped and twisted over the centuries, so although their primary purpose of calling dragons still functions, they also allow some measure of control over dragons.\\n\\nEach orb contains the essence of an evil dragon, a presence that resents any attempt to coax magic from it. Those lacking in force of personality might find themselves enslaved to an orb.\\n\\nAn orb is an etched crystal globe about 10 inches in diameter. When used, it grows to about 20 inches in diameter, and mist swirls inside it.\\n\\nWhile attuned to an orb, you can use an action to peer into the orb's depths and speak its command word. You must then make a DC 15 Charisma check. On a successful check, you control the orb for as long as you remain attuned to it. On a failed check, you become charmed by the orb for as long as you remain attuned to it.\\n\\nWhile you are charmed by the orb, you can't voluntarily end your attunement to it, and the orb casts _suggestion_ on you at will (save DC 18), urging you to work toward the evil ends it desires. The dragon essence within the orb might want many things: the annihilation of a particular people, freedom from the orb, to spread suffering in the world, to advance the worship of Tiamat, or something else the GM decides.\\n\\n**_Random Properties_**. An _Orb of Dragonkind_ has the following random properties:\\n\\n* 2 minor beneficial properties\\n* 1 minor detrimental property\\n* 1 major detrimental property\\n\\n**_Spells_**. The orb has 7 charges and regains 1d4 + 3 expended charges daily at dawn. If you control the orb, you can use an action and expend 1 or more charges to cast one of the following spells (save DC 18) from it: _cure wounds_ (5th-level version, 3 charges), _daylight_ (1 charge), _death ward_ (2 charges), or _scrying_ (3 charges).\\n\\nYou can also use an action to cast the _detect magic_ spell from the orb without using any charges.\\n\\n**_Call Dragons_**. While you control the orb, you can use an action to cause the artifact to issue a telepathic call that extends in all directions for 40 miles. Evil dragons in range feel compelled to come to the orb as soon as possible by the most direct route. Dragon deities such as Tiamat are unaffected by this call. Dragons drawn to the orb might be hostile toward you for compelling them against their will. Once you have used this property, it can't be used again for 1 hour.\\n\\n**_Destroying an Orb_**. An _Orb of Dragonkind_ appears fragile but is impervious to most damage, including the attacks and breath weapons of dragons. A _disintegrate_ spell or one good hit from a +3 magic weapon is sufficient to destroy an orb, however.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "artifact" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ox", + "fields": { + "name": "Ox", + "desc": "One ox.", + "document": "srd", + "size": "large", + "weight": "1500.000", + "armor_class": 10, + "hit_points": 15, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_padded-armor", + "fields": { + "name": "Padded Armor", + "desc": "Padded armor consists of quilted layers of cloth and batting.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": "srd_padded", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_painters-supplies", + "fields": { + "name": "Painter's Supplies", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pale-tincture", + "fields": { + "name": "Pale tincture", + "desc": "A creature subjected to this poison must succeed on a DC 16 Constitution saving throw or take 3 (1d6) poison damage and become poisoned. The poisoned creature must repeat the saving throw every 24 hours, taking 3 (1d6) poison damage on a failed save. Until this poison ends, the damage the poison deals can't be healed by any means. After seven successful saving throws, the effect ends and the creature can heal normally. \\n\\n **_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "250.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pan-flute", + "fields": { + "name": "Pan flute", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "12.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_paper-one-sheet", + "fields": { + "name": "Paper (one sheet)", + "desc": "A sheet of paper", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_parchment-one-sheet", + "fields": { + "name": "Parchment (one sheet)", + "desc": "A sheet of parchment", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pearl-of-power", + "fields": { + "name": "Pearl of Power", + "desc": "While this pearl is on your person, you can use an action to speak its command word and regain one expended spell slot. If the expended slot was of 4th level or higher, the new slot is 3rd level. Once you use the pearl, it can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pepper", + "fields": { + "name": "Pepper", + "desc": "1lb of pepper.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_perfume-vial", + "fields": { + "name": "Perfume (vial)", + "desc": "A vial of perfume.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_periapt-of-health", + "fields": { + "name": "Periapt of Health", + "desc": "You are immune to contracting any disease while you wear this pendant. If you are already infected with a disease, the effects of the disease are suppressed you while you wear the pendant.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_periapt-of-proof-against-poison", + "fields": { + "name": "Periapt of Proof against Poison", + "desc": "This delicate silver chain has a brilliant-cut black gem pendant. While you wear it, poisons have no effect on you. You are immune to the poisoned condition and have immunity to poison damage.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_periapt-of-wound-closure", + "fields": { + "name": "Periapt of Wound Closure", + "desc": "While you wear this pendant, you stabilize whenever you are dying at the start of your turn. In addition, whenever you roll a Hit Die to regain hit points, double the number of hit points it restores.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_philter-of-love", + "fields": { + "name": "Philter of Love", + "desc": "The next time you see a creature within 10 minutes after drinking this philter, you become charmed by that creature for 1 hour. If the creature is of a species and gender you are normally attracted to, you regard it as your true love while you are charmed. This potion's rose-hued, effervescent liquid contains one easy-to-miss bubble shaped like a heart.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pick-miners", + "fields": { + "name": "Pick, miner's", + "desc": "A pick for mining.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pig", + "fields": { + "name": "Pig", + "desc": "One pig.", + "document": "srd", + "size": "medium", + "weight": "400.000", + "armor_class": 10, + "hit_points": 4, + "cost": "3.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pike", + "fields": { + "name": "Pike", + "desc": "A pike.", + "document": "srd", + "size": "tiny", + "weight": "18.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "srd_pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pike-1", + "fields": { + "name": "Pike (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pike-2", + "fields": { + "name": "Pike (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pike-3", + "fields": { + "name": "Pike (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pipes-of-haunting", + "fields": { + "name": "Pipes of Haunting", + "desc": "You must be proficient with wind instruments to use these pipes. They have 3 charges. You can use an action to play them and expend 1 charge to create an eerie, spellbinding tune. Each creature within 30 feet of you that hears you play must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. If you wish, all creatures in the area that aren't hostile toward you automatically succeed on the saving throw. A creature that fails the saving throw can repeat it at the end of each of its turns, ending the effect on itself on a success. A creature that succeeds on its saving throw is immune to the effect of these pipes for 24 hours. The pipes regain 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pipes-of-the-sewers", + "fields": { + "name": "Pipes of the Sewers", + "desc": "You must be proficient with wind instruments to use these pipes. While you are attuned to the pipes, ordinary rats and giant rats are indifferent toward you and will not attack you unless you threaten or harm them.\r\n\r\nThe pipes have 3 charges. If you play the pipes as an action, you can use a bonus action to expend 1 to 3 charges, calling forth one swarm of rats with each expended charge, provided that enough rats are within half a mile of you to be called in this fashion (as determined by the GM). If there aren't enough rats to form a swarm, the charge is wasted. Called swarms move toward the music by the shortest available route but aren't under your control otherwise. The pipes regain 1d3 expended charges daily at dawn.\r\n\r\nWhenever a swarm of rats that isn't under another creature's control comes within 30 feet of you while you are playing the pipes, you can make a Charisma check contested by the swarm's Wisdom check. If you lose the contest, the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours. If you win the contest, the swarm is swayed by the pipes' music and becomes friendly to you and your companions for as long as you continue to play the pipes each round as an action. A friendly swarm obeys your commands. If you issue no commands to a friendly swarm, it defends itself but otherwise takes no actions. If a friendly swarm starts its turn and can't hear the pipes' music, your control over that swarm ends, and the swarm behaves as it normally would and can't be swayed by the pipes' music for the next 24 hours.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_piton", + "fields": { + "name": "Piton", + "desc": "A piton for climbing.", + "document": "srd", + "size": "tiny", + "weight": "0.250", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_plate-armor", + "fields": { + "name": "Plate Armor", + "desc": "Plate consists of shaped, interlocking metal plates to cover the entire body. A suit of plate includes gauntlets, heavy leather boots, a visored helmet, and thick layers of padding underneath the armor. Buckles and straps distribute the weight over the body.", + "document": "srd", + "size": "tiny", + "weight": "65.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1500.00", + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_plate-armor-of-etherealness", + "fields": { + "name": "Plate Armor of Etherealness", + "desc": "While you're wearing this armor, you can speak its command word as an action to gain the effect of the _etherealness_ spell, which last for 10 minutes or until you remove the armor or use an action to speak the command word again. This property of the armor can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": "srd_plate", + "category": "armor", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_platinum", + "fields": { + "name": "Platinum", + "desc": "1 lb. of platinum.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "500.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_platinum-piece", + "fields": { + "name": "Platinum Piece", + "desc": "In addition, unusual coins made of other precious metals sometimes appear in treasure hoards. The electrum piece (ep) and the platinum piece (pp) originate from fallen empires and lost kingdoms, and they sometimes arouse suspicion and skepticism when used in transactions. An electrum piece is worth five silver pieces, and a platinum piece is worth ten gold pieces.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_playing-card-set", + "fields": { + "name": "Playing card set", + "desc": "This item encompasses a wide range of game pieces, including dice and decks of cards (for games such as Three-­‐‑Dragon Ante). A few common examples appear on the Tools table, but other kinds of gaming sets exist. If you are proficient with a gaming set, you can add your proficiency bonus to ability checks you make to play a game with that set. Each type of gaming set requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_poison-basic", + "fields": { + "name": "Poison, Basic", + "desc": "You can use the poison in this vial to coat one slashing or piercing weapon or up to three pieces of ammunition. Applying the poison takes an action. A creature hit by the poisoned weapon or ammunition must make a DC 10 Constitution saving throw or take 1d4 poison damage. Once applied, the poison retains potency for 1 minute before drying.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "100.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_poisoners-kit", + "fields": { + "name": "Poisoner's kit", + "desc": "A poisoner’s kit includes the vials, chemicals, and other equipment necessary for the creation of poisons. Proficiency with this kit lets you add your proficiency bonus to any ability checks you make to craft or use poisons.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pole-10-foot", + "fields": { + "name": "Pole (10-foot)", + "desc": "A 10 foot pole.", + "document": "srd", + "size": "tiny", + "weight": "7.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_portable-hole", + "fields": { + "name": "Portable Hole", + "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold a _portable hole_ and place it on or against a solid surface, whereupon the _portable hole_ creates an extradimensional hole 10 feet deep. The cylindrical space within the hole exists on a different plane, so it can't be used to create open passages. Any creature inside an open _portable hole_ can exit the hole by climbing out of it.\r\n\r\nYou can use an action to close a _portable hole_ by taking hold of the edges of the cloth and folding it up. Folding the cloth closes the hole, and any creatures or objects within remain in the extradimensional space. No matter what's in it, the hole weighs next to nothing.\r\n\r\nIf the hole is folded up, a creature within the hole's extradimensional space can use an action to make a DC 10 Strength check. On a successful check, the creature forces its way out and appears within 5 feet of the _portable hole_ or the creature carrying it. A breathing creature within a closed _portable hole_ can survive for up to 10 minutes, after which time it begins to suffocate.\r\n\r\nPlacing a _portable hole_ inside an extradimensional space created by a _bag of holding_, _handy haversack_, or similar item instantly destroys both items and opens a gate to the Astral Plane. The gate originates where the one item was placed inside the other. Any creature within 10 feet of the gate is sucked through it and deposited in a random location on the Astral Plane. The gate then closes. The gate is one-way only and can't be reopened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pot-iron", + "fields": { + "name": "Pot, iron", + "desc": "An iron pot. Capacity: 1 gallon liquid.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-animal-friendship", + "fields": { + "name": "Potion of Animal Friendship", + "desc": "When you drink this potion, you can cast the _animal friendship_ spell (save DC 13) for 1 hour at will. Agitating this muddy liquid brings little bits into view: a fish scale, a hummingbird tongue, a cat claw, or a squirrel hair.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-clairvoyance", + "fields": { + "name": "Potion of Clairvoyance", + "desc": "When you drink this potion, you gain the effect of the _clairvoyance_ spell. An eyeball bobs in this yellowish liquid but vanishes when the potion is opened.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-climbing", + "fields": { + "name": "Potion of Climbing", + "desc": "When you drink this potion, you gain a climbing speed equal to your walking speed for 1 hour. During this time, you have advantage on Strength (Athletics) checks you make to climb. The potion is separated into brown, silver, and gray layers resembling bands of stone. Shaking the bottle fails to mix the colors.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-cloud-giant-strength", + "fields": { + "name": "Potion of Cloud Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-diminution", + "fields": { + "name": "Potion of Diminution", + "desc": "When you drink this potion, you gain the \"reduce\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously contracts to a tiny bead and then expands to color the clear liquid around it. Shaking the bottle fails to interrupt this process.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-fire-giant-strength", + "fields": { + "name": "Potion of Fire Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-flying", + "fields": { + "name": "Potion of Flying", + "desc": "When you drink this potion, you gain a flying speed equal to your walking speed for 1 hour and can hover. If you're in the air when the potion wears off, you fall unless you have some other means of staying aloft. This potion's clear liquid floats at the top of its container and has cloudy white impurities drifting in it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-frost-giant-strength", + "fields": { + "name": "Potion of Frost Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-gaseous-form", + "fields": { + "name": "Potion of Gaseous Form", + "desc": "When you drink this potion, you gain the effect of the _gaseous form_ spell for 1 hour (no concentration required) or until you end the effect as a bonus action. This potion's container seems to hold fog that moves and pours like water.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-greater-healing", + "fields": { + "name": "Potion of Greater Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-growth", + "fields": { + "name": "Potion of Growth", + "desc": "When you drink this potion, you gain the \"enlarge\" effect of the _enlarge/reduce_ spell for 1d4 hours (no concentration required). The red in the potion's liquid continuously expands from a tiny bead to color the clear liquid around it and then contracts. Shaking the bottle fails to interrupt this process.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-healing", + "fields": { + "name": "Potion of Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-heroism", + "fields": { + "name": "Potion of Heroism", + "desc": "For 1 hour after drinking it, you gain 10 temporary hit points that last for 1 hour. For the same duration, you are under the effect of the _bless_ spell (no concentration required). This blue potion bubbles and steams as if boiling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-hill-giant-strength", + "fields": { + "name": "Potion of Hill Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-invisibility", + "fields": { + "name": "Potion of Invisibility", + "desc": "This potion's container looks empty but feels as though it holds liquid. When you drink it, you become invisible for 1 hour. Anything you wear or carry is invisible with you. The effect ends early if you attack or cast a spell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-mind-reading", + "fields": { + "name": "Potion of Mind Reading", + "desc": "When you drink this potion, you gain the effect of the _detect thoughts_ spell (save DC 13). The potion's dense, purple liquid has an ovoid cloud of pink floating in it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-poison", + "fields": { + "name": "Potion of Poison", + "desc": "This concoction looks, smells, and tastes like a _potion of healing_ or other beneficial potion. However, it is actually poison masked by illusion magic. An _identify_ spell reveals its true nature.\n\nIf you drink it, you take 3d6 poison damage, and you must succeed on a DC 13 Constitution saving throw or be poisoned. At the start of each of your turns while you are poisoned in this way, you take 3d6 poison damage. At the end of each of your turns, you can repeat the saving throw. On a successful save, the poison damage you take on your subsequent turns decreases by 1d6. The poison ends when the damage decreases to 0.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-resistance", + "fields": { + "name": "Potion of Resistance", + "desc": "When you drink this potion, you gain resistance to one type of damage for 1 hour. The GM chooses the type or determines it randomly from the options below.\n\n| d10 | Damage Type |\n|-----|-------------|\n| 1 | Acid |\n| 2 | Cold |\n| 3 | Fire |\n| 4 | Force |\n| 5 | Lightning |\n| 6 | Necrotic |\n| 7 | Poison |\n| 8 | Psychic |\n| 9 | Radiant |\n| 10 | Thunder |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-speed", + "fields": { + "name": "Potion of Speed", + "desc": "When you drink this potion, you gain the effect of the _haste_ spell for 1 minute (no concentration required). The potion's yellow fluid is streaked with black and swirls on its own.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-stone-giant-strength", + "fields": { + "name": "Potion of Stone Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-storm-giant-strength", + "fields": { + "name": "Potion of Storm Giant Strength", + "desc": "When you drink this potion, your Strength score changes for 1 hour. The type of giant determines the score (see the table below). The potion has no effect on you if your Strength is equal to or greater than that score.\\n\\nThis potion's transparent liquid has floating in it a sliver of fingernail from a giant of the appropriate type. The _potion of frost giant strength_ and the _potion of stone giant strength_ have the same effect.\\n\\n| Type of Giant | Strength | Rarity |\\n|-------------------|----------|-----------|\\n| Hill giant | 21 | Uncommon |\\n| Frost/stone giant | 23 | Rare |\\n| Fire giant | 25 | Rare |\\n| Cloud giant | 27 | Very rare |\\n| Storm giant | 29 | Legendary |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-superior-healing", + "fields": { + "name": "Potion of Superior Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-supreme-healing", + "fields": { + "name": "Potion of Supreme Healing", + "desc": "You regain hit points when you drink this potion. The number of hit points depends on the potion's rarity, as shown in the Potions of Healing table. Whatever its potency, the potion's red liquid glimmers when agitated.\\n\\n**Potions of Healing (table)**\\n\\n| Potion of ... | Rarity | HP Regained |\\n|------------------|-----------|-------------|\\n| Healing | Common | 2d4 + 2 |\\n| Greater healing | Uncommon | 4d4 + 4 |\\n| Superior healing | Rare | 8d4 + 8 |\\n| Supreme healing | Very rare | 10d4 + 20 |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potion-of-water-breathing", + "fields": { + "name": "Potion of Water Breathing", + "desc": "You can breathe underwater for 1 hour after drinking this potion. Its cloudy green fluid smells of the sea and has a jellyfish-like bubble floating in it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "potion", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_potters-tools", + "fields": { + "name": "Potter's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_pouch", + "fields": { + "name": "Pouch", + "desc": "A cloth or leather pouch can hold up to 20 sling bullets or 50 blowgun needles, among other things. A compartmentalized pouch for holding spell components is called a component pouch (described earlier in this section).\r\nCapacity: 1/5 cubic foot/6 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_purple-worm-poison", + "fields": { + "name": "Purple worm poison", + "desc": "This poison must be harvested from a dead or incapacitated purple worm. A creature subjected to this poison must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2000.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_quarterstaff", + "fields": { + "name": "Quarterstaff", + "desc": "A quarterstaff.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": "srd_quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_quarterstaff-1", + "fields": { + "name": "Quarterstaff (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_quarterstaff-2", + "fields": { + "name": "Quarterstaff (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_quarterstaff-3", + "fields": { + "name": "Quarterstaff (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_quiver", + "fields": { + "name": "Quiver", + "desc": "A quiver can hold up to 20 arrows.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ram-portable", + "fields": { + "name": "Ram, Portable", + "desc": "You can use a portable ram to break down doors. When doing so, you gain a +4 bonus on the Strength check. One other character can help you use the ram, giving you advantage on this check.", + "document": "srd", + "size": "tiny", + "weight": "35.000", + "armor_class": 0, + "hit_points": 0, + "cost": "4.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rapier", + "fields": { + "name": "Rapier", + "desc": "A rapier.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rapier-1", + "fields": { + "name": "Rapier (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rapier-2", + "fields": { + "name": "Rapier (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rapier-3", + "fields": { + "name": "Rapier (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rations-1-day", + "fields": { + "name": "Rations (1 day)", + "desc": "Rations consist of dry foods suitable for extended travel, including jerky, dried fruit, hardtack, and nuts.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_reliquary", + "fields": { + "name": "Reliquary", + "desc": "Can be used as a holy symbol.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_restorative-ointment", + "fields": { + "name": "Restorative Ointment", + "desc": "This glass jar, 3 inches in diameter, contains 1d4 + 1 doses of a thick mixture that smells faintly of aloe. The jar and its contents weigh 1/2 pound.\r\n\r\nAs an action, one dose of the ointment can be swallowed or applied to the skin. The creature that receives it regains 2d8 + 2 hit points, ceases to be poisoned, and is cured of any disease.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-mail", + "fields": { + "name": "Ring mail", + "desc": "This armor is leather armor with heavy rings sewn into it. The rings help reinforce the armor against blows from swords and axes. Ring mail is inferior to chain mail, and it's usually worn only by those who can't afford better armor.", + "document": "srd", + "size": "tiny", + "weight": "40.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": "srd_ring-mail", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-animal-influence", + "fields": { + "name": "Ring of Animal Influence", + "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 of its charges to cast one of the following spells:\n\n* _Animal friendship_ (save DC 13)\n* _Fear_ (save DC 13), targeting only beasts that have an Intelligence of 3 or lower\n* _Speak with animals_", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-djinni-summoning", + "fields": { + "name": "Ring of Djinni Summoning", + "desc": "While wearing this ring, you can speak its command word as an action to summon a particular djinni from the Elemental Plane of Air. The djinni appears in an unoccupied space you choose within 120 feet of you. It remains as long as you concentrate (as if concentrating on a spell), to a maximum of 1 hour, or until it drops to 0 hit points. It then returns to its home plane.\n\nWhile summoned, the djinni is friendly to you and your companions. It obeys any commands you give it, no matter what language you use. If you fail to command it, the djinni defends itself against attackers but takes no other actions.\n\nAfter the djinni departs, it can't be summoned again for 24 hours, and the ring becomes nonmagical if the djinni dies.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-elemental-command", + "fields": { + "name": "Ring of Elemental Command", + "desc": "This ring is linked to one of the four Elemental Planes. The GM chooses or randomly determines the linked plane.\n\nWhile wearing this ring, you have advantage on attack rolls against elementals from the linked plane, and they have disadvantage on attack rolls against you. In addition, you have access to properties based on the linked plane.\n\nThe ring has 5 charges. It regains 1d4 + 1 expended charges daily at dawn. Spells cast from the ring have a save DC of 17.\n\n**_Ring of Air Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an air elemental. In addition, when you fall, you descend 60 feet per round and take no damage from falling. You can also speak and understand Auran.\n\nIf you help slay an air elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to lightning damage.\n* You have a flying speed equal to your walking speed and can hover.\n* You can cast the following spells from the ring, expending the necessary number of charges: _chain lightning_ (3 charges), _gust of wind_ (2 charges), or _wind wall_ (1 charge).\n\n**_Ring of Earth Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on an earth elemental. In addition, you can move in difficult terrain that is composed of rubble, rocks, or dirt as if it were normal terrain. You can also speak and understand Terran.\n\nIf you help slay an earth elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You have resistance to acid damage.\n* You can move through solid earth or rock as if those areas were difficult terrain. If you end your turn there, you are shunted out to the nearest unoccupied space you last occupied.\n* You can cast the following spells from the ring, expending the necessary number of charges: _stone shape_ (2 charges), _stoneskin_ (3 charges), or _wall of stone_ (3 charges).\n\n**_Ring of Fire Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a fire elemental. In addition, you have resistance to fire damage. You can also speak and understand Ignan.\n\nIf you help slay a fire elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You are immune to fire damage.\n* You can cast the following spells from the ring, expending the necessary number of charges: _burning hands_ (1 charge), _fireball_ (2 charges), and _wall of fire_ (3 charges).\n\n**_Ring of Water Elemental Command_**. You can expend 2 of the ring's charges to cast _dominate monster_ on a water elemental. In addition, you can stand on and walk across liquid surfaces as if they were solid ground. You can also speak and understand Aquan.\n\nIf you help slay a water elemental while attuned to the ring, you gain access to the following additional properties:\n\n* You can breathe underwater and have a swimming speed equal to your walking speed.\n* You can cast the following spells from the ring, expending the necessary number of charges: _create or destroy water_ (1 charge), _control water_ (3 charges), _ice storm_ (2 charges), or _wall of ice_ (3 charges).", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-evasion", + "fields": { + "name": "Ring of Evasion", + "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. When you fail a Dexterity saving throw while wearing it, you can use your reaction to expend 1 of its charges to succeed on that saving throw instead.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-feather-falling", + "fields": { + "name": "Ring of Feather Falling", + "desc": "When you fall while wearing this ring, you descend 60 feet per round and take no damage from falling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-free-action", + "fields": { + "name": "Ring of Free Action", + "desc": "While you wear this ring, difficult terrain doesn't cost you extra movement. In addition, magic can neither reduce your speed nor cause you to be paralyzed or restrained.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-invisibility", + "fields": { + "name": "Ring of Invisibility", + "desc": "While wearing this ring, you can turn invisible as an action. Anything you are wearing or carrying is invisible with you. You remain invisible until the ring is removed, until you attack or cast a spell, or until you use a bonus action to become visible again.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-jumping", + "fields": { + "name": "Ring of Jumping", + "desc": "While wearing this ring, you can cast the _jump_ spell from it as a bonus action at will, but can target only yourself when you do so.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-mind-shielding", + "fields": { + "name": "Ring of Mind Shielding", + "desc": "While wearing this ring, you are immune to magic that allows other creatures to read your thoughts, determine whether you are lying, know your alignment, or know your creature type. Creatures can telepathically communicate with you only if you allow it.\n\nYou can use an action to cause the ring to become invisible until you use another action to make it visible, until you remove the ring, or until you die.\n\nIf you die while wearing the ring, your soul enters it, unless it already houses a soul. You can remain in the ring or depart for the afterlife. As long as your soul is in the ring, you can telepathically communicate with any creature wearing it. A wearer can't prevent this telepathic communication.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-protection", + "fields": { + "name": "Ring of Protection", + "desc": "You gain a +1 bonus to AC and saving throws while wearing this ring.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-regeneration", + "fields": { + "name": "Ring of Regeneration", + "desc": "While wearing this ring, you regain 1d6 hit points every 10 minutes, provided that you have at least 1 hit point. If you lose a body part, the ring causes the missing part to regrow and return to full functionality after 1d6 + 1 days if you have at least 1 hit point the whole time.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-resistance", + "fields": { + "name": "Ring of Resistance", + "desc": "You have resistance to one damage type while wearing this ring. The gem in the ring indicates the type, which the GM chooses or determines randomly.\n\n| d10 | Damage Type | Gem |\n|-----|-------------|------------|\n| 1 | Acid | Pearl |\n| 2 | Cold | Tourmaline |\n| 3 | Fire | Garnet |\n| 4 | Force | Sapphire |\n| 5 | Lightning | Citrine |\n| 6 | Necrotic | Jet |\n| 7 | Poison | Amethyst |\n| 8 | Psychic | Jade |\n| 9 | Radiant | Topaz |\n| 10 | Thunder | Spinel |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-shooting-stars", + "fields": { + "name": "Ring of Shooting Stars", + "desc": "While wearing this ring in dim light or darkness, you can cast _dancing lights_ and _light_ from the ring at will. Casting either spell from the ring requires an action.\n\nThe ring has 6 charges for the following other properties. The ring regains 1d6 expended charges daily at dawn.\n\n**_Faerie Fire_**. You can expend 1 charge as an action to cast _faerie fire_ from the ring.\n\n**_Ball Lightning_**. You can expend 2 charges as an action to create one to four 3-foot-diameter spheres of lightning. The more spheres you create, the less powerful each sphere is individually.\n\nEach sphere appears in an unoccupied space you can see within 120 feet of you. The spheres last as long as you concentrate (as if concentrating on a spell), up to 1 minute. Each sphere sheds dim light in a 30-foot radius.\n\nAs a bonus action, you can move each sphere up to 30 feet, but no farther than 120 feet away from you. When a creature other than you comes within 5 feet of a sphere, the sphere discharges lightning at that creature and disappears. That creature must make a DC 15 Dexterity saving throw. On a failed save, the creature takes lightning damage based on the number of spheres you created.\n\n| Spheres | Lightning Damage |\n|---------|------------------|\n| 4 | 2d4 |\n| 3 | 2d6 |\n| 2 | 5d4 |\n| 1 | 4d12 |\n\n**_Shooting Stars_**. You can expend 1 to 3 charges as an action. For every charge you expend, you launch a glowing mote of light from the ring at a point you can see within 60 feet of you. Each creature within a 15-foot cube originating from that point is showered in sparks and must make a DC 15 Dexterity saving throw, taking 5d4 fire damage on a failed save, or half as much damage on a successful one.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-spell-storing", + "fields": { + "name": "Ring of Spell Storing", + "desc": "This ring stores spells cast into it, holding them until the attuned wearer uses them. The ring can store up to 5 levels worth of spells at a time. When found, it contains 1d6 - 1 levels of stored spells chosen by the GM.\n\nAny creature can cast a spell of 1st through 5th level into the ring by touching the ring as the spell is cast. The spell has no effect, other than to be stored in the ring. If the ring can't hold the spell, the spell is expended without effect. The level of the slot used to cast the spell determines how much space it uses.\n\nWhile wearing this ring, you can cast any spell stored in it. The spell uses the slot level, spell save DC, spell attack bonus, and spellcasting ability of the original caster, but is otherwise treated as if you cast the spell. The spell cast from the ring is no longer stored in it, freeing up space.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-spell-turning", + "fields": { + "name": "Ring of Spell Turning", + "desc": "While wearing this ring, you have advantage on saving throws against any spell that targets only you (not in an area of effect). In addition, if you roll a 20 for the save and the spell is 7th level or lower, the spell has no effect on you and instead targets the caster, using the slot level, spell save DC, attack bonus, and spellcasting ability of the caster.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-swimming", + "fields": { + "name": "Ring of Swimming", + "desc": "You have a swimming speed of 40 feet while wearing this ring.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-telekinesis", + "fields": { + "name": "Ring of Telekinesis", + "desc": "While wearing this ring, you can cast the _telekinesis_ spell at will, but you can target only objects that aren't being worn or carried.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-the-ram", + "fields": { + "name": "Ring of the Ram", + "desc": "This ring has 3 charges, and it regains 1d3 expended charges daily at dawn. While wearing the ring, you can use an action to expend 1 to 3 of its charges to attack one creature you can see within 60 feet of you. The ring produces a spectral ram's head and makes its attack roll with a +7 bonus. On a hit, for each charge you spend, the target takes 2d10 force damage and is pushed 5 feet away from you.\n\nAlternatively, you can expend 1 to 3 of the ring's charges as an action to try to break an object you can see within 60 feet of you that isn't being worn or carried. The ring makes a Strength check with a +5 bonus for each charge you spend.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-three-wishes", + "fields": { + "name": "Ring of Three Wishes", + "desc": "While wearing this ring, you can use an action to expend 1 of its 3 charges to cast the _wish_ spell from it. The ring becomes nonmagical when you use the last charge.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-warmth", + "fields": { + "name": "Ring of Warmth", + "desc": "While wearing this ring, you have resistance to cold damage. In addition, you and everything you wear and carry are unharmed by temperatures as low as -50 degrees Fahrenheit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-water-walking", + "fields": { + "name": "Ring of Water Walking", + "desc": "While wearing this ring, you can stand on and move across any liquid surface as if it were solid ground.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_ring-of-x-ray-vision", + "fields": { + "name": "Ring of X-ray Vision", + "desc": "While wearing this ring, you can use an action to speak its command word. When you do so, you can see into and through solid matter for 1 minute. This vision has a radius of 30 feet. To you, solid objects within that radius appear transparent and don't prevent light from passing through them. The vision can penetrate 1 foot of stone, 1 inch of common metal, or up to 3 feet of wood or dirt. Thicker substances block the vision, as does a thin sheet of lead.\n\nWhenever you use the ring again before taking a long rest, you must succeed on a DC 15 Constitution saving throw or gain one level of exhaustion.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_robe-of-eyes", + "fields": { + "name": "Robe of Eyes", + "desc": "This robe is adorned with eyelike patterns. While you wear the robe, you gain the following benefits:\r\n\r\n* The robe lets you see in all directions, and you have advantage on Wisdom (Perception) checks that rely on sight.\r\n* You have darkvision out to a range of 120 feet.\r\n* You can see invisible creatures and objects, as well as see into the Ethereal Plane, out to a range of 120 feet.\r\n\r\nThe eyes on the robe can't be closed or averted. Although you can close or avert your own eyes, you are never considered to be doing so while wearing this robe.\r\n\r\nA _light_ spell cast on the robe or a _daylight_ spell cast within 5 feet of the robe causes you to be blinded for 1 minute. At the end of each of your turns, you can make a Constitution saving throw (DC 11 for _light_ or DC 15 for _daylight_), ending the blindness on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_robe-of-scintillating-colors", + "fields": { + "name": "Robe of Scintillating Colors", + "desc": "This robe has 3 charges, and it regains 1d3 expended charges daily at dawn. While you wear it, you can use an action and expend 1 charge to cause the garment to display a shifting pattern of dazzling hues until the end of your next turn. During this time, the robe sheds bright light in a 30-foot radius and dim light for an additional 30 feet. Creatures that can see you have disadvantage on attack rolls against you. In addition, any creature in the bright light that can see you when the robe's power is activated must succeed on a DC 15 Wisdom saving throw or become stunned until the effect ends.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_robe-of-stars", + "fields": { + "name": "Robe of Stars", + "desc": "This black or dark blue robe is embroidered with small white or silver stars. You gain a +1 bonus to saving throws while you wear it.\r\n\r\nSix stars, located on the robe's upper front portion, are particularly large. While wearing this robe, you can use an action to pull off one of the stars and use it to cast _magic missile_ as a 5th-level spell. Daily at dusk, 1d6 removed stars reappear on the robe.\r\n\r\nWhile you wear the robe, you can use an action to enter the Astral Plane along with everything you are wearing and carrying. You remain there until you use an action to return to the plane you were on. You reappear in the last space you occupied, or if that space is occupied, the nearest unoccupied space.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_robe-of-the-archmagi", + "fields": { + "name": "Robe of the Archmagi", + "desc": "This elegant garment is made from exquisite cloth of white, gray, or black and adorned with silvery runes. The robe's color corresponds to the alignment for which the item was created. A white robe was made for good, gray for neutral, and black for evil. You can't attune to a _robe of the archmagi_ that doesn't correspond to your alignment.\r\n\r\nYou gain these benefits while wearing the robe:\r\n\r\n* If you aren't wearing armor, your base Armor Class is 15 + your Dexterity modifier.\r\n* You have advantage on saving throws against spells and other magical effects.\r\n* Your spell save DC and spell attack bonus each increase by 2.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_robe-of-useful-items", + "fields": { + "name": "Robe of Useful Items", + "desc": "This robe has cloth patches of various shapes and colors covering it. While wearing the robe, you can use an action to detach one of the patches, causing it to become the object or creature it represents. Once the last patch is removed, the robe becomes an ordinary garment.\r\n\r\nThe robe has two of each of the following patches:\r\n\r\n* Dagger\r\n* Bullseye lantern (filled and lit)\r\n* Steel mirror\r\n* 10-foot pole\r\n* Hempen rope (50 feet, coiled)\r\n* Sack\r\n\r\nIn addition, the robe has 4d4 other patches. The GM chooses the patches or determines them randomly.\r\n\r\n| d100 | Patch |\r\n|--------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-08 | Bag of 100 gp |\r\n| 09-15 | Silver coffer (1 foot long, 6 inches wide and deep) worth 500 gp |\r\n| 16-22 | Iron door (up to 10 feet wide and 10 feet high, barred on one side of your choice), which you can place in an opening you can reach; it conforms to fit the opening, attaching and hinging itself |\r\n| 23-30 | 10 gems worth 100 gp each |\r\n| 31-44 | Wooden ladder (24 feet long) |\r\n| 45-51 | A riding horse with saddle bags |\r\n| 52-59 | Pit (a cube 10 feet on a side), which you can place on the ground within 10 feet of you |\r\n| 60-68 | 4 potions of healing |\r\n| 69-75 | Rowboat (12 feet long) |\r\n| 76-83 | Spell scroll containing one spell of 1st to 3rd level |\r\n| 84-90 | 2 mastiffs |\r\n| 91-96 | Window (2 feet by 4 feet, up to 2 feet deep), which you can place on a vertical surface you can reach |\r\n| 97-100 | Portable ram |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_robes", + "fields": { + "name": "Robes", + "desc": "Robes, for wearing.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rod", + "fields": { + "name": "Rod", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rod-of-absorption", + "fields": { + "name": "Rod of Absorption", + "desc": "While holding this rod, you can use your reaction to absorb a spell that is targeting only you and not with an area of effect. The absorbed spell's effect is canceled, and the spell's energy-not the spell itself-is stored in the rod. The energy has the same level as the spell when it was cast. The rod can absorb and store up to 50 levels of energy over the course of its existence. Once the rod absorbs 50 levels of energy, it can't absorb more. If you are targeted by a spell that the rod can't store, the rod has no effect on that spell.\n\nWhen you become attuned to the rod, you know how many levels of energy the rod has absorbed over the course of its existence, and how many levels of spell energy it currently has stored.\n\nIf you are a spellcaster holding the rod, you can convert energy stored in it into spell slots to cast spells you have prepared or know. You can create spell slots only of a level equal to or lower than your own spell slots, up to a maximum of 5th level. You use the stored levels in place of your slots, but otherwise cast the spell as normal. For example, you can use 3 levels stored in the rod as a 3rd-level spell slot.\n\nA newly found rod has 1d10 levels of spell energy stored in it already. A rod that can no longer absorb spell energy and has no energy remaining becomes nonmagical.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rod-of-alertness", + "fields": { + "name": "Rod of Alertness", + "desc": "This rod has a flanged head and the following properties.\n\n**_Alertness_**. While holding the rod, you have advantage on Wisdom (Perception) checks and on rolls for initiative.\n\n**_Spells_**. While holding the rod, you can use an action to cast one of the following spells from it: _detect evil and good_, _detect magic_, _detect poison and disease_, or _see invisibility._\n\n**_Protective Aura_**. As an action, you can plant the haft end of the rod in the ground, whereupon the rod's head sheds bright light in a 60-foot radius and dim light for an additional 60 feet. While in that bright light, you and any creature that is friendly to you gain a +1 bonus to AC and saving throws and can sense the location of any invisible hostile creature that is also in the bright light.\n\nThe rod's head stops glowing and the effect ends after 10 minutes, or when a creature uses an action to pull the rod from the ground. This property can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rod-of-lordly-might", + "fields": { + "name": "Rod of Lordly Might", + "desc": "This rod has a flanged head, and it functions as a magic mace that grants a +3 bonus to attack and damage rolls made with it. The rod has properties associated with six different buttons that are set in a row along the haft. It has three other properties as well, detailed below.\n\n**_Six Buttons_**. You can press one of the rod's six buttons as a bonus action. A button's effect lasts until you push a different button or until you push the same button again, which causes the rod to revert to its normal form.\n\nIf you press **button 1**, the rod becomes a _flame tongue_, as a fiery blade sprouts from the end opposite the rod's flanged head.\n\nIf you press **button 2**, the rod's flanged head folds down and two crescent-shaped blades spring out, transforming the rod into a magic battleaxe that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 3**, the rod's flanged head folds down, a spear point springs from the rod's tip, and the rod's handle lengthens into a 6-foot haft, transforming the rod into a magic spear that grants a +3 bonus to attack and damage rolls made with it.\n\nIf you press **button 4**, the rod transforms into a climbing pole up to 50 feet long, as you specify. In surfaces as hard as granite, a spike at the bottom and three hooks at the top anchor the pole. Horizontal bars 3 inches long fold out from the sides, 1 foot apart, forming a ladder. The pole can bear up to 4,000 pounds. More weight or lack of solid anchoring causes the rod to revert to its normal form.\n\nIf you press **button 5**, the rod transforms into a handheld battering ram and grants its user a +10 bonus to Strength checks made to break through doors, barricades, and other barriers.\n\nIf you press **button 6**, the rod assumes or remains in its normal form and indicates magnetic north. (Nothing happens if this function of the rod is used in a location that has no magnetic north.) The rod also gives you knowledge of your approximate depth beneath the ground or your height above it.\n\n**_Drain Life_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Constitution saving throw. On a failure, the target takes an extra 4d6 necrotic damage, and you regain a number of hit points equal to half that necrotic damage. This property can't be used again until the next dawn.\n\n**_Paralyze_**. When you hit a creature with a melee attack using the rod, you can force the target to make a DC 17 Strength saving throw. On a failure, the target is paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on a success. This property can't be used again until the next dawn.\n\n**_Terrify_**. While holding the rod, you can use an action to force each creature you can see within 30 feet of you to make a DC 17 Wisdom saving throw. On a failure, a target is frightened of you for 1 minute. A frightened target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. This property can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rod-of-rulership", + "fields": { + "name": "Rod of Rulership", + "desc": "You can use an action to present the rod and command obedience from each creature of your choice that you can see within 120 feet of you. Each target must succeed on a DC 15 Wisdom saving throw or be charmed by you for 8 hours. While charmed in this way, the creature regards you as its trusted leader. If harmed by you or your companions, or commanded to do something contrary to its nature, a target ceases to be charmed in this way. The rod can't be used again until the next dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rod-of-security", + "fields": { + "name": "Rod of Security", + "desc": "While holding this rod, you can use an action to activate it. The rod then instantly transports you and up to 199 other willing creatures you can see to a paradise that exists in an extraplanar space. You choose the form that the paradise takes. It could be a tranquil garden, lovely glade, cheery tavern, immense palace, tropical island, fantastic carnival, or whatever else you can imagine. Regardless of its nature, the paradise contains enough water and food to sustain its visitors. Everything else that can be interacted with inside the extraplanar space can exist only there. For example, a flower picked from a garden in the paradise disappears if it is taken outside the extraplanar space.\n\nFor each hour spent in the paradise, a visitor regains hit points as if it had spent 1 Hit Die. Also, creatures don't age while in the paradise, although time passes normally. Visitors can remain in the paradise for up to 200 days divided by the number of creatures present (round down).\n\nWhen the time runs out or you use an action to end it, all visitors reappear in the location they occupied when you activated the rod, or an unoccupied space nearest that location. The rod can't be used again until ten days have passed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "rod", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rope-hempen-50-feet", + "fields": { + "name": "Rope, hempen (50 feet)", + "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 2, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rope-of-climbing", + "fields": { + "name": "Rope of Climbing", + "desc": "This 60-foot length of silk rope weighs 3 pounds and can hold up to 3,000 pounds. If you hold one end of the rope and use an action to speak the command word, the rope animates. As a bonus action, you can command the other end to move toward a destination you choose. That end moves 10 feet on your turn when you first command it and 10 feet on each of your turns until reaching its destination, up to its maximum length away, or until you tell it to stop. You can also tell the rope to fasten itself securely to an object or to unfasten itself, to knot or unknot itself, or to coil itself for carrying.\r\n\r\nIf you tell the rope to knot, large knots appear at 1* foot intervals along the rope. While knotted, the rope shortens to a 50-foot length and grants advantage on checks made to climb it.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rope-of-entanglement", + "fields": { + "name": "Rope of Entanglement", + "desc": "This rope is 30 feet long and weighs 3 pounds. If you hold one end of the rope and use an action to speak its command word, the other end darts forward to entangle a creature you can see within 20 feet of you. The target must succeed on a DC 15 Dexterity saving throw or become restrained.\r\n\r\nYou can release the creature by using a bonus action to speak a second command word. A target restrained by the rope can use an action to make a DC 15 Strength or Dexterity check (target's choice). On a success, the creature is no longer restrained by the rope.\r\n\r\nThe rope has AC 20 and 20 hit points. It regains 1 hit point every 5 minutes as long as it has at least 1 hit point. If the rope drops to 0 hit points, it is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rope-silk-50-feet", + "fields": { + "name": "Rope, silk (50 feet)", + "desc": "Rope, whether made of hemp or silk, has 2 hit points and can be burst with a DC 17 Strength check.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_rowboat", + "fields": { + "name": "Rowboat", + "desc": "Waterborne vehicle. Speed 1.5mph", + "document": "srd", + "size": "large", + "weight": "100.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sack", + "fields": { + "name": "Sack", + "desc": "A sack. Capacity: 1 cubic foot/30 pounds of gear.", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_saffron", + "fields": { + "name": "Saffron", + "desc": "1lb of saffron.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sailing-ship", + "fields": { + "name": "Sailing Ship", + "desc": "Waterborne vehicle. Speed 2mph", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_salt", + "fields": { + "name": "Salt", + "desc": "1lb of salt.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scale-mail", + "fields": { + "name": "Scale mail", + "desc": "This armor consists of a coat and leggings (and perhaps a separate skirt) of leather covered with overlapping pieces of metal, much like the scales of a fish. The suit includes gauntlets.", + "document": "srd", + "size": "tiny", + "weight": "45.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": "srd_scale-mail", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scale-merchants", + "fields": { + "name": "Scale, Merchant's", + "desc": "A scale includes a small balance, pans, and a suitable assortment of weights up to 2 pounds. With it, you can measure the exact weight of small objects, such as raw precious metals or trade goods, to help determine their worth.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scarab-of-protection", + "fields": { + "name": "Scarab of Protection", + "desc": "If you hold this beetle-shaped medallion in your hand for 1 round, an inscription appears on its surface revealing its magical nature. It provides two benefits while it is on your person:\r\n\r\n* You have advantage on saving throws against spells.\r\n* The scarab has 12 charges. If you fail a saving throw against a necromancy spell or a harmful effect originating from an undead creature, you can use your reaction to expend 1 charge and turn the failed save into a successful one. The scarab crumbles into powder and is destroyed when its last charge is expended.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scimitar", + "fields": { + "name": "Scimitar", + "desc": "A scimitar.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "srd_scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scimitar-1", + "fields": { + "name": "Scimitar (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scimitar-2", + "fields": { + "name": "Scimitar (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scimitar-3", + "fields": { + "name": "Scimitar (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_scimitar-of-speed", + "fields": { + "name": "Scimitar of Speed", + "desc": "You gain a +2 bonus to attack and damage rolls made with this magic weapon. In addition, you can make one attack with it as a bonus action on each of your turns.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sealing-wax", + "fields": { + "name": "Sealing wax", + "desc": "For sealing written letters.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_serpent-venom", + "fields": { + "name": "Serpent venom", + "desc": "This poison must be harvested from a dead or incapacitated giant poisonous snake. A creature subjected to this poison must succeed on a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shawm", + "fields": { + "name": "Shawm", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sheep", + "fields": { + "name": "Sheep", + "desc": "One sheep.", + "document": "srd", + "size": "medium", + "weight": "75.000", + "armor_class": 10, + "hit_points": 4, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shield", + "fields": { + "name": "Shield", + "desc": "A shield is made from wood or metal and is carried in one hand. Wielding a shield increases your Armor Class by 2. You can benefit from only one shield at a time.", + "document": "srd", + "size": "tiny", + "weight": "6.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shield-of-missile-attraction", + "fields": { + "name": "Shield of Missile Attraction", + "desc": "While holding this shield, you have resistance to damage from ranged weapon attacks.\n\n**_Curse_**. This shield is cursed. Attuning to it curses you until you are targeted by the _remove curse_ spell or similar magic. Removing the shield fails to end the curse on you. Whenever a ranged weapon attack is made against a target within 10 feet of you, the curse causes you to become the target instead.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortbow", + "fields": { + "name": "Shortbow", + "desc": "A shortbow", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": "srd_shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortbow-1", + "fields": { + "name": "Shortbow (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortbow-2", + "fields": { + "name": "Shortbow (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortbow-3", + "fields": { + "name": "Shortbow (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortsword", + "fields": { + "name": "Shortsword", + "desc": "A short sword.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortsword-1", + "fields": { + "name": "Shortsword (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortsword-2", + "fields": { + "name": "Shortsword (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shortsword-3", + "fields": { + "name": "Shortsword (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_shovel", + "fields": { + "name": "Shovel", + "desc": "A shovel.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sickle", + "fields": { + "name": "Sickle", + "desc": "A sickle.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": "srd_sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sickle-1", + "fields": { + "name": "Sickle (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sickle-2", + "fields": { + "name": "Sickle (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sickle-3", + "fields": { + "name": "Sickle (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_signal-whistle", + "fields": { + "name": "Signal whistle", + "desc": "For signalling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.05", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_signet-ring", + "fields": { + "name": "Signet Ring", + "desc": "A ring with a signet on it.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "ring", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_silk", + "fields": { + "name": "Silk", + "desc": "1 sq. yd. of silk.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_silver", + "fields": { + "name": "Silver", + "desc": "1lb of silver", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_silver-piece", + "fields": { + "name": "Silver Piece", + "desc": "One gold piece is worth ten silver pieces, the most prevalent coin among commoners. A silver piece buys a laborer's work for half a day, a flask of lamp oil, or a night's rest in a poor inn.", + "document": "srd", + "size": "tiny", + "weight": "0.020", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sled", + "fields": { + "name": "Sled", + "desc": "Drawn vehicle", + "document": "srd", + "size": "large", + "weight": "300.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sling", + "fields": { + "name": "Sling", + "desc": "A sling.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": "srd_sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sling-1", + "fields": { + "name": "Sling (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sling-2", + "fields": { + "name": "Sling (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sling-3", + "fields": { + "name": "Sling (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sling-bullets", + "fields": { + "name": "Sling bullets", + "desc": "Technically their cost is 20 for 4cp.", + "document": "srd", + "size": "tiny", + "weight": "0.075", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "ammunition", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_slippers-of-spider-climbing", + "fields": { + "name": "Slippers of Spider Climbing", + "desc": "While you wear these light shoes, you can move up, down, and across vertical surfaces and upside down along ceilings, while leaving your hands free. You have a climbing speed equal to your walking speed. However, the slippers don't allow you to move this way on a slippery surface, such as one covered by ice or oil.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_smiths-tools", + "fields": { + "name": "Smith's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "8.000", + "armor_class": 0, + "hit_points": 0, + "cost": "20.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_soap", + "fields": { + "name": "Soap", + "desc": "For cleaning.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.02", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sovereign-glue", + "fields": { + "name": "Sovereign Glue", + "desc": "This viscous, milky-white substance can form a permanent adhesive bond between any two objects. It must be stored in a jar or flask that has been coated inside with _oil of slipperiness._ When found, a container contains 1d6 + 1 ounces.\r\n\r\nOne ounce of the glue can cover a 1-foot square surface. The glue takes 1 minute to set. Once it has done so, the bond it creates can be broken only by the application of _universal solvent_ or _oil of etherealness_, or with a _wish_ spell.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spear", + "fields": { + "name": "Spear", + "desc": "A spear.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": "srd_spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spear-1", + "fields": { + "name": "Spear (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spear-2", + "fields": { + "name": "Spear (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spear-3", + "fields": { + "name": "Spear (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-1st-level", + "fields": { + "name": "Spell Scroll (1st Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-2nd-level", + "fields": { + "name": "Spell Scroll (2nd Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-3rd-level", + "fields": { + "name": "Spell Scroll (3rd Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-4th-level", + "fields": { + "name": "Spell Scroll (4th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-5th-level", + "fields": { + "name": "Spell Scroll (5th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-6th-level", + "fields": { + "name": "Spell Scroll (6th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-7th-level", + "fields": { + "name": "Spell Scroll (7th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-8th-level", + "fields": { + "name": "Spell Scroll (8th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-9th-level", + "fields": { + "name": "Spell Scroll (9th Level)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spell-scroll-cantrip", + "fields": { + "name": "Spell Scroll (Cantrip)", + "desc": "A _spell scroll_ bears the words of a single spell, written in a mystical cipher. If the spell is on your class's spell list, you can use an action to read the scroll and cast its spell without having to provide any of the spell's components. Otherwise, the scroll is unintelligible.\\n\\nIf the spell is on your class's spell list but of a higher level than you can normally cast, you must make an ability check using your spellcasting ability to determine whether you cast it successfully. The DC equals 10 + the spell's level. On a failed check, the spell disappears from the scroll with no other effect. Once the spell is cast, the words on the scroll fade, and the scroll itself crumbles to dust.\\n\\nThe level of the spell on the scroll determines the spell's saving throw DC and attack bonus, as well as the scroll's rarity, as shown in the Spell Scroll table.\\n\\n**Spell Scroll (table)**\\n\\n| Spell Level | Rarity | Save DC | Attack Bonus |\\n|-------------|-----------|---------|--------------|\\n| Cantrip | Common | 13 | +5 |\\n| 1st | Common | 13 | +5 |\\n| 2nd | Uncommon | 13 | +5 |\\n| 3rd | Uncommon | 15 | +7 |\\n| 4th | Rare | 15 | +7 |\\n| 5th | Rare | 17 | +9 |\\n| 6th | Very rare | 17 | +9 |\\n| 7th | Very rare | 18 | +10 |\\n| 8th | Very rare | 18 | +10 |\\n| 9th | Legendary | 19 | +11 |\\n\\nA wizard spell on a _spell scroll_ can be copied just as spells in spellbooks can be copied. When a spell is copied from a the copier must succeed on an Intelligence (Arcana) check with a DC equal to 10 + the spell's level. If the check succeeds, the spell is successfully copied. Whether the check succeeds or fails, the _spell scroll_ is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "scroll", + "requires_attunement": false, + "rarity": "common" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spellbook", + "fields": { + "name": "Spellbook", + "desc": "Essential for wizards, a spellbook is a leather-­‐‑bound tome with 100 blank vellum pages suitable for recording spells.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spellguard-shield", + "fields": { + "name": "Spellguard Shield", + "desc": "While holding this shield, you have advantage on saving throws against spells and other magical effects, and spell attacks have disadvantage against you.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "shield", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sphere-of-annihilation", + "fields": { + "name": "Sphere of Annihilation", + "desc": "This 2-foot-diameter black sphere is a hole in the multiverse, hovering in space and stabilized by a magical field surrounding it.\r\n\r\nThe sphere obliterates all matter it passes through and all matter that passes through it. Artifacts are the exception. Unless an artifact is susceptible to damage from a _sphere of annihilation_, it passes through the sphere unscathed. Anything else that touches the sphere but isn't wholly engulfed and obliterated by it takes 4d10 force damage.\r\n\r\nThe sphere is stationary until someone controls it. If you are within 60 feet of an uncontrolled sphere, you can use an action to make a DC 25 Intelligence (Arcana) check. On a success, the sphere levitates in one direction of your choice, up to a number of feet equal to 5 × your Intelligence modifier (minimum 5 feet). On a failure, the sphere moves 10 feet toward you. A creature whose space the sphere enters must succeed on a DC 13 Dexterity saving throw or be touched by it, taking 4d10 force damage.\r\n\r\nIf you attempt to control a sphere that is under another creature's control, you make an Intelligence (Arcana) check contested by the other creature's Intelligence (Arcana) check. The winner of the contest gains control of the sphere and can levitate it as normal.\r\n\r\nIf the sphere comes into contact with a planar portal, such as that created by the _gate_ spell, or an extradimensional space, such as that within a _portable hole_, the GM determines randomly what happens, using the following table.\r\n\r\n| d100 | Result |\r\n|--------|------------------------------------------------------------------------------------------------------------------------------------|\r\n| 01-50 | The sphere is destroyed. |\r\n| 51-85 | The sphere moves through the portal or into the extradimensional space. |\r\n| 86-00 | A spatial rift sends each creature and object within 180 feet of the sphere, including the sphere, to a random plane of existence. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spike-iron", + "fields": { + "name": "Spike, iron", + "desc": "An iron spike.", + "document": "srd", + "size": "tiny", + "weight": "0.500", + "armor_class": 0, + "hit_points": 0, + "cost": "0.10", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_splint-armor", + "fields": { + "name": "Splint Armor", + "desc": "This armor is made of narrow vertical strips of metal riveted to a backing of leather that is worn over cloth padding. Flexible chain mail protects the joints.", + "document": "srd", + "size": "tiny", + "weight": "60.000", + "armor_class": 0, + "hit_points": 0, + "cost": "200.00", + "weapon": null, + "armor": "srd_splint", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sprig-of-mistletoe", + "fields": { + "name": "Sprig of mistletoe", + "desc": "A sprig of mistletoe that can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_spyglass", + "fields": { + "name": "Spyglass", + "desc": "Objects viewed through a spyglass are magnified to twice their size.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1000.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff", + "fields": { + "name": "Staff", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "srd_quarterstaff", + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-charming", + "fields": { + "name": "Staff of Charming", + "desc": "While holding this staff, you can use an action to expend 1 of its 10 charges to cast _charm person_, _command_, _or comprehend languages_ from it using your spell save DC. The staff can also be used as a magic quarterstaff.\n\nIf you are holding the staff and fail a saving throw against an enchantment spell that targets only you, you can turn your failed save into a successful one. You can't use this property of the staff again until the next dawn. If you succeed on a save against an enchantment spell that targets only you, with or without the staff's intervention, you can use your reaction to expend 1 charge from the staff and turn the spell back on its caster as if you had cast the spell.\n\nThe staff regains 1d8 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-fire", + "fields": { + "name": "Staff of Fire", + "desc": "You have resistance to fire damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _burning hands_ (1 charge), _fireball_ (3 charges), or _wall of fire_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff blackens, crumbles into cinders, and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-frost", + "fields": { + "name": "Staff of Frost", + "desc": "You have resistance to cold damage while you hold this staff.\n\nThe staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC: _cone of cold_ (5 charges), _fog cloud_ (1 charge), _ice storm_ (4 charges), or _wall of ice_ (4 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff turns to water and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-healing", + "fields": { + "name": "Staff of Healing", + "desc": "This staff has 10 charges. While holding it, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability modifier: _cure wounds_ (1 charge per spell level, up to 4th), _lesser restoration_ (2 charges), or _mass cure wounds_ (5 charges).\n\nThe staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff vanishes in a flash of light, lost forever.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-power", + "fields": { + "name": "Staff of Power", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you gain a +2 bonus to Armor Class, saving throws, and spell attack rolls.\n\nThe staff has 20 charges for the following properties. The staff regains 2d8 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff retains its +2 bonus to attack and damage rolls but loses all other properties. On a 20, the staff regains 1d8 + 2 charges.\n\n**_Power Strike_**. When you hit with a melee attack using the staff, you can expend 1 charge to deal an extra 1d6 force damage to the target.\n\n**_Spells_**. While holding this staff, you can use an action to expend 1 or more of its charges to cast one of the following spells from it, using your spell save DC and spell attack bonus: _cone of cold_ (5 charges), _fireball_ (5th-level version, 5 charges), _globe of invulnerability_ (6 charges), _hold monster_ (5 charges), _levitate_ (2 charges), _lightning bolt_ (5th-level version, 5 charges), _magic missile_ (1 charge), _ray of enfeeblement_ (1 charge), or _wall of force_ (5 charges).\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-striking", + "fields": { + "name": "Staff of Striking", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +3 bonus to attack and damage rolls made with it.\n\nThe staff has 10 charges. When you hit with a melee attack using it, you can expend up to 3 of its charges. For each charge you expend, the target takes an extra 1d6 force damage. The staff regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff becomes a nonmagical quarterstaff.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-swarming-insects", + "fields": { + "name": "Staff of Swarming Insects", + "desc": "This staff has 10 charges and regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, a swarm of insects consumes and destroys the staff, then disperses.\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC: _giant insect_ (4 charges) or _insect plague_ (5 charges).\n\n**_Insect Cloud_**. While holding the staff, you can use an action and expend 1 charge to cause a swarm of harmless flying insects to spread out in a 30-foot radius from you. The insects remain for 10 minutes, making the area heavily obscured for creatures other than you. The swarm moves with you, remaining centered on you. A wind of at least 10 miles per hour disperses the swarm and ends the effect.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-the-magi", + "fields": { + "name": "Staff of the Magi", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While you hold it, you gain a +2 bonus to spell attack rolls.\n\nThe staff has 50 charges for the following properties. It regains 4d6 + 2 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 20, the staff regains 1d12 + 1 charges.\n\n**_Spell Absorption_**. While holding the staff, you have advantage on saving throws against spells. In addition, you can use your reaction when another creature casts a spell that targets only you. If you do, the staff absorbs the magic of the spell, canceling its effect and gaining a number of charges equal to the absorbed spell's level. However, if doing so brings the staff's total number of charges above 50, the staff explodes as if you activated its retributive strike (see below).\n\n**_Spells_**. While holding the staff, you can use an action to expend some of its charges to cast one of the following spells from it, using your spell save DC and spellcasting ability: _conjure elemental_ (7 charges), _dispel magic_ (3 charges), _fireball_ (7th-level version, 7 charges), _flaming sphere_ (2 charges), _ice storm_ (4 charges), _invisibility_ (2 charges), _knock_ (2 charges), _lightning bolt_ (7th-level version, 7 charges), _passwall_ (5 charges), _plane shift_ (7 charges), _telekinesis_ (5 charges), _wall of fire_ (4 charges), or _web_ (2 charges).\n\nYou can also use an action to cast one of the following spells from the staff without using any charges: _arcane lock_, _detect magic_, _enlarge/reduce_, _light_, _mage hand_, or _protection from evil and good._\n\n**_Retributive Strike_**. You can use an action to break the staff over your knee or against a solid surface, performing a retributive strike. The staff is destroyed and releases its remaining magic in an explosion that expands to fill a 30-foot-radius sphere centered on it.\n\nYou have a 50 percent chance to instantly travel to a random plane of existence, avoiding the explosion. If you fail to avoid the effect, you take force damage equal to 16 × the number of charges in the staff. Every other creature in the area must make a DC 17 Dexterity saving throw. On a failed save, a creature takes an amount of damage based on how far away it is from the point of origin, as shown in the following table. On a successful save, a creature takes half as much damage.\n\n| Distance from Origin | Damage |\n|-----------------------|----------------------------------------|\n| 10 ft. away or closer | 8 × the number of charges in the staff |\n| 11 to 20 ft. away | 6 × the number of charges in the staff |\n| 21 to 30 ft. away | 4 × the number of charges in the staff |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-the-python", + "fields": { + "name": "Staff of the Python", + "desc": "You can use an action to speak this staff's command word and throw the staff on the ground within 10 feet of you. The staff becomes a giant constrictor snake under your control and acts on its own initiative count. By using a bonus action to speak the command word again, you return the staff to its normal form in a space formerly occupied by the snake.\n\nOn your turn, you can mentally command the snake if it is within 60 feet of you and you aren't incapacitated. You decide what action the snake takes and where it moves during its next turn, or you can issue it a general command, such as to attack your enemies or guard a location.\n\nIf the snake is reduced to 0 hit points, it dies and reverts to its staff form. The staff then shatters and is destroyed. If the snake reverts to staff form before losing all its hit points, it regains all of them.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-the-woodlands", + "fields": { + "name": "Staff of the Woodlands", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. While holding it, you have a +2 bonus to spell attack rolls.\n\nThe staff has 10 charges for the following properties. It regains 1d6 + 4 expended charges daily at dawn. If you expend the last charge, roll a d20. On a 1, the staff loses its properties and becomes a nonmagical quarterstaff.\n\n**_Spells_**. You can use an action to expend 1 or more of the staff's charges to cast one of the following spells from it, using your spell save DC: _animal friendship_ (1 charge), _awaken_ (5 charges), _barkskin_ (2 charges), _locate animals or plants_ (2 charges), _speak with animals_ (1 charge), _speak with plants_ (3 charges), or _wall of thorns_ (6 charges).\n\nYou can also use an action to cast the _pass without trace_ spell from the staff without using any charges. **_Tree Form_**. You can use an action to plant one end of the staff in fertile earth and expend 1 charge to transform the staff into a healthy tree. The tree is 60 feet tall and has a 5-foot-diameter trunk, and its branches at the top spread out in a 20-foot radius.\n\nThe tree appears ordinary but radiates a faint aura of transmutation magic if targeted by _detect magic_. While touching the tree and using another action to speak its command word, you return the staff to its normal form. Any creature in the tree falls when it reverts to a staff.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-thunder-and-lightning", + "fields": { + "name": "Staff of Thunder and Lightning", + "desc": "This staff can be wielded as a magic quarterstaff that grants a +2 bonus to attack and damage rolls made with it. It also has the following additional properties. When one of these properties is used, it can't be used again until the next dawn.\n\n**_Lightning_**. When you hit with a melee attack using the staff, you can cause the target to take an extra 2d6 lightning damage.\n\n**_Thunder_**. When you hit with a melee attack using the staff, you can cause the staff to emit a crack of thunder, audible out to 300 feet. The target you hit must succeed on a DC 17 Constitution saving throw or become stunned until the end of your next turn.\n\n**_Lightning Strike_**. You can use an action to cause a bolt of lightning to leap from the staff's tip in a line that is 5 feet wide and 120 feet long. Each creature in that line must make a DC 17 Dexterity saving throw, taking 9d6 lightning damage on a failed save, or half as much damage on a successful one.\n\n**_Thunderclap_**. You can use an action to cause the staff to issue a deafening thunderclap, audible out to 600 feet. Each creature within 60 feet of you (not including you) must make a DC 17 Constitution saving throw. On a failed save, a creature takes 2d6 thunder damage and becomes deafened for 1 minute. On a successful save, a creature takes half damage and isn't deafened.\n\n**_Thunder and Lightning_**. You can use an action to use the Lightning Strike and Thunderclap properties at the same time. Doing so doesn't expend the daily use of those properties, only the use of this one.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_staff-of-withering", + "fields": { + "name": "Staff of Withering", + "desc": "This staff has 3 charges and regains 1d3 expended charges daily at dawn.\n\nThe staff can be wielded as a magic quarterstaff. On a hit, it deals damage as a normal quarterstaff, and you can expend 1 charge to deal an extra 2d10 necrotic damage to the target. In addition, the target must succeed on a DC 15 Constitution saving throw or have disadvantage for 1 hour on any ability check or saving throw that uses Strength or Constitution.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "staff", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_stone-of-controlling-earth-elementals", + "fields": { + "name": "Stone of Controlling Earth Elementals", + "desc": "If the stone is touching the ground, you can use an action to speak its command word and summon an earth elemental, as if you had cast the _conjure elemental_ spell. The stone can't be used this way again until the next dawn. The stone weighs 5 pounds.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_stone-of-good-luck-luckstone", + "fields": { + "name": "Stone of Good Luck (Luckstone)", + "desc": "While this polished agate is on your person, you gain a +1 bonus to ability checks and saving throws.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_studded-leather-armor", + "fields": { + "name": "Studded Leather Armor", + "desc": "Made from tough but flexible leather, studded leather is reinforced with close-set rivets or spikes.", + "document": "srd", + "size": "tiny", + "weight": "13.000", + "armor_class": 0, + "hit_points": 0, + "cost": "45.00", + "weapon": null, + "armor": "srd_studded-leather", + "category": "armor", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sun-blade", + "fields": { + "name": "Sun Blade", + "desc": "This item appears to be a longsword hilt. While grasping the hilt, you can use a bonus action to cause a blade of pure radiance to spring into existence, or make the blade disappear. While the blade exists, this magic longsword has the finesse property. If you are proficient with shortswords or longswords, you are proficient with the _sun blade_.\n\nYou gain a +2 bonus to attack and damage rolls made with this weapon, which deals radiant damage instead of slashing damage. When you hit an undead with it, that target takes an extra 1d8 radiant damage.\n\nThe sword's luminous blade emits bright light in a 15-foot radius and dim light for an additional 15 feet. The light is sunlight. While the blade persists, you can use an action to expand or reduce its radius of bright and dim light by 5 feet each, to a maximum of 30 feet each or a minimum of 10 feet each.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-greatsword", + "fields": { + "name": "Sword of Life Stealing (Greatsword)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-longsword", + "fields": { + "name": "Sword of Life Stealing (Longsword)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-rapier", + "fields": { + "name": "Sword of Life Stealing (Rapier)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-life-stealing-shortsword", + "fields": { + "name": "Sword of Life Stealing (Shortsword)", + "desc": "When you attack a creature with this magic weapon and roll a 20 on the attack roll, that target takes an extra 3d6 necrotic damage, provided that the target isn't a construct or an undead. You gain temporary hit points equal to the extra damage dealt.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-greatsword", + "fields": { + "name": "Sword of Sharpness (Greatsword)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-longsword", + "fields": { + "name": "Sword of Sharpness (Longsword)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-scimitar", + "fields": { + "name": "Sword of Sharpness (Scimitar)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-sharpness-shortsword", + "fields": { + "name": "Sword of Sharpness (Shortsword)", + "desc": "When you attack an object with this magic sword and hit, maximize your weapon damage dice against the target.\n\nWhen you attack a creature with this weapon and roll a 20 on the attack roll, that target takes an extra 4d6 slashing damage. Then roll another d20. If you roll a 20, you lop off one of the target's limbs, with the effect of such loss determined by the GM. If the creature has no limb to sever, you lop off a portion of its body instead.\n\nIn addition, you can speak the sword's command word to cause the blade to shed bright light in a 10* foot radius and dim light for an additional 10 feet. Speaking the command word again or sheathing the sword puts out the light.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-greatsword", + "fields": { + "name": "Sword of Wounding (Greatsword)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-longsword", + "fields": { + "name": "Sword of Wounding (Longsword)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-rapier", + "fields": { + "name": "Sword of Wounding (Rapier)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_sword-of-wounding-shortsword", + "fields": { + "name": "Sword of Wounding (Shortsword)", + "desc": "Hit points lost to this weapon's damage can be regained only through a short or long rest, rather than by regeneration, magic, or any other means.\n\nOnce per turn, when you hit a creature with an attack using this magic weapon, you can wound the target. At the start of each of the wounded creature's turns, it takes 1d4 necrotic damage for each time you've wounded it, and it can then make a DC 15 Constitution saving throw, ending the effect of all such wounds on itself on a success. Alternatively, the wounded creature, or a creature within 5 feet of it, can use an action to make a DC 15 Wisdom (Medicine) check, ending the effect of such wounds on it on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_talisman-of-pure-good", + "fields": { + "name": "Talisman of Pure Good", + "desc": "This talisman is a mighty symbol of goodness. A creature that is neither good nor evil in alignment takes 6d6 radiant damage upon touching the talisman. An evil creature takes 8d6 radiant damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are a good cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 7 charges. If you are wearing or holding it, you can use an action to expend 1 charge from it and choose one creature you can see on the ground within 120 feet of you. If the target is of evil alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman disperses into motes of golden light and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_talisman-of-the-sphere", + "fields": { + "name": "Talisman of the Sphere", + "desc": "When you make an Intelligence (Arcana) check to control a _sphere of annihilation_ while you are holding this talisman, you double your proficiency bonus on the check. In addition, when you start your turn with control over a _sphere of annihilation_, you can use an action to levitate it 10 feet plus a number of additional feet equal to 10 × your Intelligence modifier.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_talisman-of-ultimate-evil", + "fields": { + "name": "Talisman of Ultimate Evil", + "desc": "This item symbolizes unrepentant evil. A creature that is neither good nor evil in alignment takes 6d6 necrotic damage upon touching the talisman. A good creature takes 8d6 necrotic damage upon touching the talisman. Either sort of creature takes the damage again each time it ends its turn holding or carrying the talisman.\r\n\r\nIf you are an evil cleric or paladin, you can use the talisman as a holy symbol, and you gain a +2 bonus to spell attack rolls while you wear or hold it.\r\n\r\nThe talisman has 6 charges. If you are wearing or holding it, you can use an action to expend 1 charge from the talisman and choose one creature you can see on the ground within 120 feet of you. If the target is of good alignment, a flaming fissure opens under it. The target must succeed on a DC 20 Dexterity saving throw or fall into the fissure and be destroyed, leaving no remains. The fissure then closes, leaving no trace of its existence. When you expend the last charge, the talisman dissolves into foul-smelling slime and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_tent", + "fields": { + "name": "Tent", + "desc": "A simple and portable canvas shelter, a tent sleeps two.", + "document": "srd", + "size": "tiny", + "weight": "20.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_thieves-tools", + "fields": { + "name": "Thieves' tools", + "desc": "This set of tools includes a small file, a set of lock picks, a small mirror mounted on a metal handle, a set of narrow-­‐‑bladed scissors, and a pair of pliers. Proficiency with these tools lets you add your proficiency bonus to any ability checks you make to disarm traps or open locks.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_tinderbox", + "fields": { + "name": "Tinderbox", + "desc": "This small container holds flint, fire steel, and tinder (usually dry cloth soaked in light oil) used to kindle a fire. Using it to light a torch—or anything else with abundant, exposed fuel—takes an action. Lighting any other fire takes 1 minute.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.50", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_tinkers-tools", + "fields": { + "name": "Tinker's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "10.000", + "armor_class": 0, + "hit_points": 0, + "cost": "50.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_tome-of-clear-thought", + "fields": { + "name": "Tome of Clear Thought", + "desc": "This book contains memory and logic exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Intelligence score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_tome-of-leadership-and-influence", + "fields": { + "name": "Tome of Leadership and Influence", + "desc": "This book contains guidelines for influencing and charming others, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Charisma score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_tome-of-understanding", + "fields": { + "name": "Tome of Understanding", + "desc": "This book contains intuition and insight exercises, and its words are charged with magic. If you spend 48 hours over a period of 6 days or fewer studying the book's contents and practicing its guidelines, your Wisdom score increases by 2, as does your maximum for that score. The manual then loses its magic, but regains it in a century.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_torch", + "fields": { + "name": "Torch", + "desc": "A torch burns for 1 hour, providing bright light in a 20-­‐‑foot radius and dim light for an additional 20 feet. If you make a melee attack with a burning torch and hit, it deals 1 fire damage.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_torpor", + "fields": { + "name": "Torpor", + "desc": "A creature subjected to this poison must succeed on a DC 15 Constitution saving throw or become poisoned for 4d6 hours. The poisoned creature is incapacitated.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "600.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_totem", + "fields": { + "name": "Totem", + "desc": "Can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_trident", + "fields": { + "name": "Trident", + "desc": "A trident.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "srd_trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_trident-1", + "fields": { + "name": "Trident (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_trident-2", + "fields": { + "name": "Trident (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_trident-3", + "fields": { + "name": "Trident (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_trident-of-fish-command", + "fields": { + "name": "Trident of Fish Command", + "desc": "This trident is a magic weapon. It has 3 charges. While you carry it, you can use an action and expend 1 charge to cast _dominate beast_ (save DC 15) from it on a beast that has an innate swimming speed. The trident regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_trident", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_truth-serum", + "fields": { + "name": "Truth serum", + "desc": "A creature subjected to this poison must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. The poisoned creature can't knowingly speak a lie, as if under the effect of a zone of truth spell.\r\n\\n\\n\r\n**_Ingested._** A creature must swallow an entire dose of ingested poison to suffer its effects. The dose can be delivered in food or a liquid. You may decide that a partial dose has a reduced effect, such as allowing advantage on the saving throw or dealing only half damage on a failed save.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "150.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_universal-solvent", + "fields": { + "name": "Universal Solvent", + "desc": "This tube holds milky liquid with a strong alcohol smell. You can use an action to pour the contents of the tube onto a surface within reach. The liquid instantly dissolves up to 1 square foot of adhesive it touches, including _sovereign glue._", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vial", + "fields": { + "name": "Vial", + "desc": "For holding liquids. Capacity: 4 ounces liquid.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-battleaxe", + "fields": { + "name": "Vicious Weapon (Battleaxe)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_battleaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-blowgun", + "fields": { + "name": "Vicious Weapon (Blowgun)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_blowgun", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-club", + "fields": { + "name": "Vicious Weapon (Club)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_club", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-crossbow-hand", + "fields": { + "name": "Vicious Weapon (Crossbow-Hand)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_crossbow-hand", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-crossbow-heavy", + "fields": { + "name": "Vicious Weapon (Crossbow-Heavy)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_crossbow-heavy", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-crossbow-light", + "fields": { + "name": "Vicious Weapon (Crossbow-Light)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_crossbow-light", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-dagger", + "fields": { + "name": "Vicious Weapon (Dagger)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_dagger", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-dart", + "fields": { + "name": "Vicious Weapon (Dart)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_dart", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-flail", + "fields": { + "name": "Vicious Weapon (Flail)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_flail", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-glaive", + "fields": { + "name": "Vicious Weapon (Glaive)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_glaive", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-greataxe", + "fields": { + "name": "Vicious Weapon (Greataxe)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greataxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-greatclub", + "fields": { + "name": "Vicious Weapon (Greatclub)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatclub", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-greatsword", + "fields": { + "name": "Vicious Weapon (Greatsword)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-halberd", + "fields": { + "name": "Vicious Weapon (Halberd)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_halberd", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-handaxe", + "fields": { + "name": "Vicious Weapon (Handaxe)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_handaxe", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-javelin", + "fields": { + "name": "Vicious Weapon (Javelin)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_javelin", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-lance", + "fields": { + "name": "Vicious Weapon (Lance)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_lance", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-light-hammer", + "fields": { + "name": "Vicious Weapon (Light-Hammer)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_light-hammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-longbow", + "fields": { + "name": "Vicious Weapon (Longbow)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-longsword", + "fields": { + "name": "Vicious Weapon (Longsword)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-mace", + "fields": { + "name": "Vicious Weapon (Mace)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_mace", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-maul", + "fields": { + "name": "Vicious Weapon (Maul)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_maul", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-morningstar", + "fields": { + "name": "Vicious Weapon (Morningstar)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_morningstar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-net", + "fields": { + "name": "Vicious Weapon (Net)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_net", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-pike", + "fields": { + "name": "Vicious Weapon (Pike)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_pike", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-quarterstaff", + "fields": { + "name": "Vicious Weapon (Quarterstaff)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_quarterstaff", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-rapier", + "fields": { + "name": "Vicious Weapon (Rapier)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_rapier", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-scimitar", + "fields": { + "name": "Vicious Weapon (Scimitar)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-shortbow", + "fields": { + "name": "Vicious Weapon (Shortbow)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortbow", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-shortsword", + "fields": { + "name": "Vicious Weapon (Shortsword)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-sickle", + "fields": { + "name": "Vicious Weapon (Sickle)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_sickle", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-sling", + "fields": { + "name": "Vicious Weapon (Sling)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_sling", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-spear", + "fields": { + "name": "Vicious Weapon (Spear)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_spear", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-trident", + "fields": { + "name": "Vicious Weapon (Trident)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_trident", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-war-pick", + "fields": { + "name": "Vicious Weapon (War-Pick)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_war-pick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-warhammer", + "fields": { + "name": "Vicious Weapon (Warhammer)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vicious-weapon-whip", + "fields": { + "name": "Vicious Weapon (Whip)", + "desc": "When you roll a 20 on your attack roll with this magic weapon, your critical hit deals an extra 2d6 damage of the weapon's type.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_viol", + "fields": { + "name": "Viol", + "desc": "Several of the most common types of musical instruments are shown on the table as examples. If you have proficiency with a given musical instrument, you can add your proficiency bonus to any ability checks you make to play music with the instrument. A bard can use a musical instrument as a spellcasting focus. Each type of musical instrument requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "30.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vorpal-sword-greatsword", + "fields": { + "name": "Vorpal Sword (Greatsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_greatsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vorpal-sword-longsword", + "fields": { + "name": "Vorpal Sword (Longsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_longsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vorpal-sword-scimitar", + "fields": { + "name": "Vorpal Sword (Scimitar)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_scimitar", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_vorpal-sword-shortsword", + "fields": { + "name": "Vorpal Sword (Shortsword)", + "desc": "You gain a +3 bonus to attack and damage rolls made with this magic weapon. In addition, the weapon ignores resistance to slashing damage.\n\nWhen you attack a creature that has at least one head with this weapon and roll a 20 on the attack roll, you cut off one of the creature's heads. The creature dies if it can't survive without the lost head. A creature is immune to this effect if it is immune to slashing damage, doesn't have or need a head, has legendary actions, or the GM decides that the creature is too big for its head to be cut off with this weapon. Such a creature instead takes an extra 6d8 slashing damage from the hit.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_shortsword", + "armor": null, + "category": "weapon", + "requires_attunement": true, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wagon", + "fields": { + "name": "Wagon", + "desc": "Drawn vehicle.", + "document": "srd", + "size": "large", + "weight": "400.000", + "armor_class": 0, + "hit_points": 0, + "cost": "35.00", + "weapon": null, + "armor": null, + "category": "drawn-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand", + "fields": { + "name": "Wand", + "desc": "Can be used as an arcane focus.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-binding", + "fields": { + "name": "Wand of Binding", + "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Spells_**. While holding the wand, you can use an action to expend some of its charges to cast one of the following spells (save DC 17): _hold monster_ (5 charges) or _hold person_ (2 charges).\n\n**_Assisted Escape_**. While holding the wand, you can use your reaction to expend 1 charge and gain advantage on a saving throw you make to avoid being paralyzed or restrained, or you can expend 1 charge and gain advantage on any check you make to escape a grapple.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-enemy-detection", + "fields": { + "name": "Wand of Enemy Detection", + "desc": "This wand has 7 charges. While holding it, you can use an action and expend 1 charge to speak its command word. For the next minute, you know the direction of the nearest creature hostile to you within 60 feet, but not its distance from you. The wand can sense the presence of hostile creatures that are ethereal, invisible, disguised, or hidden, as well as those in plain sight. The effect ends if you stop holding the wand.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-fear", + "fields": { + "name": "Wand of Fear", + "desc": "This wand has 7 charges for the following properties. It regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.\n\n**_Command_**. While holding the wand, you can use an action to expend 1 charge and command another creature to flee or grovel, as with the _command_ spell (save DC 15).\n\n**_Cone of Fear_**. While holding the wand, you can use an action to expend 2 charges, causing the wand's tip to emit a 60-foot cone of amber light. Each creature in the cone must succeed on a DC 15 Wisdom saving throw or become frightened of you for 1 minute. While it is frightened in this way, a creature must spend its turns trying to move as far away from you as it can, and it can't willingly move to a space within 30 feet of you. It also can't take reactions. For its action, it can use only the Dash action or try to escape from an effect that prevents it from moving. If it has nowhere it can move, the creature can use the Dodge action. At the end of each of its turns, a creature can repeat the saving throw, ending the effect on itself on a success.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-fireballs", + "fields": { + "name": "Wand of Fireballs", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _fireball_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-lightning-bolts", + "fields": { + "name": "Wand of Lightning Bolts", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _lightning bolt_ spell (save DC 15) from it. For 1 charge, you cast the 3rd-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-magic-detection", + "fields": { + "name": "Wand of Magic Detection", + "desc": "This wand has 3 charges. While holding it, you can expend 1 charge as an action to cast the _detect magic_ spell from it. The wand regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-magic-missiles", + "fields": { + "name": "Wand of Magic Missiles", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 or more of its charges to cast the _magic missile_ spell from it. For 1 charge, you cast the 1st-level version of the spell. You can increase the spell slot level by one for each additional charge you expend.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-paralysis", + "fields": { + "name": "Wand of Paralysis", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cause a thin blue ray to streak from the tip toward a creature you can see within 60 feet of you. The target must succeed on a DC 15 Constitution saving throw or be paralyzed for 1 minute. At the end of each of the target's turns, it can repeat the saving throw, ending the effect on itself on a success.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-polymorph", + "fields": { + "name": "Wand of Polymorph", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _polymorph_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-secrets", + "fields": { + "name": "Wand of Secrets", + "desc": "The wand has 3 charges. While holding it, you can use an action to expend 1 of its charges, and if a secret door or trap is within 30 feet of you, the wand pulses and points at the one nearest to you. The wand regains 1d3 expended charges daily at dawn.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-the-war-mage-1", + "fields": { + "name": "Wand of the War Mage (+1)", + "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-the-war-mage-2", + "fields": { + "name": "Wand of the War Mage (+2)", + "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-the-war-mage-3", + "fields": { + "name": "Wand of the War Mage (+3)", + "desc": "While holding this wand, you gain a bonus to spell attack rolls determined by the wand's rarity. In addition, you ignore half cover when making a spell attack.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": true, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-web", + "fields": { + "name": "Wand of Web", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges to cast the _web_ spell (save DC 15) from it.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into ashes and is destroyed.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wand-of-wonder", + "fields": { + "name": "Wand of Wonder", + "desc": "This wand has 7 charges. While holding it, you can use an action to expend 1 of its charges and choose a target within 120 feet of you. The target can be a creature, an object, or a point in space. Roll d100 and consult the following table to discover what happens.\n\nIf the effect causes you to cast a spell from the wand, the spell's save DC is 15. If the spell normally has a range expressed in feet, its range becomes 120 feet if it isn't already.\n\nIf an effect covers an area, you must center the spell on and include the target. If an effect has multiple possible subjects, the GM randomly determines which ones are affected.\n\nThe wand regains 1d6 + 1 expended charges daily at dawn. If you expend the wand's last charge, roll a d20. On a 1, the wand crumbles into dust and is destroyed.\n\n| d100 | Effect |\n|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| 01-05 | You cast slow. 06-10 You cast faerie fire. |\n| 11-15 | You are stunned until the start of your next turn, believing something awesome just happened. 16-20 You cast gust of wind. |\n| 21-25 | You cast detect thoughts on the target you chose. If you didn't target a creature, you instead take 1d6 psychic damage. |\n| 26-30 | You cast stinking cloud. |\n| 31-33 | Heavy rain falls in a 60-foot radius centered on the target. The area becomes lightly obscured. The rain falls until the start of your next turn. |\n| 34-36 | An animal appears in the unoccupied space nearest the target. The animal isn't under your control and acts as it normally would. Roll a d100 to determine which animal appears. On a 01-25, a rhinoceros appears; on a 26-50, an elephant appears; and on a 51-100, a rat appears. |\n| 37-46 | You cast lightning bolt. |\n| 47-49 | A cloud of 600 oversized butterflies fills a 30-foot radius centered on the target. The area becomes heavily obscured. The butterflies remain for 10 minutes. |\n| 50-53 | You enlarge the target as if you had cast enlarge/reduce. If the target can't be affected by that spell, or if you didn't target a creature, you become the target. |\n| 54-58 | You cast darkness. |\n| 59-62 | Grass grows on the ground in a 60-foot radius centered on the target. If grass is already there, it grows to ten times its normal size and remains overgrown for 1 minute. |\n| 63-65 | An object of the GM's choice disappears into the Ethereal Plane. The object must be neither worn nor carried, within 120 feet of the target, and no larger than 10 feet in any dimension. |\n| 66-69 | You shrink yourself as if you had cast enlarge/reduce on yourself. |\n| 70-79 | You cast fireball. |\n| 80-84 | You cast invisibility on yourself. |\n| 85-87 | Leaves grow from the target. If you chose a point in space as the target, leaves sprout from the creature nearest to that point. Unless they are picked off, the leaves turn brown and fall off after 24 hours. |\n| 88-90 | A stream of 1d4 × 10 gems, each worth 1 gp, shoots from the wand's tip in a line 30 feet long and 5 feet wide. Each gem deals 1 bludgeoning damage, and the total damage of the gems is divided equally among all creatures in the line. |\n| 91-95 | A burst of colorful shimmering light extends from you in a 30-foot radius. You and each creature in the area that can see must succeed on a DC 15 Constitution saving throw or become blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. |\n| 96-97 | The target's skin turns bright blue for 1d10 days. If you chose a point in space, the creature nearest to that point is affected. |\n| 98-100 | If you targeted a creature, it must make a DC 15 Constitution saving throw. If you didn't target a creature, you become the target and must make the saving throw. If the saving throw fails by 5 or more, the target is instantly petrified. On any other failed save, the target is restrained and begins to turn to stone. While restrained in this way, the target must repeat the saving throw at the end of its next turn, becoming petrified on a failure or ending the effect on a success. The petrification lasts until the target is freed by the greater restoration spell or similar magic. |", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_war-pick", + "fields": { + "name": "War pick", + "desc": "A war pick.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "srd_war-pick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_war-pick-1", + "fields": { + "name": "War-Pick (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_war-pick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_war-pick-2", + "fields": { + "name": "War-Pick (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_war-pick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_war-pick-3", + "fields": { + "name": "War-Pick (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_war-pick", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_warhammer", + "fields": { + "name": "Warhammer", + "desc": "A warhammer.", + "document": "srd", + "size": "tiny", + "weight": "2.000", + "armor_class": 0, + "hit_points": 0, + "cost": "15.00", + "weapon": "srd_warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_warhammer-1", + "fields": { + "name": "Warhammer (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_warhammer-2", + "fields": { + "name": "Warhammer (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_warhammer-3", + "fields": { + "name": "Warhammer (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_warhammer", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_warship", + "fields": { + "name": "Warship", + "desc": "Waterborne vehicle. Speed 2.5mph", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "25000.00", + "weapon": null, + "armor": null, + "category": "waterborne-vehicle", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_waterskin", + "fields": { + "name": "Waterskin", + "desc": "For drinking. 5lb is the full weight. Capacity: 4 pints liquid.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.20", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_weavers-tools", + "fields": { + "name": "Weaver's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_well-of-many-worlds", + "fields": { + "name": "Well of Many Worlds", + "desc": "This fine black cloth, soft as silk, is folded up to the dimensions of a handkerchief. It unfolds into a circular sheet 6 feet in diameter.\r\n\r\nYou can use an action to unfold and place the _well of many worlds_ on a solid surface, whereupon it creates a two-way portal to another world or plane of existence. Each time the item opens a portal, the GM decides where it leads. You can use an action to close an open portal by taking hold of the edges of the cloth and folding it up. Once _well of many worlds_ has opened a portal, it can't do so again for 1d8 hours.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "legendary" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wheat", + "fields": { + "name": "Wheat", + "desc": "1 pound of wheat.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "trade-good", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_whetstone", + "fields": { + "name": "Whetstone", + "desc": "For sharpening.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.01", + "weapon": null, + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_whip", + "fields": { + "name": "Whip", + "desc": "A whip.", + "document": "srd", + "size": "tiny", + "weight": "3.000", + "armor_class": 0, + "hit_points": 0, + "cost": "2.00", + "weapon": "srd_whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_whip-1", + "fields": { + "name": "Whip (+1)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_whip-2", + "fields": { + "name": "Whip (+2)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_whip-3", + "fields": { + "name": "Whip (+3)", + "desc": "You have a bonus to attack and damage rolls made with this magic weapon. The bonus is determined by the weapon's rarity.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": null, + "weapon": "srd_whip", + "armor": null, + "category": "weapon", + "requires_attunement": false, + "rarity": "very-rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wind-fan", + "fields": { + "name": "Wind Fan", + "desc": "While holding this fan, you can use an action to cast the _gust of wind_ spell (save DC 13) from it. Once used, the fan shouldn't be used again until the next dawn. Each time it is used again before then, it has a cumulative 20 percent chance of not working and tearing into useless, nonmagical tatters.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": false, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_winged-boots", + "fields": { + "name": "Winged Boots", + "desc": "While you wear these boots, you have a flying speed equal to your walking speed. You can use the boots to fly for up to 4 hours, all at once or in several shorter flights, each one using a minimum of 1 minute from the duration. If you are flying when the duration expires, you descend at a rate of 30 feet per round until you land.\r\n\r\nThe boots regain 2 hours of flying capability for every 12 hours they aren't in use.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "uncommon" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wings-of-flying", + "fields": { + "name": "Wings of Flying", + "desc": "While wearing this cloak, you can use an action to speak its command word. This turns the cloak into a pair of bat wings or bird wings on your back for 1 hour or until you repeat the command word as an action. The wings give you a flying speed of 60 feet. When they disappear, you can't use them again for 1d12 hours.\r\n\r\n\r\n\r\n\r\n## Sentient Magic Items\r\n\r\nSome magic items possess sentience and personality. Such an item might be possessed, haunted by the spirit of a previous owner, or self-aware thanks to the magic used to create it. In any case, the item behaves like a character, complete with personality quirks, ideals, bonds, and sometimes flaws. A sentient item might be a cherished ally to its wielder or a continual thorn in the side.\r\n\r\nMost sentient items are weapons. Other kinds of items can manifest sentience, but consumable items such as potions and scrolls are never sentient.\r\n\r\nSentient magic items function as NPCs under the GM's control. Any activated property of the item is under the item's control, not its wielder's. As long as the wielder maintains a good relationship with the item, the wielder can access those properties normally. If the relationship is strained, the item can suppress its activated properties or even turn them against the wielder.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "0.00", + "weapon": null, + "armor": null, + "category": "wondrous-item", + "requires_attunement": true, + "rarity": "rare" + } +}, +{ + "model": "api_v2.item", + "pk": "srd_woodcarvers-tools", + "fields": { + "name": "Woodcarver's tools", + "desc": "These special tools include the items needed to pursue a craft or trade.\\n\\n\r\nProficiency with a set of artisan’s tools lets you add your proficiency bonus to any ability checks you make using the tools in your craft. Each type of artisan’s tools requires a separate proficiency.", + "document": "srd", + "size": "tiny", + "weight": "5.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1.00", + "weapon": null, + "armor": null, + "category": "tools", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wooden-staff", + "fields": { + "name": "Wooden staff", + "desc": "Can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "4.000", + "armor_class": 0, + "hit_points": 0, + "cost": "5.00", + "weapon": "srd_quarterstaff", + "armor": null, + "category": "adventuring-gear", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_wyvern-poison", + "fields": { + "name": "Wyvern poison", + "desc": "This poison must be harvested from a dead or incapacitated wyvern. A creature subjected to this poison must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\r\n\\n\\n\r\n**_Injury._** Injury poison can be applied to weapons, ammunition, trap components, and other objects that deal piercing or slashing damage and remains potent until delivered through a wound or washed off. A creature that takes piercing or slashing damage from an object coated with the poison is exposed to its effects.", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 0, + "hit_points": 0, + "cost": "1200.00", + "weapon": null, + "armor": null, + "category": "poison", + "requires_attunement": false, + "rarity": null + } +}, +{ + "model": "api_v2.item", + "pk": "srd_yew-wand", + "fields": { + "name": "Yew wand", + "desc": "Can be used as a druidic focus.", + "document": "srd", + "size": "tiny", + "weight": "1.000", + "armor_class": 0, + "hit_points": 0, + "cost": "10.00", + "weapon": null, + "armor": null, + "category": "wand", + "requires_attunement": false, + "rarity": null + } +} +] From 9f5b1ff04a867549de1fd0e8f2f56063d9fd115a Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 31 May 2024 08:45:38 -0500 Subject: [PATCH 59/84] VOM references fixed. --- data/v2/kobold-press/vom/Item.json | 758 ++++++++++++++--------------- 1 file changed, 379 insertions(+), 379 deletions(-) diff --git a/data/v2/kobold-press/vom/Item.json b/data/v2/kobold-press/vom/Item.json index b107c152..6616bc0d 100644 --- a/data/v2/kobold-press/vom/Item.json +++ b/data/v2/kobold-press/vom/Item.json @@ -258,7 +258,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -429,7 +429,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "warpick", + "weapon": "srd_war-pick", "armor": null, "category": "weapon", "requires_attunement": true, @@ -506,7 +506,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-mail", + "armor": "srd_chain-mail", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -543,7 +543,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "mace", + "weapon": "srd_mace", "armor": null, "category": "weapon", "requires_attunement": true, @@ -601,7 +601,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "padded", + "armor": "srd_padded", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -620,7 +620,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "hide", + "armor": "srd_hide", "category": "armor", "requires_attunement": true, "rarity": "rare" @@ -733,7 +733,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": true, @@ -791,7 +791,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "hide", + "armor": "srd_hide", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -1189,7 +1189,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1265,7 +1265,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -1284,7 +1284,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "handaxe", + "weapon": "srd_handaxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1303,7 +1303,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -1341,7 +1341,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1360,7 +1360,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1379,7 +1379,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1494,7 +1494,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "hide", + "armor": "srd_hide", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -1512,7 +1512,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longbow", + "weapon": "srd_longbow", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1531,7 +1531,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1550,7 +1550,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1569,7 +1569,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "blowgun", + "weapon": "srd_blowgun", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1588,7 +1588,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "crossbow-hand", + "weapon": "srd_crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1607,7 +1607,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "crossbow-heavy", + "weapon": "srd_crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1626,7 +1626,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "crossbow-light", + "weapon": "srd_crossbow-light", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1645,7 +1645,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1664,7 +1664,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dart", + "weapon": "srd_dart", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1683,7 +1683,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "glaive", + "weapon": "srd_glaive", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1702,7 +1702,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1721,7 +1721,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1740,7 +1740,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "halberd", + "weapon": "srd_halberd", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1759,7 +1759,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "handaxe", + "weapon": "srd_handaxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1778,7 +1778,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "javelin", + "weapon": "srd_javelin", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1797,7 +1797,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "lance", + "weapon": "srd_lance", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1816,7 +1816,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longbow", + "weapon": "srd_longbow", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1835,7 +1835,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1854,7 +1854,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "morningstar", + "weapon": "srd_morningstar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1873,7 +1873,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "pike", + "weapon": "srd_pike", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1892,7 +1892,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1911,7 +1911,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1930,7 +1930,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortbow", + "weapon": "srd_shortbow", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1949,7 +1949,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1968,7 +1968,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "sickle", + "weapon": "srd_sickle", "armor": null, "category": "weapon", "requires_attunement": true, @@ -1987,7 +1987,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2006,7 +2006,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "trident", + "weapon": "srd_trident", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2025,7 +2025,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "warpick", + "weapon": "srd_war-pick", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2044,7 +2044,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2121,7 +2121,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "breastplate", + "armor": "srd_breastplate", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -2140,7 +2140,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-mail", + "armor": "srd_chain-mail", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -2159,7 +2159,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-shirt", + "armor": "srd_chain-shirt", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -2178,7 +2178,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "half-plate", + "armor": "srd_half-plate", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -2197,7 +2197,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "hide", + "armor": "srd_hide", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -2216,7 +2216,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "leather", + "armor": "srd_leather", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -2235,7 +2235,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "padded", + "armor": "srd_padded", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -2254,7 +2254,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -2273,7 +2273,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "ring-mail", + "armor": "srd_ring-mail", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -2292,7 +2292,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "scale-mail", + "armor": "srd_scale-mail", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -2311,7 +2311,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "splint", + "armor": "srd_splint", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -2330,7 +2330,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "studded-leather", + "armor": "srd_studded-leather", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -2348,7 +2348,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2367,7 +2367,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "blowgun", + "weapon": "srd_blowgun", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2386,7 +2386,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "crossbow-hand", + "weapon": "srd_crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2405,7 +2405,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "crossbow-heavy", + "weapon": "srd_crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2424,7 +2424,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "crossbow-light", + "weapon": "srd_crossbow-light", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2443,7 +2443,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2462,7 +2462,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dart", + "weapon": "srd_dart", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2481,7 +2481,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "glaive", + "weapon": "srd_glaive", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2500,7 +2500,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2519,7 +2519,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2538,7 +2538,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "halberd", + "weapon": "srd_halberd", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2557,7 +2557,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "handaxe", + "weapon": "srd_handaxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2576,7 +2576,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "javelin", + "weapon": "srd_javelin", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2595,7 +2595,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "lance", + "weapon": "srd_lance", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2614,7 +2614,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longbow", + "weapon": "srd_longbow", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2633,7 +2633,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2652,7 +2652,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "morningstar", + "weapon": "srd_morningstar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2671,7 +2671,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "pike", + "weapon": "srd_pike", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2690,7 +2690,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2709,7 +2709,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2728,7 +2728,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortbow", + "weapon": "srd_shortbow", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2747,7 +2747,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2766,7 +2766,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "sickle", + "weapon": "srd_sickle", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2785,7 +2785,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2804,7 +2804,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "trident", + "weapon": "srd_trident", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2823,7 +2823,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "warpick", + "weapon": "srd_war-pick", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2842,7 +2842,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2880,7 +2880,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "mace", + "weapon": "srd_mace", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2956,7 +2956,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": true, @@ -2975,7 +2975,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "mace", + "weapon": "srd_mace", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3298,7 +3298,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -3356,7 +3356,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "hide", + "armor": "srd_hide", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -3412,7 +3412,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "lance", + "weapon": "srd_lance", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3716,7 +3716,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3735,7 +3735,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3754,7 +3754,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3773,7 +3773,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "handaxe", + "weapon": "srd_handaxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3792,7 +3792,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3811,7 +3811,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3830,7 +3830,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3849,7 +3849,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -3868,7 +3868,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -4154,7 +4154,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "breastplate", + "armor": "srd_breastplate", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -4172,7 +4172,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": true, @@ -4305,7 +4305,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4324,7 +4324,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4343,7 +4343,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4362,7 +4362,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4381,7 +4381,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -4495,7 +4495,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -4515,7 +4515,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "breastplate", + "armor": "srd_breastplate", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -4534,7 +4534,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-mail", + "armor": "srd_chain-mail", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -4553,7 +4553,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-shirt", + "armor": "srd_chain-shirt", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -4572,7 +4572,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "half-plate", + "armor": "srd_half-plate", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -4591,7 +4591,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -4610,7 +4610,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "ring-mail", + "armor": "srd_ring-mail", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -4629,7 +4629,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "scale-mail", + "armor": "srd_scale-mail", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -4648,7 +4648,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "splint", + "armor": "srd_splint", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -5084,7 +5084,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "mace", + "weapon": "srd_mace", "armor": null, "category": "weapon", "requires_attunement": true, @@ -5256,7 +5256,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -5350,7 +5350,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -5369,7 +5369,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "mace", + "weapon": "srd_mace", "armor": null, "category": "weapon", "requires_attunement": true, @@ -5617,7 +5617,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "hide", + "armor": "srd_hide", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -5636,7 +5636,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "leather", + "armor": "srd_leather", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -5730,7 +5730,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -5749,7 +5749,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -5844,7 +5844,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": true, @@ -5863,7 +5863,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -5882,7 +5882,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -5901,7 +5901,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -5920,7 +5920,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -5939,7 +5939,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -6148,7 +6148,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "net", + "weapon": "srd_net", "armor": null, "category": "weapon", "requires_attunement": true, @@ -6167,7 +6167,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -6186,7 +6186,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": true, @@ -6262,7 +6262,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -6738,7 +6738,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "breastplate", + "armor": "srd_breastplate", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -6757,7 +6757,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-mail", + "armor": "srd_chain-mail", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -6776,7 +6776,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-shirt", + "armor": "srd_chain-shirt", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -6795,7 +6795,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "half-plate", + "armor": "srd_half-plate", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -6814,7 +6814,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "hide", + "armor": "srd_hide", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -6833,7 +6833,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "leather", + "armor": "srd_leather", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -6852,7 +6852,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "padded", + "armor": "srd_padded", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -6871,7 +6871,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -6890,7 +6890,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "ring-mail", + "armor": "srd_ring-mail", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -6909,7 +6909,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "scale-mail", + "armor": "srd_scale-mail", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -6928,7 +6928,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "splint", + "armor": "srd_splint", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -6947,7 +6947,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "studded-leather", + "armor": "srd_studded-leather", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -7003,7 +7003,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "warpick", + "weapon": "srd_war-pick", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7060,7 +7060,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": true, @@ -7270,7 +7270,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -7687,7 +7687,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "maul", + "weapon": "srd_maul", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7706,7 +7706,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "warhammer", + "weapon": "srd_warhammer", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7726,7 +7726,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -7839,7 +7839,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "javelin", + "weapon": "srd_javelin", "armor": null, "category": "weapon", "requires_attunement": false, @@ -7916,7 +7916,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "breastplate", + "armor": "srd_breastplate", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -7935,7 +7935,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-mail", + "armor": "srd_chain-mail", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -7954,7 +7954,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-shirt", + "armor": "srd_chain-shirt", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -7973,7 +7973,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "half-plate", + "armor": "srd_half-plate", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -7992,7 +7992,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "hide", + "armor": "srd_hide", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -8011,7 +8011,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "leather", + "armor": "srd_leather", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -8030,7 +8030,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "padded", + "armor": "srd_padded", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -8049,7 +8049,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -8068,7 +8068,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "ring-mail", + "armor": "srd_ring-mail", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -8087,7 +8087,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "scale-mail", + "armor": "srd_scale-mail", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -8106,7 +8106,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "splint", + "armor": "srd_splint", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -8125,7 +8125,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "studded-leather", + "armor": "srd_studded-leather", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -8314,7 +8314,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -8333,7 +8333,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -8352,7 +8352,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -8371,7 +8371,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "handaxe", + "weapon": "srd_handaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -8390,7 +8390,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -8409,7 +8409,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": false, @@ -8428,7 +8428,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": false, @@ -8447,7 +8447,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -8542,7 +8542,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": true, @@ -8618,7 +8618,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "crossbow-heavy", + "weapon": "srd_crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": true, @@ -8638,7 +8638,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "scale-mail", + "armor": "srd_scale-mail", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -8752,7 +8752,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "breastplate", + "armor": "srd_breastplate", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -8771,7 +8771,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-mail", + "armor": "srd_chain-mail", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -8790,7 +8790,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-shirt", + "armor": "srd_chain-shirt", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -8809,7 +8809,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "half-plate", + "armor": "srd_half-plate", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -8828,7 +8828,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "hide", + "armor": "srd_hide", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -8847,7 +8847,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "leather", + "armor": "srd_leather", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -8866,7 +8866,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "padded", + "armor": "srd_padded", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -8885,7 +8885,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -8904,7 +8904,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "ring-mail", + "armor": "srd_ring-mail", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -8923,7 +8923,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "scale-mail", + "armor": "srd_scale-mail", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -8942,7 +8942,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "splint", + "armor": "srd_splint", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -8961,7 +8961,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "studded-leather", + "armor": "srd_studded-leather", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -9017,7 +9017,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -9036,7 +9036,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -9283,7 +9283,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "light-hammer", + "weapon": "srd_light-hammer", "armor": null, "category": "weapon", "requires_attunement": true, @@ -9587,7 +9587,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -9606,7 +9606,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "net", + "weapon": "srd_net", "armor": null, "category": "weapon", "requires_attunement": true, @@ -9626,7 +9626,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "hide", + "armor": "srd_hide", "category": "armor", "requires_attunement": true, "rarity": "uncommon" @@ -9815,7 +9815,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "club", + "weapon": "srd_club", "armor": null, "category": "weapon", "requires_attunement": false, @@ -9891,7 +9891,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -9910,7 +9910,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -9929,7 +9929,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -9948,7 +9948,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -9967,7 +9967,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -9986,7 +9986,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "club", + "weapon": "srd_club", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10005,7 +10005,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "lance", + "weapon": "srd_lance", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10024,7 +10024,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "morningstar", + "weapon": "srd_morningstar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10043,7 +10043,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "pike", + "weapon": "srd_pike", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10062,7 +10062,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10081,7 +10081,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "warpick", + "weapon": "srd_war-pick", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10252,7 +10252,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "club", + "weapon": "srd_club", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10309,7 +10309,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10328,7 +10328,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10347,7 +10347,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10443,7 +10443,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-mail", + "armor": "srd_chain-mail", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -10480,7 +10480,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10499,7 +10499,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10518,7 +10518,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10537,7 +10537,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10556,7 +10556,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10595,7 +10595,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "leather", + "armor": "srd_leather", "category": "armor", "requires_attunement": true, "rarity": "uncommon" @@ -10804,7 +10804,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -10841,7 +10841,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10936,7 +10936,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longbow", + "weapon": "srd_longbow", "armor": null, "category": "weapon", "requires_attunement": false, @@ -10955,7 +10955,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -10974,7 +10974,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11146,7 +11146,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "half-plate", + "armor": "srd_half-plate", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -11164,7 +11164,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "pike", + "weapon": "srd_pike", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11354,7 +11354,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatclub", + "weapon": "srd_greatclub", "armor": null, "category": "weapon", "requires_attunement": false, @@ -11526,7 +11526,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": true, "rarity": "rare" @@ -11602,7 +11602,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "breastplate", + "armor": "srd_breastplate", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -11621,7 +11621,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "half-plate", + "armor": "srd_half-plate", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -11640,7 +11640,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -11697,7 +11697,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "breastplate", + "armor": "srd_breastplate", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -11716,7 +11716,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-mail", + "armor": "srd_chain-mail", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -11735,7 +11735,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-shirt", + "armor": "srd_chain-shirt", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -11754,7 +11754,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "half-plate", + "armor": "srd_half-plate", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -11773,7 +11773,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -11792,7 +11792,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "ring-mail", + "armor": "srd_ring-mail", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -11811,7 +11811,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "scale-mail", + "armor": "srd_scale-mail", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -11830,7 +11830,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "splint", + "armor": "srd_splint", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -11924,7 +11924,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -11943,7 +11943,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": false, @@ -11962,7 +11962,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -11981,7 +11981,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "glaive", + "weapon": "srd_glaive", "armor": null, "category": "weapon", "requires_attunement": true, @@ -12000,7 +12000,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -12019,7 +12019,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -12038,7 +12038,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "halberd", + "weapon": "srd_halberd", "armor": null, "category": "weapon", "requires_attunement": true, @@ -12057,7 +12057,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -12076,7 +12076,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -12095,7 +12095,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -12114,7 +12114,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "sickle", + "weapon": "srd_sickle", "armor": null, "category": "weapon", "requires_attunement": true, @@ -12133,7 +12133,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": true, @@ -12152,7 +12152,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -12171,7 +12171,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "crossbow-hand", + "weapon": "srd_crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12190,7 +12190,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "crossbow-heavy", + "weapon": "srd_crossbow-heavy", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12209,7 +12209,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "crossbow-light", + "weapon": "srd_crossbow-light", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12229,7 +12229,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-mail", + "armor": "srd_chain-mail", "category": "armor", "requires_attunement": false, "rarity": "common" @@ -12248,7 +12248,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "half-plate", + "armor": "srd_half-plate", "category": "armor", "requires_attunement": false, "rarity": "common" @@ -12267,7 +12267,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "padded", + "armor": "srd_padded", "category": "armor", "requires_attunement": false, "rarity": "common" @@ -12286,7 +12286,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "common" @@ -12305,7 +12305,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "ring-mail", + "armor": "srd_ring-mail", "category": "armor", "requires_attunement": false, "rarity": "common" @@ -12324,7 +12324,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "scale-mail", + "armor": "srd_scale-mail", "category": "armor", "requires_attunement": false, "rarity": "common" @@ -12343,7 +12343,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "splint", + "armor": "srd_splint", "category": "armor", "requires_attunement": false, "rarity": "common" @@ -12399,7 +12399,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -12570,7 +12570,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -12837,7 +12837,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "padded", + "armor": "srd_padded", "category": "armor", "requires_attunement": true, "rarity": "uncommon" @@ -13007,7 +13007,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13045,7 +13045,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dart", + "weapon": "srd_dart", "armor": null, "category": "weapon", "requires_attunement": true, @@ -13102,7 +13102,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "warpick", + "weapon": "srd_war-pick", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13140,7 +13140,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "crossbow-hand", + "weapon": "srd_crossbow-hand", "armor": null, "category": "weapon", "requires_attunement": true, @@ -13292,7 +13292,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": true, @@ -13673,7 +13673,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "scale-mail", + "armor": "srd_scale-mail", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -13824,7 +13824,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longbow", + "weapon": "srd_longbow", "armor": null, "category": "weapon", "requires_attunement": true, @@ -13862,7 +13862,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -13881,7 +13881,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -13938,7 +13938,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "warhammer", + "weapon": "srd_warhammer", "armor": null, "category": "weapon", "requires_attunement": true, @@ -13996,7 +13996,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "breastplate", + "armor": "srd_breastplate", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -14565,7 +14565,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": false, @@ -15059,7 +15059,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, @@ -15078,7 +15078,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "club", + "weapon": "srd_club", "armor": null, "category": "weapon", "requires_attunement": false, @@ -15135,7 +15135,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatclub", + "weapon": "srd_greatclub", "armor": null, "category": "weapon", "requires_attunement": true, @@ -15174,7 +15174,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "breastplate", + "armor": "srd_breastplate", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -15192,7 +15192,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": true, @@ -15269,7 +15269,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "leather", + "armor": "srd_leather", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -15325,7 +15325,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "lance", + "weapon": "srd_lance", "armor": null, "category": "weapon", "requires_attunement": true, @@ -15515,7 +15515,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -15534,7 +15534,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -15610,7 +15610,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "flail", + "weapon": "srd_flail", "armor": null, "category": "weapon", "requires_attunement": true, @@ -15762,7 +15762,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -15781,7 +15781,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": true, @@ -15819,7 +15819,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -15895,7 +15895,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -15934,7 +15934,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "scale-mail", + "armor": "srd_scale-mail", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -15952,7 +15952,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": true, @@ -16029,7 +16029,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "leather", + "armor": "srd_leather", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -16066,7 +16066,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "flail", + "weapon": "srd_flail", "armor": null, "category": "weapon", "requires_attunement": false, @@ -16199,7 +16199,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortbow", + "weapon": "srd_shortbow", "armor": null, "category": "weapon", "requires_attunement": false, @@ -16218,7 +16218,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -16256,7 +16256,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "sickle", + "weapon": "srd_sickle", "armor": null, "category": "weapon", "requires_attunement": true, @@ -16504,7 +16504,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "leather", + "armor": "srd_leather", "category": "armor", "requires_attunement": false, "rarity": "common" @@ -16522,7 +16522,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greatsword", + "weapon": "srd_greatsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -16541,7 +16541,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "longsword", + "weapon": "srd_longsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -16560,7 +16560,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "rapier", + "weapon": "srd_rapier", "armor": null, "category": "weapon", "requires_attunement": true, @@ -16579,7 +16579,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -16598,7 +16598,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -16655,7 +16655,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "light-hammer", + "weapon": "srd_light-hammer", "armor": null, "category": "weapon", "requires_attunement": false, @@ -16694,7 +16694,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "legendary" @@ -16769,7 +16769,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -16845,7 +16845,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": true, @@ -16864,7 +16864,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": true, @@ -16883,7 +16883,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "spear", + "weapon": "srd_spear", "armor": null, "category": "weapon", "requires_attunement": true, @@ -16921,7 +16921,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -17016,7 +17016,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, @@ -17092,7 +17092,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17130,7 +17130,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17149,7 +17149,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17168,7 +17168,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17187,7 +17187,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, @@ -17206,7 +17206,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, @@ -17225,7 +17225,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17244,7 +17244,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17263,7 +17263,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17282,7 +17282,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17301,7 +17301,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17320,7 +17320,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17339,7 +17339,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17358,7 +17358,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17377,7 +17377,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17396,7 +17396,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17415,7 +17415,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17434,7 +17434,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17453,7 +17453,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17472,7 +17472,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17491,7 +17491,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17510,7 +17510,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17529,7 +17529,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17548,7 +17548,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17567,7 +17567,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17586,7 +17586,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17605,7 +17605,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, @@ -17624,7 +17624,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17643,7 +17643,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17662,7 +17662,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17681,7 +17681,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "glaive", + "weapon": "srd_glaive", "armor": null, "category": "weapon", "requires_attunement": true, @@ -17700,7 +17700,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "halberd", + "weapon": "srd_halberd", "armor": null, "category": "weapon", "requires_attunement": true, @@ -17719,7 +17719,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "lance", + "weapon": "srd_lance", "armor": null, "category": "weapon", "requires_attunement": true, @@ -17738,7 +17738,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "pike", + "weapon": "srd_pike", "armor": null, "category": "weapon", "requires_attunement": true, @@ -17758,7 +17758,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "splint", + "armor": "srd_splint", "category": "armor", "requires_attunement": true, "rarity": "uncommon" @@ -17776,7 +17776,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -17814,7 +17814,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, @@ -17852,7 +17852,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -17891,7 +17891,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "studded-leather", + "armor": "srd_studded-leather", "category": "armor", "requires_attunement": true, "rarity": "uncommon" @@ -18004,7 +18004,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -18061,7 +18061,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": false, @@ -18081,7 +18081,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "hide", + "armor": "srd_hide", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -18100,7 +18100,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "leather", + "armor": "srd_leather", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -18137,7 +18137,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "battleaxe", + "weapon": "srd_battleaxe", "armor": null, "category": "weapon", "requires_attunement": false, @@ -18270,7 +18270,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": true, @@ -18327,7 +18327,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "flail", + "weapon": "srd_flail", "armor": null, "category": "weapon", "requires_attunement": true, @@ -18365,7 +18365,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": true, @@ -18384,7 +18384,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "shortsword", + "weapon": "srd_shortsword", "armor": null, "category": "weapon", "requires_attunement": true, @@ -18536,7 +18536,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "club", + "weapon": "srd_club", "armor": null, "category": "weapon", "requires_attunement": true, @@ -18650,7 +18650,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dart", + "weapon": "srd_dart", "armor": null, "category": "weapon", "requires_attunement": false, @@ -18688,7 +18688,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": true, @@ -18707,7 +18707,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "trident", + "weapon": "srd_trident", "armor": null, "category": "weapon", "requires_attunement": true, @@ -18727,7 +18727,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "hide", + "armor": "srd_hide", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -18746,7 +18746,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "leather", + "armor": "srd_leather", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -18783,7 +18783,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": false, @@ -18840,7 +18840,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "greataxe", + "weapon": "srd_greataxe", "armor": null, "category": "weapon", "requires_attunement": true, @@ -18878,7 +18878,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": true, @@ -18898,7 +18898,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "plate", + "armor": "srd_plate", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -18935,7 +18935,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": true, @@ -18954,7 +18954,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -18973,7 +18973,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "scimitar", + "weapon": "srd_scimitar", "armor": null, "category": "weapon", "requires_attunement": true, @@ -19107,7 +19107,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "padded", + "armor": "srd_padded", "category": "armor", "requires_attunement": false, "rarity": "uncommon" @@ -19182,7 +19182,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "dagger", + "weapon": "srd_dagger", "armor": null, "category": "weapon", "requires_attunement": true, @@ -19715,7 +19715,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "leather", + "armor": "srd_leather", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -19753,7 +19753,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "chain-mail", + "armor": "srd_chain-mail", "category": "armor", "requires_attunement": false, "rarity": "rare" @@ -19809,7 +19809,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "quarterstaff", + "weapon": "srd_quarterstaff", "armor": null, "category": "staff", "requires_attunement": false, @@ -19828,7 +19828,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "whip", + "weapon": "srd_whip", "armor": null, "category": "weapon", "requires_attunement": true, @@ -19886,7 +19886,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "hide", + "armor": "srd_hide", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -19905,7 +19905,7 @@ "hit_points": 0, "cost": "0.00", "weapon": null, - "armor": "leather", + "armor": "srd_leather", "category": "armor", "requires_attunement": false, "rarity": "very-rare" @@ -20037,7 +20037,7 @@ "armor_class": 0, "hit_points": 0, "cost": "0.00", - "weapon": "pike", + "weapon": "srd_pike", "armor": null, "category": "weapon", "requires_attunement": true, From dfa12027cc21bede6916984f5b89f4fd838b73cb Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 31 May 2024 16:18:55 -0500 Subject: [PATCH 60/84] Partial creature refactor. --- api_v2/management/commands/export.py | 5 +- api_v2/migrations/0087_auto_20240531_1353.py | 22 + ...8_rename_creature_creatureaction_parent.py | 18 + ...e_creature_action_creatureattack_parent.py | 18 + .../0090_alter_creatureattack_key.py | 18 + api_v2/models/creature.py | 18 +- data/v2/wizards-of-the-coast/srd/Armor.json | 312 +-- .../srd/CreatureAction.json | 1938 ++++++----------- .../srd/CreatureAttack.json | 772 +++---- data/v2/wizards-of-the-coast/srd/Weapon.json | 1852 ++++++++-------- 10 files changed, 2203 insertions(+), 2770 deletions(-) create mode 100644 api_v2/migrations/0087_auto_20240531_1353.py create mode 100644 api_v2/migrations/0088_rename_creature_creatureaction_parent.py create mode 100644 api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py create mode 100644 api_v2/migrations/0090_alter_creatureattack_key.py diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index b1026027..e7a8370a 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -109,9 +109,12 @@ def handle(self, *args, **options) -> None: for model in app_models: SKIPPED_MODEL_NAMES = ['Document', 'Ruleset', 'License', 'Publisher','SearchResult'] - CHILD_MODEL_NAMES = ['RaceTrait', 'FeatBenefit', 'BackgroundBenefit', 'ClassFeatureItem', 'SpellCastingOption'] + CHILD_MODEL_NAMES = ['RaceTrait', 'FeatBenefit', 'BackgroundBenefit', 'ClassFeatureItem', 'SpellCastingOption','CreatureAction'] + CHILD_CHILD_MODEL_NAMES = ['CreatureAttack'] if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES: + if model.__name__ in CHILD_CHILD_MODEL_NAMES: + modelq = model.objects.filter(parent__parent__document=doc).order_by('pk') if model.__name__ in CHILD_MODEL_NAMES: modelq = model.objects.filter(parent__document=doc).order_by('pk') else: diff --git a/api_v2/migrations/0087_auto_20240531_1353.py b/api_v2/migrations/0087_auto_20240531_1353.py new file mode 100644 index 00000000..4f2de011 --- /dev/null +++ b/api_v2/migrations/0087_auto_20240531_1353.py @@ -0,0 +1,22 @@ +# Generated by Django 3.2.20 on 2024-05-31 13:53 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0086_rename_spell_spellcastingoption_parent'), + ] + + operations = [ + migrations.RemoveField( + model_name='creatureaction', + name='document', + ), + migrations.AlterField( + model_name='creatureaction', + name='key', + field=models.CharField(help_text='Unique key for the Document.', max_length=100, primary_key=True, serialize=False), + ), + ] diff --git a/api_v2/migrations/0088_rename_creature_creatureaction_parent.py b/api_v2/migrations/0088_rename_creature_creatureaction_parent.py new file mode 100644 index 00000000..c7f346de --- /dev/null +++ b/api_v2/migrations/0088_rename_creature_creatureaction_parent.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-05-31 13:58 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0087_auto_20240531_1353'), + ] + + operations = [ + migrations.RenameField( + model_name='creatureaction', + old_name='creature', + new_name='parent', + ), + ] diff --git a/api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py b/api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py new file mode 100644 index 00000000..f89145c2 --- /dev/null +++ b/api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-05-31 21:14 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0088_rename_creature_creatureaction_parent'), + ] + + operations = [ + migrations.RenameField( + model_name='creatureattack', + old_name='creature_action', + new_name='parent', + ), + ] diff --git a/api_v2/migrations/0090_alter_creatureattack_key.py b/api_v2/migrations/0090_alter_creatureattack_key.py new file mode 100644 index 00000000..cfb63753 --- /dev/null +++ b/api_v2/migrations/0090_alter_creatureattack_key.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-05-31 21:15 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0089_rename_creature_action_creatureattack_parent'), + ] + + operations = [ + migrations.AlterField( + model_name='creatureattack', + name='key', + field=models.CharField(help_text='Unique key for the Document.', max_length=100, primary_key=True, serialize=False), + ), + ] diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index 72c7968d..58adf715 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -5,7 +5,7 @@ from .abilities import Abilities from .abstracts import HasDescription, HasName from .abstracts import damage_die_count_field, damage_die_type_field -from .abstracts import damage_bonus_field +from .abstracts import damage_bonus_field, key_field from .object import Object from .document import FromDocument from .enums import CREATURE_ATTACK_TYPES, CREATURE_USES_TYPES @@ -58,11 +58,13 @@ def search_result_extra_fields(self): def creatureset(self): return self.creaturesets.all() -#TODO remove FromDocument -class CreatureAction(HasName, HasDescription, FromDocument): - #TODO refactor to parent - creature = models.ForeignKey( +class CreatureAction(HasName, HasDescription): + + key = key_field() + + #TODO Refactor to parent. + parent = models.ForeignKey( Creature, on_delete=models.CASCADE, help_text='The creature to which this action belongs.' @@ -80,12 +82,10 @@ class CreatureAction(HasName, HasDescription, FromDocument): help_text='The parameter X for if the action is limited.' ) -#TODO rename to CreatureActionAttack -#TODO remove FromDocument class CreatureAttack(HasName, FromDocument): + key = key_field() - #TODO refactor to parent - creature_action = models.ForeignKey( + parent = models.ForeignKey( CreatureAction, on_delete=models.CASCADE, help_text='The creature action to which this attack belongs.' diff --git a/data/v2/wizards-of-the-coast/srd/Armor.json b/data/v2/wizards-of-the-coast/srd/Armor.json index 1832a540..ed0f2cf8 100644 --- a/data/v2/wizards-of-the-coast/srd/Armor.json +++ b/data/v2/wizards-of-the-coast/srd/Armor.json @@ -1,158 +1,158 @@ [ - { - "model": "api_v2.armor", - "pk": "srd_breastplate", - "fields": { - "name": "Breastplate", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 14, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } - }, - { - "model": "api_v2.armor", - "pk": "srd_chain-mail", - "fields": { - "name": "Chain mail", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": 13, - "ac_base": 16, - "ac_add_dexmod": false, - "ac_cap_dexmod": null - } - }, - { - "model": "api_v2.armor", - "pk": "srd_chain-shirt", - "fields": { - "name": "Chain shirt", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 13, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } - }, - { - "model": "api_v2.armor", - "pk": "srd_half-plate", - "fields": { - "name": "Half plate", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": null, - "ac_base": 15, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } - }, - { - "model": "api_v2.armor", - "pk": "srd_hide", - "fields": { - "name": "Hide", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 12, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } - }, - { - "model": "api_v2.armor", - "pk": "srd_leather", - "fields": { - "name": "Leather", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 11, - "ac_add_dexmod": true, - "ac_cap_dexmod": null - } - }, - { - "model": "api_v2.armor", - "pk": "srd_padded", - "fields": { - "name": "Padded", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": null, - "ac_base": 11, - "ac_add_dexmod": true, - "ac_cap_dexmod": null - } - }, - { - "model": "api_v2.armor", - "pk": "srd_plate", - "fields": { - "name": "Plate", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": 15, - "ac_base": 18, - "ac_add_dexmod": false, - "ac_cap_dexmod": null - } - }, - { - "model": "api_v2.armor", - "pk": "srd_ring-mail", - "fields": { - "name": "Ring mail", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": null, - "ac_base": 14, - "ac_add_dexmod": false, - "ac_cap_dexmod": null - } - }, - { - "model": "api_v2.armor", - "pk": "srd_scale-mail", - "fields": { - "name": "Scale mail", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": null, - "ac_base": 14, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } - }, - { - "model": "api_v2.armor", - "pk": "srd_splint", - "fields": { - "name": "Splint", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": 15, - "ac_base": 17, - "ac_add_dexmod": false, - "ac_cap_dexmod": null - } - }, - { - "model": "api_v2.armor", - "pk": "srd_studded-leather", - "fields": { - "name": "Studded leather", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 12, - "ac_add_dexmod": true, - "ac_cap_dexmod": null - } +{ + "model": "api_v2.armor", + "pk": "srd_breastplate", + "fields": { + "name": "Breastplate", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 14, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 } -] \ No newline at end of file +}, +{ + "model": "api_v2.armor", + "pk": "srd_chain-mail", + "fields": { + "name": "Chain mail", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": 13, + "ac_base": 16, + "ac_add_dexmod": false, + "ac_cap_dexmod": null + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_chain-shirt", + "fields": { + "name": "Chain shirt", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 13, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_half-plate", + "fields": { + "name": "Half plate", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": null, + "ac_base": 15, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_hide", + "fields": { + "name": "Hide", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 12, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_leather", + "fields": { + "name": "Leather", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 11, + "ac_add_dexmod": true, + "ac_cap_dexmod": null + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_padded", + "fields": { + "name": "Padded", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": null, + "ac_base": 11, + "ac_add_dexmod": true, + "ac_cap_dexmod": null + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_plate", + "fields": { + "name": "Plate", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": 15, + "ac_base": 18, + "ac_add_dexmod": false, + "ac_cap_dexmod": null + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_ring-mail", + "fields": { + "name": "Ring mail", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": null, + "ac_base": 14, + "ac_add_dexmod": false, + "ac_cap_dexmod": null + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_scale-mail", + "fields": { + "name": "Scale mail", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": null, + "ac_base": 14, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_splint", + "fields": { + "name": "Splint", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": 15, + "ac_base": 17, + "ac_add_dexmod": false, + "ac_cap_dexmod": null + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_studded-leather", + "fields": { + "name": "Studded leather", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 12, + "ac_add_dexmod": true, + "ac_cap_dexmod": null + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/CreatureAction.json b/data/v2/wizards-of-the-coast/srd/CreatureAction.json index 7abe66e7..5f8421a2 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureAction.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureAction.json @@ -5,8 +5,7 @@ "fields": { "name": "Enslave", "desc": "The aboleth targets one creature it can see within 30 feet of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the aboleth until the aboleth dies or until it is on a different plane of existence from the target. The charmed target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.\n\nWhenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.\n", - "document": "srd", - "creature": "aboleth", + "parent": "aboleth", "uses_type": "PER_DAY", "uses_param": 3 } @@ -17,8 +16,7 @@ "fields": { "name": "Multiattack", "desc": "The aboleth makes three tentacle attacks.\n", - "document": "srd", - "creature": "aboleth", + "parent": "aboleth", "uses_type": null, "uses_param": null } @@ -29,8 +27,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) bludgeoning damage.\n", - "document": "srd", - "creature": "aboleth", + "parent": "aboleth", "uses_type": null, "uses_param": null } @@ -41,8 +38,7 @@ "fields": { "name": "Tentacle", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 14 Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.\n", - "document": "srd", - "creature": "aboleth", + "parent": "aboleth", "uses_type": null, "uses_param": null } @@ -53,8 +49,7 @@ "fields": { "name": "Acid Breath", "desc": "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "adult-black-dragon", + "parent": "adult-black-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -65,8 +60,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) acid damage.\n", - "document": "srd", - "creature": "adult-black-dragon", + "parent": "adult-black-dragon", "uses_type": null, "uses_param": null } @@ -77,8 +71,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", - "creature": "adult-black-dragon", + "parent": "adult-black-dragon", "uses_type": null, "uses_param": null } @@ -89,8 +82,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "adult-black-dragon", + "parent": "adult-black-dragon", "uses_type": null, "uses_param": null } @@ -101,8 +93,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "adult-black-dragon", + "parent": "adult-black-dragon", "uses_type": null, "uses_param": null } @@ -113,8 +104,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "document": "srd", - "creature": "adult-black-dragon", + "parent": "adult-black-dragon", "uses_type": null, "uses_param": null } @@ -125,8 +115,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage plus 5 (1d10) lightning damage.\n", - "document": "srd", - "creature": "adult-blue-dragon", + "parent": "adult-blue-dragon", "uses_type": null, "uses_param": null } @@ -137,8 +126,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", - "document": "srd", - "creature": "adult-blue-dragon", + "parent": "adult-blue-dragon", "uses_type": null, "uses_param": null } @@ -149,8 +137,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "adult-blue-dragon", + "parent": "adult-blue-dragon", "uses_type": null, "uses_param": null } @@ -161,8 +148,7 @@ "fields": { "name": "Lightning Breath", "desc": "The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "adult-blue-dragon", + "parent": "adult-blue-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -173,8 +159,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "adult-blue-dragon", + "parent": "adult-blue-dragon", "uses_type": null, "uses_param": null } @@ -185,8 +170,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", - "document": "srd", - "creature": "adult-blue-dragon", + "parent": "adult-blue-dragon", "uses_type": null, "uses_param": null } @@ -197,8 +181,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "document": "srd", - "creature": "adult-brass-dragon", + "parent": "adult-brass-dragon", "uses_type": null, "uses_param": null } @@ -209,8 +192,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "document": "srd", - "creature": "adult-brass-dragon", + "parent": "adult-brass-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -221,8 +203,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", - "creature": "adult-brass-dragon", + "parent": "adult-brass-dragon", "uses_type": null, "uses_param": null } @@ -233,8 +214,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "adult-brass-dragon", + "parent": "adult-brass-dragon", "uses_type": null, "uses_param": null } @@ -245,8 +225,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "adult-brass-dragon", + "parent": "adult-brass-dragon", "uses_type": null, "uses_param": null } @@ -257,8 +236,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "document": "srd", - "creature": "adult-brass-dragon", + "parent": "adult-brass-dragon", "uses_type": null, "uses_param": null } @@ -269,8 +247,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage.\n", - "document": "srd", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": null, "uses_param": null } @@ -281,8 +258,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", - "document": "srd", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -293,8 +269,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": null, "uses_param": null } @@ -305,8 +280,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", - "document": "srd", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": null, "uses_param": null } @@ -317,8 +291,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": null, "uses_param": null } @@ -329,8 +302,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": null, "uses_param": null } @@ -341,8 +313,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", - "document": "srd", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": null, "uses_param": null } @@ -353,8 +324,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "document": "srd", - "creature": "adult-copper-dragon", + "parent": "adult-copper-dragon", "uses_type": null, "uses_param": null } @@ -365,8 +335,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "document": "srd", - "creature": "adult-copper-dragon", + "parent": "adult-copper-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -377,8 +346,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", - "creature": "adult-copper-dragon", + "parent": "adult-copper-dragon", "uses_type": null, "uses_param": null } @@ -389,8 +357,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "adult-copper-dragon", + "parent": "adult-copper-dragon", "uses_type": null, "uses_param": null } @@ -401,8 +368,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "adult-copper-dragon", + "parent": "adult-copper-dragon", "uses_type": null, "uses_param": null } @@ -413,8 +379,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "document": "srd", - "creature": "adult-copper-dragon", + "parent": "adult-copper-dragon", "uses_type": null, "uses_param": null } @@ -425,8 +390,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "document": "srd", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": null, "uses_param": null } @@ -437,8 +401,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -449,8 +412,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": null, "uses_param": null } @@ -461,8 +423,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": null, "uses_param": null } @@ -473,8 +434,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": null, "uses_param": null } @@ -485,8 +445,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": null, "uses_param": null } @@ -497,8 +456,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": null, "uses_param": null } @@ -509,8 +467,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 7 (2d6) poison damage.\n", - "document": "srd", - "creature": "adult-green-dragon", + "parent": "adult-green-dragon", "uses_type": null, "uses_param": null } @@ -521,8 +478,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", - "creature": "adult-green-dragon", + "parent": "adult-green-dragon", "uses_type": null, "uses_param": null } @@ -533,8 +489,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "adult-green-dragon", + "parent": "adult-green-dragon", "uses_type": null, "uses_param": null } @@ -545,8 +500,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "adult-green-dragon", + "parent": "adult-green-dragon", "uses_type": null, "uses_param": null } @@ -557,8 +511,7 @@ "fields": { "name": "Poison Breath", "desc": "The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "adult-green-dragon", + "parent": "adult-green-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -569,8 +522,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "document": "srd", - "creature": "adult-green-dragon", + "parent": "adult-green-dragon", "uses_type": null, "uses_param": null } @@ -581,8 +533,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 7 (2d6) fire damage.\n", - "document": "srd", - "creature": "adult-red-dragon", + "parent": "adult-red-dragon", "uses_type": null, "uses_param": null } @@ -593,8 +544,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", - "creature": "adult-red-dragon", + "parent": "adult-red-dragon", "uses_type": null, "uses_param": null } @@ -605,8 +555,7 @@ "fields": { "name": "Fire Breath", "desc": "The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 63 (18d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "adult-red-dragon", + "parent": "adult-red-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -617,8 +566,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "adult-red-dragon", + "parent": "adult-red-dragon", "uses_type": null, "uses_param": null } @@ -629,8 +577,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "adult-red-dragon", + "parent": "adult-red-dragon", "uses_type": null, "uses_param": null } @@ -641,8 +588,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", - "creature": "adult-red-dragon", + "parent": "adult-red-dragon", "uses_type": null, "uses_param": null } @@ -653,8 +599,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "document": "srd", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": null, "uses_param": null } @@ -665,8 +610,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -677,8 +621,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": null, "uses_param": null } @@ -689,8 +632,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": null, "uses_param": null } @@ -701,8 +643,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": null, "uses_param": null } @@ -713,8 +654,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": null, "uses_param": null } @@ -725,8 +665,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": null, "uses_param": null } @@ -737,8 +676,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) cold damage.\n", - "document": "srd", - "creature": "adult-white-dragon", + "parent": "adult-white-dragon", "uses_type": null, "uses_param": null } @@ -749,8 +687,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", - "creature": "adult-white-dragon", + "parent": "adult-white-dragon", "uses_type": null, "uses_param": null } @@ -761,8 +698,7 @@ "fields": { "name": "Cold Breath", "desc": "The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "adult-white-dragon", + "parent": "adult-white-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -773,8 +709,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 14 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "adult-white-dragon", + "parent": "adult-white-dragon", "uses_type": null, "uses_param": null } @@ -785,8 +720,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "adult-white-dragon", + "parent": "adult-white-dragon", "uses_type": null, "uses_param": null } @@ -797,8 +731,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "document": "srd", - "creature": "adult-white-dragon", + "parent": "adult-white-dragon", "uses_type": null, "uses_param": null } @@ -809,8 +742,7 @@ "fields": { "name": "Multiattack", "desc": "The elemental makes two slam attacks.\n", - "document": "srd", - "creature": "air-elemental", + "parent": "air-elemental", "uses_type": null, "uses_param": null } @@ -821,8 +753,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", - "document": "srd", - "creature": "air-elemental", + "parent": "air-elemental", "uses_type": null, "uses_param": null } @@ -833,8 +764,7 @@ "fields": { "name": "Whirlwind", "desc": "Each creature in the elemental's space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked prone. If a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone.\n\nIf the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.\n", - "document": "srd", - "creature": "air-elemental", + "parent": "air-elemental", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 4 } @@ -845,8 +775,7 @@ "fields": { "name": "Acid Breath", "desc": "The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "ancient-black-dragon", + "parent": "ancient-black-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -857,8 +786,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) acid damage.\n", - "document": "srd", - "creature": "ancient-black-dragon", + "parent": "ancient-black-dragon", "uses_type": null, "uses_param": null } @@ -869,8 +797,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", - "creature": "ancient-black-dragon", + "parent": "ancient-black-dragon", "uses_type": null, "uses_param": null } @@ -881,8 +808,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "ancient-black-dragon", + "parent": "ancient-black-dragon", "uses_type": null, "uses_param": null } @@ -893,8 +819,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "ancient-black-dragon", + "parent": "ancient-black-dragon", "uses_type": null, "uses_param": null } @@ -905,8 +830,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", - "creature": "ancient-black-dragon", + "parent": "ancient-black-dragon", "uses_type": null, "uses_param": null } @@ -917,8 +841,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage plus 11 (2d10) lightning damage.\n", - "document": "srd", - "creature": "ancient-blue-dragon", + "parent": "ancient-blue-dragon", "uses_type": null, "uses_param": null } @@ -929,8 +852,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", - "document": "srd", - "creature": "ancient-blue-dragon", + "parent": "ancient-blue-dragon", "uses_type": null, "uses_param": null } @@ -941,8 +863,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "ancient-blue-dragon", + "parent": "ancient-blue-dragon", "uses_type": null, "uses_param": null } @@ -953,8 +874,7 @@ "fields": { "name": "Lightning Breath", "desc": "The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "ancient-blue-dragon", + "parent": "ancient-blue-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -965,8 +885,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "ancient-blue-dragon", + "parent": "ancient-blue-dragon", "uses_type": null, "uses_param": null } @@ -977,8 +896,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", - "document": "srd", - "creature": "ancient-blue-dragon", + "parent": "ancient-blue-dragon", "uses_type": null, "uses_param": null } @@ -989,8 +907,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "document": "srd", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": null, "uses_param": null } @@ -1001,8 +918,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons:\n\nFire Breath. The dragon exhales fire in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "document": "srd", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1013,8 +929,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": null, "uses_param": null } @@ -1025,8 +940,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": null, "uses_param": null } @@ -1037,8 +951,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": null, "uses_param": null } @@ -1049,8 +962,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": null, "uses_param": null } @@ -1061,8 +973,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": null, "uses_param": null } @@ -1073,8 +984,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage.\n", - "document": "srd", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": null, "uses_param": null } @@ -1085,8 +995,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", - "document": "srd", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1097,8 +1006,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": null, "uses_param": null } @@ -1109,8 +1017,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", - "document": "srd", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": null, "uses_param": null } @@ -1121,8 +1028,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": null, "uses_param": null } @@ -1133,8 +1039,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": null, "uses_param": null } @@ -1145,8 +1050,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", - "document": "srd", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": null, "uses_param": null } @@ -1157,8 +1061,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "document": "srd", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": null, "uses_param": null } @@ -1169,8 +1072,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "document": "srd", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1181,8 +1083,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": null, "uses_param": null } @@ -1193,8 +1094,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": null, "uses_param": null } @@ -1205,8 +1105,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": null, "uses_param": null } @@ -1217,8 +1116,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": null, "uses_param": null } @@ -1229,8 +1127,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": null, "uses_param": null } @@ -1241,8 +1138,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", - "document": "srd", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": null, "uses_param": null } @@ -1253,8 +1149,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1265,8 +1160,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": null, "uses_param": null } @@ -1277,8 +1171,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "document": "srd", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": null, "uses_param": null } @@ -1289,8 +1182,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 24 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": null, "uses_param": null } @@ -1301,8 +1193,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": null, "uses_param": null } @@ -1313,8 +1204,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "document": "srd", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": null, "uses_param": null } @@ -1325,8 +1215,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 10 (3d6) poison damage.\n", - "document": "srd", - "creature": "ancient-green-dragon", + "parent": "ancient-green-dragon", "uses_type": null, "uses_param": null } @@ -1337,8 +1226,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 22 (4d6 + 8) slashing damage.\n", - "document": "srd", - "creature": "ancient-green-dragon", + "parent": "ancient-green-dragon", "uses_type": null, "uses_param": null } @@ -1349,8 +1237,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "ancient-green-dragon", + "parent": "ancient-green-dragon", "uses_type": null, "uses_param": null } @@ -1361,8 +1248,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "ancient-green-dragon", + "parent": "ancient-green-dragon", "uses_type": null, "uses_param": null } @@ -1373,8 +1259,7 @@ "fields": { "name": "Poison Breath", "desc": "The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 77 (22d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "ancient-green-dragon", + "parent": "ancient-green-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1385,8 +1270,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", - "creature": "ancient-green-dragon", + "parent": "ancient-green-dragon", "uses_type": null, "uses_param": null } @@ -1397,8 +1281,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage plus 14 (4d6) fire damage.\n", - "document": "srd", - "creature": "ancient-red-dragon", + "parent": "ancient-red-dragon", "uses_type": null, "uses_param": null } @@ -1409,8 +1292,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "document": "srd", - "creature": "ancient-red-dragon", + "parent": "ancient-red-dragon", "uses_type": null, "uses_param": null } @@ -1421,8 +1303,7 @@ "fields": { "name": "Fire Breath", "desc": "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 91 (26d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "ancient-red-dragon", + "parent": "ancient-red-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1433,8 +1314,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "ancient-red-dragon", + "parent": "ancient-red-dragon", "uses_type": null, "uses_param": null } @@ -1445,8 +1325,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "ancient-red-dragon", + "parent": "ancient-red-dragon", "uses_type": null, "uses_param": null } @@ -1457,8 +1336,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "document": "srd", - "creature": "ancient-red-dragon", + "parent": "ancient-red-dragon", "uses_type": null, "uses_param": null } @@ -1469,8 +1347,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", - "document": "srd", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": null, "uses_param": null } @@ -1481,8 +1358,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1493,8 +1369,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": null, "uses_param": null } @@ -1505,8 +1380,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "document": "srd", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": null, "uses_param": null } @@ -1517,8 +1391,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": null, "uses_param": null } @@ -1529,8 +1402,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": null, "uses_param": null } @@ -1541,8 +1413,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "document": "srd", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": null, "uses_param": null } @@ -1553,8 +1424,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) cold damage.\n", - "document": "srd", - "creature": "ancient-white-dragon", + "parent": "ancient-white-dragon", "uses_type": null, "uses_param": null } @@ -1565,8 +1435,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", - "creature": "ancient-white-dragon", + "parent": "ancient-white-dragon", "uses_type": null, "uses_param": null } @@ -1577,8 +1446,7 @@ "fields": { "name": "Cold Breath", "desc": "The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 72 (16d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "ancient-white-dragon", + "parent": "ancient-white-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1589,8 +1457,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "ancient-white-dragon", + "parent": "ancient-white-dragon", "uses_type": null, "uses_param": null } @@ -1601,8 +1468,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "ancient-white-dragon", + "parent": "ancient-white-dragon", "uses_type": null, "uses_param": null } @@ -1613,8 +1479,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", - "creature": "ancient-white-dragon", + "parent": "ancient-white-dragon", "uses_type": null, "uses_param": null } @@ -1625,8 +1490,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 17 (2d10 + 6) slashing damage.\n", - "document": "srd", - "creature": "androsphinx", + "parent": "androsphinx", "uses_type": null, "uses_param": null } @@ -1637,8 +1501,7 @@ "fields": { "name": "Multiattack", "desc": "The sphinx makes two claw attacks.\n", - "document": "srd", - "creature": "androsphinx", + "parent": "androsphinx", "uses_type": null, "uses_param": null } @@ -1649,8 +1512,7 @@ "fields": { "name": "Roar", "desc": "The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.\n\nFirst Roar. Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nSecond Roar. Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThird Roar. Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.\n", - "document": "srd", - "creature": "androsphinx", + "parent": "androsphinx", "uses_type": "PER_DAY", "uses_param": 3 } @@ -1661,8 +1523,7 @@ "fields": { "name": "Multiattack", "desc": "The armor makes two melee attacks.\n", - "document": "srd", - "creature": "animated-armor", + "parent": "animated-armor", "uses_type": null, "uses_param": null } @@ -1673,8 +1534,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", - "document": "srd", - "creature": "animated-armor", + "parent": "animated-armor", "uses_type": null, "uses_param": null } @@ -1685,8 +1545,7 @@ "fields": { "name": "Acid Spray", "desc": "The ankheg spits acid in a line that is 30 feet long and 5 feet wide, provided that it has no creature grappled. Each creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "ankheg", + "parent": "ankheg", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -1697,8 +1556,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage. If the target is a Large or smaller creature, it is grappled (escape DC 13). Until this grapple ends, the ankheg can bite only the grappled creature and has advantage on attack rolls to do so.\n", - "document": "srd", - "creature": "ankheg", + "parent": "ankheg", "uses_type": null, "uses_param": null } @@ -1709,8 +1567,7 @@ "fields": { "name": "Warhammer", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", - "document": "srd", - "creature": "azer", + "parent": "azer", "uses_type": null, "uses_param": null } @@ -1721,8 +1578,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) slashing damage plus 13 (3d8) lightning damage. If the balor scores a critical hit, it rolls damage dice three times, instead of twice.\n", - "document": "srd", - "creature": "balor", + "parent": "balor", "uses_type": null, "uses_param": null } @@ -1733,8 +1589,7 @@ "fields": { "name": "Multiattack", "desc": "The balor makes two attacks: one with its longsword and one with its whip.\n", - "document": "srd", - "creature": "balor", + "parent": "balor", "uses_type": null, "uses_param": null } @@ -1745,8 +1600,7 @@ "fields": { "name": "Teleport", "desc": "The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "document": "srd", - "creature": "balor", + "parent": "balor", "uses_type": null, "uses_param": null } @@ -1757,8 +1611,7 @@ "fields": { "name": "Whip", "desc": "Melee Weapon Attack: +14 to hit, reach 30 ft., one target. Hit: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage, and the target must succeed on a DC 20 Strength saving throw or be pulled up to 25 feet toward the balor.\n", - "document": "srd", - "creature": "balor", + "parent": "balor", "uses_type": null, "uses_param": null } @@ -1769,8 +1622,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "document": "srd", - "creature": "barbed-devil", + "parent": "barbed-devil", "uses_type": null, "uses_param": null } @@ -1781,8 +1633,7 @@ "fields": { "name": "Hurl Flame", "desc": "Ranged Spell Attack: +5 to hit, range 150 ft., one target. Hit: 10 (3d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", - "document": "srd", - "creature": "barbed-devil", + "parent": "barbed-devil", "uses_type": null, "uses_param": null } @@ -1793,8 +1644,7 @@ "fields": { "name": "Multiattack", "desc": "The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice.\n", - "document": "srd", - "creature": "barbed-devil", + "parent": "barbed-devil", "uses_type": null, "uses_param": null } @@ -1805,8 +1655,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", - "document": "srd", - "creature": "barbed-devil", + "parent": "barbed-devil", "uses_type": null, "uses_param": null } @@ -1817,8 +1666,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage.\n", - "document": "srd", - "creature": "basilisk", + "parent": "basilisk", "uses_type": null, "uses_param": null } @@ -1829,8 +1677,7 @@ "fields": { "name": "Beard", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. While poisoned in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "bearded-devil", + "parent": "bearded-devil", "uses_type": null, "uses_param": null } @@ -1841,8 +1688,7 @@ "fields": { "name": "Glaive", "desc": "Melee Weapon Attack: +5 to hit, reach 10 ft., one target. Hit: 8 (1d10 + 3) slashing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 12 Constitution saving throw or lose 5 (1d10) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 (1d10). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", - "document": "srd", - "creature": "bearded-devil", + "parent": "bearded-devil", "uses_type": null, "uses_param": null } @@ -1853,8 +1699,7 @@ "fields": { "name": "Multiattack", "desc": "The devil makes two attacks: one with its beard and one with its glaive.\n", - "document": "srd", - "creature": "bearded-devil", + "parent": "bearded-devil", "uses_type": null, "uses_param": null } @@ -1865,8 +1710,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 22 (3d10 + 6) piercing damage.\n", - "document": "srd", - "creature": "behir", + "parent": "behir", "uses_type": null, "uses_param": null } @@ -1877,8 +1721,7 @@ "fields": { "name": "Constrict", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one Large or smaller creature. Hit: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage. The target is grappled (escape DC 16) if the behir isn't already constricting a creature, and the target is restrained until this grapple ends.\n", - "document": "srd", - "creature": "behir", + "parent": "behir", "uses_type": null, "uses_param": null } @@ -1889,8 +1732,7 @@ "fields": { "name": "Lightning Breath", "desc": "The behir exhales a line of lightning that is 20 feet long and 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "behir", + "parent": "behir", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1901,8 +1743,7 @@ "fields": { "name": "Multiattack", "desc": "The behir makes two attacks: one with its bite and one to constrict.\n", - "document": "srd", - "creature": "behir", + "parent": "behir", "uses_type": null, "uses_param": null } @@ -1913,8 +1754,7 @@ "fields": { "name": "Swallow", "desc": "The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the behir, and it takes 21 (6d6) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.\n\nIf the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 feet of the behir. If the behir dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 feet of movement, exiting prone.\n", - "document": "srd", - "creature": "behir", + "parent": "behir", "uses_type": null, "uses_param": null } @@ -1925,8 +1765,7 @@ "fields": { "name": "Acid Breath", "desc": "The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "black-dragon-wyrmling", + "parent": "black-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1937,8 +1776,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage.\n", - "document": "srd", - "creature": "black-dragon-wyrmling", + "parent": "black-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -1949,8 +1787,7 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", - "document": "srd", - "creature": "black-pudding", + "parent": "black-pudding", "uses_type": null, "uses_param": null } @@ -1961,8 +1798,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage.\n", - "document": "srd", - "creature": "blue-dragon-wyrmling", + "parent": "blue-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -1973,8 +1809,7 @@ "fields": { "name": "Lightning Breath", "desc": "The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "blue-dragon-wyrmling", + "parent": "blue-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1985,8 +1820,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", - "document": "srd", - "creature": "bone-devil", + "parent": "bone-devil", "uses_type": null, "uses_param": null } @@ -1997,8 +1831,7 @@ "fields": { "name": "Multiattack", "desc": "The devil makes three attacks: two with its claws and one with its sting.\n", - "document": "srd", - "creature": "bone-devil", + "parent": "bone-devil", "uses_type": null, "uses_param": null } @@ -2009,8 +1842,7 @@ "fields": { "name": "Sting", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage, and the target must succeed on a DC 14 Constitution saving throw or become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "bone-devil", + "parent": "bone-devil", "uses_type": null, "uses_param": null } @@ -2021,8 +1853,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", - "document": "srd", - "creature": "brass-dragon-wyrmling", + "parent": "brass-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -2033,8 +1864,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "document": "srd", - "creature": "brass-dragon-wyrmling", + "parent": "brass-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -2045,8 +1875,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", - "document": "srd", - "creature": "bronze-dragon-wyrmling", + "parent": "bronze-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -2057,8 +1886,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.\n", - "document": "srd", - "creature": "bronze-dragon-wyrmling", + "parent": "bronze-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -2069,8 +1897,7 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at range.\n", - "document": "srd", - "creature": "bugbear", + "parent": "bugbear", "uses_type": null, "uses_param": null } @@ -2081,8 +1908,7 @@ "fields": { "name": "Morningstar", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 11 (2d8 + 2) piercing damage.\n", - "document": "srd", - "creature": "bugbear", + "parent": "bugbear", "uses_type": null, "uses_param": null } @@ -2093,8 +1919,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 30 (4d12 + 4) piercing damage.\n", - "document": "srd", - "creature": "bulette", + "parent": "bulette", "uses_type": null, "uses_param": null } @@ -2105,8 +1930,7 @@ "fields": { "name": "Deadly Leap", "desc": "If the bulette jumps at least 15 feet as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 feet out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the bulette's space.\n", - "document": "srd", - "creature": "bulette", + "parent": "bulette", "uses_type": null, "uses_param": null } @@ -2117,8 +1941,7 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "document": "srd", - "creature": "centaur", + "parent": "centaur", "uses_type": null, "uses_param": null } @@ -2129,8 +1952,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "document": "srd", - "creature": "centaur", + "parent": "centaur", "uses_type": null, "uses_param": null } @@ -2141,8 +1963,7 @@ "fields": { "name": "Multiattack", "desc": "The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow.\n", - "document": "srd", - "creature": "centaur", + "parent": "centaur", "uses_type": null, "uses_param": null } @@ -2153,8 +1974,7 @@ "fields": { "name": "Pike", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "document": "srd", - "creature": "centaur", + "parent": "centaur", "uses_type": null, "uses_param": null } @@ -2165,8 +1985,7 @@ "fields": { "name": "Animate Chains", "desc": "Up to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.\n\nEach animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is incapacitated or dies.\n", - "document": "srd", - "creature": "chain-devil", + "parent": "chain-devil", "uses_type": "RECHARGE_AFTER_REST", "uses_param": null } @@ -2177,8 +1996,7 @@ "fields": { "name": "Chain", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) slashing damage. The target is grappled (escape DC 14) if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained and takes 7 (2d6) piercing damage at the start of each of its turns.\n", - "document": "srd", - "creature": "chain-devil", + "parent": "chain-devil", "uses_type": null, "uses_param": null } @@ -2189,8 +2007,7 @@ "fields": { "name": "Multiattack", "desc": "The devil makes two attacks with its chains.\n", - "document": "srd", - "creature": "chain-devil", + "parent": "chain-devil", "uses_type": null, "uses_param": null } @@ -2201,8 +2018,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", - "document": "srd", - "creature": "chimera", + "parent": "chimera", "uses_type": null, "uses_param": null } @@ -2213,8 +2029,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", - "creature": "chimera", + "parent": "chimera", "uses_type": null, "uses_param": null } @@ -2225,8 +2040,7 @@ "fields": { "name": "Fire Breath", "desc": "The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 31 (7d8) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "chimera", + "parent": "chimera", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -2237,8 +2051,7 @@ "fields": { "name": "Horns", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) bludgeoning damage.\n", - "document": "srd", - "creature": "chimera", + "parent": "chimera", "uses_type": null, "uses_param": null } @@ -2249,8 +2062,7 @@ "fields": { "name": "Multiattack", "desc": "The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns.\n", - "document": "srd", - "creature": "chimera", + "parent": "chimera", "uses_type": null, "uses_param": null } @@ -2261,8 +2073,7 @@ "fields": { "name": "Multiattack", "desc": "The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once.\n", - "document": "srd", - "creature": "chuul", + "parent": "chuul", "uses_type": null, "uses_param": null } @@ -2273,8 +2084,7 @@ "fields": { "name": "Pincer", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage. The target is grappled (escape DC 14) if it is a Large or smaller creature and the chuul doesn't have two other creatures grappled.\n", - "document": "srd", - "creature": "chuul", + "parent": "chuul", "uses_type": null, "uses_param": null } @@ -2285,8 +2095,7 @@ "fields": { "name": "Tentacles", "desc": "One creature grappled by the chuul must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. Until this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "chuul", + "parent": "chuul", "uses_type": null, "uses_param": null } @@ -2297,8 +2106,7 @@ "fields": { "name": "Haste", "desc": "Until the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action.\n", - "document": "srd", - "creature": "clay-golem", + "parent": "clay-golem", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -2309,8 +2117,7 @@ "fields": { "name": "Multiattack", "desc": "The golem makes two slam attacks.\n", - "document": "srd", - "creature": "clay-golem", + "parent": "clay-golem", "uses_type": null, "uses_param": null } @@ -2321,8 +2128,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the greater restoration spell or other magic.\n", - "document": "srd", - "creature": "clay-golem", + "parent": "clay-golem", "uses_type": null, "uses_param": null } @@ -2333,8 +2139,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 10 (2d6 + 3) piercing damage, and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is blinded and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a DC 16 Strength check.\n", - "document": "srd", - "creature": "cloaker", + "parent": "cloaker", "uses_type": null, "uses_param": null } @@ -2345,8 +2150,7 @@ "fields": { "name": "Moan", "desc": "Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the cloaker's next turn. If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours\n", - "document": "srd", - "creature": "cloaker", + "parent": "cloaker", "uses_type": null, "uses_param": null } @@ -2357,8 +2161,7 @@ "fields": { "name": "Multiattack", "desc": "The cloaker makes two attacks: one with its bite and one with its tail.\n", - "document": "srd", - "creature": "cloaker", + "parent": "cloaker", "uses_type": null, "uses_param": null } @@ -2369,8 +2172,7 @@ "fields": { "name": "Phantasms", "desc": "The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.\n\nWhenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.\n\nA duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.\n", - "document": "srd", - "creature": "cloaker", + "parent": "cloaker", "uses_type": "RECHARGE_AFTER_REST", "uses_param": null } @@ -2381,8 +2183,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one creature. Hit: 7 (1d8 + 3) slashing damage.\n", - "document": "srd", - "creature": "cloaker", + "parent": "cloaker", "uses_type": null, "uses_param": null } @@ -2393,8 +2194,7 @@ "fields": { "name": "Morningstar", "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) piercing damage.\n", - "document": "srd", - "creature": "cloud-giant", + "parent": "cloud-giant", "uses_type": null, "uses_param": null } @@ -2405,8 +2205,7 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two morningstar attacks.\n", - "document": "srd", - "creature": "cloud-giant", + "parent": "cloud-giant", "uses_type": null, "uses_param": null } @@ -2417,8 +2216,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +12 to hit, range 60/240 ft., one target. Hit: 30 (4d10 + 8) bludgeoning damage.\n", - "document": "srd", - "creature": "cloud-giant", + "parent": "cloud-giant", "uses_type": null, "uses_param": null } @@ -2429,8 +2227,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) piercing damage, and the target must succeed on a DC 11 Constitution saving throw against being magically petrified. On a failed save, the creature begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified for 24 hours.\n", - "document": "srd", - "creature": "cockatrice", + "parent": "cockatrice", "uses_type": null, "uses_param": null } @@ -2441,8 +2238,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", - "document": "srd", - "creature": "copper-dragon-wyrmling", + "parent": "copper-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -2453,8 +2249,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "document": "srd", - "creature": "copper-dragon-wyrmling", + "parent": "copper-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -2465,8 +2260,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one creature. Hit: 8 (1d6 + 5) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 24 hours. Until this poison ends, the target is unconscious. Another creature can use an action to shake the target awake.\n", - "document": "srd", - "creature": "couatl", + "parent": "couatl", "uses_type": null, "uses_param": null } @@ -2477,8 +2271,7 @@ "fields": { "name": "Change Shape", "desc": "The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).\n\nIn a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form.\n", - "document": "srd", - "creature": "couatl", + "parent": "couatl", "uses_type": null, "uses_param": null } @@ -2489,8 +2282,7 @@ "fields": { "name": "Constrict", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one Medium or smaller creature. Hit: 10 (2d6 + 3) bludgeoning damage, and the target is grappled (escape DC 15). Until this grapple ends, the target is restrained, and the couatl can't constrict another target.\n", - "document": "srd", - "creature": "couatl", + "parent": "couatl", "uses_type": null, "uses_param": null } @@ -2501,8 +2293,7 @@ "fields": { "name": "Crush", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d6 + 3) bludgeoning damage, and the darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also blinded and unable to breathe while the darkmantle is attached in this way.\n\nWhile attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.\n\nA creature can detach the darkmantle by making a successful DC 13 Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement.\n", - "document": "srd", - "creature": "darkmantle", + "parent": "darkmantle", "uses_type": null, "uses_param": null } @@ -2513,8 +2304,7 @@ "fields": { "name": "Darkness Aura", "desc": "A 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains concentration, up to 10 minutes (as if concentrating on a spell). Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.\n", - "document": "srd", - "creature": "darkmantle", + "parent": "darkmantle", "uses_type": "PER_DAY", "uses_param": 1 } @@ -2525,8 +2315,7 @@ "fields": { "name": "Change Shape", "desc": "The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).\n\nIn a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks.\n", - "document": "srd", - "creature": "deva", + "parent": "deva", "uses_type": null, "uses_param": null } @@ -2537,8 +2326,7 @@ "fields": { "name": "Healing Touch", "desc": "The deva touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "document": "srd", - "creature": "deva", + "parent": "deva", "uses_type": "PER_DAY", "uses_param": 3 } @@ -2549,8 +2337,7 @@ "fields": { "name": "Mace", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage.\n", - "document": "srd", - "creature": "deva", + "parent": "deva", "uses_type": null, "uses_param": null } @@ -2561,8 +2348,7 @@ "fields": { "name": "Multiattack", "desc": "The deva makes two melee attacks.\n", - "document": "srd", - "creature": "deva", + "parent": "deva", "uses_type": null, "uses_param": null } @@ -2573,8 +2359,7 @@ "fields": { "name": "Create Whirlwind", "desc": "A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains concentration (as if concentrating on a spell). Any creature but the djinni that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.\n\nA creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.\n", - "document": "srd", - "creature": "djinni", + "parent": "djinni", "uses_type": null, "uses_param": null } @@ -2585,8 +2370,7 @@ "fields": { "name": "Multiattack", "desc": "The djinni makes three scimitar attacks.\n", - "document": "srd", - "creature": "djinni", + "parent": "djinni", "uses_type": null, "uses_param": null } @@ -2597,8 +2381,7 @@ "fields": { "name": "Scimitar", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (djinni's choice).\n", - "document": "srd", - "creature": "djinni", + "parent": "djinni", "uses_type": null, "uses_param": null } @@ -2609,8 +2392,7 @@ "fields": { "name": "Multiattack", "desc": "The doppelganger makes two melee attacks.\n", - "document": "srd", - "creature": "doppelganger", + "parent": "doppelganger", "uses_type": null, "uses_param": null } @@ -2621,8 +2403,7 @@ "fields": { "name": "Read Thoughts", "desc": "The doppelganger magically reads the surface thoughts of one creature within 60 feet of it. The effect can penetrate barriers, but 3 feet of wood or dirt, 2 feet of stone, 2 inches of metal, or a thin sheet of lead blocks it. While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.\n", - "document": "srd", - "creature": "doppelganger", + "parent": "doppelganger", "uses_type": null, "uses_param": null } @@ -2633,8 +2414,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage.\n", - "document": "srd", - "creature": "doppelganger", + "parent": "doppelganger", "uses_type": null, "uses_param": null } @@ -2645,8 +2425,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) piercing damage.\n", - "document": "srd", - "creature": "dragon-turtle", + "parent": "dragon-turtle", "uses_type": null, "uses_param": null } @@ -2657,8 +2436,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 16 (2d8 + 7) slashing damage.\n", - "document": "srd", - "creature": "dragon-turtle", + "parent": "dragon-turtle", "uses_type": null, "uses_param": null } @@ -2669,8 +2447,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks.\n", - "document": "srd", - "creature": "dragon-turtle", + "parent": "dragon-turtle", "uses_type": null, "uses_param": null } @@ -2681,8 +2458,7 @@ "fields": { "name": "Steam Breath", "desc": "The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage.\n", - "document": "srd", - "creature": "dragon-turtle", + "parent": "dragon-turtle", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -2693,8 +2469,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked prone.\n", - "document": "srd", - "creature": "dragon-turtle", + "parent": "dragon-turtle", "uses_type": null, "uses_param": null } @@ -2705,8 +2480,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 3 (1d6) piercing damage.\n", - "document": "srd", - "creature": "dretch", + "parent": "dretch", "uses_type": null, "uses_param": null } @@ -2717,8 +2491,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 5 (2d4) slashing damage.\n", - "document": "srd", - "creature": "dretch", + "parent": "dretch", "uses_type": null, "uses_param": null } @@ -2729,8 +2502,7 @@ "fields": { "name": "Fetid Cloud", "desc": "A 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it. Any creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions.\n", - "document": "srd", - "creature": "dretch", + "parent": "dretch", "uses_type": "PER_DAY", "uses_param": 1 } @@ -2741,8 +2513,7 @@ "fields": { "name": "Multiattack", "desc": "The dretch makes two attacks: one with its bite and one with its claws.\n", - "document": "srd", - "creature": "dretch", + "parent": "dretch", "uses_type": null, "uses_param": null } @@ -2753,8 +2524,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 2 (1d4) piercing damage plus 9 (2d8) poison damage.\n", - "document": "srd", - "creature": "drider", + "parent": "drider", "uses_type": null, "uses_param": null } @@ -2765,8 +2535,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +6 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage.\n", - "document": "srd", - "creature": "drider", + "parent": "drider", "uses_type": null, "uses_param": null } @@ -2777,8 +2546,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", - "document": "srd", - "creature": "drider", + "parent": "drider", "uses_type": null, "uses_param": null } @@ -2789,8 +2557,7 @@ "fields": { "name": "Multiattack", "desc": "The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack.\n", - "document": "srd", - "creature": "drider", + "parent": "drider", "uses_type": null, "uses_param": null } @@ -2801,8 +2568,7 @@ "fields": { "name": "Club", "desc": "Melee Weapon Attack: +2 to hit (+6 to hit with shillelagh), reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with shillelagh.\n", - "document": "srd", - "creature": "dryad", + "parent": "dryad", "uses_type": null, "uses_param": null } @@ -2813,8 +2579,7 @@ "fields": { "name": "Fey Charm", "desc": "The dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a DC 14 Wisdom saving throw or be magically charmed. The charmed creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.\n\nEach time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.\n\nThe dryad can have no more than one humanoid and up to three beasts charmed at a time.\n", - "document": "srd", - "creature": "dryad", + "parent": "dryad", "uses_type": null, "uses_param": null } @@ -2825,8 +2590,7 @@ "fields": { "name": "Enlarge", "desc": "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available.\n", - "document": "srd", - "creature": "duergar", + "parent": "duergar", "uses_type": "RECHARGE_AFTER_REST", "uses_param": null } @@ -2837,8 +2601,7 @@ "fields": { "name": "Invisibility", "desc": "The duergar magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell). Any equipment the duergar wears or carries is invisible with it.\n", - "document": "srd", - "creature": "duergar", + "parent": "duergar", "uses_type": "RECHARGE_AFTER_REST", "uses_param": null } @@ -2849,8 +2612,7 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarged.\n", - "document": "srd", - "creature": "duergar", + "parent": "duergar", "uses_type": null, "uses_param": null } @@ -2861,8 +2623,7 @@ "fields": { "name": "War Pick", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage, or 11 (2d8 + 2) piercing damage while enlarged.\n", - "document": "srd", - "creature": "duergar", + "parent": "duergar", "uses_type": null, "uses_param": null } @@ -2873,8 +2634,7 @@ "fields": { "name": "Blinding Breath", "desc": "The mephit exhales a 15-foot cone of blinding dust. Each creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "dust-mephit", + "parent": "dust-mephit", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -2885,8 +2645,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) slashing damage.\n", - "document": "srd", - "creature": "dust-mephit", + "parent": "dust-mephit", "uses_type": null, "uses_param": null } @@ -2897,8 +2656,7 @@ "fields": { "name": "Multiattack", "desc": "The elemental makes two slam attacks.\n", - "document": "srd", - "creature": "earth-elemental", + "parent": "earth-elemental", "uses_type": null, "uses_param": null } @@ -2909,8 +2667,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", - "document": "srd", - "creature": "earth-elemental", + "parent": "earth-elemental", "uses_type": null, "uses_param": null } @@ -2921,8 +2678,7 @@ "fields": { "name": "Hurl Flame", "desc": "Ranged Spell Attack: +7 to hit, range 120 ft., one target. Hit: 17 (5d6) fire damage.\n", - "document": "srd", - "creature": "efreeti", + "parent": "efreeti", "uses_type": null, "uses_param": null } @@ -2933,8 +2689,7 @@ "fields": { "name": "Multiattack", "desc": "The efreeti makes two scimitar attacks or uses its Hurl Flame twice.\n", - "document": "srd", - "creature": "efreeti", + "parent": "efreeti", "uses_type": null, "uses_param": null } @@ -2945,8 +2700,7 @@ "fields": { "name": "Scimitar", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage plus 7 (2d6) fire damage.\n", - "document": "srd", - "creature": "efreeti", + "parent": "efreeti", "uses_type": null, "uses_param": null } @@ -2957,8 +2711,7 @@ "fields": { "name": "Hand Crossbow", "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake.\n", - "document": "srd", - "creature": "elf-drow", + "parent": "elf-drow", "uses_type": null, "uses_param": null } @@ -2969,8 +2722,7 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", - "creature": "elf-drow", + "parent": "elf-drow", "uses_type": null, "uses_param": null } @@ -2981,8 +2733,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +7 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 13 (3d8) poison damage, and the target must succeed on a DC 14 Constitution saving throw or be poisoned. The poison lasts until it is removed by the lesser restoration spell or similar magic.\n", - "document": "srd", - "creature": "erinyes", + "parent": "erinyes", "uses_type": null, "uses_param": null } @@ -2993,8 +2744,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands, plus 13 (3d8) poison damage.\n", - "document": "srd", - "creature": "erinyes", + "parent": "erinyes", "uses_type": null, "uses_param": null } @@ -3005,8 +2755,7 @@ "fields": { "name": "Multiattack", "desc": "The erinyes makes three attacks.\n", - "document": "srd", - "creature": "erinyes", + "parent": "erinyes", "uses_type": null, "uses_param": null } @@ -3017,8 +2766,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage plus 4 (1d8) poison damage. The target must succeed on a DC 11 Constitution saving throw or be poisoned for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "ettercap", + "parent": "ettercap", "uses_type": null, "uses_param": null } @@ -3029,8 +2777,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.\n", - "document": "srd", - "creature": "ettercap", + "parent": "ettercap", "uses_type": null, "uses_param": null } @@ -3041,8 +2788,7 @@ "fields": { "name": "Multiattack", "desc": "The ettercap makes two attacks: one with its bite and one with its claws.\n", - "document": "srd", - "creature": "ettercap", + "parent": "ettercap", "uses_type": null, "uses_param": null } @@ -3053,8 +2799,7 @@ "fields": { "name": "Web", "desc": "Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing. As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect also ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, vulnerability to fire damage, and immunity to bludgeoning, poison, and psychic damage.\n", - "document": "srd", - "creature": "ettercap", + "parent": "ettercap", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -3065,8 +2810,7 @@ "fields": { "name": "Battleaxe", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", - "document": "srd", - "creature": "ettin", + "parent": "ettin", "uses_type": null, "uses_param": null } @@ -3077,8 +2821,7 @@ "fields": { "name": "Morningstar", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) piercing damage.\n", - "document": "srd", - "creature": "ettin", + "parent": "ettin", "uses_type": null, "uses_param": null } @@ -3089,8 +2832,7 @@ "fields": { "name": "Multiattack", "desc": "The ettin makes two attacks: one with its battleaxe and one with its morningstar.\n", - "document": "srd", - "creature": "ettin", + "parent": "ettin", "uses_type": null, "uses_param": null } @@ -3101,8 +2843,7 @@ "fields": { "name": "Multiattack", "desc": "The elemental makes two touch attacks.\n", - "document": "srd", - "creature": "fire-elemental", + "parent": "fire-elemental", "uses_type": null, "uses_param": null } @@ -3113,8 +2854,7 @@ "fields": { "name": "Touch", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 (1d10) fire damage at the start of each of its turns.\n", - "document": "srd", - "creature": "fire-elemental", + "parent": "fire-elemental", "uses_type": null, "uses_param": null } @@ -3125,8 +2865,7 @@ "fields": { "name": "Greatsword", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 28 (6d6 + 7) slashing damage.\n", - "document": "srd", - "creature": "fire-giant", + "parent": "fire-giant", "uses_type": null, "uses_param": null } @@ -3137,8 +2876,7 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greatsword attacks.\n", - "document": "srd", - "creature": "fire-giant", + "parent": "fire-giant", "uses_type": null, "uses_param": null } @@ -3149,8 +2887,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +11 to hit, range 60/240 ft., one target. Hit: 29 (4d10 + 7) bludgeoning damage.\n", - "document": "srd", - "creature": "fire-giant", + "parent": "fire-giant", "uses_type": null, "uses_param": null } @@ -3161,8 +2898,7 @@ "fields": { "name": "Multiattack", "desc": "The golem makes two slam attacks.\n", - "document": "srd", - "creature": "flesh-golem", + "parent": "flesh-golem", "uses_type": null, "uses_param": null } @@ -3173,8 +2909,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "document": "srd", - "creature": "flesh-golem", + "parent": "flesh-golem", "uses_type": null, "uses_param": null } @@ -3185,8 +2920,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage.\n", - "document": "srd", - "creature": "flying-sword", + "parent": "flying-sword", "uses_type": null, "uses_param": null } @@ -3197,8 +2931,7 @@ "fields": { "name": "Greataxe", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 25 (3d12 + 6) slashing damage.\n", - "document": "srd", - "creature": "frost-giant", + "parent": "frost-giant", "uses_type": null, "uses_param": null } @@ -3209,8 +2942,7 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greataxe attacks.\n", - "document": "srd", - "creature": "frost-giant", + "parent": "frost-giant", "uses_type": null, "uses_param": null } @@ -3221,8 +2953,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", - "document": "srd", - "creature": "frost-giant", + "parent": "frost-giant", "uses_type": null, "uses_param": null } @@ -3233,8 +2964,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", - "creature": "gargoyle", + "parent": "gargoyle", "uses_type": null, "uses_param": null } @@ -3245,8 +2975,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", - "document": "srd", - "creature": "gargoyle", + "parent": "gargoyle", "uses_type": null, "uses_param": null } @@ -3257,8 +2986,7 @@ "fields": { "name": "Multiattack", "desc": "The gargoyle makes two attacks: one with its bite and one with its claws.\n", - "document": "srd", - "creature": "gargoyle", + "parent": "gargoyle", "uses_type": null, "uses_param": null } @@ -3269,8 +2997,7 @@ "fields": { "name": "Engulf", "desc": "The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a DC 12 Dexterity saving throw.\n\nOn a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.\n\nOn a failed save, the cube enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.\n\nAn engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube.\n", - "document": "srd", - "creature": "gelatinous-cube", + "parent": "gelatinous-cube", "uses_type": null, "uses_param": null } @@ -3281,8 +3008,7 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) acid damage.\n", - "document": "srd", - "creature": "gelatinous-cube", + "parent": "gelatinous-cube", "uses_type": null, "uses_param": null } @@ -3293,8 +3019,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 12 (2d8 + 3) piercing damage.\n", - "document": "srd", - "creature": "ghast", + "parent": "ghast", "uses_type": null, "uses_param": null } @@ -3305,8 +3030,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a creature other than an undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "ghast", + "parent": "ghast", "uses_type": null, "uses_param": null } @@ -3317,8 +3041,7 @@ "fields": { "name": "Etherealness", "desc": "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.\n", - "document": "srd", - "creature": "ghost", + "parent": "ghost", "uses_type": null, "uses_param": null } @@ -3329,8 +3052,7 @@ "fields": { "name": "Horrifying Visage", "desc": "Each non-undead creature within 60 feet of the ghost that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 × 10 years. A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.\n", - "document": "srd", - "creature": "ghost", + "parent": "ghost", "uses_type": null, "uses_param": null } @@ -3341,8 +3063,7 @@ "fields": { "name": "Possession", "desc": "One humanoid that the ghost can see within 5 feet of it must succeed on a DC 13 Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is incapacitated and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.\n\nThe possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends.\n", - "document": "srd", - "creature": "ghost", + "parent": "ghost", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -3353,8 +3074,7 @@ "fields": { "name": "Withering Touch", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 17 (4d6 + 3) necrotic damage.\n", - "document": "srd", - "creature": "ghost", + "parent": "ghost", "uses_type": null, "uses_param": null } @@ -3365,8 +3085,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) piercing damage.\n", - "document": "srd", - "creature": "ghoul", + "parent": "ghoul", "uses_type": null, "uses_param": null } @@ -3377,8 +3096,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "ghoul", + "parent": "ghoul", "uses_type": null, "uses_param": null } @@ -3389,8 +3107,7 @@ "fields": { "name": "Bites", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 17 (5d6) piercing damage. If the target is Medium or smaller, it must succeed on a DC 10 Strength saving throw or be knocked prone. If the target is killed by this damage, it is absorbed into the mouther.\n", - "document": "srd", - "creature": "gibbering-mouther", + "parent": "gibbering-mouther", "uses_type": null, "uses_param": null } @@ -3401,8 +3118,7 @@ "fields": { "name": "Blinding Spittle", "desc": "The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the mouther's next turn.\n", - "document": "srd", - "creature": "gibbering-mouther", + "parent": "gibbering-mouther", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -3413,8 +3129,7 @@ "fields": { "name": "Multiattack", "desc": "The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle.\n", - "document": "srd", - "creature": "gibbering-mouther", + "parent": "gibbering-mouther", "uses_type": null, "uses_param": null } @@ -3425,8 +3140,7 @@ "fields": { "name": "Fist", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.\n", - "document": "srd", - "creature": "glabrezu", + "parent": "glabrezu", "uses_type": null, "uses_param": null } @@ -3437,8 +3151,7 @@ "fields": { "name": "Multiattack", "desc": "The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell.\n", - "document": "srd", - "creature": "glabrezu", + "parent": "glabrezu", "uses_type": null, "uses_param": null } @@ -3449,8 +3162,7 @@ "fields": { "name": "Pincer", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a Medium or smaller creature, it is grappled (escape DC 15). The glabrezu has two pincers, each of which can grapple only one target.\n", - "document": "srd", - "creature": "glabrezu", + "parent": "glabrezu", "uses_type": null, "uses_param": null } @@ -3461,8 +3173,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\n", - "document": "srd", - "creature": "gnoll", + "parent": "gnoll", "uses_type": null, "uses_param": null } @@ -3473,8 +3184,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "document": "srd", - "creature": "gnoll", + "parent": "gnoll", "uses_type": null, "uses_param": null } @@ -3485,8 +3195,7 @@ "fields": { "name": "Spear", "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", - "document": "srd", - "creature": "gnoll", + "parent": "gnoll", "uses_type": null, "uses_param": null } @@ -3497,8 +3206,7 @@ "fields": { "name": "Poisoned Dart", "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "gnome-deep-svirfneblin", + "parent": "gnome-deep-svirfneblin", "uses_type": null, "uses_param": null } @@ -3509,8 +3217,7 @@ "fields": { "name": "War Pick", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "document": "srd", - "creature": "gnome-deep-svirfneblin", + "parent": "gnome-deep-svirfneblin", "uses_type": null, "uses_param": null } @@ -3521,8 +3228,7 @@ "fields": { "name": "Scimitar", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", - "document": "srd", - "creature": "goblin", + "parent": "goblin", "uses_type": null, "uses_param": null } @@ -3533,8 +3239,7 @@ "fields": { "name": "Shortbow", "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", - "creature": "goblin", + "parent": "goblin", "uses_type": null, "uses_param": null } @@ -3545,8 +3250,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "document": "srd", - "creature": "gold-dragon-wyrmling", + "parent": "gold-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -3557,8 +3261,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "gold-dragon-wyrmling", + "parent": "gold-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -3569,8 +3272,7 @@ "fields": { "name": "Gore", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 18 (2d12 + 5) piercing damage.\n", - "document": "srd", - "creature": "gorgon", + "parent": "gorgon", "uses_type": null, "uses_param": null } @@ -3581,8 +3283,7 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.\n", - "document": "srd", - "creature": "gorgon", + "parent": "gorgon", "uses_type": null, "uses_param": null } @@ -3593,8 +3294,7 @@ "fields": { "name": "Petrifying Breath", "desc": "The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw. On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.\n", - "document": "srd", - "creature": "gorgon", + "parent": "gorgon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -3605,8 +3305,7 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage, and if the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", - "document": "srd", - "creature": "gray-ooze", + "parent": "gray-ooze", "uses_type": null, "uses_param": null } @@ -3617,8 +3316,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage.\n", - "document": "srd", - "creature": "green-dragon-wyrmling", + "parent": "green-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -3629,8 +3327,7 @@ "fields": { "name": "Poison Breath", "desc": "The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 11 Constitution saving throw, taking 21 (6d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "green-dragon-wyrmling", + "parent": "green-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -3641,8 +3338,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "document": "srd", - "creature": "green-hag", + "parent": "green-hag", "uses_type": null, "uses_param": null } @@ -3653,8 +3349,7 @@ "fields": { "name": "Illusory Appearance", "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the hag is disguised.\n", - "document": "srd", - "creature": "green-hag", + "parent": "green-hag", "uses_type": null, "uses_param": null } @@ -3665,8 +3360,7 @@ "fields": { "name": "Invisible Passage", "desc": "The hag magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.\n", - "document": "srd", - "creature": "green-hag", + "parent": "green-hag", "uses_type": null, "uses_param": null } @@ -3677,8 +3371,7 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", - "creature": "grick", + "parent": "grick", "uses_type": null, "uses_param": null } @@ -3689,8 +3382,7 @@ "fields": { "name": "Multiattack", "desc": "The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target.\n", - "document": "srd", - "creature": "grick", + "parent": "grick", "uses_type": null, "uses_param": null } @@ -3701,8 +3393,7 @@ "fields": { "name": "Tentacles", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.\n", - "document": "srd", - "creature": "grick", + "parent": "grick", "uses_type": null, "uses_param": null } @@ -3713,8 +3404,7 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "document": "srd", - "creature": "griffon", + "parent": "griffon", "uses_type": null, "uses_param": null } @@ -3725,8 +3415,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", - "creature": "griffon", + "parent": "griffon", "uses_type": null, "uses_param": null } @@ -3737,8 +3426,7 @@ "fields": { "name": "Multiattack", "desc": "The griffon makes two attacks: one with its beak and one with its claws.\n", - "document": "srd", - "creature": "griffon", + "parent": "griffon", "uses_type": null, "uses_param": null } @@ -3749,8 +3437,7 @@ "fields": { "name": "Spiked Bone Club", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage.\n", - "document": "srd", - "creature": "grimlock", + "parent": "grimlock", "uses_type": null, "uses_param": null } @@ -3761,8 +3448,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one creature. Hit: 8 (1d8 + 4) piercing damage, and the target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "guardian-naga", + "parent": "guardian-naga", "uses_type": null, "uses_param": null } @@ -3773,8 +3459,7 @@ "fields": { "name": "Spit Poison", "desc": "Ranged Weapon Attack: +8 to hit, range 15/30 ft., one creature. Hit: The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "guardian-naga", + "parent": "guardian-naga", "uses_type": null, "uses_param": null } @@ -3785,8 +3470,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "document": "srd", - "creature": "gynosphinx", + "parent": "gynosphinx", "uses_type": null, "uses_param": null } @@ -3797,8 +3481,7 @@ "fields": { "name": "Multiattack", "desc": "The sphinx makes two claw attacks.\n", - "document": "srd", - "creature": "gynosphinx", + "parent": "gynosphinx", "uses_type": null, "uses_param": null } @@ -3809,8 +3492,7 @@ "fields": { "name": "Fire Breath", "desc": "The veteran exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "half-red-dragon-veteran", + "parent": "half-red-dragon-veteran", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -3821,8 +3503,7 @@ "fields": { "name": "Heavy Crossbow", "desc": "Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.\n", - "document": "srd", - "creature": "half-red-dragon-veteran", + "parent": "half-red-dragon-veteran", "uses_type": null, "uses_param": null } @@ -3833,8 +3514,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", - "document": "srd", - "creature": "half-red-dragon-veteran", + "parent": "half-red-dragon-veteran", "uses_type": null, "uses_param": null } @@ -3845,8 +3525,7 @@ "fields": { "name": "Multiattack", "desc": "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.\n", - "document": "srd", - "creature": "half-red-dragon-veteran", + "parent": "half-red-dragon-veteran", "uses_type": null, "uses_param": null } @@ -3857,8 +3536,7 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "document": "srd", - "creature": "half-red-dragon-veteran", + "parent": "half-red-dragon-veteran", "uses_type": null, "uses_param": null } @@ -3869,8 +3547,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.\n", - "document": "srd", - "creature": "harpy", + "parent": "harpy", "uses_type": null, "uses_param": null } @@ -3881,8 +3558,7 @@ "fields": { "name": "Club", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.\n", - "document": "srd", - "creature": "harpy", + "parent": "harpy", "uses_type": null, "uses_param": null } @@ -3893,8 +3569,7 @@ "fields": { "name": "Luring Song", "desc": "The harpy sings a magical melody. Every humanoid and giant within 300 feet of the harpy that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is incapacitated.\n\nWhile charmed by the harpy, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.\n\nA target that successfully saves is immune to this harpy's song for the next 24 hours.\n", - "document": "srd", - "creature": "harpy", + "parent": "harpy", "uses_type": null, "uses_param": null } @@ -3905,8 +3580,7 @@ "fields": { "name": "Multiattack", "desc": "The harpy makes two attacks: one with its claws and one with its club.\n", - "document": "srd", - "creature": "harpy", + "parent": "harpy", "uses_type": null, "uses_param": null } @@ -3917,8 +3591,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 7 (2d6) fire damage.\n", - "document": "srd", - "creature": "hell-hound", + "parent": "hell-hound", "uses_type": null, "uses_param": null } @@ -3929,8 +3602,7 @@ "fields": { "name": "Fire Breath", "desc": "The hound exhales fire in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "hell-hound", + "parent": "hell-hound", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -3941,8 +3613,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "document": "srd", - "creature": "hezrou", + "parent": "hezrou", "uses_type": null, "uses_param": null } @@ -3953,8 +3624,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", - "creature": "hezrou", + "parent": "hezrou", "uses_type": null, "uses_param": null } @@ -3965,8 +3635,7 @@ "fields": { "name": "Multiattack", "desc": "The hezrou makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "hezrou", + "parent": "hezrou", "uses_type": null, "uses_param": null } @@ -3977,8 +3646,7 @@ "fields": { "name": "Greatclub", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 18 (3d8 + 5) bludgeoning damage.\n", - "document": "srd", - "creature": "hill-giant", + "parent": "hill-giant", "uses_type": null, "uses_param": null } @@ -3989,8 +3657,7 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greatclub attacks.\n", - "document": "srd", - "creature": "hill-giant", + "parent": "hill-giant", "uses_type": null, "uses_param": null } @@ -4001,8 +3668,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +8 to hit, range 60/240 ft., one target. Hit: 21 (3d10 + 5) bludgeoning damage.\n", - "document": "srd", - "creature": "hill-giant", + "parent": "hill-giant", "uses_type": null, "uses_param": null } @@ -4013,8 +3679,7 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", - "document": "srd", - "creature": "hippogriff", + "parent": "hippogriff", "uses_type": null, "uses_param": null } @@ -4025,8 +3690,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", - "document": "srd", - "creature": "hippogriff", + "parent": "hippogriff", "uses_type": null, "uses_param": null } @@ -4037,8 +3701,7 @@ "fields": { "name": "Multiattack", "desc": "The hippogriff makes two attacks: one with its beak and one with its claws.\n", - "document": "srd", - "creature": "hippogriff", + "parent": "hippogriff", "uses_type": null, "uses_param": null } @@ -4049,8 +3712,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "document": "srd", - "creature": "hobgoblin", + "parent": "hobgoblin", "uses_type": null, "uses_param": null } @@ -4061,8 +3723,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage, or 6 (1d10 + 1) slashing damage if used with two hands.\n", - "document": "srd", - "creature": "hobgoblin", + "parent": "hobgoblin", "uses_type": null, "uses_param": null } @@ -4073,8 +3734,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or be poisoned for 1 minute. If the saving throw fails by 5 or more, the target is instead poisoned for 5 (1d10) minutes and unconscious while poisoned in this way.\n", - "document": "srd", - "creature": "homunculus", + "parent": "homunculus", "uses_type": null, "uses_param": null } @@ -4085,8 +3745,7 @@ "fields": { "name": "Fork", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (2d8 + 6) piercing damage.\n", - "document": "srd", - "creature": "horned-devil", + "parent": "horned-devil", "uses_type": null, "uses_param": null } @@ -4097,8 +3756,7 @@ "fields": { "name": "Hurl Flame", "desc": "Ranged Spell Attack: +7 to hit, range 150 ft., one target. Hit: 14 (4d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", - "document": "srd", - "creature": "horned-devil", + "parent": "horned-devil", "uses_type": null, "uses_param": null } @@ -4109,8 +3767,7 @@ "fields": { "name": "Multiattack", "desc": "The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack.\n", - "document": "srd", - "creature": "horned-devil", + "parent": "horned-devil", "uses_type": null, "uses_param": null } @@ -4121,8 +3778,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 10 (1d8 + 6) piercing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 17 Constitution saving throw or lose 10 (3d6) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 (3d6). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", - "document": "srd", - "creature": "horned-devil", + "parent": "horned-devil", "uses_type": null, "uses_param": null } @@ -4133,8 +3789,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 10 (1d10 + 5) piercing damage.\n", - "document": "srd", - "creature": "hydra", + "parent": "hydra", "uses_type": null, "uses_param": null } @@ -4145,8 +3800,7 @@ "fields": { "name": "Multiattack", "desc": "The hydra makes as many bite attacks as it has heads.\n", - "document": "srd", - "creature": "hydra", + "parent": "hydra", "uses_type": null, "uses_param": null } @@ -4157,8 +3811,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) piercing damage plus 10 (3d6) cold damage.\n", - "document": "srd", - "creature": "ice-devil", + "parent": "ice-devil", "uses_type": null, "uses_param": null } @@ -4169,8 +3822,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 10 (2d4 + 5) slashing damage plus 10 (3d6) cold damage.\n", - "document": "srd", - "creature": "ice-devil", + "parent": "ice-devil", "uses_type": null, "uses_param": null } @@ -4181,8 +3833,7 @@ "fields": { "name": "Multiattack", "desc": "The devil makes three attacks: one with its bite, one with its claws, and one with its tail.\n", - "document": "srd", - "creature": "ice-devil", + "parent": "ice-devil", "uses_type": null, "uses_param": null } @@ -4193,8 +3844,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage.\n", - "document": "srd", - "creature": "ice-devil", + "parent": "ice-devil", "uses_type": null, "uses_param": null } @@ -4205,8 +3855,7 @@ "fields": { "name": "Wall of Ice", "desc": "The devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.\n\nWhen the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.\n\nThe wall lasts for 1 minute or until the devil is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.\n", - "document": "srd", - "creature": "ice-devil", + "parent": "ice-devil", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -4217,8 +3866,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage.\n", - "document": "srd", - "creature": "ice-mephit", + "parent": "ice-mephit", "uses_type": null, "uses_param": null } @@ -4229,8 +3877,7 @@ "fields": { "name": "Frost Breath", "desc": "The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "ice-mephit", + "parent": "ice-mephit", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -4241,8 +3888,7 @@ "fields": { "name": "Invisibility", "desc": "The imp magically turns invisible until it attacks or until its concentration ends (as if concentrating on a spell). Any equipment the imp wears or carries is invisible with it.\n", - "document": "srd", - "creature": "imp", + "parent": "imp", "uses_type": null, "uses_param": null } @@ -4253,8 +3899,7 @@ "fields": { "name": "Sting", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "imp", + "parent": "imp", "uses_type": null, "uses_param": null } @@ -4265,8 +3910,7 @@ "fields": { "name": "Sting (Bite in Beast Form)", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "imp", + "parent": "imp", "uses_type": null, "uses_param": null } @@ -4277,8 +3921,7 @@ "fields": { "name": "Multiattack", "desc": "The stalker makes two slam attacks.\n", - "document": "srd", - "creature": "invisible-stalker", + "parent": "invisible-stalker", "uses_type": null, "uses_param": null } @@ -4289,8 +3932,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", - "document": "srd", - "creature": "invisible-stalker", + "parent": "invisible-stalker", "uses_type": null, "uses_param": null } @@ -4301,8 +3943,7 @@ "fields": { "name": "Multiattack", "desc": "The golem makes two melee attacks.\n", - "document": "srd", - "creature": "iron-golem", + "parent": "iron-golem", "uses_type": null, "uses_param": null } @@ -4313,8 +3954,7 @@ "fields": { "name": "Poison Breath", "desc": "The golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "iron-golem", + "parent": "iron-golem", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -4325,8 +3965,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", - "document": "srd", - "creature": "iron-golem", + "parent": "iron-golem", "uses_type": null, "uses_param": null } @@ -4337,8 +3976,7 @@ "fields": { "name": "Sword", "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 23 (3d10 + 7) slashing damage.\n", - "document": "srd", - "creature": "iron-golem", + "parent": "iron-golem", "uses_type": null, "uses_param": null } @@ -4349,8 +3987,7 @@ "fields": { "name": "Dagger", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", - "document": "srd", - "creature": "kobold", + "parent": "kobold", "uses_type": null, "uses_param": null } @@ -4361,8 +3998,7 @@ "fields": { "name": "Sling", "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.\n", - "document": "srd", - "creature": "kobold", + "parent": "kobold", "uses_type": null, "uses_param": null } @@ -4373,8 +4009,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +17 to hit, reach 5 ft., one target. Hit: 23 (3d8 + 10) piercing damage. If the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the kraken, and it takes 42 (12d6) acid damage at the start of each of the kraken's turns.\n\nIf the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a DC 25 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", - "document": "srd", - "creature": "kraken", + "parent": "kraken", "uses_type": null, "uses_param": null } @@ -4385,8 +4020,7 @@ "fields": { "name": "Fling", "desc": "One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.\n", - "document": "srd", - "creature": "kraken", + "parent": "kraken", "uses_type": null, "uses_param": null } @@ -4397,8 +4031,7 @@ "fields": { "name": "Lightning Storm", "desc": "The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "kraken", + "parent": "kraken", "uses_type": null, "uses_param": null } @@ -4409,8 +4042,7 @@ "fields": { "name": "Multiattack", "desc": "The kraken makes three tentacle attacks, each of which it can replace with one use of Fling.\n", - "document": "srd", - "creature": "kraken", + "parent": "kraken", "uses_type": null, "uses_param": null } @@ -4421,8 +4053,7 @@ "fields": { "name": "Tentacle", "desc": "Melee Weapon Attack: +17 to hit, reach 30 ft., one target. Hit: 20 (3d6 + 10) bludgeoning damage, and the target is grappled (escape DC 18). Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.\n", - "document": "srd", - "creature": "kraken", + "parent": "kraken", "uses_type": null, "uses_param": null } @@ -4433,8 +4064,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", - "document": "srd", - "creature": "lamia", + "parent": "lamia", "uses_type": null, "uses_param": null } @@ -4445,8 +4075,7 @@ "fields": { "name": "Dagger", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.\n", - "document": "srd", - "creature": "lamia", + "parent": "lamia", "uses_type": null, "uses_param": null } @@ -4457,8 +4086,7 @@ "fields": { "name": "Intoxicating Touch", "desc": "Melee Spell Attack: +5 to hit, reach 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.\n", - "document": "srd", - "creature": "lamia", + "parent": "lamia", "uses_type": null, "uses_param": null } @@ -4469,8 +4097,7 @@ "fields": { "name": "Multiattack", "desc": "The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch.\n", - "document": "srd", - "creature": "lamia", + "parent": "lamia", "uses_type": null, "uses_param": null } @@ -4481,8 +4108,7 @@ "fields": { "name": "Fist", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\n", - "document": "srd", - "creature": "lemure", + "parent": "lemure", "uses_type": null, "uses_param": null } @@ -4493,8 +4119,7 @@ "fields": { "name": "Paralyzing Touch", "desc": "Melee Spell Attack: +12 to hit, reach 5 ft., one creature. Hit: 10 (3d6) cold damage. The target must succeed on a DC 18 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "lich", + "parent": "lich", "uses_type": null, "uses_param": null } @@ -4505,8 +4130,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", - "creature": "lizardfolk", + "parent": "lizardfolk", "uses_type": null, "uses_param": null } @@ -4517,8 +4141,7 @@ "fields": { "name": "Heavy Club", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", - "document": "srd", - "creature": "lizardfolk", + "parent": "lizardfolk", "uses_type": null, "uses_param": null } @@ -4529,8 +4152,7 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", - "creature": "lizardfolk", + "parent": "lizardfolk", "uses_type": null, "uses_param": null } @@ -4541,8 +4163,7 @@ "fields": { "name": "Multiattack", "desc": "The lizardfolk makes two melee attacks, each one with a different weapon.\n", - "document": "srd", - "creature": "lizardfolk", + "parent": "lizardfolk", "uses_type": null, "uses_param": null } @@ -4553,8 +4174,7 @@ "fields": { "name": "Spiked Shield", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", - "creature": "lizardfolk", + "parent": "lizardfolk", "uses_type": null, "uses_param": null } @@ -4565,8 +4185,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage.\n", - "document": "srd", - "creature": "magma-mephit", + "parent": "magma-mephit", "uses_type": null, "uses_param": null } @@ -4577,8 +4196,7 @@ "fields": { "name": "Fire Breath", "desc": "The mephit exhales a 15-foot cone of fire. Each creature in that area must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "magma-mephit", + "parent": "magma-mephit", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -4589,8 +4207,7 @@ "fields": { "name": "Touch", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d6) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 3 (1d6) fire damage at the end of each of its turns.\n", - "document": "srd", - "creature": "magmin", + "parent": "magmin", "uses_type": null, "uses_param": null } @@ -4601,8 +4218,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", - "document": "srd", - "creature": "manticore", + "parent": "manticore", "uses_type": null, "uses_param": null } @@ -4613,8 +4229,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "document": "srd", - "creature": "manticore", + "parent": "manticore", "uses_type": null, "uses_param": null } @@ -4625,8 +4240,7 @@ "fields": { "name": "Multiattack", "desc": "The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes.\n", - "document": "srd", - "creature": "manticore", + "parent": "manticore", "uses_type": null, "uses_param": null } @@ -4637,8 +4251,7 @@ "fields": { "name": "Tail Spike", "desc": "Ranged Weapon Attack: +5 to hit, range 100/200 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", - "document": "srd", - "creature": "manticore", + "parent": "manticore", "uses_type": null, "uses_param": null } @@ -4649,8 +4262,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "document": "srd", - "creature": "marilith", + "parent": "marilith", "uses_type": null, "uses_param": null } @@ -4661,8 +4273,7 @@ "fields": { "name": "Multiattack", "desc": "The marilith makes seven attacks: six with its longswords and one with its tail.\n", - "document": "srd", - "creature": "marilith", + "parent": "marilith", "uses_type": null, "uses_param": null } @@ -4673,8 +4284,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 15 (2d10 + 4) bludgeoning damage. If the target is Medium or smaller, it is grappled (escape DC 19). Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.\n", - "document": "srd", - "creature": "marilith", + "parent": "marilith", "uses_type": null, "uses_param": null } @@ -4685,8 +4295,7 @@ "fields": { "name": "Teleport", "desc": "The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "document": "srd", - "creature": "marilith", + "parent": "marilith", "uses_type": null, "uses_param": null } @@ -4697,8 +4306,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +5 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage.\n", - "document": "srd", - "creature": "medusa", + "parent": "medusa", "uses_type": null, "uses_param": null } @@ -4709,8 +4317,7 @@ "fields": { "name": "Multiattack", "desc": "The medusa makes either three melee attacks—one with its snake hair and two with its shortsword—or two ranged attacks with its longbow.\n", - "document": "srd", - "creature": "medusa", + "parent": "medusa", "uses_type": null, "uses_param": null } @@ -4721,8 +4328,7 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", - "creature": "medusa", + "parent": "medusa", "uses_type": null, "uses_param": null } @@ -4733,8 +4339,7 @@ "fields": { "name": "Snake Hair", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage plus 14 (4d6) poison damage.\n", - "document": "srd", - "creature": "medusa", + "parent": "medusa", "uses_type": null, "uses_param": null } @@ -4745,8 +4350,7 @@ "fields": { "name": "Spear", "desc": "Melee or Ranged Weapon Attack: +2 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hands to make a melee attack.\n", - "document": "srd", - "creature": "merfolk", + "parent": "merfolk", "uses_type": null, "uses_param": null } @@ -4757,8 +4361,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "document": "srd", - "creature": "merrow", + "parent": "merrow", "uses_type": null, "uses_param": null } @@ -4769,8 +4372,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (2d4 + 4) slashing damage.\n", - "document": "srd", - "creature": "merrow", + "parent": "merrow", "uses_type": null, "uses_param": null } @@ -4781,8 +4383,7 @@ "fields": { "name": "Harpoon", "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.\n", - "document": "srd", - "creature": "merrow", + "parent": "merrow", "uses_type": null, "uses_param": null } @@ -4793,8 +4394,7 @@ "fields": { "name": "Multiattack", "desc": "The merrow makes two attacks: one with its bite and one with its claws or harpoon.\n", - "document": "srd", - "creature": "merrow", + "parent": "merrow", "uses_type": null, "uses_param": null } @@ -4805,8 +4405,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage.\n", - "document": "srd", - "creature": "mimic", + "parent": "mimic", "uses_type": null, "uses_param": null } @@ -4817,8 +4416,7 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait.\n", - "document": "srd", - "creature": "mimic", + "parent": "mimic", "uses_type": null, "uses_param": null } @@ -4829,8 +4427,7 @@ "fields": { "name": "Gore", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", - "document": "srd", - "creature": "minotaur-skeleton", + "parent": "minotaur-skeleton", "uses_type": null, "uses_param": null } @@ -4841,8 +4438,7 @@ "fields": { "name": "Greataxe", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", - "document": "srd", - "creature": "minotaur-skeleton", + "parent": "minotaur-skeleton", "uses_type": null, "uses_param": null } @@ -4853,8 +4449,7 @@ "fields": { "name": "Gore", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", - "document": "srd", - "creature": "minotaur", + "parent": "minotaur", "uses_type": null, "uses_param": null } @@ -4865,8 +4460,7 @@ "fields": { "name": "Greataxe", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", - "document": "srd", - "creature": "minotaur", + "parent": "minotaur", "uses_type": null, "uses_param": null } @@ -4877,8 +4471,7 @@ "fields": { "name": "Dreadful Glare", "desc": "The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a DC 16 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours.\n", - "document": "srd", - "creature": "mummy-lord", + "parent": "mummy-lord", "uses_type": null, "uses_param": null } @@ -4889,8 +4482,7 @@ "fields": { "name": "Multiattack", "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", - "document": "srd", - "creature": "mummy-lord", + "parent": "mummy-lord", "uses_type": null, "uses_param": null } @@ -4901,8 +4493,7 @@ "fields": { "name": "Rotting Fist", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage plus 21 (6d6) necrotic damage. If the target is a creature, it must succeed on a DC 16 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", - "document": "srd", - "creature": "mummy-lord", + "parent": "mummy-lord", "uses_type": null, "uses_param": null } @@ -4913,8 +4504,7 @@ "fields": { "name": "Dreadful Glare", "desc": "The mummy targets one creature it can see within 60 feet of it. If the target can see the mummy, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.\n", - "document": "srd", - "creature": "mummy", + "parent": "mummy", "uses_type": null, "uses_param": null } @@ -4925,8 +4515,7 @@ "fields": { "name": "Multiattack", "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", - "document": "srd", - "creature": "mummy", + "parent": "mummy", "uses_type": null, "uses_param": null } @@ -4937,8 +4526,7 @@ "fields": { "name": "Rotting Fist", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage. If the target is a creature, it must succeed on a DC 12 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", - "document": "srd", - "creature": "mummy", + "parent": "mummy", "uses_type": null, "uses_param": null } @@ -4949,8 +4537,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 32 (5d10 + 5) piercing damage.\n", - "document": "srd", - "creature": "nalfeshnee", + "parent": "nalfeshnee", "uses_type": null, "uses_param": null } @@ -4961,8 +4548,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) slashing damage.\n", - "document": "srd", - "creature": "nalfeshnee", + "parent": "nalfeshnee", "uses_type": null, "uses_param": null } @@ -4973,8 +4559,7 @@ "fields": { "name": "Horror Nimbus", "desc": "The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.\n", - "document": "srd", - "creature": "nalfeshnee", + "parent": "nalfeshnee", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -4985,8 +4570,7 @@ "fields": { "name": "Multiattack", "desc": "The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "nalfeshnee", + "parent": "nalfeshnee", "uses_type": null, "uses_param": null } @@ -4997,8 +4581,7 @@ "fields": { "name": "Teleport", "desc": "The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "document": "srd", - "creature": "nalfeshnee", + "parent": "nalfeshnee", "uses_type": null, "uses_param": null } @@ -5009,8 +4592,7 @@ "fields": { "name": "Change Shape", "desc": "The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies.\n", - "document": "srd", - "creature": "night-hag", + "parent": "night-hag", "uses_type": null, "uses_param": null } @@ -5021,8 +4603,7 @@ "fields": { "name": "Claws", "desc": "(Hag Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "document": "srd", - "creature": "night-hag", + "parent": "night-hag", "uses_type": null, "uses_param": null } @@ -5033,8 +4614,7 @@ "fields": { "name": "Etherealness", "desc": "The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession.\n", - "document": "srd", - "creature": "night-hag", + "parent": "night-hag", "uses_type": null, "uses_param": null } @@ -5045,8 +4625,7 @@ "fields": { "name": "Nightmare Haunting", "desc": "While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle. As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.\n", - "document": "srd", - "creature": "night-hag", + "parent": "night-hag", "uses_type": "PER_DAY", "uses_param": 1 } @@ -5057,8 +4636,7 @@ "fields": { "name": "Ethereal Stride", "desc": "The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.\n", - "document": "srd", - "creature": "nightmare", + "parent": "nightmare", "uses_type": null, "uses_param": null } @@ -5069,8 +4647,7 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage.\n", - "document": "srd", - "creature": "nightmare", + "parent": "nightmare", "uses_type": null, "uses_param": null } @@ -5081,8 +4658,7 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage.\n", - "document": "srd", - "creature": "ochre-jelly", + "parent": "ochre-jelly", "uses_type": null, "uses_param": null } @@ -5093,8 +4669,7 @@ "fields": { "name": "Morningstar", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "document": "srd", - "creature": "ogre-zombie", + "parent": "ogre-zombie", "uses_type": null, "uses_param": null } @@ -5105,8 +4680,7 @@ "fields": { "name": "Greatclub", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "document": "srd", - "creature": "ogre", + "parent": "ogre", "uses_type": null, "uses_param": null } @@ -5117,8 +4691,7 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", - "document": "srd", - "creature": "ogre", + "parent": "ogre", "uses_type": null, "uses_param": null } @@ -5129,8 +4702,7 @@ "fields": { "name": "Change Shape", "desc": "The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size.\n", - "document": "srd", - "creature": "oni", + "parent": "oni", "uses_type": null, "uses_param": null } @@ -5141,8 +4713,7 @@ "fields": { "name": "Claw", "desc": "(Oni Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", - "document": "srd", - "creature": "oni", + "parent": "oni", "uses_type": null, "uses_param": null } @@ -5153,8 +4724,7 @@ "fields": { "name": "Glaive", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small or Medium form.\n", - "document": "srd", - "creature": "oni", + "parent": "oni", "uses_type": null, "uses_param": null } @@ -5165,8 +4735,7 @@ "fields": { "name": "Multiattack", "desc": "The oni makes two attacks, either with its claws or its glaive.\n", - "document": "srd", - "creature": "oni", + "parent": "oni", "uses_type": null, "uses_param": null } @@ -5177,8 +4746,7 @@ "fields": { "name": "Greataxe", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.\n", - "document": "srd", - "creature": "orc", + "parent": "orc", "uses_type": null, "uses_param": null } @@ -5189,8 +4757,7 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "document": "srd", - "creature": "orc", + "parent": "orc", "uses_type": null, "uses_param": null } @@ -5201,8 +4768,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 12 (2d8 + 3) piercing damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured.\n", - "document": "srd", - "creature": "otyugh", + "parent": "otyugh", "uses_type": null, "uses_param": null } @@ -5213,8 +4779,7 @@ "fields": { "name": "Multiattack", "desc": "The otyugh makes three attacks: one with its bite and two with its tentacles.\n", - "document": "srd", - "creature": "otyugh", + "parent": "otyugh", "uses_type": null, "uses_param": null } @@ -5225,8 +4790,7 @@ "fields": { "name": "Tentacle", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage. If the target is Medium or smaller, it is grappled (escape DC 13) and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.\n", - "document": "srd", - "creature": "otyugh", + "parent": "otyugh", "uses_type": null, "uses_param": null } @@ -5237,8 +4801,7 @@ "fields": { "name": "Tentacle Slam", "desc": "The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the otyugh's next turn. On a successful save, the target takes half the bludgeoning damage and isn't stunned.\n", - "document": "srd", - "creature": "otyugh", + "parent": "otyugh", "uses_type": null, "uses_param": null } @@ -5249,8 +4812,7 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one creature. Hit: 10 (1d10 + 5) piercing damage.\n", - "document": "srd", - "creature": "owlbear", + "parent": "owlbear", "uses_type": null, "uses_param": null } @@ -5261,8 +4823,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", - "document": "srd", - "creature": "owlbear", + "parent": "owlbear", "uses_type": null, "uses_param": null } @@ -5273,8 +4834,7 @@ "fields": { "name": "Multiattack", "desc": "The owlbear makes two attacks: one with its beak and one with its claws.\n", - "document": "srd", - "creature": "owlbear", + "parent": "owlbear", "uses_type": null, "uses_param": null } @@ -5285,8 +4845,7 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "document": "srd", - "creature": "pegasus", + "parent": "pegasus", "uses_type": null, "uses_param": null } @@ -5297,8 +4856,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) piercing damage. The target must succeed on a DC 21 Constitution saving throw or become poisoned. While poisoned in this way, the target can't regain hit points, and it takes 21 (6d6) poison damage at the start of each of its turns. The poisoned target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "pit-fiend", + "parent": "pit-fiend", "uses_type": null, "uses_param": null } @@ -5309,8 +4867,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 17 (2d8 + 8) slashing damage.\n", - "document": "srd", - "creature": "pit-fiend", + "parent": "pit-fiend", "uses_type": null, "uses_param": null } @@ -5321,8 +4878,7 @@ "fields": { "name": "Mace", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) bludgeoning damage plus 21 (6d6) fire damage.\n", - "document": "srd", - "creature": "pit-fiend", + "parent": "pit-fiend", "uses_type": null, "uses_param": null } @@ -5333,8 +4889,7 @@ "fields": { "name": "Multiattack", "desc": "The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail.\n", - "document": "srd", - "creature": "pit-fiend", + "parent": "pit-fiend", "uses_type": null, "uses_param": null } @@ -5345,8 +4900,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 24 (3d10 + 8) bludgeoning damage.\n", - "document": "srd", - "creature": "pit-fiend", + "parent": "pit-fiend", "uses_type": null, "uses_param": null } @@ -5357,8 +4911,7 @@ "fields": { "name": "Greatsword", "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage.\n", - "document": "srd", - "creature": "planetar", + "parent": "planetar", "uses_type": null, "uses_param": null } @@ -5369,8 +4922,7 @@ "fields": { "name": "Healing Touch", "desc": "The planetar touches another creature. The target magically regains 30 (6d8 + 3) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "document": "srd", - "creature": "planetar", + "parent": "planetar", "uses_type": "PER_DAY", "uses_param": 4 } @@ -5381,8 +4933,7 @@ "fields": { "name": "Multiattack", "desc": "The planetar makes two melee attacks.\n", - "document": "srd", - "creature": "planetar", + "parent": "planetar", "uses_type": null, "uses_param": null } @@ -5393,8 +4944,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 14 (3d6 + 4) piercing damage.\n", - "document": "srd", - "creature": "plesiosaurus", + "parent": "plesiosaurus", "uses_type": null, "uses_param": null } @@ -5405,8 +4955,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", - "document": "srd", - "creature": "pseudodragon", + "parent": "pseudodragon", "uses_type": null, "uses_param": null } @@ -5417,8 +4966,7 @@ "fields": { "name": "Sting", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. If the saving throw fails by 5 or more, the target falls unconscious for the same duration, or until it takes damage or another creature uses an action to shake it awake.\n", - "document": "srd", - "creature": "pseudodragon", + "parent": "pseudodragon", "uses_type": null, "uses_param": null } @@ -5429,8 +4977,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 22 (3d8 + 9) piercing damage. If the target is a Large or smaller creature, it must succeed on a DC 19 Dexterity saving throw or be swallowed by the worm. A swallowed creature is blinded and restrained, it has total cover against attacks and other effects outside the worm, and it takes 21 (6d6) acid damage at the start of each of the worm's turns.\n\nIf the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a DC 21 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 20 feet of movement, exiting prone.\n", - "document": "srd", - "creature": "purple-worm", + "parent": "purple-worm", "uses_type": null, "uses_param": null } @@ -5441,8 +4988,7 @@ "fields": { "name": "Multiattack", "desc": "The worm makes two attacks: one with its bite and one with its stinger.\n", - "document": "srd", - "creature": "purple-worm", + "parent": "purple-worm", "uses_type": null, "uses_param": null } @@ -5453,8 +4999,7 @@ "fields": { "name": "Tail Stinger", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 19 (3d6 + 9) piercing damage, and the target must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "purple-worm", + "parent": "purple-worm", "uses_type": null, "uses_param": null } @@ -5465,8 +5010,7 @@ "fields": { "name": "Claws (Bite in Beast Form)", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must succeed on a DC 10 Constitution saving throw or take 5 (2d4) poison damage and become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "quasit", + "parent": "quasit", "uses_type": null, "uses_param": null } @@ -5477,8 +5021,7 @@ "fields": { "name": "Invisibility", "desc": "The quasit magically turns invisible until it attacks or uses Scare, or until its concentration ends (as if concentrating on a spell). Any equipment the quasit wears or carries is invisible with it.\n", - "document": "srd", - "creature": "quasit", + "parent": "quasit", "uses_type": null, "uses_param": null } @@ -5489,8 +5032,7 @@ "fields": { "name": "Scare", "desc": "One creature of the quasit's choice within 20 feet of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "quasit", + "parent": "quasit", "uses_type": "PER_DAY", "uses_param": 1 } @@ -5501,8 +5043,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature. The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a remove curse spell or similar magic.\n", - "document": "srd", - "creature": "rakshasa", + "parent": "rakshasa", "uses_type": null, "uses_param": null } @@ -5513,8 +5054,7 @@ "fields": { "name": "Multiattack", "desc": "The rakshasa makes two claw attacks.\n", - "document": "srd", - "creature": "rakshasa", + "parent": "rakshasa", "uses_type": null, "uses_param": null } @@ -5525,8 +5065,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage.\n", - "document": "srd", - "creature": "red-dragon-wyrmling", + "parent": "red-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -5537,8 +5076,7 @@ "fields": { "name": "Fire Breath", "desc": "The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "red-dragon-wyrmling", + "parent": "red-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -5549,8 +5087,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage. If the target is a creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.\n", - "document": "srd", - "creature": "remorhaz", + "parent": "remorhaz", "uses_type": null, "uses_param": null } @@ -5561,8 +5098,7 @@ "fields": { "name": "Swallow", "desc": "The remorhaz makes one bite attack against a Medium or smaller creature it is grappling. If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the remorhaz, and it takes 21 (6d6) acid damage at the start of each of the remorhaz's turns.\n\nIf the remorhaz takes 30 damage or more on a single turn from a creature inside it, the remorhaz must succeed on a DC 15 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the remorhaz. If the remorhaz dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", - "document": "srd", - "creature": "remorhaz", + "parent": "remorhaz", "uses_type": null, "uses_param": null } @@ -5573,8 +5109,7 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 27 (4d8 + 9) piercing damage.\n", - "document": "srd", - "creature": "roc", + "parent": "roc", "uses_type": null, "uses_param": null } @@ -5585,8 +5120,7 @@ "fields": { "name": "Multiattack", "desc": "The roc makes two attacks: one with its beak and one with its talons.\n", - "document": "srd", - "creature": "roc", + "parent": "roc", "uses_type": null, "uses_param": null } @@ -5597,8 +5131,7 @@ "fields": { "name": "Talons", "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 23 (4d6 + 9) slashing damage, and the target is grappled (escape DC 19). Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.\n", - "document": "srd", - "creature": "roc", + "parent": "roc", "uses_type": null, "uses_param": null } @@ -5609,8 +5142,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 22 (4d8 + 4) piercing damage.\n", - "document": "srd", - "creature": "roper", + "parent": "roper", "uses_type": null, "uses_param": null } @@ -5621,8 +5153,7 @@ "fields": { "name": "Multiattack", "desc": "The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite.\n", - "document": "srd", - "creature": "roper", + "parent": "roper", "uses_type": null, "uses_param": null } @@ -5633,8 +5164,7 @@ "fields": { "name": "Reel", "desc": "The roper pulls each creature grappled by it up to 25 feet straight toward it.\n", - "document": "srd", - "creature": "roper", + "parent": "roper", "uses_type": null, "uses_param": null } @@ -5645,8 +5175,7 @@ "fields": { "name": "Tendril", "desc": "Melee Weapon Attack: +7 to hit, reach 50 ft., one creature. Hit: The target is grappled (escape DC 15). Until the grapple ends, the target is restrained and has disadvantage on Strength checks and Strength saving throws, and the roper can't use the same tendril on another target.\n", - "document": "srd", - "creature": "roper", + "parent": "roper", "uses_type": null, "uses_param": null } @@ -5657,8 +5186,7 @@ "fields": { "name": "Smother", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one Medium or smaller creature. Hit: The creature is grappled (escape DC 13). Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 (2d6 + 3) bludgeoning damage.\n", - "document": "srd", - "creature": "rug-of-smothering", + "parent": "rug-of-smothering", "uses_type": null, "uses_param": null } @@ -5669,8 +5197,7 @@ "fields": { "name": "Antennae", "desc": "The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the rust monster's touch. If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.\n", - "document": "srd", - "creature": "rust-monster", + "parent": "rust-monster", "uses_type": null, "uses_param": null } @@ -5681,8 +5208,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "document": "srd", - "creature": "rust-monster", + "parent": "rust-monster", "uses_type": null, "uses_param": null } @@ -5693,8 +5219,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) piercing damage.\n", - "document": "srd", - "creature": "sahuagin", + "parent": "sahuagin", "uses_type": null, "uses_param": null } @@ -5705,8 +5230,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) slashing damage.\n", - "document": "srd", - "creature": "sahuagin", + "parent": "sahuagin", "uses_type": null, "uses_param": null } @@ -5717,8 +5241,7 @@ "fields": { "name": "Multiattack", "desc": "The sahuagin makes two melee attacks: one with its bite and one with its claws or spear.\n", - "document": "srd", - "creature": "sahuagin", + "parent": "sahuagin", "uses_type": null, "uses_param": null } @@ -5729,8 +5252,7 @@ "fields": { "name": "Spear", "desc": "Melee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.\n", - "document": "srd", - "creature": "sahuagin", + "parent": "sahuagin", "uses_type": null, "uses_param": null } @@ -5741,8 +5263,7 @@ "fields": { "name": "Multiattack", "desc": "The salamander makes two attacks: one with its spear and one with its tail.\n", - "document": "srd", - "creature": "salamander", + "parent": "salamander", "uses_type": null, "uses_param": null } @@ -5753,8 +5274,7 @@ "fields": { "name": "Spear", "desc": "Melee or Ranged Weapon Attack: +7 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", - "document": "srd", - "creature": "salamander", + "parent": "salamander", "uses_type": null, "uses_param": null } @@ -5765,8 +5285,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage, and the target is grappled (escape DC 14). Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.\n", - "document": "srd", - "creature": "salamander", + "parent": "salamander", "uses_type": null, "uses_param": null } @@ -5777,8 +5296,7 @@ "fields": { "name": "Ram", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) bludgeoning damage.\n", - "document": "srd", - "creature": "satyr", + "parent": "satyr", "uses_type": null, "uses_param": null } @@ -5789,8 +5307,7 @@ "fields": { "name": "Shortbow", "desc": "Ranged Weapon Attack: +5 to hit, range 80/320 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "document": "srd", - "creature": "satyr", + "parent": "satyr", "uses_type": null, "uses_param": null } @@ -5801,8 +5318,7 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "document": "srd", - "creature": "satyr", + "parent": "satyr", "uses_type": null, "uses_param": null } @@ -5813,8 +5329,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", - "document": "srd", - "creature": "sea-hag", + "parent": "sea-hag", "uses_type": null, "uses_param": null } @@ -5825,8 +5340,7 @@ "fields": { "name": "Death Glare", "desc": "The hag targets one frightened creature she can see within 30 feet of her. If the target can see the hag, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.\n", - "document": "srd", - "creature": "sea-hag", + "parent": "sea-hag", "uses_type": null, "uses_param": null } @@ -5837,8 +5351,7 @@ "fields": { "name": "Illusory Appearance", "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 16 Intelligence (Investigation) check to discern that the hag is disguised.\n", - "document": "srd", - "creature": "sea-hag", + "parent": "sea-hag", "uses_type": null, "uses_param": null } @@ -5849,8 +5362,7 @@ "fields": { "name": "Strength Drain", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) necrotic damage, and the target's Strength score is reduced by 1d4. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.\n\nIf a non-evil humanoid dies from this attack, a new shadow rises from the corpse 1d4 hours later.\n", - "document": "srd", - "creature": "shadow", + "parent": "shadow", "uses_type": null, "uses_param": null } @@ -5861,8 +5373,7 @@ "fields": { "name": "Engulf", "desc": "The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must succeed on a DC 14 Constitution saving throw at the start of each of the mound's turns or take 13 (2d8 + 4) bludgeoning damage. If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time.\n", - "document": "srd", - "creature": "shambling-mound", + "parent": "shambling-mound", "uses_type": null, "uses_param": null } @@ -5873,8 +5384,7 @@ "fields": { "name": "Multiattack", "desc": "The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is grappled (escape DC 14), and the shambling mound uses its Engulf on it.\n", - "document": "srd", - "creature": "shambling-mound", + "parent": "shambling-mound", "uses_type": null, "uses_param": null } @@ -5885,8 +5395,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "document": "srd", - "creature": "shambling-mound", + "parent": "shambling-mound", "uses_type": null, "uses_param": null } @@ -5897,8 +5406,7 @@ "fields": { "name": "Fist", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "document": "srd", - "creature": "shield-guardian", + "parent": "shield-guardian", "uses_type": null, "uses_param": null } @@ -5909,8 +5417,7 @@ "fields": { "name": "Multiattack", "desc": "The guardian makes two fist attacks.\n", - "document": "srd", - "creature": "shield-guardian", + "parent": "shield-guardian", "uses_type": null, "uses_param": null } @@ -5921,8 +5428,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "document": "srd", - "creature": "silver-dragon-wyrmling", + "parent": "silver-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -5933,8 +5439,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "silver-dragon-wyrmling", + "parent": "silver-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -5945,8 +5450,7 @@ "fields": { "name": "Shortbow", "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", - "creature": "skeleton", + "parent": "skeleton", "uses_type": null, "uses_param": null } @@ -5957,8 +5461,7 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", - "creature": "skeleton", + "parent": "skeleton", "uses_type": null, "uses_param": null } @@ -5969,8 +5472,7 @@ "fields": { "name": "Flying Sword", "desc": "The solar releases its greatsword to hover magically in an unoccupied space within 5 feet of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 feet and either make one attack against a target or return to the solar's hands. If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies.\n", - "document": "srd", - "creature": "solar", + "parent": "solar", "uses_type": null, "uses_param": null } @@ -5981,8 +5483,7 @@ "fields": { "name": "Greatsword", "desc": "Melee Weapon Attack: +15 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) slashing damage plus 27 (6d8) radiant damage.\n", - "document": "srd", - "creature": "solar", + "parent": "solar", "uses_type": null, "uses_param": null } @@ -5993,8 +5494,7 @@ "fields": { "name": "Healing Touch", "desc": "The solar touches another creature. The target magically regains 40 (8d8 + 4) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "document": "srd", - "creature": "solar", + "parent": "solar", "uses_type": "PER_DAY", "uses_param": 4 } @@ -6005,8 +5505,7 @@ "fields": { "name": "Multiattack", "desc": "The solar makes two greatsword attacks.\n", - "document": "srd", - "creature": "solar", + "parent": "solar", "uses_type": null, "uses_param": null } @@ -6017,8 +5516,7 @@ "fields": { "name": "Slaying Longbow", "desc": "Ranged Weapon Attack: +13 to hit, range 150/600 ft., one target. Hit: 15 (2d8 + 6) piercing damage plus 27 (6d8) radiant damage. If the target is a creature that has 100 hit points or fewer, it must succeed on a DC 15 Constitution saving throw or die.\n", - "document": "srd", - "creature": "solar", + "parent": "solar", "uses_type": null, "uses_param": null } @@ -6029,8 +5527,7 @@ "fields": { "name": "Life Drain", "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) necrotic damage. The target must succeed on a DC 10 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "document": "srd", - "creature": "specter", + "parent": "specter", "uses_type": null, "uses_param": null } @@ -6041,8 +5538,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 7 (1d6 + 4) piercing damage, and the target must make a DC 13 Constitution saving throw, taking 31 (7d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "spirit-naga", + "parent": "spirit-naga", "uses_type": null, "uses_param": null } @@ -6053,8 +5549,7 @@ "fields": { "name": "Heart Sight", "desc": "The sprite touches a creature and magically knows the creature's current emotional state. If the target fails a DC 10 Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.\n", - "document": "srd", - "creature": "sprite", + "parent": "sprite", "uses_type": null, "uses_param": null } @@ -6065,8 +5560,7 @@ "fields": { "name": "Invisibility", "desc": "The sprite magically turns invisible until it attacks or casts a spell, or until its concentration ends (as if concentrating on a spell). Any equipment the sprite wears or carries is invisible with it.\n", - "document": "srd", - "creature": "sprite", + "parent": "sprite", "uses_type": null, "uses_param": null } @@ -6077,8 +5571,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 1 slashing damage.\n", - "document": "srd", - "creature": "sprite", + "parent": "sprite", "uses_type": null, "uses_param": null } @@ -6089,8 +5582,7 @@ "fields": { "name": "Shortbow", "desc": "Ranged Weapon Attack: +6 to hit, range 40/160 ft., one target. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or become poisoned for 1 minute. If its saving throw result is 5 or lower, the poisoned target falls unconscious for the same duration, or until it takes damage or another creature takes an action to shake it awake.\n", - "document": "srd", - "creature": "sprite", + "parent": "sprite", "uses_type": null, "uses_param": null } @@ -6101,8 +5593,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 2 (1d4) slashing damage plus 2 (1d4) fire damage.\n", - "document": "srd", - "creature": "steam-mephit", + "parent": "steam-mephit", "uses_type": null, "uses_param": null } @@ -6113,8 +5604,7 @@ "fields": { "name": "Steam Breath", "desc": "The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 4 (1d8) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "steam-mephit", + "parent": "steam-mephit", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -6125,8 +5615,7 @@ "fields": { "name": "Blood Drain", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 5 (1d4 + 3) piercing damage, and the stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 (1d4 + 3) hit points due to blood loss.\n\nThe stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies. A creature, including the target, can use its action to detach the stirge.\n", - "document": "srd", - "creature": "stirge", + "parent": "stirge", "uses_type": null, "uses_param": null } @@ -6137,8 +5626,7 @@ "fields": { "name": "Greatclub", "desc": "Melee Weapon Attack: +9 to hit, reach 15 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", - "document": "srd", - "creature": "stone-giant", + "parent": "stone-giant", "uses_type": null, "uses_param": null } @@ -6149,8 +5637,7 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greatclub attacks.\n", - "document": "srd", - "creature": "stone-giant", + "parent": "stone-giant", "uses_type": null, "uses_param": null } @@ -6161,8 +5648,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage. If the target is a creature, it must succeed on a DC 17 Strength saving throw or be knocked prone.\n", - "document": "srd", - "creature": "stone-giant", + "parent": "stone-giant", "uses_type": null, "uses_param": null } @@ -6173,8 +5659,7 @@ "fields": { "name": "Multiattack", "desc": "The golem makes two slam attacks.\n", - "document": "srd", - "creature": "stone-golem", + "parent": "stone-golem", "uses_type": null, "uses_param": null } @@ -6185,8 +5670,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", - "document": "srd", - "creature": "stone-golem", + "parent": "stone-golem", "uses_type": null, "uses_param": null } @@ -6197,8 +5681,7 @@ "fields": { "name": "Slow", "desc": "The golem targets one or more creatures it can see within 10 feet of it. Each target must make a DC 17 Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "stone-golem", + "parent": "stone-golem", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -6209,8 +5692,7 @@ "fields": { "name": "Greatsword", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 30 (6d6 + 9) slashing damage.\n", - "document": "srd", - "creature": "storm-giant", + "parent": "storm-giant", "uses_type": null, "uses_param": null } @@ -6221,8 +5703,7 @@ "fields": { "name": "Lightning Strike", "desc": "The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a DC 17 Dexterity saving throw, taking 54 (12d8) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "storm-giant", + "parent": "storm-giant", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -6233,8 +5714,7 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greatsword attacks.\n", - "document": "srd", - "creature": "storm-giant", + "parent": "storm-giant", "uses_type": null, "uses_param": null } @@ -6245,8 +5725,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +14 to hit, range 60/240 ft., one target. Hit: 35 (4d12 + 9) bludgeoning damage.\n", - "document": "srd", - "creature": "storm-giant", + "parent": "storm-giant", "uses_type": null, "uses_param": null } @@ -6257,8 +5736,7 @@ "fields": { "name": "Charm", "desc": "One humanoid the fiend can see within 30 feet of it must succeed on a DC 15 Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the fiend's verbal or telepathic commands. If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.\n\nThe fiend can have only one target charmed at a time. If it charms another, the effect on the previous target ends.\n", - "document": "srd", - "creature": "succubusincubus", + "parent": "succubusincubus", "uses_type": null, "uses_param": null } @@ -6269,8 +5747,7 @@ "fields": { "name": "Claw", "desc": "(Fiend Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "document": "srd", - "creature": "succubusincubus", + "parent": "succubusincubus", "uses_type": null, "uses_param": null } @@ -6281,8 +5758,7 @@ "fields": { "name": "Draining Kiss", "desc": "The fiend kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "document": "srd", - "creature": "succubusincubus", + "parent": "succubusincubus", "uses_type": null, "uses_param": null } @@ -6293,8 +5769,7 @@ "fields": { "name": "Etherealness", "desc": "The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa.\n", - "document": "srd", - "creature": "succubusincubus", + "parent": "succubusincubus", "uses_type": null, "uses_param": null } @@ -6305,8 +5780,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 36 (4d12 + 10) piercing damage. If the target is a creature, it is grappled (escape DC 20). Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.\n", - "document": "srd", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -6317,8 +5791,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +19 to hit, reach 15 ft., one target. Hit: 28 (4d8 + 10) slashing damage.\n", - "document": "srd", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -6329,8 +5802,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours.\n", - "document": "srd", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -6341,8 +5813,7 @@ "fields": { "name": "Horns", "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 32 (4d10 + 10) piercing damage.\n", - "document": "srd", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -6353,8 +5824,7 @@ "fields": { "name": "Multiattack", "desc": "The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite.\n", - "document": "srd", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -6365,8 +5835,7 @@ "fields": { "name": "Swallow", "desc": "The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the tarrasque, and it takes 56 (16d6) acid damage at the start of each of the tarrasque's turns.\n\nIf the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a DC 20 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 30 feet of movement, exiting prone.\n", - "document": "srd", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -6377,8 +5846,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +19 to hit, reach 20 ft., one target. Hit: 24 (4d6 + 10) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be knocked prone.\n", - "document": "srd", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -6389,8 +5857,7 @@ "fields": { "name": "Animate Trees", "desc": "The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a treant, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.\n", - "document": "srd", - "creature": "treant", + "parent": "treant", "uses_type": "PER_DAY", "uses_param": 1 } @@ -6401,8 +5868,7 @@ "fields": { "name": "Multiattack", "desc": "The treant makes two slam attacks.\n", - "document": "srd", - "creature": "treant", + "parent": "treant", "uses_type": null, "uses_param": null } @@ -6413,8 +5879,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +10 to hit, range 60/180 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", - "document": "srd", - "creature": "treant", + "parent": "treant", "uses_type": null, "uses_param": null } @@ -6425,8 +5890,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 16 (3d6 + 6) bludgeoning damage.\n", - "document": "srd", - "creature": "treant", + "parent": "treant", "uses_type": null, "uses_param": null } @@ -6437,8 +5901,7 @@ "fields": { "name": "Gore", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 24 (4d8 + 6) piercing damage.\n", - "document": "srd", - "creature": "triceratops", + "parent": "triceratops", "uses_type": null, "uses_param": null } @@ -6449,8 +5912,7 @@ "fields": { "name": "Stomp", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.\n", - "document": "srd", - "creature": "triceratops", + "parent": "triceratops", "uses_type": null, "uses_param": null } @@ -6461,8 +5923,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) piercing damage.\n", - "document": "srd", - "creature": "troll", + "parent": "troll", "uses_type": null, "uses_param": null } @@ -6473,8 +5934,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", - "creature": "troll", + "parent": "troll", "uses_type": null, "uses_param": null } @@ -6485,8 +5945,7 @@ "fields": { "name": "Multiattack", "desc": "The troll makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "troll", + "parent": "troll", "uses_type": null, "uses_param": null } @@ -6497,8 +5956,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 33 (4d12 + 7) piercing damage. If the target is a Medium or smaller creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.\n", - "document": "srd", - "creature": "tyrannosaurus-rex", + "parent": "tyrannosaurus-rex", "uses_type": null, "uses_param": null } @@ -6509,8 +5967,7 @@ "fields": { "name": "Multiattack", "desc": "The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target.\n", - "document": "srd", - "creature": "tyrannosaurus-rex", + "parent": "tyrannosaurus-rex", "uses_type": null, "uses_param": null } @@ -6521,8 +5978,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", - "document": "srd", - "creature": "tyrannosaurus-rex", + "parent": "tyrannosaurus-rex", "uses_type": null, "uses_param": null } @@ -6533,8 +5989,7 @@ "fields": { "name": "Healing Touch", "desc": "The unicorn touches another creature with its horn. The target magically regains 11 (2d8 + 2) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target.\n", - "document": "srd", - "creature": "unicorn", + "parent": "unicorn", "uses_type": "PER_DAY", "uses_param": 3 } @@ -6545,8 +6000,7 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "document": "srd", - "creature": "unicorn", + "parent": "unicorn", "uses_type": null, "uses_param": null } @@ -6557,8 +6011,7 @@ "fields": { "name": "Horn", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "document": "srd", - "creature": "unicorn", + "parent": "unicorn", "uses_type": null, "uses_param": null } @@ -6569,8 +6022,7 @@ "fields": { "name": "Multiattack", "desc": "The unicorn makes two attacks: one with its hooves and one with its horn.\n", - "document": "srd", - "creature": "unicorn", + "parent": "unicorn", "uses_type": null, "uses_param": null } @@ -6581,8 +6033,7 @@ "fields": { "name": "Teleport", "desc": "The unicorn magically teleports itself and up to three willing creatures it can see within 5 feet of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away.\n", - "document": "srd", - "creature": "unicorn", + "parent": "unicorn", "uses_type": "PER_DAY", "uses_param": 1 } @@ -6593,8 +6044,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "document": "srd", - "creature": "vampire-spawn", + "parent": "vampire-spawn", "uses_type": null, "uses_param": null } @@ -6605,8 +6055,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 8 (2d4 + 3) slashing damage. Instead of dealing damage, the vampire can grapple the target (escape DC 13).\n", - "document": "srd", - "creature": "vampire-spawn", + "parent": "vampire-spawn", "uses_type": null, "uses_param": null } @@ -6617,8 +6066,7 @@ "fields": { "name": "Multiattack", "desc": "The vampire makes two attacks, only one of which can be a bite attack.\n", - "document": "srd", - "creature": "vampire-spawn", + "parent": "vampire-spawn", "uses_type": null, "uses_param": null } @@ -6629,8 +6077,7 @@ "fields": { "name": "Bite", "desc": "(Bat or Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 7 (1d6 + 4) piercing damage plus 10 (3d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a vampire spawn under the vampire's control.\n", - "document": "srd", - "creature": "vampire", + "parent": "vampire", "uses_type": null, "uses_param": null } @@ -6641,8 +6088,7 @@ "fields": { "name": "Charm", "desc": "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a DC 17 Wisdom saving throw against this magic or be charmed by the vampire. The charmed target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.\n\nEach time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect.\n", - "document": "srd", - "creature": "vampire", + "parent": "vampire", "uses_type": null, "uses_param": null } @@ -6653,8 +6099,7 @@ "fields": { "name": "Children of the Night", "desc": "The vampire magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the vampire can call 3d6 wolves instead. The called creatures arrive in 1d4 rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action.\n", - "document": "srd", - "creature": "vampire", + "parent": "vampire", "uses_type": "PER_DAY", "uses_param": 1 } @@ -6665,8 +6110,7 @@ "fields": { "name": "Multiattack", "desc": "(Vampire Form Only). The vampire makes two attacks, only one of which can be a bite attack.\n", - "document": "srd", - "creature": "vampire", + "parent": "vampire", "uses_type": null, "uses_param": null } @@ -6677,8 +6121,7 @@ "fields": { "name": "Unarmed Strike", "desc": "(Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one creature. Hit: 8 (1d8 + 4) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape DC 18).\n", - "document": "srd", - "creature": "vampire", + "parent": "vampire", "uses_type": null, "uses_param": null } @@ -6689,8 +6132,7 @@ "fields": { "name": "Multiattack", "desc": "The fungus makes 1d4 Rotting Touch attacks.\n", - "document": "srd", - "creature": "violet-fungus", + "parent": "violet-fungus", "uses_type": null, "uses_param": null } @@ -6701,8 +6143,7 @@ "fields": { "name": "Rotting Touch", "desc": "Melee Weapon Attack: +2 to hit, reach 10 ft., one creature. Hit: 4 (1d8) necrotic damage.\n", - "document": "srd", - "creature": "violet-fungus", + "parent": "violet-fungus", "uses_type": null, "uses_param": null } @@ -6713,8 +6154,7 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", - "document": "srd", - "creature": "vrock", + "parent": "vrock", "uses_type": null, "uses_param": null } @@ -6725,8 +6165,7 @@ "fields": { "name": "Multiattack", "desc": "The vrock makes two attacks: one with its beak and one with its talons.\n", - "document": "srd", - "creature": "vrock", + "parent": "vrock", "uses_type": null, "uses_param": null } @@ -6737,8 +6176,7 @@ "fields": { "name": "Spores", "desc": "A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.\n", - "document": "srd", - "creature": "vrock", + "parent": "vrock", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -6749,8 +6187,7 @@ "fields": { "name": "Stunning Screech", "desc": "The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must succeed on a DC 14 Constitution saving throw or be stunned until the end of the vrock's next turn.\n", - "document": "srd", - "creature": "vrock", + "parent": "vrock", "uses_type": "PER_DAY", "uses_param": 1 } @@ -6761,8 +6198,7 @@ "fields": { "name": "Talons", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", - "document": "srd", - "creature": "vrock", + "parent": "vrock", "uses_type": null, "uses_param": null } @@ -6773,8 +6209,7 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "document": "srd", - "creature": "warhorse-skeleton", + "parent": "warhorse-skeleton", "uses_type": null, "uses_param": null } @@ -6785,8 +6220,7 @@ "fields": { "name": "Multiattack", "desc": "The elemental makes two slam attacks.\n", - "document": "srd", - "creature": "water-elemental", + "parent": "water-elemental", "uses_type": null, "uses_param": null } @@ -6797,8 +6231,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "document": "srd", - "creature": "water-elemental", + "parent": "water-elemental", "uses_type": null, "uses_param": null } @@ -6809,8 +6242,7 @@ "fields": { "name": "Whelm", "desc": "Each creature in the elemental's space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the elemental's space.\n\nThe elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a DC 14 Strength and succeeding.\n", - "document": "srd", - "creature": "water-elemental", + "parent": "water-elemental", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 4 } @@ -6821,8 +6253,7 @@ "fields": { "name": "Bite", "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage. If the target is a humanoid, it must succeed on a DC 14 Constitution saving throw or be cursed with werebear lycanthropy.\n", - "document": "srd", - "creature": "werebear", + "parent": "werebear", "uses_type": null, "uses_param": null } @@ -6833,8 +6264,7 @@ "fields": { "name": "Claw", "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "document": "srd", - "creature": "werebear", + "parent": "werebear", "uses_type": null, "uses_param": null } @@ -6845,8 +6275,7 @@ "fields": { "name": "Greataxe", "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) slashing damage.\n", - "document": "srd", - "creature": "werebear", + "parent": "werebear", "uses_type": null, "uses_param": null } @@ -6857,8 +6286,7 @@ "fields": { "name": "Multiattack", "desc": "In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid.\n", - "document": "srd", - "creature": "werebear", + "parent": "werebear", "uses_type": null, "uses_param": null } @@ -6869,8 +6297,7 @@ "fields": { "name": "Maul", "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", - "document": "srd", - "creature": "wereboar", + "parent": "wereboar", "uses_type": null, "uses_param": null } @@ -6881,8 +6308,7 @@ "fields": { "name": "Multiattack", "desc": "(Humanoid or Hybrid Form Only). The wereboar makes two attacks, only one of which can be with its tusks.\n", - "document": "srd", - "creature": "wereboar", + "parent": "wereboar", "uses_type": null, "uses_param": null } @@ -6893,8 +6319,7 @@ "fields": { "name": "Tusks", "desc": "(Boar or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with wereboar lycanthropy.\n", - "document": "srd", - "creature": "wereboar", + "parent": "wereboar", "uses_type": null, "uses_param": null } @@ -6905,8 +6330,7 @@ "fields": { "name": "Bite", "desc": "(Rat or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 11 Constitution saving throw or be cursed with wererat lycanthropy.\n", - "document": "srd", - "creature": "wererat", + "parent": "wererat", "uses_type": null, "uses_param": null } @@ -6917,8 +6341,7 @@ "fields": { "name": "Hand Crossbow", "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", - "creature": "wererat", + "parent": "wererat", "uses_type": null, "uses_param": null } @@ -6929,8 +6352,7 @@ "fields": { "name": "Multiattack", "desc": "(Humanoid or Hybrid Form Only). The wererat makes two attacks, only one of which can be a bite.\n", - "document": "srd", - "creature": "wererat", + "parent": "wererat", "uses_type": null, "uses_param": null } @@ -6941,8 +6363,7 @@ "fields": { "name": "Shortsword", "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", - "creature": "wererat", + "parent": "wererat", "uses_type": null, "uses_param": null } @@ -6953,8 +6374,7 @@ "fields": { "name": "Bite", "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage. If the target is a humanoid, it must succeed on a DC 13 Constitution saving throw or be cursed with weretiger lycanthropy.\n", - "document": "srd", - "creature": "weretiger", + "parent": "weretiger", "uses_type": null, "uses_param": null } @@ -6965,8 +6385,7 @@ "fields": { "name": "Claw", "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.\n", - "document": "srd", - "creature": "weretiger", + "parent": "weretiger", "uses_type": null, "uses_param": null } @@ -6977,8 +6396,7 @@ "fields": { "name": "Longbow", "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "document": "srd", - "creature": "weretiger", + "parent": "weretiger", "uses_type": null, "uses_param": null } @@ -6989,8 +6407,7 @@ "fields": { "name": "Multiattack", "desc": "(Humanoid or Hybrid Form Only). In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks.\n", - "document": "srd", - "creature": "weretiger", + "parent": "weretiger", "uses_type": null, "uses_param": null } @@ -7001,8 +6418,7 @@ "fields": { "name": "Scimitar", "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "document": "srd", - "creature": "weretiger", + "parent": "weretiger", "uses_type": null, "uses_param": null } @@ -7013,8 +6429,7 @@ "fields": { "name": "Bite", "desc": "(Wolf or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with werewolf lycanthropy.\n", - "document": "srd", - "creature": "werewolf", + "parent": "werewolf", "uses_type": null, "uses_param": null } @@ -7025,8 +6440,7 @@ "fields": { "name": "Claws", "desc": "(Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 7 (2d4 + 2) slashing damage.\n", - "document": "srd", - "creature": "werewolf", + "parent": "werewolf", "uses_type": null, "uses_param": null } @@ -7037,8 +6451,7 @@ "fields": { "name": "Multiattack", "desc": "(Humanoid or Hybrid Form Only). The werewolf makes two attacks: one with its bite and one with its claws or spear.\n", - "document": "srd", - "creature": "werewolf", + "parent": "werewolf", "uses_type": null, "uses_param": null } @@ -7049,8 +6462,7 @@ "fields": { "name": "Spear", "desc": "(Humanoid Form Only). Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", - "document": "srd", - "creature": "werewolf", + "parent": "werewolf", "uses_type": null, "uses_param": null } @@ -7061,8 +6473,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage.\n", - "document": "srd", - "creature": "white-dragon-wyrmling", + "parent": "white-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -7073,8 +6484,7 @@ "fields": { "name": "Cold Breath", "desc": "The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a DC 12 Constitution saving throw, taking 22 (5d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "white-dragon-wyrmling", + "parent": "white-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7085,8 +6495,7 @@ "fields": { "name": "Life Drain", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 5 (1d6 + 2) necrotic damage. The target must succeed on a DC 13 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n\nA humanoid slain by this attack rises 24 hours later as a zombie under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time.\n", - "document": "srd", - "creature": "wight", + "parent": "wight", "uses_type": null, "uses_param": null } @@ -7097,8 +6506,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "document": "srd", - "creature": "wight", + "parent": "wight", "uses_type": null, "uses_param": null } @@ -7109,8 +6517,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage, or 7 (1d10 + 2) slashing damage if used with two hands.\n", - "document": "srd", - "creature": "wight", + "parent": "wight", "uses_type": null, "uses_param": null } @@ -7121,8 +6528,7 @@ "fields": { "name": "Multiattack", "desc": "The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack.\n", - "document": "srd", - "creature": "wight", + "parent": "wight", "uses_type": null, "uses_param": null } @@ -7133,8 +6539,7 @@ "fields": { "name": "Invisibility", "desc": "The will-o'-wisp and its light magically become invisible until it attacks or uses its Consume Life, or until its concentration ends (as if concentrating on a spell).\n", - "document": "srd", - "creature": "will-o-wisp", + "parent": "will-o-wisp", "uses_type": null, "uses_param": null } @@ -7145,8 +6550,7 @@ "fields": { "name": "Shock", "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d8) lightning damage.\n", - "document": "srd", - "creature": "will-o-wisp", + "parent": "will-o-wisp", "uses_type": null, "uses_param": null } @@ -7157,8 +6561,7 @@ "fields": { "name": "Create Specter", "desc": "The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the wraith's control. The wraith can have no more than seven specters under its control at one time.\n", - "document": "srd", - "creature": "wraith", + "parent": "wraith", "uses_type": null, "uses_param": null } @@ -7169,8 +6572,7 @@ "fields": { "name": "Life Drain", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 21 (4d8 + 3) necrotic damage. The target must succeed on a DC 14 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "document": "srd", - "creature": "wraith", + "parent": "wraith", "uses_type": null, "uses_param": null } @@ -7181,8 +6583,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\n", - "document": "srd", - "creature": "wyvern", + "parent": "wyvern", "uses_type": null, "uses_param": null } @@ -7193,8 +6594,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "document": "srd", - "creature": "wyvern", + "parent": "wyvern", "uses_type": null, "uses_param": null } @@ -7205,8 +6605,7 @@ "fields": { "name": "Multiattack", "desc": "The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack.\n", - "document": "srd", - "creature": "wyvern", + "parent": "wyvern", "uses_type": null, "uses_param": null } @@ -7217,8 +6616,7 @@ "fields": { "name": "Stinger", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage. The target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "wyvern", + "parent": "wyvern", "uses_type": null, "uses_param": null } @@ -7229,8 +6627,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (3d6 + 3) piercing damage.\n", - "document": "srd", - "creature": "xorn", + "parent": "xorn", "uses_type": null, "uses_param": null } @@ -7241,8 +6638,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "document": "srd", - "creature": "xorn", + "parent": "xorn", "uses_type": null, "uses_param": null } @@ -7253,8 +6649,7 @@ "fields": { "name": "Multiattack", "desc": "The xorn makes three claw attacks and one bite attack.\n", - "document": "srd", - "creature": "xorn", + "parent": "xorn", "uses_type": null, "uses_param": null } @@ -7265,8 +6660,7 @@ "fields": { "name": "Acid Breath", "desc": "The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "young-black-dragon", + "parent": "young-black-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7277,8 +6671,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.\n", - "document": "srd", - "creature": "young-black-dragon", + "parent": "young-black-dragon", "uses_type": null, "uses_param": null } @@ -7289,8 +6682,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", - "creature": "young-black-dragon", + "parent": "young-black-dragon", "uses_type": null, "uses_param": null } @@ -7301,8 +6693,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "young-black-dragon", + "parent": "young-black-dragon", "uses_type": null, "uses_param": null } @@ -7313,8 +6704,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.\n", - "document": "srd", - "creature": "young-blue-dragon", + "parent": "young-blue-dragon", "uses_type": null, "uses_param": null } @@ -7325,8 +6715,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", - "document": "srd", - "creature": "young-blue-dragon", + "parent": "young-blue-dragon", "uses_type": null, "uses_param": null } @@ -7337,8 +6726,7 @@ "fields": { "name": "Lightning Breath", "desc": "The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "young-blue-dragon", + "parent": "young-blue-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7349,8 +6737,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "young-blue-dragon", + "parent": "young-blue-dragon", "uses_type": null, "uses_param": null } @@ -7361,8 +6748,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "document": "srd", - "creature": "young-brass-dragon", + "parent": "young-brass-dragon", "uses_type": null, "uses_param": null } @@ -7373,8 +6759,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "document": "srd", - "creature": "young-brass-dragon", + "parent": "young-brass-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7385,8 +6770,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", - "creature": "young-brass-dragon", + "parent": "young-brass-dragon", "uses_type": null, "uses_param": null } @@ -7397,8 +6781,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "young-brass-dragon", + "parent": "young-brass-dragon", "uses_type": null, "uses_param": null } @@ -7409,8 +6792,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.\n", - "document": "srd", - "creature": "young-bronze-dragon", + "parent": "young-bronze-dragon", "uses_type": null, "uses_param": null } @@ -7421,8 +6803,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.\n", - "document": "srd", - "creature": "young-bronze-dragon", + "parent": "young-bronze-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7433,8 +6814,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", - "document": "srd", - "creature": "young-bronze-dragon", + "parent": "young-bronze-dragon", "uses_type": null, "uses_param": null } @@ -7445,8 +6825,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "young-bronze-dragon", + "parent": "young-bronze-dragon", "uses_type": null, "uses_param": null } @@ -7457,8 +6836,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "document": "srd", - "creature": "young-copper-dragon", + "parent": "young-copper-dragon", "uses_type": null, "uses_param": null } @@ -7469,8 +6847,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "document": "srd", - "creature": "young-copper-dragon", + "parent": "young-copper-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7481,8 +6858,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", - "creature": "young-copper-dragon", + "parent": "young-copper-dragon", "uses_type": null, "uses_param": null } @@ -7493,8 +6869,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "young-copper-dragon", + "parent": "young-copper-dragon", "uses_type": null, "uses_param": null } @@ -7505,8 +6880,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "document": "srd", - "creature": "young-gold-dragon", + "parent": "young-gold-dragon", "uses_type": null, "uses_param": null } @@ -7517,8 +6891,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "young-gold-dragon", + "parent": "young-gold-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7529,8 +6902,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", - "creature": "young-gold-dragon", + "parent": "young-gold-dragon", "uses_type": null, "uses_param": null } @@ -7541,8 +6913,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "young-gold-dragon", + "parent": "young-gold-dragon", "uses_type": null, "uses_param": null } @@ -7553,8 +6924,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.\n", - "document": "srd", - "creature": "young-green-dragon", + "parent": "young-green-dragon", "uses_type": null, "uses_param": null } @@ -7565,8 +6935,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", - "creature": "young-green-dragon", + "parent": "young-green-dragon", "uses_type": null, "uses_param": null } @@ -7577,8 +6946,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "young-green-dragon", + "parent": "young-green-dragon", "uses_type": null, "uses_param": null } @@ -7589,8 +6957,7 @@ "fields": { "name": "Poison Breath", "desc": "The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "young-green-dragon", + "parent": "young-green-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7601,8 +6968,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.\n", - "document": "srd", - "creature": "young-red-dragon", + "parent": "young-red-dragon", "uses_type": null, "uses_param": null } @@ -7613,8 +6979,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", - "creature": "young-red-dragon", + "parent": "young-red-dragon", "uses_type": null, "uses_param": null } @@ -7625,8 +6990,7 @@ "fields": { "name": "Fire Breath", "desc": "The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "young-red-dragon", + "parent": "young-red-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7637,8 +7001,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "young-red-dragon", + "parent": "young-red-dragon", "uses_type": null, "uses_param": null } @@ -7649,8 +7012,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "document": "srd", - "creature": "young-silver-dragon", + "parent": "young-silver-dragon", "uses_type": null, "uses_param": null } @@ -7661,8 +7023,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", - "creature": "young-silver-dragon", + "parent": "young-silver-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7673,8 +7034,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", - "creature": "young-silver-dragon", + "parent": "young-silver-dragon", "uses_type": null, "uses_param": null } @@ -7685,8 +7045,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "young-silver-dragon", + "parent": "young-silver-dragon", "uses_type": null, "uses_param": null } @@ -7697,8 +7056,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.\n", - "document": "srd", - "creature": "young-white-dragon", + "parent": "young-white-dragon", "uses_type": null, "uses_param": null } @@ -7709,8 +7067,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", - "creature": "young-white-dragon", + "parent": "young-white-dragon", "uses_type": null, "uses_param": null } @@ -7721,8 +7078,7 @@ "fields": { "name": "Cold Breath", "desc": "The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", - "creature": "young-white-dragon", + "parent": "young-white-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7733,8 +7089,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", - "creature": "young-white-dragon", + "parent": "young-white-dragon", "uses_type": null, "uses_param": null } @@ -7745,8 +7100,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.\n", - "document": "srd", - "creature": "zombie", + "parent": "zombie", "uses_type": null, "uses_param": null } diff --git a/data/v2/wizards-of-the-coast/srd/CreatureAttack.json b/data/v2/wizards-of-the-coast/srd/CreatureAttack.json index 41683a7c..ca787a1a 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureAttack.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureAttack.json @@ -5,7 +5,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "aboleth_tail", + "parent": "aboleth_tail", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -28,7 +28,7 @@ "fields": { "name": "Tentacle attack", "document": "srd", - "creature_action": "aboleth_tentacle", + "parent": "aboleth_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -51,7 +51,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "adult-black-dragon_bite", + "parent": "adult-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -74,7 +74,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "adult-black-dragon_claw", + "parent": "adult-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 5, @@ -97,7 +97,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "adult-black-dragon_tail", + "parent": "adult-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 15, @@ -120,7 +120,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "adult-blue-dragon_bite", + "parent": "adult-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 10, @@ -143,7 +143,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "adult-blue-dragon_claw", + "parent": "adult-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 5, @@ -166,7 +166,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "adult-blue-dragon_tail", + "parent": "adult-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 15, @@ -189,7 +189,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "adult-brass-dragon_bite", + "parent": "adult-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -212,7 +212,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "adult-brass-dragon_claw", + "parent": "adult-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 5, @@ -235,7 +235,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "adult-brass-dragon_tail", + "parent": "adult-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 15, @@ -258,7 +258,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "adult-bronze-dragon_bite", + "parent": "adult-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 10, @@ -281,7 +281,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "adult-bronze-dragon_claw", + "parent": "adult-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 5, @@ -304,7 +304,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "adult-bronze-dragon_tail", + "parent": "adult-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 15, @@ -327,7 +327,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "adult-copper-dragon_bite", + "parent": "adult-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -350,7 +350,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "adult-copper-dragon_claw", + "parent": "adult-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 5, @@ -373,7 +373,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "adult-copper-dragon_tail", + "parent": "adult-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 15, @@ -396,7 +396,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "adult-gold-dragon_bite", + "parent": "adult-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -419,7 +419,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "adult-gold-dragon_claw", + "parent": "adult-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 5, @@ -442,7 +442,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "adult-gold-dragon_tail", + "parent": "adult-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 15, @@ -465,7 +465,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "adult-green-dragon_bite", + "parent": "adult-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -488,7 +488,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "adult-green-dragon_claw", + "parent": "adult-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 5, @@ -511,7 +511,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "adult-green-dragon_tail", + "parent": "adult-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 15, @@ -534,7 +534,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "adult-red-dragon_bite", + "parent": "adult-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -557,7 +557,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "adult-red-dragon_claw", + "parent": "adult-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 5, @@ -580,7 +580,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "adult-red-dragon_tail", + "parent": "adult-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 15, @@ -603,7 +603,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "adult-silver-dragon_bite", + "parent": "adult-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 10, @@ -626,7 +626,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "adult-silver-dragon_claw", + "parent": "adult-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 5, @@ -649,7 +649,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "adult-silver-dragon_tail", + "parent": "adult-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 15, @@ -672,7 +672,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "adult-white-dragon_bite", + "parent": "adult-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -695,7 +695,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "adult-white-dragon_claw", + "parent": "adult-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 5, @@ -718,7 +718,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "adult-white-dragon_tail", + "parent": "adult-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 15, @@ -741,7 +741,7 @@ "fields": { "name": "Slam attack", "document": "srd", - "creature_action": "air-elemental_slam", + "parent": "air-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -764,7 +764,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ancient-black-dragon_bite", + "parent": "ancient-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 15, @@ -787,7 +787,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "ancient-black-dragon_claw", + "parent": "ancient-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 10, @@ -810,7 +810,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "ancient-black-dragon_tail", + "parent": "ancient-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 20, @@ -833,7 +833,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ancient-blue-dragon_bite", + "parent": "ancient-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, "reach_ft": 15, @@ -856,7 +856,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "ancient-blue-dragon_claw", + "parent": "ancient-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, "reach_ft": 10, @@ -879,7 +879,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "ancient-blue-dragon_tail", + "parent": "ancient-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, "reach_ft": 20, @@ -902,7 +902,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ancient-brass-dragon_bite", + "parent": "ancient-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 15, @@ -925,7 +925,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "ancient-brass-dragon_claw", + "parent": "ancient-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -948,7 +948,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "ancient-brass-dragon_tail", + "parent": "ancient-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 20, @@ -971,7 +971,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ancient-bronze-dragon_bite", + "parent": "ancient-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, "reach_ft": 15, @@ -994,7 +994,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "ancient-bronze-dragon_claw", + "parent": "ancient-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, "reach_ft": 10, @@ -1017,7 +1017,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "ancient-bronze-dragon_tail", + "parent": "ancient-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, "reach_ft": 20, @@ -1040,7 +1040,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ancient-copper-dragon_bite", + "parent": "ancient-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 15, @@ -1063,7 +1063,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "ancient-copper-dragon_claw", + "parent": "ancient-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 10, @@ -1086,7 +1086,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "ancient-copper-dragon_tail", + "parent": "ancient-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 20, @@ -1109,7 +1109,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ancient-gold-dragon_bite", + "parent": "ancient-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 15, @@ -1132,7 +1132,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "ancient-gold-dragon_claw", + "parent": "ancient-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 10, @@ -1155,7 +1155,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "ancient-gold-dragon_tail", + "parent": "ancient-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 20, @@ -1178,7 +1178,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ancient-green-dragon_bite", + "parent": "ancient-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 15, @@ -1201,7 +1201,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "ancient-green-dragon_claw", + "parent": "ancient-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 10, @@ -1224,7 +1224,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "ancient-green-dragon_tail", + "parent": "ancient-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 20, @@ -1247,7 +1247,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ancient-red-dragon_bite", + "parent": "ancient-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 15, @@ -1270,7 +1270,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "ancient-red-dragon_claw", + "parent": "ancient-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 10, @@ -1293,7 +1293,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "ancient-red-dragon_tail", + "parent": "ancient-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 20, @@ -1316,7 +1316,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ancient-silver-dragon_bite", + "parent": "ancient-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 15, @@ -1339,7 +1339,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "ancient-silver-dragon_claw", + "parent": "ancient-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 10, @@ -1362,7 +1362,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "ancient-silver-dragon_tail", + "parent": "ancient-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 20, @@ -1385,7 +1385,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ancient-white-dragon_bite", + "parent": "ancient-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 15, @@ -1408,7 +1408,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "ancient-white-dragon_claw", + "parent": "ancient-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -1431,7 +1431,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "ancient-white-dragon_tail", + "parent": "ancient-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 20, @@ -1454,7 +1454,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "androsphinx_claw", + "parent": "androsphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 5, @@ -1477,7 +1477,7 @@ "fields": { "name": "Slam attack", "document": "srd", - "creature_action": "animated-armor_slam", + "parent": "animated-armor_slam", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -1500,7 +1500,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ankheg_bite", + "parent": "ankheg_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1523,7 +1523,7 @@ "fields": { "name": "Warhammer attack", "document": "srd", - "creature_action": "azer_warhammer", + "parent": "azer_warhammer", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1546,7 +1546,7 @@ "fields": { "name": "Warhammer attack (if used with two hands)", "document": "srd", - "creature_action": "azer_warhammer", + "parent": "azer_warhammer", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1569,7 +1569,7 @@ "fields": { "name": "Longsword attack", "document": "srd", - "creature_action": "balor_longsword", + "parent": "balor_longsword", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -1592,7 +1592,7 @@ "fields": { "name": "Whip attack", "document": "srd", - "creature_action": "balor_whip", + "parent": "balor_whip", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 30, @@ -1615,7 +1615,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "barbed-devil_claw", + "parent": "barbed-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -1638,7 +1638,7 @@ "fields": { "name": "Hurl Flame attack", "document": "srd", - "creature_action": "barbed-devil_hurl-flame", + "parent": "barbed-devil_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, @@ -1661,7 +1661,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "barbed-devil_tail", + "parent": "barbed-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -1684,7 +1684,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "basilisk_bite", + "parent": "basilisk_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1707,7 +1707,7 @@ "fields": { "name": "Beard attack", "document": "srd", - "creature_action": "bearded-devil_beard", + "parent": "bearded-devil_beard", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1730,7 +1730,7 @@ "fields": { "name": "Glaive attack", "document": "srd", - "creature_action": "bearded-devil_glaive", + "parent": "bearded-devil_glaive", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 10, @@ -1753,7 +1753,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "behir_bite", + "parent": "behir_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -1776,7 +1776,7 @@ "fields": { "name": "Constrict attack", "document": "srd", - "creature_action": "behir_constrict", + "parent": "behir_constrict", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -1799,7 +1799,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "black-dragon-wyrmling_bite", + "parent": "black-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -1822,7 +1822,7 @@ "fields": { "name": "Pseudopod attack", "document": "srd", - "creature_action": "black-pudding_pseudopod", + "parent": "black-pudding_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1845,7 +1845,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "blue-dragon-wyrmling_bite", + "parent": "blue-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1868,7 +1868,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "bone-devil_claw", + "parent": "bone-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -1891,7 +1891,7 @@ "fields": { "name": "Sting attack", "document": "srd", - "creature_action": "bone-devil_sting", + "parent": "bone-devil_sting", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -1914,7 +1914,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "brass-dragon-wyrmling_bite", + "parent": "brass-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -1937,7 +1937,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "bronze-dragon-wyrmling_bite", + "parent": "bronze-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1960,7 +1960,7 @@ "fields": { "name": "Javelin attack (at range)", "document": "srd", - "creature_action": "bugbear_javelin", + "parent": "bugbear_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -1983,7 +1983,7 @@ "fields": { "name": "Javelin attack (in melee)", "document": "srd", - "creature_action": "bugbear_javelin", + "parent": "bugbear_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2006,7 +2006,7 @@ "fields": { "name": "Morningstar attack", "document": "srd", - "creature_action": "bugbear_morningstar", + "parent": "bugbear_morningstar", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2029,7 +2029,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "bulette_bite", + "parent": "bulette_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -2052,7 +2052,7 @@ "fields": { "name": "Hooves attack", "document": "srd", - "creature_action": "centaur_hooves", + "parent": "centaur_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -2075,7 +2075,7 @@ "fields": { "name": "Longbow attack", "document": "srd", - "creature_action": "centaur_longbow", + "parent": "centaur_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -2098,7 +2098,7 @@ "fields": { "name": "Pike attack", "document": "srd", - "creature_action": "centaur_pike", + "parent": "centaur_pike", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 10, @@ -2121,7 +2121,7 @@ "fields": { "name": "Chain attack", "document": "srd", - "creature_action": "chain-devil_chain", + "parent": "chain-devil_chain", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -2144,7 +2144,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "chimera_bite", + "parent": "chimera_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -2167,7 +2167,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "chimera_claws", + "parent": "chimera_claws", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -2190,7 +2190,7 @@ "fields": { "name": "Horns attack", "document": "srd", - "creature_action": "chimera_horns", + "parent": "chimera_horns", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -2213,7 +2213,7 @@ "fields": { "name": "Pincer attack", "document": "srd", - "creature_action": "chuul_pincer", + "parent": "chuul_pincer", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 10, @@ -2236,7 +2236,7 @@ "fields": { "name": "Slam attack", "document": "srd", - "creature_action": "clay-golem_slam", + "parent": "clay-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -2259,7 +2259,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "cloaker_bite", + "parent": "cloaker_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -2282,7 +2282,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "cloaker_tail", + "parent": "cloaker_tail", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 10, @@ -2305,7 +2305,7 @@ "fields": { "name": "Morningstar attack", "document": "srd", - "creature_action": "cloud-giant_morningstar", + "parent": "cloud-giant_morningstar", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 10, @@ -2328,7 +2328,7 @@ "fields": { "name": "Rock attack", "document": "srd", - "creature_action": "cloud-giant_rock", + "parent": "cloud-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": null, @@ -2351,7 +2351,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "cockatrice_bite", + "parent": "cockatrice_bite", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -2374,7 +2374,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "copper-dragon-wyrmling_bite", + "parent": "copper-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2397,7 +2397,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "couatl_bite", + "parent": "couatl_bite", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -2420,7 +2420,7 @@ "fields": { "name": "Constrict attack", "document": "srd", - "creature_action": "couatl_constrict", + "parent": "couatl_constrict", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 10, @@ -2443,7 +2443,7 @@ "fields": { "name": "Crush attack", "document": "srd", - "creature_action": "darkmantle_crush", + "parent": "darkmantle_crush", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -2466,7 +2466,7 @@ "fields": { "name": "Mace attack", "document": "srd", - "creature_action": "deva_mace", + "parent": "deva_mace", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -2489,7 +2489,7 @@ "fields": { "name": "Scimitar attack (lightning damage)", "document": "srd", - "creature_action": "djinni_scimitar", + "parent": "djinni_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -2512,7 +2512,7 @@ "fields": { "name": "Scimitar attack (thunder damage)", "document": "srd", - "creature_action": "djinni_scimitar", + "parent": "djinni_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -2535,7 +2535,7 @@ "fields": { "name": "Slam attack", "document": "srd", - "creature_action": "doppelganger_slam", + "parent": "doppelganger_slam", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -2558,7 +2558,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "dragon-turtle_bite", + "parent": "dragon-turtle_bite", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 15, @@ -2581,7 +2581,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "dragon-turtle_claw", + "parent": "dragon-turtle_claw", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 10, @@ -2604,7 +2604,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "dragon-turtle_tail", + "parent": "dragon-turtle_tail", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 15, @@ -2627,7 +2627,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "dretch_bite", + "parent": "dretch_bite", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -2650,7 +2650,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "dretch_claws", + "parent": "dretch_claws", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -2673,7 +2673,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "drider_bite", + "parent": "drider_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -2696,7 +2696,7 @@ "fields": { "name": "Longbow attack", "document": "srd", - "creature_action": "drider_longbow", + "parent": "drider_longbow", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, @@ -2719,7 +2719,7 @@ "fields": { "name": "Longsword attack", "document": "srd", - "creature_action": "drider_longsword", + "parent": "drider_longsword", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -2742,7 +2742,7 @@ "fields": { "name": "Longsword attack (if used with two hands)", "document": "srd", - "creature_action": "drider_longsword", + "parent": "drider_longsword", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -2765,7 +2765,7 @@ "fields": { "name": "Club attack", "document": "srd", - "creature_action": "dryad_club", + "parent": "dryad_club", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -2788,7 +2788,7 @@ "fields": { "name": "Club attack (with shillelagh)", "document": "srd", - "creature_action": "dryad_club", + "parent": "dryad_club", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -2811,7 +2811,7 @@ "fields": { "name": "Javelin attack", "document": "srd", - "creature_action": "duergar_javelin", + "parent": "duergar_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2834,7 +2834,7 @@ "fields": { "name": "Javelin attack (while enlarged)", "document": "srd", - "creature_action": "duergar_javelin", + "parent": "duergar_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2857,7 +2857,7 @@ "fields": { "name": "War Pick attack", "document": "srd", - "creature_action": "duergar_war-pick", + "parent": "duergar_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2880,7 +2880,7 @@ "fields": { "name": "War Pick attack (while enlarged)", "document": "srd", - "creature_action": "duergar_war-pick", + "parent": "duergar_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2903,7 +2903,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "dust-mephit_claws", + "parent": "dust-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2926,7 +2926,7 @@ "fields": { "name": "Slam attack", "document": "srd", - "creature_action": "earth-elemental_slam", + "parent": "earth-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -2949,7 +2949,7 @@ "fields": { "name": "Hurl Flame attack", "document": "srd", - "creature_action": "efreeti_hurl-flame", + "parent": "efreeti_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, @@ -2972,7 +2972,7 @@ "fields": { "name": "Scimitar attack", "document": "srd", - "creature_action": "efreeti_scimitar", + "parent": "efreeti_scimitar", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -2995,7 +2995,7 @@ "fields": { "name": "Hand Crossbow attack", "document": "srd", - "creature_action": "elf-drow_hand-crossbow", + "parent": "elf-drow_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -3018,7 +3018,7 @@ "fields": { "name": "Shortsword attack", "document": "srd", - "creature_action": "elf-drow_shortsword", + "parent": "elf-drow_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3041,7 +3041,7 @@ "fields": { "name": "Longbow attack", "document": "srd", - "creature_action": "erinyes_longbow", + "parent": "erinyes_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, @@ -3064,7 +3064,7 @@ "fields": { "name": "Longsword attack", "document": "srd", - "creature_action": "erinyes_longsword", + "parent": "erinyes_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -3087,7 +3087,7 @@ "fields": { "name": "Longsword attack (if used with two hands)", "document": "srd", - "creature_action": "erinyes_longsword", + "parent": "erinyes_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -3110,7 +3110,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ettercap_bite", + "parent": "ettercap_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3133,7 +3133,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "ettercap_claws", + "parent": "ettercap_claws", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3156,7 +3156,7 @@ "fields": { "name": "Web attack", "document": "srd", - "creature_action": "ettercap_web", + "parent": "ettercap_web", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -3179,7 +3179,7 @@ "fields": { "name": "Battleaxe attack", "document": "srd", - "creature_action": "ettin_battleaxe", + "parent": "ettin_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -3202,7 +3202,7 @@ "fields": { "name": "Morningstar attack", "document": "srd", - "creature_action": "ettin_morningstar", + "parent": "ettin_morningstar", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -3225,7 +3225,7 @@ "fields": { "name": "Touch attack", "document": "srd", - "creature_action": "fire-elemental_touch", + "parent": "fire-elemental_touch", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -3248,7 +3248,7 @@ "fields": { "name": "Greatsword attack", "document": "srd", - "creature_action": "fire-giant_greatsword", + "parent": "fire-giant_greatsword", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -3271,7 +3271,7 @@ "fields": { "name": "Rock attack", "document": "srd", - "creature_action": "fire-giant_rock", + "parent": "fire-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": null, @@ -3294,7 +3294,7 @@ "fields": { "name": "Slam attack", "document": "srd", - "creature_action": "flesh-golem_slam", + "parent": "flesh-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -3317,7 +3317,7 @@ "fields": { "name": "Longsword attack", "document": "srd", - "creature_action": "flying-sword_longsword", + "parent": "flying-sword_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -3340,7 +3340,7 @@ "fields": { "name": "Greataxe attack", "document": "srd", - "creature_action": "frost-giant_greataxe", + "parent": "frost-giant_greataxe", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -3363,7 +3363,7 @@ "fields": { "name": "Rock attack", "document": "srd", - "creature_action": "frost-giant_rock", + "parent": "frost-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, @@ -3386,7 +3386,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "gargoyle_bite", + "parent": "gargoyle_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3409,7 +3409,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "gargoyle_claws", + "parent": "gargoyle_claws", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3432,7 +3432,7 @@ "fields": { "name": "Pseudopod attack", "document": "srd", - "creature_action": "gelatinous-cube_pseudopod", + "parent": "gelatinous-cube_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3455,7 +3455,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ghast_bite", + "parent": "ghast_bite", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -3478,7 +3478,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "ghast_claws", + "parent": "ghast_claws", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -3501,7 +3501,7 @@ "fields": { "name": "Withering Touch attack", "document": "srd", - "creature_action": "ghost_withering-touch", + "parent": "ghost_withering-touch", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -3524,7 +3524,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ghoul_bite", + "parent": "ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -3547,7 +3547,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "ghoul_claws", + "parent": "ghoul_claws", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3570,7 +3570,7 @@ "fields": { "name": "Bites attack", "document": "srd", - "creature_action": "gibbering-mouther_bites", + "parent": "gibbering-mouther_bites", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -3593,7 +3593,7 @@ "fields": { "name": "Fist attack", "document": "srd", - "creature_action": "glabrezu_fist", + "parent": "glabrezu_fist", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -3616,7 +3616,7 @@ "fields": { "name": "Pincer attack", "document": "srd", - "creature_action": "glabrezu_pincer", + "parent": "glabrezu_pincer", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -3639,7 +3639,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "gnoll_bite", + "parent": "gnoll_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3662,7 +3662,7 @@ "fields": { "name": "Longbow attack", "document": "srd", - "creature_action": "gnoll_longbow", + "parent": "gnoll_longbow", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, @@ -3685,7 +3685,7 @@ "fields": { "name": "Spear attack", "document": "srd", - "creature_action": "gnoll_spear", + "parent": "gnoll_spear", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3708,7 +3708,7 @@ "fields": { "name": "Spear attack (if used with two hands)", "document": "srd", - "creature_action": "gnoll_spear", + "parent": "gnoll_spear", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3731,7 +3731,7 @@ "fields": { "name": "Poisoned Dart attack", "document": "srd", - "creature_action": "gnome-deep-svirfneblin_poisoned-dart", + "parent": "gnome-deep-svirfneblin_poisoned-dart", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -3754,7 +3754,7 @@ "fields": { "name": "War Pick attack", "document": "srd", - "creature_action": "gnome-deep-svirfneblin_war-pick", + "parent": "gnome-deep-svirfneblin_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3777,7 +3777,7 @@ "fields": { "name": "Scimitar attack", "document": "srd", - "creature_action": "goblin_scimitar", + "parent": "goblin_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3800,7 +3800,7 @@ "fields": { "name": "Shortbow attack", "document": "srd", - "creature_action": "goblin_shortbow", + "parent": "goblin_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -3823,7 +3823,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "gold-dragon-wyrmling_bite", + "parent": "gold-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -3846,7 +3846,7 @@ "fields": { "name": "Gore attack", "document": "srd", - "creature_action": "gorgon_gore", + "parent": "gorgon_gore", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -3869,7 +3869,7 @@ "fields": { "name": "Hooves attack", "document": "srd", - "creature_action": "gorgon_hooves", + "parent": "gorgon_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -3892,7 +3892,7 @@ "fields": { "name": "Pseudopod attack", "document": "srd", - "creature_action": "gray-ooze_pseudopod", + "parent": "gray-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -3915,7 +3915,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "green-dragon-wyrmling_bite", + "parent": "green-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3938,7 +3938,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "green-hag_claws", + "parent": "green-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -3961,7 +3961,7 @@ "fields": { "name": "Beak attack", "document": "srd", - "creature_action": "grick_beak", + "parent": "grick_beak", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3984,7 +3984,7 @@ "fields": { "name": "Tentacles attack", "document": "srd", - "creature_action": "grick_tentacles", + "parent": "grick_tentacles", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -4007,7 +4007,7 @@ "fields": { "name": "Beak attack", "document": "srd", - "creature_action": "griffon_beak", + "parent": "griffon_beak", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -4030,7 +4030,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "griffon_claws", + "parent": "griffon_claws", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -4053,7 +4053,7 @@ "fields": { "name": "Spiked Bone Club attack", "document": "srd", - "creature_action": "grimlock_spiked-bone-club", + "parent": "grimlock_spiked-bone-club", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4076,7 +4076,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "guardian-naga_bite", + "parent": "guardian-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -4099,7 +4099,7 @@ "fields": { "name": "Spit Poison attack", "document": "srd", - "creature_action": "guardian-naga_spit-poison", + "parent": "guardian-naga_spit-poison", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, @@ -4122,7 +4122,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "gynosphinx_claw", + "parent": "gynosphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -4145,7 +4145,7 @@ "fields": { "name": "Heavy Crossbow attack", "document": "srd", - "creature_action": "half-red-dragon-veteran_heavy-crossbow", + "parent": "half-red-dragon-veteran_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, @@ -4168,7 +4168,7 @@ "fields": { "name": "Longsword attack", "document": "srd", - "creature_action": "half-red-dragon-veteran_longsword", + "parent": "half-red-dragon-veteran_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4191,7 +4191,7 @@ "fields": { "name": "Longsword attack (if used with two hands)", "document": "srd", - "creature_action": "half-red-dragon-veteran_longsword", + "parent": "half-red-dragon-veteran_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4214,7 +4214,7 @@ "fields": { "name": "Shortsword attack", "document": "srd", - "creature_action": "half-red-dragon-veteran_shortsword", + "parent": "half-red-dragon-veteran_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4237,7 +4237,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "harpy_claws", + "parent": "harpy_claws", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -4260,7 +4260,7 @@ "fields": { "name": "Club attack", "document": "srd", - "creature_action": "harpy_club", + "parent": "harpy_club", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -4283,7 +4283,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "hell-hound_bite", + "parent": "hell-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4306,7 +4306,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "hezrou_bite", + "parent": "hezrou_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -4329,7 +4329,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "hezrou_claw", + "parent": "hezrou_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -4352,7 +4352,7 @@ "fields": { "name": "Greatclub attack", "document": "srd", - "creature_action": "hill-giant_greatclub", + "parent": "hill-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -4375,7 +4375,7 @@ "fields": { "name": "Rock attack", "document": "srd", - "creature_action": "hill-giant_rock", + "parent": "hill-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, @@ -4398,7 +4398,7 @@ "fields": { "name": "Beak attack", "document": "srd", - "creature_action": "hippogriff_beak", + "parent": "hippogriff_beak", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4421,7 +4421,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "hippogriff_claws", + "parent": "hippogriff_claws", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4444,7 +4444,7 @@ "fields": { "name": "Longbow attack", "document": "srd", - "creature_action": "hobgoblin_longbow", + "parent": "hobgoblin_longbow", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, @@ -4467,7 +4467,7 @@ "fields": { "name": "Longsword attack", "document": "srd", - "creature_action": "hobgoblin_longsword", + "parent": "hobgoblin_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -4490,7 +4490,7 @@ "fields": { "name": "Longsword attack (if used with two hands)", "document": "srd", - "creature_action": "hobgoblin_longsword", + "parent": "hobgoblin_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -4513,7 +4513,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "homunculus_bite", + "parent": "homunculus_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -4536,7 +4536,7 @@ "fields": { "name": "Fork attack", "document": "srd", - "creature_action": "horned-devil_fork", + "parent": "horned-devil_fork", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -4559,7 +4559,7 @@ "fields": { "name": "Hurl Flame attack", "document": "srd", - "creature_action": "horned-devil_hurl-flame", + "parent": "horned-devil_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, @@ -4582,7 +4582,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "horned-devil_tail", + "parent": "horned-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -4605,7 +4605,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "hydra_bite", + "parent": "hydra_bite", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -4628,7 +4628,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "ice-devil_bite", + "parent": "ice-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -4651,7 +4651,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "ice-devil_claws", + "parent": "ice-devil_claws", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -4674,7 +4674,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "ice-devil_tail", + "parent": "ice-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -4697,7 +4697,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "ice-mephit_claws", + "parent": "ice-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -4720,7 +4720,7 @@ "fields": { "name": "Sting/Bite attack", "document": "srd", - "creature_action": "imp_sting-bite-in-beast-form", + "parent": "imp_sting-bite-in-beast-form", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4743,7 +4743,7 @@ "fields": { "name": "Slam attack", "document": "srd", - "creature_action": "invisible-stalker_slam", + "parent": "invisible-stalker_slam", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -4766,7 +4766,7 @@ "fields": { "name": "Slam attack", "document": "srd", - "creature_action": "iron-golem_slam", + "parent": "iron-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 5, @@ -4789,7 +4789,7 @@ "fields": { "name": "Sword attack", "document": "srd", - "creature_action": "iron-golem_sword", + "parent": "iron-golem_sword", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 10, @@ -4812,7 +4812,7 @@ "fields": { "name": "Dagger attack", "document": "srd", - "creature_action": "kobold_dagger", + "parent": "kobold_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -4835,7 +4835,7 @@ "fields": { "name": "Sling attack", "document": "srd", - "creature_action": "kobold_sling", + "parent": "kobold_sling", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -4858,7 +4858,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "kraken_bite", + "parent": "kraken_bite", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 5, @@ -4881,7 +4881,7 @@ "fields": { "name": "Tentacle attack", "document": "srd", - "creature_action": "kraken_tentacle", + "parent": "kraken_tentacle", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 30, @@ -4904,7 +4904,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "lamia_claws", + "parent": "lamia_claws", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4927,7 +4927,7 @@ "fields": { "name": "Dagger attack", "document": "srd", - "creature_action": "lamia_dagger", + "parent": "lamia_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4950,7 +4950,7 @@ "fields": { "name": "Intoxicating Touch attack", "document": "srd", - "creature_action": "lamia_intoxicating-touch", + "parent": "lamia_intoxicating-touch", "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": 5, @@ -4973,7 +4973,7 @@ "fields": { "name": "Fist attack", "document": "srd", - "creature_action": "lemure_fist", + "parent": "lemure_fist", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -4996,7 +4996,7 @@ "fields": { "name": "Paralyzing Touch attack", "document": "srd", - "creature_action": "lich_paralyzing-touch", + "parent": "lich_paralyzing-touch", "attack_type": "SPELL", "to_hit_mod": 12, "reach_ft": 5, @@ -5019,7 +5019,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "lizardfolk_bite", + "parent": "lizardfolk_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -5042,7 +5042,7 @@ "fields": { "name": "Heavy Club attack", "document": "srd", - "creature_action": "lizardfolk_heavy-club", + "parent": "lizardfolk_heavy-club", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -5065,7 +5065,7 @@ "fields": { "name": "Javelin attack", "document": "srd", - "creature_action": "lizardfolk_javelin", + "parent": "lizardfolk_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -5088,7 +5088,7 @@ "fields": { "name": "Spiked Shield attack", "document": "srd", - "creature_action": "lizardfolk_spiked-shield", + "parent": "lizardfolk_spiked-shield", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -5111,7 +5111,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "magma-mephit_claws", + "parent": "magma-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -5134,7 +5134,7 @@ "fields": { "name": "Touch attack", "document": "srd", - "creature_action": "magmin_touch", + "parent": "magmin_touch", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -5157,7 +5157,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "manticore_bite", + "parent": "manticore_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5180,7 +5180,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "manticore_claw", + "parent": "manticore_claw", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5203,7 +5203,7 @@ "fields": { "name": "Tail Spike attack", "document": "srd", - "creature_action": "manticore_tail-spike", + "parent": "manticore_tail-spike", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, @@ -5226,7 +5226,7 @@ "fields": { "name": "Longsword attack", "document": "srd", - "creature_action": "marilith_longsword", + "parent": "marilith_longsword", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -5249,7 +5249,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "marilith_tail", + "parent": "marilith_tail", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -5272,7 +5272,7 @@ "fields": { "name": "Longbow attack", "document": "srd", - "creature_action": "medusa_longbow", + "parent": "medusa_longbow", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, @@ -5295,7 +5295,7 @@ "fields": { "name": "Shortsword attack", "document": "srd", - "creature_action": "medusa_shortsword", + "parent": "medusa_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5318,7 +5318,7 @@ "fields": { "name": "Snake Hair attack", "document": "srd", - "creature_action": "medusa_snake-hair", + "parent": "medusa_snake-hair", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5341,7 +5341,7 @@ "fields": { "name": "Spear attack", "document": "srd", - "creature_action": "merfolk_spear", + "parent": "merfolk_spear", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -5364,7 +5364,7 @@ "fields": { "name": "Spear attack (if used with two hands)", "document": "srd", - "creature_action": "merfolk_spear", + "parent": "merfolk_spear", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -5387,7 +5387,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "merrow_bite", + "parent": "merrow_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5410,7 +5410,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "merrow_claws", + "parent": "merrow_claws", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5433,7 +5433,7 @@ "fields": { "name": "Harpoon attack", "document": "srd", - "creature_action": "merrow_harpoon", + "parent": "merrow_harpoon", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5456,7 +5456,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "mimic_bite", + "parent": "mimic_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5479,7 +5479,7 @@ "fields": { "name": "Pseudopod attack", "document": "srd", - "creature_action": "mimic_pseudopod", + "parent": "mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5502,7 +5502,7 @@ "fields": { "name": "Gore attack", "document": "srd", - "creature_action": "minotaur-skeleton_gore", + "parent": "minotaur-skeleton_gore", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5525,7 +5525,7 @@ "fields": { "name": "Greataxe attack", "document": "srd", - "creature_action": "minotaur-skeleton_greataxe", + "parent": "minotaur-skeleton_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5548,7 +5548,7 @@ "fields": { "name": "Gore attack", "document": "srd", - "creature_action": "minotaur_gore", + "parent": "minotaur_gore", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5571,7 +5571,7 @@ "fields": { "name": "Greataxe attack", "document": "srd", - "creature_action": "minotaur_greataxe", + "parent": "minotaur_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5594,7 +5594,7 @@ "fields": { "name": "Rotting Fist attack", "document": "srd", - "creature_action": "mummy-lord_rotting-fist", + "parent": "mummy-lord_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -5617,7 +5617,7 @@ "fields": { "name": "Rotting Fist attack", "document": "srd", - "creature_action": "mummy_rotting-fist", + "parent": "mummy_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5640,7 +5640,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "nalfeshnee_bite", + "parent": "nalfeshnee_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -5663,7 +5663,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "nalfeshnee_claw", + "parent": "nalfeshnee_claw", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -5686,7 +5686,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "night-hag_claws", + "parent": "night-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -5709,7 +5709,7 @@ "fields": { "name": "Hooves attack", "document": "srd", - "creature_action": "nightmare_hooves", + "parent": "nightmare_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5732,7 +5732,7 @@ "fields": { "name": "Pseudopod attack", "document": "srd", - "creature_action": "ochre-jelly_pseudopod", + "parent": "ochre-jelly_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -5755,7 +5755,7 @@ "fields": { "name": "Morningstar attack", "document": "srd", - "creature_action": "ogre-zombie_morningstar", + "parent": "ogre-zombie_morningstar", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5778,7 +5778,7 @@ "fields": { "name": "Greatclub attack", "document": "srd", - "creature_action": "ogre_greatclub", + "parent": "ogre_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5801,7 +5801,7 @@ "fields": { "name": "Javelin attack", "document": "srd", - "creature_action": "ogre_javelin", + "parent": "ogre_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5824,7 +5824,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "oni_claw", + "parent": "oni_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -5847,7 +5847,7 @@ "fields": { "name": "Glaive attack", "document": "srd", - "creature_action": "oni_glaive", + "parent": "oni_glaive", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -5870,7 +5870,7 @@ "fields": { "name": "Glaive attack (in Small or Medium form)", "document": "srd", - "creature_action": "oni_glaive", + "parent": "oni_glaive", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -5893,7 +5893,7 @@ "fields": { "name": "Greataxe attack", "document": "srd", - "creature_action": "orc_greataxe", + "parent": "orc_greataxe", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5916,7 +5916,7 @@ "fields": { "name": "Javelin attack", "document": "srd", - "creature_action": "orc_javelin", + "parent": "orc_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5939,7 +5939,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "otyugh_bite", + "parent": "otyugh_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5962,7 +5962,7 @@ "fields": { "name": "Tentacle attack", "document": "srd", - "creature_action": "otyugh_tentacle", + "parent": "otyugh_tentacle", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 10, @@ -5985,7 +5985,7 @@ "fields": { "name": "Beak attack", "document": "srd", - "creature_action": "owlbear_beak", + "parent": "owlbear_beak", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6008,7 +6008,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "owlbear_claws", + "parent": "owlbear_claws", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6031,7 +6031,7 @@ "fields": { "name": "Hooves attack", "document": "srd", - "creature_action": "pegasus_hooves", + "parent": "pegasus_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -6054,7 +6054,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "pit-fiend_bite", + "parent": "pit-fiend_bite", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 5, @@ -6077,7 +6077,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "pit-fiend_claw", + "parent": "pit-fiend_claw", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -6100,7 +6100,7 @@ "fields": { "name": "Mace attack", "document": "srd", - "creature_action": "pit-fiend_mace", + "parent": "pit-fiend_mace", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -6123,7 +6123,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "pit-fiend_tail", + "parent": "pit-fiend_tail", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -6146,7 +6146,7 @@ "fields": { "name": "Greatsword attack", "document": "srd", - "creature_action": "planetar_greatsword", + "parent": "planetar_greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 5, @@ -6169,7 +6169,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "plesiosaurus_bite", + "parent": "plesiosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 10, @@ -6192,7 +6192,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "pseudodragon_bite", + "parent": "pseudodragon_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -6215,7 +6215,7 @@ "fields": { "name": "Sting attack", "document": "srd", - "creature_action": "pseudodragon_sting", + "parent": "pseudodragon_sting", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -6238,7 +6238,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "purple-worm_bite", + "parent": "purple-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -6261,7 +6261,7 @@ "fields": { "name": "Tail Stinger attack", "document": "srd", - "creature_action": "purple-worm_tail-stinger", + "parent": "purple-worm_tail-stinger", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -6284,7 +6284,7 @@ "fields": { "name": "Claws/Bite attack", "document": "srd", - "creature_action": "quasit_claws-bite-in-beast-form", + "parent": "quasit_claws-bite-in-beast-form", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -6307,7 +6307,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "rakshasa_claw", + "parent": "rakshasa_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6330,7 +6330,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "red-dragon-wyrmling_bite", + "parent": "red-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -6353,7 +6353,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "remorhaz_bite", + "parent": "remorhaz_bite", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -6376,7 +6376,7 @@ "fields": { "name": "Beak attack", "document": "srd", - "creature_action": "roc_beak", + "parent": "roc_beak", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 10, @@ -6399,7 +6399,7 @@ "fields": { "name": "Talons attack", "document": "srd", - "creature_action": "roc_talons", + "parent": "roc_talons", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 5, @@ -6422,7 +6422,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "roper_bite", + "parent": "roper_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6445,7 +6445,7 @@ "fields": { "name": "Tendril attack", "document": "srd", - "creature_action": "roper_tendril", + "parent": "roper_tendril", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 50, @@ -6468,7 +6468,7 @@ "fields": { "name": "Smother attack", "document": "srd", - "creature_action": "rug-of-smothering_smother", + "parent": "rug-of-smothering_smother", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -6491,7 +6491,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "rust-monster_bite", + "parent": "rust-monster_bite", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -6514,7 +6514,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "sahuagin_bite", + "parent": "sahuagin_bite", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -6537,7 +6537,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "sahuagin_claws", + "parent": "sahuagin_claws", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -6560,7 +6560,7 @@ "fields": { "name": "Spear attack", "document": "srd", - "creature_action": "sahuagin_spear", + "parent": "sahuagin_spear", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -6583,7 +6583,7 @@ "fields": { "name": "Spear attack (if used with two hands)", "document": "srd", - "creature_action": "sahuagin_spear", + "parent": "sahuagin_spear", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -6606,7 +6606,7 @@ "fields": { "name": "Spear attack", "document": "srd", - "creature_action": "salamander_spear", + "parent": "salamander_spear", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6629,7 +6629,7 @@ "fields": { "name": "Spear attack (if used with two hands)", "document": "srd", - "creature_action": "salamander_spear", + "parent": "salamander_spear", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6652,7 +6652,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "salamander_tail", + "parent": "salamander_tail", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -6675,7 +6675,7 @@ "fields": { "name": "Ram attack", "document": "srd", - "creature_action": "satyr_ram", + "parent": "satyr_ram", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -6698,7 +6698,7 @@ "fields": { "name": "Shortbow attack", "document": "srd", - "creature_action": "satyr_shortbow", + "parent": "satyr_shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, @@ -6721,7 +6721,7 @@ "fields": { "name": "Shortsword attack", "document": "srd", - "creature_action": "satyr_shortsword", + "parent": "satyr_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -6744,7 +6744,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "sea-hag_claws", + "parent": "sea-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -6767,7 +6767,7 @@ "fields": { "name": "Strength Drain attack", "document": "srd", - "creature_action": "shadow_strength-drain", + "parent": "shadow_strength-drain", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -6790,7 +6790,7 @@ "fields": { "name": "Slam attack", "document": "srd", - "creature_action": "shambling-mound_slam", + "parent": "shambling-mound_slam", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6813,7 +6813,7 @@ "fields": { "name": "Fist attack", "document": "srd", - "creature_action": "shield-guardian_fist", + "parent": "shield-guardian_fist", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6836,7 +6836,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "silver-dragon-wyrmling_bite", + "parent": "silver-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -6859,7 +6859,7 @@ "fields": { "name": "Shortbow attack", "document": "srd", - "creature_action": "skeleton_shortbow", + "parent": "skeleton_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -6882,7 +6882,7 @@ "fields": { "name": "Shortsword attack", "document": "srd", - "creature_action": "skeleton_shortsword", + "parent": "skeleton_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -6905,7 +6905,7 @@ "fields": { "name": "Greatsword attack", "document": "srd", - "creature_action": "solar_greatsword", + "parent": "solar_greatsword", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 5, @@ -6928,7 +6928,7 @@ "fields": { "name": "Slaying Longbow attack", "document": "srd", - "creature_action": "solar_slaying-longbow", + "parent": "solar_slaying-longbow", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": null, @@ -6951,7 +6951,7 @@ "fields": { "name": "Life Drain attack", "document": "srd", - "creature_action": "specter_life-drain", + "parent": "specter_life-drain", "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": 5, @@ -6974,7 +6974,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "spirit-naga_bite", + "parent": "spirit-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -6997,7 +6997,7 @@ "fields": { "name": "Longsword attack", "document": "srd", - "creature_action": "sprite_longsword", + "parent": "sprite_longsword", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -7020,7 +7020,7 @@ "fields": { "name": "Shortbow attack", "document": "srd", - "creature_action": "sprite_shortbow", + "parent": "sprite_shortbow", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, @@ -7043,7 +7043,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "steam-mephit_claws", + "parent": "steam-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -7066,7 +7066,7 @@ "fields": { "name": "Blood Drain attack", "document": "srd", - "creature_action": "stirge_blood-drain", + "parent": "stirge_blood-drain", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -7089,7 +7089,7 @@ "fields": { "name": "Greatclub attack", "document": "srd", - "creature_action": "stone-giant_greatclub", + "parent": "stone-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 15, @@ -7112,7 +7112,7 @@ "fields": { "name": "Rock attack", "document": "srd", - "creature_action": "stone-giant_rock", + "parent": "stone-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, @@ -7135,7 +7135,7 @@ "fields": { "name": "Slam attack", "document": "srd", - "creature_action": "stone-golem_slam", + "parent": "stone-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -7158,7 +7158,7 @@ "fields": { "name": "Greatsword attack", "document": "srd", - "creature_action": "storm-giant_greatsword", + "parent": "storm-giant_greatsword", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -7181,7 +7181,7 @@ "fields": { "name": "Rock attack", "document": "srd", - "creature_action": "storm-giant_rock", + "parent": "storm-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": null, @@ -7204,7 +7204,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "succubusincubus_claw", + "parent": "succubusincubus_claw", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -7227,7 +7227,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "tarrasque_bite", + "parent": "tarrasque_bite", "attack_type": "WEAPON", "to_hit_mod": 19, "reach_ft": 10, @@ -7250,7 +7250,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "tarrasque_claw", + "parent": "tarrasque_claw", "attack_type": "WEAPON", "to_hit_mod": 19, "reach_ft": 15, @@ -7273,7 +7273,7 @@ "fields": { "name": "Horns attack", "document": "srd", - "creature_action": "tarrasque_horns", + "parent": "tarrasque_horns", "attack_type": "WEAPON", "to_hit_mod": 19, "reach_ft": 10, @@ -7296,7 +7296,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "tarrasque_tail", + "parent": "tarrasque_tail", "attack_type": "WEAPON", "to_hit_mod": 19, "reach_ft": 20, @@ -7319,7 +7319,7 @@ "fields": { "name": "Rock attack", "document": "srd", - "creature_action": "treant_rock", + "parent": "treant_rock", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, @@ -7342,7 +7342,7 @@ "fields": { "name": "Slam attack", "document": "srd", - "creature_action": "treant_slam", + "parent": "treant_slam", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -7365,7 +7365,7 @@ "fields": { "name": "Gore attack", "document": "srd", - "creature_action": "triceratops_gore", + "parent": "triceratops_gore", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -7388,7 +7388,7 @@ "fields": { "name": "Stomp attack", "document": "srd", - "creature_action": "triceratops_stomp", + "parent": "triceratops_stomp", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -7411,7 +7411,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "troll_bite", + "parent": "troll_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7434,7 +7434,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "troll_claw", + "parent": "troll_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7457,7 +7457,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "tyrannosaurus-rex_bite", + "parent": "tyrannosaurus-rex_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -7480,7 +7480,7 @@ "fields": { "name": "Tail attack", "document": "srd", - "creature_action": "tyrannosaurus-rex_tail", + "parent": "tyrannosaurus-rex_tail", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -7503,7 +7503,7 @@ "fields": { "name": "Hooves attack", "document": "srd", - "creature_action": "unicorn_hooves", + "parent": "unicorn_hooves", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7526,7 +7526,7 @@ "fields": { "name": "Horn attack", "document": "srd", - "creature_action": "unicorn_horn", + "parent": "unicorn_horn", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7549,7 +7549,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "vampire-spawn_bite", + "parent": "vampire-spawn_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -7572,7 +7572,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "vampire-spawn_claws", + "parent": "vampire-spawn_claws", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -7595,7 +7595,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "vampire_bite", + "parent": "vampire_bite", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -7618,7 +7618,7 @@ "fields": { "name": "Unarmed Strike attack", "document": "srd", - "creature_action": "vampire_unarmed-strike", + "parent": "vampire_unarmed-strike", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -7641,7 +7641,7 @@ "fields": { "name": "Rotting Touch attack", "document": "srd", - "creature_action": "violet-fungus_rotting-touch", + "parent": "violet-fungus_rotting-touch", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 10, @@ -7664,7 +7664,7 @@ "fields": { "name": "Beak attack", "document": "srd", - "creature_action": "vrock_beak", + "parent": "vrock_beak", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -7687,7 +7687,7 @@ "fields": { "name": "Talons attack", "document": "srd", - "creature_action": "vrock_talons", + "parent": "vrock_talons", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -7710,7 +7710,7 @@ "fields": { "name": "Hooves attack", "document": "srd", - "creature_action": "warhorse-skeleton_hooves", + "parent": "warhorse-skeleton_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -7733,7 +7733,7 @@ "fields": { "name": "Slam attack", "document": "srd", - "creature_action": "water-elemental_slam", + "parent": "water-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7756,7 +7756,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "werebear_bite", + "parent": "werebear_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7779,7 +7779,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "werebear_claw", + "parent": "werebear_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7802,7 +7802,7 @@ "fields": { "name": "Greataxe attack", "document": "srd", - "creature_action": "werebear_greataxe", + "parent": "werebear_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7825,7 +7825,7 @@ "fields": { "name": "Maul attack", "document": "srd", - "creature_action": "wereboar_maul", + "parent": "wereboar_maul", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -7848,7 +7848,7 @@ "fields": { "name": "Tusks attack", "document": "srd", - "creature_action": "wereboar_tusks", + "parent": "wereboar_tusks", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -7871,7 +7871,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "wererat_bite", + "parent": "wererat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -7894,7 +7894,7 @@ "fields": { "name": "Hand Crossbow attack", "document": "srd", - "creature_action": "wererat_hand-crossbow", + "parent": "wererat_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -7917,7 +7917,7 @@ "fields": { "name": "Shortsword attack", "document": "srd", - "creature_action": "wererat_shortsword", + "parent": "wererat_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -7940,7 +7940,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "weretiger_bite", + "parent": "weretiger_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -7963,7 +7963,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "weretiger_claw", + "parent": "weretiger_claw", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -7986,7 +7986,7 @@ "fields": { "name": "Longbow attack", "document": "srd", - "creature_action": "weretiger_longbow", + "parent": "weretiger_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -8009,7 +8009,7 @@ "fields": { "name": "Scimitar attack", "document": "srd", - "creature_action": "weretiger_scimitar", + "parent": "weretiger_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -8032,7 +8032,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "werewolf_bite", + "parent": "werewolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -8055,7 +8055,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "werewolf_claws", + "parent": "werewolf_claws", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -8078,7 +8078,7 @@ "fields": { "name": "Spear attack", "document": "srd", - "creature_action": "werewolf_spear", + "parent": "werewolf_spear", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -8101,7 +8101,7 @@ "fields": { "name": "Spear attack (if used with two hands)", "document": "srd", - "creature_action": "werewolf_spear", + "parent": "werewolf_spear", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -8124,7 +8124,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "white-dragon-wyrmling_bite", + "parent": "white-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -8147,7 +8147,7 @@ "fields": { "name": "Life Drain attack", "document": "srd", - "creature_action": "wight_life-drain", + "parent": "wight_life-drain", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -8170,7 +8170,7 @@ "fields": { "name": "Longbow attack", "document": "srd", - "creature_action": "wight_longbow", + "parent": "wight_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -8193,7 +8193,7 @@ "fields": { "name": "Longsword attack", "document": "srd", - "creature_action": "wight_longsword", + "parent": "wight_longsword", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -8216,7 +8216,7 @@ "fields": { "name": "Longsword attack (if used with two hands)", "document": "srd", - "creature_action": "wight_longsword", + "parent": "wight_longsword", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -8239,7 +8239,7 @@ "fields": { "name": "Shock attack", "document": "srd", - "creature_action": "will-o-wisp_shock", + "parent": "will-o-wisp_shock", "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": 5, @@ -8262,7 +8262,7 @@ "fields": { "name": "Life Drain attack", "document": "srd", - "creature_action": "wraith_life-drain", + "parent": "wraith_life-drain", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -8285,7 +8285,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "wyvern_bite", + "parent": "wyvern_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -8308,7 +8308,7 @@ "fields": { "name": "Claws attack", "document": "srd", - "creature_action": "wyvern_claws", + "parent": "wyvern_claws", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -8331,7 +8331,7 @@ "fields": { "name": "Stinger attack", "document": "srd", - "creature_action": "wyvern_stinger", + "parent": "wyvern_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -8354,7 +8354,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "xorn_bite", + "parent": "xorn_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -8377,7 +8377,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "xorn_claw", + "parent": "xorn_claw", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -8400,7 +8400,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "young-black-dragon_bite", + "parent": "young-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -8423,7 +8423,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "young-black-dragon_claw", + "parent": "young-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -8446,7 +8446,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "young-blue-dragon_bite", + "parent": "young-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -8469,7 +8469,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "young-blue-dragon_claw", + "parent": "young-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -8492,7 +8492,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "young-brass-dragon_bite", + "parent": "young-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -8515,7 +8515,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "young-brass-dragon_claw", + "parent": "young-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -8538,7 +8538,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "young-bronze-dragon_bite", + "parent": "young-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -8561,7 +8561,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "young-bronze-dragon_claw", + "parent": "young-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -8584,7 +8584,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "young-copper-dragon_bite", + "parent": "young-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -8607,7 +8607,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "young-copper-dragon_claw", + "parent": "young-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -8630,7 +8630,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "young-gold-dragon_bite", + "parent": "young-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -8653,7 +8653,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "young-gold-dragon_claw", + "parent": "young-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -8676,7 +8676,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "young-green-dragon_bite", + "parent": "young-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -8699,7 +8699,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "young-green-dragon_claw", + "parent": "young-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -8722,7 +8722,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "young-red-dragon_bite", + "parent": "young-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -8745,7 +8745,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "young-red-dragon_claw", + "parent": "young-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -8768,7 +8768,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "young-silver-dragon_bite", + "parent": "young-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -8791,7 +8791,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "young-silver-dragon_claw", + "parent": "young-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -8814,7 +8814,7 @@ "fields": { "name": "Bite attack", "document": "srd", - "creature_action": "young-white-dragon_bite", + "parent": "young-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -8837,7 +8837,7 @@ "fields": { "name": "Claw attack", "document": "srd", - "creature_action": "young-white-dragon_claw", + "parent": "young-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -8860,7 +8860,7 @@ "fields": { "name": "Slam attack", "document": "srd", - "creature_action": "zombie_slam", + "parent": "zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, diff --git a/data/v2/wizards-of-the-coast/srd/Weapon.json b/data/v2/wizards-of-the-coast/srd/Weapon.json index 6252211c..3bfae54f 100644 --- a/data/v2/wizards-of-the-coast/srd/Weapon.json +++ b/data/v2/wizards-of-the-coast/srd/Weapon.json @@ -1,927 +1,927 @@ [ - { - "model": "api_v2.weapon", - "pk": "srd_battleaxe", - "fields": { - "name": "Battleaxe", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d8", - "versatile_dice": "1d10", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_blowgun", - "fields": { - "name": "Blowgun", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 25, - "range_long": 100, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": true, - "requires_loading": true, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_club", - "fields": { - "name": "Club", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_crossbow-hand", - "fields": { - "name": "Crossbow, hand", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 30, - "range_long": 120, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": true, - "requires_loading": true, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_crossbow-heavy", - "fields": { - "name": "Crossbow, heavy", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d10", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 100, - "range_long": 400, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": true, - "requires_loading": true, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_crossbow-light", - "fields": { - "name": "Crossbow, light", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 80, - "range_long": 320, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": true, - "requires_loading": true, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_dagger", - "fields": { - "name": "Dagger", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": true, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_dart", - "fields": { - "name": "Dart", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": true, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_flail", - "fields": { - "name": "Flail", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_glaive", - "fields": { - "name": "Glaive", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d10", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_greataxe", - "fields": { - "name": "Greataxe", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d12", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_greatclub", - "fields": { - "name": "Greatclub", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_greatsword", - "fields": { - "name": "Greatsword", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "2d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_halberd", - "fields": { - "name": "Halberd", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d10", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_handaxe", - "fields": { - "name": "Handaxe", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_javelin", - "fields": { - "name": "Javelin", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 30, - "range_long": 120, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_lance", - "fields": { - "name": "Lance", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d12", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": true, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_light-hammer", - "fields": { - "name": "Light hammer", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_longbow", - "fields": { - "name": "Longbow", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 150, - "range_long": 600, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": true, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_longsword", - "fields": { - "name": "Longsword", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d8", - "versatile_dice": "1d10", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_mace", - "fields": { - "name": "Mace", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_maul", - "fields": { - "name": "Maul", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "2d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_morningstar", - "fields": { - "name": "Morningstar", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_net", - "fields": { - "name": "Net", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "0", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 5, - "range_long": 15, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": true, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_pike", - "fields": { - "name": "Pike", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d10", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_quarterstaff", - "fields": { - "name": "Quarterstaff", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d6", - "versatile_dice": "1d8", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_rapier", - "fields": { - "name": "Rapier", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": true, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_scimitar", - "fields": { - "name": "Scimitar", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": true, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_shortbow", - "fields": { - "name": "Shortbow", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 80, - "range_long": 320, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": true, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_shortsword", - "fields": { - "name": "Shortsword", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": true, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_sickle", - "fields": { - "name": "Sickle", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_sling", - "fields": { - "name": "Sling", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 30, - "range_long": 120, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": true, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_spear", - "fields": { - "name": "Spear", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "1d8", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_trident", - "fields": { - "name": "Trident", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "1d8", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_warhammer", - "fields": { - "name": "Warhammer", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d8", - "versatile_dice": "1d10", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_war-pick", - "fields": { - "name": "War Pick", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_whip", - "fields": { - "name": "Whip", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": true, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - } -] \ No newline at end of file +{ + "model": "api_v2.weapon", + "pk": "srd_battleaxe", + "fields": { + "name": "Battleaxe", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d8", + "versatile_dice": "1d10", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_blowgun", + "fields": { + "name": "Blowgun", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 25, + "range_long": 100, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": true, + "requires_loading": true, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_club", + "fields": { + "name": "Club", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_crossbow-hand", + "fields": { + "name": "Crossbow, hand", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 30, + "range_long": 120, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": true, + "requires_loading": true, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_crossbow-heavy", + "fields": { + "name": "Crossbow, heavy", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d10", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 100, + "range_long": 400, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": true, + "requires_loading": true, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_crossbow-light", + "fields": { + "name": "Crossbow, light", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 80, + "range_long": 320, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": true, + "requires_loading": true, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_dagger", + "fields": { + "name": "Dagger", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": true, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_dart", + "fields": { + "name": "Dart", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": true, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_flail", + "fields": { + "name": "Flail", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_glaive", + "fields": { + "name": "Glaive", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d10", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_greataxe", + "fields": { + "name": "Greataxe", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d12", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_greatclub", + "fields": { + "name": "Greatclub", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_greatsword", + "fields": { + "name": "Greatsword", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "2d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_halberd", + "fields": { + "name": "Halberd", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d10", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_handaxe", + "fields": { + "name": "Handaxe", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_javelin", + "fields": { + "name": "Javelin", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 30, + "range_long": 120, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_lance", + "fields": { + "name": "Lance", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d12", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": true, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_light-hammer", + "fields": { + "name": "Light hammer", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_longbow", + "fields": { + "name": "Longbow", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 150, + "range_long": 600, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": true, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_longsword", + "fields": { + "name": "Longsword", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d8", + "versatile_dice": "1d10", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_mace", + "fields": { + "name": "Mace", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_maul", + "fields": { + "name": "Maul", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "2d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_morningstar", + "fields": { + "name": "Morningstar", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_net", + "fields": { + "name": "Net", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "0", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 5, + "range_long": 15, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": true, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_pike", + "fields": { + "name": "Pike", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d10", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_quarterstaff", + "fields": { + "name": "Quarterstaff", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d6", + "versatile_dice": "1d8", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_rapier", + "fields": { + "name": "Rapier", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": true, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_scimitar", + "fields": { + "name": "Scimitar", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": true, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_shortbow", + "fields": { + "name": "Shortbow", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 80, + "range_long": 320, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": true, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_shortsword", + "fields": { + "name": "Shortsword", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": true, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_sickle", + "fields": { + "name": "Sickle", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_sling", + "fields": { + "name": "Sling", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 30, + "range_long": 120, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": true, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_spear", + "fields": { + "name": "Spear", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "1d8", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_trident", + "fields": { + "name": "Trident", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "1d8", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_war-pick", + "fields": { + "name": "War Pick", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_warhammer", + "fields": { + "name": "Warhammer", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d8", + "versatile_dice": "1d10", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_whip", + "fields": { + "name": "Whip", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": true, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +} +] From 6a90662d1aa26109c53f7dcc1378fb003f03c168 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Fri, 31 May 2024 16:24:23 -0500 Subject: [PATCH 61/84] First layer down. --- .../v2/wizards-of-the-coast/srd/Creature.json | 19322 ++++++++-------- .../srd/CreatureAction.json | 14214 ++++++------ .../data_manipulation/data_v2_format_check.py | 10 +- 3 files changed, 16773 insertions(+), 16773 deletions(-) diff --git a/data/v2/wizards-of-the-coast/srd/Creature.json b/data/v2/wizards-of-the-coast/srd/Creature.json index bef2c12c..31b9ee50 100644 --- a/data/v2/wizards-of-the-coast/srd/Creature.json +++ b/data/v2/wizards-of-the-coast/srd/Creature.json @@ -1,9662 +1,9662 @@ [ -{ - "model": "api_v2.creature", - "pk": "aboleth", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 9, - "ability_score_constitution": 15, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 6, - "saving_throw_intelligence": 8, - "saving_throw_wisdom": 6, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 12, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 10, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 20, - "name": "Aboleth", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 135, - "type": "aberration", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-black-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 14, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult Black Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 195, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-blue-dragon", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 23, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Blue Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 225, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-brass-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 10, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 7, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 8, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult Brass Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 172, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-bronze-dragon", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 23, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 7, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Bronze Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 212, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-copper-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 12, - "ability_score_constitution": 21, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 8, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Copper Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 184, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-gold-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 14, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 24, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 13, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 8, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 14, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 13, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 24, - "name": "Adult Gold Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 256, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-green-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 12, - "ability_score_constitution": 21, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 8, - "skill_bonus_history": null, - "skill_bonus_insight": 7, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 8, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Green Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 207, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-red-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 13, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 23, - "name": "Adult Red Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 256, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-silver-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 12, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 10, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 8, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 8, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult Silver Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 243, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-white-dragon", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 8, - "ability_score_wisdom": 12, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult White Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 200, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "air-elemental", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 20, - "ability_score_constitution": 14, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Air Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 90, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-black-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 14, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 9, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 16, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 26, - "name": "Ancient Black Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 367, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-blue-dragon", - "fields": { - "ability_score_strength": 29, - "ability_score_dexterity": 10, - "ability_score_constitution": 27, - "ability_score_intelligence": 18, - "ability_score_wisdom": 17, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 15, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Blue Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 481, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-brass-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 10, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 9, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 14, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 10, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 24, - "name": "Ancient Brass Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 20, - "hit_points": 297, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-bronze-dragon", - "fields": { - "ability_score_strength": 29, - "ability_score_dexterity": 10, - "ability_score_constitution": 27, - "ability_score_intelligence": 18, - "ability_score_wisdom": 17, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 15, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 10, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Bronze Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 444, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-copper-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 12, - "ability_score_constitution": 25, - "ability_score_intelligence": 20, - "ability_score_wisdom": 17, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 11, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Copper Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 21, - "hit_points": 350, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-gold-dragon", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 14, - "ability_score_constitution": 29, - "ability_score_intelligence": 18, - "ability_score_wisdom": 17, - "ability_score_charisma": 28, - "saving_throw_strength": null, - "saving_throw_dexterity": 9, - "saving_throw_constitution": 16, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 16, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 10, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 16, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Gold Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 546, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-green-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 12, - "ability_score_constitution": 25, - "ability_score_intelligence": 20, - "ability_score_wisdom": 17, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 11, - "skill_bonus_history": null, - "skill_bonus_insight": 10, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 11, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Green Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 21, - "hit_points": 385, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-red-dragon", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 10, - "ability_score_constitution": 29, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 23, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 16, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 13, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 16, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 26, - "name": "Ancient Red Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 546, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-silver-dragon", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 10, - "ability_score_constitution": 29, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 23, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 16, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 13, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 11, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 11, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 16, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 26, - "name": "Ancient Silver Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 487, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-white-dragon", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 10, - "ability_score_constitution": 26, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 13, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 23, - "name": "Ancient White Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 20, - "hit_points": 333, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "androsphinx", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 10, - "ability_score_constitution": 20, - "ability_score_intelligence": 16, - "ability_score_wisdom": 18, - "ability_score_charisma": 23, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 11, - "saving_throw_intelligence": 9, - "saving_throw_wisdom": 10, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 9, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 10, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": 15, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 20, - "name": "Androsphinx", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 199, - "type": "monstrosity", - "category": "Monsters; Sphinxes", - "alignment": "lawful neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "animated-armor", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 11, - "ability_score_constitution": 13, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Animated Armor", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 33, - "type": "construct", - "category": "Monsters; Animated Objects", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "ankheg", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 11, - "ability_score_constitution": 13, - "ability_score_intelligence": 1, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Ankheg", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 39, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "azer", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 12, - "ability_score_constitution": 15, - "ability_score_intelligence": 12, - "ability_score_wisdom": 13, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Azer", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 39, - "type": "elemental", - "category": "Monsters", - "alignment": "lawful neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "balor", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 15, - "ability_score_constitution": 22, - "ability_score_intelligence": 20, - "ability_score_wisdom": 16, - "ability_score_charisma": 22, - "saving_throw_strength": 14, - "saving_throw_dexterity": null, - "saving_throw_constitution": 12, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Balor", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 262, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "barbed-devil", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 17, - "ability_score_constitution": 18, - "ability_score_intelligence": 12, - "ability_score_wisdom": 14, - "ability_score_charisma": 14, - "saving_throw_strength": 6, - "saving_throw_dexterity": null, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": 5, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Barbed Devil", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 110, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "basilisk", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 8, - "ability_score_constitution": 15, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Basilisk", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 52, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "bearded-devil", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 15, - "ability_score_constitution": 15, - "ability_score_intelligence": 9, - "ability_score_wisdom": 11, - "ability_score_charisma": 11, - "saving_throw_strength": 5, - "saving_throw_dexterity": null, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Bearded Devil", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 52, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "behir", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 7, - "ability_score_wisdom": 14, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Behir", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 17, - "hit_points": 168, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "black-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 13, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Black Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 33, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "black-pudding", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 5, - "ability_score_constitution": 16, - "ability_score_intelligence": 1, - "ability_score_wisdom": 6, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Black Pudding", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 7, - "hit_points": 85, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "blue-dragon-wyrmling", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Blue Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 52, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "bone-devil", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 5, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 7, - "skill_bonus_history": null, - "skill_bonus_insight": 6, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Bone Devil", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 142, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "brass-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Brass Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 16, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "bronze-dragon-wyrmling", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Bronze Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 32, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "bugbear", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 13, - "ability_score_intelligence": 8, - "ability_score_wisdom": 11, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": 2, - "passive_perception": 10, - "name": "Bugbear", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 27, - "type": "humanoid", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "bulette", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 11, - "ability_score_constitution": 21, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Bulette", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 94, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "camel", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 8, - "ability_score_constitution": 14, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 9, - "name": "Camel", - "document": "srd", - "size": "large", - "weight": "600.000", - "armor_class": 9, - "hit_points": 15, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "centaur", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 14, - "ability_score_intelligence": 9, - "ability_score_wisdom": 13, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 6, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": 3, - "passive_perception": 13, - "name": "Centaur", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 45, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral good" - } -}, -{ - "model": "api_v2.creature", - "pk": "chain-devil", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 18, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Chain Devil", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 85, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "chimera", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 11, - "ability_score_constitution": 19, - "ability_score_intelligence": 3, - "ability_score_wisdom": 14, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Chimera", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 114, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "chuul", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 11, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Chuul", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 16, - "hit_points": 93, - "type": "aberration", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "clay-golem", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 9, - "ability_score_constitution": 18, - "ability_score_intelligence": 3, - "ability_score_wisdom": 8, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Clay Golem", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 133, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "cloaker", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 15, - "ability_score_constitution": 12, - "ability_score_intelligence": 13, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Cloaker", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 78, - "type": "aberration", - "category": "Monsters", - "alignment": "chaotic neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "cloud-giant", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 12, - "ability_score_wisdom": 16, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 7, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Cloud Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 14, - "hit_points": 200, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "neutral good (50%) or neutral evil (50%)" - } -}, -{ - "model": "api_v2.creature", - "pk": "cockatrice", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 2, - "ability_score_wisdom": 13, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Cockatrice", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 27, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "copper-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Copper Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 22, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "couatl", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 20, - "ability_score_constitution": 17, - "ability_score_intelligence": 18, - "ability_score_wisdom": 20, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Couatl", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 19, - "hit_points": 97, - "type": "celestial", - "category": "Monsters", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "darkmantle", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Darkmantle", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 22, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "deva", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 18, - "ability_score_constitution": 18, - "ability_score_intelligence": 17, - "ability_score_wisdom": 20, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 9, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Deva", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 136, - "type": "celestial", - "category": "Monsters; Angels", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "djinni", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 15, - "ability_score_constitution": 22, - "ability_score_intelligence": 15, - "ability_score_wisdom": 16, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Djinni", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 161, - "type": "elemental", - "category": "Monsters; Genies", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "donkey", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Donkey", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 11, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "doppelganger", - "fields": { - "ability_score_strength": 11, - "ability_score_dexterity": 18, - "ability_score_constitution": 14, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 6, - "skill_bonus_history": null, - "skill_bonus_insight": 3, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Doppelganger", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 52, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "draft-horse", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 12, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Draft Horse", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 10, - "hit_points": 19, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "dragon-turtle", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 20, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Dragon Turtle", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 20, - "hit_points": 341, - "type": "dragon", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "dretch", - "fields": { - "ability_score_strength": 11, - "ability_score_dexterity": 11, - "ability_score_constitution": 12, - "ability_score_intelligence": 5, - "ability_score_wisdom": 8, - "ability_score_charisma": 3, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Dretch", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 18, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "drider", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Drider", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 123, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "dryad", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 12, - "ability_score_constitution": 11, - "ability_score_intelligence": 14, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Dryad", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 22, - "type": "fey", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "duergar", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 11, - "ability_score_constitution": 14, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Duergar", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 26, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "dust-mephit", - "fields": { - "ability_score_strength": 5, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 9, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Dust Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 12, - "hit_points": 17, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "earth-elemental", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 8, - "ability_score_constitution": 20, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Earth Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 126, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "efreeti", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 12, - "ability_score_constitution": 24, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 7, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Efreeti", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 200, - "type": "elemental", - "category": "Monsters; Genies", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "elephant", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 9, - "ability_score_constitution": 17, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 6, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Elephant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 12, - "hit_points": 76, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "elf-drow", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 11, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Elf, Drow", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 13, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "erinyes", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 14, - "ability_score_wisdom": 14, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Erinyes", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 153, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ettercap", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 15, - "ability_score_constitution": 13, - "ability_score_intelligence": 7, - "ability_score_wisdom": 12, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": 3, - "passive_perception": 13, - "name": "Ettercap", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 44, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ettin", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 8, - "ability_score_constitution": 17, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Ettin", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 85, - "type": "giant", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "fire-elemental", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 17, - "ability_score_constitution": 16, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Fire Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 102, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "fire-giant", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 9, - "ability_score_constitution": 23, - "ability_score_intelligence": 10, - "ability_score_wisdom": 14, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 11, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Fire Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 162, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "flesh-golem", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 9, - "ability_score_constitution": 18, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Flesh Golem", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 9, - "hit_points": 93, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "flying-sword", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 15, - "ability_score_constitution": 11, - "ability_score_intelligence": 1, - "ability_score_wisdom": 5, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 7, - "name": "Flying Sword", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 17, - "hit_points": 17, - "type": "construct", - "category": "Monsters; Animated Objects", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "frost-giant", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 9, - "ability_score_constitution": 21, - "ability_score_intelligence": 9, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 9, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Frost Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 15, - "hit_points": 138, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "gargoyle", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 11, - "ability_score_constitution": 16, - "ability_score_intelligence": 6, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Gargoyle", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 52, - "type": "elemental", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "gelatinous-cube", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 3, - "ability_score_constitution": 20, - "ability_score_intelligence": 1, - "ability_score_wisdom": 6, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Gelatinous Cube", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 6, - "hit_points": 84, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "ghast", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 17, - "ability_score_constitution": 10, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Ghast", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 36, - "type": "undead", - "category": "Monsters; Ghouls", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ghost", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 13, - "ability_score_constitution": 10, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Ghost", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 45, - "type": "undead", - "category": "Monsters", - "alignment": "any alignment" - } -}, -{ - "model": "api_v2.creature", - "pk": "ghoul", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 15, - "ability_score_constitution": 10, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Ghoul", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 22, - "type": "undead", - "category": "Monsters; Ghouls", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "gibbering-mouther", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 8, - "ability_score_constitution": 16, - "ability_score_intelligence": 3, - "ability_score_wisdom": 10, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Gibbering Mouther", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 9, - "hit_points": 67, - "type": "aberration", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "glabrezu", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 15, - "ability_score_constitution": 21, - "ability_score_intelligence": 19, - "ability_score_wisdom": 17, - "ability_score_charisma": 16, - "saving_throw_strength": 9, - "saving_throw_dexterity": null, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Glabrezu", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 157, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "gnoll", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 12, - "ability_score_constitution": 11, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Gnoll", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 22, - "type": "humanoid", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "gnome-deep-svirfneblin", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 14, - "ability_score_intelligence": 12, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": 3, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Gnome, Deep (Svirfneblin)", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 15, - "hit_points": 16, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral good" - } -}, -{ - "model": "api_v2.creature", - "pk": "goblin", - "fields": { - "ability_score_strength": 8, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 10, - "ability_score_wisdom": 8, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Goblin", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 15, - "hit_points": 7, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "gold-dragon-wyrmling", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 14, - "ability_score_constitution": 17, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Gold Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 60, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "gorgon", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 11, - "ability_score_constitution": 18, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Gorgon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 114, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "gray-ooze", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 6, - "ability_score_constitution": 16, - "ability_score_intelligence": 1, - "ability_score_wisdom": 6, - "ability_score_charisma": 2, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Gray Ooze", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 8, - "hit_points": 22, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "green-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Green Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 38, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "green-hag", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 12, - "ability_score_constitution": 16, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 3, - "skill_bonus_athletics": null, - "skill_bonus_deception": 4, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Green Hag", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 82, - "type": "fey", - "category": "Monsters; Hags", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "grick", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 14, - "ability_score_constitution": 11, - "ability_score_intelligence": 3, - "ability_score_wisdom": 14, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Grick", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 27, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "griffon", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 2, - "ability_score_wisdom": 13, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Griffon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 59, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "grimlock", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 9, - "ability_score_wisdom": 8, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 5, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Grimlock", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 11, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "guardian-naga", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 18, - "ability_score_constitution": 16, - "ability_score_intelligence": 16, - "ability_score_wisdom": 19, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 7, - "saving_throw_intelligence": 7, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Guardian Naga", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 127, - "type": "monstrosity", - "category": "Monsters; Nagas", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "gynosphinx", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 18, - "ability_score_wisdom": 18, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 12, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 12, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": 8, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Gynosphinx", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 136, - "type": "monstrosity", - "category": "Monsters; Sphinxes", - "alignment": "lawful neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "half-red-dragon-veteran", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 13, - "ability_score_constitution": 14, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 5, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Half-Red Dragon Veteran", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 65, - "type": "humanoid", - "category": "Monsters; Half-Dragon Template", - "alignment": "any alignment" - } -}, -{ - "model": "api_v2.creature", - "pk": "harpy", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 13, - "ability_score_constitution": 12, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Harpy", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 38, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "hell-hound", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 12, - "ability_score_constitution": 14, - "ability_score_intelligence": 6, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Hell Hound", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 45, - "type": "fiend", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "hezrou", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 17, - "ability_score_constitution": 20, - "ability_score_intelligence": 5, - "ability_score_wisdom": 12, - "ability_score_charisma": 13, - "saving_throw_strength": 7, - "saving_throw_dexterity": null, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Hezrou", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 16, - "hit_points": 136, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "hill-giant", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 8, - "ability_score_constitution": 19, - "ability_score_intelligence": 5, - "ability_score_wisdom": 9, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Hill Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 13, - "hit_points": 105, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "hippogriff", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 13, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Hippogriff", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 11, - "hit_points": 19, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "hobgoblin", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 10, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Hobgoblin", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 11, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "homunculus", - "fields": { - "ability_score_strength": 4, - "ability_score_dexterity": 15, - "ability_score_constitution": 11, - "ability_score_intelligence": 10, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Homunculus", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 5, - "type": "construct", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "horned-devil", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 17, - "ability_score_constitution": 21, - "ability_score_intelligence": 12, - "ability_score_wisdom": 16, - "ability_score_charisma": 17, - "saving_throw_strength": 10, - "saving_throw_dexterity": 7, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Horned Devil", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 178, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "hydra", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 12, - "ability_score_constitution": 20, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Hydra", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 15, - "hit_points": 172, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "ice-devil", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 14, - "ability_score_constitution": 18, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Ice Devil", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 180, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ice-mephit", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 13, - "ability_score_constitution": 10, - "ability_score_intelligence": 9, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Ice Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 21, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "imp", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 17, - "ability_score_constitution": 13, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 4, - "skill_bonus_history": null, - "skill_bonus_insight": 3, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 4, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Imp", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 10, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "invisible-stalker", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 19, - "ability_score_constitution": 14, - "ability_score_intelligence": 10, - "ability_score_wisdom": 15, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 10, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Invisible Stalker", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 104, - "type": "elemental", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "iron-golem", - "fields": { - "ability_score_strength": 24, - "ability_score_dexterity": 9, - "ability_score_constitution": 20, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Iron Golem", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 20, - "hit_points": 210, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "kobold", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 15, - "ability_score_constitution": 9, - "ability_score_intelligence": 8, - "ability_score_wisdom": 7, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Kobold", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 12, - "hit_points": 5, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "kraken", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 11, - "ability_score_constitution": 25, - "ability_score_intelligence": 22, - "ability_score_wisdom": 18, - "ability_score_charisma": 20, - "saving_throw_strength": 17, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 14, - "saving_throw_intelligence": 13, - "saving_throw_wisdom": 11, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Kraken", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 18, - "hit_points": 472, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "lamia", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 13, - "ability_score_constitution": 15, - "ability_score_intelligence": 14, - "ability_score_wisdom": 15, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 7, - "skill_bonus_history": null, - "skill_bonus_insight": 4, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Lamia", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 97, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "lemure", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 5, - "ability_score_constitution": 11, - "ability_score_intelligence": 1, - "ability_score_wisdom": 11, - "ability_score_charisma": 3, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Lemure", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 7, - "hit_points": 13, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "lich", - "fields": { - "ability_score_strength": 11, - "ability_score_dexterity": 16, - "ability_score_constitution": 16, - "ability_score_intelligence": 20, - "ability_score_wisdom": 14, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": 12, - "saving_throw_wisdom": 9, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 18, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 12, - "skill_bonus_insight": 9, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Lich", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 135, - "type": "undead", - "category": "Monsters", - "alignment": "any evil alignment" - } -}, -{ - "model": "api_v2.creature", - "pk": "lizardfolk", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 7, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": 5, - "passive_perception": 13, - "name": "Lizardfolk", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 22, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "magma-mephit", - "fields": { - "ability_score_strength": 8, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Magma Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 22, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "magmin", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 15, - "ability_score_constitution": 12, - "ability_score_intelligence": 8, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Magmin", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 14, - "hit_points": 9, - "type": "elemental", - "category": "Monsters", - "alignment": "chaotic neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "manticore", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 16, - "ability_score_constitution": 17, - "ability_score_intelligence": 7, - "ability_score_wisdom": 12, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Manticore", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 68, - "type": "monstrosity", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "marilith", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 20, - "ability_score_constitution": 20, - "ability_score_intelligence": 18, - "ability_score_wisdom": 16, - "ability_score_charisma": 20, - "saving_throw_strength": 9, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 10, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Marilith", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 189, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "mastiff", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 14, - "ability_score_constitution": 12, - "ability_score_intelligence": 3, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 2, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 13, - "name": "Mastiff", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 5, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "medusa", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 12, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": 4, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Medusa", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 127, - "type": "monstrosity", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "merfolk", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 13, - "ability_score_constitution": 12, - "ability_score_intelligence": 11, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Merfolk", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 11, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "merrow", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 8, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Merrow", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 45, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "mimic", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 12, - "ability_score_constitution": 15, - "ability_score_intelligence": 5, - "ability_score_wisdom": 13, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Mimic", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 58, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "minotaur", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 11, - "ability_score_constitution": 16, - "ability_score_intelligence": 6, - "ability_score_wisdom": 16, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Minotaur", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 76, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "minotaur-skeleton", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 11, - "ability_score_constitution": 15, - "ability_score_intelligence": 6, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Minotaur Skeleton", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 67, - "type": "undead", - "category": "Monsters; Skeletons", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "mule", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Mule", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 11, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "mummy", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 8, - "ability_score_constitution": 15, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Mummy", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 58, - "type": "undead", - "category": "Monsters; Mummies", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "mummy-lord", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 11, - "ability_score_wisdom": 18, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 8, - "saving_throw_intelligence": 5, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 5, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": 5, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Mummy Lord", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 97, - "type": "undead", - "category": "Monsters; Mummies", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "nalfeshnee", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 19, - "ability_score_wisdom": 12, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 11, - "saving_throw_intelligence": 9, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Nalfeshnee", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 184, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "night-hag", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 16, - "ability_score_wisdom": 14, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 7, - "skill_bonus_history": null, - "skill_bonus_insight": 6, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Night Hag", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 112, - "type": "fiend", - "category": "Monsters; Hags", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "nightmare", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Nightmare", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 68, - "type": "fiend", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ochre-jelly", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 6, - "ability_score_constitution": 14, - "ability_score_intelligence": 2, - "ability_score_wisdom": 6, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Ochre Jelly", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 8, - "hit_points": 45, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "ogre", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 8, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 7, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Ogre", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 11, - "hit_points": 59, - "type": "giant", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ogre-zombie", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 6, - "ability_score_constitution": 18, - "ability_score_intelligence": 3, - "ability_score_wisdom": 6, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 0, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Ogre Zombie", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 8, - "hit_points": 85, - "type": "undead", - "category": "Monsters; Zombies", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "oni", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 11, - "ability_score_constitution": 16, - "ability_score_intelligence": 14, - "ability_score_wisdom": 12, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 5, - "skill_bonus_athletics": null, - "skill_bonus_deception": 8, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Oni", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 16, - "hit_points": 110, - "type": "giant", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "orc", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 12, - "ability_score_constitution": 16, - "ability_score_intelligence": 7, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": 2, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Orc", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 15, - "type": "humanoid", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "otyugh", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 11, - "ability_score_constitution": 19, - "ability_score_intelligence": 6, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Otyugh", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 114, - "type": "aberration", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "owlbear", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 12, - "ability_score_constitution": 17, - "ability_score_intelligence": 3, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Owlbear", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 59, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "pegasus", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 15, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Pegasus", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 59, - "type": "celestial", - "category": "Monsters", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "pit-fiend", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 14, - "ability_score_constitution": 24, - "ability_score_intelligence": 22, - "ability_score_wisdom": 18, - "ability_score_charisma": 24, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Pit Fiend", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 300, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "planetar", - "fields": { - "ability_score_strength": 24, - "ability_score_dexterity": 20, - "ability_score_constitution": 24, - "ability_score_intelligence": 19, - "ability_score_wisdom": 22, - "ability_score_charisma": 25, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 12, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 11, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Planetar", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 200, - "type": "celestial", - "category": "Monsters; Angels", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "plesiosaurus", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Plesiosaurus", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 68, - "type": "beast", - "category": "Monsters; Dinosaurs", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "pony", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Pony", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 11, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "pseudodragon", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 15, - "ability_score_constitution": 13, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Pseudodragon", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 7, - "type": "dragon", - "category": "Monsters", - "alignment": "neutral good" - } -}, -{ - "model": "api_v2.creature", - "pk": "purple-worm", - "fields": { - "ability_score_strength": 28, - "ability_score_dexterity": 7, - "ability_score_constitution": 22, - "ability_score_intelligence": 1, - "ability_score_wisdom": 8, - "ability_score_charisma": 4, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Purple Worm", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 18, - "hit_points": 247, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "quasit", - "fields": { - "ability_score_strength": 5, - "ability_score_dexterity": 17, - "ability_score_constitution": 10, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Quasit", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 7, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "rakshasa", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 17, - "ability_score_constitution": 18, - "ability_score_intelligence": 13, - "ability_score_wisdom": 16, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 10, - "skill_bonus_history": null, - "skill_bonus_insight": 8, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Rakshasa", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 110, - "type": "fiend", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "red-dragon-wyrmling", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Red Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 75, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "remorhaz", - "fields": { - "ability_score_strength": 24, - "ability_score_dexterity": 13, - "ability_score_constitution": 21, - "ability_score_intelligence": 4, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Remorhaz", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 17, - "hit_points": 195, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "riding-horse", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 10, - "ability_score_constitution": 12, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Riding Horse", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 10, - "hit_points": 13, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "roc", - "fields": { - "ability_score_strength": 28, - "ability_score_dexterity": 10, - "ability_score_constitution": 20, - "ability_score_intelligence": 3, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Roc", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 15, - "hit_points": 248, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "roper", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 8, - "ability_score_constitution": 17, - "ability_score_intelligence": 7, - "ability_score_wisdom": 16, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Roper", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 20, - "hit_points": 93, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "rug-of-smothering", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Rug of Smothering", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 33, - "type": "construct", - "category": "Monsters; Animated Objects", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "rust-monster", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Rust Monster", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 27, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "sahuagin", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 11, - "ability_score_constitution": 12, - "ability_score_intelligence": 12, - "ability_score_wisdom": 13, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Sahuagin", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 22, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "salamander", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 15, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Salamander", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 90, - "type": "elemental", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "satyr", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 16, - "ability_score_constitution": 11, - "ability_score_intelligence": 12, - "ability_score_wisdom": 10, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": 6, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Satyr", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 31, - "type": "fey", - "category": "Monsters", - "alignment": "chaotic neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "sea-hag", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 13, - "ability_score_constitution": 16, - "ability_score_intelligence": 12, - "ability_score_wisdom": 12, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Sea Hag", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 52, - "type": "fey", - "category": "Monsters; Hags", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "shadow", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 14, - "ability_score_constitution": 13, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Shadow", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 16, - "type": "undead", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "shambling-mound", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 8, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Shambling Mound", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 136, - "type": "plant", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "shield-guardian", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 8, - "ability_score_constitution": 18, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 3, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Shield Guardian", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 142, - "type": "construct", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "shrieker", - "fields": { - "ability_score_strength": 1, - "ability_score_dexterity": 1, - "ability_score_constitution": 10, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Shrieker", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 5, - "hit_points": 13, - "type": "plant", - "category": "Monsters; Fungi", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "silver-dragon-wyrmling", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Silver Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 45, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "skeleton", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 14, - "ability_score_constitution": 15, - "ability_score_intelligence": 6, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Skeleton", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 13, - "type": "undead", - "category": "Monsters; Skeletons", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "solar", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 22, - "ability_score_constitution": 26, - "ability_score_intelligence": 25, - "ability_score_wisdom": 25, - "ability_score_charisma": 30, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 14, - "saving_throw_wisdom": 14, - "saving_throw_charisma": 17, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 14, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 24, - "name": "Solar", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 21, - "hit_points": 243, - "type": "celestial", - "category": "Monsters; Angels", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "specter", - "fields": { - "ability_score_strength": 1, - "ability_score_dexterity": 14, - "ability_score_constitution": 11, - "ability_score_intelligence": 10, - "ability_score_wisdom": 10, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Specter", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 22, - "type": "undead", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "spirit-naga", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 17, - "ability_score_constitution": 14, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Spirit Naga", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 75, - "type": "monstrosity", - "category": "Monsters; Nagas", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "sprite", - "fields": { - "ability_score_strength": 3, - "ability_score_dexterity": 18, - "ability_score_constitution": 10, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Sprite", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 15, - "hit_points": 2, - "type": "fey", - "category": "Monsters", - "alignment": "neutral good" - } -}, -{ - "model": "api_v2.creature", - "pk": "steam-mephit", - "fields": { - "ability_score_strength": 5, - "ability_score_dexterity": 11, - "ability_score_constitution": 10, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Steam Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 10, - "hit_points": 21, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "stirge", - "fields": { - "ability_score_strength": 4, - "ability_score_dexterity": 16, - "ability_score_constitution": 11, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Stirge", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 14, - "hit_points": 2, - "type": "beast", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "stone-giant", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 15, - "ability_score_constitution": 20, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 12, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Stone Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 17, - "hit_points": 126, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "stone-golem", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 9, - "ability_score_constitution": 20, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Stone Golem", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 178, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "storm-giant", - "fields": { - "ability_score_strength": 29, - "ability_score_dexterity": 14, - "ability_score_constitution": 20, - "ability_score_intelligence": 16, - "ability_score_wisdom": 18, - "ability_score_charisma": 18, - "saving_throw_strength": 14, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 8, - "skill_bonus_athletics": 14, - "skill_bonus_deception": null, - "skill_bonus_history": 8, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Storm Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 16, - "hit_points": 230, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "succubusincubus", - "fields": { - "ability_score_strength": 8, - "ability_score_dexterity": 17, - "ability_score_constitution": 13, - "ability_score_intelligence": 15, - "ability_score_wisdom": 12, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 9, - "skill_bonus_history": null, - "skill_bonus_insight": 5, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 9, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Succubus/Incubus", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 66, - "type": "fiend", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "tarrasque", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 11, - "ability_score_constitution": 30, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 5, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Tarrasque", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 25, - "hit_points": 676, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "treant", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 8, - "ability_score_constitution": 21, - "ability_score_intelligence": 12, - "ability_score_wisdom": 16, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Treant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 16, - "hit_points": 138, - "type": "plant", - "category": "Monsters", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "triceratops", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 9, - "ability_score_constitution": 17, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Triceratops", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 13, - "hit_points": 95, - "type": "beast", - "category": "Monsters; Dinosaurs", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "troll", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 13, - "ability_score_constitution": 20, - "ability_score_intelligence": 7, - "ability_score_wisdom": 9, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Troll", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 84, - "type": "giant", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "tyrannosaurus-rex", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 19, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Tyrannosaurus Rex", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 13, - "hit_points": 136, - "type": "beast", - "category": "Monsters; Dinosaurs", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "unicorn", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 15, - "ability_score_intelligence": 11, - "ability_score_wisdom": 17, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Unicorn", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 67, - "type": "celestial", - "category": "Monsters", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "vampire", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 18, - "ability_score_constitution": 18, - "ability_score_intelligence": 17, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 9, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Vampire", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 144, - "type": "undead", - "category": "Monsters; Vampires", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "vampire-spawn", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 16, - "ability_score_constitution": 16, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Vampire Spawn", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 82, - "type": "undead", - "category": "Monsters; Vampires", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "violet-fungus", - "fields": { - "ability_score_strength": 3, - "ability_score_dexterity": 1, - "ability_score_constitution": 10, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Violet Fungus", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 5, - "hit_points": 18, - "type": "plant", - "category": "Monsters; Fungi", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "vrock", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 15, - "ability_score_constitution": 18, - "ability_score_intelligence": 8, - "ability_score_wisdom": 13, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 2, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Vrock", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 104, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "warhorse", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 11, - "name": "Warhorse", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 11, - "hit_points": 19, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "warhorse-skeleton", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 12, - "ability_score_constitution": 15, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Warhorse Skeleton", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 22, - "type": "undead", - "category": "Monsters; Skeletons", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "water-elemental", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 18, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Water Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 114, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "werebear", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Werebear", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 135, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "neutral good" - } -}, -{ - "model": "api_v2.creature", - "pk": "wereboar", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Wereboar", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 78, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "wererat", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 15, - "ability_score_constitution": 12, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Wererat", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 33, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "weretiger", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Weretiger", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 120, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "werewolf", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 13, - "ability_score_constitution": 14, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Werewolf", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 58, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "white-dragon-wyrmling", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 10, - "ability_score_constitution": 14, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 2, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "White Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 32, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "wight", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Wight", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 45, - "type": "undead", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "will-o-wisp", - "fields": { - "ability_score_strength": 1, - "ability_score_dexterity": 28, - "ability_score_constitution": 10, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Will-o'-Wisp", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 19, - "hit_points": 22, - "type": "undead", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "wraith", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 16, - "ability_score_constitution": 16, - "ability_score_intelligence": 12, - "ability_score_wisdom": 14, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Wraith", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 67, - "type": "undead", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "wyvern", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 12, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Wyvern", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 110, - "type": "dragon", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "xorn", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Xorn", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 19, - "hit_points": 73, - "type": "elemental", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-black-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 14, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Young Black Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 127, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-blue-dragon", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 10, - "ability_score_constitution": 19, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Young Blue Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 152, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-brass-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 5, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Young Brass Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 110, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-bronze-dragon", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 10, - "ability_score_constitution": 19, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 4, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Young Bronze Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 142, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-copper-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 12, - "ability_score_constitution": 17, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Young Copper Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 119, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-gold-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 14, - "ability_score_constitution": 21, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 5, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 9, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Young Gold Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 178, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-green-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 12, - "ability_score_constitution": 17, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Young Green Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 136, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-red-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 10, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Young Red Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 178, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-silver-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 10, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 6, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 6, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Young Silver Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 168, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-white-dragon", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 18, - "ability_score_intelligence": 6, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Young White Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 133, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "zombie", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 6, - "ability_score_constitution": 16, - "ability_score_intelligence": 3, - "ability_score_wisdom": 6, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 0, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Zombie", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 8, - "hit_points": 22, - "type": "undead", - "category": "Monsters; Zombies", - "alignment": "neutral evil" - } -} -] + { + "model": "api_v2.creature", + "pk": "srd_aboleth", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 9, + "ability_score_constitution": 15, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 6, + "saving_throw_intelligence": 8, + "saving_throw_wisdom": 6, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 12, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 10, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 20, + "name": "Aboleth", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 135, + "type": "aberration", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-black-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 14, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult Black Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 195, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-blue-dragon", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 23, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Blue Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 225, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-brass-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 10, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 7, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 8, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult Brass Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 172, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-bronze-dragon", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 23, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 7, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Bronze Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 212, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-copper-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 12, + "ability_score_constitution": 21, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 8, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Copper Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 184, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-gold-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 14, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 24, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 13, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 8, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 14, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 13, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 24, + "name": "Adult Gold Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 256, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-green-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 12, + "ability_score_constitution": 21, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 8, + "skill_bonus_history": null, + "skill_bonus_insight": 7, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 8, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Green Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 207, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-red-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 13, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 23, + "name": "Adult Red Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 256, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-silver-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 12, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 10, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 8, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 8, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult Silver Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 243, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-white-dragon", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 8, + "ability_score_wisdom": 12, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult White Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 200, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_air-elemental", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 20, + "ability_score_constitution": 14, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Air Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 90, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-black-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 14, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 9, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 16, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 26, + "name": "Ancient Black Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 367, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-blue-dragon", + "fields": { + "ability_score_strength": 29, + "ability_score_dexterity": 10, + "ability_score_constitution": 27, + "ability_score_intelligence": 18, + "ability_score_wisdom": 17, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 15, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Blue Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 481, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-brass-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 10, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 9, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 14, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 10, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 24, + "name": "Ancient Brass Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 20, + "hit_points": 297, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-bronze-dragon", + "fields": { + "ability_score_strength": 29, + "ability_score_dexterity": 10, + "ability_score_constitution": 27, + "ability_score_intelligence": 18, + "ability_score_wisdom": 17, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 15, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 10, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Bronze Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 444, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-copper-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 12, + "ability_score_constitution": 25, + "ability_score_intelligence": 20, + "ability_score_wisdom": 17, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 11, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Copper Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 21, + "hit_points": 350, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-gold-dragon", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 14, + "ability_score_constitution": 29, + "ability_score_intelligence": 18, + "ability_score_wisdom": 17, + "ability_score_charisma": 28, + "saving_throw_strength": null, + "saving_throw_dexterity": 9, + "saving_throw_constitution": 16, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 16, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 10, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 16, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Gold Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 546, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-green-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 12, + "ability_score_constitution": 25, + "ability_score_intelligence": 20, + "ability_score_wisdom": 17, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 11, + "skill_bonus_history": null, + "skill_bonus_insight": 10, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 11, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Green Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 21, + "hit_points": 385, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-red-dragon", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 10, + "ability_score_constitution": 29, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 23, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 16, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 13, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 16, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 26, + "name": "Ancient Red Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 546, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-silver-dragon", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 10, + "ability_score_constitution": 29, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 23, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 16, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 13, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 11, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 11, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 16, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 26, + "name": "Ancient Silver Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 487, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-white-dragon", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 10, + "ability_score_constitution": 26, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 13, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 23, + "name": "Ancient White Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 20, + "hit_points": 333, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_androsphinx", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 10, + "ability_score_constitution": 20, + "ability_score_intelligence": 16, + "ability_score_wisdom": 18, + "ability_score_charisma": 23, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 11, + "saving_throw_intelligence": 9, + "saving_throw_wisdom": 10, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 9, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 10, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": 15, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 20, + "name": "Androsphinx", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 199, + "type": "monstrosity", + "category": "Monsters; Sphinxes", + "alignment": "lawful neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_animated-armor", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 11, + "ability_score_constitution": 13, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Animated Armor", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 33, + "type": "construct", + "category": "Monsters; Animated Objects", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ankheg", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 11, + "ability_score_constitution": 13, + "ability_score_intelligence": 1, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Ankheg", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 39, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_azer", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 12, + "ability_score_constitution": 15, + "ability_score_intelligence": 12, + "ability_score_wisdom": 13, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Azer", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 39, + "type": "elemental", + "category": "Monsters", + "alignment": "lawful neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_balor", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 15, + "ability_score_constitution": 22, + "ability_score_intelligence": 20, + "ability_score_wisdom": 16, + "ability_score_charisma": 22, + "saving_throw_strength": 14, + "saving_throw_dexterity": null, + "saving_throw_constitution": 12, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Balor", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 262, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_barbed-devil", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 17, + "ability_score_constitution": 18, + "ability_score_intelligence": 12, + "ability_score_wisdom": 14, + "ability_score_charisma": 14, + "saving_throw_strength": 6, + "saving_throw_dexterity": null, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": 5, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Barbed Devil", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 110, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_basilisk", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 8, + "ability_score_constitution": 15, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Basilisk", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 52, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_bearded-devil", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 15, + "ability_score_constitution": 15, + "ability_score_intelligence": 9, + "ability_score_wisdom": 11, + "ability_score_charisma": 11, + "saving_throw_strength": 5, + "saving_throw_dexterity": null, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Bearded Devil", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 52, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_behir", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 7, + "ability_score_wisdom": 14, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Behir", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 17, + "hit_points": 168, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_black-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 13, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Black Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 33, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_black-pudding", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 5, + "ability_score_constitution": 16, + "ability_score_intelligence": 1, + "ability_score_wisdom": 6, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Black Pudding", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 7, + "hit_points": 85, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_blue-dragon-wyrmling", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Blue Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 52, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_bone-devil", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 5, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 7, + "skill_bonus_history": null, + "skill_bonus_insight": 6, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Bone Devil", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 142, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_brass-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Brass Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 16, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_bronze-dragon-wyrmling", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Bronze Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 32, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_bugbear", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 13, + "ability_score_intelligence": 8, + "ability_score_wisdom": 11, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": 2, + "passive_perception": 10, + "name": "Bugbear", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 27, + "type": "humanoid", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_bulette", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 11, + "ability_score_constitution": 21, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Bulette", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 94, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_camel", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 8, + "ability_score_constitution": 14, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 9, + "name": "Camel", + "document": "srd", + "size": "large", + "weight": "600.000", + "armor_class": 9, + "hit_points": 15, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_centaur", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 14, + "ability_score_intelligence": 9, + "ability_score_wisdom": 13, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 6, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": 3, + "passive_perception": 13, + "name": "Centaur", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 45, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_chain-devil", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 18, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Chain Devil", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 85, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_chimera", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 11, + "ability_score_constitution": 19, + "ability_score_intelligence": 3, + "ability_score_wisdom": 14, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Chimera", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 114, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_chuul", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 11, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Chuul", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 16, + "hit_points": 93, + "type": "aberration", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_clay-golem", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 9, + "ability_score_constitution": 18, + "ability_score_intelligence": 3, + "ability_score_wisdom": 8, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Clay Golem", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 133, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_cloaker", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 15, + "ability_score_constitution": 12, + "ability_score_intelligence": 13, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Cloaker", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 78, + "type": "aberration", + "category": "Monsters", + "alignment": "chaotic neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_cloud-giant", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 12, + "ability_score_wisdom": 16, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 7, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Cloud Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 14, + "hit_points": 200, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "neutral good (50%) or neutral evil (50%)" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_cockatrice", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 2, + "ability_score_wisdom": 13, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Cockatrice", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 27, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_copper-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Copper Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 22, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_couatl", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 20, + "ability_score_constitution": 17, + "ability_score_intelligence": 18, + "ability_score_wisdom": 20, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Couatl", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 19, + "hit_points": 97, + "type": "celestial", + "category": "Monsters", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_darkmantle", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Darkmantle", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 22, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_deva", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 18, + "ability_score_constitution": 18, + "ability_score_intelligence": 17, + "ability_score_wisdom": 20, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 9, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Deva", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 136, + "type": "celestial", + "category": "Monsters; Angels", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_djinni", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 15, + "ability_score_constitution": 22, + "ability_score_intelligence": 15, + "ability_score_wisdom": 16, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Djinni", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 161, + "type": "elemental", + "category": "Monsters; Genies", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_donkey", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Donkey", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 11, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_doppelganger", + "fields": { + "ability_score_strength": 11, + "ability_score_dexterity": 18, + "ability_score_constitution": 14, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 6, + "skill_bonus_history": null, + "skill_bonus_insight": 3, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Doppelganger", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 52, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_draft-horse", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 12, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Draft Horse", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 10, + "hit_points": 19, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_dragon-turtle", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 20, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Dragon Turtle", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 20, + "hit_points": 341, + "type": "dragon", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_dretch", + "fields": { + "ability_score_strength": 11, + "ability_score_dexterity": 11, + "ability_score_constitution": 12, + "ability_score_intelligence": 5, + "ability_score_wisdom": 8, + "ability_score_charisma": 3, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Dretch", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 18, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_drider", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Drider", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 123, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_dryad", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 12, + "ability_score_constitution": 11, + "ability_score_intelligence": 14, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Dryad", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 22, + "type": "fey", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_duergar", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 11, + "ability_score_constitution": 14, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Duergar", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 26, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_dust-mephit", + "fields": { + "ability_score_strength": 5, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 9, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Dust Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 12, + "hit_points": 17, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_earth-elemental", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 8, + "ability_score_constitution": 20, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Earth Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 126, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_efreeti", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 12, + "ability_score_constitution": 24, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 7, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Efreeti", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 200, + "type": "elemental", + "category": "Monsters; Genies", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_elephant", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 9, + "ability_score_constitution": 17, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 6, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Elephant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 12, + "hit_points": 76, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_elf-drow", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 11, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Elf, Drow", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 13, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_erinyes", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 14, + "ability_score_wisdom": 14, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Erinyes", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 153, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ettercap", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 15, + "ability_score_constitution": 13, + "ability_score_intelligence": 7, + "ability_score_wisdom": 12, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": 3, + "passive_perception": 13, + "name": "Ettercap", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 44, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ettin", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 8, + "ability_score_constitution": 17, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Ettin", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 85, + "type": "giant", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_fire-elemental", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 17, + "ability_score_constitution": 16, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Fire Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 102, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_fire-giant", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 9, + "ability_score_constitution": 23, + "ability_score_intelligence": 10, + "ability_score_wisdom": 14, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 11, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Fire Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 162, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_flesh-golem", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 9, + "ability_score_constitution": 18, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Flesh Golem", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 9, + "hit_points": 93, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_flying-sword", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 15, + "ability_score_constitution": 11, + "ability_score_intelligence": 1, + "ability_score_wisdom": 5, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 7, + "name": "Flying Sword", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 17, + "hit_points": 17, + "type": "construct", + "category": "Monsters; Animated Objects", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_frost-giant", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 9, + "ability_score_constitution": 21, + "ability_score_intelligence": 9, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 9, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Frost Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 15, + "hit_points": 138, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gargoyle", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 11, + "ability_score_constitution": 16, + "ability_score_intelligence": 6, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Gargoyle", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 52, + "type": "elemental", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gelatinous-cube", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 3, + "ability_score_constitution": 20, + "ability_score_intelligence": 1, + "ability_score_wisdom": 6, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Gelatinous Cube", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 6, + "hit_points": 84, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ghast", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 17, + "ability_score_constitution": 10, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Ghast", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 36, + "type": "undead", + "category": "Monsters; Ghouls", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ghost", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 13, + "ability_score_constitution": 10, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Ghost", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 45, + "type": "undead", + "category": "Monsters", + "alignment": "any alignment" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ghoul", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 15, + "ability_score_constitution": 10, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Ghoul", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 22, + "type": "undead", + "category": "Monsters; Ghouls", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gibbering-mouther", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 8, + "ability_score_constitution": 16, + "ability_score_intelligence": 3, + "ability_score_wisdom": 10, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Gibbering Mouther", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 9, + "hit_points": 67, + "type": "aberration", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_glabrezu", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 15, + "ability_score_constitution": 21, + "ability_score_intelligence": 19, + "ability_score_wisdom": 17, + "ability_score_charisma": 16, + "saving_throw_strength": 9, + "saving_throw_dexterity": null, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Glabrezu", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 157, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gnoll", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 12, + "ability_score_constitution": 11, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Gnoll", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 22, + "type": "humanoid", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gnome-deep-svirfneblin", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 14, + "ability_score_intelligence": 12, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": 3, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Gnome, Deep (Svirfneblin)", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 15, + "hit_points": 16, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_goblin", + "fields": { + "ability_score_strength": 8, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 10, + "ability_score_wisdom": 8, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Goblin", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 15, + "hit_points": 7, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gold-dragon-wyrmling", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 14, + "ability_score_constitution": 17, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Gold Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 60, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gorgon", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 11, + "ability_score_constitution": 18, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Gorgon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 114, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gray-ooze", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 6, + "ability_score_constitution": 16, + "ability_score_intelligence": 1, + "ability_score_wisdom": 6, + "ability_score_charisma": 2, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Gray Ooze", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 8, + "hit_points": 22, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_green-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Green Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 38, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_green-hag", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 12, + "ability_score_constitution": 16, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 3, + "skill_bonus_athletics": null, + "skill_bonus_deception": 4, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Green Hag", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 82, + "type": "fey", + "category": "Monsters; Hags", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_grick", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 14, + "ability_score_constitution": 11, + "ability_score_intelligence": 3, + "ability_score_wisdom": 14, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Grick", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 27, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_griffon", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 2, + "ability_score_wisdom": 13, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Griffon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 59, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_grimlock", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 9, + "ability_score_wisdom": 8, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 5, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Grimlock", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 11, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_guardian-naga", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 18, + "ability_score_constitution": 16, + "ability_score_intelligence": 16, + "ability_score_wisdom": 19, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 7, + "saving_throw_intelligence": 7, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Guardian Naga", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 127, + "type": "monstrosity", + "category": "Monsters; Nagas", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gynosphinx", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 18, + "ability_score_wisdom": 18, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 12, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 12, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": 8, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Gynosphinx", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 136, + "type": "monstrosity", + "category": "Monsters; Sphinxes", + "alignment": "lawful neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_half-red-dragon-veteran", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 13, + "ability_score_constitution": 14, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 5, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Half-Red Dragon Veteran", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 65, + "type": "humanoid", + "category": "Monsters; Half-Dragon Template", + "alignment": "any alignment" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_harpy", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 13, + "ability_score_constitution": 12, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Harpy", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 38, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_hell-hound", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 12, + "ability_score_constitution": 14, + "ability_score_intelligence": 6, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Hell Hound", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 45, + "type": "fiend", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_hezrou", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 17, + "ability_score_constitution": 20, + "ability_score_intelligence": 5, + "ability_score_wisdom": 12, + "ability_score_charisma": 13, + "saving_throw_strength": 7, + "saving_throw_dexterity": null, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Hezrou", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 16, + "hit_points": 136, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_hill-giant", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 8, + "ability_score_constitution": 19, + "ability_score_intelligence": 5, + "ability_score_wisdom": 9, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Hill Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 13, + "hit_points": 105, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_hippogriff", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 13, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Hippogriff", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 11, + "hit_points": 19, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_hobgoblin", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 10, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Hobgoblin", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 11, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_homunculus", + "fields": { + "ability_score_strength": 4, + "ability_score_dexterity": 15, + "ability_score_constitution": 11, + "ability_score_intelligence": 10, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Homunculus", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 5, + "type": "construct", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_horned-devil", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 17, + "ability_score_constitution": 21, + "ability_score_intelligence": 12, + "ability_score_wisdom": 16, + "ability_score_charisma": 17, + "saving_throw_strength": 10, + "saving_throw_dexterity": 7, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Horned Devil", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 178, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_hydra", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 12, + "ability_score_constitution": 20, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Hydra", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 15, + "hit_points": 172, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ice-devil", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 14, + "ability_score_constitution": 18, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Ice Devil", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 180, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ice-mephit", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 13, + "ability_score_constitution": 10, + "ability_score_intelligence": 9, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Ice Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 21, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_imp", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 17, + "ability_score_constitution": 13, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 4, + "skill_bonus_history": null, + "skill_bonus_insight": 3, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 4, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Imp", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 10, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_invisible-stalker", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 19, + "ability_score_constitution": 14, + "ability_score_intelligence": 10, + "ability_score_wisdom": 15, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 10, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Invisible Stalker", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 104, + "type": "elemental", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_iron-golem", + "fields": { + "ability_score_strength": 24, + "ability_score_dexterity": 9, + "ability_score_constitution": 20, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Iron Golem", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 20, + "hit_points": 210, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_kobold", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 15, + "ability_score_constitution": 9, + "ability_score_intelligence": 8, + "ability_score_wisdom": 7, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Kobold", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 12, + "hit_points": 5, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_kraken", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 11, + "ability_score_constitution": 25, + "ability_score_intelligence": 22, + "ability_score_wisdom": 18, + "ability_score_charisma": 20, + "saving_throw_strength": 17, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 14, + "saving_throw_intelligence": 13, + "saving_throw_wisdom": 11, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Kraken", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 18, + "hit_points": 472, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_lamia", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 13, + "ability_score_constitution": 15, + "ability_score_intelligence": 14, + "ability_score_wisdom": 15, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 7, + "skill_bonus_history": null, + "skill_bonus_insight": 4, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Lamia", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 97, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_lemure", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 5, + "ability_score_constitution": 11, + "ability_score_intelligence": 1, + "ability_score_wisdom": 11, + "ability_score_charisma": 3, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Lemure", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 7, + "hit_points": 13, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_lich", + "fields": { + "ability_score_strength": 11, + "ability_score_dexterity": 16, + "ability_score_constitution": 16, + "ability_score_intelligence": 20, + "ability_score_wisdom": 14, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": 12, + "saving_throw_wisdom": 9, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 18, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 12, + "skill_bonus_insight": 9, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Lich", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 135, + "type": "undead", + "category": "Monsters", + "alignment": "any evil alignment" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_lizardfolk", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 7, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": 5, + "passive_perception": 13, + "name": "Lizardfolk", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 22, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_magma-mephit", + "fields": { + "ability_score_strength": 8, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Magma Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 22, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_magmin", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 15, + "ability_score_constitution": 12, + "ability_score_intelligence": 8, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Magmin", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 14, + "hit_points": 9, + "type": "elemental", + "category": "Monsters", + "alignment": "chaotic neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_manticore", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 16, + "ability_score_constitution": 17, + "ability_score_intelligence": 7, + "ability_score_wisdom": 12, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Manticore", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 68, + "type": "monstrosity", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_marilith", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 20, + "ability_score_constitution": 20, + "ability_score_intelligence": 18, + "ability_score_wisdom": 16, + "ability_score_charisma": 20, + "saving_throw_strength": 9, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 10, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Marilith", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 189, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_mastiff", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 14, + "ability_score_constitution": 12, + "ability_score_intelligence": 3, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 2, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 13, + "name": "Mastiff", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 5, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_medusa", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 12, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": 4, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Medusa", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 127, + "type": "monstrosity", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_merfolk", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 13, + "ability_score_constitution": 12, + "ability_score_intelligence": 11, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Merfolk", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 11, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_merrow", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 8, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Merrow", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 45, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_mimic", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 12, + "ability_score_constitution": 15, + "ability_score_intelligence": 5, + "ability_score_wisdom": 13, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Mimic", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 58, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_minotaur", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 11, + "ability_score_constitution": 16, + "ability_score_intelligence": 6, + "ability_score_wisdom": 16, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Minotaur", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 76, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_minotaur-skeleton", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 11, + "ability_score_constitution": 15, + "ability_score_intelligence": 6, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Minotaur Skeleton", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 67, + "type": "undead", + "category": "Monsters; Skeletons", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_mule", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Mule", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 11, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_mummy", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 8, + "ability_score_constitution": 15, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Mummy", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 58, + "type": "undead", + "category": "Monsters; Mummies", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_mummy-lord", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 11, + "ability_score_wisdom": 18, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 8, + "saving_throw_intelligence": 5, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 5, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": 5, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Mummy Lord", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 97, + "type": "undead", + "category": "Monsters; Mummies", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_nalfeshnee", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 19, + "ability_score_wisdom": 12, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 11, + "saving_throw_intelligence": 9, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Nalfeshnee", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 184, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_night-hag", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 16, + "ability_score_wisdom": 14, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 7, + "skill_bonus_history": null, + "skill_bonus_insight": 6, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Night Hag", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 112, + "type": "fiend", + "category": "Monsters; Hags", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_nightmare", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Nightmare", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 68, + "type": "fiend", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ochre-jelly", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 6, + "ability_score_constitution": 14, + "ability_score_intelligence": 2, + "ability_score_wisdom": 6, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Ochre Jelly", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 8, + "hit_points": 45, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ogre", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 8, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 7, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Ogre", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 11, + "hit_points": 59, + "type": "giant", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ogre-zombie", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 6, + "ability_score_constitution": 18, + "ability_score_intelligence": 3, + "ability_score_wisdom": 6, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 0, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Ogre Zombie", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 8, + "hit_points": 85, + "type": "undead", + "category": "Monsters; Zombies", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_oni", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 11, + "ability_score_constitution": 16, + "ability_score_intelligence": 14, + "ability_score_wisdom": 12, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 5, + "skill_bonus_athletics": null, + "skill_bonus_deception": 8, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Oni", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 16, + "hit_points": 110, + "type": "giant", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_orc", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 12, + "ability_score_constitution": 16, + "ability_score_intelligence": 7, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": 2, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Orc", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 15, + "type": "humanoid", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_otyugh", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 11, + "ability_score_constitution": 19, + "ability_score_intelligence": 6, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Otyugh", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 114, + "type": "aberration", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_owlbear", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 12, + "ability_score_constitution": 17, + "ability_score_intelligence": 3, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Owlbear", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 59, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_pegasus", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 15, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Pegasus", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 59, + "type": "celestial", + "category": "Monsters", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_pit-fiend", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 14, + "ability_score_constitution": 24, + "ability_score_intelligence": 22, + "ability_score_wisdom": 18, + "ability_score_charisma": 24, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Pit Fiend", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 300, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_planetar", + "fields": { + "ability_score_strength": 24, + "ability_score_dexterity": 20, + "ability_score_constitution": 24, + "ability_score_intelligence": 19, + "ability_score_wisdom": 22, + "ability_score_charisma": 25, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 12, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 11, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Planetar", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 200, + "type": "celestial", + "category": "Monsters; Angels", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_plesiosaurus", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Plesiosaurus", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 68, + "type": "beast", + "category": "Monsters; Dinosaurs", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_pony", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Pony", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 11, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_pseudodragon", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 15, + "ability_score_constitution": 13, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Pseudodragon", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 7, + "type": "dragon", + "category": "Monsters", + "alignment": "neutral good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_purple-worm", + "fields": { + "ability_score_strength": 28, + "ability_score_dexterity": 7, + "ability_score_constitution": 22, + "ability_score_intelligence": 1, + "ability_score_wisdom": 8, + "ability_score_charisma": 4, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Purple Worm", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 18, + "hit_points": 247, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_quasit", + "fields": { + "ability_score_strength": 5, + "ability_score_dexterity": 17, + "ability_score_constitution": 10, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Quasit", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 7, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_rakshasa", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 17, + "ability_score_constitution": 18, + "ability_score_intelligence": 13, + "ability_score_wisdom": 16, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 10, + "skill_bonus_history": null, + "skill_bonus_insight": 8, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Rakshasa", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 110, + "type": "fiend", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_red-dragon-wyrmling", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Red Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 75, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_remorhaz", + "fields": { + "ability_score_strength": 24, + "ability_score_dexterity": 13, + "ability_score_constitution": 21, + "ability_score_intelligence": 4, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Remorhaz", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 17, + "hit_points": 195, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_riding-horse", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 10, + "ability_score_constitution": 12, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Riding Horse", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 10, + "hit_points": 13, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_roc", + "fields": { + "ability_score_strength": 28, + "ability_score_dexterity": 10, + "ability_score_constitution": 20, + "ability_score_intelligence": 3, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Roc", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 15, + "hit_points": 248, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_roper", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 8, + "ability_score_constitution": 17, + "ability_score_intelligence": 7, + "ability_score_wisdom": 16, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Roper", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 20, + "hit_points": 93, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_rug-of-smothering", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Rug of Smothering", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 33, + "type": "construct", + "category": "Monsters; Animated Objects", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_rust-monster", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Rust Monster", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 27, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_sahuagin", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 11, + "ability_score_constitution": 12, + "ability_score_intelligence": 12, + "ability_score_wisdom": 13, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Sahuagin", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 22, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_salamander", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 15, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Salamander", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 90, + "type": "elemental", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_satyr", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 16, + "ability_score_constitution": 11, + "ability_score_intelligence": 12, + "ability_score_wisdom": 10, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": 6, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Satyr", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 31, + "type": "fey", + "category": "Monsters", + "alignment": "chaotic neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_sea-hag", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 13, + "ability_score_constitution": 16, + "ability_score_intelligence": 12, + "ability_score_wisdom": 12, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Sea Hag", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 52, + "type": "fey", + "category": "Monsters; Hags", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_shadow", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 14, + "ability_score_constitution": 13, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Shadow", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 16, + "type": "undead", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_shambling-mound", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 8, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Shambling Mound", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 136, + "type": "plant", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_shield-guardian", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 8, + "ability_score_constitution": 18, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 3, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Shield Guardian", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 142, + "type": "construct", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_shrieker", + "fields": { + "ability_score_strength": 1, + "ability_score_dexterity": 1, + "ability_score_constitution": 10, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Shrieker", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 5, + "hit_points": 13, + "type": "plant", + "category": "Monsters; Fungi", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_silver-dragon-wyrmling", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Silver Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 45, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_skeleton", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 14, + "ability_score_constitution": 15, + "ability_score_intelligence": 6, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Skeleton", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 13, + "type": "undead", + "category": "Monsters; Skeletons", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_solar", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 22, + "ability_score_constitution": 26, + "ability_score_intelligence": 25, + "ability_score_wisdom": 25, + "ability_score_charisma": 30, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 14, + "saving_throw_wisdom": 14, + "saving_throw_charisma": 17, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 14, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 24, + "name": "Solar", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 21, + "hit_points": 243, + "type": "celestial", + "category": "Monsters; Angels", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_specter", + "fields": { + "ability_score_strength": 1, + "ability_score_dexterity": 14, + "ability_score_constitution": 11, + "ability_score_intelligence": 10, + "ability_score_wisdom": 10, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Specter", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 22, + "type": "undead", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_spirit-naga", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 17, + "ability_score_constitution": 14, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Spirit Naga", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 75, + "type": "monstrosity", + "category": "Monsters; Nagas", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_sprite", + "fields": { + "ability_score_strength": 3, + "ability_score_dexterity": 18, + "ability_score_constitution": 10, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Sprite", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 15, + "hit_points": 2, + "type": "fey", + "category": "Monsters", + "alignment": "neutral good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_steam-mephit", + "fields": { + "ability_score_strength": 5, + "ability_score_dexterity": 11, + "ability_score_constitution": 10, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Steam Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 10, + "hit_points": 21, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_stirge", + "fields": { + "ability_score_strength": 4, + "ability_score_dexterity": 16, + "ability_score_constitution": 11, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Stirge", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 14, + "hit_points": 2, + "type": "beast", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_stone-giant", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 15, + "ability_score_constitution": 20, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 12, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Stone Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 17, + "hit_points": 126, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_stone-golem", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 9, + "ability_score_constitution": 20, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Stone Golem", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 178, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_storm-giant", + "fields": { + "ability_score_strength": 29, + "ability_score_dexterity": 14, + "ability_score_constitution": 20, + "ability_score_intelligence": 16, + "ability_score_wisdom": 18, + "ability_score_charisma": 18, + "saving_throw_strength": 14, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 8, + "skill_bonus_athletics": 14, + "skill_bonus_deception": null, + "skill_bonus_history": 8, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Storm Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 16, + "hit_points": 230, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_succubusincubus", + "fields": { + "ability_score_strength": 8, + "ability_score_dexterity": 17, + "ability_score_constitution": 13, + "ability_score_intelligence": 15, + "ability_score_wisdom": 12, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 9, + "skill_bonus_history": null, + "skill_bonus_insight": 5, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 9, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Succubus/Incubus", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 66, + "type": "fiend", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_tarrasque", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 11, + "ability_score_constitution": 30, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 5, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Tarrasque", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 25, + "hit_points": 676, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_treant", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 8, + "ability_score_constitution": 21, + "ability_score_intelligence": 12, + "ability_score_wisdom": 16, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Treant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 16, + "hit_points": 138, + "type": "plant", + "category": "Monsters", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_triceratops", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 9, + "ability_score_constitution": 17, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Triceratops", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 13, + "hit_points": 95, + "type": "beast", + "category": "Monsters; Dinosaurs", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_troll", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 13, + "ability_score_constitution": 20, + "ability_score_intelligence": 7, + "ability_score_wisdom": 9, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Troll", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 84, + "type": "giant", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_tyrannosaurus-rex", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 19, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Tyrannosaurus Rex", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 13, + "hit_points": 136, + "type": "beast", + "category": "Monsters; Dinosaurs", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_unicorn", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 15, + "ability_score_intelligence": 11, + "ability_score_wisdom": 17, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Unicorn", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 67, + "type": "celestial", + "category": "Monsters", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_vampire", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 18, + "ability_score_constitution": 18, + "ability_score_intelligence": 17, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 9, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Vampire", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 144, + "type": "undead", + "category": "Monsters; Vampires", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_vampire-spawn", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 16, + "ability_score_constitution": 16, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Vampire Spawn", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 82, + "type": "undead", + "category": "Monsters; Vampires", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_violet-fungus", + "fields": { + "ability_score_strength": 3, + "ability_score_dexterity": 1, + "ability_score_constitution": 10, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Violet Fungus", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 5, + "hit_points": 18, + "type": "plant", + "category": "Monsters; Fungi", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_vrock", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 15, + "ability_score_constitution": 18, + "ability_score_intelligence": 8, + "ability_score_wisdom": 13, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 2, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Vrock", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 104, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_warhorse", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 11, + "name": "Warhorse", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 11, + "hit_points": 19, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_warhorse-skeleton", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 12, + "ability_score_constitution": 15, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Warhorse Skeleton", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 22, + "type": "undead", + "category": "Monsters; Skeletons", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_water-elemental", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 18, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Water Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 114, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_werebear", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Werebear", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 135, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "neutral good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_wereboar", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Wereboar", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 78, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_wererat", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 15, + "ability_score_constitution": 12, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Wererat", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 33, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_weretiger", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Weretiger", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 120, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_werewolf", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 13, + "ability_score_constitution": 14, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Werewolf", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 58, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_white-dragon-wyrmling", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 10, + "ability_score_constitution": 14, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 2, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "White Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 32, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_wight", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Wight", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 45, + "type": "undead", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_will-o-wisp", + "fields": { + "ability_score_strength": 1, + "ability_score_dexterity": 28, + "ability_score_constitution": 10, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Will-o'-Wisp", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 19, + "hit_points": 22, + "type": "undead", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_wraith", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 16, + "ability_score_constitution": 16, + "ability_score_intelligence": 12, + "ability_score_wisdom": 14, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Wraith", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 67, + "type": "undead", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_wyvern", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 12, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Wyvern", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 110, + "type": "dragon", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_xorn", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Xorn", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 19, + "hit_points": 73, + "type": "elemental", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-black-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 14, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Young Black Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 127, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-blue-dragon", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 10, + "ability_score_constitution": 19, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Young Blue Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 152, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-brass-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 5, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Young Brass Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 110, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-bronze-dragon", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 10, + "ability_score_constitution": 19, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 4, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Young Bronze Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 142, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-copper-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 12, + "ability_score_constitution": 17, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Young Copper Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 119, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-gold-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 14, + "ability_score_constitution": 21, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 5, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 9, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Young Gold Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 178, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-green-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 12, + "ability_score_constitution": 17, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Young Green Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 136, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-red-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 10, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Young Red Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 178, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-silver-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 10, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 6, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 6, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Young Silver Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 168, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-white-dragon", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 18, + "ability_score_intelligence": 6, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Young White Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 133, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_zombie", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 6, + "ability_score_constitution": 16, + "ability_score_intelligence": 3, + "ability_score_wisdom": 6, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 0, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Zombie", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 8, + "hit_points": 22, + "type": "undead", + "category": "Monsters; Zombies", + "alignment": "neutral evil" + } + } +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/CreatureAction.json b/data/v2/wizards-of-the-coast/srd/CreatureAction.json index 5f8421a2..b4b59e07 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureAction.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureAction.json @@ -1,7108 +1,7108 @@ [ -{ - "model": "api_v2.creatureaction", - "pk": "aboleth_enslave", - "fields": { - "name": "Enslave", - "desc": "The aboleth targets one creature it can see within 30 feet of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the aboleth until the aboleth dies or until it is on a different plane of existence from the target. The charmed target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.\n\nWhenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.\n", - "parent": "aboleth", - "uses_type": "PER_DAY", - "uses_param": 3 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "aboleth_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The aboleth makes three tentacle attacks.\n", - "parent": "aboleth", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "aboleth_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) bludgeoning damage.\n", - "parent": "aboleth", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "aboleth_tentacle", - "fields": { - "name": "Tentacle", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 14 Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.\n", - "parent": "aboleth", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-black-dragon_acid-breath", - "fields": { - "name": "Acid Breath", - "desc": "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "adult-black-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-black-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) acid damage.\n", - "parent": "adult-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-black-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "adult-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-black-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-black-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-black-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "adult-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-blue-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage plus 5 (1d10) lightning damage.\n", - "parent": "adult-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-blue-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", - "parent": "adult-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-blue-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-blue-dragon_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "adult-blue-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-blue-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-blue-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", - "parent": "adult-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-brass-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "parent": "adult-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-brass-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "parent": "adult-brass-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-brass-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "adult-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-brass-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-brass-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-brass-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "adult-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage.\n", - "parent": "adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", - "parent": "adult-bronze-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", - "parent": "adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", - "parent": "adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-copper-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "parent": "adult-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-copper-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "parent": "adult-copper-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-copper-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "adult-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-copper-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-copper-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-copper-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "adult-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "parent": "adult-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "adult-gold-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "adult-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "adult-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "adult-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-green-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 7 (2d6) poison damage.\n", - "parent": "adult-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-green-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "adult-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-green-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-green-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-green-dragon_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "adult-green-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-green-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "adult-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-red-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 7 (2d6) fire damage.\n", - "parent": "adult-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-red-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "adult-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-red-dragon_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 63 (18d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "adult-red-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-red-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-red-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-red-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "adult-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "parent": "adult-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "adult-silver-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "adult-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "adult-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "adult-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-white-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) cold damage.\n", - "parent": "adult-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-white-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "adult-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-white-dragon_cold-breath", - "fields": { - "name": "Cold Breath", - "desc": "The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "adult-white-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-white-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 14 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-white-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-white-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "adult-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "air-elemental_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The elemental makes two slam attacks.\n", - "parent": "air-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "air-elemental_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", - "parent": "air-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "air-elemental_whirlwind", - "fields": { - "name": "Whirlwind", - "desc": "Each creature in the elemental's space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked prone. If a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone.\n\nIf the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.\n", - "parent": "air-elemental", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 4 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-black-dragon_acid-breath", - "fields": { - "name": "Acid Breath", - "desc": "The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ancient-black-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-black-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) acid damage.\n", - "parent": "ancient-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-black-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "ancient-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-black-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-black-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-black-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "ancient-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-blue-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage plus 11 (2d10) lightning damage.\n", - "parent": "ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-blue-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", - "parent": "ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-blue-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-blue-dragon_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ancient-blue-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-blue-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-blue-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", - "parent": "ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "parent": "ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons:\n\nFire Breath. The dragon exhales fire in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "parent": "ancient-brass-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage.\n", - "parent": "ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", - "parent": "ancient-bronze-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", - "parent": "ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", - "parent": "ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "parent": "ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "parent": "ancient-copper-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", - "parent": "ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "ancient-gold-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "parent": "ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 24 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "parent": "ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-green-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 10 (3d6) poison damage.\n", - "parent": "ancient-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-green-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 22 (4d6 + 8) slashing damage.\n", - "parent": "ancient-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-green-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-green-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-green-dragon_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 77 (22d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ancient-green-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-green-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "ancient-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-red-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage plus 14 (4d6) fire damage.\n", - "parent": "ancient-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-red-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "parent": "ancient-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-red-dragon_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 91 (26d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ancient-red-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-red-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-red-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-red-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "parent": "ancient-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", - "parent": "ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "ancient-silver-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "parent": "ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "parent": "ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-white-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) cold damage.\n", - "parent": "ancient-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-white-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "ancient-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-white-dragon_cold-breath", - "fields": { - "name": "Cold Breath", - "desc": "The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 72 (16d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ancient-white-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-white-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-white-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-white-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "ancient-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "androsphinx_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 17 (2d10 + 6) slashing damage.\n", - "parent": "androsphinx", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "androsphinx_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The sphinx makes two claw attacks.\n", - "parent": "androsphinx", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "androsphinx_roar", - "fields": { - "name": "Roar", - "desc": "The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.\n\nFirst Roar. Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nSecond Roar. Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThird Roar. Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.\n", - "parent": "androsphinx", - "uses_type": "PER_DAY", - "uses_param": 3 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "animated-armor_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The armor makes two melee attacks.\n", - "parent": "animated-armor", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "animated-armor_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", - "parent": "animated-armor", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ankheg_acid-spray", - "fields": { - "name": "Acid Spray", - "desc": "The ankheg spits acid in a line that is 30 feet long and 5 feet wide, provided that it has no creature grappled. Each creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ankheg", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ankheg_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage. If the target is a Large or smaller creature, it is grappled (escape DC 13). Until this grapple ends, the ankheg can bite only the grappled creature and has advantage on attack rolls to do so.\n", - "parent": "ankheg", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "azer_warhammer", - "fields": { - "name": "Warhammer", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", - "parent": "azer", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "balor_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) slashing damage plus 13 (3d8) lightning damage. If the balor scores a critical hit, it rolls damage dice three times, instead of twice.\n", - "parent": "balor", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "balor_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The balor makes two attacks: one with its longsword and one with its whip.\n", - "parent": "balor", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "balor_teleport", - "fields": { - "name": "Teleport", - "desc": "The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "parent": "balor", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "balor_whip", - "fields": { - "name": "Whip", - "desc": "Melee Weapon Attack: +14 to hit, reach 30 ft., one target. Hit: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage, and the target must succeed on a DC 20 Strength saving throw or be pulled up to 25 feet toward the balor.\n", - "parent": "balor", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "barbed-devil_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "barbed-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "barbed-devil_hurl-flame", - "fields": { - "name": "Hurl Flame", - "desc": "Ranged Spell Attack: +5 to hit, range 150 ft., one target. Hit: 10 (3d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", - "parent": "barbed-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "barbed-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice.\n", - "parent": "barbed-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "barbed-devil_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", - "parent": "barbed-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "basilisk_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage.\n", - "parent": "basilisk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bearded-devil_beard", - "fields": { - "name": "Beard", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. While poisoned in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "bearded-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bearded-devil_glaive", - "fields": { - "name": "Glaive", - "desc": "Melee Weapon Attack: +5 to hit, reach 10 ft., one target. Hit: 8 (1d10 + 3) slashing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 12 Constitution saving throw or lose 5 (1d10) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 (1d10). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", - "parent": "bearded-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bearded-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes two attacks: one with its beard and one with its glaive.\n", - "parent": "bearded-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "behir_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 22 (3d10 + 6) piercing damage.\n", - "parent": "behir", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "behir_constrict", - "fields": { - "name": "Constrict", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one Large or smaller creature. Hit: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage. The target is grappled (escape DC 16) if the behir isn't already constricting a creature, and the target is restrained until this grapple ends.\n", - "parent": "behir", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "behir_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The behir exhales a line of lightning that is 20 feet long and 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "behir", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "behir_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The behir makes two attacks: one with its bite and one to constrict.\n", - "parent": "behir", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "behir_swallow", - "fields": { - "name": "Swallow", - "desc": "The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the behir, and it takes 21 (6d6) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.\n\nIf the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 feet of the behir. If the behir dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 feet of movement, exiting prone.\n", - "parent": "behir", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "black-dragon-wyrmling_acid-breath", - "fields": { - "name": "Acid Breath", - "desc": "The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "black-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "black-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage.\n", - "parent": "black-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "black-pudding_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", - "parent": "black-pudding", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "blue-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage.\n", - "parent": "blue-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "blue-dragon-wyrmling_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "blue-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bone-devil_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", - "parent": "bone-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bone-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes three attacks: two with its claws and one with its sting.\n", - "parent": "bone-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bone-devil_sting", - "fields": { - "name": "Sting", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage, and the target must succeed on a DC 14 Constitution saving throw or become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "bone-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "brass-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", - "parent": "brass-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "brass-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "parent": "brass-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bronze-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", - "parent": "bronze-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bronze-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.\n", - "parent": "bronze-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bugbear_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at range.\n", - "parent": "bugbear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bugbear_morningstar", - "fields": { - "name": "Morningstar", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 11 (2d8 + 2) piercing damage.\n", - "parent": "bugbear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bulette_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 30 (4d12 + 4) piercing damage.\n", - "parent": "bulette", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bulette_deadly-leap", - "fields": { - "name": "Deadly Leap", - "desc": "If the bulette jumps at least 15 feet as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 feet out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the bulette's space.\n", - "parent": "bulette", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "centaur_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "centaur", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "centaur_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "parent": "centaur", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "centaur_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow.\n", - "parent": "centaur", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "centaur_pike", - "fields": { - "name": "Pike", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "parent": "centaur", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chain-devil_animate-chains", - "fields": { - "name": "Animate Chains", - "desc": "Up to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.\n\nEach animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is incapacitated or dies.\n", - "parent": "chain-devil", - "uses_type": "RECHARGE_AFTER_REST", - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chain-devil_chain", - "fields": { - "name": "Chain", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) slashing damage. The target is grappled (escape DC 14) if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained and takes 7 (2d6) piercing damage at the start of each of its turns.\n", - "parent": "chain-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chain-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes two attacks with its chains.\n", - "parent": "chain-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chimera_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", - "parent": "chimera", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chimera_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "chimera", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chimera_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 31 (7d8) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "chimera", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chimera_horns", - "fields": { - "name": "Horns", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) bludgeoning damage.\n", - "parent": "chimera", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chimera_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns.\n", - "parent": "chimera", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chuul_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once.\n", - "parent": "chuul", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chuul_pincer", - "fields": { - "name": "Pincer", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage. The target is grappled (escape DC 14) if it is a Large or smaller creature and the chuul doesn't have two other creatures grappled.\n", - "parent": "chuul", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chuul_tentacles", - "fields": { - "name": "Tentacles", - "desc": "One creature grappled by the chuul must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. Until this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "chuul", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "clay-golem_haste", - "fields": { - "name": "Haste", - "desc": "Until the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action.\n", - "parent": "clay-golem", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "clay-golem_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The golem makes two slam attacks.\n", - "parent": "clay-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "clay-golem_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the greater restoration spell or other magic.\n", - "parent": "clay-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloaker_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 10 (2d6 + 3) piercing damage, and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is blinded and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a DC 16 Strength check.\n", - "parent": "cloaker", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloaker_moan", - "fields": { - "name": "Moan", - "desc": "Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the cloaker's next turn. If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours\n", - "parent": "cloaker", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloaker_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The cloaker makes two attacks: one with its bite and one with its tail.\n", - "parent": "cloaker", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloaker_phantasms", - "fields": { - "name": "Phantasms", - "desc": "The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.\n\nWhenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.\n\nA duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.\n", - "parent": "cloaker", - "uses_type": "RECHARGE_AFTER_REST", - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloaker_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one creature. Hit: 7 (1d8 + 3) slashing damage.\n", - "parent": "cloaker", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloud-giant_morningstar", - "fields": { - "name": "Morningstar", - "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) piercing damage.\n", - "parent": "cloud-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloud-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two morningstar attacks.\n", - "parent": "cloud-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloud-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +12 to hit, range 60/240 ft., one target. Hit: 30 (4d10 + 8) bludgeoning damage.\n", - "parent": "cloud-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cockatrice_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) piercing damage, and the target must succeed on a DC 11 Constitution saving throw against being magically petrified. On a failed save, the creature begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified for 24 hours.\n", - "parent": "cockatrice", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "copper-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", - "parent": "copper-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "copper-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "parent": "copper-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "couatl_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one creature. Hit: 8 (1d6 + 5) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 24 hours. Until this poison ends, the target is unconscious. Another creature can use an action to shake the target awake.\n", - "parent": "couatl", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "couatl_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).\n\nIn a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form.\n", - "parent": "couatl", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "couatl_constrict", - "fields": { - "name": "Constrict", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one Medium or smaller creature. Hit: 10 (2d6 + 3) bludgeoning damage, and the target is grappled (escape DC 15). Until this grapple ends, the target is restrained, and the couatl can't constrict another target.\n", - "parent": "couatl", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "darkmantle_crush", - "fields": { - "name": "Crush", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d6 + 3) bludgeoning damage, and the darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also blinded and unable to breathe while the darkmantle is attached in this way.\n\nWhile attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.\n\nA creature can detach the darkmantle by making a successful DC 13 Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement.\n", - "parent": "darkmantle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "darkmantle_darkness-aura", - "fields": { - "name": "Darkness Aura", - "desc": "A 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains concentration, up to 10 minutes (as if concentrating on a spell). Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.\n", - "parent": "darkmantle", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "deva_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).\n\nIn a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks.\n", - "parent": "deva", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "deva_healing-touch", - "fields": { - "name": "Healing Touch", - "desc": "The deva touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "parent": "deva", - "uses_type": "PER_DAY", - "uses_param": 3 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "deva_mace", - "fields": { - "name": "Mace", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage.\n", - "parent": "deva", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "deva_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The deva makes two melee attacks.\n", - "parent": "deva", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "djinni_create-whirlwind", - "fields": { - "name": "Create Whirlwind", - "desc": "A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains concentration (as if concentrating on a spell). Any creature but the djinni that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.\n\nA creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.\n", - "parent": "djinni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "djinni_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The djinni makes three scimitar attacks.\n", - "parent": "djinni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "djinni_scimitar", - "fields": { - "name": "Scimitar", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (djinni's choice).\n", - "parent": "djinni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "doppelganger_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The doppelganger makes two melee attacks.\n", - "parent": "doppelganger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "doppelganger_read-thoughts", - "fields": { - "name": "Read Thoughts", - "desc": "The doppelganger magically reads the surface thoughts of one creature within 60 feet of it. The effect can penetrate barriers, but 3 feet of wood or dirt, 2 feet of stone, 2 inches of metal, or a thin sheet of lead blocks it. While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.\n", - "parent": "doppelganger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "doppelganger_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage.\n", - "parent": "doppelganger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dragon-turtle_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) piercing damage.\n", - "parent": "dragon-turtle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dragon-turtle_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 16 (2d8 + 7) slashing damage.\n", - "parent": "dragon-turtle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dragon-turtle_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks.\n", - "parent": "dragon-turtle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dragon-turtle_steam-breath", - "fields": { - "name": "Steam Breath", - "desc": "The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage.\n", - "parent": "dragon-turtle", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dragon-turtle_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked prone.\n", - "parent": "dragon-turtle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dretch_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 3 (1d6) piercing damage.\n", - "parent": "dretch", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dretch_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 5 (2d4) slashing damage.\n", - "parent": "dretch", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dretch_fetid-cloud", - "fields": { - "name": "Fetid Cloud", - "desc": "A 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it. Any creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions.\n", - "parent": "dretch", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dretch_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dretch makes two attacks: one with its bite and one with its claws.\n", - "parent": "dretch", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "drider_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 2 (1d4) piercing damage plus 9 (2d8) poison damage.\n", - "parent": "drider", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "drider_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +6 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage.\n", - "parent": "drider", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "drider_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", - "parent": "drider", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "drider_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack.\n", - "parent": "drider", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dryad_club", - "fields": { - "name": "Club", - "desc": "Melee Weapon Attack: +2 to hit (+6 to hit with shillelagh), reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with shillelagh.\n", - "parent": "dryad", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dryad_fey-charm", - "fields": { - "name": "Fey Charm", - "desc": "The dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a DC 14 Wisdom saving throw or be magically charmed. The charmed creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.\n\nEach time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.\n\nThe dryad can have no more than one humanoid and up to three beasts charmed at a time.\n", - "parent": "dryad", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "duergar_enlarge", - "fields": { - "name": "Enlarge", - "desc": "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available.\n", - "parent": "duergar", - "uses_type": "RECHARGE_AFTER_REST", - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "duergar_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The duergar magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell). Any equipment the duergar wears or carries is invisible with it.\n", - "parent": "duergar", - "uses_type": "RECHARGE_AFTER_REST", - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "duergar_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarged.\n", - "parent": "duergar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "duergar_war-pick", - "fields": { - "name": "War Pick", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage, or 11 (2d8 + 2) piercing damage while enlarged.\n", - "parent": "duergar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dust-mephit_blinding-breath", - "fields": { - "name": "Blinding Breath", - "desc": "The mephit exhales a 15-foot cone of blinding dust. Each creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "dust-mephit", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dust-mephit_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) slashing damage.\n", - "parent": "dust-mephit", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "earth-elemental_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The elemental makes two slam attacks.\n", - "parent": "earth-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "earth-elemental_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", - "parent": "earth-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "efreeti_hurl-flame", - "fields": { - "name": "Hurl Flame", - "desc": "Ranged Spell Attack: +7 to hit, range 120 ft., one target. Hit: 17 (5d6) fire damage.\n", - "parent": "efreeti", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "efreeti_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The efreeti makes two scimitar attacks or uses its Hurl Flame twice.\n", - "parent": "efreeti", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "efreeti_scimitar", - "fields": { - "name": "Scimitar", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage plus 7 (2d6) fire damage.\n", - "parent": "efreeti", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "elf-drow_hand-crossbow", - "fields": { - "name": "Hand Crossbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake.\n", - "parent": "elf-drow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "elf-drow_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "elf-drow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "erinyes_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +7 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 13 (3d8) poison damage, and the target must succeed on a DC 14 Constitution saving throw or be poisoned. The poison lasts until it is removed by the lesser restoration spell or similar magic.\n", - "parent": "erinyes", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "erinyes_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands, plus 13 (3d8) poison damage.\n", - "parent": "erinyes", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "erinyes_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The erinyes makes three attacks.\n", - "parent": "erinyes", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettercap_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage plus 4 (1d8) poison damage. The target must succeed on a DC 11 Constitution saving throw or be poisoned for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "ettercap", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettercap_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.\n", - "parent": "ettercap", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettercap_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The ettercap makes two attacks: one with its bite and one with its claws.\n", - "parent": "ettercap", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettercap_web", - "fields": { - "name": "Web", - "desc": "Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing. As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect also ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, vulnerability to fire damage, and immunity to bludgeoning, poison, and psychic damage.\n", - "parent": "ettercap", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettin_battleaxe", - "fields": { - "name": "Battleaxe", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", - "parent": "ettin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettin_morningstar", - "fields": { - "name": "Morningstar", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) piercing damage.\n", - "parent": "ettin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettin_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The ettin makes two attacks: one with its battleaxe and one with its morningstar.\n", - "parent": "ettin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "fire-elemental_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The elemental makes two touch attacks.\n", - "parent": "fire-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "fire-elemental_touch", - "fields": { - "name": "Touch", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 (1d10) fire damage at the start of each of its turns.\n", - "parent": "fire-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "fire-giant_greatsword", - "fields": { - "name": "Greatsword", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 28 (6d6 + 7) slashing damage.\n", - "parent": "fire-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "fire-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greatsword attacks.\n", - "parent": "fire-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "fire-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +11 to hit, range 60/240 ft., one target. Hit: 29 (4d10 + 7) bludgeoning damage.\n", - "parent": "fire-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "flesh-golem_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The golem makes two slam attacks.\n", - "parent": "flesh-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "flesh-golem_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "flesh-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "flying-sword_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage.\n", - "parent": "flying-sword", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "frost-giant_greataxe", - "fields": { - "name": "Greataxe", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 25 (3d12 + 6) slashing damage.\n", - "parent": "frost-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "frost-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greataxe attacks.\n", - "parent": "frost-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "frost-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", - "parent": "frost-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gargoyle_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "gargoyle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gargoyle_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", - "parent": "gargoyle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gargoyle_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The gargoyle makes two attacks: one with its bite and one with its claws.\n", - "parent": "gargoyle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gelatinous-cube_engulf", - "fields": { - "name": "Engulf", - "desc": "The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a DC 12 Dexterity saving throw.\n\nOn a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.\n\nOn a failed save, the cube enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.\n\nAn engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube.\n", - "parent": "gelatinous-cube", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gelatinous-cube_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) acid damage.\n", - "parent": "gelatinous-cube", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghast_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 12 (2d8 + 3) piercing damage.\n", - "parent": "ghast", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghast_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a creature other than an undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "ghast", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghost_etherealness", - "fields": { - "name": "Etherealness", - "desc": "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.\n", - "parent": "ghost", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghost_horrifying-visage", - "fields": { - "name": "Horrifying Visage", - "desc": "Each non-undead creature within 60 feet of the ghost that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 × 10 years. A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.\n", - "parent": "ghost", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghost_possession", - "fields": { - "name": "Possession", - "desc": "One humanoid that the ghost can see within 5 feet of it must succeed on a DC 13 Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is incapacitated and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.\n\nThe possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends.\n", - "parent": "ghost", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghost_withering-touch", - "fields": { - "name": "Withering Touch", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 17 (4d6 + 3) necrotic damage.\n", - "parent": "ghost", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghoul_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) piercing damage.\n", - "parent": "ghoul", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghoul_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "ghoul", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gibbering-mouther_bites", - "fields": { - "name": "Bites", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 17 (5d6) piercing damage. If the target is Medium or smaller, it must succeed on a DC 10 Strength saving throw or be knocked prone. If the target is killed by this damage, it is absorbed into the mouther.\n", - "parent": "gibbering-mouther", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gibbering-mouther_blinding-spittle", - "fields": { - "name": "Blinding Spittle", - "desc": "The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the mouther's next turn.\n", - "parent": "gibbering-mouther", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gibbering-mouther_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle.\n", - "parent": "gibbering-mouther", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "glabrezu_fist", - "fields": { - "name": "Fist", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.\n", - "parent": "glabrezu", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "glabrezu_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell.\n", - "parent": "glabrezu", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "glabrezu_pincer", - "fields": { - "name": "Pincer", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a Medium or smaller creature, it is grappled (escape DC 15). The glabrezu has two pincers, each of which can grapple only one target.\n", - "parent": "glabrezu", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gnoll_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\n", - "parent": "gnoll", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gnoll_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "parent": "gnoll", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gnoll_spear", - "fields": { - "name": "Spear", - "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", - "parent": "gnoll", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gnome-deep-svirfneblin_poisoned-dart", - "fields": { - "name": "Poisoned Dart", - "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "gnome-deep-svirfneblin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gnome-deep-svirfneblin_war-pick", - "fields": { - "name": "War Pick", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "parent": "gnome-deep-svirfneblin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "goblin_scimitar", - "fields": { - "name": "Scimitar", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", - "parent": "goblin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "goblin_shortbow", - "fields": { - "name": "Shortbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "goblin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gold-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "parent": "gold-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gold-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "gold-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gorgon_gore", - "fields": { - "name": "Gore", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 18 (2d12 + 5) piercing damage.\n", - "parent": "gorgon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gorgon_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.\n", - "parent": "gorgon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gorgon_petrifying-breath", - "fields": { - "name": "Petrifying Breath", - "desc": "The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw. On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.\n", - "parent": "gorgon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gray-ooze_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage, and if the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", - "parent": "gray-ooze", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "green-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage.\n", - "parent": "green-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "green-dragon-wyrmling_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 11 Constitution saving throw, taking 21 (6d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "green-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "green-hag_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "green-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "green-hag_illusory-appearance", - "fields": { - "name": "Illusory Appearance", - "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the hag is disguised.\n", - "parent": "green-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "green-hag_invisible-passage", - "fields": { - "name": "Invisible Passage", - "desc": "The hag magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.\n", - "parent": "green-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "grick_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "grick", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "grick_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target.\n", - "parent": "grick", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "grick_tentacles", - "fields": { - "name": "Tentacles", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.\n", - "parent": "grick", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "griffon_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "parent": "griffon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "griffon_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "griffon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "griffon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The griffon makes two attacks: one with its beak and one with its claws.\n", - "parent": "griffon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "grimlock_spiked-bone-club", - "fields": { - "name": "Spiked Bone Club", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage.\n", - "parent": "grimlock", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "guardian-naga_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one creature. Hit: 8 (1d8 + 4) piercing damage, and the target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "guardian-naga", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "guardian-naga_spit-poison", - "fields": { - "name": "Spit Poison", - "desc": "Ranged Weapon Attack: +8 to hit, range 15/30 ft., one creature. Hit: The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "guardian-naga", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gynosphinx_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "gynosphinx", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gynosphinx_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The sphinx makes two claw attacks.\n", - "parent": "gynosphinx", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "half-red-dragon-veteran_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The veteran exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "half-red-dragon-veteran", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "half-red-dragon-veteran_heavy-crossbow", - "fields": { - "name": "Heavy Crossbow", - "desc": "Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.\n", - "parent": "half-red-dragon-veteran", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "half-red-dragon-veteran_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", - "parent": "half-red-dragon-veteran", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "half-red-dragon-veteran_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.\n", - "parent": "half-red-dragon-veteran", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "half-red-dragon-veteran_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "half-red-dragon-veteran", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "harpy_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.\n", - "parent": "harpy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "harpy_club", - "fields": { - "name": "Club", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.\n", - "parent": "harpy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "harpy_luring-song", - "fields": { - "name": "Luring Song", - "desc": "The harpy sings a magical melody. Every humanoid and giant within 300 feet of the harpy that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is incapacitated.\n\nWhile charmed by the harpy, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.\n\nA target that successfully saves is immune to this harpy's song for the next 24 hours.\n", - "parent": "harpy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "harpy_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The harpy makes two attacks: one with its claws and one with its club.\n", - "parent": "harpy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hell-hound_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 7 (2d6) fire damage.\n", - "parent": "hell-hound", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hell-hound_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The hound exhales fire in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "hell-hound", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hezrou_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "parent": "hezrou", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hezrou_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "hezrou", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hezrou_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The hezrou makes three attacks: one with its bite and two with its claws.\n", - "parent": "hezrou", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hill-giant_greatclub", - "fields": { - "name": "Greatclub", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 18 (3d8 + 5) bludgeoning damage.\n", - "parent": "hill-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hill-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greatclub attacks.\n", - "parent": "hill-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hill-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +8 to hit, range 60/240 ft., one target. Hit: 21 (3d10 + 5) bludgeoning damage.\n", - "parent": "hill-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hippogriff_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", - "parent": "hippogriff", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hippogriff_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", - "parent": "hippogriff", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hippogriff_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The hippogriff makes two attacks: one with its beak and one with its claws.\n", - "parent": "hippogriff", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hobgoblin_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "parent": "hobgoblin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hobgoblin_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage, or 6 (1d10 + 1) slashing damage if used with two hands.\n", - "parent": "hobgoblin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "homunculus_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or be poisoned for 1 minute. If the saving throw fails by 5 or more, the target is instead poisoned for 5 (1d10) minutes and unconscious while poisoned in this way.\n", - "parent": "homunculus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "horned-devil_fork", - "fields": { - "name": "Fork", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (2d8 + 6) piercing damage.\n", - "parent": "horned-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "horned-devil_hurl-flame", - "fields": { - "name": "Hurl Flame", - "desc": "Ranged Spell Attack: +7 to hit, range 150 ft., one target. Hit: 14 (4d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", - "parent": "horned-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "horned-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack.\n", - "parent": "horned-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "horned-devil_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 10 (1d8 + 6) piercing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 17 Constitution saving throw or lose 10 (3d6) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 (3d6). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", - "parent": "horned-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hydra_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 10 (1d10 + 5) piercing damage.\n", - "parent": "hydra", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hydra_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The hydra makes as many bite attacks as it has heads.\n", - "parent": "hydra", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-devil_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) piercing damage plus 10 (3d6) cold damage.\n", - "parent": "ice-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-devil_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 10 (2d4 + 5) slashing damage plus 10 (3d6) cold damage.\n", - "parent": "ice-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes three attacks: one with its bite, one with its claws, and one with its tail.\n", - "parent": "ice-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-devil_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage.\n", - "parent": "ice-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-devil_wall-of-ice", - "fields": { - "name": "Wall of Ice", - "desc": "The devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.\n\nWhen the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.\n\nThe wall lasts for 1 minute or until the devil is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.\n", - "parent": "ice-devil", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-mephit_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage.\n", - "parent": "ice-mephit", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-mephit_frost-breath", - "fields": { - "name": "Frost Breath", - "desc": "The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ice-mephit", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "imp_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The imp magically turns invisible until it attacks or until its concentration ends (as if concentrating on a spell). Any equipment the imp wears or carries is invisible with it.\n", - "parent": "imp", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "imp_sting", - "fields": { - "name": "Sting", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "imp", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "imp_sting-bite-in-beast-form", - "fields": { - "name": "Sting (Bite in Beast Form)", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "imp", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "invisible-stalker_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The stalker makes two slam attacks.\n", - "parent": "invisible-stalker", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "invisible-stalker_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", - "parent": "invisible-stalker", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "iron-golem_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The golem makes two melee attacks.\n", - "parent": "iron-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "iron-golem_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "iron-golem", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "iron-golem_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", - "parent": "iron-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "iron-golem_sword", - "fields": { - "name": "Sword", - "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 23 (3d10 + 7) slashing damage.\n", - "parent": "iron-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kobold_dagger", - "fields": { - "name": "Dagger", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", - "parent": "kobold", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kobold_sling", - "fields": { - "name": "Sling", - "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.\n", - "parent": "kobold", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kraken_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +17 to hit, reach 5 ft., one target. Hit: 23 (3d8 + 10) piercing damage. If the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the kraken, and it takes 42 (12d6) acid damage at the start of each of the kraken's turns.\n\nIf the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a DC 25 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", - "parent": "kraken", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kraken_fling", - "fields": { - "name": "Fling", - "desc": "One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.\n", - "parent": "kraken", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kraken_lightning-storm", - "fields": { - "name": "Lightning Storm", - "desc": "The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "kraken", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kraken_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The kraken makes three tentacle attacks, each of which it can replace with one use of Fling.\n", - "parent": "kraken", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kraken_tentacle", - "fields": { - "name": "Tentacle", - "desc": "Melee Weapon Attack: +17 to hit, reach 30 ft., one target. Hit: 20 (3d6 + 10) bludgeoning damage, and the target is grappled (escape DC 18). Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.\n", - "parent": "kraken", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lamia_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", - "parent": "lamia", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lamia_dagger", - "fields": { - "name": "Dagger", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.\n", - "parent": "lamia", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lamia_intoxicating-touch", - "fields": { - "name": "Intoxicating Touch", - "desc": "Melee Spell Attack: +5 to hit, reach 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.\n", - "parent": "lamia", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lamia_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch.\n", - "parent": "lamia", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lemure_fist", - "fields": { - "name": "Fist", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\n", - "parent": "lemure", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lich_paralyzing-touch", - "fields": { - "name": "Paralyzing Touch", - "desc": "Melee Spell Attack: +12 to hit, reach 5 ft., one creature. Hit: 10 (3d6) cold damage. The target must succeed on a DC 18 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "lich", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lizardfolk_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "lizardfolk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lizardfolk_heavy-club", - "fields": { - "name": "Heavy Club", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", - "parent": "lizardfolk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lizardfolk_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "lizardfolk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lizardfolk_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The lizardfolk makes two melee attacks, each one with a different weapon.\n", - "parent": "lizardfolk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lizardfolk_spiked-shield", - "fields": { - "name": "Spiked Shield", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "lizardfolk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "magma-mephit_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage.\n", - "parent": "magma-mephit", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "magma-mephit_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The mephit exhales a 15-foot cone of fire. Each creature in that area must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "magma-mephit", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "magmin_touch", - "fields": { - "name": "Touch", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d6) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 3 (1d6) fire damage at the end of each of its turns.\n", - "parent": "magmin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "manticore_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", - "parent": "manticore", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "manticore_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "parent": "manticore", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "manticore_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes.\n", - "parent": "manticore", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "manticore_tail-spike", - "fields": { - "name": "Tail Spike", - "desc": "Ranged Weapon Attack: +5 to hit, range 100/200 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", - "parent": "manticore", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "marilith_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "marilith", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "marilith_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The marilith makes seven attacks: six with its longswords and one with its tail.\n", - "parent": "marilith", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "marilith_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 15 (2d10 + 4) bludgeoning damage. If the target is Medium or smaller, it is grappled (escape DC 19). Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.\n", - "parent": "marilith", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "marilith_teleport", - "fields": { - "name": "Teleport", - "desc": "The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "parent": "marilith", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "medusa_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +5 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage.\n", - "parent": "medusa", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "medusa_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The medusa makes either three melee attacks—one with its snake hair and two with its shortsword—or two ranged attacks with its longbow.\n", - "parent": "medusa", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "medusa_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "medusa", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "medusa_snake-hair", - "fields": { - "name": "Snake Hair", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage plus 14 (4d6) poison damage.\n", - "parent": "medusa", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "merfolk_spear", - "fields": { - "name": "Spear", - "desc": "Melee or Ranged Weapon Attack: +2 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hands to make a melee attack.\n", - "parent": "merfolk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "merrow_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "parent": "merrow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "merrow_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (2d4 + 4) slashing damage.\n", - "parent": "merrow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "merrow_harpoon", - "fields": { - "name": "Harpoon", - "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.\n", - "parent": "merrow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "merrow_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The merrow makes two attacks: one with its bite and one with its claws or harpoon.\n", - "parent": "merrow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mimic_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage.\n", - "parent": "mimic", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mimic_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait.\n", - "parent": "mimic", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "minotaur-skeleton_gore", - "fields": { - "name": "Gore", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", - "parent": "minotaur-skeleton", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "minotaur-skeleton_greataxe", - "fields": { - "name": "Greataxe", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", - "parent": "minotaur-skeleton", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "minotaur_gore", - "fields": { - "name": "Gore", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", - "parent": "minotaur", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "minotaur_greataxe", - "fields": { - "name": "Greataxe", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", - "parent": "minotaur", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mummy-lord_dreadful-glare", - "fields": { - "name": "Dreadful Glare", - "desc": "The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a DC 16 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours.\n", - "parent": "mummy-lord", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mummy-lord_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", - "parent": "mummy-lord", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mummy-lord_rotting-fist", - "fields": { - "name": "Rotting Fist", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage plus 21 (6d6) necrotic damage. If the target is a creature, it must succeed on a DC 16 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", - "parent": "mummy-lord", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mummy_dreadful-glare", - "fields": { - "name": "Dreadful Glare", - "desc": "The mummy targets one creature it can see within 60 feet of it. If the target can see the mummy, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.\n", - "parent": "mummy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mummy_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", - "parent": "mummy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mummy_rotting-fist", - "fields": { - "name": "Rotting Fist", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage. If the target is a creature, it must succeed on a DC 12 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", - "parent": "mummy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nalfeshnee_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 32 (5d10 + 5) piercing damage.\n", - "parent": "nalfeshnee", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nalfeshnee_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) slashing damage.\n", - "parent": "nalfeshnee", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nalfeshnee_horror-nimbus", - "fields": { - "name": "Horror Nimbus", - "desc": "The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.\n", - "parent": "nalfeshnee", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nalfeshnee_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "nalfeshnee", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nalfeshnee_teleport", - "fields": { - "name": "Teleport", - "desc": "The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "parent": "nalfeshnee", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "night-hag_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies.\n", - "parent": "night-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "night-hag_claws", - "fields": { - "name": "Claws", - "desc": "(Hag Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "night-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "night-hag_etherealness", - "fields": { - "name": "Etherealness", - "desc": "The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession.\n", - "parent": "night-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "night-hag_nightmare-haunting", - "fields": { - "name": "Nightmare Haunting", - "desc": "While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle. As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.\n", - "parent": "night-hag", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nightmare_ethereal-stride", - "fields": { - "name": "Ethereal Stride", - "desc": "The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.\n", - "parent": "nightmare", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nightmare_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage.\n", - "parent": "nightmare", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ochre-jelly_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage.\n", - "parent": "ochre-jelly", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ogre-zombie_morningstar", - "fields": { - "name": "Morningstar", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "ogre-zombie", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ogre_greatclub", - "fields": { - "name": "Greatclub", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "ogre", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ogre_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", - "parent": "ogre", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "oni_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size.\n", - "parent": "oni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "oni_claw", - "fields": { - "name": "Claw", - "desc": "(Oni Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", - "parent": "oni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "oni_glaive", - "fields": { - "name": "Glaive", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small or Medium form.\n", - "parent": "oni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "oni_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The oni makes two attacks, either with its claws or its glaive.\n", - "parent": "oni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "orc_greataxe", - "fields": { - "name": "Greataxe", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.\n", - "parent": "orc", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "orc_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "orc", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "otyugh_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 12 (2d8 + 3) piercing damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured.\n", - "parent": "otyugh", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "otyugh_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The otyugh makes three attacks: one with its bite and two with its tentacles.\n", - "parent": "otyugh", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "otyugh_tentacle", - "fields": { - "name": "Tentacle", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage. If the target is Medium or smaller, it is grappled (escape DC 13) and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.\n", - "parent": "otyugh", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "otyugh_tentacle-slam", - "fields": { - "name": "Tentacle Slam", - "desc": "The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the otyugh's next turn. On a successful save, the target takes half the bludgeoning damage and isn't stunned.\n", - "parent": "otyugh", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "owlbear_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one creature. Hit: 10 (1d10 + 5) piercing damage.\n", - "parent": "owlbear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "owlbear_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", - "parent": "owlbear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "owlbear_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The owlbear makes two attacks: one with its beak and one with its claws.\n", - "parent": "owlbear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pegasus_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "pegasus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pit-fiend_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) piercing damage. The target must succeed on a DC 21 Constitution saving throw or become poisoned. While poisoned in this way, the target can't regain hit points, and it takes 21 (6d6) poison damage at the start of each of its turns. The poisoned target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "pit-fiend", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pit-fiend_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 17 (2d8 + 8) slashing damage.\n", - "parent": "pit-fiend", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pit-fiend_mace", - "fields": { - "name": "Mace", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) bludgeoning damage plus 21 (6d6) fire damage.\n", - "parent": "pit-fiend", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pit-fiend_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail.\n", - "parent": "pit-fiend", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pit-fiend_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 24 (3d10 + 8) bludgeoning damage.\n", - "parent": "pit-fiend", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "planetar_greatsword", - "fields": { - "name": "Greatsword", - "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage.\n", - "parent": "planetar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "planetar_healing-touch", - "fields": { - "name": "Healing Touch", - "desc": "The planetar touches another creature. The target magically regains 30 (6d8 + 3) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "parent": "planetar", - "uses_type": "PER_DAY", - "uses_param": 4 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "planetar_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The planetar makes two melee attacks.\n", - "parent": "planetar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "plesiosaurus_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 14 (3d6 + 4) piercing damage.\n", - "parent": "plesiosaurus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pseudodragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", - "parent": "pseudodragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pseudodragon_sting", - "fields": { - "name": "Sting", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. If the saving throw fails by 5 or more, the target falls unconscious for the same duration, or until it takes damage or another creature uses an action to shake it awake.\n", - "parent": "pseudodragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "purple-worm_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 22 (3d8 + 9) piercing damage. If the target is a Large or smaller creature, it must succeed on a DC 19 Dexterity saving throw or be swallowed by the worm. A swallowed creature is blinded and restrained, it has total cover against attacks and other effects outside the worm, and it takes 21 (6d6) acid damage at the start of each of the worm's turns.\n\nIf the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a DC 21 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 20 feet of movement, exiting prone.\n", - "parent": "purple-worm", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "purple-worm_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The worm makes two attacks: one with its bite and one with its stinger.\n", - "parent": "purple-worm", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "purple-worm_tail-stinger", - "fields": { - "name": "Tail Stinger", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 19 (3d6 + 9) piercing damage, and the target must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "purple-worm", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "quasit_claws-bite-in-beast-form", - "fields": { - "name": "Claws (Bite in Beast Form)", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must succeed on a DC 10 Constitution saving throw or take 5 (2d4) poison damage and become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "quasit", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "quasit_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The quasit magically turns invisible until it attacks or uses Scare, or until its concentration ends (as if concentrating on a spell). Any equipment the quasit wears or carries is invisible with it.\n", - "parent": "quasit", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "quasit_scare", - "fields": { - "name": "Scare", - "desc": "One creature of the quasit's choice within 20 feet of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.\n", - "parent": "quasit", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "rakshasa_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature. The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a remove curse spell or similar magic.\n", - "parent": "rakshasa", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "rakshasa_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The rakshasa makes two claw attacks.\n", - "parent": "rakshasa", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "red-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage.\n", - "parent": "red-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "red-dragon-wyrmling_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "red-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "remorhaz_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage. If the target is a creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.\n", - "parent": "remorhaz", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "remorhaz_swallow", - "fields": { - "name": "Swallow", - "desc": "The remorhaz makes one bite attack against a Medium or smaller creature it is grappling. If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the remorhaz, and it takes 21 (6d6) acid damage at the start of each of the remorhaz's turns.\n\nIf the remorhaz takes 30 damage or more on a single turn from a creature inside it, the remorhaz must succeed on a DC 15 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the remorhaz. If the remorhaz dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", - "parent": "remorhaz", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roc_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 27 (4d8 + 9) piercing damage.\n", - "parent": "roc", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roc_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The roc makes two attacks: one with its beak and one with its talons.\n", - "parent": "roc", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roc_talons", - "fields": { - "name": "Talons", - "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 23 (4d6 + 9) slashing damage, and the target is grappled (escape DC 19). Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.\n", - "parent": "roc", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roper_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 22 (4d8 + 4) piercing damage.\n", - "parent": "roper", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roper_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite.\n", - "parent": "roper", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roper_reel", - "fields": { - "name": "Reel", - "desc": "The roper pulls each creature grappled by it up to 25 feet straight toward it.\n", - "parent": "roper", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roper_tendril", - "fields": { - "name": "Tendril", - "desc": "Melee Weapon Attack: +7 to hit, reach 50 ft., one creature. Hit: The target is grappled (escape DC 15). Until the grapple ends, the target is restrained and has disadvantage on Strength checks and Strength saving throws, and the roper can't use the same tendril on another target.\n", - "parent": "roper", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "rug-of-smothering_smother", - "fields": { - "name": "Smother", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one Medium or smaller creature. Hit: The creature is grappled (escape DC 13). Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 (2d6 + 3) bludgeoning damage.\n", - "parent": "rug-of-smothering", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "rust-monster_antennae", - "fields": { - "name": "Antennae", - "desc": "The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the rust monster's touch. If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.\n", - "parent": "rust-monster", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "rust-monster_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "parent": "rust-monster", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sahuagin_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) piercing damage.\n", - "parent": "sahuagin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sahuagin_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) slashing damage.\n", - "parent": "sahuagin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sahuagin_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The sahuagin makes two melee attacks: one with its bite and one with its claws or spear.\n", - "parent": "sahuagin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sahuagin_spear", - "fields": { - "name": "Spear", - "desc": "Melee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.\n", - "parent": "sahuagin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "salamander_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The salamander makes two attacks: one with its spear and one with its tail.\n", - "parent": "salamander", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "salamander_spear", - "fields": { - "name": "Spear", - "desc": "Melee or Ranged Weapon Attack: +7 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", - "parent": "salamander", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "salamander_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage, and the target is grappled (escape DC 14). Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.\n", - "parent": "salamander", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "satyr_ram", - "fields": { - "name": "Ram", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) bludgeoning damage.\n", - "parent": "satyr", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "satyr_shortbow", - "fields": { - "name": "Shortbow", - "desc": "Ranged Weapon Attack: +5 to hit, range 80/320 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "satyr", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "satyr_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "satyr", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sea-hag_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", - "parent": "sea-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sea-hag_death-glare", - "fields": { - "name": "Death Glare", - "desc": "The hag targets one frightened creature she can see within 30 feet of her. If the target can see the hag, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.\n", - "parent": "sea-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sea-hag_illusory-appearance", - "fields": { - "name": "Illusory Appearance", - "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 16 Intelligence (Investigation) check to discern that the hag is disguised.\n", - "parent": "sea-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "shadow_strength-drain", - "fields": { - "name": "Strength Drain", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) necrotic damage, and the target's Strength score is reduced by 1d4. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.\n\nIf a non-evil humanoid dies from this attack, a new shadow rises from the corpse 1d4 hours later.\n", - "parent": "shadow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "shambling-mound_engulf", - "fields": { - "name": "Engulf", - "desc": "The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must succeed on a DC 14 Constitution saving throw at the start of each of the mound's turns or take 13 (2d8 + 4) bludgeoning damage. If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time.\n", - "parent": "shambling-mound", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "shambling-mound_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is grappled (escape DC 14), and the shambling mound uses its Engulf on it.\n", - "parent": "shambling-mound", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "shambling-mound_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "shambling-mound", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "shield-guardian_fist", - "fields": { - "name": "Fist", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "shield-guardian", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "shield-guardian_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The guardian makes two fist attacks.\n", - "parent": "shield-guardian", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "silver-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "parent": "silver-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "silver-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "silver-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "skeleton_shortbow", - "fields": { - "name": "Shortbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "skeleton", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "skeleton_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "skeleton", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "solar_flying-sword", - "fields": { - "name": "Flying Sword", - "desc": "The solar releases its greatsword to hover magically in an unoccupied space within 5 feet of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 feet and either make one attack against a target or return to the solar's hands. If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies.\n", - "parent": "solar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "solar_greatsword", - "fields": { - "name": "Greatsword", - "desc": "Melee Weapon Attack: +15 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) slashing damage plus 27 (6d8) radiant damage.\n", - "parent": "solar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "solar_healing-touch", - "fields": { - "name": "Healing Touch", - "desc": "The solar touches another creature. The target magically regains 40 (8d8 + 4) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "parent": "solar", - "uses_type": "PER_DAY", - "uses_param": 4 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "solar_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The solar makes two greatsword attacks.\n", - "parent": "solar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "solar_slaying-longbow", - "fields": { - "name": "Slaying Longbow", - "desc": "Ranged Weapon Attack: +13 to hit, range 150/600 ft., one target. Hit: 15 (2d8 + 6) piercing damage plus 27 (6d8) radiant damage. If the target is a creature that has 100 hit points or fewer, it must succeed on a DC 15 Constitution saving throw or die.\n", - "parent": "solar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "specter_life-drain", - "fields": { - "name": "Life Drain", - "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) necrotic damage. The target must succeed on a DC 10 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "parent": "specter", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "spirit-naga_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 7 (1d6 + 4) piercing damage, and the target must make a DC 13 Constitution saving throw, taking 31 (7d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "spirit-naga", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sprite_heart-sight", - "fields": { - "name": "Heart Sight", - "desc": "The sprite touches a creature and magically knows the creature's current emotional state. If the target fails a DC 10 Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.\n", - "parent": "sprite", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sprite_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The sprite magically turns invisible until it attacks or casts a spell, or until its concentration ends (as if concentrating on a spell). Any equipment the sprite wears or carries is invisible with it.\n", - "parent": "sprite", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sprite_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 1 slashing damage.\n", - "parent": "sprite", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sprite_shortbow", - "fields": { - "name": "Shortbow", - "desc": "Ranged Weapon Attack: +6 to hit, range 40/160 ft., one target. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or become poisoned for 1 minute. If its saving throw result is 5 or lower, the poisoned target falls unconscious for the same duration, or until it takes damage or another creature takes an action to shake it awake.\n", - "parent": "sprite", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "steam-mephit_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 2 (1d4) slashing damage plus 2 (1d4) fire damage.\n", - "parent": "steam-mephit", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "steam-mephit_steam-breath", - "fields": { - "name": "Steam Breath", - "desc": "The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 4 (1d8) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "steam-mephit", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stirge_blood-drain", - "fields": { - "name": "Blood Drain", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 5 (1d4 + 3) piercing damage, and the stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 (1d4 + 3) hit points due to blood loss.\n\nThe stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies. A creature, including the target, can use its action to detach the stirge.\n", - "parent": "stirge", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stone-giant_greatclub", - "fields": { - "name": "Greatclub", - "desc": "Melee Weapon Attack: +9 to hit, reach 15 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", - "parent": "stone-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stone-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greatclub attacks.\n", - "parent": "stone-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stone-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage. If the target is a creature, it must succeed on a DC 17 Strength saving throw or be knocked prone.\n", - "parent": "stone-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stone-golem_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The golem makes two slam attacks.\n", - "parent": "stone-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stone-golem_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", - "parent": "stone-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stone-golem_slow", - "fields": { - "name": "Slow", - "desc": "The golem targets one or more creatures it can see within 10 feet of it. Each target must make a DC 17 Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "stone-golem", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "storm-giant_greatsword", - "fields": { - "name": "Greatsword", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 30 (6d6 + 9) slashing damage.\n", - "parent": "storm-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "storm-giant_lightning-strike", - "fields": { - "name": "Lightning Strike", - "desc": "The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a DC 17 Dexterity saving throw, taking 54 (12d8) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "storm-giant", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "storm-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greatsword attacks.\n", - "parent": "storm-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "storm-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +14 to hit, range 60/240 ft., one target. Hit: 35 (4d12 + 9) bludgeoning damage.\n", - "parent": "storm-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "succubusincubus_charm", - "fields": { - "name": "Charm", - "desc": "One humanoid the fiend can see within 30 feet of it must succeed on a DC 15 Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the fiend's verbal or telepathic commands. If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.\n\nThe fiend can have only one target charmed at a time. If it charms another, the effect on the previous target ends.\n", - "parent": "succubusincubus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "succubusincubus_claw", - "fields": { - "name": "Claw", - "desc": "(Fiend Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "parent": "succubusincubus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "succubusincubus_draining-kiss", - "fields": { - "name": "Draining Kiss", - "desc": "The fiend kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "parent": "succubusincubus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "succubusincubus_etherealness", - "fields": { - "name": "Etherealness", - "desc": "The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa.\n", - "parent": "succubusincubus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 36 (4d12 + 10) piercing damage. If the target is a creature, it is grappled (escape DC 20). Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +19 to hit, reach 15 ft., one target. Hit: 28 (4d8 + 10) slashing damage.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_horns", - "fields": { - "name": "Horns", - "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 32 (4d10 + 10) piercing damage.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_swallow", - "fields": { - "name": "Swallow", - "desc": "The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the tarrasque, and it takes 56 (16d6) acid damage at the start of each of the tarrasque's turns.\n\nIf the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a DC 20 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 30 feet of movement, exiting prone.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +19 to hit, reach 20 ft., one target. Hit: 24 (4d6 + 10) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be knocked prone.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "treant_animate-trees", - "fields": { - "name": "Animate Trees", - "desc": "The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a treant, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.\n", - "parent": "treant", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "treant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The treant makes two slam attacks.\n", - "parent": "treant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "treant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +10 to hit, range 60/180 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", - "parent": "treant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "treant_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 16 (3d6 + 6) bludgeoning damage.\n", - "parent": "treant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "triceratops_gore", - "fields": { - "name": "Gore", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 24 (4d8 + 6) piercing damage.\n", - "parent": "triceratops", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "triceratops_stomp", - "fields": { - "name": "Stomp", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.\n", - "parent": "triceratops", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "troll_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) piercing damage.\n", - "parent": "troll", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "troll_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "troll", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "troll_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The troll makes three attacks: one with its bite and two with its claws.\n", - "parent": "troll", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tyrannosaurus-rex_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 33 (4d12 + 7) piercing damage. If the target is a Medium or smaller creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.\n", - "parent": "tyrannosaurus-rex", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tyrannosaurus-rex_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target.\n", - "parent": "tyrannosaurus-rex", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tyrannosaurus-rex_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", - "parent": "tyrannosaurus-rex", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "unicorn_healing-touch", - "fields": { - "name": "Healing Touch", - "desc": "The unicorn touches another creature with its horn. The target magically regains 11 (2d8 + 2) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target.\n", - "parent": "unicorn", - "uses_type": "PER_DAY", - "uses_param": 3 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "unicorn_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "unicorn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "unicorn_horn", - "fields": { - "name": "Horn", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "parent": "unicorn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "unicorn_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The unicorn makes two attacks: one with its hooves and one with its horn.\n", - "parent": "unicorn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "unicorn_teleport", - "fields": { - "name": "Teleport", - "desc": "The unicorn magically teleports itself and up to three willing creatures it can see within 5 feet of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away.\n", - "parent": "unicorn", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire-spawn_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "parent": "vampire-spawn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire-spawn_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 8 (2d4 + 3) slashing damage. Instead of dealing damage, the vampire can grapple the target (escape DC 13).\n", - "parent": "vampire-spawn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire-spawn_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The vampire makes two attacks, only one of which can be a bite attack.\n", - "parent": "vampire-spawn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire_bite", - "fields": { - "name": "Bite", - "desc": "(Bat or Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 7 (1d6 + 4) piercing damage plus 10 (3d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a vampire spawn under the vampire's control.\n", - "parent": "vampire", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire_charm", - "fields": { - "name": "Charm", - "desc": "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a DC 17 Wisdom saving throw against this magic or be charmed by the vampire. The charmed target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.\n\nEach time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect.\n", - "parent": "vampire", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire_children-of-the-night", - "fields": { - "name": "Children of the Night", - "desc": "The vampire magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the vampire can call 3d6 wolves instead. The called creatures arrive in 1d4 rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action.\n", - "parent": "vampire", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Vampire Form Only). The vampire makes two attacks, only one of which can be a bite attack.\n", - "parent": "vampire", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire_unarmed-strike", - "fields": { - "name": "Unarmed Strike", - "desc": "(Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one creature. Hit: 8 (1d8 + 4) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape DC 18).\n", - "parent": "vampire", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "violet-fungus_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The fungus makes 1d4 Rotting Touch attacks.\n", - "parent": "violet-fungus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "violet-fungus_rotting-touch", - "fields": { - "name": "Rotting Touch", - "desc": "Melee Weapon Attack: +2 to hit, reach 10 ft., one creature. Hit: 4 (1d8) necrotic damage.\n", - "parent": "violet-fungus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vrock_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", - "parent": "vrock", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vrock_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The vrock makes two attacks: one with its beak and one with its talons.\n", - "parent": "vrock", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vrock_spores", - "fields": { - "name": "Spores", - "desc": "A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.\n", - "parent": "vrock", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vrock_stunning-screech", - "fields": { - "name": "Stunning Screech", - "desc": "The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must succeed on a DC 14 Constitution saving throw or be stunned until the end of the vrock's next turn.\n", - "parent": "vrock", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vrock_talons", - "fields": { - "name": "Talons", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", - "parent": "vrock", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "warhorse-skeleton_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "warhorse-skeleton", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "water-elemental_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The elemental makes two slam attacks.\n", - "parent": "water-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "water-elemental_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "water-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "water-elemental_whelm", - "fields": { - "name": "Whelm", - "desc": "Each creature in the elemental's space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the elemental's space.\n\nThe elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a DC 14 Strength and succeeding.\n", - "parent": "water-elemental", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 4 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werebear_bite", - "fields": { - "name": "Bite", - "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage. If the target is a humanoid, it must succeed on a DC 14 Constitution saving throw or be cursed with werebear lycanthropy.\n", - "parent": "werebear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werebear_claw", - "fields": { - "name": "Claw", - "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "werebear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werebear_greataxe", - "fields": { - "name": "Greataxe", - "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) slashing damage.\n", - "parent": "werebear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werebear_multiattack", - "fields": { - "name": "Multiattack", - "desc": "In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid.\n", - "parent": "werebear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wereboar_maul", - "fields": { - "name": "Maul", - "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", - "parent": "wereboar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wereboar_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Humanoid or Hybrid Form Only). The wereboar makes two attacks, only one of which can be with its tusks.\n", - "parent": "wereboar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wereboar_tusks", - "fields": { - "name": "Tusks", - "desc": "(Boar or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with wereboar lycanthropy.\n", - "parent": "wereboar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wererat_bite", - "fields": { - "name": "Bite", - "desc": "(Rat or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 11 Constitution saving throw or be cursed with wererat lycanthropy.\n", - "parent": "wererat", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wererat_hand-crossbow", - "fields": { - "name": "Hand Crossbow", - "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "wererat", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wererat_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Humanoid or Hybrid Form Only). The wererat makes two attacks, only one of which can be a bite.\n", - "parent": "wererat", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wererat_shortsword", - "fields": { - "name": "Shortsword", - "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "wererat", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "weretiger_bite", - "fields": { - "name": "Bite", - "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage. If the target is a humanoid, it must succeed on a DC 13 Constitution saving throw or be cursed with weretiger lycanthropy.\n", - "parent": "weretiger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "weretiger_claw", - "fields": { - "name": "Claw", - "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.\n", - "parent": "weretiger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "weretiger_longbow", - "fields": { - "name": "Longbow", - "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "parent": "weretiger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "weretiger_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Humanoid or Hybrid Form Only). In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks.\n", - "parent": "weretiger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "weretiger_scimitar", - "fields": { - "name": "Scimitar", - "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "parent": "weretiger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werewolf_bite", - "fields": { - "name": "Bite", - "desc": "(Wolf or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with werewolf lycanthropy.\n", - "parent": "werewolf", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werewolf_claws", - "fields": { - "name": "Claws", - "desc": "(Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 7 (2d4 + 2) slashing damage.\n", - "parent": "werewolf", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werewolf_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Humanoid or Hybrid Form Only). The werewolf makes two attacks: one with its bite and one with its claws or spear.\n", - "parent": "werewolf", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werewolf_spear", - "fields": { - "name": "Spear", - "desc": "(Humanoid Form Only). Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", - "parent": "werewolf", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "white-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage.\n", - "parent": "white-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "white-dragon-wyrmling_cold-breath", - "fields": { - "name": "Cold Breath", - "desc": "The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a DC 12 Constitution saving throw, taking 22 (5d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "white-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wight_life-drain", - "fields": { - "name": "Life Drain", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 5 (1d6 + 2) necrotic damage. The target must succeed on a DC 13 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n\nA humanoid slain by this attack rises 24 hours later as a zombie under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time.\n", - "parent": "wight", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wight_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "parent": "wight", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wight_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage, or 7 (1d10 + 2) slashing damage if used with two hands.\n", - "parent": "wight", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wight_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack.\n", - "parent": "wight", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "will-o-wisp_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The will-o'-wisp and its light magically become invisible until it attacks or uses its Consume Life, or until its concentration ends (as if concentrating on a spell).\n", - "parent": "will-o-wisp", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "will-o-wisp_shock", - "fields": { - "name": "Shock", - "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d8) lightning damage.\n", - "parent": "will-o-wisp", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wraith_create-specter", - "fields": { - "name": "Create Specter", - "desc": "The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the wraith's control. The wraith can have no more than seven specters under its control at one time.\n", - "parent": "wraith", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wraith_life-drain", - "fields": { - "name": "Life Drain", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 21 (4d8 + 3) necrotic damage. The target must succeed on a DC 14 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "parent": "wraith", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wyvern_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\n", - "parent": "wyvern", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wyvern_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "wyvern", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wyvern_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack.\n", - "parent": "wyvern", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wyvern_stinger", - "fields": { - "name": "Stinger", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage. The target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "wyvern", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "xorn_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (3d6 + 3) piercing damage.\n", - "parent": "xorn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "xorn_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "parent": "xorn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "xorn_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The xorn makes three claw attacks and one bite attack.\n", - "parent": "xorn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-black-dragon_acid-breath", - "fields": { - "name": "Acid Breath", - "desc": "The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "young-black-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-black-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.\n", - "parent": "young-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-black-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "young-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-black-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-blue-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.\n", - "parent": "young-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-blue-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", - "parent": "young-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-blue-dragon_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "young-blue-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-blue-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-brass-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "parent": "young-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-brass-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "parent": "young-brass-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-brass-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "young-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-brass-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-bronze-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.\n", - "parent": "young-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-bronze-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.\n", - "parent": "young-bronze-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-bronze-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", - "parent": "young-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-bronze-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-copper-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "parent": "young-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-copper-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "parent": "young-copper-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-copper-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "young-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-copper-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-gold-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "parent": "young-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-gold-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "young-gold-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-gold-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "young-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-gold-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-green-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.\n", - "parent": "young-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-green-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "young-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-green-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-green-dragon_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "young-green-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-red-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.\n", - "parent": "young-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-red-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "young-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-red-dragon_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "young-red-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-red-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-silver-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "parent": "young-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-silver-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "young-silver-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-silver-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "young-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-silver-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-white-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.\n", - "parent": "young-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-white-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "young-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-white-dragon_cold-breath", - "fields": { - "name": "Cold Breath", - "desc": "The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "young-white-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-white-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "zombie_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.\n", - "parent": "zombie", - "uses_type": null, - "uses_param": null - } -} -] + { + "model": "api_v2.creatureaction", + "pk": "aboleth_enslave", + "fields": { + "name": "Enslave", + "desc": "The aboleth targets one creature it can see within 30 feet of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the aboleth until the aboleth dies or until it is on a different plane of existence from the target. The charmed target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.\n\nWhenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.\n", + "parent": "srd_aboleth", + "uses_type": "PER_DAY", + "uses_param": 3 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "aboleth_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The aboleth makes three tentacle attacks.\n", + "parent": "srd_aboleth", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "aboleth_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) bludgeoning damage.\n", + "parent": "srd_aboleth", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "aboleth_tentacle", + "fields": { + "name": "Tentacle", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 14 Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.\n", + "parent": "srd_aboleth", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-black-dragon_acid-breath", + "fields": { + "name": "Acid Breath", + "desc": "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-black-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-black-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) acid damage.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-black-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-black-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-black-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-black-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-blue-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage plus 5 (1d10) lightning damage.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-blue-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-blue-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-blue-dragon_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-blue-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-blue-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-brass-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-brass-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-brass-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-brass-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-brass-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-brass-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-bronze-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-bronze-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-bronze-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-bronze-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-bronze-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-bronze-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-bronze-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-copper-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-copper-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-copper-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-copper-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-copper-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-copper-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-gold-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-gold-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-gold-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-gold-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-gold-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-gold-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-gold-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-green-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 7 (2d6) poison damage.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-green-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-green-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-green-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-green-dragon_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-green-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-green-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-red-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 7 (2d6) fire damage.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-red-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-red-dragon_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 63 (18d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-red-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-red-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-red-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-red-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-silver-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-silver-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-silver-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-silver-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-silver-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-silver-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-silver-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-white-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) cold damage.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-white-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-white-dragon_cold-breath", + "fields": { + "name": "Cold Breath", + "desc": "The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-white-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-white-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 14 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-white-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "adult-white-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "air-elemental_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The elemental makes two slam attacks.\n", + "parent": "srd_air-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "air-elemental_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", + "parent": "srd_air-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "air-elemental_whirlwind", + "fields": { + "name": "Whirlwind", + "desc": "Each creature in the elemental's space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked prone. If a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone.\n\nIf the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.\n", + "parent": "srd_air-elemental", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 4 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-black-dragon_acid-breath", + "fields": { + "name": "Acid Breath", + "desc": "The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-black-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) acid damage.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-black-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-black-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-black-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-black-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-blue-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage plus 11 (2d10) lightning damage.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-blue-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-blue-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-blue-dragon_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-blue-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-blue-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-brass-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-brass-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons:\n\nFire Breath. The dragon exhales fire in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-brass-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-brass-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-brass-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-brass-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-brass-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-bronze-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-bronze-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-bronze-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-bronze-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-bronze-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-bronze-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-bronze-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-copper-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-copper-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-copper-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-copper-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-copper-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-copper-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-copper-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-gold-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-gold-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-gold-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-gold-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-gold-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 24 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-gold-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-gold-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-green-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 10 (3d6) poison damage.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-green-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 22 (4d6 + 8) slashing damage.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-green-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-green-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-green-dragon_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 77 (22d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-green-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-red-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage plus 14 (4d6) fire damage.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-red-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-red-dragon_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 91 (26d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-red-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-red-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-red-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-silver-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-silver-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-silver-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-silver-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-silver-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-silver-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-silver-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-white-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) cold damage.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-white-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-white-dragon_cold-breath", + "fields": { + "name": "Cold Breath", + "desc": "The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 72 (16d8) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-white-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-white-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ancient-white-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "androsphinx_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 17 (2d10 + 6) slashing damage.\n", + "parent": "srd_androsphinx", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "androsphinx_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The sphinx makes two claw attacks.\n", + "parent": "srd_androsphinx", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "androsphinx_roar", + "fields": { + "name": "Roar", + "desc": "The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.\n\nFirst Roar. Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nSecond Roar. Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThird Roar. Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.\n", + "parent": "srd_androsphinx", + "uses_type": "PER_DAY", + "uses_param": 3 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "animated-armor_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The armor makes two melee attacks.\n", + "parent": "srd_animated-armor", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "animated-armor_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", + "parent": "srd_animated-armor", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ankheg_acid-spray", + "fields": { + "name": "Acid Spray", + "desc": "The ankheg spits acid in a line that is 30 feet long and 5 feet wide, provided that it has no creature grappled. Each creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ankheg", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ankheg_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage. If the target is a Large or smaller creature, it is grappled (escape DC 13). Until this grapple ends, the ankheg can bite only the grappled creature and has advantage on attack rolls to do so.\n", + "parent": "srd_ankheg", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "azer_warhammer", + "fields": { + "name": "Warhammer", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", + "parent": "srd_azer", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "balor_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) slashing damage plus 13 (3d8) lightning damage. If the balor scores a critical hit, it rolls damage dice three times, instead of twice.\n", + "parent": "srd_balor", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "balor_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The balor makes two attacks: one with its longsword and one with its whip.\n", + "parent": "srd_balor", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "balor_teleport", + "fields": { + "name": "Teleport", + "desc": "The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", + "parent": "srd_balor", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "balor_whip", + "fields": { + "name": "Whip", + "desc": "Melee Weapon Attack: +14 to hit, reach 30 ft., one target. Hit: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage, and the target must succeed on a DC 20 Strength saving throw or be pulled up to 25 feet toward the balor.\n", + "parent": "srd_balor", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "barbed-devil_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_barbed-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "barbed-devil_hurl-flame", + "fields": { + "name": "Hurl Flame", + "desc": "Ranged Spell Attack: +5 to hit, range 150 ft., one target. Hit: 10 (3d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", + "parent": "srd_barbed-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "barbed-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice.\n", + "parent": "srd_barbed-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "barbed-devil_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", + "parent": "srd_barbed-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "basilisk_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage.\n", + "parent": "srd_basilisk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "bearded-devil_beard", + "fields": { + "name": "Beard", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. While poisoned in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_bearded-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "bearded-devil_glaive", + "fields": { + "name": "Glaive", + "desc": "Melee Weapon Attack: +5 to hit, reach 10 ft., one target. Hit: 8 (1d10 + 3) slashing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 12 Constitution saving throw or lose 5 (1d10) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 (1d10). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", + "parent": "srd_bearded-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "bearded-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes two attacks: one with its beard and one with its glaive.\n", + "parent": "srd_bearded-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "behir_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 22 (3d10 + 6) piercing damage.\n", + "parent": "srd_behir", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "behir_constrict", + "fields": { + "name": "Constrict", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one Large or smaller creature. Hit: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage. The target is grappled (escape DC 16) if the behir isn't already constricting a creature, and the target is restrained until this grapple ends.\n", + "parent": "srd_behir", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "behir_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The behir exhales a line of lightning that is 20 feet long and 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_behir", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "behir_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The behir makes two attacks: one with its bite and one to constrict.\n", + "parent": "srd_behir", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "behir_swallow", + "fields": { + "name": "Swallow", + "desc": "The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the behir, and it takes 21 (6d6) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.\n\nIf the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 feet of the behir. If the behir dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 feet of movement, exiting prone.\n", + "parent": "srd_behir", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "black-dragon-wyrmling_acid-breath", + "fields": { + "name": "Acid Breath", + "desc": "The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_black-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "black-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage.\n", + "parent": "srd_black-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "black-pudding_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", + "parent": "srd_black-pudding", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "blue-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage.\n", + "parent": "srd_blue-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "blue-dragon-wyrmling_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_blue-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "bone-devil_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", + "parent": "srd_bone-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "bone-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes three attacks: two with its claws and one with its sting.\n", + "parent": "srd_bone-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "bone-devil_sting", + "fields": { + "name": "Sting", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage, and the target must succeed on a DC 14 Constitution saving throw or become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_bone-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "brass-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", + "parent": "srd_brass-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "brass-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", + "parent": "srd_brass-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "bronze-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", + "parent": "srd_bronze-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "bronze-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.\n", + "parent": "srd_bronze-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "bugbear_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at range.\n", + "parent": "srd_bugbear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "bugbear_morningstar", + "fields": { + "name": "Morningstar", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 11 (2d8 + 2) piercing damage.\n", + "parent": "srd_bugbear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "bulette_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 30 (4d12 + 4) piercing damage.\n", + "parent": "srd_bulette", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "bulette_deadly-leap", + "fields": { + "name": "Deadly Leap", + "desc": "If the bulette jumps at least 15 feet as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 feet out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the bulette's space.\n", + "parent": "srd_bulette", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "centaur_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_centaur", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "centaur_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", + "parent": "srd_centaur", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "centaur_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow.\n", + "parent": "srd_centaur", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "centaur_pike", + "fields": { + "name": "Pike", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", + "parent": "srd_centaur", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "chain-devil_animate-chains", + "fields": { + "name": "Animate Chains", + "desc": "Up to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.\n\nEach animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is incapacitated or dies.\n", + "parent": "srd_chain-devil", + "uses_type": "RECHARGE_AFTER_REST", + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "chain-devil_chain", + "fields": { + "name": "Chain", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) slashing damage. The target is grappled (escape DC 14) if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained and takes 7 (2d6) piercing damage at the start of each of its turns.\n", + "parent": "srd_chain-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "chain-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes two attacks with its chains.\n", + "parent": "srd_chain-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "chimera_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", + "parent": "srd_chimera", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "chimera_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_chimera", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "chimera_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 31 (7d8) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_chimera", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "chimera_horns", + "fields": { + "name": "Horns", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) bludgeoning damage.\n", + "parent": "srd_chimera", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "chimera_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns.\n", + "parent": "srd_chimera", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "chuul_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once.\n", + "parent": "srd_chuul", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "chuul_pincer", + "fields": { + "name": "Pincer", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage. The target is grappled (escape DC 14) if it is a Large or smaller creature and the chuul doesn't have two other creatures grappled.\n", + "parent": "srd_chuul", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "chuul_tentacles", + "fields": { + "name": "Tentacles", + "desc": "One creature grappled by the chuul must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. Until this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_chuul", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "clay-golem_haste", + "fields": { + "name": "Haste", + "desc": "Until the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action.\n", + "parent": "srd_clay-golem", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "clay-golem_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The golem makes two slam attacks.\n", + "parent": "srd_clay-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "clay-golem_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the greater restoration spell or other magic.\n", + "parent": "srd_clay-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "cloaker_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 10 (2d6 + 3) piercing damage, and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is blinded and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a DC 16 Strength check.\n", + "parent": "srd_cloaker", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "cloaker_moan", + "fields": { + "name": "Moan", + "desc": "Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the cloaker's next turn. If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours\n", + "parent": "srd_cloaker", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "cloaker_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The cloaker makes two attacks: one with its bite and one with its tail.\n", + "parent": "srd_cloaker", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "cloaker_phantasms", + "fields": { + "name": "Phantasms", + "desc": "The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.\n\nWhenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.\n\nA duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.\n", + "parent": "srd_cloaker", + "uses_type": "RECHARGE_AFTER_REST", + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "cloaker_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one creature. Hit: 7 (1d8 + 3) slashing damage.\n", + "parent": "srd_cloaker", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "cloud-giant_morningstar", + "fields": { + "name": "Morningstar", + "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) piercing damage.\n", + "parent": "srd_cloud-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "cloud-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two morningstar attacks.\n", + "parent": "srd_cloud-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "cloud-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +12 to hit, range 60/240 ft., one target. Hit: 30 (4d10 + 8) bludgeoning damage.\n", + "parent": "srd_cloud-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "cockatrice_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) piercing damage, and the target must succeed on a DC 11 Constitution saving throw against being magically petrified. On a failed save, the creature begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified for 24 hours.\n", + "parent": "srd_cockatrice", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "copper-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", + "parent": "srd_copper-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "copper-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", + "parent": "srd_copper-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "couatl_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one creature. Hit: 8 (1d6 + 5) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 24 hours. Until this poison ends, the target is unconscious. Another creature can use an action to shake the target awake.\n", + "parent": "srd_couatl", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "couatl_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).\n\nIn a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form.\n", + "parent": "srd_couatl", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "couatl_constrict", + "fields": { + "name": "Constrict", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one Medium or smaller creature. Hit: 10 (2d6 + 3) bludgeoning damage, and the target is grappled (escape DC 15). Until this grapple ends, the target is restrained, and the couatl can't constrict another target.\n", + "parent": "srd_couatl", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "darkmantle_crush", + "fields": { + "name": "Crush", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d6 + 3) bludgeoning damage, and the darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also blinded and unable to breathe while the darkmantle is attached in this way.\n\nWhile attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.\n\nA creature can detach the darkmantle by making a successful DC 13 Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement.\n", + "parent": "srd_darkmantle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "darkmantle_darkness-aura", + "fields": { + "name": "Darkness Aura", + "desc": "A 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains concentration, up to 10 minutes (as if concentrating on a spell). Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.\n", + "parent": "srd_darkmantle", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "deva_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).\n\nIn a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks.\n", + "parent": "srd_deva", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "deva_healing-touch", + "fields": { + "name": "Healing Touch", + "desc": "The deva touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", + "parent": "srd_deva", + "uses_type": "PER_DAY", + "uses_param": 3 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "deva_mace", + "fields": { + "name": "Mace", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage.\n", + "parent": "srd_deva", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "deva_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The deva makes two melee attacks.\n", + "parent": "srd_deva", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "djinni_create-whirlwind", + "fields": { + "name": "Create Whirlwind", + "desc": "A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains concentration (as if concentrating on a spell). Any creature but the djinni that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.\n\nA creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.\n", + "parent": "srd_djinni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "djinni_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The djinni makes three scimitar attacks.\n", + "parent": "srd_djinni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "djinni_scimitar", + "fields": { + "name": "Scimitar", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (djinni's choice).\n", + "parent": "srd_djinni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "doppelganger_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The doppelganger makes two melee attacks.\n", + "parent": "srd_doppelganger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "doppelganger_read-thoughts", + "fields": { + "name": "Read Thoughts", + "desc": "The doppelganger magically reads the surface thoughts of one creature within 60 feet of it. The effect can penetrate barriers, but 3 feet of wood or dirt, 2 feet of stone, 2 inches of metal, or a thin sheet of lead blocks it. While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.\n", + "parent": "srd_doppelganger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "doppelganger_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage.\n", + "parent": "srd_doppelganger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "dragon-turtle_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) piercing damage.\n", + "parent": "srd_dragon-turtle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "dragon-turtle_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 16 (2d8 + 7) slashing damage.\n", + "parent": "srd_dragon-turtle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "dragon-turtle_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks.\n", + "parent": "srd_dragon-turtle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "dragon-turtle_steam-breath", + "fields": { + "name": "Steam Breath", + "desc": "The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage.\n", + "parent": "srd_dragon-turtle", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "dragon-turtle_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked prone.\n", + "parent": "srd_dragon-turtle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "dretch_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 3 (1d6) piercing damage.\n", + "parent": "srd_dretch", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "dretch_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 5 (2d4) slashing damage.\n", + "parent": "srd_dretch", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "dretch_fetid-cloud", + "fields": { + "name": "Fetid Cloud", + "desc": "A 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it. Any creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions.\n", + "parent": "srd_dretch", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "dretch_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dretch makes two attacks: one with its bite and one with its claws.\n", + "parent": "srd_dretch", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "drider_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 2 (1d4) piercing damage plus 9 (2d8) poison damage.\n", + "parent": "srd_drider", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "drider_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +6 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage.\n", + "parent": "srd_drider", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "drider_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", + "parent": "srd_drider", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "drider_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack.\n", + "parent": "srd_drider", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "dryad_club", + "fields": { + "name": "Club", + "desc": "Melee Weapon Attack: +2 to hit (+6 to hit with shillelagh), reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with shillelagh.\n", + "parent": "srd_dryad", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "dryad_fey-charm", + "fields": { + "name": "Fey Charm", + "desc": "The dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a DC 14 Wisdom saving throw or be magically charmed. The charmed creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.\n\nEach time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.\n\nThe dryad can have no more than one humanoid and up to three beasts charmed at a time.\n", + "parent": "srd_dryad", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "duergar_enlarge", + "fields": { + "name": "Enlarge", + "desc": "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available.\n", + "parent": "srd_duergar", + "uses_type": "RECHARGE_AFTER_REST", + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "duergar_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The duergar magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell). Any equipment the duergar wears or carries is invisible with it.\n", + "parent": "srd_duergar", + "uses_type": "RECHARGE_AFTER_REST", + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "duergar_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarged.\n", + "parent": "srd_duergar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "duergar_war-pick", + "fields": { + "name": "War Pick", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage, or 11 (2d8 + 2) piercing damage while enlarged.\n", + "parent": "srd_duergar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "dust-mephit_blinding-breath", + "fields": { + "name": "Blinding Breath", + "desc": "The mephit exhales a 15-foot cone of blinding dust. Each creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_dust-mephit", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "dust-mephit_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) slashing damage.\n", + "parent": "srd_dust-mephit", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "earth-elemental_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The elemental makes two slam attacks.\n", + "parent": "srd_earth-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "earth-elemental_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", + "parent": "srd_earth-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "efreeti_hurl-flame", + "fields": { + "name": "Hurl Flame", + "desc": "Ranged Spell Attack: +7 to hit, range 120 ft., one target. Hit: 17 (5d6) fire damage.\n", + "parent": "srd_efreeti", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "efreeti_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The efreeti makes two scimitar attacks or uses its Hurl Flame twice.\n", + "parent": "srd_efreeti", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "efreeti_scimitar", + "fields": { + "name": "Scimitar", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage plus 7 (2d6) fire damage.\n", + "parent": "srd_efreeti", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "elf-drow_hand-crossbow", + "fields": { + "name": "Hand Crossbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake.\n", + "parent": "srd_elf-drow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "elf-drow_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_elf-drow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "erinyes_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +7 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 13 (3d8) poison damage, and the target must succeed on a DC 14 Constitution saving throw or be poisoned. The poison lasts until it is removed by the lesser restoration spell or similar magic.\n", + "parent": "srd_erinyes", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "erinyes_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands, plus 13 (3d8) poison damage.\n", + "parent": "srd_erinyes", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "erinyes_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The erinyes makes three attacks.\n", + "parent": "srd_erinyes", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ettercap_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage plus 4 (1d8) poison damage. The target must succeed on a DC 11 Constitution saving throw or be poisoned for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ettercap", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ettercap_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.\n", + "parent": "srd_ettercap", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ettercap_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The ettercap makes two attacks: one with its bite and one with its claws.\n", + "parent": "srd_ettercap", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ettercap_web", + "fields": { + "name": "Web", + "desc": "Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing. As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect also ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, vulnerability to fire damage, and immunity to bludgeoning, poison, and psychic damage.\n", + "parent": "srd_ettercap", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ettin_battleaxe", + "fields": { + "name": "Battleaxe", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", + "parent": "srd_ettin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ettin_morningstar", + "fields": { + "name": "Morningstar", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) piercing damage.\n", + "parent": "srd_ettin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ettin_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The ettin makes two attacks: one with its battleaxe and one with its morningstar.\n", + "parent": "srd_ettin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "fire-elemental_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The elemental makes two touch attacks.\n", + "parent": "srd_fire-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "fire-elemental_touch", + "fields": { + "name": "Touch", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 (1d10) fire damage at the start of each of its turns.\n", + "parent": "srd_fire-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "fire-giant_greatsword", + "fields": { + "name": "Greatsword", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 28 (6d6 + 7) slashing damage.\n", + "parent": "srd_fire-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "fire-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greatsword attacks.\n", + "parent": "srd_fire-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "fire-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +11 to hit, range 60/240 ft., one target. Hit: 29 (4d10 + 7) bludgeoning damage.\n", + "parent": "srd_fire-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "flesh-golem_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The golem makes two slam attacks.\n", + "parent": "srd_flesh-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "flesh-golem_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_flesh-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "flying-sword_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage.\n", + "parent": "srd_flying-sword", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "frost-giant_greataxe", + "fields": { + "name": "Greataxe", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 25 (3d12 + 6) slashing damage.\n", + "parent": "srd_frost-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "frost-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greataxe attacks.\n", + "parent": "srd_frost-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "frost-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", + "parent": "srd_frost-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gargoyle_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_gargoyle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gargoyle_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", + "parent": "srd_gargoyle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gargoyle_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The gargoyle makes two attacks: one with its bite and one with its claws.\n", + "parent": "srd_gargoyle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gelatinous-cube_engulf", + "fields": { + "name": "Engulf", + "desc": "The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a DC 12 Dexterity saving throw.\n\nOn a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.\n\nOn a failed save, the cube enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.\n\nAn engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube.\n", + "parent": "srd_gelatinous-cube", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gelatinous-cube_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) acid damage.\n", + "parent": "srd_gelatinous-cube", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ghast_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 12 (2d8 + 3) piercing damage.\n", + "parent": "srd_ghast", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ghast_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a creature other than an undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ghast", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ghost_etherealness", + "fields": { + "name": "Etherealness", + "desc": "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.\n", + "parent": "srd_ghost", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ghost_horrifying-visage", + "fields": { + "name": "Horrifying Visage", + "desc": "Each non-undead creature within 60 feet of the ghost that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 × 10 years. A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.\n", + "parent": "srd_ghost", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ghost_possession", + "fields": { + "name": "Possession", + "desc": "One humanoid that the ghost can see within 5 feet of it must succeed on a DC 13 Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is incapacitated and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.\n\nThe possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends.\n", + "parent": "srd_ghost", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ghost_withering-touch", + "fields": { + "name": "Withering Touch", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 17 (4d6 + 3) necrotic damage.\n", + "parent": "srd_ghost", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ghoul_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) piercing damage.\n", + "parent": "srd_ghoul", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ghoul_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ghoul", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gibbering-mouther_bites", + "fields": { + "name": "Bites", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 17 (5d6) piercing damage. If the target is Medium or smaller, it must succeed on a DC 10 Strength saving throw or be knocked prone. If the target is killed by this damage, it is absorbed into the mouther.\n", + "parent": "srd_gibbering-mouther", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gibbering-mouther_blinding-spittle", + "fields": { + "name": "Blinding Spittle", + "desc": "The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the mouther's next turn.\n", + "parent": "srd_gibbering-mouther", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gibbering-mouther_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle.\n", + "parent": "srd_gibbering-mouther", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "glabrezu_fist", + "fields": { + "name": "Fist", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.\n", + "parent": "srd_glabrezu", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "glabrezu_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell.\n", + "parent": "srd_glabrezu", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "glabrezu_pincer", + "fields": { + "name": "Pincer", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a Medium or smaller creature, it is grappled (escape DC 15). The glabrezu has two pincers, each of which can grapple only one target.\n", + "parent": "srd_glabrezu", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gnoll_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\n", + "parent": "srd_gnoll", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gnoll_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", + "parent": "srd_gnoll", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gnoll_spear", + "fields": { + "name": "Spear", + "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", + "parent": "srd_gnoll", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gnome-deep-svirfneblin_poisoned-dart", + "fields": { + "name": "Poisoned Dart", + "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_gnome-deep-svirfneblin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gnome-deep-svirfneblin_war-pick", + "fields": { + "name": "War Pick", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", + "parent": "srd_gnome-deep-svirfneblin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "goblin_scimitar", + "fields": { + "name": "Scimitar", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", + "parent": "srd_goblin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "goblin_shortbow", + "fields": { + "name": "Shortbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_goblin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gold-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", + "parent": "srd_gold-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gold-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_gold-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gorgon_gore", + "fields": { + "name": "Gore", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 18 (2d12 + 5) piercing damage.\n", + "parent": "srd_gorgon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gorgon_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.\n", + "parent": "srd_gorgon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gorgon_petrifying-breath", + "fields": { + "name": "Petrifying Breath", + "desc": "The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw. On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.\n", + "parent": "srd_gorgon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gray-ooze_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage, and if the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", + "parent": "srd_gray-ooze", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "green-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage.\n", + "parent": "srd_green-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "green-dragon-wyrmling_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 11 Constitution saving throw, taking 21 (6d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_green-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "green-hag_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_green-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "green-hag_illusory-appearance", + "fields": { + "name": "Illusory Appearance", + "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the hag is disguised.\n", + "parent": "srd_green-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "green-hag_invisible-passage", + "fields": { + "name": "Invisible Passage", + "desc": "The hag magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.\n", + "parent": "srd_green-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "grick_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_grick", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "grick_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target.\n", + "parent": "srd_grick", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "grick_tentacles", + "fields": { + "name": "Tentacles", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.\n", + "parent": "srd_grick", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "griffon_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", + "parent": "srd_griffon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "griffon_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_griffon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "griffon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The griffon makes two attacks: one with its beak and one with its claws.\n", + "parent": "srd_griffon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "grimlock_spiked-bone-club", + "fields": { + "name": "Spiked Bone Club", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage.\n", + "parent": "srd_grimlock", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "guardian-naga_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one creature. Hit: 8 (1d8 + 4) piercing damage, and the target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_guardian-naga", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "guardian-naga_spit-poison", + "fields": { + "name": "Spit Poison", + "desc": "Ranged Weapon Attack: +8 to hit, range 15/30 ft., one creature. Hit: The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_guardian-naga", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gynosphinx_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_gynosphinx", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "gynosphinx_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The sphinx makes two claw attacks.\n", + "parent": "srd_gynosphinx", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "half-red-dragon-veteran_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The veteran exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "half-red-dragon-veteran_heavy-crossbow", + "fields": { + "name": "Heavy Crossbow", + "desc": "Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "half-red-dragon-veteran_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "half-red-dragon-veteran_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "half-red-dragon-veteran_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "harpy_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.\n", + "parent": "srd_harpy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "harpy_club", + "fields": { + "name": "Club", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.\n", + "parent": "srd_harpy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "harpy_luring-song", + "fields": { + "name": "Luring Song", + "desc": "The harpy sings a magical melody. Every humanoid and giant within 300 feet of the harpy that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is incapacitated.\n\nWhile charmed by the harpy, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.\n\nA target that successfully saves is immune to this harpy's song for the next 24 hours.\n", + "parent": "srd_harpy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "harpy_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The harpy makes two attacks: one with its claws and one with its club.\n", + "parent": "srd_harpy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hell-hound_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 7 (2d6) fire damage.\n", + "parent": "srd_hell-hound", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hell-hound_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The hound exhales fire in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_hell-hound", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hezrou_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", + "parent": "srd_hezrou", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hezrou_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_hezrou", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hezrou_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The hezrou makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_hezrou", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hill-giant_greatclub", + "fields": { + "name": "Greatclub", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 18 (3d8 + 5) bludgeoning damage.\n", + "parent": "srd_hill-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hill-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greatclub attacks.\n", + "parent": "srd_hill-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hill-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +8 to hit, range 60/240 ft., one target. Hit: 21 (3d10 + 5) bludgeoning damage.\n", + "parent": "srd_hill-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hippogriff_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", + "parent": "srd_hippogriff", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hippogriff_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", + "parent": "srd_hippogriff", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hippogriff_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The hippogriff makes two attacks: one with its beak and one with its claws.\n", + "parent": "srd_hippogriff", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hobgoblin_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", + "parent": "srd_hobgoblin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hobgoblin_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage, or 6 (1d10 + 1) slashing damage if used with two hands.\n", + "parent": "srd_hobgoblin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "homunculus_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or be poisoned for 1 minute. If the saving throw fails by 5 or more, the target is instead poisoned for 5 (1d10) minutes and unconscious while poisoned in this way.\n", + "parent": "srd_homunculus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "horned-devil_fork", + "fields": { + "name": "Fork", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (2d8 + 6) piercing damage.\n", + "parent": "srd_horned-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "horned-devil_hurl-flame", + "fields": { + "name": "Hurl Flame", + "desc": "Ranged Spell Attack: +7 to hit, range 150 ft., one target. Hit: 14 (4d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", + "parent": "srd_horned-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "horned-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack.\n", + "parent": "srd_horned-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "horned-devil_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 10 (1d8 + 6) piercing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 17 Constitution saving throw or lose 10 (3d6) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 (3d6). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", + "parent": "srd_horned-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hydra_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 10 (1d10 + 5) piercing damage.\n", + "parent": "srd_hydra", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "hydra_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The hydra makes as many bite attacks as it has heads.\n", + "parent": "srd_hydra", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ice-devil_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) piercing damage plus 10 (3d6) cold damage.\n", + "parent": "srd_ice-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ice-devil_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 10 (2d4 + 5) slashing damage plus 10 (3d6) cold damage.\n", + "parent": "srd_ice-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ice-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes three attacks: one with its bite, one with its claws, and one with its tail.\n", + "parent": "srd_ice-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ice-devil_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage.\n", + "parent": "srd_ice-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ice-devil_wall-of-ice", + "fields": { + "name": "Wall of Ice", + "desc": "The devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.\n\nWhen the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.\n\nThe wall lasts for 1 minute or until the devil is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.\n", + "parent": "srd_ice-devil", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ice-mephit_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage.\n", + "parent": "srd_ice-mephit", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ice-mephit_frost-breath", + "fields": { + "name": "Frost Breath", + "desc": "The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ice-mephit", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "imp_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The imp magically turns invisible until it attacks or until its concentration ends (as if concentrating on a spell). Any equipment the imp wears or carries is invisible with it.\n", + "parent": "srd_imp", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "imp_sting", + "fields": { + "name": "Sting", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_imp", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "imp_sting-bite-in-beast-form", + "fields": { + "name": "Sting (Bite in Beast Form)", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_imp", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "invisible-stalker_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The stalker makes two slam attacks.\n", + "parent": "srd_invisible-stalker", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "invisible-stalker_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", + "parent": "srd_invisible-stalker", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "iron-golem_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The golem makes two melee attacks.\n", + "parent": "srd_iron-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "iron-golem_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_iron-golem", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "iron-golem_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", + "parent": "srd_iron-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "iron-golem_sword", + "fields": { + "name": "Sword", + "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 23 (3d10 + 7) slashing damage.\n", + "parent": "srd_iron-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "kobold_dagger", + "fields": { + "name": "Dagger", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", + "parent": "srd_kobold", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "kobold_sling", + "fields": { + "name": "Sling", + "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.\n", + "parent": "srd_kobold", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "kraken_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +17 to hit, reach 5 ft., one target. Hit: 23 (3d8 + 10) piercing damage. If the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the kraken, and it takes 42 (12d6) acid damage at the start of each of the kraken's turns.\n\nIf the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a DC 25 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "kraken_fling", + "fields": { + "name": "Fling", + "desc": "One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "kraken_lightning-storm", + "fields": { + "name": "Lightning Storm", + "desc": "The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "kraken_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The kraken makes three tentacle attacks, each of which it can replace with one use of Fling.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "kraken_tentacle", + "fields": { + "name": "Tentacle", + "desc": "Melee Weapon Attack: +17 to hit, reach 30 ft., one target. Hit: 20 (3d6 + 10) bludgeoning damage, and the target is grappled (escape DC 18). Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "lamia_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", + "parent": "srd_lamia", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "lamia_dagger", + "fields": { + "name": "Dagger", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.\n", + "parent": "srd_lamia", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "lamia_intoxicating-touch", + "fields": { + "name": "Intoxicating Touch", + "desc": "Melee Spell Attack: +5 to hit, reach 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.\n", + "parent": "srd_lamia", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "lamia_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch.\n", + "parent": "srd_lamia", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "lemure_fist", + "fields": { + "name": "Fist", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\n", + "parent": "srd_lemure", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "lich_paralyzing-touch", + "fields": { + "name": "Paralyzing Touch", + "desc": "Melee Spell Attack: +12 to hit, reach 5 ft., one creature. Hit: 10 (3d6) cold damage. The target must succeed on a DC 18 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_lich", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "lizardfolk_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "lizardfolk_heavy-club", + "fields": { + "name": "Heavy Club", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "lizardfolk_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "lizardfolk_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The lizardfolk makes two melee attacks, each one with a different weapon.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "lizardfolk_spiked-shield", + "fields": { + "name": "Spiked Shield", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "magma-mephit_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage.\n", + "parent": "srd_magma-mephit", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "magma-mephit_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The mephit exhales a 15-foot cone of fire. Each creature in that area must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_magma-mephit", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "magmin_touch", + "fields": { + "name": "Touch", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d6) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 3 (1d6) fire damage at the end of each of its turns.\n", + "parent": "srd_magmin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "manticore_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", + "parent": "srd_manticore", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "manticore_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", + "parent": "srd_manticore", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "manticore_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes.\n", + "parent": "srd_manticore", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "manticore_tail-spike", + "fields": { + "name": "Tail Spike", + "desc": "Ranged Weapon Attack: +5 to hit, range 100/200 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", + "parent": "srd_manticore", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "marilith_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_marilith", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "marilith_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The marilith makes seven attacks: six with its longswords and one with its tail.\n", + "parent": "srd_marilith", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "marilith_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 15 (2d10 + 4) bludgeoning damage. If the target is Medium or smaller, it is grappled (escape DC 19). Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.\n", + "parent": "srd_marilith", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "marilith_teleport", + "fields": { + "name": "Teleport", + "desc": "The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", + "parent": "srd_marilith", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "medusa_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +5 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage.\n", + "parent": "srd_medusa", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "medusa_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The medusa makes either three melee attacks—one with its snake hair and two with its shortsword—or two ranged attacks with its longbow.\n", + "parent": "srd_medusa", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "medusa_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_medusa", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "medusa_snake-hair", + "fields": { + "name": "Snake Hair", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage plus 14 (4d6) poison damage.\n", + "parent": "srd_medusa", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "merfolk_spear", + "fields": { + "name": "Spear", + "desc": "Melee or Ranged Weapon Attack: +2 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hands to make a melee attack.\n", + "parent": "srd_merfolk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "merrow_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", + "parent": "srd_merrow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "merrow_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (2d4 + 4) slashing damage.\n", + "parent": "srd_merrow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "merrow_harpoon", + "fields": { + "name": "Harpoon", + "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.\n", + "parent": "srd_merrow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "merrow_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The merrow makes two attacks: one with its bite and one with its claws or harpoon.\n", + "parent": "srd_merrow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "mimic_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage.\n", + "parent": "srd_mimic", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "mimic_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait.\n", + "parent": "srd_mimic", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "minotaur-skeleton_gore", + "fields": { + "name": "Gore", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", + "parent": "srd_minotaur-skeleton", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "minotaur-skeleton_greataxe", + "fields": { + "name": "Greataxe", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", + "parent": "srd_minotaur-skeleton", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "minotaur_gore", + "fields": { + "name": "Gore", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", + "parent": "srd_minotaur", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "minotaur_greataxe", + "fields": { + "name": "Greataxe", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", + "parent": "srd_minotaur", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "mummy-lord_dreadful-glare", + "fields": { + "name": "Dreadful Glare", + "desc": "The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a DC 16 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours.\n", + "parent": "srd_mummy-lord", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "mummy-lord_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", + "parent": "srd_mummy-lord", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "mummy-lord_rotting-fist", + "fields": { + "name": "Rotting Fist", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage plus 21 (6d6) necrotic damage. If the target is a creature, it must succeed on a DC 16 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", + "parent": "srd_mummy-lord", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "mummy_dreadful-glare", + "fields": { + "name": "Dreadful Glare", + "desc": "The mummy targets one creature it can see within 60 feet of it. If the target can see the mummy, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.\n", + "parent": "srd_mummy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "mummy_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", + "parent": "srd_mummy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "mummy_rotting-fist", + "fields": { + "name": "Rotting Fist", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage. If the target is a creature, it must succeed on a DC 12 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", + "parent": "srd_mummy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "nalfeshnee_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 32 (5d10 + 5) piercing damage.\n", + "parent": "srd_nalfeshnee", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "nalfeshnee_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) slashing damage.\n", + "parent": "srd_nalfeshnee", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "nalfeshnee_horror-nimbus", + "fields": { + "name": "Horror Nimbus", + "desc": "The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.\n", + "parent": "srd_nalfeshnee", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "nalfeshnee_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_nalfeshnee", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "nalfeshnee_teleport", + "fields": { + "name": "Teleport", + "desc": "The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", + "parent": "srd_nalfeshnee", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "night-hag_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies.\n", + "parent": "srd_night-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "night-hag_claws", + "fields": { + "name": "Claws", + "desc": "(Hag Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_night-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "night-hag_etherealness", + "fields": { + "name": "Etherealness", + "desc": "The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession.\n", + "parent": "srd_night-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "night-hag_nightmare-haunting", + "fields": { + "name": "Nightmare Haunting", + "desc": "While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle. As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.\n", + "parent": "srd_night-hag", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "nightmare_ethereal-stride", + "fields": { + "name": "Ethereal Stride", + "desc": "The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.\n", + "parent": "srd_nightmare", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "nightmare_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage.\n", + "parent": "srd_nightmare", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ochre-jelly_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage.\n", + "parent": "srd_ochre-jelly", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ogre-zombie_morningstar", + "fields": { + "name": "Morningstar", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_ogre-zombie", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ogre_greatclub", + "fields": { + "name": "Greatclub", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_ogre", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "ogre_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", + "parent": "srd_ogre", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "oni_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size.\n", + "parent": "srd_oni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "oni_claw", + "fields": { + "name": "Claw", + "desc": "(Oni Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", + "parent": "srd_oni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "oni_glaive", + "fields": { + "name": "Glaive", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small or Medium form.\n", + "parent": "srd_oni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "oni_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The oni makes two attacks, either with its claws or its glaive.\n", + "parent": "srd_oni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "orc_greataxe", + "fields": { + "name": "Greataxe", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.\n", + "parent": "srd_orc", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "orc_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_orc", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "otyugh_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 12 (2d8 + 3) piercing damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured.\n", + "parent": "srd_otyugh", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "otyugh_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The otyugh makes three attacks: one with its bite and two with its tentacles.\n", + "parent": "srd_otyugh", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "otyugh_tentacle", + "fields": { + "name": "Tentacle", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage. If the target is Medium or smaller, it is grappled (escape DC 13) and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.\n", + "parent": "srd_otyugh", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "otyugh_tentacle-slam", + "fields": { + "name": "Tentacle Slam", + "desc": "The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the otyugh's next turn. On a successful save, the target takes half the bludgeoning damage and isn't stunned.\n", + "parent": "srd_otyugh", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "owlbear_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one creature. Hit: 10 (1d10 + 5) piercing damage.\n", + "parent": "srd_owlbear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "owlbear_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", + "parent": "srd_owlbear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "owlbear_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The owlbear makes two attacks: one with its beak and one with its claws.\n", + "parent": "srd_owlbear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "pegasus_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_pegasus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "pit-fiend_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) piercing damage. The target must succeed on a DC 21 Constitution saving throw or become poisoned. While poisoned in this way, the target can't regain hit points, and it takes 21 (6d6) poison damage at the start of each of its turns. The poisoned target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "pit-fiend_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 17 (2d8 + 8) slashing damage.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "pit-fiend_mace", + "fields": { + "name": "Mace", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) bludgeoning damage plus 21 (6d6) fire damage.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "pit-fiend_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "pit-fiend_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 24 (3d10 + 8) bludgeoning damage.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "planetar_greatsword", + "fields": { + "name": "Greatsword", + "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage.\n", + "parent": "srd_planetar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "planetar_healing-touch", + "fields": { + "name": "Healing Touch", + "desc": "The planetar touches another creature. The target magically regains 30 (6d8 + 3) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", + "parent": "srd_planetar", + "uses_type": "PER_DAY", + "uses_param": 4 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "planetar_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The planetar makes two melee attacks.\n", + "parent": "srd_planetar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "plesiosaurus_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 14 (3d6 + 4) piercing damage.\n", + "parent": "srd_plesiosaurus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "pseudodragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", + "parent": "srd_pseudodragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "pseudodragon_sting", + "fields": { + "name": "Sting", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. If the saving throw fails by 5 or more, the target falls unconscious for the same duration, or until it takes damage or another creature uses an action to shake it awake.\n", + "parent": "srd_pseudodragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "purple-worm_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 22 (3d8 + 9) piercing damage. If the target is a Large or smaller creature, it must succeed on a DC 19 Dexterity saving throw or be swallowed by the worm. A swallowed creature is blinded and restrained, it has total cover against attacks and other effects outside the worm, and it takes 21 (6d6) acid damage at the start of each of the worm's turns.\n\nIf the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a DC 21 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 20 feet of movement, exiting prone.\n", + "parent": "srd_purple-worm", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "purple-worm_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The worm makes two attacks: one with its bite and one with its stinger.\n", + "parent": "srd_purple-worm", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "purple-worm_tail-stinger", + "fields": { + "name": "Tail Stinger", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 19 (3d6 + 9) piercing damage, and the target must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_purple-worm", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "quasit_claws-bite-in-beast-form", + "fields": { + "name": "Claws (Bite in Beast Form)", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must succeed on a DC 10 Constitution saving throw or take 5 (2d4) poison damage and become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_quasit", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "quasit_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The quasit magically turns invisible until it attacks or uses Scare, or until its concentration ends (as if concentrating on a spell). Any equipment the quasit wears or carries is invisible with it.\n", + "parent": "srd_quasit", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "quasit_scare", + "fields": { + "name": "Scare", + "desc": "One creature of the quasit's choice within 20 feet of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.\n", + "parent": "srd_quasit", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "rakshasa_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature. The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a remove curse spell or similar magic.\n", + "parent": "srd_rakshasa", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "rakshasa_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The rakshasa makes two claw attacks.\n", + "parent": "srd_rakshasa", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "red-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage.\n", + "parent": "srd_red-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "red-dragon-wyrmling_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_red-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "remorhaz_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage. If the target is a creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.\n", + "parent": "srd_remorhaz", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "remorhaz_swallow", + "fields": { + "name": "Swallow", + "desc": "The remorhaz makes one bite attack against a Medium or smaller creature it is grappling. If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the remorhaz, and it takes 21 (6d6) acid damage at the start of each of the remorhaz's turns.\n\nIf the remorhaz takes 30 damage or more on a single turn from a creature inside it, the remorhaz must succeed on a DC 15 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the remorhaz. If the remorhaz dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", + "parent": "srd_remorhaz", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "roc_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 27 (4d8 + 9) piercing damage.\n", + "parent": "srd_roc", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "roc_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The roc makes two attacks: one with its beak and one with its talons.\n", + "parent": "srd_roc", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "roc_talons", + "fields": { + "name": "Talons", + "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 23 (4d6 + 9) slashing damage, and the target is grappled (escape DC 19). Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.\n", + "parent": "srd_roc", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "roper_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 22 (4d8 + 4) piercing damage.\n", + "parent": "srd_roper", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "roper_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite.\n", + "parent": "srd_roper", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "roper_reel", + "fields": { + "name": "Reel", + "desc": "The roper pulls each creature grappled by it up to 25 feet straight toward it.\n", + "parent": "srd_roper", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "roper_tendril", + "fields": { + "name": "Tendril", + "desc": "Melee Weapon Attack: +7 to hit, reach 50 ft., one creature. Hit: The target is grappled (escape DC 15). Until the grapple ends, the target is restrained and has disadvantage on Strength checks and Strength saving throws, and the roper can't use the same tendril on another target.\n", + "parent": "srd_roper", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "rug-of-smothering_smother", + "fields": { + "name": "Smother", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one Medium or smaller creature. Hit: The creature is grappled (escape DC 13). Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 (2d6 + 3) bludgeoning damage.\n", + "parent": "srd_rug-of-smothering", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "rust-monster_antennae", + "fields": { + "name": "Antennae", + "desc": "The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the rust monster's touch. If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.\n", + "parent": "srd_rust-monster", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "rust-monster_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", + "parent": "srd_rust-monster", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "sahuagin_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) piercing damage.\n", + "parent": "srd_sahuagin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "sahuagin_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) slashing damage.\n", + "parent": "srd_sahuagin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "sahuagin_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The sahuagin makes two melee attacks: one with its bite and one with its claws or spear.\n", + "parent": "srd_sahuagin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "sahuagin_spear", + "fields": { + "name": "Spear", + "desc": "Melee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.\n", + "parent": "srd_sahuagin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "salamander_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The salamander makes two attacks: one with its spear and one with its tail.\n", + "parent": "srd_salamander", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "salamander_spear", + "fields": { + "name": "Spear", + "desc": "Melee or Ranged Weapon Attack: +7 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", + "parent": "srd_salamander", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "salamander_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage, and the target is grappled (escape DC 14). Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.\n", + "parent": "srd_salamander", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "satyr_ram", + "fields": { + "name": "Ram", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) bludgeoning damage.\n", + "parent": "srd_satyr", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "satyr_shortbow", + "fields": { + "name": "Shortbow", + "desc": "Ranged Weapon Attack: +5 to hit, range 80/320 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_satyr", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "satyr_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_satyr", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "sea-hag_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", + "parent": "srd_sea-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "sea-hag_death-glare", + "fields": { + "name": "Death Glare", + "desc": "The hag targets one frightened creature she can see within 30 feet of her. If the target can see the hag, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.\n", + "parent": "srd_sea-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "sea-hag_illusory-appearance", + "fields": { + "name": "Illusory Appearance", + "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 16 Intelligence (Investigation) check to discern that the hag is disguised.\n", + "parent": "srd_sea-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "shadow_strength-drain", + "fields": { + "name": "Strength Drain", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) necrotic damage, and the target's Strength score is reduced by 1d4. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.\n\nIf a non-evil humanoid dies from this attack, a new shadow rises from the corpse 1d4 hours later.\n", + "parent": "srd_shadow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "shambling-mound_engulf", + "fields": { + "name": "Engulf", + "desc": "The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must succeed on a DC 14 Constitution saving throw at the start of each of the mound's turns or take 13 (2d8 + 4) bludgeoning damage. If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time.\n", + "parent": "srd_shambling-mound", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "shambling-mound_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is grappled (escape DC 14), and the shambling mound uses its Engulf on it.\n", + "parent": "srd_shambling-mound", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "shambling-mound_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_shambling-mound", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "shield-guardian_fist", + "fields": { + "name": "Fist", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_shield-guardian", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "shield-guardian_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The guardian makes two fist attacks.\n", + "parent": "srd_shield-guardian", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "silver-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", + "parent": "srd_silver-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "silver-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_silver-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "skeleton_shortbow", + "fields": { + "name": "Shortbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_skeleton", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "skeleton_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_skeleton", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "solar_flying-sword", + "fields": { + "name": "Flying Sword", + "desc": "The solar releases its greatsword to hover magically in an unoccupied space within 5 feet of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 feet and either make one attack against a target or return to the solar's hands. If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies.\n", + "parent": "srd_solar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "solar_greatsword", + "fields": { + "name": "Greatsword", + "desc": "Melee Weapon Attack: +15 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) slashing damage plus 27 (6d8) radiant damage.\n", + "parent": "srd_solar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "solar_healing-touch", + "fields": { + "name": "Healing Touch", + "desc": "The solar touches another creature. The target magically regains 40 (8d8 + 4) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", + "parent": "srd_solar", + "uses_type": "PER_DAY", + "uses_param": 4 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "solar_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The solar makes two greatsword attacks.\n", + "parent": "srd_solar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "solar_slaying-longbow", + "fields": { + "name": "Slaying Longbow", + "desc": "Ranged Weapon Attack: +13 to hit, range 150/600 ft., one target. Hit: 15 (2d8 + 6) piercing damage plus 27 (6d8) radiant damage. If the target is a creature that has 100 hit points or fewer, it must succeed on a DC 15 Constitution saving throw or die.\n", + "parent": "srd_solar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "specter_life-drain", + "fields": { + "name": "Life Drain", + "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) necrotic damage. The target must succeed on a DC 10 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "parent": "srd_specter", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "spirit-naga_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 7 (1d6 + 4) piercing damage, and the target must make a DC 13 Constitution saving throw, taking 31 (7d8) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_spirit-naga", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "sprite_heart-sight", + "fields": { + "name": "Heart Sight", + "desc": "The sprite touches a creature and magically knows the creature's current emotional state. If the target fails a DC 10 Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.\n", + "parent": "srd_sprite", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "sprite_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The sprite magically turns invisible until it attacks or casts a spell, or until its concentration ends (as if concentrating on a spell). Any equipment the sprite wears or carries is invisible with it.\n", + "parent": "srd_sprite", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "sprite_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 1 slashing damage.\n", + "parent": "srd_sprite", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "sprite_shortbow", + "fields": { + "name": "Shortbow", + "desc": "Ranged Weapon Attack: +6 to hit, range 40/160 ft., one target. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or become poisoned for 1 minute. If its saving throw result is 5 or lower, the poisoned target falls unconscious for the same duration, or until it takes damage or another creature takes an action to shake it awake.\n", + "parent": "srd_sprite", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "steam-mephit_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 2 (1d4) slashing damage plus 2 (1d4) fire damage.\n", + "parent": "srd_steam-mephit", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "steam-mephit_steam-breath", + "fields": { + "name": "Steam Breath", + "desc": "The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 4 (1d8) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_steam-mephit", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "stirge_blood-drain", + "fields": { + "name": "Blood Drain", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 5 (1d4 + 3) piercing damage, and the stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 (1d4 + 3) hit points due to blood loss.\n\nThe stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies. A creature, including the target, can use its action to detach the stirge.\n", + "parent": "srd_stirge", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "stone-giant_greatclub", + "fields": { + "name": "Greatclub", + "desc": "Melee Weapon Attack: +9 to hit, reach 15 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", + "parent": "srd_stone-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "stone-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greatclub attacks.\n", + "parent": "srd_stone-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "stone-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage. If the target is a creature, it must succeed on a DC 17 Strength saving throw or be knocked prone.\n", + "parent": "srd_stone-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "stone-golem_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The golem makes two slam attacks.\n", + "parent": "srd_stone-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "stone-golem_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", + "parent": "srd_stone-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "stone-golem_slow", + "fields": { + "name": "Slow", + "desc": "The golem targets one or more creatures it can see within 10 feet of it. Each target must make a DC 17 Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_stone-golem", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "storm-giant_greatsword", + "fields": { + "name": "Greatsword", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 30 (6d6 + 9) slashing damage.\n", + "parent": "srd_storm-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "storm-giant_lightning-strike", + "fields": { + "name": "Lightning Strike", + "desc": "The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a DC 17 Dexterity saving throw, taking 54 (12d8) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_storm-giant", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "storm-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greatsword attacks.\n", + "parent": "srd_storm-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "storm-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +14 to hit, range 60/240 ft., one target. Hit: 35 (4d12 + 9) bludgeoning damage.\n", + "parent": "srd_storm-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "succubusincubus_charm", + "fields": { + "name": "Charm", + "desc": "One humanoid the fiend can see within 30 feet of it must succeed on a DC 15 Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the fiend's verbal or telepathic commands. If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.\n\nThe fiend can have only one target charmed at a time. If it charms another, the effect on the previous target ends.\n", + "parent": "srd_succubusincubus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "succubusincubus_claw", + "fields": { + "name": "Claw", + "desc": "(Fiend Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", + "parent": "srd_succubusincubus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "succubusincubus_draining-kiss", + "fields": { + "name": "Draining Kiss", + "desc": "The fiend kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "parent": "srd_succubusincubus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "succubusincubus_etherealness", + "fields": { + "name": "Etherealness", + "desc": "The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa.\n", + "parent": "srd_succubusincubus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "tarrasque_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 36 (4d12 + 10) piercing damage. If the target is a creature, it is grappled (escape DC 20). Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "tarrasque_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +19 to hit, reach 15 ft., one target. Hit: 28 (4d8 + 10) slashing damage.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "tarrasque_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "tarrasque_horns", + "fields": { + "name": "Horns", + "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 32 (4d10 + 10) piercing damage.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "tarrasque_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "tarrasque_swallow", + "fields": { + "name": "Swallow", + "desc": "The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the tarrasque, and it takes 56 (16d6) acid damage at the start of each of the tarrasque's turns.\n\nIf the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a DC 20 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 30 feet of movement, exiting prone.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "tarrasque_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +19 to hit, reach 20 ft., one target. Hit: 24 (4d6 + 10) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be knocked prone.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "treant_animate-trees", + "fields": { + "name": "Animate Trees", + "desc": "The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a treant, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.\n", + "parent": "srd_treant", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "treant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The treant makes two slam attacks.\n", + "parent": "srd_treant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "treant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +10 to hit, range 60/180 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", + "parent": "srd_treant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "treant_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 16 (3d6 + 6) bludgeoning damage.\n", + "parent": "srd_treant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "triceratops_gore", + "fields": { + "name": "Gore", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 24 (4d8 + 6) piercing damage.\n", + "parent": "srd_triceratops", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "triceratops_stomp", + "fields": { + "name": "Stomp", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.\n", + "parent": "srd_triceratops", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "troll_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) piercing damage.\n", + "parent": "srd_troll", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "troll_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_troll", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "troll_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The troll makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_troll", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "tyrannosaurus-rex_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 33 (4d12 + 7) piercing damage. If the target is a Medium or smaller creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.\n", + "parent": "srd_tyrannosaurus-rex", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "tyrannosaurus-rex_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target.\n", + "parent": "srd_tyrannosaurus-rex", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "tyrannosaurus-rex_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", + "parent": "srd_tyrannosaurus-rex", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "unicorn_healing-touch", + "fields": { + "name": "Healing Touch", + "desc": "The unicorn touches another creature with its horn. The target magically regains 11 (2d8 + 2) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target.\n", + "parent": "srd_unicorn", + "uses_type": "PER_DAY", + "uses_param": 3 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "unicorn_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_unicorn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "unicorn_horn", + "fields": { + "name": "Horn", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", + "parent": "srd_unicorn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "unicorn_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The unicorn makes two attacks: one with its hooves and one with its horn.\n", + "parent": "srd_unicorn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "unicorn_teleport", + "fields": { + "name": "Teleport", + "desc": "The unicorn magically teleports itself and up to three willing creatures it can see within 5 feet of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away.\n", + "parent": "srd_unicorn", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "vampire-spawn_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "parent": "srd_vampire-spawn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "vampire-spawn_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 8 (2d4 + 3) slashing damage. Instead of dealing damage, the vampire can grapple the target (escape DC 13).\n", + "parent": "srd_vampire-spawn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "vampire-spawn_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The vampire makes two attacks, only one of which can be a bite attack.\n", + "parent": "srd_vampire-spawn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "vampire_bite", + "fields": { + "name": "Bite", + "desc": "(Bat or Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 7 (1d6 + 4) piercing damage plus 10 (3d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a vampire spawn under the vampire's control.\n", + "parent": "srd_vampire", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "vampire_charm", + "fields": { + "name": "Charm", + "desc": "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a DC 17 Wisdom saving throw against this magic or be charmed by the vampire. The charmed target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.\n\nEach time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect.\n", + "parent": "srd_vampire", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "vampire_children-of-the-night", + "fields": { + "name": "Children of the Night", + "desc": "The vampire magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the vampire can call 3d6 wolves instead. The called creatures arrive in 1d4 rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action.\n", + "parent": "srd_vampire", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "vampire_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Vampire Form Only). The vampire makes two attacks, only one of which can be a bite attack.\n", + "parent": "srd_vampire", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "vampire_unarmed-strike", + "fields": { + "name": "Unarmed Strike", + "desc": "(Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one creature. Hit: 8 (1d8 + 4) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape DC 18).\n", + "parent": "srd_vampire", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "violet-fungus_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The fungus makes 1d4 Rotting Touch attacks.\n", + "parent": "srd_violet-fungus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "violet-fungus_rotting-touch", + "fields": { + "name": "Rotting Touch", + "desc": "Melee Weapon Attack: +2 to hit, reach 10 ft., one creature. Hit: 4 (1d8) necrotic damage.\n", + "parent": "srd_violet-fungus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "vrock_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", + "parent": "srd_vrock", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "vrock_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The vrock makes two attacks: one with its beak and one with its talons.\n", + "parent": "srd_vrock", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "vrock_spores", + "fields": { + "name": "Spores", + "desc": "A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.\n", + "parent": "srd_vrock", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "vrock_stunning-screech", + "fields": { + "name": "Stunning Screech", + "desc": "The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must succeed on a DC 14 Constitution saving throw or be stunned until the end of the vrock's next turn.\n", + "parent": "srd_vrock", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "vrock_talons", + "fields": { + "name": "Talons", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", + "parent": "srd_vrock", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "warhorse-skeleton_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_warhorse-skeleton", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "water-elemental_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The elemental makes two slam attacks.\n", + "parent": "srd_water-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "water-elemental_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_water-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "water-elemental_whelm", + "fields": { + "name": "Whelm", + "desc": "Each creature in the elemental's space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the elemental's space.\n\nThe elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a DC 14 Strength and succeeding.\n", + "parent": "srd_water-elemental", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 4 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "werebear_bite", + "fields": { + "name": "Bite", + "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage. If the target is a humanoid, it must succeed on a DC 14 Constitution saving throw or be cursed with werebear lycanthropy.\n", + "parent": "srd_werebear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "werebear_claw", + "fields": { + "name": "Claw", + "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_werebear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "werebear_greataxe", + "fields": { + "name": "Greataxe", + "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) slashing damage.\n", + "parent": "srd_werebear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "werebear_multiattack", + "fields": { + "name": "Multiattack", + "desc": "In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid.\n", + "parent": "srd_werebear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wereboar_maul", + "fields": { + "name": "Maul", + "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", + "parent": "srd_wereboar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wereboar_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Humanoid or Hybrid Form Only). The wereboar makes two attacks, only one of which can be with its tusks.\n", + "parent": "srd_wereboar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wereboar_tusks", + "fields": { + "name": "Tusks", + "desc": "(Boar or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with wereboar lycanthropy.\n", + "parent": "srd_wereboar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wererat_bite", + "fields": { + "name": "Bite", + "desc": "(Rat or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 11 Constitution saving throw or be cursed with wererat lycanthropy.\n", + "parent": "srd_wererat", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wererat_hand-crossbow", + "fields": { + "name": "Hand Crossbow", + "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_wererat", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wererat_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Humanoid or Hybrid Form Only). The wererat makes two attacks, only one of which can be a bite.\n", + "parent": "srd_wererat", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wererat_shortsword", + "fields": { + "name": "Shortsword", + "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_wererat", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "weretiger_bite", + "fields": { + "name": "Bite", + "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage. If the target is a humanoid, it must succeed on a DC 13 Constitution saving throw or be cursed with weretiger lycanthropy.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "weretiger_claw", + "fields": { + "name": "Claw", + "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "weretiger_longbow", + "fields": { + "name": "Longbow", + "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "weretiger_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Humanoid or Hybrid Form Only). In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "weretiger_scimitar", + "fields": { + "name": "Scimitar", + "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "werewolf_bite", + "fields": { + "name": "Bite", + "desc": "(Wolf or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with werewolf lycanthropy.\n", + "parent": "srd_werewolf", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "werewolf_claws", + "fields": { + "name": "Claws", + "desc": "(Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 7 (2d4 + 2) slashing damage.\n", + "parent": "srd_werewolf", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "werewolf_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Humanoid or Hybrid Form Only). The werewolf makes two attacks: one with its bite and one with its claws or spear.\n", + "parent": "srd_werewolf", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "werewolf_spear", + "fields": { + "name": "Spear", + "desc": "(Humanoid Form Only). Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", + "parent": "srd_werewolf", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "white-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage.\n", + "parent": "srd_white-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "white-dragon-wyrmling_cold-breath", + "fields": { + "name": "Cold Breath", + "desc": "The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a DC 12 Constitution saving throw, taking 22 (5d8) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_white-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wight_life-drain", + "fields": { + "name": "Life Drain", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 5 (1d6 + 2) necrotic damage. The target must succeed on a DC 13 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n\nA humanoid slain by this attack rises 24 hours later as a zombie under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time.\n", + "parent": "srd_wight", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wight_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", + "parent": "srd_wight", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wight_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage, or 7 (1d10 + 2) slashing damage if used with two hands.\n", + "parent": "srd_wight", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wight_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack.\n", + "parent": "srd_wight", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "will-o-wisp_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The will-o'-wisp and its light magically become invisible until it attacks or uses its Consume Life, or until its concentration ends (as if concentrating on a spell).\n", + "parent": "srd_will-o-wisp", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "will-o-wisp_shock", + "fields": { + "name": "Shock", + "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d8) lightning damage.\n", + "parent": "srd_will-o-wisp", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wraith_create-specter", + "fields": { + "name": "Create Specter", + "desc": "The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the wraith's control. The wraith can have no more than seven specters under its control at one time.\n", + "parent": "srd_wraith", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wraith_life-drain", + "fields": { + "name": "Life Drain", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 21 (4d8 + 3) necrotic damage. The target must succeed on a DC 14 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "parent": "srd_wraith", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wyvern_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\n", + "parent": "srd_wyvern", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wyvern_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_wyvern", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wyvern_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack.\n", + "parent": "srd_wyvern", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "wyvern_stinger", + "fields": { + "name": "Stinger", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage. The target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_wyvern", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "xorn_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (3d6 + 3) piercing damage.\n", + "parent": "srd_xorn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "xorn_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", + "parent": "srd_xorn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "xorn_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The xorn makes three claw attacks and one bite attack.\n", + "parent": "srd_xorn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-black-dragon_acid-breath", + "fields": { + "name": "Acid Breath", + "desc": "The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-black-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-black-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.\n", + "parent": "srd_young-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-black-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-black-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-blue-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.\n", + "parent": "srd_young-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-blue-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", + "parent": "srd_young-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-blue-dragon_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-blue-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-blue-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-brass-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", + "parent": "srd_young-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-brass-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", + "parent": "srd_young-brass-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-brass-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-brass-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-bronze-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.\n", + "parent": "srd_young-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-bronze-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.\n", + "parent": "srd_young-bronze-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-bronze-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", + "parent": "srd_young-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-bronze-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-copper-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", + "parent": "srd_young-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-copper-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", + "parent": "srd_young-copper-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-copper-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-copper-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-gold-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", + "parent": "srd_young-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-gold-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_young-gold-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-gold-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_young-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-gold-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-green-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.\n", + "parent": "srd_young-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-green-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-green-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-green-dragon_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-green-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-red-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.\n", + "parent": "srd_young-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-red-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_young-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-red-dragon_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-red-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-red-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-silver-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", + "parent": "srd_young-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-silver-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_young-silver-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-silver-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_young-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-silver-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-white-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.\n", + "parent": "srd_young-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-white-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-white-dragon_cold-breath", + "fields": { + "name": "Cold Breath", + "desc": "The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-white-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "young-white-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "zombie_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.\n", + "parent": "srd_zombie", + "uses_type": null, + "uses_param": null + } + } +] \ No newline at end of file diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index 505e5e3c..e0b4f9ed 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -139,7 +139,7 @@ def fix_keys_to_doc_name(objs,f): for obj in objs: if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): - if f['filename']=='Weapon.json': + if f['filename']=='Creature.json': logger.warning("{} changing to doc_name format".format(f['path'])) pk_value = "{}_{}".format(obj['fields']['document'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) @@ -150,15 +150,15 @@ def fix_keys_to_doc_name(objs,f): related_path = "{}/{}/{}/{}/{}/".format(f['root'],f['dir'],f['schema'],f['publisher'],f['doc']) - related_filenames = ['Item.json'] + related_filenames = ['CreatureAction.json'] for obj in objs_fixed: for related_file in related_filenames: logger.warning("CHANGING RELATED PK IN {} TO {}".format(related_file,obj['pk'])) - refactor_relations(related_path+related_file,"weapon",obj['former_pk'], obj['pk']) + refactor_relations(related_path+related_file,"parent",obj['former_pk'], obj['pk']) obj.pop('former_pk') - if f['filename']=='Weapon.json': + if f['filename']=='Creature.json': with open(f['path'],'w',encoding='utf-8') as wf: json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) pass @@ -192,7 +192,7 @@ def refactor_relations(filename, key, former_pk, new_pk): if os.path.isfile(filename): with open(filename, 'r', encoding='utf-8') as f: objs = json.load(f) - if key == "weapon": + if key == "parent": for obj in objs: if obj['fields'][key] == former_pk: obj['fields'][key] = new_pk From 3b94a37fb7523979bd457ebace36f40d1994fbaf Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 08:28:18 -0500 Subject: [PATCH 62/84] Armor whitespace. --- data/v2/wizards-of-the-coast/srd/Armor.json | 312 +-- data/v2/wizards-of-the-coast/srd/Weapon.json | 1852 ++++++++--------- .../data_manipulation/data_v2_format_check.py | 14 +- 3 files changed, 1089 insertions(+), 1089 deletions(-) diff --git a/data/v2/wizards-of-the-coast/srd/Armor.json b/data/v2/wizards-of-the-coast/srd/Armor.json index 1832a540..ed0f2cf8 100644 --- a/data/v2/wizards-of-the-coast/srd/Armor.json +++ b/data/v2/wizards-of-the-coast/srd/Armor.json @@ -1,158 +1,158 @@ [ - { - "model": "api_v2.armor", - "pk": "srd_breastplate", - "fields": { - "name": "Breastplate", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 14, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } - }, - { - "model": "api_v2.armor", - "pk": "srd_chain-mail", - "fields": { - "name": "Chain mail", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": 13, - "ac_base": 16, - "ac_add_dexmod": false, - "ac_cap_dexmod": null - } - }, - { - "model": "api_v2.armor", - "pk": "srd_chain-shirt", - "fields": { - "name": "Chain shirt", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 13, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } - }, - { - "model": "api_v2.armor", - "pk": "srd_half-plate", - "fields": { - "name": "Half plate", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": null, - "ac_base": 15, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } - }, - { - "model": "api_v2.armor", - "pk": "srd_hide", - "fields": { - "name": "Hide", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 12, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } - }, - { - "model": "api_v2.armor", - "pk": "srd_leather", - "fields": { - "name": "Leather", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 11, - "ac_add_dexmod": true, - "ac_cap_dexmod": null - } - }, - { - "model": "api_v2.armor", - "pk": "srd_padded", - "fields": { - "name": "Padded", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": null, - "ac_base": 11, - "ac_add_dexmod": true, - "ac_cap_dexmod": null - } - }, - { - "model": "api_v2.armor", - "pk": "srd_plate", - "fields": { - "name": "Plate", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": 15, - "ac_base": 18, - "ac_add_dexmod": false, - "ac_cap_dexmod": null - } - }, - { - "model": "api_v2.armor", - "pk": "srd_ring-mail", - "fields": { - "name": "Ring mail", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": null, - "ac_base": 14, - "ac_add_dexmod": false, - "ac_cap_dexmod": null - } - }, - { - "model": "api_v2.armor", - "pk": "srd_scale-mail", - "fields": { - "name": "Scale mail", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": null, - "ac_base": 14, - "ac_add_dexmod": true, - "ac_cap_dexmod": 2 - } - }, - { - "model": "api_v2.armor", - "pk": "srd_splint", - "fields": { - "name": "Splint", - "document": "srd", - "grants_stealth_disadvantage": true, - "strength_score_required": 15, - "ac_base": 17, - "ac_add_dexmod": false, - "ac_cap_dexmod": null - } - }, - { - "model": "api_v2.armor", - "pk": "srd_studded-leather", - "fields": { - "name": "Studded leather", - "document": "srd", - "grants_stealth_disadvantage": false, - "strength_score_required": null, - "ac_base": 12, - "ac_add_dexmod": true, - "ac_cap_dexmod": null - } +{ + "model": "api_v2.armor", + "pk": "srd_breastplate", + "fields": { + "name": "Breastplate", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 14, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 } -] \ No newline at end of file +}, +{ + "model": "api_v2.armor", + "pk": "srd_chain-mail", + "fields": { + "name": "Chain mail", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": 13, + "ac_base": 16, + "ac_add_dexmod": false, + "ac_cap_dexmod": null + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_chain-shirt", + "fields": { + "name": "Chain shirt", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 13, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_half-plate", + "fields": { + "name": "Half plate", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": null, + "ac_base": 15, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_hide", + "fields": { + "name": "Hide", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 12, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_leather", + "fields": { + "name": "Leather", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 11, + "ac_add_dexmod": true, + "ac_cap_dexmod": null + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_padded", + "fields": { + "name": "Padded", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": null, + "ac_base": 11, + "ac_add_dexmod": true, + "ac_cap_dexmod": null + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_plate", + "fields": { + "name": "Plate", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": 15, + "ac_base": 18, + "ac_add_dexmod": false, + "ac_cap_dexmod": null + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_ring-mail", + "fields": { + "name": "Ring mail", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": null, + "ac_base": 14, + "ac_add_dexmod": false, + "ac_cap_dexmod": null + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_scale-mail", + "fields": { + "name": "Scale mail", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": null, + "ac_base": 14, + "ac_add_dexmod": true, + "ac_cap_dexmod": 2 + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_splint", + "fields": { + "name": "Splint", + "document": "srd", + "grants_stealth_disadvantage": true, + "strength_score_required": 15, + "ac_base": 17, + "ac_add_dexmod": false, + "ac_cap_dexmod": null + } +}, +{ + "model": "api_v2.armor", + "pk": "srd_studded-leather", + "fields": { + "name": "Studded leather", + "document": "srd", + "grants_stealth_disadvantage": false, + "strength_score_required": null, + "ac_base": 12, + "ac_add_dexmod": true, + "ac_cap_dexmod": null + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/Weapon.json b/data/v2/wizards-of-the-coast/srd/Weapon.json index 6252211c..3bfae54f 100644 --- a/data/v2/wizards-of-the-coast/srd/Weapon.json +++ b/data/v2/wizards-of-the-coast/srd/Weapon.json @@ -1,927 +1,927 @@ [ - { - "model": "api_v2.weapon", - "pk": "srd_battleaxe", - "fields": { - "name": "Battleaxe", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d8", - "versatile_dice": "1d10", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_blowgun", - "fields": { - "name": "Blowgun", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 25, - "range_long": 100, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": true, - "requires_loading": true, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_club", - "fields": { - "name": "Club", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_crossbow-hand", - "fields": { - "name": "Crossbow, hand", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 30, - "range_long": 120, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": true, - "requires_loading": true, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_crossbow-heavy", - "fields": { - "name": "Crossbow, heavy", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d10", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 100, - "range_long": 400, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": true, - "requires_loading": true, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_crossbow-light", - "fields": { - "name": "Crossbow, light", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 80, - "range_long": 320, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": true, - "requires_loading": true, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_dagger", - "fields": { - "name": "Dagger", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": true, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_dart", - "fields": { - "name": "Dart", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": true, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_flail", - "fields": { - "name": "Flail", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_glaive", - "fields": { - "name": "Glaive", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d10", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_greataxe", - "fields": { - "name": "Greataxe", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d12", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_greatclub", - "fields": { - "name": "Greatclub", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_greatsword", - "fields": { - "name": "Greatsword", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "2d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_halberd", - "fields": { - "name": "Halberd", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d10", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_handaxe", - "fields": { - "name": "Handaxe", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_javelin", - "fields": { - "name": "Javelin", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 30, - "range_long": 120, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_lance", - "fields": { - "name": "Lance", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d12", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": true, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_light-hammer", - "fields": { - "name": "Light hammer", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_longbow", - "fields": { - "name": "Longbow", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 150, - "range_long": 600, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": true, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_longsword", - "fields": { - "name": "Longsword", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d8", - "versatile_dice": "1d10", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_mace", - "fields": { - "name": "Mace", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_maul", - "fields": { - "name": "Maul", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "2d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_morningstar", - "fields": { - "name": "Morningstar", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_net", - "fields": { - "name": "Net", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "0", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 5, - "range_long": 15, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": true, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_pike", - "fields": { - "name": "Pike", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d10", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": true, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_quarterstaff", - "fields": { - "name": "Quarterstaff", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d6", - "versatile_dice": "1d8", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_rapier", - "fields": { - "name": "Rapier", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": true, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_scimitar", - "fields": { - "name": "Scimitar", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": true, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_shortbow", - "fields": { - "name": "Shortbow", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 80, - "range_long": 320, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": true, - "requires_ammunition": true, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_shortsword", - "fields": { - "name": "Shortsword", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d6", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": true, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_sickle", - "fields": { - "name": "Sickle", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": true, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_sling", - "fields": { - "name": "Sling", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 30, - "range_long": 120, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": true, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_spear", - "fields": { - "name": "Spear", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "1d8", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": true, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_trident", - "fields": { - "name": "Trident", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d6", - "versatile_dice": "1d8", - "range_reach": 5, - "range_normal": 20, - "range_long": 60, - "is_finesse": false, - "is_thrown": true, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_warhammer", - "fields": { - "name": "Warhammer", - "document": "srd", - "damage_type": "bludgeoning", - "damage_dice": "1d8", - "versatile_dice": "1d10", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_war-pick", - "fields": { - "name": "War Pick", - "document": "srd", - "damage_type": "piercing", - "damage_dice": "1d8", - "versatile_dice": "0", - "range_reach": 5, - "range_normal": 0, - "range_long": 0, - "is_finesse": false, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - }, - { - "model": "api_v2.weapon", - "pk": "srd_whip", - "fields": { - "name": "Whip", - "document": "srd", - "damage_type": "slashing", - "damage_dice": "1d4", - "versatile_dice": "0", - "range_reach": 10, - "range_normal": 0, - "range_long": 0, - "is_finesse": true, - "is_thrown": false, - "is_two_handed": false, - "requires_ammunition": false, - "requires_loading": false, - "is_heavy": false, - "is_light": false, - "is_lance": false, - "is_net": false, - "is_simple": false, - "is_improvised": false - } - } -] \ No newline at end of file +{ + "model": "api_v2.weapon", + "pk": "srd_battleaxe", + "fields": { + "name": "Battleaxe", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d8", + "versatile_dice": "1d10", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_blowgun", + "fields": { + "name": "Blowgun", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 25, + "range_long": 100, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": true, + "requires_loading": true, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_club", + "fields": { + "name": "Club", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_crossbow-hand", + "fields": { + "name": "Crossbow, hand", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 30, + "range_long": 120, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": true, + "requires_loading": true, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_crossbow-heavy", + "fields": { + "name": "Crossbow, heavy", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d10", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 100, + "range_long": 400, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": true, + "requires_loading": true, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_crossbow-light", + "fields": { + "name": "Crossbow, light", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 80, + "range_long": 320, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": true, + "requires_loading": true, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_dagger", + "fields": { + "name": "Dagger", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": true, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_dart", + "fields": { + "name": "Dart", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": true, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_flail", + "fields": { + "name": "Flail", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_glaive", + "fields": { + "name": "Glaive", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d10", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_greataxe", + "fields": { + "name": "Greataxe", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d12", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_greatclub", + "fields": { + "name": "Greatclub", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_greatsword", + "fields": { + "name": "Greatsword", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "2d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_halberd", + "fields": { + "name": "Halberd", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d10", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_handaxe", + "fields": { + "name": "Handaxe", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_javelin", + "fields": { + "name": "Javelin", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 30, + "range_long": 120, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_lance", + "fields": { + "name": "Lance", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d12", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": true, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_light-hammer", + "fields": { + "name": "Light hammer", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_longbow", + "fields": { + "name": "Longbow", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 150, + "range_long": 600, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": true, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_longsword", + "fields": { + "name": "Longsword", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d8", + "versatile_dice": "1d10", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_mace", + "fields": { + "name": "Mace", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_maul", + "fields": { + "name": "Maul", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "2d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_morningstar", + "fields": { + "name": "Morningstar", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_net", + "fields": { + "name": "Net", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "0", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 5, + "range_long": 15, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": true, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_pike", + "fields": { + "name": "Pike", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d10", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": true, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_quarterstaff", + "fields": { + "name": "Quarterstaff", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d6", + "versatile_dice": "1d8", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_rapier", + "fields": { + "name": "Rapier", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": true, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_scimitar", + "fields": { + "name": "Scimitar", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": true, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_shortbow", + "fields": { + "name": "Shortbow", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 80, + "range_long": 320, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": true, + "requires_ammunition": true, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_shortsword", + "fields": { + "name": "Shortsword", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d6", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": true, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_sickle", + "fields": { + "name": "Sickle", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": true, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_sling", + "fields": { + "name": "Sling", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 30, + "range_long": 120, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": true, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_spear", + "fields": { + "name": "Spear", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "1d8", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": true, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_trident", + "fields": { + "name": "Trident", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d6", + "versatile_dice": "1d8", + "range_reach": 5, + "range_normal": 20, + "range_long": 60, + "is_finesse": false, + "is_thrown": true, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_war-pick", + "fields": { + "name": "War Pick", + "document": "srd", + "damage_type": "piercing", + "damage_dice": "1d8", + "versatile_dice": "0", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_warhammer", + "fields": { + "name": "Warhammer", + "document": "srd", + "damage_type": "bludgeoning", + "damage_dice": "1d8", + "versatile_dice": "1d10", + "range_reach": 5, + "range_normal": 0, + "range_long": 0, + "is_finesse": false, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +}, +{ + "model": "api_v2.weapon", + "pk": "srd_whip", + "fields": { + "name": "Whip", + "document": "srd", + "damage_type": "slashing", + "damage_dice": "1d4", + "versatile_dice": "0", + "range_reach": 10, + "range_normal": 0, + "range_long": 0, + "is_finesse": true, + "is_thrown": false, + "is_two_handed": false, + "requires_ammunition": false, + "requires_loading": false, + "is_heavy": false, + "is_light": false, + "is_lance": false, + "is_net": false, + "is_simple": false, + "is_improvised": false + } +} +] diff --git a/scripts/data_manipulation/data_v2_format_check.py b/scripts/data_manipulation/data_v2_format_check.py index 505e5e3c..117efab4 100644 --- a/scripts/data_manipulation/data_v2_format_check.py +++ b/scripts/data_manipulation/data_v2_format_check.py @@ -139,9 +139,9 @@ def fix_keys_to_doc_name(objs,f): for obj in objs: if obj['pk'] != "{}_{}".format(slugify(f['doc']),slugify(obj['fields']['name'])): - if f['filename']=='Weapon.json': + if f['filename']=='CreatureAction.json': logger.warning("{} changing to doc_name format".format(f['path'])) - pk_value = "{}_{}".format(obj['fields']['document'],slugify(obj['fields']['name'])) + pk_value = "{}_{}".format(obj['fields']['parent'],slugify(obj['fields']['name'])) logger.warning("CHANGING PK TO {}".format(pk_value)) obj['former_pk'] = obj['pk'] @@ -150,22 +150,22 @@ def fix_keys_to_doc_name(objs,f): related_path = "{}/{}/{}/{}/{}/".format(f['root'],f['dir'],f['schema'],f['publisher'],f['doc']) - related_filenames = ['Item.json'] + related_filenames = ['CreatureAttack.json'] for obj in objs_fixed: for related_file in related_filenames: logger.warning("CHANGING RELATED PK IN {} TO {}".format(related_file,obj['pk'])) - refactor_relations(related_path+related_file,"weapon",obj['former_pk'], obj['pk']) + refactor_relations(related_path+related_file,"parent",obj['former_pk'], obj['pk']) obj.pop('former_pk') - if f['filename']=='Weapon.json': + if f['filename']=='CreatureAction.json': with open(f['path'],'w',encoding='utf-8') as wf: json.dump(objs_fixed,wf,ensure_ascii=False,indent=2) pass def fix_keys_to_parent_level(objs,f): objs_fixed=[] - if f['filename']!='ClassFeatureItem.json': + if f['filename']!='CreatureAction.json': return for obj in objs: @@ -192,7 +192,7 @@ def refactor_relations(filename, key, former_pk, new_pk): if os.path.isfile(filename): with open(filename, 'r', encoding='utf-8') as f: objs = json.load(f) - if key == "weapon": + if key == "parent": for obj in objs: if obj['fields'][key] == former_pk: obj['fields'][key] = new_pk From f29cd3acb4b3bb43b54381b75130549e27ee43c9 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 08:31:26 -0500 Subject: [PATCH 63/84] Refactor to CreatureActionAttack. --- ...ame_creatureattack_creatureactionattack.py | 17 + api_v2/models/__init__.py | 2 +- api_v2/models/creature.py | 2 +- ...eAttack.json => CreatureActionAttack.json} | 772 +++++++++--------- 4 files changed, 405 insertions(+), 388 deletions(-) create mode 100644 api_v2/migrations/0087_rename_creatureattack_creatureactionattack.py rename data/v2/wizards-of-the-coast/srd/{CreatureAttack.json => CreatureActionAttack.json} (93%) diff --git a/api_v2/migrations/0087_rename_creatureattack_creatureactionattack.py b/api_v2/migrations/0087_rename_creatureattack_creatureactionattack.py new file mode 100644 index 00000000..b78574bd --- /dev/null +++ b/api_v2/migrations/0087_rename_creatureattack_creatureactionattack.py @@ -0,0 +1,17 @@ +# Generated by Django 3.2.20 on 2024-06-01 13:29 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0086_rename_spell_spellcastingoption_parent'), + ] + + operations = [ + migrations.RenameModel( + old_name='CreatureAttack', + new_name='CreatureActionAttack', + ), + ] diff --git a/api_v2/models/__init__.py b/api_v2/models/__init__.py index 30216c72..77610d19 100644 --- a/api_v2/models/__init__.py +++ b/api_v2/models/__init__.py @@ -22,7 +22,7 @@ from .creature import Creature from .creature import CreatureAction -from .creature import CreatureAttack +from .creature import CreatureActionAttack from .creature import CreatureType from .creature import CreatureSet diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index 72c7968d..5cef8f5d 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -82,7 +82,7 @@ class CreatureAction(HasName, HasDescription, FromDocument): #TODO rename to CreatureActionAttack #TODO remove FromDocument -class CreatureAttack(HasName, FromDocument): +class CreatureActionAttack(HasName, FromDocument): #TODO refactor to parent creature_action = models.ForeignKey( diff --git a/data/v2/wizards-of-the-coast/srd/CreatureAttack.json b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json similarity index 93% rename from data/v2/wizards-of-the-coast/srd/CreatureAttack.json rename to data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json index 41683a7c..f29829ac 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureAttack.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json @@ -1,6 +1,6 @@ [ { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "aboleth_tail-attack", "fields": { "name": "Tail attack", @@ -23,7 +23,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "aboleth_tentacle-attack", "fields": { "name": "Tentacle attack", @@ -46,7 +46,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-black-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -69,7 +69,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-black-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -92,7 +92,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-black-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -115,7 +115,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-blue-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -138,7 +138,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-blue-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -161,7 +161,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-blue-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -184,7 +184,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-brass-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -207,7 +207,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-brass-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -230,7 +230,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-brass-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -253,7 +253,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-bronze-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -276,7 +276,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-bronze-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -299,7 +299,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-bronze-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -322,7 +322,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-copper-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -345,7 +345,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-copper-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -368,7 +368,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-copper-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -391,7 +391,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-gold-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -414,7 +414,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-gold-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -437,7 +437,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-gold-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -460,7 +460,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-green-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -483,7 +483,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-green-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -506,7 +506,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-green-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -529,7 +529,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-red-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -552,7 +552,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-red-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -575,7 +575,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-red-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -598,7 +598,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-silver-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -621,7 +621,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-silver-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -644,7 +644,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-silver-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -667,7 +667,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-white-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -690,7 +690,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-white-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -713,7 +713,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "adult-white-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -736,7 +736,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "air-elemental_slam-attack", "fields": { "name": "Slam attack", @@ -759,7 +759,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-black-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -782,7 +782,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-black-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -805,7 +805,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-black-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -828,7 +828,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-blue-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -851,7 +851,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-blue-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -874,7 +874,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-blue-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -897,7 +897,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-brass-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -920,7 +920,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-brass-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -943,7 +943,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-brass-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -966,7 +966,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-bronze-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -989,7 +989,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-bronze-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -1012,7 +1012,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-bronze-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -1035,7 +1035,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-copper-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -1058,7 +1058,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-copper-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -1081,7 +1081,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-copper-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -1104,7 +1104,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-gold-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -1127,7 +1127,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-gold-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -1150,7 +1150,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-gold-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -1173,7 +1173,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-green-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -1196,7 +1196,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-green-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -1219,7 +1219,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-green-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -1242,7 +1242,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-red-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -1265,7 +1265,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-red-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -1288,7 +1288,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-red-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -1311,7 +1311,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-silver-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -1334,7 +1334,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-silver-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -1357,7 +1357,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-silver-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -1380,7 +1380,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-white-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -1403,7 +1403,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-white-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -1426,7 +1426,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ancient-white-dragon_tail-attack", "fields": { "name": "Tail attack", @@ -1449,7 +1449,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "androsphinx_claw-attack", "fields": { "name": "Claw attack", @@ -1472,7 +1472,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "animated-armor_slam-attack", "fields": { "name": "Slam attack", @@ -1495,7 +1495,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ankheg_bite-attack", "fields": { "name": "Bite attack", @@ -1518,7 +1518,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "azer_warhammer-attack", "fields": { "name": "Warhammer attack", @@ -1541,7 +1541,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "azer_warhammer-attack-if-used-with-two-hands", "fields": { "name": "Warhammer attack (if used with two hands)", @@ -1564,7 +1564,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "balor_longsword-attack", "fields": { "name": "Longsword attack", @@ -1587,7 +1587,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "balor_whip-attack", "fields": { "name": "Whip attack", @@ -1610,7 +1610,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "barbed-devil_claw-attack", "fields": { "name": "Claw attack", @@ -1633,7 +1633,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "barbed-devil_hurl-flame-attack", "fields": { "name": "Hurl Flame attack", @@ -1656,7 +1656,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "barbed-devil_tail-attack", "fields": { "name": "Tail attack", @@ -1679,7 +1679,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "basilisk_bite-attack", "fields": { "name": "Bite attack", @@ -1702,7 +1702,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "bearded-devil_beard-attack", "fields": { "name": "Beard attack", @@ -1725,7 +1725,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "bearded-devil_glaive-attack", "fields": { "name": "Glaive attack", @@ -1748,7 +1748,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "behir_bite-attack", "fields": { "name": "Bite attack", @@ -1771,7 +1771,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "behir_constrict-attack", "fields": { "name": "Constrict attack", @@ -1794,7 +1794,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "black-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", @@ -1817,7 +1817,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "black-pudding_pseudopod-attack", "fields": { "name": "Pseudopod attack", @@ -1840,7 +1840,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "blue-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", @@ -1863,7 +1863,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "bone-devil_claw-attack", "fields": { "name": "Claw attack", @@ -1886,7 +1886,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "bone-devil_sting-attack", "fields": { "name": "Sting attack", @@ -1909,7 +1909,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "brass-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", @@ -1932,7 +1932,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "bronze-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", @@ -1955,7 +1955,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "bugbear_javelin-attack-at-range", "fields": { "name": "Javelin attack (at range)", @@ -1978,7 +1978,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "bugbear_javelin-attack-in-melee", "fields": { "name": "Javelin attack (in melee)", @@ -2001,7 +2001,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "bugbear_morningstar-attack", "fields": { "name": "Morningstar attack", @@ -2024,7 +2024,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "bulette_bite-attack", "fields": { "name": "Bite attack", @@ -2047,7 +2047,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "centaur_hooves-attack", "fields": { "name": "Hooves attack", @@ -2070,7 +2070,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "centaur_longbow-attack", "fields": { "name": "Longbow attack", @@ -2093,7 +2093,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "centaur_pike-attack", "fields": { "name": "Pike attack", @@ -2116,7 +2116,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "chain-devil_chain-attack", "fields": { "name": "Chain attack", @@ -2139,7 +2139,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "chimera_bite-attack", "fields": { "name": "Bite attack", @@ -2162,7 +2162,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "chimera_claws-attack", "fields": { "name": "Claws attack", @@ -2185,7 +2185,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "chimera_horns-attack", "fields": { "name": "Horns attack", @@ -2208,7 +2208,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "chuul_pincer-attack", "fields": { "name": "Pincer attack", @@ -2231,7 +2231,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "clay-golem_slam-attack", "fields": { "name": "Slam attack", @@ -2254,7 +2254,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "cloaker_bite-attack", "fields": { "name": "Bite attack", @@ -2277,7 +2277,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "cloaker_tail-attack", "fields": { "name": "Tail attack", @@ -2300,7 +2300,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "cloud-giant_morningstar-attack", "fields": { "name": "Morningstar attack", @@ -2323,7 +2323,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "cloud-giant_rock-attack", "fields": { "name": "Rock attack", @@ -2346,7 +2346,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "cockatrice_bite-attack", "fields": { "name": "Bite attack", @@ -2369,7 +2369,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "copper-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", @@ -2392,7 +2392,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "couatl_bite-attack", "fields": { "name": "Bite attack", @@ -2415,7 +2415,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "couatl_constrict-attack", "fields": { "name": "Constrict attack", @@ -2438,7 +2438,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "darkmantle_crush-attack", "fields": { "name": "Crush attack", @@ -2461,7 +2461,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "deva_mace-attack", "fields": { "name": "Mace attack", @@ -2484,7 +2484,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "djinni_scimitar-attack-lightning-damage", "fields": { "name": "Scimitar attack (lightning damage)", @@ -2507,7 +2507,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "djinni_scimitar-attack-thunder-damage", "fields": { "name": "Scimitar attack (thunder damage)", @@ -2530,7 +2530,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "doppelganger_slam-attack", "fields": { "name": "Slam attack", @@ -2553,7 +2553,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "dragon-turtle_bite-attack", "fields": { "name": "Bite attack", @@ -2576,7 +2576,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "dragon-turtle_claw-attack", "fields": { "name": "Claw attack", @@ -2599,7 +2599,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "dragon-turtle_tail-attack", "fields": { "name": "Tail attack", @@ -2622,7 +2622,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "dretch_bite-attack", "fields": { "name": "Bite attack", @@ -2645,7 +2645,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "dretch_claws-attack", "fields": { "name": "Claws attack", @@ -2668,7 +2668,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "drider_bite-attack", "fields": { "name": "Bite attack", @@ -2691,7 +2691,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "drider_longbow-attack", "fields": { "name": "Longbow attack", @@ -2714,7 +2714,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "drider_longsword-attack", "fields": { "name": "Longsword attack", @@ -2737,7 +2737,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "drider_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", @@ -2760,7 +2760,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "dryad_club-attack", "fields": { "name": "Club attack", @@ -2783,7 +2783,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "dryad_club-attack-with-shillelagh", "fields": { "name": "Club attack (with shillelagh)", @@ -2806,7 +2806,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "duergar_javelin-attack", "fields": { "name": "Javelin attack", @@ -2829,7 +2829,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "duergar_javelin-attack-while-enlarged", "fields": { "name": "Javelin attack (while enlarged)", @@ -2852,7 +2852,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "duergar_war-pick-attack", "fields": { "name": "War Pick attack", @@ -2875,7 +2875,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "duergar_war-pick-attack-while-enlarged", "fields": { "name": "War Pick attack (while enlarged)", @@ -2898,7 +2898,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "dust-mephit_claws-attack", "fields": { "name": "Claws attack", @@ -2921,7 +2921,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "earth-elemental_slam-attack", "fields": { "name": "Slam attack", @@ -2944,7 +2944,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "efreeti_hurl-flame-attack", "fields": { "name": "Hurl Flame attack", @@ -2967,7 +2967,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "efreeti_scimitar-attack", "fields": { "name": "Scimitar attack", @@ -2990,7 +2990,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "elf-drow_hand-crossbow-attack", "fields": { "name": "Hand Crossbow attack", @@ -3013,7 +3013,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "elf-drow_shortsword-attack", "fields": { "name": "Shortsword attack", @@ -3036,7 +3036,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "erinyes_longbow-attack", "fields": { "name": "Longbow attack", @@ -3059,7 +3059,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "erinyes_longsword-attack", "fields": { "name": "Longsword attack", @@ -3082,7 +3082,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "erinyes_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", @@ -3105,7 +3105,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ettercap_bite-attack", "fields": { "name": "Bite attack", @@ -3128,7 +3128,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ettercap_claws-attack", "fields": { "name": "Claws attack", @@ -3151,7 +3151,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ettercap_web-attack", "fields": { "name": "Web attack", @@ -3174,7 +3174,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ettin_battleaxe-attack", "fields": { "name": "Battleaxe attack", @@ -3197,7 +3197,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ettin_morningstar-attack", "fields": { "name": "Morningstar attack", @@ -3220,7 +3220,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "fire-elemental_touch-attack", "fields": { "name": "Touch attack", @@ -3243,7 +3243,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "fire-giant_greatsword-attack", "fields": { "name": "Greatsword attack", @@ -3266,7 +3266,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "fire-giant_rock-attack", "fields": { "name": "Rock attack", @@ -3289,7 +3289,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "flesh-golem_slam-attack", "fields": { "name": "Slam attack", @@ -3312,7 +3312,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "flying-sword_longsword-attack", "fields": { "name": "Longsword attack", @@ -3335,7 +3335,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "frost-giant_greataxe-attack", "fields": { "name": "Greataxe attack", @@ -3358,7 +3358,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "frost-giant_rock-attack", "fields": { "name": "Rock attack", @@ -3381,7 +3381,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gargoyle_bite-attack", "fields": { "name": "Bite attack", @@ -3404,7 +3404,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gargoyle_claws-attack", "fields": { "name": "Claws attack", @@ -3427,7 +3427,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gelatinous-cube_pseudopod-attack", "fields": { "name": "Pseudopod attack", @@ -3450,7 +3450,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ghast_bite-attack", "fields": { "name": "Bite attack", @@ -3473,7 +3473,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ghast_claws-attack", "fields": { "name": "Claws attack", @@ -3496,7 +3496,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ghost_withering-touch-attack", "fields": { "name": "Withering Touch attack", @@ -3519,7 +3519,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ghoul_bite-attack", "fields": { "name": "Bite attack", @@ -3542,7 +3542,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ghoul_claws-attack", "fields": { "name": "Claws attack", @@ -3565,7 +3565,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gibbering-mouther_bites-attack", "fields": { "name": "Bites attack", @@ -3588,7 +3588,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "glabrezu_fist-attack", "fields": { "name": "Fist attack", @@ -3611,7 +3611,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "glabrezu_pincer-attack", "fields": { "name": "Pincer attack", @@ -3634,7 +3634,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gnoll_bite-attack", "fields": { "name": "Bite attack", @@ -3657,7 +3657,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gnoll_longbow-attack", "fields": { "name": "Longbow attack", @@ -3680,7 +3680,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gnoll_spear-attack", "fields": { "name": "Spear attack", @@ -3703,7 +3703,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gnoll_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", @@ -3726,7 +3726,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gnome-deep-svirfneblin_poisoned-dart-attack", "fields": { "name": "Poisoned Dart attack", @@ -3749,7 +3749,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gnome-deep-svirfneblin_war-pick-attack", "fields": { "name": "War Pick attack", @@ -3772,7 +3772,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "goblin_scimitar-attack", "fields": { "name": "Scimitar attack", @@ -3795,7 +3795,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "goblin_shortbow-attack", "fields": { "name": "Shortbow attack", @@ -3818,7 +3818,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gold-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", @@ -3841,7 +3841,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gorgon_gore-attack", "fields": { "name": "Gore attack", @@ -3864,7 +3864,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gorgon_hooves-attack", "fields": { "name": "Hooves attack", @@ -3887,7 +3887,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gray-ooze_pseudopod-attack", "fields": { "name": "Pseudopod attack", @@ -3910,7 +3910,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "green-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", @@ -3933,7 +3933,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "green-hag_claws-attack", "fields": { "name": "Claws attack", @@ -3956,7 +3956,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "grick_beak-attack", "fields": { "name": "Beak attack", @@ -3979,7 +3979,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "grick_tentacles-attack", "fields": { "name": "Tentacles attack", @@ -4002,7 +4002,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "griffon_beak-attack", "fields": { "name": "Beak attack", @@ -4025,7 +4025,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "griffon_claws-attack", "fields": { "name": "Claws attack", @@ -4048,7 +4048,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "grimlock_spiked-bone-club-attack", "fields": { "name": "Spiked Bone Club attack", @@ -4071,7 +4071,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "guardian-naga_bite-attack", "fields": { "name": "Bite attack", @@ -4094,7 +4094,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "guardian-naga_spit-poison-attack", "fields": { "name": "Spit Poison attack", @@ -4117,7 +4117,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "gynosphinx_claw-attack", "fields": { "name": "Claw attack", @@ -4140,7 +4140,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "half-red-dragon-veteran_heavy-crossbow-attack", "fields": { "name": "Heavy Crossbow attack", @@ -4163,7 +4163,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "half-red-dragon-veteran_longsword-attack", "fields": { "name": "Longsword attack", @@ -4186,7 +4186,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "half-red-dragon-veteran_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", @@ -4209,7 +4209,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "half-red-dragon-veteran_shortsword-attack", "fields": { "name": "Shortsword attack", @@ -4232,7 +4232,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "harpy_claws-attack", "fields": { "name": "Claws attack", @@ -4255,7 +4255,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "harpy_club-attack", "fields": { "name": "Club attack", @@ -4278,7 +4278,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "hell-hound_bite-attack", "fields": { "name": "Bite attack", @@ -4301,7 +4301,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "hezrou_bite-attack", "fields": { "name": "Bite attack", @@ -4324,7 +4324,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "hezrou_claw-attack", "fields": { "name": "Claw attack", @@ -4347,7 +4347,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "hill-giant_greatclub-attack", "fields": { "name": "Greatclub attack", @@ -4370,7 +4370,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "hill-giant_rock-attack", "fields": { "name": "Rock attack", @@ -4393,7 +4393,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "hippogriff_beak-attack", "fields": { "name": "Beak attack", @@ -4416,7 +4416,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "hippogriff_claws-attack", "fields": { "name": "Claws attack", @@ -4439,7 +4439,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "hobgoblin_longbow-attack", "fields": { "name": "Longbow attack", @@ -4462,7 +4462,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "hobgoblin_longsword-attack", "fields": { "name": "Longsword attack", @@ -4485,7 +4485,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "hobgoblin_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", @@ -4508,7 +4508,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "homunculus_bite-attack", "fields": { "name": "Bite attack", @@ -4531,7 +4531,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "horned-devil_fork-attack", "fields": { "name": "Fork attack", @@ -4554,7 +4554,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "horned-devil_hurl-flame-attack", "fields": { "name": "Hurl Flame attack", @@ -4577,7 +4577,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "horned-devil_tail-attack", "fields": { "name": "Tail attack", @@ -4600,7 +4600,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "hydra_bite-attack", "fields": { "name": "Bite attack", @@ -4623,7 +4623,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ice-devil_bite-attack", "fields": { "name": "Bite attack", @@ -4646,7 +4646,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ice-devil_claws-attack", "fields": { "name": "Claws attack", @@ -4669,7 +4669,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ice-devil_tail-attack", "fields": { "name": "Tail attack", @@ -4692,7 +4692,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ice-mephit_claws-attack", "fields": { "name": "Claws attack", @@ -4715,7 +4715,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "imp_stingbite-attack", "fields": { "name": "Sting/Bite attack", @@ -4738,7 +4738,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "invisible-stalker_slam-attack", "fields": { "name": "Slam attack", @@ -4761,7 +4761,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "iron-golem_slam-attack", "fields": { "name": "Slam attack", @@ -4784,7 +4784,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "iron-golem_sword-attack", "fields": { "name": "Sword attack", @@ -4807,7 +4807,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "kobold_dagger-attack", "fields": { "name": "Dagger attack", @@ -4830,7 +4830,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "kobold_sling-attack", "fields": { "name": "Sling attack", @@ -4853,7 +4853,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "kraken_bite-attack", "fields": { "name": "Bite attack", @@ -4876,7 +4876,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "kraken_tentacle-attack", "fields": { "name": "Tentacle attack", @@ -4899,7 +4899,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "lamia_claws-attack", "fields": { "name": "Claws attack", @@ -4922,7 +4922,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "lamia_dagger-attack", "fields": { "name": "Dagger attack", @@ -4945,7 +4945,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "lamia_intoxicating-touch-attack", "fields": { "name": "Intoxicating Touch attack", @@ -4968,7 +4968,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "lemure_fist-attack", "fields": { "name": "Fist attack", @@ -4991,7 +4991,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "lich_paralyzing-touch-attack", "fields": { "name": "Paralyzing Touch attack", @@ -5014,7 +5014,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "lizardfolk_bite-attack", "fields": { "name": "Bite attack", @@ -5037,7 +5037,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "lizardfolk_heavy-club-attack", "fields": { "name": "Heavy Club attack", @@ -5060,7 +5060,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "lizardfolk_javelin-attack", "fields": { "name": "Javelin attack", @@ -5083,7 +5083,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "lizardfolk_spiked-shield-attack", "fields": { "name": "Spiked Shield attack", @@ -5106,7 +5106,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "magma-mephit_claws-attack", "fields": { "name": "Claws attack", @@ -5129,7 +5129,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "magmin_touch-attack", "fields": { "name": "Touch attack", @@ -5152,7 +5152,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "manticore_bite-attack", "fields": { "name": "Bite attack", @@ -5175,7 +5175,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "manticore_claw-attack", "fields": { "name": "Claw attack", @@ -5198,7 +5198,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "manticore_tail-spike-attack", "fields": { "name": "Tail Spike attack", @@ -5221,7 +5221,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "marilith_longsword-attack", "fields": { "name": "Longsword attack", @@ -5244,7 +5244,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "marilith_tail-attack", "fields": { "name": "Tail attack", @@ -5267,7 +5267,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "medusa_longbow-attack", "fields": { "name": "Longbow attack", @@ -5290,7 +5290,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "medusa_shortsword-attack", "fields": { "name": "Shortsword attack", @@ -5313,7 +5313,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "medusa_snake-hair-attack", "fields": { "name": "Snake Hair attack", @@ -5336,7 +5336,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "merfolk_spear-attack", "fields": { "name": "Spear attack", @@ -5359,7 +5359,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "merfolk_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", @@ -5382,7 +5382,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "merrow_bite-attack", "fields": { "name": "Bite attack", @@ -5405,7 +5405,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "merrow_claws-attack", "fields": { "name": "Claws attack", @@ -5428,7 +5428,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "merrow_harpoon-attack", "fields": { "name": "Harpoon attack", @@ -5451,7 +5451,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "mimic_bite-attack", "fields": { "name": "Bite attack", @@ -5474,7 +5474,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "mimic_pseudopod-attack", "fields": { "name": "Pseudopod attack", @@ -5497,7 +5497,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "minotaur-skeleton_gore-attack", "fields": { "name": "Gore attack", @@ -5520,7 +5520,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "minotaur-skeleton_greataxe-attack", "fields": { "name": "Greataxe attack", @@ -5543,7 +5543,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "minotaur_gore-attack", "fields": { "name": "Gore attack", @@ -5566,7 +5566,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "minotaur_greataxe-attack", "fields": { "name": "Greataxe attack", @@ -5589,7 +5589,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "mummy-lord_rotting-fist-attack", "fields": { "name": "Rotting Fist attack", @@ -5612,7 +5612,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "mummy_rotting-fist-attack", "fields": { "name": "Rotting Fist attack", @@ -5635,7 +5635,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "nalfeshnee_bite-attack", "fields": { "name": "Bite attack", @@ -5658,7 +5658,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "nalfeshnee_claw-attack", "fields": { "name": "Claw attack", @@ -5681,7 +5681,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "night-hag_claws-attack", "fields": { "name": "Claws attack", @@ -5704,7 +5704,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "nightmare_hooves-attack", "fields": { "name": "Hooves attack", @@ -5727,7 +5727,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ochre-jelly_pseudopod-attack", "fields": { "name": "Pseudopod attack", @@ -5750,7 +5750,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ogre-zombie_morningstar-attack", "fields": { "name": "Morningstar attack", @@ -5773,7 +5773,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ogre_greatclub-attack", "fields": { "name": "Greatclub attack", @@ -5796,7 +5796,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "ogre_javelin-attack", "fields": { "name": "Javelin attack", @@ -5819,7 +5819,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "oni_claw-attack", "fields": { "name": "Claw attack", @@ -5842,7 +5842,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "oni_glaive-attack", "fields": { "name": "Glaive attack", @@ -5865,7 +5865,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "oni_glaive-attack-in-small-or-medium-form", "fields": { "name": "Glaive attack (in Small or Medium form)", @@ -5888,7 +5888,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "orc_greataxe-attack", "fields": { "name": "Greataxe attack", @@ -5911,7 +5911,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "orc_javelin-attack", "fields": { "name": "Javelin attack", @@ -5934,7 +5934,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "otyugh_bite-attack", "fields": { "name": "Bite attack", @@ -5957,7 +5957,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "otyugh_tentacle-attack", "fields": { "name": "Tentacle attack", @@ -5980,7 +5980,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "owlbear_beak-attack", "fields": { "name": "Beak attack", @@ -6003,7 +6003,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "owlbear_claws-attack", "fields": { "name": "Claws attack", @@ -6026,7 +6026,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "pegasus_hooves-attack", "fields": { "name": "Hooves attack", @@ -6049,7 +6049,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "pit-fiend_bite-attack", "fields": { "name": "Bite attack", @@ -6072,7 +6072,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "pit-fiend_claw-attack", "fields": { "name": "Claw attack", @@ -6095,7 +6095,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "pit-fiend_mace-attack", "fields": { "name": "Mace attack", @@ -6118,7 +6118,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "pit-fiend_tail-attack", "fields": { "name": "Tail attack", @@ -6141,7 +6141,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "planetar_greatsword-attack", "fields": { "name": "Greatsword attack", @@ -6164,7 +6164,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "plesiosaurus_bite-attack", "fields": { "name": "Bite attack", @@ -6187,7 +6187,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "pseudodragon_bite-attack", "fields": { "name": "Bite attack", @@ -6210,7 +6210,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "pseudodragon_sting-attack", "fields": { "name": "Sting attack", @@ -6233,7 +6233,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "purple-worm_bite-attack", "fields": { "name": "Bite attack", @@ -6256,7 +6256,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "purple-worm_tail-stinger-attack", "fields": { "name": "Tail Stinger attack", @@ -6279,7 +6279,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "quasit_clawsbite-attack", "fields": { "name": "Claws/Bite attack", @@ -6302,7 +6302,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "rakshasa_claw-attack", "fields": { "name": "Claw attack", @@ -6325,7 +6325,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "red-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", @@ -6348,7 +6348,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "remorhaz_bite-attack", "fields": { "name": "Bite attack", @@ -6371,7 +6371,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "roc_beak-attack", "fields": { "name": "Beak attack", @@ -6394,7 +6394,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "roc_talons-attack", "fields": { "name": "Talons attack", @@ -6417,7 +6417,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "roper_bite-attack", "fields": { "name": "Bite attack", @@ -6440,7 +6440,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "roper_tendril-attack", "fields": { "name": "Tendril attack", @@ -6463,7 +6463,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "rug-of-smothering_smother-attack", "fields": { "name": "Smother attack", @@ -6486,7 +6486,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "rust-monster_bite-attack", "fields": { "name": "Bite attack", @@ -6509,7 +6509,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "sahuagin_bite-attack", "fields": { "name": "Bite attack", @@ -6532,7 +6532,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "sahuagin_claws-attack", "fields": { "name": "Claws attack", @@ -6555,7 +6555,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "sahuagin_spear-attack", "fields": { "name": "Spear attack", @@ -6578,7 +6578,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "sahuagin_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", @@ -6601,7 +6601,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "salamander_spear-attack", "fields": { "name": "Spear attack", @@ -6624,7 +6624,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "salamander_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", @@ -6647,7 +6647,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "salamander_tail-attack", "fields": { "name": "Tail attack", @@ -6670,7 +6670,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "satyr_ram-attack", "fields": { "name": "Ram attack", @@ -6693,7 +6693,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "satyr_shortbow-attack", "fields": { "name": "Shortbow attack", @@ -6716,7 +6716,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "satyr_shortsword-attack", "fields": { "name": "Shortsword attack", @@ -6739,7 +6739,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "sea-hag_claws-attack", "fields": { "name": "Claws attack", @@ -6762,7 +6762,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "shadow_strength-drain-attack", "fields": { "name": "Strength Drain attack", @@ -6785,7 +6785,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "shambling-mound_slam-attack", "fields": { "name": "Slam attack", @@ -6808,7 +6808,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "shield-guardian_fist-attack", "fields": { "name": "Fist attack", @@ -6831,7 +6831,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "silver-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", @@ -6854,7 +6854,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "skeleton_shortbow-attack", "fields": { "name": "Shortbow attack", @@ -6877,7 +6877,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "skeleton_shortsword-attack", "fields": { "name": "Shortsword attack", @@ -6900,7 +6900,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "solar_greatsword-attack", "fields": { "name": "Greatsword attack", @@ -6923,7 +6923,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "solar_slaying-longbow-attack", "fields": { "name": "Slaying Longbow attack", @@ -6946,7 +6946,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "specter_life-drain-attack", "fields": { "name": "Life Drain attack", @@ -6969,7 +6969,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "spirit-naga_bite-attack", "fields": { "name": "Bite attack", @@ -6992,7 +6992,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "sprite_longsword-attack", "fields": { "name": "Longsword attack", @@ -7015,7 +7015,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "sprite_shortbow-attack", "fields": { "name": "Shortbow attack", @@ -7038,7 +7038,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "steam-mephit_claws-attack", "fields": { "name": "Claws attack", @@ -7061,7 +7061,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "stirge_blood-drain-attack", "fields": { "name": "Blood Drain attack", @@ -7084,7 +7084,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "stone-giant_greatclub-attack", "fields": { "name": "Greatclub attack", @@ -7107,7 +7107,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "stone-giant_rock-attack", "fields": { "name": "Rock attack", @@ -7130,7 +7130,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "stone-golem_slam-attack", "fields": { "name": "Slam attack", @@ -7153,7 +7153,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "storm-giant_greatsword-attack", "fields": { "name": "Greatsword attack", @@ -7176,7 +7176,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "storm-giant_rock-attack", "fields": { "name": "Rock attack", @@ -7199,7 +7199,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "succubusincubus_claw-attack", "fields": { "name": "Claw attack", @@ -7222,7 +7222,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "tarrasque_bite-attack", "fields": { "name": "Bite attack", @@ -7245,7 +7245,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "tarrasque_claw-attack", "fields": { "name": "Claw attack", @@ -7268,7 +7268,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "tarrasque_horns-attack", "fields": { "name": "Horns attack", @@ -7291,7 +7291,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "tarrasque_tail-attack", "fields": { "name": "Tail attack", @@ -7314,7 +7314,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "treant_rock-attack", "fields": { "name": "Rock attack", @@ -7337,7 +7337,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "treant_slam-attack", "fields": { "name": "Slam attack", @@ -7360,7 +7360,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "triceratops_gore-attack", "fields": { "name": "Gore attack", @@ -7383,7 +7383,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "triceratops_stomp-attack", "fields": { "name": "Stomp attack", @@ -7406,7 +7406,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "troll_bite-attack", "fields": { "name": "Bite attack", @@ -7429,7 +7429,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "troll_claw-attack", "fields": { "name": "Claw attack", @@ -7452,7 +7452,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "tyrannosaurus-rex_bite-attack", "fields": { "name": "Bite attack", @@ -7475,7 +7475,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "tyrannosaurus-rex_tail-attack", "fields": { "name": "Tail attack", @@ -7498,7 +7498,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "unicorn_hooves-attack", "fields": { "name": "Hooves attack", @@ -7521,7 +7521,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "unicorn_horn-attack", "fields": { "name": "Horn attack", @@ -7544,7 +7544,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "vampire-spawn_bite-attack", "fields": { "name": "Bite attack", @@ -7567,7 +7567,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "vampire-spawn_claws-attack", "fields": { "name": "Claws attack", @@ -7590,7 +7590,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "vampire_bite-attack", "fields": { "name": "Bite attack", @@ -7613,7 +7613,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "vampire_unarmed-strike-attack", "fields": { "name": "Unarmed Strike attack", @@ -7636,7 +7636,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "violet-fungus_rotting-touch-attack", "fields": { "name": "Rotting Touch attack", @@ -7659,7 +7659,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "vrock_beak-attack", "fields": { "name": "Beak attack", @@ -7682,7 +7682,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "vrock_talons-attack", "fields": { "name": "Talons attack", @@ -7705,7 +7705,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "warhorse-skeleton_hooves-attack", "fields": { "name": "Hooves attack", @@ -7728,7 +7728,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "water-elemental_slam-attack", "fields": { "name": "Slam attack", @@ -7751,7 +7751,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "werebear_bite-attack", "fields": { "name": "Bite attack", @@ -7774,7 +7774,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "werebear_claw-attack", "fields": { "name": "Claw attack", @@ -7797,7 +7797,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "werebear_greataxe-attack", "fields": { "name": "Greataxe attack", @@ -7820,7 +7820,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "wereboar_maul-attack", "fields": { "name": "Maul attack", @@ -7843,7 +7843,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "wereboar_tusks-attack", "fields": { "name": "Tusks attack", @@ -7866,7 +7866,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "wererat_bite-attack", "fields": { "name": "Bite attack", @@ -7889,7 +7889,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "wererat_hand-crossbow-attack", "fields": { "name": "Hand Crossbow attack", @@ -7912,7 +7912,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "wererat_shortsword-attack", "fields": { "name": "Shortsword attack", @@ -7935,7 +7935,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "weretiger_bite-attack", "fields": { "name": "Bite attack", @@ -7958,7 +7958,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "weretiger_claw-attack", "fields": { "name": "Claw attack", @@ -7981,7 +7981,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "weretiger_longbow-attack", "fields": { "name": "Longbow attack", @@ -8004,7 +8004,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "weretiger_scimitar-attack", "fields": { "name": "Scimitar attack", @@ -8027,7 +8027,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "werewolf_bite-attack", "fields": { "name": "Bite attack", @@ -8050,7 +8050,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "werewolf_claws-attack", "fields": { "name": "Claws attack", @@ -8073,7 +8073,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "werewolf_spear-attack", "fields": { "name": "Spear attack", @@ -8096,7 +8096,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "werewolf_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", @@ -8119,7 +8119,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "white-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", @@ -8142,7 +8142,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "wight_life-drain-attack", "fields": { "name": "Life Drain attack", @@ -8165,7 +8165,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "wight_longbow-attack", "fields": { "name": "Longbow attack", @@ -8188,7 +8188,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "wight_longsword-attack", "fields": { "name": "Longsword attack", @@ -8211,7 +8211,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "wight_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", @@ -8234,7 +8234,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "will-o-wisp_shock-attack", "fields": { "name": "Shock attack", @@ -8257,7 +8257,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "wraith_life-drain-attack", "fields": { "name": "Life Drain attack", @@ -8280,7 +8280,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "wyvern_bite-attack", "fields": { "name": "Bite attack", @@ -8303,7 +8303,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "wyvern_claws-attack", "fields": { "name": "Claws attack", @@ -8326,7 +8326,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "wyvern_stinger-attack", "fields": { "name": "Stinger attack", @@ -8349,7 +8349,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "xorn_bite-attack", "fields": { "name": "Bite attack", @@ -8372,7 +8372,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "xorn_claw-attack", "fields": { "name": "Claw attack", @@ -8395,7 +8395,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-black-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -8418,7 +8418,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-black-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -8441,7 +8441,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-blue-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -8464,7 +8464,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-blue-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -8487,7 +8487,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-brass-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -8510,7 +8510,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-brass-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -8533,7 +8533,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-bronze-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -8556,7 +8556,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-bronze-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -8579,7 +8579,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-copper-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -8602,7 +8602,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-copper-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -8625,7 +8625,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-gold-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -8648,7 +8648,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-gold-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -8671,7 +8671,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-green-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -8694,7 +8694,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-green-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -8717,7 +8717,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-red-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -8740,7 +8740,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-red-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -8763,7 +8763,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-silver-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -8786,7 +8786,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-silver-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -8809,7 +8809,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-white-dragon_bite-attack", "fields": { "name": "Bite attack", @@ -8832,7 +8832,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "young-white-dragon_claw-attack", "fields": { "name": "Claw attack", @@ -8855,7 +8855,7 @@ } }, { - "model": "api_v2.creatureattack", + "model": "api_v2.creatureactionattack", "pk": "zombie_slam-attack", "fields": { "name": "Slam attack", From f1e59eb1ba6dd157f8e3c0985e11c40150beaa84 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 08:56:44 -0500 Subject: [PATCH 64/84] Got CreatureAction to lose document. --- api_v2/management/commands/export.py | 10 +- api_v2/migrations/0088_auto_20240601_1332.py | 22 + api_v2/models/creature.py | 6 +- .../srd/CreatureActionAttack.json | 386 ------------------ 4 files changed, 34 insertions(+), 390 deletions(-) create mode 100644 api_v2/migrations/0088_auto_20240601_1332.py diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index b1026027..8a742cb2 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -109,11 +109,17 @@ def handle(self, *args, **options) -> None: for model in app_models: SKIPPED_MODEL_NAMES = ['Document', 'Ruleset', 'License', 'Publisher','SearchResult'] - CHILD_MODEL_NAMES = ['RaceTrait', 'FeatBenefit', 'BackgroundBenefit', 'ClassFeatureItem', 'SpellCastingOption'] + CHILD_MODEL_NAMES = ['RaceTrait', 'FeatBenefit', 'BackgroundBenefit', 'ClassFeatureItem', 'SpellCastingOption','CreatureAction','CreatureActionAttack'] if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES: if model.__name__ in CHILD_MODEL_NAMES: - modelq = model.objects.filter(parent__document=doc).order_by('pk') + modelq=None + if model.__name__=='CreatureAction': + modelq = model.objects.filter(creature__document=doc).order_by('pk') + if model.__name__=='CreatureActionAttack': + modelq = model.objects.filter(creature_action__document=doc).order_by('pk') + if modelq is None: + modelq = model.objects.filter(parent__document=doc).order_by('pk') else: modelq = model.objects.filter(document=doc).order_by('pk') model_path = get_filepath_by_model( diff --git a/api_v2/migrations/0088_auto_20240601_1332.py b/api_v2/migrations/0088_auto_20240601_1332.py new file mode 100644 index 00000000..09fb3679 --- /dev/null +++ b/api_v2/migrations/0088_auto_20240601_1332.py @@ -0,0 +1,22 @@ +# Generated by Django 3.2.20 on 2024-06-01 13:32 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0087_rename_creatureattack_creatureactionattack'), + ] + + operations = [ + migrations.RemoveField( + model_name='creatureactionattack', + name='document', + ), + migrations.AlterField( + model_name='creatureactionattack', + name='key', + field=models.CharField(help_text='Unique key for the Document.', max_length=100, primary_key=True, serialize=False), + ), + ] diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index 5cef8f5d..893706d7 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -5,7 +5,7 @@ from .abilities import Abilities from .abstracts import HasDescription, HasName from .abstracts import damage_die_count_field, damage_die_type_field -from .abstracts import damage_bonus_field +from .abstracts import damage_bonus_field, key_field from .object import Object from .document import FromDocument from .enums import CREATURE_ATTACK_TYPES, CREATURE_USES_TYPES @@ -82,7 +82,9 @@ class CreatureAction(HasName, HasDescription, FromDocument): #TODO rename to CreatureActionAttack #TODO remove FromDocument -class CreatureActionAttack(HasName, FromDocument): +class CreatureActionAttack(HasName): + + key = key_field() #TODO refactor to parent creature_action = models.ForeignKey( diff --git a/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json index f29829ac..f4f389e5 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json @@ -4,7 +4,6 @@ "pk": "aboleth_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "aboleth_tail", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -27,7 +26,6 @@ "pk": "aboleth_tentacle-attack", "fields": { "name": "Tentacle attack", - "document": "srd", "creature_action": "aboleth_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -50,7 +48,6 @@ "pk": "adult-black-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "adult-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -73,7 +70,6 @@ "pk": "adult-black-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "adult-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -96,7 +92,6 @@ "pk": "adult-black-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "adult-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -119,7 +114,6 @@ "pk": "adult-blue-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "adult-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, @@ -142,7 +136,6 @@ "pk": "adult-blue-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "adult-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, @@ -165,7 +158,6 @@ "pk": "adult-blue-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "adult-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, @@ -188,7 +180,6 @@ "pk": "adult-brass-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "adult-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -211,7 +202,6 @@ "pk": "adult-brass-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "adult-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -234,7 +224,6 @@ "pk": "adult-brass-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "adult-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -257,7 +246,6 @@ "pk": "adult-bronze-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "adult-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, @@ -280,7 +268,6 @@ "pk": "adult-bronze-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "adult-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, @@ -303,7 +290,6 @@ "pk": "adult-bronze-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "adult-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, @@ -326,7 +312,6 @@ "pk": "adult-copper-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "adult-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -349,7 +334,6 @@ "pk": "adult-copper-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "adult-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -372,7 +356,6 @@ "pk": "adult-copper-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "adult-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -395,7 +378,6 @@ "pk": "adult-gold-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "adult-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -418,7 +400,6 @@ "pk": "adult-gold-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "adult-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -441,7 +422,6 @@ "pk": "adult-gold-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "adult-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -464,7 +444,6 @@ "pk": "adult-green-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "adult-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -487,7 +466,6 @@ "pk": "adult-green-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "adult-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -510,7 +488,6 @@ "pk": "adult-green-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "adult-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -533,7 +510,6 @@ "pk": "adult-red-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "adult-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -556,7 +532,6 @@ "pk": "adult-red-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "adult-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -579,7 +554,6 @@ "pk": "adult-red-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "adult-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -602,7 +576,6 @@ "pk": "adult-silver-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "adult-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, @@ -625,7 +598,6 @@ "pk": "adult-silver-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "adult-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, @@ -648,7 +620,6 @@ "pk": "adult-silver-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "adult-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, @@ -671,7 +642,6 @@ "pk": "adult-white-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "adult-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -694,7 +664,6 @@ "pk": "adult-white-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "adult-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -717,7 +686,6 @@ "pk": "adult-white-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "adult-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -740,7 +708,6 @@ "pk": "air-elemental_slam-attack", "fields": { "name": "Slam attack", - "document": "srd", "creature_action": "air-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -763,7 +730,6 @@ "pk": "ancient-black-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ancient-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, @@ -786,7 +752,6 @@ "pk": "ancient-black-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "ancient-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, @@ -809,7 +774,6 @@ "pk": "ancient-black-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "ancient-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, @@ -832,7 +796,6 @@ "pk": "ancient-blue-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ancient-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, @@ -855,7 +818,6 @@ "pk": "ancient-blue-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "ancient-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, @@ -878,7 +840,6 @@ "pk": "ancient-blue-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "ancient-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, @@ -901,7 +862,6 @@ "pk": "ancient-brass-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ancient-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -924,7 +884,6 @@ "pk": "ancient-brass-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "ancient-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -947,7 +906,6 @@ "pk": "ancient-brass-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "ancient-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -970,7 +928,6 @@ "pk": "ancient-bronze-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ancient-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, @@ -993,7 +950,6 @@ "pk": "ancient-bronze-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "ancient-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, @@ -1016,7 +972,6 @@ "pk": "ancient-bronze-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "ancient-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, @@ -1039,7 +994,6 @@ "pk": "ancient-copper-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ancient-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, @@ -1062,7 +1016,6 @@ "pk": "ancient-copper-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "ancient-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, @@ -1085,7 +1038,6 @@ "pk": "ancient-copper-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "ancient-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, @@ -1108,7 +1060,6 @@ "pk": "ancient-gold-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ancient-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, @@ -1131,7 +1082,6 @@ "pk": "ancient-gold-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "ancient-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, @@ -1154,7 +1104,6 @@ "pk": "ancient-gold-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "ancient-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, @@ -1177,7 +1126,6 @@ "pk": "ancient-green-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ancient-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, @@ -1200,7 +1148,6 @@ "pk": "ancient-green-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "ancient-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, @@ -1223,7 +1170,6 @@ "pk": "ancient-green-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "ancient-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, @@ -1246,7 +1192,6 @@ "pk": "ancient-red-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ancient-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, @@ -1269,7 +1214,6 @@ "pk": "ancient-red-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "ancient-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, @@ -1292,7 +1236,6 @@ "pk": "ancient-red-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "ancient-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, @@ -1315,7 +1258,6 @@ "pk": "ancient-silver-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ancient-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, @@ -1338,7 +1280,6 @@ "pk": "ancient-silver-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "ancient-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, @@ -1361,7 +1302,6 @@ "pk": "ancient-silver-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "ancient-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, @@ -1384,7 +1324,6 @@ "pk": "ancient-white-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ancient-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -1407,7 +1346,6 @@ "pk": "ancient-white-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "ancient-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -1430,7 +1368,6 @@ "pk": "ancient-white-dragon_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "ancient-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -1453,7 +1390,6 @@ "pk": "androsphinx_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "androsphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 12, @@ -1476,7 +1412,6 @@ "pk": "animated-armor_slam-attack", "fields": { "name": "Slam attack", - "document": "srd", "creature_action": "animated-armor_slam", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -1499,7 +1434,6 @@ "pk": "ankheg_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ankheg_bite", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -1522,7 +1456,6 @@ "pk": "azer_warhammer-attack", "fields": { "name": "Warhammer attack", - "document": "srd", "creature_action": "azer_warhammer", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -1545,7 +1478,6 @@ "pk": "azer_warhammer-attack-if-used-with-two-hands", "fields": { "name": "Warhammer attack (if used with two hands)", - "document": "srd", "creature_action": "azer_warhammer", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -1568,7 +1500,6 @@ "pk": "balor_longsword-attack", "fields": { "name": "Longsword attack", - "document": "srd", "creature_action": "balor_longsword", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -1591,7 +1522,6 @@ "pk": "balor_whip-attack", "fields": { "name": "Whip attack", - "document": "srd", "creature_action": "balor_whip", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -1614,7 +1544,6 @@ "pk": "barbed-devil_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "barbed-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -1637,7 +1566,6 @@ "pk": "barbed-devil_hurl-flame-attack", "fields": { "name": "Hurl Flame attack", - "document": "srd", "creature_action": "barbed-devil_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 5, @@ -1660,7 +1588,6 @@ "pk": "barbed-devil_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "barbed-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -1683,7 +1610,6 @@ "pk": "basilisk_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "basilisk_bite", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -1706,7 +1632,6 @@ "pk": "bearded-devil_beard-attack", "fields": { "name": "Beard attack", - "document": "srd", "creature_action": "bearded-devil_beard", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -1729,7 +1654,6 @@ "pk": "bearded-devil_glaive-attack", "fields": { "name": "Glaive attack", - "document": "srd", "creature_action": "bearded-devil_glaive", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -1752,7 +1676,6 @@ "pk": "behir_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "behir_bite", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -1775,7 +1698,6 @@ "pk": "behir_constrict-attack", "fields": { "name": "Constrict attack", - "document": "srd", "creature_action": "behir_constrict", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -1798,7 +1720,6 @@ "pk": "black-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "black-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -1821,7 +1742,6 @@ "pk": "black-pudding_pseudopod-attack", "fields": { "name": "Pseudopod attack", - "document": "srd", "creature_action": "black-pudding_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -1844,7 +1764,6 @@ "pk": "blue-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "blue-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -1867,7 +1786,6 @@ "pk": "bone-devil_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "bone-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -1890,7 +1808,6 @@ "pk": "bone-devil_sting-attack", "fields": { "name": "Sting attack", - "document": "srd", "creature_action": "bone-devil_sting", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -1913,7 +1830,6 @@ "pk": "brass-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "brass-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -1936,7 +1852,6 @@ "pk": "bronze-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "bronze-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -1959,7 +1874,6 @@ "pk": "bugbear_javelin-attack-at-range", "fields": { "name": "Javelin attack (at range)", - "document": "srd", "creature_action": "bugbear_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -1982,7 +1896,6 @@ "pk": "bugbear_javelin-attack-in-melee", "fields": { "name": "Javelin attack (in melee)", - "document": "srd", "creature_action": "bugbear_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -2005,7 +1918,6 @@ "pk": "bugbear_morningstar-attack", "fields": { "name": "Morningstar attack", - "document": "srd", "creature_action": "bugbear_morningstar", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -2028,7 +1940,6 @@ "pk": "bulette_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "bulette_bite", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -2051,7 +1962,6 @@ "pk": "centaur_hooves-attack", "fields": { "name": "Hooves attack", - "document": "srd", "creature_action": "centaur_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -2074,7 +1984,6 @@ "pk": "centaur_longbow-attack", "fields": { "name": "Longbow attack", - "document": "srd", "creature_action": "centaur_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -2097,7 +2006,6 @@ "pk": "centaur_pike-attack", "fields": { "name": "Pike attack", - "document": "srd", "creature_action": "centaur_pike", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -2120,7 +2028,6 @@ "pk": "chain-devil_chain-attack", "fields": { "name": "Chain attack", - "document": "srd", "creature_action": "chain-devil_chain", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -2143,7 +2050,6 @@ "pk": "chimera_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "chimera_bite", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -2166,7 +2072,6 @@ "pk": "chimera_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "chimera_claws", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -2189,7 +2094,6 @@ "pk": "chimera_horns-attack", "fields": { "name": "Horns attack", - "document": "srd", "creature_action": "chimera_horns", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -2212,7 +2116,6 @@ "pk": "chuul_pincer-attack", "fields": { "name": "Pincer attack", - "document": "srd", "creature_action": "chuul_pincer", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -2235,7 +2138,6 @@ "pk": "clay-golem_slam-attack", "fields": { "name": "Slam attack", - "document": "srd", "creature_action": "clay-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -2258,7 +2160,6 @@ "pk": "cloaker_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "cloaker_bite", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -2281,7 +2182,6 @@ "pk": "cloaker_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "cloaker_tail", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -2304,7 +2204,6 @@ "pk": "cloud-giant_morningstar-attack", "fields": { "name": "Morningstar attack", - "document": "srd", "creature_action": "cloud-giant_morningstar", "attack_type": "WEAPON", "to_hit_mod": 12, @@ -2327,7 +2226,6 @@ "pk": "cloud-giant_rock-attack", "fields": { "name": "Rock attack", - "document": "srd", "creature_action": "cloud-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 12, @@ -2350,7 +2248,6 @@ "pk": "cockatrice_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "cockatrice_bite", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -2373,7 +2270,6 @@ "pk": "copper-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "copper-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -2396,7 +2292,6 @@ "pk": "couatl_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "couatl_bite", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -2419,7 +2314,6 @@ "pk": "couatl_constrict-attack", "fields": { "name": "Constrict attack", - "document": "srd", "creature_action": "couatl_constrict", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -2442,7 +2336,6 @@ "pk": "darkmantle_crush-attack", "fields": { "name": "Crush attack", - "document": "srd", "creature_action": "darkmantle_crush", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -2465,7 +2358,6 @@ "pk": "deva_mace-attack", "fields": { "name": "Mace attack", - "document": "srd", "creature_action": "deva_mace", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -2488,7 +2380,6 @@ "pk": "djinni_scimitar-attack-lightning-damage", "fields": { "name": "Scimitar attack (lightning damage)", - "document": "srd", "creature_action": "djinni_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -2511,7 +2402,6 @@ "pk": "djinni_scimitar-attack-thunder-damage", "fields": { "name": "Scimitar attack (thunder damage)", - "document": "srd", "creature_action": "djinni_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -2534,7 +2424,6 @@ "pk": "doppelganger_slam-attack", "fields": { "name": "Slam attack", - "document": "srd", "creature_action": "doppelganger_slam", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -2557,7 +2446,6 @@ "pk": "dragon-turtle_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "dragon-turtle_bite", "attack_type": "WEAPON", "to_hit_mod": 13, @@ -2580,7 +2468,6 @@ "pk": "dragon-turtle_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "dragon-turtle_claw", "attack_type": "WEAPON", "to_hit_mod": 13, @@ -2603,7 +2490,6 @@ "pk": "dragon-turtle_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "dragon-turtle_tail", "attack_type": "WEAPON", "to_hit_mod": 13, @@ -2626,7 +2512,6 @@ "pk": "dretch_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "dretch_bite", "attack_type": "WEAPON", "to_hit_mod": 2, @@ -2649,7 +2534,6 @@ "pk": "dretch_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "dretch_claws", "attack_type": "WEAPON", "to_hit_mod": 2, @@ -2672,7 +2556,6 @@ "pk": "drider_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "drider_bite", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -2695,7 +2578,6 @@ "pk": "drider_longbow-attack", "fields": { "name": "Longbow attack", - "document": "srd", "creature_action": "drider_longbow", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -2718,7 +2600,6 @@ "pk": "drider_longsword-attack", "fields": { "name": "Longsword attack", - "document": "srd", "creature_action": "drider_longsword", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -2741,7 +2622,6 @@ "pk": "drider_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", - "document": "srd", "creature_action": "drider_longsword", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -2764,7 +2644,6 @@ "pk": "dryad_club-attack", "fields": { "name": "Club attack", - "document": "srd", "creature_action": "dryad_club", "attack_type": "WEAPON", "to_hit_mod": 2, @@ -2787,7 +2666,6 @@ "pk": "dryad_club-attack-with-shillelagh", "fields": { "name": "Club attack (with shillelagh)", - "document": "srd", "creature_action": "dryad_club", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -2810,7 +2688,6 @@ "pk": "duergar_javelin-attack", "fields": { "name": "Javelin attack", - "document": "srd", "creature_action": "duergar_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -2833,7 +2710,6 @@ "pk": "duergar_javelin-attack-while-enlarged", "fields": { "name": "Javelin attack (while enlarged)", - "document": "srd", "creature_action": "duergar_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -2856,7 +2732,6 @@ "pk": "duergar_war-pick-attack", "fields": { "name": "War Pick attack", - "document": "srd", "creature_action": "duergar_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -2879,7 +2754,6 @@ "pk": "duergar_war-pick-attack-while-enlarged", "fields": { "name": "War Pick attack (while enlarged)", - "document": "srd", "creature_action": "duergar_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -2902,7 +2776,6 @@ "pk": "dust-mephit_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "dust-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -2925,7 +2798,6 @@ "pk": "earth-elemental_slam-attack", "fields": { "name": "Slam attack", - "document": "srd", "creature_action": "earth-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -2948,7 +2820,6 @@ "pk": "efreeti_hurl-flame-attack", "fields": { "name": "Hurl Flame attack", - "document": "srd", "creature_action": "efreeti_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 7, @@ -2971,7 +2842,6 @@ "pk": "efreeti_scimitar-attack", "fields": { "name": "Scimitar attack", - "document": "srd", "creature_action": "efreeti_scimitar", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -2994,7 +2864,6 @@ "pk": "elf-drow_hand-crossbow-attack", "fields": { "name": "Hand Crossbow attack", - "document": "srd", "creature_action": "elf-drow_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3017,7 +2886,6 @@ "pk": "elf-drow_shortsword-attack", "fields": { "name": "Shortsword attack", - "document": "srd", "creature_action": "elf-drow_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3040,7 +2908,6 @@ "pk": "erinyes_longbow-attack", "fields": { "name": "Longbow attack", - "document": "srd", "creature_action": "erinyes_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -3063,7 +2930,6 @@ "pk": "erinyes_longsword-attack", "fields": { "name": "Longsword attack", - "document": "srd", "creature_action": "erinyes_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -3086,7 +2952,6 @@ "pk": "erinyes_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", - "document": "srd", "creature_action": "erinyes_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -3109,7 +2974,6 @@ "pk": "ettercap_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ettercap_bite", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3132,7 +2996,6 @@ "pk": "ettercap_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "ettercap_claws", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3155,7 +3018,6 @@ "pk": "ettercap_web-attack", "fields": { "name": "Web attack", - "document": "srd", "creature_action": "ettercap_web", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3178,7 +3040,6 @@ "pk": "ettin_battleaxe-attack", "fields": { "name": "Battleaxe attack", - "document": "srd", "creature_action": "ettin_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -3201,7 +3062,6 @@ "pk": "ettin_morningstar-attack", "fields": { "name": "Morningstar attack", - "document": "srd", "creature_action": "ettin_morningstar", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -3224,7 +3084,6 @@ "pk": "fire-elemental_touch-attack", "fields": { "name": "Touch attack", - "document": "srd", "creature_action": "fire-elemental_touch", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -3247,7 +3106,6 @@ "pk": "fire-giant_greatsword-attack", "fields": { "name": "Greatsword attack", - "document": "srd", "creature_action": "fire-giant_greatsword", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -3270,7 +3128,6 @@ "pk": "fire-giant_rock-attack", "fields": { "name": "Rock attack", - "document": "srd", "creature_action": "fire-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -3293,7 +3150,6 @@ "pk": "flesh-golem_slam-attack", "fields": { "name": "Slam attack", - "document": "srd", "creature_action": "flesh-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -3316,7 +3172,6 @@ "pk": "flying-sword_longsword-attack", "fields": { "name": "Longsword attack", - "document": "srd", "creature_action": "flying-sword_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -3339,7 +3194,6 @@ "pk": "frost-giant_greataxe-attack", "fields": { "name": "Greataxe attack", - "document": "srd", "creature_action": "frost-giant_greataxe", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -3362,7 +3216,6 @@ "pk": "frost-giant_rock-attack", "fields": { "name": "Rock attack", - "document": "srd", "creature_action": "frost-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -3385,7 +3238,6 @@ "pk": "gargoyle_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "gargoyle_bite", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3408,7 +3260,6 @@ "pk": "gargoyle_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "gargoyle_claws", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3431,7 +3282,6 @@ "pk": "gelatinous-cube_pseudopod-attack", "fields": { "name": "Pseudopod attack", - "document": "srd", "creature_action": "gelatinous-cube_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3454,7 +3304,6 @@ "pk": "ghast_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ghast_bite", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -3477,7 +3326,6 @@ "pk": "ghast_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "ghast_claws", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -3500,7 +3348,6 @@ "pk": "ghost_withering-touch-attack", "fields": { "name": "Withering Touch attack", - "document": "srd", "creature_action": "ghost_withering-touch", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -3523,7 +3370,6 @@ "pk": "ghoul_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 2, @@ -3546,7 +3392,6 @@ "pk": "ghoul_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "ghoul_claws", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3569,7 +3414,6 @@ "pk": "gibbering-mouther_bites-attack", "fields": { "name": "Bites attack", - "document": "srd", "creature_action": "gibbering-mouther_bites", "attack_type": "WEAPON", "to_hit_mod": 2, @@ -3592,7 +3436,6 @@ "pk": "glabrezu_fist-attack", "fields": { "name": "Fist attack", - "document": "srd", "creature_action": "glabrezu_fist", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -3615,7 +3458,6 @@ "pk": "glabrezu_pincer-attack", "fields": { "name": "Pincer attack", - "document": "srd", "creature_action": "glabrezu_pincer", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -3638,7 +3480,6 @@ "pk": "gnoll_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "gnoll_bite", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3661,7 +3502,6 @@ "pk": "gnoll_longbow-attack", "fields": { "name": "Longbow attack", - "document": "srd", "creature_action": "gnoll_longbow", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -3684,7 +3524,6 @@ "pk": "gnoll_spear-attack", "fields": { "name": "Spear attack", - "document": "srd", "creature_action": "gnoll_spear", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3707,7 +3546,6 @@ "pk": "gnoll_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", - "document": "srd", "creature_action": "gnoll_spear", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3730,7 +3568,6 @@ "pk": "gnome-deep-svirfneblin_poisoned-dart-attack", "fields": { "name": "Poisoned Dart attack", - "document": "srd", "creature_action": "gnome-deep-svirfneblin_poisoned-dart", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3753,7 +3590,6 @@ "pk": "gnome-deep-svirfneblin_war-pick-attack", "fields": { "name": "War Pick attack", - "document": "srd", "creature_action": "gnome-deep-svirfneblin_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3776,7 +3612,6 @@ "pk": "goblin_scimitar-attack", "fields": { "name": "Scimitar attack", - "document": "srd", "creature_action": "goblin_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3799,7 +3634,6 @@ "pk": "goblin_shortbow-attack", "fields": { "name": "Shortbow attack", - "document": "srd", "creature_action": "goblin_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3822,7 +3656,6 @@ "pk": "gold-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "gold-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -3845,7 +3678,6 @@ "pk": "gorgon_gore-attack", "fields": { "name": "Gore attack", - "document": "srd", "creature_action": "gorgon_gore", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -3868,7 +3700,6 @@ "pk": "gorgon_hooves-attack", "fields": { "name": "Hooves attack", - "document": "srd", "creature_action": "gorgon_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -3891,7 +3722,6 @@ "pk": "gray-ooze_pseudopod-attack", "fields": { "name": "Pseudopod attack", - "document": "srd", "creature_action": "gray-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -3914,7 +3744,6 @@ "pk": "green-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "green-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3937,7 +3766,6 @@ "pk": "green-hag_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "green-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -3960,7 +3788,6 @@ "pk": "grick_beak-attack", "fields": { "name": "Beak attack", - "document": "srd", "creature_action": "grick_beak", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -3983,7 +3810,6 @@ "pk": "grick_tentacles-attack", "fields": { "name": "Tentacles attack", - "document": "srd", "creature_action": "grick_tentacles", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -4006,7 +3832,6 @@ "pk": "griffon_beak-attack", "fields": { "name": "Beak attack", - "document": "srd", "creature_action": "griffon_beak", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -4029,7 +3854,6 @@ "pk": "griffon_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "griffon_claws", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -4052,7 +3876,6 @@ "pk": "grimlock_spiked-bone-club-attack", "fields": { "name": "Spiked Bone Club attack", - "document": "srd", "creature_action": "grimlock_spiked-bone-club", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -4075,7 +3898,6 @@ "pk": "guardian-naga_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "guardian-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -4098,7 +3920,6 @@ "pk": "guardian-naga_spit-poison-attack", "fields": { "name": "Spit Poison attack", - "document": "srd", "creature_action": "guardian-naga_spit-poison", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -4121,7 +3942,6 @@ "pk": "gynosphinx_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "gynosphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -4144,7 +3964,6 @@ "pk": "half-red-dragon-veteran_heavy-crossbow-attack", "fields": { "name": "Heavy Crossbow attack", - "document": "srd", "creature_action": "half-red-dragon-veteran_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -4167,7 +3986,6 @@ "pk": "half-red-dragon-veteran_longsword-attack", "fields": { "name": "Longsword attack", - "document": "srd", "creature_action": "half-red-dragon-veteran_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -4190,7 +4008,6 @@ "pk": "half-red-dragon-veteran_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", - "document": "srd", "creature_action": "half-red-dragon-veteran_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -4213,7 +4030,6 @@ "pk": "half-red-dragon-veteran_shortsword-attack", "fields": { "name": "Shortsword attack", - "document": "srd", "creature_action": "half-red-dragon-veteran_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -4236,7 +4052,6 @@ "pk": "harpy_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "harpy_claws", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -4259,7 +4074,6 @@ "pk": "harpy_club-attack", "fields": { "name": "Club attack", - "document": "srd", "creature_action": "harpy_club", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -4282,7 +4096,6 @@ "pk": "hell-hound_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "hell-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -4305,7 +4118,6 @@ "pk": "hezrou_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "hezrou_bite", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -4328,7 +4140,6 @@ "pk": "hezrou_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "hezrou_claw", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -4351,7 +4162,6 @@ "pk": "hill-giant_greatclub-attack", "fields": { "name": "Greatclub attack", - "document": "srd", "creature_action": "hill-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -4374,7 +4184,6 @@ "pk": "hill-giant_rock-attack", "fields": { "name": "Rock attack", - "document": "srd", "creature_action": "hill-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -4397,7 +4206,6 @@ "pk": "hippogriff_beak-attack", "fields": { "name": "Beak attack", - "document": "srd", "creature_action": "hippogriff_beak", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -4420,7 +4228,6 @@ "pk": "hippogriff_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "hippogriff_claws", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -4443,7 +4250,6 @@ "pk": "hobgoblin_longbow-attack", "fields": { "name": "Longbow attack", - "document": "srd", "creature_action": "hobgoblin_longbow", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -4466,7 +4272,6 @@ "pk": "hobgoblin_longsword-attack", "fields": { "name": "Longsword attack", - "document": "srd", "creature_action": "hobgoblin_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -4489,7 +4294,6 @@ "pk": "hobgoblin_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", - "document": "srd", "creature_action": "hobgoblin_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -4512,7 +4316,6 @@ "pk": "homunculus_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "homunculus_bite", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -4535,7 +4338,6 @@ "pk": "horned-devil_fork-attack", "fields": { "name": "Fork attack", - "document": "srd", "creature_action": "horned-devil_fork", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -4558,7 +4360,6 @@ "pk": "horned-devil_hurl-flame-attack", "fields": { "name": "Hurl Flame attack", - "document": "srd", "creature_action": "horned-devil_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 7, @@ -4581,7 +4382,6 @@ "pk": "horned-devil_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "horned-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -4604,7 +4404,6 @@ "pk": "hydra_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "hydra_bite", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -4627,7 +4426,6 @@ "pk": "ice-devil_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "ice-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -4650,7 +4448,6 @@ "pk": "ice-devil_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "ice-devil_claws", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -4673,7 +4470,6 @@ "pk": "ice-devil_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "ice-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -4696,7 +4492,6 @@ "pk": "ice-mephit_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "ice-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -4719,7 +4514,6 @@ "pk": "imp_stingbite-attack", "fields": { "name": "Sting/Bite attack", - "document": "srd", "creature_action": "imp_sting-bite-in-beast-form", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -4742,7 +4536,6 @@ "pk": "invisible-stalker_slam-attack", "fields": { "name": "Slam attack", - "document": "srd", "creature_action": "invisible-stalker_slam", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -4765,7 +4558,6 @@ "pk": "iron-golem_slam-attack", "fields": { "name": "Slam attack", - "document": "srd", "creature_action": "iron-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 13, @@ -4788,7 +4580,6 @@ "pk": "iron-golem_sword-attack", "fields": { "name": "Sword attack", - "document": "srd", "creature_action": "iron-golem_sword", "attack_type": "WEAPON", "to_hit_mod": 13, @@ -4811,7 +4602,6 @@ "pk": "kobold_dagger-attack", "fields": { "name": "Dagger attack", - "document": "srd", "creature_action": "kobold_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -4834,7 +4624,6 @@ "pk": "kobold_sling-attack", "fields": { "name": "Sling attack", - "document": "srd", "creature_action": "kobold_sling", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -4857,7 +4646,6 @@ "pk": "kraken_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "kraken_bite", "attack_type": "WEAPON", "to_hit_mod": 17, @@ -4880,7 +4668,6 @@ "pk": "kraken_tentacle-attack", "fields": { "name": "Tentacle attack", - "document": "srd", "creature_action": "kraken_tentacle", "attack_type": "WEAPON", "to_hit_mod": 17, @@ -4903,7 +4690,6 @@ "pk": "lamia_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "lamia_claws", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -4926,7 +4712,6 @@ "pk": "lamia_dagger-attack", "fields": { "name": "Dagger attack", - "document": "srd", "creature_action": "lamia_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -4949,7 +4734,6 @@ "pk": "lamia_intoxicating-touch-attack", "fields": { "name": "Intoxicating Touch attack", - "document": "srd", "creature_action": "lamia_intoxicating-touch", "attack_type": "SPELL", "to_hit_mod": 5, @@ -4972,7 +4756,6 @@ "pk": "lemure_fist-attack", "fields": { "name": "Fist attack", - "document": "srd", "creature_action": "lemure_fist", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -4995,7 +4778,6 @@ "pk": "lich_paralyzing-touch-attack", "fields": { "name": "Paralyzing Touch attack", - "document": "srd", "creature_action": "lich_paralyzing-touch", "attack_type": "SPELL", "to_hit_mod": 12, @@ -5018,7 +4800,6 @@ "pk": "lizardfolk_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "lizardfolk_bite", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -5041,7 +4822,6 @@ "pk": "lizardfolk_heavy-club-attack", "fields": { "name": "Heavy Club attack", - "document": "srd", "creature_action": "lizardfolk_heavy-club", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -5064,7 +4844,6 @@ "pk": "lizardfolk_javelin-attack", "fields": { "name": "Javelin attack", - "document": "srd", "creature_action": "lizardfolk_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -5087,7 +4866,6 @@ "pk": "lizardfolk_spiked-shield-attack", "fields": { "name": "Spiked Shield attack", - "document": "srd", "creature_action": "lizardfolk_spiked-shield", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -5110,7 +4888,6 @@ "pk": "magma-mephit_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "magma-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -5133,7 +4910,6 @@ "pk": "magmin_touch-attack", "fields": { "name": "Touch attack", - "document": "srd", "creature_action": "magmin_touch", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -5156,7 +4932,6 @@ "pk": "manticore_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "manticore_bite", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -5179,7 +4954,6 @@ "pk": "manticore_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "manticore_claw", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -5202,7 +4976,6 @@ "pk": "manticore_tail-spike-attack", "fields": { "name": "Tail Spike attack", - "document": "srd", "creature_action": "manticore_tail-spike", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -5225,7 +4998,6 @@ "pk": "marilith_longsword-attack", "fields": { "name": "Longsword attack", - "document": "srd", "creature_action": "marilith_longsword", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -5248,7 +5020,6 @@ "pk": "marilith_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "marilith_tail", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -5271,7 +5042,6 @@ "pk": "medusa_longbow-attack", "fields": { "name": "Longbow attack", - "document": "srd", "creature_action": "medusa_longbow", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -5294,7 +5064,6 @@ "pk": "medusa_shortsword-attack", "fields": { "name": "Shortsword attack", - "document": "srd", "creature_action": "medusa_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -5317,7 +5086,6 @@ "pk": "medusa_snake-hair-attack", "fields": { "name": "Snake Hair attack", - "document": "srd", "creature_action": "medusa_snake-hair", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -5340,7 +5108,6 @@ "pk": "merfolk_spear-attack", "fields": { "name": "Spear attack", - "document": "srd", "creature_action": "merfolk_spear", "attack_type": "WEAPON", "to_hit_mod": 2, @@ -5363,7 +5130,6 @@ "pk": "merfolk_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", - "document": "srd", "creature_action": "merfolk_spear", "attack_type": "WEAPON", "to_hit_mod": 2, @@ -5386,7 +5152,6 @@ "pk": "merrow_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "merrow_bite", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -5409,7 +5174,6 @@ "pk": "merrow_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "merrow_claws", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -5432,7 +5196,6 @@ "pk": "merrow_harpoon-attack", "fields": { "name": "Harpoon attack", - "document": "srd", "creature_action": "merrow_harpoon", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -5455,7 +5218,6 @@ "pk": "mimic_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "mimic_bite", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -5478,7 +5240,6 @@ "pk": "mimic_pseudopod-attack", "fields": { "name": "Pseudopod attack", - "document": "srd", "creature_action": "mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -5501,7 +5262,6 @@ "pk": "minotaur-skeleton_gore-attack", "fields": { "name": "Gore attack", - "document": "srd", "creature_action": "minotaur-skeleton_gore", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -5524,7 +5284,6 @@ "pk": "minotaur-skeleton_greataxe-attack", "fields": { "name": "Greataxe attack", - "document": "srd", "creature_action": "minotaur-skeleton_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -5547,7 +5306,6 @@ "pk": "minotaur_gore-attack", "fields": { "name": "Gore attack", - "document": "srd", "creature_action": "minotaur_gore", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -5570,7 +5328,6 @@ "pk": "minotaur_greataxe-attack", "fields": { "name": "Greataxe attack", - "document": "srd", "creature_action": "minotaur_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -5593,7 +5350,6 @@ "pk": "mummy-lord_rotting-fist-attack", "fields": { "name": "Rotting Fist attack", - "document": "srd", "creature_action": "mummy-lord_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -5616,7 +5372,6 @@ "pk": "mummy_rotting-fist-attack", "fields": { "name": "Rotting Fist attack", - "document": "srd", "creature_action": "mummy_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -5639,7 +5394,6 @@ "pk": "nalfeshnee_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "nalfeshnee_bite", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -5662,7 +5416,6 @@ "pk": "nalfeshnee_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "nalfeshnee_claw", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -5685,7 +5438,6 @@ "pk": "night-hag_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "night-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -5708,7 +5460,6 @@ "pk": "nightmare_hooves-attack", "fields": { "name": "Hooves attack", - "document": "srd", "creature_action": "nightmare_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -5731,7 +5482,6 @@ "pk": "ochre-jelly_pseudopod-attack", "fields": { "name": "Pseudopod attack", - "document": "srd", "creature_action": "ochre-jelly_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -5754,7 +5504,6 @@ "pk": "ogre-zombie_morningstar-attack", "fields": { "name": "Morningstar attack", - "document": "srd", "creature_action": "ogre-zombie_morningstar", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -5777,7 +5526,6 @@ "pk": "ogre_greatclub-attack", "fields": { "name": "Greatclub attack", - "document": "srd", "creature_action": "ogre_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -5800,7 +5548,6 @@ "pk": "ogre_javelin-attack", "fields": { "name": "Javelin attack", - "document": "srd", "creature_action": "ogre_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -5823,7 +5570,6 @@ "pk": "oni_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "oni_claw", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -5846,7 +5592,6 @@ "pk": "oni_glaive-attack", "fields": { "name": "Glaive attack", - "document": "srd", "creature_action": "oni_glaive", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -5869,7 +5614,6 @@ "pk": "oni_glaive-attack-in-small-or-medium-form", "fields": { "name": "Glaive attack (in Small or Medium form)", - "document": "srd", "creature_action": "oni_glaive", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -5892,7 +5636,6 @@ "pk": "orc_greataxe-attack", "fields": { "name": "Greataxe attack", - "document": "srd", "creature_action": "orc_greataxe", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -5915,7 +5658,6 @@ "pk": "orc_javelin-attack", "fields": { "name": "Javelin attack", - "document": "srd", "creature_action": "orc_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -5938,7 +5680,6 @@ "pk": "otyugh_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "otyugh_bite", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -5961,7 +5702,6 @@ "pk": "otyugh_tentacle-attack", "fields": { "name": "Tentacle attack", - "document": "srd", "creature_action": "otyugh_tentacle", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -5984,7 +5724,6 @@ "pk": "owlbear_beak-attack", "fields": { "name": "Beak attack", - "document": "srd", "creature_action": "owlbear_beak", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -6007,7 +5746,6 @@ "pk": "owlbear_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "owlbear_claws", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -6030,7 +5768,6 @@ "pk": "pegasus_hooves-attack", "fields": { "name": "Hooves attack", - "document": "srd", "creature_action": "pegasus_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -6053,7 +5790,6 @@ "pk": "pit-fiend_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "pit-fiend_bite", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -6076,7 +5812,6 @@ "pk": "pit-fiend_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "pit-fiend_claw", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -6099,7 +5834,6 @@ "pk": "pit-fiend_mace-attack", "fields": { "name": "Mace attack", - "document": "srd", "creature_action": "pit-fiend_mace", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -6122,7 +5856,6 @@ "pk": "pit-fiend_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "pit-fiend_tail", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -6145,7 +5878,6 @@ "pk": "planetar_greatsword-attack", "fields": { "name": "Greatsword attack", - "document": "srd", "creature_action": "planetar_greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, @@ -6168,7 +5900,6 @@ "pk": "plesiosaurus_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "plesiosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -6191,7 +5922,6 @@ "pk": "pseudodragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "pseudodragon_bite", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -6214,7 +5944,6 @@ "pk": "pseudodragon_sting-attack", "fields": { "name": "Sting attack", - "document": "srd", "creature_action": "pseudodragon_sting", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -6237,7 +5966,6 @@ "pk": "purple-worm_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "purple-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -6260,7 +5988,6 @@ "pk": "purple-worm_tail-stinger-attack", "fields": { "name": "Tail Stinger attack", - "document": "srd", "creature_action": "purple-worm_tail-stinger", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -6283,7 +6010,6 @@ "pk": "quasit_clawsbite-attack", "fields": { "name": "Claws/Bite attack", - "document": "srd", "creature_action": "quasit_claws-bite-in-beast-form", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -6306,7 +6032,6 @@ "pk": "rakshasa_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "rakshasa_claw", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -6329,7 +6054,6 @@ "pk": "red-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "red-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -6352,7 +6076,6 @@ "pk": "remorhaz_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "remorhaz_bite", "attack_type": "WEAPON", "to_hit_mod": 11, @@ -6375,7 +6098,6 @@ "pk": "roc_beak-attack", "fields": { "name": "Beak attack", - "document": "srd", "creature_action": "roc_beak", "attack_type": "WEAPON", "to_hit_mod": 13, @@ -6398,7 +6120,6 @@ "pk": "roc_talons-attack", "fields": { "name": "Talons attack", - "document": "srd", "creature_action": "roc_talons", "attack_type": "WEAPON", "to_hit_mod": 13, @@ -6421,7 +6142,6 @@ "pk": "roper_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "roper_bite", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -6444,7 +6164,6 @@ "pk": "roper_tendril-attack", "fields": { "name": "Tendril attack", - "document": "srd", "creature_action": "roper_tendril", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -6467,7 +6186,6 @@ "pk": "rug-of-smothering_smother-attack", "fields": { "name": "Smother attack", - "document": "srd", "creature_action": "rug-of-smothering_smother", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -6490,7 +6208,6 @@ "pk": "rust-monster_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "rust-monster_bite", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -6513,7 +6230,6 @@ "pk": "sahuagin_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "sahuagin_bite", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -6536,7 +6252,6 @@ "pk": "sahuagin_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "sahuagin_claws", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -6559,7 +6274,6 @@ "pk": "sahuagin_spear-attack", "fields": { "name": "Spear attack", - "document": "srd", "creature_action": "sahuagin_spear", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -6582,7 +6296,6 @@ "pk": "sahuagin_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", - "document": "srd", "creature_action": "sahuagin_spear", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -6605,7 +6318,6 @@ "pk": "salamander_spear-attack", "fields": { "name": "Spear attack", - "document": "srd", "creature_action": "salamander_spear", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -6628,7 +6340,6 @@ "pk": "salamander_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", - "document": "srd", "creature_action": "salamander_spear", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -6651,7 +6362,6 @@ "pk": "salamander_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "salamander_tail", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -6674,7 +6384,6 @@ "pk": "satyr_ram-attack", "fields": { "name": "Ram attack", - "document": "srd", "creature_action": "satyr_ram", "attack_type": "WEAPON", "to_hit_mod": 3, @@ -6697,7 +6406,6 @@ "pk": "satyr_shortbow-attack", "fields": { "name": "Shortbow attack", - "document": "srd", "creature_action": "satyr_shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -6720,7 +6428,6 @@ "pk": "satyr_shortsword-attack", "fields": { "name": "Shortsword attack", - "document": "srd", "creature_action": "satyr_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -6743,7 +6450,6 @@ "pk": "sea-hag_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "sea-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -6766,7 +6472,6 @@ "pk": "shadow_strength-drain-attack", "fields": { "name": "Strength Drain attack", - "document": "srd", "creature_action": "shadow_strength-drain", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -6789,7 +6494,6 @@ "pk": "shambling-mound_slam-attack", "fields": { "name": "Slam attack", - "document": "srd", "creature_action": "shambling-mound_slam", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -6812,7 +6516,6 @@ "pk": "shield-guardian_fist-attack", "fields": { "name": "Fist attack", - "document": "srd", "creature_action": "shield-guardian_fist", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -6835,7 +6538,6 @@ "pk": "silver-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "silver-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -6858,7 +6560,6 @@ "pk": "skeleton_shortbow-attack", "fields": { "name": "Shortbow attack", - "document": "srd", "creature_action": "skeleton_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -6881,7 +6582,6 @@ "pk": "skeleton_shortsword-attack", "fields": { "name": "Shortsword attack", - "document": "srd", "creature_action": "skeleton_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -6904,7 +6604,6 @@ "pk": "solar_greatsword-attack", "fields": { "name": "Greatsword attack", - "document": "srd", "creature_action": "solar_greatsword", "attack_type": "WEAPON", "to_hit_mod": 15, @@ -6927,7 +6626,6 @@ "pk": "solar_slaying-longbow-attack", "fields": { "name": "Slaying Longbow attack", - "document": "srd", "creature_action": "solar_slaying-longbow", "attack_type": "WEAPON", "to_hit_mod": 13, @@ -6950,7 +6648,6 @@ "pk": "specter_life-drain-attack", "fields": { "name": "Life Drain attack", - "document": "srd", "creature_action": "specter_life-drain", "attack_type": "SPELL", "to_hit_mod": 4, @@ -6973,7 +6670,6 @@ "pk": "spirit-naga_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "spirit-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -6996,7 +6692,6 @@ "pk": "sprite_longsword-attack", "fields": { "name": "Longsword attack", - "document": "srd", "creature_action": "sprite_longsword", "attack_type": "WEAPON", "to_hit_mod": 2, @@ -7019,7 +6714,6 @@ "pk": "sprite_shortbow-attack", "fields": { "name": "Shortbow attack", - "document": "srd", "creature_action": "sprite_shortbow", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -7042,7 +6736,6 @@ "pk": "steam-mephit_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "steam-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 2, @@ -7065,7 +6758,6 @@ "pk": "stirge_blood-drain-attack", "fields": { "name": "Blood Drain attack", - "document": "srd", "creature_action": "stirge_blood-drain", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -7088,7 +6780,6 @@ "pk": "stone-giant_greatclub-attack", "fields": { "name": "Greatclub attack", - "document": "srd", "creature_action": "stone-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -7111,7 +6802,6 @@ "pk": "stone-giant_rock-attack", "fields": { "name": "Rock attack", - "document": "srd", "creature_action": "stone-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -7134,7 +6824,6 @@ "pk": "stone-golem_slam-attack", "fields": { "name": "Slam attack", - "document": "srd", "creature_action": "stone-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -7157,7 +6846,6 @@ "pk": "storm-giant_greatsword-attack", "fields": { "name": "Greatsword attack", - "document": "srd", "creature_action": "storm-giant_greatsword", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -7180,7 +6868,6 @@ "pk": "storm-giant_rock-attack", "fields": { "name": "Rock attack", - "document": "srd", "creature_action": "storm-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 14, @@ -7203,7 +6890,6 @@ "pk": "succubusincubus_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "succubusincubus_claw", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -7226,7 +6912,6 @@ "pk": "tarrasque_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "tarrasque_bite", "attack_type": "WEAPON", "to_hit_mod": 19, @@ -7249,7 +6934,6 @@ "pk": "tarrasque_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "tarrasque_claw", "attack_type": "WEAPON", "to_hit_mod": 19, @@ -7272,7 +6956,6 @@ "pk": "tarrasque_horns-attack", "fields": { "name": "Horns attack", - "document": "srd", "creature_action": "tarrasque_horns", "attack_type": "WEAPON", "to_hit_mod": 19, @@ -7295,7 +6978,6 @@ "pk": "tarrasque_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "tarrasque_tail", "attack_type": "WEAPON", "to_hit_mod": 19, @@ -7318,7 +7000,6 @@ "pk": "treant_rock-attack", "fields": { "name": "Rock attack", - "document": "srd", "creature_action": "treant_rock", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -7341,7 +7022,6 @@ "pk": "treant_slam-attack", "fields": { "name": "Slam attack", - "document": "srd", "creature_action": "treant_slam", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -7364,7 +7044,6 @@ "pk": "triceratops_gore-attack", "fields": { "name": "Gore attack", - "document": "srd", "creature_action": "triceratops_gore", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -7387,7 +7066,6 @@ "pk": "triceratops_stomp-attack", "fields": { "name": "Stomp attack", - "document": "srd", "creature_action": "triceratops_stomp", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -7410,7 +7088,6 @@ "pk": "troll_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "troll_bite", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -7433,7 +7110,6 @@ "pk": "troll_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "troll_claw", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -7456,7 +7132,6 @@ "pk": "tyrannosaurus-rex_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "tyrannosaurus-rex_bite", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -7479,7 +7154,6 @@ "pk": "tyrannosaurus-rex_tail-attack", "fields": { "name": "Tail attack", - "document": "srd", "creature_action": "tyrannosaurus-rex_tail", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -7502,7 +7176,6 @@ "pk": "unicorn_hooves-attack", "fields": { "name": "Hooves attack", - "document": "srd", "creature_action": "unicorn_hooves", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -7525,7 +7198,6 @@ "pk": "unicorn_horn-attack", "fields": { "name": "Horn attack", - "document": "srd", "creature_action": "unicorn_horn", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -7548,7 +7220,6 @@ "pk": "vampire-spawn_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "vampire-spawn_bite", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -7571,7 +7242,6 @@ "pk": "vampire-spawn_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "vampire-spawn_claws", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -7594,7 +7264,6 @@ "pk": "vampire_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "vampire_bite", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -7617,7 +7286,6 @@ "pk": "vampire_unarmed-strike-attack", "fields": { "name": "Unarmed Strike attack", - "document": "srd", "creature_action": "vampire_unarmed-strike", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -7640,7 +7308,6 @@ "pk": "violet-fungus_rotting-touch-attack", "fields": { "name": "Rotting Touch attack", - "document": "srd", "creature_action": "violet-fungus_rotting-touch", "attack_type": "WEAPON", "to_hit_mod": 2, @@ -7663,7 +7330,6 @@ "pk": "vrock_beak-attack", "fields": { "name": "Beak attack", - "document": "srd", "creature_action": "vrock_beak", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -7686,7 +7352,6 @@ "pk": "vrock_talons-attack", "fields": { "name": "Talons attack", - "document": "srd", "creature_action": "vrock_talons", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -7709,7 +7374,6 @@ "pk": "warhorse-skeleton_hooves-attack", "fields": { "name": "Hooves attack", - "document": "srd", "creature_action": "warhorse-skeleton_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -7732,7 +7396,6 @@ "pk": "water-elemental_slam-attack", "fields": { "name": "Slam attack", - "document": "srd", "creature_action": "water-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -7755,7 +7418,6 @@ "pk": "werebear_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "werebear_bite", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -7778,7 +7440,6 @@ "pk": "werebear_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "werebear_claw", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -7801,7 +7462,6 @@ "pk": "werebear_greataxe-attack", "fields": { "name": "Greataxe attack", - "document": "srd", "creature_action": "werebear_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -7824,7 +7484,6 @@ "pk": "wereboar_maul-attack", "fields": { "name": "Maul attack", - "document": "srd", "creature_action": "wereboar_maul", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -7847,7 +7506,6 @@ "pk": "wereboar_tusks-attack", "fields": { "name": "Tusks attack", - "document": "srd", "creature_action": "wereboar_tusks", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -7870,7 +7528,6 @@ "pk": "wererat_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "wererat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -7893,7 +7550,6 @@ "pk": "wererat_hand-crossbow-attack", "fields": { "name": "Hand Crossbow attack", - "document": "srd", "creature_action": "wererat_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -7916,7 +7572,6 @@ "pk": "wererat_shortsword-attack", "fields": { "name": "Shortsword attack", - "document": "srd", "creature_action": "wererat_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -7939,7 +7594,6 @@ "pk": "weretiger_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "weretiger_bite", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -7962,7 +7616,6 @@ "pk": "weretiger_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "weretiger_claw", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -7985,7 +7638,6 @@ "pk": "weretiger_longbow-attack", "fields": { "name": "Longbow attack", - "document": "srd", "creature_action": "weretiger_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -8008,7 +7660,6 @@ "pk": "weretiger_scimitar-attack", "fields": { "name": "Scimitar attack", - "document": "srd", "creature_action": "weretiger_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, @@ -8031,7 +7682,6 @@ "pk": "werewolf_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "werewolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -8054,7 +7704,6 @@ "pk": "werewolf_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "werewolf_claws", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -8077,7 +7726,6 @@ "pk": "werewolf_spear-attack", "fields": { "name": "Spear attack", - "document": "srd", "creature_action": "werewolf_spear", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -8100,7 +7748,6 @@ "pk": "werewolf_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", - "document": "srd", "creature_action": "werewolf_spear", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -8123,7 +7770,6 @@ "pk": "white-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "white-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -8146,7 +7792,6 @@ "pk": "wight_life-drain-attack", "fields": { "name": "Life Drain attack", - "document": "srd", "creature_action": "wight_life-drain", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -8169,7 +7814,6 @@ "pk": "wight_longbow-attack", "fields": { "name": "Longbow attack", - "document": "srd", "creature_action": "wight_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -8192,7 +7836,6 @@ "pk": "wight_longsword-attack", "fields": { "name": "Longsword attack", - "document": "srd", "creature_action": "wight_longsword", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -8215,7 +7858,6 @@ "pk": "wight_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", - "document": "srd", "creature_action": "wight_longsword", "attack_type": "WEAPON", "to_hit_mod": 4, @@ -8238,7 +7880,6 @@ "pk": "will-o-wisp_shock-attack", "fields": { "name": "Shock attack", - "document": "srd", "creature_action": "will-o-wisp_shock", "attack_type": "SPELL", "to_hit_mod": 4, @@ -8261,7 +7902,6 @@ "pk": "wraith_life-drain-attack", "fields": { "name": "Life Drain attack", - "document": "srd", "creature_action": "wraith_life-drain", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -8284,7 +7924,6 @@ "pk": "wyvern_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "wyvern_bite", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -8307,7 +7946,6 @@ "pk": "wyvern_claws-attack", "fields": { "name": "Claws attack", - "document": "srd", "creature_action": "wyvern_claws", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -8330,7 +7968,6 @@ "pk": "wyvern_stinger-attack", "fields": { "name": "Stinger attack", - "document": "srd", "creature_action": "wyvern_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -8353,7 +7990,6 @@ "pk": "xorn_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "xorn_bite", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -8376,7 +8012,6 @@ "pk": "xorn_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "xorn_claw", "attack_type": "WEAPON", "to_hit_mod": 6, @@ -8399,7 +8034,6 @@ "pk": "young-black-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "young-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -8422,7 +8056,6 @@ "pk": "young-black-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "young-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -8445,7 +8078,6 @@ "pk": "young-blue-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "young-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -8468,7 +8100,6 @@ "pk": "young-blue-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "young-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, @@ -8491,7 +8122,6 @@ "pk": "young-brass-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "young-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -8514,7 +8144,6 @@ "pk": "young-brass-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "young-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -8537,7 +8166,6 @@ "pk": "young-bronze-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "young-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -8560,7 +8188,6 @@ "pk": "young-bronze-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "young-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, @@ -8583,7 +8210,6 @@ "pk": "young-copper-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "young-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -8606,7 +8232,6 @@ "pk": "young-copper-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "young-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -8629,7 +8254,6 @@ "pk": "young-gold-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "young-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -8652,7 +8276,6 @@ "pk": "young-gold-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "young-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -8675,7 +8298,6 @@ "pk": "young-green-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "young-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -8698,7 +8320,6 @@ "pk": "young-green-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "young-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -8721,7 +8342,6 @@ "pk": "young-red-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "young-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -8744,7 +8364,6 @@ "pk": "young-red-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "young-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -8767,7 +8386,6 @@ "pk": "young-silver-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "young-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -8790,7 +8408,6 @@ "pk": "young-silver-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "young-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, @@ -8813,7 +8430,6 @@ "pk": "young-white-dragon_bite-attack", "fields": { "name": "Bite attack", - "document": "srd", "creature_action": "young-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -8836,7 +8452,6 @@ "pk": "young-white-dragon_claw-attack", "fields": { "name": "Claw attack", - "document": "srd", "creature_action": "young-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, @@ -8859,7 +8474,6 @@ "pk": "zombie_slam-attack", "fields": { "name": "Slam attack", - "document": "srd", "creature_action": "zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 3, From 8005ebf8bd027a9094935400c96b5f9c26684661 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 08:58:12 -0500 Subject: [PATCH 65/84] refactor to parent. --- api_v2/management/commands/export.py | 2 - ...ture_action_creatureactionattack_parent.py | 18 + api_v2/models/creature.py | 2 +- .../srd/CreatureActionAttack.json | 772 +++++++++--------- 4 files changed, 405 insertions(+), 389 deletions(-) create mode 100644 api_v2/migrations/0089_rename_creature_action_creatureactionattack_parent.py diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index 8a742cb2..b7f84c89 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -116,8 +116,6 @@ def handle(self, *args, **options) -> None: modelq=None if model.__name__=='CreatureAction': modelq = model.objects.filter(creature__document=doc).order_by('pk') - if model.__name__=='CreatureActionAttack': - modelq = model.objects.filter(creature_action__document=doc).order_by('pk') if modelq is None: modelq = model.objects.filter(parent__document=doc).order_by('pk') else: diff --git a/api_v2/migrations/0089_rename_creature_action_creatureactionattack_parent.py b/api_v2/migrations/0089_rename_creature_action_creatureactionattack_parent.py new file mode 100644 index 00000000..947e8900 --- /dev/null +++ b/api_v2/migrations/0089_rename_creature_action_creatureactionattack_parent.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-06-01 13:57 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0088_auto_20240601_1332'), + ] + + operations = [ + migrations.RenameField( + model_name='creatureactionattack', + old_name='creature_action', + new_name='parent', + ), + ] diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index 893706d7..f46caf2f 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -87,7 +87,7 @@ class CreatureActionAttack(HasName): key = key_field() #TODO refactor to parent - creature_action = models.ForeignKey( + parent = models.ForeignKey( CreatureAction, on_delete=models.CASCADE, help_text='The creature action to which this attack belongs.' diff --git a/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json index f4f389e5..a4728c69 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json @@ -4,7 +4,7 @@ "pk": "aboleth_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "aboleth_tail", + "parent": "aboleth_tail", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -26,7 +26,7 @@ "pk": "aboleth_tentacle-attack", "fields": { "name": "Tentacle attack", - "creature_action": "aboleth_tentacle", + "parent": "aboleth_tentacle", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -48,7 +48,7 @@ "pk": "adult-black-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "adult-black-dragon_bite", + "parent": "adult-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -70,7 +70,7 @@ "pk": "adult-black-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "adult-black-dragon_claw", + "parent": "adult-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 5, @@ -92,7 +92,7 @@ "pk": "adult-black-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "adult-black-dragon_tail", + "parent": "adult-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 15, @@ -114,7 +114,7 @@ "pk": "adult-blue-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "adult-blue-dragon_bite", + "parent": "adult-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 10, @@ -136,7 +136,7 @@ "pk": "adult-blue-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "adult-blue-dragon_claw", + "parent": "adult-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 5, @@ -158,7 +158,7 @@ "pk": "adult-blue-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "adult-blue-dragon_tail", + "parent": "adult-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 15, @@ -180,7 +180,7 @@ "pk": "adult-brass-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "adult-brass-dragon_bite", + "parent": "adult-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -202,7 +202,7 @@ "pk": "adult-brass-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "adult-brass-dragon_claw", + "parent": "adult-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 5, @@ -224,7 +224,7 @@ "pk": "adult-brass-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "adult-brass-dragon_tail", + "parent": "adult-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 15, @@ -246,7 +246,7 @@ "pk": "adult-bronze-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "adult-bronze-dragon_bite", + "parent": "adult-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 10, @@ -268,7 +268,7 @@ "pk": "adult-bronze-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "adult-bronze-dragon_claw", + "parent": "adult-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 5, @@ -290,7 +290,7 @@ "pk": "adult-bronze-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "adult-bronze-dragon_tail", + "parent": "adult-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 15, @@ -312,7 +312,7 @@ "pk": "adult-copper-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "adult-copper-dragon_bite", + "parent": "adult-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -334,7 +334,7 @@ "pk": "adult-copper-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "adult-copper-dragon_claw", + "parent": "adult-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 5, @@ -356,7 +356,7 @@ "pk": "adult-copper-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "adult-copper-dragon_tail", + "parent": "adult-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 15, @@ -378,7 +378,7 @@ "pk": "adult-gold-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "adult-gold-dragon_bite", + "parent": "adult-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -400,7 +400,7 @@ "pk": "adult-gold-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "adult-gold-dragon_claw", + "parent": "adult-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 5, @@ -422,7 +422,7 @@ "pk": "adult-gold-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "adult-gold-dragon_tail", + "parent": "adult-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 15, @@ -444,7 +444,7 @@ "pk": "adult-green-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "adult-green-dragon_bite", + "parent": "adult-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -466,7 +466,7 @@ "pk": "adult-green-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "adult-green-dragon_claw", + "parent": "adult-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 5, @@ -488,7 +488,7 @@ "pk": "adult-green-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "adult-green-dragon_tail", + "parent": "adult-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 15, @@ -510,7 +510,7 @@ "pk": "adult-red-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "adult-red-dragon_bite", + "parent": "adult-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -532,7 +532,7 @@ "pk": "adult-red-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "adult-red-dragon_claw", + "parent": "adult-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 5, @@ -554,7 +554,7 @@ "pk": "adult-red-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "adult-red-dragon_tail", + "parent": "adult-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 15, @@ -576,7 +576,7 @@ "pk": "adult-silver-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "adult-silver-dragon_bite", + "parent": "adult-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 10, @@ -598,7 +598,7 @@ "pk": "adult-silver-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "adult-silver-dragon_claw", + "parent": "adult-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 5, @@ -620,7 +620,7 @@ "pk": "adult-silver-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "adult-silver-dragon_tail", + "parent": "adult-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 15, @@ -642,7 +642,7 @@ "pk": "adult-white-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "adult-white-dragon_bite", + "parent": "adult-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -664,7 +664,7 @@ "pk": "adult-white-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "adult-white-dragon_claw", + "parent": "adult-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 5, @@ -686,7 +686,7 @@ "pk": "adult-white-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "adult-white-dragon_tail", + "parent": "adult-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 15, @@ -708,7 +708,7 @@ "pk": "air-elemental_slam-attack", "fields": { "name": "Slam attack", - "creature_action": "air-elemental_slam", + "parent": "air-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -730,7 +730,7 @@ "pk": "ancient-black-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ancient-black-dragon_bite", + "parent": "ancient-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 15, @@ -752,7 +752,7 @@ "pk": "ancient-black-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "ancient-black-dragon_claw", + "parent": "ancient-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 10, @@ -774,7 +774,7 @@ "pk": "ancient-black-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "ancient-black-dragon_tail", + "parent": "ancient-black-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 20, @@ -796,7 +796,7 @@ "pk": "ancient-blue-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ancient-blue-dragon_bite", + "parent": "ancient-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, "reach_ft": 15, @@ -818,7 +818,7 @@ "pk": "ancient-blue-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "ancient-blue-dragon_claw", + "parent": "ancient-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, "reach_ft": 10, @@ -840,7 +840,7 @@ "pk": "ancient-blue-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "ancient-blue-dragon_tail", + "parent": "ancient-blue-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, "reach_ft": 20, @@ -862,7 +862,7 @@ "pk": "ancient-brass-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ancient-brass-dragon_bite", + "parent": "ancient-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 15, @@ -884,7 +884,7 @@ "pk": "ancient-brass-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "ancient-brass-dragon_claw", + "parent": "ancient-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -906,7 +906,7 @@ "pk": "ancient-brass-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "ancient-brass-dragon_tail", + "parent": "ancient-brass-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 20, @@ -928,7 +928,7 @@ "pk": "ancient-bronze-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ancient-bronze-dragon_bite", + "parent": "ancient-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 16, "reach_ft": 15, @@ -950,7 +950,7 @@ "pk": "ancient-bronze-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "ancient-bronze-dragon_claw", + "parent": "ancient-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 16, "reach_ft": 10, @@ -972,7 +972,7 @@ "pk": "ancient-bronze-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "ancient-bronze-dragon_tail", + "parent": "ancient-bronze-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 16, "reach_ft": 20, @@ -994,7 +994,7 @@ "pk": "ancient-copper-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ancient-copper-dragon_bite", + "parent": "ancient-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 15, @@ -1016,7 +1016,7 @@ "pk": "ancient-copper-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "ancient-copper-dragon_claw", + "parent": "ancient-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 10, @@ -1038,7 +1038,7 @@ "pk": "ancient-copper-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "ancient-copper-dragon_tail", + "parent": "ancient-copper-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 20, @@ -1060,7 +1060,7 @@ "pk": "ancient-gold-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ancient-gold-dragon_bite", + "parent": "ancient-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 15, @@ -1082,7 +1082,7 @@ "pk": "ancient-gold-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "ancient-gold-dragon_claw", + "parent": "ancient-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 10, @@ -1104,7 +1104,7 @@ "pk": "ancient-gold-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "ancient-gold-dragon_tail", + "parent": "ancient-gold-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 20, @@ -1126,7 +1126,7 @@ "pk": "ancient-green-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ancient-green-dragon_bite", + "parent": "ancient-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 15, @@ -1148,7 +1148,7 @@ "pk": "ancient-green-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "ancient-green-dragon_claw", + "parent": "ancient-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 10, @@ -1170,7 +1170,7 @@ "pk": "ancient-green-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "ancient-green-dragon_tail", + "parent": "ancient-green-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 20, @@ -1192,7 +1192,7 @@ "pk": "ancient-red-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ancient-red-dragon_bite", + "parent": "ancient-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 15, @@ -1214,7 +1214,7 @@ "pk": "ancient-red-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "ancient-red-dragon_claw", + "parent": "ancient-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 10, @@ -1236,7 +1236,7 @@ "pk": "ancient-red-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "ancient-red-dragon_tail", + "parent": "ancient-red-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 20, @@ -1258,7 +1258,7 @@ "pk": "ancient-silver-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ancient-silver-dragon_bite", + "parent": "ancient-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 15, @@ -1280,7 +1280,7 @@ "pk": "ancient-silver-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "ancient-silver-dragon_claw", + "parent": "ancient-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 10, @@ -1302,7 +1302,7 @@ "pk": "ancient-silver-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "ancient-silver-dragon_tail", + "parent": "ancient-silver-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 20, @@ -1324,7 +1324,7 @@ "pk": "ancient-white-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ancient-white-dragon_bite", + "parent": "ancient-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 15, @@ -1346,7 +1346,7 @@ "pk": "ancient-white-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "ancient-white-dragon_claw", + "parent": "ancient-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -1368,7 +1368,7 @@ "pk": "ancient-white-dragon_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "ancient-white-dragon_tail", + "parent": "ancient-white-dragon_tail", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 20, @@ -1390,7 +1390,7 @@ "pk": "androsphinx_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "androsphinx_claw", + "parent": "androsphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 5, @@ -1412,7 +1412,7 @@ "pk": "animated-armor_slam-attack", "fields": { "name": "Slam attack", - "creature_action": "animated-armor_slam", + "parent": "animated-armor_slam", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -1434,7 +1434,7 @@ "pk": "ankheg_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ankheg_bite", + "parent": "ankheg_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1456,7 +1456,7 @@ "pk": "azer_warhammer-attack", "fields": { "name": "Warhammer attack", - "creature_action": "azer_warhammer", + "parent": "azer_warhammer", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1478,7 +1478,7 @@ "pk": "azer_warhammer-attack-if-used-with-two-hands", "fields": { "name": "Warhammer attack (if used with two hands)", - "creature_action": "azer_warhammer", + "parent": "azer_warhammer", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1500,7 +1500,7 @@ "pk": "balor_longsword-attack", "fields": { "name": "Longsword attack", - "creature_action": "balor_longsword", + "parent": "balor_longsword", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -1522,7 +1522,7 @@ "pk": "balor_whip-attack", "fields": { "name": "Whip attack", - "creature_action": "balor_whip", + "parent": "balor_whip", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 30, @@ -1544,7 +1544,7 @@ "pk": "barbed-devil_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "barbed-devil_claw", + "parent": "barbed-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -1566,7 +1566,7 @@ "pk": "barbed-devil_hurl-flame-attack", "fields": { "name": "Hurl Flame attack", - "creature_action": "barbed-devil_hurl-flame", + "parent": "barbed-devil_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": null, @@ -1588,7 +1588,7 @@ "pk": "barbed-devil_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "barbed-devil_tail", + "parent": "barbed-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -1610,7 +1610,7 @@ "pk": "basilisk_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "basilisk_bite", + "parent": "basilisk_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1632,7 +1632,7 @@ "pk": "bearded-devil_beard-attack", "fields": { "name": "Beard attack", - "creature_action": "bearded-devil_beard", + "parent": "bearded-devil_beard", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1654,7 +1654,7 @@ "pk": "bearded-devil_glaive-attack", "fields": { "name": "Glaive attack", - "creature_action": "bearded-devil_glaive", + "parent": "bearded-devil_glaive", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 10, @@ -1676,7 +1676,7 @@ "pk": "behir_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "behir_bite", + "parent": "behir_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -1698,7 +1698,7 @@ "pk": "behir_constrict-attack", "fields": { "name": "Constrict attack", - "creature_action": "behir_constrict", + "parent": "behir_constrict", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -1720,7 +1720,7 @@ "pk": "black-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "black-dragon-wyrmling_bite", + "parent": "black-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -1742,7 +1742,7 @@ "pk": "black-pudding_pseudopod-attack", "fields": { "name": "Pseudopod attack", - "creature_action": "black-pudding_pseudopod", + "parent": "black-pudding_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1764,7 +1764,7 @@ "pk": "blue-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "blue-dragon-wyrmling_bite", + "parent": "blue-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1786,7 +1786,7 @@ "pk": "bone-devil_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "bone-devil_claw", + "parent": "bone-devil_claw", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -1808,7 +1808,7 @@ "pk": "bone-devil_sting-attack", "fields": { "name": "Sting attack", - "creature_action": "bone-devil_sting", + "parent": "bone-devil_sting", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -1830,7 +1830,7 @@ "pk": "brass-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "brass-dragon-wyrmling_bite", + "parent": "brass-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -1852,7 +1852,7 @@ "pk": "bronze-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "bronze-dragon-wyrmling_bite", + "parent": "bronze-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -1874,7 +1874,7 @@ "pk": "bugbear_javelin-attack-at-range", "fields": { "name": "Javelin attack (at range)", - "creature_action": "bugbear_javelin", + "parent": "bugbear_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -1896,7 +1896,7 @@ "pk": "bugbear_javelin-attack-in-melee", "fields": { "name": "Javelin attack (in melee)", - "creature_action": "bugbear_javelin", + "parent": "bugbear_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -1918,7 +1918,7 @@ "pk": "bugbear_morningstar-attack", "fields": { "name": "Morningstar attack", - "creature_action": "bugbear_morningstar", + "parent": "bugbear_morningstar", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -1940,7 +1940,7 @@ "pk": "bulette_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "bulette_bite", + "parent": "bulette_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -1962,7 +1962,7 @@ "pk": "centaur_hooves-attack", "fields": { "name": "Hooves attack", - "creature_action": "centaur_hooves", + "parent": "centaur_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -1984,7 +1984,7 @@ "pk": "centaur_longbow-attack", "fields": { "name": "Longbow attack", - "creature_action": "centaur_longbow", + "parent": "centaur_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -2006,7 +2006,7 @@ "pk": "centaur_pike-attack", "fields": { "name": "Pike attack", - "creature_action": "centaur_pike", + "parent": "centaur_pike", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 10, @@ -2028,7 +2028,7 @@ "pk": "chain-devil_chain-attack", "fields": { "name": "Chain attack", - "creature_action": "chain-devil_chain", + "parent": "chain-devil_chain", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -2050,7 +2050,7 @@ "pk": "chimera_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "chimera_bite", + "parent": "chimera_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -2072,7 +2072,7 @@ "pk": "chimera_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "chimera_claws", + "parent": "chimera_claws", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -2094,7 +2094,7 @@ "pk": "chimera_horns-attack", "fields": { "name": "Horns attack", - "creature_action": "chimera_horns", + "parent": "chimera_horns", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -2116,7 +2116,7 @@ "pk": "chuul_pincer-attack", "fields": { "name": "Pincer attack", - "creature_action": "chuul_pincer", + "parent": "chuul_pincer", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 10, @@ -2138,7 +2138,7 @@ "pk": "clay-golem_slam-attack", "fields": { "name": "Slam attack", - "creature_action": "clay-golem_slam", + "parent": "clay-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -2160,7 +2160,7 @@ "pk": "cloaker_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "cloaker_bite", + "parent": "cloaker_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -2182,7 +2182,7 @@ "pk": "cloaker_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "cloaker_tail", + "parent": "cloaker_tail", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 10, @@ -2204,7 +2204,7 @@ "pk": "cloud-giant_morningstar-attack", "fields": { "name": "Morningstar attack", - "creature_action": "cloud-giant_morningstar", + "parent": "cloud-giant_morningstar", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 10, @@ -2226,7 +2226,7 @@ "pk": "cloud-giant_rock-attack", "fields": { "name": "Rock attack", - "creature_action": "cloud-giant_rock", + "parent": "cloud-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": null, @@ -2248,7 +2248,7 @@ "pk": "cockatrice_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "cockatrice_bite", + "parent": "cockatrice_bite", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -2270,7 +2270,7 @@ "pk": "copper-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "copper-dragon-wyrmling_bite", + "parent": "copper-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2292,7 +2292,7 @@ "pk": "couatl_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "couatl_bite", + "parent": "couatl_bite", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -2314,7 +2314,7 @@ "pk": "couatl_constrict-attack", "fields": { "name": "Constrict attack", - "creature_action": "couatl_constrict", + "parent": "couatl_constrict", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 10, @@ -2336,7 +2336,7 @@ "pk": "darkmantle_crush-attack", "fields": { "name": "Crush attack", - "creature_action": "darkmantle_crush", + "parent": "darkmantle_crush", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -2358,7 +2358,7 @@ "pk": "deva_mace-attack", "fields": { "name": "Mace attack", - "creature_action": "deva_mace", + "parent": "deva_mace", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -2380,7 +2380,7 @@ "pk": "djinni_scimitar-attack-lightning-damage", "fields": { "name": "Scimitar attack (lightning damage)", - "creature_action": "djinni_scimitar", + "parent": "djinni_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -2402,7 +2402,7 @@ "pk": "djinni_scimitar-attack-thunder-damage", "fields": { "name": "Scimitar attack (thunder damage)", - "creature_action": "djinni_scimitar", + "parent": "djinni_scimitar", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -2424,7 +2424,7 @@ "pk": "doppelganger_slam-attack", "fields": { "name": "Slam attack", - "creature_action": "doppelganger_slam", + "parent": "doppelganger_slam", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -2446,7 +2446,7 @@ "pk": "dragon-turtle_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "dragon-turtle_bite", + "parent": "dragon-turtle_bite", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 15, @@ -2468,7 +2468,7 @@ "pk": "dragon-turtle_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "dragon-turtle_claw", + "parent": "dragon-turtle_claw", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 10, @@ -2490,7 +2490,7 @@ "pk": "dragon-turtle_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "dragon-turtle_tail", + "parent": "dragon-turtle_tail", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 15, @@ -2512,7 +2512,7 @@ "pk": "dretch_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "dretch_bite", + "parent": "dretch_bite", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -2534,7 +2534,7 @@ "pk": "dretch_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "dretch_claws", + "parent": "dretch_claws", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -2556,7 +2556,7 @@ "pk": "drider_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "drider_bite", + "parent": "drider_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -2578,7 +2578,7 @@ "pk": "drider_longbow-attack", "fields": { "name": "Longbow attack", - "creature_action": "drider_longbow", + "parent": "drider_longbow", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, @@ -2600,7 +2600,7 @@ "pk": "drider_longsword-attack", "fields": { "name": "Longsword attack", - "creature_action": "drider_longsword", + "parent": "drider_longsword", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -2622,7 +2622,7 @@ "pk": "drider_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", - "creature_action": "drider_longsword", + "parent": "drider_longsword", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -2644,7 +2644,7 @@ "pk": "dryad_club-attack", "fields": { "name": "Club attack", - "creature_action": "dryad_club", + "parent": "dryad_club", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -2666,7 +2666,7 @@ "pk": "dryad_club-attack-with-shillelagh", "fields": { "name": "Club attack (with shillelagh)", - "creature_action": "dryad_club", + "parent": "dryad_club", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -2688,7 +2688,7 @@ "pk": "duergar_javelin-attack", "fields": { "name": "Javelin attack", - "creature_action": "duergar_javelin", + "parent": "duergar_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2710,7 +2710,7 @@ "pk": "duergar_javelin-attack-while-enlarged", "fields": { "name": "Javelin attack (while enlarged)", - "creature_action": "duergar_javelin", + "parent": "duergar_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2732,7 +2732,7 @@ "pk": "duergar_war-pick-attack", "fields": { "name": "War Pick attack", - "creature_action": "duergar_war-pick", + "parent": "duergar_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2754,7 +2754,7 @@ "pk": "duergar_war-pick-attack-while-enlarged", "fields": { "name": "War Pick attack (while enlarged)", - "creature_action": "duergar_war-pick", + "parent": "duergar_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2776,7 +2776,7 @@ "pk": "dust-mephit_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "dust-mephit_claws", + "parent": "dust-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2798,7 +2798,7 @@ "pk": "earth-elemental_slam-attack", "fields": { "name": "Slam attack", - "creature_action": "earth-elemental_slam", + "parent": "earth-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -2820,7 +2820,7 @@ "pk": "efreeti_hurl-flame-attack", "fields": { "name": "Hurl Flame attack", - "creature_action": "efreeti_hurl-flame", + "parent": "efreeti_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, @@ -2842,7 +2842,7 @@ "pk": "efreeti_scimitar-attack", "fields": { "name": "Scimitar attack", - "creature_action": "efreeti_scimitar", + "parent": "efreeti_scimitar", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -2864,7 +2864,7 @@ "pk": "elf-drow_hand-crossbow-attack", "fields": { "name": "Hand Crossbow attack", - "creature_action": "elf-drow_hand-crossbow", + "parent": "elf-drow_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -2886,7 +2886,7 @@ "pk": "elf-drow_shortsword-attack", "fields": { "name": "Shortsword attack", - "creature_action": "elf-drow_shortsword", + "parent": "elf-drow_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2908,7 +2908,7 @@ "pk": "erinyes_longbow-attack", "fields": { "name": "Longbow attack", - "creature_action": "erinyes_longbow", + "parent": "erinyes_longbow", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": null, @@ -2930,7 +2930,7 @@ "pk": "erinyes_longsword-attack", "fields": { "name": "Longsword attack", - "creature_action": "erinyes_longsword", + "parent": "erinyes_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -2952,7 +2952,7 @@ "pk": "erinyes_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", - "creature_action": "erinyes_longsword", + "parent": "erinyes_longsword", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -2974,7 +2974,7 @@ "pk": "ettercap_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ettercap_bite", + "parent": "ettercap_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -2996,7 +2996,7 @@ "pk": "ettercap_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "ettercap_claws", + "parent": "ettercap_claws", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3018,7 +3018,7 @@ "pk": "ettercap_web-attack", "fields": { "name": "Web attack", - "creature_action": "ettercap_web", + "parent": "ettercap_web", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -3040,7 +3040,7 @@ "pk": "ettin_battleaxe-attack", "fields": { "name": "Battleaxe attack", - "creature_action": "ettin_battleaxe", + "parent": "ettin_battleaxe", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -3062,7 +3062,7 @@ "pk": "ettin_morningstar-attack", "fields": { "name": "Morningstar attack", - "creature_action": "ettin_morningstar", + "parent": "ettin_morningstar", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -3084,7 +3084,7 @@ "pk": "fire-elemental_touch-attack", "fields": { "name": "Touch attack", - "creature_action": "fire-elemental_touch", + "parent": "fire-elemental_touch", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -3106,7 +3106,7 @@ "pk": "fire-giant_greatsword-attack", "fields": { "name": "Greatsword attack", - "creature_action": "fire-giant_greatsword", + "parent": "fire-giant_greatsword", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -3128,7 +3128,7 @@ "pk": "fire-giant_rock-attack", "fields": { "name": "Rock attack", - "creature_action": "fire-giant_rock", + "parent": "fire-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": null, @@ -3150,7 +3150,7 @@ "pk": "flesh-golem_slam-attack", "fields": { "name": "Slam attack", - "creature_action": "flesh-golem_slam", + "parent": "flesh-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -3172,7 +3172,7 @@ "pk": "flying-sword_longsword-attack", "fields": { "name": "Longsword attack", - "creature_action": "flying-sword_longsword", + "parent": "flying-sword_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -3194,7 +3194,7 @@ "pk": "frost-giant_greataxe-attack", "fields": { "name": "Greataxe attack", - "creature_action": "frost-giant_greataxe", + "parent": "frost-giant_greataxe", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -3216,7 +3216,7 @@ "pk": "frost-giant_rock-attack", "fields": { "name": "Rock attack", - "creature_action": "frost-giant_rock", + "parent": "frost-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, @@ -3238,7 +3238,7 @@ "pk": "gargoyle_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "gargoyle_bite", + "parent": "gargoyle_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3260,7 +3260,7 @@ "pk": "gargoyle_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "gargoyle_claws", + "parent": "gargoyle_claws", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3282,7 +3282,7 @@ "pk": "gelatinous-cube_pseudopod-attack", "fields": { "name": "Pseudopod attack", - "creature_action": "gelatinous-cube_pseudopod", + "parent": "gelatinous-cube_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3304,7 +3304,7 @@ "pk": "ghast_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ghast_bite", + "parent": "ghast_bite", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -3326,7 +3326,7 @@ "pk": "ghast_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "ghast_claws", + "parent": "ghast_claws", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -3348,7 +3348,7 @@ "pk": "ghost_withering-touch-attack", "fields": { "name": "Withering Touch attack", - "creature_action": "ghost_withering-touch", + "parent": "ghost_withering-touch", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -3370,7 +3370,7 @@ "pk": "ghoul_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ghoul_bite", + "parent": "ghoul_bite", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -3392,7 +3392,7 @@ "pk": "ghoul_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "ghoul_claws", + "parent": "ghoul_claws", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3414,7 +3414,7 @@ "pk": "gibbering-mouther_bites-attack", "fields": { "name": "Bites attack", - "creature_action": "gibbering-mouther_bites", + "parent": "gibbering-mouther_bites", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -3436,7 +3436,7 @@ "pk": "glabrezu_fist-attack", "fields": { "name": "Fist attack", - "creature_action": "glabrezu_fist", + "parent": "glabrezu_fist", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -3458,7 +3458,7 @@ "pk": "glabrezu_pincer-attack", "fields": { "name": "Pincer attack", - "creature_action": "glabrezu_pincer", + "parent": "glabrezu_pincer", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -3480,7 +3480,7 @@ "pk": "gnoll_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "gnoll_bite", + "parent": "gnoll_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3502,7 +3502,7 @@ "pk": "gnoll_longbow-attack", "fields": { "name": "Longbow attack", - "creature_action": "gnoll_longbow", + "parent": "gnoll_longbow", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, @@ -3524,7 +3524,7 @@ "pk": "gnoll_spear-attack", "fields": { "name": "Spear attack", - "creature_action": "gnoll_spear", + "parent": "gnoll_spear", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3546,7 +3546,7 @@ "pk": "gnoll_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", - "creature_action": "gnoll_spear", + "parent": "gnoll_spear", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3568,7 +3568,7 @@ "pk": "gnome-deep-svirfneblin_poisoned-dart-attack", "fields": { "name": "Poisoned Dart attack", - "creature_action": "gnome-deep-svirfneblin_poisoned-dart", + "parent": "gnome-deep-svirfneblin_poisoned-dart", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -3590,7 +3590,7 @@ "pk": "gnome-deep-svirfneblin_war-pick-attack", "fields": { "name": "War Pick attack", - "creature_action": "gnome-deep-svirfneblin_war-pick", + "parent": "gnome-deep-svirfneblin_war-pick", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3612,7 +3612,7 @@ "pk": "goblin_scimitar-attack", "fields": { "name": "Scimitar attack", - "creature_action": "goblin_scimitar", + "parent": "goblin_scimitar", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3634,7 +3634,7 @@ "pk": "goblin_shortbow-attack", "fields": { "name": "Shortbow attack", - "creature_action": "goblin_shortbow", + "parent": "goblin_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -3656,7 +3656,7 @@ "pk": "gold-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "gold-dragon-wyrmling_bite", + "parent": "gold-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -3678,7 +3678,7 @@ "pk": "gorgon_gore-attack", "fields": { "name": "Gore attack", - "creature_action": "gorgon_gore", + "parent": "gorgon_gore", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -3700,7 +3700,7 @@ "pk": "gorgon_hooves-attack", "fields": { "name": "Hooves attack", - "creature_action": "gorgon_hooves", + "parent": "gorgon_hooves", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -3722,7 +3722,7 @@ "pk": "gray-ooze_pseudopod-attack", "fields": { "name": "Pseudopod attack", - "creature_action": "gray-ooze_pseudopod", + "parent": "gray-ooze_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -3744,7 +3744,7 @@ "pk": "green-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "green-dragon-wyrmling_bite", + "parent": "green-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3766,7 +3766,7 @@ "pk": "green-hag_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "green-hag_claws", + "parent": "green-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -3788,7 +3788,7 @@ "pk": "grick_beak-attack", "fields": { "name": "Beak attack", - "creature_action": "grick_beak", + "parent": "grick_beak", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3810,7 +3810,7 @@ "pk": "grick_tentacles-attack", "fields": { "name": "Tentacles attack", - "creature_action": "grick_tentacles", + "parent": "grick_tentacles", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -3832,7 +3832,7 @@ "pk": "griffon_beak-attack", "fields": { "name": "Beak attack", - "creature_action": "griffon_beak", + "parent": "griffon_beak", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -3854,7 +3854,7 @@ "pk": "griffon_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "griffon_claws", + "parent": "griffon_claws", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -3876,7 +3876,7 @@ "pk": "grimlock_spiked-bone-club-attack", "fields": { "name": "Spiked Bone Club attack", - "creature_action": "grimlock_spiked-bone-club", + "parent": "grimlock_spiked-bone-club", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -3898,7 +3898,7 @@ "pk": "guardian-naga_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "guardian-naga_bite", + "parent": "guardian-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -3920,7 +3920,7 @@ "pk": "guardian-naga_spit-poison-attack", "fields": { "name": "Spit Poison attack", - "creature_action": "guardian-naga_spit-poison", + "parent": "guardian-naga_spit-poison", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, @@ -3942,7 +3942,7 @@ "pk": "gynosphinx_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "gynosphinx_claw", + "parent": "gynosphinx_claw", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -3964,7 +3964,7 @@ "pk": "half-red-dragon-veteran_heavy-crossbow-attack", "fields": { "name": "Heavy Crossbow attack", - "creature_action": "half-red-dragon-veteran_heavy-crossbow", + "parent": "half-red-dragon-veteran_heavy-crossbow", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, @@ -3986,7 +3986,7 @@ "pk": "half-red-dragon-veteran_longsword-attack", "fields": { "name": "Longsword attack", - "creature_action": "half-red-dragon-veteran_longsword", + "parent": "half-red-dragon-veteran_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4008,7 +4008,7 @@ "pk": "half-red-dragon-veteran_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", - "creature_action": "half-red-dragon-veteran_longsword", + "parent": "half-red-dragon-veteran_longsword", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4030,7 +4030,7 @@ "pk": "half-red-dragon-veteran_shortsword-attack", "fields": { "name": "Shortsword attack", - "creature_action": "half-red-dragon-veteran_shortsword", + "parent": "half-red-dragon-veteran_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4052,7 +4052,7 @@ "pk": "harpy_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "harpy_claws", + "parent": "harpy_claws", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -4074,7 +4074,7 @@ "pk": "harpy_club-attack", "fields": { "name": "Club attack", - "creature_action": "harpy_club", + "parent": "harpy_club", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -4096,7 +4096,7 @@ "pk": "hell-hound_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "hell-hound_bite", + "parent": "hell-hound_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4118,7 +4118,7 @@ "pk": "hezrou_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "hezrou_bite", + "parent": "hezrou_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -4140,7 +4140,7 @@ "pk": "hezrou_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "hezrou_claw", + "parent": "hezrou_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -4162,7 +4162,7 @@ "pk": "hill-giant_greatclub-attack", "fields": { "name": "Greatclub attack", - "creature_action": "hill-giant_greatclub", + "parent": "hill-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -4184,7 +4184,7 @@ "pk": "hill-giant_rock-attack", "fields": { "name": "Rock attack", - "creature_action": "hill-giant_rock", + "parent": "hill-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": null, @@ -4206,7 +4206,7 @@ "pk": "hippogriff_beak-attack", "fields": { "name": "Beak attack", - "creature_action": "hippogriff_beak", + "parent": "hippogriff_beak", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4228,7 +4228,7 @@ "pk": "hippogriff_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "hippogriff_claws", + "parent": "hippogriff_claws", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4250,7 +4250,7 @@ "pk": "hobgoblin_longbow-attack", "fields": { "name": "Longbow attack", - "creature_action": "hobgoblin_longbow", + "parent": "hobgoblin_longbow", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": null, @@ -4272,7 +4272,7 @@ "pk": "hobgoblin_longsword-attack", "fields": { "name": "Longsword attack", - "creature_action": "hobgoblin_longsword", + "parent": "hobgoblin_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -4294,7 +4294,7 @@ "pk": "hobgoblin_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", - "creature_action": "hobgoblin_longsword", + "parent": "hobgoblin_longsword", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -4316,7 +4316,7 @@ "pk": "homunculus_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "homunculus_bite", + "parent": "homunculus_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -4338,7 +4338,7 @@ "pk": "horned-devil_fork-attack", "fields": { "name": "Fork attack", - "creature_action": "horned-devil_fork", + "parent": "horned-devil_fork", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -4360,7 +4360,7 @@ "pk": "horned-devil_hurl-flame-attack", "fields": { "name": "Hurl Flame attack", - "creature_action": "horned-devil_hurl-flame", + "parent": "horned-devil_hurl-flame", "attack_type": "SPELL", "to_hit_mod": 7, "reach_ft": null, @@ -4382,7 +4382,7 @@ "pk": "horned-devil_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "horned-devil_tail", + "parent": "horned-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -4404,7 +4404,7 @@ "pk": "hydra_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "hydra_bite", + "parent": "hydra_bite", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -4426,7 +4426,7 @@ "pk": "ice-devil_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "ice-devil_bite", + "parent": "ice-devil_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -4448,7 +4448,7 @@ "pk": "ice-devil_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "ice-devil_claws", + "parent": "ice-devil_claws", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -4470,7 +4470,7 @@ "pk": "ice-devil_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "ice-devil_tail", + "parent": "ice-devil_tail", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -4492,7 +4492,7 @@ "pk": "ice-mephit_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "ice-mephit_claws", + "parent": "ice-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -4514,7 +4514,7 @@ "pk": "imp_stingbite-attack", "fields": { "name": "Sting/Bite attack", - "creature_action": "imp_sting-bite-in-beast-form", + "parent": "imp_sting-bite-in-beast-form", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4536,7 +4536,7 @@ "pk": "invisible-stalker_slam-attack", "fields": { "name": "Slam attack", - "creature_action": "invisible-stalker_slam", + "parent": "invisible-stalker_slam", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -4558,7 +4558,7 @@ "pk": "iron-golem_slam-attack", "fields": { "name": "Slam attack", - "creature_action": "iron-golem_slam", + "parent": "iron-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 5, @@ -4580,7 +4580,7 @@ "pk": "iron-golem_sword-attack", "fields": { "name": "Sword attack", - "creature_action": "iron-golem_sword", + "parent": "iron-golem_sword", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 10, @@ -4602,7 +4602,7 @@ "pk": "kobold_dagger-attack", "fields": { "name": "Dagger attack", - "creature_action": "kobold_dagger", + "parent": "kobold_dagger", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -4624,7 +4624,7 @@ "pk": "kobold_sling-attack", "fields": { "name": "Sling attack", - "creature_action": "kobold_sling", + "parent": "kobold_sling", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -4646,7 +4646,7 @@ "pk": "kraken_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "kraken_bite", + "parent": "kraken_bite", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 5, @@ -4668,7 +4668,7 @@ "pk": "kraken_tentacle-attack", "fields": { "name": "Tentacle attack", - "creature_action": "kraken_tentacle", + "parent": "kraken_tentacle", "attack_type": "WEAPON", "to_hit_mod": 17, "reach_ft": 30, @@ -4690,7 +4690,7 @@ "pk": "lamia_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "lamia_claws", + "parent": "lamia_claws", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4712,7 +4712,7 @@ "pk": "lamia_dagger-attack", "fields": { "name": "Dagger attack", - "creature_action": "lamia_dagger", + "parent": "lamia_dagger", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4734,7 +4734,7 @@ "pk": "lamia_intoxicating-touch-attack", "fields": { "name": "Intoxicating Touch attack", - "creature_action": "lamia_intoxicating-touch", + "parent": "lamia_intoxicating-touch", "attack_type": "SPELL", "to_hit_mod": 5, "reach_ft": 5, @@ -4756,7 +4756,7 @@ "pk": "lemure_fist-attack", "fields": { "name": "Fist attack", - "creature_action": "lemure_fist", + "parent": "lemure_fist", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -4778,7 +4778,7 @@ "pk": "lich_paralyzing-touch-attack", "fields": { "name": "Paralyzing Touch attack", - "creature_action": "lich_paralyzing-touch", + "parent": "lich_paralyzing-touch", "attack_type": "SPELL", "to_hit_mod": 12, "reach_ft": 5, @@ -4800,7 +4800,7 @@ "pk": "lizardfolk_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "lizardfolk_bite", + "parent": "lizardfolk_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -4822,7 +4822,7 @@ "pk": "lizardfolk_heavy-club-attack", "fields": { "name": "Heavy Club attack", - "creature_action": "lizardfolk_heavy-club", + "parent": "lizardfolk_heavy-club", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -4844,7 +4844,7 @@ "pk": "lizardfolk_javelin-attack", "fields": { "name": "Javelin attack", - "creature_action": "lizardfolk_javelin", + "parent": "lizardfolk_javelin", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -4866,7 +4866,7 @@ "pk": "lizardfolk_spiked-shield-attack", "fields": { "name": "Spiked Shield attack", - "creature_action": "lizardfolk_spiked-shield", + "parent": "lizardfolk_spiked-shield", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -4888,7 +4888,7 @@ "pk": "magma-mephit_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "magma-mephit_claws", + "parent": "magma-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -4910,7 +4910,7 @@ "pk": "magmin_touch-attack", "fields": { "name": "Touch attack", - "creature_action": "magmin_touch", + "parent": "magmin_touch", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -4932,7 +4932,7 @@ "pk": "manticore_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "manticore_bite", + "parent": "manticore_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4954,7 +4954,7 @@ "pk": "manticore_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "manticore_claw", + "parent": "manticore_claw", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -4976,7 +4976,7 @@ "pk": "manticore_tail-spike-attack", "fields": { "name": "Tail Spike attack", - "creature_action": "manticore_tail-spike", + "parent": "manticore_tail-spike", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, @@ -4998,7 +4998,7 @@ "pk": "marilith_longsword-attack", "fields": { "name": "Longsword attack", - "creature_action": "marilith_longsword", + "parent": "marilith_longsword", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -5020,7 +5020,7 @@ "pk": "marilith_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "marilith_tail", + "parent": "marilith_tail", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -5042,7 +5042,7 @@ "pk": "medusa_longbow-attack", "fields": { "name": "Longbow attack", - "creature_action": "medusa_longbow", + "parent": "medusa_longbow", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, @@ -5064,7 +5064,7 @@ "pk": "medusa_shortsword-attack", "fields": { "name": "Shortsword attack", - "creature_action": "medusa_shortsword", + "parent": "medusa_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5086,7 +5086,7 @@ "pk": "medusa_snake-hair-attack", "fields": { "name": "Snake Hair attack", - "creature_action": "medusa_snake-hair", + "parent": "medusa_snake-hair", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5108,7 +5108,7 @@ "pk": "merfolk_spear-attack", "fields": { "name": "Spear attack", - "creature_action": "merfolk_spear", + "parent": "merfolk_spear", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -5130,7 +5130,7 @@ "pk": "merfolk_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", - "creature_action": "merfolk_spear", + "parent": "merfolk_spear", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -5152,7 +5152,7 @@ "pk": "merrow_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "merrow_bite", + "parent": "merrow_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5174,7 +5174,7 @@ "pk": "merrow_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "merrow_claws", + "parent": "merrow_claws", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5196,7 +5196,7 @@ "pk": "merrow_harpoon-attack", "fields": { "name": "Harpoon attack", - "creature_action": "merrow_harpoon", + "parent": "merrow_harpoon", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5218,7 +5218,7 @@ "pk": "mimic_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "mimic_bite", + "parent": "mimic_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5240,7 +5240,7 @@ "pk": "mimic_pseudopod-attack", "fields": { "name": "Pseudopod attack", - "creature_action": "mimic_pseudopod", + "parent": "mimic_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5262,7 +5262,7 @@ "pk": "minotaur-skeleton_gore-attack", "fields": { "name": "Gore attack", - "creature_action": "minotaur-skeleton_gore", + "parent": "minotaur-skeleton_gore", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5284,7 +5284,7 @@ "pk": "minotaur-skeleton_greataxe-attack", "fields": { "name": "Greataxe attack", - "creature_action": "minotaur-skeleton_greataxe", + "parent": "minotaur-skeleton_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5306,7 +5306,7 @@ "pk": "minotaur_gore-attack", "fields": { "name": "Gore attack", - "creature_action": "minotaur_gore", + "parent": "minotaur_gore", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5328,7 +5328,7 @@ "pk": "minotaur_greataxe-attack", "fields": { "name": "Greataxe attack", - "creature_action": "minotaur_greataxe", + "parent": "minotaur_greataxe", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5350,7 +5350,7 @@ "pk": "mummy-lord_rotting-fist-attack", "fields": { "name": "Rotting Fist attack", - "creature_action": "mummy-lord_rotting-fist", + "parent": "mummy-lord_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -5372,7 +5372,7 @@ "pk": "mummy_rotting-fist-attack", "fields": { "name": "Rotting Fist attack", - "creature_action": "mummy_rotting-fist", + "parent": "mummy_rotting-fist", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5394,7 +5394,7 @@ "pk": "nalfeshnee_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "nalfeshnee_bite", + "parent": "nalfeshnee_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -5416,7 +5416,7 @@ "pk": "nalfeshnee_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "nalfeshnee_claw", + "parent": "nalfeshnee_claw", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -5438,7 +5438,7 @@ "pk": "night-hag_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "night-hag_claws", + "parent": "night-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -5460,7 +5460,7 @@ "pk": "nightmare_hooves-attack", "fields": { "name": "Hooves attack", - "creature_action": "nightmare_hooves", + "parent": "nightmare_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5482,7 +5482,7 @@ "pk": "ochre-jelly_pseudopod-attack", "fields": { "name": "Pseudopod attack", - "creature_action": "ochre-jelly_pseudopod", + "parent": "ochre-jelly_pseudopod", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -5504,7 +5504,7 @@ "pk": "ogre-zombie_morningstar-attack", "fields": { "name": "Morningstar attack", - "creature_action": "ogre-zombie_morningstar", + "parent": "ogre-zombie_morningstar", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5526,7 +5526,7 @@ "pk": "ogre_greatclub-attack", "fields": { "name": "Greatclub attack", - "creature_action": "ogre_greatclub", + "parent": "ogre_greatclub", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5548,7 +5548,7 @@ "pk": "ogre_javelin-attack", "fields": { "name": "Javelin attack", - "creature_action": "ogre_javelin", + "parent": "ogre_javelin", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5570,7 +5570,7 @@ "pk": "oni_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "oni_claw", + "parent": "oni_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -5592,7 +5592,7 @@ "pk": "oni_glaive-attack", "fields": { "name": "Glaive attack", - "creature_action": "oni_glaive", + "parent": "oni_glaive", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -5614,7 +5614,7 @@ "pk": "oni_glaive-attack-in-small-or-medium-form", "fields": { "name": "Glaive attack (in Small or Medium form)", - "creature_action": "oni_glaive", + "parent": "oni_glaive", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -5636,7 +5636,7 @@ "pk": "orc_greataxe-attack", "fields": { "name": "Greataxe attack", - "creature_action": "orc_greataxe", + "parent": "orc_greataxe", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5658,7 +5658,7 @@ "pk": "orc_javelin-attack", "fields": { "name": "Javelin attack", - "creature_action": "orc_javelin", + "parent": "orc_javelin", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -5680,7 +5680,7 @@ "pk": "otyugh_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "otyugh_bite", + "parent": "otyugh_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5702,7 +5702,7 @@ "pk": "otyugh_tentacle-attack", "fields": { "name": "Tentacle attack", - "creature_action": "otyugh_tentacle", + "parent": "otyugh_tentacle", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 10, @@ -5724,7 +5724,7 @@ "pk": "owlbear_beak-attack", "fields": { "name": "Beak attack", - "creature_action": "owlbear_beak", + "parent": "owlbear_beak", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -5746,7 +5746,7 @@ "pk": "owlbear_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "owlbear_claws", + "parent": "owlbear_claws", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -5768,7 +5768,7 @@ "pk": "pegasus_hooves-attack", "fields": { "name": "Hooves attack", - "creature_action": "pegasus_hooves", + "parent": "pegasus_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -5790,7 +5790,7 @@ "pk": "pit-fiend_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "pit-fiend_bite", + "parent": "pit-fiend_bite", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 5, @@ -5812,7 +5812,7 @@ "pk": "pit-fiend_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "pit-fiend_claw", + "parent": "pit-fiend_claw", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -5834,7 +5834,7 @@ "pk": "pit-fiend_mace-attack", "fields": { "name": "Mace attack", - "creature_action": "pit-fiend_mace", + "parent": "pit-fiend_mace", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -5856,7 +5856,7 @@ "pk": "pit-fiend_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "pit-fiend_tail", + "parent": "pit-fiend_tail", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -5878,7 +5878,7 @@ "pk": "planetar_greatsword-attack", "fields": { "name": "Greatsword attack", - "creature_action": "planetar_greatsword", + "parent": "planetar_greatsword", "attack_type": "WEAPON", "to_hit_mod": 12, "reach_ft": 5, @@ -5900,7 +5900,7 @@ "pk": "plesiosaurus_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "plesiosaurus_bite", + "parent": "plesiosaurus_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 10, @@ -5922,7 +5922,7 @@ "pk": "pseudodragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "pseudodragon_bite", + "parent": "pseudodragon_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -5944,7 +5944,7 @@ "pk": "pseudodragon_sting-attack", "fields": { "name": "Sting attack", - "creature_action": "pseudodragon_sting", + "parent": "pseudodragon_sting", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -5966,7 +5966,7 @@ "pk": "purple-worm_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "purple-worm_bite", + "parent": "purple-worm_bite", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -5988,7 +5988,7 @@ "pk": "purple-worm_tail-stinger-attack", "fields": { "name": "Tail Stinger attack", - "creature_action": "purple-worm_tail-stinger", + "parent": "purple-worm_tail-stinger", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -6010,7 +6010,7 @@ "pk": "quasit_clawsbite-attack", "fields": { "name": "Claws/Bite attack", - "creature_action": "quasit_claws-bite-in-beast-form", + "parent": "quasit_claws-bite-in-beast-form", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -6032,7 +6032,7 @@ "pk": "rakshasa_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "rakshasa_claw", + "parent": "rakshasa_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6054,7 +6054,7 @@ "pk": "red-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "red-dragon-wyrmling_bite", + "parent": "red-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -6076,7 +6076,7 @@ "pk": "remorhaz_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "remorhaz_bite", + "parent": "remorhaz_bite", "attack_type": "WEAPON", "to_hit_mod": 11, "reach_ft": 10, @@ -6098,7 +6098,7 @@ "pk": "roc_beak-attack", "fields": { "name": "Beak attack", - "creature_action": "roc_beak", + "parent": "roc_beak", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 10, @@ -6120,7 +6120,7 @@ "pk": "roc_talons-attack", "fields": { "name": "Talons attack", - "creature_action": "roc_talons", + "parent": "roc_talons", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": 5, @@ -6142,7 +6142,7 @@ "pk": "roper_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "roper_bite", + "parent": "roper_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6164,7 +6164,7 @@ "pk": "roper_tendril-attack", "fields": { "name": "Tendril attack", - "creature_action": "roper_tendril", + "parent": "roper_tendril", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 50, @@ -6186,7 +6186,7 @@ "pk": "rug-of-smothering_smother-attack", "fields": { "name": "Smother attack", - "creature_action": "rug-of-smothering_smother", + "parent": "rug-of-smothering_smother", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -6208,7 +6208,7 @@ "pk": "rust-monster_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "rust-monster_bite", + "parent": "rust-monster_bite", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -6230,7 +6230,7 @@ "pk": "sahuagin_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "sahuagin_bite", + "parent": "sahuagin_bite", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -6252,7 +6252,7 @@ "pk": "sahuagin_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "sahuagin_claws", + "parent": "sahuagin_claws", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -6274,7 +6274,7 @@ "pk": "sahuagin_spear-attack", "fields": { "name": "Spear attack", - "creature_action": "sahuagin_spear", + "parent": "sahuagin_spear", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -6296,7 +6296,7 @@ "pk": "sahuagin_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", - "creature_action": "sahuagin_spear", + "parent": "sahuagin_spear", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -6318,7 +6318,7 @@ "pk": "salamander_spear-attack", "fields": { "name": "Spear attack", - "creature_action": "salamander_spear", + "parent": "salamander_spear", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6340,7 +6340,7 @@ "pk": "salamander_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", - "creature_action": "salamander_spear", + "parent": "salamander_spear", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6362,7 +6362,7 @@ "pk": "salamander_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "salamander_tail", + "parent": "salamander_tail", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -6384,7 +6384,7 @@ "pk": "satyr_ram-attack", "fields": { "name": "Ram attack", - "creature_action": "satyr_ram", + "parent": "satyr_ram", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, @@ -6406,7 +6406,7 @@ "pk": "satyr_shortbow-attack", "fields": { "name": "Shortbow attack", - "creature_action": "satyr_shortbow", + "parent": "satyr_shortbow", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": null, @@ -6428,7 +6428,7 @@ "pk": "satyr_shortsword-attack", "fields": { "name": "Shortsword attack", - "creature_action": "satyr_shortsword", + "parent": "satyr_shortsword", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -6450,7 +6450,7 @@ "pk": "sea-hag_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "sea-hag_claws", + "parent": "sea-hag_claws", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -6472,7 +6472,7 @@ "pk": "shadow_strength-drain-attack", "fields": { "name": "Strength Drain attack", - "creature_action": "shadow_strength-drain", + "parent": "shadow_strength-drain", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -6494,7 +6494,7 @@ "pk": "shambling-mound_slam-attack", "fields": { "name": "Slam attack", - "creature_action": "shambling-mound_slam", + "parent": "shambling-mound_slam", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6516,7 +6516,7 @@ "pk": "shield-guardian_fist-attack", "fields": { "name": "Fist attack", - "creature_action": "shield-guardian_fist", + "parent": "shield-guardian_fist", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -6538,7 +6538,7 @@ "pk": "silver-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "silver-dragon-wyrmling_bite", + "parent": "silver-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -6560,7 +6560,7 @@ "pk": "skeleton_shortbow-attack", "fields": { "name": "Shortbow attack", - "creature_action": "skeleton_shortbow", + "parent": "skeleton_shortbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -6582,7 +6582,7 @@ "pk": "skeleton_shortsword-attack", "fields": { "name": "Shortsword attack", - "creature_action": "skeleton_shortsword", + "parent": "skeleton_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -6604,7 +6604,7 @@ "pk": "solar_greatsword-attack", "fields": { "name": "Greatsword attack", - "creature_action": "solar_greatsword", + "parent": "solar_greatsword", "attack_type": "WEAPON", "to_hit_mod": 15, "reach_ft": 5, @@ -6626,7 +6626,7 @@ "pk": "solar_slaying-longbow-attack", "fields": { "name": "Slaying Longbow attack", - "creature_action": "solar_slaying-longbow", + "parent": "solar_slaying-longbow", "attack_type": "WEAPON", "to_hit_mod": 13, "reach_ft": null, @@ -6648,7 +6648,7 @@ "pk": "specter_life-drain-attack", "fields": { "name": "Life Drain attack", - "creature_action": "specter_life-drain", + "parent": "specter_life-drain", "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": 5, @@ -6670,7 +6670,7 @@ "pk": "spirit-naga_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "spirit-naga_bite", + "parent": "spirit-naga_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -6692,7 +6692,7 @@ "pk": "sprite_longsword-attack", "fields": { "name": "Longsword attack", - "creature_action": "sprite_longsword", + "parent": "sprite_longsword", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -6714,7 +6714,7 @@ "pk": "sprite_shortbow-attack", "fields": { "name": "Shortbow attack", - "creature_action": "sprite_shortbow", + "parent": "sprite_shortbow", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": null, @@ -6736,7 +6736,7 @@ "pk": "steam-mephit_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "steam-mephit_claws", + "parent": "steam-mephit_claws", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 5, @@ -6758,7 +6758,7 @@ "pk": "stirge_blood-drain-attack", "fields": { "name": "Blood Drain attack", - "creature_action": "stirge_blood-drain", + "parent": "stirge_blood-drain", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -6780,7 +6780,7 @@ "pk": "stone-giant_greatclub-attack", "fields": { "name": "Greatclub attack", - "creature_action": "stone-giant_greatclub", + "parent": "stone-giant_greatclub", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 15, @@ -6802,7 +6802,7 @@ "pk": "stone-giant_rock-attack", "fields": { "name": "Rock attack", - "creature_action": "stone-giant_rock", + "parent": "stone-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": null, @@ -6824,7 +6824,7 @@ "pk": "stone-golem_slam-attack", "fields": { "name": "Slam attack", - "creature_action": "stone-golem_slam", + "parent": "stone-golem_slam", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -6846,7 +6846,7 @@ "pk": "storm-giant_greatsword-attack", "fields": { "name": "Greatsword attack", - "creature_action": "storm-giant_greatsword", + "parent": "storm-giant_greatsword", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": 10, @@ -6868,7 +6868,7 @@ "pk": "storm-giant_rock-attack", "fields": { "name": "Rock attack", - "creature_action": "storm-giant_rock", + "parent": "storm-giant_rock", "attack_type": "WEAPON", "to_hit_mod": 14, "reach_ft": null, @@ -6890,7 +6890,7 @@ "pk": "succubusincubus_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "succubusincubus_claw", + "parent": "succubusincubus_claw", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -6912,7 +6912,7 @@ "pk": "tarrasque_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "tarrasque_bite", + "parent": "tarrasque_bite", "attack_type": "WEAPON", "to_hit_mod": 19, "reach_ft": 10, @@ -6934,7 +6934,7 @@ "pk": "tarrasque_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "tarrasque_claw", + "parent": "tarrasque_claw", "attack_type": "WEAPON", "to_hit_mod": 19, "reach_ft": 15, @@ -6956,7 +6956,7 @@ "pk": "tarrasque_horns-attack", "fields": { "name": "Horns attack", - "creature_action": "tarrasque_horns", + "parent": "tarrasque_horns", "attack_type": "WEAPON", "to_hit_mod": 19, "reach_ft": 10, @@ -6978,7 +6978,7 @@ "pk": "tarrasque_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "tarrasque_tail", + "parent": "tarrasque_tail", "attack_type": "WEAPON", "to_hit_mod": 19, "reach_ft": 20, @@ -7000,7 +7000,7 @@ "pk": "treant_rock-attack", "fields": { "name": "Rock attack", - "creature_action": "treant_rock", + "parent": "treant_rock", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": null, @@ -7022,7 +7022,7 @@ "pk": "treant_slam-attack", "fields": { "name": "Slam attack", - "creature_action": "treant_slam", + "parent": "treant_slam", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -7044,7 +7044,7 @@ "pk": "triceratops_gore-attack", "fields": { "name": "Gore attack", - "creature_action": "triceratops_gore", + "parent": "triceratops_gore", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -7066,7 +7066,7 @@ "pk": "triceratops_stomp-attack", "fields": { "name": "Stomp attack", - "creature_action": "triceratops_stomp", + "parent": "triceratops_stomp", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -7088,7 +7088,7 @@ "pk": "troll_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "troll_bite", + "parent": "troll_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7110,7 +7110,7 @@ "pk": "troll_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "troll_claw", + "parent": "troll_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7132,7 +7132,7 @@ "pk": "tyrannosaurus-rex_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "tyrannosaurus-rex_bite", + "parent": "tyrannosaurus-rex_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -7154,7 +7154,7 @@ "pk": "tyrannosaurus-rex_tail-attack", "fields": { "name": "Tail attack", - "creature_action": "tyrannosaurus-rex_tail", + "parent": "tyrannosaurus-rex_tail", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -7176,7 +7176,7 @@ "pk": "unicorn_hooves-attack", "fields": { "name": "Hooves attack", - "creature_action": "unicorn_hooves", + "parent": "unicorn_hooves", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7198,7 +7198,7 @@ "pk": "unicorn_horn-attack", "fields": { "name": "Horn attack", - "creature_action": "unicorn_horn", + "parent": "unicorn_horn", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7220,7 +7220,7 @@ "pk": "vampire-spawn_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "vampire-spawn_bite", + "parent": "vampire-spawn_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -7242,7 +7242,7 @@ "pk": "vampire-spawn_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "vampire-spawn_claws", + "parent": "vampire-spawn_claws", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -7264,7 +7264,7 @@ "pk": "vampire_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "vampire_bite", + "parent": "vampire_bite", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -7286,7 +7286,7 @@ "pk": "vampire_unarmed-strike-attack", "fields": { "name": "Unarmed Strike attack", - "creature_action": "vampire_unarmed-strike", + "parent": "vampire_unarmed-strike", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -7308,7 +7308,7 @@ "pk": "violet-fungus_rotting-touch-attack", "fields": { "name": "Rotting Touch attack", - "creature_action": "violet-fungus_rotting-touch", + "parent": "violet-fungus_rotting-touch", "attack_type": "WEAPON", "to_hit_mod": 2, "reach_ft": 10, @@ -7330,7 +7330,7 @@ "pk": "vrock_beak-attack", "fields": { "name": "Beak attack", - "creature_action": "vrock_beak", + "parent": "vrock_beak", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -7352,7 +7352,7 @@ "pk": "vrock_talons-attack", "fields": { "name": "Talons attack", - "creature_action": "vrock_talons", + "parent": "vrock_talons", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -7374,7 +7374,7 @@ "pk": "warhorse-skeleton_hooves-attack", "fields": { "name": "Hooves attack", - "creature_action": "warhorse-skeleton_hooves", + "parent": "warhorse-skeleton_hooves", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -7396,7 +7396,7 @@ "pk": "water-elemental_slam-attack", "fields": { "name": "Slam attack", - "creature_action": "water-elemental_slam", + "parent": "water-elemental_slam", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7418,7 +7418,7 @@ "pk": "werebear_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "werebear_bite", + "parent": "werebear_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7440,7 +7440,7 @@ "pk": "werebear_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "werebear_claw", + "parent": "werebear_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7462,7 +7462,7 @@ "pk": "werebear_greataxe-attack", "fields": { "name": "Greataxe attack", - "creature_action": "werebear_greataxe", + "parent": "werebear_greataxe", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7484,7 +7484,7 @@ "pk": "wereboar_maul-attack", "fields": { "name": "Maul attack", - "creature_action": "wereboar_maul", + "parent": "wereboar_maul", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -7506,7 +7506,7 @@ "pk": "wereboar_tusks-attack", "fields": { "name": "Tusks attack", - "creature_action": "wereboar_tusks", + "parent": "wereboar_tusks", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -7528,7 +7528,7 @@ "pk": "wererat_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "wererat_bite", + "parent": "wererat_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -7550,7 +7550,7 @@ "pk": "wererat_hand-crossbow-attack", "fields": { "name": "Hand Crossbow attack", - "creature_action": "wererat_hand-crossbow", + "parent": "wererat_hand-crossbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -7572,7 +7572,7 @@ "pk": "wererat_shortsword-attack", "fields": { "name": "Shortsword attack", - "creature_action": "wererat_shortsword", + "parent": "wererat_shortsword", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -7594,7 +7594,7 @@ "pk": "weretiger_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "weretiger_bite", + "parent": "weretiger_bite", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -7616,7 +7616,7 @@ "pk": "weretiger_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "weretiger_claw", + "parent": "weretiger_claw", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -7638,7 +7638,7 @@ "pk": "weretiger_longbow-attack", "fields": { "name": "Longbow attack", - "creature_action": "weretiger_longbow", + "parent": "weretiger_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -7660,7 +7660,7 @@ "pk": "weretiger_scimitar-attack", "fields": { "name": "Scimitar attack", - "creature_action": "weretiger_scimitar", + "parent": "weretiger_scimitar", "attack_type": "WEAPON", "to_hit_mod": 5, "reach_ft": 5, @@ -7682,7 +7682,7 @@ "pk": "werewolf_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "werewolf_bite", + "parent": "werewolf_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -7704,7 +7704,7 @@ "pk": "werewolf_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "werewolf_claws", + "parent": "werewolf_claws", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -7726,7 +7726,7 @@ "pk": "werewolf_spear-attack", "fields": { "name": "Spear attack", - "creature_action": "werewolf_spear", + "parent": "werewolf_spear", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -7748,7 +7748,7 @@ "pk": "werewolf_spear-attack-if-used-with-two-hands", "fields": { "name": "Spear attack (if used with two hands)", - "creature_action": "werewolf_spear", + "parent": "werewolf_spear", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -7770,7 +7770,7 @@ "pk": "white-dragon-wyrmling_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "white-dragon-wyrmling_bite", + "parent": "white-dragon-wyrmling_bite", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -7792,7 +7792,7 @@ "pk": "wight_life-drain-attack", "fields": { "name": "Life Drain attack", - "creature_action": "wight_life-drain", + "parent": "wight_life-drain", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -7814,7 +7814,7 @@ "pk": "wight_longbow-attack", "fields": { "name": "Longbow attack", - "creature_action": "wight_longbow", + "parent": "wight_longbow", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": null, @@ -7836,7 +7836,7 @@ "pk": "wight_longsword-attack", "fields": { "name": "Longsword attack", - "creature_action": "wight_longsword", + "parent": "wight_longsword", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -7858,7 +7858,7 @@ "pk": "wight_longsword-attack-if-used-with-two-hands", "fields": { "name": "Longsword attack (if used with two hands)", - "creature_action": "wight_longsword", + "parent": "wight_longsword", "attack_type": "WEAPON", "to_hit_mod": 4, "reach_ft": 5, @@ -7880,7 +7880,7 @@ "pk": "will-o-wisp_shock-attack", "fields": { "name": "Shock attack", - "creature_action": "will-o-wisp_shock", + "parent": "will-o-wisp_shock", "attack_type": "SPELL", "to_hit_mod": 4, "reach_ft": 5, @@ -7902,7 +7902,7 @@ "pk": "wraith_life-drain-attack", "fields": { "name": "Life Drain attack", - "creature_action": "wraith_life-drain", + "parent": "wraith_life-drain", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -7924,7 +7924,7 @@ "pk": "wyvern_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "wyvern_bite", + "parent": "wyvern_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -7946,7 +7946,7 @@ "pk": "wyvern_claws-attack", "fields": { "name": "Claws attack", - "creature_action": "wyvern_claws", + "parent": "wyvern_claws", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -7968,7 +7968,7 @@ "pk": "wyvern_stinger-attack", "fields": { "name": "Stinger attack", - "creature_action": "wyvern_stinger", + "parent": "wyvern_stinger", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -7990,7 +7990,7 @@ "pk": "xorn_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "xorn_bite", + "parent": "xorn_bite", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -8012,7 +8012,7 @@ "pk": "xorn_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "xorn_claw", + "parent": "xorn_claw", "attack_type": "WEAPON", "to_hit_mod": 6, "reach_ft": 5, @@ -8034,7 +8034,7 @@ "pk": "young-black-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "young-black-dragon_bite", + "parent": "young-black-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -8056,7 +8056,7 @@ "pk": "young-black-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "young-black-dragon_claw", + "parent": "young-black-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -8078,7 +8078,7 @@ "pk": "young-blue-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "young-blue-dragon_bite", + "parent": "young-blue-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 10, @@ -8100,7 +8100,7 @@ "pk": "young-blue-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "young-blue-dragon_claw", + "parent": "young-blue-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 9, "reach_ft": 5, @@ -8122,7 +8122,7 @@ "pk": "young-brass-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "young-brass-dragon_bite", + "parent": "young-brass-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -8144,7 +8144,7 @@ "pk": "young-brass-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "young-brass-dragon_claw", + "parent": "young-brass-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -8166,7 +8166,7 @@ "pk": "young-bronze-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "young-bronze-dragon_bite", + "parent": "young-bronze-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 10, @@ -8188,7 +8188,7 @@ "pk": "young-bronze-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "young-bronze-dragon_claw", + "parent": "young-bronze-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 8, "reach_ft": 5, @@ -8210,7 +8210,7 @@ "pk": "young-copper-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "young-copper-dragon_bite", + "parent": "young-copper-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -8232,7 +8232,7 @@ "pk": "young-copper-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "young-copper-dragon_claw", + "parent": "young-copper-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -8254,7 +8254,7 @@ "pk": "young-gold-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "young-gold-dragon_bite", + "parent": "young-gold-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -8276,7 +8276,7 @@ "pk": "young-gold-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "young-gold-dragon_claw", + "parent": "young-gold-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -8298,7 +8298,7 @@ "pk": "young-green-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "young-green-dragon_bite", + "parent": "young-green-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -8320,7 +8320,7 @@ "pk": "young-green-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "young-green-dragon_claw", + "parent": "young-green-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -8342,7 +8342,7 @@ "pk": "young-red-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "young-red-dragon_bite", + "parent": "young-red-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -8364,7 +8364,7 @@ "pk": "young-red-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "young-red-dragon_claw", + "parent": "young-red-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -8386,7 +8386,7 @@ "pk": "young-silver-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "young-silver-dragon_bite", + "parent": "young-silver-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 10, @@ -8408,7 +8408,7 @@ "pk": "young-silver-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "young-silver-dragon_claw", + "parent": "young-silver-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 10, "reach_ft": 5, @@ -8430,7 +8430,7 @@ "pk": "young-white-dragon_bite-attack", "fields": { "name": "Bite attack", - "creature_action": "young-white-dragon_bite", + "parent": "young-white-dragon_bite", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 10, @@ -8452,7 +8452,7 @@ "pk": "young-white-dragon_claw-attack", "fields": { "name": "Claw attack", - "creature_action": "young-white-dragon_claw", + "parent": "young-white-dragon_claw", "attack_type": "WEAPON", "to_hit_mod": 7, "reach_ft": 5, @@ -8474,7 +8474,7 @@ "pk": "zombie_slam-attack", "fields": { "name": "Slam attack", - "creature_action": "zombie_slam", + "parent": "zombie_slam", "attack_type": "WEAPON", "to_hit_mod": 3, "reach_ft": 5, From 521221562d666b6bb2ee10a5be79740801c18518 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 08:59:40 -0500 Subject: [PATCH 66/84] Whitespace. --- api_v2/models/creature.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index f46caf2f..a505b43b 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -60,7 +60,7 @@ def creatureset(self): #TODO remove FromDocument class CreatureAction(HasName, HasDescription, FromDocument): - + """Describes an action available to a creature.""" #TODO refactor to parent creature = models.ForeignKey( Creature, @@ -80,13 +80,11 @@ class CreatureAction(HasName, HasDescription, FromDocument): help_text='The parameter X for if the action is limited.' ) -#TODO rename to CreatureActionAttack -#TODO remove FromDocument class CreatureActionAttack(HasName): - + """Describes an attack action used by a creature.""" + key = key_field() - #TODO refactor to parent parent = models.ForeignKey( CreatureAction, on_delete=models.CASCADE, From a7273dc14110f7865dda6f1ffd9a6f51124c5625 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 09:02:25 -0500 Subject: [PATCH 67/84] Removing document from creatureaction. --- api_v2/management/commands/export.py | 2 + api_v2/migrations/0090_auto_20240601_1400.py | 22 + api_v2/models/creature.py | 5 +- .../srd/CreatureAction.json | 646 ------------------ 4 files changed, 28 insertions(+), 647 deletions(-) create mode 100644 api_v2/migrations/0090_auto_20240601_1400.py diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index b7f84c89..f2c5554f 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -116,6 +116,8 @@ def handle(self, *args, **options) -> None: modelq=None if model.__name__=='CreatureAction': modelq = model.objects.filter(creature__document=doc).order_by('pk') + if model.__name__=='CreatureActionAttack': + modelq = model.objects.filter(parent__creature__document=doc).order_by('pk') if modelq is None: modelq = model.objects.filter(parent__document=doc).order_by('pk') else: diff --git a/api_v2/migrations/0090_auto_20240601_1400.py b/api_v2/migrations/0090_auto_20240601_1400.py new file mode 100644 index 00000000..fdbb5d8b --- /dev/null +++ b/api_v2/migrations/0090_auto_20240601_1400.py @@ -0,0 +1,22 @@ +# Generated by Django 3.2.20 on 2024-06-01 14:00 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0089_rename_creature_action_creatureactionattack_parent'), + ] + + operations = [ + migrations.RemoveField( + model_name='creatureaction', + name='document', + ), + migrations.AlterField( + model_name='creatureaction', + name='key', + field=models.CharField(help_text='Unique key for the Document.', max_length=100, primary_key=True, serialize=False), + ), + ] diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index a505b43b..c4e58ad1 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -59,9 +59,12 @@ def creatureset(self): return self.creaturesets.all() #TODO remove FromDocument -class CreatureAction(HasName, HasDescription, FromDocument): +class CreatureAction(HasName, HasDescription): + """Describes an action available to a creature.""" #TODO refactor to parent + key = key_field() + creature = models.ForeignKey( Creature, on_delete=models.CASCADE, diff --git a/data/v2/wizards-of-the-coast/srd/CreatureAction.json b/data/v2/wizards-of-the-coast/srd/CreatureAction.json index 7abe66e7..a52c728f 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureAction.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureAction.json @@ -5,7 +5,6 @@ "fields": { "name": "Enslave", "desc": "The aboleth targets one creature it can see within 30 feet of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the aboleth until the aboleth dies or until it is on a different plane of existence from the target. The charmed target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.\n\nWhenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.\n", - "document": "srd", "creature": "aboleth", "uses_type": "PER_DAY", "uses_param": 3 @@ -17,7 +16,6 @@ "fields": { "name": "Multiattack", "desc": "The aboleth makes three tentacle attacks.\n", - "document": "srd", "creature": "aboleth", "uses_type": null, "uses_param": null @@ -29,7 +27,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) bludgeoning damage.\n", - "document": "srd", "creature": "aboleth", "uses_type": null, "uses_param": null @@ -41,7 +38,6 @@ "fields": { "name": "Tentacle", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 14 Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.\n", - "document": "srd", "creature": "aboleth", "uses_type": null, "uses_param": null @@ -53,7 +49,6 @@ "fields": { "name": "Acid Breath", "desc": "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "adult-black-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -65,7 +60,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) acid damage.\n", - "document": "srd", "creature": "adult-black-dragon", "uses_type": null, "uses_param": null @@ -77,7 +71,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", "creature": "adult-black-dragon", "uses_type": null, "uses_param": null @@ -89,7 +82,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "adult-black-dragon", "uses_type": null, "uses_param": null @@ -101,7 +93,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "adult-black-dragon", "uses_type": null, "uses_param": null @@ -113,7 +104,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "document": "srd", "creature": "adult-black-dragon", "uses_type": null, "uses_param": null @@ -125,7 +115,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage plus 5 (1d10) lightning damage.\n", - "document": "srd", "creature": "adult-blue-dragon", "uses_type": null, "uses_param": null @@ -137,7 +126,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", - "document": "srd", "creature": "adult-blue-dragon", "uses_type": null, "uses_param": null @@ -149,7 +137,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "adult-blue-dragon", "uses_type": null, "uses_param": null @@ -161,7 +148,6 @@ "fields": { "name": "Lightning Breath", "desc": "The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "adult-blue-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -173,7 +159,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "adult-blue-dragon", "uses_type": null, "uses_param": null @@ -185,7 +170,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", - "document": "srd", "creature": "adult-blue-dragon", "uses_type": null, "uses_param": null @@ -197,7 +181,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "document": "srd", "creature": "adult-brass-dragon", "uses_type": null, "uses_param": null @@ -209,7 +192,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "document": "srd", "creature": "adult-brass-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -221,7 +203,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", "creature": "adult-brass-dragon", "uses_type": null, "uses_param": null @@ -233,7 +214,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "adult-brass-dragon", "uses_type": null, "uses_param": null @@ -245,7 +225,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "adult-brass-dragon", "uses_type": null, "uses_param": null @@ -257,7 +236,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "document": "srd", "creature": "adult-brass-dragon", "uses_type": null, "uses_param": null @@ -269,7 +247,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage.\n", - "document": "srd", "creature": "adult-bronze-dragon", "uses_type": null, "uses_param": null @@ -281,7 +258,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", - "document": "srd", "creature": "adult-bronze-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -293,7 +269,6 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", "creature": "adult-bronze-dragon", "uses_type": null, "uses_param": null @@ -305,7 +280,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", - "document": "srd", "creature": "adult-bronze-dragon", "uses_type": null, "uses_param": null @@ -317,7 +291,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "adult-bronze-dragon", "uses_type": null, "uses_param": null @@ -329,7 +302,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "adult-bronze-dragon", "uses_type": null, "uses_param": null @@ -341,7 +313,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", - "document": "srd", "creature": "adult-bronze-dragon", "uses_type": null, "uses_param": null @@ -353,7 +324,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "document": "srd", "creature": "adult-copper-dragon", "uses_type": null, "uses_param": null @@ -365,7 +335,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "document": "srd", "creature": "adult-copper-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -377,7 +346,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", "creature": "adult-copper-dragon", "uses_type": null, "uses_param": null @@ -389,7 +357,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "adult-copper-dragon", "uses_type": null, "uses_param": null @@ -401,7 +368,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "adult-copper-dragon", "uses_type": null, "uses_param": null @@ -413,7 +379,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "document": "srd", "creature": "adult-copper-dragon", "uses_type": null, "uses_param": null @@ -425,7 +390,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "document": "srd", "creature": "adult-gold-dragon", "uses_type": null, "uses_param": null @@ -437,7 +401,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "adult-gold-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -449,7 +412,6 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", "creature": "adult-gold-dragon", "uses_type": null, "uses_param": null @@ -461,7 +423,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", "creature": "adult-gold-dragon", "uses_type": null, "uses_param": null @@ -473,7 +434,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "adult-gold-dragon", "uses_type": null, "uses_param": null @@ -485,7 +445,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "adult-gold-dragon", "uses_type": null, "uses_param": null @@ -497,7 +456,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", "creature": "adult-gold-dragon", "uses_type": null, "uses_param": null @@ -509,7 +467,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 7 (2d6) poison damage.\n", - "document": "srd", "creature": "adult-green-dragon", "uses_type": null, "uses_param": null @@ -521,7 +478,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", "creature": "adult-green-dragon", "uses_type": null, "uses_param": null @@ -533,7 +489,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "adult-green-dragon", "uses_type": null, "uses_param": null @@ -545,7 +500,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "adult-green-dragon", "uses_type": null, "uses_param": null @@ -557,7 +511,6 @@ "fields": { "name": "Poison Breath", "desc": "The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "adult-green-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -569,7 +522,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "document": "srd", "creature": "adult-green-dragon", "uses_type": null, "uses_param": null @@ -581,7 +533,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 7 (2d6) fire damage.\n", - "document": "srd", "creature": "adult-red-dragon", "uses_type": null, "uses_param": null @@ -593,7 +544,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", "creature": "adult-red-dragon", "uses_type": null, "uses_param": null @@ -605,7 +555,6 @@ "fields": { "name": "Fire Breath", "desc": "The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 63 (18d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "adult-red-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -617,7 +566,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "adult-red-dragon", "uses_type": null, "uses_param": null @@ -629,7 +577,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "adult-red-dragon", "uses_type": null, "uses_param": null @@ -641,7 +588,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", "creature": "adult-red-dragon", "uses_type": null, "uses_param": null @@ -653,7 +599,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "document": "srd", "creature": "adult-silver-dragon", "uses_type": null, "uses_param": null @@ -665,7 +610,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "adult-silver-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -677,7 +621,6 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", "creature": "adult-silver-dragon", "uses_type": null, "uses_param": null @@ -689,7 +632,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", "creature": "adult-silver-dragon", "uses_type": null, "uses_param": null @@ -701,7 +643,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "adult-silver-dragon", "uses_type": null, "uses_param": null @@ -713,7 +654,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "adult-silver-dragon", "uses_type": null, "uses_param": null @@ -725,7 +665,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", "creature": "adult-silver-dragon", "uses_type": null, "uses_param": null @@ -737,7 +676,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) cold damage.\n", - "document": "srd", "creature": "adult-white-dragon", "uses_type": null, "uses_param": null @@ -749,7 +687,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", "creature": "adult-white-dragon", "uses_type": null, "uses_param": null @@ -761,7 +698,6 @@ "fields": { "name": "Cold Breath", "desc": "The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "adult-white-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -773,7 +709,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 14 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "adult-white-dragon", "uses_type": null, "uses_param": null @@ -785,7 +720,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "adult-white-dragon", "uses_type": null, "uses_param": null @@ -797,7 +731,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "document": "srd", "creature": "adult-white-dragon", "uses_type": null, "uses_param": null @@ -809,7 +742,6 @@ "fields": { "name": "Multiattack", "desc": "The elemental makes two slam attacks.\n", - "document": "srd", "creature": "air-elemental", "uses_type": null, "uses_param": null @@ -821,7 +753,6 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", - "document": "srd", "creature": "air-elemental", "uses_type": null, "uses_param": null @@ -833,7 +764,6 @@ "fields": { "name": "Whirlwind", "desc": "Each creature in the elemental's space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked prone. If a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone.\n\nIf the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.\n", - "document": "srd", "creature": "air-elemental", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 4 @@ -845,7 +775,6 @@ "fields": { "name": "Acid Breath", "desc": "The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "ancient-black-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -857,7 +786,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) acid damage.\n", - "document": "srd", "creature": "ancient-black-dragon", "uses_type": null, "uses_param": null @@ -869,7 +797,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", "creature": "ancient-black-dragon", "uses_type": null, "uses_param": null @@ -881,7 +808,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "ancient-black-dragon", "uses_type": null, "uses_param": null @@ -893,7 +819,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "ancient-black-dragon", "uses_type": null, "uses_param": null @@ -905,7 +830,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", "creature": "ancient-black-dragon", "uses_type": null, "uses_param": null @@ -917,7 +841,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage plus 11 (2d10) lightning damage.\n", - "document": "srd", "creature": "ancient-blue-dragon", "uses_type": null, "uses_param": null @@ -929,7 +852,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", - "document": "srd", "creature": "ancient-blue-dragon", "uses_type": null, "uses_param": null @@ -941,7 +863,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "ancient-blue-dragon", "uses_type": null, "uses_param": null @@ -953,7 +874,6 @@ "fields": { "name": "Lightning Breath", "desc": "The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "ancient-blue-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -965,7 +885,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "ancient-blue-dragon", "uses_type": null, "uses_param": null @@ -977,7 +896,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", - "document": "srd", "creature": "ancient-blue-dragon", "uses_type": null, "uses_param": null @@ -989,7 +907,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "document": "srd", "creature": "ancient-brass-dragon", "uses_type": null, "uses_param": null @@ -1001,7 +918,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons:\n\nFire Breath. The dragon exhales fire in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "document": "srd", "creature": "ancient-brass-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -1013,7 +929,6 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", "creature": "ancient-brass-dragon", "uses_type": null, "uses_param": null @@ -1025,7 +940,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", "creature": "ancient-brass-dragon", "uses_type": null, "uses_param": null @@ -1037,7 +951,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "ancient-brass-dragon", "uses_type": null, "uses_param": null @@ -1049,7 +962,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "ancient-brass-dragon", "uses_type": null, "uses_param": null @@ -1061,7 +973,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", "creature": "ancient-brass-dragon", "uses_type": null, "uses_param": null @@ -1073,7 +984,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage.\n", - "document": "srd", "creature": "ancient-bronze-dragon", "uses_type": null, "uses_param": null @@ -1085,7 +995,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", - "document": "srd", "creature": "ancient-bronze-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -1097,7 +1006,6 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", "creature": "ancient-bronze-dragon", "uses_type": null, "uses_param": null @@ -1109,7 +1017,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", - "document": "srd", "creature": "ancient-bronze-dragon", "uses_type": null, "uses_param": null @@ -1121,7 +1028,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "ancient-bronze-dragon", "uses_type": null, "uses_param": null @@ -1133,7 +1039,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "ancient-bronze-dragon", "uses_type": null, "uses_param": null @@ -1145,7 +1050,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", - "document": "srd", "creature": "ancient-bronze-dragon", "uses_type": null, "uses_param": null @@ -1157,7 +1061,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "document": "srd", "creature": "ancient-copper-dragon", "uses_type": null, "uses_param": null @@ -1169,7 +1072,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "document": "srd", "creature": "ancient-copper-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -1181,7 +1083,6 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", "creature": "ancient-copper-dragon", "uses_type": null, "uses_param": null @@ -1193,7 +1094,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", "creature": "ancient-copper-dragon", "uses_type": null, "uses_param": null @@ -1205,7 +1105,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "ancient-copper-dragon", "uses_type": null, "uses_param": null @@ -1217,7 +1116,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "ancient-copper-dragon", "uses_type": null, "uses_param": null @@ -1229,7 +1127,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", "creature": "ancient-copper-dragon", "uses_type": null, "uses_param": null @@ -1241,7 +1138,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", - "document": "srd", "creature": "ancient-gold-dragon", "uses_type": null, "uses_param": null @@ -1253,7 +1149,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "ancient-gold-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -1265,7 +1160,6 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", "creature": "ancient-gold-dragon", "uses_type": null, "uses_param": null @@ -1277,7 +1171,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "document": "srd", "creature": "ancient-gold-dragon", "uses_type": null, "uses_param": null @@ -1289,7 +1182,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 24 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "ancient-gold-dragon", "uses_type": null, "uses_param": null @@ -1301,7 +1193,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "ancient-gold-dragon", "uses_type": null, "uses_param": null @@ -1313,7 +1204,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "document": "srd", "creature": "ancient-gold-dragon", "uses_type": null, "uses_param": null @@ -1325,7 +1215,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 10 (3d6) poison damage.\n", - "document": "srd", "creature": "ancient-green-dragon", "uses_type": null, "uses_param": null @@ -1337,7 +1226,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 22 (4d6 + 8) slashing damage.\n", - "document": "srd", "creature": "ancient-green-dragon", "uses_type": null, "uses_param": null @@ -1349,7 +1237,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "ancient-green-dragon", "uses_type": null, "uses_param": null @@ -1361,7 +1248,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "ancient-green-dragon", "uses_type": null, "uses_param": null @@ -1373,7 +1259,6 @@ "fields": { "name": "Poison Breath", "desc": "The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 77 (22d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "ancient-green-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -1385,7 +1270,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", "creature": "ancient-green-dragon", "uses_type": null, "uses_param": null @@ -1397,7 +1281,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage plus 14 (4d6) fire damage.\n", - "document": "srd", "creature": "ancient-red-dragon", "uses_type": null, "uses_param": null @@ -1409,7 +1292,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "document": "srd", "creature": "ancient-red-dragon", "uses_type": null, "uses_param": null @@ -1421,7 +1303,6 @@ "fields": { "name": "Fire Breath", "desc": "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 91 (26d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "ancient-red-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -1433,7 +1314,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "ancient-red-dragon", "uses_type": null, "uses_param": null @@ -1445,7 +1325,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "ancient-red-dragon", "uses_type": null, "uses_param": null @@ -1457,7 +1336,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "document": "srd", "creature": "ancient-red-dragon", "uses_type": null, "uses_param": null @@ -1469,7 +1347,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", - "document": "srd", "creature": "ancient-silver-dragon", "uses_type": null, "uses_param": null @@ -1481,7 +1358,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "ancient-silver-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -1493,7 +1369,6 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "document": "srd", "creature": "ancient-silver-dragon", "uses_type": null, "uses_param": null @@ -1505,7 +1380,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "document": "srd", "creature": "ancient-silver-dragon", "uses_type": null, "uses_param": null @@ -1517,7 +1391,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "ancient-silver-dragon", "uses_type": null, "uses_param": null @@ -1529,7 +1402,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "ancient-silver-dragon", "uses_type": null, "uses_param": null @@ -1541,7 +1413,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "document": "srd", "creature": "ancient-silver-dragon", "uses_type": null, "uses_param": null @@ -1553,7 +1424,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) cold damage.\n", - "document": "srd", "creature": "ancient-white-dragon", "uses_type": null, "uses_param": null @@ -1565,7 +1435,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "document": "srd", "creature": "ancient-white-dragon", "uses_type": null, "uses_param": null @@ -1577,7 +1446,6 @@ "fields": { "name": "Cold Breath", "desc": "The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 72 (16d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "ancient-white-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -1589,7 +1457,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "ancient-white-dragon", "uses_type": null, "uses_param": null @@ -1601,7 +1468,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "ancient-white-dragon", "uses_type": null, "uses_param": null @@ -1613,7 +1479,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "document": "srd", "creature": "ancient-white-dragon", "uses_type": null, "uses_param": null @@ -1625,7 +1490,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 17 (2d10 + 6) slashing damage.\n", - "document": "srd", "creature": "androsphinx", "uses_type": null, "uses_param": null @@ -1637,7 +1501,6 @@ "fields": { "name": "Multiattack", "desc": "The sphinx makes two claw attacks.\n", - "document": "srd", "creature": "androsphinx", "uses_type": null, "uses_param": null @@ -1649,7 +1512,6 @@ "fields": { "name": "Roar", "desc": "The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.\n\nFirst Roar. Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nSecond Roar. Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThird Roar. Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.\n", - "document": "srd", "creature": "androsphinx", "uses_type": "PER_DAY", "uses_param": 3 @@ -1661,7 +1523,6 @@ "fields": { "name": "Multiattack", "desc": "The armor makes two melee attacks.\n", - "document": "srd", "creature": "animated-armor", "uses_type": null, "uses_param": null @@ -1673,7 +1534,6 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", - "document": "srd", "creature": "animated-armor", "uses_type": null, "uses_param": null @@ -1685,7 +1545,6 @@ "fields": { "name": "Acid Spray", "desc": "The ankheg spits acid in a line that is 30 feet long and 5 feet wide, provided that it has no creature grappled. Each creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "ankheg", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 @@ -1697,7 +1556,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage. If the target is a Large or smaller creature, it is grappled (escape DC 13). Until this grapple ends, the ankheg can bite only the grappled creature and has advantage on attack rolls to do so.\n", - "document": "srd", "creature": "ankheg", "uses_type": null, "uses_param": null @@ -1709,7 +1567,6 @@ "fields": { "name": "Warhammer", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", - "document": "srd", "creature": "azer", "uses_type": null, "uses_param": null @@ -1721,7 +1578,6 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) slashing damage plus 13 (3d8) lightning damage. If the balor scores a critical hit, it rolls damage dice three times, instead of twice.\n", - "document": "srd", "creature": "balor", "uses_type": null, "uses_param": null @@ -1733,7 +1589,6 @@ "fields": { "name": "Multiattack", "desc": "The balor makes two attacks: one with its longsword and one with its whip.\n", - "document": "srd", "creature": "balor", "uses_type": null, "uses_param": null @@ -1745,7 +1600,6 @@ "fields": { "name": "Teleport", "desc": "The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "document": "srd", "creature": "balor", "uses_type": null, "uses_param": null @@ -1757,7 +1611,6 @@ "fields": { "name": "Whip", "desc": "Melee Weapon Attack: +14 to hit, reach 30 ft., one target. Hit: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage, and the target must succeed on a DC 20 Strength saving throw or be pulled up to 25 feet toward the balor.\n", - "document": "srd", "creature": "balor", "uses_type": null, "uses_param": null @@ -1769,7 +1622,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "document": "srd", "creature": "barbed-devil", "uses_type": null, "uses_param": null @@ -1781,7 +1633,6 @@ "fields": { "name": "Hurl Flame", "desc": "Ranged Spell Attack: +5 to hit, range 150 ft., one target. Hit: 10 (3d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", - "document": "srd", "creature": "barbed-devil", "uses_type": null, "uses_param": null @@ -1793,7 +1644,6 @@ "fields": { "name": "Multiattack", "desc": "The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice.\n", - "document": "srd", "creature": "barbed-devil", "uses_type": null, "uses_param": null @@ -1805,7 +1655,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", - "document": "srd", "creature": "barbed-devil", "uses_type": null, "uses_param": null @@ -1817,7 +1666,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage.\n", - "document": "srd", "creature": "basilisk", "uses_type": null, "uses_param": null @@ -1829,7 +1677,6 @@ "fields": { "name": "Beard", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. While poisoned in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "bearded-devil", "uses_type": null, "uses_param": null @@ -1841,7 +1688,6 @@ "fields": { "name": "Glaive", "desc": "Melee Weapon Attack: +5 to hit, reach 10 ft., one target. Hit: 8 (1d10 + 3) slashing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 12 Constitution saving throw or lose 5 (1d10) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 (1d10). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", - "document": "srd", "creature": "bearded-devil", "uses_type": null, "uses_param": null @@ -1853,7 +1699,6 @@ "fields": { "name": "Multiattack", "desc": "The devil makes two attacks: one with its beard and one with its glaive.\n", - "document": "srd", "creature": "bearded-devil", "uses_type": null, "uses_param": null @@ -1865,7 +1710,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 22 (3d10 + 6) piercing damage.\n", - "document": "srd", "creature": "behir", "uses_type": null, "uses_param": null @@ -1877,7 +1721,6 @@ "fields": { "name": "Constrict", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one Large or smaller creature. Hit: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage. The target is grappled (escape DC 16) if the behir isn't already constricting a creature, and the target is restrained until this grapple ends.\n", - "document": "srd", "creature": "behir", "uses_type": null, "uses_param": null @@ -1889,7 +1732,6 @@ "fields": { "name": "Lightning Breath", "desc": "The behir exhales a line of lightning that is 20 feet long and 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "behir", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -1901,7 +1743,6 @@ "fields": { "name": "Multiattack", "desc": "The behir makes two attacks: one with its bite and one to constrict.\n", - "document": "srd", "creature": "behir", "uses_type": null, "uses_param": null @@ -1913,7 +1754,6 @@ "fields": { "name": "Swallow", "desc": "The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the behir, and it takes 21 (6d6) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.\n\nIf the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 feet of the behir. If the behir dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 feet of movement, exiting prone.\n", - "document": "srd", "creature": "behir", "uses_type": null, "uses_param": null @@ -1925,7 +1765,6 @@ "fields": { "name": "Acid Breath", "desc": "The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "black-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -1937,7 +1776,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage.\n", - "document": "srd", "creature": "black-dragon-wyrmling", "uses_type": null, "uses_param": null @@ -1949,7 +1787,6 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", - "document": "srd", "creature": "black-pudding", "uses_type": null, "uses_param": null @@ -1961,7 +1798,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage.\n", - "document": "srd", "creature": "blue-dragon-wyrmling", "uses_type": null, "uses_param": null @@ -1973,7 +1809,6 @@ "fields": { "name": "Lightning Breath", "desc": "The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "blue-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -1985,7 +1820,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", - "document": "srd", "creature": "bone-devil", "uses_type": null, "uses_param": null @@ -1997,7 +1831,6 @@ "fields": { "name": "Multiattack", "desc": "The devil makes three attacks: two with its claws and one with its sting.\n", - "document": "srd", "creature": "bone-devil", "uses_type": null, "uses_param": null @@ -2009,7 +1842,6 @@ "fields": { "name": "Sting", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage, and the target must succeed on a DC 14 Constitution saving throw or become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "bone-devil", "uses_type": null, "uses_param": null @@ -2021,7 +1853,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", - "document": "srd", "creature": "brass-dragon-wyrmling", "uses_type": null, "uses_param": null @@ -2033,7 +1864,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "document": "srd", "creature": "brass-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -2045,7 +1875,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", - "document": "srd", "creature": "bronze-dragon-wyrmling", "uses_type": null, "uses_param": null @@ -2057,7 +1886,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.\n", - "document": "srd", "creature": "bronze-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -2069,7 +1897,6 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at range.\n", - "document": "srd", "creature": "bugbear", "uses_type": null, "uses_param": null @@ -2081,7 +1908,6 @@ "fields": { "name": "Morningstar", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 11 (2d8 + 2) piercing damage.\n", - "document": "srd", "creature": "bugbear", "uses_type": null, "uses_param": null @@ -2093,7 +1919,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 30 (4d12 + 4) piercing damage.\n", - "document": "srd", "creature": "bulette", "uses_type": null, "uses_param": null @@ -2105,7 +1930,6 @@ "fields": { "name": "Deadly Leap", "desc": "If the bulette jumps at least 15 feet as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 feet out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the bulette's space.\n", - "document": "srd", "creature": "bulette", "uses_type": null, "uses_param": null @@ -2117,7 +1941,6 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "document": "srd", "creature": "centaur", "uses_type": null, "uses_param": null @@ -2129,7 +1952,6 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "document": "srd", "creature": "centaur", "uses_type": null, "uses_param": null @@ -2141,7 +1963,6 @@ "fields": { "name": "Multiattack", "desc": "The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow.\n", - "document": "srd", "creature": "centaur", "uses_type": null, "uses_param": null @@ -2153,7 +1974,6 @@ "fields": { "name": "Pike", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "document": "srd", "creature": "centaur", "uses_type": null, "uses_param": null @@ -2165,7 +1985,6 @@ "fields": { "name": "Animate Chains", "desc": "Up to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.\n\nEach animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is incapacitated or dies.\n", - "document": "srd", "creature": "chain-devil", "uses_type": "RECHARGE_AFTER_REST", "uses_param": null @@ -2177,7 +1996,6 @@ "fields": { "name": "Chain", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) slashing damage. The target is grappled (escape DC 14) if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained and takes 7 (2d6) piercing damage at the start of each of its turns.\n", - "document": "srd", "creature": "chain-devil", "uses_type": null, "uses_param": null @@ -2189,7 +2007,6 @@ "fields": { "name": "Multiattack", "desc": "The devil makes two attacks with its chains.\n", - "document": "srd", "creature": "chain-devil", "uses_type": null, "uses_param": null @@ -2201,7 +2018,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", - "document": "srd", "creature": "chimera", "uses_type": null, "uses_param": null @@ -2213,7 +2029,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", "creature": "chimera", "uses_type": null, "uses_param": null @@ -2225,7 +2040,6 @@ "fields": { "name": "Fire Breath", "desc": "The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 31 (7d8) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "chimera", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -2237,7 +2051,6 @@ "fields": { "name": "Horns", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) bludgeoning damage.\n", - "document": "srd", "creature": "chimera", "uses_type": null, "uses_param": null @@ -2249,7 +2062,6 @@ "fields": { "name": "Multiattack", "desc": "The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns.\n", - "document": "srd", "creature": "chimera", "uses_type": null, "uses_param": null @@ -2261,7 +2073,6 @@ "fields": { "name": "Multiattack", "desc": "The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once.\n", - "document": "srd", "creature": "chuul", "uses_type": null, "uses_param": null @@ -2273,7 +2084,6 @@ "fields": { "name": "Pincer", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage. The target is grappled (escape DC 14) if it is a Large or smaller creature and the chuul doesn't have two other creatures grappled.\n", - "document": "srd", "creature": "chuul", "uses_type": null, "uses_param": null @@ -2285,7 +2095,6 @@ "fields": { "name": "Tentacles", "desc": "One creature grappled by the chuul must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. Until this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "chuul", "uses_type": null, "uses_param": null @@ -2297,7 +2106,6 @@ "fields": { "name": "Haste", "desc": "Until the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action.\n", - "document": "srd", "creature": "clay-golem", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -2309,7 +2117,6 @@ "fields": { "name": "Multiattack", "desc": "The golem makes two slam attacks.\n", - "document": "srd", "creature": "clay-golem", "uses_type": null, "uses_param": null @@ -2321,7 +2128,6 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the greater restoration spell or other magic.\n", - "document": "srd", "creature": "clay-golem", "uses_type": null, "uses_param": null @@ -2333,7 +2139,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 10 (2d6 + 3) piercing damage, and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is blinded and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a DC 16 Strength check.\n", - "document": "srd", "creature": "cloaker", "uses_type": null, "uses_param": null @@ -2345,7 +2150,6 @@ "fields": { "name": "Moan", "desc": "Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the cloaker's next turn. If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours\n", - "document": "srd", "creature": "cloaker", "uses_type": null, "uses_param": null @@ -2357,7 +2161,6 @@ "fields": { "name": "Multiattack", "desc": "The cloaker makes two attacks: one with its bite and one with its tail.\n", - "document": "srd", "creature": "cloaker", "uses_type": null, "uses_param": null @@ -2369,7 +2172,6 @@ "fields": { "name": "Phantasms", "desc": "The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.\n\nWhenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.\n\nA duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.\n", - "document": "srd", "creature": "cloaker", "uses_type": "RECHARGE_AFTER_REST", "uses_param": null @@ -2381,7 +2183,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one creature. Hit: 7 (1d8 + 3) slashing damage.\n", - "document": "srd", "creature": "cloaker", "uses_type": null, "uses_param": null @@ -2393,7 +2194,6 @@ "fields": { "name": "Morningstar", "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) piercing damage.\n", - "document": "srd", "creature": "cloud-giant", "uses_type": null, "uses_param": null @@ -2405,7 +2205,6 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two morningstar attacks.\n", - "document": "srd", "creature": "cloud-giant", "uses_type": null, "uses_param": null @@ -2417,7 +2216,6 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +12 to hit, range 60/240 ft., one target. Hit: 30 (4d10 + 8) bludgeoning damage.\n", - "document": "srd", "creature": "cloud-giant", "uses_type": null, "uses_param": null @@ -2429,7 +2227,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) piercing damage, and the target must succeed on a DC 11 Constitution saving throw against being magically petrified. On a failed save, the creature begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified for 24 hours.\n", - "document": "srd", "creature": "cockatrice", "uses_type": null, "uses_param": null @@ -2441,7 +2238,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", - "document": "srd", "creature": "copper-dragon-wyrmling", "uses_type": null, "uses_param": null @@ -2453,7 +2249,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "document": "srd", "creature": "copper-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -2465,7 +2260,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one creature. Hit: 8 (1d6 + 5) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 24 hours. Until this poison ends, the target is unconscious. Another creature can use an action to shake the target awake.\n", - "document": "srd", "creature": "couatl", "uses_type": null, "uses_param": null @@ -2477,7 +2271,6 @@ "fields": { "name": "Change Shape", "desc": "The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).\n\nIn a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form.\n", - "document": "srd", "creature": "couatl", "uses_type": null, "uses_param": null @@ -2489,7 +2282,6 @@ "fields": { "name": "Constrict", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one Medium or smaller creature. Hit: 10 (2d6 + 3) bludgeoning damage, and the target is grappled (escape DC 15). Until this grapple ends, the target is restrained, and the couatl can't constrict another target.\n", - "document": "srd", "creature": "couatl", "uses_type": null, "uses_param": null @@ -2501,7 +2293,6 @@ "fields": { "name": "Crush", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d6 + 3) bludgeoning damage, and the darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also blinded and unable to breathe while the darkmantle is attached in this way.\n\nWhile attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.\n\nA creature can detach the darkmantle by making a successful DC 13 Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement.\n", - "document": "srd", "creature": "darkmantle", "uses_type": null, "uses_param": null @@ -2513,7 +2304,6 @@ "fields": { "name": "Darkness Aura", "desc": "A 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains concentration, up to 10 minutes (as if concentrating on a spell). Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.\n", - "document": "srd", "creature": "darkmantle", "uses_type": "PER_DAY", "uses_param": 1 @@ -2525,7 +2315,6 @@ "fields": { "name": "Change Shape", "desc": "The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).\n\nIn a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks.\n", - "document": "srd", "creature": "deva", "uses_type": null, "uses_param": null @@ -2537,7 +2326,6 @@ "fields": { "name": "Healing Touch", "desc": "The deva touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "document": "srd", "creature": "deva", "uses_type": "PER_DAY", "uses_param": 3 @@ -2549,7 +2337,6 @@ "fields": { "name": "Mace", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage.\n", - "document": "srd", "creature": "deva", "uses_type": null, "uses_param": null @@ -2561,7 +2348,6 @@ "fields": { "name": "Multiattack", "desc": "The deva makes two melee attacks.\n", - "document": "srd", "creature": "deva", "uses_type": null, "uses_param": null @@ -2573,7 +2359,6 @@ "fields": { "name": "Create Whirlwind", "desc": "A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains concentration (as if concentrating on a spell). Any creature but the djinni that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.\n\nA creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.\n", - "document": "srd", "creature": "djinni", "uses_type": null, "uses_param": null @@ -2585,7 +2370,6 @@ "fields": { "name": "Multiattack", "desc": "The djinni makes three scimitar attacks.\n", - "document": "srd", "creature": "djinni", "uses_type": null, "uses_param": null @@ -2597,7 +2381,6 @@ "fields": { "name": "Scimitar", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (djinni's choice).\n", - "document": "srd", "creature": "djinni", "uses_type": null, "uses_param": null @@ -2609,7 +2392,6 @@ "fields": { "name": "Multiattack", "desc": "The doppelganger makes two melee attacks.\n", - "document": "srd", "creature": "doppelganger", "uses_type": null, "uses_param": null @@ -2621,7 +2403,6 @@ "fields": { "name": "Read Thoughts", "desc": "The doppelganger magically reads the surface thoughts of one creature within 60 feet of it. The effect can penetrate barriers, but 3 feet of wood or dirt, 2 feet of stone, 2 inches of metal, or a thin sheet of lead blocks it. While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.\n", - "document": "srd", "creature": "doppelganger", "uses_type": null, "uses_param": null @@ -2633,7 +2414,6 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage.\n", - "document": "srd", "creature": "doppelganger", "uses_type": null, "uses_param": null @@ -2645,7 +2425,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) piercing damage.\n", - "document": "srd", "creature": "dragon-turtle", "uses_type": null, "uses_param": null @@ -2657,7 +2436,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 16 (2d8 + 7) slashing damage.\n", - "document": "srd", "creature": "dragon-turtle", "uses_type": null, "uses_param": null @@ -2669,7 +2447,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks.\n", - "document": "srd", "creature": "dragon-turtle", "uses_type": null, "uses_param": null @@ -2681,7 +2458,6 @@ "fields": { "name": "Steam Breath", "desc": "The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage.\n", - "document": "srd", "creature": "dragon-turtle", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -2693,7 +2469,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked prone.\n", - "document": "srd", "creature": "dragon-turtle", "uses_type": null, "uses_param": null @@ -2705,7 +2480,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 3 (1d6) piercing damage.\n", - "document": "srd", "creature": "dretch", "uses_type": null, "uses_param": null @@ -2717,7 +2491,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 5 (2d4) slashing damage.\n", - "document": "srd", "creature": "dretch", "uses_type": null, "uses_param": null @@ -2729,7 +2502,6 @@ "fields": { "name": "Fetid Cloud", "desc": "A 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it. Any creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions.\n", - "document": "srd", "creature": "dretch", "uses_type": "PER_DAY", "uses_param": 1 @@ -2741,7 +2513,6 @@ "fields": { "name": "Multiattack", "desc": "The dretch makes two attacks: one with its bite and one with its claws.\n", - "document": "srd", "creature": "dretch", "uses_type": null, "uses_param": null @@ -2753,7 +2524,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 2 (1d4) piercing damage plus 9 (2d8) poison damage.\n", - "document": "srd", "creature": "drider", "uses_type": null, "uses_param": null @@ -2765,7 +2535,6 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +6 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage.\n", - "document": "srd", "creature": "drider", "uses_type": null, "uses_param": null @@ -2777,7 +2546,6 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", - "document": "srd", "creature": "drider", "uses_type": null, "uses_param": null @@ -2789,7 +2557,6 @@ "fields": { "name": "Multiattack", "desc": "The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack.\n", - "document": "srd", "creature": "drider", "uses_type": null, "uses_param": null @@ -2801,7 +2568,6 @@ "fields": { "name": "Club", "desc": "Melee Weapon Attack: +2 to hit (+6 to hit with shillelagh), reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with shillelagh.\n", - "document": "srd", "creature": "dryad", "uses_type": null, "uses_param": null @@ -2813,7 +2579,6 @@ "fields": { "name": "Fey Charm", "desc": "The dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a DC 14 Wisdom saving throw or be magically charmed. The charmed creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.\n\nEach time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.\n\nThe dryad can have no more than one humanoid and up to three beasts charmed at a time.\n", - "document": "srd", "creature": "dryad", "uses_type": null, "uses_param": null @@ -2825,7 +2590,6 @@ "fields": { "name": "Enlarge", "desc": "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available.\n", - "document": "srd", "creature": "duergar", "uses_type": "RECHARGE_AFTER_REST", "uses_param": null @@ -2837,7 +2601,6 @@ "fields": { "name": "Invisibility", "desc": "The duergar magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell). Any equipment the duergar wears or carries is invisible with it.\n", - "document": "srd", "creature": "duergar", "uses_type": "RECHARGE_AFTER_REST", "uses_param": null @@ -2849,7 +2612,6 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarged.\n", - "document": "srd", "creature": "duergar", "uses_type": null, "uses_param": null @@ -2861,7 +2623,6 @@ "fields": { "name": "War Pick", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage, or 11 (2d8 + 2) piercing damage while enlarged.\n", - "document": "srd", "creature": "duergar", "uses_type": null, "uses_param": null @@ -2873,7 +2634,6 @@ "fields": { "name": "Blinding Breath", "desc": "The mephit exhales a 15-foot cone of blinding dust. Each creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "dust-mephit", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 @@ -2885,7 +2645,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) slashing damage.\n", - "document": "srd", "creature": "dust-mephit", "uses_type": null, "uses_param": null @@ -2897,7 +2656,6 @@ "fields": { "name": "Multiattack", "desc": "The elemental makes two slam attacks.\n", - "document": "srd", "creature": "earth-elemental", "uses_type": null, "uses_param": null @@ -2909,7 +2667,6 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", - "document": "srd", "creature": "earth-elemental", "uses_type": null, "uses_param": null @@ -2921,7 +2678,6 @@ "fields": { "name": "Hurl Flame", "desc": "Ranged Spell Attack: +7 to hit, range 120 ft., one target. Hit: 17 (5d6) fire damage.\n", - "document": "srd", "creature": "efreeti", "uses_type": null, "uses_param": null @@ -2933,7 +2689,6 @@ "fields": { "name": "Multiattack", "desc": "The efreeti makes two scimitar attacks or uses its Hurl Flame twice.\n", - "document": "srd", "creature": "efreeti", "uses_type": null, "uses_param": null @@ -2945,7 +2700,6 @@ "fields": { "name": "Scimitar", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage plus 7 (2d6) fire damage.\n", - "document": "srd", "creature": "efreeti", "uses_type": null, "uses_param": null @@ -2957,7 +2711,6 @@ "fields": { "name": "Hand Crossbow", "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake.\n", - "document": "srd", "creature": "elf-drow", "uses_type": null, "uses_param": null @@ -2969,7 +2722,6 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", "creature": "elf-drow", "uses_type": null, "uses_param": null @@ -2981,7 +2733,6 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +7 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 13 (3d8) poison damage, and the target must succeed on a DC 14 Constitution saving throw or be poisoned. The poison lasts until it is removed by the lesser restoration spell or similar magic.\n", - "document": "srd", "creature": "erinyes", "uses_type": null, "uses_param": null @@ -2993,7 +2744,6 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands, plus 13 (3d8) poison damage.\n", - "document": "srd", "creature": "erinyes", "uses_type": null, "uses_param": null @@ -3005,7 +2755,6 @@ "fields": { "name": "Multiattack", "desc": "The erinyes makes three attacks.\n", - "document": "srd", "creature": "erinyes", "uses_type": null, "uses_param": null @@ -3017,7 +2766,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage plus 4 (1d8) poison damage. The target must succeed on a DC 11 Constitution saving throw or be poisoned for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "ettercap", "uses_type": null, "uses_param": null @@ -3029,7 +2777,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.\n", - "document": "srd", "creature": "ettercap", "uses_type": null, "uses_param": null @@ -3041,7 +2788,6 @@ "fields": { "name": "Multiattack", "desc": "The ettercap makes two attacks: one with its bite and one with its claws.\n", - "document": "srd", "creature": "ettercap", "uses_type": null, "uses_param": null @@ -3053,7 +2799,6 @@ "fields": { "name": "Web", "desc": "Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing. As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect also ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, vulnerability to fire damage, and immunity to bludgeoning, poison, and psychic damage.\n", - "document": "srd", "creature": "ettercap", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -3065,7 +2810,6 @@ "fields": { "name": "Battleaxe", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", - "document": "srd", "creature": "ettin", "uses_type": null, "uses_param": null @@ -3077,7 +2821,6 @@ "fields": { "name": "Morningstar", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) piercing damage.\n", - "document": "srd", "creature": "ettin", "uses_type": null, "uses_param": null @@ -3089,7 +2832,6 @@ "fields": { "name": "Multiattack", "desc": "The ettin makes two attacks: one with its battleaxe and one with its morningstar.\n", - "document": "srd", "creature": "ettin", "uses_type": null, "uses_param": null @@ -3101,7 +2843,6 @@ "fields": { "name": "Multiattack", "desc": "The elemental makes two touch attacks.\n", - "document": "srd", "creature": "fire-elemental", "uses_type": null, "uses_param": null @@ -3113,7 +2854,6 @@ "fields": { "name": "Touch", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 (1d10) fire damage at the start of each of its turns.\n", - "document": "srd", "creature": "fire-elemental", "uses_type": null, "uses_param": null @@ -3125,7 +2865,6 @@ "fields": { "name": "Greatsword", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 28 (6d6 + 7) slashing damage.\n", - "document": "srd", "creature": "fire-giant", "uses_type": null, "uses_param": null @@ -3137,7 +2876,6 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greatsword attacks.\n", - "document": "srd", "creature": "fire-giant", "uses_type": null, "uses_param": null @@ -3149,7 +2887,6 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +11 to hit, range 60/240 ft., one target. Hit: 29 (4d10 + 7) bludgeoning damage.\n", - "document": "srd", "creature": "fire-giant", "uses_type": null, "uses_param": null @@ -3161,7 +2898,6 @@ "fields": { "name": "Multiattack", "desc": "The golem makes two slam attacks.\n", - "document": "srd", "creature": "flesh-golem", "uses_type": null, "uses_param": null @@ -3173,7 +2909,6 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "document": "srd", "creature": "flesh-golem", "uses_type": null, "uses_param": null @@ -3185,7 +2920,6 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage.\n", - "document": "srd", "creature": "flying-sword", "uses_type": null, "uses_param": null @@ -3197,7 +2931,6 @@ "fields": { "name": "Greataxe", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 25 (3d12 + 6) slashing damage.\n", - "document": "srd", "creature": "frost-giant", "uses_type": null, "uses_param": null @@ -3209,7 +2942,6 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greataxe attacks.\n", - "document": "srd", "creature": "frost-giant", "uses_type": null, "uses_param": null @@ -3221,7 +2953,6 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", - "document": "srd", "creature": "frost-giant", "uses_type": null, "uses_param": null @@ -3233,7 +2964,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", "creature": "gargoyle", "uses_type": null, "uses_param": null @@ -3245,7 +2975,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", - "document": "srd", "creature": "gargoyle", "uses_type": null, "uses_param": null @@ -3257,7 +2986,6 @@ "fields": { "name": "Multiattack", "desc": "The gargoyle makes two attacks: one with its bite and one with its claws.\n", - "document": "srd", "creature": "gargoyle", "uses_type": null, "uses_param": null @@ -3269,7 +2997,6 @@ "fields": { "name": "Engulf", "desc": "The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a DC 12 Dexterity saving throw.\n\nOn a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.\n\nOn a failed save, the cube enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.\n\nAn engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube.\n", - "document": "srd", "creature": "gelatinous-cube", "uses_type": null, "uses_param": null @@ -3281,7 +3008,6 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) acid damage.\n", - "document": "srd", "creature": "gelatinous-cube", "uses_type": null, "uses_param": null @@ -3293,7 +3019,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 12 (2d8 + 3) piercing damage.\n", - "document": "srd", "creature": "ghast", "uses_type": null, "uses_param": null @@ -3305,7 +3030,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a creature other than an undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "ghast", "uses_type": null, "uses_param": null @@ -3317,7 +3041,6 @@ "fields": { "name": "Etherealness", "desc": "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.\n", - "document": "srd", "creature": "ghost", "uses_type": null, "uses_param": null @@ -3329,7 +3052,6 @@ "fields": { "name": "Horrifying Visage", "desc": "Each non-undead creature within 60 feet of the ghost that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 × 10 years. A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.\n", - "document": "srd", "creature": "ghost", "uses_type": null, "uses_param": null @@ -3341,7 +3063,6 @@ "fields": { "name": "Possession", "desc": "One humanoid that the ghost can see within 5 feet of it must succeed on a DC 13 Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is incapacitated and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.\n\nThe possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends.\n", - "document": "srd", "creature": "ghost", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 @@ -3353,7 +3074,6 @@ "fields": { "name": "Withering Touch", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 17 (4d6 + 3) necrotic damage.\n", - "document": "srd", "creature": "ghost", "uses_type": null, "uses_param": null @@ -3365,7 +3085,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) piercing damage.\n", - "document": "srd", "creature": "ghoul", "uses_type": null, "uses_param": null @@ -3377,7 +3096,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "ghoul", "uses_type": null, "uses_param": null @@ -3389,7 +3107,6 @@ "fields": { "name": "Bites", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 17 (5d6) piercing damage. If the target is Medium or smaller, it must succeed on a DC 10 Strength saving throw or be knocked prone. If the target is killed by this damage, it is absorbed into the mouther.\n", - "document": "srd", "creature": "gibbering-mouther", "uses_type": null, "uses_param": null @@ -3401,7 +3118,6 @@ "fields": { "name": "Blinding Spittle", "desc": "The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the mouther's next turn.\n", - "document": "srd", "creature": "gibbering-mouther", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -3413,7 +3129,6 @@ "fields": { "name": "Multiattack", "desc": "The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle.\n", - "document": "srd", "creature": "gibbering-mouther", "uses_type": null, "uses_param": null @@ -3425,7 +3140,6 @@ "fields": { "name": "Fist", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.\n", - "document": "srd", "creature": "glabrezu", "uses_type": null, "uses_param": null @@ -3437,7 +3151,6 @@ "fields": { "name": "Multiattack", "desc": "The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell.\n", - "document": "srd", "creature": "glabrezu", "uses_type": null, "uses_param": null @@ -3449,7 +3162,6 @@ "fields": { "name": "Pincer", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a Medium or smaller creature, it is grappled (escape DC 15). The glabrezu has two pincers, each of which can grapple only one target.\n", - "document": "srd", "creature": "glabrezu", "uses_type": null, "uses_param": null @@ -3461,7 +3173,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\n", - "document": "srd", "creature": "gnoll", "uses_type": null, "uses_param": null @@ -3473,7 +3184,6 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "document": "srd", "creature": "gnoll", "uses_type": null, "uses_param": null @@ -3485,7 +3195,6 @@ "fields": { "name": "Spear", "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", - "document": "srd", "creature": "gnoll", "uses_type": null, "uses_param": null @@ -3497,7 +3206,6 @@ "fields": { "name": "Poisoned Dart", "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "gnome-deep-svirfneblin", "uses_type": null, "uses_param": null @@ -3509,7 +3217,6 @@ "fields": { "name": "War Pick", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "document": "srd", "creature": "gnome-deep-svirfneblin", "uses_type": null, "uses_param": null @@ -3521,7 +3228,6 @@ "fields": { "name": "Scimitar", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", - "document": "srd", "creature": "goblin", "uses_type": null, "uses_param": null @@ -3533,7 +3239,6 @@ "fields": { "name": "Shortbow", "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", "creature": "goblin", "uses_type": null, "uses_param": null @@ -3545,7 +3250,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "document": "srd", "creature": "gold-dragon-wyrmling", "uses_type": null, "uses_param": null @@ -3557,7 +3261,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "gold-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -3569,7 +3272,6 @@ "fields": { "name": "Gore", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 18 (2d12 + 5) piercing damage.\n", - "document": "srd", "creature": "gorgon", "uses_type": null, "uses_param": null @@ -3581,7 +3283,6 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.\n", - "document": "srd", "creature": "gorgon", "uses_type": null, "uses_param": null @@ -3593,7 +3294,6 @@ "fields": { "name": "Petrifying Breath", "desc": "The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw. On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.\n", - "document": "srd", "creature": "gorgon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -3605,7 +3305,6 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage, and if the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", - "document": "srd", "creature": "gray-ooze", "uses_type": null, "uses_param": null @@ -3617,7 +3316,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage.\n", - "document": "srd", "creature": "green-dragon-wyrmling", "uses_type": null, "uses_param": null @@ -3629,7 +3327,6 @@ "fields": { "name": "Poison Breath", "desc": "The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 11 Constitution saving throw, taking 21 (6d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "green-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -3641,7 +3338,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "document": "srd", "creature": "green-hag", "uses_type": null, "uses_param": null @@ -3653,7 +3349,6 @@ "fields": { "name": "Illusory Appearance", "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the hag is disguised.\n", - "document": "srd", "creature": "green-hag", "uses_type": null, "uses_param": null @@ -3665,7 +3360,6 @@ "fields": { "name": "Invisible Passage", "desc": "The hag magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.\n", - "document": "srd", "creature": "green-hag", "uses_type": null, "uses_param": null @@ -3677,7 +3371,6 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", "creature": "grick", "uses_type": null, "uses_param": null @@ -3689,7 +3382,6 @@ "fields": { "name": "Multiattack", "desc": "The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target.\n", - "document": "srd", "creature": "grick", "uses_type": null, "uses_param": null @@ -3701,7 +3393,6 @@ "fields": { "name": "Tentacles", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.\n", - "document": "srd", "creature": "grick", "uses_type": null, "uses_param": null @@ -3713,7 +3404,6 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "document": "srd", "creature": "griffon", "uses_type": null, "uses_param": null @@ -3725,7 +3415,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", "creature": "griffon", "uses_type": null, "uses_param": null @@ -3737,7 +3426,6 @@ "fields": { "name": "Multiattack", "desc": "The griffon makes two attacks: one with its beak and one with its claws.\n", - "document": "srd", "creature": "griffon", "uses_type": null, "uses_param": null @@ -3749,7 +3437,6 @@ "fields": { "name": "Spiked Bone Club", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage.\n", - "document": "srd", "creature": "grimlock", "uses_type": null, "uses_param": null @@ -3761,7 +3448,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one creature. Hit: 8 (1d8 + 4) piercing damage, and the target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "guardian-naga", "uses_type": null, "uses_param": null @@ -3773,7 +3459,6 @@ "fields": { "name": "Spit Poison", "desc": "Ranged Weapon Attack: +8 to hit, range 15/30 ft., one creature. Hit: The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "guardian-naga", "uses_type": null, "uses_param": null @@ -3785,7 +3470,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "document": "srd", "creature": "gynosphinx", "uses_type": null, "uses_param": null @@ -3797,7 +3481,6 @@ "fields": { "name": "Multiattack", "desc": "The sphinx makes two claw attacks.\n", - "document": "srd", "creature": "gynosphinx", "uses_type": null, "uses_param": null @@ -3809,7 +3492,6 @@ "fields": { "name": "Fire Breath", "desc": "The veteran exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "half-red-dragon-veteran", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -3821,7 +3503,6 @@ "fields": { "name": "Heavy Crossbow", "desc": "Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.\n", - "document": "srd", "creature": "half-red-dragon-veteran", "uses_type": null, "uses_param": null @@ -3833,7 +3514,6 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", - "document": "srd", "creature": "half-red-dragon-veteran", "uses_type": null, "uses_param": null @@ -3845,7 +3525,6 @@ "fields": { "name": "Multiattack", "desc": "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.\n", - "document": "srd", "creature": "half-red-dragon-veteran", "uses_type": null, "uses_param": null @@ -3857,7 +3536,6 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "document": "srd", "creature": "half-red-dragon-veteran", "uses_type": null, "uses_param": null @@ -3869,7 +3547,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.\n", - "document": "srd", "creature": "harpy", "uses_type": null, "uses_param": null @@ -3881,7 +3558,6 @@ "fields": { "name": "Club", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.\n", - "document": "srd", "creature": "harpy", "uses_type": null, "uses_param": null @@ -3893,7 +3569,6 @@ "fields": { "name": "Luring Song", "desc": "The harpy sings a magical melody. Every humanoid and giant within 300 feet of the harpy that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is incapacitated.\n\nWhile charmed by the harpy, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.\n\nA target that successfully saves is immune to this harpy's song for the next 24 hours.\n", - "document": "srd", "creature": "harpy", "uses_type": null, "uses_param": null @@ -3905,7 +3580,6 @@ "fields": { "name": "Multiattack", "desc": "The harpy makes two attacks: one with its claws and one with its club.\n", - "document": "srd", "creature": "harpy", "uses_type": null, "uses_param": null @@ -3917,7 +3591,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 7 (2d6) fire damage.\n", - "document": "srd", "creature": "hell-hound", "uses_type": null, "uses_param": null @@ -3929,7 +3602,6 @@ "fields": { "name": "Fire Breath", "desc": "The hound exhales fire in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "hell-hound", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -3941,7 +3613,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "document": "srd", "creature": "hezrou", "uses_type": null, "uses_param": null @@ -3953,7 +3624,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", "creature": "hezrou", "uses_type": null, "uses_param": null @@ -3965,7 +3635,6 @@ "fields": { "name": "Multiattack", "desc": "The hezrou makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "hezrou", "uses_type": null, "uses_param": null @@ -3977,7 +3646,6 @@ "fields": { "name": "Greatclub", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 18 (3d8 + 5) bludgeoning damage.\n", - "document": "srd", "creature": "hill-giant", "uses_type": null, "uses_param": null @@ -3989,7 +3657,6 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greatclub attacks.\n", - "document": "srd", "creature": "hill-giant", "uses_type": null, "uses_param": null @@ -4001,7 +3668,6 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +8 to hit, range 60/240 ft., one target. Hit: 21 (3d10 + 5) bludgeoning damage.\n", - "document": "srd", "creature": "hill-giant", "uses_type": null, "uses_param": null @@ -4013,7 +3679,6 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", - "document": "srd", "creature": "hippogriff", "uses_type": null, "uses_param": null @@ -4025,7 +3690,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", - "document": "srd", "creature": "hippogriff", "uses_type": null, "uses_param": null @@ -4037,7 +3701,6 @@ "fields": { "name": "Multiattack", "desc": "The hippogriff makes two attacks: one with its beak and one with its claws.\n", - "document": "srd", "creature": "hippogriff", "uses_type": null, "uses_param": null @@ -4049,7 +3712,6 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "document": "srd", "creature": "hobgoblin", "uses_type": null, "uses_param": null @@ -4061,7 +3723,6 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage, or 6 (1d10 + 1) slashing damage if used with two hands.\n", - "document": "srd", "creature": "hobgoblin", "uses_type": null, "uses_param": null @@ -4073,7 +3734,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or be poisoned for 1 minute. If the saving throw fails by 5 or more, the target is instead poisoned for 5 (1d10) minutes and unconscious while poisoned in this way.\n", - "document": "srd", "creature": "homunculus", "uses_type": null, "uses_param": null @@ -4085,7 +3745,6 @@ "fields": { "name": "Fork", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (2d8 + 6) piercing damage.\n", - "document": "srd", "creature": "horned-devil", "uses_type": null, "uses_param": null @@ -4097,7 +3756,6 @@ "fields": { "name": "Hurl Flame", "desc": "Ranged Spell Attack: +7 to hit, range 150 ft., one target. Hit: 14 (4d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", - "document": "srd", "creature": "horned-devil", "uses_type": null, "uses_param": null @@ -4109,7 +3767,6 @@ "fields": { "name": "Multiattack", "desc": "The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack.\n", - "document": "srd", "creature": "horned-devil", "uses_type": null, "uses_param": null @@ -4121,7 +3778,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 10 (1d8 + 6) piercing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 17 Constitution saving throw or lose 10 (3d6) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 (3d6). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", - "document": "srd", "creature": "horned-devil", "uses_type": null, "uses_param": null @@ -4133,7 +3789,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 10 (1d10 + 5) piercing damage.\n", - "document": "srd", "creature": "hydra", "uses_type": null, "uses_param": null @@ -4145,7 +3800,6 @@ "fields": { "name": "Multiattack", "desc": "The hydra makes as many bite attacks as it has heads.\n", - "document": "srd", "creature": "hydra", "uses_type": null, "uses_param": null @@ -4157,7 +3811,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) piercing damage plus 10 (3d6) cold damage.\n", - "document": "srd", "creature": "ice-devil", "uses_type": null, "uses_param": null @@ -4169,7 +3822,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 10 (2d4 + 5) slashing damage plus 10 (3d6) cold damage.\n", - "document": "srd", "creature": "ice-devil", "uses_type": null, "uses_param": null @@ -4181,7 +3833,6 @@ "fields": { "name": "Multiattack", "desc": "The devil makes three attacks: one with its bite, one with its claws, and one with its tail.\n", - "document": "srd", "creature": "ice-devil", "uses_type": null, "uses_param": null @@ -4193,7 +3844,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage.\n", - "document": "srd", "creature": "ice-devil", "uses_type": null, "uses_param": null @@ -4205,7 +3855,6 @@ "fields": { "name": "Wall of Ice", "desc": "The devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.\n\nWhen the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.\n\nThe wall lasts for 1 minute or until the devil is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.\n", - "document": "srd", "creature": "ice-devil", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 @@ -4217,7 +3866,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage.\n", - "document": "srd", "creature": "ice-mephit", "uses_type": null, "uses_param": null @@ -4229,7 +3877,6 @@ "fields": { "name": "Frost Breath", "desc": "The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "ice-mephit", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 @@ -4241,7 +3888,6 @@ "fields": { "name": "Invisibility", "desc": "The imp magically turns invisible until it attacks or until its concentration ends (as if concentrating on a spell). Any equipment the imp wears or carries is invisible with it.\n", - "document": "srd", "creature": "imp", "uses_type": null, "uses_param": null @@ -4253,7 +3899,6 @@ "fields": { "name": "Sting", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "imp", "uses_type": null, "uses_param": null @@ -4265,7 +3910,6 @@ "fields": { "name": "Sting (Bite in Beast Form)", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "imp", "uses_type": null, "uses_param": null @@ -4277,7 +3921,6 @@ "fields": { "name": "Multiattack", "desc": "The stalker makes two slam attacks.\n", - "document": "srd", "creature": "invisible-stalker", "uses_type": null, "uses_param": null @@ -4289,7 +3932,6 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", - "document": "srd", "creature": "invisible-stalker", "uses_type": null, "uses_param": null @@ -4301,7 +3943,6 @@ "fields": { "name": "Multiattack", "desc": "The golem makes two melee attacks.\n", - "document": "srd", "creature": "iron-golem", "uses_type": null, "uses_param": null @@ -4313,7 +3954,6 @@ "fields": { "name": "Poison Breath", "desc": "The golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "iron-golem", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 @@ -4325,7 +3965,6 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", - "document": "srd", "creature": "iron-golem", "uses_type": null, "uses_param": null @@ -4337,7 +3976,6 @@ "fields": { "name": "Sword", "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 23 (3d10 + 7) slashing damage.\n", - "document": "srd", "creature": "iron-golem", "uses_type": null, "uses_param": null @@ -4349,7 +3987,6 @@ "fields": { "name": "Dagger", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", - "document": "srd", "creature": "kobold", "uses_type": null, "uses_param": null @@ -4361,7 +3998,6 @@ "fields": { "name": "Sling", "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.\n", - "document": "srd", "creature": "kobold", "uses_type": null, "uses_param": null @@ -4373,7 +4009,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +17 to hit, reach 5 ft., one target. Hit: 23 (3d8 + 10) piercing damage. If the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the kraken, and it takes 42 (12d6) acid damage at the start of each of the kraken's turns.\n\nIf the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a DC 25 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", - "document": "srd", "creature": "kraken", "uses_type": null, "uses_param": null @@ -4385,7 +4020,6 @@ "fields": { "name": "Fling", "desc": "One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.\n", - "document": "srd", "creature": "kraken", "uses_type": null, "uses_param": null @@ -4397,7 +4031,6 @@ "fields": { "name": "Lightning Storm", "desc": "The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "kraken", "uses_type": null, "uses_param": null @@ -4409,7 +4042,6 @@ "fields": { "name": "Multiattack", "desc": "The kraken makes three tentacle attacks, each of which it can replace with one use of Fling.\n", - "document": "srd", "creature": "kraken", "uses_type": null, "uses_param": null @@ -4421,7 +4053,6 @@ "fields": { "name": "Tentacle", "desc": "Melee Weapon Attack: +17 to hit, reach 30 ft., one target. Hit: 20 (3d6 + 10) bludgeoning damage, and the target is grappled (escape DC 18). Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.\n", - "document": "srd", "creature": "kraken", "uses_type": null, "uses_param": null @@ -4433,7 +4064,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", - "document": "srd", "creature": "lamia", "uses_type": null, "uses_param": null @@ -4445,7 +4075,6 @@ "fields": { "name": "Dagger", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.\n", - "document": "srd", "creature": "lamia", "uses_type": null, "uses_param": null @@ -4457,7 +4086,6 @@ "fields": { "name": "Intoxicating Touch", "desc": "Melee Spell Attack: +5 to hit, reach 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.\n", - "document": "srd", "creature": "lamia", "uses_type": null, "uses_param": null @@ -4469,7 +4097,6 @@ "fields": { "name": "Multiattack", "desc": "The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch.\n", - "document": "srd", "creature": "lamia", "uses_type": null, "uses_param": null @@ -4481,7 +4108,6 @@ "fields": { "name": "Fist", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\n", - "document": "srd", "creature": "lemure", "uses_type": null, "uses_param": null @@ -4493,7 +4119,6 @@ "fields": { "name": "Paralyzing Touch", "desc": "Melee Spell Attack: +12 to hit, reach 5 ft., one creature. Hit: 10 (3d6) cold damage. The target must succeed on a DC 18 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "lich", "uses_type": null, "uses_param": null @@ -4505,7 +4130,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", "creature": "lizardfolk", "uses_type": null, "uses_param": null @@ -4517,7 +4141,6 @@ "fields": { "name": "Heavy Club", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", - "document": "srd", "creature": "lizardfolk", "uses_type": null, "uses_param": null @@ -4529,7 +4152,6 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", "creature": "lizardfolk", "uses_type": null, "uses_param": null @@ -4541,7 +4163,6 @@ "fields": { "name": "Multiattack", "desc": "The lizardfolk makes two melee attacks, each one with a different weapon.\n", - "document": "srd", "creature": "lizardfolk", "uses_type": null, "uses_param": null @@ -4553,7 +4174,6 @@ "fields": { "name": "Spiked Shield", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", "creature": "lizardfolk", "uses_type": null, "uses_param": null @@ -4565,7 +4185,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage.\n", - "document": "srd", "creature": "magma-mephit", "uses_type": null, "uses_param": null @@ -4577,7 +4196,6 @@ "fields": { "name": "Fire Breath", "desc": "The mephit exhales a 15-foot cone of fire. Each creature in that area must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "magma-mephit", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 @@ -4589,7 +4207,6 @@ "fields": { "name": "Touch", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d6) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 3 (1d6) fire damage at the end of each of its turns.\n", - "document": "srd", "creature": "magmin", "uses_type": null, "uses_param": null @@ -4601,7 +4218,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", - "document": "srd", "creature": "manticore", "uses_type": null, "uses_param": null @@ -4613,7 +4229,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "document": "srd", "creature": "manticore", "uses_type": null, "uses_param": null @@ -4625,7 +4240,6 @@ "fields": { "name": "Multiattack", "desc": "The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes.\n", - "document": "srd", "creature": "manticore", "uses_type": null, "uses_param": null @@ -4637,7 +4251,6 @@ "fields": { "name": "Tail Spike", "desc": "Ranged Weapon Attack: +5 to hit, range 100/200 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", - "document": "srd", "creature": "manticore", "uses_type": null, "uses_param": null @@ -4649,7 +4262,6 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "document": "srd", "creature": "marilith", "uses_type": null, "uses_param": null @@ -4661,7 +4273,6 @@ "fields": { "name": "Multiattack", "desc": "The marilith makes seven attacks: six with its longswords and one with its tail.\n", - "document": "srd", "creature": "marilith", "uses_type": null, "uses_param": null @@ -4673,7 +4284,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 15 (2d10 + 4) bludgeoning damage. If the target is Medium or smaller, it is grappled (escape DC 19). Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.\n", - "document": "srd", "creature": "marilith", "uses_type": null, "uses_param": null @@ -4685,7 +4295,6 @@ "fields": { "name": "Teleport", "desc": "The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "document": "srd", "creature": "marilith", "uses_type": null, "uses_param": null @@ -4697,7 +4306,6 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +5 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage.\n", - "document": "srd", "creature": "medusa", "uses_type": null, "uses_param": null @@ -4709,7 +4317,6 @@ "fields": { "name": "Multiattack", "desc": "The medusa makes either three melee attacks—one with its snake hair and two with its shortsword—or two ranged attacks with its longbow.\n", - "document": "srd", "creature": "medusa", "uses_type": null, "uses_param": null @@ -4721,7 +4328,6 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", "creature": "medusa", "uses_type": null, "uses_param": null @@ -4733,7 +4339,6 @@ "fields": { "name": "Snake Hair", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage plus 14 (4d6) poison damage.\n", - "document": "srd", "creature": "medusa", "uses_type": null, "uses_param": null @@ -4745,7 +4350,6 @@ "fields": { "name": "Spear", "desc": "Melee or Ranged Weapon Attack: +2 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hands to make a melee attack.\n", - "document": "srd", "creature": "merfolk", "uses_type": null, "uses_param": null @@ -4757,7 +4361,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "document": "srd", "creature": "merrow", "uses_type": null, "uses_param": null @@ -4769,7 +4372,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (2d4 + 4) slashing damage.\n", - "document": "srd", "creature": "merrow", "uses_type": null, "uses_param": null @@ -4781,7 +4383,6 @@ "fields": { "name": "Harpoon", "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.\n", - "document": "srd", "creature": "merrow", "uses_type": null, "uses_param": null @@ -4793,7 +4394,6 @@ "fields": { "name": "Multiattack", "desc": "The merrow makes two attacks: one with its bite and one with its claws or harpoon.\n", - "document": "srd", "creature": "merrow", "uses_type": null, "uses_param": null @@ -4805,7 +4405,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage.\n", - "document": "srd", "creature": "mimic", "uses_type": null, "uses_param": null @@ -4817,7 +4416,6 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait.\n", - "document": "srd", "creature": "mimic", "uses_type": null, "uses_param": null @@ -4829,7 +4427,6 @@ "fields": { "name": "Gore", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", - "document": "srd", "creature": "minotaur-skeleton", "uses_type": null, "uses_param": null @@ -4841,7 +4438,6 @@ "fields": { "name": "Greataxe", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", - "document": "srd", "creature": "minotaur-skeleton", "uses_type": null, "uses_param": null @@ -4853,7 +4449,6 @@ "fields": { "name": "Gore", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", - "document": "srd", "creature": "minotaur", "uses_type": null, "uses_param": null @@ -4865,7 +4460,6 @@ "fields": { "name": "Greataxe", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", - "document": "srd", "creature": "minotaur", "uses_type": null, "uses_param": null @@ -4877,7 +4471,6 @@ "fields": { "name": "Dreadful Glare", "desc": "The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a DC 16 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours.\n", - "document": "srd", "creature": "mummy-lord", "uses_type": null, "uses_param": null @@ -4889,7 +4482,6 @@ "fields": { "name": "Multiattack", "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", - "document": "srd", "creature": "mummy-lord", "uses_type": null, "uses_param": null @@ -4901,7 +4493,6 @@ "fields": { "name": "Rotting Fist", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage plus 21 (6d6) necrotic damage. If the target is a creature, it must succeed on a DC 16 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", - "document": "srd", "creature": "mummy-lord", "uses_type": null, "uses_param": null @@ -4913,7 +4504,6 @@ "fields": { "name": "Dreadful Glare", "desc": "The mummy targets one creature it can see within 60 feet of it. If the target can see the mummy, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.\n", - "document": "srd", "creature": "mummy", "uses_type": null, "uses_param": null @@ -4925,7 +4515,6 @@ "fields": { "name": "Multiattack", "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", - "document": "srd", "creature": "mummy", "uses_type": null, "uses_param": null @@ -4937,7 +4526,6 @@ "fields": { "name": "Rotting Fist", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage. If the target is a creature, it must succeed on a DC 12 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", - "document": "srd", "creature": "mummy", "uses_type": null, "uses_param": null @@ -4949,7 +4537,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 32 (5d10 + 5) piercing damage.\n", - "document": "srd", "creature": "nalfeshnee", "uses_type": null, "uses_param": null @@ -4961,7 +4548,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) slashing damage.\n", - "document": "srd", "creature": "nalfeshnee", "uses_type": null, "uses_param": null @@ -4973,7 +4559,6 @@ "fields": { "name": "Horror Nimbus", "desc": "The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.\n", - "document": "srd", "creature": "nalfeshnee", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -4985,7 +4570,6 @@ "fields": { "name": "Multiattack", "desc": "The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "nalfeshnee", "uses_type": null, "uses_param": null @@ -4997,7 +4581,6 @@ "fields": { "name": "Teleport", "desc": "The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "document": "srd", "creature": "nalfeshnee", "uses_type": null, "uses_param": null @@ -5009,7 +4592,6 @@ "fields": { "name": "Change Shape", "desc": "The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies.\n", - "document": "srd", "creature": "night-hag", "uses_type": null, "uses_param": null @@ -5021,7 +4603,6 @@ "fields": { "name": "Claws", "desc": "(Hag Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "document": "srd", "creature": "night-hag", "uses_type": null, "uses_param": null @@ -5033,7 +4614,6 @@ "fields": { "name": "Etherealness", "desc": "The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession.\n", - "document": "srd", "creature": "night-hag", "uses_type": null, "uses_param": null @@ -5045,7 +4625,6 @@ "fields": { "name": "Nightmare Haunting", "desc": "While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle. As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.\n", - "document": "srd", "creature": "night-hag", "uses_type": "PER_DAY", "uses_param": 1 @@ -5057,7 +4636,6 @@ "fields": { "name": "Ethereal Stride", "desc": "The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.\n", - "document": "srd", "creature": "nightmare", "uses_type": null, "uses_param": null @@ -5069,7 +4647,6 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage.\n", - "document": "srd", "creature": "nightmare", "uses_type": null, "uses_param": null @@ -5081,7 +4658,6 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage.\n", - "document": "srd", "creature": "ochre-jelly", "uses_type": null, "uses_param": null @@ -5093,7 +4669,6 @@ "fields": { "name": "Morningstar", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "document": "srd", "creature": "ogre-zombie", "uses_type": null, "uses_param": null @@ -5105,7 +4680,6 @@ "fields": { "name": "Greatclub", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "document": "srd", "creature": "ogre", "uses_type": null, "uses_param": null @@ -5117,7 +4691,6 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", - "document": "srd", "creature": "ogre", "uses_type": null, "uses_param": null @@ -5129,7 +4702,6 @@ "fields": { "name": "Change Shape", "desc": "The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size.\n", - "document": "srd", "creature": "oni", "uses_type": null, "uses_param": null @@ -5141,7 +4713,6 @@ "fields": { "name": "Claw", "desc": "(Oni Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", - "document": "srd", "creature": "oni", "uses_type": null, "uses_param": null @@ -5153,7 +4724,6 @@ "fields": { "name": "Glaive", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small or Medium form.\n", - "document": "srd", "creature": "oni", "uses_type": null, "uses_param": null @@ -5165,7 +4735,6 @@ "fields": { "name": "Multiattack", "desc": "The oni makes two attacks, either with its claws or its glaive.\n", - "document": "srd", "creature": "oni", "uses_type": null, "uses_param": null @@ -5177,7 +4746,6 @@ "fields": { "name": "Greataxe", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.\n", - "document": "srd", "creature": "orc", "uses_type": null, "uses_param": null @@ -5189,7 +4757,6 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "document": "srd", "creature": "orc", "uses_type": null, "uses_param": null @@ -5201,7 +4768,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 12 (2d8 + 3) piercing damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured.\n", - "document": "srd", "creature": "otyugh", "uses_type": null, "uses_param": null @@ -5213,7 +4779,6 @@ "fields": { "name": "Multiattack", "desc": "The otyugh makes three attacks: one with its bite and two with its tentacles.\n", - "document": "srd", "creature": "otyugh", "uses_type": null, "uses_param": null @@ -5225,7 +4790,6 @@ "fields": { "name": "Tentacle", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage. If the target is Medium or smaller, it is grappled (escape DC 13) and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.\n", - "document": "srd", "creature": "otyugh", "uses_type": null, "uses_param": null @@ -5237,7 +4801,6 @@ "fields": { "name": "Tentacle Slam", "desc": "The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the otyugh's next turn. On a successful save, the target takes half the bludgeoning damage and isn't stunned.\n", - "document": "srd", "creature": "otyugh", "uses_type": null, "uses_param": null @@ -5249,7 +4812,6 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one creature. Hit: 10 (1d10 + 5) piercing damage.\n", - "document": "srd", "creature": "owlbear", "uses_type": null, "uses_param": null @@ -5261,7 +4823,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", - "document": "srd", "creature": "owlbear", "uses_type": null, "uses_param": null @@ -5273,7 +4834,6 @@ "fields": { "name": "Multiattack", "desc": "The owlbear makes two attacks: one with its beak and one with its claws.\n", - "document": "srd", "creature": "owlbear", "uses_type": null, "uses_param": null @@ -5285,7 +4845,6 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "document": "srd", "creature": "pegasus", "uses_type": null, "uses_param": null @@ -5297,7 +4856,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) piercing damage. The target must succeed on a DC 21 Constitution saving throw or become poisoned. While poisoned in this way, the target can't regain hit points, and it takes 21 (6d6) poison damage at the start of each of its turns. The poisoned target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "pit-fiend", "uses_type": null, "uses_param": null @@ -5309,7 +4867,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 17 (2d8 + 8) slashing damage.\n", - "document": "srd", "creature": "pit-fiend", "uses_type": null, "uses_param": null @@ -5321,7 +4878,6 @@ "fields": { "name": "Mace", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) bludgeoning damage plus 21 (6d6) fire damage.\n", - "document": "srd", "creature": "pit-fiend", "uses_type": null, "uses_param": null @@ -5333,7 +4889,6 @@ "fields": { "name": "Multiattack", "desc": "The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail.\n", - "document": "srd", "creature": "pit-fiend", "uses_type": null, "uses_param": null @@ -5345,7 +4900,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 24 (3d10 + 8) bludgeoning damage.\n", - "document": "srd", "creature": "pit-fiend", "uses_type": null, "uses_param": null @@ -5357,7 +4911,6 @@ "fields": { "name": "Greatsword", "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage.\n", - "document": "srd", "creature": "planetar", "uses_type": null, "uses_param": null @@ -5369,7 +4922,6 @@ "fields": { "name": "Healing Touch", "desc": "The planetar touches another creature. The target magically regains 30 (6d8 + 3) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "document": "srd", "creature": "planetar", "uses_type": "PER_DAY", "uses_param": 4 @@ -5381,7 +4933,6 @@ "fields": { "name": "Multiattack", "desc": "The planetar makes two melee attacks.\n", - "document": "srd", "creature": "planetar", "uses_type": null, "uses_param": null @@ -5393,7 +4944,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 14 (3d6 + 4) piercing damage.\n", - "document": "srd", "creature": "plesiosaurus", "uses_type": null, "uses_param": null @@ -5405,7 +4955,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", - "document": "srd", "creature": "pseudodragon", "uses_type": null, "uses_param": null @@ -5417,7 +4966,6 @@ "fields": { "name": "Sting", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. If the saving throw fails by 5 or more, the target falls unconscious for the same duration, or until it takes damage or another creature uses an action to shake it awake.\n", - "document": "srd", "creature": "pseudodragon", "uses_type": null, "uses_param": null @@ -5429,7 +4977,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 22 (3d8 + 9) piercing damage. If the target is a Large or smaller creature, it must succeed on a DC 19 Dexterity saving throw or be swallowed by the worm. A swallowed creature is blinded and restrained, it has total cover against attacks and other effects outside the worm, and it takes 21 (6d6) acid damage at the start of each of the worm's turns.\n\nIf the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a DC 21 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 20 feet of movement, exiting prone.\n", - "document": "srd", "creature": "purple-worm", "uses_type": null, "uses_param": null @@ -5441,7 +4988,6 @@ "fields": { "name": "Multiattack", "desc": "The worm makes two attacks: one with its bite and one with its stinger.\n", - "document": "srd", "creature": "purple-worm", "uses_type": null, "uses_param": null @@ -5453,7 +4999,6 @@ "fields": { "name": "Tail Stinger", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 19 (3d6 + 9) piercing damage, and the target must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "purple-worm", "uses_type": null, "uses_param": null @@ -5465,7 +5010,6 @@ "fields": { "name": "Claws (Bite in Beast Form)", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must succeed on a DC 10 Constitution saving throw or take 5 (2d4) poison damage and become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "quasit", "uses_type": null, "uses_param": null @@ -5477,7 +5021,6 @@ "fields": { "name": "Invisibility", "desc": "The quasit magically turns invisible until it attacks or uses Scare, or until its concentration ends (as if concentrating on a spell). Any equipment the quasit wears or carries is invisible with it.\n", - "document": "srd", "creature": "quasit", "uses_type": null, "uses_param": null @@ -5489,7 +5032,6 @@ "fields": { "name": "Scare", "desc": "One creature of the quasit's choice within 20 feet of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.\n", - "document": "srd", "creature": "quasit", "uses_type": "PER_DAY", "uses_param": 1 @@ -5501,7 +5043,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature. The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a remove curse spell or similar magic.\n", - "document": "srd", "creature": "rakshasa", "uses_type": null, "uses_param": null @@ -5513,7 +5054,6 @@ "fields": { "name": "Multiattack", "desc": "The rakshasa makes two claw attacks.\n", - "document": "srd", "creature": "rakshasa", "uses_type": null, "uses_param": null @@ -5525,7 +5065,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage.\n", - "document": "srd", "creature": "red-dragon-wyrmling", "uses_type": null, "uses_param": null @@ -5537,7 +5076,6 @@ "fields": { "name": "Fire Breath", "desc": "The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "red-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -5549,7 +5087,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage. If the target is a creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.\n", - "document": "srd", "creature": "remorhaz", "uses_type": null, "uses_param": null @@ -5561,7 +5098,6 @@ "fields": { "name": "Swallow", "desc": "The remorhaz makes one bite attack against a Medium or smaller creature it is grappling. If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the remorhaz, and it takes 21 (6d6) acid damage at the start of each of the remorhaz's turns.\n\nIf the remorhaz takes 30 damage or more on a single turn from a creature inside it, the remorhaz must succeed on a DC 15 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the remorhaz. If the remorhaz dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", - "document": "srd", "creature": "remorhaz", "uses_type": null, "uses_param": null @@ -5573,7 +5109,6 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 27 (4d8 + 9) piercing damage.\n", - "document": "srd", "creature": "roc", "uses_type": null, "uses_param": null @@ -5585,7 +5120,6 @@ "fields": { "name": "Multiattack", "desc": "The roc makes two attacks: one with its beak and one with its talons.\n", - "document": "srd", "creature": "roc", "uses_type": null, "uses_param": null @@ -5597,7 +5131,6 @@ "fields": { "name": "Talons", "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 23 (4d6 + 9) slashing damage, and the target is grappled (escape DC 19). Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.\n", - "document": "srd", "creature": "roc", "uses_type": null, "uses_param": null @@ -5609,7 +5142,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 22 (4d8 + 4) piercing damage.\n", - "document": "srd", "creature": "roper", "uses_type": null, "uses_param": null @@ -5621,7 +5153,6 @@ "fields": { "name": "Multiattack", "desc": "The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite.\n", - "document": "srd", "creature": "roper", "uses_type": null, "uses_param": null @@ -5633,7 +5164,6 @@ "fields": { "name": "Reel", "desc": "The roper pulls each creature grappled by it up to 25 feet straight toward it.\n", - "document": "srd", "creature": "roper", "uses_type": null, "uses_param": null @@ -5645,7 +5175,6 @@ "fields": { "name": "Tendril", "desc": "Melee Weapon Attack: +7 to hit, reach 50 ft., one creature. Hit: The target is grappled (escape DC 15). Until the grapple ends, the target is restrained and has disadvantage on Strength checks and Strength saving throws, and the roper can't use the same tendril on another target.\n", - "document": "srd", "creature": "roper", "uses_type": null, "uses_param": null @@ -5657,7 +5186,6 @@ "fields": { "name": "Smother", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one Medium or smaller creature. Hit: The creature is grappled (escape DC 13). Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 (2d6 + 3) bludgeoning damage.\n", - "document": "srd", "creature": "rug-of-smothering", "uses_type": null, "uses_param": null @@ -5669,7 +5197,6 @@ "fields": { "name": "Antennae", "desc": "The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the rust monster's touch. If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.\n", - "document": "srd", "creature": "rust-monster", "uses_type": null, "uses_param": null @@ -5681,7 +5208,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "document": "srd", "creature": "rust-monster", "uses_type": null, "uses_param": null @@ -5693,7 +5219,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) piercing damage.\n", - "document": "srd", "creature": "sahuagin", "uses_type": null, "uses_param": null @@ -5705,7 +5230,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) slashing damage.\n", - "document": "srd", "creature": "sahuagin", "uses_type": null, "uses_param": null @@ -5717,7 +5241,6 @@ "fields": { "name": "Multiattack", "desc": "The sahuagin makes two melee attacks: one with its bite and one with its claws or spear.\n", - "document": "srd", "creature": "sahuagin", "uses_type": null, "uses_param": null @@ -5729,7 +5252,6 @@ "fields": { "name": "Spear", "desc": "Melee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.\n", - "document": "srd", "creature": "sahuagin", "uses_type": null, "uses_param": null @@ -5741,7 +5263,6 @@ "fields": { "name": "Multiattack", "desc": "The salamander makes two attacks: one with its spear and one with its tail.\n", - "document": "srd", "creature": "salamander", "uses_type": null, "uses_param": null @@ -5753,7 +5274,6 @@ "fields": { "name": "Spear", "desc": "Melee or Ranged Weapon Attack: +7 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", - "document": "srd", "creature": "salamander", "uses_type": null, "uses_param": null @@ -5765,7 +5285,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage, and the target is grappled (escape DC 14). Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.\n", - "document": "srd", "creature": "salamander", "uses_type": null, "uses_param": null @@ -5777,7 +5296,6 @@ "fields": { "name": "Ram", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) bludgeoning damage.\n", - "document": "srd", "creature": "satyr", "uses_type": null, "uses_param": null @@ -5789,7 +5307,6 @@ "fields": { "name": "Shortbow", "desc": "Ranged Weapon Attack: +5 to hit, range 80/320 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "document": "srd", "creature": "satyr", "uses_type": null, "uses_param": null @@ -5801,7 +5318,6 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "document": "srd", "creature": "satyr", "uses_type": null, "uses_param": null @@ -5813,7 +5329,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", - "document": "srd", "creature": "sea-hag", "uses_type": null, "uses_param": null @@ -5825,7 +5340,6 @@ "fields": { "name": "Death Glare", "desc": "The hag targets one frightened creature she can see within 30 feet of her. If the target can see the hag, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.\n", - "document": "srd", "creature": "sea-hag", "uses_type": null, "uses_param": null @@ -5837,7 +5351,6 @@ "fields": { "name": "Illusory Appearance", "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 16 Intelligence (Investigation) check to discern that the hag is disguised.\n", - "document": "srd", "creature": "sea-hag", "uses_type": null, "uses_param": null @@ -5849,7 +5362,6 @@ "fields": { "name": "Strength Drain", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) necrotic damage, and the target's Strength score is reduced by 1d4. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.\n\nIf a non-evil humanoid dies from this attack, a new shadow rises from the corpse 1d4 hours later.\n", - "document": "srd", "creature": "shadow", "uses_type": null, "uses_param": null @@ -5861,7 +5373,6 @@ "fields": { "name": "Engulf", "desc": "The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must succeed on a DC 14 Constitution saving throw at the start of each of the mound's turns or take 13 (2d8 + 4) bludgeoning damage. If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time.\n", - "document": "srd", "creature": "shambling-mound", "uses_type": null, "uses_param": null @@ -5873,7 +5384,6 @@ "fields": { "name": "Multiattack", "desc": "The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is grappled (escape DC 14), and the shambling mound uses its Engulf on it.\n", - "document": "srd", "creature": "shambling-mound", "uses_type": null, "uses_param": null @@ -5885,7 +5395,6 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "document": "srd", "creature": "shambling-mound", "uses_type": null, "uses_param": null @@ -5897,7 +5406,6 @@ "fields": { "name": "Fist", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "document": "srd", "creature": "shield-guardian", "uses_type": null, "uses_param": null @@ -5909,7 +5417,6 @@ "fields": { "name": "Multiattack", "desc": "The guardian makes two fist attacks.\n", - "document": "srd", "creature": "shield-guardian", "uses_type": null, "uses_param": null @@ -5921,7 +5428,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "document": "srd", "creature": "silver-dragon-wyrmling", "uses_type": null, "uses_param": null @@ -5933,7 +5439,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "silver-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -5945,7 +5450,6 @@ "fields": { "name": "Shortbow", "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", "creature": "skeleton", "uses_type": null, "uses_param": null @@ -5957,7 +5461,6 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", "creature": "skeleton", "uses_type": null, "uses_param": null @@ -5969,7 +5472,6 @@ "fields": { "name": "Flying Sword", "desc": "The solar releases its greatsword to hover magically in an unoccupied space within 5 feet of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 feet and either make one attack against a target or return to the solar's hands. If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies.\n", - "document": "srd", "creature": "solar", "uses_type": null, "uses_param": null @@ -5981,7 +5483,6 @@ "fields": { "name": "Greatsword", "desc": "Melee Weapon Attack: +15 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) slashing damage plus 27 (6d8) radiant damage.\n", - "document": "srd", "creature": "solar", "uses_type": null, "uses_param": null @@ -5993,7 +5494,6 @@ "fields": { "name": "Healing Touch", "desc": "The solar touches another creature. The target magically regains 40 (8d8 + 4) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "document": "srd", "creature": "solar", "uses_type": "PER_DAY", "uses_param": 4 @@ -6005,7 +5505,6 @@ "fields": { "name": "Multiattack", "desc": "The solar makes two greatsword attacks.\n", - "document": "srd", "creature": "solar", "uses_type": null, "uses_param": null @@ -6017,7 +5516,6 @@ "fields": { "name": "Slaying Longbow", "desc": "Ranged Weapon Attack: +13 to hit, range 150/600 ft., one target. Hit: 15 (2d8 + 6) piercing damage plus 27 (6d8) radiant damage. If the target is a creature that has 100 hit points or fewer, it must succeed on a DC 15 Constitution saving throw or die.\n", - "document": "srd", "creature": "solar", "uses_type": null, "uses_param": null @@ -6029,7 +5527,6 @@ "fields": { "name": "Life Drain", "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) necrotic damage. The target must succeed on a DC 10 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "document": "srd", "creature": "specter", "uses_type": null, "uses_param": null @@ -6041,7 +5538,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 7 (1d6 + 4) piercing damage, and the target must make a DC 13 Constitution saving throw, taking 31 (7d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "spirit-naga", "uses_type": null, "uses_param": null @@ -6053,7 +5549,6 @@ "fields": { "name": "Heart Sight", "desc": "The sprite touches a creature and magically knows the creature's current emotional state. If the target fails a DC 10 Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.\n", - "document": "srd", "creature": "sprite", "uses_type": null, "uses_param": null @@ -6065,7 +5560,6 @@ "fields": { "name": "Invisibility", "desc": "The sprite magically turns invisible until it attacks or casts a spell, or until its concentration ends (as if concentrating on a spell). Any equipment the sprite wears or carries is invisible with it.\n", - "document": "srd", "creature": "sprite", "uses_type": null, "uses_param": null @@ -6077,7 +5571,6 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 1 slashing damage.\n", - "document": "srd", "creature": "sprite", "uses_type": null, "uses_param": null @@ -6089,7 +5582,6 @@ "fields": { "name": "Shortbow", "desc": "Ranged Weapon Attack: +6 to hit, range 40/160 ft., one target. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or become poisoned for 1 minute. If its saving throw result is 5 or lower, the poisoned target falls unconscious for the same duration, or until it takes damage or another creature takes an action to shake it awake.\n", - "document": "srd", "creature": "sprite", "uses_type": null, "uses_param": null @@ -6101,7 +5593,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 2 (1d4) slashing damage plus 2 (1d4) fire damage.\n", - "document": "srd", "creature": "steam-mephit", "uses_type": null, "uses_param": null @@ -6113,7 +5604,6 @@ "fields": { "name": "Steam Breath", "desc": "The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 4 (1d8) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "steam-mephit", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 @@ -6125,7 +5615,6 @@ "fields": { "name": "Blood Drain", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 5 (1d4 + 3) piercing damage, and the stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 (1d4 + 3) hit points due to blood loss.\n\nThe stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies. A creature, including the target, can use its action to detach the stirge.\n", - "document": "srd", "creature": "stirge", "uses_type": null, "uses_param": null @@ -6137,7 +5626,6 @@ "fields": { "name": "Greatclub", "desc": "Melee Weapon Attack: +9 to hit, reach 15 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", - "document": "srd", "creature": "stone-giant", "uses_type": null, "uses_param": null @@ -6149,7 +5637,6 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greatclub attacks.\n", - "document": "srd", "creature": "stone-giant", "uses_type": null, "uses_param": null @@ -6161,7 +5648,6 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage. If the target is a creature, it must succeed on a DC 17 Strength saving throw or be knocked prone.\n", - "document": "srd", "creature": "stone-giant", "uses_type": null, "uses_param": null @@ -6173,7 +5659,6 @@ "fields": { "name": "Multiattack", "desc": "The golem makes two slam attacks.\n", - "document": "srd", "creature": "stone-golem", "uses_type": null, "uses_param": null @@ -6185,7 +5670,6 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", - "document": "srd", "creature": "stone-golem", "uses_type": null, "uses_param": null @@ -6197,7 +5681,6 @@ "fields": { "name": "Slow", "desc": "The golem targets one or more creatures it can see within 10 feet of it. Each target must make a DC 17 Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "stone-golem", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -6209,7 +5692,6 @@ "fields": { "name": "Greatsword", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 30 (6d6 + 9) slashing damage.\n", - "document": "srd", "creature": "storm-giant", "uses_type": null, "uses_param": null @@ -6221,7 +5703,6 @@ "fields": { "name": "Lightning Strike", "desc": "The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a DC 17 Dexterity saving throw, taking 54 (12d8) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "storm-giant", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -6233,7 +5714,6 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greatsword attacks.\n", - "document": "srd", "creature": "storm-giant", "uses_type": null, "uses_param": null @@ -6245,7 +5725,6 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +14 to hit, range 60/240 ft., one target. Hit: 35 (4d12 + 9) bludgeoning damage.\n", - "document": "srd", "creature": "storm-giant", "uses_type": null, "uses_param": null @@ -6257,7 +5736,6 @@ "fields": { "name": "Charm", "desc": "One humanoid the fiend can see within 30 feet of it must succeed on a DC 15 Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the fiend's verbal or telepathic commands. If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.\n\nThe fiend can have only one target charmed at a time. If it charms another, the effect on the previous target ends.\n", - "document": "srd", "creature": "succubusincubus", "uses_type": null, "uses_param": null @@ -6269,7 +5747,6 @@ "fields": { "name": "Claw", "desc": "(Fiend Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "document": "srd", "creature": "succubusincubus", "uses_type": null, "uses_param": null @@ -6281,7 +5758,6 @@ "fields": { "name": "Draining Kiss", "desc": "The fiend kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "document": "srd", "creature": "succubusincubus", "uses_type": null, "uses_param": null @@ -6293,7 +5769,6 @@ "fields": { "name": "Etherealness", "desc": "The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa.\n", - "document": "srd", "creature": "succubusincubus", "uses_type": null, "uses_param": null @@ -6305,7 +5780,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 36 (4d12 + 10) piercing damage. If the target is a creature, it is grappled (escape DC 20). Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.\n", - "document": "srd", "creature": "tarrasque", "uses_type": null, "uses_param": null @@ -6317,7 +5791,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +19 to hit, reach 15 ft., one target. Hit: 28 (4d8 + 10) slashing damage.\n", - "document": "srd", "creature": "tarrasque", "uses_type": null, "uses_param": null @@ -6329,7 +5802,6 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours.\n", - "document": "srd", "creature": "tarrasque", "uses_type": null, "uses_param": null @@ -6341,7 +5813,6 @@ "fields": { "name": "Horns", "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 32 (4d10 + 10) piercing damage.\n", - "document": "srd", "creature": "tarrasque", "uses_type": null, "uses_param": null @@ -6353,7 +5824,6 @@ "fields": { "name": "Multiattack", "desc": "The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite.\n", - "document": "srd", "creature": "tarrasque", "uses_type": null, "uses_param": null @@ -6365,7 +5835,6 @@ "fields": { "name": "Swallow", "desc": "The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the tarrasque, and it takes 56 (16d6) acid damage at the start of each of the tarrasque's turns.\n\nIf the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a DC 20 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 30 feet of movement, exiting prone.\n", - "document": "srd", "creature": "tarrasque", "uses_type": null, "uses_param": null @@ -6377,7 +5846,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +19 to hit, reach 20 ft., one target. Hit: 24 (4d6 + 10) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be knocked prone.\n", - "document": "srd", "creature": "tarrasque", "uses_type": null, "uses_param": null @@ -6389,7 +5857,6 @@ "fields": { "name": "Animate Trees", "desc": "The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a treant, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.\n", - "document": "srd", "creature": "treant", "uses_type": "PER_DAY", "uses_param": 1 @@ -6401,7 +5868,6 @@ "fields": { "name": "Multiattack", "desc": "The treant makes two slam attacks.\n", - "document": "srd", "creature": "treant", "uses_type": null, "uses_param": null @@ -6413,7 +5879,6 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +10 to hit, range 60/180 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", - "document": "srd", "creature": "treant", "uses_type": null, "uses_param": null @@ -6425,7 +5890,6 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 16 (3d6 + 6) bludgeoning damage.\n", - "document": "srd", "creature": "treant", "uses_type": null, "uses_param": null @@ -6437,7 +5901,6 @@ "fields": { "name": "Gore", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 24 (4d8 + 6) piercing damage.\n", - "document": "srd", "creature": "triceratops", "uses_type": null, "uses_param": null @@ -6449,7 +5912,6 @@ "fields": { "name": "Stomp", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.\n", - "document": "srd", "creature": "triceratops", "uses_type": null, "uses_param": null @@ -6461,7 +5923,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) piercing damage.\n", - "document": "srd", "creature": "troll", "uses_type": null, "uses_param": null @@ -6473,7 +5934,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", "creature": "troll", "uses_type": null, "uses_param": null @@ -6485,7 +5945,6 @@ "fields": { "name": "Multiattack", "desc": "The troll makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "troll", "uses_type": null, "uses_param": null @@ -6497,7 +5956,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 33 (4d12 + 7) piercing damage. If the target is a Medium or smaller creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.\n", - "document": "srd", "creature": "tyrannosaurus-rex", "uses_type": null, "uses_param": null @@ -6509,7 +5967,6 @@ "fields": { "name": "Multiattack", "desc": "The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target.\n", - "document": "srd", "creature": "tyrannosaurus-rex", "uses_type": null, "uses_param": null @@ -6521,7 +5978,6 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", - "document": "srd", "creature": "tyrannosaurus-rex", "uses_type": null, "uses_param": null @@ -6533,7 +5989,6 @@ "fields": { "name": "Healing Touch", "desc": "The unicorn touches another creature with its horn. The target magically regains 11 (2d8 + 2) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target.\n", - "document": "srd", "creature": "unicorn", "uses_type": "PER_DAY", "uses_param": 3 @@ -6545,7 +6000,6 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "document": "srd", "creature": "unicorn", "uses_type": null, "uses_param": null @@ -6557,7 +6011,6 @@ "fields": { "name": "Horn", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "document": "srd", "creature": "unicorn", "uses_type": null, "uses_param": null @@ -6569,7 +6022,6 @@ "fields": { "name": "Multiattack", "desc": "The unicorn makes two attacks: one with its hooves and one with its horn.\n", - "document": "srd", "creature": "unicorn", "uses_type": null, "uses_param": null @@ -6581,7 +6033,6 @@ "fields": { "name": "Teleport", "desc": "The unicorn magically teleports itself and up to three willing creatures it can see within 5 feet of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away.\n", - "document": "srd", "creature": "unicorn", "uses_type": "PER_DAY", "uses_param": 1 @@ -6593,7 +6044,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "document": "srd", "creature": "vampire-spawn", "uses_type": null, "uses_param": null @@ -6605,7 +6055,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 8 (2d4 + 3) slashing damage. Instead of dealing damage, the vampire can grapple the target (escape DC 13).\n", - "document": "srd", "creature": "vampire-spawn", "uses_type": null, "uses_param": null @@ -6617,7 +6066,6 @@ "fields": { "name": "Multiattack", "desc": "The vampire makes two attacks, only one of which can be a bite attack.\n", - "document": "srd", "creature": "vampire-spawn", "uses_type": null, "uses_param": null @@ -6629,7 +6077,6 @@ "fields": { "name": "Bite", "desc": "(Bat or Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 7 (1d6 + 4) piercing damage plus 10 (3d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a vampire spawn under the vampire's control.\n", - "document": "srd", "creature": "vampire", "uses_type": null, "uses_param": null @@ -6641,7 +6088,6 @@ "fields": { "name": "Charm", "desc": "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a DC 17 Wisdom saving throw against this magic or be charmed by the vampire. The charmed target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.\n\nEach time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect.\n", - "document": "srd", "creature": "vampire", "uses_type": null, "uses_param": null @@ -6653,7 +6099,6 @@ "fields": { "name": "Children of the Night", "desc": "The vampire magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the vampire can call 3d6 wolves instead. The called creatures arrive in 1d4 rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action.\n", - "document": "srd", "creature": "vampire", "uses_type": "PER_DAY", "uses_param": 1 @@ -6665,7 +6110,6 @@ "fields": { "name": "Multiattack", "desc": "(Vampire Form Only). The vampire makes two attacks, only one of which can be a bite attack.\n", - "document": "srd", "creature": "vampire", "uses_type": null, "uses_param": null @@ -6677,7 +6121,6 @@ "fields": { "name": "Unarmed Strike", "desc": "(Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one creature. Hit: 8 (1d8 + 4) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape DC 18).\n", - "document": "srd", "creature": "vampire", "uses_type": null, "uses_param": null @@ -6689,7 +6132,6 @@ "fields": { "name": "Multiattack", "desc": "The fungus makes 1d4 Rotting Touch attacks.\n", - "document": "srd", "creature": "violet-fungus", "uses_type": null, "uses_param": null @@ -6701,7 +6143,6 @@ "fields": { "name": "Rotting Touch", "desc": "Melee Weapon Attack: +2 to hit, reach 10 ft., one creature. Hit: 4 (1d8) necrotic damage.\n", - "document": "srd", "creature": "violet-fungus", "uses_type": null, "uses_param": null @@ -6713,7 +6154,6 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", - "document": "srd", "creature": "vrock", "uses_type": null, "uses_param": null @@ -6725,7 +6165,6 @@ "fields": { "name": "Multiattack", "desc": "The vrock makes two attacks: one with its beak and one with its talons.\n", - "document": "srd", "creature": "vrock", "uses_type": null, "uses_param": null @@ -6737,7 +6176,6 @@ "fields": { "name": "Spores", "desc": "A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.\n", - "document": "srd", "creature": "vrock", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 @@ -6749,7 +6187,6 @@ "fields": { "name": "Stunning Screech", "desc": "The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must succeed on a DC 14 Constitution saving throw or be stunned until the end of the vrock's next turn.\n", - "document": "srd", "creature": "vrock", "uses_type": "PER_DAY", "uses_param": 1 @@ -6761,7 +6198,6 @@ "fields": { "name": "Talons", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", - "document": "srd", "creature": "vrock", "uses_type": null, "uses_param": null @@ -6773,7 +6209,6 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "document": "srd", "creature": "warhorse-skeleton", "uses_type": null, "uses_param": null @@ -6785,7 +6220,6 @@ "fields": { "name": "Multiattack", "desc": "The elemental makes two slam attacks.\n", - "document": "srd", "creature": "water-elemental", "uses_type": null, "uses_param": null @@ -6797,7 +6231,6 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "document": "srd", "creature": "water-elemental", "uses_type": null, "uses_param": null @@ -6809,7 +6242,6 @@ "fields": { "name": "Whelm", "desc": "Each creature in the elemental's space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the elemental's space.\n\nThe elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a DC 14 Strength and succeeding.\n", - "document": "srd", "creature": "water-elemental", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 4 @@ -6821,7 +6253,6 @@ "fields": { "name": "Bite", "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage. If the target is a humanoid, it must succeed on a DC 14 Constitution saving throw or be cursed with werebear lycanthropy.\n", - "document": "srd", "creature": "werebear", "uses_type": null, "uses_param": null @@ -6833,7 +6264,6 @@ "fields": { "name": "Claw", "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "document": "srd", "creature": "werebear", "uses_type": null, "uses_param": null @@ -6845,7 +6275,6 @@ "fields": { "name": "Greataxe", "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) slashing damage.\n", - "document": "srd", "creature": "werebear", "uses_type": null, "uses_param": null @@ -6857,7 +6286,6 @@ "fields": { "name": "Multiattack", "desc": "In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid.\n", - "document": "srd", "creature": "werebear", "uses_type": null, "uses_param": null @@ -6869,7 +6297,6 @@ "fields": { "name": "Maul", "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", - "document": "srd", "creature": "wereboar", "uses_type": null, "uses_param": null @@ -6881,7 +6308,6 @@ "fields": { "name": "Multiattack", "desc": "(Humanoid or Hybrid Form Only). The wereboar makes two attacks, only one of which can be with its tusks.\n", - "document": "srd", "creature": "wereboar", "uses_type": null, "uses_param": null @@ -6893,7 +6319,6 @@ "fields": { "name": "Tusks", "desc": "(Boar or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with wereboar lycanthropy.\n", - "document": "srd", "creature": "wereboar", "uses_type": null, "uses_param": null @@ -6905,7 +6330,6 @@ "fields": { "name": "Bite", "desc": "(Rat or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 11 Constitution saving throw or be cursed with wererat lycanthropy.\n", - "document": "srd", "creature": "wererat", "uses_type": null, "uses_param": null @@ -6917,7 +6341,6 @@ "fields": { "name": "Hand Crossbow", "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", "creature": "wererat", "uses_type": null, "uses_param": null @@ -6929,7 +6352,6 @@ "fields": { "name": "Multiattack", "desc": "(Humanoid or Hybrid Form Only). The wererat makes two attacks, only one of which can be a bite.\n", - "document": "srd", "creature": "wererat", "uses_type": null, "uses_param": null @@ -6941,7 +6363,6 @@ "fields": { "name": "Shortsword", "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "document": "srd", "creature": "wererat", "uses_type": null, "uses_param": null @@ -6953,7 +6374,6 @@ "fields": { "name": "Bite", "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage. If the target is a humanoid, it must succeed on a DC 13 Constitution saving throw or be cursed with weretiger lycanthropy.\n", - "document": "srd", "creature": "weretiger", "uses_type": null, "uses_param": null @@ -6965,7 +6385,6 @@ "fields": { "name": "Claw", "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.\n", - "document": "srd", "creature": "weretiger", "uses_type": null, "uses_param": null @@ -6977,7 +6396,6 @@ "fields": { "name": "Longbow", "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "document": "srd", "creature": "weretiger", "uses_type": null, "uses_param": null @@ -6989,7 +6407,6 @@ "fields": { "name": "Multiattack", "desc": "(Humanoid or Hybrid Form Only). In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks.\n", - "document": "srd", "creature": "weretiger", "uses_type": null, "uses_param": null @@ -7001,7 +6418,6 @@ "fields": { "name": "Scimitar", "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "document": "srd", "creature": "weretiger", "uses_type": null, "uses_param": null @@ -7013,7 +6429,6 @@ "fields": { "name": "Bite", "desc": "(Wolf or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with werewolf lycanthropy.\n", - "document": "srd", "creature": "werewolf", "uses_type": null, "uses_param": null @@ -7025,7 +6440,6 @@ "fields": { "name": "Claws", "desc": "(Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 7 (2d4 + 2) slashing damage.\n", - "document": "srd", "creature": "werewolf", "uses_type": null, "uses_param": null @@ -7037,7 +6451,6 @@ "fields": { "name": "Multiattack", "desc": "(Humanoid or Hybrid Form Only). The werewolf makes two attacks: one with its bite and one with its claws or spear.\n", - "document": "srd", "creature": "werewolf", "uses_type": null, "uses_param": null @@ -7049,7 +6462,6 @@ "fields": { "name": "Spear", "desc": "(Humanoid Form Only). Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", - "document": "srd", "creature": "werewolf", "uses_type": null, "uses_param": null @@ -7061,7 +6473,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage.\n", - "document": "srd", "creature": "white-dragon-wyrmling", "uses_type": null, "uses_param": null @@ -7073,7 +6484,6 @@ "fields": { "name": "Cold Breath", "desc": "The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a DC 12 Constitution saving throw, taking 22 (5d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "white-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -7085,7 +6495,6 @@ "fields": { "name": "Life Drain", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 5 (1d6 + 2) necrotic damage. The target must succeed on a DC 13 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n\nA humanoid slain by this attack rises 24 hours later as a zombie under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time.\n", - "document": "srd", "creature": "wight", "uses_type": null, "uses_param": null @@ -7097,7 +6506,6 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "document": "srd", "creature": "wight", "uses_type": null, "uses_param": null @@ -7109,7 +6517,6 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage, or 7 (1d10 + 2) slashing damage if used with two hands.\n", - "document": "srd", "creature": "wight", "uses_type": null, "uses_param": null @@ -7121,7 +6528,6 @@ "fields": { "name": "Multiattack", "desc": "The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack.\n", - "document": "srd", "creature": "wight", "uses_type": null, "uses_param": null @@ -7133,7 +6539,6 @@ "fields": { "name": "Invisibility", "desc": "The will-o'-wisp and its light magically become invisible until it attacks or uses its Consume Life, or until its concentration ends (as if concentrating on a spell).\n", - "document": "srd", "creature": "will-o-wisp", "uses_type": null, "uses_param": null @@ -7145,7 +6550,6 @@ "fields": { "name": "Shock", "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d8) lightning damage.\n", - "document": "srd", "creature": "will-o-wisp", "uses_type": null, "uses_param": null @@ -7157,7 +6561,6 @@ "fields": { "name": "Create Specter", "desc": "The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the wraith's control. The wraith can have no more than seven specters under its control at one time.\n", - "document": "srd", "creature": "wraith", "uses_type": null, "uses_param": null @@ -7169,7 +6572,6 @@ "fields": { "name": "Life Drain", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 21 (4d8 + 3) necrotic damage. The target must succeed on a DC 14 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "document": "srd", "creature": "wraith", "uses_type": null, "uses_param": null @@ -7181,7 +6583,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\n", - "document": "srd", "creature": "wyvern", "uses_type": null, "uses_param": null @@ -7193,7 +6594,6 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "document": "srd", "creature": "wyvern", "uses_type": null, "uses_param": null @@ -7205,7 +6605,6 @@ "fields": { "name": "Multiattack", "desc": "The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack.\n", - "document": "srd", "creature": "wyvern", "uses_type": null, "uses_param": null @@ -7217,7 +6616,6 @@ "fields": { "name": "Stinger", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage. The target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "wyvern", "uses_type": null, "uses_param": null @@ -7229,7 +6627,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (3d6 + 3) piercing damage.\n", - "document": "srd", "creature": "xorn", "uses_type": null, "uses_param": null @@ -7241,7 +6638,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "document": "srd", "creature": "xorn", "uses_type": null, "uses_param": null @@ -7253,7 +6649,6 @@ "fields": { "name": "Multiattack", "desc": "The xorn makes three claw attacks and one bite attack.\n", - "document": "srd", "creature": "xorn", "uses_type": null, "uses_param": null @@ -7265,7 +6660,6 @@ "fields": { "name": "Acid Breath", "desc": "The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "young-black-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -7277,7 +6671,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.\n", - "document": "srd", "creature": "young-black-dragon", "uses_type": null, "uses_param": null @@ -7289,7 +6682,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", "creature": "young-black-dragon", "uses_type": null, "uses_param": null @@ -7301,7 +6693,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "young-black-dragon", "uses_type": null, "uses_param": null @@ -7313,7 +6704,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.\n", - "document": "srd", "creature": "young-blue-dragon", "uses_type": null, "uses_param": null @@ -7325,7 +6715,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", - "document": "srd", "creature": "young-blue-dragon", "uses_type": null, "uses_param": null @@ -7337,7 +6726,6 @@ "fields": { "name": "Lightning Breath", "desc": "The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "young-blue-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -7349,7 +6737,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "young-blue-dragon", "uses_type": null, "uses_param": null @@ -7361,7 +6748,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "document": "srd", "creature": "young-brass-dragon", "uses_type": null, "uses_param": null @@ -7373,7 +6759,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "document": "srd", "creature": "young-brass-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -7385,7 +6770,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", "creature": "young-brass-dragon", "uses_type": null, "uses_param": null @@ -7397,7 +6781,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "young-brass-dragon", "uses_type": null, "uses_param": null @@ -7409,7 +6792,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.\n", - "document": "srd", "creature": "young-bronze-dragon", "uses_type": null, "uses_param": null @@ -7421,7 +6803,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.\n", - "document": "srd", "creature": "young-bronze-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -7433,7 +6814,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", - "document": "srd", "creature": "young-bronze-dragon", "uses_type": null, "uses_param": null @@ -7445,7 +6825,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "young-bronze-dragon", "uses_type": null, "uses_param": null @@ -7457,7 +6836,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "document": "srd", "creature": "young-copper-dragon", "uses_type": null, "uses_param": null @@ -7469,7 +6847,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "document": "srd", "creature": "young-copper-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -7481,7 +6858,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", "creature": "young-copper-dragon", "uses_type": null, "uses_param": null @@ -7493,7 +6869,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "young-copper-dragon", "uses_type": null, "uses_param": null @@ -7505,7 +6880,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "document": "srd", "creature": "young-gold-dragon", "uses_type": null, "uses_param": null @@ -7517,7 +6891,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "young-gold-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -7529,7 +6902,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", "creature": "young-gold-dragon", "uses_type": null, "uses_param": null @@ -7541,7 +6913,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "young-gold-dragon", "uses_type": null, "uses_param": null @@ -7553,7 +6924,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.\n", - "document": "srd", "creature": "young-green-dragon", "uses_type": null, "uses_param": null @@ -7565,7 +6935,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", "creature": "young-green-dragon", "uses_type": null, "uses_param": null @@ -7577,7 +6946,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "young-green-dragon", "uses_type": null, "uses_param": null @@ -7589,7 +6957,6 @@ "fields": { "name": "Poison Breath", "desc": "The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "young-green-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -7601,7 +6968,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.\n", - "document": "srd", "creature": "young-red-dragon", "uses_type": null, "uses_param": null @@ -7613,7 +6979,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", "creature": "young-red-dragon", "uses_type": null, "uses_param": null @@ -7625,7 +6990,6 @@ "fields": { "name": "Fire Breath", "desc": "The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "young-red-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -7637,7 +7001,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "young-red-dragon", "uses_type": null, "uses_param": null @@ -7649,7 +7012,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "document": "srd", "creature": "young-silver-dragon", "uses_type": null, "uses_param": null @@ -7661,7 +7023,6 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "document": "srd", "creature": "young-silver-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -7673,7 +7034,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "document": "srd", "creature": "young-silver-dragon", "uses_type": null, "uses_param": null @@ -7685,7 +7045,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "young-silver-dragon", "uses_type": null, "uses_param": null @@ -7697,7 +7056,6 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.\n", - "document": "srd", "creature": "young-white-dragon", "uses_type": null, "uses_param": null @@ -7709,7 +7067,6 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "document": "srd", "creature": "young-white-dragon", "uses_type": null, "uses_param": null @@ -7721,7 +7078,6 @@ "fields": { "name": "Cold Breath", "desc": "The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "document": "srd", "creature": "young-white-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 @@ -7733,7 +7089,6 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "document": "srd", "creature": "young-white-dragon", "uses_type": null, "uses_param": null @@ -7745,7 +7100,6 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.\n", - "document": "srd", "creature": "zombie", "uses_type": null, "uses_param": null From cf47b40fa553d614c4f3256ed9a0aff77f86ae3d Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 09:11:33 -0500 Subject: [PATCH 68/84] Getting parent sorted out. --- api_v2/management/commands/export.py | 4 +- ...1_rename_creature_creatureaction_parent.py | 18 + api_v2/models/creature.py | 14 +- .../srd/CreatureAction.json | 1292 ++++++++--------- 4 files changed, 674 insertions(+), 654 deletions(-) create mode 100644 api_v2/migrations/0091_rename_creature_creatureaction_parent.py diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index f2c5554f..37a65cba 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -114,10 +114,8 @@ def handle(self, *args, **options) -> None: if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES: if model.__name__ in CHILD_MODEL_NAMES: modelq=None - if model.__name__=='CreatureAction': - modelq = model.objects.filter(creature__document=doc).order_by('pk') if model.__name__=='CreatureActionAttack': - modelq = model.objects.filter(parent__creature__document=doc).order_by('pk') + modelq = model.objects.filter(parent__parent__document=doc).order_by('pk') if modelq is None: modelq = model.objects.filter(parent__document=doc).order_by('pk') else: diff --git a/api_v2/migrations/0091_rename_creature_creatureaction_parent.py b/api_v2/migrations/0091_rename_creature_creatureaction_parent.py new file mode 100644 index 00000000..6b393283 --- /dev/null +++ b/api_v2/migrations/0091_rename_creature_creatureaction_parent.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-06-01 14:07 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0090_auto_20240601_1400'), + ] + + operations = [ + migrations.RenameField( + model_name='creatureaction', + old_name='creature', + new_name='parent', + ), + ] diff --git a/api_v2/models/creature.py b/api_v2/models/creature.py index c4e58ad1..7344ab0f 100644 --- a/api_v2/models/creature.py +++ b/api_v2/models/creature.py @@ -58,14 +58,12 @@ def search_result_extra_fields(self): def creatureset(self): return self.creaturesets.all() -#TODO remove FromDocument -class CreatureAction(HasName, HasDescription): +class CreatureAction(HasName, HasDescription): """Describes an action available to a creature.""" - #TODO refactor to parent key = key_field() - - creature = models.ForeignKey( + + parent = models.ForeignKey( Creature, on_delete=models.CASCADE, help_text='The creature to which this action belongs.' @@ -83,6 +81,12 @@ class CreatureAction(HasName, HasDescription): help_text='The parameter X for if the action is limited.' ) + def as_text(self): + text = self.name + '\n' + self.desc + + return text + + class CreatureActionAttack(HasName): """Describes an attack action used by a creature.""" diff --git a/data/v2/wizards-of-the-coast/srd/CreatureAction.json b/data/v2/wizards-of-the-coast/srd/CreatureAction.json index a52c728f..5f8421a2 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureAction.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureAction.json @@ -5,7 +5,7 @@ "fields": { "name": "Enslave", "desc": "The aboleth targets one creature it can see within 30 feet of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the aboleth until the aboleth dies or until it is on a different plane of existence from the target. The charmed target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.\n\nWhenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.\n", - "creature": "aboleth", + "parent": "aboleth", "uses_type": "PER_DAY", "uses_param": 3 } @@ -16,7 +16,7 @@ "fields": { "name": "Multiattack", "desc": "The aboleth makes three tentacle attacks.\n", - "creature": "aboleth", + "parent": "aboleth", "uses_type": null, "uses_param": null } @@ -27,7 +27,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) bludgeoning damage.\n", - "creature": "aboleth", + "parent": "aboleth", "uses_type": null, "uses_param": null } @@ -38,7 +38,7 @@ "fields": { "name": "Tentacle", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 14 Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.\n", - "creature": "aboleth", + "parent": "aboleth", "uses_type": null, "uses_param": null } @@ -49,7 +49,7 @@ "fields": { "name": "Acid Breath", "desc": "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "creature": "adult-black-dragon", + "parent": "adult-black-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -60,7 +60,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) acid damage.\n", - "creature": "adult-black-dragon", + "parent": "adult-black-dragon", "uses_type": null, "uses_param": null } @@ -71,7 +71,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "creature": "adult-black-dragon", + "parent": "adult-black-dragon", "uses_type": null, "uses_param": null } @@ -82,7 +82,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "adult-black-dragon", + "parent": "adult-black-dragon", "uses_type": null, "uses_param": null } @@ -93,7 +93,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "adult-black-dragon", + "parent": "adult-black-dragon", "uses_type": null, "uses_param": null } @@ -104,7 +104,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "creature": "adult-black-dragon", + "parent": "adult-black-dragon", "uses_type": null, "uses_param": null } @@ -115,7 +115,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage plus 5 (1d10) lightning damage.\n", - "creature": "adult-blue-dragon", + "parent": "adult-blue-dragon", "uses_type": null, "uses_param": null } @@ -126,7 +126,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", - "creature": "adult-blue-dragon", + "parent": "adult-blue-dragon", "uses_type": null, "uses_param": null } @@ -137,7 +137,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "adult-blue-dragon", + "parent": "adult-blue-dragon", "uses_type": null, "uses_param": null } @@ -148,7 +148,7 @@ "fields": { "name": "Lightning Breath", "desc": "The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "creature": "adult-blue-dragon", + "parent": "adult-blue-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -159,7 +159,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "adult-blue-dragon", + "parent": "adult-blue-dragon", "uses_type": null, "uses_param": null } @@ -170,7 +170,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", - "creature": "adult-blue-dragon", + "parent": "adult-blue-dragon", "uses_type": null, "uses_param": null } @@ -181,7 +181,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "creature": "adult-brass-dragon", + "parent": "adult-brass-dragon", "uses_type": null, "uses_param": null } @@ -192,7 +192,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "creature": "adult-brass-dragon", + "parent": "adult-brass-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -203,7 +203,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "creature": "adult-brass-dragon", + "parent": "adult-brass-dragon", "uses_type": null, "uses_param": null } @@ -214,7 +214,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "adult-brass-dragon", + "parent": "adult-brass-dragon", "uses_type": null, "uses_param": null } @@ -225,7 +225,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "adult-brass-dragon", + "parent": "adult-brass-dragon", "uses_type": null, "uses_param": null } @@ -236,7 +236,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "creature": "adult-brass-dragon", + "parent": "adult-brass-dragon", "uses_type": null, "uses_param": null } @@ -247,7 +247,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage.\n", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": null, "uses_param": null } @@ -258,7 +258,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -269,7 +269,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": null, "uses_param": null } @@ -280,7 +280,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": null, "uses_param": null } @@ -291,7 +291,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": null, "uses_param": null } @@ -302,7 +302,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": null, "uses_param": null } @@ -313,7 +313,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", - "creature": "adult-bronze-dragon", + "parent": "adult-bronze-dragon", "uses_type": null, "uses_param": null } @@ -324,7 +324,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "creature": "adult-copper-dragon", + "parent": "adult-copper-dragon", "uses_type": null, "uses_param": null } @@ -335,7 +335,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "creature": "adult-copper-dragon", + "parent": "adult-copper-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -346,7 +346,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "creature": "adult-copper-dragon", + "parent": "adult-copper-dragon", "uses_type": null, "uses_param": null } @@ -357,7 +357,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "adult-copper-dragon", + "parent": "adult-copper-dragon", "uses_type": null, "uses_param": null } @@ -368,7 +368,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "adult-copper-dragon", + "parent": "adult-copper-dragon", "uses_type": null, "uses_param": null } @@ -379,7 +379,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "creature": "adult-copper-dragon", + "parent": "adult-copper-dragon", "uses_type": null, "uses_param": null } @@ -390,7 +390,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": null, "uses_param": null } @@ -401,7 +401,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -412,7 +412,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": null, "uses_param": null } @@ -423,7 +423,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": null, "uses_param": null } @@ -434,7 +434,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": null, "uses_param": null } @@ -445,7 +445,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": null, "uses_param": null } @@ -456,7 +456,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "creature": "adult-gold-dragon", + "parent": "adult-gold-dragon", "uses_type": null, "uses_param": null } @@ -467,7 +467,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 7 (2d6) poison damage.\n", - "creature": "adult-green-dragon", + "parent": "adult-green-dragon", "uses_type": null, "uses_param": null } @@ -478,7 +478,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "creature": "adult-green-dragon", + "parent": "adult-green-dragon", "uses_type": null, "uses_param": null } @@ -489,7 +489,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "adult-green-dragon", + "parent": "adult-green-dragon", "uses_type": null, "uses_param": null } @@ -500,7 +500,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "adult-green-dragon", + "parent": "adult-green-dragon", "uses_type": null, "uses_param": null } @@ -511,7 +511,7 @@ "fields": { "name": "Poison Breath", "desc": "The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "creature": "adult-green-dragon", + "parent": "adult-green-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -522,7 +522,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "creature": "adult-green-dragon", + "parent": "adult-green-dragon", "uses_type": null, "uses_param": null } @@ -533,7 +533,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 7 (2d6) fire damage.\n", - "creature": "adult-red-dragon", + "parent": "adult-red-dragon", "uses_type": null, "uses_param": null } @@ -544,7 +544,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "creature": "adult-red-dragon", + "parent": "adult-red-dragon", "uses_type": null, "uses_param": null } @@ -555,7 +555,7 @@ "fields": { "name": "Fire Breath", "desc": "The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 63 (18d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "creature": "adult-red-dragon", + "parent": "adult-red-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -566,7 +566,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "adult-red-dragon", + "parent": "adult-red-dragon", "uses_type": null, "uses_param": null } @@ -577,7 +577,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "adult-red-dragon", + "parent": "adult-red-dragon", "uses_type": null, "uses_param": null } @@ -588,7 +588,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "creature": "adult-red-dragon", + "parent": "adult-red-dragon", "uses_type": null, "uses_param": null } @@ -599,7 +599,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": null, "uses_param": null } @@ -610,7 +610,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -621,7 +621,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": null, "uses_param": null } @@ -632,7 +632,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": null, "uses_param": null } @@ -643,7 +643,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": null, "uses_param": null } @@ -654,7 +654,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": null, "uses_param": null } @@ -665,7 +665,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "creature": "adult-silver-dragon", + "parent": "adult-silver-dragon", "uses_type": null, "uses_param": null } @@ -676,7 +676,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) cold damage.\n", - "creature": "adult-white-dragon", + "parent": "adult-white-dragon", "uses_type": null, "uses_param": null } @@ -687,7 +687,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "creature": "adult-white-dragon", + "parent": "adult-white-dragon", "uses_type": null, "uses_param": null } @@ -698,7 +698,7 @@ "fields": { "name": "Cold Breath", "desc": "The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "creature": "adult-white-dragon", + "parent": "adult-white-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -709,7 +709,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 14 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "adult-white-dragon", + "parent": "adult-white-dragon", "uses_type": null, "uses_param": null } @@ -720,7 +720,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "adult-white-dragon", + "parent": "adult-white-dragon", "uses_type": null, "uses_param": null } @@ -731,7 +731,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "creature": "adult-white-dragon", + "parent": "adult-white-dragon", "uses_type": null, "uses_param": null } @@ -742,7 +742,7 @@ "fields": { "name": "Multiattack", "desc": "The elemental makes two slam attacks.\n", - "creature": "air-elemental", + "parent": "air-elemental", "uses_type": null, "uses_param": null } @@ -753,7 +753,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", - "creature": "air-elemental", + "parent": "air-elemental", "uses_type": null, "uses_param": null } @@ -764,7 +764,7 @@ "fields": { "name": "Whirlwind", "desc": "Each creature in the elemental's space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked prone. If a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone.\n\nIf the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.\n", - "creature": "air-elemental", + "parent": "air-elemental", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 4 } @@ -775,7 +775,7 @@ "fields": { "name": "Acid Breath", "desc": "The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "creature": "ancient-black-dragon", + "parent": "ancient-black-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -786,7 +786,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) acid damage.\n", - "creature": "ancient-black-dragon", + "parent": "ancient-black-dragon", "uses_type": null, "uses_param": null } @@ -797,7 +797,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "creature": "ancient-black-dragon", + "parent": "ancient-black-dragon", "uses_type": null, "uses_param": null } @@ -808,7 +808,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "ancient-black-dragon", + "parent": "ancient-black-dragon", "uses_type": null, "uses_param": null } @@ -819,7 +819,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "ancient-black-dragon", + "parent": "ancient-black-dragon", "uses_type": null, "uses_param": null } @@ -830,7 +830,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "creature": "ancient-black-dragon", + "parent": "ancient-black-dragon", "uses_type": null, "uses_param": null } @@ -841,7 +841,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage plus 11 (2d10) lightning damage.\n", - "creature": "ancient-blue-dragon", + "parent": "ancient-blue-dragon", "uses_type": null, "uses_param": null } @@ -852,7 +852,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", - "creature": "ancient-blue-dragon", + "parent": "ancient-blue-dragon", "uses_type": null, "uses_param": null } @@ -863,7 +863,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "ancient-blue-dragon", + "parent": "ancient-blue-dragon", "uses_type": null, "uses_param": null } @@ -874,7 +874,7 @@ "fields": { "name": "Lightning Breath", "desc": "The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "creature": "ancient-blue-dragon", + "parent": "ancient-blue-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -885,7 +885,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "ancient-blue-dragon", + "parent": "ancient-blue-dragon", "uses_type": null, "uses_param": null } @@ -896,7 +896,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", - "creature": "ancient-blue-dragon", + "parent": "ancient-blue-dragon", "uses_type": null, "uses_param": null } @@ -907,7 +907,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": null, "uses_param": null } @@ -918,7 +918,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons:\n\nFire Breath. The dragon exhales fire in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -929,7 +929,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": null, "uses_param": null } @@ -940,7 +940,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": null, "uses_param": null } @@ -951,7 +951,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": null, "uses_param": null } @@ -962,7 +962,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": null, "uses_param": null } @@ -973,7 +973,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "creature": "ancient-brass-dragon", + "parent": "ancient-brass-dragon", "uses_type": null, "uses_param": null } @@ -984,7 +984,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage.\n", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": null, "uses_param": null } @@ -995,7 +995,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1006,7 +1006,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": null, "uses_param": null } @@ -1017,7 +1017,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": null, "uses_param": null } @@ -1028,7 +1028,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": null, "uses_param": null } @@ -1039,7 +1039,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": null, "uses_param": null } @@ -1050,7 +1050,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", - "creature": "ancient-bronze-dragon", + "parent": "ancient-bronze-dragon", "uses_type": null, "uses_param": null } @@ -1061,7 +1061,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": null, "uses_param": null } @@ -1072,7 +1072,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1083,7 +1083,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": null, "uses_param": null } @@ -1094,7 +1094,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": null, "uses_param": null } @@ -1105,7 +1105,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": null, "uses_param": null } @@ -1116,7 +1116,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": null, "uses_param": null } @@ -1127,7 +1127,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "creature": "ancient-copper-dragon", + "parent": "ancient-copper-dragon", "uses_type": null, "uses_param": null } @@ -1138,7 +1138,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": null, "uses_param": null } @@ -1149,7 +1149,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1160,7 +1160,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": null, "uses_param": null } @@ -1171,7 +1171,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": null, "uses_param": null } @@ -1182,7 +1182,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 24 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": null, "uses_param": null } @@ -1193,7 +1193,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": null, "uses_param": null } @@ -1204,7 +1204,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "creature": "ancient-gold-dragon", + "parent": "ancient-gold-dragon", "uses_type": null, "uses_param": null } @@ -1215,7 +1215,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 10 (3d6) poison damage.\n", - "creature": "ancient-green-dragon", + "parent": "ancient-green-dragon", "uses_type": null, "uses_param": null } @@ -1226,7 +1226,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 22 (4d6 + 8) slashing damage.\n", - "creature": "ancient-green-dragon", + "parent": "ancient-green-dragon", "uses_type": null, "uses_param": null } @@ -1237,7 +1237,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "ancient-green-dragon", + "parent": "ancient-green-dragon", "uses_type": null, "uses_param": null } @@ -1248,7 +1248,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "ancient-green-dragon", + "parent": "ancient-green-dragon", "uses_type": null, "uses_param": null } @@ -1259,7 +1259,7 @@ "fields": { "name": "Poison Breath", "desc": "The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 77 (22d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "creature": "ancient-green-dragon", + "parent": "ancient-green-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1270,7 +1270,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "creature": "ancient-green-dragon", + "parent": "ancient-green-dragon", "uses_type": null, "uses_param": null } @@ -1281,7 +1281,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage plus 14 (4d6) fire damage.\n", - "creature": "ancient-red-dragon", + "parent": "ancient-red-dragon", "uses_type": null, "uses_param": null } @@ -1292,7 +1292,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "creature": "ancient-red-dragon", + "parent": "ancient-red-dragon", "uses_type": null, "uses_param": null } @@ -1303,7 +1303,7 @@ "fields": { "name": "Fire Breath", "desc": "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 91 (26d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "creature": "ancient-red-dragon", + "parent": "ancient-red-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1314,7 +1314,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "ancient-red-dragon", + "parent": "ancient-red-dragon", "uses_type": null, "uses_param": null } @@ -1325,7 +1325,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "ancient-red-dragon", + "parent": "ancient-red-dragon", "uses_type": null, "uses_param": null } @@ -1336,7 +1336,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "creature": "ancient-red-dragon", + "parent": "ancient-red-dragon", "uses_type": null, "uses_param": null } @@ -1347,7 +1347,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": null, "uses_param": null } @@ -1358,7 +1358,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1369,7 +1369,7 @@ "fields": { "name": "Change Shape", "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": null, "uses_param": null } @@ -1380,7 +1380,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": null, "uses_param": null } @@ -1391,7 +1391,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": null, "uses_param": null } @@ -1402,7 +1402,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": null, "uses_param": null } @@ -1413,7 +1413,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "creature": "ancient-silver-dragon", + "parent": "ancient-silver-dragon", "uses_type": null, "uses_param": null } @@ -1424,7 +1424,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) cold damage.\n", - "creature": "ancient-white-dragon", + "parent": "ancient-white-dragon", "uses_type": null, "uses_param": null } @@ -1435,7 +1435,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "creature": "ancient-white-dragon", + "parent": "ancient-white-dragon", "uses_type": null, "uses_param": null } @@ -1446,7 +1446,7 @@ "fields": { "name": "Cold Breath", "desc": "The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 72 (16d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "creature": "ancient-white-dragon", + "parent": "ancient-white-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1457,7 +1457,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "creature": "ancient-white-dragon", + "parent": "ancient-white-dragon", "uses_type": null, "uses_param": null } @@ -1468,7 +1468,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "ancient-white-dragon", + "parent": "ancient-white-dragon", "uses_type": null, "uses_param": null } @@ -1479,7 +1479,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "creature": "ancient-white-dragon", + "parent": "ancient-white-dragon", "uses_type": null, "uses_param": null } @@ -1490,7 +1490,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 17 (2d10 + 6) slashing damage.\n", - "creature": "androsphinx", + "parent": "androsphinx", "uses_type": null, "uses_param": null } @@ -1501,7 +1501,7 @@ "fields": { "name": "Multiattack", "desc": "The sphinx makes two claw attacks.\n", - "creature": "androsphinx", + "parent": "androsphinx", "uses_type": null, "uses_param": null } @@ -1512,7 +1512,7 @@ "fields": { "name": "Roar", "desc": "The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.\n\nFirst Roar. Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nSecond Roar. Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThird Roar. Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.\n", - "creature": "androsphinx", + "parent": "androsphinx", "uses_type": "PER_DAY", "uses_param": 3 } @@ -1523,7 +1523,7 @@ "fields": { "name": "Multiattack", "desc": "The armor makes two melee attacks.\n", - "creature": "animated-armor", + "parent": "animated-armor", "uses_type": null, "uses_param": null } @@ -1534,7 +1534,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", - "creature": "animated-armor", + "parent": "animated-armor", "uses_type": null, "uses_param": null } @@ -1545,7 +1545,7 @@ "fields": { "name": "Acid Spray", "desc": "The ankheg spits acid in a line that is 30 feet long and 5 feet wide, provided that it has no creature grappled. Each creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.\n", - "creature": "ankheg", + "parent": "ankheg", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -1556,7 +1556,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage. If the target is a Large or smaller creature, it is grappled (escape DC 13). Until this grapple ends, the ankheg can bite only the grappled creature and has advantage on attack rolls to do so.\n", - "creature": "ankheg", + "parent": "ankheg", "uses_type": null, "uses_param": null } @@ -1567,7 +1567,7 @@ "fields": { "name": "Warhammer", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", - "creature": "azer", + "parent": "azer", "uses_type": null, "uses_param": null } @@ -1578,7 +1578,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) slashing damage plus 13 (3d8) lightning damage. If the balor scores a critical hit, it rolls damage dice three times, instead of twice.\n", - "creature": "balor", + "parent": "balor", "uses_type": null, "uses_param": null } @@ -1589,7 +1589,7 @@ "fields": { "name": "Multiattack", "desc": "The balor makes two attacks: one with its longsword and one with its whip.\n", - "creature": "balor", + "parent": "balor", "uses_type": null, "uses_param": null } @@ -1600,7 +1600,7 @@ "fields": { "name": "Teleport", "desc": "The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "creature": "balor", + "parent": "balor", "uses_type": null, "uses_param": null } @@ -1611,7 +1611,7 @@ "fields": { "name": "Whip", "desc": "Melee Weapon Attack: +14 to hit, reach 30 ft., one target. Hit: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage, and the target must succeed on a DC 20 Strength saving throw or be pulled up to 25 feet toward the balor.\n", - "creature": "balor", + "parent": "balor", "uses_type": null, "uses_param": null } @@ -1622,7 +1622,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "creature": "barbed-devil", + "parent": "barbed-devil", "uses_type": null, "uses_param": null } @@ -1633,7 +1633,7 @@ "fields": { "name": "Hurl Flame", "desc": "Ranged Spell Attack: +5 to hit, range 150 ft., one target. Hit: 10 (3d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", - "creature": "barbed-devil", + "parent": "barbed-devil", "uses_type": null, "uses_param": null } @@ -1644,7 +1644,7 @@ "fields": { "name": "Multiattack", "desc": "The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice.\n", - "creature": "barbed-devil", + "parent": "barbed-devil", "uses_type": null, "uses_param": null } @@ -1655,7 +1655,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", - "creature": "barbed-devil", + "parent": "barbed-devil", "uses_type": null, "uses_param": null } @@ -1666,7 +1666,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage.\n", - "creature": "basilisk", + "parent": "basilisk", "uses_type": null, "uses_param": null } @@ -1677,7 +1677,7 @@ "fields": { "name": "Beard", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. While poisoned in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "bearded-devil", + "parent": "bearded-devil", "uses_type": null, "uses_param": null } @@ -1688,7 +1688,7 @@ "fields": { "name": "Glaive", "desc": "Melee Weapon Attack: +5 to hit, reach 10 ft., one target. Hit: 8 (1d10 + 3) slashing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 12 Constitution saving throw or lose 5 (1d10) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 (1d10). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", - "creature": "bearded-devil", + "parent": "bearded-devil", "uses_type": null, "uses_param": null } @@ -1699,7 +1699,7 @@ "fields": { "name": "Multiattack", "desc": "The devil makes two attacks: one with its beard and one with its glaive.\n", - "creature": "bearded-devil", + "parent": "bearded-devil", "uses_type": null, "uses_param": null } @@ -1710,7 +1710,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 22 (3d10 + 6) piercing damage.\n", - "creature": "behir", + "parent": "behir", "uses_type": null, "uses_param": null } @@ -1721,7 +1721,7 @@ "fields": { "name": "Constrict", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one Large or smaller creature. Hit: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage. The target is grappled (escape DC 16) if the behir isn't already constricting a creature, and the target is restrained until this grapple ends.\n", - "creature": "behir", + "parent": "behir", "uses_type": null, "uses_param": null } @@ -1732,7 +1732,7 @@ "fields": { "name": "Lightning Breath", "desc": "The behir exhales a line of lightning that is 20 feet long and 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "creature": "behir", + "parent": "behir", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1743,7 +1743,7 @@ "fields": { "name": "Multiattack", "desc": "The behir makes two attacks: one with its bite and one to constrict.\n", - "creature": "behir", + "parent": "behir", "uses_type": null, "uses_param": null } @@ -1754,7 +1754,7 @@ "fields": { "name": "Swallow", "desc": "The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the behir, and it takes 21 (6d6) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.\n\nIf the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 feet of the behir. If the behir dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 feet of movement, exiting prone.\n", - "creature": "behir", + "parent": "behir", "uses_type": null, "uses_param": null } @@ -1765,7 +1765,7 @@ "fields": { "name": "Acid Breath", "desc": "The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "creature": "black-dragon-wyrmling", + "parent": "black-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1776,7 +1776,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage.\n", - "creature": "black-dragon-wyrmling", + "parent": "black-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -1787,7 +1787,7 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", - "creature": "black-pudding", + "parent": "black-pudding", "uses_type": null, "uses_param": null } @@ -1798,7 +1798,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage.\n", - "creature": "blue-dragon-wyrmling", + "parent": "blue-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -1809,7 +1809,7 @@ "fields": { "name": "Lightning Breath", "desc": "The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "creature": "blue-dragon-wyrmling", + "parent": "blue-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1820,7 +1820,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", - "creature": "bone-devil", + "parent": "bone-devil", "uses_type": null, "uses_param": null } @@ -1831,7 +1831,7 @@ "fields": { "name": "Multiattack", "desc": "The devil makes three attacks: two with its claws and one with its sting.\n", - "creature": "bone-devil", + "parent": "bone-devil", "uses_type": null, "uses_param": null } @@ -1842,7 +1842,7 @@ "fields": { "name": "Sting", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage, and the target must succeed on a DC 14 Constitution saving throw or become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "bone-devil", + "parent": "bone-devil", "uses_type": null, "uses_param": null } @@ -1853,7 +1853,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", - "creature": "brass-dragon-wyrmling", + "parent": "brass-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -1864,7 +1864,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "creature": "brass-dragon-wyrmling", + "parent": "brass-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1875,7 +1875,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", - "creature": "bronze-dragon-wyrmling", + "parent": "bronze-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -1886,7 +1886,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.\n", - "creature": "bronze-dragon-wyrmling", + "parent": "bronze-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -1897,7 +1897,7 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at range.\n", - "creature": "bugbear", + "parent": "bugbear", "uses_type": null, "uses_param": null } @@ -1908,7 +1908,7 @@ "fields": { "name": "Morningstar", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 11 (2d8 + 2) piercing damage.\n", - "creature": "bugbear", + "parent": "bugbear", "uses_type": null, "uses_param": null } @@ -1919,7 +1919,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 30 (4d12 + 4) piercing damage.\n", - "creature": "bulette", + "parent": "bulette", "uses_type": null, "uses_param": null } @@ -1930,7 +1930,7 @@ "fields": { "name": "Deadly Leap", "desc": "If the bulette jumps at least 15 feet as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 feet out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the bulette's space.\n", - "creature": "bulette", + "parent": "bulette", "uses_type": null, "uses_param": null } @@ -1941,7 +1941,7 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "creature": "centaur", + "parent": "centaur", "uses_type": null, "uses_param": null } @@ -1952,7 +1952,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "creature": "centaur", + "parent": "centaur", "uses_type": null, "uses_param": null } @@ -1963,7 +1963,7 @@ "fields": { "name": "Multiattack", "desc": "The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow.\n", - "creature": "centaur", + "parent": "centaur", "uses_type": null, "uses_param": null } @@ -1974,7 +1974,7 @@ "fields": { "name": "Pike", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "creature": "centaur", + "parent": "centaur", "uses_type": null, "uses_param": null } @@ -1985,7 +1985,7 @@ "fields": { "name": "Animate Chains", "desc": "Up to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.\n\nEach animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is incapacitated or dies.\n", - "creature": "chain-devil", + "parent": "chain-devil", "uses_type": "RECHARGE_AFTER_REST", "uses_param": null } @@ -1996,7 +1996,7 @@ "fields": { "name": "Chain", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) slashing damage. The target is grappled (escape DC 14) if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained and takes 7 (2d6) piercing damage at the start of each of its turns.\n", - "creature": "chain-devil", + "parent": "chain-devil", "uses_type": null, "uses_param": null } @@ -2007,7 +2007,7 @@ "fields": { "name": "Multiattack", "desc": "The devil makes two attacks with its chains.\n", - "creature": "chain-devil", + "parent": "chain-devil", "uses_type": null, "uses_param": null } @@ -2018,7 +2018,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", - "creature": "chimera", + "parent": "chimera", "uses_type": null, "uses_param": null } @@ -2029,7 +2029,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "creature": "chimera", + "parent": "chimera", "uses_type": null, "uses_param": null } @@ -2040,7 +2040,7 @@ "fields": { "name": "Fire Breath", "desc": "The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 31 (7d8) fire damage on a failed save, or half as much damage on a successful one.\n", - "creature": "chimera", + "parent": "chimera", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -2051,7 +2051,7 @@ "fields": { "name": "Horns", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) bludgeoning damage.\n", - "creature": "chimera", + "parent": "chimera", "uses_type": null, "uses_param": null } @@ -2062,7 +2062,7 @@ "fields": { "name": "Multiattack", "desc": "The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns.\n", - "creature": "chimera", + "parent": "chimera", "uses_type": null, "uses_param": null } @@ -2073,7 +2073,7 @@ "fields": { "name": "Multiattack", "desc": "The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once.\n", - "creature": "chuul", + "parent": "chuul", "uses_type": null, "uses_param": null } @@ -2084,7 +2084,7 @@ "fields": { "name": "Pincer", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage. The target is grappled (escape DC 14) if it is a Large or smaller creature and the chuul doesn't have two other creatures grappled.\n", - "creature": "chuul", + "parent": "chuul", "uses_type": null, "uses_param": null } @@ -2095,7 +2095,7 @@ "fields": { "name": "Tentacles", "desc": "One creature grappled by the chuul must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. Until this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "chuul", + "parent": "chuul", "uses_type": null, "uses_param": null } @@ -2106,7 +2106,7 @@ "fields": { "name": "Haste", "desc": "Until the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action.\n", - "creature": "clay-golem", + "parent": "clay-golem", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -2117,7 +2117,7 @@ "fields": { "name": "Multiattack", "desc": "The golem makes two slam attacks.\n", - "creature": "clay-golem", + "parent": "clay-golem", "uses_type": null, "uses_param": null } @@ -2128,7 +2128,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the greater restoration spell or other magic.\n", - "creature": "clay-golem", + "parent": "clay-golem", "uses_type": null, "uses_param": null } @@ -2139,7 +2139,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 10 (2d6 + 3) piercing damage, and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is blinded and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a DC 16 Strength check.\n", - "creature": "cloaker", + "parent": "cloaker", "uses_type": null, "uses_param": null } @@ -2150,7 +2150,7 @@ "fields": { "name": "Moan", "desc": "Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the cloaker's next turn. If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours\n", - "creature": "cloaker", + "parent": "cloaker", "uses_type": null, "uses_param": null } @@ -2161,7 +2161,7 @@ "fields": { "name": "Multiattack", "desc": "The cloaker makes two attacks: one with its bite and one with its tail.\n", - "creature": "cloaker", + "parent": "cloaker", "uses_type": null, "uses_param": null } @@ -2172,7 +2172,7 @@ "fields": { "name": "Phantasms", "desc": "The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.\n\nWhenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.\n\nA duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.\n", - "creature": "cloaker", + "parent": "cloaker", "uses_type": "RECHARGE_AFTER_REST", "uses_param": null } @@ -2183,7 +2183,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one creature. Hit: 7 (1d8 + 3) slashing damage.\n", - "creature": "cloaker", + "parent": "cloaker", "uses_type": null, "uses_param": null } @@ -2194,7 +2194,7 @@ "fields": { "name": "Morningstar", "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) piercing damage.\n", - "creature": "cloud-giant", + "parent": "cloud-giant", "uses_type": null, "uses_param": null } @@ -2205,7 +2205,7 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two morningstar attacks.\n", - "creature": "cloud-giant", + "parent": "cloud-giant", "uses_type": null, "uses_param": null } @@ -2216,7 +2216,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +12 to hit, range 60/240 ft., one target. Hit: 30 (4d10 + 8) bludgeoning damage.\n", - "creature": "cloud-giant", + "parent": "cloud-giant", "uses_type": null, "uses_param": null } @@ -2227,7 +2227,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) piercing damage, and the target must succeed on a DC 11 Constitution saving throw against being magically petrified. On a failed save, the creature begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified for 24 hours.\n", - "creature": "cockatrice", + "parent": "cockatrice", "uses_type": null, "uses_param": null } @@ -2238,7 +2238,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", - "creature": "copper-dragon-wyrmling", + "parent": "copper-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -2249,7 +2249,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "creature": "copper-dragon-wyrmling", + "parent": "copper-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -2260,7 +2260,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one creature. Hit: 8 (1d6 + 5) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 24 hours. Until this poison ends, the target is unconscious. Another creature can use an action to shake the target awake.\n", - "creature": "couatl", + "parent": "couatl", "uses_type": null, "uses_param": null } @@ -2271,7 +2271,7 @@ "fields": { "name": "Change Shape", "desc": "The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).\n\nIn a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form.\n", - "creature": "couatl", + "parent": "couatl", "uses_type": null, "uses_param": null } @@ -2282,7 +2282,7 @@ "fields": { "name": "Constrict", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one Medium or smaller creature. Hit: 10 (2d6 + 3) bludgeoning damage, and the target is grappled (escape DC 15). Until this grapple ends, the target is restrained, and the couatl can't constrict another target.\n", - "creature": "couatl", + "parent": "couatl", "uses_type": null, "uses_param": null } @@ -2293,7 +2293,7 @@ "fields": { "name": "Crush", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d6 + 3) bludgeoning damage, and the darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also blinded and unable to breathe while the darkmantle is attached in this way.\n\nWhile attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.\n\nA creature can detach the darkmantle by making a successful DC 13 Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement.\n", - "creature": "darkmantle", + "parent": "darkmantle", "uses_type": null, "uses_param": null } @@ -2304,7 +2304,7 @@ "fields": { "name": "Darkness Aura", "desc": "A 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains concentration, up to 10 minutes (as if concentrating on a spell). Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.\n", - "creature": "darkmantle", + "parent": "darkmantle", "uses_type": "PER_DAY", "uses_param": 1 } @@ -2315,7 +2315,7 @@ "fields": { "name": "Change Shape", "desc": "The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).\n\nIn a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks.\n", - "creature": "deva", + "parent": "deva", "uses_type": null, "uses_param": null } @@ -2326,7 +2326,7 @@ "fields": { "name": "Healing Touch", "desc": "The deva touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "creature": "deva", + "parent": "deva", "uses_type": "PER_DAY", "uses_param": 3 } @@ -2337,7 +2337,7 @@ "fields": { "name": "Mace", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage.\n", - "creature": "deva", + "parent": "deva", "uses_type": null, "uses_param": null } @@ -2348,7 +2348,7 @@ "fields": { "name": "Multiattack", "desc": "The deva makes two melee attacks.\n", - "creature": "deva", + "parent": "deva", "uses_type": null, "uses_param": null } @@ -2359,7 +2359,7 @@ "fields": { "name": "Create Whirlwind", "desc": "A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains concentration (as if concentrating on a spell). Any creature but the djinni that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.\n\nA creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.\n", - "creature": "djinni", + "parent": "djinni", "uses_type": null, "uses_param": null } @@ -2370,7 +2370,7 @@ "fields": { "name": "Multiattack", "desc": "The djinni makes three scimitar attacks.\n", - "creature": "djinni", + "parent": "djinni", "uses_type": null, "uses_param": null } @@ -2381,7 +2381,7 @@ "fields": { "name": "Scimitar", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (djinni's choice).\n", - "creature": "djinni", + "parent": "djinni", "uses_type": null, "uses_param": null } @@ -2392,7 +2392,7 @@ "fields": { "name": "Multiattack", "desc": "The doppelganger makes two melee attacks.\n", - "creature": "doppelganger", + "parent": "doppelganger", "uses_type": null, "uses_param": null } @@ -2403,7 +2403,7 @@ "fields": { "name": "Read Thoughts", "desc": "The doppelganger magically reads the surface thoughts of one creature within 60 feet of it. The effect can penetrate barriers, but 3 feet of wood or dirt, 2 feet of stone, 2 inches of metal, or a thin sheet of lead blocks it. While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.\n", - "creature": "doppelganger", + "parent": "doppelganger", "uses_type": null, "uses_param": null } @@ -2414,7 +2414,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage.\n", - "creature": "doppelganger", + "parent": "doppelganger", "uses_type": null, "uses_param": null } @@ -2425,7 +2425,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) piercing damage.\n", - "creature": "dragon-turtle", + "parent": "dragon-turtle", "uses_type": null, "uses_param": null } @@ -2436,7 +2436,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 16 (2d8 + 7) slashing damage.\n", - "creature": "dragon-turtle", + "parent": "dragon-turtle", "uses_type": null, "uses_param": null } @@ -2447,7 +2447,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks.\n", - "creature": "dragon-turtle", + "parent": "dragon-turtle", "uses_type": null, "uses_param": null } @@ -2458,7 +2458,7 @@ "fields": { "name": "Steam Breath", "desc": "The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage.\n", - "creature": "dragon-turtle", + "parent": "dragon-turtle", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -2469,7 +2469,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked prone.\n", - "creature": "dragon-turtle", + "parent": "dragon-turtle", "uses_type": null, "uses_param": null } @@ -2480,7 +2480,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 3 (1d6) piercing damage.\n", - "creature": "dretch", + "parent": "dretch", "uses_type": null, "uses_param": null } @@ -2491,7 +2491,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 5 (2d4) slashing damage.\n", - "creature": "dretch", + "parent": "dretch", "uses_type": null, "uses_param": null } @@ -2502,7 +2502,7 @@ "fields": { "name": "Fetid Cloud", "desc": "A 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it. Any creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions.\n", - "creature": "dretch", + "parent": "dretch", "uses_type": "PER_DAY", "uses_param": 1 } @@ -2513,7 +2513,7 @@ "fields": { "name": "Multiattack", "desc": "The dretch makes two attacks: one with its bite and one with its claws.\n", - "creature": "dretch", + "parent": "dretch", "uses_type": null, "uses_param": null } @@ -2524,7 +2524,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 2 (1d4) piercing damage plus 9 (2d8) poison damage.\n", - "creature": "drider", + "parent": "drider", "uses_type": null, "uses_param": null } @@ -2535,7 +2535,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +6 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage.\n", - "creature": "drider", + "parent": "drider", "uses_type": null, "uses_param": null } @@ -2546,7 +2546,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", - "creature": "drider", + "parent": "drider", "uses_type": null, "uses_param": null } @@ -2557,7 +2557,7 @@ "fields": { "name": "Multiattack", "desc": "The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack.\n", - "creature": "drider", + "parent": "drider", "uses_type": null, "uses_param": null } @@ -2568,7 +2568,7 @@ "fields": { "name": "Club", "desc": "Melee Weapon Attack: +2 to hit (+6 to hit with shillelagh), reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with shillelagh.\n", - "creature": "dryad", + "parent": "dryad", "uses_type": null, "uses_param": null } @@ -2579,7 +2579,7 @@ "fields": { "name": "Fey Charm", "desc": "The dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a DC 14 Wisdom saving throw or be magically charmed. The charmed creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.\n\nEach time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.\n\nThe dryad can have no more than one humanoid and up to three beasts charmed at a time.\n", - "creature": "dryad", + "parent": "dryad", "uses_type": null, "uses_param": null } @@ -2590,7 +2590,7 @@ "fields": { "name": "Enlarge", "desc": "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available.\n", - "creature": "duergar", + "parent": "duergar", "uses_type": "RECHARGE_AFTER_REST", "uses_param": null } @@ -2601,7 +2601,7 @@ "fields": { "name": "Invisibility", "desc": "The duergar magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell). Any equipment the duergar wears or carries is invisible with it.\n", - "creature": "duergar", + "parent": "duergar", "uses_type": "RECHARGE_AFTER_REST", "uses_param": null } @@ -2612,7 +2612,7 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarged.\n", - "creature": "duergar", + "parent": "duergar", "uses_type": null, "uses_param": null } @@ -2623,7 +2623,7 @@ "fields": { "name": "War Pick", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage, or 11 (2d8 + 2) piercing damage while enlarged.\n", - "creature": "duergar", + "parent": "duergar", "uses_type": null, "uses_param": null } @@ -2634,7 +2634,7 @@ "fields": { "name": "Blinding Breath", "desc": "The mephit exhales a 15-foot cone of blinding dust. Each creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "dust-mephit", + "parent": "dust-mephit", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -2645,7 +2645,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) slashing damage.\n", - "creature": "dust-mephit", + "parent": "dust-mephit", "uses_type": null, "uses_param": null } @@ -2656,7 +2656,7 @@ "fields": { "name": "Multiattack", "desc": "The elemental makes two slam attacks.\n", - "creature": "earth-elemental", + "parent": "earth-elemental", "uses_type": null, "uses_param": null } @@ -2667,7 +2667,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", - "creature": "earth-elemental", + "parent": "earth-elemental", "uses_type": null, "uses_param": null } @@ -2678,7 +2678,7 @@ "fields": { "name": "Hurl Flame", "desc": "Ranged Spell Attack: +7 to hit, range 120 ft., one target. Hit: 17 (5d6) fire damage.\n", - "creature": "efreeti", + "parent": "efreeti", "uses_type": null, "uses_param": null } @@ -2689,7 +2689,7 @@ "fields": { "name": "Multiattack", "desc": "The efreeti makes two scimitar attacks or uses its Hurl Flame twice.\n", - "creature": "efreeti", + "parent": "efreeti", "uses_type": null, "uses_param": null } @@ -2700,7 +2700,7 @@ "fields": { "name": "Scimitar", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage plus 7 (2d6) fire damage.\n", - "creature": "efreeti", + "parent": "efreeti", "uses_type": null, "uses_param": null } @@ -2711,7 +2711,7 @@ "fields": { "name": "Hand Crossbow", "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake.\n", - "creature": "elf-drow", + "parent": "elf-drow", "uses_type": null, "uses_param": null } @@ -2722,7 +2722,7 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "creature": "elf-drow", + "parent": "elf-drow", "uses_type": null, "uses_param": null } @@ -2733,7 +2733,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +7 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 13 (3d8) poison damage, and the target must succeed on a DC 14 Constitution saving throw or be poisoned. The poison lasts until it is removed by the lesser restoration spell or similar magic.\n", - "creature": "erinyes", + "parent": "erinyes", "uses_type": null, "uses_param": null } @@ -2744,7 +2744,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands, plus 13 (3d8) poison damage.\n", - "creature": "erinyes", + "parent": "erinyes", "uses_type": null, "uses_param": null } @@ -2755,7 +2755,7 @@ "fields": { "name": "Multiattack", "desc": "The erinyes makes three attacks.\n", - "creature": "erinyes", + "parent": "erinyes", "uses_type": null, "uses_param": null } @@ -2766,7 +2766,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage plus 4 (1d8) poison damage. The target must succeed on a DC 11 Constitution saving throw or be poisoned for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "ettercap", + "parent": "ettercap", "uses_type": null, "uses_param": null } @@ -2777,7 +2777,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.\n", - "creature": "ettercap", + "parent": "ettercap", "uses_type": null, "uses_param": null } @@ -2788,7 +2788,7 @@ "fields": { "name": "Multiattack", "desc": "The ettercap makes two attacks: one with its bite and one with its claws.\n", - "creature": "ettercap", + "parent": "ettercap", "uses_type": null, "uses_param": null } @@ -2799,7 +2799,7 @@ "fields": { "name": "Web", "desc": "Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing. As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect also ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, vulnerability to fire damage, and immunity to bludgeoning, poison, and psychic damage.\n", - "creature": "ettercap", + "parent": "ettercap", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -2810,7 +2810,7 @@ "fields": { "name": "Battleaxe", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", - "creature": "ettin", + "parent": "ettin", "uses_type": null, "uses_param": null } @@ -2821,7 +2821,7 @@ "fields": { "name": "Morningstar", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) piercing damage.\n", - "creature": "ettin", + "parent": "ettin", "uses_type": null, "uses_param": null } @@ -2832,7 +2832,7 @@ "fields": { "name": "Multiattack", "desc": "The ettin makes two attacks: one with its battleaxe and one with its morningstar.\n", - "creature": "ettin", + "parent": "ettin", "uses_type": null, "uses_param": null } @@ -2843,7 +2843,7 @@ "fields": { "name": "Multiattack", "desc": "The elemental makes two touch attacks.\n", - "creature": "fire-elemental", + "parent": "fire-elemental", "uses_type": null, "uses_param": null } @@ -2854,7 +2854,7 @@ "fields": { "name": "Touch", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 (1d10) fire damage at the start of each of its turns.\n", - "creature": "fire-elemental", + "parent": "fire-elemental", "uses_type": null, "uses_param": null } @@ -2865,7 +2865,7 @@ "fields": { "name": "Greatsword", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 28 (6d6 + 7) slashing damage.\n", - "creature": "fire-giant", + "parent": "fire-giant", "uses_type": null, "uses_param": null } @@ -2876,7 +2876,7 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greatsword attacks.\n", - "creature": "fire-giant", + "parent": "fire-giant", "uses_type": null, "uses_param": null } @@ -2887,7 +2887,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +11 to hit, range 60/240 ft., one target. Hit: 29 (4d10 + 7) bludgeoning damage.\n", - "creature": "fire-giant", + "parent": "fire-giant", "uses_type": null, "uses_param": null } @@ -2898,7 +2898,7 @@ "fields": { "name": "Multiattack", "desc": "The golem makes two slam attacks.\n", - "creature": "flesh-golem", + "parent": "flesh-golem", "uses_type": null, "uses_param": null } @@ -2909,7 +2909,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "creature": "flesh-golem", + "parent": "flesh-golem", "uses_type": null, "uses_param": null } @@ -2920,7 +2920,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage.\n", - "creature": "flying-sword", + "parent": "flying-sword", "uses_type": null, "uses_param": null } @@ -2931,7 +2931,7 @@ "fields": { "name": "Greataxe", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 25 (3d12 + 6) slashing damage.\n", - "creature": "frost-giant", + "parent": "frost-giant", "uses_type": null, "uses_param": null } @@ -2942,7 +2942,7 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greataxe attacks.\n", - "creature": "frost-giant", + "parent": "frost-giant", "uses_type": null, "uses_param": null } @@ -2953,7 +2953,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", - "creature": "frost-giant", + "parent": "frost-giant", "uses_type": null, "uses_param": null } @@ -2964,7 +2964,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "creature": "gargoyle", + "parent": "gargoyle", "uses_type": null, "uses_param": null } @@ -2975,7 +2975,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", - "creature": "gargoyle", + "parent": "gargoyle", "uses_type": null, "uses_param": null } @@ -2986,7 +2986,7 @@ "fields": { "name": "Multiattack", "desc": "The gargoyle makes two attacks: one with its bite and one with its claws.\n", - "creature": "gargoyle", + "parent": "gargoyle", "uses_type": null, "uses_param": null } @@ -2997,7 +2997,7 @@ "fields": { "name": "Engulf", "desc": "The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a DC 12 Dexterity saving throw.\n\nOn a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.\n\nOn a failed save, the cube enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.\n\nAn engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube.\n", - "creature": "gelatinous-cube", + "parent": "gelatinous-cube", "uses_type": null, "uses_param": null } @@ -3008,7 +3008,7 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) acid damage.\n", - "creature": "gelatinous-cube", + "parent": "gelatinous-cube", "uses_type": null, "uses_param": null } @@ -3019,7 +3019,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 12 (2d8 + 3) piercing damage.\n", - "creature": "ghast", + "parent": "ghast", "uses_type": null, "uses_param": null } @@ -3030,7 +3030,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a creature other than an undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "ghast", + "parent": "ghast", "uses_type": null, "uses_param": null } @@ -3041,7 +3041,7 @@ "fields": { "name": "Etherealness", "desc": "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.\n", - "creature": "ghost", + "parent": "ghost", "uses_type": null, "uses_param": null } @@ -3052,7 +3052,7 @@ "fields": { "name": "Horrifying Visage", "desc": "Each non-undead creature within 60 feet of the ghost that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 × 10 years. A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.\n", - "creature": "ghost", + "parent": "ghost", "uses_type": null, "uses_param": null } @@ -3063,7 +3063,7 @@ "fields": { "name": "Possession", "desc": "One humanoid that the ghost can see within 5 feet of it must succeed on a DC 13 Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is incapacitated and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.\n\nThe possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends.\n", - "creature": "ghost", + "parent": "ghost", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -3074,7 +3074,7 @@ "fields": { "name": "Withering Touch", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 17 (4d6 + 3) necrotic damage.\n", - "creature": "ghost", + "parent": "ghost", "uses_type": null, "uses_param": null } @@ -3085,7 +3085,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) piercing damage.\n", - "creature": "ghoul", + "parent": "ghoul", "uses_type": null, "uses_param": null } @@ -3096,7 +3096,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "ghoul", + "parent": "ghoul", "uses_type": null, "uses_param": null } @@ -3107,7 +3107,7 @@ "fields": { "name": "Bites", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 17 (5d6) piercing damage. If the target is Medium or smaller, it must succeed on a DC 10 Strength saving throw or be knocked prone. If the target is killed by this damage, it is absorbed into the mouther.\n", - "creature": "gibbering-mouther", + "parent": "gibbering-mouther", "uses_type": null, "uses_param": null } @@ -3118,7 +3118,7 @@ "fields": { "name": "Blinding Spittle", "desc": "The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the mouther's next turn.\n", - "creature": "gibbering-mouther", + "parent": "gibbering-mouther", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -3129,7 +3129,7 @@ "fields": { "name": "Multiattack", "desc": "The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle.\n", - "creature": "gibbering-mouther", + "parent": "gibbering-mouther", "uses_type": null, "uses_param": null } @@ -3140,7 +3140,7 @@ "fields": { "name": "Fist", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.\n", - "creature": "glabrezu", + "parent": "glabrezu", "uses_type": null, "uses_param": null } @@ -3151,7 +3151,7 @@ "fields": { "name": "Multiattack", "desc": "The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell.\n", - "creature": "glabrezu", + "parent": "glabrezu", "uses_type": null, "uses_param": null } @@ -3162,7 +3162,7 @@ "fields": { "name": "Pincer", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a Medium or smaller creature, it is grappled (escape DC 15). The glabrezu has two pincers, each of which can grapple only one target.\n", - "creature": "glabrezu", + "parent": "glabrezu", "uses_type": null, "uses_param": null } @@ -3173,7 +3173,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\n", - "creature": "gnoll", + "parent": "gnoll", "uses_type": null, "uses_param": null } @@ -3184,7 +3184,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "creature": "gnoll", + "parent": "gnoll", "uses_type": null, "uses_param": null } @@ -3195,7 +3195,7 @@ "fields": { "name": "Spear", "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", - "creature": "gnoll", + "parent": "gnoll", "uses_type": null, "uses_param": null } @@ -3206,7 +3206,7 @@ "fields": { "name": "Poisoned Dart", "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "gnome-deep-svirfneblin", + "parent": "gnome-deep-svirfneblin", "uses_type": null, "uses_param": null } @@ -3217,7 +3217,7 @@ "fields": { "name": "War Pick", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "creature": "gnome-deep-svirfneblin", + "parent": "gnome-deep-svirfneblin", "uses_type": null, "uses_param": null } @@ -3228,7 +3228,7 @@ "fields": { "name": "Scimitar", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", - "creature": "goblin", + "parent": "goblin", "uses_type": null, "uses_param": null } @@ -3239,7 +3239,7 @@ "fields": { "name": "Shortbow", "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "creature": "goblin", + "parent": "goblin", "uses_type": null, "uses_param": null } @@ -3250,7 +3250,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "creature": "gold-dragon-wyrmling", + "parent": "gold-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -3261,7 +3261,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "gold-dragon-wyrmling", + "parent": "gold-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -3272,7 +3272,7 @@ "fields": { "name": "Gore", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 18 (2d12 + 5) piercing damage.\n", - "creature": "gorgon", + "parent": "gorgon", "uses_type": null, "uses_param": null } @@ -3283,7 +3283,7 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.\n", - "creature": "gorgon", + "parent": "gorgon", "uses_type": null, "uses_param": null } @@ -3294,7 +3294,7 @@ "fields": { "name": "Petrifying Breath", "desc": "The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw. On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.\n", - "creature": "gorgon", + "parent": "gorgon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -3305,7 +3305,7 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage, and if the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", - "creature": "gray-ooze", + "parent": "gray-ooze", "uses_type": null, "uses_param": null } @@ -3316,7 +3316,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage.\n", - "creature": "green-dragon-wyrmling", + "parent": "green-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -3327,7 +3327,7 @@ "fields": { "name": "Poison Breath", "desc": "The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 11 Constitution saving throw, taking 21 (6d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "creature": "green-dragon-wyrmling", + "parent": "green-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -3338,7 +3338,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "creature": "green-hag", + "parent": "green-hag", "uses_type": null, "uses_param": null } @@ -3349,7 +3349,7 @@ "fields": { "name": "Illusory Appearance", "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the hag is disguised.\n", - "creature": "green-hag", + "parent": "green-hag", "uses_type": null, "uses_param": null } @@ -3360,7 +3360,7 @@ "fields": { "name": "Invisible Passage", "desc": "The hag magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.\n", - "creature": "green-hag", + "parent": "green-hag", "uses_type": null, "uses_param": null } @@ -3371,7 +3371,7 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "creature": "grick", + "parent": "grick", "uses_type": null, "uses_param": null } @@ -3382,7 +3382,7 @@ "fields": { "name": "Multiattack", "desc": "The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target.\n", - "creature": "grick", + "parent": "grick", "uses_type": null, "uses_param": null } @@ -3393,7 +3393,7 @@ "fields": { "name": "Tentacles", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.\n", - "creature": "grick", + "parent": "grick", "uses_type": null, "uses_param": null } @@ -3404,7 +3404,7 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "creature": "griffon", + "parent": "griffon", "uses_type": null, "uses_param": null } @@ -3415,7 +3415,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "creature": "griffon", + "parent": "griffon", "uses_type": null, "uses_param": null } @@ -3426,7 +3426,7 @@ "fields": { "name": "Multiattack", "desc": "The griffon makes two attacks: one with its beak and one with its claws.\n", - "creature": "griffon", + "parent": "griffon", "uses_type": null, "uses_param": null } @@ -3437,7 +3437,7 @@ "fields": { "name": "Spiked Bone Club", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage.\n", - "creature": "grimlock", + "parent": "grimlock", "uses_type": null, "uses_param": null } @@ -3448,7 +3448,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one creature. Hit: 8 (1d8 + 4) piercing damage, and the target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "creature": "guardian-naga", + "parent": "guardian-naga", "uses_type": null, "uses_param": null } @@ -3459,7 +3459,7 @@ "fields": { "name": "Spit Poison", "desc": "Ranged Weapon Attack: +8 to hit, range 15/30 ft., one creature. Hit: The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "creature": "guardian-naga", + "parent": "guardian-naga", "uses_type": null, "uses_param": null } @@ -3470,7 +3470,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "creature": "gynosphinx", + "parent": "gynosphinx", "uses_type": null, "uses_param": null } @@ -3481,7 +3481,7 @@ "fields": { "name": "Multiattack", "desc": "The sphinx makes two claw attacks.\n", - "creature": "gynosphinx", + "parent": "gynosphinx", "uses_type": null, "uses_param": null } @@ -3492,7 +3492,7 @@ "fields": { "name": "Fire Breath", "desc": "The veteran exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "creature": "half-red-dragon-veteran", + "parent": "half-red-dragon-veteran", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -3503,7 +3503,7 @@ "fields": { "name": "Heavy Crossbow", "desc": "Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.\n", - "creature": "half-red-dragon-veteran", + "parent": "half-red-dragon-veteran", "uses_type": null, "uses_param": null } @@ -3514,7 +3514,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", - "creature": "half-red-dragon-veteran", + "parent": "half-red-dragon-veteran", "uses_type": null, "uses_param": null } @@ -3525,7 +3525,7 @@ "fields": { "name": "Multiattack", "desc": "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.\n", - "creature": "half-red-dragon-veteran", + "parent": "half-red-dragon-veteran", "uses_type": null, "uses_param": null } @@ -3536,7 +3536,7 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "creature": "half-red-dragon-veteran", + "parent": "half-red-dragon-veteran", "uses_type": null, "uses_param": null } @@ -3547,7 +3547,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.\n", - "creature": "harpy", + "parent": "harpy", "uses_type": null, "uses_param": null } @@ -3558,7 +3558,7 @@ "fields": { "name": "Club", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.\n", - "creature": "harpy", + "parent": "harpy", "uses_type": null, "uses_param": null } @@ -3569,7 +3569,7 @@ "fields": { "name": "Luring Song", "desc": "The harpy sings a magical melody. Every humanoid and giant within 300 feet of the harpy that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is incapacitated.\n\nWhile charmed by the harpy, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.\n\nA target that successfully saves is immune to this harpy's song for the next 24 hours.\n", - "creature": "harpy", + "parent": "harpy", "uses_type": null, "uses_param": null } @@ -3580,7 +3580,7 @@ "fields": { "name": "Multiattack", "desc": "The harpy makes two attacks: one with its claws and one with its club.\n", - "creature": "harpy", + "parent": "harpy", "uses_type": null, "uses_param": null } @@ -3591,7 +3591,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 7 (2d6) fire damage.\n", - "creature": "hell-hound", + "parent": "hell-hound", "uses_type": null, "uses_param": null } @@ -3602,7 +3602,7 @@ "fields": { "name": "Fire Breath", "desc": "The hound exhales fire in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "creature": "hell-hound", + "parent": "hell-hound", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -3613,7 +3613,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "creature": "hezrou", + "parent": "hezrou", "uses_type": null, "uses_param": null } @@ -3624,7 +3624,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "creature": "hezrou", + "parent": "hezrou", "uses_type": null, "uses_param": null } @@ -3635,7 +3635,7 @@ "fields": { "name": "Multiattack", "desc": "The hezrou makes three attacks: one with its bite and two with its claws.\n", - "creature": "hezrou", + "parent": "hezrou", "uses_type": null, "uses_param": null } @@ -3646,7 +3646,7 @@ "fields": { "name": "Greatclub", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 18 (3d8 + 5) bludgeoning damage.\n", - "creature": "hill-giant", + "parent": "hill-giant", "uses_type": null, "uses_param": null } @@ -3657,7 +3657,7 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greatclub attacks.\n", - "creature": "hill-giant", + "parent": "hill-giant", "uses_type": null, "uses_param": null } @@ -3668,7 +3668,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +8 to hit, range 60/240 ft., one target. Hit: 21 (3d10 + 5) bludgeoning damage.\n", - "creature": "hill-giant", + "parent": "hill-giant", "uses_type": null, "uses_param": null } @@ -3679,7 +3679,7 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", - "creature": "hippogriff", + "parent": "hippogriff", "uses_type": null, "uses_param": null } @@ -3690,7 +3690,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", - "creature": "hippogriff", + "parent": "hippogriff", "uses_type": null, "uses_param": null } @@ -3701,7 +3701,7 @@ "fields": { "name": "Multiattack", "desc": "The hippogriff makes two attacks: one with its beak and one with its claws.\n", - "creature": "hippogriff", + "parent": "hippogriff", "uses_type": null, "uses_param": null } @@ -3712,7 +3712,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "creature": "hobgoblin", + "parent": "hobgoblin", "uses_type": null, "uses_param": null } @@ -3723,7 +3723,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage, or 6 (1d10 + 1) slashing damage if used with two hands.\n", - "creature": "hobgoblin", + "parent": "hobgoblin", "uses_type": null, "uses_param": null } @@ -3734,7 +3734,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or be poisoned for 1 minute. If the saving throw fails by 5 or more, the target is instead poisoned for 5 (1d10) minutes and unconscious while poisoned in this way.\n", - "creature": "homunculus", + "parent": "homunculus", "uses_type": null, "uses_param": null } @@ -3745,7 +3745,7 @@ "fields": { "name": "Fork", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (2d8 + 6) piercing damage.\n", - "creature": "horned-devil", + "parent": "horned-devil", "uses_type": null, "uses_param": null } @@ -3756,7 +3756,7 @@ "fields": { "name": "Hurl Flame", "desc": "Ranged Spell Attack: +7 to hit, range 150 ft., one target. Hit: 14 (4d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", - "creature": "horned-devil", + "parent": "horned-devil", "uses_type": null, "uses_param": null } @@ -3767,7 +3767,7 @@ "fields": { "name": "Multiattack", "desc": "The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack.\n", - "creature": "horned-devil", + "parent": "horned-devil", "uses_type": null, "uses_param": null } @@ -3778,7 +3778,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 10 (1d8 + 6) piercing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 17 Constitution saving throw or lose 10 (3d6) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 (3d6). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", - "creature": "horned-devil", + "parent": "horned-devil", "uses_type": null, "uses_param": null } @@ -3789,7 +3789,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 10 (1d10 + 5) piercing damage.\n", - "creature": "hydra", + "parent": "hydra", "uses_type": null, "uses_param": null } @@ -3800,7 +3800,7 @@ "fields": { "name": "Multiattack", "desc": "The hydra makes as many bite attacks as it has heads.\n", - "creature": "hydra", + "parent": "hydra", "uses_type": null, "uses_param": null } @@ -3811,7 +3811,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) piercing damage plus 10 (3d6) cold damage.\n", - "creature": "ice-devil", + "parent": "ice-devil", "uses_type": null, "uses_param": null } @@ -3822,7 +3822,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 10 (2d4 + 5) slashing damage plus 10 (3d6) cold damage.\n", - "creature": "ice-devil", + "parent": "ice-devil", "uses_type": null, "uses_param": null } @@ -3833,7 +3833,7 @@ "fields": { "name": "Multiattack", "desc": "The devil makes three attacks: one with its bite, one with its claws, and one with its tail.\n", - "creature": "ice-devil", + "parent": "ice-devil", "uses_type": null, "uses_param": null } @@ -3844,7 +3844,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage.\n", - "creature": "ice-devil", + "parent": "ice-devil", "uses_type": null, "uses_param": null } @@ -3855,7 +3855,7 @@ "fields": { "name": "Wall of Ice", "desc": "The devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.\n\nWhen the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.\n\nThe wall lasts for 1 minute or until the devil is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.\n", - "creature": "ice-devil", + "parent": "ice-devil", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -3866,7 +3866,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage.\n", - "creature": "ice-mephit", + "parent": "ice-mephit", "uses_type": null, "uses_param": null } @@ -3877,7 +3877,7 @@ "fields": { "name": "Frost Breath", "desc": "The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.\n", - "creature": "ice-mephit", + "parent": "ice-mephit", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -3888,7 +3888,7 @@ "fields": { "name": "Invisibility", "desc": "The imp magically turns invisible until it attacks or until its concentration ends (as if concentrating on a spell). Any equipment the imp wears or carries is invisible with it.\n", - "creature": "imp", + "parent": "imp", "uses_type": null, "uses_param": null } @@ -3899,7 +3899,7 @@ "fields": { "name": "Sting", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "creature": "imp", + "parent": "imp", "uses_type": null, "uses_param": null } @@ -3910,7 +3910,7 @@ "fields": { "name": "Sting (Bite in Beast Form)", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "creature": "imp", + "parent": "imp", "uses_type": null, "uses_param": null } @@ -3921,7 +3921,7 @@ "fields": { "name": "Multiattack", "desc": "The stalker makes two slam attacks.\n", - "creature": "invisible-stalker", + "parent": "invisible-stalker", "uses_type": null, "uses_param": null } @@ -3932,7 +3932,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", - "creature": "invisible-stalker", + "parent": "invisible-stalker", "uses_type": null, "uses_param": null } @@ -3943,7 +3943,7 @@ "fields": { "name": "Multiattack", "desc": "The golem makes two melee attacks.\n", - "creature": "iron-golem", + "parent": "iron-golem", "uses_type": null, "uses_param": null } @@ -3954,7 +3954,7 @@ "fields": { "name": "Poison Breath", "desc": "The golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "creature": "iron-golem", + "parent": "iron-golem", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -3965,7 +3965,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", - "creature": "iron-golem", + "parent": "iron-golem", "uses_type": null, "uses_param": null } @@ -3976,7 +3976,7 @@ "fields": { "name": "Sword", "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 23 (3d10 + 7) slashing damage.\n", - "creature": "iron-golem", + "parent": "iron-golem", "uses_type": null, "uses_param": null } @@ -3987,7 +3987,7 @@ "fields": { "name": "Dagger", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", - "creature": "kobold", + "parent": "kobold", "uses_type": null, "uses_param": null } @@ -3998,7 +3998,7 @@ "fields": { "name": "Sling", "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.\n", - "creature": "kobold", + "parent": "kobold", "uses_type": null, "uses_param": null } @@ -4009,7 +4009,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +17 to hit, reach 5 ft., one target. Hit: 23 (3d8 + 10) piercing damage. If the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the kraken, and it takes 42 (12d6) acid damage at the start of each of the kraken's turns.\n\nIf the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a DC 25 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", - "creature": "kraken", + "parent": "kraken", "uses_type": null, "uses_param": null } @@ -4020,7 +4020,7 @@ "fields": { "name": "Fling", "desc": "One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.\n", - "creature": "kraken", + "parent": "kraken", "uses_type": null, "uses_param": null } @@ -4031,7 +4031,7 @@ "fields": { "name": "Lightning Storm", "desc": "The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "creature": "kraken", + "parent": "kraken", "uses_type": null, "uses_param": null } @@ -4042,7 +4042,7 @@ "fields": { "name": "Multiattack", "desc": "The kraken makes three tentacle attacks, each of which it can replace with one use of Fling.\n", - "creature": "kraken", + "parent": "kraken", "uses_type": null, "uses_param": null } @@ -4053,7 +4053,7 @@ "fields": { "name": "Tentacle", "desc": "Melee Weapon Attack: +17 to hit, reach 30 ft., one target. Hit: 20 (3d6 + 10) bludgeoning damage, and the target is grappled (escape DC 18). Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.\n", - "creature": "kraken", + "parent": "kraken", "uses_type": null, "uses_param": null } @@ -4064,7 +4064,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", - "creature": "lamia", + "parent": "lamia", "uses_type": null, "uses_param": null } @@ -4075,7 +4075,7 @@ "fields": { "name": "Dagger", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.\n", - "creature": "lamia", + "parent": "lamia", "uses_type": null, "uses_param": null } @@ -4086,7 +4086,7 @@ "fields": { "name": "Intoxicating Touch", "desc": "Melee Spell Attack: +5 to hit, reach 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.\n", - "creature": "lamia", + "parent": "lamia", "uses_type": null, "uses_param": null } @@ -4097,7 +4097,7 @@ "fields": { "name": "Multiattack", "desc": "The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch.\n", - "creature": "lamia", + "parent": "lamia", "uses_type": null, "uses_param": null } @@ -4108,7 +4108,7 @@ "fields": { "name": "Fist", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\n", - "creature": "lemure", + "parent": "lemure", "uses_type": null, "uses_param": null } @@ -4119,7 +4119,7 @@ "fields": { "name": "Paralyzing Touch", "desc": "Melee Spell Attack: +12 to hit, reach 5 ft., one creature. Hit: 10 (3d6) cold damage. The target must succeed on a DC 18 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "lich", + "parent": "lich", "uses_type": null, "uses_param": null } @@ -4130,7 +4130,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "creature": "lizardfolk", + "parent": "lizardfolk", "uses_type": null, "uses_param": null } @@ -4141,7 +4141,7 @@ "fields": { "name": "Heavy Club", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", - "creature": "lizardfolk", + "parent": "lizardfolk", "uses_type": null, "uses_param": null } @@ -4152,7 +4152,7 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "creature": "lizardfolk", + "parent": "lizardfolk", "uses_type": null, "uses_param": null } @@ -4163,7 +4163,7 @@ "fields": { "name": "Multiattack", "desc": "The lizardfolk makes two melee attacks, each one with a different weapon.\n", - "creature": "lizardfolk", + "parent": "lizardfolk", "uses_type": null, "uses_param": null } @@ -4174,7 +4174,7 @@ "fields": { "name": "Spiked Shield", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "creature": "lizardfolk", + "parent": "lizardfolk", "uses_type": null, "uses_param": null } @@ -4185,7 +4185,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage.\n", - "creature": "magma-mephit", + "parent": "magma-mephit", "uses_type": null, "uses_param": null } @@ -4196,7 +4196,7 @@ "fields": { "name": "Fire Breath", "desc": "The mephit exhales a 15-foot cone of fire. Each creature in that area must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "creature": "magma-mephit", + "parent": "magma-mephit", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -4207,7 +4207,7 @@ "fields": { "name": "Touch", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d6) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 3 (1d6) fire damage at the end of each of its turns.\n", - "creature": "magmin", + "parent": "magmin", "uses_type": null, "uses_param": null } @@ -4218,7 +4218,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", - "creature": "manticore", + "parent": "manticore", "uses_type": null, "uses_param": null } @@ -4229,7 +4229,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "creature": "manticore", + "parent": "manticore", "uses_type": null, "uses_param": null } @@ -4240,7 +4240,7 @@ "fields": { "name": "Multiattack", "desc": "The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes.\n", - "creature": "manticore", + "parent": "manticore", "uses_type": null, "uses_param": null } @@ -4251,7 +4251,7 @@ "fields": { "name": "Tail Spike", "desc": "Ranged Weapon Attack: +5 to hit, range 100/200 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", - "creature": "manticore", + "parent": "manticore", "uses_type": null, "uses_param": null } @@ -4262,7 +4262,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "creature": "marilith", + "parent": "marilith", "uses_type": null, "uses_param": null } @@ -4273,7 +4273,7 @@ "fields": { "name": "Multiattack", "desc": "The marilith makes seven attacks: six with its longswords and one with its tail.\n", - "creature": "marilith", + "parent": "marilith", "uses_type": null, "uses_param": null } @@ -4284,7 +4284,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 15 (2d10 + 4) bludgeoning damage. If the target is Medium or smaller, it is grappled (escape DC 19). Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.\n", - "creature": "marilith", + "parent": "marilith", "uses_type": null, "uses_param": null } @@ -4295,7 +4295,7 @@ "fields": { "name": "Teleport", "desc": "The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "creature": "marilith", + "parent": "marilith", "uses_type": null, "uses_param": null } @@ -4306,7 +4306,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +5 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage.\n", - "creature": "medusa", + "parent": "medusa", "uses_type": null, "uses_param": null } @@ -4317,7 +4317,7 @@ "fields": { "name": "Multiattack", "desc": "The medusa makes either three melee attacks—one with its snake hair and two with its shortsword—or two ranged attacks with its longbow.\n", - "creature": "medusa", + "parent": "medusa", "uses_type": null, "uses_param": null } @@ -4328,7 +4328,7 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "creature": "medusa", + "parent": "medusa", "uses_type": null, "uses_param": null } @@ -4339,7 +4339,7 @@ "fields": { "name": "Snake Hair", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage plus 14 (4d6) poison damage.\n", - "creature": "medusa", + "parent": "medusa", "uses_type": null, "uses_param": null } @@ -4350,7 +4350,7 @@ "fields": { "name": "Spear", "desc": "Melee or Ranged Weapon Attack: +2 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hands to make a melee attack.\n", - "creature": "merfolk", + "parent": "merfolk", "uses_type": null, "uses_param": null } @@ -4361,7 +4361,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "creature": "merrow", + "parent": "merrow", "uses_type": null, "uses_param": null } @@ -4372,7 +4372,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (2d4 + 4) slashing damage.\n", - "creature": "merrow", + "parent": "merrow", "uses_type": null, "uses_param": null } @@ -4383,7 +4383,7 @@ "fields": { "name": "Harpoon", "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.\n", - "creature": "merrow", + "parent": "merrow", "uses_type": null, "uses_param": null } @@ -4394,7 +4394,7 @@ "fields": { "name": "Multiattack", "desc": "The merrow makes two attacks: one with its bite and one with its claws or harpoon.\n", - "creature": "merrow", + "parent": "merrow", "uses_type": null, "uses_param": null } @@ -4405,7 +4405,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage.\n", - "creature": "mimic", + "parent": "mimic", "uses_type": null, "uses_param": null } @@ -4416,7 +4416,7 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait.\n", - "creature": "mimic", + "parent": "mimic", "uses_type": null, "uses_param": null } @@ -4427,7 +4427,7 @@ "fields": { "name": "Gore", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", - "creature": "minotaur-skeleton", + "parent": "minotaur-skeleton", "uses_type": null, "uses_param": null } @@ -4438,7 +4438,7 @@ "fields": { "name": "Greataxe", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", - "creature": "minotaur-skeleton", + "parent": "minotaur-skeleton", "uses_type": null, "uses_param": null } @@ -4449,7 +4449,7 @@ "fields": { "name": "Gore", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", - "creature": "minotaur", + "parent": "minotaur", "uses_type": null, "uses_param": null } @@ -4460,7 +4460,7 @@ "fields": { "name": "Greataxe", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", - "creature": "minotaur", + "parent": "minotaur", "uses_type": null, "uses_param": null } @@ -4471,7 +4471,7 @@ "fields": { "name": "Dreadful Glare", "desc": "The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a DC 16 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours.\n", - "creature": "mummy-lord", + "parent": "mummy-lord", "uses_type": null, "uses_param": null } @@ -4482,7 +4482,7 @@ "fields": { "name": "Multiattack", "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", - "creature": "mummy-lord", + "parent": "mummy-lord", "uses_type": null, "uses_param": null } @@ -4493,7 +4493,7 @@ "fields": { "name": "Rotting Fist", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage plus 21 (6d6) necrotic damage. If the target is a creature, it must succeed on a DC 16 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", - "creature": "mummy-lord", + "parent": "mummy-lord", "uses_type": null, "uses_param": null } @@ -4504,7 +4504,7 @@ "fields": { "name": "Dreadful Glare", "desc": "The mummy targets one creature it can see within 60 feet of it. If the target can see the mummy, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.\n", - "creature": "mummy", + "parent": "mummy", "uses_type": null, "uses_param": null } @@ -4515,7 +4515,7 @@ "fields": { "name": "Multiattack", "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", - "creature": "mummy", + "parent": "mummy", "uses_type": null, "uses_param": null } @@ -4526,7 +4526,7 @@ "fields": { "name": "Rotting Fist", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage. If the target is a creature, it must succeed on a DC 12 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", - "creature": "mummy", + "parent": "mummy", "uses_type": null, "uses_param": null } @@ -4537,7 +4537,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 32 (5d10 + 5) piercing damage.\n", - "creature": "nalfeshnee", + "parent": "nalfeshnee", "uses_type": null, "uses_param": null } @@ -4548,7 +4548,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) slashing damage.\n", - "creature": "nalfeshnee", + "parent": "nalfeshnee", "uses_type": null, "uses_param": null } @@ -4559,7 +4559,7 @@ "fields": { "name": "Horror Nimbus", "desc": "The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.\n", - "creature": "nalfeshnee", + "parent": "nalfeshnee", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -4570,7 +4570,7 @@ "fields": { "name": "Multiattack", "desc": "The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws.\n", - "creature": "nalfeshnee", + "parent": "nalfeshnee", "uses_type": null, "uses_param": null } @@ -4581,7 +4581,7 @@ "fields": { "name": "Teleport", "desc": "The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "creature": "nalfeshnee", + "parent": "nalfeshnee", "uses_type": null, "uses_param": null } @@ -4592,7 +4592,7 @@ "fields": { "name": "Change Shape", "desc": "The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies.\n", - "creature": "night-hag", + "parent": "night-hag", "uses_type": null, "uses_param": null } @@ -4603,7 +4603,7 @@ "fields": { "name": "Claws", "desc": "(Hag Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "creature": "night-hag", + "parent": "night-hag", "uses_type": null, "uses_param": null } @@ -4614,7 +4614,7 @@ "fields": { "name": "Etherealness", "desc": "The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession.\n", - "creature": "night-hag", + "parent": "night-hag", "uses_type": null, "uses_param": null } @@ -4625,7 +4625,7 @@ "fields": { "name": "Nightmare Haunting", "desc": "While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle. As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.\n", - "creature": "night-hag", + "parent": "night-hag", "uses_type": "PER_DAY", "uses_param": 1 } @@ -4636,7 +4636,7 @@ "fields": { "name": "Ethereal Stride", "desc": "The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.\n", - "creature": "nightmare", + "parent": "nightmare", "uses_type": null, "uses_param": null } @@ -4647,7 +4647,7 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage.\n", - "creature": "nightmare", + "parent": "nightmare", "uses_type": null, "uses_param": null } @@ -4658,7 +4658,7 @@ "fields": { "name": "Pseudopod", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage.\n", - "creature": "ochre-jelly", + "parent": "ochre-jelly", "uses_type": null, "uses_param": null } @@ -4669,7 +4669,7 @@ "fields": { "name": "Morningstar", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "creature": "ogre-zombie", + "parent": "ogre-zombie", "uses_type": null, "uses_param": null } @@ -4680,7 +4680,7 @@ "fields": { "name": "Greatclub", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "creature": "ogre", + "parent": "ogre", "uses_type": null, "uses_param": null } @@ -4691,7 +4691,7 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", - "creature": "ogre", + "parent": "ogre", "uses_type": null, "uses_param": null } @@ -4702,7 +4702,7 @@ "fields": { "name": "Change Shape", "desc": "The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size.\n", - "creature": "oni", + "parent": "oni", "uses_type": null, "uses_param": null } @@ -4713,7 +4713,7 @@ "fields": { "name": "Claw", "desc": "(Oni Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", - "creature": "oni", + "parent": "oni", "uses_type": null, "uses_param": null } @@ -4724,7 +4724,7 @@ "fields": { "name": "Glaive", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small or Medium form.\n", - "creature": "oni", + "parent": "oni", "uses_type": null, "uses_param": null } @@ -4735,7 +4735,7 @@ "fields": { "name": "Multiattack", "desc": "The oni makes two attacks, either with its claws or its glaive.\n", - "creature": "oni", + "parent": "oni", "uses_type": null, "uses_param": null } @@ -4746,7 +4746,7 @@ "fields": { "name": "Greataxe", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.\n", - "creature": "orc", + "parent": "orc", "uses_type": null, "uses_param": null } @@ -4757,7 +4757,7 @@ "fields": { "name": "Javelin", "desc": "Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "creature": "orc", + "parent": "orc", "uses_type": null, "uses_param": null } @@ -4768,7 +4768,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 12 (2d8 + 3) piercing damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured.\n", - "creature": "otyugh", + "parent": "otyugh", "uses_type": null, "uses_param": null } @@ -4779,7 +4779,7 @@ "fields": { "name": "Multiattack", "desc": "The otyugh makes three attacks: one with its bite and two with its tentacles.\n", - "creature": "otyugh", + "parent": "otyugh", "uses_type": null, "uses_param": null } @@ -4790,7 +4790,7 @@ "fields": { "name": "Tentacle", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage. If the target is Medium or smaller, it is grappled (escape DC 13) and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.\n", - "creature": "otyugh", + "parent": "otyugh", "uses_type": null, "uses_param": null } @@ -4801,7 +4801,7 @@ "fields": { "name": "Tentacle Slam", "desc": "The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the otyugh's next turn. On a successful save, the target takes half the bludgeoning damage and isn't stunned.\n", - "creature": "otyugh", + "parent": "otyugh", "uses_type": null, "uses_param": null } @@ -4812,7 +4812,7 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one creature. Hit: 10 (1d10 + 5) piercing damage.\n", - "creature": "owlbear", + "parent": "owlbear", "uses_type": null, "uses_param": null } @@ -4823,7 +4823,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", - "creature": "owlbear", + "parent": "owlbear", "uses_type": null, "uses_param": null } @@ -4834,7 +4834,7 @@ "fields": { "name": "Multiattack", "desc": "The owlbear makes two attacks: one with its beak and one with its claws.\n", - "creature": "owlbear", + "parent": "owlbear", "uses_type": null, "uses_param": null } @@ -4845,7 +4845,7 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "creature": "pegasus", + "parent": "pegasus", "uses_type": null, "uses_param": null } @@ -4856,7 +4856,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) piercing damage. The target must succeed on a DC 21 Constitution saving throw or become poisoned. While poisoned in this way, the target can't regain hit points, and it takes 21 (6d6) poison damage at the start of each of its turns. The poisoned target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "pit-fiend", + "parent": "pit-fiend", "uses_type": null, "uses_param": null } @@ -4867,7 +4867,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 17 (2d8 + 8) slashing damage.\n", - "creature": "pit-fiend", + "parent": "pit-fiend", "uses_type": null, "uses_param": null } @@ -4878,7 +4878,7 @@ "fields": { "name": "Mace", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) bludgeoning damage plus 21 (6d6) fire damage.\n", - "creature": "pit-fiend", + "parent": "pit-fiend", "uses_type": null, "uses_param": null } @@ -4889,7 +4889,7 @@ "fields": { "name": "Multiattack", "desc": "The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail.\n", - "creature": "pit-fiend", + "parent": "pit-fiend", "uses_type": null, "uses_param": null } @@ -4900,7 +4900,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 24 (3d10 + 8) bludgeoning damage.\n", - "creature": "pit-fiend", + "parent": "pit-fiend", "uses_type": null, "uses_param": null } @@ -4911,7 +4911,7 @@ "fields": { "name": "Greatsword", "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage.\n", - "creature": "planetar", + "parent": "planetar", "uses_type": null, "uses_param": null } @@ -4922,7 +4922,7 @@ "fields": { "name": "Healing Touch", "desc": "The planetar touches another creature. The target magically regains 30 (6d8 + 3) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "creature": "planetar", + "parent": "planetar", "uses_type": "PER_DAY", "uses_param": 4 } @@ -4933,7 +4933,7 @@ "fields": { "name": "Multiattack", "desc": "The planetar makes two melee attacks.\n", - "creature": "planetar", + "parent": "planetar", "uses_type": null, "uses_param": null } @@ -4944,7 +4944,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 14 (3d6 + 4) piercing damage.\n", - "creature": "plesiosaurus", + "parent": "plesiosaurus", "uses_type": null, "uses_param": null } @@ -4955,7 +4955,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", - "creature": "pseudodragon", + "parent": "pseudodragon", "uses_type": null, "uses_param": null } @@ -4966,7 +4966,7 @@ "fields": { "name": "Sting", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. If the saving throw fails by 5 or more, the target falls unconscious for the same duration, or until it takes damage or another creature uses an action to shake it awake.\n", - "creature": "pseudodragon", + "parent": "pseudodragon", "uses_type": null, "uses_param": null } @@ -4977,7 +4977,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 22 (3d8 + 9) piercing damage. If the target is a Large or smaller creature, it must succeed on a DC 19 Dexterity saving throw or be swallowed by the worm. A swallowed creature is blinded and restrained, it has total cover against attacks and other effects outside the worm, and it takes 21 (6d6) acid damage at the start of each of the worm's turns.\n\nIf the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a DC 21 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 20 feet of movement, exiting prone.\n", - "creature": "purple-worm", + "parent": "purple-worm", "uses_type": null, "uses_param": null } @@ -4988,7 +4988,7 @@ "fields": { "name": "Multiattack", "desc": "The worm makes two attacks: one with its bite and one with its stinger.\n", - "creature": "purple-worm", + "parent": "purple-worm", "uses_type": null, "uses_param": null } @@ -4999,7 +4999,7 @@ "fields": { "name": "Tail Stinger", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 19 (3d6 + 9) piercing damage, and the target must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "creature": "purple-worm", + "parent": "purple-worm", "uses_type": null, "uses_param": null } @@ -5010,7 +5010,7 @@ "fields": { "name": "Claws (Bite in Beast Form)", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must succeed on a DC 10 Constitution saving throw or take 5 (2d4) poison damage and become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "quasit", + "parent": "quasit", "uses_type": null, "uses_param": null } @@ -5021,7 +5021,7 @@ "fields": { "name": "Invisibility", "desc": "The quasit magically turns invisible until it attacks or uses Scare, or until its concentration ends (as if concentrating on a spell). Any equipment the quasit wears or carries is invisible with it.\n", - "creature": "quasit", + "parent": "quasit", "uses_type": null, "uses_param": null } @@ -5032,7 +5032,7 @@ "fields": { "name": "Scare", "desc": "One creature of the quasit's choice within 20 feet of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.\n", - "creature": "quasit", + "parent": "quasit", "uses_type": "PER_DAY", "uses_param": 1 } @@ -5043,7 +5043,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature. The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a remove curse spell or similar magic.\n", - "creature": "rakshasa", + "parent": "rakshasa", "uses_type": null, "uses_param": null } @@ -5054,7 +5054,7 @@ "fields": { "name": "Multiattack", "desc": "The rakshasa makes two claw attacks.\n", - "creature": "rakshasa", + "parent": "rakshasa", "uses_type": null, "uses_param": null } @@ -5065,7 +5065,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage.\n", - "creature": "red-dragon-wyrmling", + "parent": "red-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -5076,7 +5076,7 @@ "fields": { "name": "Fire Breath", "desc": "The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "creature": "red-dragon-wyrmling", + "parent": "red-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -5087,7 +5087,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage. If the target is a creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.\n", - "creature": "remorhaz", + "parent": "remorhaz", "uses_type": null, "uses_param": null } @@ -5098,7 +5098,7 @@ "fields": { "name": "Swallow", "desc": "The remorhaz makes one bite attack against a Medium or smaller creature it is grappling. If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the remorhaz, and it takes 21 (6d6) acid damage at the start of each of the remorhaz's turns.\n\nIf the remorhaz takes 30 damage or more on a single turn from a creature inside it, the remorhaz must succeed on a DC 15 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the remorhaz. If the remorhaz dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", - "creature": "remorhaz", + "parent": "remorhaz", "uses_type": null, "uses_param": null } @@ -5109,7 +5109,7 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 27 (4d8 + 9) piercing damage.\n", - "creature": "roc", + "parent": "roc", "uses_type": null, "uses_param": null } @@ -5120,7 +5120,7 @@ "fields": { "name": "Multiattack", "desc": "The roc makes two attacks: one with its beak and one with its talons.\n", - "creature": "roc", + "parent": "roc", "uses_type": null, "uses_param": null } @@ -5131,7 +5131,7 @@ "fields": { "name": "Talons", "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 23 (4d6 + 9) slashing damage, and the target is grappled (escape DC 19). Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.\n", - "creature": "roc", + "parent": "roc", "uses_type": null, "uses_param": null } @@ -5142,7 +5142,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 22 (4d8 + 4) piercing damage.\n", - "creature": "roper", + "parent": "roper", "uses_type": null, "uses_param": null } @@ -5153,7 +5153,7 @@ "fields": { "name": "Multiattack", "desc": "The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite.\n", - "creature": "roper", + "parent": "roper", "uses_type": null, "uses_param": null } @@ -5164,7 +5164,7 @@ "fields": { "name": "Reel", "desc": "The roper pulls each creature grappled by it up to 25 feet straight toward it.\n", - "creature": "roper", + "parent": "roper", "uses_type": null, "uses_param": null } @@ -5175,7 +5175,7 @@ "fields": { "name": "Tendril", "desc": "Melee Weapon Attack: +7 to hit, reach 50 ft., one creature. Hit: The target is grappled (escape DC 15). Until the grapple ends, the target is restrained and has disadvantage on Strength checks and Strength saving throws, and the roper can't use the same tendril on another target.\n", - "creature": "roper", + "parent": "roper", "uses_type": null, "uses_param": null } @@ -5186,7 +5186,7 @@ "fields": { "name": "Smother", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one Medium or smaller creature. Hit: The creature is grappled (escape DC 13). Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 (2d6 + 3) bludgeoning damage.\n", - "creature": "rug-of-smothering", + "parent": "rug-of-smothering", "uses_type": null, "uses_param": null } @@ -5197,7 +5197,7 @@ "fields": { "name": "Antennae", "desc": "The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the rust monster's touch. If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.\n", - "creature": "rust-monster", + "parent": "rust-monster", "uses_type": null, "uses_param": null } @@ -5208,7 +5208,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "creature": "rust-monster", + "parent": "rust-monster", "uses_type": null, "uses_param": null } @@ -5219,7 +5219,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) piercing damage.\n", - "creature": "sahuagin", + "parent": "sahuagin", "uses_type": null, "uses_param": null } @@ -5230,7 +5230,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) slashing damage.\n", - "creature": "sahuagin", + "parent": "sahuagin", "uses_type": null, "uses_param": null } @@ -5241,7 +5241,7 @@ "fields": { "name": "Multiattack", "desc": "The sahuagin makes two melee attacks: one with its bite and one with its claws or spear.\n", - "creature": "sahuagin", + "parent": "sahuagin", "uses_type": null, "uses_param": null } @@ -5252,7 +5252,7 @@ "fields": { "name": "Spear", "desc": "Melee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.\n", - "creature": "sahuagin", + "parent": "sahuagin", "uses_type": null, "uses_param": null } @@ -5263,7 +5263,7 @@ "fields": { "name": "Multiattack", "desc": "The salamander makes two attacks: one with its spear and one with its tail.\n", - "creature": "salamander", + "parent": "salamander", "uses_type": null, "uses_param": null } @@ -5274,7 +5274,7 @@ "fields": { "name": "Spear", "desc": "Melee or Ranged Weapon Attack: +7 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", - "creature": "salamander", + "parent": "salamander", "uses_type": null, "uses_param": null } @@ -5285,7 +5285,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage, and the target is grappled (escape DC 14). Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.\n", - "creature": "salamander", + "parent": "salamander", "uses_type": null, "uses_param": null } @@ -5296,7 +5296,7 @@ "fields": { "name": "Ram", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) bludgeoning damage.\n", - "creature": "satyr", + "parent": "satyr", "uses_type": null, "uses_param": null } @@ -5307,7 +5307,7 @@ "fields": { "name": "Shortbow", "desc": "Ranged Weapon Attack: +5 to hit, range 80/320 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "creature": "satyr", + "parent": "satyr", "uses_type": null, "uses_param": null } @@ -5318,7 +5318,7 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "creature": "satyr", + "parent": "satyr", "uses_type": null, "uses_param": null } @@ -5329,7 +5329,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", - "creature": "sea-hag", + "parent": "sea-hag", "uses_type": null, "uses_param": null } @@ -5340,7 +5340,7 @@ "fields": { "name": "Death Glare", "desc": "The hag targets one frightened creature she can see within 30 feet of her. If the target can see the hag, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.\n", - "creature": "sea-hag", + "parent": "sea-hag", "uses_type": null, "uses_param": null } @@ -5351,7 +5351,7 @@ "fields": { "name": "Illusory Appearance", "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 16 Intelligence (Investigation) check to discern that the hag is disguised.\n", - "creature": "sea-hag", + "parent": "sea-hag", "uses_type": null, "uses_param": null } @@ -5362,7 +5362,7 @@ "fields": { "name": "Strength Drain", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) necrotic damage, and the target's Strength score is reduced by 1d4. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.\n\nIf a non-evil humanoid dies from this attack, a new shadow rises from the corpse 1d4 hours later.\n", - "creature": "shadow", + "parent": "shadow", "uses_type": null, "uses_param": null } @@ -5373,7 +5373,7 @@ "fields": { "name": "Engulf", "desc": "The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must succeed on a DC 14 Constitution saving throw at the start of each of the mound's turns or take 13 (2d8 + 4) bludgeoning damage. If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time.\n", - "creature": "shambling-mound", + "parent": "shambling-mound", "uses_type": null, "uses_param": null } @@ -5384,7 +5384,7 @@ "fields": { "name": "Multiattack", "desc": "The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is grappled (escape DC 14), and the shambling mound uses its Engulf on it.\n", - "creature": "shambling-mound", + "parent": "shambling-mound", "uses_type": null, "uses_param": null } @@ -5395,7 +5395,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "creature": "shambling-mound", + "parent": "shambling-mound", "uses_type": null, "uses_param": null } @@ -5406,7 +5406,7 @@ "fields": { "name": "Fist", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "creature": "shield-guardian", + "parent": "shield-guardian", "uses_type": null, "uses_param": null } @@ -5417,7 +5417,7 @@ "fields": { "name": "Multiattack", "desc": "The guardian makes two fist attacks.\n", - "creature": "shield-guardian", + "parent": "shield-guardian", "uses_type": null, "uses_param": null } @@ -5428,7 +5428,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "creature": "silver-dragon-wyrmling", + "parent": "silver-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -5439,7 +5439,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "silver-dragon-wyrmling", + "parent": "silver-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -5450,7 +5450,7 @@ "fields": { "name": "Shortbow", "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "creature": "skeleton", + "parent": "skeleton", "uses_type": null, "uses_param": null } @@ -5461,7 +5461,7 @@ "fields": { "name": "Shortsword", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "creature": "skeleton", + "parent": "skeleton", "uses_type": null, "uses_param": null } @@ -5472,7 +5472,7 @@ "fields": { "name": "Flying Sword", "desc": "The solar releases its greatsword to hover magically in an unoccupied space within 5 feet of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 feet and either make one attack against a target or return to the solar's hands. If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies.\n", - "creature": "solar", + "parent": "solar", "uses_type": null, "uses_param": null } @@ -5483,7 +5483,7 @@ "fields": { "name": "Greatsword", "desc": "Melee Weapon Attack: +15 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) slashing damage plus 27 (6d8) radiant damage.\n", - "creature": "solar", + "parent": "solar", "uses_type": null, "uses_param": null } @@ -5494,7 +5494,7 @@ "fields": { "name": "Healing Touch", "desc": "The solar touches another creature. The target magically regains 40 (8d8 + 4) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "creature": "solar", + "parent": "solar", "uses_type": "PER_DAY", "uses_param": 4 } @@ -5505,7 +5505,7 @@ "fields": { "name": "Multiattack", "desc": "The solar makes two greatsword attacks.\n", - "creature": "solar", + "parent": "solar", "uses_type": null, "uses_param": null } @@ -5516,7 +5516,7 @@ "fields": { "name": "Slaying Longbow", "desc": "Ranged Weapon Attack: +13 to hit, range 150/600 ft., one target. Hit: 15 (2d8 + 6) piercing damage plus 27 (6d8) radiant damage. If the target is a creature that has 100 hit points or fewer, it must succeed on a DC 15 Constitution saving throw or die.\n", - "creature": "solar", + "parent": "solar", "uses_type": null, "uses_param": null } @@ -5527,7 +5527,7 @@ "fields": { "name": "Life Drain", "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) necrotic damage. The target must succeed on a DC 10 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "creature": "specter", + "parent": "specter", "uses_type": null, "uses_param": null } @@ -5538,7 +5538,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 7 (1d6 + 4) piercing damage, and the target must make a DC 13 Constitution saving throw, taking 31 (7d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "creature": "spirit-naga", + "parent": "spirit-naga", "uses_type": null, "uses_param": null } @@ -5549,7 +5549,7 @@ "fields": { "name": "Heart Sight", "desc": "The sprite touches a creature and magically knows the creature's current emotional state. If the target fails a DC 10 Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.\n", - "creature": "sprite", + "parent": "sprite", "uses_type": null, "uses_param": null } @@ -5560,7 +5560,7 @@ "fields": { "name": "Invisibility", "desc": "The sprite magically turns invisible until it attacks or casts a spell, or until its concentration ends (as if concentrating on a spell). Any equipment the sprite wears or carries is invisible with it.\n", - "creature": "sprite", + "parent": "sprite", "uses_type": null, "uses_param": null } @@ -5571,7 +5571,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 1 slashing damage.\n", - "creature": "sprite", + "parent": "sprite", "uses_type": null, "uses_param": null } @@ -5582,7 +5582,7 @@ "fields": { "name": "Shortbow", "desc": "Ranged Weapon Attack: +6 to hit, range 40/160 ft., one target. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or become poisoned for 1 minute. If its saving throw result is 5 or lower, the poisoned target falls unconscious for the same duration, or until it takes damage or another creature takes an action to shake it awake.\n", - "creature": "sprite", + "parent": "sprite", "uses_type": null, "uses_param": null } @@ -5593,7 +5593,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 2 (1d4) slashing damage plus 2 (1d4) fire damage.\n", - "creature": "steam-mephit", + "parent": "steam-mephit", "uses_type": null, "uses_param": null } @@ -5604,7 +5604,7 @@ "fields": { "name": "Steam Breath", "desc": "The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 4 (1d8) fire damage on a failed save, or half as much damage on a successful one.\n", - "creature": "steam-mephit", + "parent": "steam-mephit", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -5615,7 +5615,7 @@ "fields": { "name": "Blood Drain", "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 5 (1d4 + 3) piercing damage, and the stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 (1d4 + 3) hit points due to blood loss.\n\nThe stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies. A creature, including the target, can use its action to detach the stirge.\n", - "creature": "stirge", + "parent": "stirge", "uses_type": null, "uses_param": null } @@ -5626,7 +5626,7 @@ "fields": { "name": "Greatclub", "desc": "Melee Weapon Attack: +9 to hit, reach 15 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", - "creature": "stone-giant", + "parent": "stone-giant", "uses_type": null, "uses_param": null } @@ -5637,7 +5637,7 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greatclub attacks.\n", - "creature": "stone-giant", + "parent": "stone-giant", "uses_type": null, "uses_param": null } @@ -5648,7 +5648,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage. If the target is a creature, it must succeed on a DC 17 Strength saving throw or be knocked prone.\n", - "creature": "stone-giant", + "parent": "stone-giant", "uses_type": null, "uses_param": null } @@ -5659,7 +5659,7 @@ "fields": { "name": "Multiattack", "desc": "The golem makes two slam attacks.\n", - "creature": "stone-golem", + "parent": "stone-golem", "uses_type": null, "uses_param": null } @@ -5670,7 +5670,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", - "creature": "stone-golem", + "parent": "stone-golem", "uses_type": null, "uses_param": null } @@ -5681,7 +5681,7 @@ "fields": { "name": "Slow", "desc": "The golem targets one or more creatures it can see within 10 feet of it. Each target must make a DC 17 Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "stone-golem", + "parent": "stone-golem", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -5692,7 +5692,7 @@ "fields": { "name": "Greatsword", "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 30 (6d6 + 9) slashing damage.\n", - "creature": "storm-giant", + "parent": "storm-giant", "uses_type": null, "uses_param": null } @@ -5703,7 +5703,7 @@ "fields": { "name": "Lightning Strike", "desc": "The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a DC 17 Dexterity saving throw, taking 54 (12d8) lightning damage on a failed save, or half as much damage on a successful one.\n", - "creature": "storm-giant", + "parent": "storm-giant", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -5714,7 +5714,7 @@ "fields": { "name": "Multiattack", "desc": "The giant makes two greatsword attacks.\n", - "creature": "storm-giant", + "parent": "storm-giant", "uses_type": null, "uses_param": null } @@ -5725,7 +5725,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +14 to hit, range 60/240 ft., one target. Hit: 35 (4d12 + 9) bludgeoning damage.\n", - "creature": "storm-giant", + "parent": "storm-giant", "uses_type": null, "uses_param": null } @@ -5736,7 +5736,7 @@ "fields": { "name": "Charm", "desc": "One humanoid the fiend can see within 30 feet of it must succeed on a DC 15 Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the fiend's verbal or telepathic commands. If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.\n\nThe fiend can have only one target charmed at a time. If it charms another, the effect on the previous target ends.\n", - "creature": "succubusincubus", + "parent": "succubusincubus", "uses_type": null, "uses_param": null } @@ -5747,7 +5747,7 @@ "fields": { "name": "Claw", "desc": "(Fiend Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "creature": "succubusincubus", + "parent": "succubusincubus", "uses_type": null, "uses_param": null } @@ -5758,7 +5758,7 @@ "fields": { "name": "Draining Kiss", "desc": "The fiend kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "creature": "succubusincubus", + "parent": "succubusincubus", "uses_type": null, "uses_param": null } @@ -5769,7 +5769,7 @@ "fields": { "name": "Etherealness", "desc": "The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa.\n", - "creature": "succubusincubus", + "parent": "succubusincubus", "uses_type": null, "uses_param": null } @@ -5780,7 +5780,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 36 (4d12 + 10) piercing damage. If the target is a creature, it is grappled (escape DC 20). Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.\n", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -5791,7 +5791,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +19 to hit, reach 15 ft., one target. Hit: 28 (4d8 + 10) slashing damage.\n", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -5802,7 +5802,7 @@ "fields": { "name": "Frightful Presence", "desc": "Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours.\n", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -5813,7 +5813,7 @@ "fields": { "name": "Horns", "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 32 (4d10 + 10) piercing damage.\n", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -5824,7 +5824,7 @@ "fields": { "name": "Multiattack", "desc": "The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite.\n", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -5835,7 +5835,7 @@ "fields": { "name": "Swallow", "desc": "The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the tarrasque, and it takes 56 (16d6) acid damage at the start of each of the tarrasque's turns.\n\nIf the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a DC 20 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 30 feet of movement, exiting prone.\n", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -5846,7 +5846,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +19 to hit, reach 20 ft., one target. Hit: 24 (4d6 + 10) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be knocked prone.\n", - "creature": "tarrasque", + "parent": "tarrasque", "uses_type": null, "uses_param": null } @@ -5857,7 +5857,7 @@ "fields": { "name": "Animate Trees", "desc": "The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a treant, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.\n", - "creature": "treant", + "parent": "treant", "uses_type": "PER_DAY", "uses_param": 1 } @@ -5868,7 +5868,7 @@ "fields": { "name": "Multiattack", "desc": "The treant makes two slam attacks.\n", - "creature": "treant", + "parent": "treant", "uses_type": null, "uses_param": null } @@ -5879,7 +5879,7 @@ "fields": { "name": "Rock", "desc": "Ranged Weapon Attack: +10 to hit, range 60/180 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", - "creature": "treant", + "parent": "treant", "uses_type": null, "uses_param": null } @@ -5890,7 +5890,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 16 (3d6 + 6) bludgeoning damage.\n", - "creature": "treant", + "parent": "treant", "uses_type": null, "uses_param": null } @@ -5901,7 +5901,7 @@ "fields": { "name": "Gore", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 24 (4d8 + 6) piercing damage.\n", - "creature": "triceratops", + "parent": "triceratops", "uses_type": null, "uses_param": null } @@ -5912,7 +5912,7 @@ "fields": { "name": "Stomp", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.\n", - "creature": "triceratops", + "parent": "triceratops", "uses_type": null, "uses_param": null } @@ -5923,7 +5923,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) piercing damage.\n", - "creature": "troll", + "parent": "troll", "uses_type": null, "uses_param": null } @@ -5934,7 +5934,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "creature": "troll", + "parent": "troll", "uses_type": null, "uses_param": null } @@ -5945,7 +5945,7 @@ "fields": { "name": "Multiattack", "desc": "The troll makes three attacks: one with its bite and two with its claws.\n", - "creature": "troll", + "parent": "troll", "uses_type": null, "uses_param": null } @@ -5956,7 +5956,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 33 (4d12 + 7) piercing damage. If the target is a Medium or smaller creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.\n", - "creature": "tyrannosaurus-rex", + "parent": "tyrannosaurus-rex", "uses_type": null, "uses_param": null } @@ -5967,7 +5967,7 @@ "fields": { "name": "Multiattack", "desc": "The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target.\n", - "creature": "tyrannosaurus-rex", + "parent": "tyrannosaurus-rex", "uses_type": null, "uses_param": null } @@ -5978,7 +5978,7 @@ "fields": { "name": "Tail", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", - "creature": "tyrannosaurus-rex", + "parent": "tyrannosaurus-rex", "uses_type": null, "uses_param": null } @@ -5989,7 +5989,7 @@ "fields": { "name": "Healing Touch", "desc": "The unicorn touches another creature with its horn. The target magically regains 11 (2d8 + 2) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target.\n", - "creature": "unicorn", + "parent": "unicorn", "uses_type": "PER_DAY", "uses_param": 3 } @@ -6000,7 +6000,7 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "creature": "unicorn", + "parent": "unicorn", "uses_type": null, "uses_param": null } @@ -6011,7 +6011,7 @@ "fields": { "name": "Horn", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "creature": "unicorn", + "parent": "unicorn", "uses_type": null, "uses_param": null } @@ -6022,7 +6022,7 @@ "fields": { "name": "Multiattack", "desc": "The unicorn makes two attacks: one with its hooves and one with its horn.\n", - "creature": "unicorn", + "parent": "unicorn", "uses_type": null, "uses_param": null } @@ -6033,7 +6033,7 @@ "fields": { "name": "Teleport", "desc": "The unicorn magically teleports itself and up to three willing creatures it can see within 5 feet of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away.\n", - "creature": "unicorn", + "parent": "unicorn", "uses_type": "PER_DAY", "uses_param": 1 } @@ -6044,7 +6044,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "creature": "vampire-spawn", + "parent": "vampire-spawn", "uses_type": null, "uses_param": null } @@ -6055,7 +6055,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 8 (2d4 + 3) slashing damage. Instead of dealing damage, the vampire can grapple the target (escape DC 13).\n", - "creature": "vampire-spawn", + "parent": "vampire-spawn", "uses_type": null, "uses_param": null } @@ -6066,7 +6066,7 @@ "fields": { "name": "Multiattack", "desc": "The vampire makes two attacks, only one of which can be a bite attack.\n", - "creature": "vampire-spawn", + "parent": "vampire-spawn", "uses_type": null, "uses_param": null } @@ -6077,7 +6077,7 @@ "fields": { "name": "Bite", "desc": "(Bat or Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 7 (1d6 + 4) piercing damage plus 10 (3d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a vampire spawn under the vampire's control.\n", - "creature": "vampire", + "parent": "vampire", "uses_type": null, "uses_param": null } @@ -6088,7 +6088,7 @@ "fields": { "name": "Charm", "desc": "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a DC 17 Wisdom saving throw against this magic or be charmed by the vampire. The charmed target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.\n\nEach time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect.\n", - "creature": "vampire", + "parent": "vampire", "uses_type": null, "uses_param": null } @@ -6099,7 +6099,7 @@ "fields": { "name": "Children of the Night", "desc": "The vampire magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the vampire can call 3d6 wolves instead. The called creatures arrive in 1d4 rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action.\n", - "creature": "vampire", + "parent": "vampire", "uses_type": "PER_DAY", "uses_param": 1 } @@ -6110,7 +6110,7 @@ "fields": { "name": "Multiattack", "desc": "(Vampire Form Only). The vampire makes two attacks, only one of which can be a bite attack.\n", - "creature": "vampire", + "parent": "vampire", "uses_type": null, "uses_param": null } @@ -6121,7 +6121,7 @@ "fields": { "name": "Unarmed Strike", "desc": "(Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one creature. Hit: 8 (1d8 + 4) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape DC 18).\n", - "creature": "vampire", + "parent": "vampire", "uses_type": null, "uses_param": null } @@ -6132,7 +6132,7 @@ "fields": { "name": "Multiattack", "desc": "The fungus makes 1d4 Rotting Touch attacks.\n", - "creature": "violet-fungus", + "parent": "violet-fungus", "uses_type": null, "uses_param": null } @@ -6143,7 +6143,7 @@ "fields": { "name": "Rotting Touch", "desc": "Melee Weapon Attack: +2 to hit, reach 10 ft., one creature. Hit: 4 (1d8) necrotic damage.\n", - "creature": "violet-fungus", + "parent": "violet-fungus", "uses_type": null, "uses_param": null } @@ -6154,7 +6154,7 @@ "fields": { "name": "Beak", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", - "creature": "vrock", + "parent": "vrock", "uses_type": null, "uses_param": null } @@ -6165,7 +6165,7 @@ "fields": { "name": "Multiattack", "desc": "The vrock makes two attacks: one with its beak and one with its talons.\n", - "creature": "vrock", + "parent": "vrock", "uses_type": null, "uses_param": null } @@ -6176,7 +6176,7 @@ "fields": { "name": "Spores", "desc": "A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.\n", - "creature": "vrock", + "parent": "vrock", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 6 } @@ -6187,7 +6187,7 @@ "fields": { "name": "Stunning Screech", "desc": "The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must succeed on a DC 14 Constitution saving throw or be stunned until the end of the vrock's next turn.\n", - "creature": "vrock", + "parent": "vrock", "uses_type": "PER_DAY", "uses_param": 1 } @@ -6198,7 +6198,7 @@ "fields": { "name": "Talons", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", - "creature": "vrock", + "parent": "vrock", "uses_type": null, "uses_param": null } @@ -6209,7 +6209,7 @@ "fields": { "name": "Hooves", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "creature": "warhorse-skeleton", + "parent": "warhorse-skeleton", "uses_type": null, "uses_param": null } @@ -6220,7 +6220,7 @@ "fields": { "name": "Multiattack", "desc": "The elemental makes two slam attacks.\n", - "creature": "water-elemental", + "parent": "water-elemental", "uses_type": null, "uses_param": null } @@ -6231,7 +6231,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "creature": "water-elemental", + "parent": "water-elemental", "uses_type": null, "uses_param": null } @@ -6242,7 +6242,7 @@ "fields": { "name": "Whelm", "desc": "Each creature in the elemental's space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the elemental's space.\n\nThe elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a DC 14 Strength and succeeding.\n", - "creature": "water-elemental", + "parent": "water-elemental", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 4 } @@ -6253,7 +6253,7 @@ "fields": { "name": "Bite", "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage. If the target is a humanoid, it must succeed on a DC 14 Constitution saving throw or be cursed with werebear lycanthropy.\n", - "creature": "werebear", + "parent": "werebear", "uses_type": null, "uses_param": null } @@ -6264,7 +6264,7 @@ "fields": { "name": "Claw", "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "creature": "werebear", + "parent": "werebear", "uses_type": null, "uses_param": null } @@ -6275,7 +6275,7 @@ "fields": { "name": "Greataxe", "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) slashing damage.\n", - "creature": "werebear", + "parent": "werebear", "uses_type": null, "uses_param": null } @@ -6286,7 +6286,7 @@ "fields": { "name": "Multiattack", "desc": "In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid.\n", - "creature": "werebear", + "parent": "werebear", "uses_type": null, "uses_param": null } @@ -6297,7 +6297,7 @@ "fields": { "name": "Maul", "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", - "creature": "wereboar", + "parent": "wereboar", "uses_type": null, "uses_param": null } @@ -6308,7 +6308,7 @@ "fields": { "name": "Multiattack", "desc": "(Humanoid or Hybrid Form Only). The wereboar makes two attacks, only one of which can be with its tusks.\n", - "creature": "wereboar", + "parent": "wereboar", "uses_type": null, "uses_param": null } @@ -6319,7 +6319,7 @@ "fields": { "name": "Tusks", "desc": "(Boar or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with wereboar lycanthropy.\n", - "creature": "wereboar", + "parent": "wereboar", "uses_type": null, "uses_param": null } @@ -6330,7 +6330,7 @@ "fields": { "name": "Bite", "desc": "(Rat or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 11 Constitution saving throw or be cursed with wererat lycanthropy.\n", - "creature": "wererat", + "parent": "wererat", "uses_type": null, "uses_param": null } @@ -6341,7 +6341,7 @@ "fields": { "name": "Hand Crossbow", "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "creature": "wererat", + "parent": "wererat", "uses_type": null, "uses_param": null } @@ -6352,7 +6352,7 @@ "fields": { "name": "Multiattack", "desc": "(Humanoid or Hybrid Form Only). The wererat makes two attacks, only one of which can be a bite.\n", - "creature": "wererat", + "parent": "wererat", "uses_type": null, "uses_param": null } @@ -6363,7 +6363,7 @@ "fields": { "name": "Shortsword", "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "creature": "wererat", + "parent": "wererat", "uses_type": null, "uses_param": null } @@ -6374,7 +6374,7 @@ "fields": { "name": "Bite", "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage. If the target is a humanoid, it must succeed on a DC 13 Constitution saving throw or be cursed with weretiger lycanthropy.\n", - "creature": "weretiger", + "parent": "weretiger", "uses_type": null, "uses_param": null } @@ -6385,7 +6385,7 @@ "fields": { "name": "Claw", "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.\n", - "creature": "weretiger", + "parent": "weretiger", "uses_type": null, "uses_param": null } @@ -6396,7 +6396,7 @@ "fields": { "name": "Longbow", "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "creature": "weretiger", + "parent": "weretiger", "uses_type": null, "uses_param": null } @@ -6407,7 +6407,7 @@ "fields": { "name": "Multiattack", "desc": "(Humanoid or Hybrid Form Only). In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks.\n", - "creature": "weretiger", + "parent": "weretiger", "uses_type": null, "uses_param": null } @@ -6418,7 +6418,7 @@ "fields": { "name": "Scimitar", "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "creature": "weretiger", + "parent": "weretiger", "uses_type": null, "uses_param": null } @@ -6429,7 +6429,7 @@ "fields": { "name": "Bite", "desc": "(Wolf or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with werewolf lycanthropy.\n", - "creature": "werewolf", + "parent": "werewolf", "uses_type": null, "uses_param": null } @@ -6440,7 +6440,7 @@ "fields": { "name": "Claws", "desc": "(Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 7 (2d4 + 2) slashing damage.\n", - "creature": "werewolf", + "parent": "werewolf", "uses_type": null, "uses_param": null } @@ -6451,7 +6451,7 @@ "fields": { "name": "Multiattack", "desc": "(Humanoid or Hybrid Form Only). The werewolf makes two attacks: one with its bite and one with its claws or spear.\n", - "creature": "werewolf", + "parent": "werewolf", "uses_type": null, "uses_param": null } @@ -6462,7 +6462,7 @@ "fields": { "name": "Spear", "desc": "(Humanoid Form Only). Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", - "creature": "werewolf", + "parent": "werewolf", "uses_type": null, "uses_param": null } @@ -6473,7 +6473,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage.\n", - "creature": "white-dragon-wyrmling", + "parent": "white-dragon-wyrmling", "uses_type": null, "uses_param": null } @@ -6484,7 +6484,7 @@ "fields": { "name": "Cold Breath", "desc": "The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a DC 12 Constitution saving throw, taking 22 (5d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "creature": "white-dragon-wyrmling", + "parent": "white-dragon-wyrmling", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -6495,7 +6495,7 @@ "fields": { "name": "Life Drain", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 5 (1d6 + 2) necrotic damage. The target must succeed on a DC 13 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n\nA humanoid slain by this attack rises 24 hours later as a zombie under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time.\n", - "creature": "wight", + "parent": "wight", "uses_type": null, "uses_param": null } @@ -6506,7 +6506,7 @@ "fields": { "name": "Longbow", "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "creature": "wight", + "parent": "wight", "uses_type": null, "uses_param": null } @@ -6517,7 +6517,7 @@ "fields": { "name": "Longsword", "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage, or 7 (1d10 + 2) slashing damage if used with two hands.\n", - "creature": "wight", + "parent": "wight", "uses_type": null, "uses_param": null } @@ -6528,7 +6528,7 @@ "fields": { "name": "Multiattack", "desc": "The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack.\n", - "creature": "wight", + "parent": "wight", "uses_type": null, "uses_param": null } @@ -6539,7 +6539,7 @@ "fields": { "name": "Invisibility", "desc": "The will-o'-wisp and its light magically become invisible until it attacks or uses its Consume Life, or until its concentration ends (as if concentrating on a spell).\n", - "creature": "will-o-wisp", + "parent": "will-o-wisp", "uses_type": null, "uses_param": null } @@ -6550,7 +6550,7 @@ "fields": { "name": "Shock", "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d8) lightning damage.\n", - "creature": "will-o-wisp", + "parent": "will-o-wisp", "uses_type": null, "uses_param": null } @@ -6561,7 +6561,7 @@ "fields": { "name": "Create Specter", "desc": "The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the wraith's control. The wraith can have no more than seven specters under its control at one time.\n", - "creature": "wraith", + "parent": "wraith", "uses_type": null, "uses_param": null } @@ -6572,7 +6572,7 @@ "fields": { "name": "Life Drain", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 21 (4d8 + 3) necrotic damage. The target must succeed on a DC 14 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "creature": "wraith", + "parent": "wraith", "uses_type": null, "uses_param": null } @@ -6583,7 +6583,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\n", - "creature": "wyvern", + "parent": "wyvern", "uses_type": null, "uses_param": null } @@ -6594,7 +6594,7 @@ "fields": { "name": "Claws", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "creature": "wyvern", + "parent": "wyvern", "uses_type": null, "uses_param": null } @@ -6605,7 +6605,7 @@ "fields": { "name": "Multiattack", "desc": "The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack.\n", - "creature": "wyvern", + "parent": "wyvern", "uses_type": null, "uses_param": null } @@ -6616,7 +6616,7 @@ "fields": { "name": "Stinger", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage. The target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "creature": "wyvern", + "parent": "wyvern", "uses_type": null, "uses_param": null } @@ -6627,7 +6627,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (3d6 + 3) piercing damage.\n", - "creature": "xorn", + "parent": "xorn", "uses_type": null, "uses_param": null } @@ -6638,7 +6638,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "creature": "xorn", + "parent": "xorn", "uses_type": null, "uses_param": null } @@ -6649,7 +6649,7 @@ "fields": { "name": "Multiattack", "desc": "The xorn makes three claw attacks and one bite attack.\n", - "creature": "xorn", + "parent": "xorn", "uses_type": null, "uses_param": null } @@ -6660,7 +6660,7 @@ "fields": { "name": "Acid Breath", "desc": "The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "creature": "young-black-dragon", + "parent": "young-black-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -6671,7 +6671,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.\n", - "creature": "young-black-dragon", + "parent": "young-black-dragon", "uses_type": null, "uses_param": null } @@ -6682,7 +6682,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "creature": "young-black-dragon", + "parent": "young-black-dragon", "uses_type": null, "uses_param": null } @@ -6693,7 +6693,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "creature": "young-black-dragon", + "parent": "young-black-dragon", "uses_type": null, "uses_param": null } @@ -6704,7 +6704,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.\n", - "creature": "young-blue-dragon", + "parent": "young-blue-dragon", "uses_type": null, "uses_param": null } @@ -6715,7 +6715,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", - "creature": "young-blue-dragon", + "parent": "young-blue-dragon", "uses_type": null, "uses_param": null } @@ -6726,7 +6726,7 @@ "fields": { "name": "Lightning Breath", "desc": "The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "creature": "young-blue-dragon", + "parent": "young-blue-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -6737,7 +6737,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "creature": "young-blue-dragon", + "parent": "young-blue-dragon", "uses_type": null, "uses_param": null } @@ -6748,7 +6748,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "creature": "young-brass-dragon", + "parent": "young-brass-dragon", "uses_type": null, "uses_param": null } @@ -6759,7 +6759,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "creature": "young-brass-dragon", + "parent": "young-brass-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -6770,7 +6770,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "creature": "young-brass-dragon", + "parent": "young-brass-dragon", "uses_type": null, "uses_param": null } @@ -6781,7 +6781,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "creature": "young-brass-dragon", + "parent": "young-brass-dragon", "uses_type": null, "uses_param": null } @@ -6792,7 +6792,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.\n", - "creature": "young-bronze-dragon", + "parent": "young-bronze-dragon", "uses_type": null, "uses_param": null } @@ -6803,7 +6803,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.\n", - "creature": "young-bronze-dragon", + "parent": "young-bronze-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -6814,7 +6814,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", - "creature": "young-bronze-dragon", + "parent": "young-bronze-dragon", "uses_type": null, "uses_param": null } @@ -6825,7 +6825,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "creature": "young-bronze-dragon", + "parent": "young-bronze-dragon", "uses_type": null, "uses_param": null } @@ -6836,7 +6836,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "creature": "young-copper-dragon", + "parent": "young-copper-dragon", "uses_type": null, "uses_param": null } @@ -6847,7 +6847,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "creature": "young-copper-dragon", + "parent": "young-copper-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -6858,7 +6858,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "creature": "young-copper-dragon", + "parent": "young-copper-dragon", "uses_type": null, "uses_param": null } @@ -6869,7 +6869,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "creature": "young-copper-dragon", + "parent": "young-copper-dragon", "uses_type": null, "uses_param": null } @@ -6880,7 +6880,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "creature": "young-gold-dragon", + "parent": "young-gold-dragon", "uses_type": null, "uses_param": null } @@ -6891,7 +6891,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "young-gold-dragon", + "parent": "young-gold-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -6902,7 +6902,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "creature": "young-gold-dragon", + "parent": "young-gold-dragon", "uses_type": null, "uses_param": null } @@ -6913,7 +6913,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "creature": "young-gold-dragon", + "parent": "young-gold-dragon", "uses_type": null, "uses_param": null } @@ -6924,7 +6924,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.\n", - "creature": "young-green-dragon", + "parent": "young-green-dragon", "uses_type": null, "uses_param": null } @@ -6935,7 +6935,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "creature": "young-green-dragon", + "parent": "young-green-dragon", "uses_type": null, "uses_param": null } @@ -6946,7 +6946,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "creature": "young-green-dragon", + "parent": "young-green-dragon", "uses_type": null, "uses_param": null } @@ -6957,7 +6957,7 @@ "fields": { "name": "Poison Breath", "desc": "The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "creature": "young-green-dragon", + "parent": "young-green-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -6968,7 +6968,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.\n", - "creature": "young-red-dragon", + "parent": "young-red-dragon", "uses_type": null, "uses_param": null } @@ -6979,7 +6979,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "creature": "young-red-dragon", + "parent": "young-red-dragon", "uses_type": null, "uses_param": null } @@ -6990,7 +6990,7 @@ "fields": { "name": "Fire Breath", "desc": "The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "creature": "young-red-dragon", + "parent": "young-red-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7001,7 +7001,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "creature": "young-red-dragon", + "parent": "young-red-dragon", "uses_type": null, "uses_param": null } @@ -7012,7 +7012,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "creature": "young-silver-dragon", + "parent": "young-silver-dragon", "uses_type": null, "uses_param": null } @@ -7023,7 +7023,7 @@ "fields": { "name": "Breath Weapons", "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "creature": "young-silver-dragon", + "parent": "young-silver-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7034,7 +7034,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "creature": "young-silver-dragon", + "parent": "young-silver-dragon", "uses_type": null, "uses_param": null } @@ -7045,7 +7045,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "creature": "young-silver-dragon", + "parent": "young-silver-dragon", "uses_type": null, "uses_param": null } @@ -7056,7 +7056,7 @@ "fields": { "name": "Bite", "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.\n", - "creature": "young-white-dragon", + "parent": "young-white-dragon", "uses_type": null, "uses_param": null } @@ -7067,7 +7067,7 @@ "fields": { "name": "Claw", "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "creature": "young-white-dragon", + "parent": "young-white-dragon", "uses_type": null, "uses_param": null } @@ -7078,7 +7078,7 @@ "fields": { "name": "Cold Breath", "desc": "The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "creature": "young-white-dragon", + "parent": "young-white-dragon", "uses_type": "RECHARGE_ON_ROLL", "uses_param": 5 } @@ -7089,7 +7089,7 @@ "fields": { "name": "Multiattack", "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "creature": "young-white-dragon", + "parent": "young-white-dragon", "uses_type": null, "uses_param": null } @@ -7100,7 +7100,7 @@ "fields": { "name": "Slam", "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.\n", - "creature": "zombie", + "parent": "zombie", "uses_type": null, "uses_param": null } From 91bca2c0617aba81151f94e3cfec833d46a474d4 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 09:21:18 -0500 Subject: [PATCH 69/84] Fixing lookup field name. --- api_v2/serializers/creature.py | 45 +--------------------------------- 1 file changed, 1 insertion(+), 44 deletions(-) diff --git a/api_v2/serializers/creature.py b/api_v2/serializers/creature.py index e3c380ec..a64bca8d 100644 --- a/api_v2/serializers/creature.py +++ b/api_v2/serializers/creature.py @@ -87,7 +87,7 @@ def make_action_obj(action): case 'RECHARGE_AFTER_REST': obj['recharge_after_rest'] = True - attacks = action.creatureattack_set.all() + attacks = action.creatureactionattack_set.all() if len(attacks) > 0: obj['attacks'] = [make_attack_obj(attack) for attack in attacks] @@ -179,49 +179,6 @@ def get_all_skill_bonuses(self, creature): def get_actions(self, creature): result = [] for action in creature.creatureaction_set.all(): - # item = { 'name': action.name, 'desc': action.desc } - # match action.uses_type: - # case 'PER_DAY': - # item['uses_per_day'] = action.uses_param - # case 'RECHARGE_ON_ROLL': - # item['recharge_on_roll'] = action.uses_param - # case 'RECHARGE_AFTER_REST': - # item['recharge_after_rest'] = True - # try: - # attack = models.CreatureAttackAction.objects.get(pk=action.key) - # item['attack_type'] = attack.attack_type - # item['to_hit_mod'] = attack.to_hit_mod - # if attack.reach_ft: - # item['reach_ft'] = attack.reach_ft - # if attack.range_ft: - # item['range_ft'] = attack.range_ft - # if attack.long_range_ft: - # item['long_range_ft'] = attack.long_range_ft - # item['target_creature_only'] = attack.target_creature_only - # if attack.damage_type: - # item['damage'] = make_damage_obj( - # attack.damage_die_count, - # attack.damage_die_type, - # attack.damage_bonus, - # attack.damage_type - # ) - # if attack.extra_damage_type: - # item['extra_damage'] = make_damage_obj( - # attack.extra_damage_die_count, - # attack.extra_damage_die_type, - # attack.extra_damage_bonus, - # attack.extra_damage_type - # ) - # if attack.versatile_weapon: - # item['two_handed_damage'] = make_damage_obj( - # attack.damage_die_count, - # attack.versatile_weapon, - # attack.damage_bonus, - # attack.damage_type - # ) - # except ObjectDoesNotExist: - # pass - # result.append(item) action_obj = make_action_obj(action) result.append(action_obj) return result From ba1d9ad343b6163715765f8174b704c4b9d3f9b0 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 09:29:22 -0500 Subject: [PATCH 70/84] Merge branches '423-consider-refactoring-v2-classnames-with-parent-in-the-name' and '423-consider-refactoring-v2-classnames-with-parent-in-the-name' of github.com:open5e/open5e-api into 423-consider-refactoring-v2-classnames-with-parent-in-the-name --- api_v2/management/commands/export.py | 2 ++ api_v2/migrations/0087_auto_20240531_1353.py | 22 +++++++++++++++++++ ...8_rename_creature_creatureaction_parent.py | 18 +++++++++++++++ ...e_creature_action_creatureattack_parent.py | 18 +++++++++++++++ .../0090_alter_creatureattack_key.py | 18 +++++++++++++++ 5 files changed, 78 insertions(+) create mode 100644 api_v2/migrations/0087_auto_20240531_1353.py create mode 100644 api_v2/migrations/0088_rename_creature_creatureaction_parent.py create mode 100644 api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py create mode 100644 api_v2/migrations/0090_alter_creatureattack_key.py diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index 37a65cba..7648705c 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -112,6 +112,8 @@ def handle(self, *args, **options) -> None: CHILD_MODEL_NAMES = ['RaceTrait', 'FeatBenefit', 'BackgroundBenefit', 'ClassFeatureItem', 'SpellCastingOption','CreatureAction','CreatureActionAttack'] if model._meta.app_label == 'api_v2' and model.__name__ not in SKIPPED_MODEL_NAMES: + if model.__name__ in CHILD_CHILD_MODEL_NAMES: + modelq = model.objects.filter(parent__parent__document=doc).order_by('pk') if model.__name__ in CHILD_MODEL_NAMES: modelq=None if model.__name__=='CreatureActionAttack': diff --git a/api_v2/migrations/0087_auto_20240531_1353.py b/api_v2/migrations/0087_auto_20240531_1353.py new file mode 100644 index 00000000..4f2de011 --- /dev/null +++ b/api_v2/migrations/0087_auto_20240531_1353.py @@ -0,0 +1,22 @@ +# Generated by Django 3.2.20 on 2024-05-31 13:53 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0086_rename_spell_spellcastingoption_parent'), + ] + + operations = [ + migrations.RemoveField( + model_name='creatureaction', + name='document', + ), + migrations.AlterField( + model_name='creatureaction', + name='key', + field=models.CharField(help_text='Unique key for the Document.', max_length=100, primary_key=True, serialize=False), + ), + ] diff --git a/api_v2/migrations/0088_rename_creature_creatureaction_parent.py b/api_v2/migrations/0088_rename_creature_creatureaction_parent.py new file mode 100644 index 00000000..c7f346de --- /dev/null +++ b/api_v2/migrations/0088_rename_creature_creatureaction_parent.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-05-31 13:58 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0087_auto_20240531_1353'), + ] + + operations = [ + migrations.RenameField( + model_name='creatureaction', + old_name='creature', + new_name='parent', + ), + ] diff --git a/api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py b/api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py new file mode 100644 index 00000000..f89145c2 --- /dev/null +++ b/api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-05-31 21:14 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0088_rename_creature_creatureaction_parent'), + ] + + operations = [ + migrations.RenameField( + model_name='creatureattack', + old_name='creature_action', + new_name='parent', + ), + ] diff --git a/api_v2/migrations/0090_alter_creatureattack_key.py b/api_v2/migrations/0090_alter_creatureattack_key.py new file mode 100644 index 00000000..cfb63753 --- /dev/null +++ b/api_v2/migrations/0090_alter_creatureattack_key.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-05-31 21:15 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0089_rename_creature_action_creatureattack_parent'), + ] + + operations = [ + migrations.AlterField( + model_name='creatureattack', + name='key', + field=models.CharField(help_text='Unique key for the Document.', max_length=100, primary_key=True, serialize=False), + ), + ] From 5b2c2908df1abd30708dc77c22a22858e5cec280 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 09:29:36 -0500 Subject: [PATCH 71/84] Deleting bad migrations. --- api_v2/migrations/0087_auto_20240531_1353.py | 22 ------------------- ...8_rename_creature_creatureaction_parent.py | 18 --------------- ...e_creature_action_creatureattack_parent.py | 18 --------------- .../0090_alter_creatureattack_key.py | 18 --------------- 4 files changed, 76 deletions(-) delete mode 100644 api_v2/migrations/0087_auto_20240531_1353.py delete mode 100644 api_v2/migrations/0088_rename_creature_creatureaction_parent.py delete mode 100644 api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py delete mode 100644 api_v2/migrations/0090_alter_creatureattack_key.py diff --git a/api_v2/migrations/0087_auto_20240531_1353.py b/api_v2/migrations/0087_auto_20240531_1353.py deleted file mode 100644 index 4f2de011..00000000 --- a/api_v2/migrations/0087_auto_20240531_1353.py +++ /dev/null @@ -1,22 +0,0 @@ -# Generated by Django 3.2.20 on 2024-05-31 13:53 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('api_v2', '0086_rename_spell_spellcastingoption_parent'), - ] - - operations = [ - migrations.RemoveField( - model_name='creatureaction', - name='document', - ), - migrations.AlterField( - model_name='creatureaction', - name='key', - field=models.CharField(help_text='Unique key for the Document.', max_length=100, primary_key=True, serialize=False), - ), - ] diff --git a/api_v2/migrations/0088_rename_creature_creatureaction_parent.py b/api_v2/migrations/0088_rename_creature_creatureaction_parent.py deleted file mode 100644 index c7f346de..00000000 --- a/api_v2/migrations/0088_rename_creature_creatureaction_parent.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 3.2.20 on 2024-05-31 13:58 - -from django.db import migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ('api_v2', '0087_auto_20240531_1353'), - ] - - operations = [ - migrations.RenameField( - model_name='creatureaction', - old_name='creature', - new_name='parent', - ), - ] diff --git a/api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py b/api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py deleted file mode 100644 index f89145c2..00000000 --- a/api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 3.2.20 on 2024-05-31 21:14 - -from django.db import migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ('api_v2', '0088_rename_creature_creatureaction_parent'), - ] - - operations = [ - migrations.RenameField( - model_name='creatureattack', - old_name='creature_action', - new_name='parent', - ), - ] diff --git a/api_v2/migrations/0090_alter_creatureattack_key.py b/api_v2/migrations/0090_alter_creatureattack_key.py deleted file mode 100644 index cfb63753..00000000 --- a/api_v2/migrations/0090_alter_creatureattack_key.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 3.2.20 on 2024-05-31 21:15 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('api_v2', '0089_rename_creature_action_creatureattack_parent'), - ] - - operations = [ - migrations.AlterField( - model_name='creatureattack', - name='key', - field=models.CharField(help_text='Unique key for the Document.', max_length=100, primary_key=True, serialize=False), - ), - ] From 95fe0bc7d16b401c3a7b74f0138f0c04c5a7bc31 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 09:36:37 -0500 Subject: [PATCH 72/84] Reverting to old pks. --- .../v2/wizards-of-the-coast/srd/Creature.json | 19322 ++++++++-------- 1 file changed, 9661 insertions(+), 9661 deletions(-) diff --git a/data/v2/wizards-of-the-coast/srd/Creature.json b/data/v2/wizards-of-the-coast/srd/Creature.json index 31b9ee50..bef2c12c 100644 --- a/data/v2/wizards-of-the-coast/srd/Creature.json +++ b/data/v2/wizards-of-the-coast/srd/Creature.json @@ -1,9662 +1,9662 @@ [ - { - "model": "api_v2.creature", - "pk": "srd_aboleth", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 9, - "ability_score_constitution": 15, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 6, - "saving_throw_intelligence": 8, - "saving_throw_wisdom": 6, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 12, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 10, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 20, - "name": "Aboleth", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 135, - "type": "aberration", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-black-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 14, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult Black Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 195, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-blue-dragon", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 23, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Blue Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 225, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-brass-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 10, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 7, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 8, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult Brass Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 172, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-bronze-dragon", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 23, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 7, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Bronze Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 212, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-copper-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 12, - "ability_score_constitution": 21, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 8, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Copper Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 184, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-gold-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 14, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 24, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 13, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 8, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 14, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 13, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 24, - "name": "Adult Gold Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 256, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-green-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 12, - "ability_score_constitution": 21, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 8, - "skill_bonus_history": null, - "skill_bonus_insight": 7, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 8, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Green Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 207, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-red-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 13, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 23, - "name": "Adult Red Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 256, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-silver-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 12, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 10, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 8, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 8, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult Silver Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 243, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-white-dragon", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 8, - "ability_score_wisdom": 12, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult White Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 200, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_air-elemental", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 20, - "ability_score_constitution": 14, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Air Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 90, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-black-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 14, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 9, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 16, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 26, - "name": "Ancient Black Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 367, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-blue-dragon", - "fields": { - "ability_score_strength": 29, - "ability_score_dexterity": 10, - "ability_score_constitution": 27, - "ability_score_intelligence": 18, - "ability_score_wisdom": 17, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 15, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Blue Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 481, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-brass-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 10, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 9, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 14, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 10, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 24, - "name": "Ancient Brass Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 20, - "hit_points": 297, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-bronze-dragon", - "fields": { - "ability_score_strength": 29, - "ability_score_dexterity": 10, - "ability_score_constitution": 27, - "ability_score_intelligence": 18, - "ability_score_wisdom": 17, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 15, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 10, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Bronze Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 444, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-copper-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 12, - "ability_score_constitution": 25, - "ability_score_intelligence": 20, - "ability_score_wisdom": 17, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 11, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Copper Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 21, - "hit_points": 350, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-gold-dragon", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 14, - "ability_score_constitution": 29, - "ability_score_intelligence": 18, - "ability_score_wisdom": 17, - "ability_score_charisma": 28, - "saving_throw_strength": null, - "saving_throw_dexterity": 9, - "saving_throw_constitution": 16, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 16, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 10, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 16, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Gold Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 546, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-green-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 12, - "ability_score_constitution": 25, - "ability_score_intelligence": 20, - "ability_score_wisdom": 17, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 11, - "skill_bonus_history": null, - "skill_bonus_insight": 10, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 11, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Green Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 21, - "hit_points": 385, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-red-dragon", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 10, - "ability_score_constitution": 29, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 23, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 16, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 13, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 16, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 26, - "name": "Ancient Red Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 546, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-silver-dragon", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 10, - "ability_score_constitution": 29, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 23, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 16, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 13, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 11, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 11, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 16, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 26, - "name": "Ancient Silver Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 487, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-white-dragon", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 10, - "ability_score_constitution": 26, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 13, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 23, - "name": "Ancient White Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 20, - "hit_points": 333, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_androsphinx", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 10, - "ability_score_constitution": 20, - "ability_score_intelligence": 16, - "ability_score_wisdom": 18, - "ability_score_charisma": 23, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 11, - "saving_throw_intelligence": 9, - "saving_throw_wisdom": 10, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 9, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 10, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": 15, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 20, - "name": "Androsphinx", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 199, - "type": "monstrosity", - "category": "Monsters; Sphinxes", - "alignment": "lawful neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_animated-armor", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 11, - "ability_score_constitution": 13, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Animated Armor", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 33, - "type": "construct", - "category": "Monsters; Animated Objects", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ankheg", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 11, - "ability_score_constitution": 13, - "ability_score_intelligence": 1, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Ankheg", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 39, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_azer", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 12, - "ability_score_constitution": 15, - "ability_score_intelligence": 12, - "ability_score_wisdom": 13, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Azer", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 39, - "type": "elemental", - "category": "Monsters", - "alignment": "lawful neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_balor", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 15, - "ability_score_constitution": 22, - "ability_score_intelligence": 20, - "ability_score_wisdom": 16, - "ability_score_charisma": 22, - "saving_throw_strength": 14, - "saving_throw_dexterity": null, - "saving_throw_constitution": 12, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Balor", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 262, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_barbed-devil", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 17, - "ability_score_constitution": 18, - "ability_score_intelligence": 12, - "ability_score_wisdom": 14, - "ability_score_charisma": 14, - "saving_throw_strength": 6, - "saving_throw_dexterity": null, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": 5, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Barbed Devil", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 110, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_basilisk", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 8, - "ability_score_constitution": 15, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Basilisk", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 52, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_bearded-devil", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 15, - "ability_score_constitution": 15, - "ability_score_intelligence": 9, - "ability_score_wisdom": 11, - "ability_score_charisma": 11, - "saving_throw_strength": 5, - "saving_throw_dexterity": null, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Bearded Devil", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 52, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_behir", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 7, - "ability_score_wisdom": 14, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Behir", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 17, - "hit_points": 168, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_black-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 13, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Black Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 33, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_black-pudding", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 5, - "ability_score_constitution": 16, - "ability_score_intelligence": 1, - "ability_score_wisdom": 6, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Black Pudding", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 7, - "hit_points": 85, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_blue-dragon-wyrmling", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Blue Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 52, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_bone-devil", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 5, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 7, - "skill_bonus_history": null, - "skill_bonus_insight": 6, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Bone Devil", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 142, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_brass-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Brass Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 16, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_bronze-dragon-wyrmling", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Bronze Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 32, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_bugbear", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 13, - "ability_score_intelligence": 8, - "ability_score_wisdom": 11, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": 2, - "passive_perception": 10, - "name": "Bugbear", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 27, - "type": "humanoid", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_bulette", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 11, - "ability_score_constitution": 21, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Bulette", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 94, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_camel", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 8, - "ability_score_constitution": 14, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 9, - "name": "Camel", - "document": "srd", - "size": "large", - "weight": "600.000", - "armor_class": 9, - "hit_points": 15, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_centaur", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 14, - "ability_score_intelligence": 9, - "ability_score_wisdom": 13, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 6, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": 3, - "passive_perception": 13, - "name": "Centaur", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 45, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_chain-devil", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 18, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Chain Devil", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 85, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_chimera", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 11, - "ability_score_constitution": 19, - "ability_score_intelligence": 3, - "ability_score_wisdom": 14, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Chimera", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 114, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_chuul", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 11, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Chuul", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 16, - "hit_points": 93, - "type": "aberration", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_clay-golem", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 9, - "ability_score_constitution": 18, - "ability_score_intelligence": 3, - "ability_score_wisdom": 8, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Clay Golem", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 133, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_cloaker", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 15, - "ability_score_constitution": 12, - "ability_score_intelligence": 13, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Cloaker", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 78, - "type": "aberration", - "category": "Monsters", - "alignment": "chaotic neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_cloud-giant", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 12, - "ability_score_wisdom": 16, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 7, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Cloud Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 14, - "hit_points": 200, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "neutral good (50%) or neutral evil (50%)" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_cockatrice", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 2, - "ability_score_wisdom": 13, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Cockatrice", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 27, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_copper-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Copper Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 22, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_couatl", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 20, - "ability_score_constitution": 17, - "ability_score_intelligence": 18, - "ability_score_wisdom": 20, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Couatl", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 19, - "hit_points": 97, - "type": "celestial", - "category": "Monsters", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_darkmantle", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Darkmantle", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 22, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_deva", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 18, - "ability_score_constitution": 18, - "ability_score_intelligence": 17, - "ability_score_wisdom": 20, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 9, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Deva", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 136, - "type": "celestial", - "category": "Monsters; Angels", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_djinni", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 15, - "ability_score_constitution": 22, - "ability_score_intelligence": 15, - "ability_score_wisdom": 16, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Djinni", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 161, - "type": "elemental", - "category": "Monsters; Genies", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_donkey", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Donkey", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 11, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_doppelganger", - "fields": { - "ability_score_strength": 11, - "ability_score_dexterity": 18, - "ability_score_constitution": 14, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 6, - "skill_bonus_history": null, - "skill_bonus_insight": 3, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Doppelganger", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 52, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_draft-horse", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 12, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Draft Horse", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 10, - "hit_points": 19, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_dragon-turtle", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 20, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Dragon Turtle", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 20, - "hit_points": 341, - "type": "dragon", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_dretch", - "fields": { - "ability_score_strength": 11, - "ability_score_dexterity": 11, - "ability_score_constitution": 12, - "ability_score_intelligence": 5, - "ability_score_wisdom": 8, - "ability_score_charisma": 3, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Dretch", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 18, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_drider", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Drider", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 123, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_dryad", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 12, - "ability_score_constitution": 11, - "ability_score_intelligence": 14, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Dryad", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 22, - "type": "fey", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_duergar", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 11, - "ability_score_constitution": 14, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Duergar", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 26, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_dust-mephit", - "fields": { - "ability_score_strength": 5, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 9, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Dust Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 12, - "hit_points": 17, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_earth-elemental", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 8, - "ability_score_constitution": 20, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Earth Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 126, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_efreeti", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 12, - "ability_score_constitution": 24, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 7, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Efreeti", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 200, - "type": "elemental", - "category": "Monsters; Genies", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_elephant", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 9, - "ability_score_constitution": 17, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 6, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Elephant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 12, - "hit_points": 76, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_elf-drow", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 11, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Elf, Drow", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 13, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_erinyes", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 14, - "ability_score_wisdom": 14, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Erinyes", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 153, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ettercap", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 15, - "ability_score_constitution": 13, - "ability_score_intelligence": 7, - "ability_score_wisdom": 12, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": 3, - "passive_perception": 13, - "name": "Ettercap", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 44, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ettin", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 8, - "ability_score_constitution": 17, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Ettin", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 85, - "type": "giant", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_fire-elemental", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 17, - "ability_score_constitution": 16, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Fire Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 102, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_fire-giant", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 9, - "ability_score_constitution": 23, - "ability_score_intelligence": 10, - "ability_score_wisdom": 14, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 11, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Fire Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 162, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_flesh-golem", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 9, - "ability_score_constitution": 18, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Flesh Golem", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 9, - "hit_points": 93, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_flying-sword", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 15, - "ability_score_constitution": 11, - "ability_score_intelligence": 1, - "ability_score_wisdom": 5, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 7, - "name": "Flying Sword", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 17, - "hit_points": 17, - "type": "construct", - "category": "Monsters; Animated Objects", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_frost-giant", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 9, - "ability_score_constitution": 21, - "ability_score_intelligence": 9, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 9, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Frost Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 15, - "hit_points": 138, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gargoyle", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 11, - "ability_score_constitution": 16, - "ability_score_intelligence": 6, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Gargoyle", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 52, - "type": "elemental", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gelatinous-cube", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 3, - "ability_score_constitution": 20, - "ability_score_intelligence": 1, - "ability_score_wisdom": 6, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Gelatinous Cube", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 6, - "hit_points": 84, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ghast", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 17, - "ability_score_constitution": 10, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Ghast", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 36, - "type": "undead", - "category": "Monsters; Ghouls", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ghost", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 13, - "ability_score_constitution": 10, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Ghost", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 45, - "type": "undead", - "category": "Monsters", - "alignment": "any alignment" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ghoul", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 15, - "ability_score_constitution": 10, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Ghoul", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 22, - "type": "undead", - "category": "Monsters; Ghouls", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gibbering-mouther", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 8, - "ability_score_constitution": 16, - "ability_score_intelligence": 3, - "ability_score_wisdom": 10, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Gibbering Mouther", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 9, - "hit_points": 67, - "type": "aberration", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_glabrezu", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 15, - "ability_score_constitution": 21, - "ability_score_intelligence": 19, - "ability_score_wisdom": 17, - "ability_score_charisma": 16, - "saving_throw_strength": 9, - "saving_throw_dexterity": null, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Glabrezu", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 157, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gnoll", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 12, - "ability_score_constitution": 11, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Gnoll", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 22, - "type": "humanoid", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gnome-deep-svirfneblin", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 14, - "ability_score_intelligence": 12, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": 3, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Gnome, Deep (Svirfneblin)", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 15, - "hit_points": 16, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_goblin", - "fields": { - "ability_score_strength": 8, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 10, - "ability_score_wisdom": 8, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Goblin", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 15, - "hit_points": 7, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gold-dragon-wyrmling", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 14, - "ability_score_constitution": 17, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Gold Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 60, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gorgon", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 11, - "ability_score_constitution": 18, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Gorgon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 114, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gray-ooze", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 6, - "ability_score_constitution": 16, - "ability_score_intelligence": 1, - "ability_score_wisdom": 6, - "ability_score_charisma": 2, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Gray Ooze", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 8, - "hit_points": 22, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_green-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Green Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 38, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_green-hag", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 12, - "ability_score_constitution": 16, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 3, - "skill_bonus_athletics": null, - "skill_bonus_deception": 4, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Green Hag", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 82, - "type": "fey", - "category": "Monsters; Hags", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_grick", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 14, - "ability_score_constitution": 11, - "ability_score_intelligence": 3, - "ability_score_wisdom": 14, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Grick", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 27, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_griffon", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 2, - "ability_score_wisdom": 13, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Griffon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 59, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_grimlock", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 9, - "ability_score_wisdom": 8, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 5, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Grimlock", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 11, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_guardian-naga", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 18, - "ability_score_constitution": 16, - "ability_score_intelligence": 16, - "ability_score_wisdom": 19, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 7, - "saving_throw_intelligence": 7, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Guardian Naga", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 127, - "type": "monstrosity", - "category": "Monsters; Nagas", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gynosphinx", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 18, - "ability_score_wisdom": 18, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 12, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 12, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": 8, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Gynosphinx", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 136, - "type": "monstrosity", - "category": "Monsters; Sphinxes", - "alignment": "lawful neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_half-red-dragon-veteran", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 13, - "ability_score_constitution": 14, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 5, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Half-Red Dragon Veteran", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 65, - "type": "humanoid", - "category": "Monsters; Half-Dragon Template", - "alignment": "any alignment" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_harpy", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 13, - "ability_score_constitution": 12, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Harpy", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 38, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_hell-hound", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 12, - "ability_score_constitution": 14, - "ability_score_intelligence": 6, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Hell Hound", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 45, - "type": "fiend", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_hezrou", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 17, - "ability_score_constitution": 20, - "ability_score_intelligence": 5, - "ability_score_wisdom": 12, - "ability_score_charisma": 13, - "saving_throw_strength": 7, - "saving_throw_dexterity": null, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Hezrou", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 16, - "hit_points": 136, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_hill-giant", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 8, - "ability_score_constitution": 19, - "ability_score_intelligence": 5, - "ability_score_wisdom": 9, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Hill Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 13, - "hit_points": 105, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_hippogriff", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 13, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Hippogriff", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 11, - "hit_points": 19, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_hobgoblin", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 10, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Hobgoblin", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 11, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_homunculus", - "fields": { - "ability_score_strength": 4, - "ability_score_dexterity": 15, - "ability_score_constitution": 11, - "ability_score_intelligence": 10, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Homunculus", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 5, - "type": "construct", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_horned-devil", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 17, - "ability_score_constitution": 21, - "ability_score_intelligence": 12, - "ability_score_wisdom": 16, - "ability_score_charisma": 17, - "saving_throw_strength": 10, - "saving_throw_dexterity": 7, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Horned Devil", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 178, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_hydra", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 12, - "ability_score_constitution": 20, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Hydra", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 15, - "hit_points": 172, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ice-devil", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 14, - "ability_score_constitution": 18, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Ice Devil", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 180, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ice-mephit", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 13, - "ability_score_constitution": 10, - "ability_score_intelligence": 9, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Ice Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 21, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_imp", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 17, - "ability_score_constitution": 13, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 4, - "skill_bonus_history": null, - "skill_bonus_insight": 3, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 4, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Imp", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 10, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_invisible-stalker", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 19, - "ability_score_constitution": 14, - "ability_score_intelligence": 10, - "ability_score_wisdom": 15, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 10, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Invisible Stalker", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 104, - "type": "elemental", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_iron-golem", - "fields": { - "ability_score_strength": 24, - "ability_score_dexterity": 9, - "ability_score_constitution": 20, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Iron Golem", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 20, - "hit_points": 210, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_kobold", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 15, - "ability_score_constitution": 9, - "ability_score_intelligence": 8, - "ability_score_wisdom": 7, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Kobold", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 12, - "hit_points": 5, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_kraken", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 11, - "ability_score_constitution": 25, - "ability_score_intelligence": 22, - "ability_score_wisdom": 18, - "ability_score_charisma": 20, - "saving_throw_strength": 17, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 14, - "saving_throw_intelligence": 13, - "saving_throw_wisdom": 11, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Kraken", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 18, - "hit_points": 472, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_lamia", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 13, - "ability_score_constitution": 15, - "ability_score_intelligence": 14, - "ability_score_wisdom": 15, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 7, - "skill_bonus_history": null, - "skill_bonus_insight": 4, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Lamia", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 97, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_lemure", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 5, - "ability_score_constitution": 11, - "ability_score_intelligence": 1, - "ability_score_wisdom": 11, - "ability_score_charisma": 3, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Lemure", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 7, - "hit_points": 13, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_lich", - "fields": { - "ability_score_strength": 11, - "ability_score_dexterity": 16, - "ability_score_constitution": 16, - "ability_score_intelligence": 20, - "ability_score_wisdom": 14, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": 12, - "saving_throw_wisdom": 9, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 18, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 12, - "skill_bonus_insight": 9, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Lich", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 135, - "type": "undead", - "category": "Monsters", - "alignment": "any evil alignment" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_lizardfolk", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 7, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": 5, - "passive_perception": 13, - "name": "Lizardfolk", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 22, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_magma-mephit", - "fields": { - "ability_score_strength": 8, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Magma Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 22, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_magmin", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 15, - "ability_score_constitution": 12, - "ability_score_intelligence": 8, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Magmin", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 14, - "hit_points": 9, - "type": "elemental", - "category": "Monsters", - "alignment": "chaotic neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_manticore", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 16, - "ability_score_constitution": 17, - "ability_score_intelligence": 7, - "ability_score_wisdom": 12, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Manticore", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 68, - "type": "monstrosity", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_marilith", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 20, - "ability_score_constitution": 20, - "ability_score_intelligence": 18, - "ability_score_wisdom": 16, - "ability_score_charisma": 20, - "saving_throw_strength": 9, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 10, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Marilith", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 189, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_mastiff", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 14, - "ability_score_constitution": 12, - "ability_score_intelligence": 3, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 2, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 13, - "name": "Mastiff", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 5, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_medusa", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 12, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": 4, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Medusa", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 127, - "type": "monstrosity", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_merfolk", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 13, - "ability_score_constitution": 12, - "ability_score_intelligence": 11, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Merfolk", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 11, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_merrow", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 8, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Merrow", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 45, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_mimic", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 12, - "ability_score_constitution": 15, - "ability_score_intelligence": 5, - "ability_score_wisdom": 13, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Mimic", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 58, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_minotaur", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 11, - "ability_score_constitution": 16, - "ability_score_intelligence": 6, - "ability_score_wisdom": 16, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Minotaur", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 76, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_minotaur-skeleton", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 11, - "ability_score_constitution": 15, - "ability_score_intelligence": 6, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Minotaur Skeleton", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 67, - "type": "undead", - "category": "Monsters; Skeletons", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_mule", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Mule", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 11, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_mummy", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 8, - "ability_score_constitution": 15, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Mummy", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 58, - "type": "undead", - "category": "Monsters; Mummies", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_mummy-lord", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 11, - "ability_score_wisdom": 18, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 8, - "saving_throw_intelligence": 5, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 5, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": 5, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Mummy Lord", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 97, - "type": "undead", - "category": "Monsters; Mummies", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_nalfeshnee", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 19, - "ability_score_wisdom": 12, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 11, - "saving_throw_intelligence": 9, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Nalfeshnee", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 184, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_night-hag", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 16, - "ability_score_wisdom": 14, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 7, - "skill_bonus_history": null, - "skill_bonus_insight": 6, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Night Hag", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 112, - "type": "fiend", - "category": "Monsters; Hags", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_nightmare", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Nightmare", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 68, - "type": "fiend", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ochre-jelly", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 6, - "ability_score_constitution": 14, - "ability_score_intelligence": 2, - "ability_score_wisdom": 6, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Ochre Jelly", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 8, - "hit_points": 45, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ogre", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 8, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 7, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Ogre", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 11, - "hit_points": 59, - "type": "giant", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ogre-zombie", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 6, - "ability_score_constitution": 18, - "ability_score_intelligence": 3, - "ability_score_wisdom": 6, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 0, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Ogre Zombie", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 8, - "hit_points": 85, - "type": "undead", - "category": "Monsters; Zombies", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_oni", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 11, - "ability_score_constitution": 16, - "ability_score_intelligence": 14, - "ability_score_wisdom": 12, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 5, - "skill_bonus_athletics": null, - "skill_bonus_deception": 8, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Oni", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 16, - "hit_points": 110, - "type": "giant", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_orc", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 12, - "ability_score_constitution": 16, - "ability_score_intelligence": 7, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": 2, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Orc", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 15, - "type": "humanoid", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_otyugh", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 11, - "ability_score_constitution": 19, - "ability_score_intelligence": 6, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Otyugh", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 114, - "type": "aberration", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_owlbear", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 12, - "ability_score_constitution": 17, - "ability_score_intelligence": 3, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Owlbear", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 59, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_pegasus", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 15, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Pegasus", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 59, - "type": "celestial", - "category": "Monsters", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_pit-fiend", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 14, - "ability_score_constitution": 24, - "ability_score_intelligence": 22, - "ability_score_wisdom": 18, - "ability_score_charisma": 24, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Pit Fiend", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 300, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_planetar", - "fields": { - "ability_score_strength": 24, - "ability_score_dexterity": 20, - "ability_score_constitution": 24, - "ability_score_intelligence": 19, - "ability_score_wisdom": 22, - "ability_score_charisma": 25, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 12, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 11, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Planetar", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 200, - "type": "celestial", - "category": "Monsters; Angels", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_plesiosaurus", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Plesiosaurus", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 68, - "type": "beast", - "category": "Monsters; Dinosaurs", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_pony", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Pony", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 11, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_pseudodragon", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 15, - "ability_score_constitution": 13, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Pseudodragon", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 7, - "type": "dragon", - "category": "Monsters", - "alignment": "neutral good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_purple-worm", - "fields": { - "ability_score_strength": 28, - "ability_score_dexterity": 7, - "ability_score_constitution": 22, - "ability_score_intelligence": 1, - "ability_score_wisdom": 8, - "ability_score_charisma": 4, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Purple Worm", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 18, - "hit_points": 247, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_quasit", - "fields": { - "ability_score_strength": 5, - "ability_score_dexterity": 17, - "ability_score_constitution": 10, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Quasit", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 7, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_rakshasa", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 17, - "ability_score_constitution": 18, - "ability_score_intelligence": 13, - "ability_score_wisdom": 16, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 10, - "skill_bonus_history": null, - "skill_bonus_insight": 8, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Rakshasa", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 110, - "type": "fiend", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_red-dragon-wyrmling", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Red Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 75, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_remorhaz", - "fields": { - "ability_score_strength": 24, - "ability_score_dexterity": 13, - "ability_score_constitution": 21, - "ability_score_intelligence": 4, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Remorhaz", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 17, - "hit_points": 195, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_riding-horse", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 10, - "ability_score_constitution": 12, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Riding Horse", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 10, - "hit_points": 13, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_roc", - "fields": { - "ability_score_strength": 28, - "ability_score_dexterity": 10, - "ability_score_constitution": 20, - "ability_score_intelligence": 3, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Roc", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 15, - "hit_points": 248, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_roper", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 8, - "ability_score_constitution": 17, - "ability_score_intelligence": 7, - "ability_score_wisdom": 16, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Roper", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 20, - "hit_points": 93, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_rug-of-smothering", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Rug of Smothering", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 33, - "type": "construct", - "category": "Monsters; Animated Objects", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_rust-monster", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Rust Monster", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 27, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_sahuagin", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 11, - "ability_score_constitution": 12, - "ability_score_intelligence": 12, - "ability_score_wisdom": 13, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Sahuagin", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 22, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_salamander", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 15, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Salamander", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 90, - "type": "elemental", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_satyr", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 16, - "ability_score_constitution": 11, - "ability_score_intelligence": 12, - "ability_score_wisdom": 10, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": 6, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Satyr", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 31, - "type": "fey", - "category": "Monsters", - "alignment": "chaotic neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_sea-hag", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 13, - "ability_score_constitution": 16, - "ability_score_intelligence": 12, - "ability_score_wisdom": 12, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Sea Hag", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 52, - "type": "fey", - "category": "Monsters; Hags", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_shadow", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 14, - "ability_score_constitution": 13, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Shadow", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 16, - "type": "undead", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_shambling-mound", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 8, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Shambling Mound", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 136, - "type": "plant", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_shield-guardian", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 8, - "ability_score_constitution": 18, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 3, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Shield Guardian", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 142, - "type": "construct", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_shrieker", - "fields": { - "ability_score_strength": 1, - "ability_score_dexterity": 1, - "ability_score_constitution": 10, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Shrieker", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 5, - "hit_points": 13, - "type": "plant", - "category": "Monsters; Fungi", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_silver-dragon-wyrmling", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Silver Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 45, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_skeleton", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 14, - "ability_score_constitution": 15, - "ability_score_intelligence": 6, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Skeleton", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 13, - "type": "undead", - "category": "Monsters; Skeletons", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_solar", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 22, - "ability_score_constitution": 26, - "ability_score_intelligence": 25, - "ability_score_wisdom": 25, - "ability_score_charisma": 30, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 14, - "saving_throw_wisdom": 14, - "saving_throw_charisma": 17, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 14, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 24, - "name": "Solar", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 21, - "hit_points": 243, - "type": "celestial", - "category": "Monsters; Angels", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_specter", - "fields": { - "ability_score_strength": 1, - "ability_score_dexterity": 14, - "ability_score_constitution": 11, - "ability_score_intelligence": 10, - "ability_score_wisdom": 10, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Specter", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 22, - "type": "undead", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_spirit-naga", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 17, - "ability_score_constitution": 14, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Spirit Naga", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 75, - "type": "monstrosity", - "category": "Monsters; Nagas", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_sprite", - "fields": { - "ability_score_strength": 3, - "ability_score_dexterity": 18, - "ability_score_constitution": 10, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Sprite", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 15, - "hit_points": 2, - "type": "fey", - "category": "Monsters", - "alignment": "neutral good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_steam-mephit", - "fields": { - "ability_score_strength": 5, - "ability_score_dexterity": 11, - "ability_score_constitution": 10, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Steam Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 10, - "hit_points": 21, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_stirge", - "fields": { - "ability_score_strength": 4, - "ability_score_dexterity": 16, - "ability_score_constitution": 11, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Stirge", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 14, - "hit_points": 2, - "type": "beast", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_stone-giant", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 15, - "ability_score_constitution": 20, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 12, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Stone Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 17, - "hit_points": 126, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_stone-golem", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 9, - "ability_score_constitution": 20, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Stone Golem", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 178, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_storm-giant", - "fields": { - "ability_score_strength": 29, - "ability_score_dexterity": 14, - "ability_score_constitution": 20, - "ability_score_intelligence": 16, - "ability_score_wisdom": 18, - "ability_score_charisma": 18, - "saving_throw_strength": 14, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 8, - "skill_bonus_athletics": 14, - "skill_bonus_deception": null, - "skill_bonus_history": 8, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Storm Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 16, - "hit_points": 230, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_succubusincubus", - "fields": { - "ability_score_strength": 8, - "ability_score_dexterity": 17, - "ability_score_constitution": 13, - "ability_score_intelligence": 15, - "ability_score_wisdom": 12, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 9, - "skill_bonus_history": null, - "skill_bonus_insight": 5, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 9, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Succubus/Incubus", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 66, - "type": "fiend", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_tarrasque", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 11, - "ability_score_constitution": 30, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 5, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Tarrasque", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 25, - "hit_points": 676, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_treant", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 8, - "ability_score_constitution": 21, - "ability_score_intelligence": 12, - "ability_score_wisdom": 16, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Treant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 16, - "hit_points": 138, - "type": "plant", - "category": "Monsters", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_triceratops", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 9, - "ability_score_constitution": 17, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Triceratops", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 13, - "hit_points": 95, - "type": "beast", - "category": "Monsters; Dinosaurs", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_troll", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 13, - "ability_score_constitution": 20, - "ability_score_intelligence": 7, - "ability_score_wisdom": 9, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Troll", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 84, - "type": "giant", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_tyrannosaurus-rex", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 19, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Tyrannosaurus Rex", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 13, - "hit_points": 136, - "type": "beast", - "category": "Monsters; Dinosaurs", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_unicorn", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 15, - "ability_score_intelligence": 11, - "ability_score_wisdom": 17, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Unicorn", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 67, - "type": "celestial", - "category": "Monsters", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_vampire", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 18, - "ability_score_constitution": 18, - "ability_score_intelligence": 17, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 9, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Vampire", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 144, - "type": "undead", - "category": "Monsters; Vampires", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_vampire-spawn", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 16, - "ability_score_constitution": 16, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Vampire Spawn", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 82, - "type": "undead", - "category": "Monsters; Vampires", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_violet-fungus", - "fields": { - "ability_score_strength": 3, - "ability_score_dexterity": 1, - "ability_score_constitution": 10, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Violet Fungus", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 5, - "hit_points": 18, - "type": "plant", - "category": "Monsters; Fungi", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_vrock", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 15, - "ability_score_constitution": 18, - "ability_score_intelligence": 8, - "ability_score_wisdom": 13, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 2, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Vrock", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 104, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_warhorse", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 11, - "name": "Warhorse", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 11, - "hit_points": 19, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_warhorse-skeleton", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 12, - "ability_score_constitution": 15, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Warhorse Skeleton", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 22, - "type": "undead", - "category": "Monsters; Skeletons", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_water-elemental", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 18, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Water Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 114, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_werebear", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Werebear", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 135, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "neutral good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_wereboar", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Wereboar", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 78, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_wererat", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 15, - "ability_score_constitution": 12, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Wererat", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 33, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_weretiger", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Weretiger", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 120, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_werewolf", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 13, - "ability_score_constitution": 14, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Werewolf", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 58, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_white-dragon-wyrmling", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 10, - "ability_score_constitution": 14, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 2, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "White Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 32, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_wight", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Wight", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 45, - "type": "undead", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_will-o-wisp", - "fields": { - "ability_score_strength": 1, - "ability_score_dexterity": 28, - "ability_score_constitution": 10, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Will-o'-Wisp", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 19, - "hit_points": 22, - "type": "undead", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_wraith", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 16, - "ability_score_constitution": 16, - "ability_score_intelligence": 12, - "ability_score_wisdom": 14, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Wraith", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 67, - "type": "undead", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_wyvern", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 12, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Wyvern", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 110, - "type": "dragon", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_xorn", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Xorn", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 19, - "hit_points": 73, - "type": "elemental", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-black-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 14, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Young Black Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 127, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-blue-dragon", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 10, - "ability_score_constitution": 19, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Young Blue Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 152, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-brass-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 5, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Young Brass Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 110, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-bronze-dragon", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 10, - "ability_score_constitution": 19, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 4, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Young Bronze Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 142, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-copper-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 12, - "ability_score_constitution": 17, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Young Copper Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 119, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-gold-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 14, - "ability_score_constitution": 21, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 5, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 9, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Young Gold Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 178, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-green-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 12, - "ability_score_constitution": 17, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Young Green Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 136, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-red-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 10, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Young Red Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 178, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-silver-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 10, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 6, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 6, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Young Silver Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 168, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-white-dragon", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 18, - "ability_score_intelligence": 6, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Young White Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 133, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_zombie", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 6, - "ability_score_constitution": 16, - "ability_score_intelligence": 3, - "ability_score_wisdom": 6, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 0, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Zombie", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 8, - "hit_points": 22, - "type": "undead", - "category": "Monsters; Zombies", - "alignment": "neutral evil" - } - } -] \ No newline at end of file +{ + "model": "api_v2.creature", + "pk": "aboleth", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 9, + "ability_score_constitution": 15, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 6, + "saving_throw_intelligence": 8, + "saving_throw_wisdom": 6, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 12, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 10, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 20, + "name": "Aboleth", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 135, + "type": "aberration", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "adult-black-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 14, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult Black Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 195, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "adult-blue-dragon", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 23, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Blue Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 225, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "adult-brass-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 10, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 7, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 8, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult Brass Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 172, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "adult-bronze-dragon", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 23, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 7, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Bronze Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 212, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "adult-copper-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 12, + "ability_score_constitution": 21, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 8, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Copper Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 184, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "adult-gold-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 14, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 24, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 13, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 8, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 14, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 13, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 24, + "name": "Adult Gold Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 256, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "adult-green-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 12, + "ability_score_constitution": 21, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 8, + "skill_bonus_history": null, + "skill_bonus_insight": 7, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 8, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Green Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 207, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "adult-red-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 13, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 23, + "name": "Adult Red Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 256, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "adult-silver-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 12, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 10, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 8, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 8, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult Silver Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 243, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "adult-white-dragon", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 8, + "ability_score_wisdom": 12, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult White Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 200, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "air-elemental", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 20, + "ability_score_constitution": 14, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Air Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 90, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "ancient-black-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 14, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 9, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 16, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 26, + "name": "Ancient Black Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 367, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "ancient-blue-dragon", + "fields": { + "ability_score_strength": 29, + "ability_score_dexterity": 10, + "ability_score_constitution": 27, + "ability_score_intelligence": 18, + "ability_score_wisdom": 17, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 15, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Blue Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 481, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "ancient-brass-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 10, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 9, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 14, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 10, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 24, + "name": "Ancient Brass Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 20, + "hit_points": 297, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "ancient-bronze-dragon", + "fields": { + "ability_score_strength": 29, + "ability_score_dexterity": 10, + "ability_score_constitution": 27, + "ability_score_intelligence": 18, + "ability_score_wisdom": 17, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 15, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 10, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Bronze Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 444, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "ancient-copper-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 12, + "ability_score_constitution": 25, + "ability_score_intelligence": 20, + "ability_score_wisdom": 17, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 11, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Copper Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 21, + "hit_points": 350, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "ancient-gold-dragon", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 14, + "ability_score_constitution": 29, + "ability_score_intelligence": 18, + "ability_score_wisdom": 17, + "ability_score_charisma": 28, + "saving_throw_strength": null, + "saving_throw_dexterity": 9, + "saving_throw_constitution": 16, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 16, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 10, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 16, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Gold Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 546, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "ancient-green-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 12, + "ability_score_constitution": 25, + "ability_score_intelligence": 20, + "ability_score_wisdom": 17, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 11, + "skill_bonus_history": null, + "skill_bonus_insight": 10, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 11, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Green Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 21, + "hit_points": 385, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "ancient-red-dragon", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 10, + "ability_score_constitution": 29, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 23, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 16, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 13, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 16, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 26, + "name": "Ancient Red Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 546, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "ancient-silver-dragon", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 10, + "ability_score_constitution": 29, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 23, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 16, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 13, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 11, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 11, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 16, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 26, + "name": "Ancient Silver Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 487, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "ancient-white-dragon", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 10, + "ability_score_constitution": 26, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 13, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 23, + "name": "Ancient White Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 20, + "hit_points": 333, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "androsphinx", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 10, + "ability_score_constitution": 20, + "ability_score_intelligence": 16, + "ability_score_wisdom": 18, + "ability_score_charisma": 23, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 11, + "saving_throw_intelligence": 9, + "saving_throw_wisdom": 10, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 9, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 10, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": 15, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 20, + "name": "Androsphinx", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 199, + "type": "monstrosity", + "category": "Monsters; Sphinxes", + "alignment": "lawful neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "animated-armor", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 11, + "ability_score_constitution": 13, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Animated Armor", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 33, + "type": "construct", + "category": "Monsters; Animated Objects", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "ankheg", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 11, + "ability_score_constitution": 13, + "ability_score_intelligence": 1, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Ankheg", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 39, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "azer", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 12, + "ability_score_constitution": 15, + "ability_score_intelligence": 12, + "ability_score_wisdom": 13, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Azer", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 39, + "type": "elemental", + "category": "Monsters", + "alignment": "lawful neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "balor", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 15, + "ability_score_constitution": 22, + "ability_score_intelligence": 20, + "ability_score_wisdom": 16, + "ability_score_charisma": 22, + "saving_throw_strength": 14, + "saving_throw_dexterity": null, + "saving_throw_constitution": 12, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Balor", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 262, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "barbed-devil", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 17, + "ability_score_constitution": 18, + "ability_score_intelligence": 12, + "ability_score_wisdom": 14, + "ability_score_charisma": 14, + "saving_throw_strength": 6, + "saving_throw_dexterity": null, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": 5, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Barbed Devil", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 110, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "basilisk", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 8, + "ability_score_constitution": 15, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Basilisk", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 52, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "bearded-devil", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 15, + "ability_score_constitution": 15, + "ability_score_intelligence": 9, + "ability_score_wisdom": 11, + "ability_score_charisma": 11, + "saving_throw_strength": 5, + "saving_throw_dexterity": null, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Bearded Devil", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 52, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "behir", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 7, + "ability_score_wisdom": 14, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Behir", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 17, + "hit_points": 168, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "black-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 13, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Black Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 33, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "black-pudding", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 5, + "ability_score_constitution": 16, + "ability_score_intelligence": 1, + "ability_score_wisdom": 6, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Black Pudding", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 7, + "hit_points": 85, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "blue-dragon-wyrmling", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Blue Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 52, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "bone-devil", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 5, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 7, + "skill_bonus_history": null, + "skill_bonus_insight": 6, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Bone Devil", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 142, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "brass-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Brass Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 16, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "bronze-dragon-wyrmling", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Bronze Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 32, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "bugbear", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 13, + "ability_score_intelligence": 8, + "ability_score_wisdom": 11, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": 2, + "passive_perception": 10, + "name": "Bugbear", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 27, + "type": "humanoid", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "bulette", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 11, + "ability_score_constitution": 21, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Bulette", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 94, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "camel", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 8, + "ability_score_constitution": 14, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 9, + "name": "Camel", + "document": "srd", + "size": "large", + "weight": "600.000", + "armor_class": 9, + "hit_points": 15, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "centaur", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 14, + "ability_score_intelligence": 9, + "ability_score_wisdom": 13, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 6, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": 3, + "passive_perception": 13, + "name": "Centaur", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 45, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral good" + } +}, +{ + "model": "api_v2.creature", + "pk": "chain-devil", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 18, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Chain Devil", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 85, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "chimera", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 11, + "ability_score_constitution": 19, + "ability_score_intelligence": 3, + "ability_score_wisdom": 14, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Chimera", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 114, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "chuul", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 11, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Chuul", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 16, + "hit_points": 93, + "type": "aberration", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "clay-golem", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 9, + "ability_score_constitution": 18, + "ability_score_intelligence": 3, + "ability_score_wisdom": 8, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Clay Golem", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 133, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "cloaker", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 15, + "ability_score_constitution": 12, + "ability_score_intelligence": 13, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Cloaker", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 78, + "type": "aberration", + "category": "Monsters", + "alignment": "chaotic neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "cloud-giant", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 12, + "ability_score_wisdom": 16, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 7, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Cloud Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 14, + "hit_points": 200, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "neutral good (50%) or neutral evil (50%)" + } +}, +{ + "model": "api_v2.creature", + "pk": "cockatrice", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 2, + "ability_score_wisdom": 13, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Cockatrice", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 27, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "copper-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Copper Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 22, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "couatl", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 20, + "ability_score_constitution": 17, + "ability_score_intelligence": 18, + "ability_score_wisdom": 20, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Couatl", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 19, + "hit_points": 97, + "type": "celestial", + "category": "Monsters", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "darkmantle", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Darkmantle", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 22, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "deva", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 18, + "ability_score_constitution": 18, + "ability_score_intelligence": 17, + "ability_score_wisdom": 20, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 9, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Deva", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 136, + "type": "celestial", + "category": "Monsters; Angels", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "djinni", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 15, + "ability_score_constitution": 22, + "ability_score_intelligence": 15, + "ability_score_wisdom": 16, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Djinni", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 161, + "type": "elemental", + "category": "Monsters; Genies", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "donkey", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Donkey", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 11, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "doppelganger", + "fields": { + "ability_score_strength": 11, + "ability_score_dexterity": 18, + "ability_score_constitution": 14, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 6, + "skill_bonus_history": null, + "skill_bonus_insight": 3, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Doppelganger", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 52, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "draft-horse", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 12, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Draft Horse", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 10, + "hit_points": 19, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "dragon-turtle", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 20, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Dragon Turtle", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 20, + "hit_points": 341, + "type": "dragon", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "dretch", + "fields": { + "ability_score_strength": 11, + "ability_score_dexterity": 11, + "ability_score_constitution": 12, + "ability_score_intelligence": 5, + "ability_score_wisdom": 8, + "ability_score_charisma": 3, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Dretch", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 18, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "drider", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Drider", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 123, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "dryad", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 12, + "ability_score_constitution": 11, + "ability_score_intelligence": 14, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Dryad", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 22, + "type": "fey", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "duergar", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 11, + "ability_score_constitution": 14, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Duergar", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 26, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "dust-mephit", + "fields": { + "ability_score_strength": 5, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 9, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Dust Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 12, + "hit_points": 17, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "earth-elemental", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 8, + "ability_score_constitution": 20, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Earth Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 126, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "efreeti", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 12, + "ability_score_constitution": 24, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 7, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Efreeti", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 200, + "type": "elemental", + "category": "Monsters; Genies", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "elephant", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 9, + "ability_score_constitution": 17, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 6, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Elephant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 12, + "hit_points": 76, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "elf-drow", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 11, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Elf, Drow", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 13, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "erinyes", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 14, + "ability_score_wisdom": 14, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Erinyes", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 153, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "ettercap", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 15, + "ability_score_constitution": 13, + "ability_score_intelligence": 7, + "ability_score_wisdom": 12, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": 3, + "passive_perception": 13, + "name": "Ettercap", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 44, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "ettin", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 8, + "ability_score_constitution": 17, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Ettin", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 85, + "type": "giant", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "fire-elemental", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 17, + "ability_score_constitution": 16, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Fire Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 102, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "fire-giant", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 9, + "ability_score_constitution": 23, + "ability_score_intelligence": 10, + "ability_score_wisdom": 14, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 11, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Fire Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 162, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "flesh-golem", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 9, + "ability_score_constitution": 18, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Flesh Golem", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 9, + "hit_points": 93, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "flying-sword", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 15, + "ability_score_constitution": 11, + "ability_score_intelligence": 1, + "ability_score_wisdom": 5, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 7, + "name": "Flying Sword", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 17, + "hit_points": 17, + "type": "construct", + "category": "Monsters; Animated Objects", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "frost-giant", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 9, + "ability_score_constitution": 21, + "ability_score_intelligence": 9, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 9, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Frost Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 15, + "hit_points": 138, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "gargoyle", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 11, + "ability_score_constitution": 16, + "ability_score_intelligence": 6, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Gargoyle", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 52, + "type": "elemental", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "gelatinous-cube", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 3, + "ability_score_constitution": 20, + "ability_score_intelligence": 1, + "ability_score_wisdom": 6, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Gelatinous Cube", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 6, + "hit_points": 84, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "ghast", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 17, + "ability_score_constitution": 10, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Ghast", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 36, + "type": "undead", + "category": "Monsters; Ghouls", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "ghost", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 13, + "ability_score_constitution": 10, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Ghost", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 45, + "type": "undead", + "category": "Monsters", + "alignment": "any alignment" + } +}, +{ + "model": "api_v2.creature", + "pk": "ghoul", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 15, + "ability_score_constitution": 10, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Ghoul", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 22, + "type": "undead", + "category": "Monsters; Ghouls", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "gibbering-mouther", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 8, + "ability_score_constitution": 16, + "ability_score_intelligence": 3, + "ability_score_wisdom": 10, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Gibbering Mouther", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 9, + "hit_points": 67, + "type": "aberration", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "glabrezu", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 15, + "ability_score_constitution": 21, + "ability_score_intelligence": 19, + "ability_score_wisdom": 17, + "ability_score_charisma": 16, + "saving_throw_strength": 9, + "saving_throw_dexterity": null, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Glabrezu", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 157, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "gnoll", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 12, + "ability_score_constitution": 11, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Gnoll", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 22, + "type": "humanoid", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "gnome-deep-svirfneblin", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 14, + "ability_score_intelligence": 12, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": 3, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Gnome, Deep (Svirfneblin)", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 15, + "hit_points": 16, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral good" + } +}, +{ + "model": "api_v2.creature", + "pk": "goblin", + "fields": { + "ability_score_strength": 8, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 10, + "ability_score_wisdom": 8, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Goblin", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 15, + "hit_points": 7, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "gold-dragon-wyrmling", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 14, + "ability_score_constitution": 17, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Gold Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 60, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "gorgon", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 11, + "ability_score_constitution": 18, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Gorgon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 114, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "gray-ooze", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 6, + "ability_score_constitution": 16, + "ability_score_intelligence": 1, + "ability_score_wisdom": 6, + "ability_score_charisma": 2, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Gray Ooze", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 8, + "hit_points": 22, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "green-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Green Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 38, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "green-hag", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 12, + "ability_score_constitution": 16, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 3, + "skill_bonus_athletics": null, + "skill_bonus_deception": 4, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Green Hag", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 82, + "type": "fey", + "category": "Monsters; Hags", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "grick", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 14, + "ability_score_constitution": 11, + "ability_score_intelligence": 3, + "ability_score_wisdom": 14, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Grick", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 27, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "griffon", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 2, + "ability_score_wisdom": 13, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Griffon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 59, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "grimlock", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 9, + "ability_score_wisdom": 8, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 5, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Grimlock", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 11, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "guardian-naga", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 18, + "ability_score_constitution": 16, + "ability_score_intelligence": 16, + "ability_score_wisdom": 19, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 7, + "saving_throw_intelligence": 7, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Guardian Naga", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 127, + "type": "monstrosity", + "category": "Monsters; Nagas", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "gynosphinx", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 18, + "ability_score_wisdom": 18, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 12, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 12, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": 8, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Gynosphinx", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 136, + "type": "monstrosity", + "category": "Monsters; Sphinxes", + "alignment": "lawful neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "half-red-dragon-veteran", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 13, + "ability_score_constitution": 14, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 5, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Half-Red Dragon Veteran", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 65, + "type": "humanoid", + "category": "Monsters; Half-Dragon Template", + "alignment": "any alignment" + } +}, +{ + "model": "api_v2.creature", + "pk": "harpy", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 13, + "ability_score_constitution": 12, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Harpy", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 38, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "hell-hound", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 12, + "ability_score_constitution": 14, + "ability_score_intelligence": 6, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Hell Hound", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 45, + "type": "fiend", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "hezrou", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 17, + "ability_score_constitution": 20, + "ability_score_intelligence": 5, + "ability_score_wisdom": 12, + "ability_score_charisma": 13, + "saving_throw_strength": 7, + "saving_throw_dexterity": null, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Hezrou", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 16, + "hit_points": 136, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "hill-giant", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 8, + "ability_score_constitution": 19, + "ability_score_intelligence": 5, + "ability_score_wisdom": 9, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Hill Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 13, + "hit_points": 105, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "hippogriff", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 13, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Hippogriff", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 11, + "hit_points": 19, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "hobgoblin", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 10, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Hobgoblin", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 11, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "homunculus", + "fields": { + "ability_score_strength": 4, + "ability_score_dexterity": 15, + "ability_score_constitution": 11, + "ability_score_intelligence": 10, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Homunculus", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 5, + "type": "construct", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "horned-devil", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 17, + "ability_score_constitution": 21, + "ability_score_intelligence": 12, + "ability_score_wisdom": 16, + "ability_score_charisma": 17, + "saving_throw_strength": 10, + "saving_throw_dexterity": 7, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Horned Devil", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 178, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "hydra", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 12, + "ability_score_constitution": 20, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Hydra", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 15, + "hit_points": 172, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "ice-devil", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 14, + "ability_score_constitution": 18, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Ice Devil", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 180, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "ice-mephit", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 13, + "ability_score_constitution": 10, + "ability_score_intelligence": 9, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Ice Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 21, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "imp", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 17, + "ability_score_constitution": 13, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 4, + "skill_bonus_history": null, + "skill_bonus_insight": 3, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 4, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Imp", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 10, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "invisible-stalker", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 19, + "ability_score_constitution": 14, + "ability_score_intelligence": 10, + "ability_score_wisdom": 15, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 10, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Invisible Stalker", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 104, + "type": "elemental", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "iron-golem", + "fields": { + "ability_score_strength": 24, + "ability_score_dexterity": 9, + "ability_score_constitution": 20, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Iron Golem", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 20, + "hit_points": 210, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "kobold", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 15, + "ability_score_constitution": 9, + "ability_score_intelligence": 8, + "ability_score_wisdom": 7, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Kobold", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 12, + "hit_points": 5, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "kraken", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 11, + "ability_score_constitution": 25, + "ability_score_intelligence": 22, + "ability_score_wisdom": 18, + "ability_score_charisma": 20, + "saving_throw_strength": 17, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 14, + "saving_throw_intelligence": 13, + "saving_throw_wisdom": 11, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Kraken", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 18, + "hit_points": 472, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "lamia", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 13, + "ability_score_constitution": 15, + "ability_score_intelligence": 14, + "ability_score_wisdom": 15, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 7, + "skill_bonus_history": null, + "skill_bonus_insight": 4, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Lamia", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 97, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "lemure", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 5, + "ability_score_constitution": 11, + "ability_score_intelligence": 1, + "ability_score_wisdom": 11, + "ability_score_charisma": 3, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Lemure", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 7, + "hit_points": 13, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "lich", + "fields": { + "ability_score_strength": 11, + "ability_score_dexterity": 16, + "ability_score_constitution": 16, + "ability_score_intelligence": 20, + "ability_score_wisdom": 14, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": 12, + "saving_throw_wisdom": 9, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 18, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 12, + "skill_bonus_insight": 9, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Lich", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 135, + "type": "undead", + "category": "Monsters", + "alignment": "any evil alignment" + } +}, +{ + "model": "api_v2.creature", + "pk": "lizardfolk", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 7, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": 5, + "passive_perception": 13, + "name": "Lizardfolk", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 22, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "magma-mephit", + "fields": { + "ability_score_strength": 8, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Magma Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 22, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "magmin", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 15, + "ability_score_constitution": 12, + "ability_score_intelligence": 8, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Magmin", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 14, + "hit_points": 9, + "type": "elemental", + "category": "Monsters", + "alignment": "chaotic neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "manticore", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 16, + "ability_score_constitution": 17, + "ability_score_intelligence": 7, + "ability_score_wisdom": 12, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Manticore", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 68, + "type": "monstrosity", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "marilith", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 20, + "ability_score_constitution": 20, + "ability_score_intelligence": 18, + "ability_score_wisdom": 16, + "ability_score_charisma": 20, + "saving_throw_strength": 9, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 10, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Marilith", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 189, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "mastiff", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 14, + "ability_score_constitution": 12, + "ability_score_intelligence": 3, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 2, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 13, + "name": "Mastiff", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 5, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "medusa", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 12, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": 4, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Medusa", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 127, + "type": "monstrosity", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "merfolk", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 13, + "ability_score_constitution": 12, + "ability_score_intelligence": 11, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Merfolk", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 11, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "merrow", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 8, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Merrow", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 45, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "mimic", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 12, + "ability_score_constitution": 15, + "ability_score_intelligence": 5, + "ability_score_wisdom": 13, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Mimic", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 58, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "minotaur", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 11, + "ability_score_constitution": 16, + "ability_score_intelligence": 6, + "ability_score_wisdom": 16, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Minotaur", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 76, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "minotaur-skeleton", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 11, + "ability_score_constitution": 15, + "ability_score_intelligence": 6, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Minotaur Skeleton", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 67, + "type": "undead", + "category": "Monsters; Skeletons", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "mule", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Mule", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 11, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "mummy", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 8, + "ability_score_constitution": 15, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Mummy", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 58, + "type": "undead", + "category": "Monsters; Mummies", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "mummy-lord", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 11, + "ability_score_wisdom": 18, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 8, + "saving_throw_intelligence": 5, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 5, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": 5, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Mummy Lord", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 97, + "type": "undead", + "category": "Monsters; Mummies", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "nalfeshnee", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 19, + "ability_score_wisdom": 12, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 11, + "saving_throw_intelligence": 9, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Nalfeshnee", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 184, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "night-hag", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 16, + "ability_score_wisdom": 14, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 7, + "skill_bonus_history": null, + "skill_bonus_insight": 6, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Night Hag", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 112, + "type": "fiend", + "category": "Monsters; Hags", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "nightmare", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Nightmare", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 68, + "type": "fiend", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "ochre-jelly", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 6, + "ability_score_constitution": 14, + "ability_score_intelligence": 2, + "ability_score_wisdom": 6, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Ochre Jelly", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 8, + "hit_points": 45, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "ogre", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 8, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 7, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Ogre", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 11, + "hit_points": 59, + "type": "giant", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "ogre-zombie", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 6, + "ability_score_constitution": 18, + "ability_score_intelligence": 3, + "ability_score_wisdom": 6, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 0, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Ogre Zombie", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 8, + "hit_points": 85, + "type": "undead", + "category": "Monsters; Zombies", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "oni", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 11, + "ability_score_constitution": 16, + "ability_score_intelligence": 14, + "ability_score_wisdom": 12, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 5, + "skill_bonus_athletics": null, + "skill_bonus_deception": 8, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Oni", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 16, + "hit_points": 110, + "type": "giant", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "orc", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 12, + "ability_score_constitution": 16, + "ability_score_intelligence": 7, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": 2, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Orc", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 15, + "type": "humanoid", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "otyugh", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 11, + "ability_score_constitution": 19, + "ability_score_intelligence": 6, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Otyugh", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 114, + "type": "aberration", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "owlbear", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 12, + "ability_score_constitution": 17, + "ability_score_intelligence": 3, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Owlbear", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 59, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "pegasus", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 15, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Pegasus", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 59, + "type": "celestial", + "category": "Monsters", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "pit-fiend", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 14, + "ability_score_constitution": 24, + "ability_score_intelligence": 22, + "ability_score_wisdom": 18, + "ability_score_charisma": 24, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Pit Fiend", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 300, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "planetar", + "fields": { + "ability_score_strength": 24, + "ability_score_dexterity": 20, + "ability_score_constitution": 24, + "ability_score_intelligence": 19, + "ability_score_wisdom": 22, + "ability_score_charisma": 25, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 12, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 11, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Planetar", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 200, + "type": "celestial", + "category": "Monsters; Angels", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "plesiosaurus", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Plesiosaurus", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 68, + "type": "beast", + "category": "Monsters; Dinosaurs", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "pony", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Pony", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 11, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "pseudodragon", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 15, + "ability_score_constitution": 13, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Pseudodragon", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 7, + "type": "dragon", + "category": "Monsters", + "alignment": "neutral good" + } +}, +{ + "model": "api_v2.creature", + "pk": "purple-worm", + "fields": { + "ability_score_strength": 28, + "ability_score_dexterity": 7, + "ability_score_constitution": 22, + "ability_score_intelligence": 1, + "ability_score_wisdom": 8, + "ability_score_charisma": 4, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Purple Worm", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 18, + "hit_points": 247, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "quasit", + "fields": { + "ability_score_strength": 5, + "ability_score_dexterity": 17, + "ability_score_constitution": 10, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Quasit", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 7, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "rakshasa", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 17, + "ability_score_constitution": 18, + "ability_score_intelligence": 13, + "ability_score_wisdom": 16, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 10, + "skill_bonus_history": null, + "skill_bonus_insight": 8, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Rakshasa", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 110, + "type": "fiend", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "red-dragon-wyrmling", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Red Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 75, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "remorhaz", + "fields": { + "ability_score_strength": 24, + "ability_score_dexterity": 13, + "ability_score_constitution": 21, + "ability_score_intelligence": 4, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Remorhaz", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 17, + "hit_points": 195, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "riding-horse", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 10, + "ability_score_constitution": 12, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Riding Horse", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 10, + "hit_points": 13, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "roc", + "fields": { + "ability_score_strength": 28, + "ability_score_dexterity": 10, + "ability_score_constitution": 20, + "ability_score_intelligence": 3, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Roc", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 15, + "hit_points": 248, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "roper", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 8, + "ability_score_constitution": 17, + "ability_score_intelligence": 7, + "ability_score_wisdom": 16, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Roper", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 20, + "hit_points": 93, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "rug-of-smothering", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Rug of Smothering", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 33, + "type": "construct", + "category": "Monsters; Animated Objects", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "rust-monster", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Rust Monster", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 27, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "sahuagin", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 11, + "ability_score_constitution": 12, + "ability_score_intelligence": 12, + "ability_score_wisdom": 13, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Sahuagin", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 22, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "salamander", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 15, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Salamander", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 90, + "type": "elemental", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "satyr", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 16, + "ability_score_constitution": 11, + "ability_score_intelligence": 12, + "ability_score_wisdom": 10, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": 6, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Satyr", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 31, + "type": "fey", + "category": "Monsters", + "alignment": "chaotic neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "sea-hag", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 13, + "ability_score_constitution": 16, + "ability_score_intelligence": 12, + "ability_score_wisdom": 12, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Sea Hag", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 52, + "type": "fey", + "category": "Monsters; Hags", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "shadow", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 14, + "ability_score_constitution": 13, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Shadow", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 16, + "type": "undead", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "shambling-mound", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 8, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Shambling Mound", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 136, + "type": "plant", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "shield-guardian", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 8, + "ability_score_constitution": 18, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 3, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Shield Guardian", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 142, + "type": "construct", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "shrieker", + "fields": { + "ability_score_strength": 1, + "ability_score_dexterity": 1, + "ability_score_constitution": 10, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Shrieker", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 5, + "hit_points": 13, + "type": "plant", + "category": "Monsters; Fungi", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "silver-dragon-wyrmling", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Silver Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 45, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "skeleton", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 14, + "ability_score_constitution": 15, + "ability_score_intelligence": 6, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Skeleton", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 13, + "type": "undead", + "category": "Monsters; Skeletons", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "solar", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 22, + "ability_score_constitution": 26, + "ability_score_intelligence": 25, + "ability_score_wisdom": 25, + "ability_score_charisma": 30, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 14, + "saving_throw_wisdom": 14, + "saving_throw_charisma": 17, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 14, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 24, + "name": "Solar", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 21, + "hit_points": 243, + "type": "celestial", + "category": "Monsters; Angels", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "specter", + "fields": { + "ability_score_strength": 1, + "ability_score_dexterity": 14, + "ability_score_constitution": 11, + "ability_score_intelligence": 10, + "ability_score_wisdom": 10, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Specter", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 22, + "type": "undead", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "spirit-naga", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 17, + "ability_score_constitution": 14, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Spirit Naga", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 75, + "type": "monstrosity", + "category": "Monsters; Nagas", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "sprite", + "fields": { + "ability_score_strength": 3, + "ability_score_dexterity": 18, + "ability_score_constitution": 10, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Sprite", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 15, + "hit_points": 2, + "type": "fey", + "category": "Monsters", + "alignment": "neutral good" + } +}, +{ + "model": "api_v2.creature", + "pk": "steam-mephit", + "fields": { + "ability_score_strength": 5, + "ability_score_dexterity": 11, + "ability_score_constitution": 10, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Steam Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 10, + "hit_points": 21, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "stirge", + "fields": { + "ability_score_strength": 4, + "ability_score_dexterity": 16, + "ability_score_constitution": 11, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Stirge", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 14, + "hit_points": 2, + "type": "beast", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "stone-giant", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 15, + "ability_score_constitution": 20, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 12, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Stone Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 17, + "hit_points": 126, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "stone-golem", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 9, + "ability_score_constitution": 20, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Stone Golem", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 178, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "storm-giant", + "fields": { + "ability_score_strength": 29, + "ability_score_dexterity": 14, + "ability_score_constitution": 20, + "ability_score_intelligence": 16, + "ability_score_wisdom": 18, + "ability_score_charisma": 18, + "saving_throw_strength": 14, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 8, + "skill_bonus_athletics": 14, + "skill_bonus_deception": null, + "skill_bonus_history": 8, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Storm Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 16, + "hit_points": 230, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "succubusincubus", + "fields": { + "ability_score_strength": 8, + "ability_score_dexterity": 17, + "ability_score_constitution": 13, + "ability_score_intelligence": 15, + "ability_score_wisdom": 12, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 9, + "skill_bonus_history": null, + "skill_bonus_insight": 5, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 9, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Succubus/Incubus", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 66, + "type": "fiend", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "tarrasque", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 11, + "ability_score_constitution": 30, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 5, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Tarrasque", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 25, + "hit_points": 676, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "treant", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 8, + "ability_score_constitution": 21, + "ability_score_intelligence": 12, + "ability_score_wisdom": 16, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Treant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 16, + "hit_points": 138, + "type": "plant", + "category": "Monsters", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "triceratops", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 9, + "ability_score_constitution": 17, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Triceratops", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 13, + "hit_points": 95, + "type": "beast", + "category": "Monsters; Dinosaurs", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "troll", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 13, + "ability_score_constitution": 20, + "ability_score_intelligence": 7, + "ability_score_wisdom": 9, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Troll", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 84, + "type": "giant", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "tyrannosaurus-rex", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 19, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Tyrannosaurus Rex", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 13, + "hit_points": 136, + "type": "beast", + "category": "Monsters; Dinosaurs", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "unicorn", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 15, + "ability_score_intelligence": 11, + "ability_score_wisdom": 17, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Unicorn", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 67, + "type": "celestial", + "category": "Monsters", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "vampire", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 18, + "ability_score_constitution": 18, + "ability_score_intelligence": 17, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 9, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Vampire", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 144, + "type": "undead", + "category": "Monsters; Vampires", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "vampire-spawn", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 16, + "ability_score_constitution": 16, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Vampire Spawn", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 82, + "type": "undead", + "category": "Monsters; Vampires", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "violet-fungus", + "fields": { + "ability_score_strength": 3, + "ability_score_dexterity": 1, + "ability_score_constitution": 10, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Violet Fungus", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 5, + "hit_points": 18, + "type": "plant", + "category": "Monsters; Fungi", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "vrock", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 15, + "ability_score_constitution": 18, + "ability_score_intelligence": 8, + "ability_score_wisdom": 13, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 2, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Vrock", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 104, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "warhorse", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 11, + "name": "Warhorse", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 11, + "hit_points": 19, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "warhorse-skeleton", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 12, + "ability_score_constitution": 15, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Warhorse Skeleton", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 22, + "type": "undead", + "category": "Monsters; Skeletons", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "water-elemental", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 18, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Water Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 114, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "werebear", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Werebear", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 135, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "neutral good" + } +}, +{ + "model": "api_v2.creature", + "pk": "wereboar", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Wereboar", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 78, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "wererat", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 15, + "ability_score_constitution": 12, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Wererat", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 33, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "weretiger", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Weretiger", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 120, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "werewolf", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 13, + "ability_score_constitution": 14, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Werewolf", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 58, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "white-dragon-wyrmling", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 10, + "ability_score_constitution": 14, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 2, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "White Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 32, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "wight", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Wight", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 45, + "type": "undead", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "will-o-wisp", + "fields": { + "ability_score_strength": 1, + "ability_score_dexterity": 28, + "ability_score_constitution": 10, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Will-o'-Wisp", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 19, + "hit_points": 22, + "type": "undead", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "wraith", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 16, + "ability_score_constitution": 16, + "ability_score_intelligence": 12, + "ability_score_wisdom": 14, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Wraith", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 67, + "type": "undead", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "wyvern", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 12, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Wyvern", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 110, + "type": "dragon", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "xorn", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Xorn", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 19, + "hit_points": 73, + "type": "elemental", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "young-black-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 14, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Young Black Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 127, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "young-blue-dragon", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 10, + "ability_score_constitution": 19, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Young Blue Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 152, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "young-brass-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 5, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Young Brass Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 110, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "young-bronze-dragon", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 10, + "ability_score_constitution": 19, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 4, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Young Bronze Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 142, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "young-copper-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 12, + "ability_score_constitution": 17, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Young Copper Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 119, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "young-gold-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 14, + "ability_score_constitution": 21, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 5, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 9, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Young Gold Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 178, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "young-green-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 12, + "ability_score_constitution": 17, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Young Green Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 136, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "young-red-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 10, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Young Red Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 178, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "young-silver-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 10, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 6, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 6, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Young Silver Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 168, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "young-white-dragon", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 18, + "ability_score_intelligence": 6, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Young White Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 133, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "zombie", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 6, + "ability_score_constitution": 16, + "ability_score_intelligence": 3, + "ability_score_wisdom": 6, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 0, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Zombie", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 8, + "hit_points": 22, + "type": "undead", + "category": "Monsters; Zombies", + "alignment": "neutral evil" + } +} +] From 82e922ebdaf3335f47bcbbc0884ab248653a4a0e Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 09:39:31 -0500 Subject: [PATCH 73/84] Fixing some data. --- api_v2/migrations/0087_auto_20240531_1353.py | 22 ------------------- ...8_rename_creature_creatureaction_parent.py | 18 --------------- ...e_creature_action_creatureattack_parent.py | 18 --------------- .../0090_alter_creatureattack_key.py | 18 --------------- 4 files changed, 76 deletions(-) delete mode 100644 api_v2/migrations/0087_auto_20240531_1353.py delete mode 100644 api_v2/migrations/0088_rename_creature_creatureaction_parent.py delete mode 100644 api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py delete mode 100644 api_v2/migrations/0090_alter_creatureattack_key.py diff --git a/api_v2/migrations/0087_auto_20240531_1353.py b/api_v2/migrations/0087_auto_20240531_1353.py deleted file mode 100644 index 4f2de011..00000000 --- a/api_v2/migrations/0087_auto_20240531_1353.py +++ /dev/null @@ -1,22 +0,0 @@ -# Generated by Django 3.2.20 on 2024-05-31 13:53 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('api_v2', '0086_rename_spell_spellcastingoption_parent'), - ] - - operations = [ - migrations.RemoveField( - model_name='creatureaction', - name='document', - ), - migrations.AlterField( - model_name='creatureaction', - name='key', - field=models.CharField(help_text='Unique key for the Document.', max_length=100, primary_key=True, serialize=False), - ), - ] diff --git a/api_v2/migrations/0088_rename_creature_creatureaction_parent.py b/api_v2/migrations/0088_rename_creature_creatureaction_parent.py deleted file mode 100644 index c7f346de..00000000 --- a/api_v2/migrations/0088_rename_creature_creatureaction_parent.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 3.2.20 on 2024-05-31 13:58 - -from django.db import migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ('api_v2', '0087_auto_20240531_1353'), - ] - - operations = [ - migrations.RenameField( - model_name='creatureaction', - old_name='creature', - new_name='parent', - ), - ] diff --git a/api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py b/api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py deleted file mode 100644 index f89145c2..00000000 --- a/api_v2/migrations/0089_rename_creature_action_creatureattack_parent.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 3.2.20 on 2024-05-31 21:14 - -from django.db import migrations - - -class Migration(migrations.Migration): - - dependencies = [ - ('api_v2', '0088_rename_creature_creatureaction_parent'), - ] - - operations = [ - migrations.RenameField( - model_name='creatureattack', - old_name='creature_action', - new_name='parent', - ), - ] diff --git a/api_v2/migrations/0090_alter_creatureattack_key.py b/api_v2/migrations/0090_alter_creatureattack_key.py deleted file mode 100644 index cfb63753..00000000 --- a/api_v2/migrations/0090_alter_creatureattack_key.py +++ /dev/null @@ -1,18 +0,0 @@ -# Generated by Django 3.2.20 on 2024-05-31 21:15 - -from django.db import migrations, models - - -class Migration(migrations.Migration): - - dependencies = [ - ('api_v2', '0089_rename_creature_action_creatureattack_parent'), - ] - - operations = [ - migrations.AlterField( - model_name='creatureattack', - name='key', - field=models.CharField(help_text='Unique key for the Document.', max_length=100, primary_key=True, serialize=False), - ), - ] From 2357cb0ed256fcc9ae44a29687663dbf80e2cde3 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 10:22:19 -0500 Subject: [PATCH 74/84] Script looking better? --- scripts/data_manipulation/data_v2_fix_keys.py | 136 ++++++++++++++++++ 1 file changed, 136 insertions(+) create mode 100644 scripts/data_manipulation/data_v2_fix_keys.py diff --git a/scripts/data_manipulation/data_v2_fix_keys.py b/scripts/data_manipulation/data_v2_fix_keys.py new file mode 100644 index 00000000..bdd7c7c0 --- /dev/null +++ b/scripts/data_manipulation/data_v2_fix_keys.py @@ -0,0 +1,136 @@ +import argparse +import json +import numbers +import glob +import os + +import logging +logger = logging.getLogger(__name__) +from django.template.defaultfilters import slugify + + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument('-d', '--directory', default='./data/v2', + help='Input data directory containing fixtures for v2 models.') + parser.add_argument('-l','--loglevel', default='INFO', + help='Log level.') + parser.add_argument('-f', '--fix', action='store_true', + help='If this flag is set, the script will automatically fix what it can.') + + parser.add_argument('-m','--model', + help='Model name to operate on. All others will be skipped.') + args = parser.parse_args() + + if args.loglevel == 'INFO': + ll=logging.INFO + if args.loglevel == 'DEBUG': + ll=logging.DEBUG + if args.loglevel == 'WARN': + ll=logging.WARN + logging.basicConfig(level=ll) + + # Get a list of files + files = glob.glob(args.directory + '/**/*.json', recursive=True) + excluded_files = ['Publisher.json','Document.json','Ruleset.json','License.json'] + file_list = [] + + for file in files: + if file.split("/")[-1] not in excluded_files: + f = dict() + f['path'] = file + f['root'] = file.split("/")[0] + f['dir'] = file.split("/")[1] + f['schema'] = file.split("/")[2] + try: + f['publisher'] = file.split("/")[3] + except IndexError: + f['publisher'] = None + + try: + f['doc'] = file.split("/")[4] + except IndexError: + f['doc'] = None + + f['filename'] = file.split("/")[-1] + file_list.append(f) + else: + logger.debug("Excluding {} from file list".format(file)) + + # LOOPING THROUGH ALL IN-SCOPE FILES + for f_obj in file_list: + if f_obj['filename'] != 'Creature.json': + continue + + with open(f_obj['path'],'r',encoding='utf-8') as f_in: + objs = json.load(f_in) + for obj in objs: + refactor_all(obj,f_obj) + + # Calculate keys for Creature.json + + # Calculate keys for CreatureAction.json + + + # Calculate keys for CreatureActionAttack.json + + + +def refactor_all(obj,f_obj): + ca_path = "{}/{}/{}/{}/{}/{}".format(f_obj['root'],f_obj['dir'],f_obj['schema'],f_obj['publisher'],f_obj['doc'],'CreatureAction.json') + caa_path = "{}/{}/{}/{}/{}/{}".format(f_obj['root'],f_obj['dir'],f_obj['schema'],f_obj['publisher'],f_obj['doc'],'CreatureActionAttack.json') + + old_creature_key = obj['pk'] + new_creature_key = "{}_{}".format(slugify(f_obj['doc']),slugify(obj['fields']['name'])) + refactor_key(f_obj['path'], obj['pk'], new_creature_key) + + # Rewrite parent references. + refactor_parent_reference(ca_path,old_creature_key,new_creature_key) + + # Open CreatureAction.json + with open(ca_path, 'r', encoding='utf-8') as ca_f: + ca_objs = json.load(ca_f) + for ca_obj in ca_objs: + ca_old_key = ca_obj['pk'] + ca_new_key = "{}_{}".format(ca_obj['fields']['parent'],slugify(ca_obj['fields']['name'])) + refactor_key(ca_path,ca_old_key,ca_new_key) + refactor_parent_reference(caa_path,ca_old_key,ca_new_key) + + with open(caa_path, 'r', encoding='utf-8') as caa_f: + caa_objs = json.load(caa_f) + for caa_obj in caa_objs: + caa_old_key = caa_obj['pk'] + caa_new_key = "{}_{}".format(caa_obj['fields']['parent'],slugify(caa_obj['fields']['name'])) + refactor_key(caa_path,caa_old_key,caa_new_key) + + +def refactor_parent_reference(file, old_parent, new_parent): + refactored_objects = [] + with open(file, 'r', encoding='utf-8') as f: + objs = json.load(f) + for obj in objs: + if obj['fields']['parent']==old_parent: + obj['fields']['parent'] = new_parent + refactored_objects.append(obj) + + logger.warning("refactoring parent {} {} {}".format(file, old_parent, new_parent)) + #with open(filename,'w', encoding='utf-8') as o: + # json.dump(refactored_objects,o, ensure_ascii=False,indent=2) + +def refactor_key(file, old_key, new_key): + refactored_objects = [] + with open(file, 'r', encoding='utf-8') as f: + objs = json.load(f) + for obj in objs: + if obj['pk']==old_key: + obj['pk'] = new_key + refactored_objects.append(obj) + + logger.warning("refactoring key {} {} {}".format(file, old_key, new_key)) + #with open(filename,'w', encoding='utf-8') as o: + # json.dump(refactored_objects,o, ensure_ascii=False,indent=2) + + + +if __name__ == "__main__": + main() \ No newline at end of file From 65642994e16d96b57fcdafc710bd6393e396fb0f Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 11:05:03 -0500 Subject: [PATCH 75/84] Full refactor of creature keys. --- .../v2/wizards-of-the-coast/srd/Creature.json | 19322 ++++++++-------- .../srd/CreatureAction.json | 14214 ++++++------ .../srd/CreatureActionAttack.json | 16986 +++++++------- .../wizards-of-the-coast/srd/CreatureSet.json | 18 +- scripts/data_manipulation/data_v2_fix_keys.py | 8 +- 5 files changed, 25274 insertions(+), 25274 deletions(-) diff --git a/data/v2/wizards-of-the-coast/srd/Creature.json b/data/v2/wizards-of-the-coast/srd/Creature.json index bef2c12c..31b9ee50 100644 --- a/data/v2/wizards-of-the-coast/srd/Creature.json +++ b/data/v2/wizards-of-the-coast/srd/Creature.json @@ -1,9662 +1,9662 @@ [ -{ - "model": "api_v2.creature", - "pk": "aboleth", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 9, - "ability_score_constitution": 15, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 6, - "saving_throw_intelligence": 8, - "saving_throw_wisdom": 6, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 12, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 10, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 20, - "name": "Aboleth", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 135, - "type": "aberration", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-black-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 14, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult Black Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 195, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-blue-dragon", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 23, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Blue Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 225, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-brass-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 10, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 7, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 8, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult Brass Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 172, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-bronze-dragon", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 23, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 7, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Bronze Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 212, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-copper-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 12, - "ability_score_constitution": 21, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 8, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Copper Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 184, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-gold-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 14, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 24, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 13, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 8, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 14, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 13, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 24, - "name": "Adult Gold Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 256, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-green-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 12, - "ability_score_constitution": 21, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 8, - "skill_bonus_history": null, - "skill_bonus_insight": 7, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 8, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Green Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 207, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-red-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 13, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 23, - "name": "Adult Red Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 256, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-silver-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 12, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 10, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 8, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 8, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult Silver Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 243, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "adult-white-dragon", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 8, - "ability_score_wisdom": 12, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult White Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 200, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "air-elemental", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 20, - "ability_score_constitution": 14, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Air Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 90, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-black-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 14, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 9, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 16, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 26, - "name": "Ancient Black Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 367, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-blue-dragon", - "fields": { - "ability_score_strength": 29, - "ability_score_dexterity": 10, - "ability_score_constitution": 27, - "ability_score_intelligence": 18, - "ability_score_wisdom": 17, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 15, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Blue Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 481, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-brass-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 10, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 9, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 14, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 10, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 24, - "name": "Ancient Brass Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 20, - "hit_points": 297, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-bronze-dragon", - "fields": { - "ability_score_strength": 29, - "ability_score_dexterity": 10, - "ability_score_constitution": 27, - "ability_score_intelligence": 18, - "ability_score_wisdom": 17, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 15, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 10, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Bronze Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 444, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-copper-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 12, - "ability_score_constitution": 25, - "ability_score_intelligence": 20, - "ability_score_wisdom": 17, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 11, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Copper Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 21, - "hit_points": 350, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-gold-dragon", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 14, - "ability_score_constitution": 29, - "ability_score_intelligence": 18, - "ability_score_wisdom": 17, - "ability_score_charisma": 28, - "saving_throw_strength": null, - "saving_throw_dexterity": 9, - "saving_throw_constitution": 16, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 16, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 10, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 16, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Gold Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 546, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-green-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 12, - "ability_score_constitution": 25, - "ability_score_intelligence": 20, - "ability_score_wisdom": 17, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 11, - "skill_bonus_history": null, - "skill_bonus_insight": 10, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 11, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Green Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 21, - "hit_points": 385, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-red-dragon", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 10, - "ability_score_constitution": 29, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 23, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 16, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 13, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 16, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 26, - "name": "Ancient Red Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 546, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-silver-dragon", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 10, - "ability_score_constitution": 29, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 23, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 16, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 13, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 11, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 11, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 16, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 26, - "name": "Ancient Silver Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 487, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "ancient-white-dragon", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 10, - "ability_score_constitution": 26, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 13, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 23, - "name": "Ancient White Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 20, - "hit_points": 333, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "androsphinx", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 10, - "ability_score_constitution": 20, - "ability_score_intelligence": 16, - "ability_score_wisdom": 18, - "ability_score_charisma": 23, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 11, - "saving_throw_intelligence": 9, - "saving_throw_wisdom": 10, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 9, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 10, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": 15, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 20, - "name": "Androsphinx", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 199, - "type": "monstrosity", - "category": "Monsters; Sphinxes", - "alignment": "lawful neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "animated-armor", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 11, - "ability_score_constitution": 13, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Animated Armor", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 33, - "type": "construct", - "category": "Monsters; Animated Objects", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "ankheg", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 11, - "ability_score_constitution": 13, - "ability_score_intelligence": 1, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Ankheg", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 39, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "azer", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 12, - "ability_score_constitution": 15, - "ability_score_intelligence": 12, - "ability_score_wisdom": 13, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Azer", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 39, - "type": "elemental", - "category": "Monsters", - "alignment": "lawful neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "balor", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 15, - "ability_score_constitution": 22, - "ability_score_intelligence": 20, - "ability_score_wisdom": 16, - "ability_score_charisma": 22, - "saving_throw_strength": 14, - "saving_throw_dexterity": null, - "saving_throw_constitution": 12, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Balor", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 262, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "barbed-devil", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 17, - "ability_score_constitution": 18, - "ability_score_intelligence": 12, - "ability_score_wisdom": 14, - "ability_score_charisma": 14, - "saving_throw_strength": 6, - "saving_throw_dexterity": null, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": 5, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Barbed Devil", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 110, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "basilisk", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 8, - "ability_score_constitution": 15, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Basilisk", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 52, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "bearded-devil", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 15, - "ability_score_constitution": 15, - "ability_score_intelligence": 9, - "ability_score_wisdom": 11, - "ability_score_charisma": 11, - "saving_throw_strength": 5, - "saving_throw_dexterity": null, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Bearded Devil", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 52, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "behir", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 7, - "ability_score_wisdom": 14, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Behir", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 17, - "hit_points": 168, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "black-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 13, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Black Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 33, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "black-pudding", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 5, - "ability_score_constitution": 16, - "ability_score_intelligence": 1, - "ability_score_wisdom": 6, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Black Pudding", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 7, - "hit_points": 85, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "blue-dragon-wyrmling", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Blue Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 52, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "bone-devil", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 5, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 7, - "skill_bonus_history": null, - "skill_bonus_insight": 6, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Bone Devil", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 142, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "brass-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Brass Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 16, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "bronze-dragon-wyrmling", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Bronze Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 32, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "bugbear", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 13, - "ability_score_intelligence": 8, - "ability_score_wisdom": 11, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": 2, - "passive_perception": 10, - "name": "Bugbear", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 27, - "type": "humanoid", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "bulette", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 11, - "ability_score_constitution": 21, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Bulette", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 94, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "camel", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 8, - "ability_score_constitution": 14, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 9, - "name": "Camel", - "document": "srd", - "size": "large", - "weight": "600.000", - "armor_class": 9, - "hit_points": 15, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "centaur", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 14, - "ability_score_intelligence": 9, - "ability_score_wisdom": 13, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 6, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": 3, - "passive_perception": 13, - "name": "Centaur", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 45, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral good" - } -}, -{ - "model": "api_v2.creature", - "pk": "chain-devil", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 18, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Chain Devil", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 85, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "chimera", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 11, - "ability_score_constitution": 19, - "ability_score_intelligence": 3, - "ability_score_wisdom": 14, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Chimera", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 114, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "chuul", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 11, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Chuul", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 16, - "hit_points": 93, - "type": "aberration", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "clay-golem", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 9, - "ability_score_constitution": 18, - "ability_score_intelligence": 3, - "ability_score_wisdom": 8, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Clay Golem", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 133, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "cloaker", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 15, - "ability_score_constitution": 12, - "ability_score_intelligence": 13, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Cloaker", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 78, - "type": "aberration", - "category": "Monsters", - "alignment": "chaotic neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "cloud-giant", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 12, - "ability_score_wisdom": 16, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 7, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Cloud Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 14, - "hit_points": 200, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "neutral good (50%) or neutral evil (50%)" - } -}, -{ - "model": "api_v2.creature", - "pk": "cockatrice", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 2, - "ability_score_wisdom": 13, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Cockatrice", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 27, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "copper-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Copper Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 22, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "couatl", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 20, - "ability_score_constitution": 17, - "ability_score_intelligence": 18, - "ability_score_wisdom": 20, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Couatl", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 19, - "hit_points": 97, - "type": "celestial", - "category": "Monsters", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "darkmantle", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Darkmantle", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 22, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "deva", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 18, - "ability_score_constitution": 18, - "ability_score_intelligence": 17, - "ability_score_wisdom": 20, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 9, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Deva", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 136, - "type": "celestial", - "category": "Monsters; Angels", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "djinni", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 15, - "ability_score_constitution": 22, - "ability_score_intelligence": 15, - "ability_score_wisdom": 16, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Djinni", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 161, - "type": "elemental", - "category": "Monsters; Genies", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "donkey", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Donkey", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 11, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "doppelganger", - "fields": { - "ability_score_strength": 11, - "ability_score_dexterity": 18, - "ability_score_constitution": 14, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 6, - "skill_bonus_history": null, - "skill_bonus_insight": 3, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Doppelganger", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 52, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "draft-horse", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 12, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Draft Horse", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 10, - "hit_points": 19, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "dragon-turtle", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 20, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Dragon Turtle", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 20, - "hit_points": 341, - "type": "dragon", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "dretch", - "fields": { - "ability_score_strength": 11, - "ability_score_dexterity": 11, - "ability_score_constitution": 12, - "ability_score_intelligence": 5, - "ability_score_wisdom": 8, - "ability_score_charisma": 3, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Dretch", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 18, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "drider", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Drider", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 123, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "dryad", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 12, - "ability_score_constitution": 11, - "ability_score_intelligence": 14, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Dryad", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 22, - "type": "fey", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "duergar", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 11, - "ability_score_constitution": 14, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Duergar", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 26, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "dust-mephit", - "fields": { - "ability_score_strength": 5, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 9, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Dust Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 12, - "hit_points": 17, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "earth-elemental", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 8, - "ability_score_constitution": 20, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Earth Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 126, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "efreeti", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 12, - "ability_score_constitution": 24, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 7, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Efreeti", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 200, - "type": "elemental", - "category": "Monsters; Genies", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "elephant", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 9, - "ability_score_constitution": 17, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 6, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Elephant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 12, - "hit_points": 76, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "elf-drow", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 11, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Elf, Drow", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 13, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "erinyes", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 14, - "ability_score_wisdom": 14, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Erinyes", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 153, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ettercap", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 15, - "ability_score_constitution": 13, - "ability_score_intelligence": 7, - "ability_score_wisdom": 12, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": 3, - "passive_perception": 13, - "name": "Ettercap", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 44, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ettin", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 8, - "ability_score_constitution": 17, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Ettin", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 85, - "type": "giant", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "fire-elemental", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 17, - "ability_score_constitution": 16, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Fire Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 102, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "fire-giant", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 9, - "ability_score_constitution": 23, - "ability_score_intelligence": 10, - "ability_score_wisdom": 14, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 11, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Fire Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 162, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "flesh-golem", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 9, - "ability_score_constitution": 18, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Flesh Golem", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 9, - "hit_points": 93, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "flying-sword", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 15, - "ability_score_constitution": 11, - "ability_score_intelligence": 1, - "ability_score_wisdom": 5, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 7, - "name": "Flying Sword", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 17, - "hit_points": 17, - "type": "construct", - "category": "Monsters; Animated Objects", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "frost-giant", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 9, - "ability_score_constitution": 21, - "ability_score_intelligence": 9, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 9, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Frost Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 15, - "hit_points": 138, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "gargoyle", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 11, - "ability_score_constitution": 16, - "ability_score_intelligence": 6, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Gargoyle", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 52, - "type": "elemental", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "gelatinous-cube", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 3, - "ability_score_constitution": 20, - "ability_score_intelligence": 1, - "ability_score_wisdom": 6, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Gelatinous Cube", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 6, - "hit_points": 84, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "ghast", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 17, - "ability_score_constitution": 10, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Ghast", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 36, - "type": "undead", - "category": "Monsters; Ghouls", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ghost", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 13, - "ability_score_constitution": 10, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Ghost", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 45, - "type": "undead", - "category": "Monsters", - "alignment": "any alignment" - } -}, -{ - "model": "api_v2.creature", - "pk": "ghoul", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 15, - "ability_score_constitution": 10, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Ghoul", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 22, - "type": "undead", - "category": "Monsters; Ghouls", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "gibbering-mouther", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 8, - "ability_score_constitution": 16, - "ability_score_intelligence": 3, - "ability_score_wisdom": 10, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Gibbering Mouther", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 9, - "hit_points": 67, - "type": "aberration", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "glabrezu", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 15, - "ability_score_constitution": 21, - "ability_score_intelligence": 19, - "ability_score_wisdom": 17, - "ability_score_charisma": 16, - "saving_throw_strength": 9, - "saving_throw_dexterity": null, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Glabrezu", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 157, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "gnoll", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 12, - "ability_score_constitution": 11, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Gnoll", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 22, - "type": "humanoid", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "gnome-deep-svirfneblin", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 14, - "ability_score_intelligence": 12, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": 3, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Gnome, Deep (Svirfneblin)", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 15, - "hit_points": 16, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral good" - } -}, -{ - "model": "api_v2.creature", - "pk": "goblin", - "fields": { - "ability_score_strength": 8, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 10, - "ability_score_wisdom": 8, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Goblin", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 15, - "hit_points": 7, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "gold-dragon-wyrmling", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 14, - "ability_score_constitution": 17, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Gold Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 60, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "gorgon", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 11, - "ability_score_constitution": 18, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Gorgon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 114, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "gray-ooze", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 6, - "ability_score_constitution": 16, - "ability_score_intelligence": 1, - "ability_score_wisdom": 6, - "ability_score_charisma": 2, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Gray Ooze", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 8, - "hit_points": 22, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "green-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Green Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 38, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "green-hag", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 12, - "ability_score_constitution": 16, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 3, - "skill_bonus_athletics": null, - "skill_bonus_deception": 4, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Green Hag", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 82, - "type": "fey", - "category": "Monsters; Hags", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "grick", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 14, - "ability_score_constitution": 11, - "ability_score_intelligence": 3, - "ability_score_wisdom": 14, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Grick", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 27, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "griffon", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 2, - "ability_score_wisdom": 13, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Griffon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 59, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "grimlock", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 9, - "ability_score_wisdom": 8, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 5, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Grimlock", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 11, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "guardian-naga", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 18, - "ability_score_constitution": 16, - "ability_score_intelligence": 16, - "ability_score_wisdom": 19, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 7, - "saving_throw_intelligence": 7, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Guardian Naga", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 127, - "type": "monstrosity", - "category": "Monsters; Nagas", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "gynosphinx", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 18, - "ability_score_wisdom": 18, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 12, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 12, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": 8, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Gynosphinx", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 136, - "type": "monstrosity", - "category": "Monsters; Sphinxes", - "alignment": "lawful neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "half-red-dragon-veteran", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 13, - "ability_score_constitution": 14, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 5, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Half-Red Dragon Veteran", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 65, - "type": "humanoid", - "category": "Monsters; Half-Dragon Template", - "alignment": "any alignment" - } -}, -{ - "model": "api_v2.creature", - "pk": "harpy", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 13, - "ability_score_constitution": 12, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Harpy", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 38, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "hell-hound", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 12, - "ability_score_constitution": 14, - "ability_score_intelligence": 6, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Hell Hound", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 45, - "type": "fiend", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "hezrou", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 17, - "ability_score_constitution": 20, - "ability_score_intelligence": 5, - "ability_score_wisdom": 12, - "ability_score_charisma": 13, - "saving_throw_strength": 7, - "saving_throw_dexterity": null, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Hezrou", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 16, - "hit_points": 136, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "hill-giant", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 8, - "ability_score_constitution": 19, - "ability_score_intelligence": 5, - "ability_score_wisdom": 9, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Hill Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 13, - "hit_points": 105, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "hippogriff", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 13, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Hippogriff", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 11, - "hit_points": 19, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "hobgoblin", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 10, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Hobgoblin", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 11, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "homunculus", - "fields": { - "ability_score_strength": 4, - "ability_score_dexterity": 15, - "ability_score_constitution": 11, - "ability_score_intelligence": 10, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Homunculus", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 5, - "type": "construct", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "horned-devil", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 17, - "ability_score_constitution": 21, - "ability_score_intelligence": 12, - "ability_score_wisdom": 16, - "ability_score_charisma": 17, - "saving_throw_strength": 10, - "saving_throw_dexterity": 7, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Horned Devil", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 178, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "hydra", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 12, - "ability_score_constitution": 20, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Hydra", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 15, - "hit_points": 172, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "ice-devil", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 14, - "ability_score_constitution": 18, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Ice Devil", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 180, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ice-mephit", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 13, - "ability_score_constitution": 10, - "ability_score_intelligence": 9, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Ice Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 21, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "imp", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 17, - "ability_score_constitution": 13, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 4, - "skill_bonus_history": null, - "skill_bonus_insight": 3, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 4, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Imp", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 10, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "invisible-stalker", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 19, - "ability_score_constitution": 14, - "ability_score_intelligence": 10, - "ability_score_wisdom": 15, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 10, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Invisible Stalker", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 104, - "type": "elemental", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "iron-golem", - "fields": { - "ability_score_strength": 24, - "ability_score_dexterity": 9, - "ability_score_constitution": 20, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Iron Golem", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 20, - "hit_points": 210, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "kobold", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 15, - "ability_score_constitution": 9, - "ability_score_intelligence": 8, - "ability_score_wisdom": 7, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Kobold", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 12, - "hit_points": 5, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "kraken", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 11, - "ability_score_constitution": 25, - "ability_score_intelligence": 22, - "ability_score_wisdom": 18, - "ability_score_charisma": 20, - "saving_throw_strength": 17, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 14, - "saving_throw_intelligence": 13, - "saving_throw_wisdom": 11, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Kraken", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 18, - "hit_points": 472, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "lamia", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 13, - "ability_score_constitution": 15, - "ability_score_intelligence": 14, - "ability_score_wisdom": 15, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 7, - "skill_bonus_history": null, - "skill_bonus_insight": 4, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Lamia", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 97, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "lemure", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 5, - "ability_score_constitution": 11, - "ability_score_intelligence": 1, - "ability_score_wisdom": 11, - "ability_score_charisma": 3, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Lemure", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 7, - "hit_points": 13, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "lich", - "fields": { - "ability_score_strength": 11, - "ability_score_dexterity": 16, - "ability_score_constitution": 16, - "ability_score_intelligence": 20, - "ability_score_wisdom": 14, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": 12, - "saving_throw_wisdom": 9, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 18, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 12, - "skill_bonus_insight": 9, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Lich", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 135, - "type": "undead", - "category": "Monsters", - "alignment": "any evil alignment" - } -}, -{ - "model": "api_v2.creature", - "pk": "lizardfolk", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 7, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": 5, - "passive_perception": 13, - "name": "Lizardfolk", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 22, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "magma-mephit", - "fields": { - "ability_score_strength": 8, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Magma Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 22, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "magmin", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 15, - "ability_score_constitution": 12, - "ability_score_intelligence": 8, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Magmin", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 14, - "hit_points": 9, - "type": "elemental", - "category": "Monsters", - "alignment": "chaotic neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "manticore", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 16, - "ability_score_constitution": 17, - "ability_score_intelligence": 7, - "ability_score_wisdom": 12, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Manticore", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 68, - "type": "monstrosity", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "marilith", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 20, - "ability_score_constitution": 20, - "ability_score_intelligence": 18, - "ability_score_wisdom": 16, - "ability_score_charisma": 20, - "saving_throw_strength": 9, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 10, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Marilith", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 189, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "mastiff", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 14, - "ability_score_constitution": 12, - "ability_score_intelligence": 3, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 2, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 13, - "name": "Mastiff", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 5, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "medusa", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 12, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": 4, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Medusa", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 127, - "type": "monstrosity", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "merfolk", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 13, - "ability_score_constitution": 12, - "ability_score_intelligence": 11, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Merfolk", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 11, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "merrow", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 8, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Merrow", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 45, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "mimic", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 12, - "ability_score_constitution": 15, - "ability_score_intelligence": 5, - "ability_score_wisdom": 13, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Mimic", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 58, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "minotaur", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 11, - "ability_score_constitution": 16, - "ability_score_intelligence": 6, - "ability_score_wisdom": 16, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Minotaur", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 76, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "minotaur-skeleton", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 11, - "ability_score_constitution": 15, - "ability_score_intelligence": 6, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Minotaur Skeleton", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 67, - "type": "undead", - "category": "Monsters; Skeletons", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "mule", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Mule", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 11, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "mummy", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 8, - "ability_score_constitution": 15, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Mummy", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 58, - "type": "undead", - "category": "Monsters; Mummies", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "mummy-lord", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 11, - "ability_score_wisdom": 18, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 8, - "saving_throw_intelligence": 5, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 5, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": 5, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Mummy Lord", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 97, - "type": "undead", - "category": "Monsters; Mummies", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "nalfeshnee", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 19, - "ability_score_wisdom": 12, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 11, - "saving_throw_intelligence": 9, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Nalfeshnee", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 184, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "night-hag", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 16, - "ability_score_wisdom": 14, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 7, - "skill_bonus_history": null, - "skill_bonus_insight": 6, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Night Hag", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 112, - "type": "fiend", - "category": "Monsters; Hags", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "nightmare", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Nightmare", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 68, - "type": "fiend", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ochre-jelly", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 6, - "ability_score_constitution": 14, - "ability_score_intelligence": 2, - "ability_score_wisdom": 6, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Ochre Jelly", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 8, - "hit_points": 45, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "ogre", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 8, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 7, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Ogre", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 11, - "hit_points": 59, - "type": "giant", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "ogre-zombie", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 6, - "ability_score_constitution": 18, - "ability_score_intelligence": 3, - "ability_score_wisdom": 6, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 0, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Ogre Zombie", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 8, - "hit_points": 85, - "type": "undead", - "category": "Monsters; Zombies", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "oni", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 11, - "ability_score_constitution": 16, - "ability_score_intelligence": 14, - "ability_score_wisdom": 12, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 5, - "skill_bonus_athletics": null, - "skill_bonus_deception": 8, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Oni", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 16, - "hit_points": 110, - "type": "giant", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "orc", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 12, - "ability_score_constitution": 16, - "ability_score_intelligence": 7, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": 2, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Orc", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 15, - "type": "humanoid", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "otyugh", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 11, - "ability_score_constitution": 19, - "ability_score_intelligence": 6, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Otyugh", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 114, - "type": "aberration", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "owlbear", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 12, - "ability_score_constitution": 17, - "ability_score_intelligence": 3, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Owlbear", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 59, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "pegasus", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 15, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Pegasus", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 59, - "type": "celestial", - "category": "Monsters", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "pit-fiend", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 14, - "ability_score_constitution": 24, - "ability_score_intelligence": 22, - "ability_score_wisdom": 18, - "ability_score_charisma": 24, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Pit Fiend", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 300, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "planetar", - "fields": { - "ability_score_strength": 24, - "ability_score_dexterity": 20, - "ability_score_constitution": 24, - "ability_score_intelligence": 19, - "ability_score_wisdom": 22, - "ability_score_charisma": 25, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 12, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 11, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Planetar", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 200, - "type": "celestial", - "category": "Monsters; Angels", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "plesiosaurus", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Plesiosaurus", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 68, - "type": "beast", - "category": "Monsters; Dinosaurs", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "pony", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Pony", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 11, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "pseudodragon", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 15, - "ability_score_constitution": 13, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Pseudodragon", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 7, - "type": "dragon", - "category": "Monsters", - "alignment": "neutral good" - } -}, -{ - "model": "api_v2.creature", - "pk": "purple-worm", - "fields": { - "ability_score_strength": 28, - "ability_score_dexterity": 7, - "ability_score_constitution": 22, - "ability_score_intelligence": 1, - "ability_score_wisdom": 8, - "ability_score_charisma": 4, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Purple Worm", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 18, - "hit_points": 247, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "quasit", - "fields": { - "ability_score_strength": 5, - "ability_score_dexterity": 17, - "ability_score_constitution": 10, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Quasit", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 7, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "rakshasa", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 17, - "ability_score_constitution": 18, - "ability_score_intelligence": 13, - "ability_score_wisdom": 16, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 10, - "skill_bonus_history": null, - "skill_bonus_insight": 8, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Rakshasa", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 110, - "type": "fiend", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "red-dragon-wyrmling", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Red Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 75, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "remorhaz", - "fields": { - "ability_score_strength": 24, - "ability_score_dexterity": 13, - "ability_score_constitution": 21, - "ability_score_intelligence": 4, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Remorhaz", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 17, - "hit_points": 195, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "riding-horse", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 10, - "ability_score_constitution": 12, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Riding Horse", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 10, - "hit_points": 13, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "roc", - "fields": { - "ability_score_strength": 28, - "ability_score_dexterity": 10, - "ability_score_constitution": 20, - "ability_score_intelligence": 3, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Roc", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 15, - "hit_points": 248, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "roper", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 8, - "ability_score_constitution": 17, - "ability_score_intelligence": 7, - "ability_score_wisdom": 16, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Roper", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 20, - "hit_points": 93, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "rug-of-smothering", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Rug of Smothering", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 33, - "type": "construct", - "category": "Monsters; Animated Objects", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "rust-monster", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Rust Monster", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 27, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "sahuagin", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 11, - "ability_score_constitution": 12, - "ability_score_intelligence": 12, - "ability_score_wisdom": 13, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Sahuagin", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 22, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "salamander", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 15, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Salamander", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 90, - "type": "elemental", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "satyr", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 16, - "ability_score_constitution": 11, - "ability_score_intelligence": 12, - "ability_score_wisdom": 10, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": 6, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Satyr", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 31, - "type": "fey", - "category": "Monsters", - "alignment": "chaotic neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "sea-hag", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 13, - "ability_score_constitution": 16, - "ability_score_intelligence": 12, - "ability_score_wisdom": 12, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Sea Hag", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 52, - "type": "fey", - "category": "Monsters; Hags", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "shadow", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 14, - "ability_score_constitution": 13, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Shadow", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 16, - "type": "undead", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "shambling-mound", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 8, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Shambling Mound", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 136, - "type": "plant", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "shield-guardian", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 8, - "ability_score_constitution": 18, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 3, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Shield Guardian", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 142, - "type": "construct", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "shrieker", - "fields": { - "ability_score_strength": 1, - "ability_score_dexterity": 1, - "ability_score_constitution": 10, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Shrieker", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 5, - "hit_points": 13, - "type": "plant", - "category": "Monsters; Fungi", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "silver-dragon-wyrmling", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Silver Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 45, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "skeleton", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 14, - "ability_score_constitution": 15, - "ability_score_intelligence": 6, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Skeleton", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 13, - "type": "undead", - "category": "Monsters; Skeletons", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "solar", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 22, - "ability_score_constitution": 26, - "ability_score_intelligence": 25, - "ability_score_wisdom": 25, - "ability_score_charisma": 30, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 14, - "saving_throw_wisdom": 14, - "saving_throw_charisma": 17, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 14, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 24, - "name": "Solar", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 21, - "hit_points": 243, - "type": "celestial", - "category": "Monsters; Angels", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "specter", - "fields": { - "ability_score_strength": 1, - "ability_score_dexterity": 14, - "ability_score_constitution": 11, - "ability_score_intelligence": 10, - "ability_score_wisdom": 10, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Specter", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 22, - "type": "undead", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "spirit-naga", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 17, - "ability_score_constitution": 14, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Spirit Naga", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 75, - "type": "monstrosity", - "category": "Monsters; Nagas", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "sprite", - "fields": { - "ability_score_strength": 3, - "ability_score_dexterity": 18, - "ability_score_constitution": 10, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Sprite", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 15, - "hit_points": 2, - "type": "fey", - "category": "Monsters", - "alignment": "neutral good" - } -}, -{ - "model": "api_v2.creature", - "pk": "steam-mephit", - "fields": { - "ability_score_strength": 5, - "ability_score_dexterity": 11, - "ability_score_constitution": 10, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Steam Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 10, - "hit_points": 21, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "stirge", - "fields": { - "ability_score_strength": 4, - "ability_score_dexterity": 16, - "ability_score_constitution": 11, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Stirge", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 14, - "hit_points": 2, - "type": "beast", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "stone-giant", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 15, - "ability_score_constitution": 20, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 12, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Stone Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 17, - "hit_points": 126, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "stone-golem", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 9, - "ability_score_constitution": 20, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Stone Golem", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 178, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "storm-giant", - "fields": { - "ability_score_strength": 29, - "ability_score_dexterity": 14, - "ability_score_constitution": 20, - "ability_score_intelligence": 16, - "ability_score_wisdom": 18, - "ability_score_charisma": 18, - "saving_throw_strength": 14, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 8, - "skill_bonus_athletics": 14, - "skill_bonus_deception": null, - "skill_bonus_history": 8, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Storm Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 16, - "hit_points": 230, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "succubusincubus", - "fields": { - "ability_score_strength": 8, - "ability_score_dexterity": 17, - "ability_score_constitution": 13, - "ability_score_intelligence": 15, - "ability_score_wisdom": 12, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 9, - "skill_bonus_history": null, - "skill_bonus_insight": 5, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 9, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Succubus/Incubus", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 66, - "type": "fiend", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "tarrasque", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 11, - "ability_score_constitution": 30, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 5, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Tarrasque", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 25, - "hit_points": 676, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "treant", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 8, - "ability_score_constitution": 21, - "ability_score_intelligence": 12, - "ability_score_wisdom": 16, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Treant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 16, - "hit_points": 138, - "type": "plant", - "category": "Monsters", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "triceratops", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 9, - "ability_score_constitution": 17, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Triceratops", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 13, - "hit_points": 95, - "type": "beast", - "category": "Monsters; Dinosaurs", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "troll", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 13, - "ability_score_constitution": 20, - "ability_score_intelligence": 7, - "ability_score_wisdom": 9, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Troll", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 84, - "type": "giant", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "tyrannosaurus-rex", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 19, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Tyrannosaurus Rex", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 13, - "hit_points": 136, - "type": "beast", - "category": "Monsters; Dinosaurs", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "unicorn", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 15, - "ability_score_intelligence": 11, - "ability_score_wisdom": 17, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Unicorn", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 67, - "type": "celestial", - "category": "Monsters", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "vampire", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 18, - "ability_score_constitution": 18, - "ability_score_intelligence": 17, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 9, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Vampire", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 144, - "type": "undead", - "category": "Monsters; Vampires", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "vampire-spawn", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 16, - "ability_score_constitution": 16, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Vampire Spawn", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 82, - "type": "undead", - "category": "Monsters; Vampires", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "violet-fungus", - "fields": { - "ability_score_strength": 3, - "ability_score_dexterity": 1, - "ability_score_constitution": 10, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Violet Fungus", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 5, - "hit_points": 18, - "type": "plant", - "category": "Monsters; Fungi", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "vrock", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 15, - "ability_score_constitution": 18, - "ability_score_intelligence": 8, - "ability_score_wisdom": 13, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 2, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Vrock", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 104, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "warhorse", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 11, - "name": "Warhorse", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 11, - "hit_points": 19, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "warhorse-skeleton", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 12, - "ability_score_constitution": 15, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Warhorse Skeleton", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 22, - "type": "undead", - "category": "Monsters; Skeletons", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "water-elemental", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 18, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Water Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 114, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "werebear", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Werebear", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 135, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "neutral good" - } -}, -{ - "model": "api_v2.creature", - "pk": "wereboar", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Wereboar", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 78, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "wererat", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 15, - "ability_score_constitution": 12, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Wererat", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 33, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "weretiger", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Weretiger", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 120, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "werewolf", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 13, - "ability_score_constitution": 14, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Werewolf", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 58, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "white-dragon-wyrmling", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 10, - "ability_score_constitution": 14, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 2, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "White Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 32, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "wight", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Wight", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 45, - "type": "undead", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "will-o-wisp", - "fields": { - "ability_score_strength": 1, - "ability_score_dexterity": 28, - "ability_score_constitution": 10, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Will-o'-Wisp", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 19, - "hit_points": 22, - "type": "undead", - "category": "Monsters", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "wraith", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 16, - "ability_score_constitution": 16, - "ability_score_intelligence": 12, - "ability_score_wisdom": 14, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Wraith", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 67, - "type": "undead", - "category": "Monsters", - "alignment": "neutral evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "wyvern", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 12, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Wyvern", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 110, - "type": "dragon", - "category": "Monsters", - "alignment": "unaligned" - } -}, -{ - "model": "api_v2.creature", - "pk": "xorn", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Xorn", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 19, - "hit_points": 73, - "type": "elemental", - "category": "Monsters", - "alignment": "neutral" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-black-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 14, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Young Black Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 127, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-blue-dragon", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 10, - "ability_score_constitution": 19, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Young Blue Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 152, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-brass-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 5, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Young Brass Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 110, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-bronze-dragon", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 10, - "ability_score_constitution": 19, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 4, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Young Bronze Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 142, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-copper-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 12, - "ability_score_constitution": 17, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Young Copper Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 119, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-gold-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 14, - "ability_score_constitution": 21, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 5, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 9, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Young Gold Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 178, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-green-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 12, - "ability_score_constitution": 17, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Young Green Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 136, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-red-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 10, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Young Red Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 178, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-silver-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 10, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 6, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 6, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Young Silver Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 168, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } -}, -{ - "model": "api_v2.creature", - "pk": "young-white-dragon", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 18, - "ability_score_intelligence": 6, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Young White Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 133, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } -}, -{ - "model": "api_v2.creature", - "pk": "zombie", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 6, - "ability_score_constitution": 16, - "ability_score_intelligence": 3, - "ability_score_wisdom": 6, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 0, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Zombie", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 8, - "hit_points": 22, - "type": "undead", - "category": "Monsters; Zombies", - "alignment": "neutral evil" - } -} -] + { + "model": "api_v2.creature", + "pk": "srd_aboleth", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 9, + "ability_score_constitution": 15, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 6, + "saving_throw_intelligence": 8, + "saving_throw_wisdom": 6, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 12, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 10, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 20, + "name": "Aboleth", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 135, + "type": "aberration", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-black-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 14, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult Black Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 195, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-blue-dragon", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 23, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Blue Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 225, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-brass-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 10, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 7, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 8, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult Brass Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 172, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-bronze-dragon", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 23, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 7, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Bronze Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 212, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-copper-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 12, + "ability_score_constitution": 21, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 8, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Copper Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 184, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-gold-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 14, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 24, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 13, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 8, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 14, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 13, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 24, + "name": "Adult Gold Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 256, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-green-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 12, + "ability_score_constitution": 21, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 8, + "skill_bonus_history": null, + "skill_bonus_insight": 7, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 8, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Green Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 207, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-red-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 13, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 23, + "name": "Adult Red Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 256, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-silver-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 12, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 10, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 8, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 8, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult Silver Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 243, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_adult-white-dragon", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 8, + "ability_score_wisdom": 12, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult White Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 200, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_air-elemental", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 20, + "ability_score_constitution": 14, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Air Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 90, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-black-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 14, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 9, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 16, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 26, + "name": "Ancient Black Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 367, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-blue-dragon", + "fields": { + "ability_score_strength": 29, + "ability_score_dexterity": 10, + "ability_score_constitution": 27, + "ability_score_intelligence": 18, + "ability_score_wisdom": 17, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 15, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Blue Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 481, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-brass-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 10, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 9, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 14, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 10, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 24, + "name": "Ancient Brass Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 20, + "hit_points": 297, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-bronze-dragon", + "fields": { + "ability_score_strength": 29, + "ability_score_dexterity": 10, + "ability_score_constitution": 27, + "ability_score_intelligence": 18, + "ability_score_wisdom": 17, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 15, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 10, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Bronze Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 444, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-copper-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 12, + "ability_score_constitution": 25, + "ability_score_intelligence": 20, + "ability_score_wisdom": 17, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 11, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Copper Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 21, + "hit_points": 350, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-gold-dragon", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 14, + "ability_score_constitution": 29, + "ability_score_intelligence": 18, + "ability_score_wisdom": 17, + "ability_score_charisma": 28, + "saving_throw_strength": null, + "saving_throw_dexterity": 9, + "saving_throw_constitution": 16, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 16, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 10, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 16, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Gold Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 546, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-green-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 12, + "ability_score_constitution": 25, + "ability_score_intelligence": 20, + "ability_score_wisdom": 17, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 11, + "skill_bonus_history": null, + "skill_bonus_insight": 10, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 11, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Green Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 21, + "hit_points": 385, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-red-dragon", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 10, + "ability_score_constitution": 29, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 23, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 16, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 13, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 16, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 26, + "name": "Ancient Red Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 546, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-silver-dragon", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 10, + "ability_score_constitution": 29, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 23, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 16, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 13, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 11, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 11, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 16, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 26, + "name": "Ancient Silver Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 487, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ancient-white-dragon", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 10, + "ability_score_constitution": 26, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 13, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 23, + "name": "Ancient White Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 20, + "hit_points": 333, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_androsphinx", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 10, + "ability_score_constitution": 20, + "ability_score_intelligence": 16, + "ability_score_wisdom": 18, + "ability_score_charisma": 23, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 11, + "saving_throw_intelligence": 9, + "saving_throw_wisdom": 10, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 9, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 10, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": 15, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 20, + "name": "Androsphinx", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 199, + "type": "monstrosity", + "category": "Monsters; Sphinxes", + "alignment": "lawful neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_animated-armor", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 11, + "ability_score_constitution": 13, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Animated Armor", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 33, + "type": "construct", + "category": "Monsters; Animated Objects", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ankheg", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 11, + "ability_score_constitution": 13, + "ability_score_intelligence": 1, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Ankheg", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 39, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_azer", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 12, + "ability_score_constitution": 15, + "ability_score_intelligence": 12, + "ability_score_wisdom": 13, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Azer", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 39, + "type": "elemental", + "category": "Monsters", + "alignment": "lawful neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_balor", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 15, + "ability_score_constitution": 22, + "ability_score_intelligence": 20, + "ability_score_wisdom": 16, + "ability_score_charisma": 22, + "saving_throw_strength": 14, + "saving_throw_dexterity": null, + "saving_throw_constitution": 12, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Balor", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 262, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_barbed-devil", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 17, + "ability_score_constitution": 18, + "ability_score_intelligence": 12, + "ability_score_wisdom": 14, + "ability_score_charisma": 14, + "saving_throw_strength": 6, + "saving_throw_dexterity": null, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": 5, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Barbed Devil", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 110, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_basilisk", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 8, + "ability_score_constitution": 15, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Basilisk", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 52, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_bearded-devil", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 15, + "ability_score_constitution": 15, + "ability_score_intelligence": 9, + "ability_score_wisdom": 11, + "ability_score_charisma": 11, + "saving_throw_strength": 5, + "saving_throw_dexterity": null, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Bearded Devil", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 52, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_behir", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 7, + "ability_score_wisdom": 14, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Behir", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 17, + "hit_points": 168, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_black-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 13, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Black Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 33, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_black-pudding", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 5, + "ability_score_constitution": 16, + "ability_score_intelligence": 1, + "ability_score_wisdom": 6, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Black Pudding", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 7, + "hit_points": 85, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_blue-dragon-wyrmling", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Blue Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 52, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_bone-devil", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 5, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 7, + "skill_bonus_history": null, + "skill_bonus_insight": 6, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Bone Devil", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 142, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_brass-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Brass Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 16, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_bronze-dragon-wyrmling", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Bronze Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 32, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_bugbear", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 13, + "ability_score_intelligence": 8, + "ability_score_wisdom": 11, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": 2, + "passive_perception": 10, + "name": "Bugbear", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 27, + "type": "humanoid", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_bulette", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 11, + "ability_score_constitution": 21, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Bulette", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 94, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_camel", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 8, + "ability_score_constitution": 14, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 9, + "name": "Camel", + "document": "srd", + "size": "large", + "weight": "600.000", + "armor_class": 9, + "hit_points": 15, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_centaur", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 14, + "ability_score_intelligence": 9, + "ability_score_wisdom": 13, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 6, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": 3, + "passive_perception": 13, + "name": "Centaur", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 45, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_chain-devil", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 18, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Chain Devil", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 85, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_chimera", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 11, + "ability_score_constitution": 19, + "ability_score_intelligence": 3, + "ability_score_wisdom": 14, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Chimera", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 114, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_chuul", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 11, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Chuul", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 16, + "hit_points": 93, + "type": "aberration", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_clay-golem", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 9, + "ability_score_constitution": 18, + "ability_score_intelligence": 3, + "ability_score_wisdom": 8, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Clay Golem", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 133, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_cloaker", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 15, + "ability_score_constitution": 12, + "ability_score_intelligence": 13, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Cloaker", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 78, + "type": "aberration", + "category": "Monsters", + "alignment": "chaotic neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_cloud-giant", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 12, + "ability_score_wisdom": 16, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 7, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Cloud Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 14, + "hit_points": 200, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "neutral good (50%) or neutral evil (50%)" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_cockatrice", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 2, + "ability_score_wisdom": 13, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Cockatrice", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 27, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_copper-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Copper Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 22, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_couatl", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 20, + "ability_score_constitution": 17, + "ability_score_intelligence": 18, + "ability_score_wisdom": 20, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Couatl", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 19, + "hit_points": 97, + "type": "celestial", + "category": "Monsters", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_darkmantle", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Darkmantle", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 22, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_deva", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 18, + "ability_score_constitution": 18, + "ability_score_intelligence": 17, + "ability_score_wisdom": 20, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 9, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Deva", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 136, + "type": "celestial", + "category": "Monsters; Angels", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_djinni", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 15, + "ability_score_constitution": 22, + "ability_score_intelligence": 15, + "ability_score_wisdom": 16, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Djinni", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 161, + "type": "elemental", + "category": "Monsters; Genies", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_donkey", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Donkey", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 11, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_doppelganger", + "fields": { + "ability_score_strength": 11, + "ability_score_dexterity": 18, + "ability_score_constitution": 14, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 6, + "skill_bonus_history": null, + "skill_bonus_insight": 3, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Doppelganger", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 52, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_draft-horse", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 12, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Draft Horse", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 10, + "hit_points": 19, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_dragon-turtle", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 20, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Dragon Turtle", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 20, + "hit_points": 341, + "type": "dragon", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_dretch", + "fields": { + "ability_score_strength": 11, + "ability_score_dexterity": 11, + "ability_score_constitution": 12, + "ability_score_intelligence": 5, + "ability_score_wisdom": 8, + "ability_score_charisma": 3, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Dretch", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 18, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_drider", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Drider", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 123, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_dryad", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 12, + "ability_score_constitution": 11, + "ability_score_intelligence": 14, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Dryad", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 22, + "type": "fey", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_duergar", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 11, + "ability_score_constitution": 14, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Duergar", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 26, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_dust-mephit", + "fields": { + "ability_score_strength": 5, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 9, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Dust Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 12, + "hit_points": 17, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_earth-elemental", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 8, + "ability_score_constitution": 20, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Earth Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 126, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_efreeti", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 12, + "ability_score_constitution": 24, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 7, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Efreeti", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 200, + "type": "elemental", + "category": "Monsters; Genies", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_elephant", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 9, + "ability_score_constitution": 17, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 6, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Elephant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 12, + "hit_points": 76, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_elf-drow", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 11, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Elf, Drow", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 13, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_erinyes", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 14, + "ability_score_wisdom": 14, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Erinyes", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 153, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ettercap", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 15, + "ability_score_constitution": 13, + "ability_score_intelligence": 7, + "ability_score_wisdom": 12, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": 3, + "passive_perception": 13, + "name": "Ettercap", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 44, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ettin", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 8, + "ability_score_constitution": 17, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Ettin", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 85, + "type": "giant", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_fire-elemental", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 17, + "ability_score_constitution": 16, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Fire Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 102, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_fire-giant", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 9, + "ability_score_constitution": 23, + "ability_score_intelligence": 10, + "ability_score_wisdom": 14, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 11, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Fire Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 162, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_flesh-golem", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 9, + "ability_score_constitution": 18, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Flesh Golem", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 9, + "hit_points": 93, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_flying-sword", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 15, + "ability_score_constitution": 11, + "ability_score_intelligence": 1, + "ability_score_wisdom": 5, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 7, + "name": "Flying Sword", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 17, + "hit_points": 17, + "type": "construct", + "category": "Monsters; Animated Objects", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_frost-giant", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 9, + "ability_score_constitution": 21, + "ability_score_intelligence": 9, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 9, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Frost Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 15, + "hit_points": 138, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gargoyle", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 11, + "ability_score_constitution": 16, + "ability_score_intelligence": 6, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Gargoyle", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 52, + "type": "elemental", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gelatinous-cube", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 3, + "ability_score_constitution": 20, + "ability_score_intelligence": 1, + "ability_score_wisdom": 6, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Gelatinous Cube", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 6, + "hit_points": 84, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ghast", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 17, + "ability_score_constitution": 10, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Ghast", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 36, + "type": "undead", + "category": "Monsters; Ghouls", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ghost", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 13, + "ability_score_constitution": 10, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Ghost", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 45, + "type": "undead", + "category": "Monsters", + "alignment": "any alignment" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ghoul", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 15, + "ability_score_constitution": 10, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Ghoul", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 22, + "type": "undead", + "category": "Monsters; Ghouls", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gibbering-mouther", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 8, + "ability_score_constitution": 16, + "ability_score_intelligence": 3, + "ability_score_wisdom": 10, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Gibbering Mouther", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 9, + "hit_points": 67, + "type": "aberration", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_glabrezu", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 15, + "ability_score_constitution": 21, + "ability_score_intelligence": 19, + "ability_score_wisdom": 17, + "ability_score_charisma": 16, + "saving_throw_strength": 9, + "saving_throw_dexterity": null, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Glabrezu", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 157, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gnoll", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 12, + "ability_score_constitution": 11, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Gnoll", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 22, + "type": "humanoid", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gnome-deep-svirfneblin", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 14, + "ability_score_intelligence": 12, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": 3, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Gnome, Deep (Svirfneblin)", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 15, + "hit_points": 16, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_goblin", + "fields": { + "ability_score_strength": 8, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 10, + "ability_score_wisdom": 8, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Goblin", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 15, + "hit_points": 7, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gold-dragon-wyrmling", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 14, + "ability_score_constitution": 17, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Gold Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 60, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gorgon", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 11, + "ability_score_constitution": 18, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Gorgon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 114, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gray-ooze", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 6, + "ability_score_constitution": 16, + "ability_score_intelligence": 1, + "ability_score_wisdom": 6, + "ability_score_charisma": 2, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Gray Ooze", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 8, + "hit_points": 22, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_green-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Green Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 38, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_green-hag", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 12, + "ability_score_constitution": 16, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 3, + "skill_bonus_athletics": null, + "skill_bonus_deception": 4, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Green Hag", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 82, + "type": "fey", + "category": "Monsters; Hags", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_grick", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 14, + "ability_score_constitution": 11, + "ability_score_intelligence": 3, + "ability_score_wisdom": 14, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Grick", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 27, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_griffon", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 2, + "ability_score_wisdom": 13, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Griffon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 59, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_grimlock", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 9, + "ability_score_wisdom": 8, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 5, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Grimlock", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 11, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_guardian-naga", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 18, + "ability_score_constitution": 16, + "ability_score_intelligence": 16, + "ability_score_wisdom": 19, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 7, + "saving_throw_intelligence": 7, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Guardian Naga", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 127, + "type": "monstrosity", + "category": "Monsters; Nagas", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_gynosphinx", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 18, + "ability_score_wisdom": 18, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 12, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 12, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": 8, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Gynosphinx", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 136, + "type": "monstrosity", + "category": "Monsters; Sphinxes", + "alignment": "lawful neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_half-red-dragon-veteran", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 13, + "ability_score_constitution": 14, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 5, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Half-Red Dragon Veteran", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 65, + "type": "humanoid", + "category": "Monsters; Half-Dragon Template", + "alignment": "any alignment" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_harpy", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 13, + "ability_score_constitution": 12, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Harpy", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 38, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_hell-hound", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 12, + "ability_score_constitution": 14, + "ability_score_intelligence": 6, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Hell Hound", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 45, + "type": "fiend", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_hezrou", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 17, + "ability_score_constitution": 20, + "ability_score_intelligence": 5, + "ability_score_wisdom": 12, + "ability_score_charisma": 13, + "saving_throw_strength": 7, + "saving_throw_dexterity": null, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Hezrou", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 16, + "hit_points": 136, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_hill-giant", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 8, + "ability_score_constitution": 19, + "ability_score_intelligence": 5, + "ability_score_wisdom": 9, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Hill Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 13, + "hit_points": 105, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_hippogriff", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 13, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Hippogriff", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 11, + "hit_points": 19, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_hobgoblin", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 10, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Hobgoblin", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 11, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_homunculus", + "fields": { + "ability_score_strength": 4, + "ability_score_dexterity": 15, + "ability_score_constitution": 11, + "ability_score_intelligence": 10, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Homunculus", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 5, + "type": "construct", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_horned-devil", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 17, + "ability_score_constitution": 21, + "ability_score_intelligence": 12, + "ability_score_wisdom": 16, + "ability_score_charisma": 17, + "saving_throw_strength": 10, + "saving_throw_dexterity": 7, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Horned Devil", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 178, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_hydra", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 12, + "ability_score_constitution": 20, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Hydra", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 15, + "hit_points": 172, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ice-devil", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 14, + "ability_score_constitution": 18, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Ice Devil", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 180, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ice-mephit", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 13, + "ability_score_constitution": 10, + "ability_score_intelligence": 9, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Ice Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 21, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_imp", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 17, + "ability_score_constitution": 13, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 4, + "skill_bonus_history": null, + "skill_bonus_insight": 3, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 4, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Imp", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 10, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_invisible-stalker", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 19, + "ability_score_constitution": 14, + "ability_score_intelligence": 10, + "ability_score_wisdom": 15, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 10, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Invisible Stalker", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 104, + "type": "elemental", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_iron-golem", + "fields": { + "ability_score_strength": 24, + "ability_score_dexterity": 9, + "ability_score_constitution": 20, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Iron Golem", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 20, + "hit_points": 210, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_kobold", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 15, + "ability_score_constitution": 9, + "ability_score_intelligence": 8, + "ability_score_wisdom": 7, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Kobold", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 12, + "hit_points": 5, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_kraken", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 11, + "ability_score_constitution": 25, + "ability_score_intelligence": 22, + "ability_score_wisdom": 18, + "ability_score_charisma": 20, + "saving_throw_strength": 17, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 14, + "saving_throw_intelligence": 13, + "saving_throw_wisdom": 11, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Kraken", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 18, + "hit_points": 472, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_lamia", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 13, + "ability_score_constitution": 15, + "ability_score_intelligence": 14, + "ability_score_wisdom": 15, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 7, + "skill_bonus_history": null, + "skill_bonus_insight": 4, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Lamia", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 97, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_lemure", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 5, + "ability_score_constitution": 11, + "ability_score_intelligence": 1, + "ability_score_wisdom": 11, + "ability_score_charisma": 3, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Lemure", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 7, + "hit_points": 13, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_lich", + "fields": { + "ability_score_strength": 11, + "ability_score_dexterity": 16, + "ability_score_constitution": 16, + "ability_score_intelligence": 20, + "ability_score_wisdom": 14, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": 12, + "saving_throw_wisdom": 9, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 18, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 12, + "skill_bonus_insight": 9, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Lich", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 135, + "type": "undead", + "category": "Monsters", + "alignment": "any evil alignment" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_lizardfolk", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 7, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": 5, + "passive_perception": 13, + "name": "Lizardfolk", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 22, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_magma-mephit", + "fields": { + "ability_score_strength": 8, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Magma Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 22, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_magmin", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 15, + "ability_score_constitution": 12, + "ability_score_intelligence": 8, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Magmin", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 14, + "hit_points": 9, + "type": "elemental", + "category": "Monsters", + "alignment": "chaotic neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_manticore", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 16, + "ability_score_constitution": 17, + "ability_score_intelligence": 7, + "ability_score_wisdom": 12, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Manticore", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 68, + "type": "monstrosity", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_marilith", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 20, + "ability_score_constitution": 20, + "ability_score_intelligence": 18, + "ability_score_wisdom": 16, + "ability_score_charisma": 20, + "saving_throw_strength": 9, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 10, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Marilith", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 189, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_mastiff", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 14, + "ability_score_constitution": 12, + "ability_score_intelligence": 3, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 2, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 13, + "name": "Mastiff", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 5, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_medusa", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 12, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": 4, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Medusa", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 127, + "type": "monstrosity", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_merfolk", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 13, + "ability_score_constitution": 12, + "ability_score_intelligence": 11, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Merfolk", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 11, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_merrow", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 8, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Merrow", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 45, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_mimic", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 12, + "ability_score_constitution": 15, + "ability_score_intelligence": 5, + "ability_score_wisdom": 13, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Mimic", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 58, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_minotaur", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 11, + "ability_score_constitution": 16, + "ability_score_intelligence": 6, + "ability_score_wisdom": 16, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Minotaur", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 76, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_minotaur-skeleton", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 11, + "ability_score_constitution": 15, + "ability_score_intelligence": 6, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Minotaur Skeleton", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 67, + "type": "undead", + "category": "Monsters; Skeletons", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_mule", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Mule", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 11, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_mummy", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 8, + "ability_score_constitution": 15, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Mummy", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 58, + "type": "undead", + "category": "Monsters; Mummies", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_mummy-lord", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 11, + "ability_score_wisdom": 18, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 8, + "saving_throw_intelligence": 5, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 5, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": 5, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Mummy Lord", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 97, + "type": "undead", + "category": "Monsters; Mummies", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_nalfeshnee", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 19, + "ability_score_wisdom": 12, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 11, + "saving_throw_intelligence": 9, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Nalfeshnee", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 184, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_night-hag", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 16, + "ability_score_wisdom": 14, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 7, + "skill_bonus_history": null, + "skill_bonus_insight": 6, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Night Hag", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 112, + "type": "fiend", + "category": "Monsters; Hags", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_nightmare", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Nightmare", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 68, + "type": "fiend", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ochre-jelly", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 6, + "ability_score_constitution": 14, + "ability_score_intelligence": 2, + "ability_score_wisdom": 6, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Ochre Jelly", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 8, + "hit_points": 45, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ogre", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 8, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 7, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Ogre", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 11, + "hit_points": 59, + "type": "giant", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_ogre-zombie", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 6, + "ability_score_constitution": 18, + "ability_score_intelligence": 3, + "ability_score_wisdom": 6, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 0, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Ogre Zombie", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 8, + "hit_points": 85, + "type": "undead", + "category": "Monsters; Zombies", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_oni", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 11, + "ability_score_constitution": 16, + "ability_score_intelligence": 14, + "ability_score_wisdom": 12, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 5, + "skill_bonus_athletics": null, + "skill_bonus_deception": 8, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Oni", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 16, + "hit_points": 110, + "type": "giant", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_orc", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 12, + "ability_score_constitution": 16, + "ability_score_intelligence": 7, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": 2, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Orc", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 15, + "type": "humanoid", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_otyugh", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 11, + "ability_score_constitution": 19, + "ability_score_intelligence": 6, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Otyugh", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 114, + "type": "aberration", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_owlbear", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 12, + "ability_score_constitution": 17, + "ability_score_intelligence": 3, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Owlbear", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 59, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_pegasus", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 15, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Pegasus", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 59, + "type": "celestial", + "category": "Monsters", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_pit-fiend", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 14, + "ability_score_constitution": 24, + "ability_score_intelligence": 22, + "ability_score_wisdom": 18, + "ability_score_charisma": 24, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Pit Fiend", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 300, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_planetar", + "fields": { + "ability_score_strength": 24, + "ability_score_dexterity": 20, + "ability_score_constitution": 24, + "ability_score_intelligence": 19, + "ability_score_wisdom": 22, + "ability_score_charisma": 25, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 12, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 11, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Planetar", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 200, + "type": "celestial", + "category": "Monsters; Angels", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_plesiosaurus", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Plesiosaurus", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 68, + "type": "beast", + "category": "Monsters; Dinosaurs", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_pony", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Pony", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 11, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_pseudodragon", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 15, + "ability_score_constitution": 13, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Pseudodragon", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 7, + "type": "dragon", + "category": "Monsters", + "alignment": "neutral good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_purple-worm", + "fields": { + "ability_score_strength": 28, + "ability_score_dexterity": 7, + "ability_score_constitution": 22, + "ability_score_intelligence": 1, + "ability_score_wisdom": 8, + "ability_score_charisma": 4, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Purple Worm", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 18, + "hit_points": 247, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_quasit", + "fields": { + "ability_score_strength": 5, + "ability_score_dexterity": 17, + "ability_score_constitution": 10, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Quasit", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 7, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_rakshasa", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 17, + "ability_score_constitution": 18, + "ability_score_intelligence": 13, + "ability_score_wisdom": 16, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 10, + "skill_bonus_history": null, + "skill_bonus_insight": 8, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Rakshasa", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 110, + "type": "fiend", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_red-dragon-wyrmling", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Red Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 75, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_remorhaz", + "fields": { + "ability_score_strength": 24, + "ability_score_dexterity": 13, + "ability_score_constitution": 21, + "ability_score_intelligence": 4, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Remorhaz", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 17, + "hit_points": 195, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_riding-horse", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 10, + "ability_score_constitution": 12, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Riding Horse", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 10, + "hit_points": 13, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_roc", + "fields": { + "ability_score_strength": 28, + "ability_score_dexterity": 10, + "ability_score_constitution": 20, + "ability_score_intelligence": 3, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Roc", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 15, + "hit_points": 248, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_roper", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 8, + "ability_score_constitution": 17, + "ability_score_intelligence": 7, + "ability_score_wisdom": 16, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Roper", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 20, + "hit_points": 93, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_rug-of-smothering", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Rug of Smothering", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 33, + "type": "construct", + "category": "Monsters; Animated Objects", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_rust-monster", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Rust Monster", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 27, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_sahuagin", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 11, + "ability_score_constitution": 12, + "ability_score_intelligence": 12, + "ability_score_wisdom": 13, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Sahuagin", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 22, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_salamander", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 15, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Salamander", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 90, + "type": "elemental", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_satyr", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 16, + "ability_score_constitution": 11, + "ability_score_intelligence": 12, + "ability_score_wisdom": 10, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": 6, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Satyr", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 31, + "type": "fey", + "category": "Monsters", + "alignment": "chaotic neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_sea-hag", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 13, + "ability_score_constitution": 16, + "ability_score_intelligence": 12, + "ability_score_wisdom": 12, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Sea Hag", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 52, + "type": "fey", + "category": "Monsters; Hags", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_shadow", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 14, + "ability_score_constitution": 13, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Shadow", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 16, + "type": "undead", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_shambling-mound", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 8, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Shambling Mound", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 136, + "type": "plant", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_shield-guardian", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 8, + "ability_score_constitution": 18, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 3, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Shield Guardian", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 142, + "type": "construct", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_shrieker", + "fields": { + "ability_score_strength": 1, + "ability_score_dexterity": 1, + "ability_score_constitution": 10, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Shrieker", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 5, + "hit_points": 13, + "type": "plant", + "category": "Monsters; Fungi", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_silver-dragon-wyrmling", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Silver Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 45, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_skeleton", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 14, + "ability_score_constitution": 15, + "ability_score_intelligence": 6, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Skeleton", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 13, + "type": "undead", + "category": "Monsters; Skeletons", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_solar", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 22, + "ability_score_constitution": 26, + "ability_score_intelligence": 25, + "ability_score_wisdom": 25, + "ability_score_charisma": 30, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 14, + "saving_throw_wisdom": 14, + "saving_throw_charisma": 17, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 14, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 24, + "name": "Solar", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 21, + "hit_points": 243, + "type": "celestial", + "category": "Monsters; Angels", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_specter", + "fields": { + "ability_score_strength": 1, + "ability_score_dexterity": 14, + "ability_score_constitution": 11, + "ability_score_intelligence": 10, + "ability_score_wisdom": 10, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Specter", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 22, + "type": "undead", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_spirit-naga", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 17, + "ability_score_constitution": 14, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Spirit Naga", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 75, + "type": "monstrosity", + "category": "Monsters; Nagas", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_sprite", + "fields": { + "ability_score_strength": 3, + "ability_score_dexterity": 18, + "ability_score_constitution": 10, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Sprite", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 15, + "hit_points": 2, + "type": "fey", + "category": "Monsters", + "alignment": "neutral good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_steam-mephit", + "fields": { + "ability_score_strength": 5, + "ability_score_dexterity": 11, + "ability_score_constitution": 10, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Steam Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 10, + "hit_points": 21, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_stirge", + "fields": { + "ability_score_strength": 4, + "ability_score_dexterity": 16, + "ability_score_constitution": 11, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Stirge", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 14, + "hit_points": 2, + "type": "beast", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_stone-giant", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 15, + "ability_score_constitution": 20, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 12, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Stone Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 17, + "hit_points": 126, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_stone-golem", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 9, + "ability_score_constitution": 20, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Stone Golem", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 178, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_storm-giant", + "fields": { + "ability_score_strength": 29, + "ability_score_dexterity": 14, + "ability_score_constitution": 20, + "ability_score_intelligence": 16, + "ability_score_wisdom": 18, + "ability_score_charisma": 18, + "saving_throw_strength": 14, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 8, + "skill_bonus_athletics": 14, + "skill_bonus_deception": null, + "skill_bonus_history": 8, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Storm Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 16, + "hit_points": 230, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_succubusincubus", + "fields": { + "ability_score_strength": 8, + "ability_score_dexterity": 17, + "ability_score_constitution": 13, + "ability_score_intelligence": 15, + "ability_score_wisdom": 12, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 9, + "skill_bonus_history": null, + "skill_bonus_insight": 5, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 9, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Succubus/Incubus", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 66, + "type": "fiend", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_tarrasque", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 11, + "ability_score_constitution": 30, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 5, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Tarrasque", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 25, + "hit_points": 676, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_treant", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 8, + "ability_score_constitution": 21, + "ability_score_intelligence": 12, + "ability_score_wisdom": 16, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Treant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 16, + "hit_points": 138, + "type": "plant", + "category": "Monsters", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_triceratops", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 9, + "ability_score_constitution": 17, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Triceratops", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 13, + "hit_points": 95, + "type": "beast", + "category": "Monsters; Dinosaurs", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_troll", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 13, + "ability_score_constitution": 20, + "ability_score_intelligence": 7, + "ability_score_wisdom": 9, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Troll", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 84, + "type": "giant", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_tyrannosaurus-rex", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 19, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Tyrannosaurus Rex", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 13, + "hit_points": 136, + "type": "beast", + "category": "Monsters; Dinosaurs", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_unicorn", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 15, + "ability_score_intelligence": 11, + "ability_score_wisdom": 17, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Unicorn", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 67, + "type": "celestial", + "category": "Monsters", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_vampire", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 18, + "ability_score_constitution": 18, + "ability_score_intelligence": 17, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 9, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Vampire", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 144, + "type": "undead", + "category": "Monsters; Vampires", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_vampire-spawn", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 16, + "ability_score_constitution": 16, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Vampire Spawn", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 82, + "type": "undead", + "category": "Monsters; Vampires", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_violet-fungus", + "fields": { + "ability_score_strength": 3, + "ability_score_dexterity": 1, + "ability_score_constitution": 10, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Violet Fungus", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 5, + "hit_points": 18, + "type": "plant", + "category": "Monsters; Fungi", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_vrock", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 15, + "ability_score_constitution": 18, + "ability_score_intelligence": 8, + "ability_score_wisdom": 13, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 2, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Vrock", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 104, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_warhorse", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 11, + "name": "Warhorse", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 11, + "hit_points": 19, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_warhorse-skeleton", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 12, + "ability_score_constitution": 15, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Warhorse Skeleton", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 22, + "type": "undead", + "category": "Monsters; Skeletons", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_water-elemental", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 18, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Water Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 114, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_werebear", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Werebear", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 135, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "neutral good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_wereboar", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Wereboar", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 78, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_wererat", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 15, + "ability_score_constitution": 12, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Wererat", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 33, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_weretiger", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Weretiger", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 120, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_werewolf", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 13, + "ability_score_constitution": 14, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Werewolf", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 58, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_white-dragon-wyrmling", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 10, + "ability_score_constitution": 14, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 2, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "White Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 32, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_wight", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Wight", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 45, + "type": "undead", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_will-o-wisp", + "fields": { + "ability_score_strength": 1, + "ability_score_dexterity": 28, + "ability_score_constitution": 10, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Will-o'-Wisp", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 19, + "hit_points": 22, + "type": "undead", + "category": "Monsters", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_wraith", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 16, + "ability_score_constitution": 16, + "ability_score_intelligence": 12, + "ability_score_wisdom": 14, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Wraith", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 67, + "type": "undead", + "category": "Monsters", + "alignment": "neutral evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_wyvern", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 12, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Wyvern", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 110, + "type": "dragon", + "category": "Monsters", + "alignment": "unaligned" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_xorn", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Xorn", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 19, + "hit_points": 73, + "type": "elemental", + "category": "Monsters", + "alignment": "neutral" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-black-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 14, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Young Black Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 127, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-blue-dragon", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 10, + "ability_score_constitution": 19, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Young Blue Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 152, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-brass-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 5, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Young Brass Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 110, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-bronze-dragon", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 10, + "ability_score_constitution": 19, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 4, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Young Bronze Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 142, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-copper-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 12, + "ability_score_constitution": 17, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Young Copper Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 119, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-gold-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 14, + "ability_score_constitution": 21, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 5, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 9, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Young Gold Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 178, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-green-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 12, + "ability_score_constitution": 17, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Young Green Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 136, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-red-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 10, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Young Red Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 178, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-silver-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 10, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 6, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 6, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Young Silver Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 168, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_young-white-dragon", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 18, + "ability_score_intelligence": 6, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Young White Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 133, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } + }, + { + "model": "api_v2.creature", + "pk": "srd_zombie", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 6, + "ability_score_constitution": 16, + "ability_score_intelligence": 3, + "ability_score_wisdom": 6, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 0, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Zombie", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 8, + "hit_points": 22, + "type": "undead", + "category": "Monsters; Zombies", + "alignment": "neutral evil" + } + } +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/CreatureAction.json b/data/v2/wizards-of-the-coast/srd/CreatureAction.json index 5f8421a2..83cd1d0e 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureAction.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureAction.json @@ -1,7108 +1,7108 @@ [ -{ - "model": "api_v2.creatureaction", - "pk": "aboleth_enslave", - "fields": { - "name": "Enslave", - "desc": "The aboleth targets one creature it can see within 30 feet of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the aboleth until the aboleth dies or until it is on a different plane of existence from the target. The charmed target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.\n\nWhenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.\n", - "parent": "aboleth", - "uses_type": "PER_DAY", - "uses_param": 3 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "aboleth_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The aboleth makes three tentacle attacks.\n", - "parent": "aboleth", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "aboleth_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) bludgeoning damage.\n", - "parent": "aboleth", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "aboleth_tentacle", - "fields": { - "name": "Tentacle", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 14 Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.\n", - "parent": "aboleth", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-black-dragon_acid-breath", - "fields": { - "name": "Acid Breath", - "desc": "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "adult-black-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-black-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) acid damage.\n", - "parent": "adult-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-black-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "adult-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-black-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-black-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-black-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "adult-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-blue-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage plus 5 (1d10) lightning damage.\n", - "parent": "adult-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-blue-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", - "parent": "adult-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-blue-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-blue-dragon_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "adult-blue-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-blue-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-blue-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", - "parent": "adult-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-brass-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "parent": "adult-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-brass-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "parent": "adult-brass-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-brass-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "adult-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-brass-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-brass-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-brass-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "adult-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage.\n", - "parent": "adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", - "parent": "adult-bronze-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", - "parent": "adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-bronze-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", - "parent": "adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-copper-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "parent": "adult-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-copper-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "parent": "adult-copper-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-copper-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "adult-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-copper-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-copper-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-copper-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "adult-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "parent": "adult-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "adult-gold-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "adult-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "adult-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-gold-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "adult-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-green-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 7 (2d6) poison damage.\n", - "parent": "adult-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-green-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "adult-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-green-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-green-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-green-dragon_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "adult-green-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-green-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "adult-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-red-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 7 (2d6) fire damage.\n", - "parent": "adult-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-red-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "adult-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-red-dragon_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 63 (18d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "adult-red-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-red-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-red-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-red-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "adult-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "parent": "adult-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "adult-silver-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "adult-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "adult-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-silver-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "adult-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-white-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) cold damage.\n", - "parent": "adult-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-white-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "adult-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-white-dragon_cold-breath", - "fields": { - "name": "Cold Breath", - "desc": "The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "adult-white-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-white-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 14 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "adult-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-white-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "adult-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "adult-white-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "adult-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "air-elemental_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The elemental makes two slam attacks.\n", - "parent": "air-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "air-elemental_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", - "parent": "air-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "air-elemental_whirlwind", - "fields": { - "name": "Whirlwind", - "desc": "Each creature in the elemental's space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked prone. If a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone.\n\nIf the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.\n", - "parent": "air-elemental", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 4 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-black-dragon_acid-breath", - "fields": { - "name": "Acid Breath", - "desc": "The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ancient-black-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-black-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) acid damage.\n", - "parent": "ancient-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-black-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "ancient-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-black-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-black-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-black-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "ancient-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-blue-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage plus 11 (2d10) lightning damage.\n", - "parent": "ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-blue-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", - "parent": "ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-blue-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-blue-dragon_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ancient-blue-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-blue-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-blue-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", - "parent": "ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "parent": "ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons:\n\nFire Breath. The dragon exhales fire in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "parent": "ancient-brass-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-brass-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage.\n", - "parent": "ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", - "parent": "ancient-bronze-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", - "parent": "ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-bronze-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", - "parent": "ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "parent": "ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "parent": "ancient-copper-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-copper-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", - "parent": "ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "ancient-gold-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "parent": "ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 24 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-gold-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "parent": "ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-green-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 10 (3d6) poison damage.\n", - "parent": "ancient-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-green-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 22 (4d6 + 8) slashing damage.\n", - "parent": "ancient-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-green-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-green-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-green-dragon_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 77 (22d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ancient-green-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-green-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "ancient-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-red-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage plus 14 (4d6) fire damage.\n", - "parent": "ancient-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-red-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "parent": "ancient-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-red-dragon_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 91 (26d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ancient-red-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-red-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-red-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-red-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "parent": "ancient-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", - "parent": "ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "ancient-silver-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "parent": "ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-silver-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "parent": "ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-white-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) cold damage.\n", - "parent": "ancient-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-white-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "ancient-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-white-dragon_cold-breath", - "fields": { - "name": "Cold Breath", - "desc": "The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 72 (16d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ancient-white-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-white-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "ancient-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-white-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "ancient-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ancient-white-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "ancient-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "androsphinx_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 17 (2d10 + 6) slashing damage.\n", - "parent": "androsphinx", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "androsphinx_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The sphinx makes two claw attacks.\n", - "parent": "androsphinx", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "androsphinx_roar", - "fields": { - "name": "Roar", - "desc": "The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.\n\nFirst Roar. Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nSecond Roar. Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThird Roar. Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.\n", - "parent": "androsphinx", - "uses_type": "PER_DAY", - "uses_param": 3 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "animated-armor_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The armor makes two melee attacks.\n", - "parent": "animated-armor", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "animated-armor_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", - "parent": "animated-armor", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ankheg_acid-spray", - "fields": { - "name": "Acid Spray", - "desc": "The ankheg spits acid in a line that is 30 feet long and 5 feet wide, provided that it has no creature grappled. Each creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ankheg", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ankheg_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage. If the target is a Large or smaller creature, it is grappled (escape DC 13). Until this grapple ends, the ankheg can bite only the grappled creature and has advantage on attack rolls to do so.\n", - "parent": "ankheg", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "azer_warhammer", - "fields": { - "name": "Warhammer", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", - "parent": "azer", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "balor_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) slashing damage plus 13 (3d8) lightning damage. If the balor scores a critical hit, it rolls damage dice three times, instead of twice.\n", - "parent": "balor", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "balor_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The balor makes two attacks: one with its longsword and one with its whip.\n", - "parent": "balor", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "balor_teleport", - "fields": { - "name": "Teleport", - "desc": "The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "parent": "balor", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "balor_whip", - "fields": { - "name": "Whip", - "desc": "Melee Weapon Attack: +14 to hit, reach 30 ft., one target. Hit: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage, and the target must succeed on a DC 20 Strength saving throw or be pulled up to 25 feet toward the balor.\n", - "parent": "balor", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "barbed-devil_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "barbed-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "barbed-devil_hurl-flame", - "fields": { - "name": "Hurl Flame", - "desc": "Ranged Spell Attack: +5 to hit, range 150 ft., one target. Hit: 10 (3d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", - "parent": "barbed-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "barbed-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice.\n", - "parent": "barbed-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "barbed-devil_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", - "parent": "barbed-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "basilisk_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage.\n", - "parent": "basilisk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bearded-devil_beard", - "fields": { - "name": "Beard", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. While poisoned in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "bearded-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bearded-devil_glaive", - "fields": { - "name": "Glaive", - "desc": "Melee Weapon Attack: +5 to hit, reach 10 ft., one target. Hit: 8 (1d10 + 3) slashing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 12 Constitution saving throw or lose 5 (1d10) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 (1d10). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", - "parent": "bearded-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bearded-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes two attacks: one with its beard and one with its glaive.\n", - "parent": "bearded-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "behir_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 22 (3d10 + 6) piercing damage.\n", - "parent": "behir", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "behir_constrict", - "fields": { - "name": "Constrict", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one Large or smaller creature. Hit: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage. The target is grappled (escape DC 16) if the behir isn't already constricting a creature, and the target is restrained until this grapple ends.\n", - "parent": "behir", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "behir_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The behir exhales a line of lightning that is 20 feet long and 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "behir", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "behir_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The behir makes two attacks: one with its bite and one to constrict.\n", - "parent": "behir", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "behir_swallow", - "fields": { - "name": "Swallow", - "desc": "The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the behir, and it takes 21 (6d6) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.\n\nIf the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 feet of the behir. If the behir dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 feet of movement, exiting prone.\n", - "parent": "behir", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "black-dragon-wyrmling_acid-breath", - "fields": { - "name": "Acid Breath", - "desc": "The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "black-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "black-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage.\n", - "parent": "black-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "black-pudding_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", - "parent": "black-pudding", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "blue-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage.\n", - "parent": "blue-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "blue-dragon-wyrmling_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "blue-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bone-devil_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", - "parent": "bone-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bone-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes three attacks: two with its claws and one with its sting.\n", - "parent": "bone-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bone-devil_sting", - "fields": { - "name": "Sting", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage, and the target must succeed on a DC 14 Constitution saving throw or become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "bone-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "brass-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", - "parent": "brass-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "brass-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "parent": "brass-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bronze-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", - "parent": "bronze-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bronze-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.\n", - "parent": "bronze-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bugbear_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at range.\n", - "parent": "bugbear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bugbear_morningstar", - "fields": { - "name": "Morningstar", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 11 (2d8 + 2) piercing damage.\n", - "parent": "bugbear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bulette_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 30 (4d12 + 4) piercing damage.\n", - "parent": "bulette", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "bulette_deadly-leap", - "fields": { - "name": "Deadly Leap", - "desc": "If the bulette jumps at least 15 feet as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 feet out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the bulette's space.\n", - "parent": "bulette", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "centaur_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "centaur", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "centaur_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "parent": "centaur", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "centaur_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow.\n", - "parent": "centaur", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "centaur_pike", - "fields": { - "name": "Pike", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "parent": "centaur", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chain-devil_animate-chains", - "fields": { - "name": "Animate Chains", - "desc": "Up to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.\n\nEach animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is incapacitated or dies.\n", - "parent": "chain-devil", - "uses_type": "RECHARGE_AFTER_REST", - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chain-devil_chain", - "fields": { - "name": "Chain", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) slashing damage. The target is grappled (escape DC 14) if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained and takes 7 (2d6) piercing damage at the start of each of its turns.\n", - "parent": "chain-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chain-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes two attacks with its chains.\n", - "parent": "chain-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chimera_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", - "parent": "chimera", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chimera_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "chimera", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chimera_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 31 (7d8) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "chimera", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chimera_horns", - "fields": { - "name": "Horns", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) bludgeoning damage.\n", - "parent": "chimera", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chimera_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns.\n", - "parent": "chimera", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chuul_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once.\n", - "parent": "chuul", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chuul_pincer", - "fields": { - "name": "Pincer", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage. The target is grappled (escape DC 14) if it is a Large or smaller creature and the chuul doesn't have two other creatures grappled.\n", - "parent": "chuul", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "chuul_tentacles", - "fields": { - "name": "Tentacles", - "desc": "One creature grappled by the chuul must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. Until this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "chuul", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "clay-golem_haste", - "fields": { - "name": "Haste", - "desc": "Until the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action.\n", - "parent": "clay-golem", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "clay-golem_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The golem makes two slam attacks.\n", - "parent": "clay-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "clay-golem_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the greater restoration spell or other magic.\n", - "parent": "clay-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloaker_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 10 (2d6 + 3) piercing damage, and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is blinded and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a DC 16 Strength check.\n", - "parent": "cloaker", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloaker_moan", - "fields": { - "name": "Moan", - "desc": "Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the cloaker's next turn. If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours\n", - "parent": "cloaker", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloaker_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The cloaker makes two attacks: one with its bite and one with its tail.\n", - "parent": "cloaker", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloaker_phantasms", - "fields": { - "name": "Phantasms", - "desc": "The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.\n\nWhenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.\n\nA duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.\n", - "parent": "cloaker", - "uses_type": "RECHARGE_AFTER_REST", - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloaker_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one creature. Hit: 7 (1d8 + 3) slashing damage.\n", - "parent": "cloaker", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloud-giant_morningstar", - "fields": { - "name": "Morningstar", - "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) piercing damage.\n", - "parent": "cloud-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloud-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two morningstar attacks.\n", - "parent": "cloud-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cloud-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +12 to hit, range 60/240 ft., one target. Hit: 30 (4d10 + 8) bludgeoning damage.\n", - "parent": "cloud-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "cockatrice_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) piercing damage, and the target must succeed on a DC 11 Constitution saving throw against being magically petrified. On a failed save, the creature begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified for 24 hours.\n", - "parent": "cockatrice", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "copper-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", - "parent": "copper-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "copper-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "parent": "copper-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "couatl_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one creature. Hit: 8 (1d6 + 5) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 24 hours. Until this poison ends, the target is unconscious. Another creature can use an action to shake the target awake.\n", - "parent": "couatl", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "couatl_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).\n\nIn a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form.\n", - "parent": "couatl", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "couatl_constrict", - "fields": { - "name": "Constrict", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one Medium or smaller creature. Hit: 10 (2d6 + 3) bludgeoning damage, and the target is grappled (escape DC 15). Until this grapple ends, the target is restrained, and the couatl can't constrict another target.\n", - "parent": "couatl", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "darkmantle_crush", - "fields": { - "name": "Crush", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d6 + 3) bludgeoning damage, and the darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also blinded and unable to breathe while the darkmantle is attached in this way.\n\nWhile attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.\n\nA creature can detach the darkmantle by making a successful DC 13 Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement.\n", - "parent": "darkmantle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "darkmantle_darkness-aura", - "fields": { - "name": "Darkness Aura", - "desc": "A 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains concentration, up to 10 minutes (as if concentrating on a spell). Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.\n", - "parent": "darkmantle", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "deva_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).\n\nIn a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks.\n", - "parent": "deva", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "deva_healing-touch", - "fields": { - "name": "Healing Touch", - "desc": "The deva touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "parent": "deva", - "uses_type": "PER_DAY", - "uses_param": 3 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "deva_mace", - "fields": { - "name": "Mace", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage.\n", - "parent": "deva", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "deva_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The deva makes two melee attacks.\n", - "parent": "deva", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "djinni_create-whirlwind", - "fields": { - "name": "Create Whirlwind", - "desc": "A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains concentration (as if concentrating on a spell). Any creature but the djinni that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.\n\nA creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.\n", - "parent": "djinni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "djinni_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The djinni makes three scimitar attacks.\n", - "parent": "djinni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "djinni_scimitar", - "fields": { - "name": "Scimitar", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (djinni's choice).\n", - "parent": "djinni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "doppelganger_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The doppelganger makes two melee attacks.\n", - "parent": "doppelganger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "doppelganger_read-thoughts", - "fields": { - "name": "Read Thoughts", - "desc": "The doppelganger magically reads the surface thoughts of one creature within 60 feet of it. The effect can penetrate barriers, but 3 feet of wood or dirt, 2 feet of stone, 2 inches of metal, or a thin sheet of lead blocks it. While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.\n", - "parent": "doppelganger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "doppelganger_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage.\n", - "parent": "doppelganger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dragon-turtle_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) piercing damage.\n", - "parent": "dragon-turtle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dragon-turtle_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 16 (2d8 + 7) slashing damage.\n", - "parent": "dragon-turtle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dragon-turtle_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks.\n", - "parent": "dragon-turtle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dragon-turtle_steam-breath", - "fields": { - "name": "Steam Breath", - "desc": "The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage.\n", - "parent": "dragon-turtle", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dragon-turtle_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked prone.\n", - "parent": "dragon-turtle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dretch_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 3 (1d6) piercing damage.\n", - "parent": "dretch", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dretch_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 5 (2d4) slashing damage.\n", - "parent": "dretch", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dretch_fetid-cloud", - "fields": { - "name": "Fetid Cloud", - "desc": "A 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it. Any creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions.\n", - "parent": "dretch", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dretch_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dretch makes two attacks: one with its bite and one with its claws.\n", - "parent": "dretch", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "drider_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 2 (1d4) piercing damage plus 9 (2d8) poison damage.\n", - "parent": "drider", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "drider_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +6 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage.\n", - "parent": "drider", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "drider_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", - "parent": "drider", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "drider_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack.\n", - "parent": "drider", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dryad_club", - "fields": { - "name": "Club", - "desc": "Melee Weapon Attack: +2 to hit (+6 to hit with shillelagh), reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with shillelagh.\n", - "parent": "dryad", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dryad_fey-charm", - "fields": { - "name": "Fey Charm", - "desc": "The dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a DC 14 Wisdom saving throw or be magically charmed. The charmed creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.\n\nEach time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.\n\nThe dryad can have no more than one humanoid and up to three beasts charmed at a time.\n", - "parent": "dryad", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "duergar_enlarge", - "fields": { - "name": "Enlarge", - "desc": "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available.\n", - "parent": "duergar", - "uses_type": "RECHARGE_AFTER_REST", - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "duergar_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The duergar magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell). Any equipment the duergar wears or carries is invisible with it.\n", - "parent": "duergar", - "uses_type": "RECHARGE_AFTER_REST", - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "duergar_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarged.\n", - "parent": "duergar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "duergar_war-pick", - "fields": { - "name": "War Pick", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage, or 11 (2d8 + 2) piercing damage while enlarged.\n", - "parent": "duergar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dust-mephit_blinding-breath", - "fields": { - "name": "Blinding Breath", - "desc": "The mephit exhales a 15-foot cone of blinding dust. Each creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "dust-mephit", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "dust-mephit_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) slashing damage.\n", - "parent": "dust-mephit", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "earth-elemental_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The elemental makes two slam attacks.\n", - "parent": "earth-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "earth-elemental_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", - "parent": "earth-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "efreeti_hurl-flame", - "fields": { - "name": "Hurl Flame", - "desc": "Ranged Spell Attack: +7 to hit, range 120 ft., one target. Hit: 17 (5d6) fire damage.\n", - "parent": "efreeti", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "efreeti_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The efreeti makes two scimitar attacks or uses its Hurl Flame twice.\n", - "parent": "efreeti", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "efreeti_scimitar", - "fields": { - "name": "Scimitar", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage plus 7 (2d6) fire damage.\n", - "parent": "efreeti", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "elf-drow_hand-crossbow", - "fields": { - "name": "Hand Crossbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake.\n", - "parent": "elf-drow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "elf-drow_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "elf-drow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "erinyes_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +7 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 13 (3d8) poison damage, and the target must succeed on a DC 14 Constitution saving throw or be poisoned. The poison lasts until it is removed by the lesser restoration spell or similar magic.\n", - "parent": "erinyes", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "erinyes_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands, plus 13 (3d8) poison damage.\n", - "parent": "erinyes", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "erinyes_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The erinyes makes three attacks.\n", - "parent": "erinyes", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettercap_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage plus 4 (1d8) poison damage. The target must succeed on a DC 11 Constitution saving throw or be poisoned for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "ettercap", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettercap_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.\n", - "parent": "ettercap", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettercap_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The ettercap makes two attacks: one with its bite and one with its claws.\n", - "parent": "ettercap", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettercap_web", - "fields": { - "name": "Web", - "desc": "Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing. As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect also ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, vulnerability to fire damage, and immunity to bludgeoning, poison, and psychic damage.\n", - "parent": "ettercap", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettin_battleaxe", - "fields": { - "name": "Battleaxe", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", - "parent": "ettin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettin_morningstar", - "fields": { - "name": "Morningstar", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) piercing damage.\n", - "parent": "ettin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ettin_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The ettin makes two attacks: one with its battleaxe and one with its morningstar.\n", - "parent": "ettin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "fire-elemental_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The elemental makes two touch attacks.\n", - "parent": "fire-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "fire-elemental_touch", - "fields": { - "name": "Touch", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 (1d10) fire damage at the start of each of its turns.\n", - "parent": "fire-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "fire-giant_greatsword", - "fields": { - "name": "Greatsword", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 28 (6d6 + 7) slashing damage.\n", - "parent": "fire-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "fire-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greatsword attacks.\n", - "parent": "fire-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "fire-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +11 to hit, range 60/240 ft., one target. Hit: 29 (4d10 + 7) bludgeoning damage.\n", - "parent": "fire-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "flesh-golem_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The golem makes two slam attacks.\n", - "parent": "flesh-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "flesh-golem_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "flesh-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "flying-sword_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage.\n", - "parent": "flying-sword", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "frost-giant_greataxe", - "fields": { - "name": "Greataxe", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 25 (3d12 + 6) slashing damage.\n", - "parent": "frost-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "frost-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greataxe attacks.\n", - "parent": "frost-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "frost-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", - "parent": "frost-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gargoyle_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "gargoyle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gargoyle_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", - "parent": "gargoyle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gargoyle_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The gargoyle makes two attacks: one with its bite and one with its claws.\n", - "parent": "gargoyle", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gelatinous-cube_engulf", - "fields": { - "name": "Engulf", - "desc": "The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a DC 12 Dexterity saving throw.\n\nOn a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.\n\nOn a failed save, the cube enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.\n\nAn engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube.\n", - "parent": "gelatinous-cube", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gelatinous-cube_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) acid damage.\n", - "parent": "gelatinous-cube", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghast_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 12 (2d8 + 3) piercing damage.\n", - "parent": "ghast", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghast_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a creature other than an undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "ghast", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghost_etherealness", - "fields": { - "name": "Etherealness", - "desc": "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.\n", - "parent": "ghost", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghost_horrifying-visage", - "fields": { - "name": "Horrifying Visage", - "desc": "Each non-undead creature within 60 feet of the ghost that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 × 10 years. A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.\n", - "parent": "ghost", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghost_possession", - "fields": { - "name": "Possession", - "desc": "One humanoid that the ghost can see within 5 feet of it must succeed on a DC 13 Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is incapacitated and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.\n\nThe possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends.\n", - "parent": "ghost", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghost_withering-touch", - "fields": { - "name": "Withering Touch", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 17 (4d6 + 3) necrotic damage.\n", - "parent": "ghost", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghoul_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) piercing damage.\n", - "parent": "ghoul", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ghoul_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "ghoul", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gibbering-mouther_bites", - "fields": { - "name": "Bites", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 17 (5d6) piercing damage. If the target is Medium or smaller, it must succeed on a DC 10 Strength saving throw or be knocked prone. If the target is killed by this damage, it is absorbed into the mouther.\n", - "parent": "gibbering-mouther", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gibbering-mouther_blinding-spittle", - "fields": { - "name": "Blinding Spittle", - "desc": "The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the mouther's next turn.\n", - "parent": "gibbering-mouther", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gibbering-mouther_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle.\n", - "parent": "gibbering-mouther", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "glabrezu_fist", - "fields": { - "name": "Fist", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.\n", - "parent": "glabrezu", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "glabrezu_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell.\n", - "parent": "glabrezu", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "glabrezu_pincer", - "fields": { - "name": "Pincer", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a Medium or smaller creature, it is grappled (escape DC 15). The glabrezu has two pincers, each of which can grapple only one target.\n", - "parent": "glabrezu", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gnoll_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\n", - "parent": "gnoll", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gnoll_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "parent": "gnoll", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gnoll_spear", - "fields": { - "name": "Spear", - "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", - "parent": "gnoll", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gnome-deep-svirfneblin_poisoned-dart", - "fields": { - "name": "Poisoned Dart", - "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "gnome-deep-svirfneblin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gnome-deep-svirfneblin_war-pick", - "fields": { - "name": "War Pick", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "parent": "gnome-deep-svirfneblin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "goblin_scimitar", - "fields": { - "name": "Scimitar", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", - "parent": "goblin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "goblin_shortbow", - "fields": { - "name": "Shortbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "goblin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gold-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "parent": "gold-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gold-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "gold-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gorgon_gore", - "fields": { - "name": "Gore", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 18 (2d12 + 5) piercing damage.\n", - "parent": "gorgon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gorgon_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.\n", - "parent": "gorgon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gorgon_petrifying-breath", - "fields": { - "name": "Petrifying Breath", - "desc": "The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw. On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.\n", - "parent": "gorgon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gray-ooze_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage, and if the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", - "parent": "gray-ooze", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "green-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage.\n", - "parent": "green-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "green-dragon-wyrmling_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 11 Constitution saving throw, taking 21 (6d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "green-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "green-hag_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "green-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "green-hag_illusory-appearance", - "fields": { - "name": "Illusory Appearance", - "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the hag is disguised.\n", - "parent": "green-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "green-hag_invisible-passage", - "fields": { - "name": "Invisible Passage", - "desc": "The hag magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.\n", - "parent": "green-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "grick_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "grick", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "grick_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target.\n", - "parent": "grick", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "grick_tentacles", - "fields": { - "name": "Tentacles", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.\n", - "parent": "grick", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "griffon_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "parent": "griffon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "griffon_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "griffon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "griffon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The griffon makes two attacks: one with its beak and one with its claws.\n", - "parent": "griffon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "grimlock_spiked-bone-club", - "fields": { - "name": "Spiked Bone Club", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage.\n", - "parent": "grimlock", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "guardian-naga_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one creature. Hit: 8 (1d8 + 4) piercing damage, and the target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "guardian-naga", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "guardian-naga_spit-poison", - "fields": { - "name": "Spit Poison", - "desc": "Ranged Weapon Attack: +8 to hit, range 15/30 ft., one creature. Hit: The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "guardian-naga", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gynosphinx_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "gynosphinx", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "gynosphinx_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The sphinx makes two claw attacks.\n", - "parent": "gynosphinx", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "half-red-dragon-veteran_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The veteran exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "half-red-dragon-veteran", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "half-red-dragon-veteran_heavy-crossbow", - "fields": { - "name": "Heavy Crossbow", - "desc": "Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.\n", - "parent": "half-red-dragon-veteran", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "half-red-dragon-veteran_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", - "parent": "half-red-dragon-veteran", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "half-red-dragon-veteran_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.\n", - "parent": "half-red-dragon-veteran", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "half-red-dragon-veteran_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "half-red-dragon-veteran", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "harpy_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.\n", - "parent": "harpy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "harpy_club", - "fields": { - "name": "Club", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.\n", - "parent": "harpy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "harpy_luring-song", - "fields": { - "name": "Luring Song", - "desc": "The harpy sings a magical melody. Every humanoid and giant within 300 feet of the harpy that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is incapacitated.\n\nWhile charmed by the harpy, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.\n\nA target that successfully saves is immune to this harpy's song for the next 24 hours.\n", - "parent": "harpy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "harpy_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The harpy makes two attacks: one with its claws and one with its club.\n", - "parent": "harpy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hell-hound_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 7 (2d6) fire damage.\n", - "parent": "hell-hound", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hell-hound_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The hound exhales fire in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "hell-hound", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hezrou_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "parent": "hezrou", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hezrou_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "hezrou", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hezrou_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The hezrou makes three attacks: one with its bite and two with its claws.\n", - "parent": "hezrou", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hill-giant_greatclub", - "fields": { - "name": "Greatclub", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 18 (3d8 + 5) bludgeoning damage.\n", - "parent": "hill-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hill-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greatclub attacks.\n", - "parent": "hill-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hill-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +8 to hit, range 60/240 ft., one target. Hit: 21 (3d10 + 5) bludgeoning damage.\n", - "parent": "hill-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hippogriff_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", - "parent": "hippogriff", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hippogriff_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", - "parent": "hippogriff", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hippogriff_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The hippogriff makes two attacks: one with its beak and one with its claws.\n", - "parent": "hippogriff", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hobgoblin_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "parent": "hobgoblin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hobgoblin_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage, or 6 (1d10 + 1) slashing damage if used with two hands.\n", - "parent": "hobgoblin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "homunculus_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or be poisoned for 1 minute. If the saving throw fails by 5 or more, the target is instead poisoned for 5 (1d10) minutes and unconscious while poisoned in this way.\n", - "parent": "homunculus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "horned-devil_fork", - "fields": { - "name": "Fork", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (2d8 + 6) piercing damage.\n", - "parent": "horned-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "horned-devil_hurl-flame", - "fields": { - "name": "Hurl Flame", - "desc": "Ranged Spell Attack: +7 to hit, range 150 ft., one target. Hit: 14 (4d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", - "parent": "horned-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "horned-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack.\n", - "parent": "horned-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "horned-devil_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 10 (1d8 + 6) piercing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 17 Constitution saving throw or lose 10 (3d6) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 (3d6). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", - "parent": "horned-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hydra_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 10 (1d10 + 5) piercing damage.\n", - "parent": "hydra", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "hydra_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The hydra makes as many bite attacks as it has heads.\n", - "parent": "hydra", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-devil_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) piercing damage plus 10 (3d6) cold damage.\n", - "parent": "ice-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-devil_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 10 (2d4 + 5) slashing damage plus 10 (3d6) cold damage.\n", - "parent": "ice-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes three attacks: one with its bite, one with its claws, and one with its tail.\n", - "parent": "ice-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-devil_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage.\n", - "parent": "ice-devil", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-devil_wall-of-ice", - "fields": { - "name": "Wall of Ice", - "desc": "The devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.\n\nWhen the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.\n\nThe wall lasts for 1 minute or until the devil is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.\n", - "parent": "ice-devil", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-mephit_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage.\n", - "parent": "ice-mephit", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ice-mephit_frost-breath", - "fields": { - "name": "Frost Breath", - "desc": "The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "ice-mephit", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "imp_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The imp magically turns invisible until it attacks or until its concentration ends (as if concentrating on a spell). Any equipment the imp wears or carries is invisible with it.\n", - "parent": "imp", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "imp_sting", - "fields": { - "name": "Sting", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "imp", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "imp_sting-bite-in-beast-form", - "fields": { - "name": "Sting (Bite in Beast Form)", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "imp", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "invisible-stalker_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The stalker makes two slam attacks.\n", - "parent": "invisible-stalker", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "invisible-stalker_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", - "parent": "invisible-stalker", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "iron-golem_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The golem makes two melee attacks.\n", - "parent": "iron-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "iron-golem_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "iron-golem", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "iron-golem_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", - "parent": "iron-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "iron-golem_sword", - "fields": { - "name": "Sword", - "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 23 (3d10 + 7) slashing damage.\n", - "parent": "iron-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kobold_dagger", - "fields": { - "name": "Dagger", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", - "parent": "kobold", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kobold_sling", - "fields": { - "name": "Sling", - "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.\n", - "parent": "kobold", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kraken_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +17 to hit, reach 5 ft., one target. Hit: 23 (3d8 + 10) piercing damage. If the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the kraken, and it takes 42 (12d6) acid damage at the start of each of the kraken's turns.\n\nIf the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a DC 25 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", - "parent": "kraken", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kraken_fling", - "fields": { - "name": "Fling", - "desc": "One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.\n", - "parent": "kraken", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kraken_lightning-storm", - "fields": { - "name": "Lightning Storm", - "desc": "The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "kraken", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kraken_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The kraken makes three tentacle attacks, each of which it can replace with one use of Fling.\n", - "parent": "kraken", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "kraken_tentacle", - "fields": { - "name": "Tentacle", - "desc": "Melee Weapon Attack: +17 to hit, reach 30 ft., one target. Hit: 20 (3d6 + 10) bludgeoning damage, and the target is grappled (escape DC 18). Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.\n", - "parent": "kraken", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lamia_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", - "parent": "lamia", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lamia_dagger", - "fields": { - "name": "Dagger", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.\n", - "parent": "lamia", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lamia_intoxicating-touch", - "fields": { - "name": "Intoxicating Touch", - "desc": "Melee Spell Attack: +5 to hit, reach 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.\n", - "parent": "lamia", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lamia_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch.\n", - "parent": "lamia", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lemure_fist", - "fields": { - "name": "Fist", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\n", - "parent": "lemure", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lich_paralyzing-touch", - "fields": { - "name": "Paralyzing Touch", - "desc": "Melee Spell Attack: +12 to hit, reach 5 ft., one creature. Hit: 10 (3d6) cold damage. The target must succeed on a DC 18 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "lich", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lizardfolk_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "lizardfolk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lizardfolk_heavy-club", - "fields": { - "name": "Heavy Club", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", - "parent": "lizardfolk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lizardfolk_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "lizardfolk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lizardfolk_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The lizardfolk makes two melee attacks, each one with a different weapon.\n", - "parent": "lizardfolk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "lizardfolk_spiked-shield", - "fields": { - "name": "Spiked Shield", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "lizardfolk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "magma-mephit_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage.\n", - "parent": "magma-mephit", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "magma-mephit_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The mephit exhales a 15-foot cone of fire. Each creature in that area must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "magma-mephit", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "magmin_touch", - "fields": { - "name": "Touch", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d6) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 3 (1d6) fire damage at the end of each of its turns.\n", - "parent": "magmin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "manticore_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", - "parent": "manticore", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "manticore_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "parent": "manticore", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "manticore_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes.\n", - "parent": "manticore", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "manticore_tail-spike", - "fields": { - "name": "Tail Spike", - "desc": "Ranged Weapon Attack: +5 to hit, range 100/200 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", - "parent": "manticore", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "marilith_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "marilith", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "marilith_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The marilith makes seven attacks: six with its longswords and one with its tail.\n", - "parent": "marilith", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "marilith_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 15 (2d10 + 4) bludgeoning damage. If the target is Medium or smaller, it is grappled (escape DC 19). Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.\n", - "parent": "marilith", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "marilith_teleport", - "fields": { - "name": "Teleport", - "desc": "The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "parent": "marilith", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "medusa_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +5 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage.\n", - "parent": "medusa", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "medusa_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The medusa makes either three melee attacks—one with its snake hair and two with its shortsword—or two ranged attacks with its longbow.\n", - "parent": "medusa", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "medusa_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "medusa", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "medusa_snake-hair", - "fields": { - "name": "Snake Hair", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage plus 14 (4d6) poison damage.\n", - "parent": "medusa", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "merfolk_spear", - "fields": { - "name": "Spear", - "desc": "Melee or Ranged Weapon Attack: +2 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hands to make a melee attack.\n", - "parent": "merfolk", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "merrow_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "parent": "merrow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "merrow_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (2d4 + 4) slashing damage.\n", - "parent": "merrow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "merrow_harpoon", - "fields": { - "name": "Harpoon", - "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.\n", - "parent": "merrow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "merrow_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The merrow makes two attacks: one with its bite and one with its claws or harpoon.\n", - "parent": "merrow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mimic_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage.\n", - "parent": "mimic", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mimic_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait.\n", - "parent": "mimic", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "minotaur-skeleton_gore", - "fields": { - "name": "Gore", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", - "parent": "minotaur-skeleton", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "minotaur-skeleton_greataxe", - "fields": { - "name": "Greataxe", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", - "parent": "minotaur-skeleton", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "minotaur_gore", - "fields": { - "name": "Gore", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", - "parent": "minotaur", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "minotaur_greataxe", - "fields": { - "name": "Greataxe", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", - "parent": "minotaur", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mummy-lord_dreadful-glare", - "fields": { - "name": "Dreadful Glare", - "desc": "The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a DC 16 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours.\n", - "parent": "mummy-lord", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mummy-lord_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", - "parent": "mummy-lord", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mummy-lord_rotting-fist", - "fields": { - "name": "Rotting Fist", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage plus 21 (6d6) necrotic damage. If the target is a creature, it must succeed on a DC 16 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", - "parent": "mummy-lord", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mummy_dreadful-glare", - "fields": { - "name": "Dreadful Glare", - "desc": "The mummy targets one creature it can see within 60 feet of it. If the target can see the mummy, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.\n", - "parent": "mummy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mummy_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", - "parent": "mummy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "mummy_rotting-fist", - "fields": { - "name": "Rotting Fist", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage. If the target is a creature, it must succeed on a DC 12 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", - "parent": "mummy", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nalfeshnee_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 32 (5d10 + 5) piercing damage.\n", - "parent": "nalfeshnee", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nalfeshnee_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) slashing damage.\n", - "parent": "nalfeshnee", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nalfeshnee_horror-nimbus", - "fields": { - "name": "Horror Nimbus", - "desc": "The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.\n", - "parent": "nalfeshnee", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nalfeshnee_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "nalfeshnee", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nalfeshnee_teleport", - "fields": { - "name": "Teleport", - "desc": "The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "parent": "nalfeshnee", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "night-hag_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies.\n", - "parent": "night-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "night-hag_claws", - "fields": { - "name": "Claws", - "desc": "(Hag Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "night-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "night-hag_etherealness", - "fields": { - "name": "Etherealness", - "desc": "The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession.\n", - "parent": "night-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "night-hag_nightmare-haunting", - "fields": { - "name": "Nightmare Haunting", - "desc": "While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle. As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.\n", - "parent": "night-hag", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nightmare_ethereal-stride", - "fields": { - "name": "Ethereal Stride", - "desc": "The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.\n", - "parent": "nightmare", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "nightmare_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage.\n", - "parent": "nightmare", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ochre-jelly_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage.\n", - "parent": "ochre-jelly", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ogre-zombie_morningstar", - "fields": { - "name": "Morningstar", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "ogre-zombie", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ogre_greatclub", - "fields": { - "name": "Greatclub", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "ogre", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "ogre_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", - "parent": "ogre", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "oni_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size.\n", - "parent": "oni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "oni_claw", - "fields": { - "name": "Claw", - "desc": "(Oni Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", - "parent": "oni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "oni_glaive", - "fields": { - "name": "Glaive", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small or Medium form.\n", - "parent": "oni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "oni_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The oni makes two attacks, either with its claws or its glaive.\n", - "parent": "oni", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "orc_greataxe", - "fields": { - "name": "Greataxe", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.\n", - "parent": "orc", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "orc_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "orc", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "otyugh_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 12 (2d8 + 3) piercing damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured.\n", - "parent": "otyugh", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "otyugh_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The otyugh makes three attacks: one with its bite and two with its tentacles.\n", - "parent": "otyugh", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "otyugh_tentacle", - "fields": { - "name": "Tentacle", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage. If the target is Medium or smaller, it is grappled (escape DC 13) and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.\n", - "parent": "otyugh", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "otyugh_tentacle-slam", - "fields": { - "name": "Tentacle Slam", - "desc": "The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the otyugh's next turn. On a successful save, the target takes half the bludgeoning damage and isn't stunned.\n", - "parent": "otyugh", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "owlbear_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one creature. Hit: 10 (1d10 + 5) piercing damage.\n", - "parent": "owlbear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "owlbear_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", - "parent": "owlbear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "owlbear_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The owlbear makes two attacks: one with its beak and one with its claws.\n", - "parent": "owlbear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pegasus_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "pegasus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pit-fiend_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) piercing damage. The target must succeed on a DC 21 Constitution saving throw or become poisoned. While poisoned in this way, the target can't regain hit points, and it takes 21 (6d6) poison damage at the start of each of its turns. The poisoned target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "pit-fiend", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pit-fiend_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 17 (2d8 + 8) slashing damage.\n", - "parent": "pit-fiend", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pit-fiend_mace", - "fields": { - "name": "Mace", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) bludgeoning damage plus 21 (6d6) fire damage.\n", - "parent": "pit-fiend", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pit-fiend_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail.\n", - "parent": "pit-fiend", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pit-fiend_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 24 (3d10 + 8) bludgeoning damage.\n", - "parent": "pit-fiend", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "planetar_greatsword", - "fields": { - "name": "Greatsword", - "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage.\n", - "parent": "planetar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "planetar_healing-touch", - "fields": { - "name": "Healing Touch", - "desc": "The planetar touches another creature. The target magically regains 30 (6d8 + 3) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "parent": "planetar", - "uses_type": "PER_DAY", - "uses_param": 4 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "planetar_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The planetar makes two melee attacks.\n", - "parent": "planetar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "plesiosaurus_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 14 (3d6 + 4) piercing damage.\n", - "parent": "plesiosaurus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pseudodragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", - "parent": "pseudodragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "pseudodragon_sting", - "fields": { - "name": "Sting", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. If the saving throw fails by 5 or more, the target falls unconscious for the same duration, or until it takes damage or another creature uses an action to shake it awake.\n", - "parent": "pseudodragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "purple-worm_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 22 (3d8 + 9) piercing damage. If the target is a Large or smaller creature, it must succeed on a DC 19 Dexterity saving throw or be swallowed by the worm. A swallowed creature is blinded and restrained, it has total cover against attacks and other effects outside the worm, and it takes 21 (6d6) acid damage at the start of each of the worm's turns.\n\nIf the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a DC 21 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 20 feet of movement, exiting prone.\n", - "parent": "purple-worm", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "purple-worm_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The worm makes two attacks: one with its bite and one with its stinger.\n", - "parent": "purple-worm", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "purple-worm_tail-stinger", - "fields": { - "name": "Tail Stinger", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 19 (3d6 + 9) piercing damage, and the target must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "purple-worm", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "quasit_claws-bite-in-beast-form", - "fields": { - "name": "Claws (Bite in Beast Form)", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must succeed on a DC 10 Constitution saving throw or take 5 (2d4) poison damage and become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "quasit", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "quasit_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The quasit magically turns invisible until it attacks or uses Scare, or until its concentration ends (as if concentrating on a spell). Any equipment the quasit wears or carries is invisible with it.\n", - "parent": "quasit", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "quasit_scare", - "fields": { - "name": "Scare", - "desc": "One creature of the quasit's choice within 20 feet of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.\n", - "parent": "quasit", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "rakshasa_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature. The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a remove curse spell or similar magic.\n", - "parent": "rakshasa", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "rakshasa_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The rakshasa makes two claw attacks.\n", - "parent": "rakshasa", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "red-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage.\n", - "parent": "red-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "red-dragon-wyrmling_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "red-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "remorhaz_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage. If the target is a creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.\n", - "parent": "remorhaz", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "remorhaz_swallow", - "fields": { - "name": "Swallow", - "desc": "The remorhaz makes one bite attack against a Medium or smaller creature it is grappling. If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the remorhaz, and it takes 21 (6d6) acid damage at the start of each of the remorhaz's turns.\n\nIf the remorhaz takes 30 damage or more on a single turn from a creature inside it, the remorhaz must succeed on a DC 15 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the remorhaz. If the remorhaz dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", - "parent": "remorhaz", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roc_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 27 (4d8 + 9) piercing damage.\n", - "parent": "roc", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roc_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The roc makes two attacks: one with its beak and one with its talons.\n", - "parent": "roc", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roc_talons", - "fields": { - "name": "Talons", - "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 23 (4d6 + 9) slashing damage, and the target is grappled (escape DC 19). Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.\n", - "parent": "roc", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roper_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 22 (4d8 + 4) piercing damage.\n", - "parent": "roper", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roper_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite.\n", - "parent": "roper", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roper_reel", - "fields": { - "name": "Reel", - "desc": "The roper pulls each creature grappled by it up to 25 feet straight toward it.\n", - "parent": "roper", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "roper_tendril", - "fields": { - "name": "Tendril", - "desc": "Melee Weapon Attack: +7 to hit, reach 50 ft., one creature. Hit: The target is grappled (escape DC 15). Until the grapple ends, the target is restrained and has disadvantage on Strength checks and Strength saving throws, and the roper can't use the same tendril on another target.\n", - "parent": "roper", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "rug-of-smothering_smother", - "fields": { - "name": "Smother", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one Medium or smaller creature. Hit: The creature is grappled (escape DC 13). Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 (2d6 + 3) bludgeoning damage.\n", - "parent": "rug-of-smothering", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "rust-monster_antennae", - "fields": { - "name": "Antennae", - "desc": "The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the rust monster's touch. If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.\n", - "parent": "rust-monster", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "rust-monster_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "parent": "rust-monster", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sahuagin_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) piercing damage.\n", - "parent": "sahuagin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sahuagin_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) slashing damage.\n", - "parent": "sahuagin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sahuagin_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The sahuagin makes two melee attacks: one with its bite and one with its claws or spear.\n", - "parent": "sahuagin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sahuagin_spear", - "fields": { - "name": "Spear", - "desc": "Melee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.\n", - "parent": "sahuagin", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "salamander_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The salamander makes two attacks: one with its spear and one with its tail.\n", - "parent": "salamander", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "salamander_spear", - "fields": { - "name": "Spear", - "desc": "Melee or Ranged Weapon Attack: +7 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", - "parent": "salamander", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "salamander_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage, and the target is grappled (escape DC 14). Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.\n", - "parent": "salamander", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "satyr_ram", - "fields": { - "name": "Ram", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) bludgeoning damage.\n", - "parent": "satyr", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "satyr_shortbow", - "fields": { - "name": "Shortbow", - "desc": "Ranged Weapon Attack: +5 to hit, range 80/320 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "satyr", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "satyr_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "satyr", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sea-hag_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", - "parent": "sea-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sea-hag_death-glare", - "fields": { - "name": "Death Glare", - "desc": "The hag targets one frightened creature she can see within 30 feet of her. If the target can see the hag, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.\n", - "parent": "sea-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sea-hag_illusory-appearance", - "fields": { - "name": "Illusory Appearance", - "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 16 Intelligence (Investigation) check to discern that the hag is disguised.\n", - "parent": "sea-hag", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "shadow_strength-drain", - "fields": { - "name": "Strength Drain", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) necrotic damage, and the target's Strength score is reduced by 1d4. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.\n\nIf a non-evil humanoid dies from this attack, a new shadow rises from the corpse 1d4 hours later.\n", - "parent": "shadow", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "shambling-mound_engulf", - "fields": { - "name": "Engulf", - "desc": "The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must succeed on a DC 14 Constitution saving throw at the start of each of the mound's turns or take 13 (2d8 + 4) bludgeoning damage. If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time.\n", - "parent": "shambling-mound", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "shambling-mound_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is grappled (escape DC 14), and the shambling mound uses its Engulf on it.\n", - "parent": "shambling-mound", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "shambling-mound_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "shambling-mound", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "shield-guardian_fist", - "fields": { - "name": "Fist", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "shield-guardian", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "shield-guardian_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The guardian makes two fist attacks.\n", - "parent": "shield-guardian", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "silver-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "parent": "silver-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "silver-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "silver-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "skeleton_shortbow", - "fields": { - "name": "Shortbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "skeleton", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "skeleton_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "skeleton", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "solar_flying-sword", - "fields": { - "name": "Flying Sword", - "desc": "The solar releases its greatsword to hover magically in an unoccupied space within 5 feet of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 feet and either make one attack against a target or return to the solar's hands. If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies.\n", - "parent": "solar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "solar_greatsword", - "fields": { - "name": "Greatsword", - "desc": "Melee Weapon Attack: +15 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) slashing damage plus 27 (6d8) radiant damage.\n", - "parent": "solar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "solar_healing-touch", - "fields": { - "name": "Healing Touch", - "desc": "The solar touches another creature. The target magically regains 40 (8d8 + 4) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "parent": "solar", - "uses_type": "PER_DAY", - "uses_param": 4 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "solar_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The solar makes two greatsword attacks.\n", - "parent": "solar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "solar_slaying-longbow", - "fields": { - "name": "Slaying Longbow", - "desc": "Ranged Weapon Attack: +13 to hit, range 150/600 ft., one target. Hit: 15 (2d8 + 6) piercing damage plus 27 (6d8) radiant damage. If the target is a creature that has 100 hit points or fewer, it must succeed on a DC 15 Constitution saving throw or die.\n", - "parent": "solar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "specter_life-drain", - "fields": { - "name": "Life Drain", - "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) necrotic damage. The target must succeed on a DC 10 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "parent": "specter", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "spirit-naga_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 7 (1d6 + 4) piercing damage, and the target must make a DC 13 Constitution saving throw, taking 31 (7d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "spirit-naga", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sprite_heart-sight", - "fields": { - "name": "Heart Sight", - "desc": "The sprite touches a creature and magically knows the creature's current emotional state. If the target fails a DC 10 Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.\n", - "parent": "sprite", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sprite_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The sprite magically turns invisible until it attacks or casts a spell, or until its concentration ends (as if concentrating on a spell). Any equipment the sprite wears or carries is invisible with it.\n", - "parent": "sprite", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sprite_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 1 slashing damage.\n", - "parent": "sprite", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "sprite_shortbow", - "fields": { - "name": "Shortbow", - "desc": "Ranged Weapon Attack: +6 to hit, range 40/160 ft., one target. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or become poisoned for 1 minute. If its saving throw result is 5 or lower, the poisoned target falls unconscious for the same duration, or until it takes damage or another creature takes an action to shake it awake.\n", - "parent": "sprite", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "steam-mephit_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 2 (1d4) slashing damage plus 2 (1d4) fire damage.\n", - "parent": "steam-mephit", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "steam-mephit_steam-breath", - "fields": { - "name": "Steam Breath", - "desc": "The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 4 (1d8) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "steam-mephit", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stirge_blood-drain", - "fields": { - "name": "Blood Drain", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 5 (1d4 + 3) piercing damage, and the stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 (1d4 + 3) hit points due to blood loss.\n\nThe stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies. A creature, including the target, can use its action to detach the stirge.\n", - "parent": "stirge", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stone-giant_greatclub", - "fields": { - "name": "Greatclub", - "desc": "Melee Weapon Attack: +9 to hit, reach 15 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", - "parent": "stone-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stone-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greatclub attacks.\n", - "parent": "stone-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stone-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage. If the target is a creature, it must succeed on a DC 17 Strength saving throw or be knocked prone.\n", - "parent": "stone-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stone-golem_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The golem makes two slam attacks.\n", - "parent": "stone-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stone-golem_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", - "parent": "stone-golem", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "stone-golem_slow", - "fields": { - "name": "Slow", - "desc": "The golem targets one or more creatures it can see within 10 feet of it. Each target must make a DC 17 Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "stone-golem", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "storm-giant_greatsword", - "fields": { - "name": "Greatsword", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 30 (6d6 + 9) slashing damage.\n", - "parent": "storm-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "storm-giant_lightning-strike", - "fields": { - "name": "Lightning Strike", - "desc": "The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a DC 17 Dexterity saving throw, taking 54 (12d8) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "storm-giant", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "storm-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greatsword attacks.\n", - "parent": "storm-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "storm-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +14 to hit, range 60/240 ft., one target. Hit: 35 (4d12 + 9) bludgeoning damage.\n", - "parent": "storm-giant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "succubusincubus_charm", - "fields": { - "name": "Charm", - "desc": "One humanoid the fiend can see within 30 feet of it must succeed on a DC 15 Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the fiend's verbal or telepathic commands. If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.\n\nThe fiend can have only one target charmed at a time. If it charms another, the effect on the previous target ends.\n", - "parent": "succubusincubus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "succubusincubus_claw", - "fields": { - "name": "Claw", - "desc": "(Fiend Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "parent": "succubusincubus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "succubusincubus_draining-kiss", - "fields": { - "name": "Draining Kiss", - "desc": "The fiend kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "parent": "succubusincubus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "succubusincubus_etherealness", - "fields": { - "name": "Etherealness", - "desc": "The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa.\n", - "parent": "succubusincubus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 36 (4d12 + 10) piercing damage. If the target is a creature, it is grappled (escape DC 20). Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +19 to hit, reach 15 ft., one target. Hit: 28 (4d8 + 10) slashing damage.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_horns", - "fields": { - "name": "Horns", - "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 32 (4d10 + 10) piercing damage.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_swallow", - "fields": { - "name": "Swallow", - "desc": "The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the tarrasque, and it takes 56 (16d6) acid damage at the start of each of the tarrasque's turns.\n\nIf the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a DC 20 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 30 feet of movement, exiting prone.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tarrasque_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +19 to hit, reach 20 ft., one target. Hit: 24 (4d6 + 10) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be knocked prone.\n", - "parent": "tarrasque", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "treant_animate-trees", - "fields": { - "name": "Animate Trees", - "desc": "The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a treant, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.\n", - "parent": "treant", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "treant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The treant makes two slam attacks.\n", - "parent": "treant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "treant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +10 to hit, range 60/180 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", - "parent": "treant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "treant_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 16 (3d6 + 6) bludgeoning damage.\n", - "parent": "treant", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "triceratops_gore", - "fields": { - "name": "Gore", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 24 (4d8 + 6) piercing damage.\n", - "parent": "triceratops", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "triceratops_stomp", - "fields": { - "name": "Stomp", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.\n", - "parent": "triceratops", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "troll_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) piercing damage.\n", - "parent": "troll", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "troll_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "troll", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "troll_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The troll makes three attacks: one with its bite and two with its claws.\n", - "parent": "troll", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tyrannosaurus-rex_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 33 (4d12 + 7) piercing damage. If the target is a Medium or smaller creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.\n", - "parent": "tyrannosaurus-rex", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tyrannosaurus-rex_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target.\n", - "parent": "tyrannosaurus-rex", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "tyrannosaurus-rex_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", - "parent": "tyrannosaurus-rex", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "unicorn_healing-touch", - "fields": { - "name": "Healing Touch", - "desc": "The unicorn touches another creature with its horn. The target magically regains 11 (2d8 + 2) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target.\n", - "parent": "unicorn", - "uses_type": "PER_DAY", - "uses_param": 3 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "unicorn_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "unicorn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "unicorn_horn", - "fields": { - "name": "Horn", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "parent": "unicorn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "unicorn_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The unicorn makes two attacks: one with its hooves and one with its horn.\n", - "parent": "unicorn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "unicorn_teleport", - "fields": { - "name": "Teleport", - "desc": "The unicorn magically teleports itself and up to three willing creatures it can see within 5 feet of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away.\n", - "parent": "unicorn", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire-spawn_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "parent": "vampire-spawn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire-spawn_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 8 (2d4 + 3) slashing damage. Instead of dealing damage, the vampire can grapple the target (escape DC 13).\n", - "parent": "vampire-spawn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire-spawn_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The vampire makes two attacks, only one of which can be a bite attack.\n", - "parent": "vampire-spawn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire_bite", - "fields": { - "name": "Bite", - "desc": "(Bat or Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 7 (1d6 + 4) piercing damage plus 10 (3d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a vampire spawn under the vampire's control.\n", - "parent": "vampire", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire_charm", - "fields": { - "name": "Charm", - "desc": "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a DC 17 Wisdom saving throw against this magic or be charmed by the vampire. The charmed target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.\n\nEach time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect.\n", - "parent": "vampire", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire_children-of-the-night", - "fields": { - "name": "Children of the Night", - "desc": "The vampire magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the vampire can call 3d6 wolves instead. The called creatures arrive in 1d4 rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action.\n", - "parent": "vampire", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Vampire Form Only). The vampire makes two attacks, only one of which can be a bite attack.\n", - "parent": "vampire", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vampire_unarmed-strike", - "fields": { - "name": "Unarmed Strike", - "desc": "(Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one creature. Hit: 8 (1d8 + 4) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape DC 18).\n", - "parent": "vampire", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "violet-fungus_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The fungus makes 1d4 Rotting Touch attacks.\n", - "parent": "violet-fungus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "violet-fungus_rotting-touch", - "fields": { - "name": "Rotting Touch", - "desc": "Melee Weapon Attack: +2 to hit, reach 10 ft., one creature. Hit: 4 (1d8) necrotic damage.\n", - "parent": "violet-fungus", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vrock_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", - "parent": "vrock", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vrock_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The vrock makes two attacks: one with its beak and one with its talons.\n", - "parent": "vrock", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vrock_spores", - "fields": { - "name": "Spores", - "desc": "A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.\n", - "parent": "vrock", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vrock_stunning-screech", - "fields": { - "name": "Stunning Screech", - "desc": "The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must succeed on a DC 14 Constitution saving throw or be stunned until the end of the vrock's next turn.\n", - "parent": "vrock", - "uses_type": "PER_DAY", - "uses_param": 1 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "vrock_talons", - "fields": { - "name": "Talons", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", - "parent": "vrock", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "warhorse-skeleton_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "warhorse-skeleton", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "water-elemental_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The elemental makes two slam attacks.\n", - "parent": "water-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "water-elemental_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "water-elemental", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "water-elemental_whelm", - "fields": { - "name": "Whelm", - "desc": "Each creature in the elemental's space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the elemental's space.\n\nThe elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a DC 14 Strength and succeeding.\n", - "parent": "water-elemental", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 4 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werebear_bite", - "fields": { - "name": "Bite", - "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage. If the target is a humanoid, it must succeed on a DC 14 Constitution saving throw or be cursed with werebear lycanthropy.\n", - "parent": "werebear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werebear_claw", - "fields": { - "name": "Claw", - "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "werebear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werebear_greataxe", - "fields": { - "name": "Greataxe", - "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) slashing damage.\n", - "parent": "werebear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werebear_multiattack", - "fields": { - "name": "Multiattack", - "desc": "In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid.\n", - "parent": "werebear", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wereboar_maul", - "fields": { - "name": "Maul", - "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", - "parent": "wereboar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wereboar_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Humanoid or Hybrid Form Only). The wereboar makes two attacks, only one of which can be with its tusks.\n", - "parent": "wereboar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wereboar_tusks", - "fields": { - "name": "Tusks", - "desc": "(Boar or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with wereboar lycanthropy.\n", - "parent": "wereboar", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wererat_bite", - "fields": { - "name": "Bite", - "desc": "(Rat or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 11 Constitution saving throw or be cursed with wererat lycanthropy.\n", - "parent": "wererat", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wererat_hand-crossbow", - "fields": { - "name": "Hand Crossbow", - "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "wererat", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wererat_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Humanoid or Hybrid Form Only). The wererat makes two attacks, only one of which can be a bite.\n", - "parent": "wererat", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wererat_shortsword", - "fields": { - "name": "Shortsword", - "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "wererat", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "weretiger_bite", - "fields": { - "name": "Bite", - "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage. If the target is a humanoid, it must succeed on a DC 13 Constitution saving throw or be cursed with weretiger lycanthropy.\n", - "parent": "weretiger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "weretiger_claw", - "fields": { - "name": "Claw", - "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.\n", - "parent": "weretiger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "weretiger_longbow", - "fields": { - "name": "Longbow", - "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "parent": "weretiger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "weretiger_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Humanoid or Hybrid Form Only). In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks.\n", - "parent": "weretiger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "weretiger_scimitar", - "fields": { - "name": "Scimitar", - "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "parent": "weretiger", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werewolf_bite", - "fields": { - "name": "Bite", - "desc": "(Wolf or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with werewolf lycanthropy.\n", - "parent": "werewolf", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werewolf_claws", - "fields": { - "name": "Claws", - "desc": "(Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 7 (2d4 + 2) slashing damage.\n", - "parent": "werewolf", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werewolf_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Humanoid or Hybrid Form Only). The werewolf makes two attacks: one with its bite and one with its claws or spear.\n", - "parent": "werewolf", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "werewolf_spear", - "fields": { - "name": "Spear", - "desc": "(Humanoid Form Only). Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", - "parent": "werewolf", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "white-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage.\n", - "parent": "white-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "white-dragon-wyrmling_cold-breath", - "fields": { - "name": "Cold Breath", - "desc": "The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a DC 12 Constitution saving throw, taking 22 (5d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "white-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wight_life-drain", - "fields": { - "name": "Life Drain", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 5 (1d6 + 2) necrotic damage. The target must succeed on a DC 13 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n\nA humanoid slain by this attack rises 24 hours later as a zombie under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time.\n", - "parent": "wight", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wight_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "parent": "wight", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wight_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage, or 7 (1d10 + 2) slashing damage if used with two hands.\n", - "parent": "wight", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wight_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack.\n", - "parent": "wight", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "will-o-wisp_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The will-o'-wisp and its light magically become invisible until it attacks or uses its Consume Life, or until its concentration ends (as if concentrating on a spell).\n", - "parent": "will-o-wisp", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "will-o-wisp_shock", - "fields": { - "name": "Shock", - "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d8) lightning damage.\n", - "parent": "will-o-wisp", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wraith_create-specter", - "fields": { - "name": "Create Specter", - "desc": "The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the wraith's control. The wraith can have no more than seven specters under its control at one time.\n", - "parent": "wraith", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wraith_life-drain", - "fields": { - "name": "Life Drain", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 21 (4d8 + 3) necrotic damage. The target must succeed on a DC 14 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "parent": "wraith", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wyvern_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\n", - "parent": "wyvern", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wyvern_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "wyvern", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wyvern_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack.\n", - "parent": "wyvern", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "wyvern_stinger", - "fields": { - "name": "Stinger", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage. The target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "wyvern", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "xorn_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (3d6 + 3) piercing damage.\n", - "parent": "xorn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "xorn_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "parent": "xorn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "xorn_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The xorn makes three claw attacks and one bite attack.\n", - "parent": "xorn", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-black-dragon_acid-breath", - "fields": { - "name": "Acid Breath", - "desc": "The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "young-black-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-black-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.\n", - "parent": "young-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-black-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "young-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-black-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-black-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-blue-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.\n", - "parent": "young-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-blue-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", - "parent": "young-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-blue-dragon_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "young-blue-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-blue-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-blue-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-brass-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "parent": "young-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-brass-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "parent": "young-brass-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-brass-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "young-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-brass-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-brass-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-bronze-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.\n", - "parent": "young-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-bronze-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.\n", - "parent": "young-bronze-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-bronze-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", - "parent": "young-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-bronze-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-bronze-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-copper-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "parent": "young-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-copper-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "parent": "young-copper-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-copper-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "young-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-copper-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-copper-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-gold-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "parent": "young-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-gold-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "young-gold-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-gold-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "young-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-gold-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-gold-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-green-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.\n", - "parent": "young-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-green-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "young-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-green-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-green-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-green-dragon_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "young-green-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-red-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.\n", - "parent": "young-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-red-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "young-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-red-dragon_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "young-red-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-red-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-red-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-silver-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "parent": "young-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-silver-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "young-silver-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-silver-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "young-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-silver-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-silver-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-white-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.\n", - "parent": "young-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-white-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "young-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-white-dragon_cold-breath", - "fields": { - "name": "Cold Breath", - "desc": "The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "young-white-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "young-white-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "young-white-dragon", - "uses_type": null, - "uses_param": null - } -}, -{ - "model": "api_v2.creatureaction", - "pk": "zombie_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.\n", - "parent": "zombie", - "uses_type": null, - "uses_param": null - } -} -] + { + "model": "api_v2.creatureaction", + "pk": "srd_aboleth_enslave", + "fields": { + "name": "Enslave", + "desc": "The aboleth targets one creature it can see within 30 feet of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the aboleth until the aboleth dies or until it is on a different plane of existence from the target. The charmed target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.\n\nWhenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.\n", + "parent": "srd_aboleth", + "uses_type": "PER_DAY", + "uses_param": 3 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_aboleth_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The aboleth makes three tentacle attacks.\n", + "parent": "srd_aboleth", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_aboleth_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) bludgeoning damage.\n", + "parent": "srd_aboleth", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_aboleth_tentacle", + "fields": { + "name": "Tentacle", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 14 Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.\n", + "parent": "srd_aboleth", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-black-dragon_acid-breath", + "fields": { + "name": "Acid Breath", + "desc": "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-black-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-black-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) acid damage.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-black-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-black-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-black-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-black-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-blue-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage plus 5 (1d10) lightning damage.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-blue-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-blue-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-blue-dragon_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-blue-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-blue-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-brass-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-brass-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-brass-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-brass-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-brass-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-brass-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-copper-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-copper-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-copper-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-copper-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-copper-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-copper-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-green-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 7 (2d6) poison damage.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-green-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-green-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-green-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-green-dragon_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-green-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-green-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-red-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 7 (2d6) fire damage.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-red-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-red-dragon_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 63 (18d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-red-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-red-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-red-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-red-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-white-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) cold damage.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-white-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-white-dragon_cold-breath", + "fields": { + "name": "Cold Breath", + "desc": "The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-white-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-white-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 14 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-white-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_adult-white-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_air-elemental_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The elemental makes two slam attacks.\n", + "parent": "srd_air-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_air-elemental_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", + "parent": "srd_air-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_air-elemental_whirlwind", + "fields": { + "name": "Whirlwind", + "desc": "Each creature in the elemental's space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked prone. If a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone.\n\nIf the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.\n", + "parent": "srd_air-elemental", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 4 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-black-dragon_acid-breath", + "fields": { + "name": "Acid Breath", + "desc": "The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-black-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) acid damage.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-black-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-black-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-black-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-black-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-blue-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage plus 11 (2d10) lightning damage.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-blue-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-blue-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-blue-dragon_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-blue-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-blue-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons:\n\nFire Breath. The dragon exhales fire in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 24 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-green-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 10 (3d6) poison damage.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-green-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 22 (4d6 + 8) slashing damage.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-green-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-green-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-green-dragon_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 77 (22d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-green-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-red-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage plus 14 (4d6) fire damage.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-red-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-red-dragon_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 91 (26d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-red-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-red-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-red-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-white-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) cold damage.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-white-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-white-dragon_cold-breath", + "fields": { + "name": "Cold Breath", + "desc": "The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 72 (16d8) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-white-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-white-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ancient-white-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_androsphinx_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 17 (2d10 + 6) slashing damage.\n", + "parent": "srd_androsphinx", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_androsphinx_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The sphinx makes two claw attacks.\n", + "parent": "srd_androsphinx", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_androsphinx_roar", + "fields": { + "name": "Roar", + "desc": "The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.\n\nFirst Roar. Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nSecond Roar. Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThird Roar. Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.\n", + "parent": "srd_androsphinx", + "uses_type": "PER_DAY", + "uses_param": 3 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_animated-armor_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The armor makes two melee attacks.\n", + "parent": "srd_animated-armor", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_animated-armor_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", + "parent": "srd_animated-armor", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ankheg_acid-spray", + "fields": { + "name": "Acid Spray", + "desc": "The ankheg spits acid in a line that is 30 feet long and 5 feet wide, provided that it has no creature grappled. Each creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ankheg", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ankheg_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage. If the target is a Large or smaller creature, it is grappled (escape DC 13). Until this grapple ends, the ankheg can bite only the grappled creature and has advantage on attack rolls to do so.\n", + "parent": "srd_ankheg", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_azer_warhammer", + "fields": { + "name": "Warhammer", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", + "parent": "srd_azer", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_balor_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) slashing damage plus 13 (3d8) lightning damage. If the balor scores a critical hit, it rolls damage dice three times, instead of twice.\n", + "parent": "srd_balor", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_balor_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The balor makes two attacks: one with its longsword and one with its whip.\n", + "parent": "srd_balor", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_balor_teleport", + "fields": { + "name": "Teleport", + "desc": "The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", + "parent": "srd_balor", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_balor_whip", + "fields": { + "name": "Whip", + "desc": "Melee Weapon Attack: +14 to hit, reach 30 ft., one target. Hit: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage, and the target must succeed on a DC 20 Strength saving throw or be pulled up to 25 feet toward the balor.\n", + "parent": "srd_balor", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_barbed-devil_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_barbed-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_barbed-devil_hurl-flame", + "fields": { + "name": "Hurl Flame", + "desc": "Ranged Spell Attack: +5 to hit, range 150 ft., one target. Hit: 10 (3d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", + "parent": "srd_barbed-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_barbed-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice.\n", + "parent": "srd_barbed-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_barbed-devil_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", + "parent": "srd_barbed-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_basilisk_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage.\n", + "parent": "srd_basilisk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_bearded-devil_beard", + "fields": { + "name": "Beard", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. While poisoned in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_bearded-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_bearded-devil_glaive", + "fields": { + "name": "Glaive", + "desc": "Melee Weapon Attack: +5 to hit, reach 10 ft., one target. Hit: 8 (1d10 + 3) slashing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 12 Constitution saving throw or lose 5 (1d10) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 (1d10). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", + "parent": "srd_bearded-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_bearded-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes two attacks: one with its beard and one with its glaive.\n", + "parent": "srd_bearded-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_behir_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 22 (3d10 + 6) piercing damage.\n", + "parent": "srd_behir", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_behir_constrict", + "fields": { + "name": "Constrict", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one Large or smaller creature. Hit: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage. The target is grappled (escape DC 16) if the behir isn't already constricting a creature, and the target is restrained until this grapple ends.\n", + "parent": "srd_behir", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_behir_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The behir exhales a line of lightning that is 20 feet long and 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_behir", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_behir_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The behir makes two attacks: one with its bite and one to constrict.\n", + "parent": "srd_behir", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_behir_swallow", + "fields": { + "name": "Swallow", + "desc": "The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the behir, and it takes 21 (6d6) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.\n\nIf the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 feet of the behir. If the behir dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 feet of movement, exiting prone.\n", + "parent": "srd_behir", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_black-dragon-wyrmling_acid-breath", + "fields": { + "name": "Acid Breath", + "desc": "The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_black-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_black-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage.\n", + "parent": "srd_black-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_black-pudding_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", + "parent": "srd_black-pudding", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_blue-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage.\n", + "parent": "srd_blue-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_blue-dragon-wyrmling_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_blue-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_bone-devil_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", + "parent": "srd_bone-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_bone-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes three attacks: two with its claws and one with its sting.\n", + "parent": "srd_bone-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_bone-devil_sting", + "fields": { + "name": "Sting", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage, and the target must succeed on a DC 14 Constitution saving throw or become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_bone-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_brass-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", + "parent": "srd_brass-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_brass-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", + "parent": "srd_brass-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_bronze-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", + "parent": "srd_bronze-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_bronze-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.\n", + "parent": "srd_bronze-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_bugbear_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at range.\n", + "parent": "srd_bugbear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_bugbear_morningstar", + "fields": { + "name": "Morningstar", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 11 (2d8 + 2) piercing damage.\n", + "parent": "srd_bugbear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_bulette_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 30 (4d12 + 4) piercing damage.\n", + "parent": "srd_bulette", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_bulette_deadly-leap", + "fields": { + "name": "Deadly Leap", + "desc": "If the bulette jumps at least 15 feet as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 feet out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the bulette's space.\n", + "parent": "srd_bulette", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_centaur_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_centaur", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_centaur_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", + "parent": "srd_centaur", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_centaur_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow.\n", + "parent": "srd_centaur", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_centaur_pike", + "fields": { + "name": "Pike", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", + "parent": "srd_centaur", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_chain-devil_animate-chains", + "fields": { + "name": "Animate Chains", + "desc": "Up to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.\n\nEach animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is incapacitated or dies.\n", + "parent": "srd_chain-devil", + "uses_type": "RECHARGE_AFTER_REST", + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_chain-devil_chain", + "fields": { + "name": "Chain", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) slashing damage. The target is grappled (escape DC 14) if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained and takes 7 (2d6) piercing damage at the start of each of its turns.\n", + "parent": "srd_chain-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_chain-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes two attacks with its chains.\n", + "parent": "srd_chain-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_chimera_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", + "parent": "srd_chimera", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_chimera_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_chimera", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_chimera_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 31 (7d8) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_chimera", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_chimera_horns", + "fields": { + "name": "Horns", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) bludgeoning damage.\n", + "parent": "srd_chimera", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_chimera_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns.\n", + "parent": "srd_chimera", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_chuul_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once.\n", + "parent": "srd_chuul", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_chuul_pincer", + "fields": { + "name": "Pincer", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage. The target is grappled (escape DC 14) if it is a Large or smaller creature and the chuul doesn't have two other creatures grappled.\n", + "parent": "srd_chuul", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_chuul_tentacles", + "fields": { + "name": "Tentacles", + "desc": "One creature grappled by the chuul must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. Until this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_chuul", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_clay-golem_haste", + "fields": { + "name": "Haste", + "desc": "Until the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action.\n", + "parent": "srd_clay-golem", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_clay-golem_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The golem makes two slam attacks.\n", + "parent": "srd_clay-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_clay-golem_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the greater restoration spell or other magic.\n", + "parent": "srd_clay-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_cloaker_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 10 (2d6 + 3) piercing damage, and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is blinded and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a DC 16 Strength check.\n", + "parent": "srd_cloaker", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_cloaker_moan", + "fields": { + "name": "Moan", + "desc": "Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the cloaker's next turn. If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours\n", + "parent": "srd_cloaker", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_cloaker_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The cloaker makes two attacks: one with its bite and one with its tail.\n", + "parent": "srd_cloaker", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_cloaker_phantasms", + "fields": { + "name": "Phantasms", + "desc": "The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.\n\nWhenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.\n\nA duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.\n", + "parent": "srd_cloaker", + "uses_type": "RECHARGE_AFTER_REST", + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_cloaker_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one creature. Hit: 7 (1d8 + 3) slashing damage.\n", + "parent": "srd_cloaker", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_cloud-giant_morningstar", + "fields": { + "name": "Morningstar", + "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) piercing damage.\n", + "parent": "srd_cloud-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_cloud-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two morningstar attacks.\n", + "parent": "srd_cloud-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_cloud-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +12 to hit, range 60/240 ft., one target. Hit: 30 (4d10 + 8) bludgeoning damage.\n", + "parent": "srd_cloud-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_cockatrice_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) piercing damage, and the target must succeed on a DC 11 Constitution saving throw against being magically petrified. On a failed save, the creature begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified for 24 hours.\n", + "parent": "srd_cockatrice", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_copper-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", + "parent": "srd_copper-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_copper-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", + "parent": "srd_copper-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_couatl_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one creature. Hit: 8 (1d6 + 5) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 24 hours. Until this poison ends, the target is unconscious. Another creature can use an action to shake the target awake.\n", + "parent": "srd_couatl", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_couatl_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).\n\nIn a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form.\n", + "parent": "srd_couatl", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_couatl_constrict", + "fields": { + "name": "Constrict", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one Medium or smaller creature. Hit: 10 (2d6 + 3) bludgeoning damage, and the target is grappled (escape DC 15). Until this grapple ends, the target is restrained, and the couatl can't constrict another target.\n", + "parent": "srd_couatl", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_darkmantle_crush", + "fields": { + "name": "Crush", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d6 + 3) bludgeoning damage, and the darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also blinded and unable to breathe while the darkmantle is attached in this way.\n\nWhile attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.\n\nA creature can detach the darkmantle by making a successful DC 13 Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement.\n", + "parent": "srd_darkmantle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_darkmantle_darkness-aura", + "fields": { + "name": "Darkness Aura", + "desc": "A 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains concentration, up to 10 minutes (as if concentrating on a spell). Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.\n", + "parent": "srd_darkmantle", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_deva_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).\n\nIn a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks.\n", + "parent": "srd_deva", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_deva_healing-touch", + "fields": { + "name": "Healing Touch", + "desc": "The deva touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", + "parent": "srd_deva", + "uses_type": "PER_DAY", + "uses_param": 3 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_deva_mace", + "fields": { + "name": "Mace", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage.\n", + "parent": "srd_deva", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_deva_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The deva makes two melee attacks.\n", + "parent": "srd_deva", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_djinni_create-whirlwind", + "fields": { + "name": "Create Whirlwind", + "desc": "A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains concentration (as if concentrating on a spell). Any creature but the djinni that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.\n\nA creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.\n", + "parent": "srd_djinni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_djinni_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The djinni makes three scimitar attacks.\n", + "parent": "srd_djinni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_djinni_scimitar", + "fields": { + "name": "Scimitar", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (djinni's choice).\n", + "parent": "srd_djinni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_doppelganger_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The doppelganger makes two melee attacks.\n", + "parent": "srd_doppelganger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_doppelganger_read-thoughts", + "fields": { + "name": "Read Thoughts", + "desc": "The doppelganger magically reads the surface thoughts of one creature within 60 feet of it. The effect can penetrate barriers, but 3 feet of wood or dirt, 2 feet of stone, 2 inches of metal, or a thin sheet of lead blocks it. While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.\n", + "parent": "srd_doppelganger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_doppelganger_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage.\n", + "parent": "srd_doppelganger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_dragon-turtle_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) piercing damage.\n", + "parent": "srd_dragon-turtle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_dragon-turtle_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 16 (2d8 + 7) slashing damage.\n", + "parent": "srd_dragon-turtle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_dragon-turtle_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks.\n", + "parent": "srd_dragon-turtle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_dragon-turtle_steam-breath", + "fields": { + "name": "Steam Breath", + "desc": "The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage.\n", + "parent": "srd_dragon-turtle", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_dragon-turtle_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked prone.\n", + "parent": "srd_dragon-turtle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_dretch_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 3 (1d6) piercing damage.\n", + "parent": "srd_dretch", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_dretch_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 5 (2d4) slashing damage.\n", + "parent": "srd_dretch", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_dretch_fetid-cloud", + "fields": { + "name": "Fetid Cloud", + "desc": "A 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it. Any creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions.\n", + "parent": "srd_dretch", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_dretch_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dretch makes two attacks: one with its bite and one with its claws.\n", + "parent": "srd_dretch", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_drider_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 2 (1d4) piercing damage plus 9 (2d8) poison damage.\n", + "parent": "srd_drider", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_drider_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +6 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage.\n", + "parent": "srd_drider", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_drider_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", + "parent": "srd_drider", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_drider_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack.\n", + "parent": "srd_drider", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_dryad_club", + "fields": { + "name": "Club", + "desc": "Melee Weapon Attack: +2 to hit (+6 to hit with shillelagh), reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with shillelagh.\n", + "parent": "srd_dryad", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_dryad_fey-charm", + "fields": { + "name": "Fey Charm", + "desc": "The dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a DC 14 Wisdom saving throw or be magically charmed. The charmed creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.\n\nEach time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.\n\nThe dryad can have no more than one humanoid and up to three beasts charmed at a time.\n", + "parent": "srd_dryad", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_duergar_enlarge", + "fields": { + "name": "Enlarge", + "desc": "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available.\n", + "parent": "srd_duergar", + "uses_type": "RECHARGE_AFTER_REST", + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_duergar_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The duergar magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell). Any equipment the duergar wears or carries is invisible with it.\n", + "parent": "srd_duergar", + "uses_type": "RECHARGE_AFTER_REST", + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_duergar_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarged.\n", + "parent": "srd_duergar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_duergar_war-pick", + "fields": { + "name": "War Pick", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage, or 11 (2d8 + 2) piercing damage while enlarged.\n", + "parent": "srd_duergar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_dust-mephit_blinding-breath", + "fields": { + "name": "Blinding Breath", + "desc": "The mephit exhales a 15-foot cone of blinding dust. Each creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_dust-mephit", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_dust-mephit_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) slashing damage.\n", + "parent": "srd_dust-mephit", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_earth-elemental_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The elemental makes two slam attacks.\n", + "parent": "srd_earth-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_earth-elemental_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", + "parent": "srd_earth-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_efreeti_hurl-flame", + "fields": { + "name": "Hurl Flame", + "desc": "Ranged Spell Attack: +7 to hit, range 120 ft., one target. Hit: 17 (5d6) fire damage.\n", + "parent": "srd_efreeti", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_efreeti_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The efreeti makes two scimitar attacks or uses its Hurl Flame twice.\n", + "parent": "srd_efreeti", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_efreeti_scimitar", + "fields": { + "name": "Scimitar", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage plus 7 (2d6) fire damage.\n", + "parent": "srd_efreeti", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_elf-drow_hand-crossbow", + "fields": { + "name": "Hand Crossbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake.\n", + "parent": "srd_elf-drow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_elf-drow_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_elf-drow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_erinyes_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +7 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 13 (3d8) poison damage, and the target must succeed on a DC 14 Constitution saving throw or be poisoned. The poison lasts until it is removed by the lesser restoration spell or similar magic.\n", + "parent": "srd_erinyes", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_erinyes_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands, plus 13 (3d8) poison damage.\n", + "parent": "srd_erinyes", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_erinyes_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The erinyes makes three attacks.\n", + "parent": "srd_erinyes", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ettercap_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage plus 4 (1d8) poison damage. The target must succeed on a DC 11 Constitution saving throw or be poisoned for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ettercap", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ettercap_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.\n", + "parent": "srd_ettercap", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ettercap_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The ettercap makes two attacks: one with its bite and one with its claws.\n", + "parent": "srd_ettercap", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ettercap_web", + "fields": { + "name": "Web", + "desc": "Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing. As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect also ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, vulnerability to fire damage, and immunity to bludgeoning, poison, and psychic damage.\n", + "parent": "srd_ettercap", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ettin_battleaxe", + "fields": { + "name": "Battleaxe", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", + "parent": "srd_ettin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ettin_morningstar", + "fields": { + "name": "Morningstar", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) piercing damage.\n", + "parent": "srd_ettin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ettin_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The ettin makes two attacks: one with its battleaxe and one with its morningstar.\n", + "parent": "srd_ettin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_fire-elemental_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The elemental makes two touch attacks.\n", + "parent": "srd_fire-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_fire-elemental_touch", + "fields": { + "name": "Touch", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 (1d10) fire damage at the start of each of its turns.\n", + "parent": "srd_fire-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_fire-giant_greatsword", + "fields": { + "name": "Greatsword", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 28 (6d6 + 7) slashing damage.\n", + "parent": "srd_fire-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_fire-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greatsword attacks.\n", + "parent": "srd_fire-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_fire-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +11 to hit, range 60/240 ft., one target. Hit: 29 (4d10 + 7) bludgeoning damage.\n", + "parent": "srd_fire-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_flesh-golem_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The golem makes two slam attacks.\n", + "parent": "srd_flesh-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_flesh-golem_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_flesh-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_flying-sword_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage.\n", + "parent": "srd_flying-sword", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_frost-giant_greataxe", + "fields": { + "name": "Greataxe", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 25 (3d12 + 6) slashing damage.\n", + "parent": "srd_frost-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_frost-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greataxe attacks.\n", + "parent": "srd_frost-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_frost-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", + "parent": "srd_frost-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gargoyle_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_gargoyle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gargoyle_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", + "parent": "srd_gargoyle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gargoyle_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The gargoyle makes two attacks: one with its bite and one with its claws.\n", + "parent": "srd_gargoyle", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gelatinous-cube_engulf", + "fields": { + "name": "Engulf", + "desc": "The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a DC 12 Dexterity saving throw.\n\nOn a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.\n\nOn a failed save, the cube enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.\n\nAn engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube.\n", + "parent": "srd_gelatinous-cube", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gelatinous-cube_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) acid damage.\n", + "parent": "srd_gelatinous-cube", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ghast_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 12 (2d8 + 3) piercing damage.\n", + "parent": "srd_ghast", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ghast_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a creature other than an undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ghast", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ghost_etherealness", + "fields": { + "name": "Etherealness", + "desc": "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.\n", + "parent": "srd_ghost", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ghost_horrifying-visage", + "fields": { + "name": "Horrifying Visage", + "desc": "Each non-undead creature within 60 feet of the ghost that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 × 10 years. A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.\n", + "parent": "srd_ghost", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ghost_possession", + "fields": { + "name": "Possession", + "desc": "One humanoid that the ghost can see within 5 feet of it must succeed on a DC 13 Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is incapacitated and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.\n\nThe possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends.\n", + "parent": "srd_ghost", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ghost_withering-touch", + "fields": { + "name": "Withering Touch", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 17 (4d6 + 3) necrotic damage.\n", + "parent": "srd_ghost", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ghoul_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) piercing damage.\n", + "parent": "srd_ghoul", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ghoul_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ghoul", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gibbering-mouther_bites", + "fields": { + "name": "Bites", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 17 (5d6) piercing damage. If the target is Medium or smaller, it must succeed on a DC 10 Strength saving throw or be knocked prone. If the target is killed by this damage, it is absorbed into the mouther.\n", + "parent": "srd_gibbering-mouther", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gibbering-mouther_blinding-spittle", + "fields": { + "name": "Blinding Spittle", + "desc": "The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the mouther's next turn.\n", + "parent": "srd_gibbering-mouther", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gibbering-mouther_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle.\n", + "parent": "srd_gibbering-mouther", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_glabrezu_fist", + "fields": { + "name": "Fist", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.\n", + "parent": "srd_glabrezu", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_glabrezu_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell.\n", + "parent": "srd_glabrezu", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_glabrezu_pincer", + "fields": { + "name": "Pincer", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a Medium or smaller creature, it is grappled (escape DC 15). The glabrezu has two pincers, each of which can grapple only one target.\n", + "parent": "srd_glabrezu", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gnoll_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\n", + "parent": "srd_gnoll", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gnoll_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", + "parent": "srd_gnoll", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gnoll_spear", + "fields": { + "name": "Spear", + "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", + "parent": "srd_gnoll", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gnome-deep-svirfneblin_poisoned-dart", + "fields": { + "name": "Poisoned Dart", + "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_gnome-deep-svirfneblin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gnome-deep-svirfneblin_war-pick", + "fields": { + "name": "War Pick", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", + "parent": "srd_gnome-deep-svirfneblin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_goblin_scimitar", + "fields": { + "name": "Scimitar", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", + "parent": "srd_goblin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_goblin_shortbow", + "fields": { + "name": "Shortbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_goblin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gold-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", + "parent": "srd_gold-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gold-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_gold-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gorgon_gore", + "fields": { + "name": "Gore", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 18 (2d12 + 5) piercing damage.\n", + "parent": "srd_gorgon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gorgon_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.\n", + "parent": "srd_gorgon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gorgon_petrifying-breath", + "fields": { + "name": "Petrifying Breath", + "desc": "The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw. On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.\n", + "parent": "srd_gorgon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gray-ooze_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage, and if the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", + "parent": "srd_gray-ooze", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_green-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage.\n", + "parent": "srd_green-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_green-dragon-wyrmling_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 11 Constitution saving throw, taking 21 (6d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_green-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_green-hag_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_green-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_green-hag_illusory-appearance", + "fields": { + "name": "Illusory Appearance", + "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the hag is disguised.\n", + "parent": "srd_green-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_green-hag_invisible-passage", + "fields": { + "name": "Invisible Passage", + "desc": "The hag magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.\n", + "parent": "srd_green-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_grick_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_grick", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_grick_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target.\n", + "parent": "srd_grick", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_grick_tentacles", + "fields": { + "name": "Tentacles", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.\n", + "parent": "srd_grick", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_griffon_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", + "parent": "srd_griffon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_griffon_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_griffon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_griffon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The griffon makes two attacks: one with its beak and one with its claws.\n", + "parent": "srd_griffon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_grimlock_spiked-bone-club", + "fields": { + "name": "Spiked Bone Club", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage.\n", + "parent": "srd_grimlock", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_guardian-naga_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one creature. Hit: 8 (1d8 + 4) piercing damage, and the target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_guardian-naga", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_guardian-naga_spit-poison", + "fields": { + "name": "Spit Poison", + "desc": "Ranged Weapon Attack: +8 to hit, range 15/30 ft., one creature. Hit: The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_guardian-naga", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gynosphinx_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_gynosphinx", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_gynosphinx_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The sphinx makes two claw attacks.\n", + "parent": "srd_gynosphinx", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_half-red-dragon-veteran_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The veteran exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_half-red-dragon-veteran_heavy-crossbow", + "fields": { + "name": "Heavy Crossbow", + "desc": "Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_half-red-dragon-veteran_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_half-red-dragon-veteran_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_half-red-dragon-veteran_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_harpy_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.\n", + "parent": "srd_harpy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_harpy_club", + "fields": { + "name": "Club", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.\n", + "parent": "srd_harpy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_harpy_luring-song", + "fields": { + "name": "Luring Song", + "desc": "The harpy sings a magical melody. Every humanoid and giant within 300 feet of the harpy that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is incapacitated.\n\nWhile charmed by the harpy, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.\n\nA target that successfully saves is immune to this harpy's song for the next 24 hours.\n", + "parent": "srd_harpy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_harpy_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The harpy makes two attacks: one with its claws and one with its club.\n", + "parent": "srd_harpy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hell-hound_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 7 (2d6) fire damage.\n", + "parent": "srd_hell-hound", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hell-hound_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The hound exhales fire in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_hell-hound", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hezrou_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", + "parent": "srd_hezrou", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hezrou_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_hezrou", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hezrou_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The hezrou makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_hezrou", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hill-giant_greatclub", + "fields": { + "name": "Greatclub", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 18 (3d8 + 5) bludgeoning damage.\n", + "parent": "srd_hill-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hill-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greatclub attacks.\n", + "parent": "srd_hill-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hill-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +8 to hit, range 60/240 ft., one target. Hit: 21 (3d10 + 5) bludgeoning damage.\n", + "parent": "srd_hill-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hippogriff_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", + "parent": "srd_hippogriff", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hippogriff_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", + "parent": "srd_hippogriff", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hippogriff_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The hippogriff makes two attacks: one with its beak and one with its claws.\n", + "parent": "srd_hippogriff", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hobgoblin_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", + "parent": "srd_hobgoblin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hobgoblin_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage, or 6 (1d10 + 1) slashing damage if used with two hands.\n", + "parent": "srd_hobgoblin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_homunculus_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or be poisoned for 1 minute. If the saving throw fails by 5 or more, the target is instead poisoned for 5 (1d10) minutes and unconscious while poisoned in this way.\n", + "parent": "srd_homunculus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_horned-devil_fork", + "fields": { + "name": "Fork", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (2d8 + 6) piercing damage.\n", + "parent": "srd_horned-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_horned-devil_hurl-flame", + "fields": { + "name": "Hurl Flame", + "desc": "Ranged Spell Attack: +7 to hit, range 150 ft., one target. Hit: 14 (4d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", + "parent": "srd_horned-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_horned-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack.\n", + "parent": "srd_horned-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_horned-devil_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 10 (1d8 + 6) piercing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 17 Constitution saving throw or lose 10 (3d6) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 (3d6). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", + "parent": "srd_horned-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hydra_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 10 (1d10 + 5) piercing damage.\n", + "parent": "srd_hydra", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_hydra_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The hydra makes as many bite attacks as it has heads.\n", + "parent": "srd_hydra", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ice-devil_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) piercing damage plus 10 (3d6) cold damage.\n", + "parent": "srd_ice-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ice-devil_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 10 (2d4 + 5) slashing damage plus 10 (3d6) cold damage.\n", + "parent": "srd_ice-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ice-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes three attacks: one with its bite, one with its claws, and one with its tail.\n", + "parent": "srd_ice-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ice-devil_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage.\n", + "parent": "srd_ice-devil", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ice-devil_wall-of-ice", + "fields": { + "name": "Wall of Ice", + "desc": "The devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.\n\nWhen the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.\n\nThe wall lasts for 1 minute or until the devil is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.\n", + "parent": "srd_ice-devil", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ice-mephit_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage.\n", + "parent": "srd_ice-mephit", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ice-mephit_frost-breath", + "fields": { + "name": "Frost Breath", + "desc": "The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ice-mephit", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_imp_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The imp magically turns invisible until it attacks or until its concentration ends (as if concentrating on a spell). Any equipment the imp wears or carries is invisible with it.\n", + "parent": "srd_imp", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_imp_sting", + "fields": { + "name": "Sting", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_imp", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_imp_sting-bite-in-beast-form", + "fields": { + "name": "Sting (Bite in Beast Form)", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_imp", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_invisible-stalker_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The stalker makes two slam attacks.\n", + "parent": "srd_invisible-stalker", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_invisible-stalker_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", + "parent": "srd_invisible-stalker", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_iron-golem_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The golem makes two melee attacks.\n", + "parent": "srd_iron-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_iron-golem_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_iron-golem", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_iron-golem_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", + "parent": "srd_iron-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_iron-golem_sword", + "fields": { + "name": "Sword", + "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 23 (3d10 + 7) slashing damage.\n", + "parent": "srd_iron-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_kobold_dagger", + "fields": { + "name": "Dagger", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", + "parent": "srd_kobold", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_kobold_sling", + "fields": { + "name": "Sling", + "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.\n", + "parent": "srd_kobold", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_kraken_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +17 to hit, reach 5 ft., one target. Hit: 23 (3d8 + 10) piercing damage. If the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the kraken, and it takes 42 (12d6) acid damage at the start of each of the kraken's turns.\n\nIf the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a DC 25 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_kraken_fling", + "fields": { + "name": "Fling", + "desc": "One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_kraken_lightning-storm", + "fields": { + "name": "Lightning Storm", + "desc": "The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_kraken_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The kraken makes three tentacle attacks, each of which it can replace with one use of Fling.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_kraken_tentacle", + "fields": { + "name": "Tentacle", + "desc": "Melee Weapon Attack: +17 to hit, reach 30 ft., one target. Hit: 20 (3d6 + 10) bludgeoning damage, and the target is grappled (escape DC 18). Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_lamia_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", + "parent": "srd_lamia", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_lamia_dagger", + "fields": { + "name": "Dagger", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.\n", + "parent": "srd_lamia", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_lamia_intoxicating-touch", + "fields": { + "name": "Intoxicating Touch", + "desc": "Melee Spell Attack: +5 to hit, reach 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.\n", + "parent": "srd_lamia", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_lamia_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch.\n", + "parent": "srd_lamia", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_lemure_fist", + "fields": { + "name": "Fist", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\n", + "parent": "srd_lemure", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_lich_paralyzing-touch", + "fields": { + "name": "Paralyzing Touch", + "desc": "Melee Spell Attack: +12 to hit, reach 5 ft., one creature. Hit: 10 (3d6) cold damage. The target must succeed on a DC 18 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_lich", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_lizardfolk_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_lizardfolk_heavy-club", + "fields": { + "name": "Heavy Club", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_lizardfolk_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_lizardfolk_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The lizardfolk makes two melee attacks, each one with a different weapon.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_lizardfolk_spiked-shield", + "fields": { + "name": "Spiked Shield", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_magma-mephit_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage.\n", + "parent": "srd_magma-mephit", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_magma-mephit_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The mephit exhales a 15-foot cone of fire. Each creature in that area must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_magma-mephit", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_magmin_touch", + "fields": { + "name": "Touch", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d6) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 3 (1d6) fire damage at the end of each of its turns.\n", + "parent": "srd_magmin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_manticore_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", + "parent": "srd_manticore", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_manticore_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", + "parent": "srd_manticore", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_manticore_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes.\n", + "parent": "srd_manticore", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_manticore_tail-spike", + "fields": { + "name": "Tail Spike", + "desc": "Ranged Weapon Attack: +5 to hit, range 100/200 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", + "parent": "srd_manticore", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_marilith_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_marilith", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_marilith_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The marilith makes seven attacks: six with its longswords and one with its tail.\n", + "parent": "srd_marilith", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_marilith_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 15 (2d10 + 4) bludgeoning damage. If the target is Medium or smaller, it is grappled (escape DC 19). Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.\n", + "parent": "srd_marilith", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_marilith_teleport", + "fields": { + "name": "Teleport", + "desc": "The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", + "parent": "srd_marilith", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_medusa_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +5 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage.\n", + "parent": "srd_medusa", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_medusa_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The medusa makes either three melee attacks—one with its snake hair and two with its shortsword—or two ranged attacks with its longbow.\n", + "parent": "srd_medusa", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_medusa_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_medusa", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_medusa_snake-hair", + "fields": { + "name": "Snake Hair", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage plus 14 (4d6) poison damage.\n", + "parent": "srd_medusa", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_merfolk_spear", + "fields": { + "name": "Spear", + "desc": "Melee or Ranged Weapon Attack: +2 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hands to make a melee attack.\n", + "parent": "srd_merfolk", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_merrow_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", + "parent": "srd_merrow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_merrow_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (2d4 + 4) slashing damage.\n", + "parent": "srd_merrow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_merrow_harpoon", + "fields": { + "name": "Harpoon", + "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.\n", + "parent": "srd_merrow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_merrow_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The merrow makes two attacks: one with its bite and one with its claws or harpoon.\n", + "parent": "srd_merrow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_mimic_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage.\n", + "parent": "srd_mimic", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_mimic_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait.\n", + "parent": "srd_mimic", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_minotaur-skeleton_gore", + "fields": { + "name": "Gore", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", + "parent": "srd_minotaur-skeleton", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_minotaur-skeleton_greataxe", + "fields": { + "name": "Greataxe", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", + "parent": "srd_minotaur-skeleton", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_minotaur_gore", + "fields": { + "name": "Gore", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", + "parent": "srd_minotaur", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_minotaur_greataxe", + "fields": { + "name": "Greataxe", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", + "parent": "srd_minotaur", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_mummy-lord_dreadful-glare", + "fields": { + "name": "Dreadful Glare", + "desc": "The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a DC 16 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours.\n", + "parent": "srd_mummy-lord", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_mummy-lord_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", + "parent": "srd_mummy-lord", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_mummy-lord_rotting-fist", + "fields": { + "name": "Rotting Fist", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage plus 21 (6d6) necrotic damage. If the target is a creature, it must succeed on a DC 16 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", + "parent": "srd_mummy-lord", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_mummy_dreadful-glare", + "fields": { + "name": "Dreadful Glare", + "desc": "The mummy targets one creature it can see within 60 feet of it. If the target can see the mummy, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.\n", + "parent": "srd_mummy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_mummy_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", + "parent": "srd_mummy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_mummy_rotting-fist", + "fields": { + "name": "Rotting Fist", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage. If the target is a creature, it must succeed on a DC 12 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", + "parent": "srd_mummy", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_nalfeshnee_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 32 (5d10 + 5) piercing damage.\n", + "parent": "srd_nalfeshnee", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_nalfeshnee_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) slashing damage.\n", + "parent": "srd_nalfeshnee", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_nalfeshnee_horror-nimbus", + "fields": { + "name": "Horror Nimbus", + "desc": "The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.\n", + "parent": "srd_nalfeshnee", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_nalfeshnee_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_nalfeshnee", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_nalfeshnee_teleport", + "fields": { + "name": "Teleport", + "desc": "The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", + "parent": "srd_nalfeshnee", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_night-hag_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies.\n", + "parent": "srd_night-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_night-hag_claws", + "fields": { + "name": "Claws", + "desc": "(Hag Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_night-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_night-hag_etherealness", + "fields": { + "name": "Etherealness", + "desc": "The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession.\n", + "parent": "srd_night-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_night-hag_nightmare-haunting", + "fields": { + "name": "Nightmare Haunting", + "desc": "While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle. As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.\n", + "parent": "srd_night-hag", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_nightmare_ethereal-stride", + "fields": { + "name": "Ethereal Stride", + "desc": "The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.\n", + "parent": "srd_nightmare", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_nightmare_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage.\n", + "parent": "srd_nightmare", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ochre-jelly_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage.\n", + "parent": "srd_ochre-jelly", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ogre-zombie_morningstar", + "fields": { + "name": "Morningstar", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_ogre-zombie", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ogre_greatclub", + "fields": { + "name": "Greatclub", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_ogre", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_ogre_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", + "parent": "srd_ogre", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_oni_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size.\n", + "parent": "srd_oni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_oni_claw", + "fields": { + "name": "Claw", + "desc": "(Oni Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", + "parent": "srd_oni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_oni_glaive", + "fields": { + "name": "Glaive", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small or Medium form.\n", + "parent": "srd_oni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_oni_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The oni makes two attacks, either with its claws or its glaive.\n", + "parent": "srd_oni", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_orc_greataxe", + "fields": { + "name": "Greataxe", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.\n", + "parent": "srd_orc", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_orc_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_orc", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_otyugh_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 12 (2d8 + 3) piercing damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured.\n", + "parent": "srd_otyugh", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_otyugh_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The otyugh makes three attacks: one with its bite and two with its tentacles.\n", + "parent": "srd_otyugh", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_otyugh_tentacle", + "fields": { + "name": "Tentacle", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage. If the target is Medium or smaller, it is grappled (escape DC 13) and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.\n", + "parent": "srd_otyugh", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_otyugh_tentacle-slam", + "fields": { + "name": "Tentacle Slam", + "desc": "The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the otyugh's next turn. On a successful save, the target takes half the bludgeoning damage and isn't stunned.\n", + "parent": "srd_otyugh", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_owlbear_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one creature. Hit: 10 (1d10 + 5) piercing damage.\n", + "parent": "srd_owlbear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_owlbear_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", + "parent": "srd_owlbear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_owlbear_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The owlbear makes two attacks: one with its beak and one with its claws.\n", + "parent": "srd_owlbear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_pegasus_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_pegasus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_pit-fiend_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) piercing damage. The target must succeed on a DC 21 Constitution saving throw or become poisoned. While poisoned in this way, the target can't regain hit points, and it takes 21 (6d6) poison damage at the start of each of its turns. The poisoned target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_pit-fiend_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 17 (2d8 + 8) slashing damage.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_pit-fiend_mace", + "fields": { + "name": "Mace", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) bludgeoning damage plus 21 (6d6) fire damage.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_pit-fiend_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_pit-fiend_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 24 (3d10 + 8) bludgeoning damage.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_planetar_greatsword", + "fields": { + "name": "Greatsword", + "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage.\n", + "parent": "srd_planetar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_planetar_healing-touch", + "fields": { + "name": "Healing Touch", + "desc": "The planetar touches another creature. The target magically regains 30 (6d8 + 3) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", + "parent": "srd_planetar", + "uses_type": "PER_DAY", + "uses_param": 4 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_planetar_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The planetar makes two melee attacks.\n", + "parent": "srd_planetar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_plesiosaurus_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 14 (3d6 + 4) piercing damage.\n", + "parent": "srd_plesiosaurus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_pseudodragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", + "parent": "srd_pseudodragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_pseudodragon_sting", + "fields": { + "name": "Sting", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. If the saving throw fails by 5 or more, the target falls unconscious for the same duration, or until it takes damage or another creature uses an action to shake it awake.\n", + "parent": "srd_pseudodragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_purple-worm_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 22 (3d8 + 9) piercing damage. If the target is a Large or smaller creature, it must succeed on a DC 19 Dexterity saving throw or be swallowed by the worm. A swallowed creature is blinded and restrained, it has total cover against attacks and other effects outside the worm, and it takes 21 (6d6) acid damage at the start of each of the worm's turns.\n\nIf the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a DC 21 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 20 feet of movement, exiting prone.\n", + "parent": "srd_purple-worm", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_purple-worm_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The worm makes two attacks: one with its bite and one with its stinger.\n", + "parent": "srd_purple-worm", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_purple-worm_tail-stinger", + "fields": { + "name": "Tail Stinger", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 19 (3d6 + 9) piercing damage, and the target must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_purple-worm", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_quasit_claws-bite-in-beast-form", + "fields": { + "name": "Claws (Bite in Beast Form)", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must succeed on a DC 10 Constitution saving throw or take 5 (2d4) poison damage and become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_quasit", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_quasit_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The quasit magically turns invisible until it attacks or uses Scare, or until its concentration ends (as if concentrating on a spell). Any equipment the quasit wears or carries is invisible with it.\n", + "parent": "srd_quasit", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_quasit_scare", + "fields": { + "name": "Scare", + "desc": "One creature of the quasit's choice within 20 feet of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.\n", + "parent": "srd_quasit", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_rakshasa_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature. The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a remove curse spell or similar magic.\n", + "parent": "srd_rakshasa", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_rakshasa_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The rakshasa makes two claw attacks.\n", + "parent": "srd_rakshasa", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_red-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage.\n", + "parent": "srd_red-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_red-dragon-wyrmling_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_red-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_remorhaz_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage. If the target is a creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.\n", + "parent": "srd_remorhaz", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_remorhaz_swallow", + "fields": { + "name": "Swallow", + "desc": "The remorhaz makes one bite attack against a Medium or smaller creature it is grappling. If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the remorhaz, and it takes 21 (6d6) acid damage at the start of each of the remorhaz's turns.\n\nIf the remorhaz takes 30 damage or more on a single turn from a creature inside it, the remorhaz must succeed on a DC 15 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the remorhaz. If the remorhaz dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", + "parent": "srd_remorhaz", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_roc_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 27 (4d8 + 9) piercing damage.\n", + "parent": "srd_roc", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_roc_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The roc makes two attacks: one with its beak and one with its talons.\n", + "parent": "srd_roc", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_roc_talons", + "fields": { + "name": "Talons", + "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 23 (4d6 + 9) slashing damage, and the target is grappled (escape DC 19). Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.\n", + "parent": "srd_roc", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_roper_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 22 (4d8 + 4) piercing damage.\n", + "parent": "srd_roper", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_roper_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite.\n", + "parent": "srd_roper", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_roper_reel", + "fields": { + "name": "Reel", + "desc": "The roper pulls each creature grappled by it up to 25 feet straight toward it.\n", + "parent": "srd_roper", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_roper_tendril", + "fields": { + "name": "Tendril", + "desc": "Melee Weapon Attack: +7 to hit, reach 50 ft., one creature. Hit: The target is grappled (escape DC 15). Until the grapple ends, the target is restrained and has disadvantage on Strength checks and Strength saving throws, and the roper can't use the same tendril on another target.\n", + "parent": "srd_roper", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_rug-of-smothering_smother", + "fields": { + "name": "Smother", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one Medium or smaller creature. Hit: The creature is grappled (escape DC 13). Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 (2d6 + 3) bludgeoning damage.\n", + "parent": "srd_rug-of-smothering", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_rust-monster_antennae", + "fields": { + "name": "Antennae", + "desc": "The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the rust monster's touch. If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.\n", + "parent": "srd_rust-monster", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_rust-monster_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", + "parent": "srd_rust-monster", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_sahuagin_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) piercing damage.\n", + "parent": "srd_sahuagin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_sahuagin_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) slashing damage.\n", + "parent": "srd_sahuagin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_sahuagin_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The sahuagin makes two melee attacks: one with its bite and one with its claws or spear.\n", + "parent": "srd_sahuagin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_sahuagin_spear", + "fields": { + "name": "Spear", + "desc": "Melee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.\n", + "parent": "srd_sahuagin", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_salamander_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The salamander makes two attacks: one with its spear and one with its tail.\n", + "parent": "srd_salamander", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_salamander_spear", + "fields": { + "name": "Spear", + "desc": "Melee or Ranged Weapon Attack: +7 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", + "parent": "srd_salamander", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_salamander_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage, and the target is grappled (escape DC 14). Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.\n", + "parent": "srd_salamander", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_satyr_ram", + "fields": { + "name": "Ram", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) bludgeoning damage.\n", + "parent": "srd_satyr", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_satyr_shortbow", + "fields": { + "name": "Shortbow", + "desc": "Ranged Weapon Attack: +5 to hit, range 80/320 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_satyr", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_satyr_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_satyr", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_sea-hag_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", + "parent": "srd_sea-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_sea-hag_death-glare", + "fields": { + "name": "Death Glare", + "desc": "The hag targets one frightened creature she can see within 30 feet of her. If the target can see the hag, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.\n", + "parent": "srd_sea-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_sea-hag_illusory-appearance", + "fields": { + "name": "Illusory Appearance", + "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 16 Intelligence (Investigation) check to discern that the hag is disguised.\n", + "parent": "srd_sea-hag", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_shadow_strength-drain", + "fields": { + "name": "Strength Drain", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) necrotic damage, and the target's Strength score is reduced by 1d4. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.\n\nIf a non-evil humanoid dies from this attack, a new shadow rises from the corpse 1d4 hours later.\n", + "parent": "srd_shadow", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_shambling-mound_engulf", + "fields": { + "name": "Engulf", + "desc": "The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must succeed on a DC 14 Constitution saving throw at the start of each of the mound's turns or take 13 (2d8 + 4) bludgeoning damage. If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time.\n", + "parent": "srd_shambling-mound", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_shambling-mound_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is grappled (escape DC 14), and the shambling mound uses its Engulf on it.\n", + "parent": "srd_shambling-mound", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_shambling-mound_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_shambling-mound", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_shield-guardian_fist", + "fields": { + "name": "Fist", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_shield-guardian", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_shield-guardian_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The guardian makes two fist attacks.\n", + "parent": "srd_shield-guardian", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_silver-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", + "parent": "srd_silver-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_silver-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_silver-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_skeleton_shortbow", + "fields": { + "name": "Shortbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_skeleton", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_skeleton_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_skeleton", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_solar_flying-sword", + "fields": { + "name": "Flying Sword", + "desc": "The solar releases its greatsword to hover magically in an unoccupied space within 5 feet of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 feet and either make one attack against a target or return to the solar's hands. If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies.\n", + "parent": "srd_solar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_solar_greatsword", + "fields": { + "name": "Greatsword", + "desc": "Melee Weapon Attack: +15 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) slashing damage plus 27 (6d8) radiant damage.\n", + "parent": "srd_solar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_solar_healing-touch", + "fields": { + "name": "Healing Touch", + "desc": "The solar touches another creature. The target magically regains 40 (8d8 + 4) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", + "parent": "srd_solar", + "uses_type": "PER_DAY", + "uses_param": 4 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_solar_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The solar makes two greatsword attacks.\n", + "parent": "srd_solar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_solar_slaying-longbow", + "fields": { + "name": "Slaying Longbow", + "desc": "Ranged Weapon Attack: +13 to hit, range 150/600 ft., one target. Hit: 15 (2d8 + 6) piercing damage plus 27 (6d8) radiant damage. If the target is a creature that has 100 hit points or fewer, it must succeed on a DC 15 Constitution saving throw or die.\n", + "parent": "srd_solar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_specter_life-drain", + "fields": { + "name": "Life Drain", + "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) necrotic damage. The target must succeed on a DC 10 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "parent": "srd_specter", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_spirit-naga_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 7 (1d6 + 4) piercing damage, and the target must make a DC 13 Constitution saving throw, taking 31 (7d8) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_spirit-naga", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_sprite_heart-sight", + "fields": { + "name": "Heart Sight", + "desc": "The sprite touches a creature and magically knows the creature's current emotional state. If the target fails a DC 10 Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.\n", + "parent": "srd_sprite", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_sprite_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The sprite magically turns invisible until it attacks or casts a spell, or until its concentration ends (as if concentrating on a spell). Any equipment the sprite wears or carries is invisible with it.\n", + "parent": "srd_sprite", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_sprite_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 1 slashing damage.\n", + "parent": "srd_sprite", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_sprite_shortbow", + "fields": { + "name": "Shortbow", + "desc": "Ranged Weapon Attack: +6 to hit, range 40/160 ft., one target. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or become poisoned for 1 minute. If its saving throw result is 5 or lower, the poisoned target falls unconscious for the same duration, or until it takes damage or another creature takes an action to shake it awake.\n", + "parent": "srd_sprite", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_steam-mephit_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 2 (1d4) slashing damage plus 2 (1d4) fire damage.\n", + "parent": "srd_steam-mephit", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_steam-mephit_steam-breath", + "fields": { + "name": "Steam Breath", + "desc": "The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 4 (1d8) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_steam-mephit", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_stirge_blood-drain", + "fields": { + "name": "Blood Drain", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 5 (1d4 + 3) piercing damage, and the stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 (1d4 + 3) hit points due to blood loss.\n\nThe stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies. A creature, including the target, can use its action to detach the stirge.\n", + "parent": "srd_stirge", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_stone-giant_greatclub", + "fields": { + "name": "Greatclub", + "desc": "Melee Weapon Attack: +9 to hit, reach 15 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", + "parent": "srd_stone-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_stone-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greatclub attacks.\n", + "parent": "srd_stone-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_stone-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage. If the target is a creature, it must succeed on a DC 17 Strength saving throw or be knocked prone.\n", + "parent": "srd_stone-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_stone-golem_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The golem makes two slam attacks.\n", + "parent": "srd_stone-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_stone-golem_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", + "parent": "srd_stone-golem", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_stone-golem_slow", + "fields": { + "name": "Slow", + "desc": "The golem targets one or more creatures it can see within 10 feet of it. Each target must make a DC 17 Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_stone-golem", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_storm-giant_greatsword", + "fields": { + "name": "Greatsword", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 30 (6d6 + 9) slashing damage.\n", + "parent": "srd_storm-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_storm-giant_lightning-strike", + "fields": { + "name": "Lightning Strike", + "desc": "The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a DC 17 Dexterity saving throw, taking 54 (12d8) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_storm-giant", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_storm-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greatsword attacks.\n", + "parent": "srd_storm-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_storm-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +14 to hit, range 60/240 ft., one target. Hit: 35 (4d12 + 9) bludgeoning damage.\n", + "parent": "srd_storm-giant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_succubusincubus_charm", + "fields": { + "name": "Charm", + "desc": "One humanoid the fiend can see within 30 feet of it must succeed on a DC 15 Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the fiend's verbal or telepathic commands. If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.\n\nThe fiend can have only one target charmed at a time. If it charms another, the effect on the previous target ends.\n", + "parent": "srd_succubusincubus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_succubusincubus_claw", + "fields": { + "name": "Claw", + "desc": "(Fiend Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", + "parent": "srd_succubusincubus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_succubusincubus_draining-kiss", + "fields": { + "name": "Draining Kiss", + "desc": "The fiend kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "parent": "srd_succubusincubus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_succubusincubus_etherealness", + "fields": { + "name": "Etherealness", + "desc": "The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa.\n", + "parent": "srd_succubusincubus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 36 (4d12 + 10) piercing damage. If the target is a creature, it is grappled (escape DC 20). Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +19 to hit, reach 15 ft., one target. Hit: 28 (4d8 + 10) slashing damage.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_horns", + "fields": { + "name": "Horns", + "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 32 (4d10 + 10) piercing damage.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_swallow", + "fields": { + "name": "Swallow", + "desc": "The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the tarrasque, and it takes 56 (16d6) acid damage at the start of each of the tarrasque's turns.\n\nIf the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a DC 20 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 30 feet of movement, exiting prone.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +19 to hit, reach 20 ft., one target. Hit: 24 (4d6 + 10) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be knocked prone.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_treant_animate-trees", + "fields": { + "name": "Animate Trees", + "desc": "The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a treant, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.\n", + "parent": "srd_treant", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_treant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The treant makes two slam attacks.\n", + "parent": "srd_treant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_treant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +10 to hit, range 60/180 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", + "parent": "srd_treant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_treant_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 16 (3d6 + 6) bludgeoning damage.\n", + "parent": "srd_treant", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_triceratops_gore", + "fields": { + "name": "Gore", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 24 (4d8 + 6) piercing damage.\n", + "parent": "srd_triceratops", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_triceratops_stomp", + "fields": { + "name": "Stomp", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.\n", + "parent": "srd_triceratops", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_troll_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) piercing damage.\n", + "parent": "srd_troll", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_troll_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_troll", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_troll_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The troll makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_troll", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_tyrannosaurus-rex_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 33 (4d12 + 7) piercing damage. If the target is a Medium or smaller creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.\n", + "parent": "srd_tyrannosaurus-rex", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_tyrannosaurus-rex_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target.\n", + "parent": "srd_tyrannosaurus-rex", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_tyrannosaurus-rex_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", + "parent": "srd_tyrannosaurus-rex", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_unicorn_healing-touch", + "fields": { + "name": "Healing Touch", + "desc": "The unicorn touches another creature with its horn. The target magically regains 11 (2d8 + 2) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target.\n", + "parent": "srd_unicorn", + "uses_type": "PER_DAY", + "uses_param": 3 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_unicorn_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_unicorn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_unicorn_horn", + "fields": { + "name": "Horn", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", + "parent": "srd_unicorn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_unicorn_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The unicorn makes two attacks: one with its hooves and one with its horn.\n", + "parent": "srd_unicorn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_unicorn_teleport", + "fields": { + "name": "Teleport", + "desc": "The unicorn magically teleports itself and up to three willing creatures it can see within 5 feet of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away.\n", + "parent": "srd_unicorn", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_vampire-spawn_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "parent": "srd_vampire-spawn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_vampire-spawn_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 8 (2d4 + 3) slashing damage. Instead of dealing damage, the vampire can grapple the target (escape DC 13).\n", + "parent": "srd_vampire-spawn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_vampire-spawn_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The vampire makes two attacks, only one of which can be a bite attack.\n", + "parent": "srd_vampire-spawn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_vampire_bite", + "fields": { + "name": "Bite", + "desc": "(Bat or Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 7 (1d6 + 4) piercing damage plus 10 (3d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a vampire spawn under the vampire's control.\n", + "parent": "srd_vampire", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_vampire_charm", + "fields": { + "name": "Charm", + "desc": "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a DC 17 Wisdom saving throw against this magic or be charmed by the vampire. The charmed target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.\n\nEach time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect.\n", + "parent": "srd_vampire", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_vampire_children-of-the-night", + "fields": { + "name": "Children of the Night", + "desc": "The vampire magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the vampire can call 3d6 wolves instead. The called creatures arrive in 1d4 rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action.\n", + "parent": "srd_vampire", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_vampire_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Vampire Form Only). The vampire makes two attacks, only one of which can be a bite attack.\n", + "parent": "srd_vampire", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_vampire_unarmed-strike", + "fields": { + "name": "Unarmed Strike", + "desc": "(Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one creature. Hit: 8 (1d8 + 4) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape DC 18).\n", + "parent": "srd_vampire", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_violet-fungus_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The fungus makes 1d4 Rotting Touch attacks.\n", + "parent": "srd_violet-fungus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_violet-fungus_rotting-touch", + "fields": { + "name": "Rotting Touch", + "desc": "Melee Weapon Attack: +2 to hit, reach 10 ft., one creature. Hit: 4 (1d8) necrotic damage.\n", + "parent": "srd_violet-fungus", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_vrock_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", + "parent": "srd_vrock", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_vrock_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The vrock makes two attacks: one with its beak and one with its talons.\n", + "parent": "srd_vrock", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_vrock_spores", + "fields": { + "name": "Spores", + "desc": "A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.\n", + "parent": "srd_vrock", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_vrock_stunning-screech", + "fields": { + "name": "Stunning Screech", + "desc": "The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must succeed on a DC 14 Constitution saving throw or be stunned until the end of the vrock's next turn.\n", + "parent": "srd_vrock", + "uses_type": "PER_DAY", + "uses_param": 1 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_vrock_talons", + "fields": { + "name": "Talons", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", + "parent": "srd_vrock", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_warhorse-skeleton_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_warhorse-skeleton", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_water-elemental_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The elemental makes two slam attacks.\n", + "parent": "srd_water-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_water-elemental_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_water-elemental", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_water-elemental_whelm", + "fields": { + "name": "Whelm", + "desc": "Each creature in the elemental's space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the elemental's space.\n\nThe elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a DC 14 Strength and succeeding.\n", + "parent": "srd_water-elemental", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 4 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_werebear_bite", + "fields": { + "name": "Bite", + "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage. If the target is a humanoid, it must succeed on a DC 14 Constitution saving throw or be cursed with werebear lycanthropy.\n", + "parent": "srd_werebear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_werebear_claw", + "fields": { + "name": "Claw", + "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_werebear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_werebear_greataxe", + "fields": { + "name": "Greataxe", + "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) slashing damage.\n", + "parent": "srd_werebear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_werebear_multiattack", + "fields": { + "name": "Multiattack", + "desc": "In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid.\n", + "parent": "srd_werebear", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wereboar_maul", + "fields": { + "name": "Maul", + "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", + "parent": "srd_wereboar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wereboar_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Humanoid or Hybrid Form Only). The wereboar makes two attacks, only one of which can be with its tusks.\n", + "parent": "srd_wereboar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wereboar_tusks", + "fields": { + "name": "Tusks", + "desc": "(Boar or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with wereboar lycanthropy.\n", + "parent": "srd_wereboar", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wererat_bite", + "fields": { + "name": "Bite", + "desc": "(Rat or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 11 Constitution saving throw or be cursed with wererat lycanthropy.\n", + "parent": "srd_wererat", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wererat_hand-crossbow", + "fields": { + "name": "Hand Crossbow", + "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_wererat", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wererat_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Humanoid or Hybrid Form Only). The wererat makes two attacks, only one of which can be a bite.\n", + "parent": "srd_wererat", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wererat_shortsword", + "fields": { + "name": "Shortsword", + "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_wererat", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_weretiger_bite", + "fields": { + "name": "Bite", + "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage. If the target is a humanoid, it must succeed on a DC 13 Constitution saving throw or be cursed with weretiger lycanthropy.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_weretiger_claw", + "fields": { + "name": "Claw", + "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_weretiger_longbow", + "fields": { + "name": "Longbow", + "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_weretiger_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Humanoid or Hybrid Form Only). In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_weretiger_scimitar", + "fields": { + "name": "Scimitar", + "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_werewolf_bite", + "fields": { + "name": "Bite", + "desc": "(Wolf or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with werewolf lycanthropy.\n", + "parent": "srd_werewolf", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_werewolf_claws", + "fields": { + "name": "Claws", + "desc": "(Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 7 (2d4 + 2) slashing damage.\n", + "parent": "srd_werewolf", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_werewolf_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Humanoid or Hybrid Form Only). The werewolf makes two attacks: one with its bite and one with its claws or spear.\n", + "parent": "srd_werewolf", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_werewolf_spear", + "fields": { + "name": "Spear", + "desc": "(Humanoid Form Only). Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", + "parent": "srd_werewolf", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_white-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage.\n", + "parent": "srd_white-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_white-dragon-wyrmling_cold-breath", + "fields": { + "name": "Cold Breath", + "desc": "The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a DC 12 Constitution saving throw, taking 22 (5d8) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_white-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wight_life-drain", + "fields": { + "name": "Life Drain", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 5 (1d6 + 2) necrotic damage. The target must succeed on a DC 13 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n\nA humanoid slain by this attack rises 24 hours later as a zombie under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time.\n", + "parent": "srd_wight", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wight_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", + "parent": "srd_wight", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wight_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage, or 7 (1d10 + 2) slashing damage if used with two hands.\n", + "parent": "srd_wight", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wight_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack.\n", + "parent": "srd_wight", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_will-o-wisp_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The will-o'-wisp and its light magically become invisible until it attacks or uses its Consume Life, or until its concentration ends (as if concentrating on a spell).\n", + "parent": "srd_will-o-wisp", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_will-o-wisp_shock", + "fields": { + "name": "Shock", + "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d8) lightning damage.\n", + "parent": "srd_will-o-wisp", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wraith_create-specter", + "fields": { + "name": "Create Specter", + "desc": "The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the wraith's control. The wraith can have no more than seven specters under its control at one time.\n", + "parent": "srd_wraith", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wraith_life-drain", + "fields": { + "name": "Life Drain", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 21 (4d8 + 3) necrotic damage. The target must succeed on a DC 14 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "parent": "srd_wraith", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wyvern_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\n", + "parent": "srd_wyvern", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wyvern_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_wyvern", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wyvern_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack.\n", + "parent": "srd_wyvern", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_wyvern_stinger", + "fields": { + "name": "Stinger", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage. The target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_wyvern", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_xorn_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (3d6 + 3) piercing damage.\n", + "parent": "srd_xorn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_xorn_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", + "parent": "srd_xorn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_xorn_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The xorn makes three claw attacks and one bite attack.\n", + "parent": "srd_xorn", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-black-dragon_acid-breath", + "fields": { + "name": "Acid Breath", + "desc": "The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-black-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-black-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.\n", + "parent": "srd_young-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-black-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-black-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-black-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-blue-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.\n", + "parent": "srd_young-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-blue-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", + "parent": "srd_young-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-blue-dragon_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-blue-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-blue-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-blue-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-brass-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", + "parent": "srd_young-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-brass-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", + "parent": "srd_young-brass-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-brass-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-brass-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-brass-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-bronze-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.\n", + "parent": "srd_young-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-bronze-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.\n", + "parent": "srd_young-bronze-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-bronze-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", + "parent": "srd_young-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-bronze-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-bronze-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-copper-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", + "parent": "srd_young-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-copper-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", + "parent": "srd_young-copper-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-copper-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-copper-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-copper-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-gold-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", + "parent": "srd_young-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-gold-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_young-gold-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-gold-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_young-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-gold-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-gold-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-green-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.\n", + "parent": "srd_young-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-green-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-green-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-green-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-green-dragon_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-green-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-red-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.\n", + "parent": "srd_young-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-red-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_young-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-red-dragon_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-red-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-red-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-red-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-silver-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", + "parent": "srd_young-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-silver-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_young-silver-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-silver-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_young-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-silver-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-silver-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-white-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.\n", + "parent": "srd_young-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-white-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-white-dragon_cold-breath", + "fields": { + "name": "Cold Breath", + "desc": "The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-white-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_young-white-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-white-dragon", + "uses_type": null, + "uses_param": null + } + }, + { + "model": "api_v2.creatureaction", + "pk": "srd_zombie_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.\n", + "parent": "srd_zombie", + "uses_type": null, + "uses_param": null + } + } +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json index a4728c69..68a076ab 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json @@ -1,8494 +1,8494 @@ [ -{ - "model": "api_v2.creatureactionattack", - "pk": "aboleth_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "aboleth_tail", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "aboleth_tentacle-attack", - "fields": { - "name": "Tentacle attack", - "parent": "aboleth_tentacle", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-black-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "adult-black-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-black-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "adult-black-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-black-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "adult-black-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-blue-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "adult-blue-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 7, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D10", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-blue-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "adult-blue-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 7, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-blue-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "adult-blue-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 7, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-brass-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "adult-brass-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-brass-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "adult-brass-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-brass-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "adult-brass-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-bronze-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "adult-bronze-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 7, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-bronze-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "adult-bronze-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 7, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-bronze-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "adult-bronze-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 7, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-copper-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "adult-copper-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-copper-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "adult-copper-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-copper-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "adult-copper-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-gold-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "adult-gold-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-gold-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "adult-gold-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-gold-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "adult-gold-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-green-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "adult-green-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-green-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "adult-green-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-green-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "adult-green-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-red-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "adult-red-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-red-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "adult-red-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-red-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "adult-red-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-silver-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "adult-silver-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-silver-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "adult-silver-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-silver-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "adult-silver-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-white-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "adult-white-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-white-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "adult-white-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "adult-white-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "adult-white-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "air-elemental_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "air-elemental_slam", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-black-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ancient-black-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-black-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "ancient-black-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-black-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "ancient-black-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-blue-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ancient-blue-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 16, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 9, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D10", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-blue-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "ancient-blue-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 16, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 9, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-blue-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "ancient-blue-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 16, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 9, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-brass-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ancient-brass-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-brass-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "ancient-brass-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-brass-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "ancient-brass-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-bronze-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ancient-bronze-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 16, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 9, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-bronze-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "ancient-bronze-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 16, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 9, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-bronze-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "ancient-bronze-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 16, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 9, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-copper-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ancient-copper-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-copper-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "ancient-copper-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-copper-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "ancient-copper-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-gold-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ancient-gold-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 10, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-gold-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "ancient-gold-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 10, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-gold-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "ancient-gold-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 10, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-green-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ancient-green-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-green-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "ancient-green-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-green-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "ancient-green-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-red-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ancient-red-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 10, - "damage_type": "piercing", - "extra_damage_die_count": 4, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-red-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "ancient-red-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 10, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-red-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "ancient-red-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 10, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-silver-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ancient-silver-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 10, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-silver-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "ancient-silver-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 10, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-silver-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "ancient-silver-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 10, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-white-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ancient-white-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-white-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "ancient-white-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ancient-white-dragon_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "ancient-white-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "androsphinx_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "androsphinx_claw", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "animated-armor_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "animated-armor_slam", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ankheg_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ankheg_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "azer_warhammer-attack", - "fields": { - "name": "Warhammer attack", - "parent": "azer_warhammer", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "azer_warhammer-attack-if-used-with-two-hands", - "fields": { - "name": "Warhammer attack (if used with two hands)", - "parent": "azer_warhammer", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "balor_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "balor_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "balor_whip-attack", - "fields": { - "name": "Whip attack", - "parent": "balor_whip", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 30, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "barbed-devil_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "barbed-devil_claw", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "barbed-devil_hurl-flame-attack", - "fields": { - "name": "Hurl Flame attack", - "parent": "barbed-devil_hurl-flame", - "attack_type": "SPELL", - "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "fire", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "fire" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "barbed-devil_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "barbed-devil_tail", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "basilisk_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "basilisk_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "bearded-devil_beard-attack", - "fields": { - "name": "Beard attack", - "parent": "bearded-devil_beard", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "bearded-devil_glaive-attack", - "fields": { - "name": "Glaive attack", - "parent": "bearded-devil_glaive", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "behir_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "behir_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "behir_constrict-attack", - "fields": { - "name": "Constrict attack", - "parent": "behir_constrict", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D10", - "extra_damage_bonus": 6, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "black-dragon-wyrmling_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "black-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D4", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "black-pudding_pseudopod-attack", - "fields": { - "name": "Pseudopod attack", - "parent": "black-pudding_pseudopod", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": 4, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "blue-dragon-wyrmling_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "blue-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "bone-devil_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "bone-devil_claw", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "bone-devil_sting-attack", - "fields": { - "name": "Sting attack", - "parent": "bone-devil_sting", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 5, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "brass-dragon-wyrmling_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "brass-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "bronze-dragon-wyrmling_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "bronze-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "bugbear_javelin-attack-at-range", - "fields": { - "name": "Javelin attack (at range)", - "parent": "bugbear_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "bugbear_javelin-attack-in-melee", - "fields": { - "name": "Javelin attack (in melee)", - "parent": "bugbear_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "bugbear_morningstar-attack", - "fields": { - "name": "Morningstar attack", - "parent": "bugbear_morningstar", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "bulette_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "bulette_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D12", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "centaur_hooves-attack", - "fields": { - "name": "Hooves attack", - "parent": "centaur_hooves", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "centaur_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "centaur_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "centaur_pike-attack", - "fields": { - "name": "Pike attack", - "parent": "centaur_pike", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "chain-devil_chain-attack", - "fields": { - "name": "Chain attack", - "parent": "chain-devil_chain", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "chimera_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "chimera_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "chimera_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "chimera_claws", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "chimera_horns-attack", - "fields": { - "name": "Horns attack", - "parent": "chimera_horns", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D12", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "chuul_pincer-attack", - "fields": { - "name": "Pincer attack", - "parent": "chuul_pincer", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "clay-golem_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "clay-golem_slam", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "cloaker_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "cloaker_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "cloaker_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "cloaker_tail", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "cloud-giant_morningstar-attack", - "fields": { - "name": "Morningstar attack", - "parent": "cloud-giant_morningstar", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "cloud-giant_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "cloud-giant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "cockatrice_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "cockatrice_bite", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "copper-dragon-wyrmling_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "copper-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "couatl_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "couatl_bite", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "couatl_constrict-attack", - "fields": { - "name": "Constrict attack", - "parent": "couatl_constrict", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "darkmantle_crush-attack", - "fields": { - "name": "Crush attack", - "parent": "darkmantle_crush", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "deva_mace-attack", - "fields": { - "name": "Mace attack", - "parent": "deva_mace", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": 4, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "djinni_scimitar-attack-lightning-damage", - "fields": { - "name": "Scimitar attack (lightning damage)", - "parent": "djinni_scimitar", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "djinni_scimitar-attack-thunder-damage", - "fields": { - "name": "Scimitar attack (thunder damage)", - "parent": "djinni_scimitar", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "doppelganger_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "doppelganger_slam", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "dragon-turtle_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "dragon-turtle_bite", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D12", - "damage_bonus": 7, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "dragon-turtle_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "dragon-turtle_claw", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 7, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "dragon-turtle_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "dragon-turtle_tail", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D12", - "damage_bonus": 7, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "dretch_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "dretch_bite", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "dretch_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "dretch_claws", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 0, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "drider_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "drider_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "drider_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "drider_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "drider_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "drider_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "drider_longsword-attack-if-used-with-two-hands", - "fields": { - "name": "Longsword attack (if used with two hands)", - "parent": "drider_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "dryad_club-attack", - "fields": { - "name": "Club attack", - "parent": "dryad_club", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 0, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "dryad_club-attack-with-shillelagh", - "fields": { - "name": "Club attack (with shillelagh)", - "parent": "dryad_club", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "duergar_javelin-attack", - "fields": { - "name": "Javelin attack", - "parent": "duergar_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "duergar_javelin-attack-while-enlarged", - "fields": { - "name": "Javelin attack (while enlarged)", - "parent": "duergar_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "duergar_war-pick-attack", - "fields": { - "name": "War Pick attack", - "parent": "duergar_war-pick", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "duergar_war-pick-attack-while-enlarged", - "fields": { - "name": "War Pick attack (while enlarged)", - "parent": "duergar_war-pick", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "dust-mephit_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "dust-mephit_claws", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "earth-elemental_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "earth-elemental_slam", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "efreeti_hurl-flame-attack", - "fields": { - "name": "Hurl Flame attack", - "parent": "efreeti_hurl-flame", - "attack_type": "SPELL", - "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 5, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "fire", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "fire" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "efreeti_scimitar-attack", - "fields": { - "name": "Scimitar attack", - "parent": "efreeti_scimitar", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "elf-drow_hand-crossbow-attack", - "fields": { - "name": "Hand Crossbow attack", - "parent": "elf-drow_hand-crossbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "elf-drow_shortsword-attack", - "fields": { - "name": "Shortsword attack", - "parent": "elf-drow_shortsword", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "erinyes_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "erinyes_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "erinyes_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "erinyes_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "erinyes_longsword-attack-if-used-with-two-hands", - "fields": { - "name": "Longsword attack (if used with two hands)", - "parent": "erinyes_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ettercap_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ettercap_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ettercap_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "ettercap_claws", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ettercap_web-attack", - "fields": { - "name": "Web attack", - "parent": "ettercap_web", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30, - "long_range_ft": 60, - "target_creature_only": true, - "damage_die_count": null, - "damage_die_type": null, - "damage_bonus": null, - "damage_type": null, - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": null - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ettin_battleaxe-attack", - "fields": { - "name": "Battleaxe attack", - "parent": "ettin_battleaxe", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ettin_morningstar-attack", - "fields": { - "name": "Morningstar attack", - "parent": "ettin_morningstar", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "fire-elemental_touch-attack", - "fields": { - "name": "Touch attack", - "parent": "fire-elemental_touch", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "fire", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "fire" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "fire-giant_greatsword-attack", - "fields": { - "name": "Greatsword attack", - "parent": "fire-giant_greatsword", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 6, - "damage_die_type": "D6", - "damage_bonus": 7, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "fire-giant_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "fire-giant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D10", - "damage_bonus": 7, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "flesh-golem_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "flesh-golem_slam", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "flying-sword_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "flying-sword_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "frost-giant_greataxe-attack", - "fields": { - "name": "Greataxe attack", - "parent": "frost-giant_greataxe", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D12", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "frost-giant_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "frost-giant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gargoyle_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "gargoyle_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gargoyle_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "gargoyle_claws", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gelatinous-cube_pseudopod-attack", - "fields": { - "name": "Pseudopod attack", - "parent": "gelatinous-cube_pseudopod", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "acid", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "acid" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ghast_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ghast_bite", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ghast_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "ghast_claws", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ghost_withering-touch-attack", - "fields": { - "name": "Withering Touch attack", - "parent": "ghost_withering-touch", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "necrotic", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "necrotic" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ghoul_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ghoul_bite", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ghoul_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "ghoul_claws", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gibbering-mouther_bites-attack", - "fields": { - "name": "Bites attack", - "parent": "gibbering-mouther_bites", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 5, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "glabrezu_fist-attack", - "fields": { - "name": "Fist attack", - "parent": "glabrezu_fist", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "glabrezu_pincer-attack", - "fields": { - "name": "Pincer attack", - "parent": "glabrezu_pincer", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gnoll_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "gnoll_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gnoll_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "gnoll_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gnoll_spear-attack", - "fields": { - "name": "Spear attack", - "parent": "gnoll_spear", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gnoll_spear-attack-if-used-with-two-hands", - "fields": { - "name": "Spear attack (if used with two hands)", - "parent": "gnoll_spear", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gnome-deep-svirfneblin_poisoned-dart-attack", - "fields": { - "name": "Poisoned Dart attack", - "parent": "gnome-deep-svirfneblin_poisoned-dart", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gnome-deep-svirfneblin_war-pick-attack", - "fields": { - "name": "War Pick attack", - "parent": "gnome-deep-svirfneblin_war-pick", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "goblin_scimitar-attack", - "fields": { - "name": "Scimitar attack", - "parent": "goblin_scimitar", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "goblin_shortbow-attack", - "fields": { - "name": "Shortbow attack", - "parent": "goblin_shortbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gold-dragon-wyrmling_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "gold-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gorgon_gore-attack", - "fields": { - "name": "Gore attack", - "parent": "gorgon_gore", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D12", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gorgon_hooves-attack", - "fields": { - "name": "Hooves attack", - "parent": "gorgon_hooves", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gray-ooze_pseudopod-attack", - "fields": { - "name": "Pseudopod attack", - "parent": "gray-ooze_pseudopod", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 1, - "damage_type": "bludgeoning", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "green-dragon-wyrmling_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "green-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "green-hag_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "green-hag_claws", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "grick_beak-attack", - "fields": { - "name": "Beak attack", - "parent": "grick_beak", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "grick_tentacles-attack", - "fields": { - "name": "Tentacles attack", - "parent": "grick_tentacles", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "griffon_beak-attack", - "fields": { - "name": "Beak attack", - "parent": "griffon_beak", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "griffon_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "griffon_claws", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "grimlock_spiked-bone-club-attack", - "fields": { - "name": "Spiked Bone Club attack", - "parent": "grimlock_spiked-bone-club", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D4", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "guardian-naga_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "guardian-naga_bite", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "guardian-naga_spit-poison-attack", - "fields": { - "name": "Spit Poison attack", - "parent": "guardian-naga_spit-poison", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 15, - "long_range_ft": 30, - "target_creature_only": true, - "damage_die_count": null, - "damage_die_type": null, - "damage_bonus": null, - "damage_type": null, - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": null - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "gynosphinx_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "gynosphinx_claw", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "half-red-dragon-veteran_heavy-crossbow-attack", - "fields": { - "name": "Heavy Crossbow attack", - "parent": "half-red-dragon-veteran_heavy-crossbow", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "half-red-dragon-veteran_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "half-red-dragon-veteran_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "half-red-dragon-veteran_longsword-attack-if-used-with-two-hands", - "fields": { - "name": "Longsword attack (if used with two hands)", - "parent": "half-red-dragon-veteran_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "half-red-dragon-veteran_shortsword-attack", - "fields": { - "name": "Shortsword attack", - "parent": "half-red-dragon-veteran_shortsword", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "harpy_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "harpy_claws", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "harpy_club-attack", - "fields": { - "name": "Club attack", - "parent": "harpy_club", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "hell-hound_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "hell-hound_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "hezrou_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "hezrou_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "hezrou_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "hezrou_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "hill-giant_greatclub-attack", - "fields": { - "name": "Greatclub attack", - "parent": "hill-giant_greatclub", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "hill-giant_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "hill-giant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "hippogriff_beak-attack", - "fields": { - "name": "Beak attack", - "parent": "hippogriff_beak", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "hippogriff_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "hippogriff_claws", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "hobgoblin_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "hobgoblin_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "hobgoblin_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "hobgoblin_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "hobgoblin_longsword-attack-if-used-with-two-hands", - "fields": { - "name": "Longsword attack (if used with two hands)", - "parent": "hobgoblin_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "homunculus_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "homunculus_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 0, - "damage_die_type": null, - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "horned-devil_fork-attack", - "fields": { - "name": "Fork attack", - "parent": "horned-devil_fork", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "horned-devil_hurl-flame-attack", - "fields": { - "name": "Hurl Flame attack", - "parent": "horned-devil_hurl-flame", - "attack_type": "SPELL", - "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "fire", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "fire" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "horned-devil_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "horned-devil_tail", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "hydra_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "hydra_bite", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ice-devil_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "ice-devil_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ice-devil_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "ice-devil_claws", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ice-devil_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "ice-devil_tail", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ice-mephit_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "ice-mephit_claws", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D4", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "imp_stingbite-attack", - "fields": { - "name": "Sting/Bite attack", - "parent": "imp_sting-bite-in-beast-form", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "invisible-stalker_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "invisible-stalker_slam", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "iron-golem_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "iron-golem_slam", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 7, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "iron-golem_sword-attack", - "fields": { - "name": "Sword attack", - "parent": "iron-golem_sword", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D10", - "damage_bonus": 7, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "kobold_dagger-attack", - "fields": { - "name": "Dagger attack", - "parent": "kobold_dagger", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "kobold_sling-attack", - "fields": { - "name": "Sling attack", - "parent": "kobold_sling", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "kraken_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "kraken_bite", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 10, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "kraken_tentacle-attack", - "fields": { - "name": "Tentacle attack", - "parent": "kraken_tentacle", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 30, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 10, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "lamia_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "lamia_claws", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "lamia_dagger-attack", - "fields": { - "name": "Dagger attack", - "parent": "lamia_dagger", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "lamia_intoxicating-touch-attack", - "fields": { - "name": "Intoxicating Touch attack", - "parent": "lamia_intoxicating-touch", - "attack_type": "SPELL", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": null, - "damage_die_type": null, - "damage_bonus": null, - "damage_type": null, - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": null - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "lemure_fist-attack", - "fields": { - "name": "Fist attack", - "parent": "lemure_fist", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 0, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "lich_paralyzing-touch-attack", - "fields": { - "name": "Paralyzing Touch attack", - "parent": "lich_paralyzing-touch", - "attack_type": "SPELL", - "to_hit_mod": 12, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "cold", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "cold" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "lizardfolk_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "lizardfolk_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "lizardfolk_heavy-club-attack", - "fields": { - "name": "Heavy Club attack", - "parent": "lizardfolk_heavy-club", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "lizardfolk_javelin-attack", - "fields": { - "name": "Javelin attack", - "parent": "lizardfolk_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "lizardfolk_spiked-shield-attack", - "fields": { - "name": "Spiked Shield attack", - "parent": "lizardfolk_spiked-shield", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "magma-mephit_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "magma-mephit_claws", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D4", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "magmin_touch-attack", - "fields": { - "name": "Touch attack", - "parent": "magmin_touch", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "fire", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "fire" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "manticore_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "manticore_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "manticore_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "manticore_claw", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "manticore_tail-spike-attack", - "fields": { - "name": "Tail Spike attack", - "parent": "manticore_tail-spike", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 100, - "long_range_ft": 200, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "marilith_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "marilith_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "marilith_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "marilith_tail", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "medusa_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "medusa_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "medusa_shortsword-attack", - "fields": { - "name": "Shortsword attack", - "parent": "medusa_shortsword", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "medusa_snake-hair-attack", - "fields": { - "name": "Snake Hair attack", - "parent": "medusa_snake-hair", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": 4, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "merfolk_spear-attack", - "fields": { - "name": "Spear attack", - "parent": "merfolk_spear", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "merfolk_spear-attack-if-used-with-two-hands", - "fields": { - "name": "Spear attack (if used with two hands)", - "parent": "merfolk_spear", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "merrow_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "merrow_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "merrow_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "merrow_claws", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "merrow_harpoon-attack", - "fields": { - "name": "Harpoon attack", - "parent": "merrow_harpoon", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "mimic_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "mimic_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "mimic_pseudopod-attack", - "fields": { - "name": "Pseudopod attack", - "parent": "mimic_pseudopod", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "minotaur-skeleton_gore-attack", - "fields": { - "name": "Gore attack", - "parent": "minotaur-skeleton_gore", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "minotaur-skeleton_greataxe-attack", - "fields": { - "name": "Greataxe attack", - "parent": "minotaur-skeleton_greataxe", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D12", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "minotaur_gore-attack", - "fields": { - "name": "Gore attack", - "parent": "minotaur_gore", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "minotaur_greataxe-attack", - "fields": { - "name": "Greataxe attack", - "parent": "minotaur_greataxe", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D12", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "mummy-lord_rotting-fist-attack", - "fields": { - "name": "Rotting Fist attack", - "parent": "mummy-lord_rotting-fist", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": 6, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "mummy_rotting-fist-attack", - "fields": { - "name": "Rotting Fist attack", - "parent": "mummy_rotting-fist", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "nalfeshnee_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "nalfeshnee_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 5, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "nalfeshnee_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "nalfeshnee_claw", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "night-hag_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "night-hag_claws", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "nightmare_hooves-attack", - "fields": { - "name": "Hooves attack", - "parent": "nightmare_hooves", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ochre-jelly_pseudopod-attack", - "fields": { - "name": "Pseudopod attack", - "parent": "ochre-jelly_pseudopod", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "bludgeoning", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ogre-zombie_morningstar-attack", - "fields": { - "name": "Morningstar attack", - "parent": "ogre-zombie_morningstar", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ogre_greatclub-attack", - "fields": { - "name": "Greatclub attack", - "parent": "ogre_greatclub", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "ogre_javelin-attack", - "fields": { - "name": "Javelin attack", - "parent": "ogre_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "oni_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "oni_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "oni_glaive-attack", - "fields": { - "name": "Glaive attack", - "parent": "oni_glaive", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "oni_glaive-attack-in-small-or-medium-form", - "fields": { - "name": "Glaive attack (in Small or Medium form)", - "parent": "oni_glaive", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "orc_greataxe-attack", - "fields": { - "name": "Greataxe attack", - "parent": "orc_greataxe", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D12", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "orc_javelin-attack", - "fields": { - "name": "Javelin attack", - "parent": "orc_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "otyugh_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "otyugh_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "otyugh_tentacle-attack", - "fields": { - "name": "Tentacle attack", - "parent": "otyugh_tentacle", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "owlbear_beak-attack", - "fields": { - "name": "Beak attack", - "parent": "owlbear_beak", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "owlbear_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "owlbear_claws", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "pegasus_hooves-attack", - "fields": { - "name": "Hooves attack", - "parent": "pegasus_hooves", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "pit-fiend_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "pit-fiend_bite", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "pit-fiend_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "pit-fiend_claw", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "pit-fiend_mace-attack", - "fields": { - "name": "Mace attack", - "parent": "pit-fiend_mace", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": 6, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "pit-fiend_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "pit-fiend_tail", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "planetar_greatsword-attack", - "fields": { - "name": "Greatsword attack", - "parent": "planetar_greatsword", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 7, - "damage_type": "slashing", - "extra_damage_die_count": 5, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "plesiosaurus_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "plesiosaurus_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "pseudodragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "pseudodragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "pseudodragon_sting-attack", - "fields": { - "name": "Sting attack", - "parent": "pseudodragon_sting", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "purple-worm_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "purple-worm_bite", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 9, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "purple-worm_tail-stinger-attack", - "fields": { - "name": "Tail Stinger attack", - "parent": "purple-worm_tail-stinger", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 9, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "quasit_clawsbite-attack", - "fields": { - "name": "Claws/Bite attack", - "parent": "quasit_claws-bite-in-beast-form", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "rakshasa_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "rakshasa_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "red-dragon-wyrmling_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "red-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "remorhaz_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "remorhaz_bite", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 6, - "damage_die_type": "D10", - "damage_bonus": 7, - "damage_type": "piercing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "roc_beak-attack", - "fields": { - "name": "Beak attack", - "parent": "roc_beak", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D8", - "damage_bonus": 9, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "roc_talons-attack", - "fields": { - "name": "Talons attack", - "parent": "roc_talons", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 9, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "roper_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "roper_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "roper_tendril-attack", - "fields": { - "name": "Tendril attack", - "parent": "roper_tendril", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 50, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": null, - "damage_die_type": null, - "damage_bonus": null, - "damage_type": null, - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": null - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "rug-of-smothering_smother-attack", - "fields": { - "name": "Smother attack", - "parent": "rug-of-smothering_smother", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": null, - "damage_die_type": null, - "damage_bonus": null, - "damage_type": null, - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": null - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "rust-monster_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "rust-monster_bite", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "sahuagin_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "sahuagin_bite", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "sahuagin_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "sahuagin_claws", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "sahuagin_spear-attack", - "fields": { - "name": "Spear attack", - "parent": "sahuagin_spear", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "sahuagin_spear-attack-if-used-with-two-hands", - "fields": { - "name": "Spear attack (if used with two hands)", - "parent": "sahuagin_spear", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "salamander_spear-attack", - "fields": { - "name": "Spear attack", - "parent": "salamander_spear", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "salamander_spear-attack-if-used-with-two-hands", - "fields": { - "name": "Spear attack (if used with two hands)", - "parent": "salamander_spear", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "salamander_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "salamander_tail", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "satyr_ram-attack", - "fields": { - "name": "Ram attack", - "parent": "satyr_ram", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "satyr_shortbow-attack", - "fields": { - "name": "Shortbow attack", - "parent": "satyr_shortbow", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "satyr_shortsword-attack", - "fields": { - "name": "Shortsword attack", - "parent": "satyr_shortsword", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "sea-hag_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "sea-hag_claws", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "shadow_strength-drain-attack", - "fields": { - "name": "Strength Drain attack", - "parent": "shadow_strength-drain", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "necrotic", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "necrotic" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "shambling-mound_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "shambling-mound_slam", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "shield-guardian_fist-attack", - "fields": { - "name": "Fist attack", - "parent": "shield-guardian_fist", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "silver-dragon-wyrmling_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "silver-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "skeleton_shortbow-attack", - "fields": { - "name": "Shortbow attack", - "parent": "skeleton_shortbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "skeleton_shortsword-attack", - "fields": { - "name": "Shortsword attack", - "parent": "skeleton_shortsword", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "solar_greatsword-attack", - "fields": { - "name": "Greatsword attack", - "parent": "solar_greatsword", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": 6, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "solar_slaying-longbow-attack", - "fields": { - "name": "Slaying Longbow attack", - "parent": "solar_slaying-longbow", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": 6, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "specter_life-drain-attack", - "fields": { - "name": "Life Drain attack", - "parent": "specter_life-drain", - "attack_type": "SPELL", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "necrotic", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "necrotic" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "spirit-naga_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "spirit-naga_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "sprite_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "sprite_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 0, - "damage_die_type": null, - "damage_bonus": 0, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "sprite_shortbow-attack", - "fields": { - "name": "Shortbow attack", - "parent": "sprite_shortbow", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 40, - "long_range_ft": 160, - "target_creature_only": false, - "damage_die_count": 0, - "damage_die_type": null, - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "steam-mephit_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "steam-mephit_claws", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 0, - "damage_type": "slashing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D4", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "stirge_blood-drain-attack", - "fields": { - "name": "Blood Drain attack", - "parent": "stirge_blood-drain", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "stone-giant_greatclub-attack", - "fields": { - "name": "Greatclub attack", - "parent": "stone-giant_greatclub", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "stone-giant_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "stone-giant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "stone-golem_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "stone-golem_slam", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "storm-giant_greatsword-attack", - "fields": { - "name": "Greatsword attack", - "parent": "storm-giant_greatsword", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 6, - "damage_die_type": "D6", - "damage_bonus": 9, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "storm-giant_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "storm-giant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D12", - "damage_bonus": 9, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "succubusincubus_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "succubusincubus_claw", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "tarrasque_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "tarrasque_bite", - "attack_type": "WEAPON", - "to_hit_mod": 19, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D12", - "damage_bonus": 10, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "tarrasque_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "tarrasque_claw", - "attack_type": "WEAPON", - "to_hit_mod": 19, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D8", - "damage_bonus": 10, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "tarrasque_horns-attack", - "fields": { - "name": "Horns attack", - "parent": "tarrasque_horns", - "attack_type": "WEAPON", - "to_hit_mod": 19, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D10", - "damage_bonus": 10, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "tarrasque_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "tarrasque_tail", - "attack_type": "WEAPON", - "to_hit_mod": 19, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 10, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "treant_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "treant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 180, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "treant_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "treant_slam", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "triceratops_gore-attack", - "fields": { - "name": "Gore attack", - "parent": "triceratops_gore", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "triceratops_stomp-attack", - "fields": { - "name": "Stomp attack", - "parent": "triceratops_stomp", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 3, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "troll_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "troll_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "troll_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "troll_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "tyrannosaurus-rex_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "tyrannosaurus-rex_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D12", - "damage_bonus": 7, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "tyrannosaurus-rex_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "tyrannosaurus-rex_tail", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 7, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "unicorn_hooves-attack", - "fields": { - "name": "Hooves attack", - "parent": "unicorn_hooves", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "unicorn_horn-attack", - "fields": { - "name": "Horn attack", - "parent": "unicorn_horn", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "vampire-spawn_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "vampire-spawn_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "vampire-spawn_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "vampire-spawn_claws", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "vampire_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "vampire_bite", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "vampire_unarmed-strike-attack", - "fields": { - "name": "Unarmed Strike attack", - "parent": "vampire_unarmed-strike", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "violet-fungus_rotting-touch-attack", - "fields": { - "name": "Rotting Touch attack", - "parent": "violet-fungus_rotting-touch", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 0, - "damage_type": "necrotic", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "necrotic" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "vrock_beak-attack", - "fields": { - "name": "Beak attack", - "parent": "vrock_beak", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "vrock_talons-attack", - "fields": { - "name": "Talons attack", - "parent": "vrock_talons", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "warhorse-skeleton_hooves-attack", - "fields": { - "name": "Hooves attack", - "parent": "warhorse-skeleton_hooves", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "water-elemental_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "water-elemental_slam", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "werebear_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "werebear_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "werebear_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "werebear_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "werebear_greataxe-attack", - "fields": { - "name": "Greataxe attack", - "parent": "werebear_greataxe", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D12", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "wereboar_maul-attack", - "fields": { - "name": "Maul attack", - "parent": "wereboar_maul", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "wereboar_tusks-attack", - "fields": { - "name": "Tusks attack", - "parent": "wereboar_tusks", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "wererat_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "wererat_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "wererat_hand-crossbow-attack", - "fields": { - "name": "Hand Crossbow attack", - "parent": "wererat_hand-crossbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "wererat_shortsword-attack", - "fields": { - "name": "Shortsword attack", - "parent": "wererat_shortsword", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "weretiger_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "weretiger_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "weretiger_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "weretiger_claw", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "weretiger_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "weretiger_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "weretiger_scimitar-attack", - "fields": { - "name": "Scimitar attack", - "parent": "weretiger_scimitar", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "werewolf_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "werewolf_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "werewolf_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "werewolf_claws", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "werewolf_spear-attack", - "fields": { - "name": "Spear attack", - "parent": "werewolf_spear", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "werewolf_spear-attack-if-used-with-two-hands", - "fields": { - "name": "Spear attack (if used with two hands)", - "parent": "werewolf_spear", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "white-dragon-wyrmling_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "white-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D4", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "wight_life-drain-attack", - "fields": { - "name": "Life Drain attack", - "parent": "wight_life-drain", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "necrotic", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "necrotic" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "wight_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "wight_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "wight_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "wight_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "wight_longsword-attack-if-used-with-two-hands", - "fields": { - "name": "Longsword attack (if used with two hands)", - "parent": "wight_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "will-o-wisp_shock-attack", - "fields": { - "name": "Shock attack", - "parent": "will-o-wisp_shock", - "attack_type": "SPELL", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 0, - "damage_type": "lightning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "lightning" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "wraith_life-drain-attack", - "fields": { - "name": "Life Drain attack", - "parent": "wraith_life-drain", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 4, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "necrotic", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "necrotic" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "wyvern_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "wyvern_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "wyvern_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "wyvern_claws", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "wyvern_stinger-attack", - "fields": { - "name": "Stinger attack", - "parent": "wyvern_stinger", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "xorn_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "xorn_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "xorn_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "xorn_claw", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-black-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "young-black-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-black-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "young-black-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-blue-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "young-blue-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D10", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-blue-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "young-blue-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-brass-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "young-brass-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-brass-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "young-brass-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-bronze-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "young-bronze-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-bronze-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "young-bronze-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-copper-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "young-copper-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-copper-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "young-copper-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-gold-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "young-gold-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-gold-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "young-gold-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-green-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "young-green-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-green-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "young-green-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-red-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "young-red-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-red-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "young-red-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-silver-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "young-silver-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-silver-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "young-silver-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-white-dragon_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "young-white-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "young-white-dragon_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "young-white-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } -}, -{ - "model": "api_v2.creatureactionattack", - "pk": "zombie_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "zombie_slam", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 1, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } -} -] + { + "model": "api_v2.creatureactionattack", + "pk": "srd_aboleth_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_aboleth_tail", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_aboleth_tentacle_tentacle-attack", + "fields": { + "name": "Tentacle attack", + "parent": "srd_aboleth_tentacle", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-black-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-black-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-black-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-black-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-black-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-black-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-blue-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-blue-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 7, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D10", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-blue-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-blue-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 7, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-blue-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-blue-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 7, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-brass-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-brass-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-brass-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-brass-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-brass-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-brass-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-bronze-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-bronze-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 7, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-bronze-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-bronze-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 7, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-bronze-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-bronze-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 7, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-copper-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-copper-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-copper-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-copper-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-copper-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-copper-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-gold-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-gold-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-gold-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-gold-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-gold-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-gold-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-green-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-green-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-green-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-green-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-green-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-green-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-red-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-red-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-red-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-red-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-red-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-red-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-silver-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-silver-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-silver-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-silver-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-silver-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-silver-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-white-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-white-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-white-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-white-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-white-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-white-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_air-elemental_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_air-elemental_slam", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-black-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-black-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-black-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-black-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-black-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-black-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-blue-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-blue-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 16, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 9, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D10", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-blue-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-blue-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 16, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 9, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-blue-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-blue-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 16, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 9, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-brass-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-brass-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-brass-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-brass-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-brass-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-brass-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-bronze-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-bronze-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 16, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 9, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-bronze-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-bronze-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 16, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 9, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-bronze-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-bronze-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 16, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 9, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-copper-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-copper-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-copper-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-copper-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-copper-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-copper-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-gold-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-gold-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 10, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-gold-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-gold-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 10, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-gold-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-gold-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 10, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-green-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-green-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-green-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-green-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-green-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-green-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-red-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-red-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 10, + "damage_type": "piercing", + "extra_damage_die_count": 4, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-red-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-red-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 10, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-red-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-red-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 10, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-silver-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-silver-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 10, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-silver-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-silver-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 10, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-silver-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-silver-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 10, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-white-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-white-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-white-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-white-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-white-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-white-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_androsphinx_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_androsphinx_claw", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_animated-armor_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_animated-armor_slam", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ankheg_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ankheg_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_azer_warhammer_warhammer-attack", + "fields": { + "name": "Warhammer attack", + "parent": "srd_azer_warhammer", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_azer_warhammer_warhammer-attack-if-used-with-two-hands", + "fields": { + "name": "Warhammer attack (if used with two hands)", + "parent": "srd_azer_warhammer", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_balor_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_balor_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_balor_whip_whip-attack", + "fields": { + "name": "Whip attack", + "parent": "srd_balor_whip", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 30, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_barbed-devil_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_barbed-devil_claw", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_barbed-devil_hurl-flame_hurl-flame-attack", + "fields": { + "name": "Hurl Flame attack", + "parent": "srd_barbed-devil_hurl-flame", + "attack_type": "SPELL", + "to_hit_mod": 5, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "fire", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "fire" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_barbed-devil_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_barbed-devil_tail", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_basilisk_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_basilisk_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_bearded-devil_beard_beard-attack", + "fields": { + "name": "Beard attack", + "parent": "srd_bearded-devil_beard", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_bearded-devil_glaive_glaive-attack", + "fields": { + "name": "Glaive attack", + "parent": "srd_bearded-devil_glaive", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_behir_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_behir_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_behir_constrict_constrict-attack", + "fields": { + "name": "Constrict attack", + "parent": "srd_behir_constrict", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D10", + "extra_damage_bonus": 6, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_black-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_black-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D4", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_black-pudding_pseudopod_pseudopod-attack", + "fields": { + "name": "Pseudopod attack", + "parent": "srd_black-pudding_pseudopod", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": 4, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_blue-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_blue-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_bone-devil_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_bone-devil_claw", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_bone-devil_sting_sting-attack", + "fields": { + "name": "Sting attack", + "parent": "srd_bone-devil_sting", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 5, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_brass-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_brass-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_bronze-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_bronze-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_bugbear_javelin_javelin-attack-at-range", + "fields": { + "name": "Javelin attack (at range)", + "parent": "srd_bugbear_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_bugbear_javelin_javelin-attack-in-melee", + "fields": { + "name": "Javelin attack (in melee)", + "parent": "srd_bugbear_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_bugbear_morningstar_morningstar-attack", + "fields": { + "name": "Morningstar attack", + "parent": "srd_bugbear_morningstar", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_bulette_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_bulette_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D12", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_centaur_hooves_hooves-attack", + "fields": { + "name": "Hooves attack", + "parent": "srd_centaur_hooves", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_centaur_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_centaur_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_centaur_pike_pike-attack", + "fields": { + "name": "Pike attack", + "parent": "srd_centaur_pike", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_chain-devil_chain_chain-attack", + "fields": { + "name": "Chain attack", + "parent": "srd_chain-devil_chain", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_chimera_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_chimera_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_chimera_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_chimera_claws", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_chimera_horns_horns-attack", + "fields": { + "name": "Horns attack", + "parent": "srd_chimera_horns", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D12", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_chuul_pincer_pincer-attack", + "fields": { + "name": "Pincer attack", + "parent": "srd_chuul_pincer", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_clay-golem_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_clay-golem_slam", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_cloaker_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_cloaker_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_cloaker_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_cloaker_tail", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_cloud-giant_morningstar_morningstar-attack", + "fields": { + "name": "Morningstar attack", + "parent": "srd_cloud-giant_morningstar", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_cloud-giant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_cloud-giant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 240, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_cockatrice_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_cockatrice_bite", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_copper-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_copper-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_couatl_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_couatl_bite", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_couatl_constrict_constrict-attack", + "fields": { + "name": "Constrict attack", + "parent": "srd_couatl_constrict", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_darkmantle_crush_crush-attack", + "fields": { + "name": "Crush attack", + "parent": "srd_darkmantle_crush", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_deva_mace_mace-attack", + "fields": { + "name": "Mace attack", + "parent": "srd_deva_mace", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": 4, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_djinni_scimitar_scimitar-attack-lightning-damage", + "fields": { + "name": "Scimitar attack (lightning damage)", + "parent": "srd_djinni_scimitar", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_djinni_scimitar_scimitar-attack-thunder-damage", + "fields": { + "name": "Scimitar attack (thunder damage)", + "parent": "srd_djinni_scimitar", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_doppelganger_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_doppelganger_slam", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_dragon-turtle_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_dragon-turtle_bite", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D12", + "damage_bonus": 7, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_dragon-turtle_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_dragon-turtle_claw", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 7, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_dragon-turtle_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_dragon-turtle_tail", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D12", + "damage_bonus": 7, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_dretch_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_dretch_bite", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_dretch_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_dretch_claws", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 0, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_drider_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_drider_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_drider_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_drider_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_drider_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_drider_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_drider_longsword_longsword-attack-if-used-with-two-hands", + "fields": { + "name": "Longsword attack (if used with two hands)", + "parent": "srd_drider_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_dryad_club_club-attack", + "fields": { + "name": "Club attack", + "parent": "srd_dryad_club", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 0, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_dryad_club_club-attack-with-shillelagh", + "fields": { + "name": "Club attack (with shillelagh)", + "parent": "srd_dryad_club", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_duergar_javelin_javelin-attack", + "fields": { + "name": "Javelin attack", + "parent": "srd_duergar_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_duergar_javelin_javelin-attack-while-enlarged", + "fields": { + "name": "Javelin attack (while enlarged)", + "parent": "srd_duergar_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_duergar_war-pick_war-pick-attack", + "fields": { + "name": "War Pick attack", + "parent": "srd_duergar_war-pick", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_duergar_war-pick_war-pick-attack-while-enlarged", + "fields": { + "name": "War Pick attack (while enlarged)", + "parent": "srd_duergar_war-pick", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_dust-mephit_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_dust-mephit_claws", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_earth-elemental_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_earth-elemental_slam", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_efreeti_hurl-flame_hurl-flame-attack", + "fields": { + "name": "Hurl Flame attack", + "parent": "srd_efreeti_hurl-flame", + "attack_type": "SPELL", + "to_hit_mod": 7, + "reach_ft": null, + "range_ft": 120, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 5, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "fire", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "fire" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_efreeti_scimitar_scimitar-attack", + "fields": { + "name": "Scimitar attack", + "parent": "srd_efreeti_scimitar", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_elf-drow_hand-crossbow_hand-crossbow-attack", + "fields": { + "name": "Hand Crossbow attack", + "parent": "srd_elf-drow_hand-crossbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_elf-drow_shortsword_shortsword-attack", + "fields": { + "name": "Shortsword attack", + "parent": "srd_elf-drow_shortsword", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_erinyes_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_erinyes_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_erinyes_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_erinyes_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_erinyes_longsword_longsword-attack-if-used-with-two-hands", + "fields": { + "name": "Longsword attack (if used with two hands)", + "parent": "srd_erinyes_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ettercap_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ettercap_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ettercap_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_ettercap_claws", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ettercap_web_web-attack", + "fields": { + "name": "Web attack", + "parent": "srd_ettercap_web", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 30, + "long_range_ft": 60, + "target_creature_only": true, + "damage_die_count": null, + "damage_die_type": null, + "damage_bonus": null, + "damage_type": null, + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": null + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ettin_battleaxe_battleaxe-attack", + "fields": { + "name": "Battleaxe attack", + "parent": "srd_ettin_battleaxe", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ettin_morningstar_morningstar-attack", + "fields": { + "name": "Morningstar attack", + "parent": "srd_ettin_morningstar", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_fire-elemental_touch_touch-attack", + "fields": { + "name": "Touch attack", + "parent": "srd_fire-elemental_touch", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "fire", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "fire" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_fire-giant_greatsword_greatsword-attack", + "fields": { + "name": "Greatsword attack", + "parent": "srd_fire-giant_greatsword", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 6, + "damage_die_type": "D6", + "damage_bonus": 7, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_fire-giant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_fire-giant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 240, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D10", + "damage_bonus": 7, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_flesh-golem_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_flesh-golem_slam", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_flying-sword_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_flying-sword_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_frost-giant_greataxe_greataxe-attack", + "fields": { + "name": "Greataxe attack", + "parent": "srd_frost-giant_greataxe", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D12", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_frost-giant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_frost-giant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 240, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gargoyle_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_gargoyle_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gargoyle_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_gargoyle_claws", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gelatinous-cube_pseudopod_pseudopod-attack", + "fields": { + "name": "Pseudopod attack", + "parent": "srd_gelatinous-cube_pseudopod", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "acid", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "acid" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ghast_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ghast_bite", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ghast_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_ghast_claws", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ghost_withering-touch_withering-touch-attack", + "fields": { + "name": "Withering Touch attack", + "parent": "srd_ghost_withering-touch", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "necrotic", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "necrotic" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ghoul_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ghoul_bite", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ghoul_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_ghoul_claws", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gibbering-mouther_bites_bites-attack", + "fields": { + "name": "Bites attack", + "parent": "srd_gibbering-mouther_bites", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 5, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_glabrezu_fist_fist-attack", + "fields": { + "name": "Fist attack", + "parent": "srd_glabrezu_fist", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_glabrezu_pincer_pincer-attack", + "fields": { + "name": "Pincer attack", + "parent": "srd_glabrezu_pincer", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gnoll_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_gnoll_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gnoll_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_gnoll_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gnoll_spear_spear-attack", + "fields": { + "name": "Spear attack", + "parent": "srd_gnoll_spear", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": 20, + "long_range_ft": 60, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gnoll_spear_spear-attack-if-used-with-two-hands", + "fields": { + "name": "Spear attack (if used with two hands)", + "parent": "srd_gnoll_spear", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gnome-deep-svirfneblin_poisoned-dart_poisoned-dart-attack", + "fields": { + "name": "Poisoned Dart attack", + "parent": "srd_gnome-deep-svirfneblin_poisoned-dart", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gnome-deep-svirfneblin_war-pick_war-pick-attack", + "fields": { + "name": "War Pick attack", + "parent": "srd_gnome-deep-svirfneblin_war-pick", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_goblin_scimitar_scimitar-attack", + "fields": { + "name": "Scimitar attack", + "parent": "srd_goblin_scimitar", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_goblin_shortbow_shortbow-attack", + "fields": { + "name": "Shortbow attack", + "parent": "srd_goblin_shortbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 80, + "long_range_ft": 320, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gold-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_gold-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gorgon_gore_gore-attack", + "fields": { + "name": "Gore attack", + "parent": "srd_gorgon_gore", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D12", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gorgon_hooves_hooves-attack", + "fields": { + "name": "Hooves attack", + "parent": "srd_gorgon_hooves", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gray-ooze_pseudopod_pseudopod-attack", + "fields": { + "name": "Pseudopod attack", + "parent": "srd_gray-ooze_pseudopod", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 1, + "damage_type": "bludgeoning", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_green-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_green-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_green-hag_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_green-hag_claws", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_grick_beak_beak-attack", + "fields": { + "name": "Beak attack", + "parent": "srd_grick_beak", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_grick_tentacles_tentacles-attack", + "fields": { + "name": "Tentacles attack", + "parent": "srd_grick_tentacles", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_griffon_beak_beak-attack", + "fields": { + "name": "Beak attack", + "parent": "srd_griffon_beak", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_griffon_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_griffon_claws", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_grimlock_spiked-bone-club_spiked-bone-club-attack", + "fields": { + "name": "Spiked Bone Club attack", + "parent": "srd_grimlock_spiked-bone-club", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D4", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_guardian-naga_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_guardian-naga_bite", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_guardian-naga_spit-poison_spit-poison-attack", + "fields": { + "name": "Spit Poison attack", + "parent": "srd_guardian-naga_spit-poison", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": null, + "range_ft": 15, + "long_range_ft": 30, + "target_creature_only": true, + "damage_die_count": null, + "damage_die_type": null, + "damage_bonus": null, + "damage_type": null, + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": null + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_gynosphinx_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_gynosphinx_claw", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_half-red-dragon-veteran_heavy-crossbow_heavy-crossbow-attack", + "fields": { + "name": "Heavy Crossbow attack", + "parent": "srd_half-red-dragon-veteran_heavy-crossbow", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": null, + "range_ft": 100, + "long_range_ft": 400, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_half-red-dragon-veteran_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_half-red-dragon-veteran_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_half-red-dragon-veteran_longsword_longsword-attack-if-used-with-two-hands", + "fields": { + "name": "Longsword attack (if used with two hands)", + "parent": "srd_half-red-dragon-veteran_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_half-red-dragon-veteran_shortsword_shortsword-attack", + "fields": { + "name": "Shortsword attack", + "parent": "srd_half-red-dragon-veteran_shortsword", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_harpy_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_harpy_claws", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_harpy_club_club-attack", + "fields": { + "name": "Club attack", + "parent": "srd_harpy_club", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_hell-hound_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_hell-hound_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_hezrou_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_hezrou_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_hezrou_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_hezrou_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_hill-giant_greatclub_greatclub-attack", + "fields": { + "name": "Greatclub attack", + "parent": "srd_hill-giant_greatclub", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_hill-giant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_hill-giant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 240, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_hippogriff_beak_beak-attack", + "fields": { + "name": "Beak attack", + "parent": "srd_hippogriff_beak", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_hippogriff_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_hippogriff_claws", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_hobgoblin_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_hobgoblin_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_hobgoblin_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_hobgoblin_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_hobgoblin_longsword_longsword-attack-if-used-with-two-hands", + "fields": { + "name": "Longsword attack (if used with two hands)", + "parent": "srd_hobgoblin_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_homunculus_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_homunculus_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 0, + "damage_die_type": null, + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_horned-devil_fork_fork-attack", + "fields": { + "name": "Fork attack", + "parent": "srd_horned-devil_fork", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_horned-devil_hurl-flame_hurl-flame-attack", + "fields": { + "name": "Hurl Flame attack", + "parent": "srd_horned-devil_hurl-flame", + "attack_type": "SPELL", + "to_hit_mod": 7, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "fire", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "fire" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_horned-devil_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_horned-devil_tail", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_hydra_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_hydra_bite", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ice-devil_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ice-devil_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ice-devil_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_ice-devil_claws", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ice-devil_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ice-devil_tail", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ice-mephit_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_ice-mephit_claws", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D4", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_imp_sting-bite-in-beast-form_stingbite-attack", + "fields": { + "name": "Sting/Bite attack", + "parent": "srd_imp_sting-bite-in-beast-form", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_invisible-stalker_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_invisible-stalker_slam", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_iron-golem_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_iron-golem_slam", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 7, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_iron-golem_sword_sword-attack", + "fields": { + "name": "Sword attack", + "parent": "srd_iron-golem_sword", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D10", + "damage_bonus": 7, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_kobold_dagger_dagger-attack", + "fields": { + "name": "Dagger attack", + "parent": "srd_kobold_dagger", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_kobold_sling_sling-attack", + "fields": { + "name": "Sling attack", + "parent": "srd_kobold_sling", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_kraken_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_kraken_bite", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 10, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_kraken_tentacle_tentacle-attack", + "fields": { + "name": "Tentacle attack", + "parent": "srd_kraken_tentacle", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 30, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 10, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_lamia_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_lamia_claws", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_lamia_dagger_dagger-attack", + "fields": { + "name": "Dagger attack", + "parent": "srd_lamia_dagger", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_lamia_intoxicating-touch_intoxicating-touch-attack", + "fields": { + "name": "Intoxicating Touch attack", + "parent": "srd_lamia_intoxicating-touch", + "attack_type": "SPELL", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": null, + "damage_die_type": null, + "damage_bonus": null, + "damage_type": null, + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": null + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_lemure_fist_fist-attack", + "fields": { + "name": "Fist attack", + "parent": "srd_lemure_fist", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 0, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_lich_paralyzing-touch_paralyzing-touch-attack", + "fields": { + "name": "Paralyzing Touch attack", + "parent": "srd_lich_paralyzing-touch", + "attack_type": "SPELL", + "to_hit_mod": 12, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "cold", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "cold" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_lizardfolk_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_lizardfolk_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_lizardfolk_heavy-club_heavy-club-attack", + "fields": { + "name": "Heavy Club attack", + "parent": "srd_lizardfolk_heavy-club", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_lizardfolk_javelin_javelin-attack", + "fields": { + "name": "Javelin attack", + "parent": "srd_lizardfolk_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_lizardfolk_spiked-shield_spiked-shield-attack", + "fields": { + "name": "Spiked Shield attack", + "parent": "srd_lizardfolk_spiked-shield", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_magma-mephit_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_magma-mephit_claws", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D4", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_magmin_touch_touch-attack", + "fields": { + "name": "Touch attack", + "parent": "srd_magmin_touch", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "fire", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "fire" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_manticore_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_manticore_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_manticore_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_manticore_claw", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_manticore_tail-spike_tail-spike-attack", + "fields": { + "name": "Tail Spike attack", + "parent": "srd_manticore_tail-spike", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": null, + "range_ft": 100, + "long_range_ft": 200, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_marilith_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_marilith_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_marilith_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_marilith_tail", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_medusa_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_medusa_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_medusa_shortsword_shortsword-attack", + "fields": { + "name": "Shortsword attack", + "parent": "srd_medusa_shortsword", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_medusa_snake-hair_snake-hair-attack", + "fields": { + "name": "Snake Hair attack", + "parent": "srd_medusa_snake-hair", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": 4, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_merfolk_spear_spear-attack", + "fields": { + "name": "Spear attack", + "parent": "srd_merfolk_spear", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": 20, + "long_range_ft": 60, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_merfolk_spear_spear-attack-if-used-with-two-hands", + "fields": { + "name": "Spear attack (if used with two hands)", + "parent": "srd_merfolk_spear", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_merrow_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_merrow_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_merrow_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_merrow_claws", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_merrow_harpoon_harpoon-attack", + "fields": { + "name": "Harpoon attack", + "parent": "srd_merrow_harpoon", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": 20, + "long_range_ft": 60, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_mimic_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_mimic_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_mimic_pseudopod_pseudopod-attack", + "fields": { + "name": "Pseudopod attack", + "parent": "srd_mimic_pseudopod", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_minotaur-skeleton_gore_gore-attack", + "fields": { + "name": "Gore attack", + "parent": "srd_minotaur-skeleton_gore", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_minotaur-skeleton_greataxe_greataxe-attack", + "fields": { + "name": "Greataxe attack", + "parent": "srd_minotaur-skeleton_greataxe", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D12", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_minotaur_gore_gore-attack", + "fields": { + "name": "Gore attack", + "parent": "srd_minotaur_gore", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_minotaur_greataxe_greataxe-attack", + "fields": { + "name": "Greataxe attack", + "parent": "srd_minotaur_greataxe", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D12", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_mummy-lord_rotting-fist_rotting-fist-attack", + "fields": { + "name": "Rotting Fist attack", + "parent": "srd_mummy-lord_rotting-fist", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": 6, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_mummy_rotting-fist_rotting-fist-attack", + "fields": { + "name": "Rotting Fist attack", + "parent": "srd_mummy_rotting-fist", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_nalfeshnee_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_nalfeshnee_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 5, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_nalfeshnee_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_nalfeshnee_claw", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_night-hag_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_night-hag_claws", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_nightmare_hooves_hooves-attack", + "fields": { + "name": "Hooves attack", + "parent": "srd_nightmare_hooves", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ochre-jelly_pseudopod_pseudopod-attack", + "fields": { + "name": "Pseudopod attack", + "parent": "srd_ochre-jelly_pseudopod", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "bludgeoning", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ogre-zombie_morningstar_morningstar-attack", + "fields": { + "name": "Morningstar attack", + "parent": "srd_ogre-zombie_morningstar", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ogre_greatclub_greatclub-attack", + "fields": { + "name": "Greatclub attack", + "parent": "srd_ogre_greatclub", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_ogre_javelin_javelin-attack", + "fields": { + "name": "Javelin attack", + "parent": "srd_ogre_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_oni_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_oni_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_oni_glaive_glaive-attack", + "fields": { + "name": "Glaive attack", + "parent": "srd_oni_glaive", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_oni_glaive_glaive-attack-in-small-or-medium-form", + "fields": { + "name": "Glaive attack (in Small or Medium form)", + "parent": "srd_oni_glaive", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_orc_greataxe_greataxe-attack", + "fields": { + "name": "Greataxe attack", + "parent": "srd_orc_greataxe", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D12", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_orc_javelin_javelin-attack", + "fields": { + "name": "Javelin attack", + "parent": "srd_orc_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_otyugh_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_otyugh_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_otyugh_tentacle_tentacle-attack", + "fields": { + "name": "Tentacle attack", + "parent": "srd_otyugh_tentacle", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_owlbear_beak_beak-attack", + "fields": { + "name": "Beak attack", + "parent": "srd_owlbear_beak", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_owlbear_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_owlbear_claws", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_pegasus_hooves_hooves-attack", + "fields": { + "name": "Hooves attack", + "parent": "srd_pegasus_hooves", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_pit-fiend_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_pit-fiend_bite", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_pit-fiend_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_pit-fiend_claw", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_pit-fiend_mace_mace-attack", + "fields": { + "name": "Mace attack", + "parent": "srd_pit-fiend_mace", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": 6, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_pit-fiend_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_pit-fiend_tail", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_planetar_greatsword_greatsword-attack", + "fields": { + "name": "Greatsword attack", + "parent": "srd_planetar_greatsword", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 7, + "damage_type": "slashing", + "extra_damage_die_count": 5, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_plesiosaurus_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_plesiosaurus_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_pseudodragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_pseudodragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_pseudodragon_sting_sting-attack", + "fields": { + "name": "Sting attack", + "parent": "srd_pseudodragon_sting", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_purple-worm_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_purple-worm_bite", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 9, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_purple-worm_tail-stinger_tail-stinger-attack", + "fields": { + "name": "Tail Stinger attack", + "parent": "srd_purple-worm_tail-stinger", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 9, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_quasit_claws-bite-in-beast-form_clawsbite-attack", + "fields": { + "name": "Claws/Bite attack", + "parent": "srd_quasit_claws-bite-in-beast-form", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_rakshasa_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_rakshasa_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_red-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_red-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_remorhaz_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_remorhaz_bite", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 6, + "damage_die_type": "D10", + "damage_bonus": 7, + "damage_type": "piercing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_roc_beak_beak-attack", + "fields": { + "name": "Beak attack", + "parent": "srd_roc_beak", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D8", + "damage_bonus": 9, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_roc_talons_talons-attack", + "fields": { + "name": "Talons attack", + "parent": "srd_roc_talons", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 9, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_roper_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_roper_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_roper_tendril_tendril-attack", + "fields": { + "name": "Tendril attack", + "parent": "srd_roper_tendril", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 50, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": null, + "damage_die_type": null, + "damage_bonus": null, + "damage_type": null, + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": null + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_rug-of-smothering_smother_smother-attack", + "fields": { + "name": "Smother attack", + "parent": "srd_rug-of-smothering_smother", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": null, + "damage_die_type": null, + "damage_bonus": null, + "damage_type": null, + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": null + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_rust-monster_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_rust-monster_bite", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_sahuagin_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_sahuagin_bite", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_sahuagin_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_sahuagin_claws", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_sahuagin_spear_spear-attack", + "fields": { + "name": "Spear attack", + "parent": "srd_sahuagin_spear", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": 20, + "long_range_ft": 60, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_sahuagin_spear_spear-attack-if-used-with-two-hands", + "fields": { + "name": "Spear attack (if used with two hands)", + "parent": "srd_sahuagin_spear", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_salamander_spear_spear-attack", + "fields": { + "name": "Spear attack", + "parent": "srd_salamander_spear", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": 20, + "long_range_ft": 60, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_salamander_spear_spear-attack-if-used-with-two-hands", + "fields": { + "name": "Spear attack (if used with two hands)", + "parent": "srd_salamander_spear", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_salamander_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_salamander_tail", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_satyr_ram_ram-attack", + "fields": { + "name": "Ram attack", + "parent": "srd_satyr_ram", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_satyr_shortbow_shortbow-attack", + "fields": { + "name": "Shortbow attack", + "parent": "srd_satyr_shortbow", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": null, + "range_ft": 80, + "long_range_ft": 320, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_satyr_shortsword_shortsword-attack", + "fields": { + "name": "Shortsword attack", + "parent": "srd_satyr_shortsword", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_sea-hag_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_sea-hag_claws", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_shadow_strength-drain_strength-drain-attack", + "fields": { + "name": "Strength Drain attack", + "parent": "srd_shadow_strength-drain", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "necrotic", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "necrotic" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_shambling-mound_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_shambling-mound_slam", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_shield-guardian_fist_fist-attack", + "fields": { + "name": "Fist attack", + "parent": "srd_shield-guardian_fist", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_silver-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_silver-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_skeleton_shortbow_shortbow-attack", + "fields": { + "name": "Shortbow attack", + "parent": "srd_skeleton_shortbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 80, + "long_range_ft": 320, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_skeleton_shortsword_shortsword-attack", + "fields": { + "name": "Shortsword attack", + "parent": "srd_skeleton_shortsword", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_solar_greatsword_greatsword-attack", + "fields": { + "name": "Greatsword attack", + "parent": "srd_solar_greatsword", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": 6, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_solar_slaying-longbow_slaying-longbow-attack", + "fields": { + "name": "Slaying Longbow attack", + "parent": "srd_solar_slaying-longbow", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": 6, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_specter_life-drain_life-drain-attack", + "fields": { + "name": "Life Drain attack", + "parent": "srd_specter_life-drain", + "attack_type": "SPELL", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "necrotic", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "necrotic" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_spirit-naga_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_spirit-naga_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_sprite_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_sprite_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 0, + "damage_die_type": null, + "damage_bonus": 0, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_sprite_shortbow_shortbow-attack", + "fields": { + "name": "Shortbow attack", + "parent": "srd_sprite_shortbow", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": null, + "range_ft": 40, + "long_range_ft": 160, + "target_creature_only": false, + "damage_die_count": 0, + "damage_die_type": null, + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_steam-mephit_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_steam-mephit_claws", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 0, + "damage_type": "slashing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D4", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_stirge_blood-drain_blood-drain-attack", + "fields": { + "name": "Blood Drain attack", + "parent": "srd_stirge_blood-drain", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_stone-giant_greatclub_greatclub-attack", + "fields": { + "name": "Greatclub attack", + "parent": "srd_stone-giant_greatclub", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_stone-giant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_stone-giant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 240, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_stone-golem_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_stone-golem_slam", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_storm-giant_greatsword_greatsword-attack", + "fields": { + "name": "Greatsword attack", + "parent": "srd_storm-giant_greatsword", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 6, + "damage_die_type": "D6", + "damage_bonus": 9, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_storm-giant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_storm-giant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 240, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D12", + "damage_bonus": 9, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_succubusincubus_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_succubusincubus_claw", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_tarrasque_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_tarrasque_bite", + "attack_type": "WEAPON", + "to_hit_mod": 19, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D12", + "damage_bonus": 10, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_tarrasque_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_tarrasque_claw", + "attack_type": "WEAPON", + "to_hit_mod": 19, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D8", + "damage_bonus": 10, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_tarrasque_horns_horns-attack", + "fields": { + "name": "Horns attack", + "parent": "srd_tarrasque_horns", + "attack_type": "WEAPON", + "to_hit_mod": 19, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D10", + "damage_bonus": 10, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_tarrasque_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_tarrasque_tail", + "attack_type": "WEAPON", + "to_hit_mod": 19, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 10, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_treant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_treant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 180, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_treant_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_treant_slam", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_triceratops_gore_gore-attack", + "fields": { + "name": "Gore attack", + "parent": "srd_triceratops_gore", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_triceratops_stomp_stomp-attack", + "fields": { + "name": "Stomp attack", + "parent": "srd_triceratops_stomp", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 3, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_troll_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_troll_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_troll_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_troll_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_tyrannosaurus-rex_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_tyrannosaurus-rex_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D12", + "damage_bonus": 7, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_tyrannosaurus-rex_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_tyrannosaurus-rex_tail", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 7, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_unicorn_hooves_hooves-attack", + "fields": { + "name": "Hooves attack", + "parent": "srd_unicorn_hooves", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_unicorn_horn_horn-attack", + "fields": { + "name": "Horn attack", + "parent": "srd_unicorn_horn", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_vampire-spawn_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_vampire-spawn_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_vampire-spawn_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_vampire-spawn_claws", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_vampire_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_vampire_bite", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_vampire_unarmed-strike_unarmed-strike-attack", + "fields": { + "name": "Unarmed Strike attack", + "parent": "srd_vampire_unarmed-strike", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_violet-fungus_rotting-touch_rotting-touch-attack", + "fields": { + "name": "Rotting Touch attack", + "parent": "srd_violet-fungus_rotting-touch", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 0, + "damage_type": "necrotic", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "necrotic" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_vrock_beak_beak-attack", + "fields": { + "name": "Beak attack", + "parent": "srd_vrock_beak", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_vrock_talons_talons-attack", + "fields": { + "name": "Talons attack", + "parent": "srd_vrock_talons", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_warhorse-skeleton_hooves_hooves-attack", + "fields": { + "name": "Hooves attack", + "parent": "srd_warhorse-skeleton_hooves", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_water-elemental_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_water-elemental_slam", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_werebear_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_werebear_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_werebear_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_werebear_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_werebear_greataxe_greataxe-attack", + "fields": { + "name": "Greataxe attack", + "parent": "srd_werebear_greataxe", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D12", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_wereboar_maul_maul-attack", + "fields": { + "name": "Maul attack", + "parent": "srd_wereboar_maul", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_wereboar_tusks_tusks-attack", + "fields": { + "name": "Tusks attack", + "parent": "srd_wereboar_tusks", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_wererat_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_wererat_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_wererat_hand-crossbow_hand-crossbow-attack", + "fields": { + "name": "Hand Crossbow attack", + "parent": "srd_wererat_hand-crossbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_wererat_shortsword_shortsword-attack", + "fields": { + "name": "Shortsword attack", + "parent": "srd_wererat_shortsword", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_weretiger_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_weretiger_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_weretiger_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_weretiger_claw", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_weretiger_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_weretiger_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_weretiger_scimitar_scimitar-attack", + "fields": { + "name": "Scimitar attack", + "parent": "srd_weretiger_scimitar", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_werewolf_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_werewolf_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_werewolf_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_werewolf_claws", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_werewolf_spear_spear-attack", + "fields": { + "name": "Spear attack", + "parent": "srd_werewolf_spear", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": 20, + "long_range_ft": 60, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_werewolf_spear_spear-attack-if-used-with-two-hands", + "fields": { + "name": "Spear attack (if used with two hands)", + "parent": "srd_werewolf_spear", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_white-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_white-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D4", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_wight_life-drain_life-drain-attack", + "fields": { + "name": "Life Drain attack", + "parent": "srd_wight_life-drain", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "necrotic", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "necrotic" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_wight_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_wight_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_wight_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_wight_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_wight_longsword_longsword-attack-if-used-with-two-hands", + "fields": { + "name": "Longsword attack (if used with two hands)", + "parent": "srd_wight_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_will-o-wisp_shock_shock-attack", + "fields": { + "name": "Shock attack", + "parent": "srd_will-o-wisp_shock", + "attack_type": "SPELL", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 0, + "damage_type": "lightning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "lightning" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_wraith_life-drain_life-drain-attack", + "fields": { + "name": "Life Drain attack", + "parent": "srd_wraith_life-drain", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 4, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "necrotic", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "necrotic" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_wyvern_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_wyvern_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_wyvern_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_wyvern_claws", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_wyvern_stinger_stinger-attack", + "fields": { + "name": "Stinger attack", + "parent": "srd_wyvern_stinger", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_xorn_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_xorn_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_xorn_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_xorn_claw", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-black-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-black-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-black-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-black-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-blue-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-blue-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D10", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-blue-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-blue-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-brass-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-brass-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-brass-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-brass-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-bronze-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-bronze-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-bronze-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-bronze-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-copper-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-copper-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-copper-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-copper-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-gold-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-gold-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-gold-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-gold-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-green-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-green-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-green-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-green-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-red-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-red-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-red-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-red-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-silver-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-silver-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-silver-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-silver-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-white-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-white-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_young-white-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-white-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } + }, + { + "model": "api_v2.creatureactionattack", + "pk": "srd_zombie_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_zombie_slam", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 1, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } + } +] \ No newline at end of file diff --git a/data/v2/wizards-of-the-coast/srd/CreatureSet.json b/data/v2/wizards-of-the-coast/srd/CreatureSet.json index fd6a48f8..1070a7af 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureSet.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureSet.json @@ -6,15 +6,15 @@ "name": "Common Mounts", "document": "srd", "creatures": [ - "camel", - "donkey", - "draft-horse", - "elephant", - "mastiff", - "mule", - "pony", - "riding-horse", - "warhorse" + "srd_camel", + "srd_donkey", + "srd_draft-horse", + "srd_elephant", + "srd_mastiff", + "srd_mule", + "srd_pony", + "srd_riding-horse", + "srd_warhorse" ] } } diff --git a/scripts/data_manipulation/data_v2_fix_keys.py b/scripts/data_manipulation/data_v2_fix_keys.py index bdd7c7c0..b83d249b 100644 --- a/scripts/data_manipulation/data_v2_fix_keys.py +++ b/scripts/data_manipulation/data_v2_fix_keys.py @@ -114,8 +114,8 @@ def refactor_parent_reference(file, old_parent, new_parent): refactored_objects.append(obj) logger.warning("refactoring parent {} {} {}".format(file, old_parent, new_parent)) - #with open(filename,'w', encoding='utf-8') as o: - # json.dump(refactored_objects,o, ensure_ascii=False,indent=2) + with open(file,'w', encoding='utf-8') as o: + json.dump(refactored_objects,o, ensure_ascii=False,indent=2) def refactor_key(file, old_key, new_key): refactored_objects = [] @@ -127,8 +127,8 @@ def refactor_key(file, old_key, new_key): refactored_objects.append(obj) logger.warning("refactoring key {} {} {}".format(file, old_key, new_key)) - #with open(filename,'w', encoding='utf-8') as o: - # json.dump(refactored_objects,o, ensure_ascii=False,indent=2) + with open(file,'w', encoding='utf-8') as o: + json.dump(refactored_objects,o, ensure_ascii=False,indent=2) From 63b9e0cde133f3e56b93f65d3415e4cd16e0d431 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 11:14:32 -0500 Subject: [PATCH 76/84] Input=output for sync up. --- api_v2/management/commands/export.py | 12 +- .../v2/wizards-of-the-coast/srd/Creature.json | 19322 ++++++++-------- .../srd/CreatureAction.json | 14214 ++++++------ .../srd/CreatureActionAttack.json | 16986 +++++++------- 4 files changed, 25266 insertions(+), 25268 deletions(-) diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index 7648705c..16b2ec93 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -109,18 +109,16 @@ def handle(self, *args, **options) -> None: for model in app_models: SKIPPED_MODEL_NAMES = ['Document', 'Ruleset', 'License', 'Publisher','SearchResult'] - CHILD_MODEL_NAMES = ['RaceTrait', 'FeatBenefit', 'BackgroundBenefit', 'ClassFeatureItem', 'SpellCastingOption','CreatureAction','CreatureActionAttack'] + CHILD_MODEL_NAMES = ['RaceTrait', 'FeatBenefit', 'BackgroundBenefit', 'ClassFeatureItem', 'SpellCastingOption','CreatureAction'] + CHILD_CHILD_MODEL_NAMES = ['CreatureActionAttack'] 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') if model.__name__ in CHILD_MODEL_NAMES: - modelq=None - if model.__name__=='CreatureActionAttack': - modelq = model.objects.filter(parent__parent__document=doc).order_by('pk') - if modelq is None: - modelq = model.objects.filter(parent__document=doc).order_by('pk') - else: + modelq = model.objects.filter(parent__document=doc).order_by('pk') + if modelq is None: modelq = model.objects.filter(document=doc).order_by('pk') model_path = get_filepath_by_model( model.__name__, diff --git a/data/v2/wizards-of-the-coast/srd/Creature.json b/data/v2/wizards-of-the-coast/srd/Creature.json index 31b9ee50..0d2dc308 100644 --- a/data/v2/wizards-of-the-coast/srd/Creature.json +++ b/data/v2/wizards-of-the-coast/srd/Creature.json @@ -1,9662 +1,9662 @@ [ - { - "model": "api_v2.creature", - "pk": "srd_aboleth", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 9, - "ability_score_constitution": 15, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 6, - "saving_throw_intelligence": 8, - "saving_throw_wisdom": 6, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 12, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 10, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 20, - "name": "Aboleth", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 135, - "type": "aberration", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-black-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 14, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult Black Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 195, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-blue-dragon", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 23, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Blue Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 225, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-brass-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 10, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 7, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 8, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult Brass Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 172, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-bronze-dragon", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 23, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 7, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Bronze Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 212, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-copper-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 12, - "ability_score_constitution": 21, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 8, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Copper Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 184, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-gold-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 14, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 24, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 13, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 8, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 14, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 13, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 24, - "name": "Adult Gold Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 256, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-green-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 12, - "ability_score_constitution": 21, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 8, - "skill_bonus_history": null, - "skill_bonus_insight": 7, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 12, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 8, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 22, - "name": "Adult Green Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 207, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-red-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 13, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 23, - "name": "Adult Red Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 256, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-silver-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 12, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 10, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 8, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 8, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult Silver Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 243, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_adult-white-dragon", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 8, - "ability_score_wisdom": 12, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Adult White Dragon", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 200, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_air-elemental", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 20, - "ability_score_constitution": 14, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Air Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 90, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-black-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 14, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 9, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 16, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 26, - "name": "Ancient Black Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 367, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-blue-dragon", - "fields": { - "ability_score_strength": 29, - "ability_score_dexterity": 10, - "ability_score_constitution": 27, - "ability_score_intelligence": 18, - "ability_score_wisdom": 17, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 15, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Blue Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 481, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-brass-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 25, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 10, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 9, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 14, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 10, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 24, - "name": "Ancient Brass Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 20, - "hit_points": 297, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-bronze-dragon", - "fields": { - "ability_score_strength": 29, - "ability_score_dexterity": 10, - "ability_score_constitution": 27, - "ability_score_intelligence": 18, - "ability_score_wisdom": 17, - "ability_score_charisma": 21, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 15, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 10, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Bronze Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 444, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-copper-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 12, - "ability_score_constitution": 25, - "ability_score_intelligence": 20, - "ability_score_wisdom": 17, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 11, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Copper Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 21, - "hit_points": 350, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-gold-dragon", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 14, - "ability_score_constitution": 29, - "ability_score_intelligence": 18, - "ability_score_wisdom": 17, - "ability_score_charisma": 28, - "saving_throw_strength": null, - "saving_throw_dexterity": 9, - "saving_throw_constitution": 16, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 16, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 10, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 16, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Gold Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 546, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-green-dragon", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 12, - "ability_score_constitution": 25, - "ability_score_intelligence": 20, - "ability_score_wisdom": 17, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": 11, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 11, - "skill_bonus_history": null, - "skill_bonus_insight": 10, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 17, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 11, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 27, - "name": "Ancient Green Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 21, - "hit_points": 385, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-red-dragon", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 10, - "ability_score_constitution": 29, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 23, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 16, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 13, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 16, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 26, - "name": "Ancient Red Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 546, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-silver-dragon", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 10, - "ability_score_constitution": 29, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 23, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 16, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 13, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 11, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 11, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 16, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 26, - "name": "Ancient Silver Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 22, - "hit_points": 487, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ancient-white-dragon", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 10, - "ability_score_constitution": 26, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 14, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 13, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 23, - "name": "Ancient White Dragon", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 20, - "hit_points": 333, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_androsphinx", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 10, - "ability_score_constitution": 20, - "ability_score_intelligence": 16, - "ability_score_wisdom": 18, - "ability_score_charisma": 23, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 11, - "saving_throw_intelligence": 9, - "saving_throw_wisdom": 10, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 9, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 10, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": 15, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 20, - "name": "Androsphinx", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 199, - "type": "monstrosity", - "category": "Monsters; Sphinxes", - "alignment": "lawful neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_animated-armor", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 11, - "ability_score_constitution": 13, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Animated Armor", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 33, - "type": "construct", - "category": "Monsters; Animated Objects", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ankheg", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 11, - "ability_score_constitution": 13, - "ability_score_intelligence": 1, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Ankheg", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 39, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_azer", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 12, - "ability_score_constitution": 15, - "ability_score_intelligence": 12, - "ability_score_wisdom": 13, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Azer", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 39, - "type": "elemental", - "category": "Monsters", - "alignment": "lawful neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_balor", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 15, - "ability_score_constitution": 22, - "ability_score_intelligence": 20, - "ability_score_wisdom": 16, - "ability_score_charisma": 22, - "saving_throw_strength": 14, - "saving_throw_dexterity": null, - "saving_throw_constitution": 12, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Balor", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 19, - "hit_points": 262, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_barbed-devil", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 17, - "ability_score_constitution": 18, - "ability_score_intelligence": 12, - "ability_score_wisdom": 14, - "ability_score_charisma": 14, - "saving_throw_strength": 6, - "saving_throw_dexterity": null, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": 5, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Barbed Devil", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 110, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_basilisk", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 8, - "ability_score_constitution": 15, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Basilisk", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 52, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_bearded-devil", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 15, - "ability_score_constitution": 15, - "ability_score_intelligence": 9, - "ability_score_wisdom": 11, - "ability_score_charisma": 11, - "saving_throw_strength": 5, - "saving_throw_dexterity": null, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Bearded Devil", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 52, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_behir", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 7, - "ability_score_wisdom": 14, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Behir", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 17, - "hit_points": 168, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_black-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 13, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Black Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 33, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_black-pudding", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 5, - "ability_score_constitution": 16, - "ability_score_intelligence": 1, - "ability_score_wisdom": 6, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Black Pudding", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 7, - "hit_points": 85, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_blue-dragon-wyrmling", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Blue Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 52, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_bone-devil", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 5, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 7, - "skill_bonus_history": null, - "skill_bonus_insight": 6, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Bone Devil", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 142, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_brass-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Brass Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 16, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_bronze-dragon-wyrmling", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Bronze Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 32, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_bugbear", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 13, - "ability_score_intelligence": 8, - "ability_score_wisdom": 11, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": 2, - "passive_perception": 10, - "name": "Bugbear", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 27, - "type": "humanoid", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_bulette", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 11, - "ability_score_constitution": 21, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Bulette", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 94, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_camel", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 8, - "ability_score_constitution": 14, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 9, - "name": "Camel", - "document": "srd", - "size": "large", - "weight": "600.000", - "armor_class": 9, - "hit_points": 15, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_centaur", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 14, - "ability_score_intelligence": 9, - "ability_score_wisdom": 13, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 6, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": 3, - "passive_perception": 13, - "name": "Centaur", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 45, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_chain-devil", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 18, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Chain Devil", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 85, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_chimera", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 11, - "ability_score_constitution": 19, - "ability_score_intelligence": 3, - "ability_score_wisdom": 14, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Chimera", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 114, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_chuul", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 11, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Chuul", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 16, - "hit_points": 93, - "type": "aberration", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_clay-golem", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 9, - "ability_score_constitution": 18, - "ability_score_intelligence": 3, - "ability_score_wisdom": 8, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Clay Golem", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 133, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_cloaker", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 15, - "ability_score_constitution": 12, - "ability_score_intelligence": 13, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Cloaker", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 78, - "type": "aberration", - "category": "Monsters", - "alignment": "chaotic neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_cloud-giant", - "fields": { - "ability_score_strength": 27, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 12, - "ability_score_wisdom": 16, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 7, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Cloud Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 14, - "hit_points": 200, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "neutral good (50%) or neutral evil (50%)" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_cockatrice", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 2, - "ability_score_wisdom": 13, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Cockatrice", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 27, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_copper-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Copper Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 22, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_couatl", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 20, - "ability_score_constitution": 17, - "ability_score_intelligence": 18, - "ability_score_wisdom": 20, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Couatl", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 19, - "hit_points": 97, - "type": "celestial", - "category": "Monsters", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_darkmantle", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Darkmantle", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 22, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_deva", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 18, - "ability_score_constitution": 18, - "ability_score_intelligence": 17, - "ability_score_wisdom": 20, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 9, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Deva", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 136, - "type": "celestial", - "category": "Monsters; Angels", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_djinni", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 15, - "ability_score_constitution": 22, - "ability_score_intelligence": 15, - "ability_score_wisdom": 16, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Djinni", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 161, - "type": "elemental", - "category": "Monsters; Genies", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_donkey", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Donkey", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 11, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_doppelganger", - "fields": { - "ability_score_strength": 11, - "ability_score_dexterity": 18, - "ability_score_constitution": 14, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 6, - "skill_bonus_history": null, - "skill_bonus_insight": 3, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Doppelganger", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 52, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_draft-horse", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 12, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Draft Horse", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 10, - "hit_points": 19, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_dragon-turtle", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 20, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Dragon Turtle", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 20, - "hit_points": 341, - "type": "dragon", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_dretch", - "fields": { - "ability_score_strength": 11, - "ability_score_dexterity": 11, - "ability_score_constitution": 12, - "ability_score_intelligence": 5, - "ability_score_wisdom": 8, - "ability_score_charisma": 3, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Dretch", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 18, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_drider", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Drider", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 123, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_dryad", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 12, - "ability_score_constitution": 11, - "ability_score_intelligence": 14, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Dryad", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 22, - "type": "fey", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_duergar", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 11, - "ability_score_constitution": 14, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Duergar", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 26, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_dust-mephit", - "fields": { - "ability_score_strength": 5, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 9, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Dust Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 12, - "hit_points": 17, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_earth-elemental", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 8, - "ability_score_constitution": 20, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Earth Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 126, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_efreeti", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 12, - "ability_score_constitution": 24, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 7, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Efreeti", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 200, - "type": "elemental", - "category": "Monsters; Genies", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_elephant", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 9, - "ability_score_constitution": 17, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 6, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Elephant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 12, - "hit_points": 76, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_elf-drow", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 11, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Elf, Drow", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 13, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_erinyes", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 16, - "ability_score_constitution": 18, - "ability_score_intelligence": 14, - "ability_score_wisdom": 14, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Erinyes", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 153, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ettercap", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 15, - "ability_score_constitution": 13, - "ability_score_intelligence": 7, - "ability_score_wisdom": 12, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": 3, - "passive_perception": 13, - "name": "Ettercap", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 44, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ettin", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 8, - "ability_score_constitution": 17, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Ettin", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 85, - "type": "giant", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_fire-elemental", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 17, - "ability_score_constitution": 16, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Fire Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 102, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_fire-giant", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 9, - "ability_score_constitution": 23, - "ability_score_intelligence": 10, - "ability_score_wisdom": 14, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 11, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Fire Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 18, - "hit_points": 162, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_flesh-golem", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 9, - "ability_score_constitution": 18, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Flesh Golem", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 9, - "hit_points": 93, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_flying-sword", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 15, - "ability_score_constitution": 11, - "ability_score_intelligence": 1, - "ability_score_wisdom": 5, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 7, - "name": "Flying Sword", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 17, - "hit_points": 17, - "type": "construct", - "category": "Monsters; Animated Objects", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_frost-giant", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 9, - "ability_score_constitution": 21, - "ability_score_intelligence": 9, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 9, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Frost Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 15, - "hit_points": 138, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gargoyle", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 11, - "ability_score_constitution": 16, - "ability_score_intelligence": 6, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Gargoyle", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 52, - "type": "elemental", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gelatinous-cube", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 3, - "ability_score_constitution": 20, - "ability_score_intelligence": 1, - "ability_score_wisdom": 6, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Gelatinous Cube", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 6, - "hit_points": 84, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ghast", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 17, - "ability_score_constitution": 10, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Ghast", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 36, - "type": "undead", - "category": "Monsters; Ghouls", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ghost", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 13, - "ability_score_constitution": 10, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Ghost", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 45, - "type": "undead", - "category": "Monsters", - "alignment": "any alignment" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ghoul", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 15, - "ability_score_constitution": 10, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Ghoul", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 22, - "type": "undead", - "category": "Monsters; Ghouls", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gibbering-mouther", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 8, - "ability_score_constitution": 16, - "ability_score_intelligence": 3, - "ability_score_wisdom": 10, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Gibbering Mouther", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 9, - "hit_points": 67, - "type": "aberration", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_glabrezu", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 15, - "ability_score_constitution": 21, - "ability_score_intelligence": 19, - "ability_score_wisdom": 17, - "ability_score_charisma": 16, - "saving_throw_strength": 9, - "saving_throw_dexterity": null, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Glabrezu", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 157, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gnoll", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 12, - "ability_score_constitution": 11, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Gnoll", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 22, - "type": "humanoid", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gnome-deep-svirfneblin", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 14, - "ability_score_intelligence": 12, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": 3, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Gnome, Deep (Svirfneblin)", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 15, - "hit_points": 16, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_goblin", - "fields": { - "ability_score_strength": 8, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 10, - "ability_score_wisdom": 8, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Goblin", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 15, - "hit_points": 7, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gold-dragon-wyrmling", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 14, - "ability_score_constitution": 17, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Gold Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 60, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gorgon", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 11, - "ability_score_constitution": 18, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Gorgon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 114, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gray-ooze", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 6, - "ability_score_constitution": 16, - "ability_score_intelligence": 1, - "ability_score_wisdom": 6, - "ability_score_charisma": 2, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Gray Ooze", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 8, - "hit_points": 22, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_green-dragon-wyrmling", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 3, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Green Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 38, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_green-hag", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 12, - "ability_score_constitution": 16, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 3, - "skill_bonus_athletics": null, - "skill_bonus_deception": 4, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Green Hag", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 82, - "type": "fey", - "category": "Monsters; Hags", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_grick", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 14, - "ability_score_constitution": 11, - "ability_score_intelligence": 3, - "ability_score_wisdom": 14, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Grick", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 27, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_griffon", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 2, - "ability_score_wisdom": 13, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Griffon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 59, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_grimlock", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 9, - "ability_score_wisdom": 8, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 5, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Grimlock", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 11, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_guardian-naga", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 18, - "ability_score_constitution": 16, - "ability_score_intelligence": 16, - "ability_score_wisdom": 19, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 7, - "saving_throw_intelligence": 7, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Guardian Naga", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 127, - "type": "monstrosity", - "category": "Monsters; Nagas", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_gynosphinx", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 18, - "ability_score_wisdom": 18, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 12, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 12, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": 8, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Gynosphinx", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 136, - "type": "monstrosity", - "category": "Monsters; Sphinxes", - "alignment": "lawful neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_half-red-dragon-veteran", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 13, - "ability_score_constitution": 14, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 5, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Half-Red Dragon Veteran", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 65, - "type": "humanoid", - "category": "Monsters; Half-Dragon Template", - "alignment": "any alignment" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_harpy", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 13, - "ability_score_constitution": 12, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Harpy", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 38, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_hell-hound", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 12, - "ability_score_constitution": 14, - "ability_score_intelligence": 6, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Hell Hound", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 45, - "type": "fiend", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_hezrou", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 17, - "ability_score_constitution": 20, - "ability_score_intelligence": 5, - "ability_score_wisdom": 12, - "ability_score_charisma": 13, - "saving_throw_strength": 7, - "saving_throw_dexterity": null, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Hezrou", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 16, - "hit_points": 136, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_hill-giant", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 8, - "ability_score_constitution": 19, - "ability_score_intelligence": 5, - "ability_score_wisdom": 9, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Hill Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 13, - "hit_points": 105, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_hippogriff", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 13, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Hippogriff", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 11, - "hit_points": 19, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_hobgoblin", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 10, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Hobgoblin", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 18, - "hit_points": 11, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_homunculus", - "fields": { - "ability_score_strength": 4, - "ability_score_dexterity": 15, - "ability_score_constitution": 11, - "ability_score_intelligence": 10, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Homunculus", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 5, - "type": "construct", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_horned-devil", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 17, - "ability_score_constitution": 21, - "ability_score_intelligence": 12, - "ability_score_wisdom": 16, - "ability_score_charisma": 17, - "saving_throw_strength": 10, - "saving_throw_dexterity": 7, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Horned Devil", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 178, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_hydra", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 12, - "ability_score_constitution": 20, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Hydra", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 15, - "hit_points": 172, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ice-devil", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 14, - "ability_score_constitution": 18, - "ability_score_intelligence": 18, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Ice Devil", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 180, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ice-mephit", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 13, - "ability_score_constitution": 10, - "ability_score_intelligence": 9, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Ice Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 21, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_imp", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 17, - "ability_score_constitution": 13, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 4, - "skill_bonus_history": null, - "skill_bonus_insight": 3, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 4, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Imp", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 10, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_invisible-stalker", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 19, - "ability_score_constitution": 14, - "ability_score_intelligence": 10, - "ability_score_wisdom": 15, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 10, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Invisible Stalker", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 104, - "type": "elemental", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_iron-golem", - "fields": { - "ability_score_strength": 24, - "ability_score_dexterity": 9, - "ability_score_constitution": 20, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Iron Golem", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 20, - "hit_points": 210, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_kobold", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 15, - "ability_score_constitution": 9, - "ability_score_intelligence": 8, - "ability_score_wisdom": 7, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Kobold", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 12, - "hit_points": 5, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_kraken", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 11, - "ability_score_constitution": 25, - "ability_score_intelligence": 22, - "ability_score_wisdom": 18, - "ability_score_charisma": 20, - "saving_throw_strength": 17, - "saving_throw_dexterity": 7, - "saving_throw_constitution": 14, - "saving_throw_intelligence": 13, - "saving_throw_wisdom": 11, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Kraken", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 18, - "hit_points": 472, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_lamia", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 13, - "ability_score_constitution": 15, - "ability_score_intelligence": 14, - "ability_score_wisdom": 15, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 7, - "skill_bonus_history": null, - "skill_bonus_insight": 4, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Lamia", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 97, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_lemure", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 5, - "ability_score_constitution": 11, - "ability_score_intelligence": 1, - "ability_score_wisdom": 11, - "ability_score_charisma": 3, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Lemure", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 7, - "hit_points": 13, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_lich", - "fields": { - "ability_score_strength": 11, - "ability_score_dexterity": 16, - "ability_score_constitution": 16, - "ability_score_intelligence": 20, - "ability_score_wisdom": 14, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": 12, - "saving_throw_wisdom": 9, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 18, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 12, - "skill_bonus_insight": 9, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Lich", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 135, - "type": "undead", - "category": "Monsters", - "alignment": "any evil alignment" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_lizardfolk", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 7, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": 5, - "passive_perception": 13, - "name": "Lizardfolk", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 22, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_magma-mephit", - "fields": { - "ability_score_strength": 8, - "ability_score_dexterity": 12, - "ability_score_constitution": 12, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Magma Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 11, - "hit_points": 22, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_magmin", - "fields": { - "ability_score_strength": 7, - "ability_score_dexterity": 15, - "ability_score_constitution": 12, - "ability_score_intelligence": 8, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Magmin", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 14, - "hit_points": 9, - "type": "elemental", - "category": "Monsters", - "alignment": "chaotic neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_manticore", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 16, - "ability_score_constitution": 17, - "ability_score_intelligence": 7, - "ability_score_wisdom": 12, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Manticore", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 68, - "type": "monstrosity", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_marilith", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 20, - "ability_score_constitution": 20, - "ability_score_intelligence": 18, - "ability_score_wisdom": 16, - "ability_score_charisma": 20, - "saving_throw_strength": 9, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 8, - "saving_throw_charisma": 10, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Marilith", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 189, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_mastiff", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 14, - "ability_score_constitution": 12, - "ability_score_intelligence": 3, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 2, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 13, - "name": "Mastiff", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 5, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_medusa", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 12, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": 4, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Medusa", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 127, - "type": "monstrosity", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_merfolk", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 13, - "ability_score_constitution": 12, - "ability_score_intelligence": 11, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Merfolk", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 11, - "type": "humanoid", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_merrow", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 8, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Merrow", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 45, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_mimic", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 12, - "ability_score_constitution": 15, - "ability_score_intelligence": 5, - "ability_score_wisdom": 13, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Mimic", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 58, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_minotaur", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 11, - "ability_score_constitution": 16, - "ability_score_intelligence": 6, - "ability_score_wisdom": 16, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Minotaur", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 76, - "type": "monstrosity", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_minotaur-skeleton", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 11, - "ability_score_constitution": 15, - "ability_score_intelligence": 6, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Minotaur Skeleton", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 67, - "type": "undead", - "category": "Monsters; Skeletons", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_mule", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Mule", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 11, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_mummy", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 8, - "ability_score_constitution": 15, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Mummy", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 58, - "type": "undead", - "category": "Monsters; Mummies", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_mummy-lord", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 11, - "ability_score_wisdom": 18, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 8, - "saving_throw_intelligence": 5, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 5, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": 5, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Mummy Lord", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 97, - "type": "undead", - "category": "Monsters; Mummies", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_nalfeshnee", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 19, - "ability_score_wisdom": 12, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 11, - "saving_throw_intelligence": 9, - "saving_throw_wisdom": 6, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Nalfeshnee", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 184, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_night-hag", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 16, - "ability_score_wisdom": 14, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 7, - "skill_bonus_history": null, - "skill_bonus_insight": 6, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Night Hag", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 112, - "type": "fiend", - "category": "Monsters; Hags", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_nightmare", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Nightmare", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 68, - "type": "fiend", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ochre-jelly", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 6, - "ability_score_constitution": 14, - "ability_score_intelligence": 2, - "ability_score_wisdom": 6, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Ochre Jelly", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 8, - "hit_points": 45, - "type": "ooze", - "category": "Monsters; Oozes", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ogre", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 8, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 7, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Ogre", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 11, - "hit_points": 59, - "type": "giant", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_ogre-zombie", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 6, - "ability_score_constitution": 18, - "ability_score_intelligence": 3, - "ability_score_wisdom": 6, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 0, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Ogre Zombie", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 8, - "hit_points": 85, - "type": "undead", - "category": "Monsters; Zombies", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_oni", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 11, - "ability_score_constitution": 16, - "ability_score_intelligence": 14, - "ability_score_wisdom": 12, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 5, - "skill_bonus_athletics": null, - "skill_bonus_deception": 8, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Oni", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 16, - "hit_points": 110, - "type": "giant", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_orc", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 12, - "ability_score_constitution": 16, - "ability_score_intelligence": 7, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": 2, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Orc", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 15, - "type": "humanoid", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_otyugh", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 11, - "ability_score_constitution": 19, - "ability_score_intelligence": 6, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Otyugh", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 114, - "type": "aberration", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_owlbear", - "fields": { - "ability_score_strength": 20, - "ability_score_dexterity": 12, - "ability_score_constitution": 17, - "ability_score_intelligence": 3, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Owlbear", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 59, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_pegasus", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 15, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Pegasus", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 59, - "type": "celestial", - "category": "Monsters", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_pit-fiend", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 14, - "ability_score_constitution": 24, - "ability_score_intelligence": 22, - "ability_score_wisdom": 18, - "ability_score_charisma": 24, - "saving_throw_strength": null, - "saving_throw_dexterity": 8, - "saving_throw_constitution": 13, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 10, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Pit Fiend", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 300, - "type": "fiend", - "category": "Monsters; Devils", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_planetar", - "fields": { - "ability_score_strength": 24, - "ability_score_dexterity": 20, - "ability_score_constitution": 24, - "ability_score_intelligence": 19, - "ability_score_wisdom": 22, - "ability_score_charisma": 25, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 12, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 11, - "saving_throw_charisma": 12, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 11, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 21, - "name": "Planetar", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 19, - "hit_points": 200, - "type": "celestial", - "category": "Monsters; Angels", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_plesiosaurus", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Plesiosaurus", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 68, - "type": "beast", - "category": "Monsters; Dinosaurs", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_pony", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 10, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Pony", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 11, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_pseudodragon", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 15, - "ability_score_constitution": 13, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Pseudodragon", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 7, - "type": "dragon", - "category": "Monsters", - "alignment": "neutral good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_purple-worm", - "fields": { - "ability_score_strength": 28, - "ability_score_dexterity": 7, - "ability_score_constitution": 22, - "ability_score_intelligence": 1, - "ability_score_wisdom": 8, - "ability_score_charisma": 4, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": 11, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Purple Worm", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 18, - "hit_points": 247, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_quasit", - "fields": { - "ability_score_strength": 5, - "ability_score_dexterity": 17, - "ability_score_constitution": 10, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Quasit", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 13, - "hit_points": 7, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_rakshasa", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 17, - "ability_score_constitution": 18, - "ability_score_intelligence": 13, - "ability_score_wisdom": 16, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 10, - "skill_bonus_history": null, - "skill_bonus_insight": 8, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Rakshasa", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 110, - "type": "fiend", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_red-dragon-wyrmling", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Red Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 75, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_remorhaz", - "fields": { - "ability_score_strength": 24, - "ability_score_dexterity": 13, - "ability_score_constitution": 21, - "ability_score_intelligence": 4, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Remorhaz", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 17, - "hit_points": 195, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_riding-horse", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 10, - "ability_score_constitution": 12, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 10, - "name": "Riding Horse", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 10, - "hit_points": 13, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_roc", - "fields": { - "ability_score_strength": 28, - "ability_score_dexterity": 10, - "ability_score_constitution": 20, - "ability_score_intelligence": 3, - "ability_score_wisdom": 10, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 3, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Roc", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 15, - "hit_points": 248, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_roper", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 8, - "ability_score_constitution": 17, - "ability_score_intelligence": 7, - "ability_score_wisdom": 16, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Roper", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 20, - "hit_points": 93, - "type": "monstrosity", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_rug-of-smothering", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 14, - "ability_score_constitution": 10, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Rug of Smothering", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 33, - "type": "construct", - "category": "Monsters; Animated Objects", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_rust-monster", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 13, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Rust Monster", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 27, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_sahuagin", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 11, - "ability_score_constitution": 12, - "ability_score_intelligence": 12, - "ability_score_wisdom": 13, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Sahuagin", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 22, - "type": "humanoid", - "category": "Monsters", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_salamander", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 15, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Salamander", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 90, - "type": "elemental", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_satyr", - "fields": { - "ability_score_strength": 12, - "ability_score_dexterity": 16, - "ability_score_constitution": 11, - "ability_score_intelligence": 12, - "ability_score_wisdom": 10, - "ability_score_charisma": 14, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": 6, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Satyr", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 31, - "type": "fey", - "category": "Monsters", - "alignment": "chaotic neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_sea-hag", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 13, - "ability_score_constitution": 16, - "ability_score_intelligence": 12, - "ability_score_wisdom": 12, - "ability_score_charisma": 13, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Sea Hag", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 52, - "type": "fey", - "category": "Monsters; Hags", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_shadow", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 14, - "ability_score_constitution": 13, - "ability_score_intelligence": 6, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Shadow", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 16, - "type": "undead", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_shambling-mound", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 8, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Shambling Mound", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 136, - "type": "plant", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_shield-guardian", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 8, - "ability_score_constitution": 18, - "ability_score_intelligence": 7, - "ability_score_wisdom": 10, - "ability_score_charisma": 3, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Shield Guardian", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 142, - "type": "construct", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_shrieker", - "fields": { - "ability_score_strength": 1, - "ability_score_dexterity": 1, - "ability_score_constitution": 10, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Shrieker", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 5, - "hit_points": 13, - "type": "plant", - "category": "Monsters; Fungi", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_silver-dragon-wyrmling", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Silver Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 17, - "hit_points": 45, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_skeleton", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 14, - "ability_score_constitution": 15, - "ability_score_intelligence": 6, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Skeleton", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 13, - "type": "undead", - "category": "Monsters; Skeletons", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_solar", - "fields": { - "ability_score_strength": 26, - "ability_score_dexterity": 22, - "ability_score_constitution": 26, - "ability_score_intelligence": 25, - "ability_score_wisdom": 25, - "ability_score_charisma": 30, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 14, - "saving_throw_wisdom": 14, - "saving_throw_charisma": 17, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 14, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 24, - "name": "Solar", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 21, - "hit_points": 243, - "type": "celestial", - "category": "Monsters; Angels", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_specter", - "fields": { - "ability_score_strength": 1, - "ability_score_dexterity": 14, - "ability_score_constitution": 11, - "ability_score_intelligence": 10, - "ability_score_wisdom": 10, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Specter", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 22, - "type": "undead", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_spirit-naga", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 17, - "ability_score_constitution": 14, - "ability_score_intelligence": 16, - "ability_score_wisdom": 15, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 5, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Spirit Naga", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 75, - "type": "monstrosity", - "category": "Monsters; Nagas", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_sprite", - "fields": { - "ability_score_strength": 3, - "ability_score_dexterity": 18, - "ability_score_constitution": 10, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 8, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Sprite", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 15, - "hit_points": 2, - "type": "fey", - "category": "Monsters", - "alignment": "neutral good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_steam-mephit", - "fields": { - "ability_score_strength": 5, - "ability_score_dexterity": 11, - "ability_score_constitution": 10, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Steam Mephit", - "document": "srd", - "size": "small", - "weight": "0.000", - "armor_class": 10, - "hit_points": 21, - "type": "elemental", - "category": "Monsters; Mephits", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_stirge", - "fields": { - "ability_score_strength": 4, - "ability_score_dexterity": 16, - "ability_score_constitution": 11, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Stirge", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 14, - "hit_points": 2, - "type": "beast", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_stone-giant", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 15, - "ability_score_constitution": 20, - "ability_score_intelligence": 10, - "ability_score_wisdom": 12, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": 12, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Stone Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 17, - "hit_points": 126, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_stone-golem", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 9, - "ability_score_constitution": 20, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Stone Golem", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 178, - "type": "construct", - "category": "Monsters; Golems", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_storm-giant", - "fields": { - "ability_score_strength": 29, - "ability_score_dexterity": 14, - "ability_score_constitution": 20, - "ability_score_intelligence": 16, - "ability_score_wisdom": 18, - "ability_score_charisma": 18, - "saving_throw_strength": 14, - "saving_throw_dexterity": null, - "saving_throw_constitution": 10, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 8, - "skill_bonus_athletics": 14, - "skill_bonus_deception": null, - "skill_bonus_history": 8, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Storm Giant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 16, - "hit_points": 230, - "type": "giant", - "category": "Monsters; Giants", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_succubusincubus", - "fields": { - "ability_score_strength": 8, - "ability_score_dexterity": 17, - "ability_score_constitution": 13, - "ability_score_intelligence": 15, - "ability_score_wisdom": 12, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 9, - "skill_bonus_history": null, - "skill_bonus_insight": 5, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 9, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 7, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Succubus/Incubus", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 66, - "type": "fiend", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_tarrasque", - "fields": { - "ability_score_strength": 30, - "ability_score_dexterity": 11, - "ability_score_constitution": 30, - "ability_score_intelligence": 3, - "ability_score_wisdom": 11, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": 5, - "saving_throw_wisdom": 9, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Tarrasque", - "document": "srd", - "size": "gargantuan", - "weight": "0.000", - "armor_class": 25, - "hit_points": 676, - "type": "monstrosity", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_treant", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 8, - "ability_score_constitution": 21, - "ability_score_intelligence": 12, - "ability_score_wisdom": 16, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Treant", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 16, - "hit_points": 138, - "type": "plant", - "category": "Monsters", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_triceratops", - "fields": { - "ability_score_strength": 22, - "ability_score_dexterity": 9, - "ability_score_constitution": 17, - "ability_score_intelligence": 2, - "ability_score_wisdom": 11, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Triceratops", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 13, - "hit_points": 95, - "type": "beast", - "category": "Monsters; Dinosaurs", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_troll", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 13, - "ability_score_constitution": 20, - "ability_score_intelligence": 7, - "ability_score_wisdom": 9, - "ability_score_charisma": 7, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Troll", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 84, - "type": "giant", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_tyrannosaurus-rex", - "fields": { - "ability_score_strength": 25, - "ability_score_dexterity": 10, - "ability_score_constitution": 19, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 9, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Tyrannosaurus Rex", - "document": "srd", - "size": "huge", - "weight": "0.000", - "armor_class": 13, - "hit_points": 136, - "type": "beast", - "category": "Monsters; Dinosaurs", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_unicorn", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 15, - "ability_score_intelligence": 11, - "ability_score_wisdom": 17, - "ability_score_charisma": 16, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Unicorn", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 12, - "hit_points": 67, - "type": "celestial", - "category": "Monsters", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_vampire", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 18, - "ability_score_constitution": 18, - "ability_score_intelligence": 17, - "ability_score_wisdom": 15, - "ability_score_charisma": 18, - "saving_throw_strength": null, - "saving_throw_dexterity": 9, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 7, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 9, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Vampire", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 144, - "type": "undead", - "category": "Monsters; Vampires", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_vampire-spawn", - "fields": { - "ability_score_strength": 16, - "ability_score_dexterity": 16, - "ability_score_constitution": 16, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Vampire Spawn", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 15, - "hit_points": 82, - "type": "undead", - "category": "Monsters; Vampires", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_violet-fungus", - "fields": { - "ability_score_strength": 3, - "ability_score_dexterity": 1, - "ability_score_constitution": 10, - "ability_score_intelligence": 1, - "ability_score_wisdom": 3, - "ability_score_charisma": 1, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 6, - "name": "Violet Fungus", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 5, - "hit_points": 18, - "type": "plant", - "category": "Monsters; Fungi", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_vrock", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 15, - "ability_score_constitution": 18, - "ability_score_intelligence": 8, - "ability_score_wisdom": 13, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 2, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 11, - "name": "Vrock", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 15, - "hit_points": 104, - "type": "fiend", - "category": "Monsters; Demons", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_warhorse", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 12, - "ability_score_constitution": 13, - "ability_score_intelligence": 2, - "ability_score_wisdom": 12, - "ability_score_charisma": 7, - "saving_throw_strength": 0, - "saving_throw_dexterity": 0, - "saving_throw_constitution": 0, - "saving_throw_intelligence": 0, - "saving_throw_wisdom": 0, - "saving_throw_charisma": 0, - "skill_bonus_acrobatics": 0, - "skill_bonus_animal_handling": 0, - "skill_bonus_arcana": 0, - "skill_bonus_athletics": 0, - "skill_bonus_deception": 0, - "skill_bonus_history": 0, - "skill_bonus_insight": 0, - "skill_bonus_intimidation": 0, - "skill_bonus_investigation": 0, - "skill_bonus_medicine": 0, - "skill_bonus_nature": 0, - "skill_bonus_perception": 0, - "skill_bonus_performance": 0, - "skill_bonus_persuasion": 0, - "skill_bonus_religion": 0, - "skill_bonus_sleight_of_hand": 0, - "skill_bonus_stealth": 0, - "skill_bonus_survival": 0, - "passive_perception": 11, - "name": "Warhorse", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 11, - "hit_points": 19, - "type": "beast", - "category": "Miscellaneous", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_warhorse-skeleton", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 12, - "ability_score_constitution": 15, - "ability_score_intelligence": 2, - "ability_score_wisdom": 8, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 9, - "name": "Warhorse Skeleton", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 22, - "type": "undead", - "category": "Monsters; Skeletons", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_water-elemental", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 14, - "ability_score_constitution": 18, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 10, - "name": "Water Elemental", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 14, - "hit_points": 114, - "type": "elemental", - "category": "Monsters; Elementals", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_werebear", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 11, - "ability_score_wisdom": 12, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Werebear", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 135, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "neutral good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_wereboar", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 15, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Wereboar", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 10, - "hit_points": 78, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_wererat", - "fields": { - "ability_score_strength": 10, - "ability_score_dexterity": 15, - "ability_score_constitution": 12, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 8, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 2, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Wererat", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 33, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_weretiger", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 15, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 5, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 15, - "name": "Weretiger", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 12, - "hit_points": 120, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_werewolf", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 13, - "ability_score_constitution": 14, - "ability_score_intelligence": 10, - "ability_score_wisdom": 11, - "ability_score_charisma": 10, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Werewolf", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 11, - "hit_points": 58, - "type": "humanoid", - "category": "Monsters; Lycanthropes", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_white-dragon-wyrmling", - "fields": { - "ability_score_strength": 14, - "ability_score_dexterity": 10, - "ability_score_constitution": 14, - "ability_score_intelligence": 5, - "ability_score_wisdom": 10, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": 2, - "saving_throw_constitution": 4, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 2, - "saving_throw_charisma": 2, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 2, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "White Dragon Wyrmling", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 16, - "hit_points": 32, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_wight", - "fields": { - "ability_score_strength": 15, - "ability_score_dexterity": 14, - "ability_score_constitution": 16, - "ability_score_intelligence": 10, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 3, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 13, - "name": "Wight", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 14, - "hit_points": 45, - "type": "undead", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_will-o-wisp", - "fields": { - "ability_score_strength": 1, - "ability_score_dexterity": 28, - "ability_score_constitution": 10, - "ability_score_intelligence": 13, - "ability_score_wisdom": 14, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Will-o'-Wisp", - "document": "srd", - "size": "tiny", - "weight": "0.000", - "armor_class": 19, - "hit_points": 22, - "type": "undead", - "category": "Monsters", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_wraith", - "fields": { - "ability_score_strength": 6, - "ability_score_dexterity": 16, - "ability_score_constitution": 16, - "ability_score_intelligence": 12, - "ability_score_wisdom": 14, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 12, - "name": "Wraith", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 13, - "hit_points": 67, - "type": "undead", - "category": "Monsters", - "alignment": "neutral evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_wyvern", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 16, - "ability_score_intelligence": 5, - "ability_score_wisdom": 12, - "ability_score_charisma": 6, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 4, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 14, - "name": "Wyvern", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 13, - "hit_points": 110, - "type": "dragon", - "category": "Monsters", - "alignment": "unaligned" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_xorn", - "fields": { - "ability_score_strength": 17, - "ability_score_dexterity": 10, - "ability_score_constitution": 22, - "ability_score_intelligence": 11, - "ability_score_wisdom": 10, - "ability_score_charisma": 11, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": null, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Xorn", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 19, - "hit_points": 73, - "type": "elemental", - "category": "Monsters", - "alignment": "neutral" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-black-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 14, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 5, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 5, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Young Black Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 127, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-blue-dragon", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 10, - "ability_score_constitution": 19, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 8, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 7, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Young Blue Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 152, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-brass-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 10, - "ability_score_constitution": 17, - "ability_score_intelligence": 12, - "ability_score_wisdom": 11, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 5, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Young Brass Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 110, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-bronze-dragon", - "fields": { - "ability_score_strength": 21, - "ability_score_dexterity": 10, - "ability_score_constitution": 19, - "ability_score_intelligence": 14, - "ability_score_wisdom": 13, - "ability_score_charisma": 17, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 6, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 4, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Young Bronze Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 142, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-copper-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 12, - "ability_score_constitution": 17, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Young Copper Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 119, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "chaotic good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-gold-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 14, - "ability_score_constitution": 21, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 20, - "saving_throw_strength": null, - "saving_throw_dexterity": 6, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 5, - "saving_throw_charisma": 9, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": 5, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 9, - "skill_bonus_performance": null, - "skill_bonus_persuasion": 9, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 6, - "skill_bonus_survival": null, - "passive_perception": 19, - "name": "Young Gold Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 178, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-green-dragon", - "fields": { - "ability_score_strength": 19, - "ability_score_dexterity": 12, - "ability_score_constitution": 17, - "ability_score_intelligence": 16, - "ability_score_wisdom": 13, - "ability_score_charisma": 15, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 6, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 5, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": 5, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 7, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 17, - "name": "Young Green Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 136, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "lawful evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-red-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 10, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Young Red Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 178, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-silver-dragon", - "fields": { - "ability_score_strength": 23, - "ability_score_dexterity": 10, - "ability_score_constitution": 21, - "ability_score_intelligence": 14, - "ability_score_wisdom": 11, - "ability_score_charisma": 19, - "saving_throw_strength": null, - "saving_throw_dexterity": 4, - "saving_throw_constitution": 9, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 4, - "saving_throw_charisma": 8, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": 6, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": 6, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 8, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 4, - "skill_bonus_survival": null, - "passive_perception": 18, - "name": "Young Silver Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 18, - "hit_points": 168, - "type": "dragon", - "category": "Monsters; Dragons, Metallic", - "alignment": "lawful good" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_young-white-dragon", - "fields": { - "ability_score_strength": 18, - "ability_score_dexterity": 10, - "ability_score_constitution": 18, - "ability_score_intelligence": 6, - "ability_score_wisdom": 11, - "ability_score_charisma": 12, - "saving_throw_strength": null, - "saving_throw_dexterity": 3, - "saving_throw_constitution": 7, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 3, - "saving_throw_charisma": 4, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": 6, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": 3, - "skill_bonus_survival": null, - "passive_perception": 16, - "name": "Young White Dragon", - "document": "srd", - "size": "large", - "weight": "0.000", - "armor_class": 17, - "hit_points": 133, - "type": "dragon", - "category": "Monsters; Dragons, Chromatic", - "alignment": "chaotic evil" - } - }, - { - "model": "api_v2.creature", - "pk": "srd_zombie", - "fields": { - "ability_score_strength": 13, - "ability_score_dexterity": 6, - "ability_score_constitution": 16, - "ability_score_intelligence": 3, - "ability_score_wisdom": 6, - "ability_score_charisma": 5, - "saving_throw_strength": null, - "saving_throw_dexterity": null, - "saving_throw_constitution": null, - "saving_throw_intelligence": null, - "saving_throw_wisdom": 0, - "saving_throw_charisma": null, - "skill_bonus_acrobatics": null, - "skill_bonus_animal_handling": null, - "skill_bonus_arcana": null, - "skill_bonus_athletics": null, - "skill_bonus_deception": null, - "skill_bonus_history": null, - "skill_bonus_insight": null, - "skill_bonus_intimidation": null, - "skill_bonus_investigation": null, - "skill_bonus_medicine": null, - "skill_bonus_nature": null, - "skill_bonus_perception": null, - "skill_bonus_performance": null, - "skill_bonus_persuasion": null, - "skill_bonus_religion": null, - "skill_bonus_sleight_of_hand": null, - "skill_bonus_stealth": null, - "skill_bonus_survival": null, - "passive_perception": 8, - "name": "Zombie", - "document": "srd", - "size": "medium", - "weight": "0.000", - "armor_class": 8, - "hit_points": 22, - "type": "undead", - "category": "Monsters; Zombies", - "alignment": "neutral evil" - } - } -] \ No newline at end of file +{ + "model": "api_v2.creature", + "pk": "srd_aboleth", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 9, + "ability_score_constitution": 15, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 6, + "saving_throw_intelligence": 8, + "saving_throw_wisdom": 6, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 12, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 10, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 20, + "name": "Aboleth", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 135, + "type": "aberration", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_adult-black-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 14, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult Black Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 195, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_adult-blue-dragon", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 23, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Blue Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 225, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_adult-brass-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 10, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 7, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 8, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult Brass Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 172, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_adult-bronze-dragon", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 23, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 7, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Bronze Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 212, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_adult-copper-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 12, + "ability_score_constitution": 21, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 8, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Copper Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 184, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_adult-gold-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 14, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 24, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 13, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 8, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 14, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 13, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 24, + "name": "Adult Gold Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 256, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_adult-green-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 12, + "ability_score_constitution": 21, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 8, + "skill_bonus_history": null, + "skill_bonus_insight": 7, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 12, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 8, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 22, + "name": "Adult Green Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 207, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_adult-red-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 13, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 23, + "name": "Adult Red Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 256, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_adult-silver-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 12, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 10, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 8, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 8, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult Silver Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 243, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_adult-white-dragon", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 8, + "ability_score_wisdom": 12, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Adult White Dragon", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 200, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_air-elemental", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 20, + "ability_score_constitution": 14, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Air Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 90, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ancient-black-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 14, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 9, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 16, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 26, + "name": "Ancient Black Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 367, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ancient-blue-dragon", + "fields": { + "ability_score_strength": 29, + "ability_score_dexterity": 10, + "ability_score_constitution": 27, + "ability_score_intelligence": 18, + "ability_score_wisdom": 17, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 15, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Blue Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 481, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ancient-brass-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 25, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 10, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 9, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 14, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 10, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 24, + "name": "Ancient Brass Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 20, + "hit_points": 297, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ancient-bronze-dragon", + "fields": { + "ability_score_strength": 29, + "ability_score_dexterity": 10, + "ability_score_constitution": 27, + "ability_score_intelligence": 18, + "ability_score_wisdom": 17, + "ability_score_charisma": 21, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 15, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 10, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Bronze Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 444, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ancient-copper-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 12, + "ability_score_constitution": 25, + "ability_score_intelligence": 20, + "ability_score_wisdom": 17, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 11, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Copper Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 21, + "hit_points": 350, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ancient-gold-dragon", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 14, + "ability_score_constitution": 29, + "ability_score_intelligence": 18, + "ability_score_wisdom": 17, + "ability_score_charisma": 28, + "saving_throw_strength": null, + "saving_throw_dexterity": 9, + "saving_throw_constitution": 16, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 16, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 10, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 16, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Gold Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 546, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ancient-green-dragon", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 12, + "ability_score_constitution": 25, + "ability_score_intelligence": 20, + "ability_score_wisdom": 17, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": 11, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 11, + "skill_bonus_history": null, + "skill_bonus_insight": 10, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 17, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 11, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 27, + "name": "Ancient Green Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 21, + "hit_points": 385, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ancient-red-dragon", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 10, + "ability_score_constitution": 29, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 23, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 16, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 13, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 16, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 26, + "name": "Ancient Red Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 546, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ancient-silver-dragon", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 10, + "ability_score_constitution": 29, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 23, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 16, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 13, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 11, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 11, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 16, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 26, + "name": "Ancient Silver Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 22, + "hit_points": 487, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ancient-white-dragon", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 10, + "ability_score_constitution": 26, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 14, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 13, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 23, + "name": "Ancient White Dragon", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 20, + "hit_points": 333, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_androsphinx", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 10, + "ability_score_constitution": 20, + "ability_score_intelligence": 16, + "ability_score_wisdom": 18, + "ability_score_charisma": 23, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 11, + "saving_throw_intelligence": 9, + "saving_throw_wisdom": 10, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 9, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 10, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": 15, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 20, + "name": "Androsphinx", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 199, + "type": "monstrosity", + "category": "Monsters; Sphinxes", + "alignment": "lawful neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_animated-armor", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 11, + "ability_score_constitution": 13, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Animated Armor", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 33, + "type": "construct", + "category": "Monsters; Animated Objects", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ankheg", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 11, + "ability_score_constitution": 13, + "ability_score_intelligence": 1, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Ankheg", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 39, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_azer", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 12, + "ability_score_constitution": 15, + "ability_score_intelligence": 12, + "ability_score_wisdom": 13, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Azer", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 39, + "type": "elemental", + "category": "Monsters", + "alignment": "lawful neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_balor", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 15, + "ability_score_constitution": 22, + "ability_score_intelligence": 20, + "ability_score_wisdom": 16, + "ability_score_charisma": 22, + "saving_throw_strength": 14, + "saving_throw_dexterity": null, + "saving_throw_constitution": 12, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Balor", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 19, + "hit_points": 262, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_barbed-devil", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 17, + "ability_score_constitution": 18, + "ability_score_intelligence": 12, + "ability_score_wisdom": 14, + "ability_score_charisma": 14, + "saving_throw_strength": 6, + "saving_throw_dexterity": null, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": 5, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Barbed Devil", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 110, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_basilisk", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 8, + "ability_score_constitution": 15, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Basilisk", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 52, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_bearded-devil", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 15, + "ability_score_constitution": 15, + "ability_score_intelligence": 9, + "ability_score_wisdom": 11, + "ability_score_charisma": 11, + "saving_throw_strength": 5, + "saving_throw_dexterity": null, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Bearded Devil", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 52, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_behir", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 7, + "ability_score_wisdom": 14, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Behir", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 17, + "hit_points": 168, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_black-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 13, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Black Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 33, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_black-pudding", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 5, + "ability_score_constitution": 16, + "ability_score_intelligence": 1, + "ability_score_wisdom": 6, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Black Pudding", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 7, + "hit_points": 85, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_blue-dragon-wyrmling", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Blue Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 52, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_bone-devil", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 5, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 7, + "skill_bonus_history": null, + "skill_bonus_insight": 6, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Bone Devil", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 142, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_brass-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Brass Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 16, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_bronze-dragon-wyrmling", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Bronze Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 32, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_bugbear", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 13, + "ability_score_intelligence": 8, + "ability_score_wisdom": 11, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": 2, + "passive_perception": 10, + "name": "Bugbear", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 27, + "type": "humanoid", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_bulette", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 11, + "ability_score_constitution": 21, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Bulette", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 94, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_camel", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 8, + "ability_score_constitution": 14, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 9, + "name": "Camel", + "document": "srd", + "size": "large", + "weight": "600.000", + "armor_class": 9, + "hit_points": 15, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_centaur", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 14, + "ability_score_intelligence": 9, + "ability_score_wisdom": 13, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 6, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": 3, + "passive_perception": 13, + "name": "Centaur", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 45, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_chain-devil", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 18, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Chain Devil", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 85, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_chimera", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 11, + "ability_score_constitution": 19, + "ability_score_intelligence": 3, + "ability_score_wisdom": 14, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Chimera", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 114, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_chuul", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 11, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Chuul", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 16, + "hit_points": 93, + "type": "aberration", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_clay-golem", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 9, + "ability_score_constitution": 18, + "ability_score_intelligence": 3, + "ability_score_wisdom": 8, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Clay Golem", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 133, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_cloaker", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 15, + "ability_score_constitution": 12, + "ability_score_intelligence": 13, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Cloaker", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 78, + "type": "aberration", + "category": "Monsters", + "alignment": "chaotic neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_cloud-giant", + "fields": { + "ability_score_strength": 27, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 12, + "ability_score_wisdom": 16, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 7, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Cloud Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 14, + "hit_points": 200, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "neutral good (50%) or neutral evil (50%)" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_cockatrice", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 2, + "ability_score_wisdom": 13, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Cockatrice", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 27, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_copper-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Copper Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 22, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_couatl", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 20, + "ability_score_constitution": 17, + "ability_score_intelligence": 18, + "ability_score_wisdom": 20, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Couatl", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 19, + "hit_points": 97, + "type": "celestial", + "category": "Monsters", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_darkmantle", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Darkmantle", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 22, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_deva", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 18, + "ability_score_constitution": 18, + "ability_score_intelligence": 17, + "ability_score_wisdom": 20, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 9, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Deva", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 136, + "type": "celestial", + "category": "Monsters; Angels", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_djinni", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 15, + "ability_score_constitution": 22, + "ability_score_intelligence": 15, + "ability_score_wisdom": 16, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Djinni", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 161, + "type": "elemental", + "category": "Monsters; Genies", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_donkey", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Donkey", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 11, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_doppelganger", + "fields": { + "ability_score_strength": 11, + "ability_score_dexterity": 18, + "ability_score_constitution": 14, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 6, + "skill_bonus_history": null, + "skill_bonus_insight": 3, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Doppelganger", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 52, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_draft-horse", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 12, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Draft Horse", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 10, + "hit_points": 19, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_dragon-turtle", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 20, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Dragon Turtle", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 20, + "hit_points": 341, + "type": "dragon", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_dretch", + "fields": { + "ability_score_strength": 11, + "ability_score_dexterity": 11, + "ability_score_constitution": 12, + "ability_score_intelligence": 5, + "ability_score_wisdom": 8, + "ability_score_charisma": 3, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Dretch", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 18, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_drider", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Drider", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 123, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_dryad", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 12, + "ability_score_constitution": 11, + "ability_score_intelligence": 14, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Dryad", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 22, + "type": "fey", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_duergar", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 11, + "ability_score_constitution": 14, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Duergar", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 26, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_dust-mephit", + "fields": { + "ability_score_strength": 5, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 9, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Dust Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 12, + "hit_points": 17, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_earth-elemental", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 8, + "ability_score_constitution": 20, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Earth Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 126, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_efreeti", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 12, + "ability_score_constitution": 24, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 7, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Efreeti", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 200, + "type": "elemental", + "category": "Monsters; Genies", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_elephant", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 9, + "ability_score_constitution": 17, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 6, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Elephant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 12, + "hit_points": 76, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_elf-drow", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 11, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Elf, Drow", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 13, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_erinyes", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 16, + "ability_score_constitution": 18, + "ability_score_intelligence": 14, + "ability_score_wisdom": 14, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Erinyes", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 153, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ettercap", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 15, + "ability_score_constitution": 13, + "ability_score_intelligence": 7, + "ability_score_wisdom": 12, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": 3, + "passive_perception": 13, + "name": "Ettercap", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 44, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ettin", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 8, + "ability_score_constitution": 17, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Ettin", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 85, + "type": "giant", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_fire-elemental", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 17, + "ability_score_constitution": 16, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Fire Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 102, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_fire-giant", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 9, + "ability_score_constitution": 23, + "ability_score_intelligence": 10, + "ability_score_wisdom": 14, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 11, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Fire Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 18, + "hit_points": 162, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_flesh-golem", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 9, + "ability_score_constitution": 18, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Flesh Golem", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 9, + "hit_points": 93, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_flying-sword", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 15, + "ability_score_constitution": 11, + "ability_score_intelligence": 1, + "ability_score_wisdom": 5, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 7, + "name": "Flying Sword", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 17, + "hit_points": 17, + "type": "construct", + "category": "Monsters; Animated Objects", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_frost-giant", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 9, + "ability_score_constitution": 21, + "ability_score_intelligence": 9, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 9, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Frost Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 15, + "hit_points": 138, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_gargoyle", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 11, + "ability_score_constitution": 16, + "ability_score_intelligence": 6, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Gargoyle", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 52, + "type": "elemental", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_gelatinous-cube", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 3, + "ability_score_constitution": 20, + "ability_score_intelligence": 1, + "ability_score_wisdom": 6, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Gelatinous Cube", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 6, + "hit_points": 84, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ghast", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 17, + "ability_score_constitution": 10, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Ghast", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 36, + "type": "undead", + "category": "Monsters; Ghouls", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ghost", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 13, + "ability_score_constitution": 10, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Ghost", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 45, + "type": "undead", + "category": "Monsters", + "alignment": "any alignment" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ghoul", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 15, + "ability_score_constitution": 10, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Ghoul", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 22, + "type": "undead", + "category": "Monsters; Ghouls", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_gibbering-mouther", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 8, + "ability_score_constitution": 16, + "ability_score_intelligence": 3, + "ability_score_wisdom": 10, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Gibbering Mouther", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 9, + "hit_points": 67, + "type": "aberration", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_glabrezu", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 15, + "ability_score_constitution": 21, + "ability_score_intelligence": 19, + "ability_score_wisdom": 17, + "ability_score_charisma": 16, + "saving_throw_strength": 9, + "saving_throw_dexterity": null, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Glabrezu", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 157, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_gnoll", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 12, + "ability_score_constitution": 11, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Gnoll", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 22, + "type": "humanoid", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_gnome-deep-svirfneblin", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 14, + "ability_score_intelligence": 12, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": 3, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Gnome, Deep (Svirfneblin)", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 15, + "hit_points": 16, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_goblin", + "fields": { + "ability_score_strength": 8, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 10, + "ability_score_wisdom": 8, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Goblin", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 15, + "hit_points": 7, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_gold-dragon-wyrmling", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 14, + "ability_score_constitution": 17, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Gold Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 60, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_gorgon", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 11, + "ability_score_constitution": 18, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Gorgon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 114, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_gray-ooze", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 6, + "ability_score_constitution": 16, + "ability_score_intelligence": 1, + "ability_score_wisdom": 6, + "ability_score_charisma": 2, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Gray Ooze", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 8, + "hit_points": 22, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_green-dragon-wyrmling", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 3, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Green Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 38, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_green-hag", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 12, + "ability_score_constitution": 16, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 3, + "skill_bonus_athletics": null, + "skill_bonus_deception": 4, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Green Hag", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 82, + "type": "fey", + "category": "Monsters; Hags", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_grick", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 14, + "ability_score_constitution": 11, + "ability_score_intelligence": 3, + "ability_score_wisdom": 14, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Grick", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 27, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_griffon", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 2, + "ability_score_wisdom": 13, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Griffon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 59, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_grimlock", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 9, + "ability_score_wisdom": 8, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 5, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Grimlock", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 11, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_guardian-naga", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 18, + "ability_score_constitution": 16, + "ability_score_intelligence": 16, + "ability_score_wisdom": 19, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 7, + "saving_throw_intelligence": 7, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Guardian Naga", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 127, + "type": "monstrosity", + "category": "Monsters; Nagas", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_gynosphinx", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 18, + "ability_score_wisdom": 18, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 12, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 12, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": 8, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Gynosphinx", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 136, + "type": "monstrosity", + "category": "Monsters; Sphinxes", + "alignment": "lawful neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_half-red-dragon-veteran", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 13, + "ability_score_constitution": 14, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 5, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Half-Red Dragon Veteran", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 65, + "type": "humanoid", + "category": "Monsters; Half-Dragon Template", + "alignment": "any alignment" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_harpy", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 13, + "ability_score_constitution": 12, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Harpy", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 38, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_hell-hound", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 12, + "ability_score_constitution": 14, + "ability_score_intelligence": 6, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Hell Hound", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 45, + "type": "fiend", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_hezrou", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 17, + "ability_score_constitution": 20, + "ability_score_intelligence": 5, + "ability_score_wisdom": 12, + "ability_score_charisma": 13, + "saving_throw_strength": 7, + "saving_throw_dexterity": null, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Hezrou", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 16, + "hit_points": 136, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_hill-giant", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 8, + "ability_score_constitution": 19, + "ability_score_intelligence": 5, + "ability_score_wisdom": 9, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Hill Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 13, + "hit_points": 105, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_hippogriff", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 13, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Hippogriff", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 11, + "hit_points": 19, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_hobgoblin", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 10, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Hobgoblin", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 18, + "hit_points": 11, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_homunculus", + "fields": { + "ability_score_strength": 4, + "ability_score_dexterity": 15, + "ability_score_constitution": 11, + "ability_score_intelligence": 10, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Homunculus", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 5, + "type": "construct", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_horned-devil", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 17, + "ability_score_constitution": 21, + "ability_score_intelligence": 12, + "ability_score_wisdom": 16, + "ability_score_charisma": 17, + "saving_throw_strength": 10, + "saving_throw_dexterity": 7, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Horned Devil", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 178, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_hydra", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 12, + "ability_score_constitution": 20, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Hydra", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 15, + "hit_points": 172, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ice-devil", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 14, + "ability_score_constitution": 18, + "ability_score_intelligence": 18, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Ice Devil", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 180, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ice-mephit", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 13, + "ability_score_constitution": 10, + "ability_score_intelligence": 9, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Ice Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 21, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_imp", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 17, + "ability_score_constitution": 13, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 4, + "skill_bonus_history": null, + "skill_bonus_insight": 3, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 4, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Imp", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 10, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_invisible-stalker", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 19, + "ability_score_constitution": 14, + "ability_score_intelligence": 10, + "ability_score_wisdom": 15, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 10, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Invisible Stalker", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 104, + "type": "elemental", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_iron-golem", + "fields": { + "ability_score_strength": 24, + "ability_score_dexterity": 9, + "ability_score_constitution": 20, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Iron Golem", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 20, + "hit_points": 210, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_kobold", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 15, + "ability_score_constitution": 9, + "ability_score_intelligence": 8, + "ability_score_wisdom": 7, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Kobold", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 12, + "hit_points": 5, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_kraken", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 11, + "ability_score_constitution": 25, + "ability_score_intelligence": 22, + "ability_score_wisdom": 18, + "ability_score_charisma": 20, + "saving_throw_strength": 17, + "saving_throw_dexterity": 7, + "saving_throw_constitution": 14, + "saving_throw_intelligence": 13, + "saving_throw_wisdom": 11, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Kraken", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 18, + "hit_points": 472, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_lamia", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 13, + "ability_score_constitution": 15, + "ability_score_intelligence": 14, + "ability_score_wisdom": 15, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 7, + "skill_bonus_history": null, + "skill_bonus_insight": 4, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Lamia", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 97, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_lemure", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 5, + "ability_score_constitution": 11, + "ability_score_intelligence": 1, + "ability_score_wisdom": 11, + "ability_score_charisma": 3, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Lemure", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 7, + "hit_points": 13, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_lich", + "fields": { + "ability_score_strength": 11, + "ability_score_dexterity": 16, + "ability_score_constitution": 16, + "ability_score_intelligence": 20, + "ability_score_wisdom": 14, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": 12, + "saving_throw_wisdom": 9, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 18, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 12, + "skill_bonus_insight": 9, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Lich", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 135, + "type": "undead", + "category": "Monsters", + "alignment": "any evil alignment" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_lizardfolk", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 7, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": 5, + "passive_perception": 13, + "name": "Lizardfolk", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 22, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_magma-mephit", + "fields": { + "ability_score_strength": 8, + "ability_score_dexterity": 12, + "ability_score_constitution": 12, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Magma Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 11, + "hit_points": 22, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_magmin", + "fields": { + "ability_score_strength": 7, + "ability_score_dexterity": 15, + "ability_score_constitution": 12, + "ability_score_intelligence": 8, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Magmin", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 14, + "hit_points": 9, + "type": "elemental", + "category": "Monsters", + "alignment": "chaotic neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_manticore", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 16, + "ability_score_constitution": 17, + "ability_score_intelligence": 7, + "ability_score_wisdom": 12, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Manticore", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 68, + "type": "monstrosity", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_marilith", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 20, + "ability_score_constitution": 20, + "ability_score_intelligence": 18, + "ability_score_wisdom": 16, + "ability_score_charisma": 20, + "saving_throw_strength": 9, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 8, + "saving_throw_charisma": 10, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Marilith", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 189, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_mastiff", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 14, + "ability_score_constitution": 12, + "ability_score_intelligence": 3, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 2, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 13, + "name": "Mastiff", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 5, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_medusa", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 12, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": 4, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Medusa", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 127, + "type": "monstrosity", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_merfolk", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 13, + "ability_score_constitution": 12, + "ability_score_intelligence": 11, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Merfolk", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 11, + "type": "humanoid", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_merrow", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 8, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Merrow", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 45, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_mimic", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 12, + "ability_score_constitution": 15, + "ability_score_intelligence": 5, + "ability_score_wisdom": 13, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Mimic", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 58, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_minotaur", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 11, + "ability_score_constitution": 16, + "ability_score_intelligence": 6, + "ability_score_wisdom": 16, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Minotaur", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 76, + "type": "monstrosity", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_minotaur-skeleton", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 11, + "ability_score_constitution": 15, + "ability_score_intelligence": 6, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Minotaur Skeleton", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 67, + "type": "undead", + "category": "Monsters; Skeletons", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_mule", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Mule", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 11, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_mummy", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 8, + "ability_score_constitution": 15, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Mummy", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 58, + "type": "undead", + "category": "Monsters; Mummies", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_mummy-lord", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 11, + "ability_score_wisdom": 18, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 8, + "saving_throw_intelligence": 5, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 5, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": 5, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Mummy Lord", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 97, + "type": "undead", + "category": "Monsters; Mummies", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_nalfeshnee", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 19, + "ability_score_wisdom": 12, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 11, + "saving_throw_intelligence": 9, + "saving_throw_wisdom": 6, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Nalfeshnee", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 184, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_night-hag", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 16, + "ability_score_wisdom": 14, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 7, + "skill_bonus_history": null, + "skill_bonus_insight": 6, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Night Hag", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 112, + "type": "fiend", + "category": "Monsters; Hags", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_nightmare", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Nightmare", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 68, + "type": "fiend", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ochre-jelly", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 6, + "ability_score_constitution": 14, + "ability_score_intelligence": 2, + "ability_score_wisdom": 6, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Ochre Jelly", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 8, + "hit_points": 45, + "type": "ooze", + "category": "Monsters; Oozes", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ogre", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 8, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 7, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Ogre", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 11, + "hit_points": 59, + "type": "giant", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_ogre-zombie", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 6, + "ability_score_constitution": 18, + "ability_score_intelligence": 3, + "ability_score_wisdom": 6, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 0, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Ogre Zombie", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 8, + "hit_points": 85, + "type": "undead", + "category": "Monsters; Zombies", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_oni", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 11, + "ability_score_constitution": 16, + "ability_score_intelligence": 14, + "ability_score_wisdom": 12, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 5, + "skill_bonus_athletics": null, + "skill_bonus_deception": 8, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Oni", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 16, + "hit_points": 110, + "type": "giant", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_orc", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 12, + "ability_score_constitution": 16, + "ability_score_intelligence": 7, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": 2, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Orc", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 15, + "type": "humanoid", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_otyugh", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 11, + "ability_score_constitution": 19, + "ability_score_intelligence": 6, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Otyugh", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 114, + "type": "aberration", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_owlbear", + "fields": { + "ability_score_strength": 20, + "ability_score_dexterity": 12, + "ability_score_constitution": 17, + "ability_score_intelligence": 3, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Owlbear", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 59, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_pegasus", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 15, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Pegasus", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 59, + "type": "celestial", + "category": "Monsters", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_pit-fiend", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 14, + "ability_score_constitution": 24, + "ability_score_intelligence": 22, + "ability_score_wisdom": 18, + "ability_score_charisma": 24, + "saving_throw_strength": null, + "saving_throw_dexterity": 8, + "saving_throw_constitution": 13, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 10, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Pit Fiend", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 300, + "type": "fiend", + "category": "Monsters; Devils", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_planetar", + "fields": { + "ability_score_strength": 24, + "ability_score_dexterity": 20, + "ability_score_constitution": 24, + "ability_score_intelligence": 19, + "ability_score_wisdom": 22, + "ability_score_charisma": 25, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 12, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 11, + "saving_throw_charisma": 12, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 11, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 21, + "name": "Planetar", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 19, + "hit_points": 200, + "type": "celestial", + "category": "Monsters; Angels", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_plesiosaurus", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Plesiosaurus", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 68, + "type": "beast", + "category": "Monsters; Dinosaurs", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_pony", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 10, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Pony", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 11, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_pseudodragon", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 15, + "ability_score_constitution": 13, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Pseudodragon", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 7, + "type": "dragon", + "category": "Monsters", + "alignment": "neutral good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_purple-worm", + "fields": { + "ability_score_strength": 28, + "ability_score_dexterity": 7, + "ability_score_constitution": 22, + "ability_score_intelligence": 1, + "ability_score_wisdom": 8, + "ability_score_charisma": 4, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": 11, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Purple Worm", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 18, + "hit_points": 247, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_quasit", + "fields": { + "ability_score_strength": 5, + "ability_score_dexterity": 17, + "ability_score_constitution": 10, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Quasit", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 13, + "hit_points": 7, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_rakshasa", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 17, + "ability_score_constitution": 18, + "ability_score_intelligence": 13, + "ability_score_wisdom": 16, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 10, + "skill_bonus_history": null, + "skill_bonus_insight": 8, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Rakshasa", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 110, + "type": "fiend", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_red-dragon-wyrmling", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Red Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 75, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_remorhaz", + "fields": { + "ability_score_strength": 24, + "ability_score_dexterity": 13, + "ability_score_constitution": 21, + "ability_score_intelligence": 4, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Remorhaz", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 17, + "hit_points": 195, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_riding-horse", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 10, + "ability_score_constitution": 12, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 10, + "name": "Riding Horse", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 10, + "hit_points": 13, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_roc", + "fields": { + "ability_score_strength": 28, + "ability_score_dexterity": 10, + "ability_score_constitution": 20, + "ability_score_intelligence": 3, + "ability_score_wisdom": 10, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 3, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Roc", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 15, + "hit_points": 248, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_roper", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 8, + "ability_score_constitution": 17, + "ability_score_intelligence": 7, + "ability_score_wisdom": 16, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Roper", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 20, + "hit_points": 93, + "type": "monstrosity", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_rug-of-smothering", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 14, + "ability_score_constitution": 10, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Rug of Smothering", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 33, + "type": "construct", + "category": "Monsters; Animated Objects", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_rust-monster", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 13, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Rust Monster", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 27, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_sahuagin", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 11, + "ability_score_constitution": 12, + "ability_score_intelligence": 12, + "ability_score_wisdom": 13, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Sahuagin", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 22, + "type": "humanoid", + "category": "Monsters", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_salamander", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 15, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Salamander", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 90, + "type": "elemental", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_satyr", + "fields": { + "ability_score_strength": 12, + "ability_score_dexterity": 16, + "ability_score_constitution": 11, + "ability_score_intelligence": 12, + "ability_score_wisdom": 10, + "ability_score_charisma": 14, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": 6, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Satyr", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 31, + "type": "fey", + "category": "Monsters", + "alignment": "chaotic neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_sea-hag", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 13, + "ability_score_constitution": 16, + "ability_score_intelligence": 12, + "ability_score_wisdom": 12, + "ability_score_charisma": 13, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Sea Hag", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 52, + "type": "fey", + "category": "Monsters; Hags", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_shadow", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 14, + "ability_score_constitution": 13, + "ability_score_intelligence": 6, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Shadow", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 16, + "type": "undead", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_shambling-mound", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 8, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Shambling Mound", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 136, + "type": "plant", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_shield-guardian", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 8, + "ability_score_constitution": 18, + "ability_score_intelligence": 7, + "ability_score_wisdom": 10, + "ability_score_charisma": 3, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Shield Guardian", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 142, + "type": "construct", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_shrieker", + "fields": { + "ability_score_strength": 1, + "ability_score_dexterity": 1, + "ability_score_constitution": 10, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Shrieker", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 5, + "hit_points": 13, + "type": "plant", + "category": "Monsters; Fungi", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_silver-dragon-wyrmling", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Silver Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 17, + "hit_points": 45, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_skeleton", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 14, + "ability_score_constitution": 15, + "ability_score_intelligence": 6, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Skeleton", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 13, + "type": "undead", + "category": "Monsters; Skeletons", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_solar", + "fields": { + "ability_score_strength": 26, + "ability_score_dexterity": 22, + "ability_score_constitution": 26, + "ability_score_intelligence": 25, + "ability_score_wisdom": 25, + "ability_score_charisma": 30, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 14, + "saving_throw_wisdom": 14, + "saving_throw_charisma": 17, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 14, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 24, + "name": "Solar", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 21, + "hit_points": 243, + "type": "celestial", + "category": "Monsters; Angels", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_specter", + "fields": { + "ability_score_strength": 1, + "ability_score_dexterity": 14, + "ability_score_constitution": 11, + "ability_score_intelligence": 10, + "ability_score_wisdom": 10, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Specter", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 22, + "type": "undead", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_spirit-naga", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 17, + "ability_score_constitution": 14, + "ability_score_intelligence": 16, + "ability_score_wisdom": 15, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 5, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Spirit Naga", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 75, + "type": "monstrosity", + "category": "Monsters; Nagas", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_sprite", + "fields": { + "ability_score_strength": 3, + "ability_score_dexterity": 18, + "ability_score_constitution": 10, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 8, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Sprite", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 15, + "hit_points": 2, + "type": "fey", + "category": "Monsters", + "alignment": "neutral good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_steam-mephit", + "fields": { + "ability_score_strength": 5, + "ability_score_dexterity": 11, + "ability_score_constitution": 10, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Steam Mephit", + "document": "srd", + "size": "small", + "weight": "0.000", + "armor_class": 10, + "hit_points": 21, + "type": "elemental", + "category": "Monsters; Mephits", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_stirge", + "fields": { + "ability_score_strength": 4, + "ability_score_dexterity": 16, + "ability_score_constitution": 11, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Stirge", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 14, + "hit_points": 2, + "type": "beast", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_stone-giant", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 15, + "ability_score_constitution": 20, + "ability_score_intelligence": 10, + "ability_score_wisdom": 12, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": 12, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Stone Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 17, + "hit_points": 126, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_stone-golem", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 9, + "ability_score_constitution": 20, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Stone Golem", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 178, + "type": "construct", + "category": "Monsters; Golems", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_storm-giant", + "fields": { + "ability_score_strength": 29, + "ability_score_dexterity": 14, + "ability_score_constitution": 20, + "ability_score_intelligence": 16, + "ability_score_wisdom": 18, + "ability_score_charisma": 18, + "saving_throw_strength": 14, + "saving_throw_dexterity": null, + "saving_throw_constitution": 10, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 8, + "skill_bonus_athletics": 14, + "skill_bonus_deception": null, + "skill_bonus_history": 8, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Storm Giant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 16, + "hit_points": 230, + "type": "giant", + "category": "Monsters; Giants", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_succubusincubus", + "fields": { + "ability_score_strength": 8, + "ability_score_dexterity": 17, + "ability_score_constitution": 13, + "ability_score_intelligence": 15, + "ability_score_wisdom": 12, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 9, + "skill_bonus_history": null, + "skill_bonus_insight": 5, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 9, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 7, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Succubus/Incubus", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 66, + "type": "fiend", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_tarrasque", + "fields": { + "ability_score_strength": 30, + "ability_score_dexterity": 11, + "ability_score_constitution": 30, + "ability_score_intelligence": 3, + "ability_score_wisdom": 11, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": 5, + "saving_throw_wisdom": 9, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Tarrasque", + "document": "srd", + "size": "gargantuan", + "weight": "0.000", + "armor_class": 25, + "hit_points": 676, + "type": "monstrosity", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_treant", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 8, + "ability_score_constitution": 21, + "ability_score_intelligence": 12, + "ability_score_wisdom": 16, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Treant", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 16, + "hit_points": 138, + "type": "plant", + "category": "Monsters", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_triceratops", + "fields": { + "ability_score_strength": 22, + "ability_score_dexterity": 9, + "ability_score_constitution": 17, + "ability_score_intelligence": 2, + "ability_score_wisdom": 11, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Triceratops", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 13, + "hit_points": 95, + "type": "beast", + "category": "Monsters; Dinosaurs", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_troll", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 13, + "ability_score_constitution": 20, + "ability_score_intelligence": 7, + "ability_score_wisdom": 9, + "ability_score_charisma": 7, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Troll", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 84, + "type": "giant", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_tyrannosaurus-rex", + "fields": { + "ability_score_strength": 25, + "ability_score_dexterity": 10, + "ability_score_constitution": 19, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 9, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Tyrannosaurus Rex", + "document": "srd", + "size": "huge", + "weight": "0.000", + "armor_class": 13, + "hit_points": 136, + "type": "beast", + "category": "Monsters; Dinosaurs", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_unicorn", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 15, + "ability_score_intelligence": 11, + "ability_score_wisdom": 17, + "ability_score_charisma": 16, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Unicorn", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 12, + "hit_points": 67, + "type": "celestial", + "category": "Monsters", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_vampire", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 18, + "ability_score_constitution": 18, + "ability_score_intelligence": 17, + "ability_score_wisdom": 15, + "ability_score_charisma": 18, + "saving_throw_strength": null, + "saving_throw_dexterity": 9, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 7, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 9, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Vampire", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 144, + "type": "undead", + "category": "Monsters; Vampires", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_vampire-spawn", + "fields": { + "ability_score_strength": 16, + "ability_score_dexterity": 16, + "ability_score_constitution": 16, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Vampire Spawn", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 15, + "hit_points": 82, + "type": "undead", + "category": "Monsters; Vampires", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_violet-fungus", + "fields": { + "ability_score_strength": 3, + "ability_score_dexterity": 1, + "ability_score_constitution": 10, + "ability_score_intelligence": 1, + "ability_score_wisdom": 3, + "ability_score_charisma": 1, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 6, + "name": "Violet Fungus", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 5, + "hit_points": 18, + "type": "plant", + "category": "Monsters; Fungi", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_vrock", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 15, + "ability_score_constitution": 18, + "ability_score_intelligence": 8, + "ability_score_wisdom": 13, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 2, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 11, + "name": "Vrock", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 15, + "hit_points": 104, + "type": "fiend", + "category": "Monsters; Demons", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_warhorse", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 12, + "ability_score_constitution": 13, + "ability_score_intelligence": 2, + "ability_score_wisdom": 12, + "ability_score_charisma": 7, + "saving_throw_strength": 0, + "saving_throw_dexterity": 0, + "saving_throw_constitution": 0, + "saving_throw_intelligence": 0, + "saving_throw_wisdom": 0, + "saving_throw_charisma": 0, + "skill_bonus_acrobatics": 0, + "skill_bonus_animal_handling": 0, + "skill_bonus_arcana": 0, + "skill_bonus_athletics": 0, + "skill_bonus_deception": 0, + "skill_bonus_history": 0, + "skill_bonus_insight": 0, + "skill_bonus_intimidation": 0, + "skill_bonus_investigation": 0, + "skill_bonus_medicine": 0, + "skill_bonus_nature": 0, + "skill_bonus_perception": 0, + "skill_bonus_performance": 0, + "skill_bonus_persuasion": 0, + "skill_bonus_religion": 0, + "skill_bonus_sleight_of_hand": 0, + "skill_bonus_stealth": 0, + "skill_bonus_survival": 0, + "passive_perception": 11, + "name": "Warhorse", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 11, + "hit_points": 19, + "type": "beast", + "category": "Miscellaneous", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_warhorse-skeleton", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 12, + "ability_score_constitution": 15, + "ability_score_intelligence": 2, + "ability_score_wisdom": 8, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 9, + "name": "Warhorse Skeleton", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 22, + "type": "undead", + "category": "Monsters; Skeletons", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_water-elemental", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 14, + "ability_score_constitution": 18, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 10, + "name": "Water Elemental", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 14, + "hit_points": 114, + "type": "elemental", + "category": "Monsters; Elementals", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_werebear", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 11, + "ability_score_wisdom": 12, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Werebear", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 135, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "neutral good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_wereboar", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 15, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Wereboar", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 10, + "hit_points": 78, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_wererat", + "fields": { + "ability_score_strength": 10, + "ability_score_dexterity": 15, + "ability_score_constitution": 12, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 8, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 2, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Wererat", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 33, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_weretiger", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 15, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 5, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 15, + "name": "Weretiger", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 12, + "hit_points": 120, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_werewolf", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 13, + "ability_score_constitution": 14, + "ability_score_intelligence": 10, + "ability_score_wisdom": 11, + "ability_score_charisma": 10, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Werewolf", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 11, + "hit_points": 58, + "type": "humanoid", + "category": "Monsters; Lycanthropes", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_white-dragon-wyrmling", + "fields": { + "ability_score_strength": 14, + "ability_score_dexterity": 10, + "ability_score_constitution": 14, + "ability_score_intelligence": 5, + "ability_score_wisdom": 10, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": 2, + "saving_throw_constitution": 4, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 2, + "saving_throw_charisma": 2, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 2, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "White Dragon Wyrmling", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 16, + "hit_points": 32, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_wight", + "fields": { + "ability_score_strength": 15, + "ability_score_dexterity": 14, + "ability_score_constitution": 16, + "ability_score_intelligence": 10, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 3, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 13, + "name": "Wight", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 14, + "hit_points": 45, + "type": "undead", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_will-o-wisp", + "fields": { + "ability_score_strength": 1, + "ability_score_dexterity": 28, + "ability_score_constitution": 10, + "ability_score_intelligence": 13, + "ability_score_wisdom": 14, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Will-o'-Wisp", + "document": "srd", + "size": "tiny", + "weight": "0.000", + "armor_class": 19, + "hit_points": 22, + "type": "undead", + "category": "Monsters", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_wraith", + "fields": { + "ability_score_strength": 6, + "ability_score_dexterity": 16, + "ability_score_constitution": 16, + "ability_score_intelligence": 12, + "ability_score_wisdom": 14, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 12, + "name": "Wraith", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 13, + "hit_points": 67, + "type": "undead", + "category": "Monsters", + "alignment": "neutral evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_wyvern", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 16, + "ability_score_intelligence": 5, + "ability_score_wisdom": 12, + "ability_score_charisma": 6, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 4, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 14, + "name": "Wyvern", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 13, + "hit_points": 110, + "type": "dragon", + "category": "Monsters", + "alignment": "unaligned" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_xorn", + "fields": { + "ability_score_strength": 17, + "ability_score_dexterity": 10, + "ability_score_constitution": 22, + "ability_score_intelligence": 11, + "ability_score_wisdom": 10, + "ability_score_charisma": 11, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": null, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Xorn", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 19, + "hit_points": 73, + "type": "elemental", + "category": "Monsters", + "alignment": "neutral" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_young-black-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 14, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 5, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 5, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Young Black Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 127, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_young-blue-dragon", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 10, + "ability_score_constitution": 19, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 8, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 7, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Young Blue Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 152, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_young-brass-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 10, + "ability_score_constitution": 17, + "ability_score_intelligence": 12, + "ability_score_wisdom": 11, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 5, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Young Brass Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 110, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_young-bronze-dragon", + "fields": { + "ability_score_strength": 21, + "ability_score_dexterity": 10, + "ability_score_constitution": 19, + "ability_score_intelligence": 14, + "ability_score_wisdom": 13, + "ability_score_charisma": 17, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 6, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 4, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Young Bronze Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 142, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_young-copper-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 12, + "ability_score_constitution": 17, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Young Copper Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 119, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "chaotic good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_young-gold-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 14, + "ability_score_constitution": 21, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 20, + "saving_throw_strength": null, + "saving_throw_dexterity": 6, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 5, + "saving_throw_charisma": 9, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": 5, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 9, + "skill_bonus_performance": null, + "skill_bonus_persuasion": 9, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 6, + "skill_bonus_survival": null, + "passive_perception": 19, + "name": "Young Gold Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 178, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_young-green-dragon", + "fields": { + "ability_score_strength": 19, + "ability_score_dexterity": 12, + "ability_score_constitution": 17, + "ability_score_intelligence": 16, + "ability_score_wisdom": 13, + "ability_score_charisma": 15, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 6, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 5, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": 5, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 7, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 17, + "name": "Young Green Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 136, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "lawful evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_young-red-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 10, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Young Red Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 178, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_young-silver-dragon", + "fields": { + "ability_score_strength": 23, + "ability_score_dexterity": 10, + "ability_score_constitution": 21, + "ability_score_intelligence": 14, + "ability_score_wisdom": 11, + "ability_score_charisma": 19, + "saving_throw_strength": null, + "saving_throw_dexterity": 4, + "saving_throw_constitution": 9, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 4, + "saving_throw_charisma": 8, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": 6, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": 6, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 8, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 4, + "skill_bonus_survival": null, + "passive_perception": 18, + "name": "Young Silver Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 18, + "hit_points": 168, + "type": "dragon", + "category": "Monsters; Dragons, Metallic", + "alignment": "lawful good" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_young-white-dragon", + "fields": { + "ability_score_strength": 18, + "ability_score_dexterity": 10, + "ability_score_constitution": 18, + "ability_score_intelligence": 6, + "ability_score_wisdom": 11, + "ability_score_charisma": 12, + "saving_throw_strength": null, + "saving_throw_dexterity": 3, + "saving_throw_constitution": 7, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 3, + "saving_throw_charisma": 4, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": 6, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": 3, + "skill_bonus_survival": null, + "passive_perception": 16, + "name": "Young White Dragon", + "document": "srd", + "size": "large", + "weight": "0.000", + "armor_class": 17, + "hit_points": 133, + "type": "dragon", + "category": "Monsters; Dragons, Chromatic", + "alignment": "chaotic evil" + } +}, +{ + "model": "api_v2.creature", + "pk": "srd_zombie", + "fields": { + "ability_score_strength": 13, + "ability_score_dexterity": 6, + "ability_score_constitution": 16, + "ability_score_intelligence": 3, + "ability_score_wisdom": 6, + "ability_score_charisma": 5, + "saving_throw_strength": null, + "saving_throw_dexterity": null, + "saving_throw_constitution": null, + "saving_throw_intelligence": null, + "saving_throw_wisdom": 0, + "saving_throw_charisma": null, + "skill_bonus_acrobatics": null, + "skill_bonus_animal_handling": null, + "skill_bonus_arcana": null, + "skill_bonus_athletics": null, + "skill_bonus_deception": null, + "skill_bonus_history": null, + "skill_bonus_insight": null, + "skill_bonus_intimidation": null, + "skill_bonus_investigation": null, + "skill_bonus_medicine": null, + "skill_bonus_nature": null, + "skill_bonus_perception": null, + "skill_bonus_performance": null, + "skill_bonus_persuasion": null, + "skill_bonus_religion": null, + "skill_bonus_sleight_of_hand": null, + "skill_bonus_stealth": null, + "skill_bonus_survival": null, + "passive_perception": 8, + "name": "Zombie", + "document": "srd", + "size": "medium", + "weight": "0.000", + "armor_class": 8, + "hit_points": 22, + "type": "undead", + "category": "Monsters; Zombies", + "alignment": "neutral evil" + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/CreatureAction.json b/data/v2/wizards-of-the-coast/srd/CreatureAction.json index 83cd1d0e..a581b4b5 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureAction.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureAction.json @@ -1,7108 +1,7108 @@ [ - { - "model": "api_v2.creatureaction", - "pk": "srd_aboleth_enslave", - "fields": { - "name": "Enslave", - "desc": "The aboleth targets one creature it can see within 30 feet of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the aboleth until the aboleth dies or until it is on a different plane of existence from the target. The charmed target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.\n\nWhenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.\n", - "parent": "srd_aboleth", - "uses_type": "PER_DAY", - "uses_param": 3 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_aboleth_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The aboleth makes three tentacle attacks.\n", - "parent": "srd_aboleth", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_aboleth_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) bludgeoning damage.\n", - "parent": "srd_aboleth", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_aboleth_tentacle", - "fields": { - "name": "Tentacle", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 14 Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.\n", - "parent": "srd_aboleth", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-black-dragon_acid-breath", - "fields": { - "name": "Acid Breath", - "desc": "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_adult-black-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-black-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) acid damage.\n", - "parent": "srd_adult-black-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-black-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "srd_adult-black-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-black-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_adult-black-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-black-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_adult-black-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-black-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "srd_adult-black-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-blue-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage plus 5 (1d10) lightning damage.\n", - "parent": "srd_adult-blue-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-blue-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", - "parent": "srd_adult-blue-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-blue-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_adult-blue-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-blue-dragon_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_adult-blue-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-blue-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_adult-blue-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-blue-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", - "parent": "srd_adult-blue-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-brass-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "parent": "srd_adult-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-brass-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "parent": "srd_adult-brass-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-brass-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "srd_adult-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-brass-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_adult-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-brass-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_adult-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-brass-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "srd_adult-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-bronze-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage.\n", - "parent": "srd_adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-bronze-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", - "parent": "srd_adult-bronze-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-bronze-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "srd_adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-bronze-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", - "parent": "srd_adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-bronze-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-bronze-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-bronze-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", - "parent": "srd_adult-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-copper-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "parent": "srd_adult-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-copper-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "parent": "srd_adult-copper-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-copper-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "srd_adult-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-copper-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_adult-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-copper-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_adult-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-copper-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "srd_adult-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-gold-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "parent": "srd_adult-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-gold-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_adult-gold-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-gold-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "srd_adult-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-gold-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "srd_adult-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-gold-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_adult-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-gold-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_adult-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-gold-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "srd_adult-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-green-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 7 (2d6) poison damage.\n", - "parent": "srd_adult-green-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-green-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "srd_adult-green-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-green-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_adult-green-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-green-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_adult-green-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-green-dragon_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_adult-green-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-green-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "srd_adult-green-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-red-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 7 (2d6) fire damage.\n", - "parent": "srd_adult-red-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-red-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "srd_adult-red-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-red-dragon_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 63 (18d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_adult-red-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-red-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_adult-red-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-red-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_adult-red-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-red-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "srd_adult-red-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-silver-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "parent": "srd_adult-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-silver-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_adult-silver-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-silver-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "srd_adult-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-silver-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "srd_adult-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-silver-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_adult-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-silver-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_adult-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-silver-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "srd_adult-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-white-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) cold damage.\n", - "parent": "srd_adult-white-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-white-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "srd_adult-white-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-white-dragon_cold-breath", - "fields": { - "name": "Cold Breath", - "desc": "The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_adult-white-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-white-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 14 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_adult-white-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-white-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_adult-white-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_adult-white-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", - "parent": "srd_adult-white-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_air-elemental_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The elemental makes two slam attacks.\n", - "parent": "srd_air-elemental", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_air-elemental_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", - "parent": "srd_air-elemental", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_air-elemental_whirlwind", - "fields": { - "name": "Whirlwind", - "desc": "Each creature in the elemental's space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked prone. If a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone.\n\nIf the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.\n", - "parent": "srd_air-elemental", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 4 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-black-dragon_acid-breath", - "fields": { - "name": "Acid Breath", - "desc": "The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_ancient-black-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-black-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) acid damage.\n", - "parent": "srd_ancient-black-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-black-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "srd_ancient-black-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-black-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_ancient-black-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-black-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_ancient-black-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-black-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "srd_ancient-black-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-blue-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage plus 11 (2d10) lightning damage.\n", - "parent": "srd_ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-blue-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", - "parent": "srd_ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-blue-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-blue-dragon_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_ancient-blue-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-blue-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-blue-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", - "parent": "srd_ancient-blue-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-brass-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "parent": "srd_ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-brass-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons:\n\nFire Breath. The dragon exhales fire in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "parent": "srd_ancient-brass-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-brass-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "srd_ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-brass-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "srd_ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-brass-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-brass-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-brass-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "srd_ancient-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-bronze-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage.\n", - "parent": "srd_ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-bronze-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", - "parent": "srd_ancient-bronze-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-bronze-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "srd_ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-bronze-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", - "parent": "srd_ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-bronze-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-bronze-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-bronze-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", - "parent": "srd_ancient-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-copper-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", - "parent": "srd_ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-copper-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "parent": "srd_ancient-copper-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-copper-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "srd_ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-copper-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "srd_ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-copper-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-copper-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-copper-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "srd_ancient-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-gold-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", - "parent": "srd_ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-gold-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_ancient-gold-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-gold-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "srd_ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-gold-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "parent": "srd_ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-gold-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 24 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-gold-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-gold-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "parent": "srd_ancient-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-green-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 10 (3d6) poison damage.\n", - "parent": "srd_ancient-green-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-green-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 22 (4d6 + 8) slashing damage.\n", - "parent": "srd_ancient-green-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-green-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_ancient-green-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-green-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_ancient-green-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-green-dragon_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 77 (22d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_ancient-green-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-green-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "srd_ancient-green-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-red-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage plus 14 (4d6) fire damage.\n", - "parent": "srd_ancient-red-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-red-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "parent": "srd_ancient-red-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-red-dragon_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 91 (26d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_ancient-red-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-red-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_ancient-red-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-red-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_ancient-red-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-red-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "parent": "srd_ancient-red-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-silver-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", - "parent": "srd_ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-silver-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_ancient-silver-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-silver-dragon_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", - "parent": "srd_ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-silver-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", - "parent": "srd_ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-silver-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-silver-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-silver-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", - "parent": "srd_ancient-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-white-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) cold damage.\n", - "parent": "srd_ancient-white-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-white-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", - "parent": "srd_ancient-white-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-white-dragon_cold-breath", - "fields": { - "name": "Cold Breath", - "desc": "The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 72 (16d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_ancient-white-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-white-dragon_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", - "parent": "srd_ancient-white-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-white-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_ancient-white-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ancient-white-dragon_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", - "parent": "srd_ancient-white-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_androsphinx_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 17 (2d10 + 6) slashing damage.\n", - "parent": "srd_androsphinx", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_androsphinx_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The sphinx makes two claw attacks.\n", - "parent": "srd_androsphinx", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_androsphinx_roar", - "fields": { - "name": "Roar", - "desc": "The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.\n\nFirst Roar. Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nSecond Roar. Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThird Roar. Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.\n", - "parent": "srd_androsphinx", - "uses_type": "PER_DAY", - "uses_param": 3 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_animated-armor_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The armor makes two melee attacks.\n", - "parent": "srd_animated-armor", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_animated-armor_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", - "parent": "srd_animated-armor", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ankheg_acid-spray", - "fields": { - "name": "Acid Spray", - "desc": "The ankheg spits acid in a line that is 30 feet long and 5 feet wide, provided that it has no creature grappled. Each creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_ankheg", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ankheg_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage. If the target is a Large or smaller creature, it is grappled (escape DC 13). Until this grapple ends, the ankheg can bite only the grappled creature and has advantage on attack rolls to do so.\n", - "parent": "srd_ankheg", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_azer_warhammer", - "fields": { - "name": "Warhammer", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", - "parent": "srd_azer", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_balor_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) slashing damage plus 13 (3d8) lightning damage. If the balor scores a critical hit, it rolls damage dice three times, instead of twice.\n", - "parent": "srd_balor", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_balor_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The balor makes two attacks: one with its longsword and one with its whip.\n", - "parent": "srd_balor", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_balor_teleport", - "fields": { - "name": "Teleport", - "desc": "The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "parent": "srd_balor", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_balor_whip", - "fields": { - "name": "Whip", - "desc": "Melee Weapon Attack: +14 to hit, reach 30 ft., one target. Hit: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage, and the target must succeed on a DC 20 Strength saving throw or be pulled up to 25 feet toward the balor.\n", - "parent": "srd_balor", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_barbed-devil_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "srd_barbed-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_barbed-devil_hurl-flame", - "fields": { - "name": "Hurl Flame", - "desc": "Ranged Spell Attack: +5 to hit, range 150 ft., one target. Hit: 10 (3d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", - "parent": "srd_barbed-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_barbed-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice.\n", - "parent": "srd_barbed-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_barbed-devil_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", - "parent": "srd_barbed-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_basilisk_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage.\n", - "parent": "srd_basilisk", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_bearded-devil_beard", - "fields": { - "name": "Beard", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. While poisoned in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_bearded-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_bearded-devil_glaive", - "fields": { - "name": "Glaive", - "desc": "Melee Weapon Attack: +5 to hit, reach 10 ft., one target. Hit: 8 (1d10 + 3) slashing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 12 Constitution saving throw or lose 5 (1d10) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 (1d10). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", - "parent": "srd_bearded-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_bearded-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes two attacks: one with its beard and one with its glaive.\n", - "parent": "srd_bearded-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_behir_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 22 (3d10 + 6) piercing damage.\n", - "parent": "srd_behir", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_behir_constrict", - "fields": { - "name": "Constrict", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one Large or smaller creature. Hit: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage. The target is grappled (escape DC 16) if the behir isn't already constricting a creature, and the target is restrained until this grapple ends.\n", - "parent": "srd_behir", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_behir_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The behir exhales a line of lightning that is 20 feet long and 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_behir", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_behir_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The behir makes two attacks: one with its bite and one to constrict.\n", - "parent": "srd_behir", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_behir_swallow", - "fields": { - "name": "Swallow", - "desc": "The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the behir, and it takes 21 (6d6) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.\n\nIf the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 feet of the behir. If the behir dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 feet of movement, exiting prone.\n", - "parent": "srd_behir", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_black-dragon-wyrmling_acid-breath", - "fields": { - "name": "Acid Breath", - "desc": "The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_black-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_black-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage.\n", - "parent": "srd_black-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_black-pudding_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", - "parent": "srd_black-pudding", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_blue-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage.\n", - "parent": "srd_blue-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_blue-dragon-wyrmling_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_blue-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_bone-devil_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", - "parent": "srd_bone-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_bone-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes three attacks: two with its claws and one with its sting.\n", - "parent": "srd_bone-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_bone-devil_sting", - "fields": { - "name": "Sting", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage, and the target must succeed on a DC 14 Constitution saving throw or become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_bone-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_brass-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", - "parent": "srd_brass-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_brass-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "parent": "srd_brass-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_bronze-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", - "parent": "srd_bronze-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_bronze-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.\n", - "parent": "srd_bronze-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_bugbear_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at range.\n", - "parent": "srd_bugbear", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_bugbear_morningstar", - "fields": { - "name": "Morningstar", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 11 (2d8 + 2) piercing damage.\n", - "parent": "srd_bugbear", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_bulette_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 30 (4d12 + 4) piercing damage.\n", - "parent": "srd_bulette", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_bulette_deadly-leap", - "fields": { - "name": "Deadly Leap", - "desc": "If the bulette jumps at least 15 feet as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 feet out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the bulette's space.\n", - "parent": "srd_bulette", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_centaur_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "srd_centaur", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_centaur_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "parent": "srd_centaur", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_centaur_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow.\n", - "parent": "srd_centaur", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_centaur_pike", - "fields": { - "name": "Pike", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "parent": "srd_centaur", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_chain-devil_animate-chains", - "fields": { - "name": "Animate Chains", - "desc": "Up to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.\n\nEach animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is incapacitated or dies.\n", - "parent": "srd_chain-devil", - "uses_type": "RECHARGE_AFTER_REST", - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_chain-devil_chain", - "fields": { - "name": "Chain", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) slashing damage. The target is grappled (escape DC 14) if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained and takes 7 (2d6) piercing damage at the start of each of its turns.\n", - "parent": "srd_chain-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_chain-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes two attacks with its chains.\n", - "parent": "srd_chain-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_chimera_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", - "parent": "srd_chimera", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_chimera_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "srd_chimera", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_chimera_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 31 (7d8) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_chimera", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_chimera_horns", - "fields": { - "name": "Horns", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) bludgeoning damage.\n", - "parent": "srd_chimera", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_chimera_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns.\n", - "parent": "srd_chimera", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_chuul_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once.\n", - "parent": "srd_chuul", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_chuul_pincer", - "fields": { - "name": "Pincer", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage. The target is grappled (escape DC 14) if it is a Large or smaller creature and the chuul doesn't have two other creatures grappled.\n", - "parent": "srd_chuul", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_chuul_tentacles", - "fields": { - "name": "Tentacles", - "desc": "One creature grappled by the chuul must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. Until this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_chuul", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_clay-golem_haste", - "fields": { - "name": "Haste", - "desc": "Until the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action.\n", - "parent": "srd_clay-golem", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_clay-golem_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The golem makes two slam attacks.\n", - "parent": "srd_clay-golem", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_clay-golem_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the greater restoration spell or other magic.\n", - "parent": "srd_clay-golem", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_cloaker_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 10 (2d6 + 3) piercing damage, and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is blinded and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a DC 16 Strength check.\n", - "parent": "srd_cloaker", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_cloaker_moan", - "fields": { - "name": "Moan", - "desc": "Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the cloaker's next turn. If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours\n", - "parent": "srd_cloaker", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_cloaker_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The cloaker makes two attacks: one with its bite and one with its tail.\n", - "parent": "srd_cloaker", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_cloaker_phantasms", - "fields": { - "name": "Phantasms", - "desc": "The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.\n\nWhenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.\n\nA duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.\n", - "parent": "srd_cloaker", - "uses_type": "RECHARGE_AFTER_REST", - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_cloaker_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one creature. Hit: 7 (1d8 + 3) slashing damage.\n", - "parent": "srd_cloaker", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_cloud-giant_morningstar", - "fields": { - "name": "Morningstar", - "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) piercing damage.\n", - "parent": "srd_cloud-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_cloud-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two morningstar attacks.\n", - "parent": "srd_cloud-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_cloud-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +12 to hit, range 60/240 ft., one target. Hit: 30 (4d10 + 8) bludgeoning damage.\n", - "parent": "srd_cloud-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_cockatrice_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) piercing damage, and the target must succeed on a DC 11 Constitution saving throw against being magically petrified. On a failed save, the creature begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified for 24 hours.\n", - "parent": "srd_cockatrice", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_copper-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", - "parent": "srd_copper-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_copper-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "parent": "srd_copper-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_couatl_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one creature. Hit: 8 (1d6 + 5) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 24 hours. Until this poison ends, the target is unconscious. Another creature can use an action to shake the target awake.\n", - "parent": "srd_couatl", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_couatl_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).\n\nIn a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form.\n", - "parent": "srd_couatl", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_couatl_constrict", - "fields": { - "name": "Constrict", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one Medium or smaller creature. Hit: 10 (2d6 + 3) bludgeoning damage, and the target is grappled (escape DC 15). Until this grapple ends, the target is restrained, and the couatl can't constrict another target.\n", - "parent": "srd_couatl", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_darkmantle_crush", - "fields": { - "name": "Crush", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d6 + 3) bludgeoning damage, and the darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also blinded and unable to breathe while the darkmantle is attached in this way.\n\nWhile attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.\n\nA creature can detach the darkmantle by making a successful DC 13 Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement.\n", - "parent": "srd_darkmantle", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_darkmantle_darkness-aura", - "fields": { - "name": "Darkness Aura", - "desc": "A 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains concentration, up to 10 minutes (as if concentrating on a spell). Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.\n", - "parent": "srd_darkmantle", - "uses_type": "PER_DAY", - "uses_param": 1 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_deva_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).\n\nIn a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks.\n", - "parent": "srd_deva", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_deva_healing-touch", - "fields": { - "name": "Healing Touch", - "desc": "The deva touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "parent": "srd_deva", - "uses_type": "PER_DAY", - "uses_param": 3 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_deva_mace", - "fields": { - "name": "Mace", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage.\n", - "parent": "srd_deva", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_deva_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The deva makes two melee attacks.\n", - "parent": "srd_deva", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_djinni_create-whirlwind", - "fields": { - "name": "Create Whirlwind", - "desc": "A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains concentration (as if concentrating on a spell). Any creature but the djinni that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.\n\nA creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.\n", - "parent": "srd_djinni", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_djinni_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The djinni makes three scimitar attacks.\n", - "parent": "srd_djinni", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_djinni_scimitar", - "fields": { - "name": "Scimitar", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (djinni's choice).\n", - "parent": "srd_djinni", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_doppelganger_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The doppelganger makes two melee attacks.\n", - "parent": "srd_doppelganger", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_doppelganger_read-thoughts", - "fields": { - "name": "Read Thoughts", - "desc": "The doppelganger magically reads the surface thoughts of one creature within 60 feet of it. The effect can penetrate barriers, but 3 feet of wood or dirt, 2 feet of stone, 2 inches of metal, or a thin sheet of lead blocks it. While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.\n", - "parent": "srd_doppelganger", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_doppelganger_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage.\n", - "parent": "srd_doppelganger", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_dragon-turtle_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) piercing damage.\n", - "parent": "srd_dragon-turtle", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_dragon-turtle_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 16 (2d8 + 7) slashing damage.\n", - "parent": "srd_dragon-turtle", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_dragon-turtle_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks.\n", - "parent": "srd_dragon-turtle", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_dragon-turtle_steam-breath", - "fields": { - "name": "Steam Breath", - "desc": "The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage.\n", - "parent": "srd_dragon-turtle", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_dragon-turtle_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked prone.\n", - "parent": "srd_dragon-turtle", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_dretch_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 3 (1d6) piercing damage.\n", - "parent": "srd_dretch", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_dretch_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 5 (2d4) slashing damage.\n", - "parent": "srd_dretch", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_dretch_fetid-cloud", - "fields": { - "name": "Fetid Cloud", - "desc": "A 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it. Any creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions.\n", - "parent": "srd_dretch", - "uses_type": "PER_DAY", - "uses_param": 1 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_dretch_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dretch makes two attacks: one with its bite and one with its claws.\n", - "parent": "srd_dretch", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_drider_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 2 (1d4) piercing damage plus 9 (2d8) poison damage.\n", - "parent": "srd_drider", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_drider_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +6 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage.\n", - "parent": "srd_drider", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_drider_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", - "parent": "srd_drider", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_drider_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack.\n", - "parent": "srd_drider", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_dryad_club", - "fields": { - "name": "Club", - "desc": "Melee Weapon Attack: +2 to hit (+6 to hit with shillelagh), reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with shillelagh.\n", - "parent": "srd_dryad", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_dryad_fey-charm", - "fields": { - "name": "Fey Charm", - "desc": "The dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a DC 14 Wisdom saving throw or be magically charmed. The charmed creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.\n\nEach time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.\n\nThe dryad can have no more than one humanoid and up to three beasts charmed at a time.\n", - "parent": "srd_dryad", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_duergar_enlarge", - "fields": { - "name": "Enlarge", - "desc": "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available.\n", - "parent": "srd_duergar", - "uses_type": "RECHARGE_AFTER_REST", - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_duergar_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The duergar magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell). Any equipment the duergar wears or carries is invisible with it.\n", - "parent": "srd_duergar", - "uses_type": "RECHARGE_AFTER_REST", - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_duergar_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarged.\n", - "parent": "srd_duergar", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_duergar_war-pick", - "fields": { - "name": "War Pick", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage, or 11 (2d8 + 2) piercing damage while enlarged.\n", - "parent": "srd_duergar", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_dust-mephit_blinding-breath", - "fields": { - "name": "Blinding Breath", - "desc": "The mephit exhales a 15-foot cone of blinding dust. Each creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_dust-mephit", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_dust-mephit_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) slashing damage.\n", - "parent": "srd_dust-mephit", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_earth-elemental_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The elemental makes two slam attacks.\n", - "parent": "srd_earth-elemental", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_earth-elemental_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", - "parent": "srd_earth-elemental", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_efreeti_hurl-flame", - "fields": { - "name": "Hurl Flame", - "desc": "Ranged Spell Attack: +7 to hit, range 120 ft., one target. Hit: 17 (5d6) fire damage.\n", - "parent": "srd_efreeti", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_efreeti_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The efreeti makes two scimitar attacks or uses its Hurl Flame twice.\n", - "parent": "srd_efreeti", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_efreeti_scimitar", - "fields": { - "name": "Scimitar", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage plus 7 (2d6) fire damage.\n", - "parent": "srd_efreeti", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_elf-drow_hand-crossbow", - "fields": { - "name": "Hand Crossbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake.\n", - "parent": "srd_elf-drow", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_elf-drow_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "srd_elf-drow", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_erinyes_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +7 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 13 (3d8) poison damage, and the target must succeed on a DC 14 Constitution saving throw or be poisoned. The poison lasts until it is removed by the lesser restoration spell or similar magic.\n", - "parent": "srd_erinyes", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_erinyes_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands, plus 13 (3d8) poison damage.\n", - "parent": "srd_erinyes", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_erinyes_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The erinyes makes three attacks.\n", - "parent": "srd_erinyes", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ettercap_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage plus 4 (1d8) poison damage. The target must succeed on a DC 11 Constitution saving throw or be poisoned for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_ettercap", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ettercap_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.\n", - "parent": "srd_ettercap", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ettercap_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The ettercap makes two attacks: one with its bite and one with its claws.\n", - "parent": "srd_ettercap", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ettercap_web", - "fields": { - "name": "Web", - "desc": "Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing. As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect also ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, vulnerability to fire damage, and immunity to bludgeoning, poison, and psychic damage.\n", - "parent": "srd_ettercap", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ettin_battleaxe", - "fields": { - "name": "Battleaxe", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", - "parent": "srd_ettin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ettin_morningstar", - "fields": { - "name": "Morningstar", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) piercing damage.\n", - "parent": "srd_ettin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ettin_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The ettin makes two attacks: one with its battleaxe and one with its morningstar.\n", - "parent": "srd_ettin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_fire-elemental_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The elemental makes two touch attacks.\n", - "parent": "srd_fire-elemental", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_fire-elemental_touch", - "fields": { - "name": "Touch", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 (1d10) fire damage at the start of each of its turns.\n", - "parent": "srd_fire-elemental", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_fire-giant_greatsword", - "fields": { - "name": "Greatsword", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 28 (6d6 + 7) slashing damage.\n", - "parent": "srd_fire-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_fire-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greatsword attacks.\n", - "parent": "srd_fire-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_fire-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +11 to hit, range 60/240 ft., one target. Hit: 29 (4d10 + 7) bludgeoning damage.\n", - "parent": "srd_fire-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_flesh-golem_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The golem makes two slam attacks.\n", - "parent": "srd_flesh-golem", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_flesh-golem_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "srd_flesh-golem", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_flying-sword_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage.\n", - "parent": "srd_flying-sword", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_frost-giant_greataxe", - "fields": { - "name": "Greataxe", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 25 (3d12 + 6) slashing damage.\n", - "parent": "srd_frost-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_frost-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greataxe attacks.\n", - "parent": "srd_frost-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_frost-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", - "parent": "srd_frost-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gargoyle_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "srd_gargoyle", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gargoyle_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", - "parent": "srd_gargoyle", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gargoyle_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The gargoyle makes two attacks: one with its bite and one with its claws.\n", - "parent": "srd_gargoyle", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gelatinous-cube_engulf", - "fields": { - "name": "Engulf", - "desc": "The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a DC 12 Dexterity saving throw.\n\nOn a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.\n\nOn a failed save, the cube enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.\n\nAn engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube.\n", - "parent": "srd_gelatinous-cube", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gelatinous-cube_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) acid damage.\n", - "parent": "srd_gelatinous-cube", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ghast_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 12 (2d8 + 3) piercing damage.\n", - "parent": "srd_ghast", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ghast_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a creature other than an undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_ghast", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ghost_etherealness", - "fields": { - "name": "Etherealness", - "desc": "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.\n", - "parent": "srd_ghost", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ghost_horrifying-visage", - "fields": { - "name": "Horrifying Visage", - "desc": "Each non-undead creature within 60 feet of the ghost that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 × 10 years. A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.\n", - "parent": "srd_ghost", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ghost_possession", - "fields": { - "name": "Possession", - "desc": "One humanoid that the ghost can see within 5 feet of it must succeed on a DC 13 Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is incapacitated and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.\n\nThe possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends.\n", - "parent": "srd_ghost", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ghost_withering-touch", - "fields": { - "name": "Withering Touch", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 17 (4d6 + 3) necrotic damage.\n", - "parent": "srd_ghost", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ghoul_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) piercing damage.\n", - "parent": "srd_ghoul", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ghoul_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_ghoul", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gibbering-mouther_bites", - "fields": { - "name": "Bites", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 17 (5d6) piercing damage. If the target is Medium or smaller, it must succeed on a DC 10 Strength saving throw or be knocked prone. If the target is killed by this damage, it is absorbed into the mouther.\n", - "parent": "srd_gibbering-mouther", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gibbering-mouther_blinding-spittle", - "fields": { - "name": "Blinding Spittle", - "desc": "The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the mouther's next turn.\n", - "parent": "srd_gibbering-mouther", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gibbering-mouther_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle.\n", - "parent": "srd_gibbering-mouther", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_glabrezu_fist", - "fields": { - "name": "Fist", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.\n", - "parent": "srd_glabrezu", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_glabrezu_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell.\n", - "parent": "srd_glabrezu", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_glabrezu_pincer", - "fields": { - "name": "Pincer", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a Medium or smaller creature, it is grappled (escape DC 15). The glabrezu has two pincers, each of which can grapple only one target.\n", - "parent": "srd_glabrezu", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gnoll_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\n", - "parent": "srd_gnoll", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gnoll_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "parent": "srd_gnoll", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gnoll_spear", - "fields": { - "name": "Spear", - "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", - "parent": "srd_gnoll", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gnome-deep-svirfneblin_poisoned-dart", - "fields": { - "name": "Poisoned Dart", - "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_gnome-deep-svirfneblin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gnome-deep-svirfneblin_war-pick", - "fields": { - "name": "War Pick", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "parent": "srd_gnome-deep-svirfneblin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_goblin_scimitar", - "fields": { - "name": "Scimitar", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", - "parent": "srd_goblin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_goblin_shortbow", - "fields": { - "name": "Shortbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "srd_goblin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gold-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "parent": "srd_gold-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gold-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_gold-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gorgon_gore", - "fields": { - "name": "Gore", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 18 (2d12 + 5) piercing damage.\n", - "parent": "srd_gorgon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gorgon_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.\n", - "parent": "srd_gorgon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gorgon_petrifying-breath", - "fields": { - "name": "Petrifying Breath", - "desc": "The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw. On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.\n", - "parent": "srd_gorgon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gray-ooze_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage, and if the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", - "parent": "srd_gray-ooze", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_green-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage.\n", - "parent": "srd_green-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_green-dragon-wyrmling_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 11 Constitution saving throw, taking 21 (6d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_green-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_green-hag_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "srd_green-hag", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_green-hag_illusory-appearance", - "fields": { - "name": "Illusory Appearance", - "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the hag is disguised.\n", - "parent": "srd_green-hag", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_green-hag_invisible-passage", - "fields": { - "name": "Invisible Passage", - "desc": "The hag magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.\n", - "parent": "srd_green-hag", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_grick_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "srd_grick", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_grick_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target.\n", - "parent": "srd_grick", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_grick_tentacles", - "fields": { - "name": "Tentacles", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.\n", - "parent": "srd_grick", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_griffon_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "parent": "srd_griffon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_griffon_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "srd_griffon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_griffon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The griffon makes two attacks: one with its beak and one with its claws.\n", - "parent": "srd_griffon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_grimlock_spiked-bone-club", - "fields": { - "name": "Spiked Bone Club", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage.\n", - "parent": "srd_grimlock", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_guardian-naga_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one creature. Hit: 8 (1d8 + 4) piercing damage, and the target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_guardian-naga", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_guardian-naga_spit-poison", - "fields": { - "name": "Spit Poison", - "desc": "Ranged Weapon Attack: +8 to hit, range 15/30 ft., one creature. Hit: The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_guardian-naga", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gynosphinx_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "srd_gynosphinx", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_gynosphinx_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The sphinx makes two claw attacks.\n", - "parent": "srd_gynosphinx", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_half-red-dragon-veteran_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The veteran exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_half-red-dragon-veteran", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_half-red-dragon-veteran_heavy-crossbow", - "fields": { - "name": "Heavy Crossbow", - "desc": "Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.\n", - "parent": "srd_half-red-dragon-veteran", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_half-red-dragon-veteran_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", - "parent": "srd_half-red-dragon-veteran", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_half-red-dragon-veteran_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.\n", - "parent": "srd_half-red-dragon-veteran", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_half-red-dragon-veteran_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "srd_half-red-dragon-veteran", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_harpy_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.\n", - "parent": "srd_harpy", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_harpy_club", - "fields": { - "name": "Club", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.\n", - "parent": "srd_harpy", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_harpy_luring-song", - "fields": { - "name": "Luring Song", - "desc": "The harpy sings a magical melody. Every humanoid and giant within 300 feet of the harpy that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is incapacitated.\n\nWhile charmed by the harpy, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.\n\nA target that successfully saves is immune to this harpy's song for the next 24 hours.\n", - "parent": "srd_harpy", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_harpy_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The harpy makes two attacks: one with its claws and one with its club.\n", - "parent": "srd_harpy", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hell-hound_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 7 (2d6) fire damage.\n", - "parent": "srd_hell-hound", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hell-hound_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The hound exhales fire in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_hell-hound", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hezrou_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "parent": "srd_hezrou", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hezrou_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "srd_hezrou", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hezrou_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The hezrou makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_hezrou", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hill-giant_greatclub", - "fields": { - "name": "Greatclub", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 18 (3d8 + 5) bludgeoning damage.\n", - "parent": "srd_hill-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hill-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greatclub attacks.\n", - "parent": "srd_hill-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hill-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +8 to hit, range 60/240 ft., one target. Hit: 21 (3d10 + 5) bludgeoning damage.\n", - "parent": "srd_hill-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hippogriff_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", - "parent": "srd_hippogriff", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hippogriff_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", - "parent": "srd_hippogriff", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hippogriff_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The hippogriff makes two attacks: one with its beak and one with its claws.\n", - "parent": "srd_hippogriff", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hobgoblin_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "parent": "srd_hobgoblin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hobgoblin_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage, or 6 (1d10 + 1) slashing damage if used with two hands.\n", - "parent": "srd_hobgoblin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_homunculus_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or be poisoned for 1 minute. If the saving throw fails by 5 or more, the target is instead poisoned for 5 (1d10) minutes and unconscious while poisoned in this way.\n", - "parent": "srd_homunculus", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_horned-devil_fork", - "fields": { - "name": "Fork", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (2d8 + 6) piercing damage.\n", - "parent": "srd_horned-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_horned-devil_hurl-flame", - "fields": { - "name": "Hurl Flame", - "desc": "Ranged Spell Attack: +7 to hit, range 150 ft., one target. Hit: 14 (4d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", - "parent": "srd_horned-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_horned-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack.\n", - "parent": "srd_horned-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_horned-devil_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 10 (1d8 + 6) piercing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 17 Constitution saving throw or lose 10 (3d6) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 (3d6). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", - "parent": "srd_horned-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hydra_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 10 (1d10 + 5) piercing damage.\n", - "parent": "srd_hydra", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_hydra_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The hydra makes as many bite attacks as it has heads.\n", - "parent": "srd_hydra", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ice-devil_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) piercing damage plus 10 (3d6) cold damage.\n", - "parent": "srd_ice-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ice-devil_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 10 (2d4 + 5) slashing damage plus 10 (3d6) cold damage.\n", - "parent": "srd_ice-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ice-devil_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The devil makes three attacks: one with its bite, one with its claws, and one with its tail.\n", - "parent": "srd_ice-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ice-devil_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage.\n", - "parent": "srd_ice-devil", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ice-devil_wall-of-ice", - "fields": { - "name": "Wall of Ice", - "desc": "The devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.\n\nWhen the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.\n\nThe wall lasts for 1 minute or until the devil is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.\n", - "parent": "srd_ice-devil", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ice-mephit_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage.\n", - "parent": "srd_ice-mephit", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ice-mephit_frost-breath", - "fields": { - "name": "Frost Breath", - "desc": "The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_ice-mephit", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_imp_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The imp magically turns invisible until it attacks or until its concentration ends (as if concentrating on a spell). Any equipment the imp wears or carries is invisible with it.\n", - "parent": "srd_imp", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_imp_sting", - "fields": { - "name": "Sting", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_imp", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_imp_sting-bite-in-beast-form", - "fields": { - "name": "Sting (Bite in Beast Form)", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_imp", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_invisible-stalker_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The stalker makes two slam attacks.\n", - "parent": "srd_invisible-stalker", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_invisible-stalker_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", - "parent": "srd_invisible-stalker", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_iron-golem_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The golem makes two melee attacks.\n", - "parent": "srd_iron-golem", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_iron-golem_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_iron-golem", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_iron-golem_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", - "parent": "srd_iron-golem", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_iron-golem_sword", - "fields": { - "name": "Sword", - "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 23 (3d10 + 7) slashing damage.\n", - "parent": "srd_iron-golem", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_kobold_dagger", - "fields": { - "name": "Dagger", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", - "parent": "srd_kobold", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_kobold_sling", - "fields": { - "name": "Sling", - "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.\n", - "parent": "srd_kobold", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_kraken_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +17 to hit, reach 5 ft., one target. Hit: 23 (3d8 + 10) piercing damage. If the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the kraken, and it takes 42 (12d6) acid damage at the start of each of the kraken's turns.\n\nIf the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a DC 25 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", - "parent": "srd_kraken", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_kraken_fling", - "fields": { - "name": "Fling", - "desc": "One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.\n", - "parent": "srd_kraken", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_kraken_lightning-storm", - "fields": { - "name": "Lightning Storm", - "desc": "The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_kraken", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_kraken_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The kraken makes three tentacle attacks, each of which it can replace with one use of Fling.\n", - "parent": "srd_kraken", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_kraken_tentacle", - "fields": { - "name": "Tentacle", - "desc": "Melee Weapon Attack: +17 to hit, reach 30 ft., one target. Hit: 20 (3d6 + 10) bludgeoning damage, and the target is grappled (escape DC 18). Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.\n", - "parent": "srd_kraken", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_lamia_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", - "parent": "srd_lamia", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_lamia_dagger", - "fields": { - "name": "Dagger", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.\n", - "parent": "srd_lamia", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_lamia_intoxicating-touch", - "fields": { - "name": "Intoxicating Touch", - "desc": "Melee Spell Attack: +5 to hit, reach 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.\n", - "parent": "srd_lamia", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_lamia_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch.\n", - "parent": "srd_lamia", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_lemure_fist", - "fields": { - "name": "Fist", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\n", - "parent": "srd_lemure", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_lich_paralyzing-touch", - "fields": { - "name": "Paralyzing Touch", - "desc": "Melee Spell Attack: +12 to hit, reach 5 ft., one creature. Hit: 10 (3d6) cold damage. The target must succeed on a DC 18 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_lich", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_lizardfolk_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "srd_lizardfolk", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_lizardfolk_heavy-club", - "fields": { - "name": "Heavy Club", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", - "parent": "srd_lizardfolk", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_lizardfolk_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "srd_lizardfolk", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_lizardfolk_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The lizardfolk makes two melee attacks, each one with a different weapon.\n", - "parent": "srd_lizardfolk", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_lizardfolk_spiked-shield", - "fields": { - "name": "Spiked Shield", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "srd_lizardfolk", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_magma-mephit_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage.\n", - "parent": "srd_magma-mephit", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_magma-mephit_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The mephit exhales a 15-foot cone of fire. Each creature in that area must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_magma-mephit", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_magmin_touch", - "fields": { - "name": "Touch", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d6) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 3 (1d6) fire damage at the end of each of its turns.\n", - "parent": "srd_magmin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_manticore_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", - "parent": "srd_manticore", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_manticore_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "parent": "srd_manticore", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_manticore_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes.\n", - "parent": "srd_manticore", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_manticore_tail-spike", - "fields": { - "name": "Tail Spike", - "desc": "Ranged Weapon Attack: +5 to hit, range 100/200 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", - "parent": "srd_manticore", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_marilith_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "srd_marilith", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_marilith_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The marilith makes seven attacks: six with its longswords and one with its tail.\n", - "parent": "srd_marilith", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_marilith_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 15 (2d10 + 4) bludgeoning damage. If the target is Medium or smaller, it is grappled (escape DC 19). Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.\n", - "parent": "srd_marilith", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_marilith_teleport", - "fields": { - "name": "Teleport", - "desc": "The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "parent": "srd_marilith", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_medusa_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +5 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage.\n", - "parent": "srd_medusa", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_medusa_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The medusa makes either three melee attacks—one with its snake hair and two with its shortsword—or two ranged attacks with its longbow.\n", - "parent": "srd_medusa", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_medusa_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "srd_medusa", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_medusa_snake-hair", - "fields": { - "name": "Snake Hair", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage plus 14 (4d6) poison damage.\n", - "parent": "srd_medusa", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_merfolk_spear", - "fields": { - "name": "Spear", - "desc": "Melee or Ranged Weapon Attack: +2 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hands to make a melee attack.\n", - "parent": "srd_merfolk", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_merrow_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "parent": "srd_merrow", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_merrow_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (2d4 + 4) slashing damage.\n", - "parent": "srd_merrow", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_merrow_harpoon", - "fields": { - "name": "Harpoon", - "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.\n", - "parent": "srd_merrow", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_merrow_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The merrow makes two attacks: one with its bite and one with its claws or harpoon.\n", - "parent": "srd_merrow", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_mimic_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage.\n", - "parent": "srd_mimic", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_mimic_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait.\n", - "parent": "srd_mimic", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_minotaur-skeleton_gore", - "fields": { - "name": "Gore", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", - "parent": "srd_minotaur-skeleton", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_minotaur-skeleton_greataxe", - "fields": { - "name": "Greataxe", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", - "parent": "srd_minotaur-skeleton", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_minotaur_gore", - "fields": { - "name": "Gore", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", - "parent": "srd_minotaur", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_minotaur_greataxe", - "fields": { - "name": "Greataxe", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", - "parent": "srd_minotaur", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_mummy-lord_dreadful-glare", - "fields": { - "name": "Dreadful Glare", - "desc": "The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a DC 16 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours.\n", - "parent": "srd_mummy-lord", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_mummy-lord_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", - "parent": "srd_mummy-lord", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_mummy-lord_rotting-fist", - "fields": { - "name": "Rotting Fist", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage plus 21 (6d6) necrotic damage. If the target is a creature, it must succeed on a DC 16 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", - "parent": "srd_mummy-lord", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_mummy_dreadful-glare", - "fields": { - "name": "Dreadful Glare", - "desc": "The mummy targets one creature it can see within 60 feet of it. If the target can see the mummy, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.\n", - "parent": "srd_mummy", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_mummy_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", - "parent": "srd_mummy", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_mummy_rotting-fist", - "fields": { - "name": "Rotting Fist", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage. If the target is a creature, it must succeed on a DC 12 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", - "parent": "srd_mummy", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_nalfeshnee_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 32 (5d10 + 5) piercing damage.\n", - "parent": "srd_nalfeshnee", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_nalfeshnee_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) slashing damage.\n", - "parent": "srd_nalfeshnee", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_nalfeshnee_horror-nimbus", - "fields": { - "name": "Horror Nimbus", - "desc": "The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.\n", - "parent": "srd_nalfeshnee", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_nalfeshnee_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_nalfeshnee", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_nalfeshnee_teleport", - "fields": { - "name": "Teleport", - "desc": "The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", - "parent": "srd_nalfeshnee", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_night-hag_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies.\n", - "parent": "srd_night-hag", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_night-hag_claws", - "fields": { - "name": "Claws", - "desc": "(Hag Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "srd_night-hag", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_night-hag_etherealness", - "fields": { - "name": "Etherealness", - "desc": "The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession.\n", - "parent": "srd_night-hag", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_night-hag_nightmare-haunting", - "fields": { - "name": "Nightmare Haunting", - "desc": "While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle. As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.\n", - "parent": "srd_night-hag", - "uses_type": "PER_DAY", - "uses_param": 1 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_nightmare_ethereal-stride", - "fields": { - "name": "Ethereal Stride", - "desc": "The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.\n", - "parent": "srd_nightmare", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_nightmare_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage.\n", - "parent": "srd_nightmare", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ochre-jelly_pseudopod", - "fields": { - "name": "Pseudopod", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage.\n", - "parent": "srd_ochre-jelly", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ogre-zombie_morningstar", - "fields": { - "name": "Morningstar", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "srd_ogre-zombie", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ogre_greatclub", - "fields": { - "name": "Greatclub", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "srd_ogre", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_ogre_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", - "parent": "srd_ogre", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_oni_change-shape", - "fields": { - "name": "Change Shape", - "desc": "The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size.\n", - "parent": "srd_oni", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_oni_claw", - "fields": { - "name": "Claw", - "desc": "(Oni Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", - "parent": "srd_oni", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_oni_glaive", - "fields": { - "name": "Glaive", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small or Medium form.\n", - "parent": "srd_oni", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_oni_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The oni makes two attacks, either with its claws or its glaive.\n", - "parent": "srd_oni", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_orc_greataxe", - "fields": { - "name": "Greataxe", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.\n", - "parent": "srd_orc", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_orc_javelin", - "fields": { - "name": "Javelin", - "desc": "Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "srd_orc", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_otyugh_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 12 (2d8 + 3) piercing damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured.\n", - "parent": "srd_otyugh", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_otyugh_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The otyugh makes three attacks: one with its bite and two with its tentacles.\n", - "parent": "srd_otyugh", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_otyugh_tentacle", - "fields": { - "name": "Tentacle", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage. If the target is Medium or smaller, it is grappled (escape DC 13) and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.\n", - "parent": "srd_otyugh", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_otyugh_tentacle-slam", - "fields": { - "name": "Tentacle Slam", - "desc": "The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the otyugh's next turn. On a successful save, the target takes half the bludgeoning damage and isn't stunned.\n", - "parent": "srd_otyugh", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_owlbear_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one creature. Hit: 10 (1d10 + 5) piercing damage.\n", - "parent": "srd_owlbear", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_owlbear_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", - "parent": "srd_owlbear", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_owlbear_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The owlbear makes two attacks: one with its beak and one with its claws.\n", - "parent": "srd_owlbear", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_pegasus_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "srd_pegasus", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_pit-fiend_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) piercing damage. The target must succeed on a DC 21 Constitution saving throw or become poisoned. While poisoned in this way, the target can't regain hit points, and it takes 21 (6d6) poison damage at the start of each of its turns. The poisoned target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_pit-fiend", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_pit-fiend_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 17 (2d8 + 8) slashing damage.\n", - "parent": "srd_pit-fiend", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_pit-fiend_mace", - "fields": { - "name": "Mace", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) bludgeoning damage plus 21 (6d6) fire damage.\n", - "parent": "srd_pit-fiend", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_pit-fiend_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail.\n", - "parent": "srd_pit-fiend", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_pit-fiend_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 24 (3d10 + 8) bludgeoning damage.\n", - "parent": "srd_pit-fiend", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_planetar_greatsword", - "fields": { - "name": "Greatsword", - "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage.\n", - "parent": "srd_planetar", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_planetar_healing-touch", - "fields": { - "name": "Healing Touch", - "desc": "The planetar touches another creature. The target magically regains 30 (6d8 + 3) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "parent": "srd_planetar", - "uses_type": "PER_DAY", - "uses_param": 4 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_planetar_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The planetar makes two melee attacks.\n", - "parent": "srd_planetar", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_plesiosaurus_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 14 (3d6 + 4) piercing damage.\n", - "parent": "srd_plesiosaurus", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_pseudodragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", - "parent": "srd_pseudodragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_pseudodragon_sting", - "fields": { - "name": "Sting", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. If the saving throw fails by 5 or more, the target falls unconscious for the same duration, or until it takes damage or another creature uses an action to shake it awake.\n", - "parent": "srd_pseudodragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_purple-worm_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 22 (3d8 + 9) piercing damage. If the target is a Large or smaller creature, it must succeed on a DC 19 Dexterity saving throw or be swallowed by the worm. A swallowed creature is blinded and restrained, it has total cover against attacks and other effects outside the worm, and it takes 21 (6d6) acid damage at the start of each of the worm's turns.\n\nIf the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a DC 21 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 20 feet of movement, exiting prone.\n", - "parent": "srd_purple-worm", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_purple-worm_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The worm makes two attacks: one with its bite and one with its stinger.\n", - "parent": "srd_purple-worm", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_purple-worm_tail-stinger", - "fields": { - "name": "Tail Stinger", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 19 (3d6 + 9) piercing damage, and the target must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_purple-worm", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_quasit_claws-bite-in-beast-form", - "fields": { - "name": "Claws (Bite in Beast Form)", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must succeed on a DC 10 Constitution saving throw or take 5 (2d4) poison damage and become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_quasit", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_quasit_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The quasit magically turns invisible until it attacks or uses Scare, or until its concentration ends (as if concentrating on a spell). Any equipment the quasit wears or carries is invisible with it.\n", - "parent": "srd_quasit", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_quasit_scare", - "fields": { - "name": "Scare", - "desc": "One creature of the quasit's choice within 20 feet of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.\n", - "parent": "srd_quasit", - "uses_type": "PER_DAY", - "uses_param": 1 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_rakshasa_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature. The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a remove curse spell or similar magic.\n", - "parent": "srd_rakshasa", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_rakshasa_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The rakshasa makes two claw attacks.\n", - "parent": "srd_rakshasa", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_red-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage.\n", - "parent": "srd_red-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_red-dragon-wyrmling_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_red-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_remorhaz_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage. If the target is a creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.\n", - "parent": "srd_remorhaz", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_remorhaz_swallow", - "fields": { - "name": "Swallow", - "desc": "The remorhaz makes one bite attack against a Medium or smaller creature it is grappling. If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the remorhaz, and it takes 21 (6d6) acid damage at the start of each of the remorhaz's turns.\n\nIf the remorhaz takes 30 damage or more on a single turn from a creature inside it, the remorhaz must succeed on a DC 15 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the remorhaz. If the remorhaz dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", - "parent": "srd_remorhaz", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_roc_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 27 (4d8 + 9) piercing damage.\n", - "parent": "srd_roc", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_roc_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The roc makes two attacks: one with its beak and one with its talons.\n", - "parent": "srd_roc", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_roc_talons", - "fields": { - "name": "Talons", - "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 23 (4d6 + 9) slashing damage, and the target is grappled (escape DC 19). Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.\n", - "parent": "srd_roc", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_roper_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 22 (4d8 + 4) piercing damage.\n", - "parent": "srd_roper", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_roper_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite.\n", - "parent": "srd_roper", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_roper_reel", - "fields": { - "name": "Reel", - "desc": "The roper pulls each creature grappled by it up to 25 feet straight toward it.\n", - "parent": "srd_roper", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_roper_tendril", - "fields": { - "name": "Tendril", - "desc": "Melee Weapon Attack: +7 to hit, reach 50 ft., one creature. Hit: The target is grappled (escape DC 15). Until the grapple ends, the target is restrained and has disadvantage on Strength checks and Strength saving throws, and the roper can't use the same tendril on another target.\n", - "parent": "srd_roper", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_rug-of-smothering_smother", - "fields": { - "name": "Smother", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one Medium or smaller creature. Hit: The creature is grappled (escape DC 13). Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 (2d6 + 3) bludgeoning damage.\n", - "parent": "srd_rug-of-smothering", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_rust-monster_antennae", - "fields": { - "name": "Antennae", - "desc": "The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the rust monster's touch. If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.\n", - "parent": "srd_rust-monster", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_rust-monster_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", - "parent": "srd_rust-monster", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_sahuagin_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) piercing damage.\n", - "parent": "srd_sahuagin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_sahuagin_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) slashing damage.\n", - "parent": "srd_sahuagin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_sahuagin_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The sahuagin makes two melee attacks: one with its bite and one with its claws or spear.\n", - "parent": "srd_sahuagin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_sahuagin_spear", - "fields": { - "name": "Spear", - "desc": "Melee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.\n", - "parent": "srd_sahuagin", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_salamander_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The salamander makes two attacks: one with its spear and one with its tail.\n", - "parent": "srd_salamander", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_salamander_spear", - "fields": { - "name": "Spear", - "desc": "Melee or Ranged Weapon Attack: +7 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", - "parent": "srd_salamander", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_salamander_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage, and the target is grappled (escape DC 14). Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.\n", - "parent": "srd_salamander", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_satyr_ram", - "fields": { - "name": "Ram", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) bludgeoning damage.\n", - "parent": "srd_satyr", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_satyr_shortbow", - "fields": { - "name": "Shortbow", - "desc": "Ranged Weapon Attack: +5 to hit, range 80/320 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "srd_satyr", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_satyr_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", - "parent": "srd_satyr", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_sea-hag_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", - "parent": "srd_sea-hag", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_sea-hag_death-glare", - "fields": { - "name": "Death Glare", - "desc": "The hag targets one frightened creature she can see within 30 feet of her. If the target can see the hag, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.\n", - "parent": "srd_sea-hag", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_sea-hag_illusory-appearance", - "fields": { - "name": "Illusory Appearance", - "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 16 Intelligence (Investigation) check to discern that the hag is disguised.\n", - "parent": "srd_sea-hag", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_shadow_strength-drain", - "fields": { - "name": "Strength Drain", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) necrotic damage, and the target's Strength score is reduced by 1d4. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.\n\nIf a non-evil humanoid dies from this attack, a new shadow rises from the corpse 1d4 hours later.\n", - "parent": "srd_shadow", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_shambling-mound_engulf", - "fields": { - "name": "Engulf", - "desc": "The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must succeed on a DC 14 Constitution saving throw at the start of each of the mound's turns or take 13 (2d8 + 4) bludgeoning damage. If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time.\n", - "parent": "srd_shambling-mound", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_shambling-mound_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is grappled (escape DC 14), and the shambling mound uses its Engulf on it.\n", - "parent": "srd_shambling-mound", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_shambling-mound_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "srd_shambling-mound", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_shield-guardian_fist", - "fields": { - "name": "Fist", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "srd_shield-guardian", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_shield-guardian_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The guardian makes two fist attacks.\n", - "parent": "srd_shield-guardian", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_silver-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", - "parent": "srd_silver-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_silver-dragon-wyrmling_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_silver-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_skeleton_shortbow", - "fields": { - "name": "Shortbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "srd_skeleton", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_skeleton_shortsword", - "fields": { - "name": "Shortsword", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "srd_skeleton", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_solar_flying-sword", - "fields": { - "name": "Flying Sword", - "desc": "The solar releases its greatsword to hover magically in an unoccupied space within 5 feet of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 feet and either make one attack against a target or return to the solar's hands. If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies.\n", - "parent": "srd_solar", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_solar_greatsword", - "fields": { - "name": "Greatsword", - "desc": "Melee Weapon Attack: +15 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) slashing damage plus 27 (6d8) radiant damage.\n", - "parent": "srd_solar", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_solar_healing-touch", - "fields": { - "name": "Healing Touch", - "desc": "The solar touches another creature. The target magically regains 40 (8d8 + 4) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", - "parent": "srd_solar", - "uses_type": "PER_DAY", - "uses_param": 4 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_solar_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The solar makes two greatsword attacks.\n", - "parent": "srd_solar", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_solar_slaying-longbow", - "fields": { - "name": "Slaying Longbow", - "desc": "Ranged Weapon Attack: +13 to hit, range 150/600 ft., one target. Hit: 15 (2d8 + 6) piercing damage plus 27 (6d8) radiant damage. If the target is a creature that has 100 hit points or fewer, it must succeed on a DC 15 Constitution saving throw or die.\n", - "parent": "srd_solar", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_specter_life-drain", - "fields": { - "name": "Life Drain", - "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) necrotic damage. The target must succeed on a DC 10 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "parent": "srd_specter", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_spirit-naga_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 7 (1d6 + 4) piercing damage, and the target must make a DC 13 Constitution saving throw, taking 31 (7d8) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_spirit-naga", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_sprite_heart-sight", - "fields": { - "name": "Heart Sight", - "desc": "The sprite touches a creature and magically knows the creature's current emotional state. If the target fails a DC 10 Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.\n", - "parent": "srd_sprite", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_sprite_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The sprite magically turns invisible until it attacks or casts a spell, or until its concentration ends (as if concentrating on a spell). Any equipment the sprite wears or carries is invisible with it.\n", - "parent": "srd_sprite", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_sprite_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 1 slashing damage.\n", - "parent": "srd_sprite", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_sprite_shortbow", - "fields": { - "name": "Shortbow", - "desc": "Ranged Weapon Attack: +6 to hit, range 40/160 ft., one target. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or become poisoned for 1 minute. If its saving throw result is 5 or lower, the poisoned target falls unconscious for the same duration, or until it takes damage or another creature takes an action to shake it awake.\n", - "parent": "srd_sprite", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_steam-mephit_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 2 (1d4) slashing damage plus 2 (1d4) fire damage.\n", - "parent": "srd_steam-mephit", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_steam-mephit_steam-breath", - "fields": { - "name": "Steam Breath", - "desc": "The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 4 (1d8) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_steam-mephit", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_stirge_blood-drain", - "fields": { - "name": "Blood Drain", - "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 5 (1d4 + 3) piercing damage, and the stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 (1d4 + 3) hit points due to blood loss.\n\nThe stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies. A creature, including the target, can use its action to detach the stirge.\n", - "parent": "srd_stirge", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_stone-giant_greatclub", - "fields": { - "name": "Greatclub", - "desc": "Melee Weapon Attack: +9 to hit, reach 15 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", - "parent": "srd_stone-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_stone-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greatclub attacks.\n", - "parent": "srd_stone-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_stone-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage. If the target is a creature, it must succeed on a DC 17 Strength saving throw or be knocked prone.\n", - "parent": "srd_stone-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_stone-golem_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The golem makes two slam attacks.\n", - "parent": "srd_stone-golem", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_stone-golem_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", - "parent": "srd_stone-golem", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_stone-golem_slow", - "fields": { - "name": "Slow", - "desc": "The golem targets one or more creatures it can see within 10 feet of it. Each target must make a DC 17 Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_stone-golem", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_storm-giant_greatsword", - "fields": { - "name": "Greatsword", - "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 30 (6d6 + 9) slashing damage.\n", - "parent": "srd_storm-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_storm-giant_lightning-strike", - "fields": { - "name": "Lightning Strike", - "desc": "The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a DC 17 Dexterity saving throw, taking 54 (12d8) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_storm-giant", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_storm-giant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The giant makes two greatsword attacks.\n", - "parent": "srd_storm-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_storm-giant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +14 to hit, range 60/240 ft., one target. Hit: 35 (4d12 + 9) bludgeoning damage.\n", - "parent": "srd_storm-giant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_succubusincubus_charm", - "fields": { - "name": "Charm", - "desc": "One humanoid the fiend can see within 30 feet of it must succeed on a DC 15 Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the fiend's verbal or telepathic commands. If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.\n\nThe fiend can have only one target charmed at a time. If it charms another, the effect on the previous target ends.\n", - "parent": "srd_succubusincubus", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_succubusincubus_claw", - "fields": { - "name": "Claw", - "desc": "(Fiend Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "parent": "srd_succubusincubus", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_succubusincubus_draining-kiss", - "fields": { - "name": "Draining Kiss", - "desc": "The fiend kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "parent": "srd_succubusincubus", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_succubusincubus_etherealness", - "fields": { - "name": "Etherealness", - "desc": "The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa.\n", - "parent": "srd_succubusincubus", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_tarrasque_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 36 (4d12 + 10) piercing damage. If the target is a creature, it is grappled (escape DC 20). Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.\n", - "parent": "srd_tarrasque", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_tarrasque_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +19 to hit, reach 15 ft., one target. Hit: 28 (4d8 + 10) slashing damage.\n", - "parent": "srd_tarrasque", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_tarrasque_frightful-presence", - "fields": { - "name": "Frightful Presence", - "desc": "Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours.\n", - "parent": "srd_tarrasque", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_tarrasque_horns", - "fields": { - "name": "Horns", - "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 32 (4d10 + 10) piercing damage.\n", - "parent": "srd_tarrasque", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_tarrasque_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite.\n", - "parent": "srd_tarrasque", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_tarrasque_swallow", - "fields": { - "name": "Swallow", - "desc": "The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the tarrasque, and it takes 56 (16d6) acid damage at the start of each of the tarrasque's turns.\n\nIf the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a DC 20 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 30 feet of movement, exiting prone.\n", - "parent": "srd_tarrasque", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_tarrasque_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +19 to hit, reach 20 ft., one target. Hit: 24 (4d6 + 10) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be knocked prone.\n", - "parent": "srd_tarrasque", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_treant_animate-trees", - "fields": { - "name": "Animate Trees", - "desc": "The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a treant, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.\n", - "parent": "srd_treant", - "uses_type": "PER_DAY", - "uses_param": 1 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_treant_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The treant makes two slam attacks.\n", - "parent": "srd_treant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_treant_rock", - "fields": { - "name": "Rock", - "desc": "Ranged Weapon Attack: +10 to hit, range 60/180 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", - "parent": "srd_treant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_treant_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 16 (3d6 + 6) bludgeoning damage.\n", - "parent": "srd_treant", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_triceratops_gore", - "fields": { - "name": "Gore", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 24 (4d8 + 6) piercing damage.\n", - "parent": "srd_triceratops", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_triceratops_stomp", - "fields": { - "name": "Stomp", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.\n", - "parent": "srd_triceratops", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_troll_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) piercing damage.\n", - "parent": "srd_troll", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_troll_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "srd_troll", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_troll_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The troll makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_troll", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_tyrannosaurus-rex_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 33 (4d12 + 7) piercing damage. If the target is a Medium or smaller creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.\n", - "parent": "srd_tyrannosaurus-rex", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_tyrannosaurus-rex_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target.\n", - "parent": "srd_tyrannosaurus-rex", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_tyrannosaurus-rex_tail", - "fields": { - "name": "Tail", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", - "parent": "srd_tyrannosaurus-rex", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_unicorn_healing-touch", - "fields": { - "name": "Healing Touch", - "desc": "The unicorn touches another creature with its horn. The target magically regains 11 (2d8 + 2) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target.\n", - "parent": "srd_unicorn", - "uses_type": "PER_DAY", - "uses_param": 3 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_unicorn_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "srd_unicorn", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_unicorn_horn", - "fields": { - "name": "Horn", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", - "parent": "srd_unicorn", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_unicorn_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The unicorn makes two attacks: one with its hooves and one with its horn.\n", - "parent": "srd_unicorn", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_unicorn_teleport", - "fields": { - "name": "Teleport", - "desc": "The unicorn magically teleports itself and up to three willing creatures it can see within 5 feet of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away.\n", - "parent": "srd_unicorn", - "uses_type": "PER_DAY", - "uses_param": 1 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_vampire-spawn_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "parent": "srd_vampire-spawn", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_vampire-spawn_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 8 (2d4 + 3) slashing damage. Instead of dealing damage, the vampire can grapple the target (escape DC 13).\n", - "parent": "srd_vampire-spawn", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_vampire-spawn_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The vampire makes two attacks, only one of which can be a bite attack.\n", - "parent": "srd_vampire-spawn", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_vampire_bite", - "fields": { - "name": "Bite", - "desc": "(Bat or Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 7 (1d6 + 4) piercing damage plus 10 (3d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a vampire spawn under the vampire's control.\n", - "parent": "srd_vampire", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_vampire_charm", - "fields": { - "name": "Charm", - "desc": "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a DC 17 Wisdom saving throw against this magic or be charmed by the vampire. The charmed target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.\n\nEach time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect.\n", - "parent": "srd_vampire", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_vampire_children-of-the-night", - "fields": { - "name": "Children of the Night", - "desc": "The vampire magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the vampire can call 3d6 wolves instead. The called creatures arrive in 1d4 rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action.\n", - "parent": "srd_vampire", - "uses_type": "PER_DAY", - "uses_param": 1 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_vampire_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Vampire Form Only). The vampire makes two attacks, only one of which can be a bite attack.\n", - "parent": "srd_vampire", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_vampire_unarmed-strike", - "fields": { - "name": "Unarmed Strike", - "desc": "(Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one creature. Hit: 8 (1d8 + 4) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape DC 18).\n", - "parent": "srd_vampire", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_violet-fungus_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The fungus makes 1d4 Rotting Touch attacks.\n", - "parent": "srd_violet-fungus", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_violet-fungus_rotting-touch", - "fields": { - "name": "Rotting Touch", - "desc": "Melee Weapon Attack: +2 to hit, reach 10 ft., one creature. Hit: 4 (1d8) necrotic damage.\n", - "parent": "srd_violet-fungus", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_vrock_beak", - "fields": { - "name": "Beak", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", - "parent": "srd_vrock", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_vrock_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The vrock makes two attacks: one with its beak and one with its talons.\n", - "parent": "srd_vrock", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_vrock_spores", - "fields": { - "name": "Spores", - "desc": "A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.\n", - "parent": "srd_vrock", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 6 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_vrock_stunning-screech", - "fields": { - "name": "Stunning Screech", - "desc": "The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must succeed on a DC 14 Constitution saving throw or be stunned until the end of the vrock's next turn.\n", - "parent": "srd_vrock", - "uses_type": "PER_DAY", - "uses_param": 1 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_vrock_talons", - "fields": { - "name": "Talons", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", - "parent": "srd_vrock", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_warhorse-skeleton_hooves", - "fields": { - "name": "Hooves", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", - "parent": "srd_warhorse-skeleton", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_water-elemental_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The elemental makes two slam attacks.\n", - "parent": "srd_water-elemental", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_water-elemental_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", - "parent": "srd_water-elemental", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_water-elemental_whelm", - "fields": { - "name": "Whelm", - "desc": "Each creature in the elemental's space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the elemental's space.\n\nThe elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a DC 14 Strength and succeeding.\n", - "parent": "srd_water-elemental", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 4 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_werebear_bite", - "fields": { - "name": "Bite", - "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage. If the target is a humanoid, it must succeed on a DC 14 Constitution saving throw or be cursed with werebear lycanthropy.\n", - "parent": "srd_werebear", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_werebear_claw", - "fields": { - "name": "Claw", - "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "srd_werebear", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_werebear_greataxe", - "fields": { - "name": "Greataxe", - "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) slashing damage.\n", - "parent": "srd_werebear", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_werebear_multiattack", - "fields": { - "name": "Multiattack", - "desc": "In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid.\n", - "parent": "srd_werebear", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wereboar_maul", - "fields": { - "name": "Maul", - "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", - "parent": "srd_wereboar", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wereboar_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Humanoid or Hybrid Form Only). The wereboar makes two attacks, only one of which can be with its tusks.\n", - "parent": "srd_wereboar", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wereboar_tusks", - "fields": { - "name": "Tusks", - "desc": "(Boar or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with wereboar lycanthropy.\n", - "parent": "srd_wereboar", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wererat_bite", - "fields": { - "name": "Bite", - "desc": "(Rat or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 11 Constitution saving throw or be cursed with wererat lycanthropy.\n", - "parent": "srd_wererat", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wererat_hand-crossbow", - "fields": { - "name": "Hand Crossbow", - "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "srd_wererat", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wererat_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Humanoid or Hybrid Form Only). The wererat makes two attacks, only one of which can be a bite.\n", - "parent": "srd_wererat", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wererat_shortsword", - "fields": { - "name": "Shortsword", - "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", - "parent": "srd_wererat", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_weretiger_bite", - "fields": { - "name": "Bite", - "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage. If the target is a humanoid, it must succeed on a DC 13 Constitution saving throw or be cursed with weretiger lycanthropy.\n", - "parent": "srd_weretiger", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_weretiger_claw", - "fields": { - "name": "Claw", - "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.\n", - "parent": "srd_weretiger", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_weretiger_longbow", - "fields": { - "name": "Longbow", - "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "parent": "srd_weretiger", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_weretiger_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Humanoid or Hybrid Form Only). In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks.\n", - "parent": "srd_weretiger", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_weretiger_scimitar", - "fields": { - "name": "Scimitar", - "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "parent": "srd_weretiger", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_werewolf_bite", - "fields": { - "name": "Bite", - "desc": "(Wolf or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with werewolf lycanthropy.\n", - "parent": "srd_werewolf", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_werewolf_claws", - "fields": { - "name": "Claws", - "desc": "(Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 7 (2d4 + 2) slashing damage.\n", - "parent": "srd_werewolf", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_werewolf_multiattack", - "fields": { - "name": "Multiattack", - "desc": "(Humanoid or Hybrid Form Only). The werewolf makes two attacks: one with its bite and one with its claws or spear.\n", - "parent": "srd_werewolf", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_werewolf_spear", - "fields": { - "name": "Spear", - "desc": "(Humanoid Form Only). Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", - "parent": "srd_werewolf", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_white-dragon-wyrmling_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage.\n", - "parent": "srd_white-dragon-wyrmling", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_white-dragon-wyrmling_cold-breath", - "fields": { - "name": "Cold Breath", - "desc": "The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a DC 12 Constitution saving throw, taking 22 (5d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_white-dragon-wyrmling", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wight_life-drain", - "fields": { - "name": "Life Drain", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 5 (1d6 + 2) necrotic damage. The target must succeed on a DC 13 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n\nA humanoid slain by this attack rises 24 hours later as a zombie under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time.\n", - "parent": "srd_wight", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wight_longbow", - "fields": { - "name": "Longbow", - "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", - "parent": "srd_wight", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wight_longsword", - "fields": { - "name": "Longsword", - "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage, or 7 (1d10 + 2) slashing damage if used with two hands.\n", - "parent": "srd_wight", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wight_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack.\n", - "parent": "srd_wight", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_will-o-wisp_invisibility", - "fields": { - "name": "Invisibility", - "desc": "The will-o'-wisp and its light magically become invisible until it attacks or uses its Consume Life, or until its concentration ends (as if concentrating on a spell).\n", - "parent": "srd_will-o-wisp", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_will-o-wisp_shock", - "fields": { - "name": "Shock", - "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d8) lightning damage.\n", - "parent": "srd_will-o-wisp", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wraith_create-specter", - "fields": { - "name": "Create Specter", - "desc": "The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the wraith's control. The wraith can have no more than seven specters under its control at one time.\n", - "parent": "srd_wraith", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wraith_life-drain", - "fields": { - "name": "Life Drain", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 21 (4d8 + 3) necrotic damage. The target must succeed on a DC 14 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", - "parent": "srd_wraith", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wyvern_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\n", - "parent": "srd_wyvern", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wyvern_claws", - "fields": { - "name": "Claws", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", - "parent": "srd_wyvern", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wyvern_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack.\n", - "parent": "srd_wyvern", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_wyvern_stinger", - "fields": { - "name": "Stinger", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage. The target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_wyvern", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_xorn_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (3d6 + 3) piercing damage.\n", - "parent": "srd_xorn", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_xorn_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", - "parent": "srd_xorn", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_xorn_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The xorn makes three claw attacks and one bite attack.\n", - "parent": "srd_xorn", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-black-dragon_acid-breath", - "fields": { - "name": "Acid Breath", - "desc": "The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_young-black-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-black-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.\n", - "parent": "srd_young-black-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-black-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "srd_young-black-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-black-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_young-black-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-blue-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.\n", - "parent": "srd_young-blue-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-blue-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", - "parent": "srd_young-blue-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-blue-dragon_lightning-breath", - "fields": { - "name": "Lightning Breath", - "desc": "The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_young-blue-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-blue-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_young-blue-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-brass-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "parent": "srd_young-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-brass-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", - "parent": "srd_young-brass-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-brass-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "srd_young-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-brass-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_young-brass-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-bronze-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.\n", - "parent": "srd_young-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-bronze-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.\n", - "parent": "srd_young-bronze-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-bronze-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", - "parent": "srd_young-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-bronze-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_young-bronze-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-copper-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", - "parent": "srd_young-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-copper-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", - "parent": "srd_young-copper-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-copper-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "srd_young-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-copper-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_young-copper-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-gold-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "parent": "srd_young-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-gold-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_young-gold-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-gold-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "srd_young-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-gold-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_young-gold-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-green-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.\n", - "parent": "srd_young-green-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-green-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "srd_young-green-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-green-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_young-green-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-green-dragon_poison-breath", - "fields": { - "name": "Poison Breath", - "desc": "The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_young-green-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-red-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.\n", - "parent": "srd_young-red-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-red-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "srd_young-red-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-red-dragon_fire-breath", - "fields": { - "name": "Fire Breath", - "desc": "The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_young-red-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-red-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_young-red-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-silver-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", - "parent": "srd_young-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-silver-dragon_breath-weapons", - "fields": { - "name": "Breath Weapons", - "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", - "parent": "srd_young-silver-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-silver-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", - "parent": "srd_young-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-silver-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_young-silver-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-white-dragon_bite", - "fields": { - "name": "Bite", - "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.\n", - "parent": "srd_young-white-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-white-dragon_claw", - "fields": { - "name": "Claw", - "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", - "parent": "srd_young-white-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-white-dragon_cold-breath", - "fields": { - "name": "Cold Breath", - "desc": "The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.\n", - "parent": "srd_young-white-dragon", - "uses_type": "RECHARGE_ON_ROLL", - "uses_param": 5 - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_young-white-dragon_multiattack", - "fields": { - "name": "Multiattack", - "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", - "parent": "srd_young-white-dragon", - "uses_type": null, - "uses_param": null - } - }, - { - "model": "api_v2.creatureaction", - "pk": "srd_zombie_slam", - "fields": { - "name": "Slam", - "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.\n", - "parent": "srd_zombie", - "uses_type": null, - "uses_param": null - } - } -] \ No newline at end of file +{ + "model": "api_v2.creatureaction", + "pk": "srd_aboleth_enslave", + "fields": { + "name": "Enslave", + "desc": "The aboleth targets one creature it can see within 30 feet of it. The target must succeed on a DC 14 Wisdom saving throw or be magically charmed by the aboleth until the aboleth dies or until it is on a different plane of existence from the target. The charmed target is under the aboleth's control and can't take reactions, and the aboleth and the target can communicate telepathically with each other over any distance.\n\nWhenever the charmed target takes damage, the target can repeat the saving throw. On a success, the effect ends. No more than once every 24 hours, the target can also repeat the saving throw when it is at least 1 mile away from the aboleth.\n", + "parent": "srd_aboleth", + "uses_type": "PER_DAY", + "uses_param": 3 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_aboleth_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The aboleth makes three tentacle attacks.\n", + "parent": "srd_aboleth", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_aboleth_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) bludgeoning damage.\n", + "parent": "srd_aboleth", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_aboleth_tentacle", + "fields": { + "name": "Tentacle", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 14 Constitution saving throw or become diseased. The disease has no effect for 1 minute and can be removed by any magic that cures disease. After 1 minute, the diseased creature's skin becomes translucent and slimy, the creature can't regain hit points unless it is underwater, and the disease can be removed only by heal or another disease-curing spell of 6th level or higher. When the creature is outside a body of water, it takes 6 (1d12) acid damage every 10 minutes unless moisture is applied to the skin before 10 minutes have passed.\n", + "parent": "srd_aboleth", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-black-dragon_acid-breath", + "fields": { + "name": "Acid Breath", + "desc": "The dragon exhales acid in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-black-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-black-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) acid damage.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-black-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-black-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-black-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-black-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-black-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-blue-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage plus 5 (1d10) lightning damage.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-blue-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-blue-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-blue-dragon_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-blue-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-blue-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", + "parent": "srd_adult-blue-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-brass-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-brass-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 45 (13d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-brass-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-brass-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-brass-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-brass-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 18 (2d10 + 7) piercing damage.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 90-foot line that is 5 feet wide. Each creature in that line must make a DC 19 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 19 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 14 (2d6 + 7) slashing damage.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-bronze-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +12 to hit, reach 15 ft., one target. Hit: 16 (2d8 + 7) bludgeoning damage.\n", + "parent": "srd_adult-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-copper-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-copper-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 18 Dexterity saving throw, taking 54 (12d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 18 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-copper-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-copper-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-copper-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-copper-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 66 (12d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 60-foot cone. Each creature in that area must succeed on a DC 21 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-gold-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_adult-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-green-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 7 (2d6) poison damage.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-green-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-green-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-green-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-green-dragon_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The dragon exhales poisonous gas in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 56 (16d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-green-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-green-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-green-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-red-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 7 (2d6) fire damage.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-red-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-red-dragon_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon exhales fire in a 60-foot cone. Each creature in that area must make a DC 21 Dexterity saving throw, taking 63 (18d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-red-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-red-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-red-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-red-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_adult-red-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 20 Constitution saving throw, taking 58 (13d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 60-foot cone. Each creature in that area must succeed on a DC 20 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-silver-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_adult-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-white-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 4 (1d8) cold damage.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-white-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +11 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-white-dragon_cold-breath", + "fields": { + "name": "Cold Breath", + "desc": "The dragon exhales an icy blast in a 60-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_adult-white-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-white-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 14 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-white-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_adult-white-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +11 to hit, reach 15 ft., one target. Hit: 15 (2d8 + 6) bludgeoning damage.\n", + "parent": "srd_adult-white-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_air-elemental_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The elemental makes two slam attacks.\n", + "parent": "srd_air-elemental", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_air-elemental_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", + "parent": "srd_air-elemental", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_air-elemental_whirlwind", + "fields": { + "name": "Whirlwind", + "desc": "Each creature in the elemental's space must make a DC 13 Strength saving throw. On a failure, a target takes 15 (3d8 + 2) bludgeoning damage and is flung up 20 feet away from the elemental in a random direction and knocked prone. If a thrown target strikes an object, such as a wall or floor, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 13 Dexterity saving throw or take the same damage and be knocked prone.\n\nIf the saving throw is successful, the target takes half the bludgeoning damage and isn't flung away or knocked prone.\n", + "parent": "srd_air-elemental", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 4 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-black-dragon_acid-breath", + "fields": { + "name": "Acid Breath", + "desc": "The dragon exhales acid in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 67 (15d8) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-black-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) acid damage.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-black-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-black-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-black-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-black-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-black-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-blue-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage plus 11 (2d10) lightning damage.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-blue-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-blue-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-blue-dragon_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-blue-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-blue-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", + "parent": "srd_ancient-blue-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons:\n\nFire Breath. The dragon exhales fire in a 90-foot line that is 10 feet wide. Each creature in that line must make a DC 21 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 90-foot cone. Each creature in that area must succeed on a DC 21 Constitution saving throw or fall unconscious for 10 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 18 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-brass-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +16 to hit, reach 15 ft., one target. Hit: 20 (2d10 + 9) piercing damage.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 120-foot line that is 10 feet wide. Each creature in that line must make a DC 23 Dexterity saving throw, taking 88 (16d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 23 Strength saving throw. On a failed save, the creature is pushed 60 feet away from the dragon.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +16 to hit, reach 10 ft., one target. Hit: 16 (2d6 + 9) slashing damage.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 20 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-bronze-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +16 to hit, reach 20 ft., one target. Hit: 18 (2d8 + 9) bludgeoning damage.\n", + "parent": "srd_ancient-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 90-foot line that is 10 feet wide. Each creature in that line must make a DC 22 Dexterity saving throw, taking 63 (14d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 22 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-copper-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 71 (13d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 24 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-gold-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", + "parent": "srd_ancient-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-green-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +15 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 10 (3d6) poison damage.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-green-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +15 to hit, reach 10 ft., one target. Hit: 22 (4d6 + 8) slashing damage.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-green-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 19 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-green-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-green-dragon_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The dragon exhales poisonous gas in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 77 (22d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-green-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +15 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-green-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-red-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage plus 14 (4d6) fire damage.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-red-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-red-dragon_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon exhales fire in a 90-foot cone. Each creature in that area must make a DC 24 Dexterity saving throw, taking 91 (26d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-red-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-red-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-red-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", + "parent": "srd_ancient-red-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +17 to hit, reach 15 ft., one target. Hit: 21 (2d10 + 10) piercing damage.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 24 Constitution saving throw, taking 67 (15d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 90-foot cone. Each creature in that area must succeed on a DC 24 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The dragon magically polymorphs into a humanoid or beast that has a challenge rating no higher than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the dragon's choice).\n\nIn a new form, the dragon retains its alignment, hit points, Hit Dice, ability to speak, proficiencies, Legendary Resistance, lair actions, and Intelligence, Wisdom, and Charisma scores, as well as this action. Its statistics and capabilities are otherwise replaced by those of the new form, except any class features or legendary actions of that form.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +17 to hit, reach 10 ft., one target. Hit: 17 (2d6 + 10) slashing damage.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 21 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-silver-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +17 to hit, reach 20 ft., one target. Hit: 19 (2d8 + 10) bludgeoning damage.\n", + "parent": "srd_ancient-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-white-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 15 ft., one target. Hit: 19 (2d10 + 8) piercing damage plus 9 (2d8) cold damage.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-white-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) slashing damage.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-white-dragon_cold-breath", + "fields": { + "name": "Cold Breath", + "desc": "The dragon exhales an icy blast in a 90-foot cone. Each creature in that area must make a DC 22 Constitution saving throw, taking 72 (16d8) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-white-dragon_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the dragon's choice that is within 120 feet of the dragon and aware of it must succeed on a DC 16 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the dragon's Frightful Presence for the next 24 hours.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-white-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon can use its Frightful Presence. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ancient-white-dragon_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 20 ft., one target. Hit: 17 (2d8 + 8) bludgeoning damage.\n", + "parent": "srd_ancient-white-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_androsphinx_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 17 (2d10 + 6) slashing damage.\n", + "parent": "srd_androsphinx", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_androsphinx_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The sphinx makes two claw attacks.\n", + "parent": "srd_androsphinx", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_androsphinx_roar", + "fields": { + "name": "Roar", + "desc": "The sphinx emits a magical roar. Each time it roars before finishing a long rest, the roar is louder and the effect is different, as detailed below. Each creature within 500 feet of the sphinx and able to hear the roar must make a saving throw.\n\nFirst Roar. Each creature that fails a DC 18 Wisdom saving throw is frightened for 1 minute. A frightened creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nSecond Roar. Each creature that fails a DC 18 Wisdom saving throw is deafened and frightened for 1 minute. A frightened creature is paralyzed and can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n\nThird Roar. Each creature makes a DC 18 Constitution saving throw. On a failed save, a creature takes 44 (8d10) thunder damage and is knocked prone. On a successful save, the creature takes half as much damage and isn't knocked prone.\n", + "parent": "srd_androsphinx", + "uses_type": "PER_DAY", + "uses_param": 3 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_animated-armor_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The armor makes two melee attacks.\n", + "parent": "srd_animated-armor", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_animated-armor_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", + "parent": "srd_animated-armor", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ankheg_acid-spray", + "fields": { + "name": "Acid Spray", + "desc": "The ankheg spits acid in a line that is 30 feet long and 5 feet wide, provided that it has no creature grappled. Each creature in that line must make a DC 13 Dexterity saving throw, taking 10 (3d6) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ankheg", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ankheg_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage plus 3 (1d6) acid damage. If the target is a Large or smaller creature, it is grappled (escape DC 13). Until this grapple ends, the ankheg can bite only the grappled creature and has advantage on attack rolls to do so.\n", + "parent": "srd_ankheg", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_azer_warhammer", + "fields": { + "name": "Warhammer", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage, or 8 (1d10 + 3) bludgeoning damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", + "parent": "srd_azer", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_balor_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) slashing damage plus 13 (3d8) lightning damage. If the balor scores a critical hit, it rolls damage dice three times, instead of twice.\n", + "parent": "srd_balor", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_balor_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The balor makes two attacks: one with its longsword and one with its whip.\n", + "parent": "srd_balor", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_balor_teleport", + "fields": { + "name": "Teleport", + "desc": "The balor magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", + "parent": "srd_balor", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_balor_whip", + "fields": { + "name": "Whip", + "desc": "Melee Weapon Attack: +14 to hit, reach 30 ft., one target. Hit: 15 (2d6 + 8) slashing damage plus 10 (3d6) fire damage, and the target must succeed on a DC 20 Strength saving throw or be pulled up to 25 feet toward the balor.\n", + "parent": "srd_balor", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_barbed-devil_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_barbed-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_barbed-devil_hurl-flame", + "fields": { + "name": "Hurl Flame", + "desc": "Ranged Spell Attack: +5 to hit, range 150 ft., one target. Hit: 10 (3d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", + "parent": "srd_barbed-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_barbed-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes three melee attacks: one with its tail and two with its claws. Alternatively, it can use Hurl Flame twice.\n", + "parent": "srd_barbed-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_barbed-devil_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", + "parent": "srd_barbed-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_basilisk_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage plus 7 (2d6) poison damage.\n", + "parent": "srd_basilisk", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_bearded-devil_beard", + "fields": { + "name": "Beard", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. While poisoned in this way, the target can't regain hit points. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_bearded-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_bearded-devil_glaive", + "fields": { + "name": "Glaive", + "desc": "Melee Weapon Attack: +5 to hit, reach 10 ft., one target. Hit: 8 (1d10 + 3) slashing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 12 Constitution saving throw or lose 5 (1d10) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 5 (1d10). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", + "parent": "srd_bearded-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_bearded-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes two attacks: one with its beard and one with its glaive.\n", + "parent": "srd_bearded-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_behir_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 22 (3d10 + 6) piercing damage.\n", + "parent": "srd_behir", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_behir_constrict", + "fields": { + "name": "Constrict", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one Large or smaller creature. Hit: 17 (2d10 + 6) bludgeoning damage plus 17 (2d10 + 6) slashing damage. The target is grappled (escape DC 16) if the behir isn't already constricting a creature, and the target is restrained until this grapple ends.\n", + "parent": "srd_behir", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_behir_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The behir exhales a line of lightning that is 20 feet long and 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 66 (12d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_behir", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_behir_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The behir makes two attacks: one with its bite and one to constrict.\n", + "parent": "srd_behir", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_behir_swallow", + "fields": { + "name": "Swallow", + "desc": "The behir makes one bite attack against a Medium or smaller target it is grappling. If the attack hits, the target is also swallowed, and the grapple ends. While swallowed, the target is blinded and restrained, it has total cover against attacks and other effects outside the behir, and it takes 21 (6d6) acid damage at the start of each of the behir's turns. A behir can have only one creature swallowed at a time.\n\nIf the behir takes 30 damage or more on a single turn from the swallowed creature, the behir must succeed on a DC 14 Constitution saving throw at the end of that turn or regurgitate the creature, which falls prone in a space within 10 feet of the behir. If the behir dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 15 feet of movement, exiting prone.\n", + "parent": "srd_behir", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_black-dragon-wyrmling_acid-breath", + "fields": { + "name": "Acid Breath", + "desc": "The dragon exhales acid in a 15-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 22 (5d8) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_black-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_black-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) acid damage.\n", + "parent": "srd_black-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_black-pudding_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) bludgeoning damage plus 18 (4d8) acid damage. In addition, nonmagical armor worn by the target is partly dissolved and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", + "parent": "srd_black-pudding", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_blue-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage plus 3 (1d6) lightning damage.\n", + "parent": "srd_blue-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_blue-dragon-wyrmling_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The dragon exhales lightning in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_blue-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_bone-devil_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", + "parent": "srd_bone-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_bone-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes three attacks: two with its claws and one with its sting.\n", + "parent": "srd_bone-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_bone-devil_sting", + "fields": { + "name": "Sting", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 13 (2d8 + 4) piercing damage plus 17 (5d6) poison damage, and the target must succeed on a DC 14 Constitution saving throw or become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_bone-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_brass-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", + "parent": "srd_brass-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_brass-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 14 (4d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw or fall unconscious for 1 minute. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", + "parent": "srd_brass-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_bronze-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", + "parent": "srd_bronze-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_bronze-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 12 Dexterity saving throw, taking 16 (3d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 12 Strength saving throw. On a failed save, the creature is pushed 30 feet away from the dragon.\n", + "parent": "srd_bronze-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_bugbear_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 9 (2d6 + 2) piercing damage in melee or 5 (1d6 + 2) piercing damage at range.\n", + "parent": "srd_bugbear", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_bugbear_morningstar", + "fields": { + "name": "Morningstar", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 11 (2d8 + 2) piercing damage.\n", + "parent": "srd_bugbear", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_bulette_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 30 (4d12 + 4) piercing damage.\n", + "parent": "srd_bulette", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_bulette_deadly-leap", + "fields": { + "name": "Deadly Leap", + "desc": "If the bulette jumps at least 15 feet as part of its movement, it can then use this action to land on its feet in a space that contains one or more other creatures. Each of those creatures must succeed on a DC 16 Strength or Dexterity saving throw (target's choice) or be knocked prone and take 14 (3d6 + 4) bludgeoning damage plus 14 (3d6 + 4) slashing damage. On a successful save, the creature takes only half the damage, isn't knocked prone, and is pushed 5 feet out of the bulette's space into an unoccupied space of the creature's choice. If no unoccupied space is within range, the creature instead falls prone in the bulette's space.\n", + "parent": "srd_bulette", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_centaur_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_centaur", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_centaur_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", + "parent": "srd_centaur", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_centaur_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The centaur makes two attacks: one with its pike and one with its hooves or two with its longbow.\n", + "parent": "srd_centaur", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_centaur_pike", + "fields": { + "name": "Pike", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", + "parent": "srd_centaur", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_chain-devil_animate-chains", + "fields": { + "name": "Animate Chains", + "desc": "Up to four chains the devil can see within 60 feet of it magically sprout razor-edged barbs and animate under the devil's control, provided that the chains aren't being worn or carried.\n\nEach animated chain is an object with AC 20, 20 hit points, resistance to piercing damage, and immunity to psychic and thunder damage. When the devil uses Multiattack on its turn, it can use each animated chain to make one additional chain attack. An animated chain can grapple one creature of its own but can't make attacks while grappling. An animated chain reverts to its inanimate state if reduced to 0 hit points or if the devil is incapacitated or dies.\n", + "parent": "srd_chain-devil", + "uses_type": "RECHARGE_AFTER_REST", + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_chain-devil_chain", + "fields": { + "name": "Chain", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) slashing damage. The target is grappled (escape DC 14) if the devil isn't already grappling a creature. Until this grapple ends, the target is restrained and takes 7 (2d6) piercing damage at the start of each of its turns.\n", + "parent": "srd_chain-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_chain-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes two attacks with its chains.\n", + "parent": "srd_chain-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_chimera_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", + "parent": "srd_chimera", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_chimera_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_chimera", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_chimera_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon head exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 31 (7d8) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_chimera", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_chimera_horns", + "fields": { + "name": "Horns", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) bludgeoning damage.\n", + "parent": "srd_chimera", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_chimera_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The chimera makes three attacks: one with its bite, one with its horns, and one with its claws. When its fire breath is available, it can use the breath in place of its bite or horns.\n", + "parent": "srd_chimera", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_chuul_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The chuul makes two pincer attacks. If the chuul is grappling a creature, the chuul can also use its tentacles once.\n", + "parent": "srd_chuul", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_chuul_pincer", + "fields": { + "name": "Pincer", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage. The target is grappled (escape DC 14) if it is a Large or smaller creature and the chuul doesn't have two other creatures grappled.\n", + "parent": "srd_chuul", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_chuul_tentacles", + "fields": { + "name": "Tentacles", + "desc": "One creature grappled by the chuul must succeed on a DC 13 Constitution saving throw or be poisoned for 1 minute. Until this poison ends, the target is paralyzed. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_chuul", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_clay-golem_haste", + "fields": { + "name": "Haste", + "desc": "Until the end of its next turn, the golem magically gains a +2 bonus to its AC, has advantage on Dexterity saving throws, and can use its slam attack as a bonus action.\n", + "parent": "srd_clay-golem", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_clay-golem_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The golem makes two slam attacks.\n", + "parent": "srd_clay-golem", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_clay-golem_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw or have its hit point maximum reduced by an amount equal to the damage taken. The target dies if this attack reduces its hit point maximum to 0. The reduction lasts until removed by the greater restoration spell or other magic.\n", + "parent": "srd_clay-golem", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_cloaker_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 10 (2d6 + 3) piercing damage, and if the target is Large or smaller, the cloaker attaches to it. If the cloaker has advantage against the target, the cloaker attaches to the target's head, and the target is blinded and unable to breathe while the cloaker is attached. While attached, the cloaker can make this attack only against the target and has advantage on the attack roll. The cloaker can detach itself by spending 5 feet of its movement. A creature, including the target, can take its action to detach the cloaker by succeeding on a DC 16 Strength check.\n", + "parent": "srd_cloaker", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_cloaker_moan", + "fields": { + "name": "Moan", + "desc": "Each creature within 60 feet of the cloaker that can hear its moan and that isn't an aberration must succeed on a DC 13 Wisdom saving throw or become frightened until the end of the cloaker's next turn. If a creature's saving throw is successful, the creature is immune to the cloaker's moan for the next 24 hours\n", + "parent": "srd_cloaker", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_cloaker_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The cloaker makes two attacks: one with its bite and one with its tail.\n", + "parent": "srd_cloaker", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_cloaker_phantasms", + "fields": { + "name": "Phantasms", + "desc": "The cloaker magically creates three illusory duplicates of itself if it isn't in bright light. The duplicates move with it and mimic its actions, shifting position so as to make it impossible to track which cloaker is the real one. If the cloaker is ever in an area of bright light, the duplicates disappear.\n\nWhenever any creature targets the cloaker with an attack or a harmful spell while a duplicate remains, that creature rolls randomly to determine whether it targets the cloaker or one of the duplicates. A creature is unaffected by this magical effect if it can't see or if it relies on senses other than sight.\n\nA duplicate has the cloaker's AC and uses its saving throws. If an attack hits a duplicate, or if a duplicate fails a saving throw against an effect that deals damage, the duplicate disappears.\n", + "parent": "srd_cloaker", + "uses_type": "RECHARGE_AFTER_REST", + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_cloaker_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one creature. Hit: 7 (1d8 + 3) slashing damage.\n", + "parent": "srd_cloaker", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_cloud-giant_morningstar", + "fields": { + "name": "Morningstar", + "desc": "Melee Weapon Attack: +12 to hit, reach 10 ft., one target. Hit: 21 (3d8 + 8) piercing damage.\n", + "parent": "srd_cloud-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_cloud-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two morningstar attacks.\n", + "parent": "srd_cloud-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_cloud-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +12 to hit, range 60/240 ft., one target. Hit: 30 (4d10 + 8) bludgeoning damage.\n", + "parent": "srd_cloud-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_cockatrice_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) piercing damage, and the target must succeed on a DC 11 Constitution saving throw against being magically petrified. On a failed save, the creature begins to turn to stone and is restrained. It must repeat the saving throw at the end of its next turn. On a success, the effect ends. On a failure, the creature is petrified for 24 hours.\n", + "parent": "srd_cockatrice", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_copper-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage.\n", + "parent": "srd_copper-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_copper-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 20-foot line that is 5 feet wide. Each creature in that line must make a DC 11 Dexterity saving throw, taking 18 (4d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 11 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", + "parent": "srd_copper-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_couatl_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one creature. Hit: 8 (1d6 + 5) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 24 hours. Until this poison ends, the target is unconscious. Another creature can use an action to shake the target awake.\n", + "parent": "srd_couatl", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_couatl_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The couatl magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the couatl's choice).\n\nIn a new form, the couatl retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and other actions are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks. If the new form has a bite attack, the couatl can use its bite in that form.\n", + "parent": "srd_couatl", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_couatl_constrict", + "fields": { + "name": "Constrict", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one Medium or smaller creature. Hit: 10 (2d6 + 3) bludgeoning damage, and the target is grappled (escape DC 15). Until this grapple ends, the target is restrained, and the couatl can't constrict another target.\n", + "parent": "srd_couatl", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_darkmantle_crush", + "fields": { + "name": "Crush", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 6 (1d6 + 3) bludgeoning damage, and the darkmantle attaches to the target. If the target is Medium or smaller and the darkmantle has advantage on the attack roll, it attaches by engulfing the target's head, and the target is also blinded and unable to breathe while the darkmantle is attached in this way.\n\nWhile attached to the target, the darkmantle can attack no other creature except the target but has advantage on its attack rolls. The darkmantle's speed also becomes 0, it can't benefit from any bonus to its speed, and it moves with the target.\n\nA creature can detach the darkmantle by making a successful DC 13 Strength check as an action. On its turn, the darkmantle can detach itself from the target by using 5 feet of movement.\n", + "parent": "srd_darkmantle", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_darkmantle_darkness-aura", + "fields": { + "name": "Darkness Aura", + "desc": "A 15-foot radius of magical darkness extends out from the darkmantle, moves with it, and spreads around corners. The darkness lasts as long as the darkmantle maintains concentration, up to 10 minutes (as if concentrating on a spell). Darkvision can't penetrate this darkness, and no natural light can illuminate it. If any of the darkness overlaps with an area of light created by a spell of 2nd level or lower, the spell creating the light is dispelled.\n", + "parent": "srd_darkmantle", + "uses_type": "PER_DAY", + "uses_param": 1 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_deva_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The deva magically polymorphs into a humanoid or beast that has a challenge rating equal to or less than its own, or back into its true form. It reverts to its true form if it dies. Any equipment it is wearing or carrying is absorbed or borne by the new form (the deva's choice).\n\nIn a new form, the deva retains its game statistics and ability to speak, but its AC, movement modes, Strength, Dexterity, and special senses are replaced by those of the new form, and it gains any statistics and capabilities (except class features, legendary actions, and lair actions) that the new form has but that it lacks.\n", + "parent": "srd_deva", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_deva_healing-touch", + "fields": { + "name": "Healing Touch", + "desc": "The deva touches another creature. The target magically regains 20 (4d8 + 2) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", + "parent": "srd_deva", + "uses_type": "PER_DAY", + "uses_param": 3 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_deva_mace", + "fields": { + "name": "Mace", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage plus 18 (4d8) radiant damage.\n", + "parent": "srd_deva", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_deva_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The deva makes two melee attacks.\n", + "parent": "srd_deva", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_djinni_create-whirlwind", + "fields": { + "name": "Create Whirlwind", + "desc": "A 5-foot-radius, 30-foot-tall cylinder of swirling air magically forms on a point the djinni can see within 120 feet of it. The whirlwind lasts as long as the djinni maintains concentration (as if concentrating on a spell). Any creature but the djinni that enters the whirlwind must succeed on a DC 18 Strength saving throw or be restrained by it. The djinni can move the whirlwind up to 60 feet as an action, and creatures restrained by the whirlwind move with it. The whirlwind ends if the djinni loses sight of it.\n\nA creature can use its action to free a creature restrained by the whirlwind, including itself, by succeeding on a DC 18 Strength check. If the check succeeds, the creature is no longer restrained and moves to the nearest space outside the whirlwind.\n", + "parent": "srd_djinni", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_djinni_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The djinni makes three scimitar attacks.\n", + "parent": "srd_djinni", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_djinni_scimitar", + "fields": { + "name": "Scimitar", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage plus 3 (1d6) lightning or thunder damage (djinni's choice).\n", + "parent": "srd_djinni", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_doppelganger_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The doppelganger makes two melee attacks.\n", + "parent": "srd_doppelganger", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_doppelganger_read-thoughts", + "fields": { + "name": "Read Thoughts", + "desc": "The doppelganger magically reads the surface thoughts of one creature within 60 feet of it. The effect can penetrate barriers, but 3 feet of wood or dirt, 2 feet of stone, 2 inches of metal, or a thin sheet of lead blocks it. While the target is in range, the doppelganger can continue reading its thoughts, as long as the doppelganger's concentration isn't broken (as if concentrating on a spell). While reading the target's mind, the doppelganger has advantage on Wisdom (Insight) and Charisma (Deception, Intimidation, and Persuasion) checks against the target.\n", + "parent": "srd_doppelganger", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_doppelganger_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) bludgeoning damage.\n", + "parent": "srd_doppelganger", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_dragon-turtle_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) piercing damage.\n", + "parent": "srd_dragon-turtle", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_dragon-turtle_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 16 (2d8 + 7) slashing damage.\n", + "parent": "srd_dragon-turtle", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_dragon-turtle_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon turtle makes three attacks: one with its bite and two with its claws. It can make one tail attack in place of its two claw attacks.\n", + "parent": "srd_dragon-turtle", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_dragon-turtle_steam-breath", + "fields": { + "name": "Steam Breath", + "desc": "The dragon turtle exhales scalding steam in a 60-foot cone. Each creature in that area must make a DC 18 Constitution saving throw, taking 52 (15d6) fire damage on a failed save, or half as much damage on a successful one. Being underwater doesn't grant resistance against this damage.\n", + "parent": "srd_dragon-turtle", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_dragon-turtle_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +13 to hit, reach 15 ft., one target. Hit: 26 (3d12 + 7) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be pushed up to 10 feet away from the dragon turtle and knocked prone.\n", + "parent": "srd_dragon-turtle", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_dretch_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 3 (1d6) piercing damage.\n", + "parent": "srd_dretch", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_dretch_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 5 (2d4) slashing damage.\n", + "parent": "srd_dretch", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_dretch_fetid-cloud", + "fields": { + "name": "Fetid Cloud", + "desc": "A 10-foot radius of disgusting green gas extends out from the dretch. The gas spreads around corners, and its area is lightly obscured. It lasts for 1 minute or until a strong wind disperses it. Any creature that starts its turn in that area must succeed on a DC 11 Constitution saving throw or be poisoned until the start of its next turn. While poisoned in this way, the target can take either an action or a bonus action on its turn, not both, and can't take reactions.\n", + "parent": "srd_dretch", + "uses_type": "PER_DAY", + "uses_param": 1 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_dretch_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dretch makes two attacks: one with its bite and one with its claws.\n", + "parent": "srd_dretch", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_drider_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 2 (1d4) piercing damage plus 9 (2d8) poison damage.\n", + "parent": "srd_drider", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_drider_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +6 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) poison damage.\n", + "parent": "srd_drider", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_drider_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", + "parent": "srd_drider", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_drider_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The drider makes three attacks, either with its longsword or its longbow. It can replace one of those attacks with a bite attack.\n", + "parent": "srd_drider", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_dryad_club", + "fields": { + "name": "Club", + "desc": "Melee Weapon Attack: +2 to hit (+6 to hit with shillelagh), reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage, or 8 (1d8 + 4) bludgeoning damage with shillelagh.\n", + "parent": "srd_dryad", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_dryad_fey-charm", + "fields": { + "name": "Fey Charm", + "desc": "The dryad targets one humanoid or beast that she can see within 30 feet of her. If the target can see the dryad, it must succeed on a DC 14 Wisdom saving throw or be magically charmed. The charmed creature regards the dryad as a trusted friend to be heeded and protected. Although the target isn't under the dryad's control, it takes the dryad's requests or actions in the most favorable way it can.\n\nEach time the dryad or its allies do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the dryad dies, is on a different plane of existence from the target, or ends the effect as a bonus action. If a target's saving throw is successful, the target is immune to the dryad's Fey Charm for the next 24 hours.\n\nThe dryad can have no more than one humanoid and up to three beasts charmed at a time.\n", + "parent": "srd_dryad", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_duergar_enlarge", + "fields": { + "name": "Enlarge", + "desc": "For 1 minute, the duergar magically increases in size, along with anything it is wearing or carrying. While enlarged, the duergar is Large, doubles its damage dice on Strength-based weapon attacks (included in the attacks), and makes Strength checks and Strength saving throws with advantage. If the duergar lacks the room to become Large, it attains the maximum size possible in the space available.\n", + "parent": "srd_duergar", + "uses_type": "RECHARGE_AFTER_REST", + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_duergar_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The duergar magically turns invisible until it attacks, casts a spell, or uses its Enlarge, or until its concentration is broken, up to 1 hour (as if concentrating on a spell). Any equipment the duergar wears or carries is invisible with it.\n", + "parent": "srd_duergar", + "uses_type": "RECHARGE_AFTER_REST", + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_duergar_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 9 (2d6 + 2) piercing damage while enlarged.\n", + "parent": "srd_duergar", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_duergar_war-pick", + "fields": { + "name": "War Pick", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage, or 11 (2d8 + 2) piercing damage while enlarged.\n", + "parent": "srd_duergar", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_dust-mephit_blinding-breath", + "fields": { + "name": "Blinding Breath", + "desc": "The mephit exhales a 15-foot cone of blinding dust. Each creature in that area must succeed on a DC 10 Dexterity saving throw or be blinded for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_dust-mephit", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_dust-mephit_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) slashing damage.\n", + "parent": "srd_dust-mephit", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_earth-elemental_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The elemental makes two slam attacks.\n", + "parent": "srd_earth-elemental", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_earth-elemental_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 14 (2d8 + 5) bludgeoning damage.\n", + "parent": "srd_earth-elemental", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_efreeti_hurl-flame", + "fields": { + "name": "Hurl Flame", + "desc": "Ranged Spell Attack: +7 to hit, range 120 ft., one target. Hit: 17 (5d6) fire damage.\n", + "parent": "srd_efreeti", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_efreeti_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The efreeti makes two scimitar attacks or uses its Hurl Flame twice.\n", + "parent": "srd_efreeti", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_efreeti_scimitar", + "fields": { + "name": "Scimitar", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage plus 7 (2d6) fire damage.\n", + "parent": "srd_efreeti", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_elf-drow_hand-crossbow", + "fields": { + "name": "Hand Crossbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage, and the target must succeed on a DC 13 Constitution saving throw or be poisoned for 1 hour. If the saving throw fails by 5 or more, the target is also unconscious while poisoned in this way. The target wakes up if it takes damage or if another creature takes an action to shake it awake.\n", + "parent": "srd_elf-drow", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_elf-drow_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_elf-drow", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_erinyes_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +7 to hit, range 150/600 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 13 (3d8) poison damage, and the target must succeed on a DC 14 Constitution saving throw or be poisoned. The poison lasts until it is removed by the lesser restoration spell or similar magic.\n", + "parent": "srd_erinyes", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_erinyes_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage, or 9 (1d10 + 4) slashing damage if used with two hands, plus 13 (3d8) poison damage.\n", + "parent": "srd_erinyes", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_erinyes_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The erinyes makes three attacks.\n", + "parent": "srd_erinyes", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ettercap_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 6 (1d8 + 2) piercing damage plus 4 (1d8) poison damage. The target must succeed on a DC 11 Constitution saving throw or be poisoned for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ettercap", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ettercap_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage.\n", + "parent": "srd_ettercap", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ettercap_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The ettercap makes two attacks: one with its bite and one with its claws.\n", + "parent": "srd_ettercap", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ettercap_web", + "fields": { + "name": "Web", + "desc": "Ranged Weapon Attack: +4 to hit, range 30/60 ft., one Large or smaller creature. Hit: The creature is restrained by webbing. As an action, the restrained creature can make a DC 11 Strength check, escaping from the webbing on a success. The effect also ends if the webbing is destroyed. The webbing has AC 10, 5 hit points, vulnerability to fire damage, and immunity to bludgeoning, poison, and psychic damage.\n", + "parent": "srd_ettercap", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ettin_battleaxe", + "fields": { + "name": "Battleaxe", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", + "parent": "srd_ettin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ettin_morningstar", + "fields": { + "name": "Morningstar", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) piercing damage.\n", + "parent": "srd_ettin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ettin_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The ettin makes two attacks: one with its battleaxe and one with its morningstar.\n", + "parent": "srd_ettin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_fire-elemental_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The elemental makes two touch attacks.\n", + "parent": "srd_fire-elemental", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_fire-elemental_touch", + "fields": { + "name": "Touch", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 5 (1d10) fire damage at the start of each of its turns.\n", + "parent": "srd_fire-elemental", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_fire-giant_greatsword", + "fields": { + "name": "Greatsword", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 28 (6d6 + 7) slashing damage.\n", + "parent": "srd_fire-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_fire-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greatsword attacks.\n", + "parent": "srd_fire-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_fire-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +11 to hit, range 60/240 ft., one target. Hit: 29 (4d10 + 7) bludgeoning damage.\n", + "parent": "srd_fire-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_flesh-golem_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The golem makes two slam attacks.\n", + "parent": "srd_flesh-golem", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_flesh-golem_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_flesh-golem", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_flying-sword_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage.\n", + "parent": "srd_flying-sword", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_frost-giant_greataxe", + "fields": { + "name": "Greataxe", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 25 (3d12 + 6) slashing damage.\n", + "parent": "srd_frost-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_frost-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greataxe attacks.\n", + "parent": "srd_frost-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_frost-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", + "parent": "srd_frost-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gargoyle_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_gargoyle", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gargoyle_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", + "parent": "srd_gargoyle", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gargoyle_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The gargoyle makes two attacks: one with its bite and one with its claws.\n", + "parent": "srd_gargoyle", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gelatinous-cube_engulf", + "fields": { + "name": "Engulf", + "desc": "The cube moves up to its speed. While doing so, it can enter Large or smaller creatures' spaces. Whenever the cube enters a creature's space, the creature must make a DC 12 Dexterity saving throw.\n\nOn a successful save, the creature can choose to be pushed 5 feet back or to the side of the cube. A creature that chooses not to be pushed suffers the consequences of a failed saving throw.\n\nOn a failed save, the cube enters the creature's space, and the creature takes 10 (3d6) acid damage and is engulfed. The engulfed creature can't breathe, is restrained, and takes 21 (6d6) acid damage at the start of each of the cube's turns. When the cube moves, the engulfed creature moves with it.\n\nAn engulfed creature can try to escape by taking an action to make a DC 12 Strength check. On a success, the creature escapes and enters a space of its choice within 5 feet of the cube.\n", + "parent": "srd_gelatinous-cube", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gelatinous-cube_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) acid damage.\n", + "parent": "srd_gelatinous-cube", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ghast_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 12 (2d8 + 3) piercing damage.\n", + "parent": "srd_ghast", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ghast_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a creature other than an undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ghast", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ghost_etherealness", + "fields": { + "name": "Etherealness", + "desc": "The ghost enters the Ethereal Plane from the Material Plane, or vice versa. It is visible on the Material Plane while it is in the Border Ethereal, and vice versa, yet it can't affect or be affected by anything on the other plane.\n", + "parent": "srd_ghost", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ghost_horrifying-visage", + "fields": { + "name": "Horrifying Visage", + "desc": "Each non-undead creature within 60 feet of the ghost that can see it must succeed on a DC 13 Wisdom saving throw or be frightened for 1 minute. If the save fails by 5 or more, the target also ages 1d4 × 10 years. A frightened target can repeat the saving throw at the end of each of its turns, ending the frightened condition on itself on a success. If a target's saving throw is successful or the effect ends for it, the target is immune to this ghost's Horrifying Visage for the next 24 hours. The aging effect can be reversed with a greater restoration spell, but only within 24 hours of it occurring.\n", + "parent": "srd_ghost", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ghost_possession", + "fields": { + "name": "Possession", + "desc": "One humanoid that the ghost can see within 5 feet of it must succeed on a DC 13 Charisma saving throw or be possessed by the ghost; the ghost then disappears, and the target is incapacitated and loses control of its body. The ghost now controls the body but doesn't deprive the target of awareness. The ghost can't be targeted by any attack, spell, or other effect, except ones that turn undead, and it retains its alignment, Intelligence, Wisdom, Charisma, and immunity to being charmed and frightened. It otherwise uses the possessed target's statistics, but doesn't gain access to the target's knowledge, class features, or proficiencies.\n\nThe possession lasts until the body drops to 0 hit points, the ghost ends it as a bonus action, or the ghost is turned or forced out by an effect like the dispel evil and good spell. When the possession ends, the ghost reappears in an unoccupied space within 5 feet of the body. The target is immune to this ghost's Possession for 24 hours after succeeding on the saving throw or after the possession ends.\n", + "parent": "srd_ghost", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ghost_withering-touch", + "fields": { + "name": "Withering Touch", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 17 (4d6 + 3) necrotic damage.\n", + "parent": "srd_ghost", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ghoul_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) piercing damage.\n", + "parent": "srd_ghoul", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ghoul_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) slashing damage. If the target is a creature other than an elf or undead, it must succeed on a DC 10 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_ghoul", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gibbering-mouther_bites", + "fields": { + "name": "Bites", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 17 (5d6) piercing damage. If the target is Medium or smaller, it must succeed on a DC 10 Strength saving throw or be knocked prone. If the target is killed by this damage, it is absorbed into the mouther.\n", + "parent": "srd_gibbering-mouther", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gibbering-mouther_blinding-spittle", + "fields": { + "name": "Blinding Spittle", + "desc": "The mouther spits a chemical glob at a point it can see within 15 feet of it. The glob explodes in a blinding flash of light on impact. Each creature within 5 feet of the flash must succeed on a DC 13 Dexterity saving throw or be blinded until the end of the mouther's next turn.\n", + "parent": "srd_gibbering-mouther", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gibbering-mouther_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The gibbering mouther makes one bite attack and, if it can, uses its Blinding Spittle.\n", + "parent": "srd_gibbering-mouther", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_glabrezu_fist", + "fields": { + "name": "Fist", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 7 (2d4 + 2) bludgeoning damage.\n", + "parent": "srd_glabrezu", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_glabrezu_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The glabrezu makes four attacks: two with its pincers and two with its fists. Alternatively, it makes two attacks with its pincers and casts one spell.\n", + "parent": "srd_glabrezu", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_glabrezu_pincer", + "fields": { + "name": "Pincer", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage. If the target is a Medium or smaller creature, it is grappled (escape DC 15). The glabrezu has two pincers, each of which can grapple only one target.\n", + "parent": "srd_glabrezu", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gnoll_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage.\n", + "parent": "srd_gnoll", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gnoll_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", + "parent": "srd_gnoll", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gnoll_spear", + "fields": { + "name": "Spear", + "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", + "parent": "srd_gnoll", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gnome-deep-svirfneblin_poisoned-dart", + "fields": { + "name": "Poisoned Dart", + "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 12 Constitution saving throw or be poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_gnome-deep-svirfneblin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gnome-deep-svirfneblin_war-pick", + "fields": { + "name": "War Pick", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", + "parent": "srd_gnome-deep-svirfneblin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_goblin_scimitar", + "fields": { + "name": "Scimitar", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) slashing damage.\n", + "parent": "srd_goblin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_goblin_shortbow", + "fields": { + "name": "Shortbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_goblin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gold-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", + "parent": "srd_gold-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gold-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 22 (4d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_gold-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gorgon_gore", + "fields": { + "name": "Gore", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 18 (2d12 + 5) piercing damage.\n", + "parent": "srd_gorgon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gorgon_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 16 (2d10 + 5) bludgeoning damage.\n", + "parent": "srd_gorgon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gorgon_petrifying-breath", + "fields": { + "name": "Petrifying Breath", + "desc": "The gorgon exhales petrifying gas in a 30-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw. On a failed save, a target begins to turn to stone and is restrained. The restrained target must repeat the saving throw at the end of its next turn. On a success, the effect ends on the target. On a failure, the target is petrified until freed by the greater restoration spell or other magic.\n", + "parent": "srd_gorgon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gray-ooze_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage plus 7 (2d6) acid damage, and if the target is wearing nonmagical metal armor, its armor is partly corroded and takes a permanent and cumulative -1 penalty to the AC it offers. The armor is destroyed if the penalty reduces its AC to 10.\n", + "parent": "srd_gray-ooze", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_green-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 3 (1d6) poison damage.\n", + "parent": "srd_green-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_green-dragon-wyrmling_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The dragon exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 11 Constitution saving throw, taking 21 (6d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_green-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_green-hag_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_green-hag", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_green-hag_illusory-appearance", + "fields": { + "name": "Illusory Appearance", + "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like another creature of her general size and humanoid shape. The illusion ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have smooth skin, but someone touching her would feel her rough flesh. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 20 Intelligence (Investigation) check to discern that the hag is disguised.\n", + "parent": "srd_green-hag", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_green-hag_invisible-passage", + "fields": { + "name": "Invisible Passage", + "desc": "The hag magically turns invisible until she attacks or casts a spell, or until her concentration ends (as if concentrating on a spell). While invisible, she leaves no physical evidence of her passage, so she can be tracked only by magic. Any equipment she wears or carries is invisible with her.\n", + "parent": "srd_green-hag", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_grick_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_grick", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_grick_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The grick makes one attack with its tentacles. If that attack hits, the grick can make one beak attack against the same target.\n", + "parent": "srd_grick", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_grick_tentacles", + "fields": { + "name": "Tentacles", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage.\n", + "parent": "srd_grick", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_griffon_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", + "parent": "srd_griffon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_griffon_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_griffon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_griffon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The griffon makes two attacks: one with its beak and one with its claws.\n", + "parent": "srd_griffon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_grimlock_spiked-bone-club", + "fields": { + "name": "Spiked Bone Club", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) bludgeoning damage plus 2 (1d4) piercing damage.\n", + "parent": "srd_grimlock", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_guardian-naga_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one creature. Hit: 8 (1d8 + 4) piercing damage, and the target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_guardian-naga", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_guardian-naga_spit-poison", + "fields": { + "name": "Spit Poison", + "desc": "Ranged Weapon Attack: +8 to hit, range 15/30 ft., one creature. Hit: The target must make a DC 15 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_guardian-naga", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gynosphinx_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_gynosphinx", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_gynosphinx_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The sphinx makes two claw attacks.\n", + "parent": "srd_gynosphinx", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_half-red-dragon-veteran_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The veteran exhales fire in a 15-foot cone. Each creature in that area must make a DC 15 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_half-red-dragon-veteran_heavy-crossbow", + "fields": { + "name": "Heavy Crossbow", + "desc": "Ranged Weapon Attack: +3 to hit, range 100/400 ft., one target. Hit: 6 (1d10 + 1) piercing damage.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_half-red-dragon-veteran_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage, or 8 (1d10 + 3) slashing damage if used with two hands.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_half-red-dragon-veteran_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The veteran makes two longsword attacks. If it has a shortsword drawn, it can also make a shortsword attack.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_half-red-dragon-veteran_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_half-red-dragon-veteran", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_harpy_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) slashing damage.\n", + "parent": "srd_harpy", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_harpy_club", + "fields": { + "name": "Club", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) bludgeoning damage.\n", + "parent": "srd_harpy", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_harpy_luring-song", + "fields": { + "name": "Luring Song", + "desc": "The harpy sings a magical melody. Every humanoid and giant within 300 feet of the harpy that can hear the song must succeed on a DC 11 Wisdom saving throw or be charmed until the song ends. The harpy must take a bonus action on its subsequent turns to continue singing. It can stop singing at any time. The song ends if the harpy is incapacitated.\n\nWhile charmed by the harpy, a target is incapacitated and ignores the songs of other harpies. If the charmed target is more than 5 feet away from the harpy, the target must move on its turn toward the harpy by the most direct route, trying to get within 5 feet. It doesn't avoid opportunity attacks, but before moving into damaging terrain, such as lava or a pit, and whenever it takes damage from a source other than the harpy, the target can repeat the saving throw. A charmed target can also repeat the saving throw at the end of each of its turns. If the saving throw is successful, the effect ends on it.\n\nA target that successfully saves is immune to this harpy's song for the next 24 hours.\n", + "parent": "srd_harpy", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_harpy_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The harpy makes two attacks: one with its claws and one with its club.\n", + "parent": "srd_harpy", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hell-hound_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 7 (2d6) fire damage.\n", + "parent": "srd_hell-hound", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hell-hound_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The hound exhales fire in a 15-foot cone. Each creature in that area must make a DC 12 Dexterity saving throw, taking 21 (6d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_hell-hound", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hezrou_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", + "parent": "srd_hezrou", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hezrou_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_hezrou", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hezrou_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The hezrou makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_hezrou", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hill-giant_greatclub", + "fields": { + "name": "Greatclub", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 18 (3d8 + 5) bludgeoning damage.\n", + "parent": "srd_hill-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hill-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greatclub attacks.\n", + "parent": "srd_hill-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hill-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +8 to hit, range 60/240 ft., one target. Hit: 21 (3d10 + 5) bludgeoning damage.\n", + "parent": "srd_hill-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hippogriff_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage.\n", + "parent": "srd_hippogriff", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hippogriff_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", + "parent": "srd_hippogriff", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hippogriff_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The hippogriff makes two attacks: one with its beak and one with its claws.\n", + "parent": "srd_hippogriff", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hobgoblin_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +3 to hit, range 150/600 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", + "parent": "srd_hobgoblin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hobgoblin_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) slashing damage, or 6 (1d10 + 1) slashing damage if used with two hands.\n", + "parent": "srd_hobgoblin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_homunculus_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or be poisoned for 1 minute. If the saving throw fails by 5 or more, the target is instead poisoned for 5 (1d10) minutes and unconscious while poisoned in this way.\n", + "parent": "srd_homunculus", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_horned-devil_fork", + "fields": { + "name": "Fork", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (2d8 + 6) piercing damage.\n", + "parent": "srd_horned-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_horned-devil_hurl-flame", + "fields": { + "name": "Hurl Flame", + "desc": "Ranged Spell Attack: +7 to hit, range 150 ft., one target. Hit: 14 (4d6) fire damage. If the target is a flammable object that isn't being worn or carried, it also catches fire.\n", + "parent": "srd_horned-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_horned-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes three melee attacks: two with its fork and one with its tail. It can use Hurl Flame in place of any melee attack.\n", + "parent": "srd_horned-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_horned-devil_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 10 (1d8 + 6) piercing damage. If the target is a creature other than an undead or a construct, it must succeed on a DC 17 Constitution saving throw or lose 10 (3d6) hit points at the start of each of its turns due to an infernal wound. Each time the devil hits the wounded target with this attack, the damage dealt by the wound increases by 10 (3d6). Any creature can take an action to stanch the wound with a successful DC 12 Wisdom (Medicine) check. The wound also closes if the target receives magical healing.\n", + "parent": "srd_horned-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hydra_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 10 (1d10 + 5) piercing damage.\n", + "parent": "srd_hydra", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_hydra_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The hydra makes as many bite attacks as it has heads.\n", + "parent": "srd_hydra", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ice-devil_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) piercing damage plus 10 (3d6) cold damage.\n", + "parent": "srd_ice-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ice-devil_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 10 (2d4 + 5) slashing damage plus 10 (3d6) cold damage.\n", + "parent": "srd_ice-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ice-devil_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The devil makes three attacks: one with its bite, one with its claws, and one with its tail.\n", + "parent": "srd_ice-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ice-devil_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 12 (2d6 + 5) bludgeoning damage plus 10 (3d6) cold damage.\n", + "parent": "srd_ice-devil", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ice-devil_wall-of-ice", + "fields": { + "name": "Wall of Ice", + "desc": "The devil magically forms an opaque wall of ice on a solid surface it can see within 60 feet of it. The wall is 1 foot thick and up to 30 feet long and 10 feet high, or it's a hemispherical dome up to 20 feet in diameter.\n\nWhen the wall appears, each creature in its space is pushed out of it by the shortest route. The creature chooses which side of the wall to end up on, unless the creature is incapacitated. The creature then makes a DC 17 Dexterity saving throw, taking 35 (10d6) cold damage on a failed save, or half as much damage on a successful one.\n\nThe wall lasts for 1 minute or until the devil is incapacitated or dies. The wall can be damaged and breached; each 10-foot section has AC 5, 30 hit points, vulnerability to fire damage, and immunity to acid, cold, necrotic, poison, and psychic damage. If a section is destroyed, it leaves behind a sheet of frigid air in the space the wall occupied. Whenever a creature finishes moving through the frigid air on a turn, willingly or otherwise, the creature must make a DC 17 Constitution saving throw, taking 17 (5d6) cold damage on a failed save, or half as much damage on a successful one. The frigid air dissipates when the rest of the wall vanishes.\n", + "parent": "srd_ice-devil", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ice-mephit_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) cold damage.\n", + "parent": "srd_ice-mephit", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ice-mephit_frost-breath", + "fields": { + "name": "Frost Breath", + "desc": "The mephit exhales a 15-foot cone of cold air. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 5 (2d4) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_ice-mephit", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_imp_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The imp magically turns invisible until it attacks or until its concentration ends (as if concentrating on a spell). Any equipment the imp wears or carries is invisible with it.\n", + "parent": "srd_imp", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_imp_sting", + "fields": { + "name": "Sting", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_imp", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_imp_sting-bite-in-beast-form", + "fields": { + "name": "Sting (Bite in Beast Form)", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must make a DC 11 Constitution saving throw, taking 10 (3d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_imp", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_invisible-stalker_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The stalker makes two slam attacks.\n", + "parent": "srd_invisible-stalker", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_invisible-stalker_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", + "parent": "srd_invisible-stalker", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_iron-golem_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The golem makes two melee attacks.\n", + "parent": "srd_iron-golem", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_iron-golem_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The golem exhales poisonous gas in a 15-foot cone. Each creature in that area must make a DC 19 Constitution saving throw, taking 45 (10d8) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_iron-golem", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_iron-golem_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", + "parent": "srd_iron-golem", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_iron-golem_sword", + "fields": { + "name": "Sword", + "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 23 (3d10 + 7) slashing damage.\n", + "parent": "srd_iron-golem", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_kobold_dagger", + "fields": { + "name": "Dagger", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", + "parent": "srd_kobold", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_kobold_sling", + "fields": { + "name": "Sling", + "desc": "Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 4 (1d4 + 2) bludgeoning damage.\n", + "parent": "srd_kobold", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_kraken_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +17 to hit, reach 5 ft., one target. Hit: 23 (3d8 + 10) piercing damage. If the target is a Large or smaller creature grappled by the kraken, that creature is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the kraken, and it takes 42 (12d6) acid damage at the start of each of the kraken's turns.\n\nIf the kraken takes 50 damage or more on a single turn from a creature inside it, the kraken must succeed on a DC 25 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the kraken. If the kraken dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_kraken_fling", + "fields": { + "name": "Fling", + "desc": "One Large or smaller object held or creature grappled by the kraken is thrown up to 60 feet in a random direction and knocked prone. If a thrown target strikes a solid surface, the target takes 3 (1d6) bludgeoning damage for every 10 feet it was thrown. If the target is thrown at another creature, that creature must succeed on a DC 18 Dexterity saving throw or take the same damage and be knocked prone.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_kraken_lightning-storm", + "fields": { + "name": "Lightning Storm", + "desc": "The kraken magically creates three bolts of lightning, each of which can strike a target the kraken can see within 120 feet of it. A target must make a DC 23 Dexterity saving throw, taking 22 (4d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_kraken_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The kraken makes three tentacle attacks, each of which it can replace with one use of Fling.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_kraken_tentacle", + "fields": { + "name": "Tentacle", + "desc": "Melee Weapon Attack: +17 to hit, reach 30 ft., one target. Hit: 20 (3d6 + 10) bludgeoning damage, and the target is grappled (escape DC 18). Until this grapple ends, the target is restrained. The kraken has ten tentacles, each of which can grapple one target.\n", + "parent": "srd_kraken", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_lamia_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", + "parent": "srd_lamia", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_lamia_dagger", + "fields": { + "name": "Dagger", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage.\n", + "parent": "srd_lamia", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_lamia_intoxicating-touch", + "fields": { + "name": "Intoxicating Touch", + "desc": "Melee Spell Attack: +5 to hit, reach 5 ft., one creature. Hit: The target is magically cursed for 1 hour. Until the curse ends, the target has disadvantage on Wisdom saving throws and all ability checks.\n", + "parent": "srd_lamia", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_lamia_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The lamia makes two attacks: one with its claws and one with its dagger or Intoxicating Touch.\n", + "parent": "srd_lamia", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_lemure_fist", + "fields": { + "name": "Fist", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 2 (1d4) bludgeoning damage.\n", + "parent": "srd_lemure", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_lich_paralyzing-touch", + "fields": { + "name": "Paralyzing Touch", + "desc": "Melee Spell Attack: +12 to hit, reach 5 ft., one creature. Hit: 10 (3d6) cold damage. The target must succeed on a DC 18 Constitution saving throw or be paralyzed for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_lich", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_lizardfolk_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_lizardfolk_heavy-club", + "fields": { + "name": "Heavy Club", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) bludgeoning damage.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_lizardfolk_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_lizardfolk_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The lizardfolk makes two melee attacks, each one with a different weapon.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_lizardfolk_spiked-shield", + "fields": { + "name": "Spiked Shield", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_lizardfolk", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_magma-mephit_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one creature. Hit: 3 (1d4 + 1) slashing damage plus 2 (1d4) fire damage.\n", + "parent": "srd_magma-mephit", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_magma-mephit_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The mephit exhales a 15-foot cone of fire. Each creature in that area must make a DC 11 Dexterity saving throw, taking 7 (2d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_magma-mephit", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_magmin_touch", + "fields": { + "name": "Touch", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (2d6) fire damage. If the target is a creature or a flammable object, it ignites. Until a creature takes an action to douse the fire, the target takes 3 (1d6) fire damage at the end of each of its turns.\n", + "parent": "srd_magmin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_manticore_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", + "parent": "srd_manticore", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_manticore_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", + "parent": "srd_manticore", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_manticore_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The manticore makes three attacks: one with its bite and two with its claws or three with its tail spikes.\n", + "parent": "srd_manticore", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_manticore_tail-spike", + "fields": { + "name": "Tail Spike", + "desc": "Ranged Weapon Attack: +5 to hit, range 100/200 ft., one target. Hit: 7 (1d8 + 3) piercing damage.\n", + "parent": "srd_manticore", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_marilith_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_marilith", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_marilith_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The marilith makes seven attacks: six with its longswords and one with its tail.\n", + "parent": "srd_marilith", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_marilith_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 15 (2d10 + 4) bludgeoning damage. If the target is Medium or smaller, it is grappled (escape DC 19). Until this grapple ends, the target is restrained, the marilith can automatically hit the target with its tail, and the marilith can't make tail attacks against other targets.\n", + "parent": "srd_marilith", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_marilith_teleport", + "fields": { + "name": "Teleport", + "desc": "The marilith magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", + "parent": "srd_marilith", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_medusa_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +5 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage plus 7 (2d6) poison damage.\n", + "parent": "srd_medusa", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_medusa_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The medusa makes either three melee attacks—one with its snake hair and two with its shortsword—or two ranged attacks with its longbow.\n", + "parent": "srd_medusa", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_medusa_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_medusa", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_medusa_snake-hair", + "fields": { + "name": "Snake Hair", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage plus 14 (4d6) poison damage.\n", + "parent": "srd_medusa", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_merfolk_spear", + "fields": { + "name": "Spear", + "desc": "Melee or Ranged Weapon Attack: +2 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 3 (1d6) piercing damage, or 4 (1d8) piercing damage if used with two hands to make a melee attack.\n", + "parent": "srd_merfolk", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_merrow_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", + "parent": "srd_merrow", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_merrow_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (2d4 + 4) slashing damage.\n", + "parent": "srd_merrow", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_merrow_harpoon", + "fields": { + "name": "Harpoon", + "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage. If the target is a Huge or smaller creature, it must succeed on a Strength contest against the merrow or be pulled up to 20 feet toward the merrow.\n", + "parent": "srd_merrow", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_merrow_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The merrow makes two attacks: one with its bite and one with its claws or harpoon.\n", + "parent": "srd_merrow", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_mimic_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) piercing damage plus 4 (1d8) acid damage.\n", + "parent": "srd_mimic", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_mimic_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage. If the mimic is in object form, the target is subjected to its Adhesive trait.\n", + "parent": "srd_mimic", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_minotaur-skeleton_gore", + "fields": { + "name": "Gore", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", + "parent": "srd_minotaur-skeleton", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_minotaur-skeleton_greataxe", + "fields": { + "name": "Greataxe", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", + "parent": "srd_minotaur-skeleton", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_minotaur_gore", + "fields": { + "name": "Gore", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) piercing damage.\n", + "parent": "srd_minotaur", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_minotaur_greataxe", + "fields": { + "name": "Greataxe", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 17 (2d12 + 4) slashing damage.\n", + "parent": "srd_minotaur", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_mummy-lord_dreadful-glare", + "fields": { + "name": "Dreadful Glare", + "desc": "The mummy lord targets one creature it can see within 60 feet of it. If the target can see the mummy lord, it must succeed on a DC 16 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies and mummy lords for the next 24 hours.\n", + "parent": "srd_mummy-lord", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_mummy-lord_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", + "parent": "srd_mummy-lord", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_mummy-lord_rotting-fist", + "fields": { + "name": "Rotting Fist", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 14 (3d6 + 4) bludgeoning damage plus 21 (6d6) necrotic damage. If the target is a creature, it must succeed on a DC 16 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", + "parent": "srd_mummy-lord", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_mummy_dreadful-glare", + "fields": { + "name": "Dreadful Glare", + "desc": "The mummy targets one creature it can see within 60 feet of it. If the target can see the mummy, it must succeed on a DC 11 Wisdom saving throw against this magic or become frightened until the end of the mummy's next turn. If the target fails the saving throw by 5 or more, it is also paralyzed for the same duration. A target that succeeds on the saving throw is immune to the Dreadful Glare of all mummies (but not mummy lords) for the next 24 hours.\n", + "parent": "srd_mummy", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_mummy_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The mummy can use its Dreadful Glare and makes one attack with its rotting fist.\n", + "parent": "srd_mummy", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_mummy_rotting-fist", + "fields": { + "name": "Rotting Fist", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage plus 10 (3d6) necrotic damage. If the target is a creature, it must succeed on a DC 12 Constitution saving throw or be cursed with mummy rot. The cursed target can't regain hit points, and its hit point maximum decreases by 10 (3d6) for every 24 hours that elapse. If the curse reduces the target's hit point maximum to 0, the target dies, and its body turns to dust. The curse lasts until removed by the remove curse spell or other magic.\n", + "parent": "srd_mummy", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_nalfeshnee_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 32 (5d10 + 5) piercing damage.\n", + "parent": "srd_nalfeshnee", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_nalfeshnee_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 15 (3d6 + 5) slashing damage.\n", + "parent": "srd_nalfeshnee", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_nalfeshnee_horror-nimbus", + "fields": { + "name": "Horror Nimbus", + "desc": "The nalfeshnee magically emits scintillating, multicolored light. Each creature within 15 feet of the nalfeshnee that can see the light must succeed on a DC 15 Wisdom saving throw or be frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the nalfeshnee's Horror Nimbus for the next 24 hours.\n", + "parent": "srd_nalfeshnee", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_nalfeshnee_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The nalfeshnee uses Horror Nimbus if it can. It then makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_nalfeshnee", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_nalfeshnee_teleport", + "fields": { + "name": "Teleport", + "desc": "The nalfeshnee magically teleports, along with any equipment it is wearing or carrying, up to 120 feet to an unoccupied space it can see.\n", + "parent": "srd_nalfeshnee", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_night-hag_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The hag magically polymorphs into a Small or Medium female humanoid, or back into her true form. Her statistics are the same in each form. Any equipment she is wearing or carrying isn't transformed. She reverts to her true form if she dies.\n", + "parent": "srd_night-hag", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_night-hag_claws", + "fields": { + "name": "Claws", + "desc": "(Hag Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_night-hag", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_night-hag_etherealness", + "fields": { + "name": "Etherealness", + "desc": "The hag magically enters the Ethereal Plane from the Material Plane, or vice versa. To do so, the hag must have a heartstone in her possession.\n", + "parent": "srd_night-hag", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_night-hag_nightmare-haunting", + "fields": { + "name": "Nightmare Haunting", + "desc": "While on the Ethereal Plane, the hag magically touches a sleeping humanoid on the Material Plane. A protection from evil and good spell cast on the target prevents this contact, as does a magic circle. As long as the contact persists, the target has dreadful visions. If these visions last for at least 1 hour, the target gains no benefit from its rest, and its hit point maximum is reduced by 5 (1d10). If this effect reduces the target's hit point maximum to 0, the target dies, and if the target was evil, its soul is trapped in the hag's soul bag. The reduction to the target's hit point maximum lasts until removed by the greater restoration spell or similar magic.\n", + "parent": "srd_night-hag", + "uses_type": "PER_DAY", + "uses_param": 1 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_nightmare_ethereal-stride", + "fields": { + "name": "Ethereal Stride", + "desc": "The nightmare and up to three willing creatures within 5 feet of it magically enter the Ethereal Plane from the Material Plane, or vice versa.\n", + "parent": "srd_nightmare", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_nightmare_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage plus 7 (2d6) fire damage.\n", + "parent": "srd_nightmare", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ochre-jelly_pseudopod", + "fields": { + "name": "Pseudopod", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) bludgeoning damage plus 3 (1d6) acid damage.\n", + "parent": "srd_ochre-jelly", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ogre-zombie_morningstar", + "fields": { + "name": "Morningstar", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_ogre-zombie", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ogre_greatclub", + "fields": { + "name": "Greatclub", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_ogre", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_ogre_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +6 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 11 (2d6 + 4) piercing damage.\n", + "parent": "srd_ogre", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_oni_change-shape", + "fields": { + "name": "Change Shape", + "desc": "The oni magically polymorphs into a Small or Medium humanoid, into a Large giant, or back into its true form. Other than its size, its statistics are the same in each form. The only equipment that is transformed is its glaive, which shrinks so that it can be wielded in humanoid form. If the oni dies, it reverts to its true form, and its glaive reverts to its normal size.\n", + "parent": "srd_oni", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_oni_claw", + "fields": { + "name": "Claw", + "desc": "(Oni Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) slashing damage.\n", + "parent": "srd_oni", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_oni_glaive", + "fields": { + "name": "Glaive", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) slashing damage, or 9 (1d10 + 4) slashing damage in Small or Medium form.\n", + "parent": "srd_oni", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_oni_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The oni makes two attacks, either with its claws or its glaive.\n", + "parent": "srd_oni", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_orc_greataxe", + "fields": { + "name": "Greataxe", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 9 (1d12 + 3) slashing damage.\n", + "parent": "srd_orc", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_orc_javelin", + "fields": { + "name": "Javelin", + "desc": "Melee or Ranged Weapon Attack: +5 to hit, reach 5 ft. or range 30/120 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_orc", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_otyugh_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 12 (2d8 + 3) piercing damage. If the target is a creature, it must succeed on a DC 15 Constitution saving throw against disease or become poisoned until the disease is cured. Every 24 hours that elapse, the target must repeat the saving throw, reducing its hit point maximum by 5 (1d10) on a failure. The disease is cured on a success. The target dies if the disease reduces its hit point maximum to 0. This reduction to the target's hit point maximum lasts until the disease is cured.\n", + "parent": "srd_otyugh", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_otyugh_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The otyugh makes three attacks: one with its bite and two with its tentacles.\n", + "parent": "srd_otyugh", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_otyugh_tentacle", + "fields": { + "name": "Tentacle", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 7 (1d8 + 3) bludgeoning damage plus 4 (1d8) piercing damage. If the target is Medium or smaller, it is grappled (escape DC 13) and restrained until the grapple ends. The otyugh has two tentacles, each of which can grapple one target.\n", + "parent": "srd_otyugh", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_otyugh_tentacle-slam", + "fields": { + "name": "Tentacle Slam", + "desc": "The otyugh slams creatures grappled by it into each other or a solid surface. Each creature must succeed on a DC 14 Constitution saving throw or take 10 (2d6 + 3) bludgeoning damage and be stunned until the end of the otyugh's next turn. On a successful save, the target takes half the bludgeoning damage and isn't stunned.\n", + "parent": "srd_otyugh", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_owlbear_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one creature. Hit: 10 (1d10 + 5) piercing damage.\n", + "parent": "srd_owlbear", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_owlbear_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 14 (2d8 + 5) slashing damage.\n", + "parent": "srd_owlbear", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_owlbear_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The owlbear makes two attacks: one with its beak and one with its claws.\n", + "parent": "srd_owlbear", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_pegasus_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_pegasus", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_pit-fiend_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +14 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) piercing damage. The target must succeed on a DC 21 Constitution saving throw or become poisoned. While poisoned in this way, the target can't regain hit points, and it takes 21 (6d6) poison damage at the start of each of its turns. The poisoned target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_pit-fiend_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 17 (2d8 + 8) slashing damage.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_pit-fiend_mace", + "fields": { + "name": "Mace", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 15 (2d6 + 8) bludgeoning damage plus 21 (6d6) fire damage.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_pit-fiend_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The pit fiend makes four attacks: one with its bite, one with its claw, one with its mace, and one with its tail.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_pit-fiend_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 24 (3d10 + 8) bludgeoning damage.\n", + "parent": "srd_pit-fiend", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_planetar_greatsword", + "fields": { + "name": "Greatsword", + "desc": "Melee Weapon Attack: +12 to hit, reach 5 ft., one target. Hit: 21 (4d6 + 7) slashing damage plus 22 (5d8) radiant damage.\n", + "parent": "srd_planetar", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_planetar_healing-touch", + "fields": { + "name": "Healing Touch", + "desc": "The planetar touches another creature. The target magically regains 30 (6d8 + 3) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", + "parent": "srd_planetar", + "uses_type": "PER_DAY", + "uses_param": 4 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_planetar_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The planetar makes two melee attacks.\n", + "parent": "srd_planetar", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_plesiosaurus_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 10 ft., one target. Hit: 14 (3d6 + 4) piercing damage.\n", + "parent": "srd_plesiosaurus", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_pseudodragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage.\n", + "parent": "srd_pseudodragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_pseudodragon_sting", + "fields": { + "name": "Sting", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 4 (1d4 + 2) piercing damage, and the target must succeed on a DC 11 Constitution saving throw or become poisoned for 1 hour. If the saving throw fails by 5 or more, the target falls unconscious for the same duration, or until it takes damage or another creature uses an action to shake it awake.\n", + "parent": "srd_pseudodragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_purple-worm_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 22 (3d8 + 9) piercing damage. If the target is a Large or smaller creature, it must succeed on a DC 19 Dexterity saving throw or be swallowed by the worm. A swallowed creature is blinded and restrained, it has total cover against attacks and other effects outside the worm, and it takes 21 (6d6) acid damage at the start of each of the worm's turns.\n\nIf the worm takes 30 damage or more on a single turn from a creature inside it, the worm must succeed on a DC 21 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the worm. If the worm dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 20 feet of movement, exiting prone.\n", + "parent": "srd_purple-worm", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_purple-worm_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The worm makes two attacks: one with its bite and one with its stinger.\n", + "parent": "srd_purple-worm", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_purple-worm_tail-stinger", + "fields": { + "name": "Tail Stinger", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one creature. Hit: 19 (3d6 + 9) piercing damage, and the target must make a DC 19 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_purple-worm", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_quasit_claws-bite-in-beast-form", + "fields": { + "name": "Claws (Bite in Beast Form)", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d4 + 3) piercing damage, and the target must succeed on a DC 10 Constitution saving throw or take 5 (2d4) poison damage and become poisoned for 1 minute. The target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_quasit", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_quasit_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The quasit magically turns invisible until it attacks or uses Scare, or until its concentration ends (as if concentrating on a spell). Any equipment the quasit wears or carries is invisible with it.\n", + "parent": "srd_quasit", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_quasit_scare", + "fields": { + "name": "Scare", + "desc": "One creature of the quasit's choice within 20 feet of it must succeed on a DC 10 Wisdom saving throw or be frightened for 1 minute. The target can repeat the saving throw at the end of each of its turns, with disadvantage if the quasit is within line of sight, ending the effect on itself on a success.\n", + "parent": "srd_quasit", + "uses_type": "PER_DAY", + "uses_param": 1 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_rakshasa_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 9 (2d6 + 2) slashing damage, and the target is cursed if it is a creature. The magical curse takes effect whenever the target takes a short or long rest, filling the target's thoughts with horrible images and dreams. The cursed target gains no benefit from finishing a short or long rest. The curse lasts until it is lifted by a remove curse spell or similar magic.\n", + "parent": "srd_rakshasa", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_rakshasa_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The rakshasa makes two claw attacks.\n", + "parent": "srd_rakshasa", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_red-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage plus 3 (1d6) fire damage.\n", + "parent": "srd_red-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_red-dragon-wyrmling_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon exhales fire in a 15-foot cone. Each creature in that area must make a DC 13 Dexterity saving throw, taking 24 (7d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_red-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_remorhaz_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +11 to hit, reach 10 ft., one target. Hit: 40 (6d10 + 7) piercing damage plus 10 (3d6) fire damage. If the target is a creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the remorhaz can't bite another target.\n", + "parent": "srd_remorhaz", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_remorhaz_swallow", + "fields": { + "name": "Swallow", + "desc": "The remorhaz makes one bite attack against a Medium or smaller creature it is grappling. If the attack hits, that creature takes the bite's damage and is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the remorhaz, and it takes 21 (6d6) acid damage at the start of each of the remorhaz's turns.\n\nIf the remorhaz takes 30 damage or more on a single turn from a creature inside it, the remorhaz must succeed on a DC 15 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the remorhaz. If the remorhaz dies, a swallowed creature is no longer restrained by it and can escape from the corpse using 15 feet of movement, exiting prone.\n", + "parent": "srd_remorhaz", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_roc_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +13 to hit, reach 10 ft., one target. Hit: 27 (4d8 + 9) piercing damage.\n", + "parent": "srd_roc", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_roc_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The roc makes two attacks: one with its beak and one with its talons.\n", + "parent": "srd_roc", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_roc_talons", + "fields": { + "name": "Talons", + "desc": "Melee Weapon Attack: +13 to hit, reach 5 ft., one target. Hit: 23 (4d6 + 9) slashing damage, and the target is grappled (escape DC 19). Until this grapple ends, the target is restrained, and the roc can't use its talons on another target.\n", + "parent": "srd_roc", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_roper_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 22 (4d8 + 4) piercing damage.\n", + "parent": "srd_roper", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_roper_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The roper makes four attacks with its tendrils, uses Reel, and makes one attack with its bite.\n", + "parent": "srd_roper", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_roper_reel", + "fields": { + "name": "Reel", + "desc": "The roper pulls each creature grappled by it up to 25 feet straight toward it.\n", + "parent": "srd_roper", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_roper_tendril", + "fields": { + "name": "Tendril", + "desc": "Melee Weapon Attack: +7 to hit, reach 50 ft., one creature. Hit: The target is grappled (escape DC 15). Until the grapple ends, the target is restrained and has disadvantage on Strength checks and Strength saving throws, and the roper can't use the same tendril on another target.\n", + "parent": "srd_roper", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_rug-of-smothering_smother", + "fields": { + "name": "Smother", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one Medium or smaller creature. Hit: The creature is grappled (escape DC 13). Until this grapple ends, the target is restrained, blinded, and at risk of suffocating, and the rug can't smother another target. In addition, at the start of each of the target's turns, the target takes 10 (2d6 + 3) bludgeoning damage.\n", + "parent": "srd_rug-of-smothering", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_rust-monster_antennae", + "fields": { + "name": "Antennae", + "desc": "The rust monster corrodes a nonmagical ferrous metal object it can see within 5 feet of it. If the object isn't being worn or carried, the touch destroys a 1-foot cube of it. If the object is being worn or carried by a creature, the creature can make a DC 11 Dexterity saving throw to avoid the rust monster's touch. If the object touched is either metal armor or a metal shield being worn or carried, its takes a permanent and cumulative -1 penalty to the AC it offers. Armor reduced to an AC of 10 or a shield that drops to a +0 bonus is destroyed. If the object touched is a held metal weapon, it rusts as described in the Rust Metal trait.\n", + "parent": "srd_rust-monster", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_rust-monster_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 5 (1d8 + 1) piercing damage.\n", + "parent": "srd_rust-monster", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_sahuagin_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) piercing damage.\n", + "parent": "srd_sahuagin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_sahuagin_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 3 (1d4 + 1) slashing damage.\n", + "parent": "srd_sahuagin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_sahuagin_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The sahuagin makes two melee attacks: one with its bite and one with its claws or spear.\n", + "parent": "srd_sahuagin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_sahuagin_spear", + "fields": { + "name": "Spear", + "desc": "Melee or Ranged Weapon Attack: +3 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 4 (1d6 + 1) piercing damage, or 5 (1d8 + 1) piercing damage if used with two hands to make a melee attack.\n", + "parent": "srd_sahuagin", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_salamander_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The salamander makes two attacks: one with its spear and one with its tail.\n", + "parent": "srd_salamander", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_salamander_spear", + "fields": { + "name": "Spear", + "desc": "Melee or Ranged Weapon Attack: +7 to hit, reach 5 ft. or range 20/60 ft., one target. Hit: 11 (2d6 + 4) piercing damage, or 13 (2d8 + 4) piercing damage if used with two hands to make a melee attack, plus 3 (1d6) fire damage.\n", + "parent": "srd_salamander", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_salamander_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage plus 7 (2d6) fire damage, and the target is grappled (escape DC 14). Until this grapple ends, the target is restrained, the salamander can automatically hit the target with its tail, and the salamander can't make tail attacks against other targets.\n", + "parent": "srd_salamander", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_satyr_ram", + "fields": { + "name": "Ram", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 6 (2d4 + 1) bludgeoning damage.\n", + "parent": "srd_satyr", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_satyr_shortbow", + "fields": { + "name": "Shortbow", + "desc": "Ranged Weapon Attack: +5 to hit, range 80/320 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_satyr", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_satyr_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) piercing damage.\n", + "parent": "srd_satyr", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_sea-hag_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage.\n", + "parent": "srd_sea-hag", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_sea-hag_death-glare", + "fields": { + "name": "Death Glare", + "desc": "The hag targets one frightened creature she can see within 30 feet of her. If the target can see the hag, it must succeed on a DC 11 Wisdom saving throw against this magic or drop to 0 hit points.\n", + "parent": "srd_sea-hag", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_sea-hag_illusory-appearance", + "fields": { + "name": "Illusory Appearance", + "desc": "The hag covers herself and anything she is wearing or carrying with a magical illusion that makes her look like an ugly creature of her general size and humanoid shape. The effect ends if the hag takes a bonus action to end it or if she dies.\n\nThe changes wrought by this effect fail to hold up to physical inspection. For example, the hag could appear to have no claws, but someone touching her hand might feel the claws. Otherwise, a creature must take an action to visually inspect the illusion and succeed on a DC 16 Intelligence (Investigation) check to discern that the hag is disguised.\n", + "parent": "srd_sea-hag", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_shadow_strength-drain", + "fields": { + "name": "Strength Drain", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d6 + 2) necrotic damage, and the target's Strength score is reduced by 1d4. The target dies if this reduces its Strength to 0. Otherwise, the reduction lasts until the target finishes a short or long rest.\n\nIf a non-evil humanoid dies from this attack, a new shadow rises from the corpse 1d4 hours later.\n", + "parent": "srd_shadow", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_shambling-mound_engulf", + "fields": { + "name": "Engulf", + "desc": "The shambling mound engulfs a Medium or smaller creature grappled by it. The engulfed target is blinded, restrained, and unable to breathe, and it must succeed on a DC 14 Constitution saving throw at the start of each of the mound's turns or take 13 (2d8 + 4) bludgeoning damage. If the mound moves, the engulfed target moves with it. The mound can have only one creature engulfed at a time.\n", + "parent": "srd_shambling-mound", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_shambling-mound_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The shambling mound makes two slam attacks. If both attacks hit a Medium or smaller target, the target is grappled (escape DC 14), and the shambling mound uses its Engulf on it.\n", + "parent": "srd_shambling-mound", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_shambling-mound_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_shambling-mound", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_shield-guardian_fist", + "fields": { + "name": "Fist", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_shield-guardian", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_shield-guardian_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The guardian makes two fist attacks.\n", + "parent": "srd_shield-guardian", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_silver-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 9 (1d10 + 4) piercing damage.\n", + "parent": "srd_silver-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_silver-dragon-wyrmling_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 15-foot cone. Each creature in that area must make a DC 13 Constitution saving throw, taking 18 (4d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 15-foot cone. Each creature in that area must succeed on a DC 13 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_silver-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_skeleton_shortbow", + "fields": { + "name": "Shortbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 80/320 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_skeleton", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_skeleton_shortsword", + "fields": { + "name": "Shortsword", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_skeleton", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_solar_flying-sword", + "fields": { + "name": "Flying Sword", + "desc": "The solar releases its greatsword to hover magically in an unoccupied space within 5 feet of it. If the solar can see the sword, the solar can mentally command it as a bonus action to fly up to 50 feet and either make one attack against a target or return to the solar's hands. If the hovering sword is targeted by any effect, the solar is considered to be holding it. The hovering sword falls if the solar dies.\n", + "parent": "srd_solar", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_solar_greatsword", + "fields": { + "name": "Greatsword", + "desc": "Melee Weapon Attack: +15 to hit, reach 5 ft., one target. Hit: 22 (4d6 + 8) slashing damage plus 27 (6d8) radiant damage.\n", + "parent": "srd_solar", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_solar_healing-touch", + "fields": { + "name": "Healing Touch", + "desc": "The solar touches another creature. The target magically regains 40 (8d8 + 4) hit points and is freed from any curse, disease, poison, blindness, or deafness.\n", + "parent": "srd_solar", + "uses_type": "PER_DAY", + "uses_param": 4 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_solar_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The solar makes two greatsword attacks.\n", + "parent": "srd_solar", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_solar_slaying-longbow", + "fields": { + "name": "Slaying Longbow", + "desc": "Ranged Weapon Attack: +13 to hit, range 150/600 ft., one target. Hit: 15 (2d8 + 6) piercing damage plus 27 (6d8) radiant damage. If the target is a creature that has 100 hit points or fewer, it must succeed on a DC 15 Constitution saving throw or die.\n", + "parent": "srd_solar", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_specter_life-drain", + "fields": { + "name": "Life Drain", + "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 10 (3d6) necrotic damage. The target must succeed on a DC 10 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the creature finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "parent": "srd_specter", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_spirit-naga_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 7 (1d6 + 4) piercing damage, and the target must make a DC 13 Constitution saving throw, taking 31 (7d8) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_spirit-naga", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_sprite_heart-sight", + "fields": { + "name": "Heart Sight", + "desc": "The sprite touches a creature and magically knows the creature's current emotional state. If the target fails a DC 10 Charisma saving throw, the sprite also knows the creature's alignment. Celestials, fiends, and undead automatically fail the saving throw.\n", + "parent": "srd_sprite", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_sprite_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The sprite magically turns invisible until it attacks or casts a spell, or until its concentration ends (as if concentrating on a spell). Any equipment the sprite wears or carries is invisible with it.\n", + "parent": "srd_sprite", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_sprite_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one target. Hit: 1 slashing damage.\n", + "parent": "srd_sprite", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_sprite_shortbow", + "fields": { + "name": "Shortbow", + "desc": "Ranged Weapon Attack: +6 to hit, range 40/160 ft., one target. Hit: 1 piercing damage, and the target must succeed on a DC 10 Constitution saving throw or become poisoned for 1 minute. If its saving throw result is 5 or lower, the poisoned target falls unconscious for the same duration, or until it takes damage or another creature takes an action to shake it awake.\n", + "parent": "srd_sprite", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_steam-mephit_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +2 to hit, reach 5 ft., one creature. Hit: 2 (1d4) slashing damage plus 2 (1d4) fire damage.\n", + "parent": "srd_steam-mephit", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_steam-mephit_steam-breath", + "fields": { + "name": "Steam Breath", + "desc": "The mephit exhales a 15-foot cone of scalding steam. Each creature in that area must succeed on a DC 10 Dexterity saving throw, taking 4 (1d8) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_steam-mephit", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_stirge_blood-drain", + "fields": { + "name": "Blood Drain", + "desc": "Melee Weapon Attack: +5 to hit, reach 5 ft., one creature. Hit: 5 (1d4 + 3) piercing damage, and the stirge attaches to the target. While attached, the stirge doesn't attack. Instead, at the start of each of the stirge's turns, the target loses 5 (1d4 + 3) hit points due to blood loss.\n\nThe stirge can detach itself by spending 5 feet of its movement. It does so after it drains 10 hit points of blood from the target or the target dies. A creature, including the target, can use its action to detach the stirge.\n", + "parent": "srd_stirge", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_stone-giant_greatclub", + "fields": { + "name": "Greatclub", + "desc": "Melee Weapon Attack: +9 to hit, reach 15 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", + "parent": "srd_stone-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_stone-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greatclub attacks.\n", + "parent": "srd_stone-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_stone-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +9 to hit, range 60/240 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage. If the target is a creature, it must succeed on a DC 17 Strength saving throw or be knocked prone.\n", + "parent": "srd_stone-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_stone-golem_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The golem makes two slam attacks.\n", + "parent": "srd_stone-golem", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_stone-golem_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 19 (3d8 + 6) bludgeoning damage.\n", + "parent": "srd_stone-golem", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_stone-golem_slow", + "fields": { + "name": "Slow", + "desc": "The golem targets one or more creatures it can see within 10 feet of it. Each target must make a DC 17 Wisdom saving throw against this magic. On a failed save, a target can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the target can take either an action or a bonus action on its turn, not both. These effects last for 1 minute. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_stone-golem", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_storm-giant_greatsword", + "fields": { + "name": "Greatsword", + "desc": "Melee Weapon Attack: +14 to hit, reach 10 ft., one target. Hit: 30 (6d6 + 9) slashing damage.\n", + "parent": "srd_storm-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_storm-giant_lightning-strike", + "fields": { + "name": "Lightning Strike", + "desc": "The giant hurls a magical lightning bolt at a point it can see within 500 feet of it. Each creature within 10 feet of that point must make a DC 17 Dexterity saving throw, taking 54 (12d8) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_storm-giant", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_storm-giant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The giant makes two greatsword attacks.\n", + "parent": "srd_storm-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_storm-giant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +14 to hit, range 60/240 ft., one target. Hit: 35 (4d12 + 9) bludgeoning damage.\n", + "parent": "srd_storm-giant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_succubusincubus_charm", + "fields": { + "name": "Charm", + "desc": "One humanoid the fiend can see within 30 feet of it must succeed on a DC 15 Wisdom saving throw or be magically charmed for 1 day. The charmed target obeys the fiend's verbal or telepathic commands. If the target suffers any harm or receives a suicidal command, it can repeat the saving throw, ending the effect on a success. If the target successfully saves against the effect, or if the effect on it ends, the target is immune to this fiend's Charm for the next 24 hours.\n\nThe fiend can have only one target charmed at a time. If it charms another, the effect on the previous target ends.\n", + "parent": "srd_succubusincubus", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_succubusincubus_claw", + "fields": { + "name": "Claw", + "desc": "(Fiend Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", + "parent": "srd_succubusincubus", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_succubusincubus_draining-kiss", + "fields": { + "name": "Draining Kiss", + "desc": "The fiend kisses a creature charmed by it or a willing creature. The target must make a DC 15 Constitution saving throw against this magic, taking 32 (5d10 + 5) psychic damage on a failed save, or half as much damage on a successful one. The target's hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "parent": "srd_succubusincubus", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_succubusincubus_etherealness", + "fields": { + "name": "Etherealness", + "desc": "The fiend magically enters the Ethereal Plane from the Material Plane, or vice versa.\n", + "parent": "srd_succubusincubus", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 36 (4d12 + 10) piercing damage. If the target is a creature, it is grappled (escape DC 20). Until this grapple ends, the target is restrained, and the tarrasque can't bite another target.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +19 to hit, reach 15 ft., one target. Hit: 28 (4d8 + 10) slashing damage.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_frightful-presence", + "fields": { + "name": "Frightful Presence", + "desc": "Each creature of the tarrasque's choice within 120 feet of it and aware of it must succeed on a DC 17 Wisdom saving throw or become frightened for 1 minute. A creature can repeat the saving throw at the end of each of its turns, with disadvantage if the tarrasque is within line of sight, ending the effect on itself on a success. If a creature's saving throw is successful or the effect ends for it, the creature is immune to the tarrasque's Frightful Presence for the next 24 hours.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_horns", + "fields": { + "name": "Horns", + "desc": "Melee Weapon Attack: +19 to hit, reach 10 ft., one target. Hit: 32 (4d10 + 10) piercing damage.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The tarrasque can use its Frightful Presence. It then makes five attacks: one with its bite, two with its claws, one with its horns, and one with its tail. It can use its Swallow instead of its bite.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_swallow", + "fields": { + "name": "Swallow", + "desc": "The tarrasque makes one bite attack against a Large or smaller creature it is grappling. If the attack hits, the target takes the bite's damage, the target is swallowed, and the grapple ends. While swallowed, the creature is blinded and restrained, it has total cover against attacks and other effects outside the tarrasque, and it takes 56 (16d6) acid damage at the start of each of the tarrasque's turns.\n\nIf the tarrasque takes 60 damage or more on a single turn from a creature inside it, the tarrasque must succeed on a DC 20 Constitution saving throw at the end of that turn or regurgitate all swallowed creatures, which fall prone in a space within 10 feet of the tarrasque. If the tarrasque dies, a swallowed creature is no longer restrained by it and can escape from the corpse by using 30 feet of movement, exiting prone.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_tarrasque_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +19 to hit, reach 20 ft., one target. Hit: 24 (4d6 + 10) bludgeoning damage. If the target is a creature, it must succeed on a DC 20 Strength saving throw or be knocked prone.\n", + "parent": "srd_tarrasque", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_treant_animate-trees", + "fields": { + "name": "Animate Trees", + "desc": "The treant magically animates one or two trees it can see within 60 feet of it. These trees have the same statistics as a treant, except they have Intelligence and Charisma scores of 1, they can't speak, and they have only the Slam action option. An animated tree acts as an ally of the treant. The tree remains animate for 1 day or until it dies; until the treant dies or is more than 120 feet from the tree; or until the treant takes a bonus action to turn it back into an inanimate tree. The tree then takes root if possible.\n", + "parent": "srd_treant", + "uses_type": "PER_DAY", + "uses_param": 1 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_treant_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The treant makes two slam attacks.\n", + "parent": "srd_treant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_treant_rock", + "fields": { + "name": "Rock", + "desc": "Ranged Weapon Attack: +10 to hit, range 60/180 ft., one target. Hit: 28 (4d10 + 6) bludgeoning damage.\n", + "parent": "srd_treant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_treant_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 16 (3d6 + 6) bludgeoning damage.\n", + "parent": "srd_treant", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_triceratops_gore", + "fields": { + "name": "Gore", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 24 (4d8 + 6) piercing damage.\n", + "parent": "srd_triceratops", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_triceratops_stomp", + "fields": { + "name": "Stomp", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one prone creature. Hit: 22 (3d10 + 6) bludgeoning damage.\n", + "parent": "srd_triceratops", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_troll_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 7 (1d6 + 4) piercing damage.\n", + "parent": "srd_troll", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_troll_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_troll", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_troll_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The troll makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_troll", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_tyrannosaurus-rex_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 33 (4d12 + 7) piercing damage. If the target is a Medium or smaller creature, it is grappled (escape DC 17). Until this grapple ends, the target is restrained, and the tyrannosaurus can't bite another target.\n", + "parent": "srd_tyrannosaurus-rex", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_tyrannosaurus-rex_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The tyrannosaurus makes two attacks: one with its bite and one with its tail. It can't make both attacks against the same target.\n", + "parent": "srd_tyrannosaurus-rex", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_tyrannosaurus-rex_tail", + "fields": { + "name": "Tail", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 20 (3d8 + 7) bludgeoning damage.\n", + "parent": "srd_tyrannosaurus-rex", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_unicorn_healing-touch", + "fields": { + "name": "Healing Touch", + "desc": "The unicorn touches another creature with its horn. The target magically regains 11 (2d8 + 2) hit points. In addition, the touch removes all diseases and neutralizes all poisons afflicting the target.\n", + "parent": "srd_unicorn", + "uses_type": "PER_DAY", + "uses_param": 3 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_unicorn_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_unicorn", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_unicorn_horn", + "fields": { + "name": "Horn", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 8 (1d8 + 4) piercing damage.\n", + "parent": "srd_unicorn", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_unicorn_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The unicorn makes two attacks: one with its hooves and one with its horn.\n", + "parent": "srd_unicorn", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_unicorn_teleport", + "fields": { + "name": "Teleport", + "desc": "The unicorn magically teleports itself and up to three willing creatures it can see within 5 feet of it, along with any equipment they are wearing or carrying, to a location the unicorn is familiar with, up to 1 mile away.\n", + "parent": "srd_unicorn", + "uses_type": "PER_DAY", + "uses_param": 1 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_vampire-spawn_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 6 (1d6 + 3) piercing damage plus 7 (2d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "parent": "srd_vampire-spawn", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_vampire-spawn_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 8 (2d4 + 3) slashing damage. Instead of dealing damage, the vampire can grapple the target (escape DC 13).\n", + "parent": "srd_vampire-spawn", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_vampire-spawn_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The vampire makes two attacks, only one of which can be a bite attack.\n", + "parent": "srd_vampire-spawn", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_vampire_bite", + "fields": { + "name": "Bite", + "desc": "(Bat or Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one willing creature, or a creature that is grappled by the vampire, incapacitated, or restrained. Hit: 7 (1d6 + 4) piercing damage plus 10 (3d6) necrotic damage. The target's hit point maximum is reduced by an amount equal to the necrotic damage taken, and the vampire regains hit points equal to that amount. The reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0. A humanoid slain in this way and then buried in the ground rises the following night as a vampire spawn under the vampire's control.\n", + "parent": "srd_vampire", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_vampire_charm", + "fields": { + "name": "Charm", + "desc": "The vampire targets one humanoid it can see within 30 feet of it. If the target can see the vampire, the target must succeed on a DC 17 Wisdom saving throw against this magic or be charmed by the vampire. The charmed target regards the vampire as a trusted friend to be heeded and protected. Although the target isn't under the vampire's control, it takes the vampire's requests or actions in the most favorable way it can, and it is a willing target for the vampire's bite attack.\n\nEach time the vampire or the vampire's companions do anything harmful to the target, it can repeat the saving throw, ending the effect on itself on a success. Otherwise, the effect lasts 24 hours or until the vampire is destroyed, is on a different plane of existence than the target, or takes a bonus action to end the effect.\n", + "parent": "srd_vampire", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_vampire_children-of-the-night", + "fields": { + "name": "Children of the Night", + "desc": "The vampire magically calls 2d4 swarms of bats or rats, provided that the sun isn't up. While outdoors, the vampire can call 3d6 wolves instead. The called creatures arrive in 1d4 rounds, acting as allies of the vampire and obeying its spoken commands. The beasts remain for 1 hour, until the vampire dies, or until the vampire dismisses them as a bonus action.\n", + "parent": "srd_vampire", + "uses_type": "PER_DAY", + "uses_param": 1 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_vampire_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Vampire Form Only). The vampire makes two attacks, only one of which can be a bite attack.\n", + "parent": "srd_vampire", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_vampire_unarmed-strike", + "fields": { + "name": "Unarmed Strike", + "desc": "(Vampire Form Only). Melee Weapon Attack: +9 to hit, reach 5 ft., one creature. Hit: 8 (1d8 + 4) bludgeoning damage. Instead of dealing damage, the vampire can grapple the target (escape DC 18).\n", + "parent": "srd_vampire", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_violet-fungus_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The fungus makes 1d4 Rotting Touch attacks.\n", + "parent": "srd_violet-fungus", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_violet-fungus_rotting-touch", + "fields": { + "name": "Rotting Touch", + "desc": "Melee Weapon Attack: +2 to hit, reach 10 ft., one creature. Hit: 4 (1d8) necrotic damage.\n", + "parent": "srd_violet-fungus", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_vrock_beak", + "fields": { + "name": "Beak", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) piercing damage.\n", + "parent": "srd_vrock", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_vrock_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The vrock makes two attacks: one with its beak and one with its talons.\n", + "parent": "srd_vrock", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_vrock_spores", + "fields": { + "name": "Spores", + "desc": "A 15-foot-radius cloud of toxic spores extends out from the vrock. The spores spread around corners. Each creature in that area must succeed on a DC 14 Constitution saving throw or become poisoned. While poisoned in this way, a target takes 5 (1d10) poison damage at the start of each of its turns. A target can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success. Emptying a vial of holy water on the target also ends the effect on it.\n", + "parent": "srd_vrock", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 6 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_vrock_stunning-screech", + "fields": { + "name": "Stunning Screech", + "desc": "The vrock emits a horrific screech. Each creature within 20 feet of it that can hear it and that isn't a demon must succeed on a DC 14 Constitution saving throw or be stunned until the end of the vrock's next turn.\n", + "parent": "srd_vrock", + "uses_type": "PER_DAY", + "uses_param": 1 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_vrock_talons", + "fields": { + "name": "Talons", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 14 (2d10 + 3) slashing damage.\n", + "parent": "srd_vrock", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_warhorse-skeleton_hooves", + "fields": { + "name": "Hooves", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) bludgeoning damage.\n", + "parent": "srd_warhorse-skeleton", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_water-elemental_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The elemental makes two slam attacks.\n", + "parent": "srd_water-elemental", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_water-elemental_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) bludgeoning damage.\n", + "parent": "srd_water-elemental", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_water-elemental_whelm", + "fields": { + "name": "Whelm", + "desc": "Each creature in the elemental's space must make a DC 15 Strength saving throw. On a failure, a target takes 13 (2d8 + 4) bludgeoning damage. If it is Large or smaller, it is also grappled (escape DC 14). Until this grapple ends, the target is restrained and unable to breathe unless it can breathe water. If the saving throw is successful, the target is pushed out of the elemental's space.\n\nThe elemental can grapple one Large creature or up to two Medium or smaller creatures at one time. At the start of each of the elemental's turns, each target grappled by it takes 13 (2d8 + 4) bludgeoning damage. A creature within 5 feet of the elemental can pull a creature or object out of it by taking an action to make a DC 14 Strength and succeeding.\n", + "parent": "srd_water-elemental", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 4 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_werebear_bite", + "fields": { + "name": "Bite", + "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 15 (2d10 + 4) piercing damage. If the target is a humanoid, it must succeed on a DC 14 Constitution saving throw or be cursed with werebear lycanthropy.\n", + "parent": "srd_werebear", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_werebear_claw", + "fields": { + "name": "Claw", + "desc": "(Bear or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_werebear", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_werebear_greataxe", + "fields": { + "name": "Greataxe", + "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 10 (1d12 + 4) slashing damage.\n", + "parent": "srd_werebear", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_werebear_multiattack", + "fields": { + "name": "Multiattack", + "desc": "In bear form, the werebear makes two claw attacks. In humanoid form, it makes two greataxe attacks. In hybrid form, it can attack like a bear or a humanoid.\n", + "parent": "srd_werebear", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wereboar_maul", + "fields": { + "name": "Maul", + "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) bludgeoning damage.\n", + "parent": "srd_wereboar", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wereboar_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Humanoid or Hybrid Form Only). The wereboar makes two attacks, only one of which can be with its tusks.\n", + "parent": "srd_wereboar", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wereboar_tusks", + "fields": { + "name": "Tusks", + "desc": "(Boar or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 10 (2d6 + 3) slashing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with wereboar lycanthropy.\n", + "parent": "srd_wereboar", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wererat_bite", + "fields": { + "name": "Bite", + "desc": "(Rat or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 4 (1d4 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 11 Constitution saving throw or be cursed with wererat lycanthropy.\n", + "parent": "srd_wererat", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wererat_hand-crossbow", + "fields": { + "name": "Hand Crossbow", + "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 30/120 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_wererat", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wererat_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Humanoid or Hybrid Form Only). The wererat makes two attacks, only one of which can be a bite.\n", + "parent": "srd_wererat", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wererat_shortsword", + "fields": { + "name": "Shortsword", + "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 5 (1d6 + 2) piercing damage.\n", + "parent": "srd_wererat", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_weretiger_bite", + "fields": { + "name": "Bite", + "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 8 (1d10 + 3) piercing damage. If the target is a humanoid, it must succeed on a DC 13 Constitution saving throw or be cursed with weretiger lycanthropy.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_weretiger_claw", + "fields": { + "name": "Claw", + "desc": "(Tiger or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 7 (1d8 + 3) slashing damage.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_weretiger_longbow", + "fields": { + "name": "Longbow", + "desc": "(Humanoid or Hybrid Form Only). Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_weretiger_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Humanoid or Hybrid Form Only). In humanoid form, the weretiger makes two scimitar attacks or two longbow attacks. In hybrid form, it can attack like a humanoid or make two claw attacks.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_weretiger_scimitar", + "fields": { + "name": "Scimitar", + "desc": "(Humanoid or Hybrid Form Only). Melee Weapon Attack: +5 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", + "parent": "srd_weretiger", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_werewolf_bite", + "fields": { + "name": "Bite", + "desc": "(Wolf or Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) piercing damage. If the target is a humanoid, it must succeed on a DC 12 Constitution saving throw or be cursed with werewolf lycanthropy.\n", + "parent": "srd_werewolf", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_werewolf_claws", + "fields": { + "name": "Claws", + "desc": "(Hybrid Form Only). Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 7 (2d4 + 2) slashing damage.\n", + "parent": "srd_werewolf", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_werewolf_multiattack", + "fields": { + "name": "Multiattack", + "desc": "(Humanoid or Hybrid Form Only). The werewolf makes two attacks: one with its bite and one with its claws or spear.\n", + "parent": "srd_werewolf", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_werewolf_spear", + "fields": { + "name": "Spear", + "desc": "(Humanoid Form Only). Melee or Ranged Weapon Attack: +4 to hit, reach 5 ft. or range 20/60 ft., one creature. Hit: 5 (1d6 + 2) piercing damage, or 6 (1d8 + 2) piercing damage if used with two hands to make a melee attack.\n", + "parent": "srd_werewolf", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_white-dragon-wyrmling_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 7 (1d10 + 2) piercing damage plus 2 (1d4) cold damage.\n", + "parent": "srd_white-dragon-wyrmling", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_white-dragon-wyrmling_cold-breath", + "fields": { + "name": "Cold Breath", + "desc": "The dragon exhales an icy blast of hail in a 15-foot cone. Each creature in that area must make a DC 12 Constitution saving throw, taking 22 (5d8) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_white-dragon-wyrmling", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wight_life-drain", + "fields": { + "name": "Life Drain", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one creature. Hit: 5 (1d6 + 2) necrotic damage. The target must succeed on a DC 13 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n\nA humanoid slain by this attack rises 24 hours later as a zombie under the wight's control, unless the humanoid is restored to life or its body is destroyed. The wight can have no more than twelve zombies under its control at one time.\n", + "parent": "srd_wight", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wight_longbow", + "fields": { + "name": "Longbow", + "desc": "Ranged Weapon Attack: +4 to hit, range 150/600 ft., one target. Hit: 6 (1d8 + 2) piercing damage.\n", + "parent": "srd_wight", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wight_longsword", + "fields": { + "name": "Longsword", + "desc": "Melee Weapon Attack: +4 to hit, reach 5 ft., one target. Hit: 6 (1d8 + 2) slashing damage, or 7 (1d10 + 2) slashing damage if used with two hands.\n", + "parent": "srd_wight", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wight_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The wight makes two longsword attacks or two longbow attacks. It can use its Life Drain in place of one longsword attack.\n", + "parent": "srd_wight", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_will-o-wisp_invisibility", + "fields": { + "name": "Invisibility", + "desc": "The will-o'-wisp and its light magically become invisible until it attacks or uses its Consume Life, or until its concentration ends (as if concentrating on a spell).\n", + "parent": "srd_will-o-wisp", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_will-o-wisp_shock", + "fields": { + "name": "Shock", + "desc": "Melee Spell Attack: +4 to hit, reach 5 ft., one creature. Hit: 9 (2d8) lightning damage.\n", + "parent": "srd_will-o-wisp", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wraith_create-specter", + "fields": { + "name": "Create Specter", + "desc": "The wraith targets a humanoid within 10 feet of it that has been dead for no longer than 1 minute and died violently. The target's spirit rises as a specter in the space of its corpse or in the nearest unoccupied space. The specter is under the wraith's control. The wraith can have no more than seven specters under its control at one time.\n", + "parent": "srd_wraith", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wraith_life-drain", + "fields": { + "name": "Life Drain", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one creature. Hit: 21 (4d8 + 3) necrotic damage. The target must succeed on a DC 14 Constitution saving throw or its hit point maximum is reduced by an amount equal to the damage taken. This reduction lasts until the target finishes a long rest. The target dies if this effect reduces its hit point maximum to 0.\n", + "parent": "srd_wraith", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wyvern_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage.\n", + "parent": "srd_wyvern", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wyvern_claws", + "fields": { + "name": "Claws", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 13 (2d8 + 4) slashing damage.\n", + "parent": "srd_wyvern", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wyvern_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The wyvern makes two attacks: one with its bite and one with its stinger. While flying, it can use its claws in place of one other attack.\n", + "parent": "srd_wyvern", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_wyvern_stinger", + "fields": { + "name": "Stinger", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one creature. Hit: 11 (2d6 + 4) piercing damage. The target must make a DC 15 Constitution saving throw, taking 24 (7d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_wyvern", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_xorn_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 13 (3d6 + 3) piercing damage.\n", + "parent": "srd_xorn", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_xorn_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +6 to hit, reach 5 ft., one target. Hit: 6 (1d6 + 3) slashing damage.\n", + "parent": "srd_xorn", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_xorn_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The xorn makes three claw attacks and one bite attack.\n", + "parent": "srd_xorn", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-black-dragon_acid-breath", + "fields": { + "name": "Acid Breath", + "desc": "The dragon exhales acid in a 30-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 49 (11d8) acid damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-black-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-black-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) acid damage.\n", + "parent": "srd_young-black-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-black-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-black-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-black-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-black-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-blue-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +9 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage plus 5 (1d10) lightning damage.\n", + "parent": "srd_young-blue-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-blue-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +9 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", + "parent": "srd_young-blue-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-blue-dragon_lightning-breath", + "fields": { + "name": "Lightning Breath", + "desc": "The dragon exhales lightning in an 60-foot line that is 5 feet wide. Each creature in that line must make a DC 16 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-blue-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-blue-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-blue-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-brass-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", + "parent": "srd_young-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-brass-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 42 (12d6) fire damage on a failed save, or half as much damage on a successful one.\n\nSleep Breath. The dragon exhales sleep gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw or fall unconscious for 5 minutes. This effect ends for a creature if the creature takes damage or someone uses an action to wake it.\n", + "parent": "srd_young-brass-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-brass-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-brass-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-brass-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-bronze-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +8 to hit, reach 10 ft., one target. Hit: 16 (2d10 + 5) piercing damage.\n", + "parent": "srd_young-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-bronze-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nLightning Breath. The dragon exhales lightning in a 60-foot line that is 5 feet wide. Each creature in that line must make a DC 15 Dexterity saving throw, taking 55 (10d10) lightning damage on a failed save, or half as much damage on a successful one.\n\nRepulsion Breath. The dragon exhales repulsion energy in a 30-foot cone. Each creature in that area must succeed on a DC 15 Strength saving throw. On a failed save, the creature is pushed 40 feet away from the dragon.\n", + "parent": "srd_young-bronze-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-bronze-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +8 to hit, reach 5 ft., one target. Hit: 12 (2d6 + 5) slashing damage.\n", + "parent": "srd_young-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-bronze-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-bronze-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-copper-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage.\n", + "parent": "srd_young-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-copper-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nAcid Breath. The dragon exhales acid in an 40-foot line that is 5 feet wide. Each creature in that line must make a DC 14 Dexterity saving throw, taking 40 (9d8) acid damage on a failed save, or half as much damage on a successful one.\n\nSlowing Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 14 Constitution saving throw. On a failed save, the creature can't use reactions, its speed is halved, and it can't make more than one attack on its turn. In addition, the creature can use either an action or a bonus action on its turn, but not both. These effects last for 1 minute. The creature can repeat the saving throw at the end of each of its turns, ending the effect on itself with a successful save.\n", + "parent": "srd_young-copper-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-copper-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-copper-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-copper-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-gold-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", + "parent": "srd_young-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-gold-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nFire Breath. The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 55 (10d10) fire damage on a failed save, or half as much damage on a successful one.\n\nWeakening Breath. The dragon exhales gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Strength saving throw or have disadvantage on Strength-based attack rolls, Strength checks, and Strength saving throws for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_young-gold-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-gold-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_young-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-gold-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-gold-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-green-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 7 (2d6) poison damage.\n", + "parent": "srd_young-green-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-green-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-green-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-green-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-green-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-green-dragon_poison-breath", + "fields": { + "name": "Poison Breath", + "desc": "The dragon exhales poisonous gas in a 30-foot cone. Each creature in that area must make a DC 14 Constitution saving throw, taking 42 (12d6) poison damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-green-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-red-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage plus 3 (1d6) fire damage.\n", + "parent": "srd_young-red-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-red-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_young-red-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-red-dragon_fire-breath", + "fields": { + "name": "Fire Breath", + "desc": "The dragon exhales fire in a 30-foot cone. Each creature in that area must make a DC 17 Dexterity saving throw, taking 56 (16d6) fire damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-red-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-red-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-red-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-silver-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +10 to hit, reach 10 ft., one target. Hit: 17 (2d10 + 6) piercing damage.\n", + "parent": "srd_young-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-silver-dragon_breath-weapons", + "fields": { + "name": "Breath Weapons", + "desc": "The dragon uses one of the following breath weapons.\n\nCold Breath. The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 17 Constitution saving throw, taking 54 (12d8) cold damage on a failed save, or half as much damage on a successful one.\n\nParalyzing Breath. The dragon exhales paralyzing gas in a 30-foot cone. Each creature in that area must succeed on a DC 17 Constitution saving throw or be paralyzed for 1 minute. A creature can repeat the saving throw at the end of each of its turns, ending the effect on itself on a success.\n", + "parent": "srd_young-silver-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-silver-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +10 to hit, reach 5 ft., one target. Hit: 13 (2d6 + 6) slashing damage.\n", + "parent": "srd_young-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-silver-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-silver-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-white-dragon_bite", + "fields": { + "name": "Bite", + "desc": "Melee Weapon Attack: +7 to hit, reach 10 ft., one target. Hit: 15 (2d10 + 4) piercing damage plus 4 (1d8) cold damage.\n", + "parent": "srd_young-white-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-white-dragon_claw", + "fields": { + "name": "Claw", + "desc": "Melee Weapon Attack: +7 to hit, reach 5 ft., one target. Hit: 11 (2d6 + 4) slashing damage.\n", + "parent": "srd_young-white-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-white-dragon_cold-breath", + "fields": { + "name": "Cold Breath", + "desc": "The dragon exhales an icy blast in a 30-foot cone. Each creature in that area must make a DC 15 Constitution saving throw, taking 45 (10d8) cold damage on a failed save, or half as much damage on a successful one.\n", + "parent": "srd_young-white-dragon", + "uses_type": "RECHARGE_ON_ROLL", + "uses_param": 5 + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_young-white-dragon_multiattack", + "fields": { + "name": "Multiattack", + "desc": "The dragon makes three attacks: one with its bite and two with its claws.\n", + "parent": "srd_young-white-dragon", + "uses_type": null, + "uses_param": null + } +}, +{ + "model": "api_v2.creatureaction", + "pk": "srd_zombie_slam", + "fields": { + "name": "Slam", + "desc": "Melee Weapon Attack: +3 to hit, reach 5 ft., one target. Hit: 4 (1d6 + 1) bludgeoning damage.\n", + "parent": "srd_zombie", + "uses_type": null, + "uses_param": null + } +} +] diff --git a/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json index 68a076ab..239901d4 100644 --- a/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json +++ b/data/v2/wizards-of-the-coast/srd/CreatureActionAttack.json @@ -1,8494 +1,8494 @@ [ - { - "model": "api_v2.creatureactionattack", - "pk": "srd_aboleth_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_aboleth_tail", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_aboleth_tentacle_tentacle-attack", - "fields": { - "name": "Tentacle attack", - "parent": "srd_aboleth_tentacle", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-black-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_adult-black-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-black-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_adult-black-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-black-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_adult-black-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-blue-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_adult-blue-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 7, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D10", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-blue-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_adult-blue-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 7, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-blue-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_adult-blue-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 7, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-brass-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_adult-brass-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-brass-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_adult-brass-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-brass-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_adult-brass-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-bronze-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_adult-bronze-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 7, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-bronze-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_adult-bronze-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 7, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-bronze-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_adult-bronze-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 7, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-copper-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_adult-copper-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-copper-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_adult-copper-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-copper-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_adult-copper-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-gold-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_adult-gold-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-gold-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_adult-gold-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-gold-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_adult-gold-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-green-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_adult-green-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-green-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_adult-green-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-green-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_adult-green-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-red-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_adult-red-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-red-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_adult-red-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-red-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_adult-red-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-silver-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_adult-silver-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-silver-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_adult-silver-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-silver-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_adult-silver-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-white-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_adult-white-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-white-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_adult-white-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_adult-white-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_adult-white-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_air-elemental_slam_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "srd_air-elemental_slam", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-black-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ancient-black-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-black-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_ancient-black-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-black-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_ancient-black-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-blue-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ancient-blue-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 16, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 9, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D10", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-blue-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_ancient-blue-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 16, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 9, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-blue-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_ancient-blue-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 16, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 9, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-brass-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ancient-brass-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-brass-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_ancient-brass-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-brass-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_ancient-brass-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-bronze-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ancient-bronze-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 16, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 9, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-bronze-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_ancient-bronze-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 16, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 9, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-bronze-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_ancient-bronze-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 16, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 9, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-copper-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ancient-copper-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-copper-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_ancient-copper-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-copper-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_ancient-copper-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-gold-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ancient-gold-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 10, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-gold-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_ancient-gold-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 10, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-gold-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_ancient-gold-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 10, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-green-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ancient-green-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-green-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_ancient-green-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-green-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_ancient-green-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-red-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ancient-red-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 10, - "damage_type": "piercing", - "extra_damage_die_count": 4, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-red-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_ancient-red-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 10, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-red-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_ancient-red-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 10, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-silver-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ancient-silver-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 10, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-silver-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_ancient-silver-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 10, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-silver-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_ancient-silver-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 10, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-white-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ancient-white-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-white-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_ancient-white-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ancient-white-dragon_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_ancient-white-dragon_tail", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_androsphinx_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_androsphinx_claw", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_animated-armor_slam_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "srd_animated-armor_slam", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ankheg_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ankheg_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_azer_warhammer_warhammer-attack", - "fields": { - "name": "Warhammer attack", - "parent": "srd_azer_warhammer", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_azer_warhammer_warhammer-attack-if-used-with-two-hands", - "fields": { - "name": "Warhammer attack (if used with two hands)", - "parent": "srd_azer_warhammer", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_balor_longsword_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "srd_balor_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_balor_whip_whip-attack", - "fields": { - "name": "Whip attack", - "parent": "srd_balor_whip", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 30, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_barbed-devil_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_barbed-devil_claw", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_barbed-devil_hurl-flame_hurl-flame-attack", - "fields": { - "name": "Hurl Flame attack", - "parent": "srd_barbed-devil_hurl-flame", - "attack_type": "SPELL", - "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "fire", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "fire" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_barbed-devil_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_barbed-devil_tail", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_basilisk_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_basilisk_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_bearded-devil_beard_beard-attack", - "fields": { - "name": "Beard attack", - "parent": "srd_bearded-devil_beard", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_bearded-devil_glaive_glaive-attack", - "fields": { - "name": "Glaive attack", - "parent": "srd_bearded-devil_glaive", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_behir_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_behir_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_behir_constrict_constrict-attack", - "fields": { - "name": "Constrict attack", - "parent": "srd_behir_constrict", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D10", - "extra_damage_bonus": 6, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_black-dragon-wyrmling_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_black-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D4", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_black-pudding_pseudopod_pseudopod-attack", - "fields": { - "name": "Pseudopod attack", - "parent": "srd_black-pudding_pseudopod", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": 4, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_blue-dragon-wyrmling_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_blue-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_bone-devil_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_bone-devil_claw", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_bone-devil_sting_sting-attack", - "fields": { - "name": "Sting attack", - "parent": "srd_bone-devil_sting", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 5, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_brass-dragon-wyrmling_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_brass-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_bronze-dragon-wyrmling_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_bronze-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_bugbear_javelin_javelin-attack-at-range", - "fields": { - "name": "Javelin attack (at range)", - "parent": "srd_bugbear_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_bugbear_javelin_javelin-attack-in-melee", - "fields": { - "name": "Javelin attack (in melee)", - "parent": "srd_bugbear_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_bugbear_morningstar_morningstar-attack", - "fields": { - "name": "Morningstar attack", - "parent": "srd_bugbear_morningstar", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_bulette_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_bulette_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D12", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_centaur_hooves_hooves-attack", - "fields": { - "name": "Hooves attack", - "parent": "srd_centaur_hooves", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_centaur_longbow_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "srd_centaur_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_centaur_pike_pike-attack", - "fields": { - "name": "Pike attack", - "parent": "srd_centaur_pike", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_chain-devil_chain_chain-attack", - "fields": { - "name": "Chain attack", - "parent": "srd_chain-devil_chain", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_chimera_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_chimera_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_chimera_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_chimera_claws", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_chimera_horns_horns-attack", - "fields": { - "name": "Horns attack", - "parent": "srd_chimera_horns", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D12", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_chuul_pincer_pincer-attack", - "fields": { - "name": "Pincer attack", - "parent": "srd_chuul_pincer", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_clay-golem_slam_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "srd_clay-golem_slam", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_cloaker_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_cloaker_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_cloaker_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_cloaker_tail", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_cloud-giant_morningstar_morningstar-attack", - "fields": { - "name": "Morningstar attack", - "parent": "srd_cloud-giant_morningstar", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_cloud-giant_rock_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "srd_cloud-giant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_cockatrice_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_cockatrice_bite", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_copper-dragon-wyrmling_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_copper-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_couatl_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_couatl_bite", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_couatl_constrict_constrict-attack", - "fields": { - "name": "Constrict attack", - "parent": "srd_couatl_constrict", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_darkmantle_crush_crush-attack", - "fields": { - "name": "Crush attack", - "parent": "srd_darkmantle_crush", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_deva_mace_mace-attack", - "fields": { - "name": "Mace attack", - "parent": "srd_deva_mace", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": 4, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_djinni_scimitar_scimitar-attack-lightning-damage", - "fields": { - "name": "Scimitar attack (lightning damage)", - "parent": "srd_djinni_scimitar", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_djinni_scimitar_scimitar-attack-thunder-damage", - "fields": { - "name": "Scimitar attack (thunder damage)", - "parent": "srd_djinni_scimitar", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_doppelganger_slam_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "srd_doppelganger_slam", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_dragon-turtle_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_dragon-turtle_bite", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D12", - "damage_bonus": 7, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_dragon-turtle_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_dragon-turtle_claw", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 7, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_dragon-turtle_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_dragon-turtle_tail", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D12", - "damage_bonus": 7, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_dretch_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_dretch_bite", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_dretch_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_dretch_claws", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 0, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_drider_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_drider_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_drider_longbow_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "srd_drider_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_drider_longsword_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "srd_drider_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_drider_longsword_longsword-attack-if-used-with-two-hands", - "fields": { - "name": "Longsword attack (if used with two hands)", - "parent": "srd_drider_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_dryad_club_club-attack", - "fields": { - "name": "Club attack", - "parent": "srd_dryad_club", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 0, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_dryad_club_club-attack-with-shillelagh", - "fields": { - "name": "Club attack (with shillelagh)", - "parent": "srd_dryad_club", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_duergar_javelin_javelin-attack", - "fields": { - "name": "Javelin attack", - "parent": "srd_duergar_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_duergar_javelin_javelin-attack-while-enlarged", - "fields": { - "name": "Javelin attack (while enlarged)", - "parent": "srd_duergar_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_duergar_war-pick_war-pick-attack", - "fields": { - "name": "War Pick attack", - "parent": "srd_duergar_war-pick", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_duergar_war-pick_war-pick-attack-while-enlarged", - "fields": { - "name": "War Pick attack (while enlarged)", - "parent": "srd_duergar_war-pick", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_dust-mephit_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_dust-mephit_claws", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_earth-elemental_slam_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "srd_earth-elemental_slam", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_efreeti_hurl-flame_hurl-flame-attack", - "fields": { - "name": "Hurl Flame attack", - "parent": "srd_efreeti_hurl-flame", - "attack_type": "SPELL", - "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 120, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 5, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "fire", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "fire" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_efreeti_scimitar_scimitar-attack", - "fields": { - "name": "Scimitar attack", - "parent": "srd_efreeti_scimitar", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_elf-drow_hand-crossbow_hand-crossbow-attack", - "fields": { - "name": "Hand Crossbow attack", - "parent": "srd_elf-drow_hand-crossbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_elf-drow_shortsword_shortsword-attack", - "fields": { - "name": "Shortsword attack", - "parent": "srd_elf-drow_shortsword", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_erinyes_longbow_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "srd_erinyes_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_erinyes_longsword_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "srd_erinyes_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_erinyes_longsword_longsword-attack-if-used-with-two-hands", - "fields": { - "name": "Longsword attack (if used with two hands)", - "parent": "srd_erinyes_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ettercap_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ettercap_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ettercap_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_ettercap_claws", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ettercap_web_web-attack", - "fields": { - "name": "Web attack", - "parent": "srd_ettercap_web", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30, - "long_range_ft": 60, - "target_creature_only": true, - "damage_die_count": null, - "damage_die_type": null, - "damage_bonus": null, - "damage_type": null, - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": null - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ettin_battleaxe_battleaxe-attack", - "fields": { - "name": "Battleaxe attack", - "parent": "srd_ettin_battleaxe", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ettin_morningstar_morningstar-attack", - "fields": { - "name": "Morningstar attack", - "parent": "srd_ettin_morningstar", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_fire-elemental_touch_touch-attack", - "fields": { - "name": "Touch attack", - "parent": "srd_fire-elemental_touch", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "fire", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "fire" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_fire-giant_greatsword_greatsword-attack", - "fields": { - "name": "Greatsword attack", - "parent": "srd_fire-giant_greatsword", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 6, - "damage_die_type": "D6", - "damage_bonus": 7, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_fire-giant_rock_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "srd_fire-giant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D10", - "damage_bonus": 7, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_flesh-golem_slam_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "srd_flesh-golem_slam", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_flying-sword_longsword_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "srd_flying-sword_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_frost-giant_greataxe_greataxe-attack", - "fields": { - "name": "Greataxe attack", - "parent": "srd_frost-giant_greataxe", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D12", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_frost-giant_rock_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "srd_frost-giant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gargoyle_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_gargoyle_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gargoyle_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_gargoyle_claws", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gelatinous-cube_pseudopod_pseudopod-attack", - "fields": { - "name": "Pseudopod attack", - "parent": "srd_gelatinous-cube_pseudopod", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "acid", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "acid" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ghast_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ghast_bite", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ghast_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_ghast_claws", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ghost_withering-touch_withering-touch-attack", - "fields": { - "name": "Withering Touch attack", - "parent": "srd_ghost_withering-touch", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "necrotic", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "necrotic" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ghoul_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ghoul_bite", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ghoul_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_ghoul_claws", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gibbering-mouther_bites_bites-attack", - "fields": { - "name": "Bites attack", - "parent": "srd_gibbering-mouther_bites", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 5, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_glabrezu_fist_fist-attack", - "fields": { - "name": "Fist attack", - "parent": "srd_glabrezu_fist", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_glabrezu_pincer_pincer-attack", - "fields": { - "name": "Pincer attack", - "parent": "srd_glabrezu_pincer", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gnoll_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_gnoll_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gnoll_longbow_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "srd_gnoll_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gnoll_spear_spear-attack", - "fields": { - "name": "Spear attack", - "parent": "srd_gnoll_spear", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gnoll_spear_spear-attack-if-used-with-two-hands", - "fields": { - "name": "Spear attack (if used with two hands)", - "parent": "srd_gnoll_spear", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gnome-deep-svirfneblin_poisoned-dart_poisoned-dart-attack", - "fields": { - "name": "Poisoned Dart attack", - "parent": "srd_gnome-deep-svirfneblin_poisoned-dart", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gnome-deep-svirfneblin_war-pick_war-pick-attack", - "fields": { - "name": "War Pick attack", - "parent": "srd_gnome-deep-svirfneblin_war-pick", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_goblin_scimitar_scimitar-attack", - "fields": { - "name": "Scimitar attack", - "parent": "srd_goblin_scimitar", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_goblin_shortbow_shortbow-attack", - "fields": { - "name": "Shortbow attack", - "parent": "srd_goblin_shortbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gold-dragon-wyrmling_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_gold-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gorgon_gore_gore-attack", - "fields": { - "name": "Gore attack", - "parent": "srd_gorgon_gore", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D12", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gorgon_hooves_hooves-attack", - "fields": { - "name": "Hooves attack", - "parent": "srd_gorgon_hooves", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gray-ooze_pseudopod_pseudopod-attack", - "fields": { - "name": "Pseudopod attack", - "parent": "srd_gray-ooze_pseudopod", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 1, - "damage_type": "bludgeoning", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_green-dragon-wyrmling_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_green-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_green-hag_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_green-hag_claws", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_grick_beak_beak-attack", - "fields": { - "name": "Beak attack", - "parent": "srd_grick_beak", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_grick_tentacles_tentacles-attack", - "fields": { - "name": "Tentacles attack", - "parent": "srd_grick_tentacles", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_griffon_beak_beak-attack", - "fields": { - "name": "Beak attack", - "parent": "srd_griffon_beak", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_griffon_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_griffon_claws", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_grimlock_spiked-bone-club_spiked-bone-club-attack", - "fields": { - "name": "Spiked Bone Club attack", - "parent": "srd_grimlock_spiked-bone-club", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D4", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_guardian-naga_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_guardian-naga_bite", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_guardian-naga_spit-poison_spit-poison-attack", - "fields": { - "name": "Spit Poison attack", - "parent": "srd_guardian-naga_spit-poison", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 15, - "long_range_ft": 30, - "target_creature_only": true, - "damage_die_count": null, - "damage_die_type": null, - "damage_bonus": null, - "damage_type": null, - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": null - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_gynosphinx_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_gynosphinx_claw", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_half-red-dragon-veteran_heavy-crossbow_heavy-crossbow-attack", - "fields": { - "name": "Heavy Crossbow attack", - "parent": "srd_half-red-dragon-veteran_heavy-crossbow", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 100, - "long_range_ft": 400, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_half-red-dragon-veteran_longsword_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "srd_half-red-dragon-veteran_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_half-red-dragon-veteran_longsword_longsword-attack-if-used-with-two-hands", - "fields": { - "name": "Longsword attack (if used with two hands)", - "parent": "srd_half-red-dragon-veteran_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_half-red-dragon-veteran_shortsword_shortsword-attack", - "fields": { - "name": "Shortsword attack", - "parent": "srd_half-red-dragon-veteran_shortsword", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_harpy_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_harpy_claws", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_harpy_club_club-attack", - "fields": { - "name": "Club attack", - "parent": "srd_harpy_club", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_hell-hound_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_hell-hound_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_hezrou_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_hezrou_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_hezrou_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_hezrou_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_hill-giant_greatclub_greatclub-attack", - "fields": { - "name": "Greatclub attack", - "parent": "srd_hill-giant_greatclub", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_hill-giant_rock_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "srd_hill-giant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_hippogriff_beak_beak-attack", - "fields": { - "name": "Beak attack", - "parent": "srd_hippogriff_beak", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_hippogriff_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_hippogriff_claws", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_hobgoblin_longbow_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "srd_hobgoblin_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_hobgoblin_longsword_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "srd_hobgoblin_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_hobgoblin_longsword_longsword-attack-if-used-with-two-hands", - "fields": { - "name": "Longsword attack (if used with two hands)", - "parent": "srd_hobgoblin_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_homunculus_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_homunculus_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 0, - "damage_die_type": null, - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_horned-devil_fork_fork-attack", - "fields": { - "name": "Fork attack", - "parent": "srd_horned-devil_fork", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_horned-devil_hurl-flame_hurl-flame-attack", - "fields": { - "name": "Hurl Flame attack", - "parent": "srd_horned-devil_hurl-flame", - "attack_type": "SPELL", - "to_hit_mod": 7, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "fire", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "fire" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_horned-devil_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_horned-devil_tail", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_hydra_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_hydra_bite", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ice-devil_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_ice-devil_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ice-devil_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_ice-devil_claws", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ice-devil_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_ice-devil_tail", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "bludgeoning", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ice-mephit_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_ice-mephit_claws", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D4", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_imp_sting-bite-in-beast-form_stingbite-attack", - "fields": { - "name": "Sting/Bite attack", - "parent": "srd_imp_sting-bite-in-beast-form", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_invisible-stalker_slam_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "srd_invisible-stalker_slam", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_iron-golem_slam_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "srd_iron-golem_slam", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 7, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_iron-golem_sword_sword-attack", - "fields": { - "name": "Sword attack", - "parent": "srd_iron-golem_sword", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D10", - "damage_bonus": 7, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_kobold_dagger_dagger-attack", - "fields": { - "name": "Dagger attack", - "parent": "srd_kobold_dagger", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_kobold_sling_sling-attack", - "fields": { - "name": "Sling attack", - "parent": "srd_kobold_sling", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_kraken_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_kraken_bite", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 10, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_kraken_tentacle_tentacle-attack", - "fields": { - "name": "Tentacle attack", - "parent": "srd_kraken_tentacle", - "attack_type": "WEAPON", - "to_hit_mod": 17, - "reach_ft": 30, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 10, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_lamia_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_lamia_claws", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_lamia_dagger_dagger-attack", - "fields": { - "name": "Dagger attack", - "parent": "srd_lamia_dagger", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_lamia_intoxicating-touch_intoxicating-touch-attack", - "fields": { - "name": "Intoxicating Touch attack", - "parent": "srd_lamia_intoxicating-touch", - "attack_type": "SPELL", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": null, - "damage_die_type": null, - "damage_bonus": null, - "damage_type": null, - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": null - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_lemure_fist_fist-attack", - "fields": { - "name": "Fist attack", - "parent": "srd_lemure_fist", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 0, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_lich_paralyzing-touch_paralyzing-touch-attack", - "fields": { - "name": "Paralyzing Touch attack", - "parent": "srd_lich_paralyzing-touch", - "attack_type": "SPELL", - "to_hit_mod": 12, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "cold", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "cold" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_lizardfolk_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_lizardfolk_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_lizardfolk_heavy-club_heavy-club-attack", - "fields": { - "name": "Heavy Club attack", - "parent": "srd_lizardfolk_heavy-club", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_lizardfolk_javelin_javelin-attack", - "fields": { - "name": "Javelin attack", - "parent": "srd_lizardfolk_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_lizardfolk_spiked-shield_spiked-shield-attack", - "fields": { - "name": "Spiked Shield attack", - "parent": "srd_lizardfolk_spiked-shield", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_magma-mephit_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_magma-mephit_claws", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D4", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_magmin_touch_touch-attack", - "fields": { - "name": "Touch attack", - "parent": "srd_magmin_touch", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "fire", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "fire" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_manticore_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_manticore_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_manticore_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_manticore_claw", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_manticore_tail-spike_tail-spike-attack", - "fields": { - "name": "Tail Spike attack", - "parent": "srd_manticore_tail-spike", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 100, - "long_range_ft": 200, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_marilith_longsword_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "srd_marilith_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_marilith_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_marilith_tail", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_medusa_longbow_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "srd_medusa_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_medusa_shortsword_shortsword-attack", - "fields": { - "name": "Shortsword attack", - "parent": "srd_medusa_shortsword", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_medusa_snake-hair_snake-hair-attack", - "fields": { - "name": "Snake Hair attack", - "parent": "srd_medusa_snake-hair", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": 4, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_merfolk_spear_spear-attack", - "fields": { - "name": "Spear attack", - "parent": "srd_merfolk_spear", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_merfolk_spear_spear-attack-if-used-with-two-hands", - "fields": { - "name": "Spear attack (if used with two hands)", - "parent": "srd_merfolk_spear", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_merrow_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_merrow_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_merrow_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_merrow_claws", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_merrow_harpoon_harpoon-attack", - "fields": { - "name": "Harpoon attack", - "parent": "srd_merrow_harpoon", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_mimic_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_mimic_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_mimic_pseudopod_pseudopod-attack", - "fields": { - "name": "Pseudopod attack", - "parent": "srd_mimic_pseudopod", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_minotaur-skeleton_gore_gore-attack", - "fields": { - "name": "Gore attack", - "parent": "srd_minotaur-skeleton_gore", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_minotaur-skeleton_greataxe_greataxe-attack", - "fields": { - "name": "Greataxe attack", - "parent": "srd_minotaur-skeleton_greataxe", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D12", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_minotaur_gore_gore-attack", - "fields": { - "name": "Gore attack", - "parent": "srd_minotaur_gore", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_minotaur_greataxe_greataxe-attack", - "fields": { - "name": "Greataxe attack", - "parent": "srd_minotaur_greataxe", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D12", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_mummy-lord_rotting-fist_rotting-fist-attack", - "fields": { - "name": "Rotting Fist attack", - "parent": "srd_mummy-lord_rotting-fist", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": 6, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_mummy_rotting-fist_rotting-fist-attack", - "fields": { - "name": "Rotting Fist attack", - "parent": "srd_mummy_rotting-fist", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_nalfeshnee_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_nalfeshnee_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 5, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_nalfeshnee_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_nalfeshnee_claw", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_night-hag_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_night-hag_claws", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_nightmare_hooves_hooves-attack", - "fields": { - "name": "Hooves attack", - "parent": "srd_nightmare_hooves", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ochre-jelly_pseudopod_pseudopod-attack", - "fields": { - "name": "Pseudopod attack", - "parent": "srd_ochre-jelly_pseudopod", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "bludgeoning", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ogre-zombie_morningstar_morningstar-attack", - "fields": { - "name": "Morningstar attack", - "parent": "srd_ogre-zombie_morningstar", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ogre_greatclub_greatclub-attack", - "fields": { - "name": "Greatclub attack", - "parent": "srd_ogre_greatclub", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_ogre_javelin_javelin-attack", - "fields": { - "name": "Javelin attack", - "parent": "srd_ogre_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_oni_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_oni_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_oni_glaive_glaive-attack", - "fields": { - "name": "Glaive attack", - "parent": "srd_oni_glaive", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_oni_glaive_glaive-attack-in-small-or-medium-form", - "fields": { - "name": "Glaive attack (in Small or Medium form)", - "parent": "srd_oni_glaive", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_orc_greataxe_greataxe-attack", - "fields": { - "name": "Greataxe attack", - "parent": "srd_orc_greataxe", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D12", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_orc_javelin_javelin-attack", - "fields": { - "name": "Javelin attack", - "parent": "srd_orc_javelin", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_otyugh_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_otyugh_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_otyugh_tentacle_tentacle-attack", - "fields": { - "name": "Tentacle attack", - "parent": "srd_otyugh_tentacle", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_owlbear_beak_beak-attack", - "fields": { - "name": "Beak attack", - "parent": "srd_owlbear_beak", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_owlbear_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_owlbear_claws", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_pegasus_hooves_hooves-attack", - "fields": { - "name": "Hooves attack", - "parent": "srd_pegasus_hooves", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_pit-fiend_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_pit-fiend_bite", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_pit-fiend_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_pit-fiend_claw", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_pit-fiend_mace_mace-attack", - "fields": { - "name": "Mace attack", - "parent": "srd_pit-fiend_mace", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": 6, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_pit-fiend_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_pit-fiend_tail", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D10", - "damage_bonus": 8, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_planetar_greatsword_greatsword-attack", - "fields": { - "name": "Greatsword attack", - "parent": "srd_planetar_greatsword", - "attack_type": "WEAPON", - "to_hit_mod": 12, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 7, - "damage_type": "slashing", - "extra_damage_die_count": 5, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_plesiosaurus_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_plesiosaurus_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_pseudodragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_pseudodragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_pseudodragon_sting_sting-attack", - "fields": { - "name": "Sting attack", - "parent": "srd_pseudodragon_sting", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_purple-worm_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_purple-worm_bite", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 9, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_purple-worm_tail-stinger_tail-stinger-attack", - "fields": { - "name": "Tail Stinger attack", - "parent": "srd_purple-worm_tail-stinger", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 9, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_quasit_claws-bite-in-beast-form_clawsbite-attack", - "fields": { - "name": "Claws/Bite attack", - "parent": "srd_quasit_claws-bite-in-beast-form", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_rakshasa_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_rakshasa_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_red-dragon-wyrmling_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_red-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_remorhaz_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_remorhaz_bite", - "attack_type": "WEAPON", - "to_hit_mod": 11, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 6, - "damage_die_type": "D10", - "damage_bonus": 7, - "damage_type": "piercing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_roc_beak_beak-attack", - "fields": { - "name": "Beak attack", - "parent": "srd_roc_beak", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D8", - "damage_bonus": 9, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_roc_talons_talons-attack", - "fields": { - "name": "Talons attack", - "parent": "srd_roc_talons", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 9, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_roper_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_roper_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_roper_tendril_tendril-attack", - "fields": { - "name": "Tendril attack", - "parent": "srd_roper_tendril", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 50, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": null, - "damage_die_type": null, - "damage_bonus": null, - "damage_type": null, - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": null - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_rug-of-smothering_smother_smother-attack", - "fields": { - "name": "Smother attack", - "parent": "srd_rug-of-smothering_smother", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": null, - "damage_die_type": null, - "damage_bonus": null, - "damage_type": null, - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": null - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_rust-monster_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_rust-monster_bite", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_sahuagin_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_sahuagin_bite", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_sahuagin_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_sahuagin_claws", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_sahuagin_spear_spear-attack", - "fields": { - "name": "Spear attack", - "parent": "srd_sahuagin_spear", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_sahuagin_spear_spear-attack-if-used-with-two-hands", - "fields": { - "name": "Spear attack (if used with two hands)", - "parent": "srd_sahuagin_spear", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 1, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_salamander_spear_spear-attack", - "fields": { - "name": "Spear attack", - "parent": "srd_salamander_spear", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_salamander_spear_spear-attack-if-used-with-two-hands", - "fields": { - "name": "Spear attack (if used with two hands)", - "parent": "srd_salamander_spear", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_salamander_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_salamander_tail", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_satyr_ram_ram-attack", - "fields": { - "name": "Ram attack", - "parent": "srd_satyr_ram", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 1, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_satyr_shortbow_shortbow-attack", - "fields": { - "name": "Shortbow attack", - "parent": "srd_satyr_shortbow", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_satyr_shortsword_shortsword-attack", - "fields": { - "name": "Shortsword attack", - "parent": "srd_satyr_shortsword", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_sea-hag_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_sea-hag_claws", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_shadow_strength-drain_strength-drain-attack", - "fields": { - "name": "Strength Drain attack", - "parent": "srd_shadow_strength-drain", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "necrotic", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "necrotic" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_shambling-mound_slam_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "srd_shambling-mound_slam", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_shield-guardian_fist_fist-attack", - "fields": { - "name": "Fist attack", - "parent": "srd_shield-guardian_fist", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_silver-dragon-wyrmling_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_silver-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_skeleton_shortbow_shortbow-attack", - "fields": { - "name": "Shortbow attack", - "parent": "srd_skeleton_shortbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 80, - "long_range_ft": 320, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_skeleton_shortsword_shortsword-attack", - "fields": { - "name": "Shortsword attack", - "parent": "srd_skeleton_shortsword", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_solar_greatsword_greatsword-attack", - "fields": { - "name": "Greatsword attack", - "parent": "srd_solar_greatsword", - "attack_type": "WEAPON", - "to_hit_mod": 15, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 8, - "damage_type": "slashing", - "extra_damage_die_count": 6, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_solar_slaying-longbow_slaying-longbow-attack", - "fields": { - "name": "Slaying Longbow attack", - "parent": "srd_solar_slaying-longbow", - "attack_type": "WEAPON", - "to_hit_mod": 13, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": 6, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_specter_life-drain_life-drain-attack", - "fields": { - "name": "Life Drain attack", - "parent": "srd_specter_life-drain", - "attack_type": "SPELL", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 0, - "damage_type": "necrotic", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "necrotic" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_spirit-naga_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_spirit-naga_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_sprite_longsword_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "srd_sprite_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 0, - "damage_die_type": null, - "damage_bonus": 0, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_sprite_shortbow_shortbow-attack", - "fields": { - "name": "Shortbow attack", - "parent": "srd_sprite_shortbow", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": null, - "range_ft": 40, - "long_range_ft": 160, - "target_creature_only": false, - "damage_die_count": 0, - "damage_die_type": null, - "damage_bonus": 0, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_steam-mephit_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_steam-mephit_claws", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 0, - "damage_type": "slashing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D4", - "extra_damage_bonus": 0, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_stirge_blood-drain_blood-drain-attack", - "fields": { - "name": "Blood Drain attack", - "parent": "srd_stirge_blood-drain", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_stone-giant_greatclub_greatclub-attack", - "fields": { - "name": "Greatclub attack", - "parent": "srd_stone-giant_greatclub", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_stone-giant_rock_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "srd_stone-giant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_stone-golem_slam_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "srd_stone-golem_slam", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_storm-giant_greatsword_greatsword-attack", - "fields": { - "name": "Greatsword attack", - "parent": "srd_storm-giant_greatsword", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 6, - "damage_die_type": "D6", - "damage_bonus": 9, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_storm-giant_rock_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "srd_storm-giant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 14, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 240, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D12", - "damage_bonus": 9, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_succubusincubus_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_succubusincubus_claw", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_tarrasque_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_tarrasque_bite", - "attack_type": "WEAPON", - "to_hit_mod": 19, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D12", - "damage_bonus": 10, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_tarrasque_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_tarrasque_claw", - "attack_type": "WEAPON", - "to_hit_mod": 19, - "reach_ft": 15, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D8", - "damage_bonus": 10, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_tarrasque_horns_horns-attack", - "fields": { - "name": "Horns attack", - "parent": "srd_tarrasque_horns", - "attack_type": "WEAPON", - "to_hit_mod": 19, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D10", - "damage_bonus": 10, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_tarrasque_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_tarrasque_tail", - "attack_type": "WEAPON", - "to_hit_mod": 19, - "reach_ft": 20, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D6", - "damage_bonus": 10, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_treant_rock_rock-attack", - "fields": { - "name": "Rock attack", - "parent": "srd_treant_rock", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": null, - "range_ft": 60, - "long_range_ft": 180, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_treant_slam_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "srd_treant_slam", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_triceratops_gore_gore-attack", - "fields": { - "name": "Gore attack", - "parent": "srd_triceratops_gore", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D8", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_triceratops_stomp_stomp-attack", - "fields": { - "name": "Stomp attack", - "parent": "srd_triceratops_stomp", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 3, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_troll_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_troll_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_troll_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_troll_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_tyrannosaurus-rex_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_tyrannosaurus-rex_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 4, - "damage_die_type": "D12", - "damage_bonus": 7, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_tyrannosaurus-rex_tail_tail-attack", - "fields": { - "name": "Tail attack", - "parent": "srd_tyrannosaurus-rex_tail", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D8", - "damage_bonus": 7, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_unicorn_hooves_hooves-attack", - "fields": { - "name": "Hooves attack", - "parent": "srd_unicorn_hooves", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_unicorn_horn_horn-attack", - "fields": { - "name": "Horn attack", - "parent": "srd_unicorn_horn", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_vampire-spawn_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_vampire-spawn_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_vampire-spawn_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_vampire-spawn_claws", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_vampire_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_vampire_bite", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 3, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_vampire_unarmed-strike_unarmed-strike-attack", - "fields": { - "name": "Unarmed Strike attack", - "parent": "srd_vampire_unarmed-strike", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_violet-fungus_rotting-touch_rotting-touch-attack", - "fields": { - "name": "Rotting Touch attack", - "parent": "srd_violet-fungus_rotting-touch", - "attack_type": "WEAPON", - "to_hit_mod": 2, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 0, - "damage_type": "necrotic", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "necrotic" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_vrock_beak_beak-attack", - "fields": { - "name": "Beak attack", - "parent": "srd_vrock_beak", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_vrock_talons_talons-attack", - "fields": { - "name": "Talons attack", - "parent": "srd_vrock_talons", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_warhorse-skeleton_hooves_hooves-attack", - "fields": { - "name": "Hooves attack", - "parent": "srd_warhorse-skeleton_hooves", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_water-elemental_slam_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "srd_water-elemental_slam", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_werebear_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_werebear_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_werebear_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_werebear_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_werebear_greataxe_greataxe-attack", - "fields": { - "name": "Greataxe attack", - "parent": "srd_werebear_greataxe", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D12", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_wereboar_maul_maul-attack", - "fields": { - "name": "Maul attack", - "parent": "srd_wereboar_maul", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_wereboar_tusks_tusks-attack", - "fields": { - "name": "Tusks attack", - "parent": "srd_wereboar_tusks", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_wererat_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_wererat_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_wererat_hand-crossbow_hand-crossbow-attack", - "fields": { - "name": "Hand Crossbow attack", - "parent": "srd_wererat_hand-crossbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 30, - "long_range_ft": 120, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_wererat_shortsword_shortsword-attack", - "fields": { - "name": "Shortsword attack", - "parent": "srd_wererat_shortsword", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_weretiger_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_weretiger_bite", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_weretiger_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_weretiger_claw", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_weretiger_longbow_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "srd_weretiger_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_weretiger_scimitar_scimitar-attack", - "fields": { - "name": "Scimitar attack", - "parent": "srd_weretiger_scimitar", - "attack_type": "WEAPON", - "to_hit_mod": 5, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_werewolf_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_werewolf_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_werewolf_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_werewolf_claws", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D4", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_werewolf_spear_spear-attack", - "fields": { - "name": "Spear attack", - "parent": "srd_werewolf_spear", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": 20, - "long_range_ft": 60, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_werewolf_spear_spear-attack-if-used-with-two-hands", - "fields": { - "name": "Spear attack (if used with two hands)", - "parent": "srd_werewolf_spear", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_white-dragon-wyrmling_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_white-dragon-wyrmling_bite", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D4", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_wight_life-drain_life-drain-attack", - "fields": { - "name": "Life Drain attack", - "parent": "srd_wight_life-drain", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 2, - "damage_type": "necrotic", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "necrotic" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_wight_longbow_longbow-attack", - "fields": { - "name": "Longbow attack", - "parent": "srd_wight_longbow", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": null, - "range_ft": 150, - "long_range_ft": 600, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_wight_longsword_longsword-attack", - "fields": { - "name": "Longsword attack", - "parent": "srd_wight_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D8", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_wight_longsword_longsword-attack-if-used-with-two-hands", - "fields": { - "name": "Longsword attack (if used with two hands)", - "parent": "srd_wight_longsword", - "attack_type": "WEAPON", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D10", - "damage_bonus": 2, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_will-o-wisp_shock_shock-attack", - "fields": { - "name": "Shock attack", - "parent": "srd_will-o-wisp_shock", - "attack_type": "SPELL", - "to_hit_mod": 4, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 0, - "damage_type": "lightning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "lightning" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_wraith_life-drain_life-drain-attack", - "fields": { - "name": "Life Drain attack", - "parent": "srd_wraith_life-drain", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 4, - "damage_die_type": "D8", - "damage_bonus": 3, - "damage_type": "necrotic", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "necrotic" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_wyvern_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_wyvern_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_wyvern_claws_claws-attack", - "fields": { - "name": "Claws attack", - "parent": "srd_wyvern_claws", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D8", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_wyvern_stinger_stinger-attack", - "fields": { - "name": "Stinger attack", - "parent": "srd_wyvern_stinger", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": true, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_xorn_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_xorn_bite", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 3, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_xorn_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_xorn_claw", - "attack_type": "WEAPON", - "to_hit_mod": 6, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 3, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-black-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_young-black-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-black-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_young-black-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-blue-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_young-blue-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D10", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-blue-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_young-blue-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 9, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-brass-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_young-brass-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-brass-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_young-brass-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-bronze-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_young-bronze-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 5, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-bronze-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_young-bronze-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 8, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 5, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-copper-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_young-copper-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-copper-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_young-copper-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-gold-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_young-gold-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-gold-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_young-gold-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-green-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_young-green-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 2, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-green-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_young-green-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-red-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_young-red-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D6", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-red-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_young-red-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-silver-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_young-silver-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 6, - "damage_type": "piercing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-silver-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_young-silver-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 10, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 6, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-white-dragon_bite_bite-attack", - "fields": { - "name": "Bite attack", - "parent": "srd_young-white-dragon_bite", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 10, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D10", - "damage_bonus": 4, - "damage_type": "piercing", - "extra_damage_die_count": 1, - "extra_damage_die_type": "D8", - "extra_damage_bonus": 0, - "extra_damage_type": "piercing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_young-white-dragon_claw_claw-attack", - "fields": { - "name": "Claw attack", - "parent": "srd_young-white-dragon_claw", - "attack_type": "WEAPON", - "to_hit_mod": 7, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 2, - "damage_die_type": "D6", - "damage_bonus": 4, - "damage_type": "slashing", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "slashing" - } - }, - { - "model": "api_v2.creatureactionattack", - "pk": "srd_zombie_slam_slam-attack", - "fields": { - "name": "Slam attack", - "parent": "srd_zombie_slam", - "attack_type": "WEAPON", - "to_hit_mod": 3, - "reach_ft": 5, - "range_ft": null, - "long_range_ft": null, - "target_creature_only": false, - "damage_die_count": 1, - "damage_die_type": "D6", - "damage_bonus": 1, - "damage_type": "bludgeoning", - "extra_damage_die_count": null, - "extra_damage_die_type": null, - "extra_damage_bonus": null, - "extra_damage_type": "bludgeoning" - } - } -] \ No newline at end of file +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_aboleth_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_aboleth_tail", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_aboleth_tentacle_tentacle-attack", + "fields": { + "name": "Tentacle attack", + "parent": "srd_aboleth_tentacle", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-black-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-black-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-black-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-black-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-black-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-black-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-blue-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-blue-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 7, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D10", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-blue-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-blue-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 7, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-blue-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-blue-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 7, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-brass-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-brass-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-brass-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-brass-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-brass-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-brass-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-bronze-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-bronze-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 7, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-bronze-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-bronze-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 7, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-bronze-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-bronze-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 7, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-copper-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-copper-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-copper-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-copper-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-copper-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-copper-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-gold-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-gold-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-gold-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-gold-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-gold-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-gold-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-green-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-green-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-green-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-green-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-green-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-green-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-red-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-red-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-red-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-red-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-red-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-red-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-silver-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-silver-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-silver-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-silver-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-silver-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-silver-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-white-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_adult-white-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-white-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_adult-white-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_adult-white-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_adult-white-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_air-elemental_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_air-elemental_slam", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-black-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-black-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-black-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-black-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-black-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-black-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-blue-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-blue-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 16, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 9, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D10", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-blue-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-blue-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 16, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 9, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-blue-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-blue-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 16, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 9, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-brass-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-brass-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-brass-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-brass-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-brass-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-brass-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-bronze-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-bronze-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 16, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 9, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-bronze-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-bronze-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 16, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 9, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-bronze-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-bronze-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 16, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 9, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-copper-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-copper-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-copper-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-copper-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-copper-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-copper-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-gold-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-gold-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 10, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-gold-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-gold-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 10, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-gold-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-gold-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 10, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-green-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-green-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-green-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-green-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-green-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-green-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-red-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-red-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 10, + "damage_type": "piercing", + "extra_damage_die_count": 4, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-red-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-red-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 10, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-red-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-red-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 10, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-silver-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-silver-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 10, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-silver-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-silver-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 10, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-silver-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-silver-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 10, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-white-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ancient-white-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-white-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_ancient-white-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ancient-white-dragon_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ancient-white-dragon_tail", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_androsphinx_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_androsphinx_claw", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_animated-armor_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_animated-armor_slam", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ankheg_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ankheg_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_azer_warhammer_warhammer-attack", + "fields": { + "name": "Warhammer attack", + "parent": "srd_azer_warhammer", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_azer_warhammer_warhammer-attack-if-used-with-two-hands", + "fields": { + "name": "Warhammer attack (if used with two hands)", + "parent": "srd_azer_warhammer", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_balor_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_balor_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_balor_whip_whip-attack", + "fields": { + "name": "Whip attack", + "parent": "srd_balor_whip", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 30, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_barbed-devil_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_barbed-devil_claw", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_barbed-devil_hurl-flame_hurl-flame-attack", + "fields": { + "name": "Hurl Flame attack", + "parent": "srd_barbed-devil_hurl-flame", + "attack_type": "SPELL", + "to_hit_mod": 5, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "fire", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "fire" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_barbed-devil_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_barbed-devil_tail", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_basilisk_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_basilisk_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_bearded-devil_beard_beard-attack", + "fields": { + "name": "Beard attack", + "parent": "srd_bearded-devil_beard", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_bearded-devil_glaive_glaive-attack", + "fields": { + "name": "Glaive attack", + "parent": "srd_bearded-devil_glaive", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_behir_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_behir_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_behir_constrict_constrict-attack", + "fields": { + "name": "Constrict attack", + "parent": "srd_behir_constrict", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D10", + "extra_damage_bonus": 6, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_black-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_black-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D4", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_black-pudding_pseudopod_pseudopod-attack", + "fields": { + "name": "Pseudopod attack", + "parent": "srd_black-pudding_pseudopod", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": 4, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_blue-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_blue-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_bone-devil_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_bone-devil_claw", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_bone-devil_sting_sting-attack", + "fields": { + "name": "Sting attack", + "parent": "srd_bone-devil_sting", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 5, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_brass-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_brass-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_bronze-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_bronze-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_bugbear_javelin_javelin-attack-at-range", + "fields": { + "name": "Javelin attack (at range)", + "parent": "srd_bugbear_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_bugbear_javelin_javelin-attack-in-melee", + "fields": { + "name": "Javelin attack (in melee)", + "parent": "srd_bugbear_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_bugbear_morningstar_morningstar-attack", + "fields": { + "name": "Morningstar attack", + "parent": "srd_bugbear_morningstar", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_bulette_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_bulette_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D12", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_centaur_hooves_hooves-attack", + "fields": { + "name": "Hooves attack", + "parent": "srd_centaur_hooves", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_centaur_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_centaur_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_centaur_pike_pike-attack", + "fields": { + "name": "Pike attack", + "parent": "srd_centaur_pike", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_chain-devil_chain_chain-attack", + "fields": { + "name": "Chain attack", + "parent": "srd_chain-devil_chain", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_chimera_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_chimera_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_chimera_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_chimera_claws", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_chimera_horns_horns-attack", + "fields": { + "name": "Horns attack", + "parent": "srd_chimera_horns", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D12", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_chuul_pincer_pincer-attack", + "fields": { + "name": "Pincer attack", + "parent": "srd_chuul_pincer", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_clay-golem_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_clay-golem_slam", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_cloaker_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_cloaker_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_cloaker_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_cloaker_tail", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_cloud-giant_morningstar_morningstar-attack", + "fields": { + "name": "Morningstar attack", + "parent": "srd_cloud-giant_morningstar", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_cloud-giant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_cloud-giant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 240, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_cockatrice_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_cockatrice_bite", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_copper-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_copper-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_couatl_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_couatl_bite", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_couatl_constrict_constrict-attack", + "fields": { + "name": "Constrict attack", + "parent": "srd_couatl_constrict", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_darkmantle_crush_crush-attack", + "fields": { + "name": "Crush attack", + "parent": "srd_darkmantle_crush", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_deva_mace_mace-attack", + "fields": { + "name": "Mace attack", + "parent": "srd_deva_mace", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": 4, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_djinni_scimitar_scimitar-attack-lightning-damage", + "fields": { + "name": "Scimitar attack (lightning damage)", + "parent": "srd_djinni_scimitar", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_djinni_scimitar_scimitar-attack-thunder-damage", + "fields": { + "name": "Scimitar attack (thunder damage)", + "parent": "srd_djinni_scimitar", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_doppelganger_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_doppelganger_slam", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_dragon-turtle_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_dragon-turtle_bite", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D12", + "damage_bonus": 7, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_dragon-turtle_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_dragon-turtle_claw", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 7, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_dragon-turtle_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_dragon-turtle_tail", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D12", + "damage_bonus": 7, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_dretch_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_dretch_bite", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_dretch_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_dretch_claws", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 0, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_drider_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_drider_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_drider_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_drider_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_drider_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_drider_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_drider_longsword_longsword-attack-if-used-with-two-hands", + "fields": { + "name": "Longsword attack (if used with two hands)", + "parent": "srd_drider_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_dryad_club_club-attack", + "fields": { + "name": "Club attack", + "parent": "srd_dryad_club", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 0, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_dryad_club_club-attack-with-shillelagh", + "fields": { + "name": "Club attack (with shillelagh)", + "parent": "srd_dryad_club", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_duergar_javelin_javelin-attack", + "fields": { + "name": "Javelin attack", + "parent": "srd_duergar_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_duergar_javelin_javelin-attack-while-enlarged", + "fields": { + "name": "Javelin attack (while enlarged)", + "parent": "srd_duergar_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_duergar_war-pick_war-pick-attack", + "fields": { + "name": "War Pick attack", + "parent": "srd_duergar_war-pick", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_duergar_war-pick_war-pick-attack-while-enlarged", + "fields": { + "name": "War Pick attack (while enlarged)", + "parent": "srd_duergar_war-pick", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_dust-mephit_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_dust-mephit_claws", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_earth-elemental_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_earth-elemental_slam", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_efreeti_hurl-flame_hurl-flame-attack", + "fields": { + "name": "Hurl Flame attack", + "parent": "srd_efreeti_hurl-flame", + "attack_type": "SPELL", + "to_hit_mod": 7, + "reach_ft": null, + "range_ft": 120, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 5, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "fire", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "fire" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_efreeti_scimitar_scimitar-attack", + "fields": { + "name": "Scimitar attack", + "parent": "srd_efreeti_scimitar", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_elf-drow_hand-crossbow_hand-crossbow-attack", + "fields": { + "name": "Hand Crossbow attack", + "parent": "srd_elf-drow_hand-crossbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_elf-drow_shortsword_shortsword-attack", + "fields": { + "name": "Shortsword attack", + "parent": "srd_elf-drow_shortsword", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_erinyes_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_erinyes_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_erinyes_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_erinyes_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_erinyes_longsword_longsword-attack-if-used-with-two-hands", + "fields": { + "name": "Longsword attack (if used with two hands)", + "parent": "srd_erinyes_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ettercap_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ettercap_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ettercap_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_ettercap_claws", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ettercap_web_web-attack", + "fields": { + "name": "Web attack", + "parent": "srd_ettercap_web", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 30, + "long_range_ft": 60, + "target_creature_only": true, + "damage_die_count": null, + "damage_die_type": null, + "damage_bonus": null, + "damage_type": null, + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": null + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ettin_battleaxe_battleaxe-attack", + "fields": { + "name": "Battleaxe attack", + "parent": "srd_ettin_battleaxe", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ettin_morningstar_morningstar-attack", + "fields": { + "name": "Morningstar attack", + "parent": "srd_ettin_morningstar", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_fire-elemental_touch_touch-attack", + "fields": { + "name": "Touch attack", + "parent": "srd_fire-elemental_touch", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "fire", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "fire" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_fire-giant_greatsword_greatsword-attack", + "fields": { + "name": "Greatsword attack", + "parent": "srd_fire-giant_greatsword", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 6, + "damage_die_type": "D6", + "damage_bonus": 7, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_fire-giant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_fire-giant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 240, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D10", + "damage_bonus": 7, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_flesh-golem_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_flesh-golem_slam", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_flying-sword_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_flying-sword_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_frost-giant_greataxe_greataxe-attack", + "fields": { + "name": "Greataxe attack", + "parent": "srd_frost-giant_greataxe", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D12", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_frost-giant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_frost-giant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 240, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gargoyle_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_gargoyle_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gargoyle_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_gargoyle_claws", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gelatinous-cube_pseudopod_pseudopod-attack", + "fields": { + "name": "Pseudopod attack", + "parent": "srd_gelatinous-cube_pseudopod", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "acid", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "acid" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ghast_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ghast_bite", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ghast_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_ghast_claws", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ghost_withering-touch_withering-touch-attack", + "fields": { + "name": "Withering Touch attack", + "parent": "srd_ghost_withering-touch", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "necrotic", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "necrotic" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ghoul_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ghoul_bite", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ghoul_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_ghoul_claws", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gibbering-mouther_bites_bites-attack", + "fields": { + "name": "Bites attack", + "parent": "srd_gibbering-mouther_bites", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 5, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_glabrezu_fist_fist-attack", + "fields": { + "name": "Fist attack", + "parent": "srd_glabrezu_fist", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_glabrezu_pincer_pincer-attack", + "fields": { + "name": "Pincer attack", + "parent": "srd_glabrezu_pincer", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gnoll_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_gnoll_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gnoll_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_gnoll_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gnoll_spear_spear-attack", + "fields": { + "name": "Spear attack", + "parent": "srd_gnoll_spear", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": 20, + "long_range_ft": 60, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gnoll_spear_spear-attack-if-used-with-two-hands", + "fields": { + "name": "Spear attack (if used with two hands)", + "parent": "srd_gnoll_spear", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gnome-deep-svirfneblin_poisoned-dart_poisoned-dart-attack", + "fields": { + "name": "Poisoned Dart attack", + "parent": "srd_gnome-deep-svirfneblin_poisoned-dart", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gnome-deep-svirfneblin_war-pick_war-pick-attack", + "fields": { + "name": "War Pick attack", + "parent": "srd_gnome-deep-svirfneblin_war-pick", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_goblin_scimitar_scimitar-attack", + "fields": { + "name": "Scimitar attack", + "parent": "srd_goblin_scimitar", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_goblin_shortbow_shortbow-attack", + "fields": { + "name": "Shortbow attack", + "parent": "srd_goblin_shortbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 80, + "long_range_ft": 320, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gold-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_gold-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gorgon_gore_gore-attack", + "fields": { + "name": "Gore attack", + "parent": "srd_gorgon_gore", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D12", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gorgon_hooves_hooves-attack", + "fields": { + "name": "Hooves attack", + "parent": "srd_gorgon_hooves", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gray-ooze_pseudopod_pseudopod-attack", + "fields": { + "name": "Pseudopod attack", + "parent": "srd_gray-ooze_pseudopod", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 1, + "damage_type": "bludgeoning", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_green-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_green-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_green-hag_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_green-hag_claws", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_grick_beak_beak-attack", + "fields": { + "name": "Beak attack", + "parent": "srd_grick_beak", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_grick_tentacles_tentacles-attack", + "fields": { + "name": "Tentacles attack", + "parent": "srd_grick_tentacles", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_griffon_beak_beak-attack", + "fields": { + "name": "Beak attack", + "parent": "srd_griffon_beak", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_griffon_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_griffon_claws", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_grimlock_spiked-bone-club_spiked-bone-club-attack", + "fields": { + "name": "Spiked Bone Club attack", + "parent": "srd_grimlock_spiked-bone-club", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D4", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_guardian-naga_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_guardian-naga_bite", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_guardian-naga_spit-poison_spit-poison-attack", + "fields": { + "name": "Spit Poison attack", + "parent": "srd_guardian-naga_spit-poison", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": null, + "range_ft": 15, + "long_range_ft": 30, + "target_creature_only": true, + "damage_die_count": null, + "damage_die_type": null, + "damage_bonus": null, + "damage_type": null, + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": null + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_gynosphinx_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_gynosphinx_claw", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_half-red-dragon-veteran_heavy-crossbow_heavy-crossbow-attack", + "fields": { + "name": "Heavy Crossbow attack", + "parent": "srd_half-red-dragon-veteran_heavy-crossbow", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": null, + "range_ft": 100, + "long_range_ft": 400, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_half-red-dragon-veteran_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_half-red-dragon-veteran_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_half-red-dragon-veteran_longsword_longsword-attack-if-used-with-two-hands", + "fields": { + "name": "Longsword attack (if used with two hands)", + "parent": "srd_half-red-dragon-veteran_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_half-red-dragon-veteran_shortsword_shortsword-attack", + "fields": { + "name": "Shortsword attack", + "parent": "srd_half-red-dragon-veteran_shortsword", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_harpy_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_harpy_claws", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_harpy_club_club-attack", + "fields": { + "name": "Club attack", + "parent": "srd_harpy_club", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_hell-hound_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_hell-hound_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_hezrou_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_hezrou_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_hezrou_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_hezrou_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_hill-giant_greatclub_greatclub-attack", + "fields": { + "name": "Greatclub attack", + "parent": "srd_hill-giant_greatclub", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_hill-giant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_hill-giant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 240, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_hippogriff_beak_beak-attack", + "fields": { + "name": "Beak attack", + "parent": "srd_hippogriff_beak", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_hippogriff_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_hippogriff_claws", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_hobgoblin_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_hobgoblin_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_hobgoblin_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_hobgoblin_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_hobgoblin_longsword_longsword-attack-if-used-with-two-hands", + "fields": { + "name": "Longsword attack (if used with two hands)", + "parent": "srd_hobgoblin_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_homunculus_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_homunculus_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 0, + "damage_die_type": null, + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_horned-devil_fork_fork-attack", + "fields": { + "name": "Fork attack", + "parent": "srd_horned-devil_fork", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_horned-devil_hurl-flame_hurl-flame-attack", + "fields": { + "name": "Hurl Flame attack", + "parent": "srd_horned-devil_hurl-flame", + "attack_type": "SPELL", + "to_hit_mod": 7, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "fire", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "fire" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_horned-devil_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_horned-devil_tail", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_hydra_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_hydra_bite", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ice-devil_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_ice-devil_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ice-devil_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_ice-devil_claws", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ice-devil_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_ice-devil_tail", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "bludgeoning", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ice-mephit_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_ice-mephit_claws", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D4", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_imp_sting-bite-in-beast-form_stingbite-attack", + "fields": { + "name": "Sting/Bite attack", + "parent": "srd_imp_sting-bite-in-beast-form", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_invisible-stalker_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_invisible-stalker_slam", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_iron-golem_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_iron-golem_slam", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 7, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_iron-golem_sword_sword-attack", + "fields": { + "name": "Sword attack", + "parent": "srd_iron-golem_sword", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D10", + "damage_bonus": 7, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_kobold_dagger_dagger-attack", + "fields": { + "name": "Dagger attack", + "parent": "srd_kobold_dagger", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_kobold_sling_sling-attack", + "fields": { + "name": "Sling attack", + "parent": "srd_kobold_sling", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_kraken_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_kraken_bite", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 10, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_kraken_tentacle_tentacle-attack", + "fields": { + "name": "Tentacle attack", + "parent": "srd_kraken_tentacle", + "attack_type": "WEAPON", + "to_hit_mod": 17, + "reach_ft": 30, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 10, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_lamia_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_lamia_claws", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_lamia_dagger_dagger-attack", + "fields": { + "name": "Dagger attack", + "parent": "srd_lamia_dagger", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_lamia_intoxicating-touch_intoxicating-touch-attack", + "fields": { + "name": "Intoxicating Touch attack", + "parent": "srd_lamia_intoxicating-touch", + "attack_type": "SPELL", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": null, + "damage_die_type": null, + "damage_bonus": null, + "damage_type": null, + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": null + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_lemure_fist_fist-attack", + "fields": { + "name": "Fist attack", + "parent": "srd_lemure_fist", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 0, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_lich_paralyzing-touch_paralyzing-touch-attack", + "fields": { + "name": "Paralyzing Touch attack", + "parent": "srd_lich_paralyzing-touch", + "attack_type": "SPELL", + "to_hit_mod": 12, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "cold", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "cold" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_lizardfolk_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_lizardfolk_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_lizardfolk_heavy-club_heavy-club-attack", + "fields": { + "name": "Heavy Club attack", + "parent": "srd_lizardfolk_heavy-club", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_lizardfolk_javelin_javelin-attack", + "fields": { + "name": "Javelin attack", + "parent": "srd_lizardfolk_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_lizardfolk_spiked-shield_spiked-shield-attack", + "fields": { + "name": "Spiked Shield attack", + "parent": "srd_lizardfolk_spiked-shield", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_magma-mephit_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_magma-mephit_claws", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D4", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_magmin_touch_touch-attack", + "fields": { + "name": "Touch attack", + "parent": "srd_magmin_touch", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "fire", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "fire" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_manticore_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_manticore_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_manticore_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_manticore_claw", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_manticore_tail-spike_tail-spike-attack", + "fields": { + "name": "Tail Spike attack", + "parent": "srd_manticore_tail-spike", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": null, + "range_ft": 100, + "long_range_ft": 200, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_marilith_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_marilith_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_marilith_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_marilith_tail", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_medusa_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_medusa_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_medusa_shortsword_shortsword-attack", + "fields": { + "name": "Shortsword attack", + "parent": "srd_medusa_shortsword", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_medusa_snake-hair_snake-hair-attack", + "fields": { + "name": "Snake Hair attack", + "parent": "srd_medusa_snake-hair", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": 4, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_merfolk_spear_spear-attack", + "fields": { + "name": "Spear attack", + "parent": "srd_merfolk_spear", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": 20, + "long_range_ft": 60, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_merfolk_spear_spear-attack-if-used-with-two-hands", + "fields": { + "name": "Spear attack (if used with two hands)", + "parent": "srd_merfolk_spear", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_merrow_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_merrow_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_merrow_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_merrow_claws", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_merrow_harpoon_harpoon-attack", + "fields": { + "name": "Harpoon attack", + "parent": "srd_merrow_harpoon", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": 20, + "long_range_ft": 60, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_mimic_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_mimic_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_mimic_pseudopod_pseudopod-attack", + "fields": { + "name": "Pseudopod attack", + "parent": "srd_mimic_pseudopod", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_minotaur-skeleton_gore_gore-attack", + "fields": { + "name": "Gore attack", + "parent": "srd_minotaur-skeleton_gore", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_minotaur-skeleton_greataxe_greataxe-attack", + "fields": { + "name": "Greataxe attack", + "parent": "srd_minotaur-skeleton_greataxe", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D12", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_minotaur_gore_gore-attack", + "fields": { + "name": "Gore attack", + "parent": "srd_minotaur_gore", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_minotaur_greataxe_greataxe-attack", + "fields": { + "name": "Greataxe attack", + "parent": "srd_minotaur_greataxe", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D12", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_mummy-lord_rotting-fist_rotting-fist-attack", + "fields": { + "name": "Rotting Fist attack", + "parent": "srd_mummy-lord_rotting-fist", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": 6, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_mummy_rotting-fist_rotting-fist-attack", + "fields": { + "name": "Rotting Fist attack", + "parent": "srd_mummy_rotting-fist", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_nalfeshnee_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_nalfeshnee_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 5, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_nalfeshnee_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_nalfeshnee_claw", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_night-hag_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_night-hag_claws", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_nightmare_hooves_hooves-attack", + "fields": { + "name": "Hooves attack", + "parent": "srd_nightmare_hooves", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ochre-jelly_pseudopod_pseudopod-attack", + "fields": { + "name": "Pseudopod attack", + "parent": "srd_ochre-jelly_pseudopod", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "bludgeoning", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ogre-zombie_morningstar_morningstar-attack", + "fields": { + "name": "Morningstar attack", + "parent": "srd_ogre-zombie_morningstar", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ogre_greatclub_greatclub-attack", + "fields": { + "name": "Greatclub attack", + "parent": "srd_ogre_greatclub", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_ogre_javelin_javelin-attack", + "fields": { + "name": "Javelin attack", + "parent": "srd_ogre_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_oni_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_oni_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_oni_glaive_glaive-attack", + "fields": { + "name": "Glaive attack", + "parent": "srd_oni_glaive", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_oni_glaive_glaive-attack-in-small-or-medium-form", + "fields": { + "name": "Glaive attack (in Small or Medium form)", + "parent": "srd_oni_glaive", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_orc_greataxe_greataxe-attack", + "fields": { + "name": "Greataxe attack", + "parent": "srd_orc_greataxe", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D12", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_orc_javelin_javelin-attack", + "fields": { + "name": "Javelin attack", + "parent": "srd_orc_javelin", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_otyugh_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_otyugh_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_otyugh_tentacle_tentacle-attack", + "fields": { + "name": "Tentacle attack", + "parent": "srd_otyugh_tentacle", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_owlbear_beak_beak-attack", + "fields": { + "name": "Beak attack", + "parent": "srd_owlbear_beak", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_owlbear_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_owlbear_claws", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_pegasus_hooves_hooves-attack", + "fields": { + "name": "Hooves attack", + "parent": "srd_pegasus_hooves", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_pit-fiend_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_pit-fiend_bite", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_pit-fiend_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_pit-fiend_claw", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_pit-fiend_mace_mace-attack", + "fields": { + "name": "Mace attack", + "parent": "srd_pit-fiend_mace", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": 6, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_pit-fiend_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_pit-fiend_tail", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D10", + "damage_bonus": 8, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_planetar_greatsword_greatsword-attack", + "fields": { + "name": "Greatsword attack", + "parent": "srd_planetar_greatsword", + "attack_type": "WEAPON", + "to_hit_mod": 12, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 7, + "damage_type": "slashing", + "extra_damage_die_count": 5, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_plesiosaurus_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_plesiosaurus_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_pseudodragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_pseudodragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_pseudodragon_sting_sting-attack", + "fields": { + "name": "Sting attack", + "parent": "srd_pseudodragon_sting", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_purple-worm_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_purple-worm_bite", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 9, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_purple-worm_tail-stinger_tail-stinger-attack", + "fields": { + "name": "Tail Stinger attack", + "parent": "srd_purple-worm_tail-stinger", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 9, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_quasit_claws-bite-in-beast-form_clawsbite-attack", + "fields": { + "name": "Claws/Bite attack", + "parent": "srd_quasit_claws-bite-in-beast-form", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_rakshasa_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_rakshasa_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_red-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_red-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_remorhaz_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_remorhaz_bite", + "attack_type": "WEAPON", + "to_hit_mod": 11, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 6, + "damage_die_type": "D10", + "damage_bonus": 7, + "damage_type": "piercing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_roc_beak_beak-attack", + "fields": { + "name": "Beak attack", + "parent": "srd_roc_beak", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D8", + "damage_bonus": 9, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_roc_talons_talons-attack", + "fields": { + "name": "Talons attack", + "parent": "srd_roc_talons", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 9, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_roper_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_roper_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_roper_tendril_tendril-attack", + "fields": { + "name": "Tendril attack", + "parent": "srd_roper_tendril", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 50, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": null, + "damage_die_type": null, + "damage_bonus": null, + "damage_type": null, + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": null + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_rug-of-smothering_smother_smother-attack", + "fields": { + "name": "Smother attack", + "parent": "srd_rug-of-smothering_smother", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": null, + "damage_die_type": null, + "damage_bonus": null, + "damage_type": null, + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": null + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_rust-monster_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_rust-monster_bite", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_sahuagin_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_sahuagin_bite", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_sahuagin_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_sahuagin_claws", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_sahuagin_spear_spear-attack", + "fields": { + "name": "Spear attack", + "parent": "srd_sahuagin_spear", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": 20, + "long_range_ft": 60, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_sahuagin_spear_spear-attack-if-used-with-two-hands", + "fields": { + "name": "Spear attack (if used with two hands)", + "parent": "srd_sahuagin_spear", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 1, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_salamander_spear_spear-attack", + "fields": { + "name": "Spear attack", + "parent": "srd_salamander_spear", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": 20, + "long_range_ft": 60, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_salamander_spear_spear-attack-if-used-with-two-hands", + "fields": { + "name": "Spear attack (if used with two hands)", + "parent": "srd_salamander_spear", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_salamander_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_salamander_tail", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_satyr_ram_ram-attack", + "fields": { + "name": "Ram attack", + "parent": "srd_satyr_ram", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 1, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_satyr_shortbow_shortbow-attack", + "fields": { + "name": "Shortbow attack", + "parent": "srd_satyr_shortbow", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": null, + "range_ft": 80, + "long_range_ft": 320, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_satyr_shortsword_shortsword-attack", + "fields": { + "name": "Shortsword attack", + "parent": "srd_satyr_shortsword", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_sea-hag_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_sea-hag_claws", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_shadow_strength-drain_strength-drain-attack", + "fields": { + "name": "Strength Drain attack", + "parent": "srd_shadow_strength-drain", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "necrotic", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "necrotic" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_shambling-mound_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_shambling-mound_slam", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_shield-guardian_fist_fist-attack", + "fields": { + "name": "Fist attack", + "parent": "srd_shield-guardian_fist", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_silver-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_silver-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_skeleton_shortbow_shortbow-attack", + "fields": { + "name": "Shortbow attack", + "parent": "srd_skeleton_shortbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 80, + "long_range_ft": 320, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_skeleton_shortsword_shortsword-attack", + "fields": { + "name": "Shortsword attack", + "parent": "srd_skeleton_shortsword", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_solar_greatsword_greatsword-attack", + "fields": { + "name": "Greatsword attack", + "parent": "srd_solar_greatsword", + "attack_type": "WEAPON", + "to_hit_mod": 15, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 8, + "damage_type": "slashing", + "extra_damage_die_count": 6, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_solar_slaying-longbow_slaying-longbow-attack", + "fields": { + "name": "Slaying Longbow attack", + "parent": "srd_solar_slaying-longbow", + "attack_type": "WEAPON", + "to_hit_mod": 13, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": 6, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_specter_life-drain_life-drain-attack", + "fields": { + "name": "Life Drain attack", + "parent": "srd_specter_life-drain", + "attack_type": "SPELL", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 0, + "damage_type": "necrotic", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "necrotic" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_spirit-naga_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_spirit-naga_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_sprite_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_sprite_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 0, + "damage_die_type": null, + "damage_bonus": 0, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_sprite_shortbow_shortbow-attack", + "fields": { + "name": "Shortbow attack", + "parent": "srd_sprite_shortbow", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": null, + "range_ft": 40, + "long_range_ft": 160, + "target_creature_only": false, + "damage_die_count": 0, + "damage_die_type": null, + "damage_bonus": 0, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_steam-mephit_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_steam-mephit_claws", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 0, + "damage_type": "slashing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D4", + "extra_damage_bonus": 0, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_stirge_blood-drain_blood-drain-attack", + "fields": { + "name": "Blood Drain attack", + "parent": "srd_stirge_blood-drain", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_stone-giant_greatclub_greatclub-attack", + "fields": { + "name": "Greatclub attack", + "parent": "srd_stone-giant_greatclub", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_stone-giant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_stone-giant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 240, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_stone-golem_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_stone-golem_slam", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_storm-giant_greatsword_greatsword-attack", + "fields": { + "name": "Greatsword attack", + "parent": "srd_storm-giant_greatsword", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 6, + "damage_die_type": "D6", + "damage_bonus": 9, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_storm-giant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_storm-giant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 14, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 240, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D12", + "damage_bonus": 9, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_succubusincubus_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_succubusincubus_claw", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_tarrasque_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_tarrasque_bite", + "attack_type": "WEAPON", + "to_hit_mod": 19, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D12", + "damage_bonus": 10, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_tarrasque_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_tarrasque_claw", + "attack_type": "WEAPON", + "to_hit_mod": 19, + "reach_ft": 15, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D8", + "damage_bonus": 10, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_tarrasque_horns_horns-attack", + "fields": { + "name": "Horns attack", + "parent": "srd_tarrasque_horns", + "attack_type": "WEAPON", + "to_hit_mod": 19, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D10", + "damage_bonus": 10, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_tarrasque_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_tarrasque_tail", + "attack_type": "WEAPON", + "to_hit_mod": 19, + "reach_ft": 20, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D6", + "damage_bonus": 10, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_treant_rock_rock-attack", + "fields": { + "name": "Rock attack", + "parent": "srd_treant_rock", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": null, + "range_ft": 60, + "long_range_ft": 180, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_treant_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_treant_slam", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_triceratops_gore_gore-attack", + "fields": { + "name": "Gore attack", + "parent": "srd_triceratops_gore", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D8", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_triceratops_stomp_stomp-attack", + "fields": { + "name": "Stomp attack", + "parent": "srd_triceratops_stomp", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 3, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_troll_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_troll_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_troll_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_troll_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_tyrannosaurus-rex_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_tyrannosaurus-rex_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 4, + "damage_die_type": "D12", + "damage_bonus": 7, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_tyrannosaurus-rex_tail_tail-attack", + "fields": { + "name": "Tail attack", + "parent": "srd_tyrannosaurus-rex_tail", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D8", + "damage_bonus": 7, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_unicorn_hooves_hooves-attack", + "fields": { + "name": "Hooves attack", + "parent": "srd_unicorn_hooves", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_unicorn_horn_horn-attack", + "fields": { + "name": "Horn attack", + "parent": "srd_unicorn_horn", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_vampire-spawn_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_vampire-spawn_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_vampire-spawn_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_vampire-spawn_claws", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_vampire_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_vampire_bite", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 3, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_vampire_unarmed-strike_unarmed-strike-attack", + "fields": { + "name": "Unarmed Strike attack", + "parent": "srd_vampire_unarmed-strike", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_violet-fungus_rotting-touch_rotting-touch-attack", + "fields": { + "name": "Rotting Touch attack", + "parent": "srd_violet-fungus_rotting-touch", + "attack_type": "WEAPON", + "to_hit_mod": 2, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 0, + "damage_type": "necrotic", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "necrotic" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_vrock_beak_beak-attack", + "fields": { + "name": "Beak attack", + "parent": "srd_vrock_beak", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_vrock_talons_talons-attack", + "fields": { + "name": "Talons attack", + "parent": "srd_vrock_talons", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_warhorse-skeleton_hooves_hooves-attack", + "fields": { + "name": "Hooves attack", + "parent": "srd_warhorse-skeleton_hooves", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_water-elemental_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_water-elemental_slam", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_werebear_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_werebear_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_werebear_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_werebear_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_werebear_greataxe_greataxe-attack", + "fields": { + "name": "Greataxe attack", + "parent": "srd_werebear_greataxe", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D12", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_wereboar_maul_maul-attack", + "fields": { + "name": "Maul attack", + "parent": "srd_wereboar_maul", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_wereboar_tusks_tusks-attack", + "fields": { + "name": "Tusks attack", + "parent": "srd_wereboar_tusks", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_wererat_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_wererat_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_wererat_hand-crossbow_hand-crossbow-attack", + "fields": { + "name": "Hand Crossbow attack", + "parent": "srd_wererat_hand-crossbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 30, + "long_range_ft": 120, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_wererat_shortsword_shortsword-attack", + "fields": { + "name": "Shortsword attack", + "parent": "srd_wererat_shortsword", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_weretiger_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_weretiger_bite", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_weretiger_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_weretiger_claw", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_weretiger_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_weretiger_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_weretiger_scimitar_scimitar-attack", + "fields": { + "name": "Scimitar attack", + "parent": "srd_weretiger_scimitar", + "attack_type": "WEAPON", + "to_hit_mod": 5, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_werewolf_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_werewolf_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_werewolf_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_werewolf_claws", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D4", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_werewolf_spear_spear-attack", + "fields": { + "name": "Spear attack", + "parent": "srd_werewolf_spear", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": 20, + "long_range_ft": 60, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_werewolf_spear_spear-attack-if-used-with-two-hands", + "fields": { + "name": "Spear attack (if used with two hands)", + "parent": "srd_werewolf_spear", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_white-dragon-wyrmling_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_white-dragon-wyrmling_bite", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D4", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_wight_life-drain_life-drain-attack", + "fields": { + "name": "Life Drain attack", + "parent": "srd_wight_life-drain", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 2, + "damage_type": "necrotic", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "necrotic" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_wight_longbow_longbow-attack", + "fields": { + "name": "Longbow attack", + "parent": "srd_wight_longbow", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": null, + "range_ft": 150, + "long_range_ft": 600, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_wight_longsword_longsword-attack", + "fields": { + "name": "Longsword attack", + "parent": "srd_wight_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D8", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_wight_longsword_longsword-attack-if-used-with-two-hands", + "fields": { + "name": "Longsword attack (if used with two hands)", + "parent": "srd_wight_longsword", + "attack_type": "WEAPON", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D10", + "damage_bonus": 2, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_will-o-wisp_shock_shock-attack", + "fields": { + "name": "Shock attack", + "parent": "srd_will-o-wisp_shock", + "attack_type": "SPELL", + "to_hit_mod": 4, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 0, + "damage_type": "lightning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "lightning" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_wraith_life-drain_life-drain-attack", + "fields": { + "name": "Life Drain attack", + "parent": "srd_wraith_life-drain", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 4, + "damage_die_type": "D8", + "damage_bonus": 3, + "damage_type": "necrotic", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "necrotic" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_wyvern_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_wyvern_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_wyvern_claws_claws-attack", + "fields": { + "name": "Claws attack", + "parent": "srd_wyvern_claws", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D8", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_wyvern_stinger_stinger-attack", + "fields": { + "name": "Stinger attack", + "parent": "srd_wyvern_stinger", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": true, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_xorn_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_xorn_bite", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 3, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_xorn_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_xorn_claw", + "attack_type": "WEAPON", + "to_hit_mod": 6, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 3, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-black-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-black-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-black-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-black-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-blue-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-blue-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D10", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-blue-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-blue-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 9, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-brass-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-brass-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-brass-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-brass-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-bronze-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-bronze-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 5, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-bronze-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-bronze-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 8, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 5, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-copper-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-copper-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-copper-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-copper-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-gold-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-gold-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-gold-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-gold-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-green-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-green-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 2, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-green-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-green-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-red-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-red-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D6", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-red-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-red-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-silver-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-silver-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 6, + "damage_type": "piercing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-silver-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-silver-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 10, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 6, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-white-dragon_bite_bite-attack", + "fields": { + "name": "Bite attack", + "parent": "srd_young-white-dragon_bite", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 10, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D10", + "damage_bonus": 4, + "damage_type": "piercing", + "extra_damage_die_count": 1, + "extra_damage_die_type": "D8", + "extra_damage_bonus": 0, + "extra_damage_type": "piercing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_young-white-dragon_claw_claw-attack", + "fields": { + "name": "Claw attack", + "parent": "srd_young-white-dragon_claw", + "attack_type": "WEAPON", + "to_hit_mod": 7, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 2, + "damage_die_type": "D6", + "damage_bonus": 4, + "damage_type": "slashing", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "slashing" + } +}, +{ + "model": "api_v2.creatureactionattack", + "pk": "srd_zombie_slam_slam-attack", + "fields": { + "name": "Slam attack", + "parent": "srd_zombie_slam", + "attack_type": "WEAPON", + "to_hit_mod": 3, + "reach_ft": 5, + "range_ft": null, + "long_range_ft": null, + "target_creature_only": false, + "damage_die_count": 1, + "damage_die_type": "D6", + "damage_bonus": 1, + "damage_type": "bludgeoning", + "extra_damage_die_count": null, + "extra_damage_die_type": null, + "extra_damage_bonus": null, + "extra_damage_type": "bludgeoning" + } +} +] From 33b2ee8bf150eb9bef1e3a5f7d18a3127706e0c2 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 11:16:32 -0500 Subject: [PATCH 77/84] removing deprecated function. --- api_v2/management/commands/export.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/api_v2/management/commands/export.py b/api_v2/management/commands/export.py index 16b2ec93..c8ad66ab 100644 --- a/api_v2/management/commands/export.py +++ b/api_v2/management/commands/export.py @@ -171,18 +171,3 @@ def write_queryset_data(filepath, queryset): output_filepath = filepath with open(output_filepath, 'w', encoding='utf-8') as f: serializers.serialize("json", queryset, indent=2, stream=f) - - -def get_model_queryset_by_document(model, doc): - print("Getting the queryset for: {}".format(model.__name__)) - - if model.__name__ in ['Trait']: - return model.objects.filter(race__document=doc).order_by('pk') - - if model.__name__ in ['BackgroundBenefit']: - return model.objects.filter(background__document=doc).order_by('pk') - - if model.__name__ in ['FeatBenefit']: - return model.objects.filter(feat__document=doc).order_by('pk') - - return model.objects.filter(document=doc).order_by('pk') \ No newline at end of file From ce8bf27cefcabb854ce5bc460856158c5a88903e Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 11:19:06 -0500 Subject: [PATCH 78/84] Fixing document stats. --- api_v2/models/document.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api_v2/models/document.py b/api_v2/models/document.py index eeab4a4b..375b4dbf 100644 --- a/api_v2/models/document.py +++ b/api_v2/models/document.py @@ -60,7 +60,7 @@ def stats(self): 'FeatBenefit', 'BackgroundBenefit', 'CreatureAction', - 'CreatureAttack', + 'CreatureActionAttack', 'SpellCastingOption', 'ItemRarity', 'SpellSchool'] From 72ab98e8f2bf4eabe6a11f9ae704422fda4c161b Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 13:06:28 -0500 Subject: [PATCH 79/84] Adding basic environment model. --- api_v2/admin.py | 4 +++- api_v2/migrations/0092_environment.py | 28 +++++++++++++++++++++++++++ api_v2/models/__init__.py | 2 ++ api_v2/models/environment.py | 24 +++++++++++++++++++++++ 4 files changed, 57 insertions(+), 1 deletion(-) create mode 100644 api_v2/migrations/0092_environment.py create mode 100644 api_v2/models/environment.py diff --git a/api_v2/admin.py b/api_v2/admin.py index 89ed7c2b..63070be9 100644 --- a/api_v2/admin.py +++ b/api_v2/admin.py @@ -90,4 +90,6 @@ class LanguageAdmin(admin.ModelAdmin): admin.site.register(ClassFeatureItem) admin.site.register(ClassFeature) -admin.site.register(CharacterClass) \ No newline at end of file +admin.site.register(CharacterClass) + +admin.site.register(Environment) \ No newline at end of file diff --git a/api_v2/migrations/0092_environment.py b/api_v2/migrations/0092_environment.py new file mode 100644 index 00000000..893f2b05 --- /dev/null +++ b/api_v2/migrations/0092_environment.py @@ -0,0 +1,28 @@ +# Generated by Django 3.2.20 on 2024-06-01 18:04 + +from django.db import migrations, models +import django.db.models.deletion + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0091_rename_creature_creatureaction_parent'), + ] + + operations = [ + migrations.CreateModel( + name='Environment', + fields=[ + ('name', models.CharField(help_text='Name of the item.', max_length=100)), + ('desc', models.TextField(help_text='Description of the game content item. Markdown.')), + ('key', models.CharField(help_text='Unique key for the Item.', max_length=100, primary_key=True, serialize=False)), + ('aquatic', models.BooleanField(default=False, help_text='Whether or not aquatic environment rules apply to this environment.')), + ('planar', models.BooleanField(default=False, help_text='Whether or not this environment is a plane of existence.')), + ('document', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='api_v2.document')), + ], + options={ + 'verbose_name_plural': 'environments', + }, + ), + ] diff --git a/api_v2/models/__init__.py b/api_v2/models/__init__.py index 77610d19..641c4a0d 100644 --- a/api_v2/models/__init__.py +++ b/api_v2/models/__init__.py @@ -51,3 +51,5 @@ from .search import SearchResult from .size import Size + +from .environment import Environment \ No newline at end of file diff --git a/api_v2/models/environment.py b/api_v2/models/environment.py new file mode 100644 index 00000000..d84fce1b --- /dev/null +++ b/api_v2/models/environment.py @@ -0,0 +1,24 @@ +"""The model for an environment.""" +from django.db import models +from .abstracts import HasName, HasDescription +from .document import FromDocument + +class Environment(HasName, HasDescription, FromDocument): + """ + This is the model for an environment. + + An environment represents the description of a type of place within + the 5e universe. + """ + aquatic = models.BooleanField( + help_text='Whether or not aquatic environment rules apply to this environment.', + default=False) + + planar = models.BooleanField( + help_text='Whether or not this environment is a plane of existence.', + default=False) + + class Meta: + """To assist with the UI layer.""" + + verbose_name_plural = "environments" From 6f650fcf5a7600209828f304a5164ca19480e690 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 13:29:18 -0500 Subject: [PATCH 80/84] Adding environment data. --- .../wizards-of-the-coast/srd/Environment.json | 178 ++++++++++++++++++ 1 file changed, 178 insertions(+) create mode 100644 data/v2/wizards-of-the-coast/srd/Environment.json diff --git a/data/v2/wizards-of-the-coast/srd/Environment.json b/data/v2/wizards-of-the-coast/srd/Environment.json new file mode 100644 index 00000000..d90d0a91 --- /dev/null +++ b/data/v2/wizards-of-the-coast/srd/Environment.json @@ -0,0 +1,178 @@ +[ +{ + "model": "api_v2.environment", + "pk": "srd_arctic", + "fields": { + "name": "Arctic", + "desc": "[None provided]", + "document": "srd", + "aquatic": false, + "planar": false + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_astral-plane", + "fields": { + "name": "Astral Plane", + "desc": "The **Astral Plane** is the realm of thought and dream, where visitors travel as disembodied souls to reach the planes of the divine and demonic. It is a great, silvery sea, the same above and below, with swirling wisps of white and gray streaking among motes of light resembling distant stars. Erratic whirlpools of color flicker in midair like spinning coins. Occasional bits of solid matter can be found here, but most of the Astral Plane is an endless, open domain.", + "document": "srd", + "aquatic": false, + "planar": true + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_coast", + "fields": { + "name": "Coast", + "desc": "[None provided]", + "document": "srd", + "aquatic": false, + "planar": false + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_desert", + "fields": { + "name": "Desert", + "desc": "[None provided]", + "document": "srd", + "aquatic": false, + "planar": false + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_elysium", + "fields": { + "name": "Elysium", + "desc": "The planes with some element of good in their nature are called the **Upper Planes**. Celestial creatures such as angels and pegasi dwell in the Upper Planes. Planes with some element of evil are the **Lower Planes**. Fiends such as demons and devils dwell in the Lower Planes. A plane’s alignment is its essence, and a character whose alignment doesn’t match the plane’s experiences a profound sense of dissonance there. When a good creature visits Elysium, for example (a neutral good Upper Plane), it feels in tune with the plane, but an evil creature feels out of tune and more than a little uncomfortable.", + "document": "srd", + "aquatic": false, + "planar": true + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_ethereal-plane", + "fields": { + "name": "Ethereal Plane", + "desc": "The **Ethereal Plane** is a misty, fog-bound dimension that is sometimes described as a great ocean. Its shores, called the Border Ethereal, overlap the Material Plane and the Inner Planes, so that every location on those planes has a corresponding location on the Ethereal Plane. Certain creatures can see into the Border Ethereal, and the _see invisibility_ and _true seeing_ spell grant that ability. Some magical effects also extend from the Material Plane into the Border Ethereal, particularly effects that use force energy such as _forcecage_ and _wall of force_. The depths of the plane, the Deep Ethereal, are a region of swirling mists and colorful fogs.", + "document": "srd", + "aquatic": false, + "planar": true + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_forest", + "fields": { + "name": "Forest", + "desc": "[None provided]", + "document": "srd", + "aquatic": false, + "planar": false + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_grassland", + "fields": { + "name": "Grassland", + "desc": "[None provided]", + "document": "srd", + "aquatic": false, + "planar": false + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_material-plane", + "fields": { + "name": "Material Plane", + "desc": "The Material Plane is the nexus where the philosophical and elemental forces that define the other planes collide in the jumbled existence of mortal life and mundane matter. All fantasy gaming worlds exist within the Material Plane, making it the starting point for most campaigns and adventures. The rest of the multiverse is defined in relation to the Material Plane.\\nThe worlds of the Material Plane are infinitely diverse, for they reflect the creative imagination of the GMs who set their games there, as well as the players whose heroes adventure there. They include magic-wasted desert planets and island-dotted water worlds, worlds where magic combines with advanced technology and others trapped in an endless Stone Age, worlds where the gods walk and places they have abandoned.", + "document": "srd", + "aquatic": false, + "planar": true + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_mountain", + "fields": { + "name": "Mountain", + "desc": "[None provided]", + "document": "srd", + "aquatic": false, + "planar": false + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_ocean", + "fields": { + "name": "Ocean", + "desc": "[None provided]", + "document": "srd", + "aquatic": true, + "planar": false + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_plane-of-air", + "fields": { + "name": "Plane of Air", + "desc": "The four **Elemental Planes** - Air, Earth, Fire, and Water - form a ring around the Material Plane, suspended within the churning **Elemental Chaos**.\r\n\r\nAt their innermost edges, where they are closest to the Material Plane (in a conceptual if not a literal geographical sense), the four Elemental Planes resemble a world in the Material Plane. The four elements mingle together as they do in the Material Plane, forming land, sea, and sky. Farther from the Material Plane, though, the Elemental Planes are both alien and hostile. Here, the elements exist in their purest form—great expanses of solid earth, blazing fire, crystal-­‐‑clear water, and unsullied air. These regions are little-­‐‑known, so when discussing the Plane of Fire, for example, a speaker usually means just the border region. At the farthest extents of the Inner Planes, the pure elements dissolve and bleed together into an unending tumult of clashing energies and colliding substance, the Elemental Chaos.", + "document": "srd", + "aquatic": false, + "planar": true + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_plane-of-earth", + "fields": { + "name": "Plane of Earth", + "desc": "The four **Elemental Planes** - Air, Earth, Fire, and Water - form a ring around the Material Plane, suspended within the churning **Elemental Chaos**.\r\n\r\nAt their innermost edges, where they are closest to the Material Plane (in a conceptual if not a literal geographical sense), the four Elemental Planes resemble a world in the Material Plane. The four elements mingle together as they do in the Material Plane, forming land, sea, and sky. Farther from the Material Plane, though, the Elemental Planes are both alien and hostile. Here, the elements exist in their purest form—great expanses of solid earth, blazing fire, crystal-­‐‑clear water, and unsullied air. These regions are little-­‐‑known, so when discussing the Plane of Fire, for example, a speaker usually means just the border region. At the farthest extents of the Inner Planes, the pure elements dissolve and bleed together into an unending tumult of clashing energies and colliding substance, the Elemental Chaos.", + "document": "srd", + "aquatic": false, + "planar": true + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_plane-of-fire", + "fields": { + "name": "Plane of Fire", + "desc": "The four **Elemental Planes** - Air, Earth, Fire, and Water - form a ring around the Material Plane, suspended within the churning **Elemental Chaos**.\r\n\r\nAt their innermost edges, where they are closest to the Material Plane (in a conceptual if not a literal geographical sense), the four Elemental Planes resemble a world in the Material Plane. The four elements mingle together as they do in the Material Plane, forming land, sea, and sky. Farther from the Material Plane, though, the Elemental Planes are both alien and hostile. Here, the elements exist in their purest form—great expanses of solid earth, blazing fire, crystal-­‐‑clear water, and unsullied air. These regions are little-­‐‑known, so when discussing the Plane of Fire, for example, a speaker usually means just the border region. At the farthest extents of the Inner Planes, the pure elements dissolve and bleed together into an unending tumult of clashing energies and colliding substance, the Elemental Chaos.", + "document": "srd", + "aquatic": false, + "planar": true + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_plane-of-water", + "fields": { + "name": "Plane of Water", + "desc": "The four **Elemental Planes** - Air, Earth, Fire, and Water - form a ring around the Material Plane, suspended within the churning **Elemental Chaos**.\r\n\r\nAt their innermost edges, where they are closest to the Material Plane (in a conceptual if not a literal geographical sense), the four Elemental Planes resemble a world in the Material Plane. The four elements mingle together as they do in the Material Plane, forming land, sea, and sky. Farther from the Material Plane, though, the Elemental Planes are both alien and hostile. Here, the elements exist in their purest form—great expanses of solid earth, blazing fire, crystal-­‐‑clear water, and unsullied air. These regions are little-­‐‑known, so when discussing the Plane of Fire, for example, a speaker usually means just the border region. At the farthest extents of the Inner Planes, the pure elements dissolve and bleed together into an unending tumult of clashing energies and colliding substance, the Elemental Chaos.", + "document": "srd", + "aquatic": true, + "planar": true + } +}, +{ + "model": "api_v2.environment", + "pk": "srd_swamp", + "fields": { + "name": "Swamp", + "desc": "[None provided]", + "document": "srd", + "aquatic": false, + "planar": false + } +} +] From 0f056f6c28b6b22decbb4259cb171316d587e675 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 13:31:40 -0500 Subject: [PATCH 81/84] Adding environment to search. --- api_v2/management/commands/buildindex.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/api_v2/management/commands/buildindex.py b/api_v2/management/commands/buildindex.py index 110f0df8..38bf7da6 100644 --- a/api_v2/management/commands/buildindex.py +++ b/api_v2/management/commands/buildindex.py @@ -55,7 +55,7 @@ def load_v1_content(self, model): def load_v2_content(self, model): results = [] - standard_v2_models = ['Item','Spell','Creature','CharacterClass','Race','Feat','Condition','Background'] + standard_v2_models = ['Item','Spell','Creature','CharacterClass','Race','Feat','Condition','Background','Environment'] if model.__name__ in standard_v2_models: for o in model.objects.all(): @@ -149,6 +149,7 @@ def handle(self, *args, **options): self.load_content(v2.Feat,"v2") self.load_content(v2.Condition,"v2") self.load_content(v2.Background,"v2") + self.load_content(v2.Environment,"v2") # Take the content table's current data and load it into the index. self.load_index() From 9b960ff5c8fdc653e469b26354afe213359a053d Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 13:37:39 -0500 Subject: [PATCH 82/84] Adding in environment support to search. --- api_v2/serializers/__init__.py | 1 + api_v2/serializers/environment.py | 14 ++++++++++++++ api_v2/serializers/search.py | 3 ++- api_v2/views/__init__.py | 1 + api_v2/views/environment.py | 18 ++++++++++++++++++ server/urls.py | 1 + 6 files changed, 37 insertions(+), 1 deletion(-) create mode 100644 api_v2/serializers/environment.py create mode 100644 api_v2/views/environment.py diff --git a/api_v2/serializers/__init__.py b/api_v2/serializers/__init__.py index 07e0b6e1..624ce68e 100644 --- a/api_v2/serializers/__init__.py +++ b/api_v2/serializers/__init__.py @@ -43,3 +43,4 @@ from .size import SizeSerializer +from .environment import EnvironmentSerializer \ No newline at end of file diff --git a/api_v2/serializers/environment.py b/api_v2/serializers/environment.py new file mode 100644 index 00000000..ff2216a3 --- /dev/null +++ b/api_v2/serializers/environment.py @@ -0,0 +1,14 @@ +"""Serializer for the Environment model.""" + +from rest_framework import serializers + +from api_v2 import models + +from .abstracts import GameContentSerializer + +class EnvironmentSerializer(GameContentSerializer): + key = serializers.ReadOnlyField() + + class Meta: + model = models.Environment + fields = '__all__' diff --git a/api_v2/serializers/search.py b/api_v2/serializers/search.py index be903348..aaef3745 100644 --- a/api_v2/serializers/search.py +++ b/api_v2/serializers/search.py @@ -85,7 +85,8 @@ def get_route(self, obj): "Feat":"feats", "Race":"races", "Plane":"planes", - "CharClass":"classes" + "CharClass":"classes", + "Environment":"environments" } diff --git a/api_v2/views/__init__.py b/api_v2/views/__init__.py index 5193c7aa..7ada394a 100644 --- a/api_v2/views/__init__.py +++ b/api_v2/views/__init__.py @@ -40,3 +40,4 @@ from .enum import get_enums +from .environment import EnvironmentViewSet \ No newline at end of file diff --git a/api_v2/views/environment.py b/api_v2/views/environment.py new file mode 100644 index 00000000..55e2b52a --- /dev/null +++ b/api_v2/views/environment.py @@ -0,0 +1,18 @@ +""" The view for an Environment. """ + +from rest_framework import viewsets + +from api_v2 import models +from api_v2 import serializers + + +class EnvironmentViewSet(viewsets.ReadOnlyModelViewSet): + """ + list: API endpoint for returning a list of environments. + retrieve: API endpoint for returning a particular environment. + """ + queryset = models.Environment.objects.all().order_by('pk') + serializer_class = serializers.EnvironmentSerializer + + + diff --git a/server/urls.py b/server/urls.py index 54931bcf..76e6eaea 100644 --- a/server/urls.py +++ b/server/urls.py @@ -75,6 +75,7 @@ router_v2.register(r'classes',views_v2.CharacterClassViewSet) router_v2.register(r'sizes',views_v2.SizeViewSet) router_v2.register(r'itemrarities',views_v2.ItemRarityViewSet) + router_v2.register(r'environments',views_v2.EnvironmentViewSet) router_search = routers.DefaultRouter() if settings.V2_SEARCH_ENABLED: From 313af5433e80f1a3861aed3bcbc4eac9476dc4a9 Mon Sep 17 00:00:00 2001 From: August Johnson Date: Sat, 1 Jun 2024 15:06:19 -0500 Subject: [PATCH 83/84] Expected count basic idea in here. --- .../0093_document_stats_expected.py | 18 ++++++++++++++ api_v2/models/document.py | 24 ++++++++++++++----- api_v2/views/document.py | 2 +- 3 files changed, 37 insertions(+), 7 deletions(-) create mode 100644 api_v2/migrations/0093_document_stats_expected.py diff --git a/api_v2/migrations/0093_document_stats_expected.py b/api_v2/migrations/0093_document_stats_expected.py new file mode 100644 index 00000000..5d46d3d4 --- /dev/null +++ b/api_v2/migrations/0093_document_stats_expected.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.20 on 2024-06-01 20:02 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('api_v2', '0092_environment'), + ] + + operations = [ + migrations.AddField( + model_name='document', + name='stats_expected', + field=models.JSONField(blank=True, help_text='JSON representation of expected object counts.', null=True), + ), + ] diff --git a/api_v2/models/document.py b/api_v2/models/document.py index 375b4dbf..6426be93 100644 --- a/api_v2/models/document.py +++ b/api_v2/models/document.py @@ -38,9 +38,15 @@ class Document(HasName, HasDescription): help_text="Link to the document." ) + stats_expected = models.JSONField( + null=True, + blank=True, + help_text="JSON representation of expected object counts." + ) + @property def stats(self): - stats = {} + stats = [] for model in apps.get_models(): # Filter out api_v1. if model._meta.app_label != 'api_v2': continue @@ -50,7 +56,6 @@ def stats(self): 'Ruleset', 'License', 'Publisher', - 'Size', 'SearchResult'] if model.__name__ in SKIPPED_MODEL_NAMES: continue @@ -62,13 +67,20 @@ def stats(self): 'CreatureAction', 'CreatureActionAttack', 'SpellCastingOption', - 'ItemRarity', - 'SpellSchool'] + 'ItemRarity'] if model.__name__ in CHILD_MODEL_NAMES: continue + actual_object_count = model.objects.filter(document=self.key).count() + + stat = {} + stat['name'] = model.__name__.lower() + stat['actual_count'] = actual_object_count + try: + stat['expected_count'] = self.stats_expected.get(model.__name__.lower()) + except: + stat['expected_count'] = None + stats.append(stat) - object_count = model.objects.filter(document=self.key).count() - stats[model.__name__.lower()]=object_count return stats diff --git a/api_v2/views/document.py b/api_v2/views/document.py index 37419fc9..e5a90ec7 100644 --- a/api_v2/views/document.py +++ b/api_v2/views/document.py @@ -25,7 +25,7 @@ class DocumentViewSet(viewsets.ReadOnlyModelViewSet): """ queryset = models.Document.objects.all().order_by('pk') serializer_class = serializers.DocumentSerializer - filterset_fields = '__all__' + #filterset_fields = '__all__' class PublisherViewSet(viewsets.ReadOnlyModelViewSet): From 478037c4731c63311e4592176c7aa18278f3d20e Mon Sep 17 00:00:00 2001 From: August Johnson Date: Thu, 6 Jun 2024 15:49:57 -0500 Subject: [PATCH 84/84] This supports object schemas better. --- api_v2/serializers/search.py | 20 +++++--------------- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/api_v2/serializers/search.py b/api_v2/serializers/search.py index aaef3745..70486f3f 100644 --- a/api_v2/serializers/search.py +++ b/api_v2/serializers/search.py @@ -71,24 +71,14 @@ def get_document(self, obj): def get_route(self, obj): """Route is a way to build the link to the object.""" + route_lookup = { - "Condition":"conditions", - "Item":"items", - "Creature":"creatures", - "Spell":"spells", "CharacterClass":"classes", - "Monster":"monsters", - "MagicItem":"magicitems", - "Section":"sections", - "Background":"backgrounds", - "Subrace":"subraces", - "Feat":"feats", - "Race":"races", - "Plane":"planes", "CharClass":"classes", - "Environment":"environments" } - - route = f"{obj.schema_version}/{route_lookup[obj.object_model]}/" + if obj.object_model in route_lookup.keys(): + route = f"{obj.schema_version}/{route_lookup[obj.object_model]}/" + else: + route = f"{obj.schema_version}/{obj.object_model.lower()}s/" return route